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