read.c revision 1.1 1 1.1 cgd /*
2 1.1 cgd * Copyright (c) 1994, 1995 Jochen Pohl
3 1.1 cgd * All Rights Reserved.
4 1.1 cgd *
5 1.1 cgd * Redistribution and use in source and binary forms, with or without
6 1.1 cgd * modification, are permitted provided that the following conditions
7 1.1 cgd * are met:
8 1.1 cgd * 1. Redistributions of source code must retain the above copyright
9 1.1 cgd * notice, this list of conditions and the following disclaimer.
10 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
11 1.1 cgd * notice, this list of conditions and the following disclaimer in the
12 1.1 cgd * documentation and/or other materials provided with the distribution.
13 1.1 cgd * 3. All advertising materials mentioning features or use of this software
14 1.1 cgd * must display the following acknowledgement:
15 1.1 cgd * This product includes software developed by Jochen Pohl for
16 1.1 cgd * The NetBSD Project.
17 1.1 cgd * 4. The name of the author may not be used to endorse or promote products
18 1.1 cgd * derived from this software without specific prior written permission.
19 1.1 cgd *
20 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
21 1.1 cgd * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
22 1.1 cgd * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
23 1.1 cgd * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
24 1.1 cgd * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
25 1.1 cgd * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26 1.1 cgd * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27 1.1 cgd * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 1.1 cgd * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
29 1.1 cgd * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 1.1 cgd *
31 1.1 cgd * $Id: read.c,v 1.1 1995/07/03 20:56:38 cgd Exp $
32 1.1 cgd */
33 1.1 cgd
34 1.1 cgd #ifndef lint
35 1.1 cgd static char rcsid[] = "$Id: read.c,v 1.1 1995/07/03 20:56:38 cgd Exp $";
36 1.1 cgd #endif
37 1.1 cgd
38 1.1 cgd #include <stdio.h>
39 1.1 cgd #include <stdlib.h>
40 1.1 cgd #include <string.h>
41 1.1 cgd #include <ctype.h>
42 1.1 cgd #include <limits.h>
43 1.1 cgd #include <err.h>
44 1.1 cgd
45 1.1 cgd #include "lint2.h"
46 1.1 cgd
47 1.1 cgd
48 1.1 cgd /* index of current (included) source file */
49 1.1 cgd static int srcfile;
50 1.1 cgd
51 1.1 cgd /*
52 1.1 cgd * The array pointed to by inpfns maps the file name indices of input files
53 1.1 cgd * to the file name indices used in lint2
54 1.1 cgd */
55 1.1 cgd static short *inpfns;
56 1.1 cgd static size_t ninpfns;
57 1.1 cgd
58 1.1 cgd /*
59 1.1 cgd * The array pointed to by *fnames maps file name indizes to file names.
60 1.1 cgd * Indices of type short are used instead of pointers to save memory.
61 1.1 cgd */
62 1.1 cgd const char **fnames;
63 1.1 cgd static size_t nfnames;
64 1.1 cgd
65 1.1 cgd /*
66 1.1 cgd * Types are shared (to save memory for the types itself) and accessed
67 1.1 cgd * via indices (to save memory for references to types (indices are short)).
68 1.1 cgd * To share types, a equal type must be located fast. This is done by a
69 1.1 cgd * hash table. Access by indices is done via an array of pointers to the
70 1.1 cgd * types.
71 1.1 cgd */
72 1.1 cgd typedef struct thtab {
73 1.1 cgd const char *th_name;
74 1.1 cgd u_short th_idx;
75 1.1 cgd struct thtab *th_nxt;
76 1.1 cgd } thtab_t;
77 1.1 cgd static thtab_t **thtab; /* hash table */
78 1.1 cgd type_t **tlst; /* array for indexed access */
79 1.1 cgd static size_t tlstlen; /* length of tlst */
80 1.1 cgd
81 1.1 cgd /* index of current C source file (as spezified at the command line) */
82 1.1 cgd static int csrcfile;
83 1.1 cgd
84 1.1 cgd
85 1.1 cgd static void inperr __P((void));
86 1.1 cgd static void setsrc __P((const char *));
87 1.1 cgd static void setfnid __P((int, const char *));
88 1.1 cgd static void funccall __P((pos_t *, const char *));
89 1.1 cgd static void decldef __P((pos_t *, const char *));
90 1.1 cgd static void usedsym __P((pos_t *, const char *));
91 1.1 cgd static u_short inptype __P((const char *, const char **));
92 1.1 cgd static int gettlen __P((const char *, const char **));
93 1.1 cgd static u_short findtype __P((const char *, size_t, int));
94 1.1 cgd static u_short storetyp __P((type_t *, const char *, size_t, int));
95 1.1 cgd static int thash __P((const char *, size_t));
96 1.1 cgd static char *inpqstrg __P((const char *, const char **));
97 1.1 cgd static const char *inpname __P((const char *, const char **));
98 1.1 cgd static int getfnidx __P((const char *));
99 1.1 cgd
100 1.1 cgd void
101 1.1 cgd readfile(name)
102 1.1 cgd const char *name;
103 1.1 cgd {
104 1.1 cgd FILE *inp;
105 1.1 cgd size_t len;
106 1.1 cgd const char *cp;
107 1.1 cgd char *line, *eptr, rt;
108 1.1 cgd int cline, isrc, iline;
109 1.1 cgd pos_t pos;
110 1.1 cgd
111 1.1 cgd if (inpfns == NULL)
112 1.1 cgd inpfns = xcalloc(ninpfns = 128, sizeof (short));
113 1.1 cgd if (fnames == NULL)
114 1.1 cgd fnames = xcalloc(nfnames = 256, sizeof (char *));
115 1.1 cgd if (tlstlen == 0)
116 1.1 cgd tlst = xcalloc(tlstlen = 256, sizeof (type_t *));
117 1.1 cgd if (thtab == NULL)
118 1.1 cgd thtab = xcalloc(THSHSIZ2, sizeof (thtab_t));
119 1.1 cgd
120 1.1 cgd srcfile = getfnidx(name);
121 1.1 cgd
122 1.1 cgd if ((inp = fopen(name, "r")) == NULL)
123 1.1 cgd err(1, "cannot open %s", name);
124 1.1 cgd
125 1.1 cgd while ((line = fgetln(inp, &len)) != NULL) {
126 1.1 cgd
127 1.1 cgd if (len == 0 || line[len - 1] != '\n')
128 1.1 cgd inperr();
129 1.1 cgd line[len - 1] = '\0';
130 1.1 cgd cp = line;
131 1.1 cgd
132 1.1 cgd /* line number in csrcfile */
133 1.1 cgd cline = (int)strtol(cp, &eptr, 10);
134 1.1 cgd if (cp == eptr) {
135 1.1 cgd cline = -1;
136 1.1 cgd } else {
137 1.1 cgd cp = eptr;
138 1.1 cgd }
139 1.1 cgd
140 1.1 cgd /* record type */
141 1.1 cgd if (*cp != '\0') {
142 1.1 cgd rt = *cp++;
143 1.1 cgd } else {
144 1.1 cgd inperr();
145 1.1 cgd }
146 1.1 cgd
147 1.1 cgd if (rt == 'S') {
148 1.1 cgd setsrc(cp);
149 1.1 cgd continue;
150 1.1 cgd } else if (rt == 's') {
151 1.1 cgd setfnid(cline, cp);
152 1.1 cgd continue;
153 1.1 cgd }
154 1.1 cgd
155 1.1 cgd /*
156 1.1 cgd * Index of (included) source file. If this index is
157 1.1 cgd * different from csrcfile, it refers to an included
158 1.1 cgd * file.
159 1.1 cgd */
160 1.1 cgd isrc = (int)strtol(cp, &eptr, 10);
161 1.1 cgd if (cp == eptr)
162 1.1 cgd inperr();
163 1.1 cgd cp = eptr;
164 1.1 cgd isrc = inpfns[isrc];
165 1.1 cgd
166 1.1 cgd /* line number in isrc */
167 1.1 cgd if (*cp++ != '.')
168 1.1 cgd inperr();
169 1.1 cgd iline = (int)strtol(cp, &eptr, 10);
170 1.1 cgd if (cp == eptr)
171 1.1 cgd inperr();
172 1.1 cgd cp = eptr;
173 1.1 cgd
174 1.1 cgd pos.p_src = (u_short)csrcfile;
175 1.1 cgd pos.p_line = (u_short)cline;
176 1.1 cgd pos.p_isrc = (u_short)isrc;
177 1.1 cgd pos.p_iline = (u_short)iline;
178 1.1 cgd
179 1.1 cgd /* process rest of this record */
180 1.1 cgd switch (rt) {
181 1.1 cgd case 'c':
182 1.1 cgd funccall(&pos, cp);
183 1.1 cgd break;
184 1.1 cgd case 'd':
185 1.1 cgd decldef(&pos, cp);
186 1.1 cgd break;
187 1.1 cgd case 'u':
188 1.1 cgd usedsym(&pos, cp);
189 1.1 cgd break;
190 1.1 cgd default:
191 1.1 cgd inperr();
192 1.1 cgd }
193 1.1 cgd
194 1.1 cgd }
195 1.1 cgd
196 1.1 cgd if (ferror(inp))
197 1.1 cgd err(1, "read error on %s", name);
198 1.1 cgd
199 1.1 cgd (void)fclose(inp);
200 1.1 cgd }
201 1.1 cgd
202 1.1 cgd
203 1.1 cgd static void
204 1.1 cgd inperr()
205 1.1 cgd {
206 1.1 cgd errx(1, "input file error: %s", fnames[srcfile]);
207 1.1 cgd }
208 1.1 cgd
209 1.1 cgd /*
210 1.1 cgd * Set the name of the C source file of the .ln file which is
211 1.1 cgd * currently read.
212 1.1 cgd */
213 1.1 cgd static void
214 1.1 cgd setsrc(cp)
215 1.1 cgd const char *cp;
216 1.1 cgd {
217 1.1 cgd csrcfile = getfnidx(cp);
218 1.1 cgd }
219 1.1 cgd
220 1.1 cgd /*
221 1.1 cgd * setfnid() gets as input an index as used in an input file and the
222 1.1 cgd * associated file name. If neccessary, it creates a new lint2 file
223 1.1 cgd * name index for this file name and creates the mapping of the index
224 1.1 cgd * as used in the input file to the index used in lint2.
225 1.1 cgd */
226 1.1 cgd static void
227 1.1 cgd setfnid(fid, cp)
228 1.1 cgd int fid;
229 1.1 cgd const char *cp;
230 1.1 cgd {
231 1.1 cgd if (fid == -1)
232 1.1 cgd inperr();
233 1.1 cgd
234 1.1 cgd if (fid >= ninpfns) {
235 1.1 cgd inpfns = xrealloc(inpfns, (ninpfns * 2) * sizeof (short));
236 1.1 cgd (void)memset(inpfns + ninpfns, 0, ninpfns * sizeof (short));
237 1.1 cgd ninpfns *= 2;
238 1.1 cgd }
239 1.1 cgd /*
240 1.1 cgd * Should always be true because indices written in the output
241 1.1 cgd * file by lint1 are always the previous index + 1.
242 1.1 cgd */
243 1.1 cgd if (fid >= ninpfns)
244 1.1 cgd errx(1, "internal error: setfnid()");
245 1.1 cgd inpfns[fid] = (u_short)getfnidx(cp);
246 1.1 cgd }
247 1.1 cgd
248 1.1 cgd /*
249 1.1 cgd * Process a function call record (c-record).
250 1.1 cgd */
251 1.1 cgd static void
252 1.1 cgd funccall(posp, cp)
253 1.1 cgd pos_t *posp;
254 1.1 cgd const char *cp;
255 1.1 cgd {
256 1.1 cgd arginf_t *ai, **lai;
257 1.1 cgd char c, *eptr;
258 1.1 cgd int rused, rdisc;
259 1.1 cgd hte_t *hte;
260 1.1 cgd fcall_t *fcall;
261 1.1 cgd
262 1.1 cgd fcall = xalloc(sizeof (fcall_t));
263 1.1 cgd STRUCT_ASSIGN(fcall->f_pos, *posp);
264 1.1 cgd
265 1.1 cgd /* read flags */
266 1.1 cgd rused = rdisc = 0;
267 1.1 cgd lai = &fcall->f_args;
268 1.1 cgd while ((c = *cp) == 'u' || c == 'i' || c == 'd' ||
269 1.1 cgd c == 'z' || c == 'p' || c == 'n' || c == 's') {
270 1.1 cgd cp++;
271 1.1 cgd switch (c) {
272 1.1 cgd case 'u':
273 1.1 cgd if (rused || rdisc)
274 1.1 cgd inperr();
275 1.1 cgd rused = 1;
276 1.1 cgd break;
277 1.1 cgd case 'i':
278 1.1 cgd if (rused || rdisc)
279 1.1 cgd inperr();
280 1.1 cgd break;
281 1.1 cgd case 'd':
282 1.1 cgd if (rused || rdisc)
283 1.1 cgd inperr();
284 1.1 cgd rdisc = 1;
285 1.1 cgd break;
286 1.1 cgd case 'z':
287 1.1 cgd case 'p':
288 1.1 cgd case 'n':
289 1.1 cgd case 's':
290 1.1 cgd ai = xalloc(sizeof (arginf_t));
291 1.1 cgd ai->a_num = (int)strtol(cp, &eptr, 10);
292 1.1 cgd if (cp == eptr)
293 1.1 cgd inperr();
294 1.1 cgd cp = eptr;
295 1.1 cgd if (c == 'z') {
296 1.1 cgd ai->a_pcon = ai->a_zero = 1;
297 1.1 cgd } else if (c == 'p') {
298 1.1 cgd ai->a_pcon = 1;
299 1.1 cgd } else if (c == 'n') {
300 1.1 cgd ai->a_ncon = 1;
301 1.1 cgd } else {
302 1.1 cgd ai->a_fmt = 1;
303 1.1 cgd ai->a_fstrg = inpqstrg(cp, &cp);
304 1.1 cgd }
305 1.1 cgd *lai = ai;
306 1.1 cgd lai = &ai->a_nxt;
307 1.1 cgd break;
308 1.1 cgd }
309 1.1 cgd }
310 1.1 cgd fcall->f_rused = rused;
311 1.1 cgd fcall->f_rdisc = rdisc;
312 1.1 cgd
313 1.1 cgd /* read name of function */
314 1.1 cgd hte = hsearch(inpname(cp, &cp), 1);
315 1.1 cgd hte->h_used = 1;
316 1.1 cgd
317 1.1 cgd fcall->f_type = inptype(cp, &cp);
318 1.1 cgd
319 1.1 cgd *hte->h_lcall = fcall;
320 1.1 cgd hte->h_lcall = &fcall->f_nxt;
321 1.1 cgd
322 1.1 cgd if (*cp != '\0')
323 1.1 cgd inperr();
324 1.1 cgd }
325 1.1 cgd
326 1.1 cgd /*
327 1.1 cgd * Process a declaration or definition (d-record).
328 1.1 cgd */
329 1.1 cgd static void
330 1.1 cgd decldef(posp, cp)
331 1.1 cgd pos_t *posp;
332 1.1 cgd const char *cp;
333 1.1 cgd {
334 1.1 cgd sym_t *symp, sym;
335 1.1 cgd char c, *ep;
336 1.1 cgd int used;
337 1.1 cgd hte_t *hte;
338 1.1 cgd
339 1.1 cgd (void)memset(&sym, 0, sizeof (sym));
340 1.1 cgd STRUCT_ASSIGN(sym.s_pos, *posp);
341 1.1 cgd sym.s_def = NODECL;
342 1.1 cgd
343 1.1 cgd used = 0;
344 1.1 cgd
345 1.1 cgd while ((c = *cp) == 't' || c == 'd' || c == 'e' || c == 'u' ||
346 1.1 cgd c == 'r' || c == 'o' || c == 's' || c == 'v' ||
347 1.1 cgd c == 'P' || c == 'S') {
348 1.1 cgd cp++;
349 1.1 cgd switch (c) {
350 1.1 cgd case 't':
351 1.1 cgd if (sym.s_def != NODECL)
352 1.1 cgd inperr();
353 1.1 cgd sym.s_def = TDEF;
354 1.1 cgd break;
355 1.1 cgd case 'd':
356 1.1 cgd if (sym.s_def != NODECL)
357 1.1 cgd inperr();
358 1.1 cgd sym.s_def = DEF;
359 1.1 cgd break;
360 1.1 cgd case 'e':
361 1.1 cgd if (sym.s_def != NODECL)
362 1.1 cgd inperr();
363 1.1 cgd sym.s_def = DECL;
364 1.1 cgd break;
365 1.1 cgd case 'u':
366 1.1 cgd if (used)
367 1.1 cgd inperr();
368 1.1 cgd used = 1;
369 1.1 cgd break;
370 1.1 cgd case 'r':
371 1.1 cgd if (sym.s_rval)
372 1.1 cgd inperr();
373 1.1 cgd sym.s_rval = 1;
374 1.1 cgd break;
375 1.1 cgd case 'o':
376 1.1 cgd if (sym.s_osdef)
377 1.1 cgd inperr();
378 1.1 cgd sym.s_osdef = 1;
379 1.1 cgd break;
380 1.1 cgd case 's':
381 1.1 cgd if (sym.s_static)
382 1.1 cgd inperr();
383 1.1 cgd sym.s_static = 1;
384 1.1 cgd break;
385 1.1 cgd case 'v':
386 1.1 cgd if (sym.s_va)
387 1.1 cgd inperr();
388 1.1 cgd sym.s_va = 1;
389 1.1 cgd sym.s_nva = (short)strtol(cp, &ep, 10);
390 1.1 cgd if (cp == ep)
391 1.1 cgd inperr();
392 1.1 cgd cp = ep;
393 1.1 cgd break;
394 1.1 cgd case 'P':
395 1.1 cgd if (sym.s_prfl)
396 1.1 cgd inperr();
397 1.1 cgd sym.s_prfl = 1;
398 1.1 cgd sym.s_nprfl = (short)strtol(cp, &ep, 10);
399 1.1 cgd if (cp == ep)
400 1.1 cgd inperr();
401 1.1 cgd cp = ep;
402 1.1 cgd break;
403 1.1 cgd case 'S':
404 1.1 cgd if (sym.s_scfl)
405 1.1 cgd inperr();
406 1.1 cgd sym.s_scfl = 1;
407 1.1 cgd sym.s_nscfl = (short)strtol(cp, &ep, 10);
408 1.1 cgd if (cp == ep)
409 1.1 cgd inperr();
410 1.1 cgd cp = ep;
411 1.1 cgd break;
412 1.1 cgd }
413 1.1 cgd }
414 1.1 cgd
415 1.1 cgd /* read symbol name */
416 1.1 cgd hte = hsearch(inpname(cp, &cp), 1);
417 1.1 cgd hte->h_used |= used;
418 1.1 cgd if (sym.s_def == DEF || sym.s_def == TDEF)
419 1.1 cgd hte->h_def = 1;
420 1.1 cgd
421 1.1 cgd sym.s_type = inptype(cp, &cp);
422 1.1 cgd
423 1.1 cgd /*
424 1.1 cgd * Allocate memory for this symbol only if it was not already
425 1.1 cgd * declared or tentatively defined at the same location with
426 1.1 cgd * the same type. Works only for symbols with external linkage,
427 1.1 cgd * because static symbols, tentatively defined at the same location
428 1.1 cgd * but in different translation units are really different symbols.
429 1.1 cgd */
430 1.1 cgd for (symp = hte->h_syms; symp != NULL; symp = symp->s_nxt) {
431 1.1 cgd if (symp->s_pos.p_isrc == sym.s_pos.p_isrc &&
432 1.1 cgd symp->s_pos.p_iline == sym.s_pos.p_iline &&
433 1.1 cgd symp->s_type == sym.s_type &&
434 1.1 cgd ((symp->s_def == DECL && sym.s_def == DECL) ||
435 1.1 cgd (!sflag && symp->s_def == TDEF && sym.s_def == TDEF)) &&
436 1.1 cgd !symp->s_static && !sym.s_static) {
437 1.1 cgd break;
438 1.1 cgd }
439 1.1 cgd }
440 1.1 cgd
441 1.1 cgd if (symp == NULL) {
442 1.1 cgd /* allocsym reserviert keinen Platz fuer s_nva */
443 1.1 cgd if (sym.s_va || sym.s_prfl || sym.s_scfl) {
444 1.1 cgd symp = xalloc(sizeof (sym_t));
445 1.1 cgd STRUCT_ASSIGN(*symp, sym);
446 1.1 cgd } else {
447 1.1 cgd symp = xalloc(sizeof (symp->s_s));
448 1.1 cgd STRUCT_ASSIGN(symp->s_s, sym.s_s);
449 1.1 cgd }
450 1.1 cgd *hte->h_lsym = symp;
451 1.1 cgd hte->h_lsym = &symp->s_nxt;
452 1.1 cgd }
453 1.1 cgd
454 1.1 cgd if (*cp != '\0')
455 1.1 cgd inperr();
456 1.1 cgd }
457 1.1 cgd
458 1.1 cgd /*
459 1.1 cgd * Read an u-record (emited by lint1 if a symbol was used).
460 1.1 cgd */
461 1.1 cgd static void
462 1.1 cgd usedsym(posp, cp)
463 1.1 cgd pos_t *posp;
464 1.1 cgd const char *cp;
465 1.1 cgd {
466 1.1 cgd usym_t *usym;
467 1.1 cgd hte_t *hte;
468 1.1 cgd
469 1.1 cgd usym = xalloc(sizeof (usym_t));
470 1.1 cgd STRUCT_ASSIGN(usym->u_pos, *posp);
471 1.1 cgd
472 1.1 cgd /* needed as delimiter between two numbers */
473 1.1 cgd if (*cp++ != 'x')
474 1.1 cgd inperr();
475 1.1 cgd
476 1.1 cgd hte = hsearch(inpname(cp, &cp), 1);
477 1.1 cgd hte->h_used = 1;
478 1.1 cgd
479 1.1 cgd *hte->h_lusym = usym;
480 1.1 cgd hte->h_lusym = &usym->u_nxt;
481 1.1 cgd }
482 1.1 cgd
483 1.1 cgd /*
484 1.1 cgd * Read a type and return the index of this type.
485 1.1 cgd */
486 1.1 cgd static u_short
487 1.1 cgd inptype(cp, epp)
488 1.1 cgd const char *cp, **epp;
489 1.1 cgd {
490 1.1 cgd char c, s, *eptr;
491 1.1 cgd const char *ep;
492 1.1 cgd type_t *tp;
493 1.1 cgd int narg, i, osdef;
494 1.1 cgd size_t tlen;
495 1.1 cgd u_short tidx;
496 1.1 cgd int h;
497 1.1 cgd
498 1.1 cgd /* If we have this type already, return it's index. */
499 1.1 cgd tlen = gettlen(cp, &ep);
500 1.1 cgd h = thash(cp, tlen);
501 1.1 cgd if ((tidx = findtype(cp, tlen, h)) != 0) {
502 1.1 cgd *epp = ep;
503 1.1 cgd return (tidx);
504 1.1 cgd }
505 1.1 cgd
506 1.1 cgd /* No, we must create a new type. */
507 1.1 cgd tp = xalloc(sizeof (type_t));
508 1.1 cgd
509 1.1 cgd tidx = storetyp(tp, cp, tlen, h);
510 1.1 cgd
511 1.1 cgd c = *cp++;
512 1.1 cgd
513 1.1 cgd while (c == 'c' || c == 'v') {
514 1.1 cgd if (c == 'c') {
515 1.1 cgd tp->t_const = 1;
516 1.1 cgd } else {
517 1.1 cgd tp->t_volatile = 1;
518 1.1 cgd }
519 1.1 cgd c = *cp++;
520 1.1 cgd }
521 1.1 cgd
522 1.1 cgd if (c == 's' || c == 'u' || c == 'l' || c == 'e') {
523 1.1 cgd s = c;
524 1.1 cgd c = *cp++;
525 1.1 cgd } else {
526 1.1 cgd s = '\0';
527 1.1 cgd }
528 1.1 cgd
529 1.1 cgd switch (c) {
530 1.1 cgd case 'C':
531 1.1 cgd tp->t_tspec = s == 's' ? SCHAR : (s == 'u' ? UCHAR : CHAR);
532 1.1 cgd break;
533 1.1 cgd case 'S':
534 1.1 cgd tp->t_tspec = s == 'u' ? USHORT : SHORT;
535 1.1 cgd break;
536 1.1 cgd case 'I':
537 1.1 cgd tp->t_tspec = s == 'u' ? UINT : INT;
538 1.1 cgd break;
539 1.1 cgd case 'L':
540 1.1 cgd tp->t_tspec = s == 'u' ? ULONG : LONG;
541 1.1 cgd break;
542 1.1 cgd case 'Q':
543 1.1 cgd tp->t_tspec = s == 'u' ? UQUAD : QUAD;
544 1.1 cgd break;
545 1.1 cgd case 'D':
546 1.1 cgd tp->t_tspec = s == 's' ? FLOAT : (s == 'l' ? LDOUBLE : DOUBLE);
547 1.1 cgd break;
548 1.1 cgd case 'V':
549 1.1 cgd tp->t_tspec = VOID;
550 1.1 cgd break;
551 1.1 cgd case 'P':
552 1.1 cgd tp->t_tspec = PTR;
553 1.1 cgd break;
554 1.1 cgd case 'A':
555 1.1 cgd tp->t_tspec = ARRAY;
556 1.1 cgd break;
557 1.1 cgd case 'F':
558 1.1 cgd case 'f':
559 1.1 cgd osdef = c == 'f';
560 1.1 cgd tp->t_tspec = FUNC;
561 1.1 cgd break;
562 1.1 cgd case 'T':
563 1.1 cgd tp->t_tspec = s == 'e' ? ENUM : (s == 's' ? STRUCT : UNION);
564 1.1 cgd break;
565 1.1 cgd }
566 1.1 cgd
567 1.1 cgd switch (tp->t_tspec) {
568 1.1 cgd case ARRAY:
569 1.1 cgd tp->t_dim = (int)strtol(cp, &eptr, 10);
570 1.1 cgd cp = eptr;
571 1.1 cgd tp->t_subt = TP(inptype(cp, &cp));
572 1.1 cgd break;
573 1.1 cgd case PTR:
574 1.1 cgd tp->t_subt = TP(inptype(cp, &cp));
575 1.1 cgd break;
576 1.1 cgd case FUNC:
577 1.1 cgd c = *cp;
578 1.1 cgd if (isdigit((u_char)c)) {
579 1.1 cgd if (!osdef)
580 1.1 cgd tp->t_proto = 1;
581 1.1 cgd narg = (int)strtol(cp, &eptr, 10);
582 1.1 cgd cp = eptr;
583 1.1 cgd tp->t_args = xcalloc((size_t)(narg + 1),
584 1.1 cgd sizeof (type_t *));
585 1.1 cgd for (i = 0; i < narg; i++) {
586 1.1 cgd if (i == narg - 1 && *cp == 'E') {
587 1.1 cgd tp->t_vararg = 1;
588 1.1 cgd cp++;
589 1.1 cgd } else {
590 1.1 cgd tp->t_args[i] = TP(inptype(cp, &cp));
591 1.1 cgd }
592 1.1 cgd }
593 1.1 cgd }
594 1.1 cgd tp->t_subt = TP(inptype(cp, &cp));
595 1.1 cgd break;
596 1.1 cgd case ENUM:
597 1.1 cgd tp->t_tspec = INT;
598 1.1 cgd tp->t_isenum = 1;
599 1.1 cgd /* FALLTHROUGH */
600 1.1 cgd case STRUCT:
601 1.1 cgd case UNION:
602 1.1 cgd switch (*cp++) {
603 1.1 cgd case '0':
604 1.1 cgd break;
605 1.1 cgd case '1':
606 1.1 cgd tp->t_istag = 1;
607 1.1 cgd tp->t_tag = hsearch(inpname(cp, &cp), 1);
608 1.1 cgd break;
609 1.1 cgd case '2':
610 1.1 cgd tp->t_istynam = 1;
611 1.1 cgd tp->t_tynam = hsearch(inpname(cp, &cp), 1);
612 1.1 cgd break;
613 1.1 cgd }
614 1.1 cgd break;
615 1.1 cgd /* LINTED (enumeration value(s) not handled in switch) */
616 1.1 cgd }
617 1.1 cgd
618 1.1 cgd *epp = cp;
619 1.1 cgd return (tidx);
620 1.1 cgd }
621 1.1 cgd
622 1.1 cgd /*
623 1.1 cgd * Get the length of a type string.
624 1.1 cgd */
625 1.1 cgd static int
626 1.1 cgd gettlen(cp, epp)
627 1.1 cgd const char *cp, **epp;
628 1.1 cgd {
629 1.1 cgd const char *cp1;
630 1.1 cgd char c, s, *eptr;
631 1.1 cgd tspec_t t;
632 1.1 cgd int narg, i, cm, vm;
633 1.1 cgd
634 1.1 cgd cp1 = cp;
635 1.1 cgd
636 1.1 cgd c = *cp++;
637 1.1 cgd
638 1.1 cgd cm = vm = 0;
639 1.1 cgd
640 1.1 cgd while (c == 'c' || c == 'v') {
641 1.1 cgd if (c == 'c') {
642 1.1 cgd if (cm)
643 1.1 cgd inperr();
644 1.1 cgd cm = 1;
645 1.1 cgd } else {
646 1.1 cgd if (vm)
647 1.1 cgd inperr();
648 1.1 cgd vm = 1;
649 1.1 cgd }
650 1.1 cgd c = *cp++;
651 1.1 cgd }
652 1.1 cgd
653 1.1 cgd if (c == 's' || c == 'u' || c == 'l' || c == 'e') {
654 1.1 cgd s = c;
655 1.1 cgd c = *cp++;
656 1.1 cgd } else {
657 1.1 cgd s = '\0';
658 1.1 cgd }
659 1.1 cgd
660 1.1 cgd t = NOTSPEC;
661 1.1 cgd
662 1.1 cgd switch (c) {
663 1.1 cgd case 'C':
664 1.1 cgd if (s == 's') {
665 1.1 cgd t = SCHAR;
666 1.1 cgd } else if (s == 'u') {
667 1.1 cgd t = UCHAR;
668 1.1 cgd } else if (s == '\0') {
669 1.1 cgd t = CHAR;
670 1.1 cgd }
671 1.1 cgd break;
672 1.1 cgd case 'S':
673 1.1 cgd if (s == 'u') {
674 1.1 cgd t = USHORT;
675 1.1 cgd } else if (s == '\0') {
676 1.1 cgd t = SHORT;
677 1.1 cgd }
678 1.1 cgd break;
679 1.1 cgd case 'I':
680 1.1 cgd if (s == 'u') {
681 1.1 cgd t = UINT;
682 1.1 cgd } else if (s == '\0') {
683 1.1 cgd t = INT;
684 1.1 cgd }
685 1.1 cgd break;
686 1.1 cgd case 'L':
687 1.1 cgd if (s == 'u') {
688 1.1 cgd t = ULONG;
689 1.1 cgd } else if (s == '\0') {
690 1.1 cgd t = LONG;
691 1.1 cgd }
692 1.1 cgd break;
693 1.1 cgd case 'Q':
694 1.1 cgd if (s == 'u') {
695 1.1 cgd t = UQUAD;
696 1.1 cgd } else if (s == '\0') {
697 1.1 cgd t = QUAD;
698 1.1 cgd }
699 1.1 cgd break;
700 1.1 cgd case 'D':
701 1.1 cgd if (s == 's') {
702 1.1 cgd t = FLOAT;
703 1.1 cgd } else if (s == 'l') {
704 1.1 cgd t = LDOUBLE;
705 1.1 cgd } else if (s == '\0') {
706 1.1 cgd t = DOUBLE;
707 1.1 cgd }
708 1.1 cgd break;
709 1.1 cgd case 'V':
710 1.1 cgd if (s == '\0')
711 1.1 cgd t = VOID;
712 1.1 cgd break;
713 1.1 cgd case 'P':
714 1.1 cgd if (s == '\0')
715 1.1 cgd t = PTR;
716 1.1 cgd break;
717 1.1 cgd case 'A':
718 1.1 cgd if (s == '\0')
719 1.1 cgd t = ARRAY;
720 1.1 cgd break;
721 1.1 cgd case 'F':
722 1.1 cgd case 'f':
723 1.1 cgd if (s == '\0')
724 1.1 cgd t = FUNC;
725 1.1 cgd break;
726 1.1 cgd case 'T':
727 1.1 cgd if (s == 'e') {
728 1.1 cgd t = ENUM;
729 1.1 cgd } else if (s == 's') {
730 1.1 cgd t = STRUCT;
731 1.1 cgd } else if (s == 'u') {
732 1.1 cgd t = UNION;
733 1.1 cgd }
734 1.1 cgd break;
735 1.1 cgd default:
736 1.1 cgd inperr();
737 1.1 cgd }
738 1.1 cgd
739 1.1 cgd if (t == NOTSPEC)
740 1.1 cgd inperr();
741 1.1 cgd
742 1.1 cgd switch (t) {
743 1.1 cgd case ARRAY:
744 1.1 cgd (void)strtol(cp, &eptr, 10);
745 1.1 cgd if (cp == eptr)
746 1.1 cgd inperr();
747 1.1 cgd cp = eptr;
748 1.1 cgd (void)gettlen(cp, &cp);
749 1.1 cgd break;
750 1.1 cgd case PTR:
751 1.1 cgd (void)gettlen(cp, &cp);
752 1.1 cgd break;
753 1.1 cgd case FUNC:
754 1.1 cgd c = *cp;
755 1.1 cgd if (isdigit((u_char)c)) {
756 1.1 cgd narg = (int)strtol(cp, &eptr, 10);
757 1.1 cgd cp = eptr;
758 1.1 cgd for (i = 0; i < narg; i++) {
759 1.1 cgd if (i == narg - 1 && *cp == 'E') {
760 1.1 cgd cp++;
761 1.1 cgd } else {
762 1.1 cgd (void)gettlen(cp, &cp);
763 1.1 cgd }
764 1.1 cgd }
765 1.1 cgd }
766 1.1 cgd (void)gettlen(cp, &cp);
767 1.1 cgd break;
768 1.1 cgd case ENUM:
769 1.1 cgd case STRUCT:
770 1.1 cgd case UNION:
771 1.1 cgd switch (*cp++) {
772 1.1 cgd case '0':
773 1.1 cgd break;
774 1.1 cgd case '1':
775 1.1 cgd (void)inpname(cp, &cp);
776 1.1 cgd break;
777 1.1 cgd case '2':
778 1.1 cgd (void)inpname(cp, &cp);
779 1.1 cgd break;
780 1.1 cgd default:
781 1.1 cgd inperr();
782 1.1 cgd }
783 1.1 cgd break;
784 1.1 cgd /* LINTED (enumeration value(s) not handled in switch) */
785 1.1 cgd }
786 1.1 cgd
787 1.1 cgd *epp = cp;
788 1.1 cgd return (cp - cp1);
789 1.1 cgd }
790 1.1 cgd
791 1.1 cgd /*
792 1.1 cgd * Search a type by it's type string.
793 1.1 cgd */
794 1.1 cgd static u_short
795 1.1 cgd findtype(cp, len, h)
796 1.1 cgd const char *cp;
797 1.1 cgd size_t len;
798 1.1 cgd int h;
799 1.1 cgd {
800 1.1 cgd thtab_t *thte;
801 1.1 cgd
802 1.1 cgd for (thte = thtab[h]; thte != NULL; thte = thte->th_nxt) {
803 1.1 cgd if (strncmp(thte->th_name, cp, len) != 0)
804 1.1 cgd continue;
805 1.1 cgd if (thte->th_name[len] == '\0')
806 1.1 cgd return (thte->th_idx);
807 1.1 cgd }
808 1.1 cgd
809 1.1 cgd return (0);
810 1.1 cgd }
811 1.1 cgd
812 1.1 cgd /*
813 1.1 cgd * Store a type and it's type string so we can later share this type
814 1.1 cgd * if we read the same type string from the input file.
815 1.1 cgd */
816 1.1 cgd static u_short
817 1.1 cgd storetyp(tp, cp, len, h)
818 1.1 cgd type_t *tp;
819 1.1 cgd const char *cp;
820 1.1 cgd size_t len;
821 1.1 cgd int h;
822 1.1 cgd {
823 1.1 cgd /* 0 ist reserved */
824 1.1 cgd static u_int tidx = 1;
825 1.1 cgd thtab_t *thte;
826 1.1 cgd char *name;
827 1.1 cgd
828 1.1 cgd if (tidx >= USHRT_MAX)
829 1.1 cgd errx(1, "sorry, too many types");
830 1.1 cgd
831 1.1 cgd if (tidx == tlstlen - 1) {
832 1.1 cgd tlst = xrealloc(tlst, (tlstlen * 2) * sizeof (type_t *));
833 1.1 cgd (void)memset(tlst + tlstlen, 0, tlstlen * sizeof (type_t *));
834 1.1 cgd tlstlen *= 2;
835 1.1 cgd }
836 1.1 cgd
837 1.1 cgd tlst[tidx] = tp;
838 1.1 cgd
839 1.1 cgd /* create a hash table entry */
840 1.1 cgd name = xalloc(len + 1);
841 1.1 cgd (void)memcpy(name, cp, len);
842 1.1 cgd name[len] = '\0';
843 1.1 cgd
844 1.1 cgd thte = xalloc(sizeof (thtab_t));
845 1.1 cgd thte->th_name = name;
846 1.1 cgd thte->th_idx = tidx;
847 1.1 cgd thte->th_nxt = thtab[h];
848 1.1 cgd thtab[h] = thte;
849 1.1 cgd
850 1.1 cgd return ((u_short)tidx++);
851 1.1 cgd }
852 1.1 cgd
853 1.1 cgd /*
854 1.1 cgd * Hash function for types
855 1.1 cgd */
856 1.1 cgd static int
857 1.1 cgd thash(s, len)
858 1.1 cgd const char *s;
859 1.1 cgd size_t len;
860 1.1 cgd {
861 1.1 cgd u_int v;
862 1.1 cgd
863 1.1 cgd v = 0;
864 1.1 cgd while (len-- != 0) {
865 1.1 cgd v = (v << sizeof (v)) + (u_char)*s++;
866 1.1 cgd v ^= v >> (sizeof (v) * CHAR_BIT - sizeof (v));
867 1.1 cgd }
868 1.1 cgd return (v % THSHSIZ2);
869 1.1 cgd }
870 1.1 cgd
871 1.1 cgd /*
872 1.1 cgd * Read a string enclosed by "". This string may contain quoted chars.
873 1.1 cgd */
874 1.1 cgd static char *
875 1.1 cgd inpqstrg(src, epp)
876 1.1 cgd const char *src, **epp;
877 1.1 cgd {
878 1.1 cgd char *strg, *dst;
879 1.1 cgd size_t slen;
880 1.1 cgd int c;
881 1.1 cgd int v;
882 1.1 cgd
883 1.1 cgd dst = strg = xmalloc(slen = 32);
884 1.1 cgd
885 1.1 cgd if ((c = *src++) != '"')
886 1.1 cgd inperr();
887 1.1 cgd if ((c = *src++) == '\0')
888 1.1 cgd inperr();
889 1.1 cgd
890 1.1 cgd while (c != '"') {
891 1.1 cgd if (c == '\\') {
892 1.1 cgd if ((c = *src++) == '\0')
893 1.1 cgd inperr();
894 1.1 cgd switch (c) {
895 1.1 cgd case 'n':
896 1.1 cgd c = '\n';
897 1.1 cgd break;
898 1.1 cgd case 't':
899 1.1 cgd c = '\t';
900 1.1 cgd break;
901 1.1 cgd case 'v':
902 1.1 cgd #ifdef __STDC__
903 1.1 cgd c = '\v';
904 1.1 cgd #else
905 1.1 cgd c = '\013';
906 1.1 cgd #endif
907 1.1 cgd break;
908 1.1 cgd case 'b':
909 1.1 cgd c = '\b';
910 1.1 cgd break;
911 1.1 cgd case 'r':
912 1.1 cgd c = '\r';
913 1.1 cgd break;
914 1.1 cgd case 'f':
915 1.1 cgd c = '\f';
916 1.1 cgd break;
917 1.1 cgd case 'a':
918 1.1 cgd #ifdef __STDC__
919 1.1 cgd c = '\a';
920 1.1 cgd #else
921 1.1 cgd c = '\007';
922 1.1 cgd #endif
923 1.1 cgd break;
924 1.1 cgd case '\\':
925 1.1 cgd c = '\\';
926 1.1 cgd break;
927 1.1 cgd case '"':
928 1.1 cgd c = '"';
929 1.1 cgd break;
930 1.1 cgd case '\'':
931 1.1 cgd c = '\'';
932 1.1 cgd break;
933 1.1 cgd case '0': case '1': case '2': case '3':
934 1.1 cgd v = (c - '0') << 6;
935 1.1 cgd if ((c = *src++) < '0' || c > '7')
936 1.1 cgd inperr();
937 1.1 cgd v |= (c - '0') << 3;
938 1.1 cgd if ((c = *src++) < '0' || c > '7')
939 1.1 cgd inperr();
940 1.1 cgd v |= c - '0';
941 1.1 cgd c = (u_char)v;
942 1.1 cgd break;
943 1.1 cgd default:
944 1.1 cgd inperr();
945 1.1 cgd }
946 1.1 cgd }
947 1.1 cgd /* keep space for trailing '\0' */
948 1.1 cgd if (dst - strg == slen - 1) {
949 1.1 cgd strg = xrealloc(strg, slen * 2);
950 1.1 cgd dst = strg + (slen - 1);
951 1.1 cgd slen *= 2;
952 1.1 cgd }
953 1.1 cgd *dst++ = (char)c;
954 1.1 cgd if ((c = *src++) == '\0')
955 1.1 cgd inperr();
956 1.1 cgd }
957 1.1 cgd *dst = '\0';
958 1.1 cgd
959 1.1 cgd *epp = src;
960 1.1 cgd return (strg);
961 1.1 cgd }
962 1.1 cgd
963 1.1 cgd /*
964 1.1 cgd * Read the name of a symbol in static memory.
965 1.1 cgd */
966 1.1 cgd static const char *
967 1.1 cgd inpname(cp, epp)
968 1.1 cgd const char *cp, **epp;
969 1.1 cgd {
970 1.1 cgd static char *buf;
971 1.1 cgd static size_t blen = 0;
972 1.1 cgd size_t len, i;
973 1.1 cgd char *eptr, c;
974 1.1 cgd
975 1.1 cgd len = (int)strtol(cp, &eptr, 10);
976 1.1 cgd if (cp == eptr)
977 1.1 cgd inperr();
978 1.1 cgd cp = eptr;
979 1.1 cgd if (len + 1 > blen)
980 1.1 cgd buf = xrealloc(buf, blen = len + 1);
981 1.1 cgd for (i = 0; i < len; i++) {
982 1.1 cgd c = *cp++;
983 1.1 cgd if (!isalnum(c) && c != '_')
984 1.1 cgd inperr();
985 1.1 cgd buf[i] = c;
986 1.1 cgd }
987 1.1 cgd buf[i] = '\0';
988 1.1 cgd
989 1.1 cgd *epp = cp;
990 1.1 cgd return (buf);
991 1.1 cgd }
992 1.1 cgd
993 1.1 cgd /*
994 1.1 cgd * Return the index of a file name. If the name cannot be found, create
995 1.1 cgd * a new entry and return the index of the newly created entry.
996 1.1 cgd */
997 1.1 cgd static int
998 1.1 cgd getfnidx(fn)
999 1.1 cgd const char *fn;
1000 1.1 cgd {
1001 1.1 cgd int i;
1002 1.1 cgd
1003 1.1 cgd /* 0 ist reserved */
1004 1.1 cgd for (i = 1; fnames[i] != NULL; i++) {
1005 1.1 cgd if (strcmp(fnames[i], fn) == 0)
1006 1.1 cgd break;
1007 1.1 cgd }
1008 1.1 cgd if (fnames[i] != NULL)
1009 1.1 cgd return (i);
1010 1.1 cgd
1011 1.1 cgd if (i == nfnames - 1) {
1012 1.1 cgd fnames = xrealloc(fnames, (nfnames * 2) * sizeof (char *));
1013 1.1 cgd (void)memset(fnames + nfnames, 0, nfnames * sizeof (char *));
1014 1.1 cgd nfnames *= 2;
1015 1.1 cgd }
1016 1.1 cgd
1017 1.1 cgd fnames[i] = xstrdup(fn);
1018 1.1 cgd return (i);
1019 1.1 cgd }
1020 1.1 cgd
1021 1.1 cgd /*
1022 1.1 cgd * Separate symbols with static and external linkage.
1023 1.1 cgd */
1024 1.1 cgd void
1025 1.1 cgd mkstatic(hte)
1026 1.1 cgd hte_t *hte;
1027 1.1 cgd {
1028 1.1 cgd sym_t *sym1, **symp, *sym;
1029 1.1 cgd fcall_t **callp, *call;
1030 1.1 cgd usym_t **usymp, *usym;
1031 1.1 cgd hte_t *nhte;
1032 1.1 cgd int ofnd;
1033 1.1 cgd
1034 1.1 cgd /* Look for first static definition */
1035 1.1 cgd for (sym1 = hte->h_syms; sym1 != NULL; sym1 = sym1->s_nxt) {
1036 1.1 cgd if (sym1->s_static)
1037 1.1 cgd break;
1038 1.1 cgd }
1039 1.1 cgd if (sym1 == NULL)
1040 1.1 cgd return;
1041 1.1 cgd
1042 1.1 cgd /* Do nothing if this name is used only in one translation unit. */
1043 1.1 cgd ofnd = 0;
1044 1.1 cgd for (sym = hte->h_syms; sym != NULL && !ofnd; sym = sym->s_nxt) {
1045 1.1 cgd if (sym->s_pos.p_src != sym1->s_pos.p_src)
1046 1.1 cgd ofnd = 1;
1047 1.1 cgd }
1048 1.1 cgd for (call = hte->h_calls; call != NULL && !ofnd; call = call->f_nxt) {
1049 1.1 cgd if (call->f_pos.p_src != sym1->s_pos.p_src)
1050 1.1 cgd ofnd = 1;
1051 1.1 cgd }
1052 1.1 cgd for (usym = hte->h_usyms; usym != NULL && !ofnd; usym = usym->u_nxt) {
1053 1.1 cgd if (usym->u_pos.p_src != sym1->s_pos.p_src)
1054 1.1 cgd ofnd = 1;
1055 1.1 cgd }
1056 1.1 cgd if (!ofnd) {
1057 1.1 cgd hte->h_used = 1;
1058 1.1 cgd /* errors about undef. static symbols are printed in lint1 */
1059 1.1 cgd hte->h_def = 1;
1060 1.1 cgd hte->h_static = 1;
1061 1.1 cgd return;
1062 1.1 cgd }
1063 1.1 cgd
1064 1.1 cgd /*
1065 1.1 cgd * Create a new hash table entry
1066 1.1 cgd *
1067 1.1 cgd * XXX this entry should be put at the beginning of the list to
1068 1.1 cgd * avoid to process the same symbol twice.
1069 1.1 cgd */
1070 1.1 cgd for (nhte = hte; nhte->h_link != NULL; nhte = nhte->h_link) ;
1071 1.1 cgd nhte->h_link = xalloc(sizeof (hte_t));
1072 1.1 cgd nhte = nhte->h_link;
1073 1.1 cgd nhte->h_name = hte->h_name;
1074 1.1 cgd nhte->h_static = 1;
1075 1.1 cgd nhte->h_used = 1;
1076 1.1 cgd nhte->h_def = 1; /* error in lint1 */
1077 1.1 cgd nhte->h_lsym = &nhte->h_syms;
1078 1.1 cgd nhte->h_lcall = &nhte->h_calls;
1079 1.1 cgd nhte->h_lusym = &nhte->h_usyms;
1080 1.1 cgd
1081 1.1 cgd /*
1082 1.1 cgd * move all symbols used in this translation unit into the new
1083 1.1 cgd * hash table entry.
1084 1.1 cgd */
1085 1.1 cgd for (symp = &hte->h_syms; (sym = *symp) != NULL; ) {
1086 1.1 cgd if (sym->s_pos.p_src == sym1->s_pos.p_src) {
1087 1.1 cgd sym->s_static = 1;
1088 1.1 cgd (*symp) = sym->s_nxt;
1089 1.1 cgd if (hte->h_lsym == &sym->s_nxt)
1090 1.1 cgd hte->h_lsym = symp;
1091 1.1 cgd sym->s_nxt = NULL;
1092 1.1 cgd *nhte->h_lsym = sym;
1093 1.1 cgd nhte->h_lsym = &sym->s_nxt;
1094 1.1 cgd } else {
1095 1.1 cgd symp = &sym->s_nxt;
1096 1.1 cgd }
1097 1.1 cgd }
1098 1.1 cgd for (callp = &hte->h_calls; (call = *callp) != NULL; ) {
1099 1.1 cgd if (call->f_pos.p_src == sym1->s_pos.p_src) {
1100 1.1 cgd (*callp) = call->f_nxt;
1101 1.1 cgd if (hte->h_lcall == &call->f_nxt)
1102 1.1 cgd hte->h_lcall = callp;
1103 1.1 cgd call->f_nxt = NULL;
1104 1.1 cgd *nhte->h_lcall = call;
1105 1.1 cgd nhte->h_lcall = &call->f_nxt;
1106 1.1 cgd } else {
1107 1.1 cgd callp = &call->f_nxt;
1108 1.1 cgd }
1109 1.1 cgd }
1110 1.1 cgd for (usymp = &hte->h_usyms; (usym = *usymp) != NULL; ) {
1111 1.1 cgd if (usym->u_pos.p_src == sym1->s_pos.p_src) {
1112 1.1 cgd (*usymp) = usym->u_nxt;
1113 1.1 cgd if (hte->h_lusym == &usym->u_nxt)
1114 1.1 cgd hte->h_lusym = usymp;
1115 1.1 cgd usym->u_nxt = NULL;
1116 1.1 cgd *nhte->h_lusym = usym;
1117 1.1 cgd nhte->h_lusym = &usym->u_nxt;
1118 1.1 cgd } else {
1119 1.1 cgd usymp = &usym->u_nxt;
1120 1.1 cgd }
1121 1.1 cgd }
1122 1.1 cgd
1123 1.1 cgd /* h_def must be recalculated for old hte */
1124 1.1 cgd hte->h_def = nhte->h_def = 0;
1125 1.1 cgd for (sym = hte->h_syms; sym != NULL; sym = sym->s_nxt) {
1126 1.1 cgd if (sym->s_def == DEF || sym->s_def == TDEF) {
1127 1.1 cgd hte->h_def = 1;
1128 1.1 cgd break;
1129 1.1 cgd }
1130 1.1 cgd }
1131 1.1 cgd
1132 1.1 cgd mkstatic(hte);
1133 1.1 cgd }
1134