OSDN Git Service

* function.h (struct function): Add arg_pointer_save_area_init.
[pf3gnuchains/gcc-fork.git] / gcc / cpphash.h
1 /* Part of CPP library.
2    Copyright (C) 1997, 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
3
4 This program is free software; you can redistribute it and/or modify it
5 under the terms of the GNU General Public License as published by the
6 Free Software Foundation; either version 2, or (at your option) any
7 later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
17
18 /* This header defines all the internal data structures and functions
19    that need to be visible across files.  It's called cpphash.h for
20    historical reasons.  */
21
22 #ifndef GCC_CPPHASH_H
23 #define GCC_CPPHASH_H
24
25 #include "hashtable.h"
26
27 struct directive;               /* Deliberately incomplete.  */
28
29 /* Test if a sign is valid within a preprocessing number.  */
30 #define VALID_SIGN(c, prevc) \
31   (((c) == '+' || (c) == '-') && \
32    ((prevc) == 'e' || (prevc) == 'E' \
33     || (((prevc) == 'p' || (prevc) == 'P') \
34         && CPP_OPTION (pfile, extended_numbers))))
35
36 #define CPP_OPTION(PFILE, OPTION) ((PFILE)->opts.OPTION)
37 #define CPP_BUFFER(PFILE) ((PFILE)->buffer)
38 #define CPP_BUF_COLUMN(BUF, CUR) ((CUR) - (BUF)->line_base + (BUF)->col_adjust)
39 #define CPP_BUF_COL(BUF) CPP_BUF_COLUMN(BUF, (BUF)->cur)
40
41 /* Maximum nesting of cpp_buffers.  We use a static limit, partly for
42    efficiency, and partly to limit runaway recursion.  */
43 #define CPP_STACK_MAX 200
44
45 /* Memory pools.  */
46 #define POOL_ALIGN(size, align) (((size) + ((align) - 1)) & ~((align) - 1))
47 #define POOL_FRONT(p) ((p)->cur->front)
48 #define POOL_LIMIT(p) ((p)->cur->limit)
49 #define POOL_BASE(p)  ((p)->cur->base)
50 #define POOL_SIZE(p)  ((p)->cur->limit - (p)->cur->base)
51 #define POOL_ROOM(p)  ((p)->cur->limit - (p)->cur->front)
52 #define POOL_USED(p)  ((p)->cur->front - (p)->cur->base)
53 #define POOL_COMMIT(p, len) do {\
54   ((p)->cur->front += POOL_ALIGN (len, (p)->align));\
55   if ((p)->cur->front > (p)->cur->limit) abort ();} while (0)
56
57 typedef struct cpp_chunk cpp_chunk;
58 struct cpp_chunk
59 {
60   cpp_chunk *next;
61   unsigned char *front;
62   unsigned char *limit;
63   unsigned char *base;
64 };
65
66 typedef struct cpp_pool cpp_pool;
67 struct cpp_pool
68 {
69   struct cpp_chunk *cur, *locked, *first;
70   unsigned char *pos;           /* Current position.  */
71   unsigned int align;
72   unsigned int locks;
73 };
74
75 /* List of directories to look for include files in.  */
76 struct search_path
77 {
78   struct search_path *next;
79
80   /* NOTE: NAME may not be null terminated for the case of the current
81      file's directory!  */
82   const char *name;
83   unsigned int len;
84   /* We use these to tell if the directory mentioned here is a duplicate
85      of an earlier directory on the search path.  */
86   ino_t ino;
87   dev_t dev;
88   /* Non-zero if it is a system include directory.  */
89   int sysp;
90   /* Mapping of file names for this directory.  Only used on MS-DOS
91      and related platforms.  */
92   struct file_name_map *name_map;
93 };
94
95 /* #include types.  */
96 enum include_type {IT_INCLUDE, IT_INCLUDE_NEXT, IT_IMPORT, IT_CMDLINE};
97
98 typedef struct toklist toklist;
99 struct toklist
100 {
101   cpp_token *first;
102   cpp_token *limit;
103 };
104
105 typedef struct cpp_context cpp_context;
106 struct cpp_context
107 {
108   /* Doubly-linked list.  */
109   cpp_context *next, *prev;
110
111   /* Contexts other than the base context are contiguous tokens.
112      e.g. macro expansions, expanded argument tokens.  */
113   struct toklist list;
114
115   /* For a macro context, these are the macro and its arguments.  */
116   cpp_macro *macro;
117 };
118
119 struct lexer_state
120 {
121   /* Nonzero if first token on line is CPP_HASH.  */
122   unsigned char in_directive;
123
124   /* True if we are skipping a failed conditional group.  */
125   unsigned char skipping;
126
127   /* Nonzero if in a directive that takes angle-bracketed headers.  */
128   unsigned char angled_headers;
129
130   /* Nonzero to save comments.  Turned off if discard_comments, and in
131      all directives apart from #define.  */
132   unsigned char save_comments;
133
134   /* Nonzero if we're mid-comment.  */
135   unsigned char lexing_comment;
136
137   /* Nonzero if lexing __VA_ARGS__ is valid.  */
138   unsigned char va_args_ok;
139
140   /* Nonzero if lexing poisoned identifiers is valid.  */
141   unsigned char poisoned_ok;
142
143   /* Nonzero to prevent macro expansion.  */
144   unsigned char prevent_expansion;  
145
146   /* Nonzero when parsing arguments to a function-like macro.  */
147   unsigned char parsing_args;
148
149   /* Nonzero when in a # NUMBER directive.  */
150   unsigned char line_extension;
151 };
152
153 /* Special nodes - identifiers with predefined significance.  */
154 struct spec_nodes
155 {
156   cpp_hashnode *n_L;                    /* L"str" */
157   cpp_hashnode *n_defined;              /* defined operator */
158   cpp_hashnode *n_true;                 /* C++ keyword true */
159   cpp_hashnode *n_false;                /* C++ keyword false */
160   cpp_hashnode *n__Pragma;              /* _Pragma operator */
161   cpp_hashnode *n__STRICT_ANSI__;       /* STDC_0_IN_SYSTEM_HEADERS */
162   cpp_hashnode *n__CHAR_UNSIGNED__;     /* plain char is unsigned */
163   cpp_hashnode *n__VA_ARGS__;           /* C99 vararg macros */
164 };
165
166 struct cpp_buffer
167 {
168   const unsigned char *cur;      /* current position */
169   const unsigned char *rlimit; /* end of valid data */
170   const unsigned char *line_base; /* start of current line */
171   cppchar_t read_ahead;         /* read ahead character */
172   cppchar_t extra_char;         /* extra read-ahead for long tokens.  */
173
174   struct cpp_buffer *prev;
175
176   const unsigned char *buf;      /* Entire buffer.  */
177
178   /* Pointer into the include table; non-NULL if this is a file
179      buffer.  Used for include_next and to record control macros.  */
180   struct include_file *inc;
181
182   /* Value of if_stack at start of this file.
183      Used to prohibit unmatched #endif (etc) in an include file.  */
184   struct if_stack *if_stack;
185
186   /* Token column position adjustment owing to tabs in whitespace.  */
187   unsigned int col_adjust;
188
189   /* Contains PREV_WHITE and/or AVOID_LPASTE.  */
190   unsigned char saved_flags;
191
192   /* Because of the way the lexer works, -Wtrigraphs can sometimes
193      warn twice for the same trigraph.  This helps prevent that.  */
194   const unsigned char *last_Wtrigraphs;
195
196   /* True if we have already warned about C++ comments in this file.
197      The warning happens only for C89 extended mode with -pedantic on,
198      or for -Wtraditional, and only once per file (otherwise it would
199      be far too noisy).  */
200   unsigned char warned_cplusplus_comments;
201
202   /* True if we don't process trigraphs and escaped newlines.  True
203      for preprocessed input, command line directives, and _Pragma
204      buffers.  */
205   unsigned char from_stage3;
206
207   /* Nonzero means that the directory to start searching for ""
208      include files has been calculated and stored in "dir" below.  */
209   unsigned char search_cached;
210
211   /* At EOF, a buffer is automatically popped.  If RETURN_AT_EOF is
212      true, a CPP_EOF token is then returned.  Otherwise, the next
213      token from the enclosing buffer is returned.  */
214   bool return_at_eof;
215
216   /* The directory of the this buffer's file.  Its NAME member is not
217      allocated, so we don't need to worry about freeing it.  */
218   struct search_path dir;
219 };
220
221 /* A cpp_reader encapsulates the "state" of a pre-processor run.
222    Applying cpp_get_token repeatedly yields a stream of pre-processor
223    tokens.  Usually, there is only one cpp_reader object active.  */
224
225 struct cpp_reader
226 {
227   /* Top of buffer stack.  */
228   cpp_buffer *buffer;
229
230   /* Lexer state.  */
231   struct lexer_state state;
232
233   /* Source line tracking.  */
234   struct line_maps line_maps;
235   const struct line_map *map;
236   unsigned int line;
237
238   /* The position of the last lexed token and last lexed directive.  */
239   cpp_lexer_pos lexer_pos;
240   cpp_lexer_pos directive_pos;
241   unsigned int directive_line;
242
243   /* Memory pools.  */
244   cpp_pool ident_pool;          /* For all identifiers, and permanent
245                                    numbers and strings.  */
246   cpp_pool macro_pool;          /* For macro definitions.  Permanent.  */
247   cpp_pool argument_pool;       /* For macro arguments.  Temporary.   */
248
249   /* Context stack.  */
250   struct cpp_context base_context;
251   struct cpp_context *context;
252
253   /* If in_directive, the directive if known.  */
254   const struct directive *directive;
255
256   /* Multiple inlcude optimisation.  */
257   const cpp_hashnode *mi_cmacro;
258   const cpp_hashnode *mi_ind_cmacro;
259   bool mi_valid;
260
261   /* Token lookahead.  */
262   struct cpp_lookahead *la_read;        /* Read from this lookahead.  */
263   struct cpp_lookahead *la_write;       /* Write to this lookahead.  */
264   struct cpp_lookahead *la_unused;      /* Free store.  */
265   struct cpp_lookahead *la_saved;       /* Backup when entering directive.  */
266
267   /* Error counter for exit code.  */
268   unsigned int errors;
269
270   /* Line and column where a newline was first seen in a string
271      constant (multi-line strings).  */
272   cpp_lexer_pos mlstring_pos;
273
274   /* Buffer to hold macro definition string.  */
275   unsigned char *macro_buffer;
276   unsigned int macro_buffer_len;
277
278   /* Tree of other included files.  See cppfiles.c.  */
279   struct splay_tree_s *all_include_files;
280
281   /* Current maximum length of directory names in the search path
282      for include files.  (Altered as we get more of them.)  */
283   unsigned int max_include_len;
284
285   /* Date and time tokens.  Calculated together if either is requested.  */
286   cpp_token date;
287   cpp_token time;
288
289   /* Opaque handle to the dependencies of mkdeps.c.  Used by -M etc.  */
290   struct deps *deps;
291
292   /* Obstack holding all macro hash nodes.  This never shrinks.
293      See cpphash.c */
294   struct obstack hash_ob;
295
296   /* Obstack holding buffer and conditional structures.  This is a
297      real stack.  See cpplib.c.  */
298   struct obstack buffer_ob;
299
300   /* Pragma table - dynamic, because a library user can add to the
301      list of recognized pragmas.  */
302   struct pragma_entry *pragmas;
303
304   /* Call backs.  */
305   struct cpp_callbacks cb;
306
307   /* Identifier hash table.  */ 
308   struct ht *hash_table;
309
310   /* User visible options.  */
311   struct cpp_options opts;
312
313   /* Special nodes - identifiers with predefined significance to the
314      preprocessor.  */
315   struct spec_nodes spec_nodes;
316
317   /* Whether to print our version number.  Done this way so
318      we don't get it twice for -v -version.  */
319   unsigned char print_version;
320
321   /* Whether cpplib owns the hashtable.  */
322   unsigned char our_hashtable;
323 };
324
325 /* Character classes.  Based on the more primitive macros in safe-ctype.h.
326    If the definition of `numchar' looks odd to you, please look up the
327    definition of a pp-number in the C standard [section 6.4.8 of C99].
328
329    In the unlikely event that characters other than \r and \n enter
330    the set is_vspace, the macro handle_newline() in cpplex.c must be
331    updated.  */
332 #define _dollar_ok(x)   ((x) == '$' && CPP_OPTION (pfile, dollars_in_ident))
333
334 #define is_idchar(x)    (ISIDNUM(x) || _dollar_ok(x))
335 #define is_numchar(x)   ISIDNUM(x)
336 #define is_idstart(x)   (ISIDST(x) || _dollar_ok(x))
337 #define is_numstart(x)  ISDIGIT(x)
338 #define is_hspace(x)    ISBLANK(x)
339 #define is_vspace(x)    IS_VSPACE(x)
340 #define is_nvspace(x)   IS_NVSPACE(x)
341 #define is_space(x)     IS_SPACE_OR_NUL(x)
342
343 /* This table is constant if it can be initialized at compile time,
344    which is the case if cpp was compiled with GCC >=2.7, or another
345    compiler that supports C99.  */
346 #if HAVE_DESIGNATED_INITIALIZERS
347 extern const unsigned char _cpp_trigraph_map[UCHAR_MAX + 1];
348 #else
349 extern unsigned char _cpp_trigraph_map[UCHAR_MAX + 1];
350 #endif
351
352 /* Macros.  */
353
354 #define CPP_PRINT_DEPS(PFILE) CPP_OPTION (PFILE, print_deps)
355 #define CPP_IN_SYSTEM_HEADER(PFILE) ((PFILE)->map && (PFILE)->map->sysp)
356 #define CPP_PEDANTIC(PF) CPP_OPTION (PF, pedantic)
357 #define CPP_WTRADITIONAL(PF) CPP_OPTION (PF, warn_traditional)
358
359 /* In cpperror.c  */
360 enum error_type { WARNING = 0, WARNING_SYSHDR, PEDWARN, ERROR, FATAL, ICE };
361 extern int _cpp_begin_message PARAMS ((cpp_reader *, enum error_type,
362                                        const cpp_lexer_pos *));
363
364 /* In cppmacro.c */
365 extern void _cpp_free_definition        PARAMS ((cpp_hashnode *));
366 extern int _cpp_create_definition       PARAMS ((cpp_reader *, cpp_hashnode *));
367 extern void _cpp_pop_context            PARAMS ((cpp_reader *));
368 extern void _cpp_free_lookaheads        PARAMS ((cpp_reader *));
369 extern void _cpp_release_lookahead      PARAMS ((cpp_reader *));
370 extern void _cpp_push_token             PARAMS ((cpp_reader *, const cpp_token *,
371                                                  const cpp_lexer_pos *));
372
373 /* In cpphash.c */
374 extern void _cpp_init_hashtable         PARAMS ((cpp_reader *, hash_table *));
375 extern void _cpp_destroy_hashtable      PARAMS ((cpp_reader *));
376
377 /* In cppfiles.c */
378 extern void _cpp_fake_include           PARAMS ((cpp_reader *, const char *));
379 extern void _cpp_never_reread           PARAMS ((struct include_file *));
380 extern char *_cpp_simplify_pathname     PARAMS ((char *));
381 extern bool _cpp_read_file              PARAMS ((cpp_reader *, const char *));
382 extern bool _cpp_execute_include        PARAMS ((cpp_reader *,
383                                                  const cpp_token *,
384                                                  enum include_type));
385 extern int _cpp_compare_file_date       PARAMS ((cpp_reader *,
386                                                  const cpp_token *));
387 extern void _cpp_report_missing_guards  PARAMS ((cpp_reader *));
388 extern void _cpp_init_includes          PARAMS ((cpp_reader *));
389 extern void _cpp_cleanup_includes       PARAMS ((cpp_reader *));
390 extern void _cpp_pop_file_buffer        PARAMS ((cpp_reader *,
391                                                  struct include_file *));
392
393 /* In cppexp.c */
394 extern int _cpp_parse_expr              PARAMS ((cpp_reader *));
395
396 /* In cpplex.c */
397 extern void _cpp_lex_token              PARAMS ((cpp_reader *, cpp_token *));
398 extern int _cpp_equiv_tokens            PARAMS ((const cpp_token *,
399                                                  const cpp_token *));
400 extern void _cpp_init_pool              PARAMS ((cpp_pool *, unsigned int,
401                                                   unsigned int, unsigned int));
402 extern void _cpp_free_pool              PARAMS ((cpp_pool *));
403 extern unsigned char *_cpp_pool_reserve PARAMS ((cpp_pool *, unsigned int));
404 extern unsigned char *_cpp_pool_alloc   PARAMS ((cpp_pool *, unsigned int));
405 extern unsigned char *_cpp_next_chunk   PARAMS ((cpp_pool *, unsigned int,
406                                                  unsigned char **));
407 extern void _cpp_lock_pool              PARAMS ((cpp_pool *));
408 extern void _cpp_unlock_pool            PARAMS ((cpp_pool *));
409
410 /* In cppinit.c.  */
411 extern bool _cpp_push_next_buffer       PARAMS ((cpp_reader *));
412
413 /* In cpplib.c */
414 extern int _cpp_test_assertion PARAMS ((cpp_reader *, int *));
415 extern int _cpp_handle_directive PARAMS ((cpp_reader *, int));
416 extern void _cpp_define_builtin PARAMS ((cpp_reader *, const char *));
417 extern void _cpp_do__Pragma     PARAMS ((cpp_reader *));
418 extern void _cpp_init_directives PARAMS ((cpp_reader *));
419 extern void _cpp_init_internal_pragmas PARAMS ((cpp_reader *));
420 extern void _cpp_do_file_change PARAMS ((cpp_reader *, enum lc_reason,
421                                          const char *,
422                                          unsigned int, unsigned int));
423 extern void _cpp_pop_buffer PARAMS ((cpp_reader *));
424
425 /* Utility routines and macros.  */
426 #define DSC(str) (const U_CHAR *)str, sizeof str - 1
427 #define xnew(T)         (T *) xmalloc (sizeof(T))
428 #define xcnew(T)        (T *) xcalloc (1, sizeof(T))
429 #define xnewvec(T, N)   (T *) xmalloc (sizeof(T) * (N))
430 #define xcnewvec(T, N)  (T *) xcalloc (N, sizeof(T))
431 #define xobnew(O, T)    (T *) obstack_alloc (O, sizeof(T))
432
433 /* These are inline functions instead of macros so we can get type
434    checking.  */
435 typedef unsigned char U_CHAR;
436 #define U (const U_CHAR *)  /* Intended use: U"string" */
437
438 static inline int ustrcmp       PARAMS ((const U_CHAR *, const U_CHAR *));
439 static inline int ustrncmp      PARAMS ((const U_CHAR *, const U_CHAR *,
440                                          size_t));
441 static inline size_t ustrlen    PARAMS ((const U_CHAR *));
442 static inline U_CHAR *uxstrdup  PARAMS ((const U_CHAR *));
443 static inline U_CHAR *ustrchr   PARAMS ((const U_CHAR *, int));
444 static inline int ufputs        PARAMS ((const U_CHAR *, FILE *));
445
446 static inline int
447 ustrcmp (s1, s2)
448      const U_CHAR *s1, *s2;
449 {
450   return strcmp ((const char *)s1, (const char *)s2);
451 }
452
453 static inline int
454 ustrncmp (s1, s2, n)
455      const U_CHAR *s1, *s2;
456      size_t n;
457 {
458   return strncmp ((const char *)s1, (const char *)s2, n);
459 }
460
461 static inline size_t
462 ustrlen (s1)
463      const U_CHAR *s1;
464 {
465   return strlen ((const char *)s1);
466 }
467
468 static inline U_CHAR *
469 uxstrdup (s1)
470      const U_CHAR *s1;
471 {
472   return (U_CHAR *) xstrdup ((const char *)s1);
473 }
474
475 static inline U_CHAR *
476 ustrchr (s1, c)
477      const U_CHAR *s1;
478      int c;
479 {
480   return (U_CHAR *) strchr ((const char *)s1, c);
481 }
482
483 static inline int
484 ufputs (s, f)
485      const U_CHAR *s;
486      FILE *f;
487 {
488   return fputs ((const char *)s, f);
489 }
490
491 #endif /* ! GCC_CPPHASH_H */