]> andersk Git - splint.git/blame - src/usymtab.c
Fixed checking for shift expressions.
[splint.git] / src / usymtab.c
CommitLineData
616915dd 1/*
11db3170 2** Splint - annotation-assisted static program checker
77d37419 3** Copyright (C) 1994-2002 University of Virginia,
616915dd 4** Massachusetts Institute of Technology
5**
6** This program is free software; you can redistribute it and/or modify it
7** under the terms of the GNU General Public License as published by the
8** Free Software Foundation; either version 2 of the License, or (at your
9** option) any later version.
10**
11** This program is distributed in the hope that it will be useful, but
12** WITHOUT ANY WARRANTY; without even the implied warranty of
13** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14** General Public License for more details.
15**
16** The GNU General Public License is available from http://www.gnu.org/ or
17** the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
18** MA 02111-1307, USA.
19**
20** For information on lclint: lclint-request@cs.virginia.edu
21** To report a bug: lclint-bug@cs.virginia.edu
11db3170 22** For more information: http://www.splint.org
616915dd 23*/
24/*
25** usymtab
26**
27** Lexically scoped symbol table.
28**
29** Unlike a normal symbol table, this table splits to reflect branches.
30**
31** This is necessary since symbol table entries also reflect
32** some state information, like initialization, that may be
33** different on different branches.
34**
35** For each control structure we split:
36**
37** { } - a normal scope (no control) US_NORMAL
38**
39** if <pred> { } - US_TBRANCH true branch
40** while <pred> { } US_FBRANCH else branch
41**
42** switch <pred> { } - US_SWITCH
43**
44** case x: - case scope US_CBRANCH
45** Should be kept in a separate table, because of
46** weird C syntax.
47*/
48
49# include "lclintMacros.nf"
50# include "basic.h"
51# include "structNames.h"
52# include "exprChecks.h"
28bf4b0b 53# include "transferChecks.h"
616915dd 54
3e3ec469 55/* Needed to install macros when loading libraries */
56
57# include "cpplib.h"
58# include "cpperror.h"
59# include "cpphash.h"
60
616915dd 61/*
62** Keep track of type definitions inside a function.
63*/
64
65static uentryList functypes = uentryList_undefined;
66
67static bool dbgfree = FALSE;
68static bool dbgload = TRUE;
69
28bf4b0b 70/*@access ekind@*/
616915dd 71
72/*
73** Hack to prevent shadow errors from appearing when function parameters
74** are entered into a new scope.
75*/
76
77static bool noshadowerror = FALSE;
78
79/*
80** Constraint: static variables can live in 1 or > 2.
81**
82** except for tags. All tags must be at the global level.
83** Static tags are handled in a kludgey way.
84*/
85
86/*
87** utab is the universal symbol table
88** globtab is the global environment of utab
89** oldtab is needed for conversions in dumping (after sorting the table)
90**
91** there can be only one usymtab!
92*/
93
94static /*@checkedstrict@*/ /*@owned@*/ /*@notnull@*/ usymtab utab;
95
96/* Reachable environments from from utab */
97static /*@checkedstrict@*/ /*@notnull@*/ /*@dependent@*/ usymtab globtab;
98static /*@checkedstrict@*/ /*@dependent@*/ usymtab filetab;
99
100/* Used for sorting for dumpage. */
101static /*@checkedstrict@*/ /*@owned@*/ usymtab oldtab;
102
103static int usymtab_lexicalLevel (void) /*@globals utab@*/ ;
28bf4b0b 104static bool usymtab_isAltDefinitelyNull (sRef p_s) /*@globals utab@*/ ;
616915dd 105static void refTable_free (/*@only@*/ /*@null@*/ refTable p_x, int p_nentries);
106static ctype usymtab_suFieldsType (uentryList p_f, bool p_isStruct) /*@globals globtab@*/ ;
107
28bf4b0b 108extern int usymtab_getCurrentDepth (void) /*@globals utab@*/
109{
110 return utab->lexlevel;
111}
112
616915dd 113static void
114usymtab_freeLevel (/*@notnull@*/ /*@only@*/ usymtab p_u)
115 /*@globals globtab, utab, filetab@*/ /*@modifies p_u@*/ ;
116
28bf4b0b 117static bool usymtab_isDefinitelyNullAux (sRef p_s) /*@globals utab@*/ ;
616915dd 118static /*@only@*/ cstring usymtab_unparseStackTab (usymtab p_t);
119static /*@exposed@*/ /*@dependent@*/ uentry
120 usymtab_getRefTab (/*@notnull@*/ usymtab p_u, int p_level, usymId p_index);
8250fa4a 121
3e3ec469 122# ifdef S_SPLINT_S
8250fa4a 123/* These are not used anymore... */
616915dd 124static /*@unused@*/ /*@only@*/ cstring
125 usymtab_unparseLocalAux (/*@notnull@*/ usymtab p_s);
126static /*@unused@*/ /*@only@*/ cstring
127 usymtab_unparseLocalList (/*@notnull@*/ usymtab p_s);
8250fa4a 128# endif
129
616915dd 130static /*@only@*/ cstring usymtab_typeName (/*@notnull@*/ usymtab p_t);
131static void usymtab_handleParams (void)
132 /*@globals utab, globtab, filetab@*/
133 /*@modifies utab@*/ ;
134
135static /*@exposed@*/ /*@dependent@*/ uentry
136 usymtab_addRefEntry (/*@notnull@*/ usymtab p_s, cstring p_k);
137static /*@exposed@*/ /*@dependent@*/ usymtab
138 usymtab_dropEnv (/*@notnull@*/ usymtab p_s);
139static /*@exposed@*/ /*@dependent@*/ uentry
140 usymtab_getRefNoisy (/*@notnull@*/ usymtab p_s, int p_level, usymId p_index);
141
28bf4b0b 142static /*@exposed@*/ /*@dependent@*/ uentry
143 usymtab_lookupQuietAux (usymtab p_s, cstring p_k, bool p_noalt);
144
616915dd 145static /*@exposed@*/ /*@dependent@*/ uentry
146 usymtab_lookupQuiet (usymtab p_s, cstring p_k);
28bf4b0b 147
148static /*@exposed@*/ /*@dependent@*/ uentry
149 usymtab_lookupQuietNoAlt (usymtab p_s, cstring p_k);
150
616915dd 151static void usymtab_printAllAux (usymtab p_s) /*@modifies g_msgstream@*/ ;
152static int usymtab_getIndex (/*@notnull@*/ usymtab p_s, cstring p_k);
153static /*@exposed@*/ uentry usymtab_fetchIndex (/*@notnull@*/ usymtab p_s, int p_i);
154static /*@exposed@*/ uentry
155 usymtab_lookupAux (usymtab p_s, cstring p_k);
156static /*@exposed@*/ /*@dependent@*/ /*@notnull@*/ usymtab
157 usymtab_getFileTab (void) /*@globals filetab@*/ ;
158static int refTable_lookup (/*@notnull@*/ usymtab p_ut, int p_level, int p_index);
159static bool usymtab_mustBreak (usymtab p_s);
160static bool usymtab_mustEscape (usymtab p_s);
161
162static void recordFunctionType (uentry ue)
163{
7ebcc5bb 164 llassert (uentry_isDatatype (ue) || uentry_isAnyTag (ue)
616915dd 165 || uentry_isEnumConstant (ue));
7ebcc5bb 166 DPRINTF (("Function type: %s", uentry_unparseFull (ue)));
616915dd 167 /*@-temptrans@*/
168 functypes = uentryList_add (functypes, ue);
169 /*@=temptrans@*/
170}
171
172static void clearFunctionTypes (void)
173 /*@modifies globtab@*/
174{
175 uentryList_elements (functypes, el)
176 {
177 if (cstring_isDefined (uentry_rawName (el)))
178 {
28bf4b0b 179 if (cstringTable_isDefined (globtab->htable))
616915dd 180 {
28bf4b0b 181 cstringTable_remove (globtab->htable, uentry_rawName (el));
616915dd 182 }
183
184 uentry_setName (el, cstring_undefined);
185 }
186
187 /*@access uentry@*/
188 llassert (uentry_isValid (el));
189 el->sref = sRef_undefined;
190 /*@noaccess uentry@*/
191 } end_uentryList_elements ;
192
193 uentryList_clear (functypes);
194}
195
196static /*@falsenull@*/ bool usymtab_isBranch (usymtab u)
197{
198 return (usymtab_isDefined (u) &&
199 (u->kind == US_TBRANCH || u->kind == US_FBRANCH
200 || u->kind == US_CBRANCH || u->kind == US_SWITCH));
201}
202
203static bool usymtab_mustBreak (usymtab s)
204{
205 llassert (s != GLOBAL_ENV);
206 return (s->mustBreak);
207}
208
209static bool usymtab_mustEscape (usymtab s)
210{
211 llassert (s != GLOBAL_ENV);
212 return (exitkind_mustEscape (s->exitCode));
213}
214
215void usymtab_setMustBreak ()
216 /*@modifies utab@*/
217{
218 llassert (utab != GLOBAL_ENV);
219 utab->mustBreak = TRUE;
220}
221
222void usymtab_setExitCode (exitkind ex)
223 /*@modifies utab@*/
224{
225 llassert (utab != GLOBAL_ENV);
226
227 utab->exitCode = ex;
228
229 if (exitkind_mustEscape (ex))
230 {
231 utab->mustBreak = TRUE;
232 }
233}
234
28bf4b0b 235bool usymtab_isAltDefinitelyNullDeep (sRef s)
616915dd 236{
28bf4b0b 237 return (sRef_deepPred (usymtab_isAltDefinitelyNull, s));
616915dd 238}
239
28bf4b0b 240static bool usymtab_isAltDefinitelyNull (sRef s)
616915dd 241 /*@globals utab@*/
242{
243 guardSet t;
244 bool res;
245
246 t = utab->guards;
247
248 llassert (utab->env != NULL);
249
250 /*@-mods@*/ /* These modifications are cancelled. */
251 utab->guards = utab->env->guards;
252 utab->env->guards = t;
253 /*@=mods@*/
254
255 llassert (usymtab_isDefined (utab));
28bf4b0b 256 res = usymtab_isDefinitelyNull (s);
616915dd 257
258 /*
259 ** This reports a spurious error. It is okay, because of
260 ** the nesting relationship of usymtab environments.
261 */
262
263 /*@-mods@*/ /* Cancelling modifications. */
264 /*@i1@*/ utab->env->guards = utab->guards;
265 /*@i1@*/ utab->guards = t;
266 /*@=mods@*/
267
268 return res;
269}
270
271static /*@notnull@*/ /*@special@*/ usymtab
272 usymtab_create (uskind kind, /*@keep@*/ usymtab env, bool nextlevel)
273 /*@defines result@*/
274 /*@post:isnull result->htable, result->guards, result->aliases@*/
275{
276 usymtab t = (usymtab) dmalloc (sizeof (*t));
277
278 t->nentries = 0;
279 t->nspace = CBASESIZE;
280 t->entries = (uentry *) dmalloc (sizeof (*t->entries) * CBASESIZE);
28bf4b0b 281
282 /* We only use a reftable for branch-level symbol tables.
283 */
284
616915dd 285 t->reftable = (nextlevel
286 ? NULL
287 : (refentry *) dmalloc (sizeof (*t->reftable) * CBASESIZE));
288
289 t->kind = kind;
290 t->lexlevel = (env == GLOBAL_ENV ? 0 : env->lexlevel) + (nextlevel ? 1 : 0);
28bf4b0b 291
616915dd 292 t->env = env;
293 t->htable = NULL;
294
295 t->guards = guardSet_undefined;
296 t->aliases = aliasTable_undefined;
297
28bf4b0b 298 t->mustBreak = FALSE;
616915dd 299 t->exitCode = XK_NEVERESCAPE;
28bf4b0b 300
616915dd 301 return t;
302}
303
304/*
305** constructors
306*/
307
308static /*@only@*/ /*@notnull@*/ usymtab
309 usymtab_createRoot (void) /*@modifies nothing@*/
310{
311 usymtab u = (usymtab) dmalloc (sizeof (*u));
312
313 u->nentries = 0;
314 u->nspace = CGLOBBASESIZE;
315 u->entries = (uentry *) dmalloc (sizeof (*u->entries) * CGLOBBASESIZE);
316 u->env = GLOBAL_ENV;
317 u->lexlevel = 0;
28bf4b0b 318 u->htable = cstringTable_create (CGLOBHASHSIZE);
616915dd 319 u->reftable = NULL;
28bf4b0b 320
616915dd 321 u->guards = guardSet_new ();
322 u->aliases = aliasTable_new ();
323
324 u->mustBreak = FALSE;
325 u->exitCode = XK_NEVERESCAPE;
326 u->kind = US_NORMAL;
327
28bf4b0b 328 return (u);
616915dd 329}
330
331void
332usymtab_initMod (void)
333 /*@globals undef utab, undef oldtab, undef globtab, undef filetab @*/
334 /*@modifies utab, globtab, filetab, oldtab @*/
335{
336 utab = usymtab_createRoot ();
337 globtab = utab;
338 filetab = usymtab_undefined;
339 oldtab = usymtab_undefined;
340}
341
28bf4b0b 342
343void
344usymtab_initGlobalMarker () /*@globals globtab@*/
345{
346 if (uentry_isValid (usymtab_lookupAux (globtab, GLOBAL_MARKER_NAME)))
347 {
348 ; /* Already entered from load table. */
349 }
350 else
351 {
352 usymtab_addGlobalEntry (uentry_makeGlobalMarker ());
353 }
354}
355
616915dd 356/*
357** utab should be empty? (requires?)
358**
359** Adds bool types to symbol table (these are built in for now)
360** Only do this is there is no library!
361*/
362
363void
364usymtab_initBool ()
365{
366 if (context_getFlag (FLG_NOLIB))
367 {
368 ctype boolt = ctype_bool;
369 /* evs 2000-07-24: bool is now treated as abstract (always) */
370
371 uentry boolentry = uentry_makeBoolDatatype (YES);
372 usymtab_supGlobalEntry (boolentry);
373 context_addBoolAccess ();
374
375 /*
376 ** We supply values 0 and 1 for the constants, so things like
377 ** while (TRUE) can be interpreted correctly.
378 */
379
380 usymtab_supGlobalEntry
5e211f69 381 (uentry_makeConstantValue (context_getFalseName (), boolt,
382 fileloc_getBuiltin (), FALSE,
383 multiVal_makeInt (0)));
3e3ec469 384
616915dd 385 usymtab_supGlobalEntry
5e211f69 386 (uentry_makeConstantValue (context_getTrueName (), boolt,
387 fileloc_getBuiltin (), FALSE,
388 multiVal_makeInt (1)));
616915dd 389 }
390}
391
392/*
393** mutators
394*/
395
396static void
397usymtab_grow (/*@notnull@*/ usymtab s)
398{
399 int i;
400 o_uentry *oldsyms = s->entries;
401
402 s->nspace = CBASESIZE;
403 s->entries = (uentry *) dmalloc (sizeof (*s->entries)
404 * (s->nentries + s->nspace));
405
406 for (i = 0; i < s->nentries; i++)
407 {
408 s->entries[i] = oldsyms[i];
409 }
410
411 sfree (oldsyms);
412
413 if (s->reftable != NULL)
414 {
415 refTable oldRefs = s->reftable;
416
417 s->reftable = (refentry *) dmalloc (sizeof (*s->reftable)
418 * (s->nentries + CBASESIZE + 1));
419
420 for (i = 0; i < s->nentries; i++)
421 {
422 s->reftable[i] = oldRefs[i];
423 }
424
425 /*@-compdestroy@*/
426 sfree (oldRefs);
427 /*@=compdestroy@*/
428 }
429
430}
431
432static void
433usymtab_addEntryQuiet (/*@notnull@*/ usymtab s, /*@keep@*/ uentry e)
434{
435 if (!(s->lexlevel > fileScope || !sRef_modInFunction ()))
436 {
437 if (uentry_isDatatype (e)
438 || uentry_isFunction (e)
439 || uentry_isAnyTag (e)
440 || uentry_isEnumConstant (e)
441 || context_inMacro ())
442 {
443 /*
444 ** Not a bug. Code like,
445 ** int f (void) { typedef int tint; ... }
446 ** is legal.
447 */
448
449 /* was nothing here! */
450 /*@i@*/ e->sref = sRef_saveCopy (e->sref);
451 }
452 else
453 {
454 llparseerror
455 (cstring_makeLiteral ("Declaration outside function scope"));
456
457 llcontbug (message ("usymtab_addEntryQuiet: inconsistent state "
458 "(lexlevel = %d, modFunction = %s) adding: %q",
459 s->lexlevel, bool_unparse (sRef_modInFunction ()),
460 uentry_unparse (e)));
461 sRef_setGlobalScope ();
462 /* make sure the sRef is not bashed! */
463 /*@i@*/ e->sref = sRef_saveCopy (e->sref);
464 }
465 }
466
467 if (s->nspace <= 0)
468 {
469 usymtab_grow (s);
470 }
471
472 s->nspace--;
473 s->entries[s->nentries] = e;
474
475# ifdef DOANNOTS
476 if (s == globtab || s == filetab)
477 {
478 if (!fileloc_isLib (g_currentloc))
479 {
480 uentry_tallyAnnots (e, AN_UNKNOWN);
481 }
482 }
483# endif
484
28bf4b0b 485 if (cstringTable_isDefined (s->htable))
616915dd 486 {
28bf4b0b 487 cstringTable_insert (s->htable, cstring_copy (uentry_rawName (e)), s->nentries);
616915dd 488 }
489
490 s->nentries++;
491}
492
493static /*@observer@*/ uentry /*@alt void@*/
494usymtab_addEntryBase (/*@notnull@*/ usymtab s, /*@only@*/ uentry e)
495{
496 /*
497 ** In theory, we shouldn't need this test because it this is
498 ** only called when a library is being read, and it shouldn't
499 ** ever have a duplicate entry. In practice, its safer to
500 ** leave it in, though.
501 */
502
503 uentry old;
504
505 if (uentry_isValid (old = usymtab_lookupQuiet (s, uentry_rawName (e))))
506 {
507 DPRINTF (("Duplicate entry: %s", uentry_unparse (e)));
508 uentry_free (e); /* duplicate */
509 return old;
510 }
511 else
512 {
513 int thisentry = s->nentries;
514
515 if (uentry_isVar (e))
516 {
517 uentry_setSref (e, sRef_makeCvar (globScope, thisentry,
6970c11b 518 uentry_getType (e),
519 stateInfo_makeLoc (uentry_whereLast (e))));
616915dd 520 }
521
522 usymtab_addEntryQuiet (s, e);
523 return e;
524 }
525}
526
28bf4b0b 527
528static /*@observer@*/ uentry /*@alt void@*/
529usymtab_addEntryAlways (/*@notnull@*/ usymtab s, /*@only@*/ uentry e)
530{
531 /*
532 ** In theory, we shouldn't need this test because it this is
533 ** only called when a library is being read, and it shouldn't
534 ** ever have a duplicate entry. In practice, its safer to
535 ** leave it in, though.
536 */
537
538 uentry old;
539 int thisentry = s->nentries;
540
541 if (uentry_isValid (old = usymtab_lookupQuiet (s, uentry_rawName (e))))
542 {
543 llcontbug
544 (message ("Duplicate entry in load library: %s. "
545 "Old entry: %q. New entry: %q",
546 uentry_rawName (e),
547 uentry_unparseFull (old),
548 uentry_unparseFull (e)));
549
550 uentry_setName (e, message ("__x_%s", uentry_rawName (e)));
551 /* This shouldn't happen...unless the library is bad! */
552 }
553
554
555 if (uentry_isVar (e) && !uentry_isGlobalMarker (e))
556 {
557 uentry_setSref (e, sRef_makeCvar (globScope, thisentry,
6970c11b 558 uentry_getType (e),
559 stateInfo_makeLoc (uentry_whereLast (e))));
28bf4b0b 560 }
561
562 usymtab_addEntryQuiet (s, e);
563 return e;
564}
565
616915dd 566static usymId
567usymtab_addEntryAux (/*@notnull@*/ usymtab st, /*@keep@*/ uentry e, bool isSref)
568 /*@globals globtab@*/
569 /*@modifies st, e@*/
570{
571 usymId thisentry = st->nentries;
572
573 llassert (!uentry_isElipsisMarker (e));
574
575 /*
576 ** not true for tags
577 ** llassert (usymtab_lookupSafe (uentry_rawName (e)) == uentry_undefined);
578 **/
579
580 llassertprint (uentry_isAnyTag (e) ? st == globtab : TRUE,
581 ("non-global tag: %s / %d", uentry_unparseFull (e), st->lexlevel));
582
583 if (st->lexlevel == fileScope
584 && (!(uentry_isStatic (e)) || uentry_isAnyTag (e)))
585 {
586 st = globtab;
587 }
588
589 if (isSref)
590 {
591 ctype ct = uentry_getType (e);
592
593 if (uentry_isFunction (e) && ctype_isFunction (ct))
594 {
28bf4b0b 595 ct = ctype_getReturnType (ct);
616915dd 596 }
597
598 if (uentry_isStatic (e))
599 {
6970c11b 600 sRef sr = sRef_makeCvar (st->lexlevel, thisentry, ct, stateInfo_makeLoc (uentry_whereLast (e)));
616915dd 601
602 if (sRef_isStack (sr) || sRef_isLocalState (sr))
603 {
604 sRef_setAliasKind (sr, AK_STATIC, uentry_whereLast (e));
605 sRef_setDefined (sr, uentry_whereLast (e));
606 }
607
608 uentry_setSref (e, sr);
609 }
610 else
611 {
6970c11b 612 uentry_setSref (e, sRef_makeCvar (st->lexlevel, thisentry, ct, stateInfo_makeLoc (uentry_whereLast (e))));
616915dd 613 }
6970c11b 614 }
616915dd 615
616 if (uentry_isDatatype (e))
617 {
618
619 uentry_setDatatype (e, thisentry);
620 }
621
622 if (uentry_isFunction (e))
623 {
624 ctype ct = uentry_getType (e);
625
626 if (ctype_isFunction (ct)
627 && uentryList_isMissingParams (ctype_argsFunction (ct)))
628 {
629 if (uentry_isDeclared (e))
630 {
631 voptgenerror
632 (FLG_NOPARAMS,
633 message ("Function %q declared without parameter list",
634 uentry_getName (e)),
635 uentry_whereDeclared (e));
636 }
637 else
638 {
639 voptgenerror
640 (FLG_NOPARAMS,
641 message ("Function %q specified without parameter list",
642 uentry_getName (e)),
643 uentry_whereSpecified (e));
644 }
645 }
646 }
647
648 if (st == globtab && !uentry_isSpecified (e))
649 {
650 exprChecks_checkExport (e);
651 }
652
616915dd 653 uentry_checkName (e);
654
655 usymtab_addEntryQuiet (st, e);
28bf4b0b 656 DPRINTF (("Adding entry: [%p] %s", e, uentry_unparseFull (e)));
616915dd 657 return (thisentry);
658}
659
660usymId
661usymtab_addEntry (uentry e)
662 /*@globals utab, globtab@*/
663 /*@modifies utab, e@*/
28bf4b0b 664{
616915dd 665 llassertprint (!usymtab_exists (uentry_rawName (e)),
666 ("Entry already exists: %s", uentry_unparse (e)));
667
668 return usymtab_addEntryAux (utab, e, FALSE);
669}
670
671void
672usymtab_addGlobalEntry (uentry e)
673 /*@modifies globtab, e@*/
674{
675 DPRINTF (("Add global: %s / %s", uentry_unparse (e), bool_unparse (uentry_isForward (e))));
676
677 (void) usymtab_addEntryAux (globtab, e, FALSE);
678}
679
680/*
681** supercede and replace entry use elements of entries array, and
682** assign an element to a new value, and then free the old value.
683** Need -deparrays to avoid errors for this.
684*/
685
686/*@-deparrays@*/
687
688static usymId
689usymtab_supEntryAux (/*@notnull@*/ usymtab st,
690 /*@only@*/ uentry e, bool isSref)
691 /*@globals globtab, filetab@*/
692 /*@modifies st, globtab, e@*/
693{
694 cstring ename = uentry_rawName (e);
695 bool staticEntry = FALSE;
696 int eindex;
697
28bf4b0b 698 DPRINTF (("Sup entry aux: %s", uentry_unparseFull (e)));
699
616915dd 700 /* static tags in global scope */
701 if (st->lexlevel == fileScope
702 && (!(uentry_isStatic (e)) || uentry_isAnyTag (e)))
703 {
704 eindex = usymtab_getIndex (st, ename);
705
706 if (eindex != NOT_FOUND)
707 {
708 uentry ce = st->entries[eindex];
709
710 if (optgenerror
711 (FLG_SHADOW,
712 message ("%s %q shadows static declaration",
713 ekind_capName (uentry_getKind (e)),
714 uentry_getName (e)),
715 uentry_whereDeclared (e)))
716 {
717 uentry_showWhereLast (ce);
718 }
719
720 if (eindex == st->nentries - 1)
721 {
722 ;
723 }
724 else
725 {
726 st->entries[eindex] = st->entries[st->nentries - 1];
727 }
728
28bf4b0b 729 if (cstringTable_isDefined (st->htable))
616915dd 730 {
28bf4b0b 731 cstringTable_replaceKey (st->htable, uentry_rawName (ce),
732 cstring_copy (uentry_rawName (e)));
616915dd 733 }
734
735 uentry_free (ce);
736 st->nentries--;
737 }
738
739 st = globtab;
740 }
741
742 if (uentry_isStatic (e)) {
743 if (uentry_isFunction (e)) {
28bf4b0b 744 /*
745 ** Static function declarations are at the file level,
746 ** even if they are in a deeper scope.
747 */
748
616915dd 749 st = usymtab_getFileTab ();
750 staticEntry = TRUE;
751 } else {
752 if (!uentry_isAnyTag (e) && st == globtab)
753 {
754 st = usymtab_getFileTab ();
755 staticEntry = TRUE;
756 DPRINTF (("Static entry!"));
757 }
758 }
759 }
760
761 DPRINTF (("Using symtab: %s", usymtab_unparseLocalAux (st)));
762
763 eindex = usymtab_getIndex (st, ename);
764
765 if (eindex != NOT_FOUND)
766 {
767 uentry ce = st->entries[eindex];
28bf4b0b 768
616915dd 769 DPRINTF (("Found entry: %s", uentry_unparse (ce)));
770
771 if (uentry_isPriv (ce)
772 /* || (fileloc_isImport (uentry_whereSpecified (ce))) */
773 || (uentry_isStatic (ce)
774 && uentry_isAnyTag (ce)
775 && (uentry_isDeclared (ce)
776 && !fileloc_sameFile (uentry_whereDefined (ce),
777 uentry_whereDefined (e)))))
778 {
779 /*
780 ** overload entry
781 ** if overloading import should do some checks!
782 */
783
784 llassert ((st->lexlevel > fileScope || !sRef_modInFunction ()));
785
28bf4b0b 786 DPRINTF (("Overloading!"));
787
616915dd 788 st->entries[eindex] = e;
789
790 if (uentry_isDatatype (e))
791 {
792 uentry_setDatatype (e, eindex);
793 }
794
795 if (st == globtab && !uentry_isSpecified (e))
796 {
797 exprChecks_checkExport (e);
798 }
799
28bf4b0b 800 if (cstringTable_isDefined (st->htable))
616915dd 801 {
28bf4b0b 802 cstringTable_replaceKey (st->htable, uentry_rawName (ce),
803 cstring_copy (uentry_rawName (e)));
616915dd 804 }
805
806 uentry_free (ce);
807 ce = e;
808 }
809 else if (uentry_isSpecified (ce))
810 {
811 if (uentry_isSpecified (e))
812 {
28bf4b0b 813 DPRINTF (("Here we are: %s", uentry_unparseFull (e)));
814
616915dd 815 if (fileloc_isImport (uentry_whereSpecified (ce)))
28bf4b0b 816 {
817 if (cstringTable_isDefined (st->htable))
616915dd 818 {
28bf4b0b 819 cstringTable_replaceKey (st->htable,
820 uentry_rawName (ce),
821 cstring_copy (uentry_rawName (e)));
616915dd 822 }
823
824 uentry_free (ce);
825 st->entries[eindex] = e;
826 ce = e;
827
828 if (uentry_isDatatype (e)) uentry_setDatatype (e, eindex);
829 }
830 else
831 {
832 if (fileloc_isImport (uentry_whereSpecified (e)))
833 {
834 uentry_free (e);
835 }
836 else
837 {
28bf4b0b 838 /* Respecification errors already reported */
839 DPRINTF (("Respecification: %s / %s",
840 fileloc_unparse (uentry_whereSpecified (e)),
841 bool_unparse (fileloc_isSpec (uentry_whereSpecified (e)))));
842
616915dd 843 if (uentry_isDatatype (e))
844 {
845 uentry_setDatatype (e, eindex);
846 }
847
28bf4b0b 848 if (cstringTable_isDefined (st->htable))
616915dd 849 {
28bf4b0b 850 cstringTable_replaceKey (st->htable,
851 uentry_rawName (ce),
852 cstring_copy (uentry_rawName (e)));
616915dd 853 }
854
855 llassert ((st->lexlevel > fileScope || !sRef_modInFunction ()));
856 uentry_free (ce);
857 st->entries[eindex] = e;
858 ce = e;
859 }
860 }
861 }
862 else /* e not specified */
863 {
28bf4b0b 864 DPRINTF (("Merging..."));
865
616915dd 866 if (uentry_isDeclared (ce))
867 {
1d239d69 868 /* evans 2001-08-26
869 No - this can happen for internal typedefs
870 llassert ((st->lexlevel > fileScope || !sRef_modInFunction ()));
871 */
872
28bf4b0b 873 DPRINTF (("Merge defn"));
616915dd 874 uentry_mergeDefinition (ce, e);
875 }
876 else
877 {
1d239d69 878 /* evans 2001-08-26
879 No - this can happen for internal typedefs
880 llassert ((st->lexlevel > fileScope || !sRef_modInFunction ()));
881 */
882
28bf4b0b 883 DPRINTF (("Merge entries..."));
616915dd 884 uentry_mergeEntries (ce, e);
28bf4b0b 885 DPRINTF (("After: %s", uentry_unparseFull (ce)));
616915dd 886 }
887 }
888 }
889 else /* ce not specified */
890 {
891 if (!(st->lexlevel > fileScope || !sRef_modInFunction ()))
892 {
893 if (uentry_isDatatype (e) || uentry_isAnyTag (e)
894 || uentry_isEnumConstant (e))
895 {
896 ; /*
897 ** Not a bug. Code like,
898 ** int f (void) { typedef int tint; ... }
899 ** is legal.
900 */
901 }
902 else
903 {
904 llcontbug (message ("usymtab_supEntryAux: inconsistent state "
905 "(lexlevel = %d, modFunction = %s) adding: %q",
906 st->lexlevel, bool_unparse (sRef_modInFunction ()),
907 uentry_unparse (e)));
908
909 if (sRef_modInFunction ())
910 {
911 /* make sure the sRef is not bashed! */
912 /*@i@*/ e->sref = sRef_saveCopy (e->sref);
913 }
914 }
915 }
916
28bf4b0b 917 DPRINTF (("Merge.."));
616915dd 918 uentry_mergeDefinition (ce, e);
919 }
920
921 if (isSref)
922 {
923 ctype ct = uentry_getType (ce);
924
925 if (uentry_isFunction (ce) && ctype_isFunction (ct))
926 {
28bf4b0b 927 ct = ctype_getReturnType (ct);
616915dd 928 }
929
6970c11b 930 uentry_setSref (ce, sRef_makeCvar (st->lexlevel, eindex, ct, stateInfo_makeLoc (uentry_whereLast (ce))));
931 }
616915dd 932 }
933 else /* no previous entry */
934 {
935 uentry outer;
936
937 if (st->lexlevel == globScope
938 && !uentry_isStatic (e)
939 && !uentry_isExtern (e)
940 && usymtab_isDefined (filetab))
941 {
942 /*
943 ** check if there is a static entry: (i.e.,
944 **
945 ** static int f ();
946 ** ...
947 ** int f ();
948 */
949
950 eindex = usymtab_getIndex (filetab, ename);
951
952 if (eindex != NOT_FOUND)
953 {
954 uentry ce = filetab->entries[eindex];
955
956 uentry_setStatic (e);
957 uentry_mergeDefinition (ce, e);
958 staticEntry = TRUE;
959 goto exitPoint;
960 }
961 }
962
963 outer = usymtab_lookupQuiet (st->env, ename);
964
7ebcc5bb 965 DPRINTF (("New : [%p] %s", e, uentry_unparseFull (e)));
966 DPRINTF (("Outer: [%p] %s", outer, uentry_unparseFull (outer)));
967
616915dd 968 /*
969 ** no previous definition, add the new one
970 */
971
972 if (!noshadowerror
973 && uentry_isValid (outer)
974 && !(uentry_isYield (e) || uentry_isYield (outer))
975 && fileloc_isDefined (uentry_whereLast (e))
ccf0a4a8 976 && !fileloc_isXHFile (uentry_whereLast (e))
977 && fileloc_isDefined (uentry_whereLast (outer))
978 && !fileloc_isXHFile (uentry_whereLast (outer)))
616915dd 979 {
980 if (!uentry_sameKind (outer, e))
981 {
982 ; /* no error */
983 }
984 else
985 {
986 if (ctype_isUnknown (uentry_getType (outer))
987 || uentry_isForward (outer))
988 {
989 ;
990 }
991 else
992 {
993 if (optgenerror
994 (FLG_SHADOW,
995 message ("%s %q shadows outer declaration",
996 ekind_capName (uentry_getKind (e)),
997 uentry_getName (e)),
998 uentry_whereLast (e)))
999 {
1000 uentry_showWhereLast (outer);
1001 }
1002 }
1003 }
1004 }
1005
1006 if (st == globtab && context_getFlag (FLG_NEWDECL))
1007 {
1008 voptgenerror
1009 (FLG_NEWDECL,
1010 message ("New declaration: %q", uentry_getName (e)),
1011 uentry_whereLast (e));
1012 }
1013
1014 eindex = usymtab_addEntryAux (st, e, isSref);
1015 }
1016
1017 exitPoint:
1018 return (staticEntry ? USYMIDINVALID : eindex);
1019}
1020
1021# ifndef NOLCL
1022static void
1023usymtab_replaceEntryAux (/*@notnull@*/ usymtab st, /*@only@*/ uentry e)
1024 /*@globals globtab@*/ /*@modifies st, e@*/
1025{
1026 cstring ename = uentry_rawName (e);
1027 int eindex;
1028
1029 /* static tags in global scope */
1030 eindex = usymtab_getIndex (st, ename);
1031
1032 if (eindex != NOT_FOUND)
1033 {
1034 uentry ce = st->entries[eindex];
1035
28bf4b0b 1036 if (cstringTable_isDefined (st->htable))
616915dd 1037 {
28bf4b0b 1038 cstringTable_replaceKey (st->htable, uentry_rawName (ce),
1039 cstring_copy (uentry_rawName (e)));
616915dd 1040 }
1041
1042 uentry_free (ce);
1043 st->entries[eindex] = e;
1044 }
1045 else
1046 {
1047 eindex = usymtab_addEntryAux (st, e, FALSE);
1048 }
1049}
1050# endif
1051
1052/*@=deparrays@*/
1053
1054void usymtab_supEntry (uentry e)
1055 /*@globals utab, filetab, globtab@*/
1056 /*@modifies utab, globtab, e@*/
1057{
1058 (void) usymtab_supEntryAux (utab, e, FALSE);
1059}
1060
1061/*
1062** this should be lots more efficient!
1063*/
1064
1065static /*@exposed@*/ uentry
1066 usymtab_supEntryReturnAux (/*@notnull@*/ usymtab tab,
1067 /*@only@*/ uentry e, bool isref)
1068 /*@globals globtab, filetab@*/
1069 /*@modifies tab, globtab, e@*/
1070{
1071 cstring rawName = cstring_copy (uentry_rawName (e));
1072 bool stat = (tab == globtab) && uentry_isStatic (e);
1073 uentry ret;
1074
616915dd 1075 (void) usymtab_supEntryAux (tab, e, isref);
1076
1077 if (stat)
1078 {
1079 ret = usymtab_lookupAux (filetab, rawName);
1080 }
1081 else
1082 {
1083 ret = usymtab_lookupAux (tab, rawName);
1084
1085 if (uentry_isInvalid (ret) && usymtab_isDefined (filetab))
1086 {
1087 ret = usymtab_lookupAux (filetab, rawName);
1088 }
1089 }
1090
1091 cstring_free (rawName);
1092 return ret;
1093}
1094
1095/*@dependent@*/ /*@exposed@*/ uentry
1096 usymtab_supEntryReturn (/*@only@*/ uentry e)
1097 /*@globals utab, filetab, globtab@*/
1098 /*@modifies utab, globtab, e@*/
1099{
1100 return (usymtab_supEntryReturnAux (utab, e, FALSE));
1101}
1102
1103/*@dependent@*/ /*@exposed@*/ uentry
1104 usymtab_supEntrySrefReturn (/*@only@*/ uentry e)
1105 /*@globals utab, globtab, filetab@*/
1106 /*@modifies utab, globtab, e@*/
1107{
1108 return (usymtab_supEntryReturnAux (utab, e, TRUE));
1109}
1110
1111/*@dependent@*/ /*@exposed@*/ uentry
1112 usymtab_supGlobalEntryReturn (uentry e)
1113 /*@globals globtab, filetab@*/
1114 /*@modifies globtab, e@*/
1115{
1116 uentry ret;
1117
1118 ret = usymtab_supEntryReturnAux (globtab, e, FALSE);
1119
7ebcc5bb 1120 /*
1121 ** We need to keep track of internal function declarations, so
1122 ** we can remove them from the symbol table after exiting this
1123 ** function. This is a bit bogus, of course.
1124 */
1125
616915dd 1126 if (sRef_modInFunction ())
1127 {
1128 recordFunctionType (ret);
1129 }
1130
1131 return (ret);
1132}
1133
1134ctype
1135usymtab_supTypeEntry (/*@only@*/ uentry e)
1136 /*@globals globtab, filetab@*/
1137 /*@modifies globtab, e@*/
1138{
1139 usymId uid;
1140 ctype ret;
1141
1142 if (uentry_isAbstractDatatype (e))
1143 {
1144 uid = usymtab_supAbstractTypeEntry (e, FALSE);
1145 ret = ctype_createAbstract (uid);
1146 }
1147 else
1148 {
1149 uid = usymtab_supEntryAux (globtab, e, FALSE);
1150 ret = ctype_createUser (uid);
1151 }
1152
1153 if (sRef_modInFunction ())
1154 {
1155 recordFunctionType (globtab->entries[uid]);
1156 }
1157
1158 return ret;
1159}
1160
1161uentry
1162usymtab_supReturnTypeEntry (/*@only@*/ uentry e)
1163 /*@globals globtab, filetab@*/
1164 /*@modifies globtab@*/
1165{
1166 usymId uid;
28bf4b0b 1167
1168 DPRINTF (("Abstract? %s", uentry_unparseFull (e)));
1169
616915dd 1170 if (uentry_isAbstractDatatype (e))
1171 {
1172 uid = usymtab_supAbstractTypeEntry (e, FALSE);
1173 }
28bf4b0b 1174 else if (uentry_isMaybeAbstract (e) && context_getFlag (FLG_IMPABSTRACT))
1175 {
1176 bool maybeabs = TRUE;
1177 cstring sname = uentry_getName (e);
1178 uentry ue = usymtab_lookupGlobSafe (sname);
1179 cstring_free (sname);
1180
1181 if (uentry_isValid (ue))
1182 {
1183 DPRINTF (("Lookup: %s", uentry_unparseFull (ue)));
1184
1185 if (uentry_isDatatype (ue))
1186 {
1187 if (uentry_isMaybeAbstract (ue))
1188 {
1189 ;
1190 }
1191 else
1192 {
1193 maybeabs = FALSE;
1194 }
1195 }
1196 else
1197 {
1198 DPRINTF (("Not datatype!"));
1199 }
1200 }
1201
1202 if (maybeabs)
1203 {
1204 uentry ux;
1205 uid = usymtab_supAbstractTypeEntry (e, FALSE);
1206 ux = usymtab_getTypeEntry (uid);
1207 uentry_setAbstract (ux);
1208 }
1209 else
1210 {
1211 uid = usymtab_supEntryAux (globtab, e, FALSE);
1212 e = usymtab_getTypeEntry (uid);
1213
1214 if (uentry_isMaybeAbstract (e))
1215 {
1216 uentry_setConcrete (e);
1217 }
1218 }
1219 }
616915dd 1220 else
1221 {
1222 uid = usymtab_supEntryAux (globtab, e, FALSE);
28bf4b0b 1223 e = usymtab_getTypeEntry (uid);
1224
1225 if (uentry_isMaybeAbstract (e))
1226 {
1227 uentry_setConcrete (e);
1228 }
616915dd 1229 }
1230
1231 if (sRef_modInFunction ())
1232 {
1233 recordFunctionType (globtab->entries[uid]);
1234 }
1235
1236 return (globtab->entries[uid]);
1237}
1238
1239usymId
1240usymtab_supAbstractTypeEntry (/*@only@*/ uentry e, bool dodef)
1241 /*@globals globtab, filetab@*/
1242 /*@modifies globtab, e@*/
1243{
1244 usymId uid;
28bf4b0b 1245 uentry ue;
1246
616915dd 1247 uid = usymtab_supEntryAux (globtab, e, FALSE);
28bf4b0b 1248 ue = usymtab_getTypeEntry (uid);
616915dd 1249
1250 if (dodef)
1251 {
616915dd 1252 uentry_setDatatype (ue, uid);
1253 }
1254
28bf4b0b 1255 if (context_getFlag (FLG_ACCESSMODULE)) /* was accessfile */
616915dd 1256 {
1257 context_addFileAccessType (uid);
1258 }
1259
1260 if (sRef_modInFunction ())
1261 {
1262 recordFunctionType (globtab->entries[uid]);
1263 }
1264
1265 return (uid);
1266}
1267
1268# ifndef NOLCL
1269usymId
1270usymtab_supExposedTypeEntry (/*@only@*/ uentry e, bool dodef)
1271 /*@globals globtab, filetab@*/
1272 /*@modifies globtab, e@*/
1273{
1274 usymId uid;
1275
1276 uid = usymtab_supEntryAux (globtab, e, FALSE);
1277
1278 if (dodef)
1279 {
1280 uentry ue = usymtab_getTypeEntry (uid);
1281
1282 uentry_setDatatype (ue, uid);
1283 }
1284
1285 if (sRef_modInFunction ())
1286 {
1287 recordFunctionType (globtab->entries[uid]);
1288 }
1289
1290 return (uid);
1291}
1292# endif
1293
1294ctype
1295usymtab_supForwardTypeEntry (/*@only@*/ uentry e)
1296 /*@globals globtab, filetab@*/
1297 /*@modifies globtab, e@*/
1298{
1299 usymId uid = usymtab_supEntryAux (globtab, e, FALSE);
1300 uentry ue = usymtab_getTypeEntry (uid);
1301
1302 uentry_setDatatype (ue, uid);
1303
1304 if (sRef_modInFunction ())
1305 {
1306 recordFunctionType (globtab->entries[uid]);
1307 }
1308
1309 return (uentry_getAbstractType (ue));
1310}
1311
1312void
1313 usymtab_supEntrySref (uentry e)
1314 /*@globals utab, globtab, filetab@*/
1315 /*@modifies utab, globtab, e@*/
1316{
1317 sRef old = uentry_getSref (e);
1318
1319
1320 if (sRef_isType (old))
1321 {
1322 uentry ue = usymtab_supEntryReturnAux (utab, e, TRUE);
1323
1324 /*@access uentry@*/
1325 if (uentry_isValid (ue))
1326 {
1327 sRef uref = uentry_getSref (ue);
1328
1329 sRef_mergeStateQuiet (uref, old);
1330 sRef_clearDerived (uref);
1331 }
1332 /*@noaccess uentry@*/
1333 }
1334 else if (sRef_isKnown (old))
1335 {
1336 usymtab_supEntry (e);
1337 }
1338 else
1339 {
1340 (void) usymtab_supEntryAux (utab, e, TRUE);
1341 }
1342}
1343
1344void usymtab_supGlobalEntry (/*@only@*/ uentry e)
1345 /*@globals globtab, filetab@*/
1346 /*@modifies globtab, filetab, e@*/
1347{
1348 usymId uid;
1349
1350 DPRINTF (("Sup global entry: %s", uentry_unparse (e)));
1351
1352 uid = usymtab_supEntryAux (globtab, e, FALSE);
1353
1354 if (sRef_modInFunction ())
1355 {
1356 recordFunctionType (globtab->entries[uid]);
1357 }
1358}
1359
1360uentry
1361 usymtab_supReturnFileEntry (/*@only@*/ uentry e)
1362 /*@globals filetab, globtab@*/
1363 /*@modifies filetab, globtab, e@*/
1364{
1365 llassert (filetab != usymtab_undefined);
1366 DPRINTF (("File entry: %s", uentry_unparse (e)));
1367 return (usymtab_supEntryReturnAux (filetab, e, FALSE));
1368}
1369
1370/*
1371** observers
1372*/
1373
1374bool
1375usymtab_inDeepScope () /*@globals utab@*/
1376{
1377 return (utab->lexlevel > paramsScope);
1378}
1379
1380static int
1381usymtab_getIndex (/*@notnull@*/ usymtab s, cstring k)
1382{
1383 int i;
1384
28bf4b0b 1385 DPRINTF (("Lookup %s", k));
616915dd 1386
28bf4b0b 1387 if (cstringTable_isDefined (s->htable))
1388 {
1389 i = cstringTable_lookup (s->htable, k);
616915dd 1390 return i;
1391 }
1392 else
1393 {
1394 for (i = 0; i < s->nentries; i++)
1395 {
1396 uentry current = s->entries[i];
1397
28bf4b0b 1398 DPRINTF (("Check %d: %s", i, uentry_rawName (current)));
1399
616915dd 1400 if (!uentry_isUndefined (current)
1401 && cstring_equal (uentry_rawName (current), k))
1402 {
1403 return i;
1404 }
1405 }
1406
1407 return NOT_FOUND;
1408 }
1409}
1410
1411static uentry
1412usymtab_fetchIndex (/*@notnull@*/ usymtab s, int i)
1413{
1414 llassert (i >= 0 && i < s->nentries);
1415 return (s->entries[i]);
1416}
1417
1418usymId
1419usymtab_getTypeId (cstring k) /*@globals globtab@*/
1420{
1421 usymId uid = usymtab_getIndex (globtab, k);
1422
1423 if (uid == NOT_FOUND) return USYMIDINVALID;
1424
1425 if (!(uentry_isDatatype (usymtab_getTypeEntry (uid)))) {
1426 return USYMIDINVALID;
1427 }
1428
1429 return uid;
1430}
1431
1432/*@dependent@*/ uentry
1433usymtab_lookupStructTag (cstring k)
1434{
1435 cstring sname = makeStruct (k);
1436 uentry ue = usymtab_lookupGlob (sname);
28bf4b0b 1437
1438 cstring_free (sname);
616915dd 1439 return (ue);
1440}
1441
1442/*@dependent@*/ uentry
1443usymtab_lookupUnionTag (cstring k)
1444{
1445 cstring uname = makeUnion (k);
1446 uentry res = usymtab_lookupGlob (uname);
1447
1448 cstring_free (uname);
1449 return res;
1450}
1451
1452/*@dependent@*/ uentry
1453usymtab_lookupEnumTag (cstring k)
1454{
1455 cstring ename = makeEnum (k);
1456 uentry res = usymtab_lookupGlob (ename);
1457
1458 cstring_free (ename);
1459 return res;
1460}
1461
1462usymId
1463usymtab_getId (cstring k) /*@globals globtab@*/
1464{
1465 usymId uid = usymtab_getIndex (globtab, k);
1466 uentry ue;
1467
1468 if (uid == NOT_FOUND)
1469 {
1470 return USYMIDINVALID;
1471 }
1472
1473 ue = usymtab_getGlobalEntry (uid);
1474
1475 if (uentry_isPriv (ue))
1476 {
1477 return USYMIDINVALID;
1478 }
1479
1480 return uid;
1481}
1482
1483static /*@exposed@*/ uentry
1484usymtab_getEntryAux (/*@notnull@*/ usymtab s, usymId uid)
1485{
1486 llassert (uid != USYMIDINVALID);
1487
1488 if (uid < 0 || uid >= s->nentries)
1489 {
1490 llcontbug (message ("usymtab_getEntry: out of range: level = %d [%d]",
1491 s->lexlevel, uid));
1492 return uentry_undefined;
1493 }
1494
1495 llassertprint (uentry_isValid (s->entries[uid]),
1496 ("entry undefined: %d", uid));
1497
1498 return s->entries[uid];
1499}
1500
1501/*@dependent@*/ /*@observer@*/ uentry
1502 usymtab_getGlobalEntry (usymId uid)
1503 /*@globals utab, globtab@*/
1504{
1505 if (dbgfree) return (uentry_undefined);
1506
1507 if (utab->lexlevel > paramsScope)
1508 {
1509 /* need to do this the awkward way, since it could be in conditional scope */
1510 return (usymtab_lookupSafe (uentry_rawName (globtab->entries[uid])));
1511 }
1512 else
1513 {
1514 return (globtab->entries[uid]);
1515 }
1516}
1517
1518/*@dependent@*/ /*@exposed@*/ uentry
1519 usymtab_getTypeEntry (usymId uid)
1520 /*@globals globtab@*/
1521{
1522 if (dbgload)
1523 {
1524 if (uid >= 0 && uid < globtab->nentries)
1525 {
1526 return (globtab->entries[uid]);
1527 }
1528 else
1529 {
1530 return (uentry_undefined);
1531 }
1532 }
1533 else
1534 {
28bf4b0b 1535 llassert (uid >= 0 && uid < globtab->nentries);
616915dd 1536 return (globtab->entries[uid]);
1537 }
1538}
1539
1540/*
1541** in load files
1542*/
1543
1544/*@dependent@*/ /*@exposed@*/ uentry
1545 usymtab_getTypeEntrySafe (usymId uid)
1546 /*@globals globtab@*/
1547{
1548 if (uid < 0 || uid >= globtab->nentries)
1549 {
1550 return uentry_undefined;
1551 }
1552
1553 return (globtab->entries[uid]);
1554}
1555
1556bool
1557 usymtab_isBoolType (usymId uid)
1558 /*@globals globtab@*/
1559{
1560 llassert (uid >= 0 && uid < globtab->nentries);
1561
1562 return (cstring_equal (uentry_rawName (globtab->entries[uid]),
1563 context_getBoolName ()));
1564}
1565
1566cstring
1567usymtab_getTypeEntryName (usymId uid)
1568 /*@globals globtab@*/
1569{
1570 uentry ue;
1571
1572 if (dbgfree)
1573 {
1574 return (cstring_makeLiteral ("<freetype>"));
1575 }
1576
1577 ue = usymtab_getTypeEntry (uid);
1578
1579 if (dbgload && !uentry_isValid (ue))
1580 {
1581 return (message ("<missing type: %d>", uid));
1582 }
1583
1584 llassertprint (uentry_isValid (ue), ("type undefined: %d", uid));
1585
1586 return (uentry_getName (ue));
1587}
1588
8250fa4a 1589# if 0
28bf4b0b 1590/*@unused@*/ static void
616915dd 1591usymtab_rehash (/*@notnull@*/ usymtab s)
1592{
1593 int i;
1594
28bf4b0b 1595 if (cstringTable_isDefined (s->htable))
616915dd 1596 {
28bf4b0b 1597 cstringTable_free (s->htable);
616915dd 1598 }
1599
28bf4b0b 1600 s->htable = cstringTable_create (LLHASHSIZE);
616915dd 1601
1602 for (i = 0; i < s->nentries; i++)
1603 {
28bf4b0b 1604 cstringTable_insert (s->htable, cstring_copy (uentry_rawName (s->entries[i])), i);
616915dd 1605 }
1606}
8250fa4a 1607# endif
616915dd 1608
1609/*
1610** superficial copy of usymtab
1611**
1612** DO copy spec entries
1613*/
1614
1615static /*@only@*/ /*@notnull@*/ usymtab
1616usymtab_shallowCopy (/*@notnull@*/ usymtab s) /*@*/
1617{
1618 usymtab copytab = usymtab_createRoot ();
1619 int i;
1620
1621 for (i = 0; i < s->nentries; i++)
1622 {
1623 usymtab_addEntryBase (copytab, s->entries[i]);
1624 }
1625
1626 return copytab;
1627}
1628
1629static void
1630usymtab_shallowFree (/*@only@*/ /*@notnull@*/ usymtab s)
1631{
1632 aliasTable_free (s->aliases);
1633 refTable_free (s->reftable, s->nentries);
1634 sfree (s->entries);
1635 /*@-compdestroy@*/ sfree (s); /*@=compdestroy@*/
1636}
1637
1638/*
1639** converts usymId from old table to sorted one
1640*/
1641
1642usymId
1643 usymtab_convertId (usymId uid)
1644 /*@globals oldtab, utab@*/
1645{
1646 uentry ue;
1647 usymId ret;
1648 cstring name;
1649
1650 llassert (usymtab_isDefined (oldtab));
1651
1652 ue = usymtab_getEntryAux (oldtab, uid);
1653
1654 llassertprint (uentry_isValid (ue), ("convertId: undefined: %d", uid));
1655
1656 name = uentry_rawName (ue);
1657
1658 ret = usymtab_getIndex (utab, name);
28bf4b0b 1659 llassert (ret == uid); /*! for now, no rehash! */
1660 DPRINTF (("Convert: %s [%d] -> %s [%d]",
1661 uentry_unparse (ue), uid,
1662 uentry_unparse (utab->entries[ret]), ret));
616915dd 1663
1664 llassertprint (ret != USYMIDINVALID, ("convertId: return is invalid"));
1665
1666 return (ret);
1667}
1668
1669void
1670usymtab_prepareDump (void)
1671 /*@globals oldtab, utab@*/
1672 /*@modifies oldtab, utab@*/
1673{
1674 llassert (usymtab_inGlobalScope ());
616915dd 1675 llassert (oldtab == usymtab_undefined);
1676
28bf4b0b 1677 /*
1678 DPRINTF (("Preparing to dump:"));
1679 usymtab_printAll ();
1680 */
1681
616915dd 1682 oldtab = usymtab_shallowCopy (utab);
1683
1684 /*
28bf4b0b 1685 ** alpha compare - make sure order is same on different platforms
1686 ** error messages appear in same order
616915dd 1687 */
1688
28bf4b0b 1689 /*
616915dd 1690 qsort (utab->entries, (size_t)utab->nentries,
28bf4b0b 1691 sizeof (*utab->entries),
1692 (int (*)(const void *, const void *)) uentry_xcomparealpha);
1693
616915dd 1694 usymtab_rehash (utab);
28bf4b0b 1695 */
1696
1697 /*
1698 DPRINTF (("After rehash:"));
1699 usymtab_printAll ();
1700 */
616915dd 1701}
1702
28bf4b0b 1703void usymtab_dump (FILE *fout)
1704 /*@globals utab, oldtab@*/
616915dd 1705{
1706 int i;
1707 bool neednl = FALSE;
1708 uentry lastentry = uentry_undefined;
1709 ekind lastekind = KINVALID;
1710 int linelen = 0;
1711
1712 /*
1713 ** must call prepareDump first
1714 */
1715
1716 llassert (oldtab != usymtab_undefined);
1717
1718 for (i = 0; i < utab->nentries; i++)
1719 {
1720 uentry thisentry = utab->entries[i];
1721 ekind thisekind = uentry_getKind (thisentry);
1722
28bf4b0b 1723 if (!uentry_hasRealName (thisentry))
1724 {
1725 llassert (uentry_isGlobalMarker (thisentry));
1726
1727 if (neednl)
1728 {
1729 check (fputc ('\n', fout) == (int) '\n');
1730 }
1731
1732 fprintf (fout, "*%d (GlobalMarker)\n", KGLOBALMARKER);
1733 lastekind = KINVALID;
1734 linelen = 0;
1735 neednl = FALSE;
1736 }
1737 else
1738 {
1739 if (thisekind != lastekind)
1740 {
1741 if (neednl)
1742 {
1743 check (fputc ('\n', fout) == (int) '\n');
1744 }
1745
1746 neednl = FALSE;
1747 lastentry = uentry_undefined;
1748 fprintf (fout, "*%d (%s)\n", ekind_toInt (thisekind),
1749 cstring_toCharsSafe (ekind_capName (thisekind)));
1750 lastekind = thisekind;
1751 linelen = 0;
1752 }
1753
1754 /*
1755 ** evans - 2001-02-18 - added the - 48 fudge factor...
1756 ** extra characters dumped, but I haven't counded them carefully...
1757 */
1758
1759 if (uentry_isInvalid (lastentry) || !uentry_equiv (lastentry, thisentry)
1760 || (linelen > (MAX_DUMP_LINE_LENGTH - (2 * MAX_NAME_LENGTH) - 48)))
1761 {
1762 cstring cdump;
1763
1764 DPRINTF (("Dumping entry: %d", i));
1765 cdump = message ("^%d %q", i, uentry_dump (thisentry));
1766 /* was: cdump = uentry_dump (thisentry)); */
1767
1768 lastentry = thisentry;
1769 if (neednl)
1770 {
1771 check (fputc ('\n', fout) == (int) '\n');
1772 linelen = 0;
1773 }
1774
1775 linelen += cstring_length (cdump);
1776
1777 /* no new line here! */
1778 if (cstring_length (cdump) > 0)
1779 {
1780 check (fputs (cstring_toCharsSafe (cdump), fout) != EOF);
1781 }
1782
1783 cstring_free (cdump);
1784 neednl = TRUE;
1785 }
1786 else
1787 {
1788 cstring cdump = uentry_rawName (thisentry);
1789 DPRINTF (("Raw name: %s", cdump));
1790 linelen += (cstring_length (cdump) + 1);
1791 fprintf (fout, "#%s", cstring_toCharsSafe (cdump));
1792 }
1793 }
616915dd 1794 }
1795
1796 if (neednl)
1797 {
1798 check (fputc ('\n', fout) == (int) '\n');
1799 }
920a3797 1800
1801 lastekind = KINVALID;
1802
1803 fprintf(fout, ";; Library constraints\n");
1804 for (i = 0; i < utab->nentries; i++)
1805 {
1806 uentry thisentry = utab->entries[i];
1807
1808 if (uentry_isFunction (thisentry) )
1809 {
1810 constraintList preconditions;
1811 constraintList postconditions;
1812
1813 preconditions = uentry_getFcnPreconditions (thisentry);
1814 postconditions = uentry_getFcnPostconditions (thisentry);
1815
1816 if ( constraintList_isDefined(preconditions) ||
1817 constraintList_isDefined(postconditions) )
1818 {
28bf4b0b 1819 fprintf(fout,"%s\n", cstring_toCharsSafe (uentry_rawName(thisentry) ) );
920a3797 1820 if (constraintList_isDefined(preconditions) )
1821 {
1822 fprintf(fout,"pre:\n");
1823 constraintList_dump(preconditions, fout);
1824 fprintf (fout, ";; end precondition constraints\n" );
1825 constraintList_free(preconditions);
1826 }
1827 else
1828 {
1829 fprintf(fout,"pre:EMPTY\n");
1830 }
1831 if (constraintList_isDefined(postconditions) )
1832 {
1833 fprintf(fout,"post:\n");
1834 constraintList_dump(postconditions, fout);
1835 fprintf (fout, ";; end precondition constraints\n" );
1836 constraintList_free(postconditions);
1837 }
1838 else
1839 {
1840 fprintf(fout,"post:EMPTY\n");
1841 }
1842 }
1843
1844 }
1845 }
616915dd 1846}
1847
3e3ec469 1848
616915dd 1849void usymtab_load (FILE *f)
1850 /*@globals utab, globtab@*/
1851 /*@modifies utab, *f@*/
1852{
1853 char *s = mstring_create (MAX_DUMP_LINE_LENGTH);
1854 char *os = s;
1855 ekind kind = KINVALID;
1856 fileloc loc = g_currentloc;
1857 char c;
1858 uentry ue;
1859
1860 dbgload = TRUE;
1861
1862 llassert (utab == globtab);
1863 llassert (utab->nentries == 0);
1864
28bf4b0b 1865 while (((s = reader_readLine (f, s, MAX_DUMP_LINE_LENGTH)) != NULL)
616915dd 1866 && *s == ';')
1867 {
28bf4b0b 1868 /* ignore ; comments */ ;
616915dd 1869 }
28bf4b0b 1870
616915dd 1871 while (s != NULL && *s != ';')
1872 {
28bf4b0b 1873 int index;
1874
616915dd 1875 if (*s == '*')
1876 {
28bf4b0b 1877 int ek;
616915dd 1878 s++;
28bf4b0b 1879 ek = reader_getInt (&s);
616915dd 1880
28bf4b0b 1881 if (ek == KGLOBALMARKER)
1882 {
1883 uentry lue = uentry_makeGlobalMarker ();
1884 DPRINTF (("Adding global marker: %s", uentry_unparseFull (lue)));
1885 usymtab_addEntryAlways (utab, lue);
1886 kind = KINVALID;
1887 goto nextiter;
1888 }
1889 else
1890 {
1891 kind = ekind_fromInt (ek);
1892 goto nextiter;
1893 }
616915dd 1894 }
1895
1896 if (*s == '$')
1897 {
1898 llfatalerror
1899 (cstring_makeLiteral
1900 ("Library is in obsolete format. Use lclint +whichlib "
1901 "to see which library is being loaded."));
1902 }
1903
28bf4b0b 1904 if (reader_optCheckChar (&s, '^'))
1905 {
1906 index = reader_getInt (&s);
1907 }
1908 else
1909 {
1910 index = -1;
1911 }
1912
1913 llassert (kind != KINVALID);
616915dd 1914 ue = uentry_undump (kind, loc, &s);
28bf4b0b 1915
1916 llassert (utab->nentries == index || index == -1);
616915dd 1917
1918 if (uentry_isValid (ue))
1919 {
28bf4b0b 1920 int lastindex = utab->nentries;
1921 ue = usymtab_addEntryAlways (utab, ue);
3e3ec469 1922
1923
1924# if 0
1925 if (uentry_isConstant (ue)) /*@i23! isPreProcessorMacro */
1926 {
1927 cstring uname = uentry_getName (ue);
1928
1929 /* Also check its a macro... */
1930 DPRINTF (("Installing: %s", uname));
1931
1932 cpphash_installMacro
1933 (mstring_copy (cstring_toCharsSafe (uname)),
1934 cstring_length (uname),
1935 cpplib_createDefinition (message ("%s 255", uname),
1936 loc,
1937 FALSE, FALSE).defn,
1938 cpphash_hashCode (cstring_toCharsSafe (uname),
1939 cstring_length (uname),
1940 CPP_HASHSIZE));
1941
1942 DPRINTF (("After install: %s", uname));
1943 }
1944# endif
1945
28bf4b0b 1946 if (utab->nentries != lastindex + 1)
1947 {
1948 DPRINTF (("No add: %s", uentry_unparseFull (ue)));
1949 BADBRANCH;
1950 }
616915dd 1951 /*@-branchstate@*/
1952 }
1953 /*@=branchstate@*/
1954
1955 /*
1956 ** now, any other names are the same uentry
1957 */
1958
1959 while (*(s++) == '#')
1960 {
28bf4b0b 1961 cstring name = cstring_fromCharsO (reader_getWord (&s));
616915dd 1962 uentry nue = uentry_nameCopy (name, ue);
28bf4b0b 1963 /*
1964 DPRINTF (("Name copy: %s", uentry_unparseFull (nue)));
1965 BADBRANCH;
1966 */
616915dd 1967
28bf4b0b 1968 usymtab_addEntryAlways (utab, nue);
616915dd 1969 }
1970
1971 while ((c = *s) != '\0' && (c !='\n'))
1972 {
1973 if (c != ' ' || c != '\t')
1974 {
1975 llbuglit ("Junk in load file");
1976 }
1977
1978 s++;
1979 }
1980
1981 nextiter:
28bf4b0b 1982 {
1983 s = reader_readLine (f, os, MAX_DUMP_LINE_LENGTH);
1984 }
616915dd 1985 }
1986
920a3797 1987 /*DRL added 6/21/01
1988 to handle reading of buffer overflow related constraints
1989 */
1990 while (fgets (s, MAX_DUMP_LINE_LENGTH, f) != NULL
1991 && *s == ';')
1992 {
1993 ; /* ignore ;-comments */
1994 }
1995
1996 while (s != NULL && *s != ';')
1997 {
1998 constraintList preconditions;
1999 constraintList postconditions;
2000
28bf4b0b 2001 cstring name = cstring_fromChars(reader_getWord(&s) );
920a3797 2002 cstring temp;
2003 ue = usymtab_lookup ( name );
2004
2005 cstring_free(name);
2006
2007 preconditions = constraintList_undefined;
2008 postconditions = constraintList_undefined;
2009
2010 if (!uentry_isValid(ue) )
2011 {
28bf4b0b 2012 llfatalbug ((message("Invalid uentry for %s library file may be corrupted", cstring_fromChars(s) ) ));
920a3797 2013 }
2014 s = fgets (os, MAX_DUMP_LINE_LENGTH, f);
2015
ccf0a4a8 2016 temp = cstring_fromChars (reader_getWord(&s) );
920a3797 2017
28bf4b0b 2018 if (cstring_compareLit (temp,"pre:") == 0 )
920a3797 2019 {
3814599d 2020 preconditions = constraintList_undump (f);
920a3797 2021 }
28bf4b0b 2022 else
2023 {
2024 if (cstring_compareLit (temp,"pre:EMPTY") != 0 )
2025 llfatalbug ((message("Error reading library file pre:EMPTY expected but got %s", temp ) ));
2026 }
2027
920a3797 2028 cstring_free(temp);
2029
2030 s = fgets (os, MAX_DUMP_LINE_LENGTH, f);
2031
28bf4b0b 2032 temp = cstring_fromChars(reader_getWord(&s) );
ccf0a4a8 2033 if (cstring_compareLit (temp, "post:") == 0 )
920a3797 2034 {
3814599d 2035 postconditions = constraintList_undump (f);
920a3797 2036 }
28bf4b0b 2037 else
2038 {
ccf0a4a8 2039 if (cstring_compareLit (temp, "post:EMPTY") != 0 )
28bf4b0b 2040 llfatalbug ((message("Error reading library file post:EMPTY expected but got %s", temp ) ));
2041 }
2042
ccf0a4a8 2043 cstring_free (temp);
920a3797 2044
3814599d 2045 uentry_setPreconditions (ue, functionConstraint_createBufferConstraint (preconditions));
2046 uentry_setPostconditions (ue, functionConstraint_createBufferConstraint (postconditions));
920a3797 2047
2048 s = fgets (os, MAX_DUMP_LINE_LENGTH, f);
2049 }
2050
616915dd 2051 dbgload = FALSE;
2052 sfree (os);
2053}
2054
2055/*
2056** file scope for static variables
2057*/
2058
2059void
2060usymtab_enterFile ()
2061 /*@globals utab, globtab, filetab@*/
2062 /*@modifies filetab@*/
2063{
2064 llassert (utab == globtab);
2065
2066 # if 0
2067 /* check globals */
2068
2069 usymtab_entries (globtab, ue)
2070 {
2071 if (sRef_hasDerived (uentry_getSref (ue)))
2072 {
2073 fprintf (g_msgstream, "Derived Global: %s\n", uentry_unparse (ue));
2074 fprintf (g_msgstream, "sRef: %s\n", sRef_unparseFull (ue->sref));
2075 }
2076 } end_usymtab_entries ;
2077
2078 # endif
2079
2080 usymtab_enterScope ();
2081 filetab = utab;
2082}
2083
2084void
2085usymtab_exitFile ()
2086 /*@globals utab, filetab@*/
2087 /*@modifies filetab, utab@*/
2088{
2089
2090 llassert (utab->lexlevel == 1);
2091
2092 usymtab_exitScope (exprNode_undefined);
2093 filetab = NULL;
2094}
2095
2096void
2097usymtab_enterScope ()
2098 /*@globals utab, globtab, filetab@*/
2099 /*@modifies utab@*/
2100{
2101 usymtab t = usymtab_create (US_NORMAL, utab, TRUE);
2102
2103 /* unconditional scope: optimize to avoid copy */
2104 t->aliases = aliasTable_copy (utab->aliases);
2105 utab = t;
2106
2107 llassert (usymtab_isDefined (t->env));
2108
2109 if (t->env->lexlevel == paramsScope && context_inFunctionLike ())
2110 {
2111 noshadowerror = TRUE;
2112 usymtab_handleParams ();
2113 noshadowerror = FALSE;
2114 }
2115}
2116
2117/*
2118** setup external references:
2119** o only, unique params alias external args
2120** o other params may alias anything of their type
2121*/
2122
2123static void
2124usymtab_handleParams (void)
2125 /*@globals utab, globtab, filetab@*/
2126 /*@modifies utab, globtab@*/
2127{
2128 usymtab ptab = utab->env;
2129 uentry fcn = context_getHeader ();
2130
616915dd 2131 usymtab_entries (ptab, param)
2132 {
2133 uentry ue;
2134
2135 if (!uentry_isYield (param))
2136 {
2137 sRef uref;
2138 sRef pref = uentry_getSref (param);
616915dd 2139
28bf4b0b 2140 /* Could be a global. */
616915dd 2141
28bf4b0b 2142 if (uentry_isAnyParam (param))
2143 {
2144 ue = uentry_makeVariable (fixParamName (uentry_rawName (param)),
2145 uentry_getType (param),
2146 fileloc_copy (uentry_whereDeclared (param)),
2147 FALSE);
2148
2149 uentry_copyState (ue, param);
2150 uentry_setRefParam (ue);
2151
2152 ue = usymtab_supEntrySrefReturn (ue);
2153
2154 /* must be after supercede! */
2155
2156 if (!sRef_stateKnown (pref))
616915dd 2157 {
28bf4b0b 2158 uentry_setDefState (ue, SS_DEFINED);
2159 uentry_setDefState (param, SS_DEFINED);
616915dd 2160 }
2161 else
2162 {
28bf4b0b 2163 if (sRef_isStateSpecial (pref))
2164 {
3e3ec469 2165 uentry_setDefState (ue, SS_SPECIAL); /* ALLOCATED); */
2166 /* evans 2002-01-01: should be unnecessary, the pre clauses
2167 ** set the state if necessary.
2168 */
28bf4b0b 2169 }
2170 else
2171 {
2172 uentry_setDefState (ue, sRef_getDefState (pref));
2173 }
616915dd 2174 }
28bf4b0b 2175
2176 uref = uentry_getSref (ue);
2177
2178 if (sRef_isStack (uref))
616915dd 2179 {
28bf4b0b 2180 alkind pkind = sRef_getAliasKind (pref);
2181
2182 if (alkind_isKnown (pkind) && !alkind_isLocal (pkind)
2183 && !alkind_isStack (pkind))
616915dd 2184 {
28bf4b0b 2185 sRef_setAliasKind (uref, pkind, fileloc_undefined);
2186 sRef_setOrigAliasKind (uref, pkind);
616915dd 2187 }
2188 else
2189 {
28bf4b0b 2190 sRef_setAliasKind (uref, AK_IMPTEMP, fileloc_undefined);
2191 sRef_setOrigAliasKind (uref, AK_IMPTEMP);
2192
2193 if (uentry_isOut (param))
2194 {
2195 ;
2196 }
2197 else
2198 {
2199 sRef_setDefined (uref, fileloc_undefined);
2200 }
616915dd 2201 }
28bf4b0b 2202
616915dd 2203 }
28bf4b0b 2204
2205 usymtab_addMustAlias (uref, pref);
2206
2207 if (!(uentry_isOnly (param) || uentry_isUnique (param)))
2208 {
2209 /*
2210 ** This is needed for detecting possibly aliased parameters.
2211 */
616915dd 2212
28bf4b0b 2213 sRef s = sRef_makeExternal (uref);
2214 usymtab_addMustAlias (uref, s);
2215 }
2216
2217 if (sRef_isKillRef (pref))
2218 {
2219 sRef_setAliasKind (uref, AK_NEWREF, fileloc_undefined);
2220 sRef_setOrigAliasKind (uref, AK_KILLREF);
2221 }
2222 else if (sRef_isRefCounted (uref))
2223 {
2224 sRef_setOrigAliasKind (uref, AK_REFCOUNTED);
2225 }
2226 else
2227 {
2228 /* was AK_UNIQUE */
2229 sRef_setOrigAliasKind (uref, AK_LOCAL);
2230 }
616915dd 2231 }
2232 else
2233 {
616915dd 2234 }
2235 }
616915dd 2236 } end_usymtab_entries;
28bf4b0b 2237
2238
2239 if (uentry_hasStateClauseList (fcn))
616915dd 2240 {
28bf4b0b 2241 stateClauseList clauses = uentry_getStateClauseList (fcn);
2242
2243 stateClauseList_preElements (clauses, cl)
616915dd 2244 {
28bf4b0b 2245 fileloc loc = stateClause_loc (cl);
2246 sRefSet osrs = sRefSet_undefined;
2247 sRefSet srs;
616915dd 2248
28bf4b0b 2249 if (stateClause_isGlobal (cl))
2250 {
2251 DPRINTF (("Global Marker: %s",
2252 sRef_unparseFull (usymtab_lookupGlobalMarker ())));
2253 llassert (sRef_isGlobalMarker (usymtab_lookupGlobalMarker ()));
2254 srs = sRefSet_single (usymtab_lookupGlobalMarker ());
2255 osrs = srs;
2256 }
2257 else
2258 {
2259 srs = stateClause_getRefs (cl);
2260 }
2261
2262 sRefSet_elements (srs, el)
616915dd 2263 {
2264 sRef base = sRef_getRootBase (el);
28bf4b0b 2265 sRef sb = sRef_updateSref (el);
2266
616915dd 2267 if (sRef_isResult (base))
2268 {
2269 ; /* nothing to do before */
2270 }
28bf4b0b 2271 else if (sRef_isParam (base) || sRef_isGlobalMarker (base))
616915dd 2272 {
28bf4b0b 2273 if (stateClause_setsMetaState (cl))
616915dd 2274 {
28bf4b0b 2275 /* copied from exprNode.c:3040 */
2276 qual ql = stateClause_getMetaQual (cl);
2277 annotationInfo ainfo = qual_getAnnotationInfo (ql);
2278 metaStateInfo minfo = annotationInfo_getState (ainfo);
2279 cstring key = metaStateInfo_getName (minfo);
2280 int mvalue = annotationInfo_getValue (ainfo);
616915dd 2281
28bf4b0b 2282 DPRINTF (("Sets meta state! %s", stateClause_unparse (cl)));
2283
2284 if (sRef_isResult (base))
616915dd 2285 {
28bf4b0b 2286 BADBRANCH;
2287 }
2288 else
2289 {
2290 sRef_setMetaStateValueComplete (sb, key, mvalue, loc);
2291 }
2292 }
2293 else
2294 {
2295 sRefMod modf = stateClause_getEntryFunction (cl);
2296
2297 if (modf != NULL)
2298 {
2299 sRefSet aliases = usymtab_allAliases (sb);
2300
2301 modf (sb, loc);
2302
2303 sRefSet_elements (aliases, sr)
2304 {
2305 modf (sr, loc);
2306 } end_sRefSet_elements ;
2307
2308 sRefSet_free (aliases);
2309 }
616915dd 2310 }
2311 }
2312 else
2313 {
2314 if (sRef_isValid (base))
2315 {
28bf4b0b 2316 DPRINTF (("Base: %s", sRef_unparseFull (base)));
616915dd 2317 BADBRANCH;
2318 }
2319 }
2320 } end_sRefSet_elements ;
28bf4b0b 2321 } end_stateClauseList_preElements ;
2322 }
2323}
2324
616915dd 2325void
2326usymtab_enterFunctionScope (uentry fcn)
2327 /*@globals utab, filetab, globtab@*/
2328 /*@modifies utab@*/
2329{
2330 usymtab t = usymtab_create (US_NORMAL, utab, TRUE);
2331
2332 if (utab->lexlevel != fileScope)
2333 {
2334 if (utab->lexlevel > fileScope)
2335 {
7ebcc5bb 2336 llparseerror (cstring_makeLiteral ("New function scope inside function"));
616915dd 2337
2338 while (utab->lexlevel > fileScope)
2339 {
2340 /*@i@*/ utab = usymtab_dropEnv (utab);
2341 /*@-branchstate@*/
2342 }
2343 /*@=branchstate@*/
2344 }
2345 else
2346 {
2347 llfatalbug (cstring_makeLiteral ("New function not inside file."));
2348 }
2349 /*@-branchstate@*/ } /*@=branchstate@*/
2350
28bf4b0b 2351 utab = t;
2352
2353 DPRINTF (("Globs: %s", globSet_unparse (uentry_getGlobs (fcn))));
2354
616915dd 2355 globSet_allElements (uentry_getGlobs (fcn), el)
2356 {
28bf4b0b 2357 DPRINTF (("Here we go: %s", sRef_unparseFull (el)));
616915dd 2358
2359 if (sRef_isUndefGlob (el))
2360 {
2361 int index = sRef_getScopeIndex (el);
2362 sRef sr = sRef_updateSref (el);
2363 fileloc loc = uentry_whereEarliest (fcn);
28bf4b0b 2364
2365 DPRINTF (("update: %s", sRef_unparseFull (sr)));
2366 DPRINTF (("Undef!"));
616915dd 2367 if (sRef_isFileStatic (el))
2368 {
2369 ctype ct = sRef_getType (el);
2370 uentry ue;
2371
2372 llassert (usymtab_isDefined (filetab));
2373
2374 ue = usymtab_fetchIndex (filetab, index);
2375
2376 if (ctype_isRealArray (ct) || ctype_isRealSU (ct))
2377 {
2378 sRef_setAllocated (sr, loc);
2379 }
2380 else
2381 {
2382 sRef_setUndefined (sr, loc);
2383 }
2384 }
2385 else
2386 {
2387 uentry ue = globtab->entries[index];
2388 ctype ct = uentry_getType (ue);
2389
2390 if (ctype_isArray (ct) || ctype_isSU (ct))
2391 {
2392 sRef_setAllocated (sr, loc);
2393 }
2394 else
2395 {
2396 sRef_setUndefined (sr, loc);
2397 }
2398 }
2399 }
2400 else if (sRef_isAllocated (el))
2401 {
2402 sRef sr = sRef_updateSref (el);
2403 fileloc loc = uentry_whereEarliest (fcn);
2404
2405 sRef_setAllocated (sr, loc);
2406 }
2407 else if (sRef_isPartial (el))
2408 {
2409 sRef sr = sRef_updateSref (el);
2410 fileloc loc = uentry_whereEarliest (fcn);
2411
2412 sRef_setPartial (sr, loc);
2413 }
2414 else
2415 {
28bf4b0b 2416 /*
2417 sRef sr = sRef_updateSref (el);
2418 fileloc loc = uentry_whereEarliest (fcn);
2419
2420 sRef_setDefined (sr, loc);
2421 */
2422
2423 /* defined */
2424 /* shouldn't need to do anything! */
616915dd 2425 }
2426 } end_globSet_allElements;
2427
28bf4b0b 2428 DPRINTF (("Globs after: %s", globSet_unparse (uentry_getGlobs (fcn))));
616915dd 2429}
2430
2431static void
2432usymtab_caseBranch (void)
2433 /*@modifies utab@*/
2434{
2435 usymtab t = usymtab_create (US_CBRANCH, utab, FALSE);
2436 utab = t;
2437}
2438
2439void
2440usymtab_switchBranch (/*@unused@*/ exprNode s)
2441 /*@modifies utab@*/
2442{
2443 usymtab t = usymtab_create (US_SWITCH, utab, FALSE);
2444
2445 t->aliases = aliasTable_copy (utab->aliases);
28bf4b0b 2446 utab = t;
616915dd 2447}
2448
2449void
2450usymtab_trueBranch (/*@only@*/ guardSet guards)
2451 /*@modifies utab@*/
2452{
2453 usymtab t = usymtab_create (US_TBRANCH, utab, FALSE);
2454
2455 /*
2456 ** not true! (could be in a macro)
2457 **
2458 ** llassertprint (utab->lexlevel > paramsScope,
2459 ** ("not in scope: %s", usymtab_unparseLocal ()));
2460 **
2461 */
2462
2463 guardSet_free (t->guards);
2464 t->guards = guards;
28bf4b0b 2465
2466 aliasTable_free (t->aliases);
616915dd 2467 t->aliases = aliasTable_copy (utab->aliases);
2468
28bf4b0b 2469 utab = t;
616915dd 2470}
2471
2472/*
2473** consider,
2474**
2475** { int a; if (...) a = 3; < a may be undefined here!
2476**
2477*/
2478
2479void
28bf4b0b 2480usymtab_popTrueBranch (exprNode pred, exprNode expr, clause cl) /*@modifies utab@*/
616915dd 2481{
2482 /*
2483 ** add a false branch
2484 ** (could be done more efficiently as a special case, but
2485 ** it is better to only maintain one version of the code)
2486 */
2487
28bf4b0b 2488 if (utab->kind != US_TBRANCH
2489 && context_inIterDef ())
2490 {
2491 usymtab_exitScope (expr);
2492 }
2493 else
2494 {
2495 DPRINTF (("pop true branch.."));
2496 usymtab_altBranch (guardSet_invert (exprNode_getGuards (pred)));
2497 usymtab_popBranches (pred, expr, exprNode_undefined, TRUE, cl);
2498 }
616915dd 2499}
2500
2501void
2502usymtab_popCaseBranch () /*@modifies utab@*/
2503{
2504 llassert (utab->kind == US_CBRANCH);
2505 usymtab_quietPlainExitScope ();
2506}
2507
2508void
2509usymtab_popTrueExecBranch (exprNode pred, exprNode expr, clause cl)
2510{
2511 /*
2512 ** add a false branch that must return --- that is,
2513 ** the true branch is always executed!
2514 */
2515
2516 usymtab_altBranch (guardSet_invert (exprNode_getGuards (pred)));
2517 usymtab_popBranches (pred, expr, exprNode_makeMustExit (), FALSE, cl);
2518}
2519
2520void
2521usymtab_popOrBranch (exprNode pred, exprNode expr)
2522 /*@modifies utab@*/
2523{
2524 bool mustReturn;
2525 usymtab env = utab->env;
2526 usymtab otab = utab;
2527 int i = 0;
2528
2529 llassert (env != NULL);
2530
2531 if (exprNode_isError (expr))
2532 {
2533 mustReturn = FALSE;
2534 }
2535 else
2536 {
2537 mustReturn = exprNode_mustEscape (expr);
2538 }
2539
2540
2541 llassert (utab->kind == US_TBRANCH);
2542
2543 /*
2544 ** merge each entry in table with its original
2545 ** unless execution cannot continue after this branch
2546 */
2547
2548 for (i = 0; i < utab->nentries; i++)
2549 {
2550 uentry current = utab->entries[i];
2551 uentry old = usymtab_lookupAux (env, uentry_rawName (current));
2552
2553 uentry_mergeState (old, current, exprNode_loc (expr),
2554 mustReturn, FALSE, TRUE, ORCLAUSE);
2555 }
2556
2557
2558 if (mustReturn)
2559 {
2560 env->guards = guardSet_levelUnionFree (env->guards,
2561 guardSet_invert (exprNode_getGuards (pred)),
2562 env->lexlevel);
2563 }
2564 else
2565 {
2566 env->aliases = aliasTable_levelUnion (env->aliases, otab->aliases, env->lexlevel);
2567 }
2568
2569 /* env is now utab */
2570 usymtab_quietPlainExitScope ();
2571}
2572
2573/*
2574** case syntax in C is very unrestricted. This is unfortunate.
2575**
2576** A switch case is ended either by a new case or default, or
2577** a close } that may close the switch or some other control
2578** structure.
2579*/
2580
2581bool
2582usymtab_newCase (/*@unused@*/ exprNode pred, exprNode last)
2583 /*@modifies utab@*/
2584{
2585 bool mustBreak = usymtab_mustBreak (utab);
2586 bool mustReturn = usymtab_mustEscape (utab);
2587 usymtab stab = utab;
2588
2589 /*
2590 ** Find last case (or outer switch)
2591 */
2592
2593 while (stab->kind != US_CBRANCH && stab->kind != US_SWITCH)
2594 {
2595 stab = stab->env;
2596 llassert (stab != GLOBAL_ENV);
2597 }
2598
2599 /* ??? */
2600
2601 while (stab->kind == US_CBRANCH)
2602 {
2603 stab = stab->env;
2604 llassert (stab != GLOBAL_ENV);
2605 }
2606
2607 /*
2608 ** if its a fall through case, merge in outside entries and last case.
2609 **
2610 ** e.g.,
2611 ** ...
2612 ** switch
2613 ** case 1: x = 3; <fall through>
2614 ** case 2: << x may not be defined
2615 **
2616 */
2617
2618 if (!mustBreak && !mustReturn && utab->kind == US_CBRANCH)
2619 {
2620 llassert (stab->kind == US_SWITCH || stab->kind == US_NORMAL);
2621
2622 usymtab_entries (utab, ue) /* but, keep track of used variables */
2623 {
2624 uentry old = usymtab_lookupAux (stab, uentry_rawName (ue));
2625
2626 llassert (uentry_isValid (old));
2627
2628 /* modifies ue, not old */
2629
2630 uentry_mergeState (ue, old, exprNode_loc (last),
2631 FALSE, FALSE, TRUE, CASECLAUSE);
2632 } end_usymtab_entries;
2633
2634 utab->aliases = aliasTable_levelUnion (utab->aliases,
2635 stab->aliases, utab->lexlevel);
2636
2637 /*
2638 ** No need for a new branch.
2639 */
2640
2641 return FALSE;
2642 }
2643 else
2644 {
2645 usymtab_caseBranch ();
2646 /*@-mustfree@*/ /*< utab->aliases >*/
2647 utab->aliases = aliasTable_copy (stab->aliases);
2648 /*@=mustfree@*/
2649
2650 return TRUE;
2651 }
2652}
2653
2654/*
2655** for && (both pred and expr are executed)
2656*/
2657
2658void
2659usymtab_popAndBranch (exprNode pred, /*@unused@*/ exprNode expr)
2660 /*@modifies utab@*/
2661{
2662 usymtab env = utab->env;
2663 usymtab otab= utab;
2664 int i = 0;
2665
28bf4b0b 2666 llassert (utab->kind == US_TBRANCH);
616915dd 2667
2668 /*
2669 ** merge each entry in table with its original
2670 ** unless execution cannot continue after this branch
2671 */
2672
2673 for (i = 0; i < utab->nentries; i++)
2674 {
2675 uentry current = utab->entries[i];
2676 sRef tref = uentry_getSref (current);
2677 uentry old = usymtab_lookupAux (env, uentry_rawName (current));
2678 sRef oref = uentry_getSref (old);
2679
2680 /* note that is current is in a nested branch,
2681 it may create a "new" old entry. */
2682
2683 llassert (uentry_isValid (old));
2684 uentry_mergeState (old, current, exprNode_loc (expr),
2685 FALSE, FALSE, TRUE, ANDCLAUSE);
2686
2687 /*
2688 ** if is it defined by the second clause, then it should be defined.
2689 */
2690
2691 if (sRef_isAnyDefined (tref)
2692 && (sRef_isAllocated (oref) || sRef_isStateUndefined (oref)))
2693 {
2694 sRef_setDefined (oref, g_currentloc);
2695 }
2696 }
2697
2698 utab->guards = guardSet_levelUnionFree (utab->guards,
2699 guardSet_invert (exprNode_getGuards (pred)),
2700 utab->lexlevel);
2701 utab->aliases = aliasTable_levelUnion (utab->aliases, otab->aliases, utab->lexlevel);
2702
2703 usymtab_quietPlainExitScope ();
2704
2705 }
2706
2707/*
2708** Stack should be [ US_CBRANCH+ US_SWITCH ]
2709** Only branches which do not return (except possibly the last branch) are included.
2710**
2711** Conditionally merge state from all CBRANCHes.
2712**
2713** If allpaths is TRUE, then all possible executions go through some switch
2714** case, and the original scope is not merged.
2715*/
2716
2717void
2718usymtab_exitSwitch (/*@unused@*/ exprNode sw, bool allpaths)
2719 /*@modifies utab@*/
2720{
2721 usymtab ttab = utab;
2722 usymtab stab = ttab;
2723 usymtab ltab = ttab;
2724 bool lastMustReturn = usymtab_mustEscape (utab);
2725 int i;
2726
2727
2728 while (stab->kind == US_CBRANCH)
2729 {
2730 stab = stab->env;
2731 llassert (stab != GLOBAL_ENV);
2732 }
2733
2734 while (stab->kind == US_NORMAL)
2735 {
2736 stab = stab->env;
2737 llassert (stab != GLOBAL_ENV);
2738 }
2739
2740 llassert (stab->kind == US_SWITCH);
2741
2742 /* go to the scope outside the switch (US_SWITCH is just a marker! */
2743 stab = stab->env;
2744 llassert (stab != GLOBAL_ENV);
2745
2746
2747 ttab = ttab->env;
2748 llassert (usymtab_isDefined (ttab));
2749
2750 if (ttab->kind == US_CBRANCH)
2751 {
2752 /* was quietPlainExitScope --- but, can't free it yet! */
2753 utab = utab->env;
2754 llassert (utab != GLOBAL_ENV);
2755
2756 while (ttab->kind == US_CBRANCH)
2757 {
2758 /*
2759 ** (from popTrueBranch)
2760 */
2761
2762 bool mustReturn = usymtab_mustEscape (ttab);
2763 bool mustBreak = usymtab_mustBreak (ttab);
2764
2765 usymtab_entries (ttab, current)
2766 {
2767 uentry old = /*@-compmempass@*/ usymtab_lookupAux (ltab, uentry_rawName (current));
2768 /*@=compmempass@*/
2769
2770 /*
2771 ** note that is this is in a nested branch,
2772 ** it may create a "new" old entry.
2773 */
2774
2775 if (uentry_isValid (old))
2776 {
2777 if (lastMustReturn)
2778 {
2779 uentry_mergeUses (current, old);
2780 uentry_setState (old, current);
2781 }
2782 else
2783 {
2784 uentry_mergeState (old, current, exprNode_loc (sw),
2785 mustReturn, FALSE, TRUE, SWITCHCLAUSE);
2786 }
2787 }
2788 else
2789 {
2790 ;
2791 }
2792 } end_usymtab_entries;
2793
2794 /*
2795 ** if entry is not in symbol table for this case, merge with pre-switch
2796 ** table
2797 */
2798
2799 if (!mustReturn && !mustBreak)
2800 {
2801 usymtab_entries (stab, current)
2802 {
2803 if (usymtab_getIndex (ttab, uentry_rawName (current)) == NOT_FOUND)
2804 {
2805 uentry old = /*@-compmempass@*/
2806 usymtab_lookupAux (ltab, uentry_rawName (current));
2807 /*@=compmempass@*/
2808
2809 llassert (uentry_isValid (old));
2810 uentry_mergeState (old, current, exprNode_loc (sw),
2811 FALSE, FALSE, TRUE, SWITCHCLAUSE);
2812 }
2813 } end_usymtab_entries;
2814 }
2815
2816 ltab->env = ttab->env;
2817 ttab = ltab->env;
2818
2819 /*
2820 ** Suprious error, becuase of environments.
2821 */
2822
2823 /*@i1@*/ utab = ltab;
2824
2825 lastMustReturn = FALSE;
2826 /*@-branchstate@*/
2827 }
2828 }
2829 /*@=branchstate@*/
2830
2831 /*
2832 ** now, there is one US_CBRANCH. Merge this with the stab.
2833 */
2834
2835
2836 for (i = 0; i < ltab->nentries; i++)
2837 {
2838 uentry current = ltab->entries[i];
2839 uentry old = usymtab_lookupAux (stab, uentry_rawName (current));
2840
2841 /* note that is this is in a nested branch,
2842 it may create a "new" old entry. */
2843
2844
2845 if (uentry_isValid (old))
2846 {
2847 if (allpaths)
2848 {
2849 uentry_mergeUses (current, old);
2850 uentry_setState (old, current);
2851 }
2852 else
2853 {
2854 uentry_mergeState (old, current, exprNode_loc (sw),
2855 FALSE, FALSE, TRUE, SWITCHCLAUSE);
2856 }
2857 }
2858 else
2859 {
2860 }
2861 }
2862
2863 /*
2864 ** exit the switch
2865 */
2866
2867
2868 /*
2869 ** switch may or may not be followed by a new scope
2870 */
2871
2872 if (utab->kind == US_SWITCH)
2873 {
2874 usymtab_quietPlainExitScope ();
2875 }
2876 else
2877 {
2878 usymtab_quietPlainExitScope ();
2879 llassert (utab->kind == US_SWITCH);
2880 usymtab_quietPlainExitScope ();
2881 }
2882
2883 }
2884
2885static void
2886updateNullState (sRef el, /*@notnull@*/ usymtab ttab,
2887 /*@notnull@*/ usymtab ftab, bool trueGuard)
2888{
2889 sRef base = sRef_getRootBase (el);
28bf4b0b 2890 int level = sRef_lexLevel (base);
616915dd 2891
2892 if (sRef_isCvar (base))
2893 {
2894 usymId index = sRef_getScopeIndex (base);
2895 uentry ue = usymtab_getRefTab (ttab, level, index);
2896
2897 if (!uentry_isLset (ue))
2898 {
2899 sRef sr = uentry_getSref (ue);
2900
2901 if (trueGuard)
2902 {
2903 sRef_setDerivNullState (sr, el, NS_NOTNULL);
2904 }
2905 else
2906 {
2907 if (!guardSet_isGuarded (ttab->guards, el)
2908 && !sRef_isNotNull (sr))
2909 {
2910 sRef_setDerivNullState (sr, el, NS_DEFNULL);
2911 }
2912 }
2913 }
2914 else
2915 {
2916 }
2917
2918 ue = usymtab_getRefTab (ftab, level, index);
2919
2920 if (!uentry_isLset (ue))
2921 {
2922 sRef sr = uentry_getSref (ue);
2923
2924
2925 if (!trueGuard) /* yikes! forgot the ! */
2926 {
2927 sRef_setDerivNullState (sr, el, NS_NOTNULL);
2928 }
2929 else
2930 {
2931
2932 if (!guardSet_isGuarded (ftab->guards, el)
2933 && !sRef_isNotNull (sr))
2934 {
2935 sRef_setDerivNullState (sr, el, NS_DEFNULL);
2936 }
2937 }
2938 }
2939 else
2940 {
28bf4b0b 2941 ;
2942 }
2943 }
2944}
616915dd 2945
2946void
2947usymtab_popBranches (exprNode pred, exprNode tbranch, exprNode fbranch,
2948 bool isOpt, clause cl)
2949 /*@modifies utab@*/
2950{
2951 int i = 0;
2952 usymtab ftab = utab;
2953 usymtab ttab = utab->env;
2954
2955 fileloc loc;
2956 usymtab env;
2957 guardSet guards = exprNode_getGuards (pred);
2958 sRefSet tguards = guardSet_getTrueGuards (guards);
2959 sRefSet fguards = guardSet_getFalseGuards (guards);
2960 bool mustReturnT = exprNode_mustEscape (tbranch);
2961 bool mustReturnF = exprNode_mustEscape (fbranch);
28bf4b0b 2962
2963 DPRINTF (("Pop branches: %s [mustreturn: %s/%s]", exprNode_unparse (pred),
2964 bool_unparse (mustReturnT),
2965 bool_unparse (mustReturnF)));
2966
616915dd 2967 if (exprNode_isDefined (fbranch))
2968 {
2969 loc = exprNode_loc (fbranch);
2970 }
2971 else
2972 {
2973 loc = exprNode_loc (tbranch);
2974 }
2975
2976 llassert (usymtab_isDefined (ttab));
2977
2978 env = ttab->env;
2979
2980 llassert (usymtab_isDefined (env));
2981 llassert (ftab->kind == US_FBRANCH);
2982 llassert (ttab->kind == US_TBRANCH);
2983
2984 /*
2985 ** For each element that is true guarded (i.e., if (x != NULL))
2986 ** make x = null in false branch,
2987 ** and x = notnull in true branch.
2988 ** unless x was set locally in that branch.
2989 ** For each element that is false guarded (x == NULL)
2990 ** make x = null in true, notnull in false.
2991 **
2992 ** For each element that is either guarded (pred(x))
2993 **
2994 */
2995
2996 sRefSet_allElements (tguards, el)
2997 {
2998 updateNullState (el, ttab, ftab, TRUE);
2999 } end_sRefSet_allElements;
3000
3001 sRefSet_allElements (fguards, el)
3002 {
3003 updateNullState (el, ttab, ftab, FALSE);
3004 } end_sRefSet_allElements;
3005
3006 /*
3007 **
3008 ** if an entry is in both true and false, merge the entries,
3009 ** then replace original with new state.
3010 **
3011 ** if an entry is in one table, merge it with the original.
3012 */
28bf4b0b 3013
3014 DPRINTF (("ftab: %d", ftab->nentries));
3015
616915dd 3016 for (i = 0; i < ftab->nentries; i++)
3017 {
3018 uentry fthis = ftab->entries[i];
3019 uentry old = usymtab_lookupAux (env, uentry_rawName (fthis));
3020 int tindex = usymtab_getIndex (ttab, uentry_rawName (fthis));
3021
28bf4b0b 3022 DPRINTF (("Entry: %s / %s", uentry_unparseFull (fthis), uentry_unparseFull (old)));
3023
616915dd 3024 if (uentry_isUndefined (old))
3025 {
3026 /* possible entry was added as an undefined id */
28bf4b0b 3027 DPRINTF (("Undefined! %s", uentry_rawName (fthis)));
616915dd 3028 continue;
3029 }
3030
3031 if (tindex != NOT_FOUND)
3032 {
3033 uentry tthis = ttab->entries[tindex];
28bf4b0b 3034
616915dd 3035 /* note that is this is in a nested branch,
3036 it may create a "new" old entry. */
3037
3038 if (!mustReturnF)
3039 {
3040 if (!mustReturnT)
3041 {
616915dd 3042 uentry_mergeState (fthis, tthis, loc,
3043 mustReturnT, FALSE, FALSE, cl);
3044 }
3045 else
3046 {
3047 uentry_mergeUses (fthis, tthis);
3048 }
3049
3050 uentry_setState (old, fthis);
3051
3052 /*@-mustfree@*/
3053 }
3054 /*@=mustfree@*/
3055 else
3056 {
3057 uentry_setState (old, tthis);
3058 uentry_mergeState (old, fthis, loc, mustReturnF,
3059 TRUE, FALSE, cl);
3060 }
3061
3062 ttab->entries[tindex] = uentry_undefined;
3063 uentry_free (tthis);
3064 }
3065 else
3066 {
3067 uentry_mergeState (old, fthis, loc, mustReturnF, TRUE, FALSE, cl);
3068 }
3069 }
3070
3071 for (i = 0; i < ttab->nentries; i++)
3072 {
3073 uentry current = ttab->entries[i];
3074
28bf4b0b 3075 DPRINTF (("ttab: %s", uentry_unparseFull (current)));
3076
616915dd 3077 if (!uentry_isUndefined (current))
3078 {
3079 uentry old = usymtab_lookupAux (env, uentry_rawName (current));
3080
28bf4b0b 3081 DPRINTF (("Old: %s", uentry_unparseFull (old)));
3082
3083 if (uentry_isUndefined (old))
3084 {
3085 llcontbug (message ("Undefined entry: %s", uentry_rawName (current)));
3086 continue;
3087 }
3088
616915dd 3089 if (mustReturnF)
3090 {
3091 uentry_mergeUses (current, old);
3092 uentry_setState (old, current);
3093 }
3094 else
3095 {
3096 /*
28bf4b0b 3097 ** Assumes false branch is a fall-through if
616915dd 3098 ** fbranch is not defined. This is true, unless
3099 ** where was some greivous error in processing
3100 ** the else branch of an if-then, in which case
3101 ** this is probably the right thing to do anyway.
3102 */
3103
3104 uentry_mergeState (old, current, loc, mustReturnT,
3105 FALSE, isOpt, cl);
3106 }
28bf4b0b 3107
3108 DPRINTF (("==> %s", uentry_unparseFull (old)));
616915dd 3109 }
3110 }
616915dd 3111
3112 /*
3113 ** Plain levelUnion doesn't work, since we need to use the sRef's in env->aliases
3114 ** if they are present.
3115 */
3116
3117 llassert (NOALIAS (env->aliases, ttab->aliases));
3118 llassert (NOALIAS (env->aliases, ftab->aliases));
3119
3120 aliasTable_free (env->aliases);
3121
3122 env->aliases = aliasTable_levelUnionNew (ttab->aliases,
3123 ftab->aliases, env->lexlevel);
3124
3125 aliasTable_fixSrefs (env->aliases);
28bf4b0b 3126
3127 DPRINTF (("Aliases: %s", aliasTable_unparse (env->aliases)));
616915dd 3128
3129 /* exit true and false scopes */
3130 usymtab_quietPlainExitScope ();
3131 usymtab_quietPlainExitScope ();
3132
3133 if (mustReturnT)
3134 {
3135 utab->guards = guardSet_levelUnionFree
3136 (utab->guards,
3137 guardSet_invert (exprNode_getGuards (pred)),
3138 utab->lexlevel);
3139 }
3140
3141 if (mustReturnF)
3142 {
3143 utab->guards = guardSet_levelUnion (utab->guards,
3144 exprNode_getGuards (pred),
3145 utab->lexlevel);
3146 }
3147
3148 DPRINTF (("Here."));
3149}
3150
3151static void usymtab_fixCases (void) /*@modifies utab@*/ {
3152 while (utab->kind == US_CBRANCH)
3153 {
3154 usymtab_quietPlainExitScope ();
3155 }
3156
3157 llassert (utab->kind != US_CBRANCH);
3158}
3159
3160void
3161usymtab_altBranch (/*@only@*/ guardSet guards)
3162 /*@modifies utab@*/
3163{
28bf4b0b 3164 usymtab t;
616915dd 3165 usymtab parent = utab->env;
3166
28bf4b0b 3167 t = usymtab_create (US_FBRANCH, utab, FALSE);
3168
616915dd 3169 /*
3170 ** If we are in a case, need to close it. The C syntax
3171 ** is very liberal, so this kludge is necessary.
3172 */
3173
3174 usymtab_fixCases ();
3175
3176 DPRINTF (("Current kind: %s", usymtab_unparseStack ()));
28bf4b0b 3177
616915dd 3178 llassert (utab->kind == US_TBRANCH);
3179 llassert (parent != GLOBAL_ENV);
28bf4b0b 3180
616915dd 3181 guardSet_free (t->guards);
3182 t->guards = guards;
28bf4b0b 3183
616915dd 3184 aliasTable_free (t->aliases);
3185 t->aliases = aliasTable_copy (parent->aliases);
28bf4b0b 3186
616915dd 3187 utab = t;
3188}
3189
3190void
3191usymtab_allDefined (void)
3192 /*@globals utab, globtab@*/
3193{
3194 int i;
3195
3196 llassert (utab == globtab);
3197
3198 for (i = 0; i < utab->nentries; i++)
3199 {
3200 uentry e = utab->entries[i];
3201
3202 if (uentry_isPriv (e))
3203 {
3204 ; /* no need to define it */
3205 }
3206 else
3207 {
3208 if (context_getFlag (FLG_SPECUNDECL))
3209 {
3210 fileloc sloc = uentry_whereSpecified (e);
3211 fileloc dloc = uentry_whereDeclared (e);
3212
3213 if (fileloc_isDefined (sloc)
3214 && !uentry_isFakeTag (e)
3215 && !fileloc_isDefined (dloc))
3216 {
3217 voptgenerror
3218 (FLG_SPECUNDECL,
3219 message ("%s %q specified but not declared",
3220 ekind_capName (uentry_getKind (e)),
3221 uentry_getName (e)),
3222 sloc);
3223 }
3224 }
3225
3226 if (!uentry_isCodeDefined (e))
3227 {
3228 fileloc dloc = uentry_whereDeclared (e);
3229
28bf4b0b 3230 if (fileloc_isLib (dloc) || fileloc_isXHFile (dloc))
616915dd 3231 {
3232 ;
3233 }
3234 else if (fileloc_isDefined (dloc))
3235 {
3236 if (!uentry_isAnyTag (e))
3237 {
3238 if (fileloc_isUser (dloc))
3239 {
3240 voptgenerror
3241 (FLG_DECLUNDEF,
3242 message ("%s %q declared but not defined",
3243 ekind_capName (uentry_getKind (e)),
3244 uentry_getName (e)),
3245 dloc);
efd360a3 3246 DPRINTF (("decl: %s", uentry_unparseFull (e)));
616915dd 3247 }
3248 }
3249 }
3250 else
3251 {
3252 fileloc sloc = uentry_whereSpecified (e);
3253
3254 if (fileloc_isDefined (sloc)
3255 && !fileloc_isImport (sloc)
3256 && !fileloc_isLib (sloc)
3257 && !fileloc_isPreproc (sloc)
3258 && !uentry_isFakeTag (e))
3259 {
3260 if (uentry_isVariable (e) || uentry_isFunction (e))
3261 {
3262 voptgenerror
3263 (FLG_SPECUNDEF,
3264 message ("%s %q specified but not declared or defined",
3265 ekind_capName (uentry_getKind (e)),
3266 uentry_getName (e)),
3267 sloc);
3268 }
3269 else
3270 {
3271 voptgenerror
3272 (FLG_SPECUNDEF,
3273 message ("%s %q specified but not defined",
3274 ekind_capName (uentry_getKind (e)),
3275 uentry_getName (e)),
3276 sloc);
3277 }
3278 }
3279 }
3280 }
3281 }
3282 }
3283}
3284
3285void usymtab_exportHeader (void)
3286 /*@globals utab@*/
3287{
3288 int i;
3289
3290 for (i = 0; i < utab->nentries; i++)
3291 {
3292 uentry ce = utab->entries[i];
3293
3294 if (!uentry_isDatatype (ce)
3295 && !uentry_isAnyTag (ce)
3296 && !uentry_isEitherConstant (ce) && !uentry_isStatic (ce)
3297 && !uentry_isExternal (ce)
3298 && !uentry_isForward (ce))
3299 {
3300 fileloc fwhere = uentry_whereDeclared (ce);
3301
3302 if (fileloc_isUndefined (fwhere)
3303 && uentry_isFunction (ce))
3304 {
3305 fwhere = uentry_whereDefined (ce);
3306 }
3307
3308 if (fileloc_isDefined (fwhere)
3309 && !fileloc_isHeader (fwhere)
28bf4b0b 3310 && !fileloc_isXHFile (fwhere)
616915dd 3311 && !(fileloc_isSpecialFile (fwhere)
3312 && !context_getFlag (FLG_UNUSEDSPECIAL)))
3313 {
3314 if (uentry_isVariable (ce))
3315 {
3316 if (optgenerror
3317 (FLG_EXPORTHEADERVAR,
3318 message ("%s %q exported but not declared in header file",
3319 ekind_capName (uentry_getKind (ce)),
3320 uentry_getName (ce)),
3321 fwhere))
3322 {
3323 uentry_showDefSpecInfo (ce, fwhere);
3324 }
3325 }
3326 else
3327 {
3328 if (!uentry_isIter (ce)
3329 && !uentry_isEndIter (ce)
3330 && !uentry_isExpandedMacro (ce))
3331 {
3332 if (uentry_isFunction (ce)
3333 && cstring_equalLit (uentry_rawName (ce), "main"))
3334 {
3335 ; /* no error for main */
3336 }
3337 else
3338 {
3339 if (optgenerror
3340 (FLG_EXPORTHEADER,
3341 message ("%s %q exported but not declared "
3342 "in header file",
3343 ekind_capName (uentry_getKind (ce)),
3344 uentry_getName (ce)),
3345 fwhere))
3346 {
3347 uentry_showDefSpecInfo (ce, fwhere);
3348 }
3349 }
3350 }
3351 }
3352 }
3353 }
3354 }
3355}
3356
3357void usymtab_exportLocal (void)
3358 /*@globals utab@*/
3359{
3360 int i;
616915dd 3361
3362 for (i = 0; i < utab->nentries; i++)
3363 {
3364 uentry ce = utab->entries[i];
616915dd 3365
3366 if (!uentry_isDatatype (ce) && !uentry_isAnyTag (ce)
3367 && !uentry_isEitherConstant (ce)
3368 && !uentry_isIter (ce)
3369 && !uentry_isEndIter (ce)
3370 && !uentry_isExpandedMacro (ce)
3371 && uentry_isUsed (ce))
3372 {
3373 /* check static uses */
3374 filelocList fuses = uentry_getUses (ce);
3375 fileloc mod = uentry_whereDefined (ce);
3376 bool ok = filelocList_isEmpty (fuses);
3377 fileloc fwhere = uentry_whereDeclared (ce);
3378
3379 if (fileloc_isSpecialFile (fwhere)
3380 && !context_getFlag (FLG_UNUSEDSPECIAL))
3381 {
3382 ok = TRUE; /* no errors for special files */
3383 }
3384 else
3385 {
3386 filelocList_elements (fuses, uloc)
3387 {
3388 if (fileloc_isUndefined (uloc) || !fileloc_sameModule (uloc, mod))
3389 {
3390 ok = TRUE;
3391 /*@innerbreak@*/ break;
3392 }
3393 } end_filelocList_elements;
3394 }
3395
3396 if (!ok)
3397 {
3398 if (optgenerror
3399 (FLG_EXPORTLOCAL,
3400 message ("%s exported but not used outside %s: %q",
3401 ekind_capName (uentry_getKind (ce)),
3402 fileloc_getBase (mod),
3403 uentry_getName (ce)),
3404 fwhere))
3405 {
3406 uentry_showDefSpecInfo (ce, fwhere);
3407 }
3408 }
3409 }
3410 }
3411}
3412
3413void
3414usymtab_allUsed (void)
3415 /*@globals utab@*/
3416{
3417 int i;
3418 bool isFileStatic = usymtab_inFileScope ();
3419 cstring last_file = cstring_undefined;
3420
3421 for (i = 0; i < utab->nentries; i++)
3422 {
3423 bool hasError = FALSE;
3424 uentry ce = utab->entries[i];
3425 fileloc fwhere = uentry_whereDeclared (ce);
3426
3427 if (fileloc_isUndefined (fwhere))
3428 {
3429 fwhere = uentry_whereDefined (ce);
3430 }
3431
3432 if (fileloc_isInvalid (fwhere)
3433 || fileloc_isLib (fwhere)
3434 || fileloc_isBuiltin (fwhere)
3435 || ((fileloc_isSpecialFile (fwhere)
3436 || fileloc_isSpecialFile (uentry_whereDefined (ce)))
3437 && !context_getFlag (FLG_UNUSEDSPECIAL)))
3438 {
3439 ;
3440 }
3441 else if (!uentry_wasUsed (ce) && !uentry_isAnyTag (ce))
3442 {
3443 cstring fname = fileloc_filename (fwhere);
3444
3445 if (cstring_isUndefined (last_file))
3446 {
3447 last_file = fname;
3448 }
3449 else if (cstring_equal (fname, last_file))
3450 {
3451 }
3452 else
3453 {
3454 cleanupMessages ();
3455 last_file = fname;
3456 }
3457
3458 if (uentry_isParam (ce))
3459 {
3460 if (context_inMacro ())
3461 {
3462 sRef cref = uentry_getSref (ce);
3463
3464 if (uentry_isYield (ce))
3465 {
3466 ; /* no checks (for now) */
3467 }
3468 else if (sRef_isSafe (cref))
3469 {
3470 ; /* no error */
3471 }
3472 else
3473 {
3474 if (uentry_hasRealName (ce))
3475 {
3476 hasError =
3477 optgenerror (FLG_MACROPARAMS,
3478 message ("Macro parameter %q not used",
3479 uentry_getName (ce)),
3480 fwhere);
3481 }
3482 }
3483 }
3484 else
3485 {
3486 if (cstring_equalFree (uentry_getName (ce),
3487 cstring_makeLiteral ("...")))
3488 {
3489 ;
3490 }
3491 else
3492 {
3493 hasError = optgenerror (FLG_PARAMUNUSED,
3494 message ("Parameter %q not used",
3495 uentry_getName (ce)),
3496 fwhere);
3497 }
3498 }
3499 } /* isParam */
3500 else if (uentry_isFunction (ce) || uentry_isIter (ce))
3501 {
3502 if (fileloc_isUser (fwhere))
3503 {
3504 hasError = optgenerror
3505 (FLG_FUNCUNUSED,
3506 message ("%q %q declared but not used",
3507 cstring_makeLiteral
3508 (uentry_isIter (ce) ? "Iterator"
3509 : (isFileStatic ? "File static function" : "Function")),
3510 uentry_getName (ce)),
3511 fwhere);
3512 }
3513 }
3514 else if (uentry_isEndIter (ce))
3515 {
3516 ; /* no error (already reported for iter */
3517 }
3518 else if (uentry_isEnumConstant (ce))
3519 {
3520 if (fileloc_isUser (fwhere))
3521 {
3522 hasError = optgenerror
3523 (FLG_ENUMMEMUNUSED,
3524 message ("Enum member %q not used",
3525 uentry_getName (ce)),
3526 fwhere);
3527 }
3528 }
3529 else if (uentry_isConstant (ce))
3530 {
3531 if (fileloc_isUser (fwhere))
3532 {
3533 hasError = optgenerror
3534 (FLG_CONSTUNUSED,
3535 message ("Constant %q declared but not used",
3536 uentry_getName (ce)),
3537 fwhere);
3538 }
3539 }
3540 else if (uentry_isDatatype (ce))
3541 {
3542 if (fileloc_isUser (fwhere))
3543 {
3544 hasError = optgenerror
3545 (FLG_TYPEUNUSED,
3546 message ("Type %q declared but not used",
3547 uentry_getName (ce)),
3548 fwhere);
3549 }
3550 }
3551 else if (!uentry_isRefParam (ce) && !uentry_isExpandedMacro (ce))
3552 { /* errors for ref params will be reported in the next scope */
3553 llassertprint (uentry_isVar (ce),
3554 ("ce: %s", uentry_unparseFull (ce)));
3555
3556 if (ctype_isFunction (uentry_getType (ce)))
3557 {
3558 if (fileloc_isUser (fwhere))
3559 {
3560 hasError = optgenerror
3561 (FLG_FUNCUNUSED,
3562 message ("%q %q declared but not used",
3563 cstring_makeLiteral
3564 (isFileStatic ? "File static function"
3565 : "Function"),
3566 uentry_getName (ce)),
3567 fwhere);
3568 }
3569 }
3570 else
3571 {
3572 if (fileloc_isUser (fwhere))
3573 {
3574
3575
3576 hasError = optgenerror
3577 (FLG_VARUNUSED,
3578 message ("%q %q declared but not used",
3579 cstring_makeLiteral
3580 (isFileStatic ? "File static variable"
3581 : "Variable"),
3582 uentry_getName (ce)),
3583 fwhere);
3584 }
3585 }
3586 }
3587 else
3588 {
3589 ; /* no errors */
3590 }
3591 } /* unused */
28bf4b0b 3592 else if ((uentry_isDatatype (ce) || uentry_isAnyTag (ce)))
616915dd 3593 { /* check all fields */
3594 ctype ct = uentry_getRealType (ce);
3595
3596
3597 while (ctype_isAP (ct))
3598 {
3599 ct = ctype_getBaseType (ct);
3600 }
3601
616915dd 3602 if (ctype_isSU (ct))
3603 {
3604 uentryList fields = ctype_getFields (ct);
3605
3606 uentryList_elements (fields, field)
3607 {
3608 if (!uentry_isUsed (field))
3609 {
3610 if (uentry_hasName (ce))
3611 {
3612 hasError |= optgenerror
3613 (FLG_FIELDUNUSED,
3614 message ("Field %q of %s %q declared but not used",
3615 uentry_getName (field),
3616 cstring_makeLiteralTemp
3617 (ctype_isStruct (ct) ? "structure" : "union"),
3618 uentry_getName (ce)),
3619 uentry_whereEarliest (field));
3620 }
3621 else
3622 {
28bf4b0b 3623 /*
3624 ** evans 2001-06-08
3625 ** Can't report these errors for unnamed structs.
3626 ** No way to tell when there are multiple consistent
3627 ** unnamed structure types. (Could go through table
3628 ** and mark them all unused...)
3629
616915dd 3630 hasError |= optgenerror
3631 (FLG_FIELDUNUSED,
3632 message ("Field %q of unnamed %s declared but not used",
3633 uentry_getName (field),
3634 cstring_makeLiteralTemp
3635 (ctype_isStruct (ct) ? "structure" : "union")),
3636 uentry_whereEarliest (field));
28bf4b0b 3637
3638 */
616915dd 3639 }
3640
3641 uentry_setUsed (field, fileloc_undefined);
3642 }
3643 } end_uentryList_elements;
3644 }
3645 }
3646 else
3647 {
3648 ; /* no errors */
3649 }
3650
3651 if (hasError)
3652 {
3653 if (uentry_isParam (ce) && context_inMacro ())
3654 {
3655 if (fileloc_isDefined (uentry_whereSpecified (ce)))
3656 {
3657 uentry_showWhereSpecified (ce);
3658 }
3659 }
3660 else
3661 {
3662 uentry_showDefSpecInfo (ce, fwhere);
3663 }
3664
3665 uentry_setUsed (ce, fileloc_undefined);
3666 }
3667 }
3668}
3669
3670static void
3671checkGlobalReturn (uentry glob, sRef orig)
3672{
3673 sRef sr = uentry_getSref (glob);
3674
b7b694d6 3675 DPRINTF (("Check global return: %s / orig: %s / sr: %s",
28bf4b0b 3676 uentry_unparseFull (glob),
3677 sRef_unparseFull (orig),
3678 sRef_unparseFull (sr)));
3679
3680 DPRINTF (("Is killed: %s", bool_unparse (sRef_isKilledGlob (orig))));
3681
616915dd 3682 if (context_getFlag (FLG_GLOBSTATE))
3683 {
28bf4b0b 3684 DPRINTF (("Is killed: %s", sRef_unparseFull (orig)));
3685
616915dd 3686 if (sRef_isKilledGlob (orig))
3687 {
3688 if (sRef_isStateUndefined (sr)
3689 || sRef_isUnuseable (sr)
3690 || sRef_isStateUnknown (sr)
3691 || sRef_isDead (sr))
3692 {
3693 ;
3694 }
3695 else
3696 {
3697 ctype ct = ctype_realType (uentry_getType (glob));
3698
3699 if (ctype_isVisiblySharable (ct))
3700 {
3701 if (optgenerror
3702 (FLG_GLOBSTATE,
3703 message
28bf4b0b 3704 ("Killed global %q (type %s) not released before return",
3705 uentry_getName (glob),
3706 ctype_unparse (ct)),
616915dd 3707 g_currentloc))
3708 {
3709 sRef_showStateInfo (sr);
28bf4b0b 3710 }
616915dd 3711 }
3712 else
3713 {
28bf4b0b 3714 sRef_protectDerivs ();
616915dd 3715 (void) checkGlobalDestroyed (sr, g_currentloc);
3716 sRef_clearProtectDerivs ();
3717 }
3718 }
3719 }
3720 else
3721 {
3722 if (sRef_isStateUndefined (sr))
3723 {
3724 if (optgenerror (FLG_GLOBSTATE,
3725 message
3726 ("Function returns with global %q undefined",
3727 uentry_getName (glob)),
3728 g_currentloc))
3729 {
3730 sRef_showStateInfo (sr);
3731 }
3732 }
3733 else
3734 {
7ebcc5bb 3735 if (sRef_isDead (sr) || sRef_isKept (sr))
616915dd 3736 {
3737 if (optgenerror
3738 (FLG_GLOBSTATE,
3739 message ("Function returns with global %q "
7ebcc5bb 3740 "referencing %s storage",
3741 uentry_getName (glob),
3742 cstring_makeLiteralTemp (sRef_isDead (sr) ? "released" : "kept")),
616915dd 3743 g_currentloc))
3744 {
7ebcc5bb 3745 if (sRef_isKept (sr))
3746 {
3747 sRef_showAliasInfo (sr);
3748 }
3749 else
3750 {
3751 sRef_showStateInfo (sr);
3752 }
3753
616915dd 3754 sRef_setDefState (sr, SS_UNKNOWN, fileloc_undefined);
3755 }
3756 }
3757
28bf4b0b 3758 if (ctype_isRealPointer (uentry_getType (glob))
3759 && sRef_possiblyNull (sr)
3760 && !uentry_possiblyNull (glob))
616915dd 3761 {
3762 if (optgenerror
3763 (FLG_GLOBSTATE,
3764 message ("Function returns with non-null global %q "
3765 "referencing null storage",
3766 uentry_getName (glob)),
3767 g_currentloc))
3768 {
3769 sRef_showNullInfo (sr);
3770 }
3771 }
3772 else
3773 {
3774 checkGlobReturn (glob);
3775 }
3776 }
3777 }
3778 }
3779}
3780
3781/*
3782** remember: check alias globals
3783*/
3784
3785void usymtab_checkFinalScope (bool isReturn)
3786 /*@globals utab@*/
3787{
3788 bool mustFree = context_getFlag (FLG_MUSTFREE);
3789 bool mustDefine = context_getFlag (FLG_MUSTDEFINE);
3790 /* bool mustNotAlias = context_getFlag (FLG_MUSTNOTALIAS); */
3791 sRefSet checked = sRefSet_new ();
3792 usymtab stab = utab;
3793 int i;
3794
3795 /*
3796 ** need to check all scopes out to function parameters.
3797 */
3798
3799 do
3800 {
3801 for (i = 0; i < stab->nentries; i++)
3802 {
3803 uentry ce = stab->entries[i];
3804 sRef sr = uentry_getSref (ce);
3805 sRef rb = sRef_getRootBase (sr);
28bf4b0b 3806 valueTable tvalues;
616915dd 3807
28bf4b0b 3808 /*
3809 ** Shouldn't check if shadow checked in deeper scope:
3810 */
3811
3812 if (stab != utab)
3813 {
3814 uentry oue = usymtab_lookupQuietNoAlt (utab, uentry_observeRealName (ce));
3815
3816 if (!uentry_sameObject (ce, oue))
3817 {
3818 DPRINTF (("Skipping outer entry: %s / %s", uentry_unparseFull (ce),
3819 uentry_unparseFull (oue)));
3820 /*@i32 what if it is one an alternate branch? */
3821 /*@innercontinue@*/ continue;
3822 }
3823 }
3e3ec469 3824
28bf4b0b 3825 DPRINTF (("Here check final scope: %s", uentry_unparseFull (ce)));
3826
616915dd 3827 if (ctype_isFunction (uentry_getType (ce)))
3828 {
3829 /*@innercontinue@*/ continue;
3830 }
3831
28bf4b0b 3832 if (uentry_isAnyParam (ce)
3833 || uentry_isRefParam (ce)
3834 || sRef_isFileOrGlobalScope (rb))
3835 {
3836 /* Don't do the loseref check...but should check state! */
3e3ec469 3837 DPRINTF (("Skipping check 1"));
28bf4b0b 3838 }
3839 else if (sRef_isDefinitelyNull (sr)
3840 || usymtab_isDefinitelyNull (sr))
3841 {
3842 /*
3843 ** No state reference errors for definitely null references.
3844 */
3e3ec469 3845
3846 DPRINTF (("Skipping check 2"));
28bf4b0b 3847 }
3848 else
3849 {
3850 DPRINTF (("Lose ref: %s / %s", uentry_unparse (ce),
3851 sRef_unparseFull (sr)));
3852
3853 tvalues = sRef_getValueTable (sr);
3854
3855 valueTable_elements (tvalues, fkey, fval) {
3856 metaStateInfo minfo;
3857 cstring msg = cstring_undefined;
3858 int nval;
3859
3860 minfo = context_lookupMetaStateInfo (fkey);
3861 llassert (metaStateInfo_isDefined (minfo));
3862
15b3d2b2 3863 if (stateValue_isError (fval)
3864 || sRef_isStateUndefined (sr)) /* No errors for undefined state */
28bf4b0b 3865 {
3e3ec469 3866 DPRINTF (("Skipping check 3"));
28bf4b0b 3867 }
3868 else
3869 {
3870 DPRINTF (("Check: %s / %s / %s", fkey,
3871 metaStateInfo_unparse (minfo),
3872 stateValue_unparse (fval)));
3873
3874 minfo = context_lookupMetaStateInfo (fkey);
3875
3876 nval = stateCombinationTable_lookupLoseReference
3877 (metaStateInfo_getTransferTable (minfo),
3878 stateValue_getValue (fval), &msg);
3879
3880 if (cstring_isDefined (msg))
3881 {
3882 /*@i32 print extra info for assignments@*/
3883 DPRINTF (("From: %s", sRef_unparseFull (sr)));
3884 DPRINTF (("Null? %s / %s",
3885 bool_unparse (sRef_isDefinitelyNull (sr)),
3886 bool_unparse (usymtab_isGuarded (sr))));
3887
3888 if (optgenerror
3889 (FLG_STATETRANSFER,
3890 message
2c88d156 3891 ("%s loses reference %q in invalid state %q (%s)",
28bf4b0b 3892 cstring_makeLiteralTemp (isReturn ? "Return" : "Scope exit"),
3893 uentry_getName (ce),
2c88d156 3894 stateValue_unparseValue (fval, minfo),
28bf4b0b 3895 msg),
3896 g_currentloc))
3897 {
3898 stateValue_show (fval, minfo);
3899 }
3900 else
3901 {
3902 DPRINTF (("Suppressed transfer error: %s", msg));
3903 }
3904 }
3905 }
3906 } end_valueTable_elements;
3907 }
3908
3e3ec469 3909 DPRINTF (("Here 1"));
3910
616915dd 3911 if (mustFree)
3912 {
3e3ec469 3913 DPRINTF (("Check mustfree entry: %s", uentry_unparseFull (ce)));
28bf4b0b 3914
3915 if (!sRefSet_member (checked, sr) && !sRef_isFileOrGlobalScope (rb))
616915dd 3916 {
3917 if (ctype_isRealSU (uentry_getType (ce))
3918 && !uentry_isAnyParam (ce)
3919 && !uentry_isRefParam (ce)
3920 && !uentry_isStatic (ce)
3921 && !sRef_isDependent (sr)
3922 && !sRef_isOwned (sr))
3923 {
3924 sRefSet als = usymtab_allAliases (sr);
616915dd 3925
3926 if (sRefSet_isEmpty (als))
3927 {
3928 checkLocalDestroyed (sr, g_currentloc);
3929 }
3930 else
3931 {
3932 /* aliased, no problem */ ;
3933 }
3934
3935 sRefSet_free (als);
3936 }
3937 else if
3938 (!uentry_isStatic (ce)
3939 && ((sRef_isNewRef (sr))
3940 || (((sRef_isOnly (sr) || sRef_isFresh (sr)
3941 || sRef_isKeep (sr) || sRef_isOwned (sr))
3942 && !sRef_isDead (sr))
3943 && (!sRef_definitelyNull (sr))
28bf4b0b 3944 && (!usymtab_isDefinitelyNull (sr)))))
616915dd 3945 {
3946 bool hasError = TRUE;
3947
28bf4b0b 3948 DPRINTF (("Checking: %s", sRef_unparseFull (sr)));
3949
616915dd 3950 /*
3951 ** If its a scope exit, check if there is an alias.
3952 ** If so, make it only. If not, there is an error.
3953 */
3954
3955 if (!isReturn)
3956 {
3957 if (canLoseReference (sr, g_currentloc))
3958 {
28bf4b0b 3959 DPRINTF (("Can lose!"));
616915dd 3960 hasError = FALSE;
3961 }
3962 }
3963
3964 if (hasError)
3965 {
3966 if (sRef_hasLastReference (sr))
3967 {
3968 sRef ar = sRef_getAliasInfoRef (sr);
3969
3970 if (optgenerror
3971 (FLG_MUSTFREE,
3972 message
3973 ("Last reference %q to %s storage %qnot %q before %q",
3974 sRef_unparse (sr),
3975 alkind_unparse (sRef_getAliasKind (sr)),
3976 sRef_unparseOpt (ar),
3977 cstring_makeLiteral (sRef_isKeep (sr)
3978 ? "transferred" : "released"),
3979 cstring_makeLiteral (isReturn
3980 ? "return" : "scope exit")),
3981 g_currentloc))
3982 {
3983 sRef_showRefLost (sr);
3984 }
3985 }
3986 else if (sRef_isNewRef (sr))
3987 {
3988 if (optgenerror
3989 (FLG_MUSTFREE,
3990 message
3991 ("%q %q not released before %q",
3992 cstring_makeLiteral
3993 (alkind_isKillRef (sRef_getOrigAliasKind (sr))
3994 ? "Kill reference parameter" : "New reference"),
3995 uentry_getName (ce),
3996 cstring_makeLiteral (isReturn
3997 ? "return" : "scope exit")),
3998 g_currentloc))
3999 {
4000 sRef_showAliasInfo (sr);
4001 }
4002 }
4003 else
4004 {
4005 if (ctype_isRealSU (sRef_getType (sr)))
4006 {
28bf4b0b 4007 checkStructDestroyed (sr, g_currentloc);
616915dd 4008 }
4009 else
4010 {
28bf4b0b 4011 DPRINTF (("Here we are: %s", sRef_unparseFull (sr)));
4012
616915dd 4013 if (optgenerror
4014 (FLG_MUSTFREE,
4015 message
4016 ("%s storage %q not %q before %q",
4017 alkind_capName (sRef_getAliasKind (sr)),
4018 uentry_getName (ce),
4019 cstring_makeLiteral (sRef_isKeep (sr)
4020 ? "transferred" : "released"),
4021 cstring_makeLiteral (isReturn
4022 ? "return" : "scope exit")),
4023 g_currentloc))
4024 {
4025 sRef_showAliasInfo (sr);
28bf4b0b 4026 DPRINTF (("Storage: %s", sRef_unparseFull (sr)));
616915dd 4027 }
4028 }
4029 }
4030 }
4031 }
4032 else
4033 {
4034 ;
4035 }
4036 }
3e3ec469 4037 }
4038
a956d444 4039 if (mustDefine && uentry_isOut (ce))
3e3ec469 4040 {
a956d444 4041 /* No error if its dead (either only or error already reported */
4042 if (!sRef_isReallyDefined (sr) && !sRef_isDead (sr))
616915dd 4043 {
3e3ec469 4044 voptgenerror
4045 (FLG_MUSTDEFINE,
4046 message ("Out storage %q not defined before %q",
4047 uentry_getName (ce),
4048 cstring_makeLiteral
4049 (isReturn ? "return" : "scope exit")),
4050 g_currentloc);
616915dd 4051 }
3e3ec469 4052 }
4053
4054 /*
4055 ** also check state is okay
4056 */
4057
4058 if (usymtab_lexicalLevel () > functionScope
4059 && uentry_isVariable (ce)
4060 && (sRef_isLocalVar (sr)
4061 && (sRef_isDependent (sr) || sRef_isLocalState (sr))))
4062 {
4063 sRefSet ab = usymtab_aliasedBy (sr);
616915dd 4064
3e3ec469 4065 /* should do something more efficient here */
28bf4b0b 4066
3e3ec469 4067 if (sRefSet_isEmpty (ab))
616915dd 4068 {
3e3ec469 4069 /* and no local ref */
4070 DPRINTF (("Check lose ref: %s", uentry_unparseFull (ce)));
4071 checkLoseRef (ce);
616915dd 4072 }
3e3ec469 4073 else
616915dd 4074 {
4075 ;
4076 }
4077
3e3ec469 4078 sRefSet_free (ab);
616915dd 4079 }
3e3ec469 4080 else
4081 {
4082 ;
4083 }
4084
4085 checked = sRefSet_insert (checked, sr);
616915dd 4086 }
28bf4b0b 4087
616915dd 4088 llassert (usymtab_isDefined (stab->env));
4089
4090 if (usymtab_isBranch (stab))
4091 {
4092 stab = usymtab_dropEnv (stab);
4093 }
4094 else
4095 {
4096 stab = stab->env;
4097 }
28bf4b0b 4098
616915dd 4099 llassert (stab != usymtab_undefined);
4100 } while (isReturn && (stab->lexlevel >= paramsScope));
28bf4b0b 4101
4102 sRefSet_free (checked);
4103
616915dd 4104 /*
4105 ** for returns:
4106 ** all globals are appropriately defined
4107 ** all parameters are appropriately defined
4108 ** special clauses are followed
4109 */
4110
4111 if (isReturn || (utab->lexlevel == paramsScope))
4112 {
4113 uentry fcn = context_getHeader ();
4114 uentryList params = context_getParams ();
4115 globSet uglobs = context_getUsedGlobs ();
4116 globSet sglobs = context_getGlobs ();
616915dd 4117
4118 if (isReturn && context_maybeSet (FLG_GLOBALIAS))
4119 {
4120 aliasTable_checkGlobs (utab->aliases);
4121 }
4122
4123 /*
28bf4b0b 4124 ** state clauses (ensures, defines, sets, allocates, releases)
616915dd 4125 */
28bf4b0b 4126
4127 if (uentry_hasStateClauseList (fcn))
616915dd 4128 {
28bf4b0b 4129 stateClauseList clauses = uentry_getStateClauseList (fcn);
616915dd 4130
28bf4b0b 4131 stateClauseList_elements (clauses, cl)
616915dd 4132 {
28bf4b0b 4133 if (stateClause_isAfter (cl) && !stateClause_isGlobal (cl))
4134 {
4135 if (stateClause_setsMetaState (cl))
616915dd 4136 {
28bf4b0b 4137 sRefSet rfs = stateClause_getRefs (cl);
4138 qual q = stateClause_getMetaQual (cl);
4139 annotationInfo ainfo = qual_getAnnotationInfo (q);
4140 metaStateInfo minfo = annotationInfo_getState (ainfo);
4141 cstring key = metaStateInfo_getName (minfo);
4142 int mvalue = annotationInfo_getValue (ainfo);
4143
4144 DPRINTF (("Post meta state clause: %s", stateClause_unparse (cl)));
4145
4146 sRefSet_elements (rfs, el)
616915dd 4147 {
28bf4b0b 4148 sRef base = sRef_getRootBase (el);
616915dd 4149
28bf4b0b 4150 if (sRef_isResult (base))
4151 {
4152 /*
4153 ** This is checked for return transfers.
4154 */
4155 ;
4156 }
4157 else if (sRef_isParam (base) || sRef_isGlobalMarker (base))
616915dd 4158 {
28bf4b0b 4159 sRef sr = sRef_updateSref (base);
4160 sr = sRef_fixBase (el, sr);
4161
4162 if (!sRef_checkMetaStateValue (sr, key, mvalue))
616915dd 4163 {
28bf4b0b 4164 if (optgenerror
4165 (FLG_STATETRANSFER,
4166 message
2c88d156 4167 ("Ensures clause not satisfied%q (state is %q): %q",
28bf4b0b 4168 sRef_isGlobalMarker (sr)
4169 ? message ("")
4170 : message (" by %q", sRef_unparse (sr)),
4171 stateValue_unparseValue (sRef_getMetaStateValue (sr, key),
4172 minfo),
4173 stateClause_unparse (cl)),
4174 g_currentloc))
616915dd 4175 {
28bf4b0b 4176 sRef_showMetaStateInfo (sr, key);
4177 }
4178 }
616915dd 4179 }
28bf4b0b 4180 else
4181 {
4182 if (sRef_isMeaningful (el))
4183 {
4184 BADBRANCH;
4185 }
4186 }
4187 } end_sRefSet_elements ;
4188 }
4189 else
4190 {
4191 /* evs - 2000 07 10 - added this */
4192 sRefTest tst = stateClause_getPostTestFunction (cl);
4193 sRefSet rfs = stateClause_getRefs (cl);
4194
4195 sRefSet_elements (rfs, el)
616915dd 4196 {
28bf4b0b 4197 sRef base = sRef_getRootBase (el);
4198
4199 if (sRef_isResult (base))
616915dd 4200 {
28bf4b0b 4201 /*
4202 ** This is checked for return transfers.
4203 */
4204
4205 ;
616915dd 4206 }
28bf4b0b 4207 else if (sRef_isParam (base))
4208 {
4209 sRef sr = sRef_updateSref (base);
4210 sr = sRef_fixBase (el, sr);
4211
4212 if (tst != NULL && !tst (sr))
4213 {
4214 if (optgenerror
4215 (stateClause_postErrorCode (cl),
4216 message ("%s storage %qcorresponds to "
4217 "storage listed in %q clause",
4218 stateClause_postErrorString (cl, sr),
4219 sRef_unparseOpt (sr),
4220 stateClause_unparseKind (cl)),
4221 g_currentloc))
4222 {
4223 sRefShower ss = stateClause_getPostTestShower (cl);
4224
4225 if (ss != NULL)
4226 {
4227 ss (sr);
4228 }
1d239d69 4229
3120b462 4230 DPRINTF (("Storage: %s", sRef_unparseFull (sr)));
28bf4b0b 4231 }
4232 }
4233 }
4234 else
4235 {
4236 if (sRef_isMeaningful (el))
4237 {
4238 BADBRANCH;
4239 }
4240 }
4241 } end_sRefSet_elements ;
4242 }
616915dd 4243 }
28bf4b0b 4244 } end_stateClauseList_elements ;
616915dd 4245 }
4246
4247 /*
4248 ** check parameters on return
4249 */
4250
4251 uentryList_elements (params, arg)
4252 {
4253 if (!uentry_isElipsisMarker (arg))
4254 {
4255 ctype rt = ctype_realType (uentry_getType (arg));
4256
4257 if (ctype_isMutable (rt) || ctype_isSU (rt))
4258 {
4259 uentry param = usymtab_lookupQuiet (utab, uentry_rawName (arg));
28bf4b0b 4260 DPRINTF (("Check param return: %s", uentry_unparseFull (param)));
616915dd 4261 checkParamReturn (param);
4262 }
4263 }
4264 } end_uentryList_elements;
4265
28bf4b0b 4266 DPRINTF (("Check global return: %s",
4267 globSet_unparse (sglobs)));
4268
616915dd 4269 globSet_allElements (sglobs, el)
4270 {
28bf4b0b 4271 sRef orig = el; /*! sRef_updateSref (el); */ /*!!!*/
616915dd 4272 uentry current = sRef_getUentry (el);
4273
28bf4b0b 4274 DPRINTF (("Check global return: %s / %s", sRef_unparseFull (el),
4275 uentry_unparseFull (current)));
4276
616915dd 4277 if (uentry_isVariable (current) && !uentry_isRealFunction (current))
4278 {
28bf4b0b 4279 checkGlobalReturn (current, orig);
616915dd 4280 }
4281 } end_globSet_allElements;
4282
4283 globSet_allElements (uglobs, el)
4284 {
4285 if (!globSet_member (sglobs, el))
4286 {
4287 uentry current = sRef_getUentry (el);
4288
616915dd 4289 if (uentry_isVariable (current)
4290 && !uentry_isRealFunction (current))
4291 {
4292 checkGlobalReturn (current, sRef_undefined);
4293 }
4294 }
4295 } end_globSet_allElements;
28bf4b0b 4296 }
4297}
616915dd 4298
4299void
4300usymtab_quietExitScope (fileloc loc)
4301 /*@globals utab, globtab, filetab; @*/
4302 /*@modifies utab@*/
4303{
4304 usymtab t = utab->env;
4305
4306 if (utab->reftable != NULL)
4307 {
4308 int i;
4309
4310 for (i = 0; i < utab->nentries; i++)
4311 {
4312 uentry current = utab->entries[i];
4313 uentry old = usymtab_lookupAux (t, uentry_rawName (current));
4314
4315 uentry_mergeState (old, current, loc, FALSE, FALSE, FALSE, NOCLAUSE);
4316 }
4317 }
4318
4319 llassert (t != NULL);
4320
4321 if (t->lexlevel > paramsScope)
4322 {
4323 t->guards = guardSet_levelUnion (t->guards, utab->guards, t->lexlevel);
4324 t->aliases = aliasTable_levelUnionSeq (t->aliases, utab->aliases,
4325 t->lexlevel);
4326 utab->aliases = aliasTable_undefined;
4327 }
4328
4329 t->mustBreak = utab->mustBreak;
4330 t->exitCode = utab->exitCode;
4331
4332 usymtab_freeLevel (utab);
4333
4334 utab = t;
4335}
4336
4337/*
4338** Exit a scope with no checking, lose alias states.
4339** (When should this be used?)
4340*/
4341
4342void usymtab_quietPlainExitScope (void)
4343 /*@globals utab, globtab, filetab@*/
4344 /*@modifies utab@*/
4345{
4346 usymtab t = utab->env;
4347
4348 llassert (t != NULL);
4349 llassert (NOALIAS (utab->aliases, t->aliases));
4350 usymtab_freeLevel (utab);
4351 utab = t;
4352}
4353
4354void usymtab_exitScope (exprNode expr)
4355 /*@globals utab, filetab, globtab@*/
4356 /*@modifies utab, globtab@*/
4357{
4358 usymtab ctab = usymtab_undefined;
4359 usymtab lctab = usymtab_undefined;
4360 bool mustReturn = exprNode_mustEscape (expr);
28bf4b0b 4361
4362 DPRINTF (("Exit scope"));
4363
616915dd 4364 if (utab->kind == US_CBRANCH)
4365 {
4366 /*
4367 ** save the case branches, remove the first non-cbranch
4368 */
4369
4370 ctab = utab;
4371
4372 while (utab->kind == US_CBRANCH)
4373 {
4374 lctab = utab;
4375 utab = utab->env;
4376 llassert (utab != GLOBAL_ENV);
4377 }
4378 }
4379
4380 if (utab->kind == US_TBRANCH || utab->kind == US_FBRANCH
4381 || utab->kind == US_CBRANCH || utab->kind == US_SWITCH) {
4382
4383 if (context_inMacro ()) {
4384 /* evs 2000-07-25 */
4385 /* Unparseable macro may end inside nested scope. Deal with it. */
4386
28bf4b0b 4387 llerror (FLG_SYNTAX,
4388 message ("Problem parsing macro body of %s (unbalanced scopes). "
4389 "Attempting to recover, recommend /*@notfunction@*/ before "
4390 "macro definition.",
4391 context_inFunctionName ()));
616915dd 4392
4393 while (utab->kind == US_TBRANCH
4394 || utab->kind == US_FBRANCH
4395 || utab->kind == US_CBRANCH
4396 || utab->kind == US_SWITCH)
4397 {
4398 utab = utab->env;
4399 llassert (utab != GLOBAL_ENV);
4400 }
4401 } else {
28bf4b0b 4402 llcontbug (message ("exitScope: in branch: %q", usymtab_unparseStack ()));
616915dd 4403 /*@-branchstate@*/
4404 } /*@=branchstate@*/
4405 }
4406
4407 /*
4408 ** check all variables in scope were used
4409 */
4410
4411 /*
4412 ** bogus errors if this is the normal inside a switch,
4413 ** since cases have not been merged yet. Should probably
4414 ** still check this, but I'm too lazy at the moment...
4415 */
4416
4417 llassertfatal (utab->env != GLOBAL_ENV);
4418
4419 if (utab->env->kind != US_SWITCH)
4420 {
4421 usymtab_allUsed ();
4422 }
4423
4424 /*
4425 ** check aliasing: all only params are released (dead)
4426 ** definition: all out params are defined, all modified params
4427 ** are completely defined
4428 **
4429 ** NOTE: note for exiting paramsScope, since checkReturn should be
4430 ** called first.
4431 */
4432
4433 if (!mustReturn && (usymtab_lexicalLevel () > functionScope))
4434 {
4435 /*
4436 ** should only call this is end of scope is reachable...
4437 */
4438
4439 usymtab_checkFinalScope (FALSE);
4440 }
4441
4442 if (usymtab_lexicalLevel () == paramsScope && context_inFunctionLike ())
4443 {
4444 /*
4445 ** leaving a function, need to fix up globals
4446 */
4447
4448 uentryList params = context_getParams ();
4449 globSet globs = context_getUsedGlobs ();
4450
4451
4452 uentryList_elements (params, ue)
4453 {
4454 uentry_fixupSref (ue);
4455 } end_uentryList_elements;
4456
4457 clearFunctionTypes ();
4458
4459
4460 globSet_allElements (globs, el)
4461 {
4462 if (sRef_isCvar (el))
4463 {
4464 uentry current;
4465 int index = sRef_getScopeIndex (el);
4466
4467 if (sRef_isFileStatic (el))
4468 {
4469 llassert (usymtab_isDefined (filetab));
4470 current = usymtab_fetchIndex (filetab, index);
4471 }
4472 else
4473 {
4474 current = usymtab_fetchIndex (globtab, index);
4475 }
4476
4477 if (uentry_isVariable (current))
4478 {
4479 uentry_fixupSref (current);
4480 }
4481 else
4482 {
4483 sRef_clearDerived (uentry_getSref (current));
4484 }
4485 }
4486 } end_globSet_allElements;
4487 }
4488
4489 usymtab_quietExitScope (exprNode_loc (expr));
4490
4491 if (lctab != usymtab_undefined)
4492 {
4493 /*@i@*/ lctab->env = utab;
4494 /*@i@*/ utab = ctab;
4495 /*@-branchstate@*/ } /*@=branchstate@*/
146e25eb 4496 /*@-globstate@*/
4497/*@i523@*/ }
616915dd 4498/*@=globstate@*/
4499
4500/*
4501** yikes! don't let the '170 kids see this one...
4502*/
4503
4504int
4505uentry_directParamNo (uentry ue)
4506{
4507 if (uentry_isVar (ue))
4508 {
4509 sRef sr = uentry_getSref (ue);
4510
4511 if (sRef_lexLevel (sr) == functionScope)
4512 {
28bf4b0b 4513 int index;
4514
4515 /*@access sRef@*/
4516 llassert (sr->info != NULL);
4517 llassert (sr->info->cvar != NULL);
4518 index = sr->info->cvar->index;
4519 /*@noaccess sRef@*/
616915dd 4520
4521 if (index < uentryList_size (context_getParams ()))
4522 {
4523 return index;
4524 }
4525 }
4526 }
4527 return -1;
4528}
4529
4530/*@dependent@*/ /*@exposed@*/ uentry
4531 usymtab_getParam (int paramno)
4532 /*@globals utab@*/
4533{
4534 /*
4535 ** requires in a function context (checked)
4536 **
4537 ** depends on no nested functions --- the function
4538 ** parameters are ALWAYS one scope inside the global scope
4539 ** and entered in order!
4540 */
4541 usymtab s = utab;
4542
4543 if (!context_inFunctionLike ())
4544 llfatalbug (message ("usymtab_getParam: not in function context: %q",
4545 context_unparse ()));
4546
4547 while (s->lexlevel > paramsScope)
4548 {
4549 s = s->env;
4550 }
4551
4552 llassert (usymtab_isDefined (s));
4553
4554 if (paramno >= s->nentries)
4555 {
4556 /*
4557 ** Parse errors lead to this.
4558 */
4559
4560 uentry err = uentry_makeVariableLoc (cstring_makeLiteralTemp ("<error>"),
4561 ctype_unknown);
4562
4563 uentry_markOwned (err);
4564 return (err);
4565 }
4566
4567 return (s->entries[paramno]);
4568}
4569
4570static /*@dependent@*/ /*@exposed@*/ uentry
4571usymtab_getRefTab (/*@notnull@*/ usymtab u, int level, usymId index)
4572{
4573 uentry ue;
4574
616915dd 4575 ue = usymtab_getRefNoisy (u, level, index);
4576
616915dd 4577 if (uentry_isUndefined (ue))
4578 {
4579 llbug (message ("usymtab_getRef: out of range: %d. level = %d",
4580 index, level));
4581 }
616915dd 4582
4583 return ue;
4584}
4585
4586static /*@dependent@*/ /*@exposed@*/ usymtab
4587 usymtab_dropEnv (/*@notnull@*/ usymtab s)
4588{
4589 if (s->kind == US_CBRANCH)
4590 {
4591 usymtab t = s;
4592
4593 do
4594 {
4595 t = s;
4596 s = s->env;
4597 llassert (s != GLOBAL_ENV);
4598 } while (s->kind == US_CBRANCH);
4599 /* drop all cases (except in nested scopes */
4600
4601 s = t;
4602 llassert (s != GLOBAL_ENV);
4603 }
4604
4605 if (s->kind == US_FBRANCH)
4606 {
4607 s = s->env; /* skip the true branch */
4608 llassert (usymtab_isDefined (s));
4609 llassert (s->kind == US_TBRANCH);
4610 }
4611
4612 llassert (s != GLOBAL_ENV);
4613 s = s->env;
4614
4615 return s;
4616}
4617
4618/*@dependent@*/ /*@exposed@*/ uentry
4619 usymtab_getRefQuiet (int level, usymId index)
4620 /*@globals utab@*/
4621{
4622 usymtab s = utab;
4623
4624
4625 llassert (s != NULL);
4626 llassert (index >= 0);
4627
4628 if (level > s->lexlevel)
28bf4b0b 4629 {
616915dd 4630 return uentry_undefined;
4631 }
4632
4633 llassertprint (level <= s->lexlevel, ("level: %d / lexlevel: %d",
4634 level, s->lexlevel));
4635
4636 while (s->lexlevel > level)
4637 {
4638 if (usymtab_isBranch (s))
4639 {
4640 int eindex = refTable_lookup (s, level, index);
4641
4642 if (eindex != NOT_FOUND)
4643 {
4644 return (s->entries[eindex]);
4645 }
4646 }
4647
4648 s = usymtab_dropEnv (s);
4649 }
4650
4651 while (usymtab_isBranch (s) && s->lexlevel == level)
4652 {
4653 int eindex = refTable_lookup (s, level, index);
4654
4655 if (eindex != NOT_FOUND)
4656 {
4657 return (s->entries[eindex]);
4658 }
4659
4660 s = usymtab_dropEnv (s);
4661 }
4662
4663 if (index >= s->nentries)
4664 {
4665 return uentry_undefined;
4666 }
4667
4668 llassert (!uentry_isUndefined (s->entries[index]));
4669
4670 return s->entries[index];
4671}
4672
4673static /*@dependent@*/ /*@exposed@*/ uentry
4674usymtab_getRefNoisy (/*@notnull@*/ usymtab s, int level, usymId index)
4675{
4676 usymtab otab = s;
4677 uentry ue = uentry_undefined;
616915dd 4678
4679 llassert (index >= 0);
616915dd 4680
4681 while (s->lexlevel > level)
4682 {
616915dd 4683 if (usymtab_isBranch (s))
4684 {
4685 int eindex = refTable_lookup (s, level, index);
4686
4687 if (eindex != NOT_FOUND)
4688 {
4689 ue = s->entries[eindex];
4690
4691 if (s != otab)
4692 {
4693 while (!usymtab_isBranch (otab))
4694 {
4695 otab = usymtab_dropEnv (otab);
4696 llassert (otab != GLOBAL_ENV);
4697 }
4698
4699 if (refTable_lookup (otab, level, index) == NOT_FOUND)
4700 {
4701 ue = usymtab_addRefEntry (otab, uentry_rawName (ue));
4702 }
4703 else
4704 {
4705 ;
4706 }
4707 }
4708
4709 return ue;
4710 }
4711 }
4712
4713 s = usymtab_dropEnv (s);
4714 }
4715
4716 llassert (usymtab_isDefined (s));
4717
4718 while (usymtab_isBranch (s) && s->lexlevel == level)
4719 {
4720 int eindex = refTable_lookup (s, level, index);
4721
4722
4723 if (eindex != NOT_FOUND)
4724 {
4725 ue = s->entries[eindex];
4726
4727 if (s != otab)
4728 {
4729 while (!usymtab_isBranch (otab))
4730 {
4731 otab = usymtab_dropEnv (otab);
4732 llassert (otab != GLOBAL_ENV);
4733 }
4734
4735 ue = usymtab_addRefEntry (otab, uentry_rawName (ue));
4736 }
4737 else
4738 {
4739 ;
4740 }
4741
4742 return ue;
4743 }
4744
4745 s = usymtab_dropEnv (s);
4746 }
4747
4748 if (s->lexlevel == level && (index < s->nentries))
4749 {
4750 ue = s->entries[index];
4751
4752 if (uentry_isValid (ue))
4753 {
4754 if (s != otab)
4755 {
4756 while (!usymtab_isBranch (otab))
4757 {
4758 otab = usymtab_dropEnv (otab);
4759
4760 if (otab == GLOBAL_ENV)
4761 {
4762 return ue;
4763 }
4764 }
4765
4766 ue = usymtab_addRefEntry (otab, uentry_rawName (ue));
4767 }
4768 else
4769 {
28bf4b0b 4770 }
616915dd 4771 }
28bf4b0b 4772
616915dd 4773 return ue;
4774 }
4775
4776
4777 if (index >= s->nentries)
4778 {
4779 return uentry_undefined;
4780 }
4781
4782 llassert (!uentry_isUndefined (s->entries[index]));
4783
4784 return s->entries[index];
4785}
4786
4787/*
4788** looking up entries
4789**
4790** If entry is inside a branch, then copy it, and put it into
4791** the branch table.
4792*/
4793
4794static
4795int refTable_lookup (/*@notnull@*/ usymtab ut, int level, int index)
4796{
4797 refTable rt = ut->reftable;
4798 int i;
4799
4800 llassert (rt != NULL);
4801
616915dd 4802 for (i = 0; i < ut->nentries; i++)
4803 {
4804 if (rt[i]->level == level && rt[i]->index == index)
4805 {
28bf4b0b 4806 return i;
616915dd 4807 }
4808 }
28bf4b0b 4809
4810 return NOT_FOUND;
616915dd 4811}
4812
4813static
4814/*@only@*/ refentry refentry_create (int level, int index)
4815{
4816 refentry r = (refentry) dmalloc (sizeof (*r));
4817
4818 r->level = level;
4819 r->index = index;
4820
4821 return r;
4822}
4823
4824static /*@dependent@*/ /*@exposed@*/ uentry
4825usymtab_addRefEntry (/*@notnull@*/ usymtab s, cstring k)
4826{
4827 int eindex;
4828 usymtab ut = s;
4829
28bf4b0b 4830 if (ut->reftable == NULL)
4831 {
4832 DPRINTF (("Adding ref entry without reftable: %s", k));
4833 return uentry_undefined;
4834 }
616915dd 4835
28bf4b0b 4836 llassert (ut->reftable != NULL);
4837
616915dd 4838 while (s != GLOBAL_ENV)
4839 {
4840 eindex = usymtab_getIndex (s, k);
4841
4842 if (eindex != NOT_FOUND)
4843 {
4844 uentry current = s->entries[eindex];
4845
4846 if (uentry_isVar (current) && !ctype_isFunction (uentry_getType (current)))
4847 {
4848 uentry ue;
4849
28bf4b0b 4850 DPRINTF (("Here: copying %s", uentry_unparse (current)));
616915dd 4851 ue = uentry_copy (current);
28bf4b0b 4852 DPRINTF (("Here: copying %s", uentry_unparse (ue)));
616915dd 4853 usymtab_addEntryQuiet (ut, ue);
28bf4b0b 4854 DPRINTF (("Okay..."));
4855
616915dd 4856 if (s->reftable != NULL)
4857 {
4858 refentry ref = s->reftable[eindex];
616915dd 4859
4860 ut->reftable[ut->nentries - 1]
4861 = refentry_create (ref->level, ref->index);
4862 }
4863 else
4864 {
4865 ut->reftable[ut->nentries - 1]
4866 = refentry_create (s->lexlevel, eindex);
4867 }
4868
4869 return (ue);
4870 }
4871 else
4872 {
4873 return (current);
4874 }
4875 }
4876
4877 s = usymtab_dropEnv (s);
4878 }
4879
4880 return uentry_undefined;
4881}
4882
4883static uentry usymtab_lookupAux (usymtab s, cstring k)
4884{
4885 DPRINTF (("Lookup: %s", k));
4886
4887 while (s != GLOBAL_ENV)
4888 {
4889 int eindex = usymtab_getIndex (s, k);
4890
4891 if (eindex != NOT_FOUND)
4892 {
4893 uentry ret = s->entries[eindex];
28bf4b0b 4894# if 0
4895
616915dd 4896
28bf4b0b 4897 if (s->kind == US_TBRANCH
4898 || s->kind == US_FBRANCH
4899 || s->kind == US_CBRANCH)
4900 /* uentry_isGlobalVariable (ret) && os->lexlevel > fileScope) */
4901 {
4902 uentry ret;
4903 DPRINTF (("Adding global ref entry: %s", k));
4904 ret = usymtab_addRefEntry (os, k);
4905 DPRINTF (("Adding ref entry: %s", uentry_unparseFull (ret)));
4906 return ret;
4907 }
4908
4909# endif
616915dd 4910 DPRINTF (("Found: %s", uentry_unparseFull (ret)));
4911 return (ret);
4912 }
28bf4b0b 4913
616915dd 4914 if (s->kind == US_TBRANCH || s->kind == US_FBRANCH
4915 || s->kind == US_CBRANCH)
4916 {
28bf4b0b 4917 /* why isn't this os??? */
616915dd 4918 uentry ret = usymtab_addRefEntry (s, k);
28bf4b0b 4919 DPRINTF (("Adding ref entry: %s", uentry_unparseFull (ret)));
616915dd 4920 return ret;
4921 }
4922
4923 s = s->env;
4924 }
4925
4926 return uentry_undefined;
4927}
4928
4929static /*@dependent@*/ /*@exposed@*/ uentry
28bf4b0b 4930usymtab_lookupQuietAux (usymtab s, cstring k, bool noalt)
616915dd 4931{
4932 int eindex;
4933
4934 while (s != GLOBAL_ENV)
4935 {
4936 eindex = usymtab_getIndex (s, k);
4937
4938 if (eindex != NOT_FOUND)
4939 {
4940 uentry ret = s->entries[eindex];
4941 return (ret);
4942 }
4943
28bf4b0b 4944 if (noalt && usymtab_isBranch (s))
4945 {
4946 s = usymtab_dropEnv (s);
4947 }
4948 else
4949 {
4950 s = s->env;
4951 }
616915dd 4952 }
4953
4954 return uentry_undefined;
4955}
4956
28bf4b0b 4957static /*@exposed@*/ /*@dependent@*/ uentry
4958usymtab_lookupQuiet (usymtab s, cstring k)
4959{
4960 return usymtab_lookupQuietAux (s, k, FALSE);
4961}
4962
4963static /*@exposed@*/ /*@dependent@*/ uentry
4964usymtab_lookupQuietNoAlt (usymtab s, cstring k)
4965{
4966 return usymtab_lookupQuietAux (s, k, TRUE);
4967}
4968
616915dd 4969/*@dependent@*/ /*@observer@*/ uentry
4970 usymtab_lookupSafe (cstring k)
4971 /*@globals utab@*/
4972{
4973 DPRINTF (("Lookup safe: %s", k));
4974 return (usymtab_lookupAux (utab, k));
4975}
4976
4977uentry
4978 usymtab_lookupExpose (cstring k)
4979 /*@globals utab@*/
4980{
4981 uentry ce = usymtab_lookupAux (utab, k);
4982
4983 if (uentry_isUndefined (ce))
4984 {
4985 llfatalbug (message ("usymtab_lookup: not found: *%s*", k));
4986 }
4987
4988 if (uentry_isPriv (ce))
4989 {
4990 llfatalbug (message ("usymtab_lookup: private: *%s*", k));
4991 }
4992
4993 return ce;
4994}
4995
4996uentry usymtab_lookupExposeGlob (cstring k)
4997{
4998 return (usymtab_lookupGlobSafe (k));
4999}
5000
5001uentry usymtab_lookupGlob (cstring k)
5002 /*@globals globtab@*/
5003{
5004 uentry ce = usymtab_lookupAux (globtab, k);
5005
5006 if (uentry_isUndefined (ce))
5007 llfatalbug (message ("usymtab_lookup: not found: %s", k));
5008
5009 if (uentry_isPriv (ce))
5010 llfatalbug (message ("usymtab_lookup: private: %s", k));
5011
5012 return ce;
5013}
5014
5015/*@observer@*/ uentry
5016 usymtab_lookupGlobSafe (cstring k)
5017 /*@globals globtab@*/
5018{
5019 uentry ce = usymtab_lookupAux (globtab, k);
5020
5021 return ce;
5022}
5023
5024uentry usymtab_lookupEither (cstring k)
5025 /*@globals utab@*/
5026{
5027 uentry ce = usymtab_lookupSafe (k);
5028
5029 if (uentry_isUndefined (ce))
5030 llfatalerror (message ("usymtab_lookup: not found: %s", k));
5031
5032 return ce;
5033}
5034
5035# ifndef NOLCL
5036ctype
5037usymtab_lookupType (cstring k)
5038 /*@globals globtab@*/
5039{
5040 usymId uid = usymtab_getTypeId (k);
5041
5042 if (uid == USYMIDINVALID)
5043 {
5044 llcontbug (message ("usymtab_lookupType: not found: %s", k));
5045 return ctype_unknown;
5046 }
5047
5048 return (uentry_getRealType (usymtab_getTypeEntry (uid)));
5049}
5050# endif
5051
5052ctype
5053usymtab_lookupAbstractType (cstring k) /*@globals globtab@*/
5054{
5055 usymId uid = usymtab_getTypeId (k);
5056
5057 if (uid == USYMIDINVALID)
5058 {
5059 llcontbug (message ("usymtab_lookupType: not found: %s", k));
5060 return ctype_unknown;
5061 }
5062
5063 return (uentry_getAbstractType (usymtab_getTypeEntry (uid)));
5064}
5065
5066/*
5067** if there is an unnamed lcl-specified struct tag matching
5068** the uentryList, return its datatype. Otherwise, returns
5069** ctype_undefined.
5070*/
5071
5072ctype
5073usymtab_structFieldsType (uentryList f)
5074 /*@globals globtab@*/
5075{
5076 return (usymtab_suFieldsType (f, TRUE));
5077}
5078
5079ctype
5080usymtab_unionFieldsType (uentryList f)
5081 /*@globals globtab@*/
5082{
5083 return (usymtab_suFieldsType (f, FALSE));
5084}
5085
5086static ctype
5087usymtab_suFieldsType (uentryList f, bool isStruct)
5088 /*@globals globtab@*/
5089{
5090 int i;
5091
28bf4b0b 5092 DPRINTF (("Fields: %s", uentryList_unparse (f)));
5093
5094 if (fileloc_isSpec (g_currentloc))
5095 {
5096 return (ctype_undefined);
5097 }
616915dd 5098
5099 for (i = 0; i < globtab->nentries; i++)
5100 {
5101 uentry current = globtab->entries[i];
5102
5103 if ((isStruct
5104 ? uentry_isStructTag (current) : uentry_isUnionTag (current)))
5105 {
5106 if (isFakeTag (uentry_rawName (current)))
5107 {
5108 ctype ct = uentry_getType (current);
28bf4b0b 5109
5110 DPRINTF (("Check: %s", ctype_unparse (ct)));
616915dd 5111
5112 if ((isStruct ? ctype_isStruct (ct) : ctype_isUnion (ct))
28bf4b0b 5113 &&
5114 (uentry_isSpecified (current)
5115 && uentryList_equivFields (f, ctype_getFields (ct))))
616915dd 5116 {
28bf4b0b 5117 return uentry_getAbstractType (current);
5118 }
5119 else
5120 {
5121 ;
616915dd 5122 }
5123 }
5124 }
5125 }
5126
5127 return ctype_undefined;
5128}
5129
5130ctype
5131 usymtab_enumEnumNameListType (enumNameList f)
5132 /*@globals globtab@*/
5133{
5134 int i;
5135
5136 for (i = 0; i < globtab->nentries; i++)
5137 {
5138 uentry current = globtab->entries[i];
5139
5140 if (uentry_isEnumTag (current))
5141 {
5142 if (isFakeTag (uentry_rawName (current)))
5143 {
5144 ctype ct = uentry_getType (current);
5145
5146 if (ctype_isEnum (ct) && (enumNameList_match (f, ctype_elist (ct))))
5147 {
5148 return uentry_getType (current);
5149 }
5150 }
5151 }
5152 }
5153
5154 return ctype_undefined;
5155}
5156
5157bool
5158usymtab_exists (cstring k)
5159 /*@globals utab@*/
5160{
5161 uentry ce = usymtab_lookupSafe (k);
616915dd 5162 return (!(uentry_isUndefined (ce)) && !(uentry_isPriv (ce)));
5163}
5164
5165bool
5166usymtab_existsReal (cstring k)
5167 /*@globals utab@*/
5168{
5169 uentry ce = usymtab_lookupSafe (k);
5170
5171 return (!(uentry_isUndefined (ce))
5172 && !(uentry_isPriv (ce))
5173 && !(uentry_isExpandedMacro (ce)));
5174}
5175
5176bool
5177 usymtab_existsGlob (cstring k)
5178 /*@globals globtab@*/
5179{
5180 uentry ce = usymtab_lookupAux (globtab, k);
5181
5182 return (!(uentry_isUndefined (ce)) && !(uentry_isPriv (ce)));
5183}
5184
5185# ifndef NOLCL
5186bool
5187usymtab_existsEither (cstring k)
5188 /*@globals utab@*/
5189{
5190 uentry ce = usymtab_lookupAux (utab, k);
5191
5192 return (uentry_isValid (ce));
5193}
5194
5195bool
5196 usymtab_existsGlobEither (cstring k)
5197 /*@globals globtab@*/
5198{
5199 uentry ce = usymtab_lookupAux (globtab, k);
5200
5201 return (uentry_isValid (ce));
5202}
5203# endif
5204
5205bool
5206usymtab_existsType (cstring k)
5207 /*@globals globtab@*/
5208{
5209 uentry ce = usymtab_lookupAux (globtab, k);
5210
5211 return (!(uentry_isUndefined (ce)) && !(uentry_isPriv (ce)) && uentry_isDatatype (ce));
5212}
5213
5214bool
5215usymtab_existsTypeEither (cstring k)
5216 /*@globals globtab@*/
5217{
28bf4b0b 5218 uentry ce;
5219 ce = usymtab_lookupAux (globtab, k);
5220 return (uentry_isValid (ce) && uentry_isDatatype (ce));
616915dd 5221}
5222
5223bool
5224usymtab_existsStructTag (cstring k) /*@globals globtab@*/
5225{
5226 cstring sname = makeStruct (k);
5227 uentry ce = usymtab_lookupAux (globtab, sname);
28bf4b0b 5228 cstring_free (sname);
616915dd 5229 return (!(uentry_isUndefined (ce)) && !(uentry_isPriv (ce)));
5230}
5231
5232bool
5233usymtab_existsUnionTag (cstring k) /*@globals globtab@*/
5234{
5235 cstring uname = makeUnion (k);
5236 uentry ce = usymtab_lookupAux (globtab, uname);
5237
5238 cstring_free (uname);
5239
5240 return (!(uentry_isUndefined (ce)) && !(uentry_isPriv (ce)));
5241}
5242
5243bool
5244usymtab_existsEnumTag (cstring k) /*@globals globtab@*/
5245{
5246 cstring ename = makeEnum (k);
5247 uentry ce = usymtab_lookupAux (globtab, ename);
5248
5249 cstring_free (ename);
5250 return (!(uentry_isUndefined (ce)) && !(uentry_isPriv (ce)));
5251}
5252
5253# ifndef NOLCL
5254bool usymtab_existsVar (cstring k)
5255 /*@globals utab@*/
5256{
5257 uentry ce = usymtab_lookupSafe (k);
5258
5259 return (!(uentry_isUndefined (ce)) && !(uentry_isPriv (ce)) && (uentry_isVar (ce)));
5260}
5261# endif
5262
5263/*
5264** destructors
5265*/
5266
5267static void
5268refTable_free (/*@only@*/ /*@null@*/ refTable x, int nentries)
5269{
5270 if (x != NULL)
5271 {
5272 int i;
5273
5274 for (i = 0; i < nentries; i++)
5275 {
5276 sfree (x[i]);
5277 }
5278
5279 sfree (x);
5280 }
5281}
5282
5283static void
5284usymtab_freeLevel (/*@notnull@*/ /*@only@*/ usymtab u)
5285 /*@globals globtab, utab, filetab@*/
5286{
5287 int i;
5288
5289 aliasTable_free (u->aliases);
28bf4b0b 5290
616915dd 5291 refTable_free (u->reftable, u->nentries);
5292
5293 if (u == filetab || u == globtab)
5294 {
5295 for (i = 0; i < u->nentries; i++)
5296 {
5297 uentry_freeComplete (u->entries[i]);
5298 }
5299 }
5300 else
5301 {
5302 for (i = 0; i < u->nentries; i++)
5303 {
5304 uentry_free (u->entries[i]);
5305 }
5306 }
5307
5308 guardSet_free (u->guards);
5309 sfree (u->entries);
5310
5311 if (u != globtab
5312 && u != utab
5313 && u != filetab)
5314 {
28bf4b0b 5315 llassert (!cstringTable_isDefined (u->htable));
616915dd 5316 sfree (u);
5317 }
5318
5319/*@-mustfree@*/
5320} /*@=mustfree@*/
5321
5322static void
5323usymtab_freeAux (/*@only@*/ usymtab u)
5324 /*@globals globtab, utab, filetab@*/
5325 /*@modifies u@*/
5326{
5327 while (u != GLOBAL_ENV)
5328 {
5329 usymtab t = u->env;
5330 usymtab_freeLevel (u);
5331 u = t;
5332 /*@-branchstate@*/
5333 }
5334 /*@=branchstate@*/
5335}
5336
5337void usymtab_free ()
5338 /*@globals killed utab, globtab, filetab@*/
5339 /*@modifies utab@*/
5340{
5341 dbgfree = TRUE;
5342 usymtab_freeAux (utab);
5343}
5344
5345static int usymtab_lexicalLevel (void) /*@globals utab@*/
5346{
5347 return (utab->lexlevel);
5348}
5349
5350bool usymtab_inGlobalScope () /*@globals utab, globtab@*/
5351{
5352 return (utab == globtab);
5353}
5354
5355bool usymtab_inFileScope () /*@globals utab@*/
5356{
5357 return (utab->lexlevel == fileScope);
5358}
5359
5360bool usymtab_inFunctionScope () /*@globals utab@*/
5361{
5362 return (utab->lexlevel == functionScope);
5363}
5364
5365# ifndef NOLCL
5366void
5367usymtab_replaceEntry (uentry s)
5368 /*@globals utab, globtab@*/
5369 /*@modifies utab, s@*/
5370{
5371 usymtab_replaceEntryAux (utab, s);
5372}
5373# endif
5374
5375bool
5376usymtab_matchForwardStruct (usymId u1, usymId u2)
5377 /*@globals globtab@*/
5378{
5379 uentry ue1 = usymtab_getTypeEntry (u1);
5380 uentry ue2 = usymtab_getTypeEntry (u2);
5381
5382 if (uentry_isAnyTag (ue2))
5383 {
5384 ctype reptype = uentry_getType (ue1);
5385
5386 if (ctype_isPointer (reptype))
5387 {
5388 ctype repbase = ctype_getBaseType (reptype);
5389
5390 if (ctype_isUA (repbase))
5391 {
5392 typeId rtuid = ctype_typeId (repbase);
5393
5394 if (u2 == rtuid) return TRUE;
5395
5396 if (usymId_isValid (rtuid))
5397 {
5398 reptype = uentry_getType (usymtab_getTypeEntry (rtuid));
5399
5400 return (ctype_isUA (reptype) && (u2 == (ctype_typeId (reptype))));
5401 }
5402 }
5403 }
5404 }
5405
5406 return FALSE;
5407}
5408
5409void usymtab_addGuards (guardSet guards)
5410 /*@modifies utab@*/
5411{
5412 utab->guards = guardSet_union (utab->guards, guards);
5413 }
5414
5415static bool usymtab_isGuardedAux (sRef s)
5416 /*@globals utab@*/
5417{
5418 usymtab tab = utab;
5419 sRef base = sRef_getRootBase (s);
5420 int lowlevel = paramsScope;
5421 int baselevel = sRef_lexLevel (base);
5422
5423 if (sRef_isCvar (base))
5424 {
5425 lowlevel = baselevel;
5426 if (lowlevel < paramsScope) lowlevel = paramsScope;
5427 }
5428
5429 while (tab->lexlevel >= lowlevel)
5430 {
2209bcb7 5431 DPRINTF (("Is guarded? [%s] %s",
5432 guardSet_unparse (tab->guards),
5433 sRef_unparseFull (s)));
5434
616915dd 5435 if (guardSet_isGuarded (tab->guards, s))
5436 {
5437 /*
5438 if (!sRef_definitelyNull (s))
5439 {
5440 sRef_setNotNull (s, fileloc_undefined);
5441 }
5442 */
5443 return TRUE;
5444 }
5445
5446 tab = usymtab_dropEnv (tab);
5447 }
5448
5449 return FALSE;
5450}
5451
5452void usymtab_unguard (sRef s) /*@modifies utab@*/
5453{
5454 usymtab tab = utab;
5455 sRef base = sRef_getRootBase (s);
5456 int lowlevel = paramsScope;
5457 int baselevel = sRef_lexLevel (base);
5458
5459 if (sRef_isCvar (base))
5460 {
5461 lowlevel = baselevel;
5462 if (lowlevel < paramsScope) lowlevel = paramsScope;
5463 }
5464
5465 while (tab->lexlevel >= lowlevel)
5466 {
5467 if (guardSet_isGuarded (tab->guards, s))
5468 {
5469 guardSet_delete (tab->guards, s);
5470 }
5471
5472 tab = usymtab_dropEnv (tab);
5473 }
5474}
5475
5476bool usymtab_isGuarded (sRef s)
5477{
2209bcb7 5478 DPRINTF (("Is guarded? %s", sRef_unparseFull (s)));
616915dd 5479 return (sRef_aliasCompleteSimplePred (usymtab_isGuardedAux, s));
5480}
5481
28bf4b0b 5482bool usymtab_isDefinitelyNull (sRef s)
616915dd 5483{
28bf4b0b 5484 return (sRef_aliasCheckSimplePred (usymtab_isDefinitelyNullAux, s));
616915dd 5485}
5486
28bf4b0b 5487bool usymtab_isDefinitelyNullDeep (sRef s)
616915dd 5488{
28bf4b0b 5489 return (sRef_deepPred (usymtab_isDefinitelyNull, s));
616915dd 5490}
5491
28bf4b0b 5492static bool usymtab_isDefinitelyNullAux (sRef s)
616915dd 5493 /*@globals utab@*/
5494{
5495 usymtab tab = utab;
5496 sRef base = sRef_getRootBase (s);
5497 int lowlevel = paramsScope;
5498
5499 if (sRef_isCvar (base))
5500 {
5501 lowlevel = sRef_lexLevel (base);
5502 if (lowlevel < paramsScope) lowlevel = paramsScope;
5503 }
5504
5505 while (tab->lexlevel >= lowlevel)
5506 {
28bf4b0b 5507 if (guardSet_mustBeNull (tab->guards, s))
616915dd 5508 {
5509 return TRUE;
5510 }
5511
5512 while (tab->kind == US_CBRANCH)
5513 {
5514 tab = tab->env;
5515 }
5516
5517 llassert (usymtab_isDefined (tab));
5518
5519 if (tab->kind == US_FBRANCH)
5520 {
5521 tab = tab->env;
5522 llassert (tab->kind == US_TBRANCH);
5523 }
5524
5525 tab = tab->env;
5526 }
5527
5528 return FALSE;
5529}
5530
5531void
5532usymtab_printGuards ()
5533 /*@globals utab, globtab@*/
5534{
5535 usymtab ttab = utab;
5536
5537 while (ttab != globtab)
5538 {
5539 llmsg (message ("Guards [%d]: %q", ttab->lexlevel,
5540 guardSet_unparse (ttab->guards)));
5541 ttab = ttab->env;
5542 }
5543}
5544
5545void
5546usymtab_displayAllUses ()
5547 /*@globals utab, globtab@*/
5548{
5549 usymtab copy;
5550
5551 /* only in top scope */
5552 llassert (utab == globtab);
5553
5554 /* need a copy, so order is not messed up by sort! */
5555 copy = usymtab_shallowCopy (globtab);
5556
5557 qsort (copy->entries, (size_t)copy->nentries,
5558 sizeof (*copy->entries), (int (*)(const void *, const void *)) uentry_xcompareuses);
5559
5560 usymtab_entries (copy, ue)
5561 {
5562 if (uentry_isValid (ue))
5563 {
5564 filelocList uses = uentry_getUses (ue);
5565 int size = filelocList_realSize (uses);
5566
5567 if (fileloc_isDefined (uentry_whereDefined (ue))
5568 && !fileloc_isLib (uentry_whereDefined (ue))
5569 && (size > 0))
5570 {
28bf4b0b 5571 llmsg (message ("%q (%q), %d use%&:\n %q",
616915dd 5572 uentry_getName (ue),
5573 fileloc_unparse (uentry_whereDefined (ue)),
5574 size, filelocList_unparseUses (uses)));
5575 }
5576 }
5577 } end_usymtab_entries;
5578
5579 usymtab_shallowFree (copy);
5580}
5581
5582static /*@dependent@*/ /*@exposed@*/ usymtab
5583usymtab_getFileTab ()
5584 /*@globals filetab@*/
5585{
5586 llassert (filetab != NULL);
5587
5588 return filetab;
5589}
5590
5591/*@only@*/ cstring
5592usymtab_unparseStack ()
5593 /*@globals utab@*/
5594{
5595 return (usymtab_unparseStackTab (utab));
5596}
5597
5598static /*@only@*/ cstring
5599usymtab_unparseStackTab (usymtab t)
5600{
5601 bool firstOne = TRUE;
5602 cstring ret = cstring_makeLiteral ("[");
5603
5604 while (t != GLOBAL_ENV)
5605 {
5606 if (firstOne)
5607 {
5608 ret = message ("%q %q", ret, usymtab_typeName (t));
5609 firstOne = FALSE;
5610 }
5611 else
5612 {
5613 ret = message ("%q, %q", ret, usymtab_typeName (t));
5614 }
5615 t = t->env;
5616 }
5617
5618 ret = message ("%q ]", ret);
5619 return ret;
5620}
5621
5622static /*@only@*/ cstring
5623usymtab_typeName (/*@notnull@*/ usymtab t)
5624{
5625 switch (t->kind)
5626 {
5627 case US_GLOBAL: return cstring_makeLiteral ("global");
5628 case US_NORMAL: return cstring_makeLiteral ("normal");
5629 case US_TBRANCH: return cstring_makeLiteral ("true");
5630 case US_FBRANCH: return cstring_makeLiteral ("false");
5631 case US_CBRANCH: return cstring_makeLiteral ("case");
5632 case US_SWITCH: return cstring_makeLiteral ("switch");
5633 }
5634
5635 BADEXIT;
5636}
5637
28bf4b0b 5638void usymtab_addMustAlias (/*@exposed@*/ sRef s, /*@exposed@*/ sRef al)
616915dd 5639 /*@modifies utab@*/
5640{
28bf4b0b 5641 if (!sRef_similar (s, al))
616915dd 5642 {
28bf4b0b 5643 usymtab_addForceMustAlias (s, al);
616915dd 5644 }
5645}
5646
5647/*
5648** Same as usymtab_addMustAlias, except does not check sRef_isSimilar.
5649*/
5650
28bf4b0b 5651void usymtab_addForceMustAlias (/*@exposed@*/ sRef s, /*@exposed@*/ sRef al)
616915dd 5652 /*@modifies utab@*/
5653{
5654 if (sRef_isMeaningful (s)
5655 && sRef_isMeaningful (al)
5656 && !(sRef_isConst (s) || sRef_isConst (al))
5657 && !(sRef_isAddress (al) && sRef_isDirectParam (sRef_getBase (al))))
5658 {
5659 utab->aliases = aliasTable_addMustAlias (utab->aliases, s, al);
5660 DPRINTF (("Must alias: %s", aliasTable_unparse (utab->aliases)));
5661
5662 /*
5663 ** for local variable, aliasing is symmetric
5664 */
5665
5666 if (sRef_isLocalVar (s) && sRef_isLocalVar (al))
5667 {
5668 utab->aliases = aliasTable_addMustAlias (utab->aliases, al, s);
5669 }
5670 }
5671 else
5672 {
5673 ;
5674 }
5675}
5676
5677void usymtab_clearAlias (sRef s)
5678 /*@modifies utab, s@*/
5679{
5680
5681 aliasTable_clearAliases (utab->aliases, s);
5682}
5683
5684sRefSet usymtab_allAliases (sRef s)
5685 /*@globals utab@*/
5686{
5687 if (sRef_isMeaningful (s))
5688 {
5689 sRefSet ret;
616915dd 5690
5691 ret = sRefSet_unionFree (aliasTable_aliasedBy (utab->aliases, s),
5692 aliasTable_canAlias (utab->aliases, s));
28bf4b0b 5693 return (ret);
616915dd 5694 }
5695 else
5696 {
28bf4b0b 5697 DPRINTF (("NOT A MEANINGFUL SREF!"));
616915dd 5698 return sRefSet_undefined;
5699 }
5700}
5701
5702/*@only@*/ sRefSet usymtab_canAlias (sRef s)
28bf4b0b 5703 /*@globals utab@*/
616915dd 5704{
5705 if (sRef_isMeaningful (s))
5706 {
5707 sRefSet res = aliasTable_canAlias (utab->aliases, s);
616915dd 5708 return res;
5709 }
28bf4b0b 5710
616915dd 5711 return sRefSet_undefined;
5712}
5713
5714/*@only@*/ sRefSet usymtab_aliasedBy (sRef s)
28bf4b0b 5715 /*@globals utab@*/
616915dd 5716{
5717 return (aliasTable_aliasedBy (utab->aliases, s));
5718}
5719
5720/*@only@*/ cstring usymtab_unparseAliases ()
5721 /*@globals utab@*/
5722{
5723 return (aliasTable_unparse (utab->aliases));
5724}
5725
5726/*
5727** Debugging routines:
5728** okay to leak storage here, only for debugging
5729*/
5730
5731/*@-mustfree@*/
5732
5733void
5734usymtab_printOut (void)
5735 /*@globals utab@*/
5736{
5737 int i;
5738 usymtab s = utab;
5739 int depth = 0;
5740 char *ind = mstring_copy (" ");
5741
5742 fprintf (g_msgstream, "<<< [symbol table] >>>\n");
5743
5744 while (s != GLOBAL_ENV && s->env != GLOBAL_ENV)
5745 {
5746 cstring tname = usymtab_typeName (s);
5747
5748 if (depth < 5)
5749 {
5750 ind[depth * 3 + 1] = '\0';
5751 }
5752
5753 fprintf (g_msgstream, "level: %d (%s)\n", s->lexlevel,
5754 cstring_toCharsSafe (tname));
5755
5756 cstring_free (tname);
5757
5758 for (i = 0; i < s->nentries; i++)
5759 {
5760 cstring us = uentry_unparseFull (s->entries[i]);
5761 fprintf (g_msgstream, "%s\n", cstring_toCharsSafe (us));
5762 cstring_free (us);
5763 }
5764
5765 if (s->reftable != NULL && s->nentries > 0)
5766 {
5767 fprintf (g_msgstream, "\t<< Ref table >>\n");
5768
5769 for (i = 0; i < s->nentries; i++)
5770 {
5771 fprintf (g_msgstream, "\t%s %3d: %d, %d\n", ind, i,
5772 s->reftable[i]->level,
5773 s->reftable[i]->index);
5774 }
5775 }
5776
5777 ind[depth * 3 + 1] = ' ';
5778 depth++;
5779 s = s->env;
5780 }
5781 fprintf (g_msgstream, "<<< end usymtab >>>\n");
5782 mstring_free (ind);
5783 return;
5784}
5785
5786void
5787usymtab_printTypes ()
5788 /*@globals globtab@*/
5789{
5790 usymtab_printAllAux (globtab);
5791}
5792
5793void
5794usymtab_printAll (void)
5795 /*@globals utab@*/
5796{
5797 usymtab_printAllAux (utab);
5798}
5799
5800static void
5801usymtab_printAllAux (usymtab s)
5802 /*@modifies g_msgstream@*/
5803{
5804 int i;
5805 int depth = 0;
5806 char *ind = mstring_copy (" ");
5807
5808 printf ("[[[ usymtab ]]]");
5809
5810 while (s != GLOBAL_ENV)
5811 {
5812 if (depth < 5)
5813 ind[depth * 3 + 1] = '\0';
5814
5815 if (s->env == GLOBAL_ENV)
5816 {
5817 int looplow;
5818
5819 printf ("level: %d / break: %s / exit: %s\n", s->lexlevel,
5820 cstring_toCharsSafe (bool_unparse (s->mustBreak)),
5821 cstring_toCharsSafe (exitkind_unparse (s->exitCode)));
5822
5823 looplow = 0;
5824
5825 for (i = looplow; i < s->nentries; i++)
5826 {
5827 printf ("%s%3d. %s\n", ind, i,
5828 cstring_toCharsSafe (uentry_unparseFull (s->entries[i])));
5829 }
5830 }
5831 else
5832 {
5833 printf ("level: %d / break: %s / exit: %s\n", s->lexlevel,
5834 cstring_toCharsSafe (bool_unparse (s->mustBreak)),
5835 cstring_toCharsSafe (exitkind_unparse (s->exitCode)));
5836
5837 for (i = 0; i < s->nentries; i++)
5838 {
5839 printf ("%s%3d %s\n", ind, i,
5840 cstring_toCharsSafe (uentry_unparseFull (s->entries[i])));
5841 }
5842 }
5843
5844 ind[depth * 3 + 1] = ' ';
5845 depth++;
5846 s = s->env;
5847 }
5848 printf ("----------\n");
5849}
5850
5851void
5852usymtab_printComplete ()
5853 /*@globals utab@*/
5854{
5855 int i;
5856 int depth = 0;
5857 char *ind = mstring_copy (" ");
5858 usymtab s = utab;
5859
5860 while (s != GLOBAL_ENV)
5861 {
5862 if (depth < 5)
5863 {
5864 ind[depth * 3 + 1] = '\0';
5865 }
5866
5867 if (s->env == GLOBAL_ENV)
5868 {
5869 int looplow;
5870
5871 printf ("level: %d\n", s->lexlevel);
5872
5873 looplow = 0;
5874
5875 for (i = looplow; i < s->nentries; i++)
5876 {
5877 printf ("%s%3d %s\n", ind, i,
5878 cstring_toCharsSafe (uentry_unparse (s->entries[i])));
5879 }
5880 }
5881 else
5882 {
5883 printf ("level: %d\n", s->lexlevel);
5884 for (i = 0; i < s->nentries; i++)
5885 {
5886 printf ("%s%3d %s\n", ind, i,
5887 cstring_toCharsSafe (uentry_unparse (s->entries[i])));
5888 }
5889 }
5890
5891 ind[depth * 3 + 1] = ' ';
5892 depth++;
5893 s = s->env;
5894 }
5895
5896 printf ("----------\n");
5897 mstring_free (ind);
5898}
5899
3e3ec469 5900# ifdef S_SPLINT_S
616915dd 5901static /*@only@*/ cstring /*@unused@*/
5902usymtab_unparseLocalAux (/*@notnull@*/ usymtab s)
5903{
5904 cstring c = message ("lexlevel: %d\n", s->lexlevel);
5905 int i;
5906
5907 for (i = 0; i < s->nentries; i++)
5908 {
5909 c = message ("%q\n%q", c, uentry_unparseFull (s->entries[i]));
5910 }
5911
5912 c = message ("%q\n=========", c);
5913 return (c);
5914}
5915
5916static cstring /*@unused@*/ /*@only@*/
5917usymtab_unparseLocalList (/*@notnull@*/ usymtab s)
5918{
5919 cstring c = message ("[%d/%s/%s] ", s->lexlevel,
5920 bool_unparse (s->mustBreak),
5921 exitkind_unparse (s->exitCode));
5922 int i;
5923
5924 for (i = 0; i < s->nentries; i++)
5925 {
5926 sRef sr = uentry_getSref (s->entries[i]);
5927
5928 if (i == 0)
5929 {
5930 c = message ("%q: %q [%b]", c, uentry_getName (s->entries[i]),
5931 sRef_isStateDefined (sr));
5932 }
5933 else
5934 {
5935 c = message ("%q, %q [%b]", c, uentry_getName (s->entries[i]),
5936 sRef_isStateDefined (sr));
5937 }
5938
5939 }
5940
5941 return (c);
5942}
8250fa4a 5943# endif
616915dd 5944
5945void
5946usymtab_printLocal (void)
5947 /*@globals utab@*/
5948{
5949 int i;
5950 usymtab s = utab;
5951
5952 printf ("lexlevel: %d\n", s->lexlevel);
5953
5954 for (i = 0; i < s->nentries; i++)
5955 {
5956 printf ("%s\n", cstring_toCharsSafe (uentry_unparseFull (s->entries[i])));
5957 }
5958
5959 while (s->lexlevel > 1)
5960 {
5961 s = s->env;
5962 }
5963
5964 llassert (usymtab_isDefined (s));
5965
5966 printf ("Params:\n");
5967
5968 for (i = 0; i < s->nentries; i++)
5969 {
5970 printf ("%d: %s\n", i,
5971 cstring_toCharsSafe (uentry_unparseFull (s->entries[i])));
5972 }
5973}
5974/*@=mustfree@*/
5975
5976static bool checkDistinctExternalName (uentry e)
5977 /*@globals globtab@*/
5978 /*@modifies *g_msgstream@*/
5979{
5980 int checklen = context_getValue (FLG_EXTERNALNAMELEN);
5981 bool ignorecase = context_getFlag (FLG_EXTERNALNAMECASEINSENSITIVE);
5982 bool gotone = FALSE;
5983 bool extras = FALSE;
5984 bool hasError = FALSE;
5985 cstring name = uentry_rawName (e);
5986 usymtab st = globtab;
5987
5988 if (checklen == 0)
5989 {
5990 ;
5991 }
5992 else
5993 {
5994 if (uentry_isAnyTag (e))
5995 {
5996 checklen++; /* the tag marker doesn't count */
5997 }
5998 }
5999
6000 usymtab_entries (st, oe)
6001 {
6002 if (uentry_sameObject (oe, e))
6003 {
6004 continue;
6005 }
6006
6007 if (checklen == 0)
6008 {
6009 if (cstring_equalCaseInsensitive (uentry_rawName (oe), name))
6010 {
6011 if (gotone)
6012 {
6013 extras = TRUE;
6014 break;
6015 }
6016
6017 if (optgenerror
6018 (FLG_DISTINCTEXTERNALNAMES,
6019 message
6020 ("External identifier %q is not distinguishable from %q "
6021 "because alphabetical case is ignored",
6022 uentry_getName (e),
6023 uentry_getName (oe)),
6024 uentry_whereLast (e)))
6025 {
6026 uentry_showWhereAny (oe);
6027 uentry_setHasNameError (oe);
6028 gotone = TRUE;
6029 }
6030 }
6031 }
6032 else
6033 {
6034 if (ignorecase)
6035 {
6036 if (cstring_equalLenCaseInsensitive (uentry_rawName (oe),
6037 name, checklen))
6038 {
6039 if (gotone)
6040 {
6041 extras = TRUE;
6042 break;
6043 }
6044
6045 if (cstring_equalLen (uentry_rawName (oe), name, checklen))
6046 {
6047 if (optgenerror
6048 (FLG_DISTINCTEXTERNALNAMES,
6049 /*@-sefparams@*/
6050 message
6051 ("External identifier %q is not distinguishable from %q "
6052 "in the first %d characters (%q)",
6053 uentry_getName (e),
6054 uentry_getName (oe),
6055 checklen,
6056 cstring_clip (uentry_getName (e), checklen)),
6057 /*@=sefparams@*/
6058 uentry_whereLast (e)))
6059 {
6060 uentry_showWhereAny (oe);
6061 uentry_setHasNameError (oe);
6062 gotone = TRUE;
6063 }
6064 }
6065 else
6066 {
6067 if (gotone)
6068 {
6069 extras = TRUE;
6070 break;
6071 }
6072
6073 if (optgenerror
6074 (FLG_DISTINCTEXTERNALNAMES,
6075 message
6076 ("External identifier %q is not distinguishable from %q "
6077 "in the first %d characters because alphabetical case "
6078 "is ignored",
6079 uentry_getName (e),
6080 uentry_getName (oe),
6081 checklen),
6082 uentry_whereLast (e)))
6083 {
6084 uentry_showWhereAny (oe);
6085 uentry_setHasNameError (oe);
6086 gotone = TRUE;
6087 }
6088 }
6089 }
6090 }
6091 else if (cstring_equalLen (uentry_rawName (oe), name, checklen))
6092 {
6093 if (gotone)
6094 {
6095 extras = TRUE;
6096 break;
6097 }
6098
6099 if (optgenerror
6100 (FLG_DISTINCTEXTERNALNAMES,
6101 /*@-sefparams@*/
6102 message
6103 ("External identifier %q is not distinguishable from %q "
6104 "in the first %d characters (%q)",
6105 uentry_getName (e),
6106 uentry_getName (oe),
6107 checklen,
6108 cstring_clip (uentry_getName (e), checklen)),
6109 /*@=sefparams@*/
6110 uentry_whereLast (e)))
6111 {
6112 uentry_showWhereAny (oe);
6113 uentry_setHasNameError (oe);
6114 gotone = TRUE;
6115 }
6116 }
6117 else
6118 {
6119 ; /* okay */
6120 }
6121 }
6122 } end_usymtab_entries ;
6123
6124 hasError = gotone;
6125
6126 if (extras)
6127 {
6128 llgenindentmsgnoloc
6129 (cstring_makeLiteral ("One or more additional "
6130 "indistinguishable external "
6131 "names not reported"));
6132 }
6133
6134 return hasError;
6135}
6136
6137static bool checkDistinctInternalName (uentry e)
6138 /*@globals utab@*/
6139 /*@modifies *g_msgstream@*/
6140{
6141 usymtab ttab = utab;
6142 cstring name = uentry_rawName (e);
6143 int numchars = context_getValue (FLG_INTERNALNAMELEN);
6144 bool caseinsensitive = context_getFlag (FLG_INTERNALNAMECASEINSENSITIVE);
6145 bool lookalike = context_getFlag (FLG_INTERNALNAMELOOKALIKE);
6146
6147 if (uentry_isAnyTag (e) && (numchars != 0))
6148 {
6149 numchars++; /* the tag marker doesn't count */
6150 }
6151
6152 while (usymtab_isDefined (ttab))
6153 {
6154 usymtab_entries (ttab, oe)
6155 {
6156 if (uentry_sameObject (oe, e))
6157 {
6158 /*@innercontinue@*/ continue;
6159 }
6160
6161 switch (cstring_genericEqual
6162 (name, uentry_rawName (oe),
6163 numchars, caseinsensitive, lookalike))
6164 {
6165 case CGE_DISTINCT: /* okay */
6166 /*@switchbreak@*/
6167 break;
6168 case CGE_SAME:
6169 if (cstring_equal (name, uentry_rawName (oe)))
6170 {
6171 ; /* got a shadow error */
6172 }
6173 else
6174 {
6175 if (optgenerror
6176 (FLG_DISTINCTINTERNALNAMES,
6177 /*@-sefparams@*/
6178 message
6179 ("Internal identifier %q is not distinguishable from %q "
6180 "in the first %d characters (%q)",
6181 uentry_getName (e),
6182 uentry_getName (oe),
6183 numchars,
6184 cstring_clip (uentry_getName (e), numchars)),
6185 /*@=sefparams@*/
6186 uentry_whereLast (e)))
6187 {
6188 uentry_showWhereAny (oe);
6189 uentry_setHasNameError (oe);
6190 return TRUE;
6191 }
6192 }
6193 /*@switchbreak@*/
6194 break;
6195 case CGE_CASE:
6196 if (numchars == 0
6197 || (cstring_length (name) <= numchars))
6198 {
6199 if (optgenerror
6200 (FLG_DISTINCTINTERNALNAMES,
6201 message
6202 ("Internal identifier %q is not distinguishable from %q "
6203 "without case sensitivity",
6204 uentry_getName (e),
6205 uentry_getName (oe)),
6206 uentry_whereLast (e)))
6207 {
6208 uentry_showWhereAny (oe);
6209 uentry_setHasNameError (oe);
6210 return TRUE;
6211 }
6212 }
6213 else
6214 {
6215 if (optgenerror
6216 (FLG_DISTINCTINTERNALNAMES,
6217 message
6218 ("Internal identifier %q is not distinguishable from %q "
6219 "in the first %d characters without case sensitivity",
6220 uentry_getName (e),
6221 uentry_getName (oe),
6222 numchars),
6223 uentry_whereLast (e)))
6224 {
6225 uentry_showWhereAny (oe);
6226 uentry_setHasNameError (oe);
6227 return TRUE;
6228 }
6229 }
6230 /*@switchbreak@*/
6231 break;
6232 case CGE_LOOKALIKE:
6233 if (numchars == 0
6234 || (cstring_length (name) <= numchars))
6235 {
6236 if (optgenerror
6237 (FLG_DISTINCTINTERNALNAMES,
6238 message
6239 ("Internal identifier %q is not distinguishable from %q "
6240 "except by lookalike characters",
6241 uentry_getName (e),
6242 uentry_getName (oe)),
6243 uentry_whereLast (e)))
6244 {
6245 uentry_showWhereAny (oe);
6246 uentry_setHasNameError (oe);
6247 return TRUE;
6248 }
6249 }
6250 else
6251 {
6252 if (optgenerror
6253 (FLG_DISTINCTINTERNALNAMES,
6254 message
6255 ("Internal identifier %q is not distinguishable from %q "
6256 "in the first %d characters except by lookalike characters",
6257 uentry_getName (e),
6258 uentry_getName (oe),
6259 numchars),
6260 uentry_whereLast (e)))
6261 {
6262 uentry_showWhereAny (oe);
6263 uentry_setHasNameError (oe);
6264 return TRUE;
6265 }
6266 }
6267 }
6268 } end_usymtab_entries ;
6269
6270 ttab = ttab->env;
6271 }
6272
6273 return FALSE;
6274}
6275
6276void usymtab_checkDistinctName (uentry e, int scope)
6277 /*@globals utab, globtab@*/
6278{
6279 bool hasError = FALSE;
6280 fileloc where = uentry_whereLast (e);
6281
6282 if (!fileloc_isPreproc (where) && !fileloc_isBuiltin (where))
6283 {
6284 if (scope == globScope)
6285 {
6286 if (context_getFlag (FLG_DISTINCTEXTERNALNAMES))
6287 {
6288 hasError = checkDistinctExternalName (e);
6289 }
6290 }
6291
6292 if (!hasError && context_getFlag (FLG_DISTINCTINTERNALNAMES))
6293 {
6294 hasError = checkDistinctInternalName (e);
6295 }
6296 }
6297
6298 if (hasError)
6299 {
28bf4b0b 6300 uentry_setHasNameError (e);
616915dd 6301 }
6302}
6303
28bf4b0b 6304/*@exposed@*/ sRef usymtab_lookupGlobalMarker (void) /*@globals utab@*/
6305{
6306 uentry ue;
6307
6308 ue = usymtab_lookupAux (utab, GLOBAL_MARKER_NAME);
6309 llassert (uentry_isValid (ue));
6310
6311 return uentry_getSref (ue);
6312}
6313
This page took 0.995333 seconds and 5 git commands to generate.