Mercurial > emacs
annotate lib-src/etags.c @ 5526:5131e7d642b9
(version): Fix sed regexp to match two-elt version number.
author | Roland McGrath <roland@gnu.org> |
---|---|
date | Sat, 08 Jan 1994 22:06:34 +0000 |
parents | 18de002e47dd |
children | 517d8eb361f8 |
rev | line source |
---|---|
240 | 1 /* Tags file maker to go with GNU Emacs |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
2 Copyright (C) 1984, 1987, 1988, 1989, 1993 Free Software Foundation, Inc. and Ken Arnold |
240 | 3 |
2932
b68f975d505a
Change permission notice (not "part of Emacs").
Richard M. Stallman <rms@gnu.org>
parents:
2911
diff
changeset
|
4 This file is not considered part of GNU Emacs. |
240 | 5 |
2932
b68f975d505a
Change permission notice (not "part of Emacs").
Richard M. Stallman <rms@gnu.org>
parents:
2911
diff
changeset
|
6 This program is free software; you can redistribute it and/or modify |
240 | 7 it under the terms of the GNU General Public License as published by |
2932
b68f975d505a
Change permission notice (not "part of Emacs").
Richard M. Stallman <rms@gnu.org>
parents:
2911
diff
changeset
|
8 the Free Software Foundation; either version 2 of the License, or |
b68f975d505a
Change permission notice (not "part of Emacs").
Richard M. Stallman <rms@gnu.org>
parents:
2911
diff
changeset
|
9 (at your option) any later version. |
240 | 10 |
2932
b68f975d505a
Change permission notice (not "part of Emacs").
Richard M. Stallman <rms@gnu.org>
parents:
2911
diff
changeset
|
11 This program is distributed in the hope that it will be useful, |
240 | 12 but WITHOUT ANY WARRANTY; without even the implied warranty of |
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 GNU General Public License for more details. | |
15 | |
16 You should have received a copy of the GNU General Public License | |
2932
b68f975d505a
Change permission notice (not "part of Emacs").
Richard M. Stallman <rms@gnu.org>
parents:
2911
diff
changeset
|
17 along with this program; if not, write to the Free Software |
b68f975d505a
Change permission notice (not "part of Emacs").
Richard M. Stallman <rms@gnu.org>
parents:
2911
diff
changeset
|
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ |
240 | 19 |
20 /* | |
21 * Authors: | |
22 * Ctags originally by Ken Arnold. | |
23 * FORTRAN added by Jim Kleckner. | |
24 * Ed Pelegri-Llopart added C typedefs. | |
25 * Gnu Emacs TAGS format and modifications by RMS? | |
26 * Sam Kendall added C++. | |
4663
5f0ff5c890a8
* etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents:
4406
diff
changeset
|
27 * |
4937
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
28 * Francesco Potorti` (pot@cnuce.cnr.it) is the current maintainer. 9.8 |
240 | 29 */ |
30 | |
5448
18de002e47dd
(main) [MSDOS]: Open all files as binary.
Richard M. Stallman <rms@gnu.org>
parents:
5044
diff
changeset
|
31 #ifdef MSDOS |
18de002e47dd
(main) [MSDOS]: Open all files as binary.
Richard M. Stallman <rms@gnu.org>
parents:
5044
diff
changeset
|
32 #include <fcntl.h> |
18de002e47dd
(main) [MSDOS]: Open all files as binary.
Richard M. Stallman <rms@gnu.org>
parents:
5044
diff
changeset
|
33 #endif /* MSDOS */ |
18de002e47dd
(main) [MSDOS]: Open all files as binary.
Richard M. Stallman <rms@gnu.org>
parents:
5044
diff
changeset
|
34 |
4052
9535e8ffb209
* etags.c (alloca): removed all references to it.
Jim Blandy <jimb@redhat.com>
parents:
4051
diff
changeset
|
35 #ifdef HAVE_CONFIG_H |
4696
1fc792473491
Include <config.h> instead of "config.h".
Roland McGrath <roland@gnu.org>
parents:
4663
diff
changeset
|
36 #include <../src/config.h> |
3208
daf2762a353c
* etags.c: Replace the CPP tangle for alloca with the one from the
Jim Blandy <jimb@redhat.com>
parents:
3099
diff
changeset
|
37 #endif |
401 | 38 |
3921
e5e5b3634dd0
* etags.c: #include "config.h" and the alloca CPP tangle before
Jim Blandy <jimb@redhat.com>
parents:
3838
diff
changeset
|
39 #include <stdio.h> |
e5e5b3634dd0
* etags.c: #include "config.h" and the alloca CPP tangle before
Jim Blandy <jimb@redhat.com>
parents:
3838
diff
changeset
|
40 #include <ctype.h> |
e5e5b3634dd0
* etags.c: #include "config.h" and the alloca CPP tangle before
Jim Blandy <jimb@redhat.com>
parents:
3838
diff
changeset
|
41 #include <sys/types.h> |
e5e5b3634dd0
* etags.c: #include "config.h" and the alloca CPP tangle before
Jim Blandy <jimb@redhat.com>
parents:
3838
diff
changeset
|
42 #include <sys/stat.h> |
e5e5b3634dd0
* etags.c: #include "config.h" and the alloca CPP tangle before
Jim Blandy <jimb@redhat.com>
parents:
3838
diff
changeset
|
43 |
4804
810826b6e19a
* etags.c (process_file): dead code removed.
Francesco Potortì <pot@gnu.org>
parents:
4750
diff
changeset
|
44 #if !defined (S_ISREG) && defined (S_IFREG) |
810826b6e19a
* etags.c (process_file): dead code removed.
Francesco Potortì <pot@gnu.org>
parents:
4750
diff
changeset
|
45 # define S_ISREG(m) (((m) & S_IFMT) == S_IFREG) |
810826b6e19a
* etags.c (process_file): dead code removed.
Francesco Potortì <pot@gnu.org>
parents:
4750
diff
changeset
|
46 #endif |
810826b6e19a
* etags.c (process_file): dead code removed.
Francesco Potortì <pot@gnu.org>
parents:
4750
diff
changeset
|
47 |
3921
e5e5b3634dd0
* etags.c: #include "config.h" and the alloca CPP tangle before
Jim Blandy <jimb@redhat.com>
parents:
3838
diff
changeset
|
48 #include "getopt.h" |
e5e5b3634dd0
* etags.c: #include "config.h" and the alloca CPP tangle before
Jim Blandy <jimb@redhat.com>
parents:
3838
diff
changeset
|
49 |
240 | 50 extern char *malloc (), *realloc (); |
51 extern char *getenv (); | |
52 extern char *strcpy (), *strncpy (); | |
53 extern int strcmp (); | |
54 | |
1026
cc96e2df9b71
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
774
diff
changeset
|
55 char *etags_index (), *etags_rindex (); |
cc96e2df9b71
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
774
diff
changeset
|
56 char *savenstr (); |
240 | 57 |
58 /* Define the symbol ETAGS to make the program "etags", | |
59 which makes emacs-style tag tables by default. | |
60 Define CTAGS to make the program "ctags" compatible with the usual one. | |
61 Define neither one to get behavior that depends | |
62 on the name with which the program is invoked | |
63 (but we don't normally compile it that way). */ | |
64 | |
65 #if !defined(ETAGS) && !defined(CTAGS) | |
66 /* If neither is defined, program can be run as either. */ | |
67 #define ETAGS | |
68 #define CTAGS | |
69 #endif | |
70 | |
71 /* On VMS, CTAGS is not useful, so always do ETAGS. */ | |
72 #ifdef VMS | |
73 #ifndef ETAGS | |
74 #define ETAGS | |
75 #endif | |
76 #endif | |
77 | |
78 /* Exit codes for success and failure. */ | |
79 #ifdef VMS | |
80 #define GOOD (1) | |
81 #define BAD (0) | |
82 #else | |
83 #define GOOD (0) | |
84 #define BAD (1) | |
85 #endif | |
86 | |
87 /* | |
88 * The FILEPOS abstract type, which represents a position in a file, | |
89 * plus the following accessor functions: | |
90 * | |
91 * long GET_CHARNO (pos) | |
92 * returns absolute char number. | |
93 * void SET_FILEPOS (pos, fp, charno) | |
94 * FILE *fp; long charno; | |
95 * sets `pos' from the current file | |
96 * position of `fp' and from `charno', | |
97 * which must be the absolute character | |
98 * number corresponding to the current | |
99 * position of `fp'. | |
100 * | |
101 * The `pos' parameter is an lvalue expression of type FILEPOS. | |
102 * Parameters to the accessor functions are evaluated 0 or more times, | |
103 * and so must have no side effects. | |
104 * | |
105 * FILEPOS objects can also be assigned and passed to and from | |
106 * functions in the normal C manner. | |
107 * | |
108 * Implementation notes: the `+ 0' is to enforce rvalue-ness. | |
109 */ | |
110 | |
111 #ifndef DEBUG | |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
112 /* real implementation */ |
240 | 113 typedef long FILEPOS; |
114 #define GET_CHARNO(pos) ((pos) + 0) | |
115 #define SET_FILEPOS(pos, fp, cno) ((void) ((pos) = (cno))) | |
116 #else | |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
117 /* debugging implementation */ |
240 | 118 typedef struct |
119 { | |
120 long charno; | |
121 } FILEPOS; | |
122 | |
123 #define GET_CHARNO(pos) ((pos).charno + 0) | |
124 #define SET_FILEPOS(pos, fp, cno) \ | |
125 ((void) ((pos).charno = (cno), \ | |
126 (cno) != ftell (fp) ? (error ("SET_FILEPOS inconsistency"), 0) \ | |
127 : 0)) | |
128 #endif | |
129 | |
130 #define streq(s, t) (strcmp (s, t) == 0) | |
131 #define strneq(s, t, n) (strncmp (s, t, n) == 0) | |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
132 #define logical int |
240 | 133 |
134 #define TRUE 1 | |
135 #define FALSE 0 | |
136 | |
137 #define iswhite(arg) (_wht[arg]) /* T if char is white */ | |
138 #define begtoken(arg) (_btk[arg]) /* T if char can start token */ | |
139 #define intoken(arg) (_itk[arg]) /* T if char can be in token */ | |
140 #define endtoken(arg) (_etk[arg]) /* T if char ends tokens */ | |
141 | |
142 #define max(I1,I2) ((I1) > (I2) ? (I1) : (I2)) | |
143 | |
144 struct nd_st | |
145 { /* sorting structure */ | |
146 char *name; /* function or type name */ | |
147 char *file; /* file name */ | |
148 logical is_func; /* use pattern or line no */ | |
4750
cdefe4f21650
Mon Sep 20 18:06:12 1993 Francesco Potorti` (pot at fly)
Francesco Potortì <pot@gnu.org>
parents:
4696
diff
changeset
|
149 logical named; /* list name separately */ |
240 | 150 logical been_warned; /* set if noticed dup */ |
151 int lno; /* line number tag is on */ | |
152 long cno; /* character number line starts on */ | |
153 char *pat; /* search pattern */ | |
154 struct nd_st *left, *right; /* left and right sons */ | |
155 }; | |
156 | |
157 long ftell (); | |
158 typedef struct nd_st NODE; | |
159 | |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
160 logical header_file; /* TRUE if .h file, FALSE o.w. */ |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
161 /* boolean "functions" (see init) */ |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
162 logical _wht[0177], _etk[0177], _itk[0177], _btk[0177]; |
240 | 163 |
164 | |
165 char *concat (); | |
166 char *savenstr (); | |
167 char *savestr (); | |
168 char *xmalloc (); | |
169 char *xrealloc (); | |
4663
5f0ff5c890a8
* etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents:
4406
diff
changeset
|
170 int L_isdef (), L_isquote (); |
240 | 171 int PF_funcs (); |
172 int total_size_of_entries (); | |
173 logical consider_token (); | |
174 logical tail (); | |
175 long readline (); | |
176 void Asm_funcs (); | |
177 void C_entries (); | |
178 void L_funcs (); | |
179 void L_getit (); | |
180 void PAS_funcs (); | |
181 void Scheme_funcs (); | |
182 void TEX_funcs (); | |
183 void add_node (); | |
184 void error (); | |
185 void fatal (); | |
186 void find_entries (); | |
187 void free_tree (); | |
188 void getit (); | |
189 void getline (); | |
190 void init (); | |
191 void initbuffer (); | |
192 void initbuffer (); | |
193 void pfnote (); | |
194 void process_file (); | |
195 void put_entries (); | |
196 void takeprec (); | |
197 | |
198 /* | |
199 * MACRO | |
200 * xnew -- allocate storage | |
201 * | |
202 * SYNOPSIS | |
203 * Type *xnew (int n, Type); | |
204 */ | |
205 #define xnew(n, Type) ((Type *) xmalloc ((n) * sizeof (Type))) | |
206 | |
207 | |
208 | |
209 /* | |
210 * Symbol table stuff. | |
211 * | |
212 * Should probably be implemented with hash table; linked list for now. | |
213 */ | |
214 | |
215 enum sym_type | |
216 { | |
217 st_none, st_C_struct, st_C_enum, st_C_define, st_C_typedef, st_C_typespec | |
218 }; | |
219 | |
220 struct stab_entry | |
221 { | |
222 char *sym; | |
223 int symlen; | |
224 enum sym_type type; | |
225 struct stab_entry *next; | |
226 }; | |
227 | |
228 typedef struct stab_entry Stab_entry; | |
229 typedef Stab_entry *Stab; | |
230 | |
231 /* | |
232 * NAME | |
233 * Stab, Stab_entry, stab_create, stab_search, stab_find -- symbol table | |
234 * | |
235 * SYNOPSIS | |
236 * Types: Stab, Stab_entry, enum sym_type | |
237 * | |
238 * Stab * stab_create () | |
239 * | |
240 * Stab_entry * stab_find (stab, sym) | |
241 * Stab *stab; | |
242 * char *sym; | |
243 * | |
244 * Stab_entry * stab_search (stab, sym) | |
245 * Stab *stab; | |
246 * char *sym; | |
247 * | |
248 * DESCRIPTION | |
249 * stab_create creates a Stab, a symbol table object, and returns a | |
250 * pointer to it. stab_find finds a symbol in a Stab; it returns a | |
251 * pointer to the Stab_entry if found, otherwise NULL. stab_search | |
252 * is like stab_find, except that it creates a new Stab_entry, | |
253 * initialized with type = st_none, if one did not exist already | |
254 * (it never returns NULL). | |
255 * | |
256 * A Stab_entry is a structure that contains at least the following | |
257 * members: | |
258 * | |
259 * char *name; // must not be modified | |
260 * enum sym_type type; // should be set | |
261 * | |
262 * The type field is initially set to st_none; it should be set to | |
263 * something else by the caller of stab_search. Other possible values | |
264 * of an enum sym_type can be added. | |
265 */ | |
266 | |
267 Stab * | |
268 stab_create () | |
269 { | |
270 Stab *sp; | |
271 sp = xnew (1, Stab); | |
272 *sp = NULL; /* a Stab starts out as a null Stab_entry* */ | |
273 return sp; | |
274 } | |
275 | |
276 Stab_entry * | |
277 stab_find (stab, sym, symlen) | |
278 Stab *stab; | |
279 register char *sym; | |
280 register int symlen; | |
281 { | |
282 register Stab_entry *se; | |
283 for (se = *stab; se != NULL; se = se->next) | |
284 { | |
285 if (se->symlen == symlen && strneq (se->sym, sym, symlen)) | |
286 return se; | |
287 } | |
288 | |
289 return NULL; | |
290 } | |
291 | |
292 Stab_entry * | |
293 stab_search (stab, sym, symlen) | |
294 register Stab *stab; | |
295 char *sym; | |
296 int symlen; | |
297 { | |
298 register Stab_entry *se; | |
299 se = stab_find (stab, sym, symlen); | |
300 | |
301 if (se == NULL) | |
302 { | |
303 /* make a new one */ | |
304 se = xnew (1, Stab_entry); | |
305 se->sym = savenstr (sym, symlen); | |
306 se->symlen = symlen; | |
307 se->type = st_none; | |
308 se->next = *stab; | |
309 *stab = se; | |
310 } | |
311 | |
312 return se; | |
313 } | |
314 | |
315 /* | |
316 * NAME | |
317 * stab_type -- type of a symbol table entry | |
318 * | |
319 * SYNOPSIS | |
320 * enum sym_type stab_type (Stab_entry *se); | |
321 * | |
322 * WARNING | |
323 * May evaluate its argument more than once. | |
324 */ | |
325 | |
326 #define stab_type(se) ((se)==NULL ? st_none : (se)->type) | |
327 | |
328 | |
329 | |
330 typedef int LINENO; | |
331 | |
332 typedef struct | |
333 { | |
334 char *p; | |
335 int len; | |
336 LINENO lineno; | |
4750
cdefe4f21650
Mon Sep 20 18:06:12 1993 Francesco Potorti` (pot at fly)
Francesco Potortì <pot@gnu.org>
parents:
4696
diff
changeset
|
337 logical named; |
240 | 338 } TOKEN; |
339 | |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
340 /* C extensions. |
240 | 341 */ |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
342 #define C_PLPL 0x00001 /* C++ */ |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
343 #define C_STAR 0x00003 /* C* */ |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
344 #define YACC 0x10000 /* yacc file */ |
240 | 345 |
346 char searchar = '/'; /* use /.../ searches */ | |
347 | |
348 LINENO lineno; /* line number of current line */ | |
349 long charno; /* current character number */ | |
350 | |
351 long linecharno; /* charno of start of line; not used by C, but | |
352 * by every other language. | |
353 */ | |
354 | |
355 char *curfile, /* current input file name */ | |
356 *outfile, /* output file */ | |
357 *white = " \f\t\n", /* white chars */ | |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
358 *endtk = " \t\n\"'#()[]{}=-+%*/&|^~!<>;,.:?", /* token ending chars */ |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
359 /* token starting chars */ |
4937
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
360 *begtk = "ABCDEFGHIJKLMNOPQRSTUVWXYZ_abcdefghijklmnopqrstuvwxyz$~", |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
361 /* valid in-token chars */ |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
362 *intk = "ABCDEFGHIJKLMNOPQRSTUVWXYZ_abcdefghijklmnopqrstuvwxyz$0123456789"; |
240 | 363 |
364 int append_to_tagfile; /* -a: append to tags */ | |
365 int emacs_tags_format; /* emacs style output (no -e option any more) */ | |
366 /* The following three default to 1 for etags, but to 0 for ctags. */ | |
367 int typedefs; /* -t: create tags for typedefs */ | |
368 int typedefs_and_cplusplus; /* -T: create tags for typedefs, level */ | |
369 /* 0 struct/enum/union decls, and C++ */ | |
370 /* member functions */ | |
371 int constantypedefs; /* -d: create tags for C #define and enum */ | |
372 /* constants. Default under etags. Enum */ | |
373 /* constants not implemented. */ | |
374 /* -D: opposite of -d. Default under ctags. */ | |
375 int update; /* -u: update tags */ | |
376 int vgrind_style; /* -v: create vgrind style index output */ | |
377 int no_warnings; /* -w: suppress warnings */ | |
378 int cxref_style; /* -x: create cxref style output */ | |
379 int cplusplus; /* .[hc] means C++, not C */ | |
380 int noindentypedefs; /* -S: ignore indentation in C */ | |
381 | |
382 /* Name this program was invoked with. */ | |
383 char *progname; | |
384 | |
621 | 385 struct option longopts[] = { |
386 { "append", no_argument, NULL, 'a' }, | |
387 { "backward-search", no_argument, NULL, 'B' }, | |
388 { "c++", no_argument, NULL, 'C' }, | |
389 { "cxref", no_argument, NULL, 'x' }, | |
390 { "defines", no_argument, NULL, 'd' }, | |
391 { "forward-search", no_argument, NULL, 'F' }, | |
392 { "help", no_argument, NULL, 'H' }, | |
393 { "ignore-indentation", no_argument, NULL, 'S' }, | |
394 { "include", required_argument, NULL, 'i' }, | |
395 { "no-defines", no_argument, NULL, 'D' }, | |
396 { "no-warn", no_argument, NULL, 'w' }, | |
397 { "output", required_argument, NULL, 'o' }, | |
398 { "typedefs", no_argument, NULL, 't' }, | |
399 { "typedefs-and-c++", no_argument, NULL, 'T' }, | |
400 { "update", no_argument, NULL, 'u' }, | |
401 { "version", no_argument, NULL, 'V' }, | |
402 { "vgrind", no_argument, NULL, 'v' }, | |
403 { 0 } | |
404 }; | |
405 | |
240 | 406 FILE *inf, /* ioptr for current input file */ |
407 *outf; /* ioptr for tags file */ | |
408 | |
409 NODE *head; /* the head of the binary tree of tags */ | |
410 | |
411 int permit_duplicates = 1; /* Nonzero means allow duplicate tags. */ | |
412 | |
413 /* A `struct linebuffer' is a structure which holds a line of text. | |
414 `readline' reads a line from a stream into a linebuffer | |
415 and works regardless of the length of the line. */ | |
416 | |
417 struct linebuffer | |
418 { | |
419 long size; | |
420 char *buffer; | |
421 }; | |
422 | |
423 struct linebuffer lb; /* the current line */ | |
424 struct linebuffer filename_lb; /* used to read in filenames */ | |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
425 struct |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
426 { |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
427 FILEPOS linepos; |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
428 struct linebuffer lb; /* used by C_entries instead of lb */ |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
429 } lbs[2]; |
240 | 430 |
431 void | |
621 | 432 print_version () |
433 { | |
434 #ifdef CTAGS | |
435 printf ("CTAGS "); | |
436 #ifdef ETAGS | |
437 printf ("and "); | |
438 #endif | |
439 #endif | |
440 #ifdef ETAGS | |
441 printf ("ETAGS "); | |
442 #endif | |
4904
7b1e944f583a
Declares itself as "etags for emacs 19" instead of "etags for emacs 19.0".
Francesco Potortì <pot@gnu.org>
parents:
4804
diff
changeset
|
443 printf ("for Emacs version 19.\n"); |
621 | 444 |
445 exit (0); | |
446 } | |
447 | |
448 void | |
449 print_help () | |
450 { | |
451 printf ("These are the options accepted by %s. You may use unambiguous\n\ | |
452 abbreviations for the long option names.\n\n", progname); | |
453 | |
4126
9a906e5f9b28
* etags.c (print_help): Break up the very long strings containing
Jim Blandy <jimb@redhat.com>
parents:
4052
diff
changeset
|
454 puts ("-a, --append\n\ |
9a906e5f9b28
* etags.c (print_help): Break up the very long strings containing
Jim Blandy <jimb@redhat.com>
parents:
4052
diff
changeset
|
455 Append tag entries to existing tags file."); |
9a906e5f9b28
* etags.c (print_help): Break up the very long strings containing
Jim Blandy <jimb@redhat.com>
parents:
4052
diff
changeset
|
456 puts ("-C, --c++\n\ |
621 | 457 Treat files with `.c' and `.h' extensions as C++ code, not C\n\ |
458 code. Files with `.C', `.H', `.cxx', `.hxx', or `.cc'\n\ | |
4126
9a906e5f9b28
* etags.c (print_help): Break up the very long strings containing
Jim Blandy <jimb@redhat.com>
parents:
4052
diff
changeset
|
459 extensions are always assumed to be C++ code."); |
9a906e5f9b28
* etags.c (print_help): Break up the very long strings containing
Jim Blandy <jimb@redhat.com>
parents:
4052
diff
changeset
|
460 fputs ("-d, --defines\n\ |
621 | 461 Create tag entries for #defines, too.", stdout); |
462 | |
463 #ifdef ETAGS | |
464 fputs (" This is the default\n\ | |
465 behavior.", stdout); | |
466 #endif | |
467 | |
468 fputs ("\n\ | |
469 -D, --no-defines\n\ | |
470 Don't create tag entries for #defines.", stdout); | |
471 | |
472 #ifdef CTAGS | |
473 fputs (" This is the default\n\ | |
474 behavior.", stdout); | |
475 #endif | |
476 | |
477 puts ("\n\ | |
478 -o FILE, --output=FILE\n\ | |
479 Write the tags to FILE.\n\ | |
480 -S, --ignore-indentation\n\ | |
481 Don't rely on indentation quite as much as normal. Currently,\n\ | |
482 this means not to assume that a closing brace in the first\n\ | |
483 column is the final brace of a function or structure\n\ | |
4126
9a906e5f9b28
* etags.c (print_help): Break up the very long strings containing
Jim Blandy <jimb@redhat.com>
parents:
4052
diff
changeset
|
484 definition."); |
9a906e5f9b28
* etags.c (print_help): Break up the very long strings containing
Jim Blandy <jimb@redhat.com>
parents:
4052
diff
changeset
|
485 puts ("-t, --typedefs\n\ |
621 | 486 Generate tag entries for typedefs. This is the default\n\ |
4126
9a906e5f9b28
* etags.c (print_help): Break up the very long strings containing
Jim Blandy <jimb@redhat.com>
parents:
4052
diff
changeset
|
487 behavior."); |
9a906e5f9b28
* etags.c (print_help): Break up the very long strings containing
Jim Blandy <jimb@redhat.com>
parents:
4052
diff
changeset
|
488 puts ("-T, --typedefs-and-c++\n\ |
621 | 489 Generate tag entries for typedefs, struct/enum/union tags, and\n\ |
490 C++ member functions."); | |
491 | |
492 #ifdef ETAGS | |
493 puts ("-i FILE, --include=FILE\n\ | |
494 Include a note in tag file indicating that, when searching for\n\ | |
495 a tag, one should also consult the tags file FILE after\n\ | |
496 checking the current file."); | |
497 #endif | |
498 | |
499 #ifdef CTAGS | |
500 puts ("-B, --backward-search\n\ | |
501 Write the search commands for the tag entries using '?', the\n\ | |
4126
9a906e5f9b28
* etags.c (print_help): Break up the very long strings containing
Jim Blandy <jimb@redhat.com>
parents:
4052
diff
changeset
|
502 backward-search command."); |
9a906e5f9b28
* etags.c (print_help): Break up the very long strings containing
Jim Blandy <jimb@redhat.com>
parents:
4052
diff
changeset
|
503 puts ("-F, --forward-search\n\ |
621 | 504 Write the search commands for the tag entries using '/', the\n\ |
4126
9a906e5f9b28
* etags.c (print_help): Break up the very long strings containing
Jim Blandy <jimb@redhat.com>
parents:
4052
diff
changeset
|
505 forward-search command."); |
9a906e5f9b28
* etags.c (print_help): Break up the very long strings containing
Jim Blandy <jimb@redhat.com>
parents:
4052
diff
changeset
|
506 puts ("-u, --update\n\ |
621 | 507 Update the tag entries for the given files, leaving tag\n\ |
508 entries for other files in place. Currently, this is\n\ | |
509 implemented by deleting the existing entries for the given\n\ | |
510 files and then rewriting the new entries at the end of the\n\ | |
511 tags file. It is often faster to simply rebuild the entire\n\ | |
4126
9a906e5f9b28
* etags.c (print_help): Break up the very long strings containing
Jim Blandy <jimb@redhat.com>
parents:
4052
diff
changeset
|
512 tag file than to use this."); |
9a906e5f9b28
* etags.c (print_help): Break up the very long strings containing
Jim Blandy <jimb@redhat.com>
parents:
4052
diff
changeset
|
513 puts ("-v, --vgrind\n\ |
621 | 514 Generates an index of items intended for human consumption,\n\ |
515 similar to the output of vgrind. The index is sorted, and\n\ | |
4126
9a906e5f9b28
* etags.c (print_help): Break up the very long strings containing
Jim Blandy <jimb@redhat.com>
parents:
4052
diff
changeset
|
516 gives the page number of each item."); |
9a906e5f9b28
* etags.c (print_help): Break up the very long strings containing
Jim Blandy <jimb@redhat.com>
parents:
4052
diff
changeset
|
517 puts ("-x, --cxref\n\ |
621 | 518 Like --vgrind, but in the style of cxref, rather than vgrind.\n\ |
519 The output uses line numbers instead of page numbers, but\n\ | |
520 beyond that the differences are cosmetic; try both to see\n\ | |
4126
9a906e5f9b28
* etags.c (print_help): Break up the very long strings containing
Jim Blandy <jimb@redhat.com>
parents:
4052
diff
changeset
|
521 which you like."); |
9a906e5f9b28
* etags.c (print_help): Break up the very long strings containing
Jim Blandy <jimb@redhat.com>
parents:
4052
diff
changeset
|
522 puts ("-w, --no-warn\n\ |
621 | 523 Suppress warning messages about entries defined in multiple\n\ |
524 files."); | |
525 #endif | |
526 | |
527 puts ("-V, --version\n\ | |
528 Print the version of the program.\n\ | |
529 -H, --help\n\ | |
530 Print this help message."); | |
531 | |
532 exit (0); | |
533 } | |
534 | |
535 | |
536 void | |
240 | 537 main (argc, argv) |
538 int argc; | |
539 char *argv[]; | |
540 { | |
541 char cmd[100]; | |
542 int i; | |
401 | 543 unsigned int nincluded_files = 0; |
4052
9535e8ffb209
* etags.c (alloca): removed all references to it.
Jim Blandy <jimb@redhat.com>
parents:
4051
diff
changeset
|
544 char **included_files = xnew (argc, char *); |
240 | 545 char *this_file; |
546 #ifdef VMS | |
547 char got_err; | |
548 | |
549 extern char *gfnames (); | |
550 extern char *massage_name (); | |
551 #endif | |
552 | |
5448
18de002e47dd
(main) [MSDOS]: Open all files as binary.
Richard M. Stallman <rms@gnu.org>
parents:
5044
diff
changeset
|
553 #ifdef MSDOS |
18de002e47dd
(main) [MSDOS]: Open all files as binary.
Richard M. Stallman <rms@gnu.org>
parents:
5044
diff
changeset
|
554 _fmode = O_BINARY; /* all of files are treated as binary files */ |
18de002e47dd
(main) [MSDOS]: Open all files as binary.
Richard M. Stallman <rms@gnu.org>
parents:
5044
diff
changeset
|
555 #endif /* MSDOS */ |
18de002e47dd
(main) [MSDOS]: Open all files as binary.
Richard M. Stallman <rms@gnu.org>
parents:
5044
diff
changeset
|
556 |
240 | 557 progname = argv[0]; |
558 | |
559 #ifndef CTAGS | |
560 emacs_tags_format = 1; | |
561 #else | |
562 emacs_tags_format = 0; | |
563 #endif | |
564 | |
565 /* | |
566 * If etags, always find typedefs and structure tags. Why not? | |
567 * Also default is to find macro constants. | |
568 */ | |
569 if (emacs_tags_format) | |
570 typedefs = typedefs_and_cplusplus = constantypedefs = 1; | |
571 | |
621 | 572 for (;;) |
240 | 573 { |
621 | 574 int opt; |
3662
edba0072c7ef
Reinstate old -f option as an alias for -o for installed base uses.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
575 opt = getopt_long (argc, argv, "aCdDo:f:StTi:BFuvxwVH", longopts, 0); |
621 | 576 |
577 if (opt == EOF) | |
578 break; | |
579 | |
580 switch (opt) | |
240 | 581 { |
621 | 582 case '\0': |
583 /* If getopt returns '\0', then it has already processed a | |
584 long-named option. We should do nothing. */ | |
585 break; | |
240 | 586 |
621 | 587 /* Common options. */ |
588 case 'a': | |
589 append_to_tagfile++; | |
590 break; | |
591 case 'C': | |
592 cplusplus = 1; | |
593 break; | |
594 case 'd': | |
595 constantypedefs = 1; | |
596 break; | |
597 case 'D': | |
598 constantypedefs = 0; | |
599 break; | |
3662
edba0072c7ef
Reinstate old -f option as an alias for -o for installed base uses.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
600 case 'f': |
621 | 601 case 'o': |
602 if (outfile) | |
603 { | |
604 fprintf (stderr, | |
3662
edba0072c7ef
Reinstate old -f option as an alias for -o for installed base uses.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
605 "%s: -%c flag may only be given once\n", progname, opt); |
240 | 606 goto usage; |
607 } | |
621 | 608 outfile = optarg; |
609 break; | |
610 case 'S': | |
611 noindentypedefs++; | |
612 break; | |
613 case 't': | |
614 typedefs++; | |
615 break; | |
616 case 'T': | |
617 typedefs++; | |
618 typedefs_and_cplusplus++; | |
619 break; | |
620 case 'V': | |
621 print_version (); | |
622 break; | |
623 case 'H': | |
624 print_help (); | |
625 break; | |
626 | |
627 /* Etags options */ | |
628 case 'i': | |
629 if (!emacs_tags_format) | |
630 goto usage; | |
631 included_files[nincluded_files++] = optarg; | |
632 break; | |
633 | |
634 /* Ctags options. */ | |
635 case 'B': | |
636 searchar = '?'; | |
637 if (emacs_tags_format) | |
638 goto usage; | |
639 break; | |
640 case 'F': | |
641 searchar = '/'; | |
642 if (emacs_tags_format) | |
643 goto usage; | |
644 break; | |
645 case 'u': | |
646 update++; | |
647 if (emacs_tags_format) | |
648 goto usage; | |
649 break; | |
650 case 'v': | |
651 vgrind_style++; | |
652 /*FALLTHRU*/ | |
653 case 'x': | |
654 cxref_style++; | |
655 if (emacs_tags_format) | |
656 goto usage; | |
657 break; | |
658 case 'w': | |
659 no_warnings++; | |
660 if (emacs_tags_format) | |
661 goto usage; | |
662 break; | |
663 | |
664 default: | |
665 goto usage; | |
240 | 666 } |
667 } | |
668 | |
2759
1c7b7ed1a12a
(main): Don't require that there be input files if -i switches were given.
Roland McGrath <roland@gnu.org>
parents:
2323
diff
changeset
|
669 if (optind == argc && nincluded_files == 0) |
240 | 670 { |
621 | 671 fprintf (stderr, "%s: No input files specified.\n", progname); |
672 | |
240 | 673 usage: |
2759
1c7b7ed1a12a
(main): Don't require that there be input files if -i switches were given.
Roland McGrath <roland@gnu.org>
parents:
2323
diff
changeset
|
674 fprintf (stderr, "%s: Try `%s --help' for a complete list of options.\n", |
621 | 675 progname, progname); |
240 | 676 exit (BAD); |
677 } | |
678 | |
679 if (outfile == 0) | |
680 { | |
681 outfile = emacs_tags_format ? "TAGS" : "tags"; | |
682 } | |
683 | |
684 init (); /* set up boolean "functions" */ | |
685 | |
686 initbuffer (&lb); | |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
687 initbuffer (&lbs[0].lb); |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
688 initbuffer (&lbs[1].lb); |
240 | 689 initbuffer (&filename_lb); |
690 /* | |
691 * loop through files finding functions | |
692 */ | |
693 if (emacs_tags_format) | |
694 { | |
695 if (streq (outfile, "-")) | |
696 outf = stdout; | |
697 else | |
698 outf = fopen (outfile, append_to_tagfile ? "a" : "w"); | |
699 if (!outf) | |
700 { | |
701 perror (outfile); | |
702 exit (1); | |
703 } | |
704 } | |
705 | |
706 #ifdef VMS | |
621 | 707 argc -= optind; |
708 argv += optind; | |
709 while (gfnames (&argc, &argv, &got_err) != NULL) | |
240 | 710 { |
711 if (got_err) | |
712 { | |
713 error ("Can't find file %s\n", this_file); | |
714 argc--, argv++; | |
715 } | |
716 else | |
717 { | |
718 this_file = massage_name (this_file); | |
719 #if 0 | |
720 } | |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
721 } /* solely to balance out the ifdef'd parens above */ |
240 | 722 #endif |
723 #else | |
621 | 724 for (; optind < argc; optind++) |
240 | 725 { |
621 | 726 this_file = argv[optind]; |
240 | 727 if (1) |
728 { | |
729 #endif | |
730 /* Input file named "-" means read file names from stdin | |
731 and use them. */ | |
732 if (streq (this_file, "-")) | |
733 { | |
734 while (!feof (stdin)) | |
735 { | |
736 (void) readline (&filename_lb, stdin); | |
737 if (strlen (filename_lb.buffer) > 0) | |
738 process_file (filename_lb.buffer); | |
739 } | |
740 } | |
741 else | |
742 process_file (this_file); | |
743 } | |
744 } | |
745 | |
746 if (emacs_tags_format) | |
747 { | |
401 | 748 while (nincluded_files-- > 0) |
749 fprintf (outf, "\f\n%s,include\n", *included_files++); | |
750 | |
240 | 751 (void) fclose (outf); |
752 exit (0); | |
753 } | |
754 | |
755 if (cxref_style) | |
756 { | |
757 put_entries (head); | |
758 exit (GOOD); | |
759 } | |
621 | 760 if (update) |
240 | 761 { |
621 | 762 /* update cannot be set under VMS, so we may assume that argc |
763 and argv have not been munged. */ | |
764 for (i = optind; i < argc; i++) | |
240 | 765 { |
766 sprintf (cmd, | |
767 "mv %s OTAGS;fgrep -v '\t%s\t' OTAGS >%s;rm OTAGS", | |
768 outfile, argv[i], outfile); | |
769 (void) system (cmd); | |
770 } | |
771 append_to_tagfile++; | |
772 } | |
773 outf = fopen (outfile, append_to_tagfile ? "a" : "w"); | |
774 if (outf == NULL) | |
775 { | |
776 perror (outfile); | |
777 exit (GOOD); | |
778 } | |
779 put_entries (head); | |
780 (void) fclose (outf); | |
781 if (update) | |
782 { | |
783 sprintf (cmd, "sort %s -o %s", outfile, outfile); | |
784 (void) system (cmd); | |
785 } | |
786 exit (GOOD); | |
787 } | |
788 | |
789 | |
790 /* | |
791 * This routine is called on each file argument. | |
792 */ | |
793 void | |
794 process_file (file) | |
795 char *file; | |
796 { | |
797 struct stat stat_buf; | |
798 | |
4804
810826b6e19a
* etags.c (process_file): dead code removed.
Francesco Potortì <pot@gnu.org>
parents:
4750
diff
changeset
|
799 if (stat (file, &stat_buf) || !S_ISREG (stat_buf.st_mode)) |
240 | 800 { |
801 fprintf (stderr, "Skipping %s: it is not a regular file.\n", file); | |
802 return; | |
803 } | |
804 | |
805 if (streq (file, outfile) && !streq (outfile, "-")) | |
806 { | |
807 fprintf (stderr, "Skipping inclusion of %s in self.\n", file); | |
808 return; | |
809 } | |
810 find_entries (file); | |
811 if (emacs_tags_format) | |
812 { | |
4804
810826b6e19a
* etags.c (process_file): dead code removed.
Francesco Potortì <pot@gnu.org>
parents:
4750
diff
changeset
|
813 fprintf (outf, "\f\n%s,%d\n", file, total_size_of_entries (head)); |
240 | 814 put_entries (head); |
815 free_tree (head); | |
816 head = NULL; | |
817 } | |
818 } | |
819 | |
820 /* | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3569
diff
changeset
|
821 * This routine sets up the boolean pseudo-functions which work |
2004
6469a137fea6
(C_entries): New local variable quotednl. Used for
Richard M. Stallman <rms@gnu.org>
parents:
1938
diff
changeset
|
822 * by setting boolean flags dependent upon the corresponding character |
240 | 823 * Every char which is NOT in that string is not a white char. Therefore, |
824 * all of the array "_wht" is set to FALSE, and then the elements | |
825 * subscripted by the chars in "white" are set to TRUE. Thus "_wht" | |
826 * of a char is TRUE if it is the string "white", else FALSE. | |
827 */ | |
828 void | |
829 init () | |
830 { | |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
831 register char *sp; |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
832 register int i; |
240 | 833 |
834 for (i = 0; i < 0177; i++) | |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
835 _wht[i] = _etk[i] = _itk[i] = _btk[i] = FALSE; |
240 | 836 for (sp = white; *sp; sp++) |
837 _wht[*sp] = TRUE; | |
838 for (sp = endtk; *sp; sp++) | |
839 _etk[*sp] = TRUE; | |
840 for (sp = intk; *sp; sp++) | |
841 _itk[*sp] = TRUE; | |
842 for (sp = begtk; *sp; sp++) | |
843 _btk[*sp] = TRUE; | |
844 _wht[0] = _wht['\n']; | |
845 _etk[0] = _etk['\n']; | |
846 _btk[0] = _btk['\n']; | |
847 _itk[0] = _itk['\n']; | |
848 } | |
849 | |
850 /* | |
851 * This routine opens the specified file and calls the function | |
852 * which finds the function and type definitions. | |
853 */ | |
854 void | |
855 find_entries (file) | |
856 char *file; | |
857 { | |
858 char *cp; | |
859 void prolog_funcs (); | |
860 | |
861 inf = fopen (file, "r"); | |
862 if (inf == NULL) | |
863 { | |
864 perror (file); | |
865 return; | |
866 } | |
867 curfile = savestr (file); | |
1026
cc96e2df9b71
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
774
diff
changeset
|
868 cp = etags_rindex (file, '.'); |
240 | 869 |
870 header_file = (cp && (streq (cp + 1, "h"))); | |
871 | |
872 /* .tex, .aux or .bbl implies LaTeX source code */ | |
873 if (cp && (streq (cp + 1, "tex") || streq (cp + 1, "aux") | |
874 || streq (cp + 1, "bbl"))) | |
875 { | |
876 TEX_funcs (inf); | |
877 goto close_and_return; | |
878 } | |
879 /* .l or .el or .lisp (or .cl or .clisp or ...) implies lisp source code */ | |
880 if (cp && (streq (cp + 1, "l") | |
881 || streq (cp + 1, "el") | |
882 || streq (cp + 1, "lsp") | |
883 || streq (cp + 1, "lisp") | |
884 || streq (cp + 1, "cl") | |
885 || streq (cp + 1, "clisp"))) | |
886 { | |
887 L_funcs (inf); | |
888 goto close_and_return; | |
889 } | |
890 /* .scm or .sm or .scheme or ... implies scheme source code */ | |
891 if (cp && (streq (cp + 1, "sm") | |
892 || streq (cp + 1, "scm") | |
893 || streq (cp + 1, "scheme") | |
894 || streq (cp + 1, "t") | |
895 || streq (cp + 1, "sch") | |
896 || streq (cp + 1, "SM") | |
897 || streq (cp + 1, "SCM") | |
898 /* The `SCM' or `scm' prefix with a version number */ | |
899 || (cp[-1] == 'm' && cp[-2] == 'c' && cp[-3] == 's' | |
900 && string_numeric_p (cp + 1)) | |
901 || (cp[-1] == 'M' && cp[-2] == 'C' && cp[-3] == 'S' | |
902 && string_numeric_p (cp + 1)))) | |
903 { | |
904 Scheme_funcs (inf); | |
905 fclose (inf); | |
906 return; | |
907 } | |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
908 /* Assume that ".s" or ".a" is assembly code. -wolfgang. |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
909 Or even ".sa". */ |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
910 if (cp && (streq (cp + 1, "s") |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
911 || streq (cp + 1, "a") |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
912 || streq (cp + 1, "sa"))) |
240 | 913 { |
914 Asm_funcs (inf); | |
915 fclose (inf); | |
916 return; | |
917 } | |
918 /* .C or .H or .cxx or .hxx or .cc: a C++ file */ | |
919 if (cp && (streq (cp + 1, "C") | |
920 || streq (cp + 1, "H") | |
921 || streq (cp + 1, "cxx") | |
922 || streq (cp + 1, "hxx") | |
923 || streq (cp + 1, "cc"))) | |
924 { | |
925 C_entries (C_PLPL); /* C++ */ | |
926 goto close_and_return; | |
927 } | |
928 /* .cs or .hs: a C* file */ | |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
929 if (cp && (streq (cp + 1, "cs") |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
930 || streq (cp + 1, "hs"))) |
240 | 931 { |
932 C_entries (C_STAR); | |
933 goto close_and_return; | |
934 } | |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
935 /* .y: a yacc file */ |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
936 if (cp && (streq (cp + 1, "y"))) |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
937 { |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
938 C_entries (YACC); |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
939 goto close_and_return; |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
940 } |
240 | 941 /* .pl implies prolog source code */ |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
942 if (cp && streq (cp + 1, "pl")) |
240 | 943 { |
944 prolog_funcs (inf); | |
945 goto close_and_return; | |
946 } | |
947 /* .p or .pas: a Pascal file */ | |
948 if (cp && (streq (cp + 1, "p") | |
949 || streq (cp + 1, "pas"))) | |
950 { | |
951 PAS_funcs (inf); | |
952 goto close_and_return; | |
953 } | |
1796
00beac79bcc7
(find_entries): If filename ends in .f or .for, don't try anything but Fortran.
Richard M. Stallman <rms@gnu.org>
parents:
1040
diff
changeset
|
954 /* If .f or .for, assume it is fortran or nothing. */ |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
955 if (cp && (streq (cp + 1, "f") |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
956 || streq (cp + 1, "for"))) |
1796
00beac79bcc7
(find_entries): If filename ends in .f or .for, don't try anything but Fortran.
Richard M. Stallman <rms@gnu.org>
parents:
1040
diff
changeset
|
957 { |
00beac79bcc7
(find_entries): If filename ends in .f or .for, don't try anything but Fortran.
Richard M. Stallman <rms@gnu.org>
parents:
1040
diff
changeset
|
958 PF_funcs (inf); |
00beac79bcc7
(find_entries): If filename ends in .f or .for, don't try anything but Fortran.
Richard M. Stallman <rms@gnu.org>
parents:
1040
diff
changeset
|
959 goto close_and_return; |
00beac79bcc7
(find_entries): If filename ends in .f or .for, don't try anything but Fortran.
Richard M. Stallman <rms@gnu.org>
parents:
1040
diff
changeset
|
960 } |
240 | 961 /* if not a .c or .h or .y file, try fortran */ |
1796
00beac79bcc7
(find_entries): If filename ends in .f or .for, don't try anything but Fortran.
Richard M. Stallman <rms@gnu.org>
parents:
1040
diff
changeset
|
962 if (cp && ((cp[1] != 'c' |
00beac79bcc7
(find_entries): If filename ends in .f or .for, don't try anything but Fortran.
Richard M. Stallman <rms@gnu.org>
parents:
1040
diff
changeset
|
963 && cp[1] != 'h' |
00beac79bcc7
(find_entries): If filename ends in .f or .for, don't try anything but Fortran.
Richard M. Stallman <rms@gnu.org>
parents:
1040
diff
changeset
|
964 && cp[1] != 'y') |
00beac79bcc7
(find_entries): If filename ends in .f or .for, don't try anything but Fortran.
Richard M. Stallman <rms@gnu.org>
parents:
1040
diff
changeset
|
965 || (cp[1] != 0 && cp[2] != 0))) |
240 | 966 { |
967 if (PF_funcs (inf) != 0) | |
968 goto close_and_return; | |
969 rewind (inf); /* no fortran tags found, try C */ | |
970 } | |
971 C_entries (cplusplus ? C_PLPL : 0); | |
972 | |
973 close_and_return: | |
974 (void) fclose (inf); | |
975 } | |
976 | |
977 /* Nonzero if string STR is composed of digits. */ | |
978 | |
979 int | |
980 string_numeric_p (str) | |
981 char *str; | |
982 { | |
983 while (*str) | |
984 { | |
985 if (*str < '0' || *str > '9') | |
986 return 0; | |
987 } | |
988 return 1; | |
989 } | |
990 | |
991 /* Record a tag. */ | |
992 /* Should take a TOKEN* instead!! */ | |
993 void | |
4750
cdefe4f21650
Mon Sep 20 18:06:12 1993 Francesco Potorti` (pot at fly)
Francesco Potortì <pot@gnu.org>
parents:
4696
diff
changeset
|
994 pfnote (name, is_func, named, linestart, linelen, lno, cno) |
240 | 995 char *name; /* tag name */ |
996 logical is_func; /* function or type name? */ | |
4750
cdefe4f21650
Mon Sep 20 18:06:12 1993 Francesco Potorti` (pot at fly)
Francesco Potortì <pot@gnu.org>
parents:
4696
diff
changeset
|
997 logical named; /* tag different from text of definition? */ |
240 | 998 char *linestart; |
999 int linelen; | |
1000 int lno; | |
1001 long cno; | |
1002 { | |
1003 register char *fp; | |
1004 register NODE *np; | |
1005 char tem[51]; | |
1006 char c; | |
1007 | |
1008 np = (NODE *) malloc (sizeof (NODE)); | |
1009 if (np == NULL) | |
1010 { | |
1011 if (!emacs_tags_format) | |
1012 { | |
1013 /* It's okay to output early in etags -- it only disrupts the | |
1014 * character count of the tag entries, which is no longer used | |
1015 * by tags.el anyway. | |
1016 */ | |
1017 error ("too many entries to sort"); | |
1018 } | |
1019 put_entries (head); | |
1020 free_tree (head); | |
1021 head = NULL; | |
1022 np = xnew (1, NODE); | |
1023 } | |
1024 /* If ctags mode, change name "main" to M<thisfilename>. */ | |
1025 if (!emacs_tags_format && !cxref_style && streq (name, "main")) | |
1026 { | |
1026
cc96e2df9b71
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
774
diff
changeset
|
1027 fp = etags_rindex (curfile, '/'); |
240 | 1028 name = concat ("M", fp == 0 ? curfile : fp + 1, ""); |
1026
cc96e2df9b71
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
774
diff
changeset
|
1029 fp = etags_rindex (name, '.'); |
240 | 1030 if (fp && fp[1] != '\0' && fp[2] == '\0') |
1031 *fp = 0; | |
4750
cdefe4f21650
Mon Sep 20 18:06:12 1993 Francesco Potorti` (pot at fly)
Francesco Potortì <pot@gnu.org>
parents:
4696
diff
changeset
|
1032 named = TRUE; |
240 | 1033 } |
1034 np->name = savestr (name); | |
1035 np->file = curfile; | |
1036 np->is_func = is_func; | |
4750
cdefe4f21650
Mon Sep 20 18:06:12 1993 Francesco Potorti` (pot at fly)
Francesco Potortì <pot@gnu.org>
parents:
4696
diff
changeset
|
1037 np->named = named; |
240 | 1038 np->lno = lno; |
1039 /* UNCOMMENT THE +1 HERE: */ | |
1040 np->cno = cno /* + 1 */ ; /* our char numbers are 0-base; emacs's are 1-base */ | |
1041 np->left = np->right = 0; | |
1042 if (emacs_tags_format) | |
1043 { | |
1044 c = linestart[linelen]; | |
1045 linestart[linelen] = 0; | |
1046 } | |
1047 else if (cxref_style == 0) | |
1048 { | |
1049 sprintf (tem, strlen (linestart) < 50 ? "%s$" : "%.50s", linestart); | |
1050 linestart = tem; | |
1051 } | |
1052 np->pat = savestr (linestart); | |
1053 if (emacs_tags_format) | |
1054 { | |
1055 linestart[linelen] = c; | |
1056 } | |
1057 | |
1058 add_node (np, &head); | |
1059 } | |
1060 | |
1061 /* | |
1062 * free_tree () | |
1063 * recurse on left children, iterate on right children. | |
1064 */ | |
1065 void | |
1066 free_tree (node) | |
1067 register NODE *node; | |
1068 { | |
1069 while (node) | |
1070 { | |
1071 register NODE *node_right = node->right; | |
1072 free_tree (node->left); | |
1073 free (node->name); | |
1074 free (node->pat); | |
1075 free ((char *) node); | |
1076 node = node_right; | |
1077 } | |
1078 } | |
1079 | |
1080 /* | |
1081 * add_node () | |
1082 * Adds a node to the tree of nodes. In etags mode, we don't keep | |
1083 * it sorted; we just keep a linear list. In ctags mode, maintain | |
1084 * an ordered tree, with no attempt at balancing. | |
1085 * | |
1086 * add_node is the only function allowed to add nodes, so it can | |
1087 * maintain state. | |
1088 */ | |
3838
6d8422d99000
(add_node): Move var last_node to file scope.
Richard M. Stallman <rms@gnu.org>
parents:
3662
diff
changeset
|
1089 /* Must avoid static vars within functions since some systems |
6d8422d99000
(add_node): Move var last_node to file scope.
Richard M. Stallman <rms@gnu.org>
parents:
3662
diff
changeset
|
1090 #define static as nothing. */ |
6d8422d99000
(add_node): Move var last_node to file scope.
Richard M. Stallman <rms@gnu.org>
parents:
3662
diff
changeset
|
1091 static NODE *last_node = NULL; |
6d8422d99000
(add_node): Move var last_node to file scope.
Richard M. Stallman <rms@gnu.org>
parents:
3662
diff
changeset
|
1092 |
240 | 1093 void |
1094 add_node (node, cur_node_p) | |
1095 NODE *node, **cur_node_p; | |
1096 { | |
1097 register int dif; | |
1098 register NODE *cur_node = *cur_node_p; | |
1099 | |
1100 if (cur_node == NULL) | |
1101 { | |
1102 *cur_node_p = node; | |
1103 last_node = node; | |
1104 return; | |
1105 } | |
1106 | |
1107 if (emacs_tags_format) | |
1108 { | |
1109 /* Etags Mode */ | |
1110 if (!last_node) | |
1111 fatal ("internal error in add_node"); | |
1112 last_node->right = node; | |
1113 last_node = node; | |
1114 } | |
1115 else | |
1116 { | |
1117 /* Ctags Mode */ | |
1118 dif = strcmp (node->name, cur_node->name); | |
1119 | |
1120 /* | |
1121 * If this tag name matches an existing one, then | |
1122 * do not add the node, but maybe print a warning. | |
1123 */ | |
1124 if (!dif) | |
1125 { | |
1126 if (node->file == cur_node->file) | |
1127 { | |
1128 if (!no_warnings) | |
1129 { | |
1130 fprintf (stderr, "Duplicate entry in file %s, line %d: %s\n", | |
1131 node->file, lineno, node->name); | |
1132 fprintf (stderr, "Second entry ignored\n"); | |
1133 } | |
1134 return; | |
1135 } | |
1136 if (!cur_node->been_warned && !no_warnings) | |
1137 { | |
1138 fprintf (stderr, | |
1139 "Duplicate entry in files %s and %s: %s (Warning only)\n", | |
1140 node->file, cur_node->file, node->name); | |
1141 } | |
1142 cur_node->been_warned = TRUE; | |
1143 return; | |
1144 } | |
1145 | |
1146 /* Maybe refuse to add duplicate nodes. */ | |
1147 if (!permit_duplicates) | |
1148 { | |
1149 if (!strcmp (node->name, cur_node->name) | |
1150 && !strcmp (node->file, cur_node->file)) | |
1151 return; | |
1152 } | |
1153 | |
1154 /* Actually add the node */ | |
1155 add_node (node, dif < 0 ? &cur_node->left : &cur_node->right); | |
1156 } | |
1157 } | |
1158 | |
1159 void | |
1160 put_entries (node) | |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1161 register NODE *node; |
240 | 1162 { |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1163 register char *sp; |
240 | 1164 |
1165 if (node == NULL) | |
1166 return; | |
1167 | |
1168 /* Output subentries that precede this one */ | |
1169 put_entries (node->left); | |
1170 | |
1171 /* Output this entry */ | |
1172 | |
1173 if (emacs_tags_format) | |
1174 { | |
4750
cdefe4f21650
Mon Sep 20 18:06:12 1993 Francesco Potorti` (pot at fly)
Francesco Potortì <pot@gnu.org>
parents:
4696
diff
changeset
|
1175 if (node->named) |
240 | 1176 { |
1177 fprintf (outf, "%s\177%s\001%d,%d\n", | |
4406
ad13aac8bb60
(put_entries): For NODE->rewritten, put pattern before \177 and name after,
Roland McGrath <roland@gnu.org>
parents:
4126
diff
changeset
|
1178 node->pat, node->name, |
ad13aac8bb60
(put_entries): For NODE->rewritten, put pattern before \177 and name after,
Roland McGrath <roland@gnu.org>
parents:
4126
diff
changeset
|
1179 node->lno, node->cno); |
240 | 1180 } |
1181 else | |
1182 { | |
1183 fprintf (outf, "%s\177%d,%d\n", | |
4406
ad13aac8bb60
(put_entries): For NODE->rewritten, put pattern before \177 and name after,
Roland McGrath <roland@gnu.org>
parents:
4126
diff
changeset
|
1184 node->pat, |
ad13aac8bb60
(put_entries): For NODE->rewritten, put pattern before \177 and name after,
Roland McGrath <roland@gnu.org>
parents:
4126
diff
changeset
|
1185 node->lno, node->cno); |
240 | 1186 } |
1187 } | |
1188 else if (!cxref_style) | |
1189 { | |
1190 fprintf (outf, "%s\t%s\t", | |
1191 node->name, node->file); | |
1192 | |
1193 if (node->is_func) | |
1194 { /* a function */ | |
1195 putc (searchar, outf); | |
1196 putc ('^', outf); | |
1197 | |
1198 for (sp = node->pat; *sp; sp++) | |
1199 { | |
1200 if (*sp == '\\' || *sp == searchar) | |
1201 putc ('\\', outf); | |
1202 putc (*sp, outf); | |
1203 } | |
1204 putc (searchar, outf); | |
1205 } | |
1206 else | |
1207 { /* a typedef; text pattern inadequate */ | |
1208 fprintf (outf, "%d", node->lno); | |
1209 } | |
1210 putc ('\n', outf); | |
1211 } | |
1212 else if (vgrind_style) | |
1213 fprintf (stdout, "%s %s %d\n", | |
1214 node->name, node->file, (node->lno + 63) / 64); | |
1215 else | |
727 | 1216 fprintf (stdout, "%-16s %3d %-16s %s\n", |
240 | 1217 node->name, node->lno, node->file, node->pat); |
1218 | |
1219 /* Output subentries that follow this one */ | |
1220 put_entries (node->right); | |
1221 } | |
1222 | |
1223 /* Length of a number's decimal representation. */ | |
1224 int | |
1225 number_len (num) | |
1226 long num; | |
1227 { | |
1228 int len = 0; | |
1229 if (!num) | |
1230 return 1; | |
1231 for (; num; num /= 10) | |
1232 ++len; | |
1233 return len; | |
1234 } | |
1235 | |
1236 /* | |
1237 * Return total number of characters that put_entries will output for | |
1238 * the nodes in the subtree of the specified node. Works only if emacs_tags_format | |
1239 * is set, but called only in that case. This count is irrelevant with | |
1240 * the new tags.el, but is still supplied for backward compatibility. | |
1241 */ | |
1242 int | |
1243 total_size_of_entries (node) | |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1244 register NODE *node; |
240 | 1245 { |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1246 register int total; |
240 | 1247 |
1248 if (node == NULL) | |
1249 return 0; | |
1250 | |
1251 total = 0; | |
1252 for (; node; node = node->right) | |
1253 { | |
1254 /* Count left subentries. */ | |
1255 total += total_size_of_entries (node->left); | |
1256 | |
1257 /* Count this entry */ | |
1258 total += strlen (node->pat) + 1; | |
1259 total += number_len ((long) node->lno) + 1 + number_len (node->cno) + 1; | |
4750
cdefe4f21650
Mon Sep 20 18:06:12 1993 Francesco Potorti` (pot at fly)
Francesco Potortì <pot@gnu.org>
parents:
4696
diff
changeset
|
1260 if (node->named) |
240 | 1261 total += 1 + strlen (node->name); /* \001name */ |
1262 } | |
1263 | |
1264 return total; | |
1265 } | |
1266 | |
1267 /* | |
1268 * The C symbol tables. | |
1269 */ | |
1270 | |
1271 Stab *C_stab, *C_PLPL_stab, *C_STAR_stab; | |
1272 | |
1273 /* | |
1274 * SYNOPSIS | |
1275 * Stab *get_C_stab (int c_ext); | |
1276 */ | |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1277 #define get_C_stab(c_ext) ((c_ext & C_STAR) ? C_STAR_stab : \ |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1278 (c_ext & C_PLPL) ? C_PLPL_stab : \ |
240 | 1279 C_stab) |
1280 | |
1281 void | |
1282 add_keyword (stab, sym, type) | |
1283 Stab *stab; | |
1284 char *sym; | |
1285 enum sym_type type; | |
1286 { | |
1287 stab_search (stab, sym, strlen (sym))->type = type; | |
1288 } | |
1289 | |
1290 Stab * | |
1291 C_create_stab (c_ext) | |
1292 int c_ext; | |
1293 { | |
1294 Stab *stab; | |
1295 | |
1296 stab = stab_create (); | |
1297 | |
1298 /* C, C++ and C* */ | |
1299 if (c_ext & C_PLPL) | |
1300 add_keyword (stab, "class", st_C_struct); | |
1301 if (c_ext & C_STAR) | |
1302 add_keyword (stab, "domain", st_C_struct); | |
1303 add_keyword (stab, "union", st_C_struct); | |
1304 add_keyword (stab, "struct", st_C_struct); | |
1305 add_keyword (stab, "enum", st_C_enum); | |
1306 add_keyword (stab, "typedef", st_C_typedef); | |
1307 add_keyword (stab, "define", st_C_define); | |
1308 add_keyword (stab, "long", st_C_typespec); | |
1309 add_keyword (stab, "short", st_C_typespec); | |
1310 add_keyword (stab, "int", st_C_typespec); | |
1311 add_keyword (stab, "char", st_C_typespec); | |
1312 add_keyword (stab, "float", st_C_typespec); | |
1313 add_keyword (stab, "double", st_C_typespec); | |
1314 add_keyword (stab, "signed", st_C_typespec); | |
1315 add_keyword (stab, "unsigned", st_C_typespec); | |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1316 add_keyword (stab, "auto", st_C_typespec); |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1317 add_keyword (stab, "void", st_C_typespec); |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1318 add_keyword (stab, "extern", st_C_typespec); |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1319 add_keyword (stab, "static", st_C_typespec); |
240 | 1320 add_keyword (stab, "const", st_C_typespec); |
1321 add_keyword (stab, "volatile", st_C_typespec); | |
1322 | |
1323 return stab; | |
1324 } | |
1325 | |
1326 void | |
1327 C_create_stabs () | |
1328 { | |
1329 C_stab = C_create_stab (0); | |
1330 C_PLPL_stab = C_create_stab (C_PLPL); | |
1331 C_STAR_stab = C_create_stab (C_STAR | C_PLPL); | |
1332 } | |
1333 | |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1334 /* |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1335 * C functions are recognized using a simple finite automaton. |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1336 * funcdef is its state variable. |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1337 */ |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1338 typedef enum |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1339 { |
4663
5f0ff5c890a8
* etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents:
4406
diff
changeset
|
1340 fnone, /* nothing seen */ |
5f0ff5c890a8
* etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents:
4406
diff
changeset
|
1341 ftagseen, /* function-like tag seen */ |
4937
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1342 fstartlist, /* just after open parenthesis */ |
4663
5f0ff5c890a8
* etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents:
4406
diff
changeset
|
1343 finlist, /* in parameter list */ |
5f0ff5c890a8
* etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents:
4406
diff
changeset
|
1344 flistseen, /* after parameter list */ |
5044
d3bd7baee39f
(FUNCST, TYPEDST, STRUCTST, DEFINEST): Delete excess commas.
Richard M. Stallman <rms@gnu.org>
parents:
4937
diff
changeset
|
1345 fignore /* before open brace */ |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1346 } FUNCST; |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1347 FUNCST funcdef; |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1348 |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1349 |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1350 /* typedefs are recognized using a simple finite automaton. |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1351 * typeddef is its state variable. |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1352 */ |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1353 typedef enum |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1354 { |
4663
5f0ff5c890a8
* etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents:
4406
diff
changeset
|
1355 tnone, /* nothing seen */ |
5f0ff5c890a8
* etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents:
4406
diff
changeset
|
1356 ttypedseen, /* typedef keyword seen */ |
5f0ff5c890a8
* etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents:
4406
diff
changeset
|
1357 tinbody, /* inside typedef body */ |
5044
d3bd7baee39f
(FUNCST, TYPEDST, STRUCTST, DEFINEST): Delete excess commas.
Richard M. Stallman <rms@gnu.org>
parents:
4937
diff
changeset
|
1358 tend /* just before typedef tag */ |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1359 } TYPEDST; |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1360 TYPEDST typdef; |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1361 |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1362 |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1363 /* struct tags for C++ are recognized using another simple |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1364 * finite automaton. `structdef' is its state variable. |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1365 * This machinery is only invoked for C++; otherwise structdef |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1366 * should remain snone. However, this machinery can easily be |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1367 * adapted to find structure tags in normal C code. |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1368 */ |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1369 typedef enum |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1370 { |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1371 snone, /* nothing seen yet */ |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1372 skeyseen, /* struct-like keyword seen */ |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1373 stagseen, /* struct-like tag seen */ |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1374 scolonseen, /* colon seen after struct-like tag */ |
5044
d3bd7baee39f
(FUNCST, TYPEDST, STRUCTST, DEFINEST): Delete excess commas.
Richard M. Stallman <rms@gnu.org>
parents:
4937
diff
changeset
|
1375 sinbody /* in struct body: recognize member func defs*/ |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1376 } STRUCTST; |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1377 STRUCTST structdef; |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1378 /* |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1379 * When structdef is stagseen, scolonseen, or sinbody, structtag is the |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1380 * struct tag, and structkey is the preceding struct-like keyword. |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1381 */ |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1382 char structtag[BUFSIZ]; |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1383 Stab_entry *structkey; |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1384 |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1385 /* |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1386 * Yet another little state machine to deal with preprocessor lines. |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1387 */ |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1388 typedef enum |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1389 { |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1390 dnone, /* nothing seen */ |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1391 dsharpseen, /* '#' seen as first char on line */ |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1392 ddefineseen, /* '#' and 'define' seen */ |
5044
d3bd7baee39f
(FUNCST, TYPEDST, STRUCTST, DEFINEST): Delete excess commas.
Richard M. Stallman <rms@gnu.org>
parents:
4937
diff
changeset
|
1393 dignorerest /* ignore rest of line */ |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1394 } DEFINEST; |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1395 DEFINEST definedef; |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1396 |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1397 /* |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1398 * Set this to TRUE, and the next token considered is called a function. |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1399 * Used only for GNUmacs's function-defining macros. |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1400 */ |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1401 logical next_token_is_func; |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1402 |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1403 /* |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1404 * TRUE in the rules part of a yacc file, FALSE outside (parse as C). |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1405 */ |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1406 logical yacc_rules; |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1407 |
240 | 1408 /* |
1409 * C_entries () | |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1410 * This routine finds functions, typedefs, #define's and |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1411 * struct/union/enum definitions in C syntax and adds them |
240 | 1412 * to the list. |
1413 */ | |
1414 | |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1415 #define curlb (lbs[curndx].lb) |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1416 #define othlb (lbs[1-curndx].lb) |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1417 #define newlb (lbs[newndx].lb) |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1418 #define curlinepos (lbs[curndx].linepos) |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1419 #define othlinepos (lbs[1-curndx].linepos) |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1420 #define newlinepos (lbs[newndx].linepos) |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1421 |
4937
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1422 /* Save and restore token state. This is used when preprocessor defines |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1423 are handled, to avoid disturbing active function/typedef/struct states. */ |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1424 #define TOKEN_SAVED_P (savetok.lineno > 0) |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1425 #define SAVE_TOKEN (savetok = tok, savetok.p = (char *) tokoff, \ |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1426 savetok.len = toklen, strcpy(savenameb, nameb)) |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1427 #define RESTORE_TOKEN (tok = savetok, tokoff = (int) tok.p, \ |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1428 toklen = tok.len, strcpy(nameb, savenameb), \ |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1429 savetok.lineno = 0) |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1430 |
240 | 1431 #define CNL_SAVE_DEFINEDEF \ |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1432 do { \ |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1433 SET_FILEPOS (curlinepos, inf, charno); \ |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1434 lineno++; \ |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1435 charno += readline (&curlb, inf); \ |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1436 lp = curlb.buffer; \ |
2004
6469a137fea6
(C_entries): New local variable quotednl. Used for
Richard M. Stallman <rms@gnu.org>
parents:
1938
diff
changeset
|
1437 quotednl = FALSE; \ |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1438 newndx = curndx; \ |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1439 } while (FALSE) |
240 | 1440 |
1441 #define CNL \ | |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1442 do { \ |
240 | 1443 CNL_SAVE_DEFINEDEF; \ |
4937
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1444 if (TOKEN_SAVED_P) \ |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1445 RESTORE_TOKEN; \ |
240 | 1446 definedef = dnone; \ |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1447 } while (FALSE) |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1448 |
4750
cdefe4f21650
Mon Sep 20 18:06:12 1993 Francesco Potorti` (pot at fly)
Francesco Potortì <pot@gnu.org>
parents:
4696
diff
changeset
|
1449 #define MAKE_TAG_FROM_NEW_LB(isfun) pfnote (nameb, isfun, tok.named, \ |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1450 newlb.buffer, tokoff + toklen + 1, tok.lineno, GET_CHARNO (newlinepos)) |
4750
cdefe4f21650
Mon Sep 20 18:06:12 1993 Francesco Potorti` (pot at fly)
Francesco Potortì <pot@gnu.org>
parents:
4696
diff
changeset
|
1451 #define MAKE_TAG_FROM_OTH_LB(isfun) pfnote (nameb, isfun, tok.named, \ |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1452 othlb.buffer, tokoff + toklen + 1, tok.lineno, GET_CHARNO (othlinepos)) |
240 | 1453 |
1454 void | |
1455 C_entries (c_ext) | |
1456 int c_ext; /* extension of C? */ | |
1457 { | |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1458 register char c; /* latest char read; '\0' for end of line */ |
240 | 1459 register char *lp; /* pointer one beyond the character `c' */ |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1460 int curndx, newndx; /* indices for current and new lb */ |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1461 TOKEN tok; /* latest token read for funcdef & structdef */ |
4750
cdefe4f21650
Mon Sep 20 18:06:12 1993 Francesco Potorti` (pot at fly)
Francesco Potortì <pot@gnu.org>
parents:
4696
diff
changeset
|
1462 char nameb[BUFSIZ]; /* latest token name for funcdef & structdef */ |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1463 register int tokoff; /* offset in line of start of latest token */ |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1464 register int toklen; /* length of latest token */ |
4051
73aa16fc728d
(consider_token): was `==', now is `='.
Richard M. Stallman <rms@gnu.org>
parents:
3921
diff
changeset
|
1465 int cblev; /* current curly brace level */ |
4937
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1466 int parlev; /* current parenthesis level */ |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1467 logical incomm, inquote, inchar, quotednl, midtoken; |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1468 logical cplpl; |
4937
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1469 TOKEN savetok; /* saved token during preprocessor handling */ |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1470 logical saveisfunc; |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1471 char savenameb[BUFSIZ]; /* ouch! */ |
240 | 1472 |
4937
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1473 savetok.lineno = 0; |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1474 curndx = newndx = 0; |
240 | 1475 lineno = 0; |
1476 charno = 0; | |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1477 lp = curlb.buffer; |
240 | 1478 *lp = 0; |
1479 | |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1480 definedef = dnone; funcdef = fnone; typdef= tnone; structdef= snone; |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1481 next_token_is_func = yacc_rules = FALSE; |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1482 midtoken = inquote = inchar = incomm = quotednl = FALSE; |
4051
73aa16fc728d
(consider_token): was `==', now is `='.
Richard M. Stallman <rms@gnu.org>
parents:
3921
diff
changeset
|
1483 cblev = 0; |
4937
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1484 parlev = 0; |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1485 cplpl = c_ext & C_PLPL; |
240 | 1486 |
1487 C_create_stabs (); | |
1488 | |
1489 while (!feof (inf)) | |
1490 { | |
1491 c = *lp++; | |
1492 if (c == '\\') | |
1493 { | |
621 | 1494 /* If we're at the end of the line, the next character is a |
1495 '\0'; don't skip it, because it's the thing that tells us | |
1496 to read the next line. */ | |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1497 if (*lp == '\0') |
2004
6469a137fea6
(C_entries): New local variable quotednl. Used for
Richard M. Stallman <rms@gnu.org>
parents:
1938
diff
changeset
|
1498 { |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1499 quotednl = TRUE; |
2004
6469a137fea6
(C_entries): New local variable quotednl. Used for
Richard M. Stallman <rms@gnu.org>
parents:
1938
diff
changeset
|
1500 continue; |
6469a137fea6
(C_entries): New local variable quotednl. Used for
Richard M. Stallman <rms@gnu.org>
parents:
1938
diff
changeset
|
1501 } |
401 | 1502 lp++; |
240 | 1503 c = ' '; |
1504 } | |
1505 else if (incomm) | |
1506 { | |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1507 switch (c) |
240 | 1508 { |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1509 case '*': |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1510 if (*lp == '/') |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1511 { |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1512 c = *lp++; |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1513 incomm = FALSE; |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1514 } |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1515 break; |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1516 case '\0': |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1517 /* Newlines inside comments do not end macro definitions in |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1518 traditional cpp. */ |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1519 CNL_SAVE_DEFINEDEF; |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1520 break; |
240 | 1521 } |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1522 continue; |
240 | 1523 } |
1524 else if (inquote) | |
1525 { | |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1526 switch (c) |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1527 { |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1528 case '"': |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1529 inquote = FALSE; |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1530 break; |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1531 case '\0': |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1532 /* Newlines inside strings, do not end macro definitions |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1533 in traditional cpp, even though compilers don't |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1534 usually accept them. */ |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1535 CNL_SAVE_DEFINEDEF; |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1536 break; |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1537 } |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1538 continue; |
240 | 1539 } |
1540 else if (inchar) | |
1541 { | |
1542 if (c == '\'') | |
1543 inchar = FALSE; | |
1544 continue; | |
1545 } | |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1546 else |
240 | 1547 switch (c) |
1548 { | |
1549 case '"': | |
1550 inquote = TRUE; | |
4937
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1551 if (funcdef != finlist && funcdef != fignore) |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1552 funcdef = fnone; |
240 | 1553 continue; |
1554 case '\'': | |
1555 inchar = TRUE; | |
4937
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1556 if (funcdef != finlist && funcdef != fignore) |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1557 funcdef = fnone; |
240 | 1558 continue; |
1559 case '/': | |
1560 if (*lp == '*') | |
1561 { | |
1562 lp++; | |
1563 incomm = TRUE; | |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1564 continue; |
240 | 1565 } |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1566 else if (cplpl && *lp == '/') |
240 | 1567 { |
727 | 1568 c = 0; |
1569 break; | |
240 | 1570 } |
4937
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1571 else |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1572 break; |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1573 case '%': |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1574 if ((c_ext & YACC) && *lp == '%') |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1575 { |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1576 /* entering or exiting rules section in yacc file */ |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1577 lp++; |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1578 definedef = dnone; funcdef = fnone; |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1579 typdef= tnone; structdef= snone; |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1580 next_token_is_func = FALSE; |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1581 midtoken = inquote = inchar = incomm = quotednl = FALSE; |
4051
73aa16fc728d
(consider_token): was `==', now is `='.
Richard M. Stallman <rms@gnu.org>
parents:
3921
diff
changeset
|
1582 cblev = 0; |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1583 yacc_rules = !yacc_rules; |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1584 continue; |
4051
73aa16fc728d
(consider_token): was `==', now is `='.
Richard M. Stallman <rms@gnu.org>
parents:
3921
diff
changeset
|
1585 } |
4937
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1586 else |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1587 break; |
240 | 1588 case '#': |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1589 if (lp == newlb.buffer + 1 && definedef == dnone) |
240 | 1590 definedef = dsharpseen; |
1591 continue; | |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1592 } /* switch (c) */ |
240 | 1593 |
1594 | |
4051
73aa16fc728d
(consider_token): was `==', now is `='.
Richard M. Stallman <rms@gnu.org>
parents:
3921
diff
changeset
|
1595 /* Consider token only if some complicated conditions are satisfied. */ |
73aa16fc728d
(consider_token): was `==', now is `='.
Richard M. Stallman <rms@gnu.org>
parents:
3921
diff
changeset
|
1596 if (((cblev == 0 && structdef != scolonseen) |
73aa16fc728d
(consider_token): was `==', now is `='.
Richard M. Stallman <rms@gnu.org>
parents:
3921
diff
changeset
|
1597 || (cblev == 1 && cplpl && structdef == sinbody)) |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1598 && definedef != dignorerest |
4937
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1599 && (funcdef != finlist |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1600 || (definedef != dnone && definedef != dignorerest))) |
240 | 1601 { |
1602 if (midtoken) | |
1603 { | |
1604 if (endtoken (c)) | |
1605 { | |
4937
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1606 if (cplpl && c == ':' && *lp == ':' && begtoken(*(lp + 1))) |
240 | 1607 { |
1608 /* | |
1609 * This handles :: in the middle, but not at beginning | |
1610 * of an identifier. | |
1611 */ | |
1612 lp += 2; | |
1613 toklen += 3; | |
1614 } | |
1615 else | |
1616 { | |
4750
cdefe4f21650
Mon Sep 20 18:06:12 1993 Francesco Potorti` (pot at fly)
Francesco Potortì <pot@gnu.org>
parents:
4696
diff
changeset
|
1617 logical is_func = FALSE; |
240 | 1618 |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1619 tok.lineno = lineno; |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1620 tok.p = newlb.buffer + tokoff; |
240 | 1621 tok.len = toklen; |
4750
cdefe4f21650
Mon Sep 20 18:06:12 1993 Francesco Potorti` (pot at fly)
Francesco Potortì <pot@gnu.org>
parents:
4696
diff
changeset
|
1622 tok.named = FALSE; |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1623 if (yacc_rules |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1624 || consider_token (c, lp, &tok, |
4051
73aa16fc728d
(consider_token): was `==', now is `='.
Richard M. Stallman <rms@gnu.org>
parents:
3921
diff
changeset
|
1625 c_ext, cblev, &is_func)) |
240 | 1626 { |
2004
6469a137fea6
(C_entries): New local variable quotednl. Used for
Richard M. Stallman <rms@gnu.org>
parents:
1938
diff
changeset
|
1627 if (structdef == sinbody |
4750
cdefe4f21650
Mon Sep 20 18:06:12 1993 Francesco Potorti` (pot at fly)
Francesco Potortì <pot@gnu.org>
parents:
4696
diff
changeset
|
1628 && definedef == dnone |
cdefe4f21650
Mon Sep 20 18:06:12 1993 Francesco Potorti` (pot at fly)
Francesco Potortì <pot@gnu.org>
parents:
4696
diff
changeset
|
1629 && is_func) |
cdefe4f21650
Mon Sep 20 18:06:12 1993 Francesco Potorti` (pot at fly)
Francesco Potortì <pot@gnu.org>
parents:
4696
diff
changeset
|
1630 /* function defined in C++ class body */ |
cdefe4f21650
Mon Sep 20 18:06:12 1993 Francesco Potorti` (pot at fly)
Francesco Potortì <pot@gnu.org>
parents:
4696
diff
changeset
|
1631 { |
cdefe4f21650
Mon Sep 20 18:06:12 1993 Francesco Potorti` (pot at fly)
Francesco Potortì <pot@gnu.org>
parents:
4696
diff
changeset
|
1632 tok.named = TRUE; |
cdefe4f21650
Mon Sep 20 18:06:12 1993 Francesco Potorti` (pot at fly)
Francesco Potortì <pot@gnu.org>
parents:
4696
diff
changeset
|
1633 sprintf (nameb, "%s::%.*s", |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1634 ((structtag[0] == '\0') |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1635 ? "_anonymous_" : structtag), |
240 | 1636 tok.len, tok.p); |
1637 } | |
1638 else | |
1639 { | |
4750
cdefe4f21650
Mon Sep 20 18:06:12 1993 Francesco Potorti` (pot at fly)
Francesco Potortì <pot@gnu.org>
parents:
4696
diff
changeset
|
1640 sprintf (nameb, "%.*s", tok.len, tok.p); |
240 | 1641 } |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1642 |
4750
cdefe4f21650
Mon Sep 20 18:06:12 1993 Francesco Potorti` (pot at fly)
Francesco Potortì <pot@gnu.org>
parents:
4696
diff
changeset
|
1643 if (structdef == stagseen |
cdefe4f21650
Mon Sep 20 18:06:12 1993 Francesco Potorti` (pot at fly)
Francesco Potortì <pot@gnu.org>
parents:
4696
diff
changeset
|
1644 || typdef == tend) |
cdefe4f21650
Mon Sep 20 18:06:12 1993 Francesco Potorti` (pot at fly)
Francesco Potortì <pot@gnu.org>
parents:
4696
diff
changeset
|
1645 tok.named = TRUE; |
cdefe4f21650
Mon Sep 20 18:06:12 1993 Francesco Potorti` (pot at fly)
Francesco Potortì <pot@gnu.org>
parents:
4696
diff
changeset
|
1646 |
4937
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1647 if (definedef == dnone |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1648 && (funcdef == ftagseen |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1649 || structdef == stagseen |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1650 || typdef == tend)) |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1651 { |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1652 if (newndx == curndx) |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1653 curndx = 1 - curndx; /* switch line buffers */ |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1654 } |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1655 else |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1656 MAKE_TAG_FROM_NEW_LB (is_func); |
240 | 1657 } |
1658 midtoken = FALSE; | |
1659 } | |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1660 } /* if (endtoken (c)) */ |
240 | 1661 else if (intoken (c)) |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1662 { |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1663 toklen++; |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1664 continue; |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1665 } |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1666 } /* if (midtoken) */ |
240 | 1667 else if (begtoken (c)) |
1668 { | |
4937
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1669 switch (definedef) |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1670 { |
4937
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1671 case dnone: |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1672 switch (funcdef) |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1673 { |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1674 case fstartlist: |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1675 funcdef = finlist; |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1676 continue; |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1677 case flistseen: |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1678 MAKE_TAG_FROM_OTH_LB (TRUE); |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1679 funcdef = fignore; |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1680 break; |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1681 case ftagseen: |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1682 funcdef = fnone; |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1683 break; |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1684 } |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1685 if (structdef == stagseen) |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1686 structdef = snone; |
4663
5f0ff5c890a8
* etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents:
4406
diff
changeset
|
1687 break; |
4937
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1688 case dsharpseen: |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1689 /* Take a quick peek ahead for define directive, |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1690 so we can avoid saving the token when not absolutely |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1691 necessary. [This is a speed hack.] */ |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1692 if (c == 'd' && strneq(lp, "efine", 5) |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1693 && iswhite(*(lp + 5))) |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1694 { |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1695 SAVE_TOKEN; |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1696 definedef = ddefineseen; |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1697 lp += 6; |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1698 } |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1699 else |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1700 definedef = dignorerest; |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1701 continue; |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1702 } |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1703 if (!yacc_rules || lp == newlb.buffer + 1) |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1704 { |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1705 tokoff = lp - 1 - newlb.buffer; |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1706 toklen = 1; |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1707 midtoken = TRUE; |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1708 } |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1709 continue; |
240 | 1710 } |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1711 } /* if must look at token */ |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1712 |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1713 |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1714 /* Detect end of line, colon, comma, semicolon and various braces |
4937
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1715 after having handled a token.*/ |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1716 switch (c) |
401 | 1717 { |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1718 case ':': |
4937
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1719 if (definedef != dnone) |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1720 break; |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1721 if (structdef == stagseen) |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1722 structdef = scolonseen; |
4937
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1723 else |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1724 switch (funcdef) |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1725 { |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1726 case ftagseen: |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1727 if (yacc_rules) |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1728 { |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1729 MAKE_TAG_FROM_OTH_LB (FALSE); |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1730 funcdef = fignore; |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1731 } |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1732 break; |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1733 case fstartlist: |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1734 funcdef = fnone; |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1735 break; |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1736 } |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1737 break; |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1738 case ';': |
4937
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1739 if (definedef != dnone) |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1740 break; |
4051
73aa16fc728d
(consider_token): was `==', now is `='.
Richard M. Stallman <rms@gnu.org>
parents:
3921
diff
changeset
|
1741 if (cblev == 0 && typdef == tend) |
73aa16fc728d
(consider_token): was `==', now is `='.
Richard M. Stallman <rms@gnu.org>
parents:
3921
diff
changeset
|
1742 { |
73aa16fc728d
(consider_token): was `==', now is `='.
Richard M. Stallman <rms@gnu.org>
parents:
3921
diff
changeset
|
1743 typdef = tnone; |
73aa16fc728d
(consider_token): was `==', now is `='.
Richard M. Stallman <rms@gnu.org>
parents:
3921
diff
changeset
|
1744 MAKE_TAG_FROM_OTH_LB (FALSE); |
73aa16fc728d
(consider_token): was `==', now is `='.
Richard M. Stallman <rms@gnu.org>
parents:
3921
diff
changeset
|
1745 } |
4663
5f0ff5c890a8
* etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents:
4406
diff
changeset
|
1746 if (funcdef != fignore) |
5f0ff5c890a8
* etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents:
4406
diff
changeset
|
1747 funcdef = fnone; |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1748 /* FALLTHRU */ |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1749 case ',': |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1750 /* FALLTHRU */ |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1751 case '[': |
4937
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1752 if (definedef != dnone) |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1753 break; |
4663
5f0ff5c890a8
* etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents:
4406
diff
changeset
|
1754 if (funcdef != finlist && funcdef != fignore) |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1755 funcdef = fnone; |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1756 if (structdef == stagseen) |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1757 structdef = snone; |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1758 break; |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1759 case '(': |
4937
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1760 if (definedef != dnone) |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1761 break; |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1762 switch (funcdef) |
1938
1045deef809f
(C_entries): Don't reset definedef when a newline inside a comment is met.
Richard M. Stallman <rms@gnu.org>
parents:
1796
diff
changeset
|
1763 { |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1764 case ftagseen: |
4937
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1765 funcdef = fstartlist; |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1766 break; |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1767 case flistseen: |
4937
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1768 funcdef = finlist; |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1769 break; |
1938
1045deef809f
(C_entries): Don't reset definedef when a newline inside a comment is met.
Richard M. Stallman <rms@gnu.org>
parents:
1796
diff
changeset
|
1770 } |
4937
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1771 parlev++; |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1772 break; |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1773 case ')': |
4937
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1774 if (definedef != dnone) |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1775 break; |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1776 if (--parlev == 0) |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1777 { |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1778 switch (funcdef) |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1779 { |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1780 case fstartlist: |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1781 case finlist: |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1782 funcdef = flistseen; |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1783 break; |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1784 } |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1785 } |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1786 else if (parlev < 0) /* can happen due to ill-conceived #if's. */ |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1787 parlev = 0; |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1788 break; |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1789 case '{': |
4937
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1790 if (definedef != dnone) |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1791 break; |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1792 if (typdef == ttypedseen) |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1793 typdef = tinbody; |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1794 switch (structdef) |
1938
1045deef809f
(C_entries): Don't reset definedef when a newline inside a comment is met.
Richard M. Stallman <rms@gnu.org>
parents:
1796
diff
changeset
|
1795 { |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1796 case skeyseen: /* unnamed struct */ |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1797 structtag[0] = '\0'; |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1798 structdef = sinbody; |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1799 break; |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1800 case stagseen: |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1801 case scolonseen: /* named struct */ |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1802 structdef = sinbody; |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1803 MAKE_TAG_FROM_OTH_LB (FALSE); |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1804 break; |
1938
1045deef809f
(C_entries): Don't reset definedef when a newline inside a comment is met.
Richard M. Stallman <rms@gnu.org>
parents:
1796
diff
changeset
|
1805 } |
4663
5f0ff5c890a8
* etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents:
4406
diff
changeset
|
1806 switch (funcdef) |
5f0ff5c890a8
* etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents:
4406
diff
changeset
|
1807 { |
5f0ff5c890a8
* etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents:
4406
diff
changeset
|
1808 case flistseen: |
5f0ff5c890a8
* etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents:
4406
diff
changeset
|
1809 MAKE_TAG_FROM_OTH_LB (TRUE); |
5f0ff5c890a8
* etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents:
4406
diff
changeset
|
1810 /* FALLTHRU */ |
5f0ff5c890a8
* etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents:
4406
diff
changeset
|
1811 case fignore: |
5f0ff5c890a8
* etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents:
4406
diff
changeset
|
1812 funcdef = fnone; |
5f0ff5c890a8
* etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents:
4406
diff
changeset
|
1813 } |
4051
73aa16fc728d
(consider_token): was `==', now is `='.
Richard M. Stallman <rms@gnu.org>
parents:
3921
diff
changeset
|
1814 cblev++; |
4663
5f0ff5c890a8
* etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents:
4406
diff
changeset
|
1815 break; |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1816 case '*': |
4937
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1817 if (definedef != dnone) |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1818 break; |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1819 if (funcdef == fstartlist) |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1820 funcdef = fnone; /* avoid tagging `foo' in `foo (*bar()) ()' */ |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1821 break; |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1822 case '}': |
4937
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1823 if (definedef != dnone) |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1824 break; |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1825 if (!noindentypedefs && lp == newlb.buffer + 1) |
4937
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1826 { |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1827 cblev = 0; /* reset curly brace level if first column */ |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1828 parlev = 0; /* also reset paren level, just in case... */ |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1829 } |
4051
73aa16fc728d
(consider_token): was `==', now is `='.
Richard M. Stallman <rms@gnu.org>
parents:
3921
diff
changeset
|
1830 else if (cblev > 0) |
73aa16fc728d
(consider_token): was `==', now is `='.
Richard M. Stallman <rms@gnu.org>
parents:
3921
diff
changeset
|
1831 cblev--; |
73aa16fc728d
(consider_token): was `==', now is `='.
Richard M. Stallman <rms@gnu.org>
parents:
3921
diff
changeset
|
1832 if (cblev == 0) |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1833 { |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1834 if (typdef == tinbody) |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1835 typdef = tend; |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1836 structdef = snone; |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1837 (void) strcpy (structtag, "<error 2>"); |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1838 } |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1839 break; |
4937
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1840 case '=': |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1841 case '#': |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1842 case '+': |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1843 case '-': |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1844 case '~': |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1845 case '&': |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1846 case '%': |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1847 case '/': |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1848 case '|': |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1849 case '^': |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1850 case '!': |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1851 case '<': |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1852 case '>': |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1853 case '.': |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1854 case '?': |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1855 if (definedef != dnone) |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1856 break; |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1857 /* These surely cannot follow a function tag. */ |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1858 if (funcdef != finlist && funcdef != fignore) |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1859 funcdef = fnone; |
50db67ef8d64
Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents:
4905
diff
changeset
|
1860 break; |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1861 case '\0': |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1862 /* If a macro spans multiple lines don't reset its state. */ |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1863 if (quotednl) |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1864 CNL_SAVE_DEFINEDEF; |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1865 else |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1866 CNL; |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1867 break; |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1868 } /* switch (c) */ |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1869 |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1870 } /* while not eof */ |
240 | 1871 } |
1872 | |
1873 /* | |
1874 * consider_token () | |
1875 * checks to see if the current token is at the start of a | |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1876 * function, or corresponds to a typedef, or is a struct/union/enum |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1877 * tag. |
240 | 1878 * |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1879 * *IS_FUNC gets TRUE iff the token is a function or macro with args. |
240 | 1880 * C_EXT is which language we are looking at. |
1881 * | |
1882 * In the future we will need some way to adjust where the end of | |
1883 * the token is; for instance, implementing the C++ keyword | |
1884 * `operator' properly will adjust the end of the token to be after | |
1885 * whatever follows `operator'. | |
1886 * | |
1887 * Globals | |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1888 * funcdef IN OUT |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1889 * structdef IN OUT |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1890 * definedef IN OUT |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1891 * typdef IN OUT |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1892 * next_token_is_func IN OUT |
240 | 1893 */ |
1894 | |
1895 logical | |
4051
73aa16fc728d
(consider_token): was `==', now is `='.
Richard M. Stallman <rms@gnu.org>
parents:
3921
diff
changeset
|
1896 consider_token (c, lp, tokp, c_ext, cblev, is_func) |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1897 register char c; /* IN: first char after the token */ |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1898 register char *lp; /* IN: lp points to 2nd char after the token */ |
4051
73aa16fc728d
(consider_token): was `==', now is `='.
Richard M. Stallman <rms@gnu.org>
parents:
3921
diff
changeset
|
1899 register TOKEN *tokp; /* IN: token pointer */ |
73aa16fc728d
(consider_token): was `==', now is `='.
Richard M. Stallman <rms@gnu.org>
parents:
3921
diff
changeset
|
1900 int c_ext; /* IN: C extensions mask */ |
73aa16fc728d
(consider_token): was `==', now is `='.
Richard M. Stallman <rms@gnu.org>
parents:
3921
diff
changeset
|
1901 int cblev; /* IN: curly brace level */ |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1902 logical *is_func; /* OUT */ |
240 | 1903 { |
1904 Stab_entry *tokse = stab_find (get_C_stab (c_ext), tokp->p, tokp->len); | |
1905 enum sym_type toktype = stab_type (tokse); | |
1906 | |
1907 /* | |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1908 * Advance the definedef state machine. |
240 | 1909 */ |
1910 switch (definedef) | |
1911 { | |
1912 case dnone: | |
1913 /* We're not on a preprocessor line. */ | |
1914 break; | |
1915 case dsharpseen: | |
1916 if (toktype == st_C_define) | |
1917 { | |
1918 definedef = ddefineseen; | |
1919 } | |
1920 else | |
1921 { | |
1922 definedef = dignorerest; | |
1923 } | |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1924 return (FALSE); |
240 | 1925 case ddefineseen: |
1926 /* | |
1927 * Make a tag for any macro. | |
1928 */ | |
1929 definedef = dignorerest; | |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1930 *is_func = (c == '('); |
240 | 1931 if (!*is_func && !constantypedefs) |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1932 return (FALSE); |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1933 else |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1934 return (TRUE); |
240 | 1935 case dignorerest: |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1936 return (FALSE); |
240 | 1937 default: |
1938 error ("internal error: definedef value"); | |
1939 } | |
1940 | |
1941 /* | |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1942 * Now typedefs |
240 | 1943 */ |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1944 switch (typdef) |
240 | 1945 { |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1946 case tnone: |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1947 if (toktype == st_C_typedef) |
240 | 1948 { |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1949 if (typedefs) |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1950 typdef = ttypedseen; |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1951 return (FALSE); |
240 | 1952 } |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1953 break; |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1954 case ttypedseen: |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1955 switch (toktype) |
240 | 1956 { |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1957 case st_none: |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1958 case st_C_typespec: |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1959 typdef = tend; |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1960 break; |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1961 case st_C_struct: |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1962 case st_C_enum: |
401 | 1963 break; |
240 | 1964 } |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1965 /* Do not return here, so the structdef stuff has a chance. */ |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1966 break; |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1967 case tend: |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1968 switch (toktype) |
240 | 1969 { |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1970 case st_C_typespec: |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1971 case st_C_struct: |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1972 case st_C_enum: |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1973 return (FALSE); |
240 | 1974 } |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1975 return (TRUE); |
240 | 1976 } |
1977 | |
1978 /* | |
4051
73aa16fc728d
(consider_token): was `==', now is `='.
Richard M. Stallman <rms@gnu.org>
parents:
3921
diff
changeset
|
1979 * This structdef business is currently only invoked when cblev==0. |
73aa16fc728d
(consider_token): was `==', now is `='.
Richard M. Stallman <rms@gnu.org>
parents:
3921
diff
changeset
|
1980 * It should be recursively invoked whatever the curly brace level, |
73aa16fc728d
(consider_token): was `==', now is `='.
Richard M. Stallman <rms@gnu.org>
parents:
3921
diff
changeset
|
1981 * and a stack of states kept, to allow for definitions of structs |
73aa16fc728d
(consider_token): was `==', now is `='.
Richard M. Stallman <rms@gnu.org>
parents:
3921
diff
changeset
|
1982 * within structs. |
240 | 1983 * |
1984 * This structdef business is NOT invoked when we are ctags and the | |
1985 * file is plain C. This is because a struct tag may have the same | |
1986 * name as another tag, and this loses with ctags. | |
1987 * | |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1988 * This if statement deals with the typdef state machine as |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1989 * follows: if typdef==ttypedseen and token is struct/union/class/enum, |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1990 * return (FALSE). All the other code here is for the structdef |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1991 * state machine. |
240 | 1992 */ |
1993 switch (toktype) | |
1994 { | |
1995 case st_C_struct: | |
1996 case st_C_enum: | |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
1997 if (typdef == ttypedseen |
4051
73aa16fc728d
(consider_token): was `==', now is `='.
Richard M. Stallman <rms@gnu.org>
parents:
3921
diff
changeset
|
1998 || (typedefs_and_cplusplus && cblev == 0 && structdef == snone)) |
240 | 1999 { |
2000 structdef = skeyseen; | |
2001 structkey = tokse; | |
2002 } | |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
2003 return (FALSE); |
240 | 2004 } |
2005 if (structdef == skeyseen) | |
2006 { | |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
2007 if (stab_type (structkey) == st_C_struct) |
240 | 2008 { |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
2009 (void) strncpy (structtag, tokp->p, tokp->len); |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
2010 structtag[tokp->len] = '\0'; /* for struct/union/class */ |
240 | 2011 } |
2012 else | |
2013 { | |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
2014 structtag[0] = '\0'; /* for enum (why is it treated differently?) */ |
240 | 2015 } |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
2016 structdef = stagseen; |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
2017 return (TRUE); |
240 | 2018 } |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
2019 |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
2020 /* Avoid entering funcdef stuff if typdef is going on. */ |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
2021 if (typdef != tnone) |
240 | 2022 { |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
2023 definedef = dnone; |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
2024 return (FALSE); |
240 | 2025 } |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
2026 |
240 | 2027 /* Detect GNUmacs's function-defining macros. */ |
621 | 2028 if (definedef == dnone) |
240 | 2029 { |
727 | 2030 if (strneq (tokp->p, "DEF", 3) |
2031 || strneq (tokp->p, "ENTRY", 5) | |
2032 || strneq (tokp->p, "SYSCALL", 7) | |
2033 || strneq (tokp->p, "PSEUDO", 6)) | |
621 | 2034 { |
2035 next_token_is_func = TRUE; | |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
2036 return (FALSE); |
621 | 2037 } |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
2038 if (strneq (tokp->p, "EXFUN", 5)) |
621 | 2039 { |
2040 next_token_is_func = FALSE; | |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
2041 return (FALSE); |
621 | 2042 } |
240 | 2043 } |
2044 if (next_token_is_func) | |
2045 { | |
2046 next_token_is_func = FALSE; | |
4663
5f0ff5c890a8
* etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents:
4406
diff
changeset
|
2047 funcdef = fnone; |
5f0ff5c890a8
* etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents:
4406
diff
changeset
|
2048 *is_func = TRUE; /* to force search string in ctags */ |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
2049 return (TRUE); |
240 | 2050 } |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
2051 |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
2052 /* A function? */ |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
2053 switch (toktype) |
240 | 2054 { |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
2055 case st_C_typespec: |
4051
73aa16fc728d
(consider_token): was `==', now is `='.
Richard M. Stallman <rms@gnu.org>
parents:
3921
diff
changeset
|
2056 funcdef = fnone; /* should be useless */ |
2323
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
2057 return (FALSE); |
626d9ac52bc9
(YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents:
2004
diff
changeset
|
2058 default: |
4663
5f0ff5c890a8
* etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents:
4406
diff
changeset
|
2059 if (funcdef == fnone) |
5f0ff5c890a8
* etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents:
4406
diff
changeset
|
2060 { |
5f0ff5c890a8
* etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents:
4406
diff
changeset
|
2061 funcdef = ftagseen; |
5f0ff5c890a8
* etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents:
4406
diff
changeset
|
2062 *is_func = TRUE; |
5f0ff5c890a8
* etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents:
4406
diff
changeset
|
2063 return (TRUE); |
5f0ff5c890a8
* etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents:
4406
diff
changeset
|
2064 } |
240 | 2065 } |
4663
5f0ff5c890a8
* etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents:
4406
diff
changeset
|
2066 |
5f0ff5c890a8
* etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents:
4406
diff
changeset
|
2067 return (FALSE); |
240 | 2068 } |
2069 | |
2070 /* Fortran parsing */ | |
2071 | |
2072 char *dbp; | |
2073 int pfcnt; | |
2074 | |
2075 int | |
2076 PF_funcs (fi) | |
2077 FILE *fi; | |
2078 { | |
2079 lineno = 0; | |
2080 charno = 0; | |
2081 pfcnt = 0; | |
2082 | |
2083 while (!feof (fi)) | |
2084 { | |
2085 lineno++; | |
2086 linecharno = charno; | |
2087 charno += readline (&lb, fi); | |
2088 dbp = lb.buffer; | |
2089 if (*dbp == '%') | |
2090 dbp++; /* Ratfor escape to fortran */ | |
2091 while (isspace (*dbp)) | |
2092 dbp++; | |
2093 if (*dbp == 0) | |
2094 continue; | |
2095 switch (*dbp | ' ') | |
2096 { | |
2097 case 'i': | |
2098 if (tail ("integer")) | |
2099 takeprec (); | |
2100 break; | |
2101 case 'r': | |
2102 if (tail ("real")) | |
2103 takeprec (); | |
2104 break; | |
2105 case 'l': | |
2106 if (tail ("logical")) | |
2107 takeprec (); | |
2108 break; | |
2109 case 'c': | |
2110 if (tail ("complex") || tail ("character")) | |
2111 takeprec (); | |
2112 break; | |
2113 case 'd': | |
2114 if (tail ("double")) | |
2115 { | |
2116 while (isspace (*dbp)) | |
2117 dbp++; | |
2118 if (*dbp == 0) | |
2119 continue; | |
2120 if (tail ("precision")) | |
2121 break; | |
2122 continue; | |
2123 } | |
2124 break; | |
2125 } | |
2126 while (isspace (*dbp)) | |
2127 dbp++; | |
2128 if (*dbp == 0) | |
2129 continue; | |
2130 switch (*dbp | ' ') | |
2131 { | |
2132 case 'f': | |
2133 if (tail ("function")) | |
2134 getit (); | |
2135 continue; | |
2136 case 's': | |
2137 if (tail ("subroutine")) | |
2138 getit (); | |
2139 continue; | |
1026
cc96e2df9b71
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
774
diff
changeset
|
2140 case 'e': |
cc96e2df9b71
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
774
diff
changeset
|
2141 if (tail ("entry")) |
cc96e2df9b71
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
774
diff
changeset
|
2142 getit (); |
cc96e2df9b71
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
774
diff
changeset
|
2143 continue; |
240 | 2144 case 'p': |
2145 if (tail ("program")) | |
2146 { | |
2147 getit (); | |
2148 continue; | |
2149 } | |
2150 if (tail ("procedure")) | |
2151 getit (); | |
2152 continue; | |
2153 } | |
2154 } | |
2155 return (pfcnt); | |
2156 } | |
2157 | |
2158 logical | |
2159 tail (cp) | |
2160 char *cp; | |
2161 { | |
2162 register int len = 0; | |
2163 | |
2164 while (*cp && (*cp & ~' ') == ((*(dbp + len)) & ~' ')) | |
2165 cp++, len++; | |
2166 if (*cp == 0) | |
2167 { | |
2168 dbp += len; | |
2169 return (1); | |
2170 } | |
2171 return (0); | |
2172 } | |
2173 | |
2174 void | |
2175 takeprec () | |
2176 { | |
2177 while (isspace (*dbp)) | |
2178 dbp++; | |
2179 if (*dbp != '*') | |
2180 return; | |
2181 dbp++; | |
2182 while (isspace (*dbp)) | |
2183 dbp++; | |
2184 if (!isdigit (*dbp)) | |
2185 { | |
2186 --dbp; /* force failure */ | |
2187 return; | |
2188 } | |
2189 do | |
2190 dbp++; | |
2191 while (isdigit (*dbp)); | |
2192 } | |
2193 | |
2194 void | |
2195 getit () | |
2196 { | |
2197 register char *cp; | |
2198 char c; | |
2199 char nambuf[BUFSIZ]; | |
2200 | |
2201 while (isspace (*dbp)) | |
2202 dbp++; | |
727 | 2203 if (*dbp == 0 |
2204 || (!isalpha (*dbp) | |
2205 && *dbp != '_' | |
2206 && *dbp != '$')) | |
240 | 2207 return; |
2208 for (cp = dbp + 1; *cp && (isalpha (*cp) || isdigit (*cp) | |
2209 || (*cp == '_') || (*cp == '$')); cp++) | |
2210 continue; | |
2211 c = cp[0]; | |
2212 cp[0] = 0; | |
2213 (void) strcpy (nambuf, dbp); | |
2214 cp[0] = c; | |
2215 pfnote (nambuf, TRUE, FALSE, lb.buffer, cp - lb.buffer + 1, lineno, linecharno); | |
2216 pfcnt++; | |
2217 } | |
2218 | |
2219 /* Handle a file of assembler code. */ | |
2220 | |
2221 void | |
2222 Asm_funcs (fi) | |
2223 FILE *fi; | |
2224 { | |
2225 int i; | |
2226 register char c; | |
2227 | |
2228 lineno = 0; | |
2229 charno = 0; | |
2230 pfcnt = 0; | |
2231 | |
2232 while (!feof (fi)) | |
2233 { | |
2234 lineno++; | |
2235 linecharno = charno; | |
2236 charno += readline (&lb, fi); | |
2237 dbp = lb.buffer; | |
2238 | |
2239 for (i = 0; ((c = dbp[i]) && !isspace (c)) && (c != ':'); i++) | |
2240 ; | |
2241 | |
2242 if ((i > 0) && (c == ':')) | |
2243 getit (); | |
2244 } | |
2245 } | |
2246 | |
2247 /* Added by Mosur Mohan, 4/22/88 */ | |
2248 /* Pascal parsing */ | |
2249 | |
2250 #define GET_NEW_LINE \ | |
2251 { \ | |
2252 linecharno = charno; lineno++; \ | |
2253 charno += 1 + readline (&lb, inf); \ | |
2254 dbp = lb.buffer; \ | |
2255 } | |
2256 | |
2257 /* Locates tags for procedures & functions. | |
2258 * Doesn't do any type- or var-definitions. | |
2259 * It does look for the keyword "extern" or "forward" | |
2260 * immediately following the procedure statement; | |
2261 * if found, the tag is skipped. | |
2262 */ | |
2263 | |
2264 void | |
2265 PAS_funcs (fi) | |
2266 FILE *fi; | |
2267 { | |
2268 struct linebuffer tline; /* mostly copied from C_entries */ | |
2269 long save_lcno; | |
2270 int save_lineno; | |
2271 char c, *cp; | |
2272 char nambuf[BUFSIZ]; | |
2273 | |
2274 logical /* each of these flags is TRUE iff: */ | |
2275 incomm1, /* point is inside {..} comment */ | |
2276 incomm2, /* point is inside (*..*) comment */ | |
2277 inquote, /* point is inside '..' string */ | |
2278 get_tagname, /* point is after PROCEDURE/FUNCTION */ | |
2279 /* keyword, so next item = potential tag */ | |
2280 found_tag, /* point is after a potential tag */ | |
2281 inparms, /* point is within parameter-list */ | |
2282 verify_tag; /* point has passed the parm-list, so the */ | |
2283 /* next token will determine whether */ | |
2284 /* this is a FORWARD/EXTERN to be */ | |
2285 /* ignored, or whether it is a real tag */ | |
2286 | |
2287 lineno = 0; | |
2288 charno = 0; | |
2289 dbp = lb.buffer; | |
2290 *dbp = 0; | |
2291 initbuffer (&tline); | |
2292 | |
2293 incomm1 = incomm2 = inquote = FALSE; | |
2294 found_tag = FALSE; /* have a proc name; check if extern */ | |
2295 get_tagname = FALSE; /* have found "procedure" keyword */ | |
2296 inparms = FALSE; /* found '(' after "proc" */ | |
2297 verify_tag = FALSE; /* check if "extern" is ahead */ | |
2298 | |
2299 /* long main loop to get next char */ | |
2300 while (!feof (fi)) | |
2301 { | |
2302 c = *dbp++; | |
2303 if (c == 0) /* if end of line */ | |
2304 { | |
2305 GET_NEW_LINE; | |
2306 if (*dbp == 0) | |
2307 continue; | |
2308 if (!((found_tag && verify_tag) || | |
2309 get_tagname)) | |
2310 c = *dbp++; /* only if don't need *dbp pointing */ | |
2311 /* to the beginning of the name of */ | |
2312 /* the procedure or function */ | |
2313 } | |
2314 if (incomm1) /* within { - } comments */ | |
2315 { | |
2316 if (c == '}') | |
2317 incomm1 = FALSE; | |
2318 continue; | |
2319 } | |
2320 else if (incomm2) /* within (* - *) comments */ | |
2321 { | |
2322 if (c == '*') | |
2323 { | |
2324 while ((c = *dbp++) == '*') | |
2325 continue; | |
2326 if (c == 0) | |
2327 GET_NEW_LINE; | |
2328 if (c == ')') | |
2329 incomm2 = FALSE; | |
2330 } | |
2331 continue; | |
2332 } | |
2333 else if (inquote) | |
2334 { | |
2335 if (c == '\'') | |
2336 inquote = FALSE; | |
2337 continue; | |
2338 } | |
2339 else | |
2340 switch (c) | |
2341 { | |
2342 case '\'': | |
2343 inquote = TRUE; /* found first quote */ | |
2344 continue; | |
2345 case '{': /* found open-{-comment */ | |
2346 incomm1 = TRUE; | |
2347 continue; | |
2348 case '(': | |
2349 if (*dbp == '*') /* found open-(*-comment */ | |
2350 { | |
2351 incomm2 = TRUE; | |
2352 dbp++; | |
2353 } | |
2354 else if (found_tag) /* found '(' after tag, i.e., parm-list */ | |
2355 inparms = TRUE; | |
2356 continue; | |
2357 case ')': /* end of parms list */ | |
2358 if (inparms) | |
2359 inparms = FALSE; | |
2360 continue; | |
2361 case ';': | |
2362 if ((found_tag) && (!inparms)) /* end of proc or fn stmt */ | |
2363 { | |
2364 verify_tag = TRUE; | |
2365 break; | |
2366 } | |
2367 continue; | |
2368 } | |
2369 if ((found_tag) && (verify_tag) && (*dbp != ' ')) | |
2370 { | |
2371 /* check if this is an "extern" declaration */ | |
2372 if (*dbp == 0) | |
2373 continue; | |
2374 if ((*dbp == 'e') || (*dbp == 'E')) | |
2375 { | |
2376 if (tail ("extern")) /* superfluous, really! */ | |
2377 { | |
2378 found_tag = FALSE; | |
2379 verify_tag = FALSE; | |
2380 } | |
2381 } | |
2382 else if ((*dbp == 'f') || (*dbp == 'F')) | |
2383 { | |
2384 if (tail ("forward")) /* check for forward reference */ | |
2385 { | |
2386 found_tag = FALSE; | |
2387 verify_tag = FALSE; | |
2388 } | |
2389 } | |
2390 if ((found_tag) && (verify_tag)) /* not external proc, so make tag */ | |
2391 { | |
2392 found_tag = FALSE; | |
2393 verify_tag = FALSE; | |
2394 pfnote (nambuf, TRUE, FALSE, | |
2395 tline.buffer, cp - tline.buffer + 1, | |
2396 save_lineno, save_lcno); | |
2397 continue; | |
2398 } | |
2399 } | |
2400 if (get_tagname) /* grab name of proc or fn */ | |
2401 { | |
2402 if (*dbp == 0) | |
2403 continue; | |
2404 | |
2405 /* save all values for later tagging */ | |
2406 tline.size = lb.size; | |
2407 strcpy (tline.buffer, lb.buffer); | |
2408 save_lineno = lineno; | |
2409 save_lcno = linecharno; | |
2410 | |
2411 /* grab block name */ | |
2412 for (cp = dbp + 1; *cp && (!endtoken (*cp)); cp++) | |
2413 continue; | |
2414 c = cp[0]; | |
2415 cp[0] = 0; | |
2416 strcpy (nambuf, dbp); | |
2417 cp[0] = c; | |
2418 dbp = cp; /* restore dbp to e-o-token */ | |
2419 get_tagname = FALSE; | |
2420 found_tag = TRUE; | |
2421 continue; | |
2422 | |
2423 /* and proceed to check for "extern" */ | |
2424 } | |
2425 if ((!incomm1) && (!incomm2) && (!inquote) && | |
2426 (!found_tag) && (!get_tagname)) | |
2427 { | |
2428 /* check for proc/fn keywords */ | |
2429 switch (c | ' ') | |
2430 { | |
2431 case 'p': | |
2432 if (tail ("rocedure")) /* c = 'p', dbp has advanced */ | |
2433 get_tagname = TRUE; | |
2434 continue; | |
2435 case 'f': | |
2436 if (tail ("unction")) | |
2437 get_tagname = TRUE; | |
2438 continue; | |
2439 } | |
2440 } | |
2441 } /* while not e-o-f */ | |
2442 } | |
2443 | |
2444 /* | |
2445 * lisp tag functions | |
2446 * just look for (def or (DEF | |
2447 */ | |
2448 | |
2449 void | |
2450 L_funcs (fi) | |
2451 FILE *fi; | |
2452 { | |
2453 lineno = 0; | |
2454 charno = 0; | |
2455 pfcnt = 0; | |
2456 | |
2457 while (!feof (fi)) | |
2458 { | |
2459 lineno++; | |
2460 linecharno = charno; | |
2461 charno += readline (&lb, fi); | |
2462 dbp = lb.buffer; | |
2463 if (dbp[0] == '(') | |
2464 { | |
2465 if (L_isdef (dbp)) | |
2466 { | |
2467 while (!isspace (*dbp)) | |
2468 dbp++; | |
2469 while (isspace (*dbp)) | |
2470 dbp++; | |
2471 L_getit (); | |
2472 } | |
2473 else | |
2474 { | |
2475 /* Check for (foo::defmumble name-defined ... */ | |
4663
5f0ff5c890a8
* etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents:
4406
diff
changeset
|
2476 do |
240 | 2477 dbp++; |
4663
5f0ff5c890a8
* etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents:
4406
diff
changeset
|
2478 while (*dbp && !isspace (*dbp) |
5f0ff5c890a8
* etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents:
4406
diff
changeset
|
2479 && *dbp != ':' && *dbp != '(' && *dbp != ')'); |
240 | 2480 if (*dbp == ':') |
2481 { | |
4663
5f0ff5c890a8
* etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents:
4406
diff
changeset
|
2482 do |
240 | 2483 dbp++; |
4663
5f0ff5c890a8
* etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents:
4406
diff
changeset
|
2484 while (*dbp == ':'); |
240 | 2485 |
4663
5f0ff5c890a8
* etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents:
4406
diff
changeset
|
2486 if (L_isdef (dbp - 1)) |
240 | 2487 { |
2488 while (!isspace (*dbp)) | |
2489 dbp++; | |
2490 while (isspace (*dbp)) | |
2491 dbp++; | |
2492 L_getit (); | |
2493 } | |
2494 } | |
2495 } | |
2496 } | |
2497 } | |
2498 } | |
2499 | |
2500 int | |
2501 L_isdef (dbp) | |
4663
5f0ff5c890a8
* etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents:
4406
diff
changeset
|
2502 register char *dbp; |
240 | 2503 { |
4663
5f0ff5c890a8
* etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents:
4406
diff
changeset
|
2504 return ((dbp[1] == 'd' || dbp[1] == 'D') |
5f0ff5c890a8
* etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents:
4406
diff
changeset
|
2505 && (dbp[2] == 'e' || dbp[2] == 'E') |
5f0ff5c890a8
* etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents:
4406
diff
changeset
|
2506 && (dbp[3] == 'f' || dbp[3] == 'F')); |
5f0ff5c890a8
* etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents:
4406
diff
changeset
|
2507 } |
5f0ff5c890a8
* etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents:
4406
diff
changeset
|
2508 |
5f0ff5c890a8
* etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents:
4406
diff
changeset
|
2509 int |
5f0ff5c890a8
* etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents:
4406
diff
changeset
|
2510 L_isquote (dbp) |
5f0ff5c890a8
* etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents:
4406
diff
changeset
|
2511 register char *dbp; |
5f0ff5c890a8
* etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents:
4406
diff
changeset
|
2512 { |
5f0ff5c890a8
* etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents:
4406
diff
changeset
|
2513 return ((*(++dbp) == 'q' || *dbp == 'Q') |
5f0ff5c890a8
* etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents:
4406
diff
changeset
|
2514 && (*(++dbp) == 'u' || *dbp == 'U') |
5f0ff5c890a8
* etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents:
4406
diff
changeset
|
2515 && (*(++dbp) == 'o' || *dbp == 'O') |
5f0ff5c890a8
* etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents:
4406
diff
changeset
|
2516 && (*(++dbp) == 't' || *dbp == 'T') |
5f0ff5c890a8
* etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents:
4406
diff
changeset
|
2517 && (*(++dbp) == 'e' || *dbp == 'E') |
5f0ff5c890a8
* etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents:
4406
diff
changeset
|
2518 && isspace(*(++dbp))); |
240 | 2519 } |
2520 | |
2521 void | |
2522 L_getit () | |
2523 { | |
2524 register char *cp; | |
2525 char c; | |
2526 char nambuf[BUFSIZ]; | |
2527 | |
4663
5f0ff5c890a8
* etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents:
4406
diff
changeset
|
2528 if (*dbp == '\'') /* Skip prefix quote */ |
5f0ff5c890a8
* etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents:
4406
diff
changeset
|
2529 dbp++; |
5f0ff5c890a8
* etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents:
4406
diff
changeset
|
2530 else if (*dbp == '(' && L_isquote (dbp)) /* Skip "(quote " */ |
5f0ff5c890a8
* etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents:
4406
diff
changeset
|
2531 { |
5f0ff5c890a8
* etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents:
4406
diff
changeset
|
2532 dbp += 7; |
5f0ff5c890a8
* etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents:
4406
diff
changeset
|
2533 while (isspace(*dbp)) |
5f0ff5c890a8
* etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents:
4406
diff
changeset
|
2534 dbp++; |
5f0ff5c890a8
* etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents:
4406
diff
changeset
|
2535 } |
5f0ff5c890a8
* etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents:
4406
diff
changeset
|
2536 for (cp = dbp /*+1*/; *cp && *cp != '(' && *cp != ' ' && *cp != ')'; cp++) |
5f0ff5c890a8
* etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents:
4406
diff
changeset
|
2537 continue; |
5f0ff5c890a8
* etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents:
4406
diff
changeset
|
2538 if (cp == dbp) |
240 | 2539 return; |
4663
5f0ff5c890a8
* etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents:
4406
diff
changeset
|
2540 |
240 | 2541 c = cp[0]; |
2542 cp[0] = 0; | |
2543 (void) strcpy (nambuf, dbp); | |
2544 cp[0] = c; | |
4051
73aa16fc728d
(consider_token): was `==', now is `='.
Richard M. Stallman <rms@gnu.org>
parents:
3921
diff
changeset
|
2545 pfnote (nambuf, TRUE, FALSE, lb.buffer, |
73aa16fc728d
(consider_token): was `==', now is `='.
Richard M. Stallman <rms@gnu.org>
parents:
3921
diff
changeset
|
2546 cp - lb.buffer + 1, lineno, linecharno); |
240 | 2547 pfcnt++; |
2548 } | |
2549 | |
2550 /* | |
2551 * Scheme tag functions | |
2552 * look for (def... xyzzy | |
2553 * look for (def... (xyzzy | |
2554 * look for (def ... ((...(xyzzy .... | |
2555 * look for (set! xyzzy | |
2556 */ | |
2557 | |
2558 static void get_scheme (); | |
2559 | |
2560 void | |
2561 Scheme_funcs (fi) | |
2562 FILE *fi; | |
2563 { | |
2564 lineno = 0; | |
2565 charno = 0; | |
2566 pfcnt = 0; | |
2567 | |
2568 while (!feof (fi)) | |
2569 { | |
2570 lineno++; | |
2571 linecharno = charno; | |
2572 charno += readline (&lb, fi); | |
2573 dbp = lb.buffer; | |
2574 if (dbp[0] == '(' && | |
2575 (dbp[1] == 'D' || dbp[1] == 'd') && | |
2576 (dbp[2] == 'E' || dbp[2] == 'e') && | |
2577 (dbp[3] == 'F' || dbp[3] == 'f')) | |
2578 { | |
2579 while (!isspace (*dbp)) | |
2580 dbp++; | |
2581 /* Skip over open parens and white space */ | |
2582 while (*dbp && (isspace (*dbp) || *dbp == '(')) | |
2583 dbp++; | |
2584 get_scheme (); | |
2585 } | |
2586 if (dbp[0] == '(' && | |
2587 (dbp[1] == 'S' || dbp[1] == 's') && | |
2588 (dbp[2] == 'E' || dbp[2] == 'e') && | |
2589 (dbp[3] == 'T' || dbp[3] == 't') && | |
2590 (dbp[4] == '!' || dbp[4] == '!') && | |
2591 (isspace (dbp[5]))) | |
2592 { | |
2593 while (!isspace (*dbp)) | |
2594 dbp++; | |
2595 /* Skip over white space */ | |
2596 while (isspace (*dbp)) | |
2597 dbp++; | |
2598 get_scheme (); | |
2599 } | |
2600 } | |
2601 } | |
2602 | |
2603 static void | |
2604 get_scheme () | |
2605 { | |
2606 register char *cp; | |
2607 char c; | |
2608 char nambuf[BUFSIZ]; | |
2609 | |
2610 if (*dbp == 0) | |
2611 return; | |
2612 /* Go till you get to white space or a syntactic break */ | |
2613 for (cp = dbp + 1; *cp && *cp != '(' && *cp != ')' && !isspace (*cp); cp++) | |
2614 continue; | |
2615 /* Null terminate the string there. */ | |
2616 c = cp[0]; | |
2617 cp[0] = 0; | |
2618 /* Copy the string */ | |
2619 strcpy (nambuf, dbp); | |
2620 /* Unterminate the string */ | |
2621 cp[0] = c; | |
2622 /* Announce the change */ | |
2623 pfnote (nambuf, TRUE, FALSE, lb.buffer, cp - lb.buffer + 1, lineno, linecharno); | |
2624 pfcnt++; | |
2625 } | |
2626 | |
2627 /* Find tags in TeX and LaTeX input files. */ | |
2628 | |
2629 /* TEX_toktab is a table of TeX control sequences that define tags. | |
2630 Each TEX_tabent records one such control sequence. | |
2631 CONVERT THIS TO USE THE Stab TYPE!! */ | |
2632 | |
2633 struct TEX_tabent | |
2634 { | |
2635 char *name; | |
2636 int len; | |
2637 }; | |
2638 | |
2639 struct TEX_tabent *TEX_toktab = NULL; /* Table with tag tokens */ | |
2640 | |
2641 /* Default set of control sequences to put into TEX_toktab. | |
2642 The value of environment var TEXTAGS is prepended to this. */ | |
2643 | |
2644 static char *TEX_defenv = | |
2645 ":chapter:section:subsection:subsubsection:eqno:label:ref:cite:bibitem:typeout"; | |
2646 | |
2647 void TEX_mode (); | |
2648 struct TEX_tabent *TEX_decode_env (); | |
2649 void TEX_getit (); | |
2650 int TEX_Token (); | |
2651 | |
2652 static char TEX_esc = '\\'; | |
2653 static char TEX_opgrp = '{'; | |
2654 static char TEX_clgrp = '}'; | |
2655 | |
2656 /* | |
2657 * TeX/LaTeX scanning loop. | |
2658 */ | |
2659 | |
2660 void | |
2661 TEX_funcs (fi) | |
2662 FILE *fi; | |
2663 { | |
2664 char *lasthit; | |
2665 | |
2666 lineno = 0; | |
2667 charno = 0; | |
2668 pfcnt = 0; | |
2669 | |
2670 /* Select either \ or ! as escape character. */ | |
2671 TEX_mode (fi); | |
2672 | |
2673 /* Initialize token table once from environment. */ | |
2674 if (!TEX_toktab) | |
2675 TEX_toktab = TEX_decode_env ("TEXTAGS", TEX_defenv); | |
2676 | |
2677 while (!feof (fi)) | |
1040 | 2678 { /* Scan each line in file */ |
240 | 2679 lineno++; |
2680 linecharno = charno; | |
2681 charno += readline (&lb, fi); | |
2682 dbp = lb.buffer; | |
2683 lasthit = dbp; | |
1040 | 2684 while (dbp = etags_index (dbp, TEX_esc)) /* Look at each escape in line */ |
1026
cc96e2df9b71
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
774
diff
changeset
|
2685 { |
cc96e2df9b71
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
774
diff
changeset
|
2686 register int i; |
240 | 2687 |
1026
cc96e2df9b71
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
774
diff
changeset
|
2688 if (!*(++dbp)) |
cc96e2df9b71
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
774
diff
changeset
|
2689 break; |
cc96e2df9b71
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
774
diff
changeset
|
2690 linecharno += dbp - lasthit; |
240 | 2691 lasthit = dbp; |
1026
cc96e2df9b71
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
774
diff
changeset
|
2692 i = TEX_Token (lasthit); |
cc96e2df9b71
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
774
diff
changeset
|
2693 if (0 <= i) |
240 | 2694 { |
1026
cc96e2df9b71
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
774
diff
changeset
|
2695 TEX_getit (lasthit, TEX_toktab[i].len); |
1040 | 2696 break; /* We only save a line once */ |
240 | 2697 } |
2698 } | |
2699 } | |
2700 } | |
2701 | |
2702 #define TEX_LESC '\\' | |
2703 #define TEX_SESC '!' | |
2704 #define TEX_cmt '%' | |
2705 | |
2706 /* Figure out whether TeX's escapechar is '\\' or '!' and set grouping */ | |
2707 /* chars accordingly. */ | |
2708 | |
2709 void | |
2710 TEX_mode (f) | |
2711 FILE *f; | |
2712 { | |
2713 int c; | |
2714 | |
2715 while ((c = getc (f)) != EOF) | |
2716 { | |
2717 /* Skip to next line if we hit the TeX comment char. */ | |
2718 if (c == TEX_cmt) | |
2719 while (c != '\n') | |
2720 c = getc (f); | |
2721 else if (c == TEX_LESC || c == TEX_SESC ) | |
2722 break; | |
2723 } | |
2724 | |
2725 if (c == TEX_LESC) | |
2726 { | |
2727 TEX_esc = TEX_LESC; | |
2728 TEX_opgrp = '{'; | |
2729 TEX_clgrp = '}'; | |
2730 } | |
2731 else | |
2732 { | |
2733 TEX_esc = TEX_SESC; | |
2734 TEX_opgrp = '<'; | |
2735 TEX_clgrp = '>'; | |
2736 } | |
2737 rewind (f); | |
2738 } | |
2739 | |
2740 /* Read environment and prepend it to the default string. */ | |
2741 /* Build token table. */ | |
2742 | |
2743 struct TEX_tabent * | |
2744 TEX_decode_env (evarname, defenv) | |
2745 char *evarname; | |
2746 char *defenv; | |
2747 { | |
2748 register char *env, *p; | |
2749 | |
2750 struct TEX_tabent *tab; | |
2751 int size, i; | |
2752 | |
2753 /* Append default string to environment. */ | |
2754 env = getenv (evarname); | |
2755 if (!env) | |
2756 env = defenv; | |
2757 else | |
2758 env = concat (env, defenv, ""); | |
2759 | |
2760 /* Allocate a token table */ | |
2761 for (size = 1, p = env; p;) | |
1026
cc96e2df9b71
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
774
diff
changeset
|
2762 if ((p = etags_index (p, ':')) && *(++p)) |
240 | 2763 size++; |
1026
cc96e2df9b71
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
774
diff
changeset
|
2764 /* Add 1 to leave room for null terminator. */ |
cc96e2df9b71
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
774
diff
changeset
|
2765 tab = xnew (size + 1, struct TEX_tabent); |
240 | 2766 |
2767 /* Unpack environment string into token table. Be careful about */ | |
2768 /* zero-length strings (leading ':', "::" and trailing ':') */ | |
2769 for (i = 0; *env;) | |
2770 { | |
1026
cc96e2df9b71
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
774
diff
changeset
|
2771 p = etags_index (env, ':'); |
240 | 2772 if (!p) /* End of environment string. */ |
2773 p = env + strlen (env); | |
2774 if (p - env > 0) | |
2775 { /* Only non-zero strings. */ | |
2776 tab[i].name = savenstr (env, p - env); | |
2777 tab[i].len = strlen (tab[i].name); | |
2778 i++; | |
2779 } | |
2780 if (*p) | |
2781 env = p + 1; | |
2782 else | |
2783 { | |
2784 tab[i].name = NULL; /* Mark end of table. */ | |
2785 tab[i].len = 0; | |
2786 break; | |
2787 } | |
2788 } | |
2789 return tab; | |
2790 } | |
2791 | |
2792 /* Record a tag defined by a TeX command of length LEN and starting at NAME. | |
2793 The name being defined actually starts at (NAME + LEN + 1). | |
2794 But we seem to include the TeX command in the tag name. */ | |
2795 | |
2796 void | |
2797 TEX_getit (name, len) | |
2798 char *name; | |
2799 int len; | |
2800 { | |
2801 char *p = name + len; | |
2802 char nambuf[BUFSIZ]; | |
2803 | |
2804 if (*name == 0) | |
2805 return; | |
2806 | |
2807 /* Let tag name extend to next group close (or end of line) */ | |
2808 while (*p && *p != TEX_clgrp) | |
2809 p++; | |
2810 (void) strncpy (nambuf, name, p - name); | |
2811 nambuf[p - name] = 0; | |
2812 | |
2813 pfnote (nambuf, TRUE, FALSE, lb.buffer, strlen (lb.buffer), lineno, linecharno); | |
2814 pfcnt++; | |
2815 } | |
2816 | |
2817 /* If the text at CP matches one of the tag-defining TeX command names, | |
1026
cc96e2df9b71
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
774
diff
changeset
|
2818 return the etags_index of that command in TEX_toktab. |
240 | 2819 Otherwise return -1. */ |
2820 | |
2821 /* Keep the capital `T' in `Token' for dumb truncating compilers | |
2822 (this distinguishes it from `TEX_toktab' */ | |
2823 int | |
2824 TEX_Token (cp) | |
2825 char *cp; | |
2826 { | |
2827 int i; | |
2828 | |
2829 for (i = 0; TEX_toktab[i].len > 0; i++) | |
2830 if (strncmp (TEX_toktab[i].name, cp, TEX_toktab[i].len) == 0) | |
2831 return i; | |
2832 return -1; | |
2833 } | |
2834 | |
2835 /* Support for Prolog. */ | |
2836 | |
2837 /* whole head (not only functor, but also arguments) | |
2838 is gotten in compound term. */ | |
2839 | |
2840 void | |
2841 prolog_getit (s, lineno, linecharno) | |
2842 char *s; | |
2843 int lineno; | |
2844 long linecharno; | |
2845 { | |
2846 char nambuf[BUFSIZ], *save_s, tmpc; | |
2847 int insquote, npar; | |
2848 | |
2849 save_s = s; | |
2850 insquote = FALSE; | |
2851 npar = 0; | |
2852 while (1) | |
2853 { | |
2854 if (*s == '\0') /* syntax error. */ | |
2855 return; | |
2856 else if (insquote && *s == '\'' && *(s + 1) == '\'') | |
2857 s += 2; | |
2858 else if (*s == '\'') | |
2859 { | |
2860 insquote = !insquote; | |
2861 s++; | |
2862 } | |
2863 else if (!insquote && *s == '(') | |
2864 { | |
2865 npar++; | |
2866 s++; | |
2867 } | |
2868 else if (!insquote && *s == ')') | |
2869 { | |
2870 npar--; | |
2871 s++; | |
2872 if (npar == 0) | |
2873 break; | |
2874 else if (npar < 0) /* syntax error. */ | |
2875 return; | |
2876 } | |
2877 else if (!insquote && *s == '.' && (isspace (*(s + 1)) || *(s + 1) == '\0')) | |
2878 { /* fullstop. */ | |
2879 if (npar != 0) /* syntax error. */ | |
2880 return; | |
2881 s++; | |
2882 break; | |
2883 } | |
2884 else | |
2885 s++; | |
2886 } | |
2887 tmpc = *s; | |
2888 *s = '\0'; | |
2889 strcpy (nambuf, save_s); | |
2890 *s = tmpc; | |
4905
710950ca1b49
Tue Nov 2 19:46:52 1993 Francesco Potorti` (pot@cnuce.cnr.it)
Francesco Potortì <pot@gnu.org>
parents:
4904
diff
changeset
|
2891 pfnote (nambuf, TRUE, FALSE, save_s, strlen (nambuf), lineno, linecharno); |
240 | 2892 } |
2893 | |
2894 /* It is assumed that prolog predicate starts from column 0. */ | |
2895 | |
2896 void | |
2897 prolog_funcs (fi) | |
2898 FILE *fi; | |
2899 { | |
2900 void skip_comment (), prolog_getit (); | |
2901 | |
2902 lineno = linecharno = charno = 0; | |
2903 while (!feof (fi)) | |
2904 { | |
2905 lineno++; | |
2906 linecharno += charno; | |
2907 charno = readline (&lb, fi) + 1; /* 1 for newline. */ | |
2908 dbp = lb.buffer; | |
2909 if (isspace (dbp[0])) /* not predicate header. */ | |
2910 continue; | |
2911 else if (dbp[0] == '%') /* comment. */ | |
2912 continue; | |
2913 else if (dbp[0] == '/' && dbp[1] == '*') /* comment. */ | |
2914 skip_comment (&lb, fi, &lineno, &linecharno); | |
2915 else /* found. */ | |
2916 prolog_getit (dbp, lineno, linecharno); | |
2917 } | |
2918 } | |
2919 | |
2920 void | |
2921 skip_comment (plb, fi, plineno, plinecharno) | |
2922 struct linebuffer *plb; | |
2923 FILE *fi; | |
2924 int *plineno; /* result */ | |
2925 long *plinecharno; /* result */ | |
2926 { | |
2927 while (!substr ("*/", plb->buffer)) | |
2928 { | |
2929 (*plineno)++; | |
2930 *plinecharno += readline (plb, fi) + 1; | |
2931 } /* 1 for newline. */ | |
2932 } | |
2933 | |
2934 /* Return TRUE if 'sub' exists somewhere in 's'. */ | |
2935 | |
2936 int | |
2937 substr (sub, s) | |
2938 char *sub; | |
2939 char *s; | |
2940 { | |
1026
cc96e2df9b71
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
774
diff
changeset
|
2941 while (*s && (s = etags_index (s, *sub))) |
240 | 2942 if (prestr (sub, s)) |
2943 return (TRUE); | |
2944 else | |
2945 s++; | |
2946 return (FALSE); | |
2947 } | |
2948 | |
2949 /* Return TRUE if 'pre' is prefix of string 's'. */ | |
2950 | |
2951 int | |
2952 prestr (pre, s) | |
2953 char *pre; | |
2954 char *s; | |
2955 { | |
2956 if (*pre == '\0') | |
2957 return (TRUE); | |
2958 else if (*pre == *s) | |
2959 return (prestr (pre + 1, s + 1)); | |
2960 else | |
2961 return (FALSE); | |
2962 } | |
2963 | |
2964 /* Initialize a linebuffer for use */ | |
2965 | |
2966 void | |
2967 initbuffer (linebuffer) | |
2968 struct linebuffer *linebuffer; | |
2969 { | |
2970 linebuffer->size = 200; | |
2971 linebuffer->buffer = xnew (200, char); | |
2972 } | |
2973 | |
2974 /* | |
2975 * Read a line of text from `stream' into `linebuffer'. | |
2976 * Return the number of characters read from `stream', | |
2977 * which is the length of the line including the newline, if any. | |
2978 */ | |
2979 long | |
2980 readline (linebuffer, stream) | |
2981 struct linebuffer *linebuffer; | |
2982 register FILE *stream; | |
2983 { | |
2984 char *buffer = linebuffer->buffer; | |
2985 register char *p = linebuffer->buffer; | |
2986 register char *pend; | |
2987 int newline; /* 1 if ended with newline, 0 if ended with EOF */ | |
2988 | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3569
diff
changeset
|
2989 pend = p + linebuffer->size; /* Separate to avoid 386/IX compiler bug. */ |
240 | 2990 |
2991 while (1) | |
2992 { | |
2993 register int c = getc (stream); | |
2994 if (p == pend) | |
2995 { | |
2996 linebuffer->size *= 2; | |
2997 buffer = (char *) xrealloc (buffer, linebuffer->size); | |
2998 p += buffer - linebuffer->buffer; | |
2999 pend = buffer + linebuffer->size; | |
3000 linebuffer->buffer = buffer; | |
3001 } | |
3002 if (c < 0 || c == '\n') | |
3003 { | |
3004 *p = 0; | |
3005 newline = (c == '\n' ? 1 : 0); | |
3006 break; | |
3007 } | |
3008 *p++ = c; | |
3009 } | |
3010 | |
3011 return p - buffer + newline; | |
3012 } | |
3013 | |
3014 char * | |
3015 savestr (cp) | |
3016 char *cp; | |
3017 { | |
3018 return savenstr (cp, strlen (cp)); | |
3019 } | |
3020 | |
3021 char * | |
3022 savenstr (cp, len) | |
3023 char *cp; | |
3024 int len; | |
3025 { | |
3026 register char *dp; | |
3027 | |
3028 dp = xnew (len + 1, char); | |
3029 (void) strncpy (dp, cp, len); | |
3030 dp[len] = '\0'; | |
3031 return dp; | |
3032 } | |
3033 | |
3034 /* | |
3035 * Return the ptr in sp at which the character c last | |
3036 * appears; NULL if not found | |
3037 * | |
3038 * Identical to v7 rindex, included for portability. | |
3039 */ | |
3040 | |
3041 char * | |
1026
cc96e2df9b71
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
774
diff
changeset
|
3042 etags_rindex (sp, c) |
240 | 3043 register char *sp, c; |
3044 { | |
3045 register char *r; | |
3046 | |
3047 r = NULL; | |
3048 do | |
3049 { | |
3050 if (*sp == c) | |
3051 r = sp; | |
3052 } while (*sp++); | |
3053 return (r); | |
3054 } | |
3055 | |
774 | 3056 |
240 | 3057 /* |
3058 * Return the ptr in sp at which the character c first | |
3059 * appears; NULL if not found | |
3060 * | |
3061 * Identical to v7 index, included for portability. | |
3062 */ | |
3063 | |
3064 char * | |
1026
cc96e2df9b71
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
774
diff
changeset
|
3065 etags_index (sp, c) |
240 | 3066 register char *sp, c; |
3067 { | |
3068 do | |
3069 { | |
3070 if (*sp == c) | |
3071 return (sp); | |
3072 } while (*sp++); | |
3073 return (NULL); | |
3074 } | |
3075 | |
3076 /* Print error message and exit. */ | |
3077 | |
3078 /* VARARGS1 */ | |
3079 void | |
3080 fatal (s1, s2) | |
3081 char *s1, *s2; | |
3082 { | |
3083 error (s1, s2); | |
3084 exit (1); | |
3085 } | |
3086 | |
3087 /* Print error message. `s1' is printf control string, `s2' is arg for it. */ | |
3088 | |
3089 /* VARARGS1 */ | |
3090 void | |
3091 error (s1, s2) | |
3092 char *s1, *s2; | |
3093 { | |
3094 fprintf (stderr, "%s: ", progname); | |
3095 fprintf (stderr, s1, s2); | |
3096 fprintf (stderr, "\n"); | |
3097 } | |
3098 | |
3099 /* Return a newly-allocated string whose contents concatenate those of s1, s2, s3. */ | |
3100 | |
3101 char * | |
3102 concat (s1, s2, s3) | |
3103 char *s1, *s2, *s3; | |
3104 { | |
3105 int len1 = strlen (s1), len2 = strlen (s2), len3 = strlen (s3); | |
3106 char *result = xnew (len1 + len2 + len3 + 1, char); | |
3107 | |
3108 (void) strcpy (result, s1); | |
3109 (void) strcpy (result + len1, s2); | |
3110 (void) strcpy (result + len1 + len2, s3); | |
3111 *(result + len1 + len2 + len3) = 0; | |
3112 | |
3113 return result; | |
3114 } | |
3115 | |
3116 /* Like malloc but get fatal error if memory is exhausted. */ | |
3117 | |
3118 char * | |
3119 xmalloc (size) | |
3120 int size; | |
3121 { | |
3122 char *result = malloc (size); | |
3123 if (!result) | |
3124 fatal ("virtual memory exhausted", 0); | |
3125 return result; | |
3126 } | |
3127 | |
3128 char * | |
3129 xrealloc (ptr, size) | |
3130 char *ptr; | |
3131 int size; | |
3132 { | |
3133 char *result = realloc (ptr, size); | |
3134 if (!result) | |
3135 fatal ("virtual memory exhausted"); | |
3136 return result; | |
3137 } |