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