]> gcc.gnu.org Git - gcc.git/blame - gcc/cppinit.c
[multiple changes]
[gcc.git] / gcc / cppinit.c
CommitLineData
5538ada6 1/* CPP Library.
5e7b4e25
JL
2 Copyright (C) 1986, 1987, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3 1999, 2000 Free Software Foundation, Inc.
5538ada6
ZW
4 Contributed by Per Bothner, 1994-95.
5 Based on CCCP program by Paul Rubin, June 1986
6 Adapted to ANSI C, Richard Stallman, Jan 1987
7
8This program is free software; you can redistribute it and/or modify it
9under the terms of the GNU General Public License as published by the
10Free Software Foundation; either version 2, or (at your option) any
11later version.
12
13This program is distributed in the hope that it will be useful,
14but WITHOUT ANY WARRANTY; without even the implied warranty of
15MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16GNU General Public License for more details.
17
18You should have received a copy of the GNU General Public License
19along with this program; if not, write to the Free Software
20Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
21
5538ada6
ZW
22#include "config.h"
23#include "system.h"
6de1e2a9
ZW
24#include "cpplib.h"
25#include "cpphash.h"
26#include "output.h"
27#include "prefix.h"
28#include "intl.h"
9f8f4efe 29#include "version.h"
49e6c08e 30#include "mkdeps.h"
60893f43 31#include "cppdefault.h"
6de1e2a9
ZW
32
33/* Predefined symbols, built-in macros, and the default include path. */
34
35#ifndef GET_ENV_PATH_LIST
36#define GET_ENV_PATH_LIST(VAR,NAME) do { (VAR) = getenv (NAME); } while (0)
37#endif
38
88ae23e7
ZW
39/* Windows does not natively support inodes, and neither does MSDOS.
40 Cygwin's emulation can generate non-unique inodes, so don't use it.
41 VMS has non-numeric inodes. */
42#ifdef VMS
43#define INO_T_EQ(a, b) (!memcmp (&(a), &(b), sizeof (a)))
44#elif (defined _WIN32 && ! defined (_UWIN)) || defined __MSDOS__
45#define INO_T_EQ(a, b) 0
46#else
47#define INO_T_EQ(a, b) ((a) == (b))
48#endif
49
6de1e2a9
ZW
50/* Internal structures and prototypes. */
51
0b22d65c
ZW
52/* A `struct pending_option' remembers one -D, -A, -U, -include, or -imacros
53 switch. There are four lists: one for -D and -U, one for -A, one
54 for -include, one for -imacros. `undef' is set for -U, clear for
55 -D, ignored for the others.
56 (Future: add an equivalent of -U for -A) */
40eac643 57
8be1ddca 58typedef void (* cl_directive_handler) PARAMS ((cpp_reader *, const char *));
0b22d65c 59struct pending_option
6de1e2a9 60{
0b22d65c 61 struct pending_option *next;
7ceb3598 62 const char *arg;
40eac643 63 cl_directive_handler handler;
6de1e2a9 64};
0b22d65c 65
88ae23e7
ZW
66/* The `pending' structure accumulates all the options that are not
67 actually processed until we hit cpp_start_read. It consists of
68 several lists, one for each type of option. We keep both head and
69 tail pointers for quick insertion. */
70struct cpp_pending
71{
40eac643 72 struct pending_option *directive_head, *directive_tail;
88ae23e7
ZW
73
74 struct file_name_list *quote_head, *quote_tail;
75 struct file_name_list *brack_head, *brack_tail;
76 struct file_name_list *systm_head, *systm_tail;
77 struct file_name_list *after_head, *after_tail;
78
79 struct pending_option *imacros_head, *imacros_tail;
80 struct pending_option *include_head, *include_tail;
81};
82
0b22d65c
ZW
83#ifdef __STDC__
84#define APPEND(pend, list, elt) \
85 do { if (!(pend)->list##_head) (pend)->list##_head = (elt); \
86 else (pend)->list##_tail->next = (elt); \
87 (pend)->list##_tail = (elt); \
88 } while (0)
89#else
90#define APPEND(pend, list, elt) \
91 do { if (!(pend)->list/**/_head) (pend)->list/**/_head = (elt); \
92 else (pend)->list/**/_tail->next = (elt); \
93 (pend)->list/**/_tail = (elt); \
94 } while (0)
95#endif
6de1e2a9 96
6de1e2a9 97static void print_help PARAMS ((void));
0b22d65c 98static void path_include PARAMS ((cpp_reader *,
0b22d65c 99 char *, int));
6de1e2a9 100static void initialize_builtins PARAMS ((cpp_reader *));
0b22d65c 101static void append_include_chain PARAMS ((cpp_reader *,
c45da1ca 102 char *, int, int));
dd69c71b
NB
103struct file_name_list * remove_dup_dir PARAMS ((cpp_reader *,
104 struct file_name_list *));
105struct file_name_list * remove_dup_dirs PARAMS ((cpp_reader *,
106 struct file_name_list *));
ae79697b 107static void merge_include_chains PARAMS ((cpp_reader *));
88ae23e7 108
bcc5cac9 109static void initialize_dependency_output PARAMS ((cpp_reader *));
c45da1ca 110static void initialize_standard_includes PARAMS ((cpp_reader *));
2c0accc9 111static void new_pending_directive PARAMS ((struct cpp_pending *,
40eac643
NB
112 const char *,
113 cl_directive_handler));
e23c0ba3
ZW
114#ifdef HOST_EBCDIC
115static int opt_comp PARAMS ((const void *, const void *));
116#endif
117static int parse_option PARAMS ((const char *));
6de1e2a9 118
c45da1ca 119/* Fourth argument to append_include_chain: chain to use */
0b22d65c 120enum { QUOTE = 0, BRACKET, SYSTEM, AFTER };
6de1e2a9 121
61d0346d
NB
122/* If we have designated initializers (GCC >2.7) these tables can be
123 initialized, constant data. Otherwise, they have to be filled in at
12cf91fe 124 runtime. */
61d0346d 125#if HAVE_DESIGNATED_INITIALIZERS
a9ae4483 126
455d2586 127#define init_IStable() /* nothing */
61d0346d
NB
128#define ISTABLE __extension__ const U_CHAR _cpp_IStable[UCHAR_MAX + 1] = {
129
130#define init_trigraph_map() /* nothing */
131#define TRIGRAPH_MAP \
132__extension__ const U_CHAR _cpp_trigraph_map[UCHAR_MAX + 1] = {
133
a9ae4483 134#define END };
455d2586 135#define s(p, v) [p] = v,
61d0346d 136
a9ae4483 137#else
61d0346d
NB
138
139#define ISTABLE unsigned char _cpp_IStable[UCHAR_MAX + 1] = { 0 }; \
455d2586 140 static void init_IStable PARAMS ((void)) { \
c6491210 141 unsigned char *x = _cpp_IStable;
61d0346d
NB
142
143#define TRIGRAPH_MAP U_CHAR _cpp_trigraph_map[UCHAR_MAX + 1] = { 0 }; \
144 static void init_trigraph_map PARAMS ((void)) { \
145 unsigned char *x = _cpp_trigraph_map;
146
ae79697b 147#define END }
455d2586 148#define s(p, v) x[p] = v;
61d0346d 149
a9ae4483 150#endif
6de1e2a9 151
a9ae4483
ZW
152#define A(x) s(x, ISidnum|ISidstart)
153#define N(x) s(x, ISidnum|ISnumstart)
154#define H(x) s(x, IShspace|ISspace)
91fcd158 155#define V(x) s(x, ISvspace|ISspace)
a9ae4483 156#define S(x) s(x, ISspace)
6de1e2a9 157
455d2586 158ISTABLE
a9ae4483 159 A('_')
6de1e2a9 160
a9ae4483
ZW
161 A('a') A('b') A('c') A('d') A('e') A('f') A('g') A('h') A('i')
162 A('j') A('k') A('l') A('m') A('n') A('o') A('p') A('q') A('r')
163 A('s') A('t') A('u') A('v') A('w') A('x') A('y') A('z')
6de1e2a9 164
a9ae4483
ZW
165 A('A') A('B') A('C') A('D') A('E') A('F') A('G') A('H') A('I')
166 A('J') A('K') A('L') A('M') A('N') A('O') A('P') A('Q') A('R')
167 A('S') A('T') A('U') A('V') A('W') A('X') A('Y') A('Z')
6de1e2a9 168
a9ae4483 169 N('1') N('2') N('3') N('4') N('5') N('6') N('7') N('8') N('9') N('0')
5538ada6 170
91fcd158 171 H(' ') H('\t')
6de1e2a9 172
91fcd158
NB
173 V('\n') V('\r')
174
175 S('\0') S('\v') S('\f')
a9ae4483
ZW
176END
177
61d0346d
NB
178TRIGRAPH_MAP
179 s('=', '#') s(')', ']') s('!', '|')
180 s('(', '[') s('\'', '^') s('>', '}')
181 s('/', '\\') s('<', '{') s('-', '~')
182END
183
a9ae4483
ZW
184#undef A
185#undef N
186#undef H
91fcd158 187#undef V
a9ae4483 188#undef S
a9ae4483 189#undef s
455d2586
ZW
190#undef ISTABLE
191#undef END
61d0346d 192#undef TRIGRAPH_MAP
6de1e2a9
ZW
193
194/* Given a colon-separated list of file names PATH,
195 add all the names to the search path for include files. */
196
197static void
e33f6253 198path_include (pfile, list, path)
6de1e2a9 199 cpp_reader *pfile;
0b22d65c
ZW
200 char *list;
201 int path;
6de1e2a9 202{
0b22d65c 203 char *p, *q, *name;
6de1e2a9 204
0b22d65c 205 p = list;
6de1e2a9 206
0b22d65c
ZW
207 do
208 {
6de1e2a9 209 /* Find the end of this name. */
0b22d65c 210 q = p;
6de1e2a9 211 while (*q != 0 && *q != PATH_SEPARATOR) q++;
0b22d65c
ZW
212 if (q == p)
213 {
214 /* An empty name in the path stands for the current directory. */
215 name = (char *) xmalloc (2);
216 name[0] = '.';
217 name[1] = 0;
218 }
219 else
220 {
221 /* Otherwise use the directory that is named. */
222 name = (char *) xmalloc (q - p + 1);
223 memcpy (name, p, q - p);
224 name[q - p] = 0;
225 }
6de1e2a9 226
e33f6253 227 append_include_chain (pfile, name, path, 0);
6de1e2a9
ZW
228
229 /* Advance past this name. */
0b22d65c 230 if (*q == 0)
6de1e2a9 231 break;
0b22d65c
ZW
232 p = q + 1;
233 }
234 while (1);
235}
236
0b22d65c
ZW
237/* Append DIR to include path PATH. DIR must be permanently allocated
238 and writable. */
239static void
e33f6253 240append_include_chain (pfile, dir, path, cxx_aware)
0b22d65c 241 cpp_reader *pfile;
0b22d65c
ZW
242 char *dir;
243 int path;
c45da1ca 244 int cxx_aware;
0b22d65c 245{
e33f6253 246 struct cpp_pending *pend = CPP_OPTION (pfile, pending);
0b22d65c
ZW
247 struct file_name_list *new;
248 struct stat st;
249 unsigned int len;
250
b0699dad 251 _cpp_simplify_pathname (dir);
0b22d65c
ZW
252 if (stat (dir, &st))
253 {
254 /* Dirs that don't exist are silently ignored. */
255 if (errno != ENOENT)
c1212d2f 256 cpp_notice_from_errno (pfile, dir);
ae79697b 257 else if (CPP_OPTION (pfile, verbose))
041c3194 258 fprintf (stderr, _("ignoring nonexistent directory \"%s\"\n"), dir);
0b22d65c
ZW
259 return;
260 }
261
262 if (!S_ISDIR (st.st_mode))
263 {
c1212d2f 264 cpp_notice (pfile, "%s: Not a directory", dir);
0b22d65c
ZW
265 return;
266 }
267
268 len = strlen (dir);
269 if (len > pfile->max_include_len)
270 pfile->max_include_len = len;
ae79697b 271
7ceb3598 272 new = (struct file_name_list *) xmalloc (sizeof (struct file_name_list));
0b22d65c
ZW
273 new->name = dir;
274 new->nlen = len;
275 new->ino = st.st_ino;
276 new->dev = st.st_dev;
c45da1ca
ZW
277 if (path == SYSTEM)
278 new->sysp = cxx_aware ? 1 : 2;
279 else
280 new->sysp = 0;
0b22d65c 281 new->name_map = NULL;
503cb436
DB
282 new->next = NULL;
283 new->alloc = NULL;
0b22d65c
ZW
284
285 switch (path)
286 {
287 case QUOTE: APPEND (pend, quote, new); break;
288 case BRACKET: APPEND (pend, brack, new); break;
289 case SYSTEM: APPEND (pend, systm, new); break;
290 case AFTER: APPEND (pend, after, new); break;
6de1e2a9
ZW
291 }
292}
293
dd69c71b
NB
294/* Handle a duplicated include path. PREV is the link in the chain
295 before the duplicate. The duplicate is removed from the chain and
296 freed. Returns PREV. */
297struct file_name_list *
298remove_dup_dir (pfile, prev)
299 cpp_reader *pfile;
300 struct file_name_list *prev;
301{
302 struct file_name_list *cur = prev->next;
303
304 if (CPP_OPTION (pfile, verbose))
305 fprintf (stderr, _("ignoring duplicate directory \"%s\"\n"), cur->name);
306
307 prev->next = cur->next;
308 free (cur->name);
309 free (cur);
310
311 return prev;
312}
313
314/* Remove duplicate directories from a chain. Returns the tail of the
315 chain, or NULL if the chain is empty. This algorithm is quadratic
316 in the number of -I switches, which is acceptable since there
317 aren't usually that many of them. */
318struct file_name_list *
319remove_dup_dirs (pfile, head)
320 cpp_reader *pfile;
321 struct file_name_list *head;
322{
323 struct file_name_list *prev = NULL, *cur, *other;
324
325 for (cur = head; cur; cur = cur->next)
326 {
327 for (other = head; other != cur; other = other->next)
328 if (INO_T_EQ (cur->ino, other->ino) && cur->dev == other->dev)
329 {
330 cur = remove_dup_dir (pfile, prev);
331 break;
332 }
333 prev = cur;
334 }
335
336 return prev;
337}
338
88ae23e7
ZW
339/* Merge the four include chains together in the order quote, bracket,
340 system, after. Remove duplicate dirs (as determined by
341 INO_T_EQ()). The system_include and after_include chains are never
342 referred to again after this function; all access is through the
343 bracket_include path.
344
345 For the future: Check if the directory is empty (but
346 how?) and possibly preload the include hash. */
347
348static void
ae79697b
ZW
349merge_include_chains (pfile)
350 cpp_reader *pfile;
88ae23e7 351{
dd69c71b 352 struct file_name_list *quote, *brack, *systm, *qtail;
88ae23e7 353
ae79697b 354 struct cpp_pending *pend = CPP_OPTION (pfile, pending);
88ae23e7 355
ae79697b
ZW
356 quote = pend->quote_head;
357 brack = pend->brack_head;
358 systm = pend->systm_head;
dd69c71b 359 qtail = pend->quote_tail;
88ae23e7 360
dd69c71b
NB
361 /* Paste together bracket, system, and after include chains. */
362 if (systm)
363 pend->systm_tail->next = pend->after_head;
88ae23e7 364 else
dd69c71b
NB
365 systm = pend->after_head;
366
367 if (brack)
368 pend->brack_tail->next = systm;
88ae23e7
ZW
369 else
370 brack = systm;
371
dd69c71b
NB
372 /* This is a bit tricky. First we drop dupes from the quote-include
373 list. Then we drop dupes from the bracket-include list.
374 Finally, if qtail and brack are the same directory, we cut out
375 brack.
88ae23e7
ZW
376
377 We can't just merge the lists and then uniquify them because
378 then we may lose directories from the <> search path that should
379 be there; consider -Ifoo -Ibar -I- -Ifoo -Iquux. It is however
380 safe to treat -Ibar -Ifoo -I- -Ifoo -Iquux as if written
dd69c71b 381 -Ibar -I- -Ifoo -Iquux. */
88ae23e7 382
dd69c71b
NB
383 remove_dup_dirs (pfile, brack);
384 qtail = remove_dup_dirs (pfile, quote);
88ae23e7
ZW
385
386 if (quote)
387 {
dd69c71b
NB
388 qtail->next = brack;
389
390 /* If brack == qtail, remove brack as it's simpler. */
88ae23e7 391 if (INO_T_EQ (qtail->ino, brack->ino) && qtail->dev == brack->dev)
dd69c71b 392 brack = remove_dup_dir (pfile, qtail);
88ae23e7
ZW
393 }
394 else
395 quote = brack;
396
ae79697b
ZW
397 CPP_OPTION (pfile, quote_include) = quote;
398 CPP_OPTION (pfile, bracket_include) = brack;
88ae23e7
ZW
399}
400
3cb553b4
ZW
401/* cpp_init initializes library global state. It might not need to do
402 anything depending on the platform and compiler, so we have a static
403 flag to make sure it gets called before cpp_reader_init. */
404
405static int cpp_init_completed = 0;
406
c154ba66
NB
407void
408cpp_init (void)
409{
410#ifdef HOST_EBCDIC
3cb553b4
ZW
411 /* For non-ASCII hosts, the cl_options array needs to be sorted at
412 runtime. */
c154ba66
NB
413 qsort (cl_options, N_OPTS, sizeof (struct cl_option), opt_comp);
414#endif
415
3cb553b4
ZW
416 /* Set up the trigraph map and the IStable. These don't need to do
417 anything if we were compiled with a compiler that supports C99
418 designated initializers. */
61d0346d 419 init_trigraph_map ();
c154ba66 420 init_IStable ();
3cb553b4
ZW
421
422 cpp_init_completed = 1;
c154ba66 423}
0b22d65c 424
6de1e2a9
ZW
425/* Initialize a cpp_reader structure. */
426void
427cpp_reader_init (pfile)
428 cpp_reader *pfile;
429{
7ceb3598 430 memset ((char *) pfile, 0, sizeof (cpp_reader));
6de1e2a9 431
ae79697b
ZW
432 CPP_OPTION (pfile, dollars_in_ident) = 1;
433 CPP_OPTION (pfile, cplusplus_comments) = 1;
434 CPP_OPTION (pfile, warn_import) = 1;
041c3194 435 CPP_OPTION (pfile, warn_paste) = 1;
9b55f29a 436 CPP_OPTION (pfile, digraphs) = 1;
ae79697b
ZW
437 CPP_OPTION (pfile, discard_comments) = 1;
438 CPP_OPTION (pfile, show_column) = 1;
6ab3e7dd 439 CPP_OPTION (pfile, tabstop) = 8;
ae79697b
ZW
440
441 CPP_OPTION (pfile, pending) =
442 (struct cpp_pending *) xcalloc (1, sizeof (struct cpp_pending));
443
3cb553b4
ZW
444 /* If cpp_init hasn't been called, generate a fatal error (by hand)
445 and call it here. */
446 if (!cpp_init_completed)
447 {
448 fputs ("cpp_reader_init: internal error: cpp_init not called.\n", stderr);
449 pfile->errors = CPP_FATAL_LIMIT;
450 cpp_init ();
451 }
452
c71f835b 453 _cpp_init_macros (pfile);
bfb9dc7f 454 _cpp_init_stacks (pfile);
c71f835b 455 _cpp_init_includes (pfile);
58fea6af 456 _cpp_init_internal_pragmas (pfile);
6de1e2a9
ZW
457}
458
f2d5f0cc
ZW
459/* Initialize a cpp_printer structure. As a side effect, open the
460 output file. */
461cpp_printer *
462cpp_printer_init (pfile, print)
463 cpp_reader *pfile;
464 cpp_printer *print;
465{
466 memset (print, '\0', sizeof (cpp_printer));
467 if (CPP_OPTION (pfile, out_fname) == NULL)
468 CPP_OPTION (pfile, out_fname) = "";
469
470 if (CPP_OPTION (pfile, out_fname)[0] == '\0')
471 print->outf = stdout;
472 else
473 {
474 print->outf = fopen (CPP_OPTION (pfile, out_fname), "w");
475 if (! print->outf)
476 {
477 cpp_notice_from_errno (pfile, CPP_OPTION (pfile, out_fname));
478 return NULL;
479 }
480 }
481 return print;
482}
483
6de1e2a9
ZW
484/* Free resources used by PFILE.
485 This is the cpp_reader 'finalizer' or 'destructor' (in C++ terminology). */
486void
487cpp_cleanup (pfile)
488 cpp_reader *pfile;
489{
709e9e50
NB
490 struct file_name_list *dir, *next;
491
38b24ee2 492 while (CPP_BUFFER (pfile) != NULL)
6de1e2a9
ZW
493 cpp_pop_buffer (pfile);
494
49e6c08e
ZW
495 if (pfile->deps)
496 deps_free (pfile->deps);
497
bfb9dc7f
ZW
498 if (pfile->spec_nodes)
499 free (pfile->spec_nodes);
500
501 _cpp_free_temp_tokens (pfile);
502 _cpp_cleanup_includes (pfile);
c71f835b
ZW
503 _cpp_cleanup_stacks (pfile);
504 _cpp_cleanup_macros (pfile);
709e9e50
NB
505
506 for (dir = CPP_OPTION (pfile, quote_include); dir; dir = next)
507 {
508 next = dir->next;
509 free (dir->name);
510 free (dir);
511 }
6de1e2a9
ZW
512}
513
514
a9ae4483
ZW
515/* This structure defines one built-in macro. A node of type TYPE will
516 be entered in the macro hash table under the name NAME, with value
92936ecf
ZW
517 VALUE (if any). If TYPE is T_OPERATOR, the CODE field is used instead.
518
519 Two values are not compile time constants, so we tag
041c3194 520 them in the FLAGS field instead:
8c389f84
ZW
521 VERS value is the global version_string, quoted
522 ULP value is the global user_label_prefix
92936ecf
ZW
523
524 Also, macros with CPLUS set in the flags field are entered only for C++.
a9ae4483
ZW
525 */
526
527struct builtin
528{
12cf91fe 529 const U_CHAR *name;
041c3194 530 const char *value;
92936ecf
ZW
531 unsigned char code;
532 unsigned char type;
a9ae4483 533 unsigned short flags;
12cf91fe 534 unsigned int len;
a9ae4483 535};
92936ecf
ZW
536#define VERS 0x01
537#define ULP 0x02
538#define CPLUS 0x04
539
540#define B(n, t) { U n, 0, 0, t, 0, sizeof n - 1 }
541#define C(n, v) { U n, v, 0, T_MACRO, 0, sizeof n - 1 }
542#define X(n, f) { U n, 0, 0, T_MACRO, f, sizeof n - 1 }
543#define O(n, c, f) { U n, 0, c, T_OPERATOR, f, sizeof n - 1 }
a9ae4483 544static const struct builtin builtin_array[] =
6de1e2a9 545{
12cf91fe
ZW
546 B("__TIME__", T_TIME),
547 B("__DATE__", T_DATE),
548 B("__FILE__", T_FILE),
549 B("__BASE_FILE__", T_BASE_FILE),
550 B("__LINE__", T_SPECLINE),
551 B("__INCLUDE_LEVEL__", T_INCLUDE_LEVEL),
041c3194 552 B("__STDC__", T_STDC),
12cf91fe 553
041c3194
ZW
554 X("__VERSION__", VERS),
555 X("__USER_LABEL_PREFIX__", ULP),
12cf91fe
ZW
556 C("__REGISTER_PREFIX__", REGISTER_PREFIX),
557 C("__HAVE_BUILTIN_SETJMP__", "1"),
6de1e2a9 558#ifndef NO_BUILTIN_SIZE_TYPE
12cf91fe 559 C("__SIZE_TYPE__", SIZE_TYPE),
6de1e2a9
ZW
560#endif
561#ifndef NO_BUILTIN_PTRDIFF_TYPE
12cf91fe 562 C("__PTRDIFF_TYPE__", PTRDIFF_TYPE),
6de1e2a9 563#endif
0209c340 564#ifndef NO_BUILTIN_WCHAR_TYPE
12cf91fe 565 C("__WCHAR_TYPE__", WCHAR_TYPE),
0209c340 566#endif
d6777972
JM
567#ifndef NO_BUILTIN_WINT_TYPE
568 C("__WINT_TYPE__", WINT_TYPE),
569#endif
92936ecf
ZW
570
571 /* Named operators known to the preprocessor. These cannot be #defined
572 and always have their stated meaning. They are treated like normal
573 string tokens except for the type code and the meaning. Most of them
574 are only for C++ (but see iso646.h). */
575 O("defined", CPP_DEFINED, 0),
576 O("and", CPP_AND_AND, CPLUS),
577 O("and_eq", CPP_AND_EQ, CPLUS),
578 O("bitand", CPP_AND, CPLUS),
579 O("bitor", CPP_OR, CPLUS),
580 O("compl", CPP_COMPL, CPLUS),
581 O("not", CPP_NOT, CPLUS),
582 O("not_eq", CPP_NOT_EQ, CPLUS),
583 O("or", CPP_OR_OR, CPLUS),
584 O("or_eq", CPP_OR_EQ, CPLUS),
585 O("xor", CPP_XOR, CPLUS),
586 O("xor_eq", CPP_XOR_EQ, CPLUS),
a9ae4483 587};
12cf91fe
ZW
588#undef B
589#undef C
590#undef X
8c389f84
ZW
591#define builtin_array_end \
592 builtin_array + sizeof(builtin_array)/sizeof(struct builtin)
a9ae4483
ZW
593
594/* Subroutine of cpp_start_read; reads the builtins table above and
595 enters the macros into the hash table. */
a9ae4483
ZW
596static void
597initialize_builtins (pfile)
598 cpp_reader *pfile;
599{
a9ae4483 600 const struct builtin *b;
8c389f84 601 for(b = builtin_array; b < builtin_array_end; b++)
6de1e2a9 602 {
92936ecf
ZW
603 if (b->flags & CPLUS && ! CPP_OPTION (pfile, cplusplus))
604 continue;
605
041c3194 606 if (b->type == T_MACRO)
8c389f84 607 {
041c3194
ZW
608 const char *val;
609 char *str;
610
611 if (b->flags & VERS)
612 {
613 /* Allocate enough space for 'name="value"\0'. */
614 str = xmalloc (b->len + strlen (version_string) + 4);
615 sprintf (str, "%s=\"%s\"", b->name, version_string);
616 }
617 else
618 {
619 if (b->flags & ULP)
620 val = user_label_prefix;
621 else
622 val = b->value;
623
624 /* Allocate enough space for "name=value\0". */
625 str = xmalloc (b->len + strlen (val) + 2);
626 sprintf(str, "%s=%s", b->name, val);
627 }
c154ba66 628
041c3194 629 cpp_define (pfile, str);
c154ba66 630 free (str);
8c389f84 631 }
6feb7728 632 else
041c3194 633 {
f9a0e96c 634 cpp_hashnode *hp = cpp_lookup (pfile, b->name, b->len);
041c3194 635 hp->type = b->type;
92936ecf
ZW
636 if (b->type == T_OPERATOR)
637 hp->value.code = b->code;
041c3194 638 }
6de1e2a9
ZW
639 }
640}
6feb7728 641#undef VERS
a9ae4483 642#undef ULP
041c3194 643#undef builtin_array_end
6de1e2a9 644
0b22d65c
ZW
645/* Another subroutine of cpp_start_read. This one sets up to do
646 dependency-file output. */
647static void
648initialize_dependency_output (pfile)
649 cpp_reader *pfile;
650{
0b22d65c 651 char *spec, *s, *output_file;
ae79697b 652
0b22d65c
ZW
653 /* Either of two environment variables can specify output of deps.
654 Its value is either "OUTPUT_FILE" or "OUTPUT_FILE DEPS_TARGET",
655 where OUTPUT_FILE is the file to write deps info to
656 and DEPS_TARGET is the target to mention in the deps. */
657
ae79697b 658 if (CPP_OPTION (pfile, print_deps) == 0)
0b22d65c
ZW
659 {
660 spec = getenv ("DEPENDENCIES_OUTPUT");
661 if (spec)
ae79697b 662 CPP_OPTION (pfile, print_deps) = 1;
0b22d65c
ZW
663 else
664 {
665 spec = getenv ("SUNPRO_DEPENDENCIES");
666 if (spec)
ae79697b 667 CPP_OPTION (pfile, print_deps) = 2;
0b22d65c
ZW
668 else
669 return;
670 }
671
672 /* Find the space before the DEPS_TARGET, if there is one. */
673 s = strchr (spec, ' ');
674 if (s)
675 {
ae79697b 676 CPP_OPTION (pfile, deps_target) = s + 1;
0b22d65c
ZW
677 output_file = (char *) xmalloc (s - spec + 1);
678 memcpy (output_file, spec, s - spec);
679 output_file[s - spec] = 0;
680 }
681 else
682 {
ae79697b 683 CPP_OPTION (pfile, deps_target) = 0;
0b22d65c
ZW
684 output_file = spec;
685 }
686
ae79697b
ZW
687 CPP_OPTION (pfile, deps_file) = output_file;
688 CPP_OPTION (pfile, print_deps_append) = 1;
0b22d65c
ZW
689 }
690
49e6c08e 691 pfile->deps = deps_init ();
0b22d65c 692
49e6c08e 693 /* Print the expected object file name as the target of this Make-rule. */
ae79697b
ZW
694 if (CPP_OPTION (pfile, deps_target))
695 deps_add_target (pfile->deps, CPP_OPTION (pfile, deps_target));
696 else if (*CPP_OPTION (pfile, in_fname) == 0)
49e6c08e 697 deps_add_target (pfile->deps, "-");
0b22d65c 698 else
ae79697b 699 deps_calc_target (pfile->deps, CPP_OPTION (pfile, in_fname));
0b22d65c 700
ae79697b
ZW
701 if (CPP_OPTION (pfile, in_fname))
702 deps_add_dep (pfile->deps, CPP_OPTION (pfile, in_fname));
0b22d65c
ZW
703}
704
c45da1ca
ZW
705/* And another subroutine. This one sets up the standard include path. */
706static void
707initialize_standard_includes (pfile)
708 cpp_reader *pfile;
709{
c45da1ca 710 char *path;
455d2586 711 const struct default_include *p;
ae79697b 712 const char *specd_prefix = CPP_OPTION (pfile, include_prefix);
c45da1ca
ZW
713
714 /* Several environment variables may add to the include search path.
715 CPATH specifies an additional list of directories to be searched
716 as if specified with -I, while C_INCLUDE_PATH, CPLUS_INCLUDE_PATH,
717 etc. specify an additional list of directories to be searched as
718 if specified with -isystem, for the language indicated. */
719
720 GET_ENV_PATH_LIST (path, "CPATH");
721 if (path != 0 && *path != 0)
e33f6253 722 path_include (pfile, path, BRACKET);
c45da1ca 723
ae79697b 724 switch ((CPP_OPTION (pfile, objc) << 1) + CPP_OPTION (pfile, cplusplus))
c45da1ca
ZW
725 {
726 case 0:
727 GET_ENV_PATH_LIST (path, "C_INCLUDE_PATH");
728 break;
729 case 1:
730 GET_ENV_PATH_LIST (path, "CPLUS_INCLUDE_PATH");
731 break;
732 case 2:
733 GET_ENV_PATH_LIST (path, "OBJC_INCLUDE_PATH");
734 break;
735 case 3:
736 GET_ENV_PATH_LIST (path, "OBJCPLUS_INCLUDE_PATH");
737 break;
738 }
739 if (path != 0 && *path != 0)
e33f6253 740 path_include (pfile, path, SYSTEM);
c45da1ca
ZW
741
742 /* Search "translated" versions of GNU directories.
743 These have /usr/local/lib/gcc... replaced by specd_prefix. */
60893f43 744 if (specd_prefix != 0 && cpp_GCC_INCLUDE_DIR_len)
c45da1ca 745 {
c45da1ca
ZW
746 /* Remove the `include' from /usr/local/lib/gcc.../include.
747 GCC_INCLUDE_DIR will always end in /include. */
60893f43
ZW
748 int default_len = cpp_GCC_INCLUDE_DIR_len;
749 char *default_prefix = (char *) alloca (default_len + 1);
c45da1ca
ZW
750 int specd_len = strlen (specd_prefix);
751
60893f43 752 memcpy (default_prefix, cpp_GCC_INCLUDE_DIR, default_len);
c45da1ca
ZW
753 default_prefix[default_len] = '\0';
754
60893f43 755 for (p = cpp_include_defaults; p->fname; p++)
c45da1ca
ZW
756 {
757 /* Some standard dirs are only for C++. */
758 if (!p->cplusplus
ae79697b
ZW
759 || (CPP_OPTION (pfile, cplusplus)
760 && !CPP_OPTION (pfile, no_standard_cplusplus_includes)))
c45da1ca
ZW
761 {
762 /* Does this dir start with the prefix? */
61d0346d 763 if (!memcmp (p->fname, default_prefix, default_len))
c45da1ca
ZW
764 {
765 /* Yes; change prefix and add to search list. */
766 int flen = strlen (p->fname);
767 int this_len = specd_len + flen - default_len;
768 char *str = (char *) xmalloc (this_len + 1);
769 memcpy (str, specd_prefix, specd_len);
770 memcpy (str + specd_len,
771 p->fname + default_len,
772 flen - default_len + 1);
773
e33f6253 774 append_include_chain (pfile, str, SYSTEM, p->cxx_aware);
c45da1ca
ZW
775 }
776 }
777 }
778 }
779
780 /* Search ordinary names for GNU include directories. */
60893f43 781 for (p = cpp_include_defaults; p->fname; p++)
c45da1ca
ZW
782 {
783 /* Some standard dirs are only for C++. */
784 if (!p->cplusplus
ae79697b
ZW
785 || (CPP_OPTION (pfile, cplusplus)
786 && !CPP_OPTION (pfile, no_standard_cplusplus_includes)))
c45da1ca
ZW
787 {
788 /* XXX Potential memory leak! */
789 char *str = xstrdup (update_path (p->fname, p->component));
e33f6253 790 append_include_chain (pfile, str, SYSTEM, p->cxx_aware);
c45da1ca
ZW
791 }
792 }
793}
794
6de1e2a9
ZW
795/* This is called after options have been processed.
796 * Check options for consistency, and setup for processing input
797 * from the file named FNAME. (Use standard input if FNAME==NULL.)
798 * Return 1 on success, 0 on failure.
799 */
800
801int
f2d5f0cc 802cpp_start_read (pfile, print, fname)
6de1e2a9 803 cpp_reader *pfile;
f2d5f0cc 804 cpp_printer *print;
7ceb3598 805 const char *fname;
6de1e2a9 806{
0b22d65c 807 struct pending_option *p, *q;
6de1e2a9 808
0b22d65c
ZW
809 /* -MG doesn't select the form of output and must be specified with one of
810 -M or -MM. -MG doesn't make sense with -MD or -MMD since they don't
811 inhibit compilation. */
ae79697b
ZW
812 if (CPP_OPTION (pfile, print_deps_missing_files)
813 && (CPP_OPTION (pfile, print_deps) == 0
814 || !CPP_OPTION (pfile, no_output)))
0b22d65c
ZW
815 {
816 cpp_fatal (pfile, "-MG must be specified with one of -M or -MM");
817 return 0;
818 }
6de1e2a9 819
bfab56e7
ZW
820 /* -Wtraditional is not useful in C++ mode. */
821 if (CPP_OPTION (pfile, cplusplus))
822 CPP_OPTION (pfile, warn_traditional) = 0;
823
5ef865d5 824 /* Do not warn about invalid token pasting if -lang-asm. */
f9a0e96c 825 if (CPP_OPTION (pfile, lang_asm))
041c3194
ZW
826 CPP_OPTION (pfile, warn_paste) = 0;
827
0b22d65c
ZW
828 /* Set this if it hasn't been set already. */
829 if (user_label_prefix == NULL)
830 user_label_prefix = USER_LABEL_PREFIX;
c45da1ca 831
041c3194
ZW
832 /* Figure out if we need to save function macro parameter spellings.
833 We don't use CPP_PEDANTIC() here because that depends on whether
834 or not the current file is a system header, and there is no
835 current file yet. */
836 pfile->save_parameter_spellings =
837 CPP_OPTION (pfile, pedantic)
838 || CPP_OPTION (pfile, debug_output)
839 || CPP_OPTION (pfile, dump_macros) == dump_definitions
840 || CPP_OPTION (pfile, dump_macros) == dump_only;
841
45b966db
ZW
842 /* Set up the tables used by read_and_prescan. */
843 _cpp_init_input_buffer (pfile);
ae79697b 844
c45da1ca 845 /* Set up the include search path now. */
ae79697b 846 if (! CPP_OPTION (pfile, no_standard_includes))
c45da1ca
ZW
847 initialize_standard_includes (pfile);
848
ae79697b 849 merge_include_chains (pfile);
c45da1ca
ZW
850
851 /* With -v, print the list of dirs to search. */
ae79697b 852 if (CPP_OPTION (pfile, verbose))
c45da1ca
ZW
853 {
854 struct file_name_list *l;
855 fprintf (stderr, _("#include \"...\" search starts here:\n"));
ae79697b 856 for (l = CPP_OPTION (pfile, quote_include); l; l = l->next)
c45da1ca 857 {
ae79697b 858 if (l == CPP_OPTION (pfile, bracket_include))
c45da1ca
ZW
859 fprintf (stderr, _("#include <...> search starts here:\n"));
860 fprintf (stderr, " %s\n", l->name);
861 }
862 fprintf (stderr, _("End of search list.\n"));
863 }
864
4b3fe5b6
ZW
865 /* Open the main input file. This must be done early, so we have a
866 buffer to stand on. */
ae79697b
ZW
867 if (CPP_OPTION (pfile, in_fname) == NULL
868 || *CPP_OPTION (pfile, in_fname) == 0)
6de1e2a9 869 {
ae79697b
ZW
870 CPP_OPTION (pfile, in_fname) = fname;
871 if (CPP_OPTION (pfile, in_fname) == NULL)
872 CPP_OPTION (pfile, in_fname) = "";
6de1e2a9 873 }
ae79697b
ZW
874 if (CPP_OPTION (pfile, out_fname) == NULL)
875 CPP_OPTION (pfile, out_fname) = "";
6de1e2a9 876
c45da1ca
ZW
877 if (!cpp_read_file (pfile, fname))
878 return 0;
879
4b3fe5b6 880 initialize_dependency_output (pfile);
ae79697b 881
c45da1ca 882 /* Install __LINE__, etc. */
6de1e2a9
ZW
883 initialize_builtins (pfile);
884
6de1e2a9 885 /* Do -U's, -D's and -A's in the order they were seen. */
ae79697b 886 p = CPP_OPTION (pfile, pending)->directive_head;
0b22d65c 887 while (p)
6de1e2a9 888 {
b1b74f93 889 (*p->handler) (pfile, p->arg);
0b22d65c
ZW
890 q = p->next;
891 free (p);
892 p = q;
6de1e2a9 893 }
ae79697b 894 pfile->done_initializing = 1;
041c3194 895
58fea6af
ZW
896 /* We start at line 1 of the main input file. */
897 if (print)
898 {
899 print->last_fname = CPP_BUFFER (pfile)->nominal_fname;
900 print->lineno = 1;
901 }
6de1e2a9
ZW
902
903 /* The -imacros files can be scanned now, but the -include files
904 have to be pushed onto the include stack and processed later,
0b22d65c 905 in the main loop calling cpp_get_token. */
ae79697b 906
ae79697b 907 p = CPP_OPTION (pfile, pending)->imacros_head;
0b22d65c 908 while (p)
6de1e2a9 909 {
c45da1ca 910 if (cpp_read_file (pfile, p->arg))
f2d5f0cc 911 cpp_scan_buffer_nooutput (pfile);
0b22d65c
ZW
912 q = p->next;
913 free (p);
914 p = q;
6de1e2a9 915 }
0b22d65c 916
ae79697b 917 p = CPP_OPTION (pfile, pending)->include_head;
0b22d65c 918 while (p)
6de1e2a9 919 {
58fea6af 920 cpp_read_file (pfile, p->arg);
0b22d65c
ZW
921 q = p->next;
922 free (p);
923 p = q;
6de1e2a9 924 }
6de1e2a9 925
ae79697b
ZW
926 free (CPP_OPTION (pfile, pending));
927 CPP_OPTION (pfile, pending) = NULL;
6de1e2a9
ZW
928
929 return 1;
930}
931
932/* This is called at the end of preprocessing. It pops the
933 last buffer and writes dependency output. It should also
934 clear macro definitions, such that you could call cpp_start_read
935 with a new filename to restart processing. */
936void
f2d5f0cc 937cpp_finish (pfile, print)
6de1e2a9 938 cpp_reader *pfile;
f2d5f0cc 939 cpp_printer *print;
6de1e2a9 940{
f2d5f0cc
ZW
941 if (CPP_BUFFER (pfile))
942 {
943 cpp_ice (pfile, "buffers still stacked in cpp_finish");
944 while (CPP_BUFFER (pfile))
945 cpp_pop_buffer (pfile);
946 }
c1212d2f 947
49e6c08e 948 /* Don't write the deps file if preprocessing has failed. */
ae79697b 949 if (CPP_OPTION (pfile, print_deps) && pfile->errors == 0)
6de1e2a9
ZW
950 {
951 /* Stream on which to print the dependency information. */
c1212d2f 952 FILE *deps_stream = 0;
ae79697b
ZW
953 const char *deps_mode
954 = CPP_OPTION (pfile, print_deps_append) ? "a" : "w";
955 if (CPP_OPTION (pfile, deps_file) == 0)
49e6c08e 956 deps_stream = stdout;
ae79697b
ZW
957 else
958 {
959 deps_stream = fopen (CPP_OPTION (pfile, deps_file), deps_mode);
960 if (deps_stream == 0)
961 cpp_notice_from_errno (pfile, CPP_OPTION (pfile, deps_file));
962 }
49e6c08e
ZW
963 if (deps_stream)
964 {
965 deps_write (pfile->deps, deps_stream, 72);
ae79697b 966 if (CPP_OPTION (pfile, deps_file))
6de1e2a9 967 {
49e6c08e
ZW
968 if (ferror (deps_stream) || fclose (deps_stream) != 0)
969 cpp_fatal (pfile, "I/O error on output");
6de1e2a9
ZW
970 }
971 }
972 }
3caee4a8 973
f2d5f0cc
ZW
974 /* Flush any pending output. */
975 if (print)
976 {
58fea6af
ZW
977 if (pfile->need_newline)
978 putc ('\n', print->outf);
f2d5f0cc
ZW
979 if (ferror (print->outf) || fclose (print->outf))
980 cpp_notice_from_errno (pfile, CPP_OPTION (pfile, out_fname));
981 }
d4506961
ZW
982
983 /* Report on headers that could use multiple include guards. */
984 if (CPP_OPTION (pfile, print_include_names))
c71f835b 985 _cpp_report_missing_guards (pfile);
6de1e2a9
ZW
986}
987
223dca6a 988static void
ae79697b
ZW
989new_pending_directive (pend, text, handler)
990 struct cpp_pending *pend;
223dca6a 991 const char *text;
40eac643 992 cl_directive_handler handler;
223dca6a
RH
993{
994 struct pending_option *o = (struct pending_option *)
995 xmalloc (sizeof (struct pending_option));
996
7ceb3598 997 o->arg = text;
223dca6a 998 o->next = NULL;
40eac643 999 o->handler = handler;
ae79697b 1000 APPEND (pend, directive, o);
223dca6a
RH
1001}
1002
ae79697b
ZW
1003/* Irix6 "cc -n32" and OSF4 cc have problems with char foo[] = ("string");
1004 I.e. a const string initializer with parens around it. That is
1005 what N_("string") resolves to, so we make no_* be macros instead. */
1006#define no_arg N_("Argument missing after %s")
1007#define no_ass N_("Assertion missing after %s")
1008#define no_dir N_("Directory name missing after %s")
1009#define no_fil N_("File name missing after %s")
1010#define no_mac N_("Macro name missing after %s")
1011#define no_pth N_("Path name missing after %s")
6ab3e7dd 1012#define no_num N_("Number missing after %s")
ae79697b
ZW
1013
1014/* This is the list of all command line options, with the leading
1015 "-" removed. It must be sorted in ASCII collating order. */
1016#define COMMAND_LINE_OPTIONS \
1017 DEF_OPT("", 0, OPT_stdin_stdout) \
1018 DEF_OPT("$", 0, OPT_dollar) \
1019 DEF_OPT("+", 0, OPT_plus) \
1020 DEF_OPT("-help", 0, OPT__help) \
1021 DEF_OPT("-version", 0, OPT__version) \
1022 DEF_OPT("A", no_ass, OPT_A) \
1023 DEF_OPT("C", 0, OPT_C) \
1024 DEF_OPT("D", no_mac, OPT_D) \
1025 DEF_OPT("H", 0, OPT_H) \
1026 DEF_OPT("I", no_dir, OPT_I) \
1027 DEF_OPT("M", 0, OPT_M) \
1028 DEF_OPT("MD", no_fil, OPT_MD) \
1029 DEF_OPT("MG", 0, OPT_MG) \
1030 DEF_OPT("MM", 0, OPT_MM) \
1031 DEF_OPT("MMD", no_fil, OPT_MMD) \
1032 DEF_OPT("P", 0, OPT_P) \
1033 DEF_OPT("U", no_mac, OPT_U) \
1034 DEF_OPT("W", no_arg, OPT_W) /* arg optional */ \
1035 DEF_OPT("d", no_arg, OPT_d) \
1036 DEF_OPT("fleading-underscore", 0, OPT_fleading_underscore) \
1037 DEF_OPT("fno-leading-underscore", 0, OPT_fno_leading_underscore) \
1038 DEF_OPT("fno-preprocessed", 0, OPT_fno_preprocessed) \
1039 DEF_OPT("fno-show-column", 0, OPT_fno_show_column) \
1040 DEF_OPT("fpreprocessed", 0, OPT_fpreprocessed) \
1041 DEF_OPT("fshow-column", 0, OPT_fshow_column) \
6ab3e7dd 1042 DEF_OPT("ftabstop=", no_num, OPT_ftabstop) \
ae79697b
ZW
1043 DEF_OPT("g", no_arg, OPT_g) /* arg optional */ \
1044 DEF_OPT("h", 0, OPT_h) \
1045 DEF_OPT("idirafter", no_dir, OPT_idirafter) \
1046 DEF_OPT("imacros", no_fil, OPT_imacros) \
1047 DEF_OPT("include", no_fil, OPT_include) \
1048 DEF_OPT("iprefix", no_pth, OPT_iprefix) \
1049 DEF_OPT("isystem", no_dir, OPT_isystem) \
1050 DEF_OPT("iwithprefix", no_dir, OPT_iwithprefix) \
1051 DEF_OPT("iwithprefixbefore", no_dir, OPT_iwithprefixbefore) \
1052 DEF_OPT("lang-asm", 0, OPT_lang_asm) \
1053 DEF_OPT("lang-c", 0, OPT_lang_c) \
1054 DEF_OPT("lang-c++", 0, OPT_lang_cplusplus) \
1055 DEF_OPT("lang-c89", 0, OPT_lang_c89) \
ae79697b
ZW
1056 DEF_OPT("lang-objc", 0, OPT_lang_objc) \
1057 DEF_OPT("lang-objc++", 0, OPT_lang_objcplusplus) \
1058 DEF_OPT("nostdinc", 0, OPT_nostdinc) \
1059 DEF_OPT("nostdinc++", 0, OPT_nostdincplusplus) \
1060 DEF_OPT("o", no_fil, OPT_o) \
1061 DEF_OPT("pedantic", 0, OPT_pedantic) \
1062 DEF_OPT("pedantic-errors", 0, OPT_pedantic_errors) \
1063 DEF_OPT("remap", 0, OPT_remap) \
1064 DEF_OPT("std=c89", 0, OPT_std_c89) \
1065 DEF_OPT("std=c99", 0, OPT_std_c99) \
1066 DEF_OPT("std=c9x", 0, OPT_std_c9x) \
1067 DEF_OPT("std=gnu89", 0, OPT_std_gnu89) \
1068 DEF_OPT("std=gnu99", 0, OPT_std_gnu99) \
1069 DEF_OPT("std=gnu9x", 0, OPT_std_gnu9x) \
1070 DEF_OPT("std=iso9899:1990", 0, OPT_std_iso9899_1990) \
1071 DEF_OPT("std=iso9899:199409", 0, OPT_std_iso9899_199409) \
1072 DEF_OPT("std=iso9899:1999", 0, OPT_std_iso9899_1999) \
1073 DEF_OPT("std=iso9899:199x", 0, OPT_std_iso9899_199x) \
ae79697b
ZW
1074 DEF_OPT("trigraphs", 0, OPT_trigraphs) \
1075 DEF_OPT("v", 0, OPT_v) \
1076 DEF_OPT("w", 0, OPT_w)
1077
1078#define DEF_OPT(text, msg, code) code,
e23c0ba3
ZW
1079enum opt_code
1080{
ae79697b 1081 COMMAND_LINE_OPTIONS
e23c0ba3
ZW
1082 N_OPTS
1083};
ae79697b 1084#undef DEF_OPT
e23c0ba3
ZW
1085
1086struct cl_option
1087{
1088 const char *opt_text;
1089 const char *msg;
1090 size_t opt_len;
1091 enum opt_code opt_code;
1092};
1093
ae79697b 1094#define DEF_OPT(text, msg, code) { text, msg, sizeof(text) - 1, code },
e23c0ba3
ZW
1095#ifdef HOST_EBCDIC
1096static struct cl_option cl_options[] =
1097#else
1098static const struct cl_option cl_options[] =
1099#endif
1100{
ae79697b 1101 COMMAND_LINE_OPTIONS
e23c0ba3
ZW
1102};
1103#undef DEF_OPT
ae79697b 1104#undef COMMAND_LINE_OPTIONS
e23c0ba3
ZW
1105
1106/* Perform a binary search to find which, if any, option the given
1107 command-line matches. Returns its index in the option array,
1108 negative on failure. Complications arise since some options can be
1109 suffixed with an argument, and multiple complete matches can occur,
1110 e.g. -iwithprefix and -iwithprefixbefore. Moreover, we want to
1111 accept options beginning with -g and -W that we do not recognise,
1112 but not to swallow any subsequent command line argument; these are
1113 handled as special cases in cpp_handle_option */
1114static int
1115parse_option (input)
1116 const char *input;
1117{
1118 unsigned int md, mn, mx;
1119 size_t opt_len;
1120 int comp;
1121
1122 mn = 0;
1123 mx = N_OPTS;
1124
1125 while (mx > mn)
1126 {
1127 md = (mn + mx) / 2;
ae79697b 1128
e23c0ba3 1129 opt_len = cl_options[md].opt_len;
61d0346d 1130 comp = memcmp (input, cl_options[md].opt_text, opt_len);
ae79697b 1131
e23c0ba3
ZW
1132 if (comp > 0)
1133 mn = md + 1;
1134 else if (comp < 0)
1135 mx = md;
1136 else
1137 {
1138 if (input[opt_len] == '\0')
1139 return md;
1140 /* We were passed more text. If the option takes an argument,
1141 we may match a later option or we may have been passed the
1142 argument. The longest possible option match succeeds.
1143 If the option takes no arguments we have not matched and
1144 continue the search (e.g. input="stdc++" match was "stdc") */
1145 mn = md + 1;
1146 if (cl_options[md].msg)
1147 {
1148 /* Scan forwards. If we get an exact match, return it.
1149 Otherwise, return the longest option-accepting match.
1150 This loops no more than twice with current options */
1151 mx = md;
1152 for (; mn < N_OPTS; mn++)
1153 {
1154 opt_len = cl_options[mn].opt_len;
61d0346d 1155 if (memcmp (input, cl_options[mn].opt_text, opt_len))
e23c0ba3
ZW
1156 break;
1157 if (input[opt_len] == '\0')
1158 return mn;
1159 if (cl_options[mn].msg)
1160 mx = mn;
1161 }
1162 return mx;
1163 }
1164 }
1165 }
1166
1167 return -1;
1168}
1169
6de1e2a9
ZW
1170/* Handle one command-line option in (argc, argv).
1171 Can be called multiple times, to handle multiple sets of options.
1172 Returns number of strings consumed. */
c8d8ed65 1173
2c0accc9
ZW
1174int
1175cpp_handle_option (pfile, argc, argv)
6de1e2a9
ZW
1176 cpp_reader *pfile;
1177 int argc;
1178 char **argv;
1179{
6de1e2a9 1180 int i = 0;
f8f769ea 1181 struct cpp_pending *pend = CPP_OPTION (pfile, pending);
6de1e2a9 1182
0b22d65c
ZW
1183 if (argv[i][0] != '-')
1184 {
ae79697b
ZW
1185 if (CPP_OPTION (pfile, out_fname) != NULL)
1186 cpp_fatal (pfile, "Too many arguments. Type %s --help for usage info",
1187 progname);
1188 else if (CPP_OPTION (pfile, in_fname) != NULL)
1189 CPP_OPTION (pfile, out_fname) = argv[i];
0b22d65c 1190 else
ae79697b 1191 CPP_OPTION (pfile, in_fname) = argv[i];
0b22d65c
ZW
1192 }
1193 else
e23c0ba3
ZW
1194 {
1195 enum opt_code opt_code;
1196 int opt_index;
7ceb3598 1197 const char *arg = 0;
e23c0ba3
ZW
1198
1199 /* Skip over '-' */
1200 opt_index = parse_option (&argv[i][1]);
1201 if (opt_index < 0)
1202 return i;
1203
1204 opt_code = cl_options[opt_index].opt_code;
1205 if (cl_options[opt_index].msg)
1206 {
1207 arg = &argv[i][cl_options[opt_index].opt_len + 1];
1208
1209 /* Yuk. Special case for -g and -W as they must not swallow
1210 up any following argument. If this becomes common, add
1211 another field to the cl_options table */
1212 if (arg[0] == '\0' && !(opt_code == OPT_g || opt_code == OPT_W))
1213 {
1214 arg = argv[++i];
1215 if (!arg)
1216 {
d88b89e5 1217 cpp_fatal (pfile, cl_options[opt_index].msg, argv[i - 1]);
e23c0ba3
ZW
1218 return argc;
1219 }
1220 }
1221 }
ae79697b 1222
e23c0ba3
ZW
1223 switch (opt_code)
1224 {
1225 case N_OPTS: /* shut GCC up */
1226 break;
1227 case OPT_fleading_underscore:
0b22d65c 1228 user_label_prefix = "_";
e23c0ba3
ZW
1229 break;
1230 case OPT_fno_leading_underscore:
0b22d65c 1231 user_label_prefix = "";
e23c0ba3
ZW
1232 break;
1233 case OPT_fpreprocessed:
ae79697b 1234 CPP_OPTION (pfile, preprocessed) = 1;
e23c0ba3
ZW
1235 break;
1236 case OPT_fno_preprocessed:
ae79697b
ZW
1237 CPP_OPTION (pfile, preprocessed) = 0;
1238 break;
1239 case OPT_fshow_column:
1240 CPP_OPTION (pfile, show_column) = 1;
1241 break;
1242 case OPT_fno_show_column:
1243 CPP_OPTION (pfile, show_column) = 0;
e23c0ba3 1244 break;
6ab3e7dd
NB
1245 case OPT_ftabstop:
1246 /* Silently ignore empty string, non-longs and silly values. */
1247 if (arg[0] != '\0')
1248 {
1249 char *endptr;
1250 long tabstop = strtol (arg, &endptr, 10);
1251 if (*endptr == '\0' && tabstop >= 1 && tabstop <= 100)
1252 CPP_OPTION (pfile, tabstop) = tabstop;
1253 }
1254 break;
e23c0ba3 1255 case OPT_w:
ae79697b 1256 CPP_OPTION (pfile, inhibit_warnings) = 1;
e23c0ba3
ZW
1257 break;
1258 case OPT_g: /* Silently ignore anything but -g3 */
1259 if (!strcmp(&argv[i][2], "3"))
ae79697b 1260 CPP_OPTION (pfile, debug_output) = 1;
e23c0ba3
ZW
1261 break;
1262 case OPT_h:
1263 case OPT__help:
1264 print_help ();
1265 exit (0); /* XXX */
1266 break;
1267 case OPT__version:
1268 fprintf (stderr, _("GNU CPP version %s (cpplib)\n"), version_string);
1269 exit (0); /* XXX */
1270 break;
1271 case OPT_C:
ae79697b 1272 CPP_OPTION (pfile, discard_comments) = 0;
e23c0ba3
ZW
1273 break;
1274 case OPT_P:
ae79697b 1275 CPP_OPTION (pfile, no_line_commands) = 1;
e23c0ba3
ZW
1276 break;
1277 case OPT_dollar: /* Don't include $ in identifiers. */
ae79697b 1278 CPP_OPTION (pfile, dollars_in_ident) = 0;
e23c0ba3
ZW
1279 break;
1280 case OPT_H:
ae79697b 1281 CPP_OPTION (pfile, print_include_names) = 1;
e23c0ba3
ZW
1282 break;
1283 case OPT_D:
f8f769ea 1284 new_pending_directive (pend, arg, cpp_define);
e23c0ba3
ZW
1285 break;
1286 case OPT_pedantic_errors:
ae79697b 1287 CPP_OPTION (pfile, pedantic_errors) = 1;
e23c0ba3
ZW
1288 /* fall through */
1289 case OPT_pedantic:
ae79697b 1290 CPP_OPTION (pfile, pedantic) = 1;
e23c0ba3 1291 break;
e23c0ba3 1292 case OPT_trigraphs:
ae79697b 1293 CPP_OPTION (pfile, trigraphs) = 1;
e23c0ba3
ZW
1294 break;
1295 case OPT_plus:
ae79697b
ZW
1296 CPP_OPTION (pfile, cplusplus) = 1;
1297 CPP_OPTION (pfile, cplusplus_comments) = 1;
e23c0ba3
ZW
1298 break;
1299 case OPT_remap:
ae79697b 1300 CPP_OPTION (pfile, remap) = 1;
e23c0ba3
ZW
1301 break;
1302 case OPT_iprefix:
ae79697b
ZW
1303 CPP_OPTION (pfile, include_prefix) = arg;
1304 CPP_OPTION (pfile, include_prefix_len) = strlen (arg);
e23c0ba3
ZW
1305 break;
1306 case OPT_lang_c:
ae79697b
ZW
1307 CPP_OPTION (pfile, cplusplus) = 0;
1308 CPP_OPTION (pfile, cplusplus_comments) = 1;
1309 CPP_OPTION (pfile, c89) = 0;
1310 CPP_OPTION (pfile, c99) = 1;
9b55f29a 1311 CPP_OPTION (pfile, digraphs) = 1;
ae79697b 1312 CPP_OPTION (pfile, objc) = 0;
e23c0ba3 1313 break;
e23c0ba3 1314 case OPT_lang_cplusplus:
ae79697b
ZW
1315 CPP_OPTION (pfile, cplusplus) = 1;
1316 CPP_OPTION (pfile, cplusplus_comments) = 1;
1317 CPP_OPTION (pfile, c89) = 0;
1318 CPP_OPTION (pfile, c99) = 0;
1319 CPP_OPTION (pfile, objc) = 0;
9b55f29a 1320 CPP_OPTION (pfile, digraphs) = 1;
f8f769ea 1321 new_pending_directive (pend, "__cplusplus", cpp_define);
e23c0ba3 1322 break;
e23c0ba3 1323 case OPT_lang_objcplusplus:
f8f769ea
ZW
1324 CPP_OPTION (pfile, cplusplus) = 1;
1325 new_pending_directive (pend, "__cplusplus", cpp_define);
1326 /* fall through */
1327 case OPT_lang_objc:
ae79697b
ZW
1328 CPP_OPTION (pfile, cplusplus_comments) = 1;
1329 CPP_OPTION (pfile, c89) = 0;
1330 CPP_OPTION (pfile, c99) = 0;
1331 CPP_OPTION (pfile, objc) = 1;
f8f769ea 1332 new_pending_directive (pend, "__OBJC__", cpp_define);
e23c0ba3
ZW
1333 break;
1334 case OPT_lang_asm:
ae79697b 1335 CPP_OPTION (pfile, lang_asm) = 1;
f8f769ea
ZW
1336 CPP_OPTION (pfile, dollars_in_ident) = 0;
1337 new_pending_directive (pend, "__ASSEMBLER__", cpp_define);
e23c0ba3 1338 break;
e23c0ba3
ZW
1339 case OPT_nostdinc:
1340 /* -nostdinc causes no default include directories.
1341 You must specify all include-file directories with -I. */
ae79697b 1342 CPP_OPTION (pfile, no_standard_includes) = 1;
e23c0ba3
ZW
1343 break;
1344 case OPT_nostdincplusplus:
1345 /* -nostdinc++ causes no default C++-specific include directories. */
ae79697b 1346 CPP_OPTION (pfile, no_standard_cplusplus_includes) = 1;
e23c0ba3
ZW
1347 break;
1348 case OPT_std_gnu89:
ae79697b
ZW
1349 CPP_OPTION (pfile, cplusplus) = 0;
1350 CPP_OPTION (pfile, cplusplus_comments) = 1;
1351 CPP_OPTION (pfile, c89) = 1;
1352 CPP_OPTION (pfile, c99) = 0;
1353 CPP_OPTION (pfile, objc) = 0;
9b55f29a 1354 CPP_OPTION (pfile, digraphs) = 1;
e23c0ba3
ZW
1355 break;
1356 case OPT_std_gnu9x:
1357 case OPT_std_gnu99:
ae79697b
ZW
1358 CPP_OPTION (pfile, cplusplus) = 0;
1359 CPP_OPTION (pfile, cplusplus_comments) = 1;
1360 CPP_OPTION (pfile, c89) = 0;
1361 CPP_OPTION (pfile, c99) = 1;
9b55f29a 1362 CPP_OPTION (pfile, digraphs) = 1;
ae79697b 1363 CPP_OPTION (pfile, objc) = 0;
e33f6253 1364 new_pending_directive (pend, "__STDC_VERSION__=199901L", cpp_define);
e23c0ba3
ZW
1365 break;
1366 case OPT_std_iso9899_199409:
e33f6253 1367 new_pending_directive (pend, "__STDC_VERSION__=199409L", cpp_define);
e23c0ba3
ZW
1368 /* Fall through */
1369 case OPT_std_iso9899_1990:
1370 case OPT_std_c89:
9b55f29a 1371 case OPT_lang_c89:
ae79697b
ZW
1372 CPP_OPTION (pfile, cplusplus) = 0;
1373 CPP_OPTION (pfile, cplusplus_comments) = 0;
1374 CPP_OPTION (pfile, c89) = 1;
1375 CPP_OPTION (pfile, c99) = 0;
1376 CPP_OPTION (pfile, objc) = 0;
9b55f29a 1377 CPP_OPTION (pfile, digraphs) = opt_code == OPT_std_iso9899_199409;
ae79697b 1378 CPP_OPTION (pfile, trigraphs) = 1;
9b55f29a 1379 new_pending_directive (pend, "__STRICT_ANSI__", cpp_define);
e23c0ba3
ZW
1380 break;
1381 case OPT_std_iso9899_199x:
1382 case OPT_std_iso9899_1999:
1383 case OPT_std_c9x:
1384 case OPT_std_c99:
ae79697b
ZW
1385 CPP_OPTION (pfile, cplusplus) = 0;
1386 CPP_OPTION (pfile, cplusplus_comments) = 1;
1387 CPP_OPTION (pfile, c89) = 0;
1388 CPP_OPTION (pfile, c99) = 1;
1389 CPP_OPTION (pfile, objc) = 0;
9b55f29a 1390 CPP_OPTION (pfile, digraphs) = 1;
ae79697b 1391 CPP_OPTION (pfile, trigraphs) = 1;
e33f6253
NB
1392 new_pending_directive (pend, "__STRICT_ANSI__", cpp_define);
1393 new_pending_directive (pend, "__STDC_VERSION__=199901L", cpp_define);
e23c0ba3
ZW
1394 break;
1395 case OPT_o:
ae79697b 1396 if (CPP_OPTION (pfile, out_fname) != NULL)
0b22d65c 1397 {
e23c0ba3
ZW
1398 cpp_fatal (pfile, "Output filename specified twice");
1399 return argc;
1400 }
ae79697b
ZW
1401 CPP_OPTION (pfile, out_fname) = arg;
1402 if (!strcmp (CPP_OPTION (pfile, out_fname), "-"))
1403 CPP_OPTION (pfile, out_fname) = "";
e23c0ba3
ZW
1404 break;
1405 case OPT_v:
1406 fprintf (stderr, _("GNU CPP version %s (cpplib)\n"), version_string);
1407#ifdef TARGET_VERSION
1408 TARGET_VERSION;
1409#endif
1410 fputc ('\n', stderr);
ae79697b 1411 CPP_OPTION (pfile, verbose) = 1;
e23c0ba3
ZW
1412 break;
1413 case OPT_stdin_stdout:
1414 /* JF handle '-' as file name meaning stdin or stdout */
ae79697b
ZW
1415 if (CPP_OPTION (pfile, in_fname) == NULL)
1416 CPP_OPTION (pfile, in_fname) = "";
1417 else if (CPP_OPTION (pfile, out_fname) == NULL)
1418 CPP_OPTION (pfile, out_fname) = "";
e23c0ba3
ZW
1419 break;
1420 case OPT_d:
1421 /* Args to -d specify what parts of macros to dump.
1422 Silently ignore unrecognised options; they may
1423 be aimed at the compiler proper. */
1424 {
1425 char c;
ae79697b 1426
e23c0ba3
ZW
1427 while ((c = *arg++) != '\0')
1428 switch (c)
1429 {
1430 case 'M':
ae79697b
ZW
1431 CPP_OPTION (pfile, dump_macros) = dump_only;
1432 CPP_OPTION (pfile, no_output) = 1;
0b22d65c
ZW
1433 break;
1434 case 'N':
ae79697b 1435 CPP_OPTION (pfile, dump_macros) = dump_names;
0b22d65c
ZW
1436 break;
1437 case 'D':
ae79697b 1438 CPP_OPTION (pfile, dump_macros) = dump_definitions;
0b22d65c
ZW
1439 break;
1440 case 'I':
ae79697b 1441 CPP_OPTION (pfile, dump_includes) = 1;
0b22d65c
ZW
1442 break;
1443 }
e23c0ba3
ZW
1444 }
1445 break;
1446 /* The style of the choices here is a bit mixed.
1447 The chosen scheme is a hybrid of keeping all options in one string
1448 and specifying each option in a separate argument:
1449 -M|-MM|-MD file|-MMD file [-MG]. An alternative is:
1450 -M|-MM|-MD file|-MMD file|-MG|-MMG; or more concisely:
1451 -M[M][G][D file]. This is awkward to handle in specs, and is not
1452 as extensible. */
1453 /* ??? -MG must be specified in addition to one of -M or -MM.
1454 This can be relaxed in the future without breaking anything.
1455 The converse isn't true. */
ae79697b 1456
e23c0ba3
ZW
1457 /* -MG isn't valid with -MD or -MMD. This is checked for later. */
1458 case OPT_MG:
ae79697b 1459 CPP_OPTION (pfile, print_deps_missing_files) = 1;
e23c0ba3
ZW
1460 break;
1461 case OPT_M:
1462 case OPT_MD:
1463 case OPT_MM:
1464 case OPT_MMD:
1465 if (opt_code == OPT_M || opt_code == OPT_MD)
ae79697b 1466 CPP_OPTION (pfile, print_deps) = 2;
e23c0ba3 1467 else
ae79697b 1468 CPP_OPTION (pfile, print_deps) = 1;
e23c0ba3
ZW
1469
1470 /* For -MD and -MMD options, write deps on file named by next arg */
1471 /* For -M and -MM, write deps on standard output
1472 and suppress the usual output. */
1473 if (opt_code == OPT_MD || opt_code == OPT_MMD)
ae79697b 1474 CPP_OPTION (pfile, deps_file) = arg;
e23c0ba3 1475 else
ae79697b 1476 CPP_OPTION (pfile, no_output) = 1;
e23c0ba3
ZW
1477 break;
1478 case OPT_A:
e1e97c4f 1479 if (arg[0] == '-')
0b22d65c 1480 {
e1e97c4f
NB
1481 /* -A with an argument beginning with '-' acts as
1482 #unassert on whatever immediately follows the '-'.
1483 If "-" is the whole argument, we eliminate all
1484 predefined macros and assertions, including those
1485 that were specified earlier on the command line.
1486 That way we can get rid of any that were passed
1487 automatically in from GCC. */
1488
1489 if (arg[1] == '\0')
0b22d65c 1490 {
e1e97c4f
NB
1491 struct pending_option *o1, *o2;
1492
e33f6253 1493 o1 = pend->directive_head;
e1e97c4f
NB
1494 while (o1)
1495 {
1496 o2 = o1->next;
1497 free (o1);
1498 o1 = o2;
1499 }
e33f6253
NB
1500 pend->directive_head = NULL;
1501 pend->directive_tail = NULL;
0b22d65c 1502 }
e1e97c4f 1503 else
e33f6253 1504 new_pending_directive (pend, arg + 1, cpp_unassert);
6de1e2a9 1505 }
e1e97c4f 1506 else
e33f6253 1507 new_pending_directive (pend, arg, cpp_assert);
e23c0ba3
ZW
1508 break;
1509 case OPT_U:
e33f6253 1510 new_pending_directive (pend, arg, cpp_undef);
e23c0ba3
ZW
1511 break;
1512 case OPT_I: /* Add directory to path for includes. */
1513 if (!strcmp (arg, "-"))
1514 {
1515 /* -I- means:
1516 Use the preceding -I directories for #include "..."
1517 but not #include <...>.
1518 Don't search the directory of the present file
1519 for #include "...". (Note that -I. -I- is not the same as
1520 the default setup; -I. uses the compiler's working dir.) */
ae79697b 1521 if (! CPP_OPTION (pfile, ignore_srcdir))
e23c0ba3 1522 {
ae79697b
ZW
1523 pend->quote_head = pend->brack_head;
1524 pend->quote_tail = pend->brack_tail;
1525 pend->brack_head = 0;
1526 pend->brack_tail = 0;
1527 CPP_OPTION (pfile, ignore_srcdir) = 1;
e23c0ba3
ZW
1528 }
1529 else
1530 {
1531 cpp_fatal (pfile, "-I- specified twice");
1532 return argc;
1533 }
1534 }
1535 else
e33f6253 1536 append_include_chain (pfile, xstrdup (arg), BRACKET, 0);
e23c0ba3
ZW
1537 break;
1538 case OPT_isystem:
1539 /* Add directory to beginning of system include path, as a system
1540 include directory. */
e33f6253 1541 append_include_chain (pfile, xstrdup (arg), SYSTEM, 0);
e23c0ba3
ZW
1542 break;
1543 case OPT_include:
1544 {
1545 struct pending_option *o = (struct pending_option *)
1546 xmalloc (sizeof (struct pending_option));
1547 o->arg = arg;
1548
1549 /* This list has to be built in reverse order so that
1550 when cpp_start_read pushes all the -include files onto
1551 the buffer stack, they will be scanned in forward order. */
e33f6253
NB
1552 o->next = pend->include_head;
1553 pend->include_head = o;
e23c0ba3
ZW
1554 }
1555 break;
1556 case OPT_imacros:
1557 {
1558 struct pending_option *o = (struct pending_option *)
1559 xmalloc (sizeof (struct pending_option));
1560 o->arg = arg;
1561 o->next = NULL;
ae79697b 1562
e33f6253 1563 APPEND (pend, imacros, o);
e23c0ba3
ZW
1564 }
1565 break;
1566 case OPT_iwithprefix:
1567 /* Add directory to end of path for includes,
1568 with the default prefix at the front of its name. */
1569 /* fall through */
1570 case OPT_iwithprefixbefore:
1571 /* Add directory to main path for includes,
1572 with the default prefix at the front of its name. */
1573 {
1574 char *fname;
1575 int len;
ae79697b 1576
e23c0ba3 1577 len = strlen (arg);
ae79697b
ZW
1578
1579 if (CPP_OPTION (pfile, include_prefix) != 0)
e23c0ba3 1580 {
ae79697b
ZW
1581 size_t ipl = CPP_OPTION (pfile, include_prefix_len);
1582 fname = xmalloc (ipl + len + 1);
1583 memcpy (fname, CPP_OPTION (pfile, include_prefix), ipl);
1584 memcpy (fname + ipl, arg, len + 1);
e23c0ba3 1585 }
60893f43 1586 else if (cpp_GCC_INCLUDE_DIR_len)
e23c0ba3 1587 {
60893f43
ZW
1588 fname = xmalloc (cpp_GCC_INCLUDE_DIR_len + len + 1);
1589 memcpy (fname, cpp_GCC_INCLUDE_DIR, cpp_GCC_INCLUDE_DIR_len);
1590 memcpy (fname + cpp_GCC_INCLUDE_DIR_len, arg, len + 1);
e23c0ba3 1591 }
60893f43
ZW
1592 else
1593 fname = xstrdup (arg);
ae79697b 1594
e33f6253 1595 append_include_chain (pfile, fname,
e23c0ba3
ZW
1596 opt_code == OPT_iwithprefix ? SYSTEM: BRACKET, 0);
1597 }
1598 break;
1599 case OPT_idirafter:
1600 /* Add directory to end of path for includes. */
e33f6253 1601 append_include_chain (pfile, xstrdup (arg), AFTER, 0);
e23c0ba3
ZW
1602 break;
1603 case OPT_W:
1604 /* Silently ignore unrecognised options */
1605 if (!strcmp (argv[i], "-Wall"))
0b22d65c 1606 {
ae79697b
ZW
1607 CPP_OPTION (pfile, warn_trigraphs) = 1;
1608 CPP_OPTION (pfile, warn_comments) = 1;
0b22d65c 1609 }
e23c0ba3 1610 else if (!strcmp (argv[i], "-Wtraditional"))
07aa0b04 1611 CPP_OPTION (pfile, warn_traditional) = 1;
e23c0ba3 1612 else if (!strcmp (argv[i], "-Wtrigraphs"))
ae79697b 1613 CPP_OPTION (pfile, warn_trigraphs) = 1;
e23c0ba3 1614 else if (!strcmp (argv[i], "-Wcomment"))
ae79697b 1615 CPP_OPTION (pfile, warn_comments) = 1;
e23c0ba3 1616 else if (!strcmp (argv[i], "-Wcomments"))
ae79697b 1617 CPP_OPTION (pfile, warn_comments) = 1;
e23c0ba3 1618 else if (!strcmp (argv[i], "-Wundef"))
ae79697b 1619 CPP_OPTION (pfile, warn_undef) = 1;
e23c0ba3 1620 else if (!strcmp (argv[i], "-Wimport"))
ae79697b 1621 CPP_OPTION (pfile, warn_import) = 1;
041c3194
ZW
1622 else if (!strcmp (argv[i], "-Wpaste"))
1623 CPP_OPTION (pfile, warn_paste) = 1;
e23c0ba3 1624 else if (!strcmp (argv[i], "-Werror"))
ae79697b 1625 CPP_OPTION (pfile, warnings_are_errors) = 1;
e23c0ba3 1626 else if (!strcmp (argv[i], "-Wno-traditional"))
07aa0b04 1627 CPP_OPTION (pfile, warn_traditional) = 0;
e23c0ba3 1628 else if (!strcmp (argv[i], "-Wno-trigraphs"))
ae79697b 1629 CPP_OPTION (pfile, warn_trigraphs) = 0;
e23c0ba3 1630 else if (!strcmp (argv[i], "-Wno-comment"))
ae79697b 1631 CPP_OPTION (pfile, warn_comments) = 0;
e23c0ba3 1632 else if (!strcmp (argv[i], "-Wno-comments"))
ae79697b 1633 CPP_OPTION (pfile, warn_comments) = 0;
e23c0ba3 1634 else if (!strcmp (argv[i], "-Wno-undef"))
ae79697b 1635 CPP_OPTION (pfile, warn_undef) = 0;
e23c0ba3 1636 else if (!strcmp (argv[i], "-Wno-import"))
ae79697b 1637 CPP_OPTION (pfile, warn_import) = 0;
041c3194
ZW
1638 else if (!strcmp (argv[i], "-Wno-paste"))
1639 CPP_OPTION (pfile, warn_paste) = 0;
e23c0ba3 1640 else if (!strcmp (argv[i], "-Wno-error"))
ae79697b 1641 CPP_OPTION (pfile, warnings_are_errors) = 0;
e23c0ba3
ZW
1642 break;
1643 }
1644 }
6de1e2a9 1645 return i + 1;
e23c0ba3 1646}
0b22d65c 1647
e23c0ba3
ZW
1648#ifdef HOST_EBCDIC
1649static int
1650opt_comp (const void *p1, const void *p2)
1651{
1652 return strcmp (((struct cl_option *)p1)->opt_text,
1653 ((struct cl_option *)p2)->opt_text);
6de1e2a9 1654}
e23c0ba3 1655#endif
6de1e2a9
ZW
1656
1657/* Handle command-line options in (argc, argv).
1658 Can be called multiple times, to handle multiple sets of options.
1659 Returns if an unrecognized option is seen.
1660 Returns number of strings consumed. */
6de1e2a9
ZW
1661int
1662cpp_handle_options (pfile, argc, argv)
1663 cpp_reader *pfile;
1664 int argc;
1665 char **argv;
1666{
1667 int i;
1668 int strings_processed;
e23c0ba3 1669
6de1e2a9
ZW
1670 for (i = 0; i < argc; i += strings_processed)
1671 {
2c0accc9 1672 strings_processed = cpp_handle_option (pfile, argc - i, argv + i);
6de1e2a9
ZW
1673 if (strings_processed == 0)
1674 break;
1675 }
1676 return i;
1677}
1678
1679static void
1680print_help ()
1681{
c1212d2f 1682 fprintf (stderr, _("Usage: %s [switches] input output\n"), progname);
aaaf7848
DT
1683 /* To keep the lines from getting too long for some compilers, limit
1684 to about 500 characters (6 lines) per chunk. */
6de1e2a9
ZW
1685 fputs (_("\
1686Switches:\n\
1687 -include <file> Include the contents of <file> before other files\n\
1688 -imacros <file> Accept definition of macros in <file>\n\
1689 -iprefix <path> Specify <path> as a prefix for next two options\n\
1690 -iwithprefix <dir> Add <dir> to the end of the system include path\n\
1691 -iwithprefixbefore <dir> Add <dir> to the end of the main include path\n\
1692 -isystem <dir> Add <dir> to the start of the system include path\n\
aaaf7848
DT
1693"), stdout);
1694 fputs (_("\
6de1e2a9
ZW
1695 -idirafter <dir> Add <dir> to the end of the system include path\n\
1696 -I <dir> Add <dir> to the end of the main include path\n\
e23c0ba3 1697 -I- Fine-grained include path control; see info docs\n\
6de1e2a9
ZW
1698 -nostdinc Do not search system include directories\n\
1699 (dirs specified with -isystem will still be used)\n\
1700 -nostdinc++ Do not search system include directories for C++\n\
1701 -o <file> Put output into <file>\n\
aaaf7848
DT
1702"), stdout);
1703 fputs (_("\
041c3194 1704 -pedantic Issue all warnings demanded by strict ISO C\n\
e23c0ba3 1705 -pedantic-errors Issue -pedantic warnings as errors instead\n\
041c3194 1706 -trigraphs Support ISO C trigraphs\n\
6de1e2a9
ZW
1707 -lang-c Assume that the input sources are in C\n\
1708 -lang-c89 Assume that the input sources are in C89\n\
aaaf7848
DT
1709"), stdout);
1710 fputs (_("\
f9a0e96c 1711 -lang-c++ Assume that the input sources are in C++\n\
6de1e2a9
ZW
1712 -lang-objc Assume that the input sources are in ObjectiveC\n\
1713 -lang-objc++ Assume that the input sources are in ObjectiveC++\n\
1714 -lang-asm Assume that the input sources are in assembler\n\
aaaf7848
DT
1715"), stdout);
1716 fputs (_("\
6de1e2a9 1717 -std=<std name> Specify the conformance standard; one of:\n\
916269ab
UD
1718 gnu89, gnu99, c89, c99, iso9899:1990,\n\
1719 iso9899:199409, iso9899:1999\n\
6de1e2a9
ZW
1720 -+ Allow parsing of C++ style features\n\
1721 -w Inhibit warning messages\n\
1722 -Wtrigraphs Warn if trigraphs are encountered\n\
1723 -Wno-trigraphs Do not warn about trigraphs\n\
1724 -Wcomment{s} Warn if one comment starts inside another\n\
aaaf7848
DT
1725"), stdout);
1726 fputs (_("\
6de1e2a9 1727 -Wno-comment{s} Do not warn about comments\n\
f9a0e96c
ZW
1728 -Wtraditional Warn about features not present in traditional C\n\
1729 -Wno-traditional Do not warn about traditional C\n\
6de1e2a9
ZW
1730 -Wundef Warn if an undefined macro is used by #if\n\
1731 -Wno-undef Do not warn about testing undefined macros\n\
1732 -Wimport Warn about the use of the #import directive\n\
aaaf7848
DT
1733"), stdout);
1734 fputs (_("\
6de1e2a9
ZW
1735 -Wno-import Do not warn about the use of #import\n\
1736 -Werror Treat all warnings as errors\n\
1737 -Wno-error Do not treat warnings as errors\n\
1738 -Wall Enable all preprocessor warnings\n\
1739 -M Generate make dependencies\n\
1740 -MM As -M, but ignore system header files\n\
aaaf7848
DT
1741"), stdout);
1742 fputs (_("\
6de1e2a9
ZW
1743 -MD As -M, but put output in a .d file\n\
1744 -MMD As -MD, but ignore system header files\n\
1745 -MG Treat missing header file as generated files\n\
e23c0ba3 1746 -g3 Include #define and #undef directives in the output\n\
6de1e2a9
ZW
1747 -D<macro> Define a <macro> with string '1' as its value\n\
1748 -D<macro>=<val> Define a <macro> with <val> as its value\n\
aaaf7848
DT
1749"), stdout);
1750 fputs (_("\
6de1e2a9 1751 -A<question> (<answer>) Assert the <answer> to <question>\n\
e1e97c4f 1752 -A-<question> (<answer>) Disable the <answer> to <question>\n\
6de1e2a9 1753 -U<macro> Undefine <macro> \n\
6de1e2a9
ZW
1754 -v Display the version number\n\
1755 -H Print the name of header files as they are used\n\
1756 -C Do not discard comments\n\
aaaf7848
DT
1757"), stdout);
1758 fputs (_("\
6de1e2a9
ZW
1759 -dM Display a list of macro definitions active at end\n\
1760 -dD Preserve macro definitions in output\n\
1761 -dN As -dD except that only the names are preserved\n\
1762 -dI Include #include directives in the output\n\
6ab3e7dd 1763 -ftabstop=<number> Distance between tab stops for column reporting\n\
6de1e2a9
ZW
1764 -P Do not generate #line directives\n\
1765 -$ Do not allow '$' in identifiers\n\
aaaf7848
DT
1766"), stdout);
1767 fputs (_("\
6de1e2a9 1768 -remap Remap file names when including files.\n\
e23c0ba3 1769 --version Display version information\n\
6de1e2a9
ZW
1770 -h or --help Display this information\n\
1771"), stdout);
1772}
This page took 0.48995 seconds and 5 git commands to generate.