]> andersk Git - splint.git/blame - src/context.c
*** empty log message ***
[splint.git] / src / context.c
CommitLineData
616915dd 1/*
2** LCLint - annotation-assisted static program checker
28bf4b0b 3** Copyright (C) 1994-2001 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
22** For more information: http://lclint.cs.virginia.edu
23*/
24/*
25** context.c
26*/
27/*
28 * Modified by Herbert 04/19/97:
29 * - added include for new header portab.h containing OS dependent stuff.
30 * - changed occurrances of '/' as path delimiters to macro from portab.h
31 * - changed the handling of the tmp directory -- will no longer always be
32 * ".", if possible, environment variables "TMP" or, if not set, "TMP",
33 * or, if not set "." will be used.
34 */
35
36# include "lclintMacros.nf"
37# include "llbasic.h"
990ec868 38# include "mtincludes.h"
616915dd 39
40# ifndef NOLCL
41# include "usymtab_interface.h"
42# endif
43
44# include "exprChecks.h"
45# include "filelocStack.h"
46# include "fileIdList.h"
47# include "llmain.h"
48# include "intSet.h"
49# include "osd.h"
50# include "portab.h"
51
52extern /*@external@*/ int yydebug;
28bf4b0b 53extern /*@external@*/ int mtdebug;
616915dd 54
55typedef struct
56{
57 cstring file;
58 typeIdSet daccess ;
59} maccesst;
60
61typedef enum {
28bf4b0b 62 CX_ERROR,
63
616915dd 64 CX_GLOBAL, CX_INNER,
d9a28762 65 CX_FUNCTION, CX_FCNDECLARATION,
616915dd 66 CX_MACROFCN, CX_MACROCONST, CX_UNKNOWNMACRO,
67 CX_ITERDEF, CX_ITEREND,
28bf4b0b 68 CX_LCL, CX_LCLLIB, CX_MT
616915dd 69} kcontext;
70
28bf4b0b 71static struct
616915dd 72{
73 int linesprocessed;
74 int speclinesprocessed;
75
76 flagMarkerList markers;
77
78 /*
79 ** used to record state where a macro must match a function name
80 ** (i.e., no params were listed in the macro definition
81 */
82
83 bool macroMissingParams BOOLBITS;
84 bool preprocessing BOOLBITS;
85 bool incommandline BOOLBITS;
86 bool insuppressregion BOOLBITS;
87 bool inDerivedFile BOOLBITS;
88 bool instandardlib BOOLBITS;
89 bool inimport BOOLBITS;
90 bool inheader BOOLBITS;
91 bool inmacrocache BOOLBITS;
92 bool protectVars BOOLBITS;
93 bool neednl BOOLBITS;
94 bool showfunction BOOLBITS;
95 bool savedFlags BOOLBITS;
96 bool justpopped BOOLBITS;
97 bool anyExports BOOLBITS;
d9a28762 98 bool inFunctionHeader BOOLBITS;
616915dd 99
100 flagcode library;
101
102 ynm isNullGuarded;
103 fileloc saveloc;
104 fileloc pushloc;
105
106 clauseStack clauses;
107 clause inclause;
108
109 int numerrors;
110
111 filelocStack locstack;
112 fileTable ftab;
113 cstring msgAnnote;
114 /*@observer@*/ sRef aliasAnnote;
115 /*@observer@*/ sRef aliasAnnoteAls;
116 messageLog msgLog;
117
118 macrocache mc;
119 /*@observer@*/ sRefSet mods;
120
121 /* file access types */
122 typeIdSet facct;
123
124 /* local access types (this function) */
125 typeIdSet acct;
126
127 /* no access types (@noaccess) */
128 typeIdSet nacct;
129
130 /*@observer@*/ globSet globs;
131 /*@only@*/ globSet globs_used;
132
133 int nmods;
134 int maxmods;
135 /*@reldef@*/ maccesst *moduleaccess; /* Not defined is nmods == 0. */
136
137 kcontext kind;
28bf4b0b 138 kcontext savekind;
616915dd 139
140 ctype boolType;
141
142 bool flags[NUMFLAGS];
143 bool saveflags[NUMFLAGS];
144 bool setGlobally[NUMFLAGS];
145 bool setLocally[NUMFLAGS];
146
147 int values[NUMVALUEFLAGS];
148 int counters[NUMVALUEFLAGS];
149
150 o_cstring strings[NUMSTRINGFLAGS];
28bf4b0b 151 sRefSetList modrecs; /*@i32 ???? what is this for? */
616915dd 152
28bf4b0b 153 metaStateTable stateTable; /* User-defined state information. */
154 annotationTable annotTable; /* User-defined annotations table. */
616915dd 155 union
156 {
157 bool glob;
158 int cdepth;
159 /*@dependent@*/ /*@exposed@*/ uentry fcn;
160 } cont;
161} gc;
162
163static /*@exposed@*/ cstring context_exposeString (flagcode p_flag) ;
164static void context_restoreFlagSettings (void) /*@modifies gc@*/ ;
165static void context_saveFlagSettings (void) /*@modifies gc@*/ ;
166static void context_exitClauseAux (exprNode p_pred, exprNode p_tbranch)
167 /*@modifies gc@*/ ;
168static void context_exitClauseSimp (void) /*@modifies gc@*/ ;
169static void context_exitClausePlain (void) /*@modifies gc@*/ ;
170static void context_setJustPopped (void) /*@modifies gc.justpopped@*/ ;
171static void context_setValue (flagcode p_flag, int p_val) /*@modifies gc.flags@*/ ;
990ec868 172static void context_setFlag (flagcode p_f, bool p_b)
616915dd 173 /*@modifies gc.flags@*/ ;
174
175static void
176 context_setFlagAux (flagcode p_f, bool p_b, bool p_inFile, bool p_isRestore)
177 /*@modifies gc.flags@*/ ;
178
179static void context_restoreFlag (flagcode p_f) /*@modifies gc.flags@*/ ;
180
181/*@+enumindex@*/
182
183cstring context_unparseFlagMarkers ()
184{
185 return (flagMarkerList_unparse (gc.markers));
186}
187
188void context_setPreprocessing (void)
189{
190 llassert (!gc.preprocessing);
191 gc.preprocessing = TRUE;
192}
193
194void context_clearPreprocessing (void)
195{
196 llassert (gc.preprocessing);
197 gc.preprocessing = FALSE;
198}
199
200bool context_isPreprocessing (void)
201{
202 return gc.preprocessing;
203}
204
990ec868 205bool context_loadingLibrary (void)
206{
207 return (fileloc_isLib (g_currentloc));
208}
209
28bf4b0b 210bool context_inXHFile (void)
211{
212 return (fileloc_isXHFile (g_currentloc));
213}
214
616915dd 215void context_setInCommandLine (void)
216{
217 llassert (!gc.incommandline);
218 gc.incommandline = TRUE;
219}
220
221void context_clearInCommandLine (void)
222{
223 llassert (gc.incommandline);
224 gc.incommandline = FALSE;
225}
226
227bool context_isInCommandLine (void)
228{
229 return gc.incommandline;
230}
231
232static
233void pushClause (clause c) /*@modifies gc.clauses, gc.inclause@*/
234{
235 gc.inclause = c;
236 clauseStack_push (gc.clauses, c);
237
238 if (clause_isConditional (c)
239 && context_getFlag (FLG_CONTROLNESTDEPTH))
240 {
241 int maxdepth = context_getValue (FLG_CONTROLNESTDEPTH);
242 int depth = clauseStack_controlDepth (gc.clauses);
243
244 if (depth == maxdepth + 1)
245 {
246 voptgenerror
247 (FLG_CONTROLNESTDEPTH,
248 message ("Maximum control nesting depth "
249 "(%d) exceeded",
250 maxdepth),
251 g_currentloc);
252 }
253 }
254}
255
256static
257clause topClause (clauseStack s) /*@*/
258{
259 if (clauseStack_isEmpty (s)) return NOCLAUSE;
260 return ((clause) clauseStack_top (s));
261}
262
263void
264context_addMacroCache (/*@only@*/ cstring def)
265{
28bf4b0b 266 DPRINTF (("macro cache: %s", def));
267 macrocache_addEntry (gc.mc, fileloc_copy (g_currentloc), def);
616915dd 268}
269
270void
271context_addComment (/*@only@*/ cstring def)
272{
28bf4b0b 273 DPRINTF (("macro comment: %s", def));
274 macrocache_addComment (gc.mc, fileloc_copy (g_currentloc), def);
616915dd 275}
276
277/*
278** returns TRUE is fl is in ignore region, or region where -code
279**
280** the logic is fuzzy...
281*/
282
283static bool
284context_inSuppressFlagZone (fileloc fl, flagcode code)
285{
286 ynm ret = flagMarkerList_suppressError (gc.markers, code, fl);
287 bool res = FALSE;
288
289 if (ynm_isMaybe (ret))
290 {
291 /*
292 ** whas is dis?
293 */
294
295 if (gc.savedFlags)
296 {
297 res = !gc.saveflags[code];
298 }
299 else
300 {
301 res = !context_getFlag (code);
302 }
303 }
304 else
305 {
306 res = ynm_toBoolStrict (ret);
307 }
308
309 return res;
310}
311
312static bool
313context_suppressSystemMsg (fileloc fl)
314{
315 if (context_getFlag (FLG_SYSTEMDIRERRORS))
316 {
317 return FALSE;
318 }
319 else
320 {
321 return (fileloc_isSystemFile (fl));
322 }
323}
324
325bool
326context_suppressFlagMsg (flagcode flag, fileloc fl)
327{
328 if (context_suppressSystemMsg (fl))
329 {
330 return TRUE;
331 }
332
60eced23 333 DPRINTF (("Checking suppress: %s / %s", fileloc_unparse (fl), fileloc_unparse (g_currentloc)));
334
616915dd 335 /* want same object compare here */
336
337 if (fileloc_equal (fl, g_currentloc) || gc.inDerivedFile)
338 {
60eced23 339 DPRINTF (("In derived file: %s", bool_unparse (gc.inDerivedFile)));
340
616915dd 341 return (!context_getFlag (flag)
342 || context_inSuppressRegion ()
343 || context_inSuppressZone (fl)
60eced23 344 || (/*@!@@#@ gc.inDerivedFile && */ context_inSuppressFlagZone (fl, flag)));
616915dd 345 }
346 else
347 {
28bf4b0b 348 return (context_inSuppressFlagZone (fl, flag));
616915dd 349 }
350}
351
352bool
353context_suppressNotFlagMsg (flagcode flag, fileloc fl)
354{
355
356 if (context_suppressSystemMsg (fl))
357 {
358 return TRUE;
359 }
360
361 /*@access fileloc@*/
362 if (fl == g_currentloc)
363 /*@noaccess fileloc@*/
364 {
365 return (context_getFlag (flag) || context_inSuppressRegion ());
366 }
367 else
368 {
369 /* for now... */
370 return (context_getFlag (flag) || context_inSuppressRegion ());
371 }
372}
373
374bool
375context_inSuppressZone (fileloc fl)
376{
377 if (context_suppressSystemMsg (fl))
378 {
379 return TRUE;
380 }
381
382 return (flagMarkerList_inIgnore (gc.markers, fl));
383}
384
385bool
386context_inSuppressRegion (void)
387{
388 return (gc.insuppressregion);
389}
390
391void
392context_enterSuppressRegion (void)
393{
394 if (gc.insuppressregion)
395 {
396 gc.insuppressregion = FALSE; /* get this msg! */
397 llmsg (message
398 ("%q: New ignore errors region entered while in ignore errors region",
399 fileloc_unparse (g_currentloc)));
400 }
401
402 gc.insuppressregion = TRUE;
403 flagMarkerList_add (gc.markers, flagMarker_createIgnoreOn (g_currentloc));
404}
405
406static void
407context_addFlagMarker (flagcode code, ynm set)
408{
409 flagMarkerList_add (gc.markers,
410 flagMarker_createLocalSet (code, set, g_currentloc));
411}
412
413void
414context_enterSuppressLine (int count)
415{
416 fileloc nextline = fileloc_copy (g_currentloc);
417
418 flagMarkerList_add (gc.markers,
419 flagMarker_createIgnoreCount (count, g_currentloc));
420
421 fileloc_nextLine (nextline);
422 flagMarkerList_add (gc.markers,
423 flagMarker_createIgnoreOff (nextline));
424 fileloc_free (nextline);
425}
426
427void context_checkSuppressCounts (void)
428{
429 if (context_getFlag (FLG_SUPCOUNTS))
430 {
431 flagMarkerList_checkSuppressCounts (gc.markers);
432 }
433}
434
435void context_incLineno (void)
436{
437 gc.linesprocessed++;
438 incLine ();
439}
440
441void
442context_exitSuppressRegion (void)
443{
444 if (!gc.insuppressregion)
445 {
446 llerrorlit (FLG_SYNTAX,
447 "End ignore errors in region while not ignoring errors");
448 }
449
450 gc.insuppressregion = FALSE;
451 flagMarkerList_add (gc.markers, flagMarker_createIgnoreOff (g_currentloc));
452}
453
28bf4b0b 454void
455context_enterMTfile (void)
456{
457 gc.kind = CX_MT;
458}
459
460void
461context_exitMTfile (void)
462{
463 llassert (gc.kind == CX_MT);
464 gc.kind = CX_GLOBAL;
465}
466
616915dd 467# ifndef NOLCL
468void
469context_enterLCLfile (void)
470{
471 gc.kind = CX_LCL;
472 gc.facct = typeIdSet_emptySet ();
473}
474# endif
475
476static void
477addModuleAccess (/*@only@*/ cstring fname, typeIdSet mods)
478{
479 int i;
480
481 for (i = 0; i < gc.nmods; i++)
482 {
483 if (cstring_equal (gc.moduleaccess[i].file, fname))
484 {
485 gc.moduleaccess[i].daccess = typeIdSet_union (gc.moduleaccess[i].daccess, mods);
486 cstring_free (fname);
487 return;
488 }
489 }
490
491 if (gc.nmods == gc.maxmods)
492 {
493 maccesst *oldmods;
494
495 gc.maxmods = gc.maxmods + DEFAULTMAXMODS;
496 oldmods = gc.moduleaccess;
497
498 gc.moduleaccess = (maccesst *) dmalloc (sizeof (*gc.moduleaccess) * (gc.maxmods));
499
500 for (i = 0; i < gc.nmods; i++)
501 {
502 gc.moduleaccess[i] = oldmods[i];
503 }
504
505 sfree (oldmods);
506 }
507
508 gc.moduleaccess[gc.nmods].file = fname;
509 gc.moduleaccess[gc.nmods].daccess = mods;
510
511 gc.nmods++;
512}
513
514static void
515insertModuleAccess (cstring fname, typeId t)
516{
517 int i;
518
519 for (i = 0; i < gc.nmods; i++)
520 {
521 if (cstring_equal (gc.moduleaccess[i].file, fname))
522 {
523 gc.moduleaccess[i].daccess = typeIdSet_insert (gc.moduleaccess[i].daccess, t);
524 break;
525 }
526 }
527
528 addModuleAccess (cstring_copy (fname), typeIdSet_single (t));
529}
530
531# ifndef NOLCL
532void
533context_exitLCLfile (void)
534{
535 if (gc.kind != CX_LCLLIB)
536 {
28bf4b0b 537 cstring lclname =
538 fileLib_withoutExtension (fileName (currentFile ()), LCL_EXTENSION);
616915dd 539
28bf4b0b 540 addModuleAccess (fileLib_removePath (lclname), gc.facct);
541 cstring_free (lclname);
616915dd 542 }
543
544 gc.kind = CX_LCL;
545 gc.kind = CX_GLOBAL;
546 gc.facct = typeIdSet_emptySet ();
547}
548# endif
549
550void
551context_dumpModuleAccess (FILE *fout)
552{
553 int i = 0;
554
555 for (i = 0; i < gc.nmods; i++)
556 {
557 cstring td = typeIdSet_dump (gc.moduleaccess[i].daccess);
558
559 fprintf (fout, "%s#%s@\n",
560 cstring_toCharsSafe (gc.moduleaccess[i].file),
561 cstring_toCharsSafe (td));
562
563 cstring_free (td);
564 }
565}
566
567bool context_usingPosixLibrary ()
568{
569 return (gc.library == FLG_POSIXLIB
570 || gc.library == FLG_POSIXSTRICTLIB
571 || gc.library == FLG_UNIXLIB
572 || gc.library == FLG_UNIXSTRICTLIB);
573}
574
575bool context_usingAnsiLibrary ()
576{
577 return (gc.library != FLG_NOLIB);
578}
579
580flagcode context_getLibrary ()
581{
582 return gc.library;
583}
584
585void context_setLibrary (flagcode code)
586{
587 gc.library = code;
588}
589
28bf4b0b 590/*@observer@*/ cstring context_selectedLibrary ()
616915dd 591{
592 switch (gc.library)
593 {
594 case FLG_STRICTLIB:
28bf4b0b 595 return cstring_makeLiteralTemp (LLSTRICTLIBS_NAME);
616915dd 596 case FLG_POSIXLIB:
28bf4b0b 597 return cstring_makeLiteralTemp (LLPOSIXLIBS_NAME);
616915dd 598 case FLG_POSIXSTRICTLIB:
28bf4b0b 599 return cstring_makeLiteralTemp (LLPOSIXSTRICTLIBS_NAME);
616915dd 600 case FLG_UNIXLIB:
28bf4b0b 601 return cstring_makeLiteralTemp (LLUNIXLIBS_NAME);
616915dd 602 case FLG_UNIXSTRICTLIB:
28bf4b0b 603 return cstring_makeLiteralTemp (LLUNIXSTRICTLIBS_NAME);
616915dd 604 case FLG_ANSILIB:
28bf4b0b 605 return cstring_makeLiteralTemp (LLSTDLIBS_NAME);
616915dd 606 BADDEFAULT;
607 }
608}
609
610
611void
612context_loadModuleAccess (FILE *in)
613{
614 char *s = mstring_create (MAX_DUMP_LINE_LENGTH);
615 char *lasts = s;
616 char *name = mstring_create (MAX_NAME_LENGTH);
617 char *oname = name;
618# ifndef NOFREE
619 char *os = s;
620# endif
621
28bf4b0b 622 while ((reader_readLine (in, s, MAX_DUMP_LINE_LENGTH) != NULL )
616915dd 623 && *s == ';')
624 {
625 ;
626 }
627
628 while (s != NULL && *s != ';' && *s != '\0')
629 {
630 name = oname;
631
632 while (*s != '#' && *s != '\0')
633 {
634 *name++ = *s++;
635 }
636
637 *name = '\0';
638
639 if (*s != '#')
640 {
641 llcontbug (message ("context_loadModuleAccess: bad library line: %s\n",
642 cstring_fromChars (s)));
643 break;
644 }
645
646 s++;
647
648 addModuleAccess (cstring_copy (cstring_fromChars (oname)),
649 typeIdSet_undump (&s));
650
28bf4b0b 651 (void) reader_readLine (in, s, MAX_DUMP_LINE_LENGTH);
616915dd 652 llassert (s != lasts);
653 lasts = s;
654 }
655
656 sfree (oname);
657# ifndef NOFREE
658 sfree (os);
659# endif
660}
661
662typeIdSet context_fileAccessTypes (void)
663{
664 return gc.facct;
665}
666
667void
668context_resetModeFlags (void)
669{
670
671 allFlagCodes (code)
672 {
673 if (flagcode_isModeFlag (code))
674 {
675 context_setFlag (code, FALSE);
676 }
677 } end_allFlagCodes;
678
679 }
680
681/*
682** resetAllFlags
683**
684** Set all flags to FALSE, except for a few which are
685** true by default.
686**
687** Set all values and strings to appropriate defaults.
688** Set all counters to 0.
689*/
690
691static void
692conext_resetAllCounters (void)
693{
694 int i;
695
696 for (i = 0; i < NUMVALUEFLAGS; i++)
697 {
698 gc.counters[i] = 0;
699 }
700}
701
702void
703context_resetAllFlags (void)
704{
705 allFlagCodes (code)
706 {
707 gc.flags[code] = FALSE;
708
709 if (flagcode_hasValue (code))
710 {
711 int val = 0;
712
713 /*@-loopswitchbreak@*/
714 switch (code)
715 {
716 case FLG_LIMIT:
717 val = DEFAULT_LIMIT; break;
28bf4b0b 718 case FLG_BUGSLIMIT:
719 val = DEFAULT_BUGSLIMIT; break;
616915dd 720 case FLG_LINELEN:
721 val = DEFAULT_LINELEN; break;
28bf4b0b 722 case FLG_INDENTSPACES:
723 val = DEFAULT_INDENTSPACES; break;
616915dd 724 case FLG_EXTERNALNAMELEN:
725 val = DEFAULT_EXTERNALNAMELEN; break;
726 case FLG_INTERNALNAMELEN:
727 val = DEFAULT_INTERNALNAMELEN; break;
728 case FLG_COMMENTCHAR:
729 val = (int) DEFAULT_COMMENTCHAR; break;
730 case FLG_CONTROLNESTDEPTH:
731 val = (int) DEFAULT_CONTROLNESTDEPTH; break;
732 case FLG_STRINGLITERALLEN:
733 val = (int) DEFAULT_STRINGLITERALLEN; break;
734 case FLG_INCLUDENEST:
735 val = (int) DEFAULT_INCLUDENEST; break;
736 case FLG_NUMSTRUCTFIELDS:
737 val = (int) DEFAULT_NUMSTRUCTFIELDS; break;
738 case FLG_NUMENUMMEMBERS:
739 val = (int) DEFAULT_NUMENUMMEMBERS; break;
740 case FLG_EXPECT:
741 case FLG_LCLEXPECT:
742 break;
743 default:
744 llbug (message ("Bad value flag: %s", flagcode_unparse (code)));
745 }
746 /*@=loopswitchbreak@*/
747
748 context_setValue (code, val);
749 }
750 else if (flagcode_hasString (code))
751 {
752 cstring val = cstring_undefined;
753
754 switch (code)
755 { /*@-loopswitchbreak@*/
756 case FLG_LARCHPATH:
757 {
28bf4b0b 758 cstring larchpath = osd_getEnvironmentVariable (LARCH_PATH);
616915dd 759
28bf4b0b 760 if (cstring_isDefined (larchpath))
616915dd 761 {
28bf4b0b 762 val = cstring_copy (larchpath);
616915dd 763 }
764 else
765 {
766 val = cstring_makeLiteral (DEFAULT_LARCHPATH);
767 }
768
769 break;
770 }
771 case FLG_LCLIMPORTDIR:
772 {
28bf4b0b 773 val = cstring_copy (osd_getEnvironment (cstring_makeLiteralTemp (LCLIMPORTDIR), cstring_makeLiteralTemp (DEFAULT_LCLIMPORTDIR)));
616915dd 774 break;
775 }
776 case FLG_TMPDIR:
777# if defined(OS2) || defined(MSDOS) || defined(WIN32)
778 {
779 char *env = osd_getEnvironmentVariable ("TMP");
780
781 if (env == NULL)
782 {
783 env = osd_getEnvironmentVariable ("TEMP");
784 }
785
786 val = cstring_makeLiteral (env != NULL ? env : DEFAULT_TMPDIR);
787 }
788# else
789 val = cstring_makeLiteral (DEFAULT_TMPDIR);
790# endif /* !defined(OS2) && !defined(MSDOS) */
791
792 break;
793 case FLG_BOOLTYPE:
794 val = cstring_makeLiteral (DEFAULT_BOOLTYPE); break;
795 case FLG_BOOLFALSE:
796 val = cstring_makeLiteral ("FALSE"); break;
797 case FLG_BOOLTRUE:
798 val = cstring_makeLiteral ("TRUE"); break;
799 case FLG_MACROVARPREFIX:
800 val = cstring_makeLiteral ("m_"); break;
801 case FLG_SYSTEMDIRS:
802 val = cstring_makeLiteral (DEFAULT_SYSTEMDIR); break;
803 default:
804 break;
805 } /*@=loopswitchbreak@*/
806
807 context_setString (code, val);
808 }
809 else
810 {
811 ; /* nothing to set */
812 }
813 } end_allFlagCodes;
814
815 /*
816 ** These flags are true by default.
817 */
818
28bf4b0b 819 /*@i34 move this into flags.def */
820
616915dd 821 gc.flags[FLG_MODIFIES] = TRUE;
822 gc.flags[FLG_NESTCOMMENT] = TRUE;
823 gc.flags[FLG_GLOBALS] = TRUE;
824 gc.flags[FLG_FULLINITBLOCK] = TRUE;
825 gc.flags[FLG_LIKELYBOOL] = TRUE;
826 gc.flags[FLG_ZEROPTR] = TRUE;
827 gc.flags[FLG_NUMLITERAL] = TRUE;
828 gc.flags[FLG_DUPLICATEQUALS] = TRUE;
829 gc.flags[FLG_SKIPANSIHEADERS] = TRUE;
830 gc.flags[FLG_SKIPPOSIXHEADERS] = TRUE;
831 gc.flags[FLG_SYSTEMDIREXPAND] = TRUE;
832 gc.flags[FLG_UNRECOGCOMMENTS] = TRUE;
990ec868 833 gc.flags[FLG_UNRECOGFLAGCOMMENTS] = TRUE;
616915dd 834 gc.flags[FLG_CASTFCNPTR] = TRUE;
835 gc.flags[FLG_DOLCS] = TRUE;
836 gc.flags[FLG_USEVARARGS] = TRUE;
837 gc.flags[FLG_MAINTYPE] = TRUE;
838 gc.flags[FLG_SPECMACROS] = TRUE;
839 gc.flags[FLG_REDEF] = TRUE;
840 gc.flags[FLG_MACRONEXTLINE] = TRUE;
841
842 gc.flags[FLG_SIZEOFFORMALARRAY] = TRUE;
843 gc.flags[FLG_FIXEDFORMALARRAY] = TRUE;
844
28bf4b0b 845 gc.flags[FLG_WARNUSE] = TRUE;
616915dd 846 gc.flags[FLG_PREDASSIGN] = TRUE;
847 gc.flags[FLG_MODOBSERVER] = TRUE;
848 gc.flags[FLG_MACROVARPREFIXEXCLUDE] = TRUE;
849 gc.flags[FLG_EXTERNALNAMECASEINSENSITIVE] = TRUE;
850
851 gc.flags[FLG_PARAMIMPTEMP] = TRUE;
852 gc.flags[FLG_RETIMPONLY] = TRUE;
853 gc.flags[FLG_GLOBIMPONLY] = TRUE;
854 gc.flags[FLG_STRUCTIMPONLY] = TRUE;
855 gc.flags[FLG_PREPROC] = TRUE;
856 gc.flags[FLG_NAMECHECKS] = TRUE;
857 gc.flags[FLG_FORMATCODE] = TRUE;
858 gc.flags[FLG_FORMATTYPE] = TRUE;
859 gc.flags[FLG_BADFLAG] = TRUE;
860 gc.flags[FLG_WARNFLAGS] = TRUE;
28bf4b0b 861 gc.flags[FLG_FILEEXTENSIONS] = TRUE;
616915dd 862 gc.flags[FLG_WARNUNIXLIB] = TRUE;
863 gc.flags[FLG_WARNPOSIX] = TRUE;
864 gc.flags[FLG_SHOWCOL] = TRUE;
865 gc.flags[FLG_SHOWFUNC] = TRUE;
866 gc.flags[FLG_SUPCOUNTS] = TRUE;
867 gc.flags[FLG_HINTS] = TRUE;
868 gc.flags[FLG_SYNTAX] = TRUE;
869 gc.flags[FLG_TYPE] = TRUE;
870 gc.flags[FLG_INCOMPLETETYPE] = TRUE;
871 gc.flags[FLG_ABSTRACT] = TRUE;
872 gc.flags[FLG_ITER] = TRUE;
873 gc.flags[FLG_CONTROL] = TRUE;
874 gc.flags[FLG_UNRECOG] = TRUE;
875 gc.flags[FLG_SYSTEMUNRECOG] = TRUE;
876 gc.flags[FLG_LINTCOMMENTS] = TRUE;
877 gc.flags[FLG_ACCESSCZECH] = TRUE;
878 gc.flags[FLG_ACCESSMODULE] = TRUE;
879 gc.flags[FLG_ACCESSFILE] = TRUE;
880 gc.flags[FLG_MACROVARPREFIX] = TRUE;
881
28bf4b0b 882 gc.flags[FLG_ANNOTATIONERROR] = TRUE;
883 gc.flags[FLG_COMMENTERROR] = TRUE;
884
616915dd 885 /*
886 ** Changed for version 2.4.
887 */
888
889 gc.flags[FLG_GNUEXTENSIONS] = TRUE;
890
891 /*
892 ** On by default for Win32, but not Unix (to support MS/VC++ error message format).
893 */
894
895# ifdef WIN32
896 gc.flags[FLG_PARENFILEFORMAT] = TRUE;
897# endif
898}
899
900/*
901** C is way-lame, and you can initialize an array to a constant except where
902** it is declared. Hence, a macro is used to set the modeflags.
903*/
904
905/*@notfunction@*/
906# define SETFLAGS() \
907 { int i = 0; while (modeflags[i] != INVALID_FLAG) { \
908 if (!flagcode_isModeFlag (modeflags[i])) \
909 { llbug (message ("not a mode flag: %s", \
910 flagcode_unparse (modeflags[i]))); } \
911 else { context_setFlag (modeflags[i], TRUE); } i++; }}
912
913void
914context_setMode (cstring s)
915{
916 intSet setflags = intSet_new ();
917
918 allFlagCodes (code)
919 {
920 if (flagcode_isModeFlag (code))
921 {
922 if (gc.setGlobally[code])
923 {
924 (void) intSet_insert (setflags, (int) code);
925 }
926 }
927 } end_allFlagCodes;
928
929 if (!intSet_isEmpty (setflags))
930 {
931 cstring rflags = cstring_undefined;
932 int num = 0;
933
934 intSet_elements (setflags, el)
935 {
936 if (cstring_isUndefined (rflags))
937 {
938 rflags = cstring_copy (flagcode_unparse ((flagcode) (el)));
939 }
940 else
941 {
942 rflags = message ("%q, %s", rflags,
943 flagcode_unparse ((flagcode) el));
944 }
945
946 num++;
947 if (num > 4 && intSet_size (setflags) > 6)
948 {
949 rflags = message ("%q, (%d others) ...", rflags,
950 intSet_size (setflags) - num);
951 break;
952 }
953 } end_intSet_elements ;
954
955 voptgenerror (FLG_WARNFLAGS,
956 message ("Setting mode %s after setting mode flags will "
957 "override set values of flags: %s",
958 s, rflags),
959 g_currentloc);
960
961 cstring_free (rflags);
962 }
963
964 intSet_free (setflags);
965
966 context_resetModeFlags ();
967
968 if (cstring_equalLit (s, "standard"))
969 {
970 flagcode modeflags[] =
971 {
972 FLG_ENUMINT, FLG_MACROMATCHNAME,
973 FLG_MACROUNDEF, FLG_RELAXQUALS,
974 FLG_USEALLGLOBS, FLG_CHECKSTRICTGLOBALS,
975 FLG_CHECKSTRICTGLOBALIAS,
976 FLG_CHECKEDGLOBALIAS,
977 FLG_CHECKMODGLOBALIAS,
978 FLG_PREDBOOLOTHERS, FLG_PREDBOOLINT,
979 FLG_PARAMUNUSED, FLG_VARUNUSED, FLG_FUNCUNUSED,
980 FLG_TYPEUNUSED,
981 FLG_CONSTUNUSED, FLG_ENUMMEMUNUSED, FLG_FIELDUNUSED,
982 FLG_PTRNUMCOMPARE, FLG_BOOLCOMPARE, FLG_MUTREP,
983 FLG_NOEFFECT, FLG_IMPTYPE,
984 FLG_RETVALOTHER, FLG_RETVALBOOL, FLG_RETVALINT,
28bf4b0b 985 FLG_SPECUNDEF, FLG_INCONDEFS, FLG_INCONDEFSLIB, FLG_MISPLACEDSHAREQUAL,
616915dd 986 FLG_MATCHFIELDS,
28bf4b0b 987 FLG_FORMATCONST,
616915dd 988 FLG_MACROPARAMS, FLG_MACROASSIGN, FLG_SEFPARAMS,
989 FLG_MACROSTMT, FLG_MACROPARENS,
990 FLG_MACROFCNDECL,
991 FLG_MACROCONSTDECL,
992 FLG_MACROREDEF, FLG_INFLOOPS, FLG_UNREACHABLE,
993 FLG_NORETURN, FLG_CASEBREAK, FLG_MISSCASE, FLG_USEDEF,
994 FLG_FIRSTCASE,
995 FLG_NESTEDEXTERN,
996 FLG_NUMLITERAL,
997 FLG_ZEROBOOL,
998 /* memchecks flags */
999 FLG_NULLDEREF,
1000 FLG_NULLSTATE, FLG_NULLASSIGN,
1001 FLG_NULLPASS, FLG_NULLRET,
1002
1003 FLG_COMPDEF, FLG_COMPMEMPASS, FLG_UNIONDEF,
1004 FLG_RETSTACK,
1005
1006 /* memtrans flags */
1007 FLG_EXPOSETRANS,
1008 FLG_OBSERVERTRANS,
1009 FLG_DEPENDENTTRANS,
1010 FLG_NEWREFTRANS,
1011 FLG_ONLYTRANS,
1012 FLG_OWNEDTRANS,
1013 FLG_FRESHTRANS,
1014 FLG_SHAREDTRANS,
1015 FLG_TEMPTRANS,
1016 FLG_KEPTTRANS,
1017 FLG_REFCOUNTTRANS,
1018 FLG_STATICTRANS,
1019 FLG_UNKNOWNTRANS,
1020 FLG_KEEPTRANS,
1021 FLG_IMMEDIATETRANS,
1022
1023 FLG_EXPORTLOCAL,
1024
1025 FLG_USERELEASED, FLG_ALIASUNIQUE, FLG_MAYALIASUNIQUE,
1026 FLG_MUSTFREE, FLG_MUSTDEFINE, FLG_GLOBSTATE,
1027 FLG_COMPDESTROY, FLG_MUSTNOTALIAS,
1028 FLG_MEMIMPLICIT,
1029 FLG_BRANCHSTATE,
28bf4b0b 1030 FLG_STATETRANSFER, FLG_STATEMERGE,
616915dd 1031 FLG_EVALORDER, FLG_SHADOW, FLG_READONLYSTRINGS,
1032 FLG_EXITARG,
1033 FLG_IMPCHECKEDSPECGLOBALS,
1034 FLG_MODGLOBS, FLG_WARNLINTCOMMENTS,
1035 FLG_IFEMPTY, FLG_REALCOMPARE,
1036 FLG_BOOLOPS, FLG_PTRNEGATE,
1037 FLG_SHIFTSIGNED,
28bf4b0b 1038 FLG_BUFFEROVERFLOWHIGH,
1039 FLG_BUFFEROVERFLOW,
1040 INVALID_FLAG
1041 } ;
616915dd 1042
1043 SETFLAGS ();
1044 }
1045 else if (cstring_equalLit (s, "weak"))
1046 {
1047 flagcode modeflags[] =
1048 {
1049 FLG_BOOLINT, FLG_CHARINT, FLG_FLOATDOUBLE,
1050 FLG_ENUMINT, FLG_RELAXQUALS, FLG_FORWARDDECL,
1051 FLG_CHARINDEX, FLG_ABSTVOIDP, FLG_USEALLGLOBS,
1052 FLG_CHARUNSIGNEDCHAR,
1053 FLG_PREDBOOLOTHERS,
1054 FLG_VARUNUSED, FLG_FUNCUNUSED,
1055 FLG_TYPEUNUSED,
1056 FLG_CHECKSTRICTGLOBALS, FLG_MACROMATCHNAME,
1057 FLG_RETVALOTHER,
1058 FLG_IFEMPTY,
1059 FLG_RETSTACK, FLG_PTRNEGATE,
28bf4b0b 1060 FLG_STATETRANSFER, FLG_STATEMERGE,
616915dd 1061 FLG_LONGUNSIGNEDINTEGRAL,
1062 FLG_LONGUNSIGNEDUNSIGNEDINTEGRAL,
1063 FLG_NUMLITERAL,
1064 FLG_CHARINTLITERAL,
1065 FLG_ZEROBOOL,
28bf4b0b 1066 FLG_BUFFEROVERFLOWHIGH,
616915dd 1067 INVALID_FLAG
1068 } ;
1069
1070 SETFLAGS ();
1071 }
1072 else if (cstring_equalLit (s, "checks"))
1073 {
1074 flagcode modeflags[] =
1075 {
1076 FLG_EXPORTLOCAL, FLG_IMPTYPE,
28bf4b0b 1077 FLG_STATETRANSFER, FLG_STATEMERGE,
616915dd 1078 FLG_CHECKSTRICTGLOBALIAS,
1079 FLG_CHECKEDGLOBALIAS,
1080 FLG_CHECKMODGLOBALIAS,
1081 FLG_UNCHECKEDGLOBALIAS,
28bf4b0b 1082 FLG_FORMATCONST,
616915dd 1083 FLG_EXITARG, FLG_PTRNUMCOMPARE,
1084 FLG_BOOLCOMPARE, FLG_MACROUNDEF,
1085 FLG_MUSTMOD, FLG_ALLGLOBALS,
1086 FLG_PREDBOOLOTHERS, FLG_PREDBOOLPTR, FLG_PREDBOOLINT,
1087 FLG_USEALLGLOBS, FLG_MUTREP, FLG_RETALIAS,
1088 FLG_RETEXPOSE, FLG_ASSIGNEXPOSE, FLG_CASTEXPOSE,
1089 FLG_FUNCUNUSED, FLG_GLOBALSIMPMODIFIESNOTHING,
1090 FLG_TYPEUNUSED, FLG_FIELDUNUSED, FLG_PARAMUNUSED, FLG_VARUNUSED,
1091 FLG_CONSTUNUSED, FLG_ENUMMEMUNUSED,
1092 FLG_NOEFFECT, FLG_EXPORTHEADER, FLG_EXPORTHEADERVAR,
1093 FLG_RETVALOTHER, FLG_RETVALBOOL, FLG_RETVALINT,
1094 FLG_SPECUNDEF, FLG_IMPCHECKMODINTERNALS,
1095 FLG_DECLUNDEF, FLG_INCONDEFS, FLG_INCONDEFSLIB,
28bf4b0b 1096 FLG_MISPLACEDSHAREQUAL, FLG_REDUNDANTSHAREQUAL,
616915dd 1097 FLG_MATCHFIELDS,
1098 FLG_MACROPARAMS,
1099 FLG_MACROASSIGN,
1100 FLG_DECLPARAMMATCH,
1101 FLG_FCNDEREF,
1102 FLG_FIRSTCASE,
1103 FLG_SEFPARAMS, FLG_SEFUNSPEC, FLG_MACROSTMT, FLG_MACROPARENS,
1104 FLG_MACROCONSTDECL,
1105 FLG_MACROFCNDECL,
1106 FLG_MACROREDEF,
1107 FLG_INFLOOPS, FLG_INFLOOPSUNCON,
1108 FLG_UNREACHABLE,
1109 FLG_NORETURN, FLG_CASEBREAK, FLG_MISSCASE,
1110 FLG_EVALORDER, FLG_USEDEF,
1111
1112 FLG_NESTEDEXTERN,
1113
1114 /* memchecks flags */
1115
1116 FLG_NULLSTATE, FLG_NULLDEREF, FLG_NULLASSIGN,
1117 FLG_NULLPASS, FLG_NULLRET,
1118
1119 FLG_COMPDEF, FLG_COMPMEMPASS, FLG_UNIONDEF, FLG_RETSTACK,
1120
1121 /* memtrans flags */
1122 FLG_EXPOSETRANS,
1123 FLG_OBSERVERTRANS,
1124 FLG_DEPENDENTTRANS,
1125 FLG_NEWREFTRANS,
1126 FLG_ONLYTRANS,
1127 FLG_OWNEDTRANS,
1128 FLG_FRESHTRANS,
1129 FLG_SHAREDTRANS,
1130 FLG_TEMPTRANS,
1131 FLG_KEPTTRANS,
1132 FLG_REFCOUNTTRANS,
1133 FLG_STATICTRANS,
1134 FLG_UNKNOWNTRANS,
1135 FLG_STATICINITTRANS,
1136 FLG_UNKNOWNINITTRANS,
1137 FLG_KEEPTRANS,
1138 FLG_IMMEDIATETRANS,
1139 FLG_ONLYUNQGLOBALTRANS,
1140 FLG_USERELEASED, FLG_ALIASUNIQUE, FLG_MAYALIASUNIQUE,
1141 FLG_MUSTFREE, FLG_MUSTDEFINE, FLG_GLOBSTATE,
1142 FLG_COMPDESTROY, FLG_MUSTNOTALIAS,
1143 FLG_MEMIMPLICIT,
1144 FLG_BRANCHSTATE,
1145 FLG_NULLPOINTERARITH,
1146 FLG_SHADOW, FLG_DEPARRAYS,
1147 FLG_REDECL, FLG_READONLYSTRINGS, FLG_READONLYTRANS,
1148 FLG_LOOPLOOPBREAK, FLG_SWITCHLOOPBREAK, FLG_MODGLOBS,
1149 FLG_CHECKSTRICTGLOBALS, FLG_IMPCHECKEDSPECGLOBALS,
1150 FLG_MACROMATCHNAME, FLG_WARNLINTCOMMENTS,
1151 FLG_INCLUDENEST, FLG_ANSIRESERVED, FLG_CPPNAMES,
1152 FLG_NOPARAMS, FLG_IFEMPTY, FLG_WHILEEMPTY, FLG_REALCOMPARE,
1153 FLG_BOOLOPS, FLG_SHIFTSIGNED,
28bf4b0b 1154 FLG_BUFFEROVERFLOWHIGH, FLG_BUFFEROVERFLOW,
616915dd 1155 INVALID_FLAG } ;
1156
1157 SETFLAGS ();
1158 }
1159 else if (cstring_equalLit (s, "strict"))
1160 {
1161 flagcode modeflags[] =
1162 {
1163 FLG_CHECKSTRICTGLOBALIAS,
1164 FLG_CHECKEDGLOBALIAS,
1165 FLG_CHECKMODGLOBALIAS,
1166 FLG_UNCHECKEDGLOBALIAS,
1167 FLG_MODFILESYSTEM,
1168 FLG_MACROMATCHNAME,
28bf4b0b 1169 FLG_FORMATCONST,
1170 FLG_STATETRANSFER, FLG_STATEMERGE,
616915dd 1171 FLG_MACROUNDEF, FLG_MUTREP, FLG_MUSTMOD,
1172 FLG_ALLGLOBALS, FLG_IMPTYPE,
1173 FLG_MODNOMODS, FLG_MODGLOBSUNSPEC, FLG_MODSTRICTGLOBSUNSPEC,
1174 FLG_GLOBUNSPEC, FLG_SIZEOFTYPE,
1175 FLG_EXPORTHEADER, FLG_EXPORTHEADERVAR,
1176 FLG_NOPARAMS, FLG_OLDSTYLE, FLG_EXITARG,
1177 FLG_RETSTACK,
1178 FLG_FCNDEREF,
1179 FLG_ONLYUNQGLOBALTRANS,
1180 FLG_GLOBALSIMPMODIFIESNOTHING,
1181 FLG_PREDBOOLOTHERS, FLG_PREDBOOLPTR, FLG_PREDBOOLINT,
1182 FLG_INTERNALGLOBS, FLG_INTERNALGLOBSNOGLOBS,
1183 FLG_USEALLGLOBS, FLG_RETALIAS,
1184 FLG_MODGLOBS, FLG_MODGLOBSUNSPEC, FLG_MODGLOBSUNCHECKED,
1185 FLG_RETEXPOSE, FLG_ASSIGNEXPOSE, FLG_CASTEXPOSE,
1186 FLG_NOEFFECTUNCON, FLG_EVALORDERUNCON,
1187 FLG_FUNCUNUSED,
1188 FLG_EXPORTITER, FLG_EXPORTCONST,
1189 FLG_TYPEUNUSED, FLG_FIELDUNUSED, FLG_PARAMUNUSED, FLG_TOPUNUSED,
1190 FLG_CONSTUNUSED, FLG_ENUMMEMUNUSED,
1191 FLG_VARUNUSED,
1192 FLG_NULLPOINTERARITH, FLG_POINTERARITH,
1193 FLG_PTRNUMCOMPARE,
1194 FLG_BOOLCOMPARE, FLG_NOEFFECT,
1195 FLG_RETVALINT, FLG_RETVALBOOL, FLG_RETVALOTHER,
1196 FLG_ANSIRESERVED, FLG_ANSIRESERVEDLOCAL, FLG_CPPNAMES,
1197 FLG_RETVALBOOL, FLG_RETVALINT, FLG_SPECUNDEF,
1198 FLG_DECLUNDEF, FLG_STRICTOPS, FLG_INCONDEFS,
28bf4b0b 1199 FLG_MISPLACEDSHAREQUAL, FLG_REDUNDANTSHAREQUAL,
616915dd 1200 FLG_INCONDEFSLIB, FLG_MATCHFIELDS, FLG_EXPORTMACRO, FLG_EXPORTVAR,
1201 FLG_EXPORTFCN, FLG_EXPORTTYPE, FLG_EXPORTLOCAL, FLG_MACROPARAMS,
1202 FLG_MACROASSIGN,
1203 FLG_SEFPARAMS, FLG_SEFUNSPEC, FLG_MACROSTMT, FLG_MACROPARENS,
1204 FLG_MACROFCNDECL,
1205 FLG_MACROCONSTDECL,
1206 FLG_MACROREDEF, FLG_MACROEMPTY,
1207 FLG_INFLOOPS, FLG_INFLOOPSUNCON,
1208 FLG_UNREACHABLE,
1209 FLG_NORETURN, FLG_CASEBREAK, FLG_MISSCASE, FLG_USEDEF,
1210 FLG_EVALORDER,
1211 FLG_MODUNCON, FLG_MODUNCONNOMODS, FLG_MODINTERNALSTRICT,
1212 FLG_MODOBSERVERUNCON,
1213
1214 FLG_NESTEDEXTERN,
1215 FLG_FIRSTCASE,
1216
1217 /* memchecks flags */
1218 FLG_NULLSTATE, FLG_NULLDEREF, FLG_NULLASSIGN,
1219 FLG_NULLPASS, FLG_NULLRET,
1220
1221 FLG_COMPDEF, FLG_COMPMEMPASS, FLG_UNIONDEF,
1222
1223 /* memtrans flags */
1224 FLG_EXPOSETRANS,
1225 FLG_OBSERVERTRANS,
1226 FLG_DEPENDENTTRANS,
1227 FLG_NEWREFTRANS,
1228 FLG_ONLYTRANS,
1229 FLG_OWNEDTRANS,
1230 FLG_FRESHTRANS,
1231 FLG_SHAREDTRANS,
1232 FLG_TEMPTRANS,
1233 FLG_KEPTTRANS,
1234 FLG_REFCOUNTTRANS,
1235 FLG_STATICTRANS,
1236 FLG_UNKNOWNTRANS,
1237 FLG_KEEPTRANS,
1238 FLG_IMMEDIATETRANS,
1239 FLG_STATICINITTRANS,
1240 FLG_UNKNOWNINITTRANS,
1241
1242 FLG_USERELEASED, FLG_ALIASUNIQUE, FLG_MAYALIASUNIQUE,
1243 FLG_MUSTFREE, FLG_MUSTDEFINE, FLG_GLOBSTATE,
1244 FLG_COMPDESTROY, FLG_MUSTNOTALIAS,
1245 FLG_MEMIMPLICIT,
1246 FLG_BRANCHSTATE,
1247
1248 FLG_DECLPARAMNAME, FLG_DECLPARAMMATCH,
1249
1250 FLG_SHADOW, FLG_DEPARRAYS,
1251 FLG_STRICTDESTROY, FLG_STRICTUSERELEASED, FLG_STRICTBRANCHSTATE,
1252 FLG_REDECL, FLG_READONLYSTRINGS, FLG_READONLYTRANS,
1253 FLG_LOOPLOOPBREAK, FLG_LOOPSWITCHBREAK, FLG_SWITCHLOOPBREAK,
1254 FLG_SWITCHSWITCHBREAK, FLG_LOOPLOOPCONTINUE,
1255 FLG_CHECKSTRICTGLOBALS, FLG_IMPCHECKEDSPECGLOBALS,
1256 FLG_ALLGLOBALS, FLG_IMPCHECKEDSTRICTGLOBALS,
1257 FLG_IMPCHECKEDSTRICTSTATICS,
1258 FLG_IMPCHECKEDSTRICTSPECGLOBALS,
1259 FLG_IMPCHECKMODINTERNALS,
1260 FLG_WARNMISSINGGLOBALS, FLG_WARNMISSINGGLOBALSNOGLOBS,
1261 FLG_WARNLINTCOMMENTS, FLG_ANSIRESERVEDLOCAL,
1262 FLG_INCLUDENEST, FLG_STRINGLITERALLEN,
1263 FLG_NUMSTRUCTFIELDS, FLG_NUMENUMMEMBERS,
1264 FLG_CONTROLNESTDEPTH,
1265 FLG_FORBLOCK, FLG_WHILEBLOCK,
1266 FLG_FOREMPTY, FLG_WHILEEMPTY,
1267 FLG_IFEMPTY, FLG_IFBLOCK,
1268 FLG_ELSEIFCOMPLETE,
1269 FLG_REALCOMPARE, FLG_BOOLOPS,
1270 FLG_SYSTEMDIRERRORS, FLG_UNUSEDSPECIAL,
1271
1272 FLG_SHIFTSIGNED, FLG_BITWISEOPS,
28bf4b0b 1273 FLG_BUFFEROVERFLOWHIGH, FLG_BUFFEROVERFLOW,
1274 INVALID_FLAG
1275 } ;
616915dd 1276
1277 SETFLAGS ();
1278 }
1279 else
1280 {
1281 llcontbug (message ("context_setMode: bad mode: %s", s));
1282 }
1283}
1284
1285bool
1286context_isSpecialFile (cstring fname)
1287{
28bf4b0b 1288 cstring ext = fileLib_getExtension (fname);
616915dd 1289
28bf4b0b 1290 return (cstring_equalLit (ext, ".y")
1291 || cstring_equalLit (ext, ".l")
616915dd 1292 || cstring_equalLit (fname, "lex.yy.c"));
1293}
1294
1295bool
1296context_isSystemDir (cstring dir)
1297{
1298 cstring sysDirs = context_exposeString (FLG_SYSTEMDIRS);
1299 char *thisdir = cstring_toCharsSafe (sysDirs);
1300 char *nextdir = strchr (thisdir, SEPCHAR);
1301
1302 if (nextdir != NULL)
1303 {
1304 *nextdir = '\0';
1305 nextdir += 1;
1306 }
1307
1308 while (thisdir != NULL)
1309 {
1310 DPRINTF (("Test: %s / %s", dir, thisdir));
1311
1312 if (cstring_equalCanonicalPrefix (dir, thisdir))
1313 {
1314 if (nextdir != NULL)
1315 {
1316 *(nextdir - 1) = SEPCHAR;
1317 }
1318
1319 return TRUE;
1320 }
1321
1322 if (nextdir != NULL)
1323 {
1324 *(nextdir - 1) = SEPCHAR;
1325 }
1326
1327 if (nextdir != NULL)
1328 {
1329 thisdir = nextdir;
1330 nextdir = strchr (thisdir, SEPCHAR);
1331
1332 if (nextdir != NULL)
1333 {
1334 *nextdir = '\0';
1335 nextdir += 1;
1336 }
1337 }
1338 else
1339 {
1340 break;
1341 }
1342 }
1343
1344 DPRINTF (("Returns FALSE"));
1345 return FALSE;
1346}
1347
1348void
1349context_addFileAccessType (typeId t)
1350{
1351 cstring base;
1352
28bf4b0b 1353 if (context_inFunctionLike ())
616915dd 1354 {
1355 gc.acct = typeIdSet_insert (gc.acct, t);
1356 }
1357
1358 gc.facct = typeIdSet_insert (gc.facct, t);
1359
1360 base = fileloc_getBase (g_currentloc);
1361 insertModuleAccess (base, t);
1362 DPRINTF (("Add file access: %s / %s", typeIdSet_unparse (gc.facct),
1363 typeIdSet_unparse (gc.acct)));
1364}
1365
1366void
1367context_removeFileAccessType (typeId t)
1368{
1369 if (gc.kind == CX_FUNCTION || gc.kind == CX_MACROFCN
1370 || gc.kind == CX_UNKNOWNMACRO)
1371 {
1372 gc.acct = typeIdSet_removeFresh (gc.acct, t);
1373 }
1374
1375 gc.facct = typeIdSet_removeFresh (gc.facct, t);
1376 gc.nacct = typeIdSet_insert (gc.nacct, t);
1377}
1378
28bf4b0b 1379void context_enterFunctionHeader (void)
616915dd 1380{
1381 llassert (gc.kind == CX_GLOBAL);
d9a28762 1382 DPRINTF (("Enter function header!"));
1383 gc.inFunctionHeader = TRUE;
616915dd 1384}
1385
28bf4b0b 1386void context_exitFunctionHeader (void)
616915dd 1387{
d9a28762 1388 DPRINTF (("Exit function header!"));
1389 gc.inFunctionHeader = FALSE;
616915dd 1390}
1391
28bf4b0b 1392bool context_inFunctionHeader (void)
1393{
d9a28762 1394 return (gc.inFunctionHeader);
28bf4b0b 1395}
1396
1397void context_enterFunctionDeclaration (uentry e)
1398{
1399 DPRINTF (("Enter function decl"));
1400 llassert (gc.savekind == CX_ERROR);
1401 gc.savekind = gc.kind;
1402 gc.kind = CX_FCNDECLARATION;
1403 gc.cont.fcn = e;
1404}
1405
1406void context_exitFunctionDeclaration (void)
616915dd 1407{
28bf4b0b 1408 DPRINTF (("Exit function decl"));
1409 llassert (gc.savekind != CX_ERROR);
1410 llassert (gc.kind == CX_FCNDECLARATION);
1411 gc.kind = gc.savekind;
1412 gc.cont.fcn = uentry_undefined;
1413 gc.savekind = CX_ERROR;
616915dd 1414}
1415
28bf4b0b 1416bool context_inFunctionDeclaration (void)
1417{
1418 return (gc.kind == CX_FCNDECLARATION);
1419}
1420
1421
616915dd 1422void
1423context_enterMacro (/*@observer@*/ uentry e)
1424{
1425 context_enterFunction (e);
1426 gc.kind = CX_MACROFCN;
1427}
1428
1429void
1430context_enterUnknownMacro (/*@dependent@*/ uentry e)
1431{
1432 llassert (uentry_isFunction (e));
1433 context_enterFunction (e);
1434 gc.kind = CX_UNKNOWNMACRO;
1435}
1436
1437void context_enterAndClause (exprNode e)
1438{
1439
1440 usymtab_trueBranch (guardSet_copy (exprNode_getGuards (e)));
1441 pushClause (ANDCLAUSE);
1442}
1443
1444void context_enterOrClause (exprNode e)
1445{
1446 usymtab_trueBranch (guardSet_invert (exprNode_getGuards (e)));
1447 pushClause (ORCLAUSE);
1448}
1449
1450bool context_inDeepLoop (void)
1451{
1452 bool inLoop = FALSE;
1453
1454 clauseStack_elements (gc.clauses, el)
1455 {
1456 if (clause_isLoop (el))
1457 {
1458 if (inLoop)
1459 {
1460 return TRUE;
1461 }
1462
1463 inLoop = TRUE;
1464 }
1465 } end_clauseStack_elements;
1466
1467 return FALSE;
1468}
1469
1470bool context_inDeepSwitch (void)
1471{
1472 bool inLoop = FALSE;
1473
1474 clauseStack_elements (gc.clauses, el)
1475 {
1476 if (clause_isSwitch (el))
1477 {
1478 if (inLoop)
1479 {
1480 return TRUE;
1481 }
1482
1483 inLoop = TRUE;
1484 }
1485 } end_clauseStack_elements;
1486
1487 return FALSE;
1488}
1489
1490bool context_inDeepLoopSwitch (void)
1491{
1492 bool inLoop = FALSE;
1493
1494 clauseStack_elements (gc.clauses, el)
1495 {
1496 if (clause_isBreakable (el))
1497 {
1498 if (inLoop)
1499 {
1500 return TRUE;
1501 }
1502
1503 inLoop = TRUE;
1504 }
1505 } end_clauseStack_elements;
1506
1507 return FALSE;
1508}
1509
1510clause context_breakClause (void)
1511{
1512 clauseStack_elements (gc.clauses, el)
1513 {
1514 if (clause_isSwitch (el))
1515 {
1516 return el;
1517 }
1518 else if (clause_isLoop (el))
1519 {
1520 return el;
1521 }
1522 else
1523 {
1524 ;
1525 }
1526 } end_clauseStack_elements;
1527
1528 return NOCLAUSE;
1529}
1530
1531clause context_nextBreakClause (void)
1532{
1533 bool hasOne = FALSE;
1534
1535 clauseStack_elements (gc.clauses, el)
1536 {
1537 if (clause_isBreakable (el))
1538 {
1539 if (hasOne)
1540 {
1541 return el;
1542 }
1543 else
1544 {
1545 hasOne = TRUE;
1546 }
1547 }
1548 } end_clauseStack_elements;
1549
1550 return NOCLAUSE;
1551}
1552
1553bool context_inConditional (void)
1554{
1555 clauseStack_elements (gc.clauses, el)
1556 {
1557 /*
1558 ** Should also include TRUECLAUSE and FALSECLAUSE, but need
1559 ** to distinguish if from ? for this
1560 */
1561
1562 if (clause_isBreakable (el) && (el != DOWHILECLAUSE))
1563 {
1564 return TRUE;
1565 }
1566 } end_clauseStack_elements;
1567
1568 return FALSE;
1569}
1570
1571void context_exitAndClause (exprNode pred, exprNode tbranch)
1572{
1573 context_setJustPopped ();
1574
1575 llassert (gc.inclause == ANDCLAUSE);
1576
1577 usymtab_popAndBranch (pred, tbranch);
1578 clauseStack_pop (gc.clauses);
1579 gc.inclause = topClause (gc.clauses);
1580}
1581
1582void context_exitOrClause (exprNode pred, exprNode tbranch)
1583{
1584 context_setJustPopped ();
1585
1586 llassert (gc.inclause == ORCLAUSE);
1587
1588 usymtab_popOrBranch (pred, tbranch);
1589 clauseStack_pop (gc.clauses);
1590 gc.inclause = topClause (gc.clauses);
1591}
1592
1593static void context_enterCondClauseAux (clause cl)
1594 /*@modifies gc@*/
1595{
1596 pushClause (cl);
1597}
1598
1599static void context_enterTrueAux (exprNode e, clause cl)
1600 /*@modifies gc@*/
1601{
1602 usymtab_trueBranch (guardSet_copy (exprNode_getGuards (e)));
1603 pushClause (cl);
1604}
1605
1606void context_enterIterClause (void)
1607{
1608 context_enterTrueAux (exprNode_undefined, ITERCLAUSE);
1609}
1610
1611void context_enterDoWhileClause (void)
1612{
1613 pushClause (DOWHILECLAUSE);
1614}
1615
1616void context_enterWhileClause (exprNode e)
1617{
1618 context_enterTrueAux (e, WHILECLAUSE);
1619}
1620
1621void context_enterForClause (exprNode e)
1622{
1623 context_enterTrueAux (e, FORCLAUSE);
1624}
1625
1626void context_enterTrueClause (exprNode e)
1627{
1628 context_enterTrueAux (e, TRUECLAUSE);
1629}
1630
1631void context_enterSwitch (exprNode e)
1632{
1633
1634 usymtab_switchBranch (e);
1635 context_enterCondClauseAux (SWITCHCLAUSE);
1636}
1637
1638void context_exitSwitch (exprNode e, bool allpaths)
1639{
1640 usymtab_exitSwitch (e, allpaths);
1641
1642 while (clause_isCase (clauseStack_top (gc.clauses)))
1643 {
1644 clauseStack_pop (gc.clauses);
1645 }
1646
1647 context_exitClauseSimp ();
1648}
1649
1650void context_enterCaseClause (exprNode e)
1651{
1652 bool branch = FALSE;
1653
1654 DPRINTF (("Enter case clause!"));
1655
1656 branch = usymtab_newCase (exprNode_undefined, e);
1657
1658 if (branch)
1659 {
1660 context_enterCondClauseAux (CASECLAUSE);
1661 }
1662}
1663
1664static void context_enterFalseClauseAux (exprNode e, clause cl)
1665 /*@modifies gc@*/
1666{
1667 usymtab_altBranch (guardSet_invert (exprNode_getGuards (e)));
1668 gc.inclause = cl;
1669 clauseStack_switchTop (gc.clauses, cl);
1670}
1671
1672void context_enterFalseClause (exprNode e)
1673{
1674
1675 context_enterFalseClauseAux (e, FALSECLAUSE);
1676}
1677
1678void
1679context_enterConstantMacro (/*@exposed@*/ /*@dependent@*/ uentry e)
1680{
1681 gc.kind = CX_MACROCONST;
1682 gc.cont.fcn = e;
1683 gc.showfunction = context_getFlag (FLG_SHOWFUNC);
1684
1685 gc.acct = typeIdSet_subtract (typeIdSet_union (gc.facct, uentry_accessType (e)),
1686 gc.nacct);
1687
1688
1689 usymtab_enterScope ();
1690 sRef_enterFunctionScope ();
1691
1692 gc.globs = globSet_undefined;
1693 globSet_clear (gc.globs_used);
1694 gc.mods = sRefSet_undefined;
1695}
1696
1697uentry context_getHeader (void)
1698{
1699 if (!(context_inFunctionLike () || (gc.kind == CX_MACROCONST)))
1700 {
1701 llfatalbug (message ("context_getHeader: bad call: %q",
1702 context_unparse ()));
1703 }
1704
1705 return (gc.cont.fcn);
1706}
1707
1708void
1709context_setFunctionDefined (fileloc loc)
1710{
1711 switch (gc.kind)
1712 {
1713 case CX_UNKNOWNMACRO:
1714 case CX_FUNCTION:
1715 case CX_MACROFCN:
1716 uentry_setFunctionDefined (gc.cont.fcn, loc);
1717 break;
1718 default:
1719 /* (not a bug because of parse errors) */
1720 break;
1721 }
1722}
1723
1724void
1725context_enterFunction (/*@exposed@*/ uentry e)
1726{
1727 gc.kind = CX_FUNCTION;
1728 gc.cont.fcn = e;
1729
28bf4b0b 1730 DPRINTF (("Enter function: %s", uentry_unparse (e)));
1731
616915dd 1732 if (uentry_hasAccessType (e))
1733 {
1734 gc.acct = typeIdSet_subtract (typeIdSet_union (gc.facct, uentry_accessType (e)),
1735 gc.nacct);
1736 }
1737 else
1738 {
1739 gc.acct = gc.facct;
1740 }
1741
1742 DPRINTF (("Enter function: %s / %s", uentry_unparse (e),
1743 typeIdSet_unparse (gc.acct)));
1744
1745 gc.showfunction = context_getFlag (FLG_SHOWFUNC);
1746
1747 gc.globs = uentry_getGlobs (e);
1748 globSet_clear (gc.globs_used);
1749 gc.mods = uentry_getMods (e);
1750
1751 usymtab_enterFunctionScope (e);
1752 sRef_enterFunctionScope ();
1753}
1754
1755static bool context_checkStrictGlobals (void)
1756{
1757 return (context_getFlag (FLG_CHECKSTRICTGLOBALS));
1758}
1759
1760static bool context_hasGlobs (void)
1761{
1762 if (context_inFunctionLike ())
1763 {
1764 return (uentry_hasGlobs (gc.cont.fcn));
1765 }
1766 else
1767 {
1768 return (FALSE);
1769 }
1770}
1771
1772static bool context_checkCheckedGlobals (void)
1773{
1774 return (context_getFlag (FLG_GLOBALS)
1775 && (context_getFlag (FLG_GLOBUNSPEC)
1776 || context_hasGlobs ()));
1777}
1778
1779static bool context_checkUnknownGlobals (void)
1780{
1781 /* should be uentry_hasGlobs ? */
1782
1783 return (context_getFlag (FLG_ALLGLOBALS)
1784 && (context_getFlag (FLG_GLOBUNSPEC)
1785 || context_hasGlobs ()));
1786}
1787
1788static bool context_checkUncheckedGlobals (void)
1789{
1790 return (FALSE);
1791}
1792
1793bool
1794context_checkExport (uentry e)
1795{
1796 if (!gc.anyExports) return FALSE;
1797
1798 if (uentry_isFunction (e)
1799 || (uentry_isVariable (e) && ctype_isFunction (uentry_getType (e))))
1800 {
1801 return context_maybeSet (FLG_EXPORTFCN);
1802 }
1803 else if (uentry_isExpandedMacro (e))
1804 {
1805 return context_maybeSet (FLG_EXPORTMACRO);
1806 }
1807 else if (uentry_isVariable (e))
1808 {
1809 return context_maybeSet (FLG_EXPORTVAR);
1810 }
1811 else if (uentry_isEitherConstant (e))
1812 {
1813 return context_maybeSet (FLG_EXPORTCONST);
1814 }
1815 else if (uentry_isIter (e) || uentry_isEndIter (e))
1816 {
1817 return context_maybeSet (FLG_EXPORTITER);
1818 }
1819 else if (uentry_isDatatype (e))
1820 {
1821 return context_maybeSet (FLG_EXPORTTYPE);
1822 }
1823 else
1824 {
1825 BADEXIT;
1826 }
1827}
1828
1829bool
1830context_checkGlobUse (uentry glob)
1831{
1832
1833 if (uentry_isCheckedStrict (glob))
1834 {
1835 return context_checkStrictGlobals ();
1836 }
1837 else if (uentry_isChecked (glob))
1838 {
1839 return context_checkCheckedGlobals ();
1840 }
1841 else if (uentry_isCheckedUnknown (glob) || uentry_isCheckMod (glob))
1842 {
1843 return context_checkUnknownGlobals ();
1844 }
1845 else
1846 {
1847 llassert (uentry_isUnchecked (glob));
1848
1849 return context_checkUncheckedGlobals ();
1850 }
1851}
1852
1853bool
1854context_checkAliasGlob (uentry glob)
1855{
1856 if (uentry_isCheckedStrict (glob))
1857 {
1858 return gc.flags[FLG_CHECKSTRICTGLOBALIAS];
1859 }
1860 else if (uentry_isChecked (glob))
1861 {
1862 return gc.flags[FLG_CHECKEDGLOBALIAS];
1863 }
1864 else if (uentry_isCheckMod (glob))
1865 {
1866 return gc.flags[FLG_CHECKMODGLOBALIAS];
1867 }
1868 else
1869 {
1870 llassert (uentry_isUnchecked (glob) || uentry_isCheckedUnknown (glob));
1871
1872 return gc.flags[FLG_UNCHECKEDGLOBALIAS];
1873 }
1874}
1875
1876bool context_checkInternalUse (void)
1877{
1878 if (context_hasGlobs ())
1879 {
1880 return (gc.flags[FLG_INTERNALGLOBS]);
1881 }
1882 else
1883 {
1884 return (gc.flags[FLG_INTERNALGLOBSNOGLOBS]);
1885 }
1886}
1887
1888bool
1889context_checkGlobMod (sRef el)
1890{
1891 uentry ue = sRef_getUentry (el);
1892
28bf4b0b 1893 /* no: llassert (sRef_isFileOrGlobalScope (el)); also check local statics */
616915dd 1894
1895 if (uentry_isCheckedModify (ue)
1896 || (!uentry_isUnchecked (ue) && (gc.flags[FLG_ALLGLOBALS])))
1897 {
1898 if (context_hasMods ())
1899 {
1900 return (gc.flags[FLG_MODGLOBS]);
1901 }
1902 else
1903 {
1904 if (uentry_isCheckedStrict (ue))
1905 {
1906 return (gc.flags[FLG_MODGLOBSUNSPEC]);
1907 }
1908 else
1909 {
1910 return (gc.flags[FLG_MODSTRICTGLOBSUNSPEC]);
1911 }
1912 }
1913 }
1914 else
1915 {
1916 if (context_hasMods ())
1917 {
1918 return (gc.flags[FLG_MODGLOBSUNCHECKED]);
1919 }
1920 else
1921 {
1922 return FALSE;
1923 }
1924 }
1925}
1926
1927void
28bf4b0b 1928context_usedGlobal (/*@exposed@*/ sRef el)
616915dd 1929{
1930 if (!globSet_member (gc.globs_used, el))
1931 {
1932 /*
1933 ** The first time a global is used in a function, we need
1934 ** to clear the derived sRefs, since they were set for the
1935 ** previous function.
1936 */
1937
1938 sRef_clearDerived (el);
1939 gc.globs_used = globSet_insert (gc.globs_used, el);
1940 }
1941}
1942
1943/*@observer@*/ sRefSet
1944context_modList (void)
1945{
1946 return gc.mods;
1947}
1948
1949bool
1950context_globAccess (sRef s)
1951{
28bf4b0b 1952 llassert (sRef_isFileOrGlobalScope (s) || sRef_isKindSpecial (s));
616915dd 1953 return (globSet_member (gc.globs, s));
1954}
1955
1956bool
1957context_hasAccess (typeId t)
1958{
1959 if (context_inFunctionLike ())
1960 {
28bf4b0b 1961 DPRINTF (("Access %d / %s",
1962 t, typeIdSet_unparse (gc.acct)));
616915dd 1963 return (typeIdSet_member (gc.acct, t));
1964 }
1965 else
1966 {
1967 return (context_hasFileAccess (t));
1968 }
1969}
1970
1971bool
1972context_hasFileAccess (typeId t)
1973{
1974 return (typeIdSet_member (gc.facct, t));
1975}
1976
1977/*@only@*/ cstring
1978context_unparseAccess (void)
1979{
1980 return (message ("%q / %q", typeIdSet_unparse (gc.acct),
1981 typeIdSet_unparse (gc.facct)));
1982}
1983
1984/*@only@*/ cstring
1985context_unparseClauses (void)
1986{
1987 return (clauseStack_unparse (gc.clauses));
1988}
1989
1990bool
1991context_couldHaveAccess (typeId t)
1992{
1993 if (gc.kind == CX_FUNCTION || gc.kind == CX_MACROFCN || gc.kind == CX_UNKNOWNMACRO)
1994 {
1995 return (typeIdSet_member (gc.acct, t));
1996 }
1997 else
1998 {
1999 return (typeIdSet_member (gc.facct, t));
2000 }
2001}
2002
2003ctype
2004context_getRetType (void)
2005{
2006 ctype f = ctype_undefined;
2007
2008 if (gc.kind == CX_FUNCTION || gc.kind == CX_MACROFCN)
2009 {
2010 f = uentry_getType (gc.cont.fcn);
2011 }
2012 else if (gc.kind == CX_UNKNOWNMACRO)
2013 {
2014 return ctype_unknown;
2015 }
2016 else
2017 {
2018 llcontbuglit ("context_getRetType: not in a function context");
2019 return ctype_unknown;
2020 }
2021
2022 if (!ctype_isFunction (f))
2023 {
2024 if (ctype_isKnown (f))
2025 {
2026 llbuglit ("context_getRetType: not a function");
2027 }
2028
2029 return ctype_unknown;
2030 }
28bf4b0b 2031 return (ctype_getReturnType (f));
616915dd 2032}
2033
2034bool
2035context_hasMods (void)
2036{
2037 if (context_inFunctionLike ())
2038 {
2039 return (uentry_hasMods (gc.cont.fcn));
2040 }
2041 else
2042 {
2043 return FALSE;
2044 }
2045}
2046
2047void
2048context_exitAllClauses (void)
28bf4b0b 2049{
616915dd 2050 while (!clauseStack_isEmpty (gc.clauses))
2051 {
2052 clause el = clauseStack_top (gc.clauses);
616915dd 2053 gc.inclause = el;
2054
2055 if (clause_isNone (el))
2056 {
2057 usymtab_quietExitScope (g_currentloc);
2058 clauseStack_pop (gc.clauses);
2059 }
2060 else
2061 {
2062 context_exitClausePlain ();
2063 }
2064 }
2065
28bf4b0b 2066 clauseStack_clear (gc.clauses);
2067 gc.inclause = NOCLAUSE;
2068}
616915dd 2069
28bf4b0b 2070void
2071context_exitAllClausesQuiet (void)
2072{
2073 while (!clauseStack_isEmpty (gc.clauses))
2074 {
2075 clause el = clauseStack_top (gc.clauses);
2076 gc.inclause = el;
2077
2078 usymtab_quietExitScope (g_currentloc);
2079 clauseStack_pop (gc.clauses);
2080 }
2081
2082 clauseStack_clear (gc.clauses);
616915dd 2083 gc.inclause = NOCLAUSE;
2084}
2085
2086static
2087void context_exitClauseSimp (void)
2088{
2089
2090 context_setJustPopped ();
2091 clauseStack_pop (gc.clauses);
2092 gc.inclause = topClause (gc.clauses);
2093}
2094
2095static
2096void context_exitCaseClause (void)
2097{
2098 context_setJustPopped ();
2099 usymtab_popCaseBranch ();
2100 clauseStack_pop (gc.clauses);
2101 gc.inclause = topClause (gc.clauses);
2102}
2103
2104static
2105void context_exitClauseAux (exprNode pred, exprNode tbranch)
2106{
2107 context_setJustPopped ();
28bf4b0b 2108 /*@i32 was makeAlt */
616915dd 2109 usymtab_popTrueBranch (pred, tbranch, gc.inclause);
2110 clauseStack_pop (gc.clauses);
2111 gc.inclause = topClause (gc.clauses);
2112}
2113
2114void context_exitTrueClause (exprNode pred, exprNode tbranch)
2115{
28bf4b0b 2116 DPRINTF (("Exit true clause: %s", exprNode_unparse (tbranch)));
2117
616915dd 2118 if (gc.inclause != TRUECLAUSE)
2119 {
2120 llparseerror (cstring_makeLiteral
2121 ("Likely parse error. Conditional clauses are inconsistent."));
2122 return;
2123 }
28bf4b0b 2124
2125 context_setJustPopped ();
616915dd 2126 usymtab_popTrueBranch (pred, tbranch, TRUECLAUSE);
2127 clauseStack_pop (gc.clauses);
28bf4b0b 2128 gc.inclause = topClause (gc.clauses);
2129}
616915dd 2130
2131void context_exitIterClause (exprNode body)
2132{
2133 llassert (gc.inclause == ITERCLAUSE);
2134
2135 context_setJustPopped ();
2136
2137 if (context_getFlag (FLG_LOOPEXEC))
2138 {
2139 usymtab_popTrueExecBranch (exprNode_undefined, body, ITERCLAUSE);
2140 }
2141 else
2142 {
2143 usymtab_popTrueBranch (exprNode_undefined, body, ITERCLAUSE);
2144 }
2145
2146 clauseStack_pop (gc.clauses);
2147 gc.inclause = topClause (gc.clauses);
2148}
2149
2150static void context_popCase (void) {
2151 /*
2152 ** If we are exiting an outer clause, sometimes still in a switch case.
2153 **
2154 ** e.g.:
2155 **
2156 ** switch(a)
2157 ** {
2158 ** case 1:
2159 ** while (c>3)
2160 ** {
2161 ** case 3: ++c;
2162 ** }
2163 ** }
2164 */
2165
2166 DPRINTF (("Popping case clause: %s",
2167 clauseStack_unparse (gc.clauses)));
28bf4b0b 2168
616915dd 2169 if (gc.inclause == CASECLAUSE) {
2170 context_exitCaseClause ();
2171 }
2172}
2173
2174void context_exitWhileClause (exprNode pred, exprNode body)
2175{
2176 guardSet invGuards = guardSet_invert (exprNode_getGuards (pred));
2177
2178 context_popCase ();
2179
2180 if (gc.inclause != WHILECLAUSE) {
2181 DPRINTF (("Clause: %s / %s", clause_unparse (gc.inclause),
2182 clauseStack_unparse (gc.clauses)));
2183 }
2184
2185 llassert (gc.inclause == WHILECLAUSE);
2186
2187 context_setJustPopped ();
2188
2189
2190 /*
2191 ** predicate must be false after while loop (unless there are breaks)
2192 */
2193
2194 if (context_getFlag (FLG_LOOPEXEC))
2195 {
2196 usymtab_popTrueExecBranch (pred, body, WHILECLAUSE);
2197 }
2198 else
2199 {
2200 usymtab_popTrueBranch (pred, body, WHILECLAUSE);
2201 }
2202
2203
2204 usymtab_addGuards (invGuards);
2205 guardSet_free (invGuards);
2206
2207 clauseStack_pop (gc.clauses);
2208 gc.inclause = topClause (gc.clauses);
2209}
2210
2211void context_exitDoWhileClause (exprNode pred)
2212{
2213 guardSet invGuards = guardSet_invert (exprNode_getGuards (pred));
2214
2215 if (gc.inclause == CASECLAUSE) {
2216 /* handle Duff's device */
2217 clauseStack_pop (gc.clauses);
2218 gc.inclause = topClause (gc.clauses);
2219 }
2220
2221 llassert (gc.inclause == DOWHILECLAUSE);
2222
2223 context_setJustPopped ();
2224
2225
2226 usymtab_addGuards (invGuards);
2227 guardSet_free (invGuards);
2228
2229 clauseStack_pop (gc.clauses);
2230 gc.inclause = topClause (gc.clauses);
2231}
2232
2233void context_exitForClause (exprNode forPred, exprNode body)
2234{
2235 guardSet invGuards = guardSet_invert (exprNode_getForGuards (forPred));
2236
2237 llassert (gc.inclause == FORCLAUSE);
2238 context_setJustPopped ();
2239
2240 /*
2241 ** predicate must be false after while loop (unless there are breaks)
2242 */
2243
2244 if (context_getFlag (FLG_LOOPEXEC))
2245 {
28bf4b0b 2246 usymtab_popTrueExecBranch (forPred, body, FORCLAUSE);
616915dd 2247 }
2248 else
2249 {
2250 usymtab_popTrueBranch (forPred, body, FORCLAUSE);
2251 }
2252
2253 usymtab_addGuards (invGuards);
2254 guardSet_free (invGuards);
2255 clauseStack_pop (gc.clauses);
2256 gc.inclause = topClause (gc.clauses);
2257}
2258
2259static void context_exitClausePlain (void)
2260{
2261 llassert (gc.inclause != NOCLAUSE);
2262
2263 if (gc.inclause == FALSECLAUSE)
2264 {
2265 context_exitClause (exprNode_undefined, exprNode_undefined, exprNode_undefined);
2266 }
2267 else
2268 {
2269 context_exitClauseAux (exprNode_undefined, exprNode_undefined);
2270 }
616915dd 2271}
2272
2273void context_exitClause (exprNode pred, exprNode tbranch, exprNode fbranch)
2274{
616915dd 2275 context_setJustPopped ();
28bf4b0b 2276
616915dd 2277 if (gc.inclause == FALSECLAUSE)
2278 {
2279 usymtab_popBranches (pred, tbranch, fbranch, FALSE, FALSECLAUSE);
28bf4b0b 2280
616915dd 2281 llassert (clauseStack_top (gc.clauses) == FALSECLAUSE);
2282
2283 clauseStack_pop (gc.clauses);
2284 gc.inclause = topClause (gc.clauses);
2285 }
2286 else
2287 {
28bf4b0b 2288 context_exitTrueClause (pred, tbranch);
616915dd 2289 }
2290}
2291
2292void
2293context_returnFunction (void)
2294{
2295 usymtab_checkFinalScope (TRUE);
2296}
2297
2298void
2299context_exitFunction (void)
2300{
2301 if (!context_inFunction () && !context_inMacroConstant ()
2302 && !context_inMacroUnknown ()
2303 && !context_inIterDef () && !context_inIterEnd ())
2304 {
2305 /*
2306 ** not a bug because of parse errors
2307 */
2308 }
2309 else
2310 {
2311 if (context_inMacro () && usymtab_inFunctionScope ())
2312 {
2313 usymtab_exitScope (exprNode_undefined);
2314 }
2315
2316 if (uentry_hasGlobs (gc.cont.fcn))
2317 {
2318 exprChecks_checkUsedGlobs (gc.globs, gc.globs_used);
2319 }
2320
2321
2322 if (uentry_hasMods (gc.cont.fcn))
2323 {
2324 if (context_getFlag (FLG_MUSTMOD))
2325 {
2326 exprNode_checkAllMods (gc.mods, gc.cont.fcn);
2327 }
2328 }
2329
28bf4b0b 2330 DPRINTF (("Exit function: %s", uentry_unparse (gc.cont.fcn)));
2331
616915dd 2332 /*
2333 ** clear file static modifies
2334 */
2335
2336 /* do this first to get unused error messages */
2337
2338 usymtab_exitScope (exprNode_undefined);
2339 sRef_exitFunctionScope ();
2340
2341 gc.showfunction = FALSE;
2342 gc.kind = CX_GLOBAL;
2343 gc.cont.glob = TRUE;
2344 gc.acct = gc.facct;
2345 gc.globs = globSet_new ();
2346 globSet_clear (gc.globs_used);
2347 gc.mods = sRefSet_new ();
2348 }
2349
2350 llassert (clauseStack_isEmpty (gc.clauses));
2351 llassert (gc.inclause == NOCLAUSE);
2352}
2353
2354void
2355context_quietExitFunction (void)
2356{
2357 while (gc.kind == CX_INNER)
2358 {
2359 context_exitInnerPlain ();
2360 }
2361
2362 if (!context_inFunction () && !context_inMacroConstant () && !context_inMacroUnknown ()
2363 && !context_inIterDef () && !context_inIterEnd ())
2364 {
2365 }
2366 else
2367 {
2368 usymtab_quietExitScope (g_currentloc);
2369
2370 gc.showfunction = FALSE;
2371 gc.kind = CX_GLOBAL;
2372 gc.cont.glob = TRUE;
2373 gc.acct = gc.facct;
2374 gc.globs = globSet_new ();
2375 globSet_clear (gc.globs_used);
2376 gc.mods = sRefSet_new ();
2377
2378 sRef_exitFunctionScope ();
2379 }
2380}
2381
2382/*@observer@*/ uentryList
2383context_getParams (void)
2384{
2385 if (context_inFunctionLike ())
2386 {
2387 return (uentry_getParams (gc.cont.fcn));
2388 }
2389 else
2390 {
2391 llcontbug (message ("context_getParams: not in function: %q", context_unparse ()));
2392 return uentryList_undefined;
2393 }
2394}
2395
2396/*@observer@*/ globSet
2397context_getUsedGlobs (void)
2398{
2399 llassert (gc.kind == CX_FUNCTION || gc.kind == CX_MACROFCN
2400 || gc.kind == CX_UNKNOWNMACRO || gc.kind == CX_ITERDEF);
2401
2402 return (gc.globs_used);
2403}
2404
2405cstring
2406context_moduleName ()
2407{
2408 return (fileloc_getBase (g_currentloc));
2409}
2410
2411/*@observer@*/ globSet
2412context_getGlobs (void)
2413{
2414 llassert (gc.kind == CX_FUNCTION || gc.kind == CX_MACROFCN
2415 || gc.kind == CX_UNKNOWNMACRO || gc.kind == CX_ITERDEF);
2416
2417 return (gc.globs);
2418}
2419
2420void
2421context_addBoolAccess (void)
2422{
2423 cstring bname = context_getString (FLG_BOOLTYPE);
2424 typeIdSet boolt = typeIdSet_single (usymtab_getTypeId (bname));
2425
2426 addModuleAccess (cstring_copy (bname), boolt);
2427
2428 /* for sys/types (perhaps, this is bogus!) */
2429 addModuleAccess (cstring_makeLiteral ("types"), boolt);
2430}
2431
2432# if 0
2433bool
2434context_canAccessBool (void)
2435{
2436 return TRUE;
2437}
2438# endif
2439
2440/*
2441 static typeId boolType = typeId_invalid;
2442
2443 if (typeId_isInvalid (boolType))
2444 {
2445 boolType = usymtab_getTypeId (context_getBoolName ());
2446 }
2447
2448 if (typeId_isInvalid (boolType)) {
2449 return FALSE;
2450 } else {
2451 return (typeIdSet_member (gc.acct, boolType));
2452 }
2453}
2454*/
2455
2456/* evs 2000-07-25: old version - replaced */
2457
2458ctype
2459context_boolImplementationType () {
2460 /* For now, this is bogus! */
2461 return ctype_int;
2462}
2463
2464bool
2465context_canAccessBool (void)
2466{
2467 static typeId boolType = typeId_invalid;
2468
2469 if (typeId_isInvalid (boolType))
2470 {
2471 boolType = usymtab_getTypeId (context_getBoolName ());
2472 }
2473
2474 if (!typeId_isInvalid (boolType))
2475 {
2476 return context_hasAccess (boolType);
2477 }
2478 else
2479 {
2480 ;
2481 }
2482
2483 return FALSE;
2484}
2485
2486void
2487context_setMessageAnnote (/*@only@*/ cstring s)
2488{
2489 llassert (cstring_isUndefined (gc.msgAnnote));
2490 gc.msgAnnote = s;
2491}
2492
2493bool
2494context_hasMessageAnnote (void)
2495{
2496 return (cstring_isDefined (gc.msgAnnote));
2497}
2498
2499void
2500context_clearMessageAnnote (void)
2501{
2502 if (cstring_isDefined (gc.msgAnnote))
2503 {
2504 cstring_free (gc.msgAnnote);
2505 gc.msgAnnote = cstring_undefined;
2506 }
2507}
2508
2509/*@only@*/ cstring
2510context_getMessageAnnote (void)
2511{
2512 cstring st = gc.msgAnnote;
2513
2514 gc.msgAnnote = cstring_undefined;
2515 return st;
2516}
2517
2518void
2519context_setAliasAnnote (/*@observer@*/ sRef s, /*@observer@*/ sRef t)
2520{
2521 llassert (sRef_isInvalid (gc.aliasAnnote));
2522 llassert (!sRef_sameName (s, t));
2523 gc.aliasAnnote = s;
2524 gc.aliasAnnoteAls = t;
2525}
2526
2527bool
2528context_hasAliasAnnote (void)
2529{
2530 return (sRef_isValid (gc.aliasAnnote));
2531}
2532
2533void
2534context_clearAliasAnnote (void)
2535{
2536 gc.aliasAnnote = sRef_undefined;
2537}
2538
2539cstring
2540context_getAliasAnnote (void)
2541{
2542 sRef ret = gc.aliasAnnote;
2543 sRef als = gc.aliasAnnoteAls;
2544
2545 llassert (sRef_isValid (ret) && sRef_isValid (als));
2546
2547 gc.aliasAnnote = sRef_undefined;
2548 return (message ("%q aliases %q", sRef_unparse (als), sRef_unparse (ret)));
2549}
2550
2551void
2552context_recordFileModifies (sRefSet mods)
2553{
28bf4b0b 2554 gc.modrecs = sRefSetList_add (gc.modrecs, mods);
616915dd 2555}
2556
2557void
2558context_recordFileGlobals (globSet mods)
2559{
28bf4b0b 2560 DPRINTF (("Recording file globals: %s", globSet_unparse (mods)));
2561 /*@access globSet@*/ context_recordFileModifies (mods); /*@noaccess globSet@*/
616915dd 2562}
2563
2564void
2565context_setCommentMarkerChar (char c)
2566{
2567 llassert (c != '\0');
2568
2569 context_setValue (FLG_COMMENTCHAR, (int) c);
2570}
2571
2572char
2573context_getCommentMarkerChar (void)
2574{
2575 return ((char) context_getValue (FLG_COMMENTCHAR));
2576}
2577
2578static void
2579context_setValue (flagcode flag, int val)
2580{
2581 int index = flagcode_valueIndex (flag);
2582
2583 llassert (index >= 0 && index <= NUMVALUEFLAGS);
2584
28bf4b0b 2585 switch (flag)
616915dd 2586 {
28bf4b0b 2587 case FLG_LINELEN:
2588 if (val <= 0)
616915dd 2589 {
28bf4b0b 2590
abb1cb43 2591 llerror_flagWarning (message ("Value for %s must be a positive "
2592 "number (given %d)",
2593 flagcode_unparse (flag), val));
616915dd 2594 return;
616915dd 2595 }
28bf4b0b 2596 if (flag == FLG_LINELEN && val < MINLINELEN)
2597 {
abb1cb43 2598 llerror_flagWarning (message ("Value for %s must be at least %d (given %d)",
2599 flagcode_unparse (flag),
2600 MINLINELEN, val));
28bf4b0b 2601 val = MINLINELEN;
2602 }
2603 break;
616915dd 2604
28bf4b0b 2605 case FLG_INCLUDENEST:
2606 case FLG_CONTROLNESTDEPTH:
2607 case FLG_STRINGLITERALLEN:
2608 case FLG_NUMSTRUCTFIELDS:
2609 case FLG_NUMENUMMEMBERS:
2610 case FLG_INDENTSPACES:
2611 if (val < 0)
2612 {
2613
abb1cb43 2614 llerror_flagWarning (message ("Value for %s must be a non-negative "
2615 "number (given %d)",
2616 flagcode_unparse (flag), val));
28bf4b0b 2617 return;
2618 }
616915dd 2619
28bf4b0b 2620 break;
2621 default:
2622 break;
2623 }
2624
2625 gc.values[index] = val;
616915dd 2626}
2627
2628void
2629context_setValueAndFlag (flagcode flag, int val)
2630{
2631 gc.flags[flag] = TRUE;
2632 context_setValue (flag, val);
2633}
2634
2635int
2636context_getValue (flagcode flag)
2637{
2638 int index = flagcode_valueIndex (flag);
2639
2640 llassert (index >= 0 && index <= NUMVALUEFLAGS);
2641 return (gc.values[index]);
2642}
2643
2644int
2645context_getCounter (flagcode flag)
2646{
2647 int index = flagcode_valueIndex (flag);
2648
2649 llassert (index >= 0 && index <= NUMVALUEFLAGS);
2650 return (gc.counters[index]);
2651}
2652
2653void
2654context_incCounter (flagcode flag)
2655{
2656 int index = flagcode_valueIndex (flag);
2657
2658 llassert (index >= 0 && index <= NUMVALUEFLAGS);
2659 /* check limit */
2660 gc.counters[index]++;
2661}
2662
2663void
2664context_decCounter (flagcode flag)
2665{
2666 int index = flagcode_valueIndex (flag);
2667
2668 llassert (index >= 0 && index <= NUMVALUEFLAGS);
2669 gc.counters[index]--;
2670}
2671
2672bool context_showFunction (void)
2673{
2674 return (gc.showfunction);
2675}
2676
2677void
2678context_setString (flagcode flag, cstring val)
2679{
2680 int index = flagcode_stringIndex (flag);
2681
2682 llassert (index >= 0 && index <= NUMSTRINGFLAGS);
2683
2684 if (flag == FLG_SYSTEMDIRS)
2685 {
2686 llassert (cstring_isDefined (val));
2687
2688 if (cstring_firstChar (val) == '\"')
2689 {
2690 cstring oval = val;
2691 cstring tval = cstring_copy (cstring_suffix (val, 1));
2692
2693 if (cstring_lastChar (tval) != '\"')
2694 {
2695 int n = cstring_length (tval) - 1;
2696
2697 while (isspace ((int) cstring_getChar (tval, n)))
2698 {
2699 n--;
2700 }
2701
2702 if (cstring_getChar (tval, n) != '\"')
2703 {
abb1cb43 2704 llerror_flagWarning (message ("Setting -systemdirs to string with unmatching quotes: %s", val));
616915dd 2705 }
2706 else
2707 {
2708 cstring otval = tval;
2709 tval = cstring_prefix (tval, n);
2710 cstring_free (otval);
2711 }
2712 }
2713
2714 val = cstring_copy (cstring_clip (tval, cstring_length (tval) - 1));
2715 DPRINTF (("val = %s", val));
2716 cstring_free (tval);
2717 cstring_free (oval);
2718 }
2719 }
2720
2721 if (flag == FLG_TMPDIR)
2722 {
2723 llassert (cstring_isDefined (val));
2724
2725 if (cstring_length (val) == 0)
2726 {
2727 cstring_free (val);
2728 val = message (".%s", cstring_makeLiteralTemp (CONNECTSTR));
2729 }
2730 else if (cstring_lastChar (val) != CONNECTCHAR)
2731 {
2732 val = cstring_appendChar (val, CONNECTCHAR);
2733 }
2734 else
2735 {
2736 ;
2737 }
2738 }
2739
2740 if (cstring_length (val) >= 1
2741 && cstring_firstChar (val) == '"')
2742 {
abb1cb43 2743 llerror_flagWarning (message
2744 ("setting %s to string beginning with \". You probably "
2745 "don't meant to have the \"'s.",
2746 flagcode_unparse (flag)));
616915dd 2747 }
2748
2749 if (flag == FLG_BOOLTYPE)
2750 {
2751
2752 }
2753
2754 gc.strings[index] = val;
2755}
2756
2757static /*@exposed@*/ cstring
2758context_exposeString (flagcode flag)
2759{
2760 int index = flagcode_stringIndex (flag);
2761
2762 llassert (index >= 0 && index <= NUMSTRINGFLAGS);
2763 return (gc.strings[index]);
2764}
2765
2766cstring
2767context_getString (flagcode flag)
2768{
2769 return (context_exposeString (flag));
2770}
2771
2772void
2773context_resetErrors (void)
2774{
2775 gc.numerrors = 0;
2776}
2777
2778void context_initMod (void)
2779 /*@globals undef gc; @*/
2780{
2781 gc.kind = CX_GLOBAL;
28bf4b0b 2782 gc.savekind = CX_ERROR;
616915dd 2783 gc.instandardlib = FALSE;
2784 gc.numerrors = 0;
2785 gc.neednl = FALSE;
2786 gc.linesprocessed = 0;
2787 gc.speclinesprocessed = 0;
2788 gc.insuppressregion = FALSE;
2789 gc.macroMissingParams = FALSE;
2790 gc.preprocessing = FALSE;
2791 gc.incommandline = FALSE;
2792 gc.mc = macrocache_create ();
2793 gc.nmods = 0;
2794 gc.maxmods = DEFAULTMAXMODS;
28bf4b0b 2795 gc.moduleaccess = (maccesst *) dmalloc (sizeof (*gc.moduleaccess) * (gc.maxmods));
2796
616915dd 2797 gc.library = FLG_ANSILIB;
2798
2799 gc.locstack = filelocStack_new ();
2800 gc.modrecs = sRefSetList_undefined;
2801 gc.anyExports = FALSE;
2802
2803 gc.ftab = fileTable_create ();
2804 gc.msgLog = messageLog_new ();
2805 gc.inimport = FALSE;
2806 gc.inDerivedFile = FALSE;
2807 gc.inheader = FALSE;
2808 gc.markers = flagMarkerList_new ();
2809 gc.cont.glob = TRUE;
2810 gc.showfunction = FALSE;
2811 gc.msgAnnote = cstring_undefined;
2812 gc.aliasAnnote = sRef_undefined;
2813 gc.aliasAnnoteAls = sRef_undefined;
2814 gc.boolType = ctype_bool;
2815 gc.mods = sRefSet_new ();
2816
2817 gc.saveloc = fileloc_undefined;
2818
2819 gc.inmacrocache = FALSE;
2820 gc.inclause = NOCLAUSE;
2821 gc.clauses = clauseStack_new ();
2822 gc.globs = globSet_new ();
2823 gc.nacct = typeIdSet_emptySet ();
2824 gc.acct = typeIdSet_emptySet ();
2825 gc.facct = typeIdSet_emptySet ();
2826 gc.savedFlags = FALSE;
2827 gc.pushloc = fileloc_undefined;
2828 gc.protectVars = FALSE;
2829 gc.justpopped = FALSE;
2830 gc.isNullGuarded = NO;
2831 gc.globs_used = globSet_undefined;
2832
2833 allFlagCodes (code)
2834 {
2835 gc.setGlobally[code] = FALSE;
2836 gc.setLocally[code] = FALSE;
2837 } end_allFlagCodes ;
2838
2839 usymtab_initMod ();
2840
2841 context_resetAllFlags ();
2842 conext_resetAllCounters ();
2843 context_setMode (DEFAULT_MODE);
28bf4b0b 2844
2845 gc.stateTable = metaStateTable_create ();
2846 gc.annotTable = annotationTable_create ();
2847
d9a28762 2848 gc.inFunctionHeader = FALSE;
2849
28bf4b0b 2850 DPRINTF (("Annotations: \n%s",
2851 cstring_toCharsSafe (annotationTable_unparse (gc.annotTable))));
2852 DPRINTF (("State: \n%s",
2853 cstring_toCharsSafe (metaStateTable_unparse (gc.stateTable))));
2854
616915dd 2855}
2856
2857ctype
2858context_typeofZero (void)
2859{
2860 ctype ct = ctype_int;
2861
2862 if (context_getFlag (FLG_ZEROPTR))
2863 {
2864 ct = ctype_makeConj (ct, ctype_voidPointer);
2865 }
2866
2867 if (context_getFlag (FLG_ZEROBOOL)) {
2868 ct = ctype_makeConj (ct, ctype_bool);
2869 }
2870
2871 return ct;
2872}
2873
2874ctype
2875context_typeofOne (void)
2876{
2877 ctype ct = ctype_int;
2878
2879 /* 1 is on longer a bool (was before 2.4)
2880 if (!context_getFlag (FLG_ABSTRACTBOOL))
2881 {
2882 ct = ctype_makeConj (ct, ctype_bool);
2883 }
2884 */
2885
2886 return (ct);
2887}
2888
2889/*@only@*/ cstring
2890context_unparse (void)
2891{
2892 cstring s;
2893
2894 switch (gc.kind)
2895 {
2896 case CX_LCL:
2897 s = message ("LCL File: %q", fileloc_unparse (g_currentloc));
2898 break;
2899 case CX_LCLLIB:
2900 s = message ("LCL Lib File: %q", fileloc_unparse (g_currentloc));
2901 break;
2902 case CX_GLOBAL:
2903 s = message ("Global Context:%q", fileloc_unparse (g_currentloc));
2904 break;
2905 case CX_INNER:
2906 s = message ("Inner Context:%q", fileloc_unparse (g_currentloc));
2907 break;
2908 case CX_FUNCTION:
2909 s = message ("Function %q :%q \n\taccess %q\n\tmodifies %q",
2910 uentry_unparse (gc.cont.fcn),
2911 fileloc_unparse (g_currentloc),
2912 typeIdSet_unparse (gc.acct),
2913 sRefSet_unparse (gc.mods));
2914 break;
2915 case CX_MACROFCN:
2916 s = message ("Function Macro %q", uentry_unparse (gc.cont.fcn));
2917 break;
2918 case CX_UNKNOWNMACRO:
2919 s = message ("Forward Specified Macro %q", uentry_unparse (gc.cont.fcn));
2920 break;
2921 case CX_MACROCONST:
2922 s = message ("Constant Macro %q", uentry_unparse (gc.cont.fcn));
2923 break;
2924 case CX_ITERDEF:
2925 s = message ("Iter definition %q", uentry_unparse (gc.cont.fcn));
2926 break;
2927 case CX_ITEREND:
2928 s = message ("Iter end %q", uentry_unparse (gc.cont.fcn));
2929 break;
2930 default:
2931 s = message ("Un-unparseable context: %d", (int) gc.kind);
2932 break;
2933 }
2934
2935 s = message ("%q\naccess: %q", s, context_unparseAccess ());
2936 return (s);
2937}
2938
2939extern ctype
2940context_currentFunctionType (void)
2941{
2942 if (gc.kind == CX_FUNCTION || gc.kind == CX_MACROFCN)
2943 {
2944 return (uentry_getType (gc.cont.fcn));
2945 }
2946 else if (gc.kind == CX_INNER)
2947 {
2948 llcontbuglit ("context_currentFunctionType: inner context");
2949 do { context_exitInnerPlain (); } while (gc.kind == CX_INNER);
2950 return (context_currentFunctionType ());
2951 }
2952 else
2953 {
2954 llcontbuglit ("context_currentFunctionType: not in function");
2955 return (ctype_undefined);
2956 }
2957}
2958
2959void
2960context_enterInnerContext (void)
2961{
2962 if (gc.kind == CX_GLOBAL)
2963 {
2964 gc.kind = CX_INNER;
2965 gc.cont.cdepth = 1;
2966 }
2967 else if (gc.kind == CX_INNER)
2968 {
2969 gc.cont.cdepth++;
2970 }
2971 else
2972 {
2973 ;
2974 }
2975
2976
2977 usymtab_enterScope ();
2978 pushClause (NOCLAUSE);
2979}
2980
2981void
2982context_exitInnerPlain (void) /*@modifies gc;@*/
2983{
2984 context_exitInner (exprNode_undefined);
2985}
2986
2987void
2988context_exitInner (exprNode exp)
2989{
2990
2991 llassertprint (gc.inclause == NOCLAUSE || gc.inclause == CASECLAUSE,
2992 ("inclause = %s", clause_nameTaken (gc.inclause)));
2993
2994 clauseStack_removeFirst (gc.clauses, NOCLAUSE);
2995 gc.inclause = topClause (gc.clauses);
2996
2997 if (gc.kind == CX_INNER)
2998 {
2999 if (--gc.cont.cdepth == 0)
3000 {
3001 gc.kind = CX_GLOBAL;
3002 gc.cont.glob = TRUE;
3003 }
3004 }
3005 else
3006 {
3007 if (gc.kind == CX_GLOBAL)
3008 {
3009 llcontbuglit ("Attempt to exit global context");
3010 return;
3011 }
3012 }
3013
3014 usymtab_exitScope (exp);
3015}
3016
3017
3018void
3019context_enterStructInnerContext (void)
3020{
3021 if (gc.kind == CX_GLOBAL)
3022 {
3023 gc.kind = CX_INNER;
3024 gc.cont.cdepth = 1;
3025 }
3026 else if (gc.kind == CX_INNER)
3027 {
3028 gc.cont.cdepth++;
3029 }
3030 else
3031 {
3032 ;
3033 }
3034
3035 usymtab_enterScope ();
3036}
3037
3038void
3039context_exitStructInnerContext (void)
3040{
3041 if (gc.kind == CX_INNER)
3042 {
3043 if (--gc.cont.cdepth == 0)
3044 {
3045 gc.kind = CX_GLOBAL;
3046 gc.cont.glob = TRUE;
3047 }
3048 }
3049 else
3050 {
3051 if (gc.kind == CX_GLOBAL)
3052 {
3053 llcontbuglit ("Attempt to exit global context");
3054 return;
3055 }
3056 }
3057
3058 usymtab_exitScope (exprNode_undefined);
3059}
3060
3061void
3062context_exitInnerSafe (void)
3063{
3064
3065 if (gc.kind == CX_INNER)
3066 {
3067 if (--gc.cont.cdepth == 0)
3068 {
3069 gc.cont.cdepth++;
3070 }
3071 }
3072 else if (gc.kind == CX_GLOBAL)
3073 {
3074 llcontbuglit ("Attempt to exit global context");
3075 return;
3076 }
3077 else
3078 {
3079 if (usymtab_inDeepScope ())
3080 {
3081 usymtab_exitScope (exprNode_undefined);
3082 }
3083 }
3084}
3085
3086static
3087void setModuleAccess (void)
3088{
3089 gc.facct = typeIdSet_emptySet ();
3090
3091 if (fileId_isValid (currentFile ()))
3092 {
3093 cstring baseName = fileloc_getBase (g_currentloc);
3094
3095 if (context_getFlag (FLG_ACCESSFILE))
3096 {
3097 if (usymtab_existsType (baseName))
3098 {
3099 gc.facct = typeIdSet_insert (gc.facct,
3100 usymtab_getTypeId (baseName));
3101 }
3102 else
3103 {
3104 ;
3105 }
3106 }
3107
3108 if (context_getFlag (FLG_ACCESSMODULE))
3109 {
3110 int i;
3111 bool hasaccess = FALSE;
3112
3113 for (i = 0; i < gc.nmods; i++)
3114 {
3115 if (cstring_equal (baseName, gc.moduleaccess[i].file))
3116 {
3117 gc.facct = typeIdSet_union (gc.facct, gc.moduleaccess[i].daccess);
3118
3119 hasaccess = TRUE;
3120 break;
3121 }
3122 }
3123 }
3124
3125 gc.acct = gc.facct;
3126 gc.inheader = fileId_isHeader (currentFile ());
3127 }
3128 else
3129 {
3130 llcontbuglit ("Current file not defined\n");
3131 gc.facct = typeIdSet_emptySet ();
3132 gc.acct = gc.facct;
3133 gc.inheader = FALSE;
3134 }
3135
3136 /* 17 Jan 1995: forgot to clear nacct */
3137
3138 gc.nacct = typeIdSet_emptySet ();
3139}
3140
3141static void
3142context_enterFileAux (void)
3143{
3144 setModuleAccess ();
3145}
3146
3147void
3148context_enterFile (void)
3149{
3150 context_enterFileAux ();
3151 usymtab_enterFile ();
3152}
3153
3154void
3155context_enterMacroFile (void)
3156{
3157 context_enterFileAux ();
3158}
3159
3160bool
3161context_inFunction (void)
3162{
3163 kcontext ck = gc.kind;
3164
3165 return ((ck == CX_FUNCTION) || (ck == CX_MACROFCN) || (ck == CX_INNER));
3166}
3167
3168bool
3169context_inFunctionLike (void)
3170{
3171 return (gc.kind == CX_FUNCTION || gc.kind == CX_MACROFCN
28bf4b0b 3172 || gc.kind == CX_FCNDECLARATION
616915dd 3173 || gc.kind == CX_UNKNOWNMACRO || gc.kind == CX_ITERDEF);
3174}
3175
3176bool
3177context_inRealFunction (void)
3178{
3179 kcontext ck = gc.kind;
3180
3181 return ((ck == CX_FUNCTION) || (ck == CX_MACROFCN));
3182}
3183
3184void
3185context_processAllMacros (void)
3186{
3187 usymtab_enterFile ();
3188
3189 gc.inmacrocache = TRUE;
3190 macrocache_processUndefinedElements (gc.mc);
3191 cleanupMessages ();
3192 usymtab_exitFile ();
3193
3194 gc.inmacrocache = FALSE;
3195 macrocache_finalize ();
3196}
3197
3198/*
3199** this happens once at the end of each C file
3200**
3201** check each Macro that was defined in current file.c or current file.h
3202**
3203*/
3204
3205static void
3206context_processMacros (void)
3207{
3208 if (fileId_isValid (currentFile ()))
3209 {
3210 fileloc lastfl;
28bf4b0b 3211 cstring cbase = fileLib_removePathFree (fileLib_removeAnyExtension (fileName (currentFile ())));
616915dd 3212
3213 gc.inmacrocache = TRUE;
3214
3215 DPRINTF (("Processing macros: %s", cbase));
3216 lastfl = macrocache_processFileElements (gc.mc, cbase);
3217 DPRINTF (("Processing macros: %s", fileloc_unparse (lastfl)));
3218
3219 cstring_free (cbase);
3220
3221 if (fileloc_isDefined (lastfl))
3222 {
3223 g_currentloc = fileloc_update (g_currentloc, lastfl);
3224 cleanupMessages ();
3225 }
3226
3227 gc.inmacrocache = FALSE;
3228 }
3229}
3230
3231bool
3232context_processingMacros (void)
3233{
3234 return (gc.inmacrocache);
3235}
3236
3237void
28bf4b0b 3238context_exitCFile (void)
616915dd 3239{
3240 if (gc.kind != CX_GLOBAL)
3241 {
3242 llfatalerrorLoc
3243 (cstring_makeLiteral ("File ended outside global scope"));
3244 }
3245
3246 if (gc.insuppressregion)
3247 {
3248 /* gack...don't reverse the order of these lines! ;-> */
3249 gc.insuppressregion = FALSE;
3250 llerrorlit (FLG_SYNTAX,
3251 "File ended in ignore errors region, "
3252 "possible missing /*@end*/");
3253 }
3254
3255 /* fix up parse errors */
3256
3257 while (!usymtab_inFileScope ())
3258 {
3259 usymtab_quietExitScope (g_currentloc);
3260 }
3261
3262 /*
3263 ** Clear the file-specific modifies information.
3264 */
3265
3266 sRefSetList_elements (gc.modrecs, mods)
3267 {
3268 sRefSet_clearStatics (mods);
28bf4b0b 3269 } end_sRefSetList_elements ;
616915dd 3270
3271 sRefSetList_clear (gc.modrecs);
28bf4b0b 3272
616915dd 3273 context_processMacros ();
3274 cleanupMessages ();
28bf4b0b 3275
616915dd 3276 usymtab_exitFile ();
28bf4b0b 3277
616915dd 3278 gc.inDerivedFile = FALSE;
3279 filelocStack_clear (gc.locstack);
28bf4b0b 3280
616915dd 3281 gc.nacct = typeIdSet_emptySet (); /* empty noaccess */
28bf4b0b 3282
616915dd 3283 gc.cont.glob = TRUE;
3284
3285 if (gc.savedFlags)
3286 {
3287 context_restoreFlagSettings ();
3288 gc.savedFlags = FALSE;
3289 }
28bf4b0b 3290
3291 /*
3292 DPRINTF (("After exiting file: "));
3293 usymtab_printAll ();
3294 */
616915dd 3295}
3296
3297void
3298context_exitMacroCache (void)
3299{
3300 if (gc.kind != CX_GLOBAL)
3301 {
28bf4b0b 3302 if (context_inMacro ())
3303 /* this is okay, file could end without newline in macro */
616915dd 3304 {
28bf4b0b 3305 DPRINTF (("Still in macro: %s",
3306 context_unparse ()));
616915dd 3307 context_exitFunction ();
3308 }
3309 else
3310 {
3311 llcontbug (message ("context_exitMacroCache: outside global scope: %q",
3312 context_unparse ()));
3313 gc.kind = CX_GLOBAL;
3314 }
3315 }
3316
3317 /*
3318 ** no longer valid here
3319 ** if (gc.insuppressregion)
3320 ** {
3321 ** gc.insuppressregion = FALSE;
3322 ** llerror ("File ended in ignore errors region, possible missing @");
3323 ** }
3324 */
3325
3326 gc.cont.glob = TRUE;
3327}
3328
3329void
3330context_saveLocation (void)
3331{
3332 /* was llassert (fileloc_isUndefined (gc.saveloc)) */
3333 fileloc_free (gc.saveloc);
3334
3335
3336 gc.saveloc = fileloc_copy (g_currentloc);
3337 }
3338
3339fileloc
3340context_getSaveLocation (void)
3341{
3342 fileloc fl = gc.saveloc;
3343
3344 gc.saveloc = fileloc_undefined;
3345 return fl;
3346}
3347
3348/*@observer@*/ cstring
3349context_inFunctionName (void)
3350{
3351 if (gc.kind == CX_FUNCTION
3352 || gc.kind == CX_MACROFCN || gc.kind == CX_UNKNOWNMACRO
3353 || gc.kind == CX_MACROCONST
3354 || gc.kind == CX_ITERDEF || gc.kind == CX_ITEREND)
3355 {
3356 return (uentry_rawName (gc.cont.fcn));
3357 }
3358 else
3359 {
3360 llcontbuglit ("context_inFunctionName: not in function");
3361 return (cstring_undefined);
3362 }
3363}
3364
3365void
3366context_userSetFlag (flagcode f, bool b)
3367{
28bf4b0b 3368 DPRINTF (("set flag: %s", flagcode_unparse (f)));
616915dd 3369
3370 if (f == FLG_NEVERINCLUDE && b)
3371 {
3372 if (gc.flags[FLG_EXPORTHEADER])
3373 {
abb1cb43 3374 llerror_flagWarning (cstring_makeLiteral
3375 ("setting +neverinclude after +exportheader. "
3376 "Turning off exportheader, since headers are not checked "
3377 "when +neverinclude is used."));
616915dd 3378
3379 gc.flags[FLG_EXPORTHEADER] = FALSE;
3380 }
3381 }
3382 else
3383 {
3384 if (f == FLG_EXPORTHEADER && b)
3385 {
3386 if (gc.flags[FLG_NEVERINCLUDE])
3387 {
abb1cb43 3388 llerror_flagWarning (cstring_makeLiteral
3389 ("setting +exportheader after +neverinclude. "
3390 "Not setting exportheader, since headers are not checked "
3391 "when +neverinclude is used."));
616915dd 3392 gc.flags[FLG_EXPORTHEADER] = FALSE;
3393 return;
3394 }
3395 }
3396 }
3397
3398 if (context_getFlag (FLG_WARNFLAGS) && f != FLG_NOF && f != FLG_OPTF)
3399 {
3400 bool lastsetting = context_getFlag (f);
3401
3402 if (bool_equal (lastsetting, b)
3403 && !flagcode_isSpecialFlag (f)
3404 && !flagcode_isIdemFlag (f)
3405 && !flagcode_hasArgument (f))
3406 {
abb1cb43 3407 llerror_flagWarning (message ("setting %s%s redundant with current value",
3408 cstring_makeLiteralTemp (b ? "+" : "-"),
3409 flagcode_unparse (f)));
28bf4b0b 3410 }
3411 }
3412
3413 if (flagcode_isWarnUseFlag (f) && b)
3414 {
3415 if (!context_getFlag (FLG_WARNUSE))
3416 {
abb1cb43 3417 llerror_flagWarning (message ("flag +%s is canceled by -warnuse",
3418 flagcode_unparse (f)));
28bf4b0b 3419
616915dd 3420 }
3421 }
3422
28bf4b0b 3423
616915dd 3424 if (flagcode_isLibraryFlag (f))
3425 {
3426 if (gc.library != FLG_ANSILIB
3427 && gc.library != f)
3428 {
abb1cb43 3429 llerror_flagWarning (message ("selecting library %s after library %s was "
3430 "selected (only one library may be used)",
3431 flagcode_unparse (f),
3432 flagcode_unparse (gc.library)));
616915dd 3433 }
3434
3435 if (f == FLG_UNIXLIB)
3436 {
3437 if (context_getFlag (FLG_WARNUNIXLIB))
3438 {
abb1cb43 3439 llerror_flagWarning (cstring_makeLiteral
3440 ("selecting unix library. Unix library is "
3441 "ad hoc addition to POSIX library. Recommend "
3442 "use +posixlib to select POSIX library instead. "
3443 "Use -warnunixlib to suppress this message."));
616915dd 3444 }
3445 }
3446
3447 gc.library = f;
3448 }
abb1cb43 3449
3450 if (flagcode_isNameChecksFlag (f) && b && !context_maybeSet (FLG_NAMECHECKS))
3451 {
3452 llerror_flagWarning (message
3453 ("setting +%s will not produce warnings with -namechecks. Must set +namechecks also.",
3454 flagcode_unparse (f)));
3455 }
3456
616915dd 3457 gc.setGlobally[f] = TRUE;
3458 context_setFlag (f, b);
3459}
3460
3461void
3462context_fileSetFlag (flagcode f, ynm set)
3463{
3464 if (!gc.savedFlags)
3465 {
3466 context_saveFlagSettings ();
3467 }
3468
3469 if (ynm_isOff (set))
3470 {
3471 context_setFlagAux (f, FALSE, TRUE, FALSE);
3472 }
3473 else if (ynm_isOn (set))
3474 {
3475 context_setFlagAux (f, TRUE, TRUE, FALSE);
3476 gc.setLocally[f] = TRUE;
3477 }
3478 else
3479 {
3480 context_restoreFlag (f);
3481 }
3482}
3483
3484static void
3485context_restoreFlag (flagcode f)
3486{
3487
3488 if (!gc.savedFlags)
3489 {
3490 voptgenerror
3491 (FLG_SYNTAX,
3492 message ("Attempt to restore flag %s when no file scope flags "
3493 "have been set.",
3494 flagcode_unparse (f)),
3495 g_currentloc);
3496 }
3497 else
3498 {
3499 context_addFlagMarker (f, MAYBE);
3500 context_setFlagAux (f, gc.saveflags[f], FALSE, TRUE);
3501 }
3502
3503 }
3504
28bf4b0b 3505static void
616915dd 3506context_setFlag (flagcode f, bool b)
3507{
3508 context_setFlagAux (f, b, FALSE, FALSE);
3509}
3510
3511void
3512context_setFlagTemp (flagcode f, bool b)
3513{
3514 DPRINTF (("Set flag temp: %s / %s", flagcode_unparse (f), bool_unparse (b)));
3515 gc.flags[f] = b;
3516}
3517
3518/*@notfunction@*/
3519# define DOSET(ff,b) \
3520 do { if (inFile) { gc.setLocally[ff] = TRUE; \
3521 context_addFlagMarker (ff, ynm_fromBool (b)); } \
28bf4b0b 3522 DPRINTF (("set flag: %s / %s", flagcode_unparse (ff), bool_unparse (b))); \
616915dd 3523 gc.flags[ff] = b; } while (FALSE)
3524
3525static void
3526 context_setFlagAux (flagcode f, bool b, bool
3527 inFile, /*@unused@*/ bool isRestore)
3528{
3529 DPRINTF (("set flag: %s / %s", flagcode_unparse (f), bool_unparse (b)));
3530
3531 if (f == FLG_USESTDERR)
3532 {
3533 if (b) {
3534 g_msgstream = stderr;
3535 } else {
3536 g_msgstream = stdout;
3537 }
3538 }
3539
28bf4b0b 3540 /*
3541 ** Removed test for special flags.
3542 */
616915dd 3543
28bf4b0b 3544 if (flagcode_isIdemFlag (f))
3545 {
3546 DOSET (f, TRUE);
3547 }
3548 else
3549 {
3550 DOSET (f, b);
3551 }
616915dd 3552
28bf4b0b 3553 if (f >= FLG_ITS4MOSTRISKY && f <= FLG_ITS4LOWRISK)
3554 {
3555 if (b) /* Turing higher level on, turns on all lower levels */
3556 {
3557 switch (f)
616915dd 3558 {
28bf4b0b 3559 case FLG_ITS4MOSTRISKY:
3560 DOSET (FLG_ITS4VERYRISKY, b);
3561 /*@fallthrough@*/
3562 case FLG_ITS4VERYRISKY:
3563 DOSET (FLG_ITS4RISKY, b);
3564 /*@fallthrough@*/
3565 case FLG_ITS4RISKY:
3566 DOSET (FLG_ITS4MODERATERISK, b);
3567 /*@fallthrough@*/
3568 case FLG_ITS4MODERATERISK:
3569 DOSET (FLG_ITS4LOWRISK, b);
3570 /*@fallthrough@*/
3571 case FLG_ITS4LOWRISK:
3572 break;
3573 BADDEFAULT;
616915dd 3574 }
28bf4b0b 3575 }
3576 else /* Turning level off, turns off all higher levels */
3577 {
3578 switch (f)
616915dd 3579 {
28bf4b0b 3580 case FLG_ITS4LOWRISK:
3581 DOSET (FLG_ITS4MODERATERISK, b);
3582 /*@fallthrough@*/
3583 case FLG_ITS4MODERATERISK:
3584 DOSET (FLG_ITS4RISKY, b);
3585 /*@fallthrough@*/
3586 case FLG_ITS4RISKY:
3587 DOSET (FLG_ITS4VERYRISKY, b);
3588 /*@fallthrough@*/
3589 case FLG_ITS4VERYRISKY:
3590 DOSET (FLG_ITS4MOSTRISKY, b);
3591 /*@fallthrough@*/
3592 case FLG_ITS4MOSTRISKY:
3593 break;
3594 BADDEFAULT;
616915dd 3595 }
616915dd 3596 }
3597 }
28bf4b0b 3598
3599 switch (f)
3600 {
3601 case FLG_ALLEMPTY:
3602 DOSET (FLG_ALLEMPTY, b);
3603 DOSET (FLG_IFEMPTY, b);
3604 DOSET (FLG_WHILEEMPTY, b);
3605 DOSET (FLG_FOREMPTY, b);
3606 break;
3607 case FLG_PREDBOOL:
3608 DOSET (FLG_PREDBOOL, b);
3609 DOSET (FLG_PREDBOOLINT, b);
3610 DOSET (FLG_PREDBOOLPTR, b);
3611 DOSET (FLG_PREDBOOLOTHERS, b);
3612 break;
3613 case FLG_GLOBALIAS:
3614 DOSET (FLG_CHECKSTRICTGLOBALIAS, b);
3615 DOSET (FLG_CHECKEDGLOBALIAS, b);
3616 DOSET (FLG_CHECKMODGLOBALIAS, b);
3617 DOSET (FLG_UNCHECKEDGLOBALIAS, b);
3618 break;
3619 case FLG_ALLBLOCK:
3620 DOSET (FLG_ALLBLOCK, b);
3621 DOSET (FLG_IFBLOCK, b);
3622 DOSET (FLG_WHILEBLOCK, b);
3623 DOSET (FLG_FORBLOCK, b);
3624 break;
3625 case FLG_GRAMMAR:
3626 if (b)
616915dd 3627 {
28bf4b0b 3628 yydebug = 1;
3629 mtdebug = 1;
616915dd 3630 }
3631 else
3632 {
28bf4b0b 3633 yydebug = 0;
3634 mtdebug = 0;
3635 }
3636
3637 DOSET (FLG_GRAMMAR, b);
3638 break;
3639 case FLG_CODEIMPONLY:
3640 DOSET (FLG_CODEIMPONLY, b);
3641 DOSET (FLG_GLOBIMPONLY, b);
3642 DOSET (FLG_RETIMPONLY, b);
3643 DOSET (FLG_STRUCTIMPONLY, b);
3644 break;
3645 case FLG_SPECALLIMPONLY:
3646 DOSET (FLG_SPECALLIMPONLY, b);
3647 DOSET (FLG_SPECGLOBIMPONLY, b);
3648 DOSET (FLG_SPECRETIMPONLY, b);
3649 DOSET (FLG_SPECSTRUCTIMPONLY, b);
3650 break;
3651 case FLG_ALLIMPONLY:
3652 DOSET (FLG_ALLIMPONLY, b);
3653 DOSET (FLG_GLOBIMPONLY, b);
3654 DOSET (FLG_RETIMPONLY, b);
3655 DOSET (FLG_STRUCTIMPONLY, b);
3656 DOSET (FLG_SPECGLOBIMPONLY, b);
3657 DOSET (FLG_SPECRETIMPONLY, b);
3658 DOSET (FLG_SPECSTRUCTIMPONLY, b);
3659 break;
3660 case FLG_ANSILIMITS:
3661 DOSET (FLG_ANSILIMITS, b);
3662 DOSET (FLG_CONTROLNESTDEPTH, b);
3663 DOSET (FLG_STRINGLITERALLEN, b);
3664 DOSET (FLG_INCLUDENEST, b);
3665 DOSET (FLG_NUMSTRUCTFIELDS, b);
3666 DOSET (FLG_NUMENUMMEMBERS, b);
3667
3668 if (b)
3669 {
3670 context_setValue (FLG_CONTROLNESTDEPTH, DEFAULT_CONTROLNESTDEPTH);
3671 context_setValue (FLG_STRINGLITERALLEN, DEFAULT_STRINGLITERALLEN);
3672 context_setValue (FLG_INCLUDENEST, DEFAULT_INCLUDENEST);
3673 context_setValue (FLG_NUMSTRUCTFIELDS, DEFAULT_NUMSTRUCTFIELDS);
3674 context_setValue (FLG_NUMENUMMEMBERS, DEFAULT_NUMENUMMEMBERS);
3675 }
3676 break;
3677 case FLG_EXTERNALNAMELEN:
3678 DOSET (FLG_DISTINCTEXTERNALNAMES, TRUE);
3679 DOSET (FLG_EXTERNALNAMELEN, TRUE);
3680 break;
3681 case FLG_INTERNALNAMELEN:
3682 DOSET (FLG_DISTINCTINTERNALNAMES, TRUE);
3683 DOSET (FLG_INTERNALNAMELEN, TRUE);
3684 break;
3685 case FLG_EXTERNALNAMECASEINSENSITIVE:
3686 DOSET (FLG_EXTERNALNAMECASEINSENSITIVE, b);
3687
3688 if (b && !gc.flags[FLG_DISTINCTEXTERNALNAMES])
3689 {
3690 DOSET (FLG_DISTINCTEXTERNALNAMES, TRUE);
3691 context_setValue (FLG_EXTERNALNAMELEN, 0);
3692 }
3693 break;
3694 case FLG_INTERNALNAMECASEINSENSITIVE:
3695 DOSET (FLG_INTERNALNAMECASEINSENSITIVE, b);
3696
3697 if (b && !gc.flags[FLG_DISTINCTINTERNALNAMES])
3698 {
3699 DOSET (FLG_DISTINCTINTERNALNAMES, TRUE);
3700 context_setValue (FLG_INTERNALNAMELEN, 0);
3701 }
3702 break;
3703 case FLG_INTERNALNAMELOOKALIKE:
3704 DOSET (FLG_INTERNALNAMELOOKALIKE, b);
3705
3706 if (b && !gc.flags[FLG_DISTINCTINTERNALNAMES])
3707 {
3708 DOSET (FLG_DISTINCTINTERNALNAMES, TRUE);
3709 context_setValue (FLG_INTERNALNAMELEN, 0);
616915dd 3710 }
28bf4b0b 3711 break;
3712 case FLG_MODUNSPEC:
3713 DOSET (FLG_MODNOMODS, b);
3714 DOSET (FLG_MODGLOBSUNSPEC, b);
3715 DOSET (FLG_MODSTRICTGLOBSUNSPEC, b);
3716 break;
3717 case FLG_EXPORTANY:
3718 DOSET (FLG_EXPORTVAR, b);
3719 DOSET (FLG_EXPORTFCN, b);
3720 DOSET (FLG_EXPORTTYPE, b);
3721 DOSET (FLG_EXPORTMACRO, b);
3722 DOSET (FLG_EXPORTCONST, b);
3723 gc.anyExports = TRUE;
3724 break;
3725 case FLG_REPEXPOSE:
3726 DOSET (FLG_RETEXPOSE, b);
3727 DOSET (FLG_ASSIGNEXPOSE, b);
3728 DOSET (FLG_CASTEXPOSE, b);
3729 break;
3730 case FLG_RETVAL:
3731 DOSET (FLG_RETVALBOOL, b);
3732 DOSET (FLG_RETVALINT, b);
3733 DOSET (FLG_RETVALOTHER, b);
3734 break;
3735 case FLG_PARTIAL:
3736 if (b)
3737 {
3738 DOSET (FLG_EXPORTLOCAL, FALSE);
3739 DOSET (FLG_DECLUNDEF, FALSE);
3740 DOSET (FLG_SPECUNDEF, FALSE);
3741 DOSET (FLG_TOPUNUSED, FALSE);
3742 }
3743 break;
3744 case FLG_DEEPBREAK:
3745 DOSET (FLG_LOOPLOOPBREAK, b);
3746 DOSET (FLG_LOOPSWITCHBREAK, b);
3747 DOSET (FLG_SWITCHLOOPBREAK, b);
3748 DOSET (FLG_SWITCHSWITCHBREAK, b);
3749 DOSET (FLG_LOOPLOOPCONTINUE, b);
3750 DOSET (FLG_DEEPBREAK, b);
3751 break;
3752 case FLG_ACCESSALL:
3753 DOSET (FLG_ACCESSMODULE, b);
3754 DOSET (FLG_ACCESSFILE, b);
3755 DOSET (FLG_ACCESSCZECH, b);
3756 break;
3757 case FLG_ALLMACROS:
3758 DOSET (FLG_ALLMACROS, b);
3759 DOSET (FLG_FCNMACROS, b);
3760 DOSET (FLG_CONSTMACROS, b);
3761 break;
3762 case FLG_CZECH:
3763 if (b) { DOSET (FLG_ACCESSCZECH, b); }
3764 DOSET (FLG_CZECHFUNCTIONS, b);
3765 DOSET (FLG_CZECHVARS, b);
3766 DOSET (FLG_CZECHCONSTANTS, b);
3767 DOSET (FLG_CZECHTYPES, b);
3768 break;
3769 case FLG_SLOVAK:
3770 if (b) { DOSET (FLG_ACCESSSLOVAK, b); }
3771 DOSET (FLG_SLOVAKFUNCTIONS, b);
3772 DOSET (FLG_SLOVAKVARS, b);
3773 DOSET (FLG_SLOVAKCONSTANTS, b);
3774 DOSET (FLG_SLOVAKTYPES, b);
3775 break;
3776 case FLG_CZECHOSLOVAK:
3777 if (b) { DOSET (FLG_ACCESSCZECHOSLOVAK, b); }
3778 DOSET (FLG_CZECHOSLOVAKFUNCTIONS, b);
3779 DOSET (FLG_CZECHOSLOVAKVARS, b);
3780 DOSET (FLG_CZECHOSLOVAKCONSTANTS, b);
3781 DOSET (FLG_CZECHOSLOVAKTYPES, b);
3782 break;
3783 case FLG_NULL:
3784 DOSET (FLG_NULLSTATE, b);
3785 DOSET (FLG_NULLDEREF, b);
3786 DOSET (FLG_NULLASSIGN, b);
3787 DOSET (FLG_NULLPASS, b);
3788 DOSET (FLG_NULLRET, b);
3789 break;
3790 case FLG_MEMCHECKS:
3791 DOSET (FLG_NULLSTATE, b);
3792 DOSET (FLG_NULLDEREF, b);
3793 DOSET (FLG_NULLASSIGN, b);
3794 DOSET (FLG_NULLPASS, b);
3795 DOSET (FLG_NULLRET, b);
3796 DOSET (FLG_COMPDEF, b);
3797 DOSET (FLG_COMPMEMPASS, b);
3798 DOSET (FLG_UNIONDEF, b);
3799 DOSET (FLG_MEMTRANS, b);
3800 DOSET (FLG_USERELEASED, b);
3801 DOSET (FLG_ALIASUNIQUE, b);
3802 DOSET (FLG_MAYALIASUNIQUE, b);
3803 DOSET (FLG_MUSTFREE, b);
3804 DOSET (FLG_MUSTDEFINE, b);
3805 DOSET (FLG_GLOBSTATE, b);
3806 DOSET (FLG_COMPDESTROY, b);
3807 DOSET (FLG_MUSTNOTALIAS, b);
3808 DOSET (FLG_MEMIMPLICIT, b);
3809 DOSET (FLG_BRANCHSTATE, b);
3810 /*@fallthrough@*/ /* also sets memtrans flags */
3811 case FLG_MEMTRANS:
3812 DOSET (FLG_MEMTRANS, b);
3813 DOSET (FLG_EXPOSETRANS, b);
3814 DOSET (FLG_OBSERVERTRANS, b);
3815 DOSET (FLG_DEPENDENTTRANS, b);
3816 DOSET (FLG_NEWREFTRANS, b);
3817 DOSET (FLG_ONLYTRANS, b);
3818 DOSET (FLG_OWNEDTRANS, b);
3819 DOSET (FLG_FRESHTRANS, b);
3820 DOSET (FLG_SHAREDTRANS, b);
3821 DOSET (FLG_TEMPTRANS, b);
3822 DOSET (FLG_KEPTTRANS, b);
3823 DOSET (FLG_REFCOUNTTRANS, b);
3824 DOSET (FLG_STATICTRANS, b);
3825 DOSET (FLG_UNKNOWNTRANS, b);
3826 DOSET (FLG_KEEPTRANS, b);
3827 DOSET (FLG_IMMEDIATETRANS, b);
3828 break;
3829
3830 default:
3831 break;
3832 }
3833
3834 if (b && !gc.anyExports
3835 && (f == FLG_EXPORTVAR || f == FLG_EXPORTFCN
3836 || f == FLG_EXPORTTYPE || f == FLG_EXPORTMACRO
3837 || f == FLG_EXPORTCONST
3838 || f == FLG_EXPORTANY))
3839 {
3840 gc.anyExports = TRUE;
616915dd 3841 }
3842}
3843
3844bool
3845context_maybeSet (flagcode d)
3846{
3847 return (gc.flags[d] || gc.setLocally[d]);
3848}
3849
3850bool
3851context_getFlag (flagcode d)
3852{
3853 return (gc.flags[d]);
3854}
3855
28bf4b0b 3856bool
3857context_flagOn (flagcode f, fileloc loc)
3858{
3859 return (!context_suppressFlagMsg (f, loc));
3860}
3861
616915dd 3862static void context_saveFlagSettings (void)
3863{
3864 gc.savedFlags = TRUE;
3865 llassert (sizeof (gc.saveflags) == sizeof (gc.flags));
3866 memcpy (gc.saveflags, gc.flags, sizeof (gc.flags));
3867}
3868
3869static void context_restoreFlagSettings (void)
3870{
3871 llassert (sizeof (gc.saveflags) == sizeof (gc.flags));
3872 memcpy (gc.flags, gc.saveflags, sizeof (gc.flags));
3873 gc.savedFlags = FALSE;
3874}
3875
3876void context_setFilename (fileId fid, int lineno)
3877 /*@globals fileloc g_currentloc;@*/
3878 /*@modifies g_currentloc@*/
3879{
3880 if (fileId_baseEqual (currentFile (), fid))
3881 {
3882 setLine (lineno);
3883 return;
3884 }
3885 else
3886 {
3887 fileloc_setColumn (g_currentloc, 0);
3888
3889 if (fileloc_isSpecialFile (g_currentloc))
3890 {
3891 gc.inDerivedFile = TRUE;
3892 }
3893
3894 if (filelocStack_popPushFile (gc.locstack, g_currentloc))
3895 {
3896 int maxdepth = context_getValue (FLG_INCLUDENEST);
3897
3898 if (filelocStack_size (gc.locstack) > maxdepth)
3899 {
3900 int depth = filelocStack_includeDepth (gc.locstack);
3901
3902 if (depth > maxdepth)
3903 {
3904 if (optgenerror
3905 (FLG_INCLUDENEST,
3906 message ("Maximum include nesting depth "
3907 "(%d, current depth %d) exceeded",
3908 maxdepth,
3909 depth),
3910 filelocStack_nextTop (gc.locstack)))
3911 {
3912 filelocStack_printIncludes (gc.locstack);
3913 }
3914 }
3915 }
3916 }
3917
3918 g_currentloc = fileloc_create (fid, lineno, 1);
3919 gc.inheader = fileId_isHeader (currentFile ());
3920
3921 context_enterFileAux ();
3922 }
3923}
3924
3925void context_enterIterDef (/*@observer@*/ uentry le)
3926{
3927 context_enterMacro (le);
3928 gc.acct = typeIdSet_subtract (gc.facct, gc.nacct);
3929 gc.kind = CX_ITERDEF;
3930}
3931
3932void context_enterIterEnd (/*@observer@*/ uentry le)
3933{
3934 context_enterMacro (le);
3935 gc.kind = CX_ITEREND;
3936}
3937
3938void
3939context_destroyMod (void)
3940 /*@globals killed gc@*/
3941{
3942 setCodePoint ();
3943 ctype_destroyMod ();
3944 setCodePoint ();
3945 usymtab_free ();
3946 setCodePoint ();
3947 fileTable_free (gc.ftab);
3948 filelocStack_free (gc.locstack);
3949 setCodePoint ();
3950 gc.ftab = fileTable_undefined;
3951
3952 macrocache_free (gc.mc);
3953 sfree (gc.moduleaccess);
3954 setCodePoint ();
3955
3956 fileloc_free (gc.saveloc); gc.saveloc = fileloc_undefined;
3957 fileloc_free (gc.pushloc); gc.pushloc = fileloc_undefined;
3958
3959 setCodePoint ();
3960 sRefSetList_free (gc.modrecs);
3961 setCodePoint ();
3962 flagMarkerList_free (gc.markers);
3963 setCodePoint ();
3964 messageLog_free (gc.msgLog);
3965 setCodePoint ();
3966 clauseStack_free (gc.clauses);
3967 setCodePoint ();
3968
3969 cstring_free (gc.msgAnnote);
3970 globSet_free (gc.globs_used);
28bf4b0b 3971 metaStateTable_free (gc.stateTable);
3972 annotationTable_free (gc.annotTable);
3973}
616915dd 3974
3975/*
3976** Flag shortcuts.
3977*/
3978
3979bool context_msgBoolInt (void)
3980{
3981 return gc.flags [FLG_BOOLINT];
3982}
3983
3984bool context_msgCharInt (void)
3985{
3986 return gc.flags [FLG_CHARINT];
3987}
3988
3989bool context_msgEnumInt (void)
3990{
3991 return gc.flags [FLG_ENUMINT];
3992}
3993
3994bool context_msgPointerArith (void)
3995{
3996 return gc.flags [FLG_POINTERARITH];
3997}
3998
3999bool context_msgStrictOps (void)
4000{
4001 return gc.flags [FLG_STRICTOPS];
4002}
4003
4004# ifndef NOLCL
4005bool context_msgLh (void)
4006{
4007 return gc.flags [FLG_DOLH];
4008}
4009# endif
4010
4011void context_pushLoc (void)
4012{
4013 fileloc_free (gc.pushloc);
4014 gc.pushloc = gc.saveloc;
4015 gc.saveloc = fileloc_undefined;
4016}
4017
4018void context_popLoc (void)
4019{
4020 gc.saveloc = fileloc_update (gc.saveloc, gc.pushloc);
4021}
4022
4023bool context_inGlobalScope (void)
4024{
4025 return (usymtab_inFileScope() || usymtab_inGlobalScope ());
4026}
4027
4028bool context_inInnerScope (void)
4029{
4030 return (gc.kind == CX_INNER);
4031}
4032
4033void context_setProtectVars (void)
4034{
4035 gc.protectVars = TRUE;
4036}
4037
4038bool context_anyErrors (void)
4039{
4040 return (gc.numerrors > 0);
4041}
4042
4043void context_hasError (void)
4044{
4045 gc.numerrors++;
4046}
4047
4048int context_numErrors (void)
4049{
4050 return gc.numerrors;
4051}
4052
4053bool context_neednl (void)
4054{
4055 return gc.neednl;
4056}
4057
4058void context_setNeednl (void)
4059{
4060 gc.neednl = TRUE;
4061}
4062
4063int context_getExpect (void)
4064{
4065 return (context_getValue (FLG_EXPECT));
4066}
4067
4068# ifndef NOLCL
4069int context_getLCLExpect (void)
4070{
4071 return (context_getValue (FLG_LCLEXPECT));
4072}
4073# endif
4074
4075int context_getLimit (void)
4076{
4077 return (context_getValue (FLG_LIMIT));
4078}
4079
4080bool context_unlimitedMessages (void)
4081{
4082 return (context_getLimit () < 0);
4083}
4084
4085void context_releaseVars (void)
4086{
4087 llassert (gc.protectVars);
4088 gc.protectVars = FALSE;
4089}
4090
4091void context_sizeofReleaseVars (void)
4092{
4093 /* If there is a nested sizeof, this might not hold:
4094 llassert (gc.protectVars);
4095 */
4096
4097 gc.protectVars = FALSE;
4098}
4099
4100bool context_inProtectVars (void)
4101{
4102 return (gc.protectVars);
4103}
4104
4105void context_hideShowscan (void)
4106{
4107 gc.flags[FLG_SHOWSCAN] = FALSE;
4108}
4109
4110void context_unhideShowscan (void)
4111{
4112 gc.flags[FLG_SHOWSCAN] = TRUE;
4113}
4114
4115bool context_inHeader (void)
4116{
4117 return (gc.inheader);
4118}
4119
4120fileTable context_fileTable (void)
4121{
4122 return gc.ftab;
4123}
4124
4125cstring context_tmpdir (void)
4126{
4127 return (context_getString (FLG_TMPDIR));
4128}
4129
4130messageLog context_messageLog (void)
4131{
4132 return gc.msgLog;
4133}
4134
4135bool context_inMacroFunction (void)
4136{
4137 return (gc.kind == CX_MACROFCN);
4138}
4139
4140bool context_inMacroConstant (void)
4141{
4142 return (gc.kind == CX_MACROCONST);
4143}
4144
4145bool context_inMacroUnknown (void)
4146{
4147 return (gc.kind == CX_UNKNOWNMACRO);
4148}
4149
4150void context_setShownFunction (void)
4151{
4152 gc.showfunction = FALSE;
4153}
4154
4155bool context_doDump (void)
4156{
4157 return cstring_isNonEmpty (context_getString (FLG_DUMP));
4158}
4159
4160bool context_doMerge (void)
4161{
4162 return cstring_isNonEmpty (context_getString (FLG_MERGE));
4163}
4164
4165cstring context_getDump (void)
4166{
4167 return context_getString (FLG_DUMP);
4168}
4169
4170cstring context_getMerge (void)
4171{
4172 return context_getString (FLG_MERGE);
4173}
4174
4175# ifndef NOLCL
4176bool context_inLCLLib (void)
4177{
4178 return (gc.kind == CX_LCLLIB);
4179}
4180
4181bool context_inImport (void)
4182{
4183 return (gc.inimport);
4184}
4185
4186void context_enterImport (void)
4187{
4188 gc.inimport = TRUE;
4189}
4190
4191void context_leaveImport (void)
4192{
4193 gc.inimport = FALSE;
4194}
4195# endif
4196
4197bool context_inMacro (void)
4198{
4199 return (gc.kind == CX_MACROFCN || gc.kind == CX_MACROCONST
4200 || gc.kind == CX_UNKNOWNMACRO
4201 || gc.kind == CX_ITERDEF || gc.kind == CX_ITEREND);
4202}
4203
4204bool context_inIterDef (void)
4205{
4206 return (gc.kind == CX_ITERDEF);
4207}
4208
4209bool context_inIterEnd (void)
4210{
4211 return (gc.kind == CX_ITEREND);
4212}
4213
4214int context_getLinesProcessed (void)
4215{
4216 return (gc.linesprocessed);
4217}
4218
4219int context_getSpecLinesProcessed (void)
4220{
4221 return (gc.speclinesprocessed);
4222}
4223
4224# ifndef NOLCL
4225void context_processedSpecLine (void)
4226{
4227 gc.speclinesprocessed++;
4228}
4229
4230void context_resetSpecLines (void)
4231{
4232 gc.speclinesprocessed = 0;
4233}
4234# endif
4235
4236bool context_inGlobalContext (void)
4237{
4238 return (gc.kind == CX_GLOBAL);
4239}
4240
4241void context_setFileId (fileId s)
4242{
4243 g_currentloc = fileloc_updateFileId (g_currentloc, s);
4244}
4245
4246bool context_setBoolName (void)
4247{
4248 return (!cstring_equalLit (context_getString (FLG_BOOLTYPE),
4249 DEFAULT_BOOLTYPE));
4250}
4251
4252cstring context_printBoolName (void)
4253{
4254 if (context_setBoolName ())
4255 {
4256 return context_getBoolName ();
4257 }
4258 else
4259 {
4260 return cstring_makeLiteralTemp ("boolean");
4261 }
4262}
4263
4264cstring context_getBoolName (void)
4265{
4266 return (context_getString (FLG_BOOLTYPE));
4267}
4268
4269cstring context_getFalseName (void)
4270{
4271 return (context_getString (FLG_BOOLFALSE));
4272}
4273
4274cstring context_getTrueName (void)
4275{
4276 return (context_getString (FLG_BOOLTRUE));
4277}
4278
4279cstring context_getLarchPath (void)
4280{
4281 return (context_getString (FLG_LARCHPATH));
4282}
4283
4284cstring context_getLCLImportDir (void)
4285{
4286 return (context_getString (FLG_LCLIMPORTDIR));
4287}
4288
4289static void context_setJustPopped (void)
4290{
4291 gc.justpopped = TRUE;
4292}
4293
4294void context_clearJustPopped (void)
4295{
4296 gc.justpopped = FALSE;
4297}
4298
4299bool context_justPopped (void)
4300{
4301 return (gc.justpopped);
4302}
4303
4304void context_setMacroMissingParams (void)
4305{
4306 gc.macroMissingParams = TRUE;
4307}
4308
4309void context_resetMacroMissingParams (void)
4310{
4311 gc.macroMissingParams = FALSE;
4312}
4313
4314bool context_isMacroMissingParams (void)
4315{
4316 return (gc.macroMissingParams);
4317}
4318
4319void context_showFilelocStack (void)
4320{
4321 filelocStack_printIncludes (gc.locstack);
4322}
4323
28bf4b0b 4324metaStateTable context_getMetaStateTable (void)
4325{
4326 return gc.stateTable;
4327}
4328
4329metaStateInfo context_lookupMetaStateInfo (cstring key)
4330{
4331 return metaStateTable_lookup (gc.stateTable, key);
4332}
4333
4334/*@null@*/ annotationInfo context_lookupAnnotation (cstring annot)
4335{
4336 annotationInfo ainfo;
4337
4338 ainfo = annotationTable_lookup (gc.annotTable, annot);
4339
4340 return ainfo;
4341}
4342
4343void context_addAnnotation (annotationInfo ainfo)
4344{
4345 if (annotationTable_contains (gc.annotTable, annotationInfo_getName (ainfo)))
4346 {
4347 voptgenerror
4348 (FLG_SYNTAX,
4349 message ("Duplicate annotation declaration: %s", annotationInfo_getName (ainfo)),
4350 annotationInfo_getLoc (ainfo));
4351
4352 annotationInfo_free (ainfo);
4353 }
4354 else
4355 {
4356 annotationTable_insert (gc.annotTable, ainfo);
4357 }
4358}
4359
4360void context_addMetaState (cstring mname, metaStateInfo msinfo)
4361{
4362 if (metaStateTable_contains (gc.stateTable, mname))
4363 {
4364 voptgenerror
4365 (FLG_SYNTAX,
4366 message ("Duplicate metastate declaration: %s", mname),
4367 metaStateInfo_getLoc (msinfo));
4368 cstring_free (mname);
4369 metaStateInfo_free (msinfo);
4370 }
4371 else
4372 {
990ec868 4373 DPRINTF (("Adding meta state: %s", mname));
28bf4b0b 4374 metaStateTable_insert (gc.stateTable, mname, msinfo);
4375 }
4376}
616915dd 4377
28bf4b0b 4378valueTable context_createValueTable (sRef s)
4379{
4380 if (metaStateTable_size (gc.stateTable) > 0)
4381 {
4382 valueTable res = valueTable_create (metaStateTable_size (gc.stateTable));
4383 /*@i32 should use smaller value... */
4384 DPRINTF (("Value table for: %s", sRef_unparse (s)));
990ec868 4385
28bf4b0b 4386 metaStateTable_elements (gc.stateTable, msname, msi)
4387 {
4388 mtContextNode context = metaStateInfo_getContext (msi);
616915dd 4389
28bf4b0b 4390 if (mtContextNode_matchesRefStrict (context, s))
4391 {
4392 DPRINTF (("Create: %s", metaStateInfo_unparse (msi)));
4393 llassert (cstring_equal (msname, metaStateInfo_getName (msi)));
4394
990ec868 4395 valueTable_insert
4396 (res,
4397 cstring_copy (metaStateInfo_getName (msi)),
4398 stateValue_createImplicit (metaStateInfo_getDefaultValue (msi, s),
4399 stateInfo_undefined));
28bf4b0b 4400 }
4401 else
4402 {
4403 DPRINTF (("No match: %s", metaStateInfo_unparse (msi)));
4404 }
4405 }
4406 end_metaStateTable_elements ;
4407
4408 DPRINTF (("Value table: %s", valueTable_unparse (res)));
4409 return res;
4410 }
4411 else
4412 {
4413 return valueTable_undefined;
4414 }
4415}
616915dd 4416
28bf4b0b 4417valueTable context_createGlobalMarkerValueTable ()
4418{
4419 if (metaStateTable_size (gc.stateTable) > 0)
4420 {
4421 valueTable res = valueTable_create (metaStateTable_size (gc.stateTable));
4422 /*@i32 should use smaller value... */
4423
4424 metaStateTable_elements (gc.stateTable, msname, msi)
4425 {
4426 /*@i23 only add global...*/
4427 DPRINTF (("Create: %s", metaStateInfo_unparse (msi)));
4428 llassert (cstring_equal (msname, metaStateInfo_getName (msi)));
4429
4430 valueTable_insert (res,
4431 cstring_copy (metaStateInfo_getName (msi)),
4432 stateValue_create (metaStateInfo_getDefaultGlobalValue (msi),
4433 stateInfo_undefined));
4434 }
4435 end_metaStateTable_elements ;
4436
4437 DPRINTF (("Value table: %s", valueTable_unparse (res)));
4438 return res;
4439 }
4440 else
4441 {
4442 return valueTable_undefined;
4443 }
4444}
616915dd 4445
4446
4447
This page took 0.675628 seconds and 5 git commands to generate.