Merge from emacs-23
[bpt/emacs.git] / lib-src / ebrowse.c
1 /* ebrowse.c --- parsing files for the ebrowse C++ browser
2
3 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
4 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
5 Free Software Foundation, Inc.
6
7 This file is part of GNU Emacs.
8
9 GNU Emacs is free software: you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation, either version 3 of the License, or
12 (at your option) any later version.
13
14 GNU Emacs is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
21
22
23 #include <config.h>
24 #include <stdio.h>
25
26 #ifdef HAVE_STDLIB_H
27 #include <stdlib.h>
28 #endif
29
30 #include <string.h>
31 #include <ctype.h>
32 #include <assert.h>
33 #include "getopt.h"
34
35 /* The SunOS compiler doesn't have SEEK_END. */
36 #ifndef SEEK_END
37 #define SEEK_END 2
38 #endif
39
40 /* Conditionalize function prototypes. */
41
42 /* Value is non-zero if strings X and Y compare equal. */
43
44 #define streq(X, Y) (*(X) == *(Y) && strcmp ((X) + 1, (Y) + 1) == 0)
45
46 /* The ubiquitous `max' and `min' macros. */
47
48 #ifndef max
49 #define max(X, Y) ((X) > (Y) ? (X) : (Y))
50 #define min(X, Y) ((X) < (Y) ? (X) : (Y))
51 #endif
52
53 /* Files are read in chunks of this number of bytes. */
54
55 #define READ_CHUNK_SIZE (100 * 1024)
56
57 /* The character used as a separator in path lists (like $PATH). */
58
59 #if defined(__MSDOS__)
60 #define PATH_LIST_SEPARATOR ';'
61 #define FILENAME_EQ(X,Y) (strcasecmp(X,Y) == 0)
62 #else
63 #if defined(WINDOWSNT)
64 #define PATH_LIST_SEPARATOR ';'
65 #define FILENAME_EQ(X,Y) (stricmp(X,Y) == 0)
66 #else
67 #define PATH_LIST_SEPARATOR ':'
68 #define FILENAME_EQ(X,Y) (streq(X,Y))
69 #endif
70 #endif
71 /* The default output file name. */
72
73 #define DEFAULT_OUTFILE "BROWSE"
74
75 /* A version string written to the output file. Change this whenever
76 the structure of the output file changes. */
77
78 #define EBROWSE_FILE_VERSION "ebrowse 5.0"
79
80 /* The output file consists of a tree of Lisp objects, with major
81 nodes built out of Lisp structures. These are the heads of the
82 Lisp structs with symbols identifying their type. */
83
84 #define TREE_HEADER_STRUCT "[ebrowse-hs "
85 #define TREE_STRUCT "[ebrowse-ts "
86 #define MEMBER_STRUCT "[ebrowse-ms "
87 #define BROWSE_STRUCT "[ebrowse-bs "
88 #define CLASS_STRUCT "[ebrowse-cs "
89
90 /* The name of the symbol table entry for global functions, variables,
91 defines etc. This name also appears in the browser display. */
92
93 #define GLOBALS_NAME "*Globals*"
94
95 /* Token definitions. */
96
97 enum token
98 {
99 YYEOF = 0, /* end of file */
100 CSTRING = 256, /* string constant */
101 CCHAR, /* character constant */
102 CINT, /* integral constant */
103 CFLOAT, /* real constant */
104
105 ELLIPSIS, /* ... */
106 LSHIFTASGN, /* <<= */
107 RSHIFTASGN, /* >>= */
108 ARROWSTAR, /* ->* */
109 IDENT, /* identifier */
110 DIVASGN, /* /= */
111 INC, /* ++ */
112 ADDASGN, /* += */
113 DEC, /* -- */
114 ARROW, /* -> */
115 SUBASGN, /* -= */
116 MULASGN, /* *= */
117 MODASGN, /* %= */
118 LOR, /* || */
119 ORASGN, /* |= */
120 LAND, /* && */
121 ANDASGN, /* &= */
122 XORASGN, /* ^= */
123 POINTSTAR, /* .* */
124 DCOLON, /* :: */
125 EQ, /* == */
126 NE, /* != */
127 LE, /* <= */
128 LSHIFT, /* << */
129 GE, /* >= */
130 RSHIFT, /* >> */
131
132 /* Keywords. The undef's are there because these
133 three symbols are very likely to be defined somewhere. */
134 #undef BOOL
135 #undef TRUE
136 #undef FALSE
137
138 ASM, /* asm */
139 AUTO, /* auto */
140 BREAK, /* break */
141 CASE, /* case */
142 CATCH, /* catch */
143 CHAR, /* char */
144 CLASS, /* class */
145 CONST, /* const */
146 CONTINUE, /* continue */
147 DEFAULT, /* default */
148 DELETE, /* delete */
149 DO, /* do */
150 DOUBLE, /* double */
151 ELSE, /* else */
152 ENUM, /* enum */
153 EXTERN, /* extern */
154 FLOAT, /* float */
155 FOR, /* for */
156 FRIEND, /* friend */
157 GOTO, /* goto */
158 IF, /* if */
159 T_INLINE, /* inline */
160 INT, /* int */
161 LONG, /* long */
162 NEW, /* new */
163 OPERATOR, /* operator */
164 PRIVATE, /* private */
165 PROTECTED, /* protected */
166 PUBLIC, /* public */
167 REGISTER, /* register */
168 RETURN, /* return */
169 SHORT, /* short */
170 SIGNED, /* signed */
171 SIZEOF, /* sizeof */
172 STATIC, /* static */
173 STRUCT, /* struct */
174 SWITCH, /* switch */
175 TEMPLATE, /* template */
176 THIS, /* this */
177 THROW, /* throw */
178 TRY, /* try */
179 TYPEDEF, /* typedef */
180 UNION, /* union */
181 UNSIGNED, /* unsigned */
182 VIRTUAL, /* virtual */
183 VOID, /* void */
184 VOLATILE, /* volatile */
185 WHILE, /* while */
186 MUTABLE, /* mutable */
187 BOOL, /* bool */
188 TRUE, /* true */
189 FALSE, /* false */
190 SIGNATURE, /* signature (GNU extension) */
191 NAMESPACE, /* namespace */
192 EXPLICIT, /* explicit */
193 TYPENAME, /* typename */
194 CONST_CAST, /* const_cast */
195 DYNAMIC_CAST, /* dynamic_cast */
196 REINTERPRET_CAST, /* reinterpret_cast */
197 STATIC_CAST, /* static_cast */
198 TYPEID, /* typeid */
199 USING, /* using */
200 WCHAR /* wchar_t */
201 };
202
203 /* Storage classes, in a wider sense. */
204
205 enum sc
206 {
207 SC_UNKNOWN,
208 SC_MEMBER, /* Is an instance member. */
209 SC_STATIC, /* Is static member. */
210 SC_FRIEND, /* Is friend function. */
211 SC_TYPE /* Is a type definition. */
212 };
213
214 /* Member visibility. */
215
216 enum visibility
217 {
218 V_PUBLIC,
219 V_PROTECTED,
220 V_PRIVATE
221 };
222
223 /* Member flags. */
224
225 #define F_VIRTUAL 1 /* Is virtual function. */
226 #define F_INLINE 2 /* Is inline function. */
227 #define F_CONST 4 /* Is const. */
228 #define F_PURE 8 /* Is pure virtual function. */
229 #define F_MUTABLE 16 /* Is mutable. */
230 #define F_TEMPLATE 32 /* Is a template. */
231 #define F_EXPLICIT 64 /* Is explicit constructor. */
232 #define F_THROW 128 /* Has a throw specification. */
233 #define F_EXTERNC 256 /* Is declared extern "C". */
234 #define F_DEFINE 512 /* Is a #define. */
235
236 /* Two macros to set and test a bit in an int. */
237
238 #define SET_FLAG(F, FLAG) ((F) |= (FLAG))
239 #define HAS_FLAG(F, FLAG) (((F) & (FLAG)) != 0)
240
241 /* Structure describing a class member. */
242
243 struct member
244 {
245 struct member *next; /* Next in list of members. */
246 struct member *anext; /* Collision chain in member_table. */
247 struct member **list; /* Pointer to list in class. */
248 unsigned param_hash; /* Hash value for parameter types. */
249 int vis; /* Visibility (public, ...). */
250 int flags; /* See F_* above. */
251 char *regexp; /* Matching regular expression. */
252 char *filename; /* Don't free this shared string. */
253 int pos; /* Buffer position of occurrence. */
254 char *def_regexp; /* Regular expression matching definition. */
255 char *def_filename; /* File name of definition. */
256 int def_pos; /* Buffer position of definition. */
257 char name[1]; /* Member name. */
258 };
259
260 /* Structures of this type are used to connect class structures with
261 their super and subclasses. */
262
263 struct link
264 {
265 struct sym *sym; /* The super or subclass. */
266 struct link *next; /* Next in list or NULL. */
267 };
268
269 /* Structure used to record namespace aliases. */
270
271 struct alias
272 {
273 struct alias *next; /* Next in list. */
274 struct sym *namesp; /* Namespace in which defined. */
275 struct link *aliasee; /* List of aliased namespaces (A::B::C...). */
276 char name[1]; /* Alias name. */
277 };
278
279 /* The structure used to describe a class in the symbol table,
280 or a namespace in all_namespaces. */
281
282 struct sym
283 {
284 int flags; /* Is class a template class?. */
285 unsigned char visited; /* Used to find circles. */
286 struct sym *next; /* Hash collision list. */
287 struct link *subs; /* List of subclasses. */
288 struct link *supers; /* List of superclasses. */
289 struct member *vars; /* List of instance variables. */
290 struct member *fns; /* List of instance functions. */
291 struct member *static_vars; /* List of static variables. */
292 struct member *static_fns; /* List of static functions. */
293 struct member *friends; /* List of friend functions. */
294 struct member *types; /* List of local types. */
295 char *regexp; /* Matching regular expression. */
296 int pos; /* Buffer position. */
297 char *filename; /* File in which it can be found. */
298 char *sfilename; /* File in which members can be found. */
299 struct sym *namesp; /* Namespace in which defined. . */
300 char name[1]; /* Name of the class. */
301 };
302
303 /* Experimental: Print info for `--position-info'. We print
304 '(CLASS-NAME SCOPE MEMBER-NAME). */
305
306 #define P_DEFN 1
307 #define P_DECL 2
308
309 int info_where;
310 struct sym *info_cls = NULL;
311 struct member *info_member = NULL;
312
313 /* Experimental. For option `--position-info', the buffer position we
314 are interested in. When this position is reached, print out
315 information about what we know about that point. */
316
317 int info_position = -1;
318
319 /* Command line options structure for getopt_long. */
320
321 struct option options[] =
322 {
323 {"append", no_argument, NULL, 'a'},
324 {"files", required_argument, NULL, 'f'},
325 {"help", no_argument, NULL, -2},
326 {"min-regexp-length", required_argument, NULL, 'm'},
327 {"max-regexp-length", required_argument, NULL, 'M'},
328 {"no-nested-classes", no_argument, NULL, 'n'},
329 {"no-regexps", no_argument, NULL, 'x'},
330 {"no-structs-or-unions", no_argument, NULL, 's'},
331 {"output-file", required_argument, NULL, 'o'},
332 {"position-info", required_argument, NULL, 'p'},
333 {"search-path", required_argument, NULL, 'I'},
334 {"verbose", no_argument, NULL, 'v'},
335 {"version", no_argument, NULL, -3},
336 {"very-verbose", no_argument, NULL, 'V'},
337 {NULL, 0, NULL, 0}
338 };
339
340 /* Semantic values of tokens. Set by yylex.. */
341
342 unsigned yyival; /* Set for token CINT. */
343 char *yytext; /* Set for token IDENT. */
344 char *yytext_end;
345
346 /* Output file. */
347
348 FILE *yyout;
349
350 /* Current line number. */
351
352 int yyline;
353
354 /* The name of the current input file. */
355
356 char *filename;
357
358 /* Three character class vectors, and macros to test membership
359 of characters. */
360
361 char is_ident[255];
362 char is_digit[255];
363 char is_white[255];
364
365 #define IDENTP(C) is_ident[(unsigned char) (C)]
366 #define DIGITP(C) is_digit[(unsigned char) (C)]
367 #define WHITEP(C) is_white[(unsigned char) (C)]
368
369 /* Command line flags. */
370
371 int f_append;
372 int f_verbose;
373 int f_very_verbose;
374 int f_structs = 1;
375 int f_regexps = 1;
376 int f_nested_classes = 1;
377
378 /* Maximum and minimum lengths of regular expressions matching a
379 member, class etc., for writing them to the output file. These are
380 overridable from the command line. */
381
382 int min_regexp = 5;
383 int max_regexp = 50;
384
385 /* Input buffer. */
386
387 char *inbuffer;
388 char *in;
389 int inbuffer_size;
390
391 /* Return the current buffer position in the input file. */
392
393 #define BUFFER_POS() (in - inbuffer)
394
395 /* If current lookahead is CSTRING, the following points to the
396 first character in the string constant. Used for recognizing
397 extern "C". */
398
399 char *string_start;
400
401 /* The size of the hash tables for classes.and members. Should be
402 prime. */
403
404 #define TABLE_SIZE 1001
405
406 /* The hash table for class symbols. */
407
408 struct sym *class_table[TABLE_SIZE];
409
410 /* Hash table containing all member structures. This is generally
411 faster for member lookup than traversing the member lists of a
412 `struct sym'. */
413
414 struct member *member_table[TABLE_SIZE];
415
416 /* Hash table for namespace aliases */
417
418 struct alias *namespace_alias_table[TABLE_SIZE];
419
420 /* The special class symbol used to hold global functions,
421 variables etc. */
422
423 struct sym *global_symbols;
424
425 /* The current namespace. */
426
427 struct sym *current_namespace;
428
429 /* The list of all known namespaces. */
430
431 struct sym *all_namespaces;
432
433 /* Stack of namespaces we're currently nested in, during the parse. */
434
435 struct sym **namespace_stack;
436 int namespace_stack_size;
437 int namespace_sp;
438
439 /* The current lookahead token. */
440
441 int tk = -1;
442
443 /* Structure describing a keyword. */
444
445 struct kw
446 {
447 char *name; /* Spelling. */
448 int tk; /* Token value. */
449 struct kw *next; /* Next in collision chain. */
450 };
451
452 /* Keywords are lookup up in a hash table of their own. */
453
454 #define KEYWORD_TABLE_SIZE 1001
455 struct kw *keyword_table[KEYWORD_TABLE_SIZE];
456
457 /* Search path. */
458
459 struct search_path
460 {
461 char *path;
462 struct search_path *next;
463 };
464
465 struct search_path *search_path;
466 struct search_path *search_path_tail;
467
468 /* Function prototypes. */
469
470 int yylex (void);
471 void yyparse (void);
472 void re_init_parser (void);
473 char *token_string (int);
474 char *matching_regexp (void);
475 void init_sym (void);
476 struct sym *add_sym (char *, struct sym *);
477 void add_link (struct sym *, struct sym *);
478 void add_member_defn (struct sym *, char *, char *,
479 int, unsigned, int, int, int);
480 void add_member_decl (struct sym *, char *, char *, int,
481 unsigned, int, int, int, int);
482 void dump_roots (FILE *);
483 void *xmalloc (int);
484 void xfree (void *);
485 void add_global_defn (char *, char *, int, unsigned, int, int, int);
486 void add_global_decl (char *, char *, int, unsigned, int, int, int);
487 void add_define (char *, char *, int);
488 void mark_inherited_virtual (void);
489 void leave_namespace (void);
490 void enter_namespace (char *);
491 void register_namespace_alias (char *, struct link *);
492 void insert_keyword (char *, int);
493 void re_init_scanner (void);
494 void init_scanner (void);
495 void usage (int);
496 void version (void);
497 void process_file (char *);
498 void add_search_path (char *);
499 FILE *open_file (char *);
500 int process_pp_line (void);
501 int dump_members (FILE *, struct member *);
502 void dump_sym (FILE *, struct sym *);
503 int dump_tree (FILE *, struct sym *);
504 struct member *find_member (struct sym *, char *, int, int, unsigned);
505 struct member *add_member (struct sym *, char *, int, int, unsigned);
506 void mark_virtual (struct sym *);
507 void mark_virtual (struct sym *);
508 struct sym *make_namespace (char *, struct sym *);
509 char *sym_scope (struct sym *);
510 char *sym_scope_1 (struct sym *);
511 int skip_to (int);
512 void skip_matching (void);
513 void member (struct sym *, int);
514 void class_body (struct sym *, int);
515 void class_definition (struct sym *, int, int, int);
516 void declaration (int);
517 unsigned parm_list (int *);
518 char *operator_name (int *);
519 struct sym *parse_classname (void);
520 struct sym *parse_qualified_ident_or_type (char **);
521 void parse_qualified_param_ident_or_type (char **);
522 int globals (int);
523 void yyerror (char *, char *);
524 void usage (int) NO_RETURN;
525 void version (void) NO_RETURN;
526
527
528 \f
529 /***********************************************************************
530 Utilities
531 ***********************************************************************/
532
533 /* Print an error in a printf-like style with the current input file
534 name and line number. */
535
536 void
537 yyerror (char *format, char *s)
538 {
539 fprintf (stderr, "%s:%d: ", filename, yyline);
540 fprintf (stderr, format, s);
541 putc ('\n', stderr);
542 }
543
544
545 /* Like malloc but print an error and exit if not enough memory is
546 available. */
547
548 void *
549 xmalloc (int nbytes)
550 {
551 void *p = malloc (nbytes);
552 if (p == NULL)
553 {
554 yyerror ("out of memory", NULL);
555 exit (EXIT_FAILURE);
556 }
557 return p;
558 }
559
560
561 /* Like realloc but print an error and exit if out of memory. */
562
563 void *
564 xrealloc (void *p, int sz)
565 {
566 p = realloc (p, sz);
567 if (p == NULL)
568 {
569 yyerror ("out of memory", NULL);
570 exit (EXIT_FAILURE);
571 }
572 return p;
573 }
574
575
576 /* Like strdup, but print an error and exit if not enough memory is
577 available.. If S is null, return null. */
578
579 char *
580 xstrdup (char *s)
581 {
582 if (s)
583 s = strcpy (xmalloc (strlen (s) + 1), s);
584 return s;
585 }
586
587
588 \f
589 /***********************************************************************
590 Symbols
591 ***********************************************************************/
592
593 /* Initialize the symbol table. This currently only sets up the
594 special symbol for globals (`*Globals*'). */
595
596 void
597 init_sym (void)
598 {
599 global_symbols = add_sym (GLOBALS_NAME, NULL);
600 }
601
602
603 /* Add a symbol for class NAME to the symbol table. NESTED_IN_CLASS
604 is the class in which class NAME was found. If it is null,
605 this means the scope of NAME is the current namespace.
606
607 If a symbol for NAME already exists, return that. Otherwise
608 create a new symbol and set it to default values. */
609
610 struct sym *
611 add_sym (char *name, struct sym *nested_in_class)
612 {
613 struct sym *sym;
614 unsigned h;
615 char *s;
616 struct sym *scope = nested_in_class ? nested_in_class : current_namespace;
617
618 for (s = name, h = 0; *s; ++s)
619 h = (h << 1) ^ *s;
620 h %= TABLE_SIZE;
621
622 for (sym = class_table[h]; sym; sym = sym->next)
623 if (streq (name, sym->name)
624 && ((!sym->namesp && !scope)
625 || (sym->namesp && scope
626 && streq (sym->namesp->name, scope->name))))
627 break;
628
629 if (sym == NULL)
630 {
631 if (f_very_verbose)
632 {
633 putchar ('\t');
634 puts (name);
635 }
636
637 sym = (struct sym *) xmalloc (sizeof *sym + strlen (name));
638 memset (sym, 0, sizeof *sym);
639 strcpy (sym->name, name);
640 sym->namesp = scope;
641 sym->next = class_table[h];
642 class_table[h] = sym;
643 }
644
645 return sym;
646 }
647
648
649 /* Add links between superclass SUPER and subclass SUB. */
650
651 void
652 add_link (struct sym *super, struct sym *sub)
653 {
654 struct link *lnk, *lnk2, *p, *prev;
655
656 /* See if a link already exists. */
657 for (p = super->subs, prev = NULL;
658 p && strcmp (sub->name, p->sym->name) > 0;
659 prev = p, p = p->next)
660 ;
661
662 /* Avoid duplicates. */
663 if (p == NULL || p->sym != sub)
664 {
665 lnk = (struct link *) xmalloc (sizeof *lnk);
666 lnk2 = (struct link *) xmalloc (sizeof *lnk2);
667
668 lnk->sym = sub;
669 lnk->next = p;
670
671 if (prev)
672 prev->next = lnk;
673 else
674 super->subs = lnk;
675
676 lnk2->sym = super;
677 lnk2->next = sub->supers;
678 sub->supers = lnk2;
679 }
680 }
681
682
683 /* Find in class CLS member NAME.
684
685 VAR non-zero means look for a member variable; otherwise a function
686 is searched. SC specifies what kind of member is searched---a
687 static, or per-instance member etc. HASH is a hash code for the
688 parameter types of functions. Value is a pointer to the member
689 found or null if not found. */
690
691 struct member *
692 find_member (struct sym *cls, char *name, int var, int sc, unsigned int hash)
693 {
694 struct member **list;
695 struct member *p;
696 unsigned name_hash = 0;
697 char *s;
698 int i;
699
700 switch (sc)
701 {
702 case SC_FRIEND:
703 list = &cls->friends;
704 break;
705
706 case SC_TYPE:
707 list = &cls->types;
708 break;
709
710 case SC_STATIC:
711 list = var ? &cls->static_vars : &cls->static_fns;
712 break;
713
714 default:
715 list = var ? &cls->vars : &cls->fns;
716 break;
717 }
718
719 for (s = name; *s; ++s)
720 name_hash = (name_hash << 1) ^ *s;
721 i = name_hash % TABLE_SIZE;
722
723 for (p = member_table[i]; p; p = p->anext)
724 if (p->list == list && p->param_hash == hash && streq (name, p->name))
725 break;
726
727 return p;
728 }
729
730
731 /* Add to class CLS information for the declaration of member NAME.
732 REGEXP is a regexp matching the declaration, if non-null. POS is
733 the position in the source where the declaration is found. HASH is
734 a hash code for the parameter list of the member, if it's a
735 function. VAR non-zero means member is a variable or type. SC
736 specifies the type of member (instance member, static, ...). VIS
737 is the member's visibility (public, protected, private). FLAGS is
738 a bit set giving additional information about the member (see the
739 F_* defines). */
740
741 void
742 add_member_decl (struct sym *cls, char *name, char *regexp, int pos, unsigned int hash, int var, int sc, int vis, int flags)
743 {
744 struct member *m;
745
746 m = find_member (cls, name, var, sc, hash);
747 if (m == NULL)
748 m = add_member (cls, name, var, sc, hash);
749
750 /* Have we seen a new filename? If so record that. */
751 if (!cls->filename || !FILENAME_EQ (cls->filename, filename))
752 m->filename = filename;
753
754 m->regexp = regexp;
755 m->pos = pos;
756 m->flags = flags;
757
758 switch (vis)
759 {
760 case PRIVATE:
761 m->vis = V_PRIVATE;
762 break;
763
764 case PROTECTED:
765 m->vis = V_PROTECTED;
766 break;
767
768 case PUBLIC:
769 m->vis = V_PUBLIC;
770 break;
771 }
772
773 info_where = P_DECL;
774 info_cls = cls;
775 info_member = m;
776 }
777
778
779 /* Add to class CLS information for the definition of member NAME.
780 REGEXP is a regexp matching the declaration, if non-null. POS is
781 the position in the source where the declaration is found. HASH is
782 a hash code for the parameter list of the member, if it's a
783 function. VAR non-zero means member is a variable or type. SC
784 specifies the type of member (instance member, static, ...). VIS
785 is the member's visibility (public, protected, private). FLAGS is
786 a bit set giving additional information about the member (see the
787 F_* defines). */
788
789 void
790 add_member_defn (struct sym *cls, char *name, char *regexp, int pos, unsigned int hash, int var, int sc, int flags)
791 {
792 struct member *m;
793
794 if (sc == SC_UNKNOWN)
795 {
796 m = find_member (cls, name, var, SC_MEMBER, hash);
797 if (m == NULL)
798 {
799 m = find_member (cls, name, var, SC_STATIC, hash);
800 if (m == NULL)
801 m = add_member (cls, name, var, sc, hash);
802 }
803 }
804 else
805 {
806 m = find_member (cls, name, var, sc, hash);
807 if (m == NULL)
808 m = add_member (cls, name, var, sc, hash);
809 }
810
811 if (!cls->sfilename)
812 cls->sfilename = filename;
813
814 if (!FILENAME_EQ (cls->sfilename, filename))
815 m->def_filename = filename;
816
817 m->def_regexp = regexp;
818 m->def_pos = pos;
819 m->flags |= flags;
820
821 info_where = P_DEFN;
822 info_cls = cls;
823 info_member = m;
824 }
825
826
827 /* Add a symbol for a define named NAME to the symbol table.
828 REGEXP is a regular expression matching the define in the source,
829 if it is non-null. POS is the position in the file. */
830
831 void
832 add_define (char *name, char *regexp, int pos)
833 {
834 add_global_defn (name, regexp, pos, 0, 1, SC_FRIEND, F_DEFINE);
835 add_global_decl (name, regexp, pos, 0, 1, SC_FRIEND, F_DEFINE);
836 }
837
838
839 /* Add information for the global definition of NAME.
840 REGEXP is a regexp matching the declaration, if non-null. POS is
841 the position in the source where the declaration is found. HASH is
842 a hash code for the parameter list of the member, if it's a
843 function. VAR non-zero means member is a variable or type. SC
844 specifies the type of member (instance member, static, ...). VIS
845 is the member's visibility (public, protected, private). FLAGS is
846 a bit set giving additional information about the member (see the
847 F_* defines). */
848
849 void
850 add_global_defn (char *name, char *regexp, int pos, unsigned int hash, int var, int sc, int flags)
851 {
852 int i;
853 struct sym *sym;
854
855 /* Try to find out for which classes a function is a friend, and add
856 what we know about it to them. */
857 if (!var)
858 for (i = 0; i < TABLE_SIZE; ++i)
859 for (sym = class_table[i]; sym; sym = sym->next)
860 if (sym != global_symbols && sym->friends)
861 if (find_member (sym, name, 0, SC_FRIEND, hash))
862 add_member_defn (sym, name, regexp, pos, hash, 0,
863 SC_FRIEND, flags);
864
865 /* Add to global symbols. */
866 add_member_defn (global_symbols, name, regexp, pos, hash, var, sc, flags);
867 }
868
869
870 /* Add information for the global declaration of NAME.
871 REGEXP is a regexp matching the declaration, if non-null. POS is
872 the position in the source where the declaration is found. HASH is
873 a hash code for the parameter list of the member, if it's a
874 function. VAR non-zero means member is a variable or type. SC
875 specifies the type of member (instance member, static, ...). VIS
876 is the member's visibility (public, protected, private). FLAGS is
877 a bit set giving additional information about the member (see the
878 F_* defines). */
879
880 void
881 add_global_decl (char *name, char *regexp, int pos, unsigned int hash, int var, int sc, int flags)
882 {
883 /* Add declaration only if not already declared. Header files must
884 be processed before source files for this to have the right effect.
885 I do not want to handle implicit declarations at the moment. */
886 struct member *m;
887 struct member *found;
888
889 m = found = find_member (global_symbols, name, var, sc, hash);
890 if (m == NULL)
891 m = add_member (global_symbols, name, var, sc, hash);
892
893 /* Definition already seen => probably last declaration implicit.
894 Override. This means that declarations must always be added to
895 the symbol table before definitions. */
896 if (!found)
897 {
898 if (!global_symbols->filename
899 || !FILENAME_EQ (global_symbols->filename, filename))
900 m->filename = filename;
901
902 m->regexp = regexp;
903 m->pos = pos;
904 m->vis = V_PUBLIC;
905 m->flags = flags;
906
907 info_where = P_DECL;
908 info_cls = global_symbols;
909 info_member = m;
910 }
911 }
912
913
914 /* Add a symbol for member NAME to class CLS.
915 VAR non-zero means it's a variable. SC specifies the kind of
916 member. HASH is a hash code for the parameter types of a function.
917 Value is a pointer to the member's structure. */
918
919 struct member *
920 add_member (struct sym *cls, char *name, int var, int sc, unsigned int hash)
921 {
922 struct member *m = (struct member *) xmalloc (sizeof *m + strlen (name));
923 struct member **list;
924 struct member *p;
925 struct member *prev;
926 unsigned name_hash = 0;
927 int i;
928 char *s;
929
930 strcpy (m->name, name);
931 m->param_hash = hash;
932
933 m->vis = 0;
934 m->flags = 0;
935 m->regexp = NULL;
936 m->filename = NULL;
937 m->pos = 0;
938 m->def_regexp = NULL;
939 m->def_filename = NULL;
940 m->def_pos = 0;
941
942 assert (cls != NULL);
943
944 switch (sc)
945 {
946 case SC_FRIEND:
947 list = &cls->friends;
948 break;
949
950 case SC_TYPE:
951 list = &cls->types;
952 break;
953
954 case SC_STATIC:
955 list = var ? &cls->static_vars : &cls->static_fns;
956 break;
957
958 default:
959 list = var ? &cls->vars : &cls->fns;
960 break;
961 }
962
963 for (s = name; *s; ++s)
964 name_hash = (name_hash << 1) ^ *s;
965 i = name_hash % TABLE_SIZE;
966 m->anext = member_table[i];
967 member_table[i] = m;
968 m->list = list;
969
970 /* Keep the member list sorted. It's cheaper to do it here than to
971 sort them in Lisp. */
972 for (prev = NULL, p = *list;
973 p && strcmp (name, p->name) > 0;
974 prev = p, p = p->next)
975 ;
976
977 m->next = p;
978 if (prev)
979 prev->next = m;
980 else
981 *list = m;
982 return m;
983 }
984
985
986 /* Given the root R of a class tree, step through all subclasses
987 recursively, marking functions as virtual that are declared virtual
988 in base classes. */
989
990 void
991 mark_virtual (struct sym *r)
992 {
993 struct link *p;
994 struct member *m, *m2;
995
996 for (p = r->subs; p; p = p->next)
997 {
998 for (m = r->fns; m; m = m->next)
999 if (HAS_FLAG (m->flags, F_VIRTUAL))
1000 {
1001 for (m2 = p->sym->fns; m2; m2 = m2->next)
1002 if (m->param_hash == m2->param_hash && streq (m->name, m2->name))
1003 SET_FLAG (m2->flags, F_VIRTUAL);
1004 }
1005
1006 mark_virtual (p->sym);
1007 }
1008 }
1009
1010
1011 /* For all roots of the class tree, mark functions as virtual that
1012 are virtual because of a virtual declaration in a base class. */
1013
1014 void
1015 mark_inherited_virtual (void)
1016 {
1017 struct sym *r;
1018 int i;
1019
1020 for (i = 0; i < TABLE_SIZE; ++i)
1021 for (r = class_table[i]; r; r = r->next)
1022 if (r->supers == NULL)
1023 mark_virtual (r);
1024 }
1025
1026
1027 /* Create and return a symbol for a namespace with name NAME. */
1028
1029 struct sym *
1030 make_namespace (char *name, struct sym *context)
1031 {
1032 struct sym *s = (struct sym *) xmalloc (sizeof *s + strlen (name));
1033 memset (s, 0, sizeof *s);
1034 strcpy (s->name, name);
1035 s->next = all_namespaces;
1036 s->namesp = context;
1037 all_namespaces = s;
1038 return s;
1039 }
1040
1041
1042 /* Find the symbol for namespace NAME. If not found, retrun NULL */
1043
1044 struct sym *
1045 check_namespace (char *name, struct sym *context)
1046 {
1047 struct sym *p = NULL;
1048
1049 for (p = all_namespaces; p; p = p->next)
1050 {
1051 if (streq (p->name, name) && (p->namesp == context))
1052 break;
1053 }
1054
1055 return p;
1056 }
1057
1058 /* Find the symbol for namespace NAME. If not found, add a new symbol
1059 for NAME to all_namespaces. */
1060
1061 struct sym *
1062 find_namespace (char *name, struct sym *context)
1063 {
1064 struct sym *p = check_namespace (name, context);
1065
1066 if (p == NULL)
1067 p = make_namespace (name, context);
1068
1069 return p;
1070 }
1071
1072
1073 /* Find namespace alias with name NAME. If not found return NULL. */
1074
1075 struct link *
1076 check_namespace_alias (char *name)
1077 {
1078 struct link *p = NULL;
1079 struct alias *al;
1080 unsigned h;
1081 char *s;
1082
1083 for (s = name, h = 0; *s; ++s)
1084 h = (h << 1) ^ *s;
1085 h %= TABLE_SIZE;
1086
1087 for (al = namespace_alias_table[h]; al; al = al->next)
1088 if (streq (name, al->name) && (al->namesp == current_namespace))
1089 {
1090 p = al->aliasee;
1091 break;
1092 }
1093
1094 return p;
1095 }
1096
1097 /* Register the name NEW_NAME as an alias for namespace list OLD_NAME. */
1098
1099 void
1100 register_namespace_alias (char *new_name, struct link *old_name)
1101 {
1102 unsigned h;
1103 char *s;
1104 struct alias *al;
1105
1106 for (s = new_name, h = 0; *s; ++s)
1107 h = (h << 1) ^ *s;
1108 h %= TABLE_SIZE;
1109
1110
1111 /* Is it already in the table of aliases? */
1112 for (al = namespace_alias_table[h]; al; al = al->next)
1113 if (streq (new_name, al->name) && (al->namesp == current_namespace))
1114 return;
1115
1116 al = (struct alias *) xmalloc (sizeof *al + strlen (new_name));
1117 strcpy (al->name, new_name);
1118 al->next = namespace_alias_table[h];
1119 al->namesp = current_namespace;
1120 al->aliasee = old_name;
1121 namespace_alias_table[h] = al;
1122 }
1123
1124
1125 /* Enter namespace with name NAME. */
1126
1127 void
1128 enter_namespace (char *name)
1129 {
1130 struct sym *p = find_namespace (name, current_namespace);
1131
1132 if (namespace_sp == namespace_stack_size)
1133 {
1134 int size = max (10, 2 * namespace_stack_size);
1135 namespace_stack
1136 = (struct sym **) xrealloc ((void *)namespace_stack,
1137 size * sizeof *namespace_stack);
1138 namespace_stack_size = size;
1139 }
1140
1141 namespace_stack[namespace_sp++] = current_namespace;
1142 current_namespace = p;
1143 }
1144
1145
1146 /* Leave the current namespace. */
1147
1148 void
1149 leave_namespace (void)
1150 {
1151 assert (namespace_sp > 0);
1152 current_namespace = namespace_stack[--namespace_sp];
1153 }
1154
1155
1156 \f
1157 /***********************************************************************
1158 Writing the Output File
1159 ***********************************************************************/
1160
1161 /* Write string S to the output file FP in a Lisp-readable form.
1162 If S is null, write out `()'. */
1163
1164 #define PUTSTR(s, fp) \
1165 do { \
1166 if (!s) \
1167 { \
1168 putc ('(', fp); \
1169 putc (')', fp); \
1170 putc (' ', fp); \
1171 } \
1172 else \
1173 { \
1174 putc ('"', fp); \
1175 fputs (s, fp); \
1176 putc ('"', fp); \
1177 putc (' ', fp); \
1178 } \
1179 } while (0)
1180
1181 /* A dynamically allocated buffer for constructing a scope name. */
1182
1183 char *scope_buffer;
1184 int scope_buffer_size;
1185 int scope_buffer_len;
1186
1187
1188 /* Make sure scope_buffer has enough room to add LEN chars to it. */
1189
1190 void
1191 ensure_scope_buffer_room (int len)
1192 {
1193 if (scope_buffer_len + len >= scope_buffer_size)
1194 {
1195 int new_size = max (2 * scope_buffer_size, scope_buffer_len + len);
1196 scope_buffer = (char *) xrealloc (scope_buffer, new_size);
1197 scope_buffer_size = new_size;
1198 }
1199 }
1200
1201
1202 /* Recursively add the scope names of symbol P and the scopes of its
1203 namespaces to scope_buffer. Value is a pointer to the complete
1204 scope name constructed. */
1205
1206 char *
1207 sym_scope_1 (struct sym *p)
1208 {
1209 int len;
1210
1211 if (p->namesp)
1212 sym_scope_1 (p->namesp);
1213
1214 if (*scope_buffer)
1215 {
1216 ensure_scope_buffer_room (3);
1217 strcat (scope_buffer, "::");
1218 scope_buffer_len += 2;
1219 }
1220
1221 len = strlen (p->name);
1222 ensure_scope_buffer_room (len + 1);
1223 strcat (scope_buffer, p->name);
1224 scope_buffer_len += len;
1225
1226 if (HAS_FLAG (p->flags, F_TEMPLATE))
1227 {
1228 ensure_scope_buffer_room (3);
1229 strcat (scope_buffer, "<>");
1230 scope_buffer_len += 2;
1231 }
1232
1233 return scope_buffer;
1234 }
1235
1236
1237 /* Return the scope of symbol P in printed representation, i.e.
1238 as it would appear in a C*+ source file. */
1239
1240 char *
1241 sym_scope (struct sym *p)
1242 {
1243 if (!scope_buffer)
1244 {
1245 scope_buffer_size = 1024;
1246 scope_buffer = (char *) xmalloc (scope_buffer_size);
1247 }
1248
1249 *scope_buffer = '\0';
1250 scope_buffer_len = 0;
1251
1252 if (p->namesp)
1253 sym_scope_1 (p->namesp);
1254
1255 return scope_buffer;
1256 }
1257
1258
1259 /* Dump the list of members M to file FP. Value is the length of the
1260 list. */
1261
1262 int
1263 dump_members (FILE *fp, struct member *m)
1264 {
1265 int n;
1266
1267 putc ('(', fp);
1268
1269 for (n = 0; m; m = m->next, ++n)
1270 {
1271 fputs (MEMBER_STRUCT, fp);
1272 PUTSTR (m->name, fp);
1273 PUTSTR (NULL, fp); /* FIXME? scope for globals */
1274 fprintf (fp, "%u ", (unsigned) m->flags);
1275 PUTSTR (m->filename, fp);
1276 PUTSTR (m->regexp, fp);
1277 fprintf (fp, "%u ", (unsigned) m->pos);
1278 fprintf (fp, "%u ", (unsigned) m->vis);
1279 putc (' ', fp);
1280 PUTSTR (m->def_filename, fp);
1281 PUTSTR (m->def_regexp, fp);
1282 fprintf (fp, "%u", (unsigned) m->def_pos);
1283 putc (']', fp);
1284 putc ('\n', fp);
1285 }
1286
1287 putc (')', fp);
1288 putc ('\n', fp);
1289 return n;
1290 }
1291
1292
1293 /* Dump class ROOT to stream FP. */
1294
1295 void
1296 dump_sym (FILE *fp, struct sym *root)
1297 {
1298 fputs (CLASS_STRUCT, fp);
1299 PUTSTR (root->name, fp);
1300
1301 /* Print scope, if any. */
1302 if (root->namesp)
1303 PUTSTR (sym_scope (root), fp);
1304 else
1305 PUTSTR (NULL, fp);
1306
1307 /* Print flags. */
1308 fprintf (fp, "%u", root->flags);
1309 PUTSTR (root->filename, fp);
1310 PUTSTR (root->regexp, fp);
1311 fprintf (fp, "%u", (unsigned) root->pos);
1312 PUTSTR (root->sfilename, fp);
1313 putc (']', fp);
1314 putc ('\n', fp);
1315 }
1316
1317
1318 /* Dump class ROOT and its subclasses to file FP. Value is the
1319 number of classes written. */
1320
1321 int
1322 dump_tree (FILE *fp, struct sym *root)
1323 {
1324 struct link *lk;
1325 unsigned n = 0;
1326
1327 dump_sym (fp, root);
1328
1329 if (f_verbose)
1330 {
1331 putchar ('+');
1332 fflush (stdout);
1333 }
1334
1335 putc ('(', fp);
1336
1337 for (lk = root->subs; lk; lk = lk->next)
1338 {
1339 fputs (TREE_STRUCT, fp);
1340 n += dump_tree (fp, lk->sym);
1341 putc (']', fp);
1342 }
1343
1344 putc (')', fp);
1345
1346 dump_members (fp, root->vars);
1347 n += dump_members (fp, root->fns);
1348 dump_members (fp, root->static_vars);
1349 n += dump_members (fp, root->static_fns);
1350 n += dump_members (fp, root->friends);
1351 dump_members (fp, root->types);
1352
1353 /* Superclasses. */
1354 putc ('(', fp);
1355 putc (')', fp);
1356
1357 /* Mark slot. */
1358 putc ('(', fp);
1359 putc (')', fp);
1360
1361 putc ('\n', fp);
1362 return n;
1363 }
1364
1365
1366 /* Dump the entire class tree to file FP. */
1367
1368 void
1369 dump_roots (FILE *fp)
1370 {
1371 int i, n = 0;
1372 struct sym *r;
1373
1374 /* Output file header containing version string, command line
1375 options etc. */
1376 if (!f_append)
1377 {
1378 fputs (TREE_HEADER_STRUCT, fp);
1379 PUTSTR (EBROWSE_FILE_VERSION, fp);
1380
1381 putc ('\"', fp);
1382 if (!f_structs)
1383 fputs (" -s", fp);
1384 if (f_regexps)
1385 fputs (" -x", fp);
1386 putc ('\"', fp);
1387 fputs (" ()", fp);
1388 fputs (" ()", fp);
1389 putc (']', fp);
1390 }
1391
1392 /* Mark functions as virtual that are so because of functions
1393 declared virtual in base classes. */
1394 mark_inherited_virtual ();
1395
1396 /* Dump the roots of the graph. */
1397 for (i = 0; i < TABLE_SIZE; ++i)
1398 for (r = class_table[i]; r; r = r->next)
1399 if (!r->supers)
1400 {
1401 fputs (TREE_STRUCT, fp);
1402 n += dump_tree (fp, r);
1403 putc (']', fp);
1404 }
1405
1406 if (f_verbose)
1407 putchar ('\n');
1408 }
1409
1410
1411 \f
1412 /***********************************************************************
1413 Scanner
1414 ***********************************************************************/
1415
1416 #ifdef DEBUG
1417 #define INCREMENT_LINENO \
1418 do { \
1419 if (f_very_verbose) \
1420 { \
1421 ++yyline; \
1422 printf ("%d:\n", yyline); \
1423 } \
1424 else \
1425 ++yyline; \
1426 } while (0)
1427 #else
1428 #define INCREMENT_LINENO ++yyline
1429 #endif
1430
1431 /* Define two macros for accessing the input buffer (current input
1432 file). GET(C) sets C to the next input character and advances the
1433 input pointer. UNGET retracts the input pointer. */
1434
1435 #define GET(C) ((C) = *in++)
1436 #define UNGET() (--in)
1437
1438
1439 /* Process a preprocessor line. Value is the next character from the
1440 input buffer not consumed. */
1441
1442 int
1443 process_pp_line (void)
1444 {
1445 int in_comment = 0, in_string = 0;
1446 int c;
1447 char *p = yytext;
1448
1449 /* Skip over white space. The `#' has been consumed already. */
1450 while (WHITEP (GET (c)))
1451 ;
1452
1453 /* Read the preprocessor command (if any). */
1454 while (IDENTP (c))
1455 {
1456 *p++ = c;
1457 GET (c);
1458 }
1459
1460 /* Is it a `define'? */
1461 *p = '\0';
1462
1463 if (*yytext && streq (yytext, "define"))
1464 {
1465 p = yytext;
1466 while (WHITEP (c))
1467 GET (c);
1468 while (IDENTP (c))
1469 {
1470 *p++ = c;
1471 GET (c);
1472 }
1473
1474 *p = '\0';
1475
1476 if (*yytext)
1477 {
1478 char *regexp = matching_regexp ();
1479 int pos = BUFFER_POS ();
1480 add_define (yytext, regexp, pos);
1481 }
1482 }
1483
1484 while (c && (c != '\n' || in_comment || in_string))
1485 {
1486 if (c == '\\')
1487 GET (c);
1488 else if (c == '/' && !in_comment)
1489 {
1490 if (GET (c) == '*')
1491 in_comment = 1;
1492 }
1493 else if (c == '*' && in_comment)
1494 {
1495 if (GET (c) == '/')
1496 in_comment = 0;
1497 }
1498 else if (c == '"')
1499 in_string = !in_string;
1500
1501 if (c == '\n')
1502 INCREMENT_LINENO;
1503
1504 GET (c);
1505 }
1506
1507 return c;
1508 }
1509
1510
1511 /* Value is the next token from the input buffer. */
1512
1513 int
1514 yylex (void)
1515 {
1516 int c;
1517 char end_char;
1518 char *p;
1519
1520 for (;;)
1521 {
1522 while (WHITEP (GET (c)))
1523 ;
1524
1525 switch (c)
1526 {
1527 case '\n':
1528 INCREMENT_LINENO;
1529 break;
1530
1531 case '\r':
1532 break;
1533
1534 case 0:
1535 /* End of file. */
1536 return YYEOF;
1537
1538 case '\\':
1539 GET (c);
1540 break;
1541
1542 case '"':
1543 case '\'':
1544 /* String and character constants. */
1545 end_char = c;
1546 string_start = in;
1547 while (GET (c) && c != end_char)
1548 {
1549 switch (c)
1550 {
1551 case '\\':
1552 /* Escape sequences. */
1553 if (!GET (c))
1554 {
1555 if (end_char == '\'')
1556 yyerror ("EOF in character constant", NULL);
1557 else
1558 yyerror ("EOF in string constant", NULL);
1559 goto end_string;
1560 }
1561 else switch (c)
1562 {
1563 case '\n':
1564 INCREMENT_LINENO;
1565 case 'a':
1566 case 'b':
1567 case 'f':
1568 case 'n':
1569 case 'r':
1570 case 't':
1571 case 'v':
1572 break;
1573
1574 case 'x':
1575 {
1576 /* Hexadecimal escape sequence. */
1577 int i;
1578 for (i = 0; i < 2; ++i)
1579 {
1580 GET (c);
1581
1582 if (c >= '0' && c <= '7')
1583 ;
1584 else if (c >= 'a' && c <= 'f')
1585 ;
1586 else if (c >= 'A' && c <= 'F')
1587 ;
1588 else
1589 {
1590 UNGET ();
1591 break;
1592 }
1593 }
1594 }
1595 break;
1596
1597 case '0':
1598 {
1599 /* Octal escape sequence. */
1600 int i;
1601 for (i = 0; i < 3; ++i)
1602 {
1603 GET (c);
1604
1605 if (c >= '0' && c <= '7')
1606 ;
1607 else
1608 {
1609 UNGET ();
1610 break;
1611 }
1612 }
1613 }
1614 break;
1615
1616 default:
1617 break;
1618 }
1619 break;
1620
1621 case '\n':
1622 if (end_char == '\'')
1623 yyerror ("newline in character constant", NULL);
1624 else
1625 yyerror ("newline in string constant", NULL);
1626 INCREMENT_LINENO;
1627 break;
1628
1629 default:
1630 break;
1631 }
1632 }
1633
1634 end_string:
1635 return end_char == '\'' ? CCHAR : CSTRING;
1636
1637 case 'a': case 'b': case 'c': case 'd': case 'e': case 'f': case 'g':
1638 case 'h': case 'i': case 'j': case 'k': case 'l': case 'm': case 'n':
1639 case 'o': case 'p': case 'q': case 'r': case 's': case 't': case 'u':
1640 case 'v': case 'w': case 'x': case 'y': case 'z':
1641 case 'A': case 'B': case 'C': case 'D': case 'E': case 'F': case 'G':
1642 case 'H': case 'I': case 'J': case 'K': case 'L': case 'M': case 'N':
1643 case 'O': case 'P': case 'Q': case 'R': case 'S': case 'T': case 'U':
1644 case 'V': case 'W': case 'X': case 'Y': case 'Z': case '_':
1645 {
1646 /* Identifier and keywords. */
1647 unsigned hash;
1648 struct kw *k;
1649
1650 p = yytext;
1651 *p++ = hash = c;
1652
1653 while (IDENTP (GET (*p)))
1654 {
1655 hash = (hash << 1) ^ *p++;
1656 if (p == yytext_end - 1)
1657 {
1658 int size = yytext_end - yytext;
1659 yytext = (char *) xrealloc (yytext, 2 * size);
1660 yytext_end = yytext + 2 * size;
1661 p = yytext + size - 1;
1662 }
1663 }
1664
1665 UNGET ();
1666 *p = 0;
1667
1668 for (k = keyword_table[hash % KEYWORD_TABLE_SIZE]; k; k = k->next)
1669 if (streq (k->name, yytext))
1670 return k->tk;
1671
1672 return IDENT;
1673 }
1674
1675 case '/':
1676 /* C and C++ comments, '/' and '/='. */
1677 switch (GET (c))
1678 {
1679 case '*':
1680 while (GET (c))
1681 {
1682 switch (c)
1683 {
1684 case '*':
1685 if (GET (c) == '/')
1686 goto comment_end;
1687 UNGET ();
1688 break;
1689 case '\\':
1690 GET (c);
1691 break;
1692 case '\n':
1693 INCREMENT_LINENO;
1694 break;
1695 }
1696 }
1697 comment_end:;
1698 break;
1699
1700 case '=':
1701 return DIVASGN;
1702
1703 case '/':
1704 while (GET (c) && c != '\n')
1705 ;
1706 INCREMENT_LINENO;
1707 break;
1708
1709 default:
1710 UNGET ();
1711 return '/';
1712 }
1713 break;
1714
1715 case '+':
1716 if (GET (c) == '+')
1717 return INC;
1718 else if (c == '=')
1719 return ADDASGN;
1720 UNGET ();
1721 return '+';
1722
1723 case '-':
1724 switch (GET (c))
1725 {
1726 case '-':
1727 return DEC;
1728 case '>':
1729 if (GET (c) == '*')
1730 return ARROWSTAR;
1731 UNGET ();
1732 return ARROW;
1733 case '=':
1734 return SUBASGN;
1735 }
1736 UNGET ();
1737 return '-';
1738
1739 case '*':
1740 if (GET (c) == '=')
1741 return MULASGN;
1742 UNGET ();
1743 return '*';
1744
1745 case '%':
1746 if (GET (c) == '=')
1747 return MODASGN;
1748 UNGET ();
1749 return '%';
1750
1751 case '|':
1752 if (GET (c) == '|')
1753 return LOR;
1754 else if (c == '=')
1755 return ORASGN;
1756 UNGET ();
1757 return '|';
1758
1759 case '&':
1760 if (GET (c) == '&')
1761 return LAND;
1762 else if (c == '=')
1763 return ANDASGN;
1764 UNGET ();
1765 return '&';
1766
1767 case '^':
1768 if (GET (c) == '=')
1769 return XORASGN;
1770 UNGET ();
1771 return '^';
1772
1773 case '.':
1774 if (GET (c) == '*')
1775 return POINTSTAR;
1776 else if (c == '.')
1777 {
1778 if (GET (c) != '.')
1779 yyerror ("invalid token '..' ('...' assumed)", NULL);
1780 UNGET ();
1781 return ELLIPSIS;
1782 }
1783 else if (!DIGITP (c))
1784 {
1785 UNGET ();
1786 return '.';
1787 }
1788 goto mantissa;
1789
1790 case ':':
1791 if (GET (c) == ':')
1792 return DCOLON;
1793 UNGET ();
1794 return ':';
1795
1796 case '=':
1797 if (GET (c) == '=')
1798 return EQ;
1799 UNGET ();
1800 return '=';
1801
1802 case '!':
1803 if (GET (c) == '=')
1804 return NE;
1805 UNGET ();
1806 return '!';
1807
1808 case '<':
1809 switch (GET (c))
1810 {
1811 case '=':
1812 return LE;
1813 case '<':
1814 if (GET (c) == '=')
1815 return LSHIFTASGN;
1816 UNGET ();
1817 return LSHIFT;
1818 }
1819 UNGET ();
1820 return '<';
1821
1822 case '>':
1823 switch (GET (c))
1824 {
1825 case '=':
1826 return GE;
1827 case '>':
1828 if (GET (c) == '=')
1829 return RSHIFTASGN;
1830 UNGET ();
1831 return RSHIFT;
1832 }
1833 UNGET ();
1834 return '>';
1835
1836 case '#':
1837 c = process_pp_line ();
1838 if (c == 0)
1839 return YYEOF;
1840 break;
1841
1842 case '(': case ')': case '[': case ']': case '{': case '}':
1843 case ';': case ',': case '?': case '~':
1844 return c;
1845
1846 case '0':
1847 yyival = 0;
1848
1849 if (GET (c) == 'x' || c == 'X')
1850 {
1851 while (GET (c))
1852 {
1853 if (DIGITP (c))
1854 yyival = yyival * 16 + c - '0';
1855 else if (c >= 'a' && c <= 'f')
1856 yyival = yyival * 16 + c - 'a' + 10;
1857 else if (c >= 'A' && c <= 'F')
1858 yyival = yyival * 16 + c - 'A' + 10;
1859 else
1860 break;
1861 }
1862
1863 goto int_suffixes;
1864 }
1865 else if (c == '.')
1866 goto mantissa;
1867
1868 while (c >= '0' && c <= '7')
1869 {
1870 yyival = (yyival << 3) + c - '0';
1871 GET (c);
1872 }
1873
1874 int_suffixes:
1875 /* Integer suffixes. */
1876 while (isalpha (c))
1877 GET (c);
1878 UNGET ();
1879 return CINT;
1880
1881 case '1': case '2': case '3': case '4': case '5': case '6':
1882 case '7': case '8': case '9':
1883 /* Integer or floating constant, part before '.'. */
1884 yyival = c - '0';
1885
1886 while (GET (c) && DIGITP (c))
1887 yyival = 10 * yyival + c - '0';
1888
1889 if (c != '.')
1890 goto int_suffixes;
1891
1892 mantissa:
1893 /* Digits following '.'. */
1894 while (DIGITP (c))
1895 GET (c);
1896
1897 /* Optional exponent. */
1898 if (c == 'E' || c == 'e')
1899 {
1900 if (GET (c) == '-' || c == '+')
1901 GET (c);
1902
1903 while (DIGITP (c))
1904 GET (c);
1905 }
1906
1907 /* Optional type suffixes. */
1908 while (isalpha (c))
1909 GET (c);
1910 UNGET ();
1911 return CFLOAT;
1912
1913 default:
1914 break;
1915 }
1916 }
1917 }
1918
1919
1920 /* Actually local to matching_regexp. These variables must be in
1921 global scope for the case that `static' get's defined away. */
1922
1923 static char *matching_regexp_buffer, *matching_regexp_end_buf;
1924
1925
1926 /* Value is the string from the start of the line to the current
1927 position in the input buffer, or maybe a bit more if that string is
1928 shorter than min_regexp. */
1929
1930 char *
1931 matching_regexp (void)
1932 {
1933 char *p;
1934 char *s;
1935 char *t;
1936
1937 if (!f_regexps)
1938 return NULL;
1939
1940 if (matching_regexp_buffer == NULL)
1941 {
1942 matching_regexp_buffer = (char *) xmalloc (max_regexp);
1943 matching_regexp_end_buf = &matching_regexp_buffer[max_regexp] - 1;
1944 }
1945
1946 /* Scan back to previous newline of buffer start. */
1947 for (p = in - 1; p > inbuffer && *p != '\n'; --p)
1948 ;
1949
1950 if (*p == '\n')
1951 {
1952 while (in - p < min_regexp && p > inbuffer)
1953 {
1954 /* Line probably not significant enough */
1955 for (--p; p > inbuffer && *p != '\n'; --p)
1956 ;
1957 }
1958 if (*p == '\n')
1959 ++p;
1960 }
1961
1962 /* Copy from end to make sure significant portions are included.
1963 This implies that in the browser a regular expressing of the form
1964 `^.*{regexp}' has to be used. */
1965 for (s = matching_regexp_end_buf - 1, t = in;
1966 s > matching_regexp_buffer && t > p;)
1967 {
1968 *--s = *--t;
1969
1970 if (*s == '"' || *s == '\\')
1971 *--s = '\\';
1972 }
1973
1974 *(matching_regexp_end_buf - 1) = '\0';
1975 return xstrdup (s);
1976 }
1977
1978
1979 /* Return a printable representation of token T. */
1980
1981 char *
1982 token_string (int t)
1983 {
1984 static char b[3];
1985
1986 switch (t)
1987 {
1988 case CSTRING: return "string constant";
1989 case CCHAR: return "char constant";
1990 case CINT: return "int constant";
1991 case CFLOAT: return "floating constant";
1992 case ELLIPSIS: return "...";
1993 case LSHIFTASGN: return "<<=";
1994 case RSHIFTASGN: return ">>=";
1995 case ARROWSTAR: return "->*";
1996 case IDENT: return "identifier";
1997 case DIVASGN: return "/=";
1998 case INC: return "++";
1999 case ADDASGN: return "+=";
2000 case DEC: return "--";
2001 case ARROW: return "->";
2002 case SUBASGN: return "-=";
2003 case MULASGN: return "*=";
2004 case MODASGN: return "%=";
2005 case LOR: return "||";
2006 case ORASGN: return "|=";
2007 case LAND: return "&&";
2008 case ANDASGN: return "&=";
2009 case XORASGN: return "^=";
2010 case POINTSTAR: return ".*";
2011 case DCOLON: return "::";
2012 case EQ: return "==";
2013 case NE: return "!=";
2014 case LE: return "<=";
2015 case LSHIFT: return "<<";
2016 case GE: return ">=";
2017 case RSHIFT: return ">>";
2018 case ASM: return "asm";
2019 case AUTO: return "auto";
2020 case BREAK: return "break";
2021 case CASE: return "case";
2022 case CATCH: return "catch";
2023 case CHAR: return "char";
2024 case CLASS: return "class";
2025 case CONST: return "const";
2026 case CONTINUE: return "continue";
2027 case DEFAULT: return "default";
2028 case DELETE: return "delete";
2029 case DO: return "do";
2030 case DOUBLE: return "double";
2031 case ELSE: return "else";
2032 case ENUM: return "enum";
2033 case EXTERN: return "extern";
2034 case FLOAT: return "float";
2035 case FOR: return "for";
2036 case FRIEND: return "friend";
2037 case GOTO: return "goto";
2038 case IF: return "if";
2039 case T_INLINE: return "inline";
2040 case INT: return "int";
2041 case LONG: return "long";
2042 case NEW: return "new";
2043 case OPERATOR: return "operator";
2044 case PRIVATE: return "private";
2045 case PROTECTED: return "protected";
2046 case PUBLIC: return "public";
2047 case REGISTER: return "register";
2048 case RETURN: return "return";
2049 case SHORT: return "short";
2050 case SIGNED: return "signed";
2051 case SIZEOF: return "sizeof";
2052 case STATIC: return "static";
2053 case STRUCT: return "struct";
2054 case SWITCH: return "switch";
2055 case TEMPLATE: return "template";
2056 case THIS: return "this";
2057 case THROW: return "throw";
2058 case TRY: return "try";
2059 case TYPEDEF: return "typedef";
2060 case UNION: return "union";
2061 case UNSIGNED: return "unsigned";
2062 case VIRTUAL: return "virtual";
2063 case VOID: return "void";
2064 case VOLATILE: return "volatile";
2065 case WHILE: return "while";
2066 case MUTABLE: return "mutable";
2067 case BOOL: return "bool";
2068 case TRUE: return "true";
2069 case FALSE: return "false";
2070 case SIGNATURE: return "signature";
2071 case NAMESPACE: return "namespace";
2072 case EXPLICIT: return "explicit";
2073 case TYPENAME: return "typename";
2074 case CONST_CAST: return "const_cast";
2075 case DYNAMIC_CAST: return "dynamic_cast";
2076 case REINTERPRET_CAST: return "reinterpret_cast";
2077 case STATIC_CAST: return "static_cast";
2078 case TYPEID: return "typeid";
2079 case USING: return "using";
2080 case WCHAR: return "wchar_t";
2081 case YYEOF: return "EOF";
2082
2083 default:
2084 if (t < 255)
2085 {
2086 b[0] = t;
2087 b[1] = '\0';
2088 return b;
2089 }
2090 else
2091 return "???";
2092 }
2093 }
2094
2095
2096 /* Reinitialize the scanner for a new input file. */
2097
2098 void
2099 re_init_scanner (void)
2100 {
2101 in = inbuffer;
2102 yyline = 1;
2103
2104 if (yytext == NULL)
2105 {
2106 int size = 256;
2107 yytext = (char *) xmalloc (size * sizeof *yytext);
2108 yytext_end = yytext + size;
2109 }
2110 }
2111
2112
2113 /* Insert a keyword NAME with token value TK into the keyword hash
2114 table. */
2115
2116 void
2117 insert_keyword (char *name, int tk)
2118 {
2119 char *s;
2120 unsigned h = 0;
2121 struct kw *k = (struct kw *) xmalloc (sizeof *k);
2122
2123 for (s = name; *s; ++s)
2124 h = (h << 1) ^ *s;
2125
2126 h %= KEYWORD_TABLE_SIZE;
2127 k->name = name;
2128 k->tk = tk;
2129 k->next = keyword_table[h];
2130 keyword_table[h] = k;
2131 }
2132
2133
2134 /* Initialize the scanner for the first file. This sets up the
2135 character class vectors and fills the keyword hash table. */
2136
2137 void
2138 init_scanner (void)
2139 {
2140 int i;
2141
2142 /* Allocate the input buffer */
2143 inbuffer_size = READ_CHUNK_SIZE + 1;
2144 inbuffer = in = (char *) xmalloc (inbuffer_size);
2145 yyline = 1;
2146
2147 /* Set up character class vectors. */
2148 for (i = 0; i < sizeof is_ident; ++i)
2149 {
2150 if (i == '_' || isalnum (i))
2151 is_ident[i] = 1;
2152
2153 if (i >= '0' && i <= '9')
2154 is_digit[i] = 1;
2155
2156 if (i == ' ' || i == '\t' || i == '\f' || i == '\v')
2157 is_white[i] = 1;
2158 }
2159
2160 /* Fill keyword hash table. */
2161 insert_keyword ("and", LAND);
2162 insert_keyword ("and_eq", ANDASGN);
2163 insert_keyword ("asm", ASM);
2164 insert_keyword ("auto", AUTO);
2165 insert_keyword ("bitand", '&');
2166 insert_keyword ("bitor", '|');
2167 insert_keyword ("bool", BOOL);
2168 insert_keyword ("break", BREAK);
2169 insert_keyword ("case", CASE);
2170 insert_keyword ("catch", CATCH);
2171 insert_keyword ("char", CHAR);
2172 insert_keyword ("class", CLASS);
2173 insert_keyword ("compl", '~');
2174 insert_keyword ("const", CONST);
2175 insert_keyword ("const_cast", CONST_CAST);
2176 insert_keyword ("continue", CONTINUE);
2177 insert_keyword ("default", DEFAULT);
2178 insert_keyword ("delete", DELETE);
2179 insert_keyword ("do", DO);
2180 insert_keyword ("double", DOUBLE);
2181 insert_keyword ("dynamic_cast", DYNAMIC_CAST);
2182 insert_keyword ("else", ELSE);
2183 insert_keyword ("enum", ENUM);
2184 insert_keyword ("explicit", EXPLICIT);
2185 insert_keyword ("extern", EXTERN);
2186 insert_keyword ("false", FALSE);
2187 insert_keyword ("float", FLOAT);
2188 insert_keyword ("for", FOR);
2189 insert_keyword ("friend", FRIEND);
2190 insert_keyword ("goto", GOTO);
2191 insert_keyword ("if", IF);
2192 insert_keyword ("inline", T_INLINE);
2193 insert_keyword ("int", INT);
2194 insert_keyword ("long", LONG);
2195 insert_keyword ("mutable", MUTABLE);
2196 insert_keyword ("namespace", NAMESPACE);
2197 insert_keyword ("new", NEW);
2198 insert_keyword ("not", '!');
2199 insert_keyword ("not_eq", NE);
2200 insert_keyword ("operator", OPERATOR);
2201 insert_keyword ("or", LOR);
2202 insert_keyword ("or_eq", ORASGN);
2203 insert_keyword ("private", PRIVATE);
2204 insert_keyword ("protected", PROTECTED);
2205 insert_keyword ("public", PUBLIC);
2206 insert_keyword ("register", REGISTER);
2207 insert_keyword ("reinterpret_cast", REINTERPRET_CAST);
2208 insert_keyword ("return", RETURN);
2209 insert_keyword ("short", SHORT);
2210 insert_keyword ("signed", SIGNED);
2211 insert_keyword ("sizeof", SIZEOF);
2212 insert_keyword ("static", STATIC);
2213 insert_keyword ("static_cast", STATIC_CAST);
2214 insert_keyword ("struct", STRUCT);
2215 insert_keyword ("switch", SWITCH);
2216 insert_keyword ("template", TEMPLATE);
2217 insert_keyword ("this", THIS);
2218 insert_keyword ("throw", THROW);
2219 insert_keyword ("true", TRUE);
2220 insert_keyword ("try", TRY);
2221 insert_keyword ("typedef", TYPEDEF);
2222 insert_keyword ("typeid", TYPEID);
2223 insert_keyword ("typename", TYPENAME);
2224 insert_keyword ("union", UNION);
2225 insert_keyword ("unsigned", UNSIGNED);
2226 insert_keyword ("using", USING);
2227 insert_keyword ("virtual", VIRTUAL);
2228 insert_keyword ("void", VOID);
2229 insert_keyword ("volatile", VOLATILE);
2230 insert_keyword ("wchar_t", WCHAR);
2231 insert_keyword ("while", WHILE);
2232 insert_keyword ("xor", '^');
2233 insert_keyword ("xor_eq", XORASGN);
2234 }
2235
2236
2237 \f
2238 /***********************************************************************
2239 Parser
2240 ***********************************************************************/
2241
2242 /* Match the current lookahead token and set it to the next token. */
2243
2244 #define MATCH() (tk = yylex ())
2245
2246 /* Return the lookahead token. If current lookahead token is cleared,
2247 read a new token. */
2248
2249 #define LA1 (tk == -1 ? (tk = yylex ()) : tk)
2250
2251 /* Is the current lookahead equal to the token T? */
2252
2253 #define LOOKING_AT(T) (tk == (T))
2254
2255 /* Is the current lookahead one of T1 or T2? */
2256
2257 #define LOOKING_AT2(T1, T2) (tk == (T1) || tk == (T2))
2258
2259 /* Is the current lookahead one of T1, T2 or T3? */
2260
2261 #define LOOKING_AT3(T1, T2, T3) (tk == (T1) || tk == (T2) || tk == (T3))
2262
2263 /* Is the current lookahead one of T1...T4? */
2264
2265 #define LOOKING_AT4(T1, T2, T3, T4) \
2266 (tk == (T1) || tk == (T2) || tk == (T3) || tk == (T4))
2267
2268 /* Match token T if current lookahead is T. */
2269
2270 #define MATCH_IF(T) if (LOOKING_AT (T)) MATCH (); else ((void) 0)
2271
2272 /* Skip to matching token if current token is T. */
2273
2274 #define SKIP_MATCHING_IF(T) \
2275 if (LOOKING_AT (T)) skip_matching (); else ((void) 0)
2276
2277
2278 /* Skip forward until a given token TOKEN or YYEOF is seen and return
2279 the current lookahead token after skipping. */
2280
2281 int
2282 skip_to (int token)
2283 {
2284 while (!LOOKING_AT2 (YYEOF, token))
2285 MATCH ();
2286 return tk;
2287 }
2288
2289 /* Skip over pairs of tokens (parentheses, square brackets,
2290 angle brackets, curly brackets) matching the current lookahead. */
2291
2292 void
2293 skip_matching (void)
2294 {
2295 int open, close, n;
2296
2297 switch (open = LA1)
2298 {
2299 case '{':
2300 close = '}';
2301 break;
2302
2303 case '(':
2304 close = ')';
2305 break;
2306
2307 case '<':
2308 close = '>';
2309 break;
2310
2311 case '[':
2312 close = ']';
2313 break;
2314
2315 default:
2316 abort ();
2317 }
2318
2319 for (n = 0;;)
2320 {
2321 if (LOOKING_AT (open))
2322 ++n;
2323 else if (LOOKING_AT (close))
2324 --n;
2325 else if (LOOKING_AT (YYEOF))
2326 break;
2327
2328 MATCH ();
2329
2330 if (n == 0)
2331 break;
2332 }
2333 }
2334
2335 void
2336 skip_initializer (void)
2337 {
2338 for (;;)
2339 {
2340 switch (LA1)
2341 {
2342 case ';':
2343 case ',':
2344 case YYEOF:
2345 return;
2346
2347 case '{':
2348 case '[':
2349 case '(':
2350 skip_matching ();
2351 break;
2352
2353 default:
2354 MATCH ();
2355 break;
2356 }
2357 }
2358 }
2359
2360 /* Build qualified namespace alias (A::B::c) and return it. */
2361
2362 struct link *
2363 match_qualified_namespace_alias (void)
2364 {
2365 struct link *head = NULL;
2366 struct link *cur = NULL;
2367 struct link *tmp = NULL;
2368
2369 for (;;)
2370 {
2371 MATCH ();
2372 switch (LA1)
2373 {
2374 case IDENT:
2375 tmp = (struct link *) xmalloc (sizeof *cur);
2376 tmp->sym = find_namespace (yytext, cur ? cur->sym : NULL);
2377 tmp->next = NULL;
2378 if (head)
2379 {
2380 cur = cur->next = tmp;
2381 }
2382 else
2383 {
2384 head = cur = tmp;
2385 }
2386 break;
2387 case DCOLON:
2388 /* Just skip */
2389 break;
2390 default:
2391 return head;
2392 break;
2393 }
2394 }
2395 }
2396
2397 /* Re-initialize the parser by resetting the lookahead token. */
2398
2399 void
2400 re_init_parser (void)
2401 {
2402 tk = -1;
2403 }
2404
2405
2406 /* Parse a parameter list, including the const-specifier,
2407 pure-specifier, and throw-list that may follow a parameter list.
2408 Return in FLAGS what was seen following the parameter list.
2409 Returns a hash code for the parameter types. This value is used to
2410 distinguish between overloaded functions. */
2411
2412 unsigned
2413 parm_list (int *flags)
2414 {
2415 unsigned hash = 0;
2416 int type_seen = 0;
2417
2418 while (!LOOKING_AT2 (YYEOF, ')'))
2419 {
2420 switch (LA1)
2421 {
2422 /* Skip over grouping parens or parameter lists in parameter
2423 declarations. */
2424 case '(':
2425 skip_matching ();
2426 break;
2427
2428 /* Next parameter. */
2429 case ',':
2430 MATCH ();
2431 type_seen = 0;
2432 break;
2433
2434 /* Ignore the scope part of types, if any. This is because
2435 some types need scopes when defined outside of a class body,
2436 and don't need them inside the class body. This means that
2437 we have to look for the last IDENT in a sequence of
2438 IDENT::IDENT::... */
2439 case IDENT:
2440 if (!type_seen)
2441 {
2442 char *last_id;
2443 unsigned ident_type_hash = 0;
2444
2445 parse_qualified_param_ident_or_type (&last_id);
2446 if (last_id)
2447 {
2448 /* LAST_ID null means something like `X::*'. */
2449 for (; *last_id; ++last_id)
2450 ident_type_hash = (ident_type_hash << 1) ^ *last_id;
2451 hash = (hash << 1) ^ ident_type_hash;
2452 type_seen = 1;
2453 }
2454 }
2455 else
2456 MATCH ();
2457 break;
2458
2459 case VOID:
2460 /* This distinction is made to make `func (void)' equivalent
2461 to `func ()'. */
2462 type_seen = 1;
2463 MATCH ();
2464 if (!LOOKING_AT (')'))
2465 hash = (hash << 1) ^ VOID;
2466 break;
2467
2468 case BOOL: case CHAR: case CLASS: case CONST:
2469 case DOUBLE: case ENUM: case FLOAT: case INT:
2470 case LONG: case SHORT: case SIGNED: case STRUCT:
2471 case UNION: case UNSIGNED: case VOLATILE: case WCHAR:
2472 case ELLIPSIS:
2473 type_seen = 1;
2474 hash = (hash << 1) ^ LA1;
2475 MATCH ();
2476 break;
2477
2478 case '*': case '&': case '[': case ']':
2479 hash = (hash << 1) ^ LA1;
2480 MATCH ();
2481 break;
2482
2483 default:
2484 MATCH ();
2485 break;
2486 }
2487 }
2488
2489 if (LOOKING_AT (')'))
2490 {
2491 MATCH ();
2492
2493 if (LOOKING_AT (CONST))
2494 {
2495 /* We can overload the same function on `const' */
2496 hash = (hash << 1) ^ CONST;
2497 SET_FLAG (*flags, F_CONST);
2498 MATCH ();
2499 }
2500
2501 if (LOOKING_AT (THROW))
2502 {
2503 MATCH ();
2504 SKIP_MATCHING_IF ('(');
2505 SET_FLAG (*flags, F_THROW);
2506 }
2507
2508 if (LOOKING_AT ('='))
2509 {
2510 MATCH ();
2511 if (LOOKING_AT (CINT) && yyival == 0)
2512 {
2513 MATCH ();
2514 SET_FLAG (*flags, F_PURE);
2515 }
2516 }
2517 }
2518
2519 return hash;
2520 }
2521
2522
2523 /* Print position info to stdout. */
2524
2525 void
2526 print_info (void)
2527 {
2528 if (info_position >= 0 && BUFFER_POS () <= info_position)
2529 if (info_cls)
2530 printf ("(\"%s\" \"%s\" \"%s\" %d)\n",
2531 info_cls->name, sym_scope (info_cls),
2532 info_member->name, info_where);
2533 }
2534
2535
2536 /* Parse a member declaration within the class body of CLS. VIS is
2537 the access specifier for the member (private, protected,
2538 public). */
2539
2540 void
2541 member (struct sym *cls, int vis)
2542 {
2543 char *id = NULL;
2544 int sc = SC_MEMBER;
2545 char *regexp = NULL;
2546 int pos;
2547 int is_constructor;
2548 int anonymous = 0;
2549 int flags = 0;
2550 int class_tag;
2551 int type_seen = 0;
2552 int paren_seen = 0;
2553 unsigned hash = 0;
2554 int tilde = 0;
2555
2556 while (!LOOKING_AT4 (';', '{', '}', YYEOF))
2557 {
2558 switch (LA1)
2559 {
2560 default:
2561 MATCH ();
2562 break;
2563
2564 /* A function or class may follow. */
2565 case TEMPLATE:
2566 MATCH();
2567 SET_FLAG (flags, F_TEMPLATE);
2568 /* Skip over template argument list */
2569 SKIP_MATCHING_IF ('<');
2570 break;
2571
2572 case EXPLICIT:
2573 SET_FLAG (flags, F_EXPLICIT);
2574 goto typeseen;
2575
2576 case MUTABLE:
2577 SET_FLAG (flags, F_MUTABLE);
2578 goto typeseen;
2579
2580 case T_INLINE:
2581 SET_FLAG (flags, F_INLINE);
2582 goto typeseen;
2583
2584 case VIRTUAL:
2585 SET_FLAG (flags, F_VIRTUAL);
2586 goto typeseen;
2587
2588 case '[':
2589 skip_matching ();
2590 break;
2591
2592 case ENUM:
2593 sc = SC_TYPE;
2594 goto typeseen;
2595
2596 case TYPEDEF:
2597 sc = SC_TYPE;
2598 goto typeseen;
2599
2600 case FRIEND:
2601 sc = SC_FRIEND;
2602 goto typeseen;
2603
2604 case STATIC:
2605 sc = SC_STATIC;
2606 goto typeseen;
2607
2608 case '~':
2609 tilde = 1;
2610 MATCH ();
2611 break;
2612
2613 case IDENT:
2614 /* Remember IDENTS seen so far. Among these will be the member
2615 name. */
2616 id = (char *) xrealloc (id, strlen (yytext) + 2);
2617 if (tilde)
2618 {
2619 *id = '~';
2620 strcpy (id + 1, yytext);
2621 }
2622 else
2623 strcpy (id, yytext);
2624 MATCH ();
2625 break;
2626
2627 case OPERATOR:
2628 {
2629 char *s = operator_name (&sc);
2630 id = (char *) xrealloc (id, strlen (s) + 1);
2631 strcpy (id, s);
2632 }
2633 break;
2634
2635 case '(':
2636 /* Most probably the beginning of a parameter list. */
2637 MATCH ();
2638 paren_seen = 1;
2639
2640 if (id && cls)
2641 {
2642 if (!(is_constructor = streq (id, cls->name)))
2643 regexp = matching_regexp ();
2644 }
2645 else
2646 is_constructor = 0;
2647
2648 pos = BUFFER_POS ();
2649 hash = parm_list (&flags);
2650
2651 if (is_constructor)
2652 regexp = matching_regexp ();
2653
2654 if (id && cls != NULL)
2655 add_member_decl (cls, id, regexp, pos, hash, 0, sc, vis, flags);
2656
2657 while (!LOOKING_AT3 (';', '{', YYEOF))
2658 MATCH ();
2659
2660 if (LOOKING_AT ('{') && id && cls)
2661 add_member_defn (cls, id, regexp, pos, hash, 0, sc, flags);
2662
2663 free (id);
2664 id = NULL;
2665 sc = SC_MEMBER;
2666 break;
2667
2668 case STRUCT: case UNION: case CLASS:
2669 /* Nested class */
2670 class_tag = LA1;
2671 type_seen = 1;
2672 MATCH ();
2673 anonymous = 1;
2674
2675 /* More than one ident here to allow for MS-DOS specialties
2676 like `_export class' etc. The last IDENT seen counts
2677 as the class name. */
2678 while (!LOOKING_AT4 (YYEOF, ';', ':', '{'))
2679 {
2680 if (LOOKING_AT (IDENT))
2681 anonymous = 0;
2682 MATCH ();
2683 }
2684
2685 if (LOOKING_AT2 (':', '{'))
2686 class_definition (anonymous ? NULL : cls, class_tag, flags, 1);
2687 else
2688 skip_to (';');
2689 break;
2690
2691 case INT: case CHAR: case LONG: case UNSIGNED:
2692 case SIGNED: case CONST: case DOUBLE: case VOID:
2693 case SHORT: case VOLATILE: case BOOL: case WCHAR:
2694 case TYPENAME:
2695 typeseen:
2696 type_seen = 1;
2697 MATCH ();
2698 break;
2699 }
2700 }
2701
2702 if (LOOKING_AT (';'))
2703 {
2704 /* The end of a member variable, a friend declaration or an access
2705 declaration. We don't want to add friend classes as members. */
2706 if (id && sc != SC_FRIEND && cls)
2707 {
2708 regexp = matching_regexp ();
2709 pos = BUFFER_POS ();
2710
2711 if (cls != NULL)
2712 {
2713 if (type_seen || !paren_seen)
2714 add_member_decl (cls, id, regexp, pos, 0, 1, sc, vis, 0);
2715 else
2716 add_member_decl (cls, id, regexp, pos, hash, 0, sc, vis, 0);
2717 }
2718 }
2719
2720 MATCH ();
2721 print_info ();
2722 }
2723 else if (LOOKING_AT ('{'))
2724 {
2725 /* A named enum. */
2726 if (sc == SC_TYPE && id && cls)
2727 {
2728 regexp = matching_regexp ();
2729 pos = BUFFER_POS ();
2730
2731 if (cls != NULL)
2732 {
2733 add_member_decl (cls, id, regexp, pos, 0, 1, sc, vis, 0);
2734 add_member_defn (cls, id, regexp, pos, 0, 1, sc, 0);
2735 }
2736 }
2737
2738 skip_matching ();
2739 print_info ();
2740 }
2741
2742 free (id);
2743 }
2744
2745
2746 /* Parse the body of class CLS. TAG is the tag of the class (struct,
2747 union, class). */
2748
2749 void
2750 class_body (struct sym *cls, int tag)
2751 {
2752 int vis = tag == CLASS ? PRIVATE : PUBLIC;
2753 int temp;
2754
2755 while (!LOOKING_AT2 (YYEOF, '}'))
2756 {
2757 switch (LA1)
2758 {
2759 case PRIVATE: case PROTECTED: case PUBLIC:
2760 temp = LA1;
2761 MATCH ();
2762
2763 if (LOOKING_AT (':'))
2764 {
2765 vis = temp;
2766 MATCH ();
2767 }
2768 else
2769 {
2770 /* Probably conditional compilation for inheritance list.
2771 We don't known whether there comes more of this.
2772 This is only a crude fix that works most of the time. */
2773 do
2774 {
2775 MATCH ();
2776 }
2777 while (LOOKING_AT2 (IDENT, ',')
2778 || LOOKING_AT3 (PUBLIC, PROTECTED, PRIVATE));
2779 }
2780 break;
2781
2782 case TYPENAME:
2783 case USING:
2784 skip_to (';');
2785 break;
2786
2787 /* Try to synchronize */
2788 case CHAR: case CLASS: case CONST:
2789 case DOUBLE: case ENUM: case FLOAT: case INT:
2790 case LONG: case SHORT: case SIGNED: case STRUCT:
2791 case UNION: case UNSIGNED: case VOID: case VOLATILE:
2792 case TYPEDEF: case STATIC: case T_INLINE: case FRIEND:
2793 case VIRTUAL: case TEMPLATE: case IDENT: case '~':
2794 case BOOL: case WCHAR: case EXPLICIT: case MUTABLE:
2795 member (cls, vis);
2796 break;
2797
2798 default:
2799 MATCH ();
2800 break;
2801 }
2802 }
2803 }
2804
2805
2806 /* Parse a qualified identifier. Current lookahead is IDENT. A
2807 qualified ident has the form `X<..>::Y<...>::T<...>. Returns a
2808 symbol for that class. */
2809
2810 struct sym *
2811 parse_classname (void)
2812 {
2813 struct sym *last_class = NULL;
2814
2815 while (LOOKING_AT (IDENT))
2816 {
2817 last_class = add_sym (yytext, last_class);
2818 MATCH ();
2819
2820 if (LOOKING_AT ('<'))
2821 {
2822 skip_matching ();
2823 SET_FLAG (last_class->flags, F_TEMPLATE);
2824 }
2825
2826 if (!LOOKING_AT (DCOLON))
2827 break;
2828
2829 MATCH ();
2830 }
2831
2832 return last_class;
2833 }
2834
2835
2836 /* Parse an operator name. Add the `static' flag to *SC if an
2837 implicitly static operator has been parsed. Value is a pointer to
2838 a static buffer holding the constructed operator name string. */
2839
2840 char *
2841 operator_name (int *sc)
2842 {
2843 static int id_size = 0;
2844 static char *id = NULL;
2845 char *s;
2846 int len;
2847
2848 MATCH ();
2849
2850 if (LOOKING_AT2 (NEW, DELETE))
2851 {
2852 /* `new' and `delete' are implicitly static. */
2853 if (*sc != SC_FRIEND)
2854 *sc = SC_STATIC;
2855
2856 s = token_string (LA1);
2857 MATCH ();
2858
2859 len = strlen (s) + 10;
2860 if (len > id_size)
2861 {
2862 int new_size = max (len, 2 * id_size);
2863 id = (char *) xrealloc (id, new_size);
2864 id_size = new_size;
2865 }
2866 strcpy (id, s);
2867
2868 /* Vector new or delete? */
2869 if (LOOKING_AT ('['))
2870 {
2871 strcat (id, "[");
2872 MATCH ();
2873
2874 if (LOOKING_AT (']'))
2875 {
2876 strcat (id, "]");
2877 MATCH ();
2878 }
2879 }
2880 }
2881 else
2882 {
2883 int tokens_matched = 0;
2884
2885 len = 20;
2886 if (len > id_size)
2887 {
2888 int new_size = max (len, 2 * id_size);
2889 id = (char *) xrealloc (id, new_size);
2890 id_size = new_size;
2891 }
2892 strcpy (id, "operator");
2893
2894 /* Beware access declarations of the form "X::f;" Beware of
2895 `operator () ()'. Yet another difficulty is found in
2896 GCC 2.95's STL: `operator == __STL_NULL_TMPL_ARGS (...'. */
2897 while (!(LOOKING_AT ('(') && tokens_matched)
2898 && !LOOKING_AT2 (';', YYEOF))
2899 {
2900 s = token_string (LA1);
2901 len += strlen (s) + 2;
2902 if (len > id_size)
2903 {
2904 int new_size = max (len, 2 * id_size);
2905 id = (char *) xrealloc (id, new_size);
2906 id_size = new_size;
2907 }
2908
2909 if (*s != ')' && *s != ']')
2910 strcat (id, " ");
2911 strcat (id, s);
2912 MATCH ();
2913
2914 /* If this is a simple operator like `+', stop now. */
2915 if (!isalpha ((unsigned char) *s) && *s != '(' && *s != '[')
2916 break;
2917
2918 ++tokens_matched;
2919 }
2920 }
2921
2922 return id;
2923 }
2924
2925
2926 /* This one consumes the last IDENT of a qualified member name like
2927 `X::Y::z'. This IDENT is returned in LAST_ID. Value is the
2928 symbol structure for the ident. */
2929
2930 struct sym *
2931 parse_qualified_ident_or_type (char **last_id)
2932 {
2933 struct sym *cls = NULL;
2934 char *id = NULL;
2935 size_t id_size = 0;
2936 int enter = 0;
2937
2938 while (LOOKING_AT (IDENT))
2939 {
2940 int len = strlen (yytext) + 1;
2941 if (len > id_size)
2942 {
2943 id = (char *) xrealloc (id, len);
2944 id_size = len;
2945 }
2946 strcpy (id, yytext);
2947 *last_id = id;
2948 MATCH ();
2949
2950 SKIP_MATCHING_IF ('<');
2951
2952 if (LOOKING_AT (DCOLON))
2953 {
2954 struct sym *pcn = NULL;
2955 struct link *pna = check_namespace_alias (id);
2956 if (pna)
2957 {
2958 do
2959 {
2960 enter_namespace (pna->sym->name);
2961 enter++;
2962 pna = pna->next;
2963 }
2964 while (pna);
2965 }
2966 else if ((pcn = check_namespace (id, current_namespace)))
2967 {
2968 enter_namespace (pcn->name);
2969 enter++;
2970 }
2971 else
2972 cls = add_sym (id, cls);
2973
2974 *last_id = NULL;
2975 free (id);
2976 id = NULL;
2977 id_size = 0;
2978 MATCH ();
2979 }
2980 else
2981 break;
2982 }
2983
2984 while (enter--)
2985 leave_namespace();
2986
2987 return cls;
2988 }
2989
2990
2991 /* This one consumes the last IDENT of a qualified member name like
2992 `X::Y::z'. This IDENT is returned in LAST_ID. Value is the
2993 symbol structure for the ident. */
2994
2995 void
2996 parse_qualified_param_ident_or_type (char **last_id)
2997 {
2998 struct sym *cls = NULL;
2999 static char *id = NULL;
3000 static int id_size = 0;
3001
3002 while (LOOKING_AT (IDENT))
3003 {
3004 int len = strlen (yytext) + 1;
3005 if (len > id_size)
3006 {
3007 id = (char *) xrealloc (id, len);
3008 id_size = len;
3009 }
3010 strcpy (id, yytext);
3011 *last_id = id;
3012 MATCH ();
3013
3014 SKIP_MATCHING_IF ('<');
3015
3016 if (LOOKING_AT (DCOLON))
3017 {
3018 cls = add_sym (id, cls);
3019 *last_id = NULL;
3020 MATCH ();
3021 }
3022 else
3023 break;
3024 }
3025 }
3026
3027
3028 /* Parse a class definition.
3029
3030 CONTAINING is the class containing the class being parsed or null.
3031 This may also be null if NESTED != 0 if the containing class is
3032 anonymous. TAG is the tag of the class (struct, union, class).
3033 NESTED is non-zero if we are parsing a nested class.
3034
3035 Current lookahead is the class name. */
3036
3037 void
3038 class_definition (struct sym *containing, int tag, int flags, int nested)
3039 {
3040 struct sym *current;
3041 struct sym *base_class;
3042
3043 /* Set CURRENT to null if no entry has to be made for the class
3044 parsed. This is the case for certain command line flag
3045 settings. */
3046 if ((tag != CLASS && !f_structs) || (nested && !f_nested_classes))
3047 current = NULL;
3048 else
3049 {
3050 current = add_sym (yytext, containing);
3051 current->pos = BUFFER_POS ();
3052 current->regexp = matching_regexp ();
3053 current->filename = filename;
3054 current->flags = flags;
3055 }
3056
3057 /* If at ':', base class list follows. */
3058 if (LOOKING_AT (':'))
3059 {
3060 int done = 0;
3061 MATCH ();
3062
3063 while (!done)
3064 {
3065 switch (LA1)
3066 {
3067 case VIRTUAL: case PUBLIC: case PROTECTED: case PRIVATE:
3068 MATCH ();
3069 break;
3070
3071 case IDENT:
3072 base_class = parse_classname ();
3073 if (base_class && current && base_class != current)
3074 add_link (base_class, current);
3075 break;
3076
3077 /* The `,' between base classes or the end of the base
3078 class list. Add the previously found base class.
3079 It's done this way to skip over sequences of
3080 `A::B::C' until we reach the end.
3081
3082 FIXME: it is now possible to handle `class X : public B::X'
3083 because we have enough information. */
3084 case ',':
3085 MATCH ();
3086 break;
3087
3088 default:
3089 /* A syntax error, possibly due to preprocessor constructs
3090 like
3091
3092 #ifdef SOMETHING
3093 class A : public B
3094 #else
3095 class A : private B.
3096
3097 MATCH until we see something like `;' or `{'. */
3098 while (!LOOKING_AT3 (';', YYEOF, '{'))
3099 MATCH ();
3100 done = 1;
3101
3102 case '{':
3103 done = 1;
3104 break;
3105 }
3106 }
3107 }
3108
3109 /* Parse the class body if there is one. */
3110 if (LOOKING_AT ('{'))
3111 {
3112 if (tag != CLASS && !f_structs)
3113 skip_matching ();
3114 else
3115 {
3116 MATCH ();
3117 class_body (current, tag);
3118
3119 if (LOOKING_AT ('}'))
3120 {
3121 MATCH ();
3122 if (LOOKING_AT (';') && !nested)
3123 MATCH ();
3124 }
3125 }
3126 }
3127 }
3128
3129 /* Add to class *CLS information for the declaration of variable or
3130 type *ID. If *CLS is null, this means a global declaration. SC is
3131 the storage class of *ID. FLAGS is a bit set giving additional
3132 information about the member (see the F_* defines). */
3133
3134 void
3135 add_declarator (struct sym **cls, char **id, int flags, int sc)
3136 {
3137 if (LOOKING_AT2 (';', ','))
3138 {
3139 /* The end of a member variable or of an access declaration
3140 `X::f'. To distinguish between them we have to know whether
3141 type information has been seen. */
3142 if (*id)
3143 {
3144 char *regexp = matching_regexp ();
3145 int pos = BUFFER_POS ();
3146
3147 if (*cls)
3148 add_member_defn (*cls, *id, regexp, pos, 0, 1, SC_UNKNOWN, flags);
3149 else
3150 add_global_defn (*id, regexp, pos, 0, 1, sc, flags);
3151 }
3152
3153 MATCH ();
3154 print_info ();
3155 }
3156 else if (LOOKING_AT ('{'))
3157 {
3158 if (sc == SC_TYPE && *id)
3159 {
3160 /* A named enumeration. */
3161 char *regexp = matching_regexp ();
3162 int pos = BUFFER_POS ();
3163 add_global_defn (*id, regexp, pos, 0, 1, sc, flags);
3164 }
3165
3166 skip_matching ();
3167 print_info ();
3168 }
3169
3170 free (*id);
3171 *id = NULL;
3172 *cls = NULL;
3173 }
3174
3175 /* Parse a declaration. */
3176
3177 void
3178 declaration (int flags)
3179 {
3180 char *id = NULL;
3181 struct sym *cls = NULL;
3182 char *regexp = NULL;
3183 int pos = 0;
3184 unsigned hash = 0;
3185 int is_constructor;
3186 int sc = 0;
3187
3188 while (!LOOKING_AT3 (';', '{', YYEOF))
3189 {
3190 switch (LA1)
3191 {
3192 default:
3193 MATCH ();
3194 break;
3195
3196 case '[':
3197 skip_matching ();
3198 break;
3199
3200 case ENUM:
3201 case TYPEDEF:
3202 sc = SC_TYPE;
3203 MATCH ();
3204 break;
3205
3206 case STATIC:
3207 sc = SC_STATIC;
3208 MATCH ();
3209 break;
3210
3211 case INT: case CHAR: case LONG: case UNSIGNED:
3212 case SIGNED: case CONST: case DOUBLE: case VOID:
3213 case SHORT: case VOLATILE: case BOOL: case WCHAR:
3214 MATCH ();
3215 break;
3216
3217 case CLASS: case STRUCT: case UNION:
3218 /* This is for the case `STARTWRAP class X : ...' or
3219 `declare (X, Y)\n class A : ...'. */
3220 if (id)
3221 {
3222 free (id);
3223 return;
3224 }
3225
3226 case '=':
3227 /* Assumed to be the start of an initialization in this
3228 context. */
3229 skip_initializer ();
3230 break;
3231
3232 case ',':
3233 add_declarator (&cls, &id, flags, sc);
3234 break;
3235
3236 case OPERATOR:
3237 {
3238 char *s = operator_name (&sc);
3239 id = (char *) xrealloc (id, strlen (s) + 1);
3240 strcpy (id, s);
3241 }
3242 break;
3243
3244 case T_INLINE:
3245 SET_FLAG (flags, F_INLINE);
3246 MATCH ();
3247 break;
3248
3249 case '~':
3250 MATCH ();
3251 if (LOOKING_AT (IDENT))
3252 {
3253 id = (char *) xrealloc (id, strlen (yytext) + 2);
3254 *id = '~';
3255 strcpy (id + 1, yytext);
3256 MATCH ();
3257 }
3258 break;
3259
3260 case IDENT:
3261 cls = parse_qualified_ident_or_type (&id);
3262 break;
3263
3264 case '(':
3265 /* Most probably the beginning of a parameter list. */
3266 if (cls)
3267 {
3268 MATCH ();
3269
3270 if (id && cls)
3271 {
3272 if (!(is_constructor = streq (id, cls->name)))
3273 regexp = matching_regexp ();
3274 }
3275 else
3276 is_constructor = 0;
3277
3278 pos = BUFFER_POS ();
3279 hash = parm_list (&flags);
3280
3281 if (is_constructor)
3282 regexp = matching_regexp ();
3283
3284 if (id && cls)
3285 add_member_defn (cls, id, regexp, pos, hash, 0,
3286 SC_UNKNOWN, flags);
3287 }
3288 else
3289 {
3290 /* This may be a C functions, but also a macro
3291 call of the form `declare (A, B)' --- such macros
3292 can be found in some class libraries. */
3293 MATCH ();
3294
3295 if (id)
3296 {
3297 regexp = matching_regexp ();
3298 pos = BUFFER_POS ();
3299 hash = parm_list (&flags);
3300 add_global_decl (id, regexp, pos, hash, 0, sc, flags);
3301 }
3302
3303 /* This is for the case that the function really is
3304 a macro with no `;' following it. If a CLASS directly
3305 follows, we would miss it otherwise. */
3306 if (LOOKING_AT3 (CLASS, STRUCT, UNION))
3307 return;
3308 }
3309
3310 while (!LOOKING_AT3 (';', '{', YYEOF))
3311 MATCH ();
3312
3313 if (!cls && id && LOOKING_AT ('{'))
3314 add_global_defn (id, regexp, pos, hash, 0, sc, flags);
3315
3316 free (id);
3317 id = NULL;
3318 break;
3319 }
3320 }
3321
3322 add_declarator (&cls, &id, flags, sc);
3323 }
3324
3325
3326 /* Parse a list of top-level declarations/definitions. START_FLAGS
3327 says in which context we are parsing. If it is F_EXTERNC, we are
3328 parsing in an `extern "C"' block. Value is 1 if EOF is reached, 0
3329 otherwise. */
3330
3331 int
3332 globals (int start_flags)
3333 {
3334 int anonymous;
3335 int class_tk;
3336 int flags = start_flags;
3337
3338 for (;;)
3339 {
3340 char *prev_in = in;
3341
3342 switch (LA1)
3343 {
3344 case NAMESPACE:
3345 {
3346 MATCH ();
3347
3348 if (LOOKING_AT (IDENT))
3349 {
3350 char *namespace_name = xstrdup (yytext);
3351 MATCH ();
3352
3353 if (LOOKING_AT ('='))
3354 {
3355 struct link *qna = match_qualified_namespace_alias ();
3356 if (qna)
3357 register_namespace_alias (namespace_name, qna);
3358
3359 if (skip_to (';') == ';')
3360 MATCH ();
3361 }
3362 else if (LOOKING_AT ('{'))
3363 {
3364 MATCH ();
3365 enter_namespace (namespace_name);
3366 globals (0);
3367 leave_namespace ();
3368 MATCH_IF ('}');
3369 }
3370
3371 free (namespace_name);
3372 }
3373 }
3374 break;
3375
3376 case EXTERN:
3377 MATCH ();
3378 if (LOOKING_AT (CSTRING) && *string_start == 'C'
3379 && *(string_start + 1) == '"')
3380 {
3381 /* This is `extern "C"'. */
3382 MATCH ();
3383
3384 if (LOOKING_AT ('{'))
3385 {
3386 MATCH ();
3387 globals (F_EXTERNC);
3388 MATCH_IF ('}');
3389 }
3390 else
3391 SET_FLAG (flags, F_EXTERNC);
3392 }
3393 break;
3394
3395 case TEMPLATE:
3396 MATCH ();
3397 SKIP_MATCHING_IF ('<');
3398 SET_FLAG (flags, F_TEMPLATE);
3399 break;
3400
3401 case CLASS: case STRUCT: case UNION:
3402 class_tk = LA1;
3403 MATCH ();
3404 anonymous = 1;
3405
3406 /* More than one ident here to allow for MS-DOS and OS/2
3407 specialties like `far', `_Export' etc. Some C++ libs
3408 have constructs like `_OS_DLLIMPORT(_OS_CLIENT)' in front
3409 of the class name. */
3410 while (!LOOKING_AT4 (YYEOF, ';', ':', '{'))
3411 {
3412 if (LOOKING_AT (IDENT))
3413 anonymous = 0;
3414 MATCH ();
3415 }
3416
3417 /* Don't add anonymous unions. */
3418 if (LOOKING_AT2 (':', '{') && !anonymous)
3419 class_definition (NULL, class_tk, flags, 0);
3420 else
3421 {
3422 if (skip_to (';') == ';')
3423 MATCH ();
3424 }
3425
3426 flags = start_flags;
3427 break;
3428
3429 case YYEOF:
3430 return 1;
3431
3432 case '}':
3433 return 0;
3434
3435 default:
3436 declaration (flags);
3437 flags = start_flags;
3438 break;
3439 }
3440
3441 if (prev_in == in)
3442 yyerror ("parse error", NULL);
3443 }
3444 }
3445
3446
3447 /* Parse the current input file. */
3448
3449 void
3450 yyparse (void)
3451 {
3452 while (globals (0) == 0)
3453 MATCH_IF ('}');
3454 }
3455
3456
3457 \f
3458 /***********************************************************************
3459 Main Program
3460 ***********************************************************************/
3461
3462 /* Add the list of paths PATH_LIST to the current search path for
3463 input files. */
3464
3465 void
3466 add_search_path (char *path_list)
3467 {
3468 while (*path_list)
3469 {
3470 char *start = path_list;
3471 struct search_path *p;
3472
3473 while (*path_list && *path_list != PATH_LIST_SEPARATOR)
3474 ++path_list;
3475
3476 p = (struct search_path *) xmalloc (sizeof *p);
3477 p->path = (char *) xmalloc (path_list - start + 1);
3478 memcpy (p->path, start, path_list - start);
3479 p->path[path_list - start] = '\0';
3480 p->next = NULL;
3481
3482 if (search_path_tail)
3483 {
3484 search_path_tail->next = p;
3485 search_path_tail = p;
3486 }
3487 else
3488 search_path = search_path_tail = p;
3489
3490 while (*path_list == PATH_LIST_SEPARATOR)
3491 ++path_list;
3492 }
3493 }
3494
3495
3496 /* Open FILE and return a file handle for it, or -1 if FILE cannot be
3497 opened. Try to find FILE in search_path first, then try the
3498 unchanged file name. */
3499
3500 FILE *
3501 open_file (char *file)
3502 {
3503 FILE *fp = NULL;
3504 static char *buffer;
3505 static int buffer_size;
3506 struct search_path *path;
3507 int flen = strlen (file) + 1; /* +1 for the slash */
3508
3509 filename = xstrdup (file);
3510
3511 for (path = search_path; path && fp == NULL; path = path->next)
3512 {
3513 int len = strlen (path->path) + flen;
3514
3515 if (len + 1 >= buffer_size)
3516 {
3517 buffer_size = max (len + 1, 2 * buffer_size);
3518 buffer = (char *) xrealloc (buffer, buffer_size);
3519 }
3520
3521 strcpy (buffer, path->path);
3522 strcat (buffer, "/");
3523 strcat (buffer, file);
3524 fp = fopen (buffer, "r");
3525 }
3526
3527 /* Try the original file name. */
3528 if (fp == NULL)
3529 fp = fopen (file, "r");
3530
3531 if (fp == NULL)
3532 yyerror ("cannot open", NULL);
3533
3534 return fp;
3535 }
3536
3537
3538 /* Display usage information and exit program. */
3539
3540 #define USAGE "\
3541 Usage: ebrowse [options] {files}\n\
3542 \n\
3543 -a, --append append output to existing file\n\
3544 -f, --files=FILES read input file names from FILE\n\
3545 -I, --search-path=LIST set search path for input files\n\
3546 -m, --min-regexp-length=N set minimum regexp length to N\n\
3547 -M, --max-regexp-length=N set maximum regexp length to N\n\
3548 -n, --no-nested-classes exclude nested classes\n\
3549 -o, --output-file=FILE set output file name to FILE\n\
3550 -p, --position-info print info about position in file\n\
3551 -s, --no-structs-or-unions don't record structs or unions\n\
3552 -v, --verbose be verbose\n\
3553 -V, --very-verbose be very verbose\n\
3554 -x, --no-regexps don't record regular expressions\n\
3555 --help display this help\n\
3556 --version display version info\n\
3557 "
3558
3559 void
3560 usage (int error)
3561 {
3562 puts (USAGE);
3563 exit (error ? EXIT_FAILURE : EXIT_SUCCESS);
3564 }
3565
3566
3567 /* Display version and copyright info. The VERSION macro is set
3568 from the Makefile and contains the Emacs version. */
3569
3570 #ifndef VERSION
3571 # define VERSION "21"
3572 #endif
3573
3574 void
3575 version (void)
3576 {
3577 /* Makes it easier to update automatically. */
3578 char emacs_copyright[] = "Copyright (C) 2010 Free Software Foundation, Inc.";
3579
3580 printf ("ebrowse %s\n", VERSION);
3581 puts (emacs_copyright);
3582 puts ("This program is distributed under the same terms as Emacs.");
3583 exit (EXIT_SUCCESS);
3584 }
3585
3586
3587 /* Parse one input file FILE, adding classes and members to the symbol
3588 table. */
3589
3590 void
3591 process_file (char *file)
3592 {
3593 FILE *fp;
3594
3595 fp = open_file (file);
3596 if (fp)
3597 {
3598 int nread, nbytes;
3599
3600 /* Give a progress indication if needed. */
3601 if (f_very_verbose)
3602 {
3603 puts (filename);
3604 fflush (stdout);
3605 }
3606 else if (f_verbose)
3607 {
3608 putchar ('.');
3609 fflush (stdout);
3610 }
3611
3612 /* Read file to inbuffer. */
3613 for (nread = 0;;)
3614 {
3615 if (nread + READ_CHUNK_SIZE >= inbuffer_size)
3616 {
3617 inbuffer_size = nread + READ_CHUNK_SIZE + 1;
3618 inbuffer = (char *) xrealloc (inbuffer, inbuffer_size);
3619 }
3620
3621 nbytes = fread (inbuffer + nread, 1, READ_CHUNK_SIZE, fp);
3622 if (nbytes <= 0)
3623 break;
3624 nread += nbytes;
3625 }
3626 if (nread < 0)
3627 nread = 0;
3628 inbuffer[nread] = '\0';
3629
3630 /* Reinitialize scanner and parser for the new input file. */
3631 re_init_scanner ();
3632 re_init_parser ();
3633
3634 /* Parse it and close the file. */
3635 yyparse ();
3636 fclose (fp);
3637 }
3638 }
3639
3640
3641 /* Read a line from stream FP and return a pointer to a static buffer
3642 containing its contents without the terminating newline. Value
3643 is null when EOF is reached. */
3644
3645 char *
3646 read_line (FILE *fp)
3647 {
3648 static char *buffer;
3649 static int buffer_size;
3650 int i = 0, c;
3651
3652 while ((c = getc (fp)) != EOF && c != '\n')
3653 {
3654 if (i >= buffer_size)
3655 {
3656 buffer_size = max (100, buffer_size * 2);
3657 buffer = (char *) xrealloc (buffer, buffer_size);
3658 }
3659
3660 buffer[i++] = c;
3661 }
3662
3663 if (c == EOF && i == 0)
3664 return NULL;
3665
3666 if (i == buffer_size)
3667 {
3668 buffer_size = max (100, buffer_size * 2);
3669 buffer = (char *) xrealloc (buffer, buffer_size);
3670 }
3671
3672 buffer[i] = '\0';
3673 if (i > 0 && buffer[i - 1] == '\r')
3674 buffer[i - 1] = '\0';
3675 return buffer;
3676 }
3677
3678
3679 /* Main entry point. */
3680
3681 int
3682 main (int argc, char **argv)
3683 {
3684 int i;
3685 int any_inputfiles = 0;
3686 static char *out_filename = DEFAULT_OUTFILE;
3687 static char **input_filenames = NULL;
3688 static int input_filenames_size = 0;
3689 static int n_input_files;
3690
3691 filename = "command line";
3692 yyout = stdout;
3693
3694 while ((i = getopt_long (argc, argv, "af:I:m:M:no:p:svVx",
3695 options, NULL)) != EOF)
3696 {
3697 switch (i)
3698 {
3699 /* Experimental. */
3700 case 'p':
3701 info_position = atoi (optarg);
3702 break;
3703
3704 case 'n':
3705 f_nested_classes = 0;
3706 break;
3707
3708 case 'x':
3709 f_regexps = 0;
3710 break;
3711
3712 /* Add the name of a file containing more input files. */
3713 case 'f':
3714 if (n_input_files == input_filenames_size)
3715 {
3716 input_filenames_size = max (10, 2 * input_filenames_size);
3717 input_filenames = (char **) xrealloc ((void *)input_filenames,
3718 input_filenames_size);
3719 }
3720 input_filenames[n_input_files++] = xstrdup (optarg);
3721 break;
3722
3723 /* Append new output to output file instead of truncating it. */
3724 case 'a':
3725 f_append = 1;
3726 break;
3727
3728 /* Include structs in the output */
3729 case 's':
3730 f_structs = 0;
3731 break;
3732
3733 /* Be verbose (give a progress indication). */
3734 case 'v':
3735 f_verbose = 1;
3736 break;
3737
3738 /* Be very verbose (print file names as they are processed). */
3739 case 'V':
3740 f_verbose = 1;
3741 f_very_verbose = 1;
3742 break;
3743
3744 /* Change the name of the output file. */
3745 case 'o':
3746 out_filename = optarg;
3747 break;
3748
3749 /* Set minimum length for regular expression strings
3750 when recorded in the output file. */
3751 case 'm':
3752 min_regexp = atoi (optarg);
3753 break;
3754
3755 /* Set maximum length for regular expression strings
3756 when recorded in the output file. */
3757 case 'M':
3758 max_regexp = atoi (optarg);
3759 break;
3760
3761 /* Add to search path. */
3762 case 'I':
3763 add_search_path (optarg);
3764 break;
3765
3766 /* Display help */
3767 case -2:
3768 usage (0);
3769 break;
3770
3771 case -3:
3772 version ();
3773 break;
3774 }
3775 }
3776
3777 /* Call init_scanner after command line flags have been processed to be
3778 able to add keywords depending on command line (not yet
3779 implemented). */
3780 init_scanner ();
3781 init_sym ();
3782
3783 /* Open output file */
3784 if (*out_filename)
3785 {
3786 if (f_append)
3787 {
3788 /* Check that the file to append to exists, and is not
3789 empty. More specifically, it should be a valid file
3790 produced by a previous run of ebrowse, but that's too
3791 difficult to check. */
3792 FILE *fp;
3793 int rc;
3794
3795 fp = fopen (out_filename, "r");
3796 if (fp == NULL)
3797 {
3798 yyerror ("file `%s' must exist for --append", out_filename);
3799 exit (EXIT_FAILURE);
3800 }
3801
3802 rc = fseek (fp, 0, SEEK_END);
3803 if (rc == -1)
3804 {
3805 yyerror ("error seeking in file `%s'", out_filename);
3806 exit (EXIT_FAILURE);
3807 }
3808
3809 rc = ftell (fp);
3810 if (rc == -1)
3811 {
3812 yyerror ("error getting size of file `%s'", out_filename);
3813 exit (EXIT_FAILURE);
3814 }
3815
3816 else if (rc == 0)
3817 {
3818 yyerror ("file `%s' is empty", out_filename);
3819 /* It may be ok to use an empty file for appending.
3820 exit (EXIT_FAILURE); */
3821 }
3822
3823 fclose (fp);
3824 }
3825
3826 yyout = fopen (out_filename, f_append ? "a" : "w");
3827 if (yyout == NULL)
3828 {
3829 yyerror ("cannot open output file `%s'", out_filename);
3830 exit (EXIT_FAILURE);
3831 }
3832 }
3833
3834 /* Process input files specified on the command line. */
3835 while (optind < argc)
3836 {
3837 process_file (argv[optind++]);
3838 any_inputfiles = 1;
3839 }
3840
3841 /* Process files given on stdin if no files specified. */
3842 if (!any_inputfiles && n_input_files == 0)
3843 {
3844 char *file;
3845 while ((file = read_line (stdin)) != NULL)
3846 process_file (file);
3847 }
3848 else
3849 {
3850 /* Process files from `--files=FILE'. Every line in FILE names
3851 one input file to process. */
3852 for (i = 0; i < n_input_files; ++i)
3853 {
3854 FILE *fp = fopen (input_filenames[i], "r");
3855
3856 if (fp == NULL)
3857 yyerror ("cannot open input file `%s'", input_filenames[i]);
3858 else
3859 {
3860 char *file;
3861 while ((file = read_line (fp)) != NULL)
3862 process_file (file);
3863 fclose (fp);
3864 }
3865 }
3866 }
3867
3868 /* Write output file. */
3869 dump_roots (yyout);
3870
3871 /* Close output file. */
3872 if (yyout != stdout)
3873 fclose (yyout);
3874
3875 return EXIT_SUCCESS;
3876 }
3877
3878 /* arch-tag: fc03b4bc-91a9-4c3d-b3b9-12a77fa86dd8
3879 (do not change this comment) */
3880
3881 /* ebrowse.c ends here */