Expand PMF_FN_* macros.
[netbsd-mini2440.git] / usr.bin / xlint / lint1 / scan.l
blobf64d3a57b71cce1cfba2db1fe30fbecf3cd322ff
1 %{
2 /* $NetBSD: scan.l,v 1.45 2009/10/02 15:03:45 christos Exp $ */
4 /*
5  * Copyright (c) 1996 Christopher G. Demetriou.  All Rights Reserved.
6  * Copyright (c) 1994, 1995 Jochen Pohl
7  * All Rights Reserved.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions
11  * are met:
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer.
14  * 2. Redistributions in binary form must reproduce the above copyright
15  *    notice, this list of conditions and the following disclaimer in the
16  *    documentation and/or other materials provided with the distribution.
17  * 3. All advertising materials mentioning features or use of this software
18  *    must display the following acknowledgement:
19  *      This product includes software developed by Jochen Pohl for
20  *      The NetBSD Project.
21  * 4. The name of the author may not be used to endorse or promote products
22  *    derived from this software without specific prior written permission.
23  *
24  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
25  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
26  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
27  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
28  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
29  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
30  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
31  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
32  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
33  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34  */
36 #include <sys/cdefs.h>
37 #if defined(__RCSID) && !defined(lint)
38 __RCSID("$NetBSD: scan.l,v 1.45 2009/10/02 15:03:45 christos Exp $");
39 #endif
41 #include <stdlib.h>
42 #include <string.h>
43 #include <limits.h>
44 #include <float.h>
45 #include <ctype.h>
46 #include <errno.h>
47 #include <math.h>
49 #include "lint1.h"
50 #include "cgram.h"
52 #define CHAR_MASK       (~(~0 << CHAR_BIT))
54 /* Current position (its also updated when an included file is parsed) */
55 pos_t   curr_pos = { 1, "", 0 };
58  * Current position in C source (not updated when an included file is
59  * parsed).
60  */
61 pos_t   csrc_pos = { 1, "", 0 };
63 static  void    incline(void);
64 static  void    badchar(int);
65 static  sbuf_t  *allocsb(void);
66 static  void    freesb(sbuf_t *);
67 static  int     inpc(void);
68 static  int     hash(const char *);
69 static  sym_t   *search(sbuf_t *);
70 static  int     name(void);
71 static  int     keyw(sym_t *);
72 static  int     icon(int);
73 static  int     fcon(void);
74 static  int     operator(int, op_t);
75 static  int     ccon(void);
76 static  int     wccon(void);
77 static  int     getescc(int);
78 static  void    directive(void);
79 static  void    comment(void);
80 static  void    slashslashcomment(void);
81 static  int     string(void);
82 static  int     wcstrg(void);
86 L       [_A-Za-z]
87 D       [0-9]
88 NZD     [1-9]
89 OD      [0-7]
90 HD      [0-9A-Fa-f]
91 EX      ([eE][+-]?[0-9]+)
93 %option nounput
97 {L}({L}|{D})*                   return (name());
98 0{OD}*[lLuU]*                   return (icon(8));
99 {NZD}{D}*[lLuU]*                return (icon(10));
100 0[xX]{HD}+[lLuU]*               return (icon(16));
101 {D}+\.{D}*{EX}?[fFlL]?[i]?      |
102 {D}+{EX}[fFlL]?[i]?             |
103 0[xX]{HD}+p{HD}+[fFlL]?[i]?     |
104 \.{D}+{EX}?[fFlL]?[i]?          return (fcon());
105 "="                             return (operator(T_ASSIGN, ASSIGN));
106 "*="                            return (operator(T_OPASS, MULASS));
107 "/="                            return (operator(T_OPASS, DIVASS));
108 "%="                            return (operator(T_OPASS, MODASS));
109 "+="                            return (operator(T_OPASS, ADDASS));
110 "-="                            return (operator(T_OPASS, SUBASS));
111 "<<="                           return (operator(T_OPASS, SHLASS));
112 ">>="                           return (operator(T_OPASS, SHRASS));
113 "&="                            return (operator(T_OPASS, ANDASS));
114 "^="                            return (operator(T_OPASS, XORASS));
115 "|="                            return (operator(T_OPASS, ORASS));
116 "||"                            return (operator(T_LOGOR, LOGOR));
117 "&&"                            return (operator(T_LOGAND, LOGAND));
118 "|"                             return (operator(T_OR, OR));
119 "&"                             return (operator(T_AND, AND));
120 "^"                             return (operator(T_XOR, XOR));
121 "=="                            return (operator(T_EQOP, EQ));
122 "!="                            return (operator(T_EQOP, NE));
123 "<"                             return (operator(T_RELOP, LT));
124 ">"                             return (operator(T_RELOP, GT));
125 "<="                            return (operator(T_RELOP, LE));
126 ">="                            return (operator(T_RELOP, GE));
127 "<<"                            return (operator(T_SHFTOP, SHL));
128 ">>"                            return (operator(T_SHFTOP, SHR));
129 "++"                            return (operator(T_INCDEC, INC));
130 "--"                            return (operator(T_INCDEC, DEC));
131 "->"                            return (operator(T_STROP, ARROW));
132 "."                             return (operator(T_STROP, POINT));
133 "+"                             return (operator(T_ADDOP, PLUS));
134 "-"                             return (operator(T_ADDOP, MINUS));
135 "*"                             return (operator(T_MULT, MULT));
136 "/"                             return (operator(T_DIVOP, DIV));
137 "%"                             return (operator(T_DIVOP, MOD));
138 "!"                             return (operator(T_UNOP, NOT));
139 "~"                             return (operator(T_UNOP, COMPL));
140 "\""                            return (string());
141 "L\""                           return (wcstrg());
142 ";"                             return (T_SEMI);
143 "{"                             return (T_LBRACE);
144 "}"                             return (T_RBRACE);
145 ","                             return (T_COMMA);
146 ":"                             return (T_COLON);
147 "?"                             return (T_QUEST);
148 "["                             return (T_LBRACK);
149 "]"                             return (T_RBRACK);
150 "("                             return (T_LPARN);
151 ")"                             return (T_RPARN);
152 "..."                           return (T_ELLIPSE);
153 "'"                             return (ccon());
154 "L'"                            return (wccon());
155 ^#.*$                           directive();
156 \n                              incline();
157 \t|" "|\f|\v                    ;
158 "/*"                            comment();
159 "//"                            slashslashcomment();
160 .                               badchar(yytext[0]);
164 static void
165 incline(void)
167         curr_pos.p_line++;
168         curr_pos.p_uniq = 0;
169         if (curr_pos.p_file == csrc_pos.p_file) {
170                 csrc_pos.p_line++;
171                 csrc_pos.p_uniq = 0;
172         }
175 static void
176 badchar(int c)
179         /* unknown character \%o */
180         error(250, c);
184  * Keywords.
185  * During initialisation they are written to the symbol table.
186  */
187 static  struct  kwtab {
188         const   char *kw_name;  /* keyword */
189         int     kw_token;       /* token returned by yylex() */
190         scl_t   kw_scl;         /* storage class if kw_token T_SCLASS */
191         tspec_t kw_tspec;       /* type spec. if kw_token T_TYPE or T_SOU */
192         tqual_t kw_tqual;       /* type qual. fi kw_token T_QUAL */
193         u_int   kw_c89;         /* c89 keyword */
194         u_int   kw_c99;         /* c99 keyword */
195         u_int   kw_gcc;         /* GCC keyword */
196 } kwtab[] = {
197         { "__alignof__", T_ALIGNOF,     0,      0,      0,        0, 0, 0 },
198         { "__attribute__",T_ATTRIBUTE,  0,      0,      0,        0, 0, 1 },
199         { "attribute",  T_ATTRIBUTE,    0,      0,      0,        0, 0, 1 },
200         { "__packed__", T_AT_PACKED,    0,      0,      0,        0, 0, 1 },
201         { "packed",     T_AT_PACKED,    0,      0,      0,        0, 0, 1 },
202         { "__aligned__",T_AT_ALIGNED,   0,      0,      0,        0, 0, 1 },
203         { "aligned",    T_AT_ALIGNED,   0,      0,      0,        0, 0, 1 },
204         { "__transparent_union__",T_AT_TUNION,0,0,      0,        0, 0, 1 },
205         { "transparent_union",T_AT_TUNION,0,    0,      0,        0, 0, 1 },
206         { "__unused__", T_AT_UNUSED,    0,      0,      0,        0, 0, 1 },
207         { "unused",     T_AT_UNUSED,    0,      0,      0,        0, 0, 1 },
208         { "__deprecated__",T_AT_DEPRECATED,0,   0,      0,        0, 0, 1 },
209         { "deprecated", T_AT_DEPRECATED,0,      0,      0,        0, 0, 1 },
210         { "__may_alias__",T_AT_MAY_ALIAS,0,     0,      0,        0, 0, 1 },
211         { "may_alias",  T_AT_MAY_ALIAS, 0,      0,      0,        0, 0, 1 },
212         { "asm",        T_ASM,          0,      0,      0,        0, 0, 1 },
213         { "__asm",      T_ASM,          0,      0,      0,        0, 0, 0 },
214         { "__asm__",    T_ASM,          0,      0,      0,        0, 0, 0 },
215         { "auto",       T_SCLASS,       AUTO,   0,      0,        0, 0, 0 },
216         { "break",      T_BREAK,        0,      0,      0,        0, 0, 0 },
217         { "_Bool",      T_TYPE,         0,      BOOL,   0,        0, 1, 0 },
218         { "case",       T_CASE,         0,      0,      0,        0, 0, 0 },
219         { "char",       T_TYPE,         0,      CHAR,   0,        0, 0, 0 },
220         { "const",      T_QUAL,         0,      0,      CONST,    1, 0, 0 },
221         { "_Complex",   T_TYPE,         0,      COMPLEX,0,        0, 1, 0 },
222         { "__const__",  T_QUAL,         0,      0,      CONST,    0, 0, 0 },
223         { "__const",    T_QUAL,         0,      0,      CONST,    0, 0, 0 },
224         { "continue",   T_CONTINUE,     0,      0,      0,        0, 0, 0 },
225         { "default",    T_DEFAULT,      0,      0,      0,        0, 0, 0 },
226         { "do",         T_DO,           0,      0,      0,        0, 0, 0 },
227         { "double",     T_TYPE,         0,      DOUBLE, 0,        0, 0, 0 },
228         { "else",       T_ELSE,         0,      0,      0,        0, 0, 0 },
229         { "enum",       T_ENUM,         0,      0,      0,        0, 0, 0 },
230         { "extern",     T_SCLASS,       EXTERN, 0,      0,        0, 0, 0 },
231         { "float",      T_TYPE,         0,      FLOAT,  0,        0, 0, 0 },
232         { "for",        T_FOR,          0,      0,      0,        0, 0, 0 },
233         { "goto",       T_GOTO,         0,      0,      0,        0, 0, 0 },
234         { "if",         T_IF,           0,      0,      0,        0, 0, 0 },
235         { "__imag__",   T_IMAG,         0,      0,      0,        0, 1, 0 },
236         { "inline",     T_SCLASS,       INLINE, 0,      0,        0, 1, 0 },
237         { "__inline__", T_SCLASS,       INLINE, 0,      0,        0, 0, 0 },
238         { "__inline",   T_SCLASS,       INLINE, 0,      0,        0, 0, 0 },
239         { "int",        T_TYPE,         0,      INT,    0,        0, 0, 0 },
240         { "__symbolrename", T_SYMBOLRENAME, 0,  0,      0,        0, 0, 0 },
241         { "long",       T_TYPE,         0,      LONG,   0,        0, 0, 0 },
242         { "__real__",   T_REAL,         0,      0,      0,        0, 1, 0 },
243         { "register",   T_SCLASS,       REG,    0,      0,        0, 0, 0 },
244         { "restrict",   T_QUAL,         0,      0,      RESTRICT, 0, 1, 0 },
245         { "return",     T_RETURN,       0,      0,      0,        0, 0, 0 },
246         { "__packed",   T_PACKED,       0,      0,      0,        0, 0, 0 },
247         { "short",      T_TYPE,         0,      SHORT,  0,        0, 0, 0 },
248         { "signed",     T_TYPE,         0,      SIGNED, 0,        1, 0, 0 },
249         { "__signed__", T_TYPE,         0,      SIGNED, 0,        0, 0, 0 },
250         { "__signed",   T_TYPE,         0,      SIGNED, 0,        0, 0, 0 },
251         { "sizeof",     T_SIZEOF,       0,      0,      0,        0, 0, 0 },
252         { "static",     T_SCLASS,       STATIC, 0,      0,        0, 0, 0 },
253         { "struct",     T_SOU,          0,      STRUCT, 0,        0, 0, 0 },
254         { "switch",     T_SWITCH,       0,      0,      0,        0, 0, 0 },
255         { "typedef",    T_SCLASS,       TYPEDEF, 0,     0,        0, 0, 0 },
256         { "union",      T_SOU,          0,      UNION,  0,        0, 0, 0 },
257         { "unsigned",   T_TYPE,         0,      UNSIGN, 0,        0, 0, 0 },
258         { "void",       T_TYPE,         0,      VOID,   0,        0, 0, 0 },
259         { "volatile",   T_QUAL,         0,      0,      VOLATILE, 1, 0, 0 },
260         { "__volatile__", T_QUAL,       0,      0,      VOLATILE, 0, 0, 0 },
261         { "__volatile", T_QUAL,         0,      0,      VOLATILE, 0, 0, 0 },
262         { "while",      T_WHILE,        0,      0,      0,        0, 0, 0 },
263         { NULL,         0,              0,      0,      0,        0, 0, 0 }
266 /* Symbol table */
267 static  sym_t   *symtab[HSHSIZ1];
269 /* bit i of the entry with index i is set */
270 uint64_t qbmasks[sizeof(uint64_t) * CHAR_BIT];
272 /* least significant i bits are set in the entry with index i */
273 uint64_t qlmasks[sizeof(uint64_t) * CHAR_BIT + 1];
275 /* least significant i bits are not set in the entry with index i */
276 uint64_t qumasks[sizeof(uint64_t) * CHAR_BIT + 1];
278 /* free list for sbuf structures */
279 static  sbuf_t   *sbfrlst;
281 /* Typ of next expected symbol */
282 symt_t  symtyp;
286  * All keywords are written to the symbol table. This saves us looking
287  * in a extra table for each name we found.
288  */
289 void
290 initscan(void)
292         struct  kwtab *kw;
293         sym_t   *sym;
294         size_t  h, i;
295         uint64_t uq;
297         for (kw = kwtab; kw->kw_name != NULL; kw++) {
298                 if ((kw->kw_c89 || kw->kw_c99) && tflag)
299                         continue;
300                 if (kw->kw_c99 && !(Sflag || gflag))
301                         continue;
302                 if (kw->kw_gcc && !gflag)
303                         continue;
304                 sym = getblk(sizeof (sym_t));
305                 sym->s_name = kw->kw_name;
306                 sym->s_keyw = 1;
307                 sym->s_value.v_quad = kw->kw_token;
308                 if (kw->kw_token == T_TYPE || kw->kw_token == T_SOU) {
309                         sym->s_tspec = kw->kw_tspec;
310                 } else if (kw->kw_token == T_SCLASS) {
311                         sym->s_scl = kw->kw_scl;
312                 } else if (kw->kw_token == T_QUAL) {
313                         sym->s_tqual = kw->kw_tqual;
314                 }
315                 h = hash(sym->s_name);
316                 if ((sym->s_link = symtab[h]) != NULL)
317                         symtab[h]->s_rlink = &sym->s_link;
318                 (symtab[h] = sym)->s_rlink = &symtab[h];
319         }
321         /* initialize bit-masks for quads */
322         for (i = 0; i < sizeof (uint64_t) * CHAR_BIT; i++) {
323                 qbmasks[i] = (uint64_t)1 << i;
324                 uq = ~(uint64_t)0 << i;
325                 qumasks[i] = uq;
326                 qlmasks[i] = ~uq;
327         }
328         qumasks[i] = 0;
329         qlmasks[i] = ~(uint64_t)0;
333  * Get a free sbuf structure, if possible from the free list
334  */
335 static sbuf_t *
336 allocsb(void)
338         sbuf_t  *sb;
340         if ((sb = sbfrlst) != NULL) {
341                 sbfrlst = sb->sb_nxt;
342         } else {
343                 sb = xmalloc(sizeof (sbuf_t));
344         }
345         (void)memset(sb, 0, sizeof (*sb));
346         return (sb);
350  * Put a sbuf structure to the free list
351  */
352 static void
353 freesb(sbuf_t *sb)
356         sb->sb_nxt = sbfrlst;
357         sbfrlst = sb;
361  * Read a character and ensure that it is positive (except EOF).
362  * Increment line count(s) if necessary.
363  */
364 static int
365 inpc(void)
367         int     c;
369         if ((c = input()) != EOF && (c &= CHAR_MASK) == '\n')
370                 incline();
371         return (c);
374 static int
375 hash(const char *s)
377         u_int   v;
378         const   u_char *us;
380         v = 0;
381         for (us = (const u_char *)s; *us != '\0'; us++) {
382                 v = (v << sizeof (v)) + *us;
383                 v ^= v >> (sizeof (v) * CHAR_BIT - sizeof (v));
384         }
385         return (v % HSHSIZ1);
389  * Lex has found a letter followed by zero or more letters or digits.
390  * It looks for a symbol in the symbol table with the same name. This
391  * symbol must either be a keyword or a symbol of the type required by
392  * symtyp (label, member, tag, ...).
394  * If it is a keyword, the token is returned. In some cases it is described
395  * more deeply by data written to yylval.
397  * If it is a symbol, T_NAME is returned and the pointer to a sbuf struct
398  * is stored in yylval. This struct contains the name of the symbol, it's
399  * length and hash value. If there is already a symbol of the same name
400  * and type in the symbol table, the sbuf struct also contains a pointer
401  * to the symbol table entry.
402  */
403 static int
404 name(void)
406         char    *s;
407         sbuf_t  *sb;
408         sym_t   *sym;
409         int     tok;
411         sb = allocsb();
412         sb->sb_name = yytext;
413         sb->sb_len = yyleng;
414         sb->sb_hash = hash(yytext);
415         if ((sym = search(sb)) != NULL && sym->s_keyw) {
416                 freesb(sb);
417                 return (keyw(sym));
418         }
420         sb->sb_sym = sym;
422         if (sym != NULL) {
423                 if (blklev < sym->s_blklev)
424                         LERROR("name()");
425                 sb->sb_name = sym->s_name;
426                 sb->sb_len = strlen(sym->s_name);
427                 tok = sym->s_scl == TYPEDEF ? T_TYPENAME : T_NAME;
428         } else {
429                 s = getblk(yyleng + 1);
430                 (void)memcpy(s, yytext, yyleng + 1);
431                 sb->sb_name = s;
432                 sb->sb_len = yyleng;
433                 tok = T_NAME;
434         }
436         yylval.y_sb = sb;
437         return (tok);
440 static sym_t *
441 search(sbuf_t *sb)
443         sym_t   *sym;
445         for (sym = symtab[sb->sb_hash]; sym != NULL; sym = sym->s_link) {
446                 if (strcmp(sym->s_name, sb->sb_name) == 0) {
447                         if (sym->s_keyw || sym->s_kind == symtyp)
448                                 return (sym);
449                 }
450         }
452         return (NULL);
455 static int
456 keyw(sym_t *sym)
458         int     t;
460         if ((t = (int)sym->s_value.v_quad) == T_SCLASS) {
461                 yylval.y_scl = sym->s_scl;
462         } else if (t == T_TYPE || t == T_SOU) {
463                 yylval.y_tspec = sym->s_tspec;
464         } else if (t == T_QUAL) {
465                 yylval.y_tqual = sym->s_tqual;
466         }
467         return (t);
471  * Convert a string representing an integer into internal representation.
472  * The value is returned in yylval. icon() (and yylex()) returns T_CON.
473  */
474 static int
475 icon(int base)
477         int     l_suffix, u_suffix;
478         int     len;
479         const   char *cp;
480         char    c, *eptr;
481         tspec_t typ;
482         uint64_t uq = 0;
483         int     ansiu;
484         static  tspec_t contypes[2][3] = {
485                 { INT,  LONG,  QUAD },
486                 { UINT, ULONG, UQUAD }
487         };
489         cp = yytext;
490         len = yyleng;
492         /* skip 0x */
493         if (base == 16) {
494                 cp += 2;
495                 len -= 2;
496         }
498         /* read suffixes */
499         l_suffix = u_suffix = 0;
500         for ( ; ; ) {
501                 if ((c = cp[len - 1]) == 'l' || c == 'L') {
502                         l_suffix++;
503                 } else if (c == 'u' || c == 'U') {
504                         u_suffix++;
505                 } else {
506                         break;
507                 }
508                 len--;
509         }
510         if (l_suffix > 2 || u_suffix > 1) {
511                 /* malformed integer constant */
512                 warning(251);
513                 if (l_suffix > 2)
514                         l_suffix = 2;
515                 if (u_suffix > 1)
516                         u_suffix = 1;
517         }
518         if (tflag && u_suffix != 0) {
519                 /* suffix U is illegal in traditional C */
520                 warning(97);
521         }
522         typ = contypes[u_suffix][l_suffix];
524         errno = 0;
526         uq = strtouq(cp, &eptr, base);
527         if (eptr != cp + len)
528                 LERROR("icon()");
529         if (errno != 0)
530                 /* integer constant out of range */
531                 warning(252);
533         /*
534          * If the value is too big for the current type, we must choose
535          * another type.
536          */
537         ansiu = 0;
538         switch (typ) {
539         case INT:
540                 if (uq <= TARG_INT_MAX) {
541                         /* ok */
542                 } else if (uq <= TARG_UINT_MAX && base != 10) {
543                         typ = UINT;
544                 } else if (uq <= TARG_LONG_MAX) {
545                         typ = LONG;
546                 } else {
547                         typ = ULONG;
548                         if (uq > TARG_ULONG_MAX) {
549                                 /* integer constant out of range */
550                                 warning(252);
551                         }
552                 }
553                 if (typ == UINT || typ == ULONG) {
554                         if (tflag) {
555                                 typ = LONG;
556                         } else if (!sflag) {
557                                 /*
558                                  * Remember that the constant is unsigned
559                                  * only in ANSI C
560                                  */
561                                 ansiu = 1;
562                         }
563                 }
564                 break;
565         case UINT:
566                 if (uq > TARG_UINT_MAX) {
567                         typ = ULONG;
568                         if (uq > TARG_ULONG_MAX) {
569                                 /* integer constant out of range */
570                                 warning(252);
571                         }
572                 }
573                 break;
574         case LONG:
575                 if (uq > TARG_LONG_MAX && !tflag) {
576                         typ = ULONG;
577                         if (!sflag)
578                                 ansiu = 1;
579                         if (uq > TARG_ULONG_MAX) {
580                                 /* integer constant out of range */
581                                 warning(252);
582                         }
583                 }
584                 break;
585         case ULONG:
586                 if (uq > TARG_ULONG_MAX) {
587                         /* integer constant out of range */
588                         warning(252);
589                 }
590                 break;
591         case QUAD:
592                 if (uq > TARG_QUAD_MAX && !tflag) {
593                         typ = UQUAD;
594                         if (!sflag)
595                                 ansiu = 1;
596                 }
597                 break;
598         case UQUAD:
599                 if (uq > TARG_UQUAD_MAX) {
600                         /* integer constant out of range */
601                         warning(252);
602                 }
603                 break;
604                 /* LINTED (enumeration values not handled in switch) */
605         case STRUCT:
606         case VOID:
607         case LDOUBLE:
608         case FUNC:
609         case ARRAY:
610         case PTR:
611         case ENUM:
612         case UNION:
613         case SIGNED:
614         case NOTSPEC:
615         case DOUBLE:
616         case FLOAT:
617         case USHORT:
618         case SHORT:
619         case UCHAR:
620         case SCHAR:
621         case CHAR:
622         case BOOL:
623         case UNSIGN:
624         case FCOMPLEX:
625         case DCOMPLEX:
626         case LCOMPLEX:
627         case COMPLEX:
628                 break;
630         case NTSPEC:    /* this value unused */
631                 break;
632         }
634         uq = (uint64_t)xsign((int64_t)uq, typ, -1);
636         (yylval.y_val = xcalloc(1, sizeof (val_t)))->v_tspec = typ;
637         yylval.y_val->v_ansiu = ansiu;
638         yylval.y_val->v_quad = (int64_t)uq;
640         return (T_CON);
644  * Returns 1 if t is a signed type and the value is negative.
646  * len is the number of significant bits. If len is -1, len is set
647  * to the width of type t.
648  */
650 sign(int64_t q, tspec_t t, int len)
653         if (t == PTR || isutyp(t))
654                 return (0);
655         return (msb(q, t, len));
659 msb(int64_t q, tspec_t t, int len)
662         if (len <= 0)
663                 len = size(t);
664         return ((q & qbmasks[len - 1]) != 0);
668  * Extends the sign of q.
669  */
670 int64_t
671 xsign(int64_t q, tspec_t t, int len)
674         if (len <= 0)
675                 len = size(t);
677         if (t == PTR || isutyp(t) || !sign(q, t, len)) {
678                 q &= qlmasks[len];
679         } else {
680                 q |= qumasks[len];
681         }
682         return (q);
686  * Convert a string representing a floating point value into its interal
687  * representation. Type and value are returned in yylval. fcon()
688  * (and yylex()) returns T_CON.
689  * XXX Currently it is not possible to convert constants of type
690  * long double which are greater than DBL_MAX.
691  */
692 static int
693 fcon(void)
695         const   char *cp;
696         int     len;
697         tspec_t typ;
698         char    c, *eptr;
699         double  d;
700         float   f = 0;
702         cp = yytext;
703         len = yyleng;
705         if (cp[len - 1] == 'i') {
706                 /* imaginary, do nothing for now */
707                 len--;
708         }
709         if ((c = cp[len - 1]) == 'f' || c == 'F') {
710                 typ = FLOAT;
711                 len--;
712         } else if (c == 'l' || c == 'L') {
713                 typ = LDOUBLE;
714                 len--;
715         } else {
716                 typ = DOUBLE;
717         }
719         if (tflag && typ != DOUBLE) {
720                 /* suffixes F and L are illegal in traditional C */
721                 warning(98);
722         }
724         errno = 0;
725         d = strtod(cp, &eptr);
726         if (eptr != cp + len) {
727                 switch (*eptr) {
728                 /*
729                  * XXX: non-native non-current strtod() may not handle hex
730                  * floats, ignore the rest if we find traces of hex float
731                  * syntax...
732                  */
733                 case 'p':
734                 case 'P':
735                 case 'x':
736                 case 'X':
737                         d = 0;
738                         errno = 0;
739                         break;
740                 default:
741                         LERROR("fcon()");
742                 }
743         }
744         if (errno != 0)
745                 /* floating-point constant out of range */
746                 warning(248);
748         if (typ == FLOAT) {
749                 f = (float)d;
750                 if (!finite(f)) {
751                         /* floating-point constant out of range */
752                         warning(248);
753                         f = f > 0 ? FLT_MAX : -FLT_MAX;
754                 }
755         }
757         (yylval.y_val = xcalloc(1, sizeof (val_t)))->v_tspec = typ;
758         if (typ == FLOAT) {
759                 yylval.y_val->v_ldbl = f;
760         } else {
761                 yylval.y_val->v_ldbl = d;
762         }
764         return (T_CON);
767 static int
768 operator(int t, op_t o)
771         yylval.y_op = o;
772         return (t);
776  * Called if lex found a leading \'.
777  */
778 static int
779 ccon(void)
781         size_t  n;
782         int val, c;
783         char    cv;
785         n = 0;
786         val = 0;
787         while ((c = getescc('\'')) >= 0) {
788                 val = (val << CHAR_BIT) + c;
789                 n++;
790         }
791         if (c == -2) {
792                 /* unterminated character constant */
793                 error(253);
794         } else {
795                 if (n > sizeof (int) || (n > 1 && (pflag || hflag))) {
796                         /* too many characters in character constant */
797                         error(71);
798                 } else if (n > 1) {
799                         /* multi-character character constant */
800                         warning(294);
801                 } else if (n == 0) {
802                         /* empty character constant */
803                         error(73);
804                 }
805         }
806         if (n == 1) {
807                 cv = (char)val;
808                 val = cv;
809         }
811         yylval.y_val = xcalloc(1, sizeof (val_t));
812         yylval.y_val->v_tspec = INT;
813         yylval.y_val->v_quad = val;
815         return (T_CON);
819  * Called if lex found a leading L\'
820  */
821 static int
822 wccon(void)
824         static  char buf[MB_LEN_MAX + 1];
825         size_t  i;
826         int c;
827         wchar_t wc;
829         i = 0;
830         while ((c = getescc('\'')) >= 0) {
831                 if (i < MB_CUR_MAX)
832                         buf[i] = (char)c;
833                 i++;
834         }
836         wc = 0;
838         if (c == -2) {
839                 /* unterminated character constant */
840                 error(253);
841         } else if (c == 0) {
842                 /* empty character constant */
843                 error(73);
844         } else {
845                 if (i > MB_CUR_MAX) {
846                         i = MB_CUR_MAX;
847                         /* too many characters in character constant */
848                         error(71);
849                 } else {
850                         buf[i] = '\0';
851                         (void)mbtowc(NULL, NULL, 0);
852                         if (mbtowc(&wc, buf, MB_CUR_MAX) < 0)
853                                 /* invalid multibyte character */
854                                 error(291);
855                 }
856         }
858         yylval.y_val = xcalloc(1, sizeof (val_t));
859         yylval.y_val->v_tspec = WCHAR;
860         yylval.y_val->v_quad = wc;
862         return (T_CON);
866  * Read a character which is part of a character constant or of a string
867  * and handle escapes.
869  * The Argument is the character which delimits the character constant or
870  * string.
872  * Returns -1 if the end of the character constant or string is reached,
873  * -2 if the EOF is reached, and the character otherwise.
874  */
875 static int
876 getescc(int d)
878         static  int pbc = -1;
879         int     n, c, v;
881         if (pbc == -1) {
882                 c = inpc();
883         } else {
884                 c = pbc;
885                 pbc = -1;
886         }
887         if (c == d)
888                 return (-1);
889         switch (c) {
890         case '\n':
891                 if (tflag) {
892                         /* newline in string or char constant */
893                         error(254);
894                         return (-2);
895                 }
896                 return (c);
897         case EOF:
898                 return (-2);
899         case '\\':
900                 switch (c = inpc()) {
901                 case '"':
902                         if (tflag && d == '\'')
903                                 /* \" inside character constant undef. ... */
904                                 warning(262);
905                         return ('"');
906                 case '\'':
907                         return ('\'');
908                 case '?':
909                         if (tflag)
910                                 /* \? undefined in traditional C */
911                                 warning(263);
912                         return ('?');
913                 case '\\':
914                         return ('\\');
915                 case 'a':
916                         if (tflag)
917                                 /* \a undefined in traditional C */
918                                 warning(81);
919                         return ('\a');
920                 case 'b':
921                         return ('\b');
922                 case 'f':
923                         return ('\f');
924                 case 'n':
925                         return ('\n');
926                 case 'r':
927                         return ('\r');
928                 case 't':
929                         return ('\t');
930                 case 'v':
931                         if (tflag)
932                                 /* \v undefined in traditional C */
933                                 warning(264);
934                         return ('\v');
935                 case '8': case '9':
936                         /* bad octal digit %c */
937                         warning(77, c);
938                         /* FALLTHROUGH */
939                 case '0': case '1': case '2': case '3':
940                 case '4': case '5': case '6': case '7':
941                         n = 3;
942                         v = 0;
943                         do {
944                                 v = (v << 3) + (c - '0');
945                                 c = inpc();
946                         } while (--n && isdigit(c) && (tflag || c <= '7'));
947                         if (tflag && n > 0 && isdigit(c))
948                                 /* bad octal digit %c */
949                                 warning(77, c);
950                         pbc = c;
951                         if (v > UCHAR_MAX) {
952                                 /* character escape does not fit in char. */
953                                 warning(76);
954                                 v &= CHAR_MASK;
955                         }
956                         return (v);
957                 case 'x':
958                         if (tflag)
959                                 /* \x undefined in traditional C */
960                                 warning(82);
961                         v = 0;
962                         n = 0;
963                         while ((c = inpc()) >= 0 && isxdigit(c)) {
964                                 c = isdigit(c) ?
965                                         c - '0' : toupper(c) - 'A' + 10;
966                                 v = (v << 4) + c;
967                                 if (n >= 0) {
968                                         if ((v & ~CHAR_MASK) != 0) {
969                                                 /* overflow in hex escape */
970                                                 warning(75);
971                                                 n = -1;
972                                         } else {
973                                                 n++;
974                                         }
975                                 }
976                         }
977                         pbc = c;
978                         if (n == 0) {
979                                 /* no hex digits follow \x */
980                                 error(74);
981                         } if (n == -1) {
982                                 v &= CHAR_MASK;
983                         }
984                         return (v);
985                 case '\n':
986                         return (getescc(d));
987                 case EOF:
988                         return (-2);
989                 default:
990                         if (isprint(c)) {
991                                 /* dubious escape \%c */
992                                 warning(79, c);
993                         } else {
994                                 /* dubious escape \%o */
995                                 warning(80, c);
996                         }
997                 }
998         }
999         return (c);
1003  * Called for preprocessor directives. Currently implemented are:
1004  *      # lineno
1005  *      # lineno "filename"
1006  */
1007 static void
1008 directive(void)
1010         const   char *cp, *fn;
1011         char    c, *eptr;
1012         size_t  fnl;
1013         long    ln;
1014         static  int first = 1;
1016         /* Go to first non-whitespace after # */
1017         for (cp = yytext + 1; (c = *cp) == ' ' || c == '\t'; cp++)
1018                 continue;
1020         if (!isdigit((unsigned char)c)) {
1021         error:
1022                 /* undefined or invalid # directive */
1023                 warning(255);
1024                 return;
1025         }
1026         ln = strtol(--cp, &eptr, 10);
1027         if (cp == eptr)
1028                 goto error;
1029         if ((c = *(cp = eptr)) != ' ' && c != '\t' && c != '\0')
1030                 goto error;
1031         while ((c = *cp++) == ' ' || c == '\t')
1032                 continue;
1033         if (c != '\0') {
1034                 if (c != '"')
1035                         goto error;
1036                 fn = cp;
1037                 while ((c = *cp) != '"' && c != '\0')
1038                         cp++;
1039                 if (c != '"')
1040                         goto error;
1041                 if ((fnl = cp++ - fn) > PATH_MAX)
1042                         goto error;
1043                 while ((c = *cp++) == ' ' || c == '\t')
1044                         continue;
1045 #if 0
1046                 if (c != '\0')
1047                         warning("extra character(s) after directive");
1048 #endif
1050                 /* empty string means stdin */
1051                 if (fnl == 0) {
1052                         fn = "{standard input}";
1053                         fnl = 16;                       /* strlen (fn) */
1054                 }
1055                 curr_pos.p_file = fnnalloc(fn, fnl);
1056                 /*
1057                  * If this is the first directive, the name is the name
1058                  * of the C source file as specified at the command line.
1059                  * It is written to the output file.
1060                  */
1061                 if (first) {
1062                         csrc_pos.p_file = curr_pos.p_file;
1063                         outsrc(curr_pos.p_file);
1064                         first = 0;
1065                 }
1066         }
1067         curr_pos.p_line = (int)ln - 1;
1068         curr_pos.p_uniq = 0;
1069         if (curr_pos.p_file == csrc_pos.p_file) {
1070                 csrc_pos.p_line = (int)ln - 1;
1071                 csrc_pos.p_uniq = 0;
1072         }
1076  * Handle lint comments. Following comments are currently understood:
1077  *      ARGSUSEDn
1078  *      BITFIELDTYPE
1079  *      CONSTCOND CONSTANTCOND CONSTANTCONDITION
1080  *      FALLTHRU FALLTHROUGH
1081  *      LINTLIBRARY
1082  *      LINTED NOSTRICT
1083  *      LONGLONG
1084  *      NOTREACHED
1085  *      PRINTFLIKEn
1086  *      PROTOLIB
1087  *      SCANFLIKEn
1088  *      VARARGSn
1089  * If one of this comments is recognized, the arguments, if any, are
1090  * parsed and a function which handles this comment is called.
1091  */
1092 static void
1093 comment(void)
1095         int     c, lc;
1096         static struct {
1097                 const   char *keywd;
1098                 int     arg;
1099                 void    (*func)(int);
1100         } keywtab[] = {
1101                 { "ARGSUSED",           1,      argsused        },
1102                 { "BITFIELDTYPE",       0,      bitfieldtype    },
1103                 { "CONSTCOND",          0,      constcond       },
1104                 { "CONSTANTCOND",       0,      constcond       },
1105                 { "CONSTANTCONDITION",  0,      constcond       },
1106                 { "FALLTHRU",           0,      fallthru        },
1107                 { "FALLTHROUGH",        0,      fallthru        },
1108                 { "LINTLIBRARY",        0,      lintlib         },
1109                 { "LINTED",             0,      linted          },
1110                 { "LONGLONG",           0,      longlong        },
1111                 { "NOSTRICT",           0,      linted          },
1112                 { "NOTREACHED",         0,      notreach        },
1113                 { "PRINTFLIKE",         1,      printflike      },
1114                 { "PROTOLIB",           1,      protolib        },
1115                 { "SCANFLIKE",          1,      scanflike       },
1116                 { "VARARGS",            1,      varargs         },
1117         };
1118         char    keywd[32];
1119         char    arg[32];
1120         size_t  l, i;
1121         int     a;
1122         int     eoc;
1124         eoc = 0;
1126         /* Skip white spaces after the start of the comment */
1127         while ((c = inpc()) != EOF && isspace(c))
1128                 continue;
1130         /* Read the potential keyword to keywd */
1131         l = 0;
1132         while (c != EOF && isupper(c) && l < sizeof (keywd) - 1) {
1133                 keywd[l++] = (char)c;
1134                 c = inpc();
1135         }
1136         keywd[l] = '\0';
1138         /* look for the keyword */
1139         for (i = 0; i < sizeof (keywtab) / sizeof (keywtab[0]); i++) {
1140                 if (strcmp(keywtab[i].keywd, keywd) == 0)
1141                         break;
1142         }
1143         if (i == sizeof (keywtab) / sizeof (keywtab[0]))
1144                 goto skip_rest;
1146         /* skip white spaces after the keyword */
1147         while (c != EOF && isspace(c))
1148                 c = inpc();
1150         /* read the argument, if the keyword accepts one and there is one */
1151         l = 0;
1152         if (keywtab[i].arg) {
1153                 while (c != EOF && isdigit(c) && l < sizeof (arg) - 1) {
1154                         arg[l++] = (char)c;
1155                         c = inpc();
1156                 }
1157         }
1158         arg[l] = '\0';
1159         a = l != 0 ? atoi(arg) : -1;
1161         /* skip white spaces after the argument */
1162         while (c != EOF && isspace(c))
1163                 c = inpc();
1165         if (c != '*' || (c = inpc()) != '/') {
1166                 if (keywtab[i].func != linted)
1167                         /* extra characters in lint comment */
1168                         warning(257);
1169         } else {
1170                 /*
1171                  * remember that we have already found the end of the
1172                  * comment
1173                  */
1174                 eoc = 1;
1175         }
1177         if (keywtab[i].func != NULL)
1178                 (*keywtab[i].func)(a);
1180  skip_rest:
1181         while (!eoc) {
1182                 lc = c;
1183                 if ((c = inpc()) == EOF) {
1184                         /* unterminated comment */
1185                         error(256);
1186                         break;
1187                 }
1188                 if (lc == '*' && c == '/')
1189                         eoc = 1;
1190         }
1194  * Handle // style comments
1195  */
1196 static void
1197 slashslashcomment(void)
1199         int c;
1201         if (!Sflag && !gflag)
1202                 /* // comments only supported in C99 */
1203                 (void)gnuism(312, tflag ? "traditional" : "ANSI");
1205         while ((c = inpc()) != EOF && c != '\n')
1206                 continue;
1210  * Clear flags for lint comments LINTED, LONGLONG and CONSTCOND.
1211  * clrwflgs() is called after function definitions and global and
1212  * local declarations and definitions. It is also called between
1213  * the controlling expression and the body of control statements
1214  * (if, switch, for, while).
1215  */
1216 void
1217 clrwflgs(void)
1220         nowarn = 0;
1221         quadflg = 0;
1222         ccflg = 0;
1226  * Strings are stored in a dynamically alloceted buffer and passed
1227  * in yylval.y_xstrg to the parser. The parser or the routines called
1228  * by the parser are responsible for freeing this buffer.
1229  */
1230 static int
1231 string(void)
1233         u_char  *s;
1234         int     c;
1235         size_t  len, max;
1236         strg_t  *strg;
1238         s = xmalloc(max = 64);
1240         len = 0;
1241         while ((c = getescc('"')) >= 0) {
1242                 /* +1 to reserve space for a trailing NUL character */
1243                 if (len + 1 == max)
1244                         s = xrealloc(s, max *= 2);
1245                 s[len++] = (char)c;
1246         }
1247         s[len] = '\0';
1248         if (c == -2)
1249                 /* unterminated string constant */
1250                 error(258);
1252         strg = xcalloc(1, sizeof (strg_t));
1253         strg->st_tspec = CHAR;
1254         strg->st_len = len;
1255         strg->st_cp = s;
1257         yylval.y_strg = strg;
1258         return (T_STRING);
1261 static int
1262 wcstrg(void)
1264         char    *s;
1265         int     c, n;
1266         size_t  i, wi;
1267         size_t  len, max, wlen;
1268         wchar_t *ws;
1269         strg_t  *strg;
1271         s = xmalloc(max = 64);
1272         len = 0;
1273         while ((c = getescc('"')) >= 0) {
1274                 /* +1 to save space for a trailing NUL character */
1275                 if (len + 1 >= max)
1276                         s = xrealloc(s, max *= 2);
1277                 s[len++] = (char)c;
1278         }
1279         s[len] = '\0';
1280         if (c == -2)
1281                 /* unterminated string constant */
1282                 error(258);
1284         /* get length of wide character string */
1285         (void)mblen(NULL, 0);
1286         for (i = 0, wlen = 0; i < len; i += n, wlen++) {
1287                 if ((n = mblen(&s[i], MB_CUR_MAX)) == -1) {
1288                         /* invalid multibyte character */
1289                         error(291);
1290                         break;
1291                 }
1292                 if (n == 0)
1293                         n = 1;
1294         }
1296         ws = xmalloc((wlen + 1) * sizeof (wchar_t));
1298         /* convert from multibyte to wide char */
1299         (void)mbtowc(NULL, NULL, 0);
1300         for (i = 0, wi = 0; i < len; i += n, wi++) {
1301                 if ((n = mbtowc(&ws[wi], &s[i], MB_CUR_MAX)) == -1)
1302                         break;
1303                 if (n == 0)
1304                         n = 1;
1305         }
1306         ws[wi] = 0;
1307         free(s);
1309         strg = xcalloc(1, sizeof (strg_t));
1310         strg->st_tspec = WCHAR;
1311         strg->st_len = wlen;
1312         strg->st_wcp = ws;
1314         yylval.y_strg = strg;
1315         return (T_STRING);
1319  * As noted above the scanner does not create new symbol table entries
1320  * for symbols it cannot find in the symbol table. This is to avoid
1321  * putting undeclared symbols into the symbol table if a syntax error
1322  * occurs.
1324  * getsym() is called as soon as it is probably ok to put the symbol to
1325  * the symbol table. This does not mean that it is not possible that
1326  * symbols are put to the symbol table which are than not completely
1327  * declared due to syntax errors. To avoid too many problems in this
1328  * case symbols get type int in getsym().
1330  * XXX calls to getsym() should be delayed until decl1*() is called
1331  */
1332 sym_t *
1333 getsym(sbuf_t *sb)
1335         dinfo_t *di;
1336         char    *s;
1337         sym_t   *sym;
1339         sym = sb->sb_sym;
1341         /*
1342          * During member declaration it is possible that name() looked
1343          * for symbols of type FVFT, although it should have looked for
1344          * symbols of type FTAG. Same can happen for labels. Both cases
1345          * are compensated here.
1346          */
1347         if (symtyp == FMOS || symtyp == FLAB) {
1348                 if (sym == NULL || sym->s_kind == FVFT)
1349                         sym = search(sb);
1350         }
1352         if (sym != NULL) {
1353                 if (sym->s_kind != symtyp)
1354                         LERROR("storesym()");
1355                 symtyp = FVFT;
1356                 freesb(sb);
1357                 return (sym);
1358         }
1360         /* create a new symbol table entry */
1362         /* labels must always be allocated at level 1 (outhermost block) */
1363         if (symtyp == FLAB) {
1364                 sym = getlblk(1, sizeof (sym_t));
1365                 s = getlblk(1, sb->sb_len + 1);
1366                 (void)memcpy(s, sb->sb_name, sb->sb_len + 1);
1367                 sym->s_name = s;
1368                 sym->s_blklev = 1;
1369                 di = dcs;
1370                 while (di->d_nxt != NULL && di->d_nxt->d_nxt != NULL)
1371                         di = di->d_nxt;
1372                 if (di->d_ctx != AUTO)
1373                         LERROR("storesym()");
1374         } else {
1375                 sym = getblk(sizeof (sym_t));
1376                 sym->s_name = sb->sb_name;
1377                 sym->s_blklev = blklev;
1378                 di = dcs;
1379         }
1381         UNIQUE_CURR_POS(sym->s_dpos);
1382         if ((sym->s_kind = symtyp) != FLAB)
1383                 sym->s_type = gettyp(INT);
1385         symtyp = FVFT;
1387         if ((sym->s_link = symtab[sb->sb_hash]) != NULL)
1388                 symtab[sb->sb_hash]->s_rlink = &sym->s_link;
1389         (symtab[sb->sb_hash] = sym)->s_rlink = &symtab[sb->sb_hash];
1391         *di->d_ldlsym = sym;
1392         di->d_ldlsym = &sym->s_dlnxt;
1394         freesb(sb);
1395         return (sym);
1399  * Construct a temporary symbol. The symbol starts with a digit, so that
1400  * it is illegal.
1401  */
1402 sym_t *
1403 mktempsym(type_t *t)
1405         static int n = 0;
1406         int h;
1407         char *s = getlblk(blklev, 64);
1408         sym_t *sym = getblk(sizeof (sym_t));
1410         (void)snprintf(s, 64, "%.8d_tmp", n++);
1411         h = hash(s);
1413         sym->s_name = s;
1414         sym->s_type = t;
1415         sym->s_blklev = blklev;
1416         sym->s_scl = AUTO;
1417         sym->s_kind = FVFT;
1418         sym->s_used = 1;
1419         sym->s_set = 1;
1421         if ((sym->s_link = symtab[h]) != NULL)
1422                 symtab[h]->s_rlink = &sym->s_link;
1423         (symtab[h] = sym)->s_rlink = &symtab[h];
1425         *dcs->d_ldlsym = sym;
1426         dcs->d_ldlsym = &sym->s_dlnxt;
1428         return sym;
1432  * Remove a symbol forever from the symbol table. s_blklev
1433  * is set to -1 to avoid that the symbol will later be put
1434  * back to the symbol table.
1435  */
1436 void
1437 rmsym(sym_t *sym)
1440         if ((*sym->s_rlink = sym->s_link) != NULL)
1441                 sym->s_link->s_rlink = sym->s_rlink;
1442         sym->s_blklev = -1;
1443         sym->s_link = NULL;
1447  * Remove a list of symbols declared at one level from the symbol
1448  * table.
1449  */
1450 void
1451 rmsyms(sym_t *syms)
1453         sym_t   *sym;
1455         for (sym = syms; sym != NULL; sym = sym->s_dlnxt) {
1456                 if (sym->s_blklev != -1) {
1457                         if ((*sym->s_rlink = sym->s_link) != NULL)
1458                                 sym->s_link->s_rlink = sym->s_rlink;
1459                         sym->s_link = NULL;
1460                         sym->s_rlink = NULL;
1461                 }
1462         }
1466  * Put a symbol into the symbol table
1467  */
1468 void
1469 inssym(int bl, sym_t *sym)
1471         int     h;
1473         h = hash(sym->s_name);
1474         if ((sym->s_link = symtab[h]) != NULL)
1475                 symtab[h]->s_rlink = &sym->s_link;
1476         (symtab[h] = sym)->s_rlink = &symtab[h];
1477         sym->s_blklev = bl;
1478         if (sym->s_link != NULL && sym->s_blklev < sym->s_link->s_blklev)
1479                 LERROR("inssym()");
1483  * Called at level 0 after syntax errors
1484  * Removes all symbols which are not declared at level 0 from the
1485  * symbol table. Also frees all memory which is not associated with
1486  * level 0.
1487  */
1488 void
1489 cleanup(void)
1491         sym_t   *sym, *nsym;
1492         int     i;
1494         for (i = 0; i < HSHSIZ1; i++) {
1495                 for (sym = symtab[i]; sym != NULL; sym = nsym) {
1496                         nsym = sym->s_link;
1497                         if (sym->s_blklev >= 1) {
1498                                 if ((*sym->s_rlink = nsym) != NULL)
1499                                         nsym->s_rlink = sym->s_rlink;
1500                         }
1501                 }
1502         }
1504         for (i = mblklev; i > 0; i--)
1505                 freelblk(i);
1509  * Create a new symbol with the name of an existing symbol.
1510  */
1511 sym_t *
1512 pushdown(sym_t *sym)
1514         int     h;
1515         sym_t   *nsym;
1517         h = hash(sym->s_name);
1518         nsym = getblk(sizeof (sym_t));
1519         if (sym->s_blklev > blklev)
1520                 LERROR("pushdown()");
1521         nsym->s_name = sym->s_name;
1522         UNIQUE_CURR_POS(nsym->s_dpos);
1523         nsym->s_kind = sym->s_kind;
1524         nsym->s_blklev = blklev;
1526         if ((nsym->s_link = symtab[h]) != NULL)
1527                 symtab[h]->s_rlink = &nsym->s_link;
1528         (symtab[h] = nsym)->s_rlink = &symtab[h];
1530         *dcs->d_ldlsym = nsym;
1531         dcs->d_ldlsym = &nsym->s_dlnxt;
1533         return (nsym);
1537  * Free any dynamically allocated memory referenced by
1538  * the value stack or yylval.
1539  * The type of information in yylval is described by tok.
1540  */
1541 void
1542 freeyyv(void *sp, int tok)
1544         if (tok == T_NAME || tok == T_TYPENAME) {
1545                 sbuf_t *sb = *(sbuf_t **)sp;
1546                 freesb(sb);
1547         } else if (tok == T_CON) {
1548                 val_t *val = *(val_t **)sp;
1549                 free(val);
1550         } else if (tok == T_STRING) {
1551                 strg_t *strg = *(strg_t **)sp;
1552                 if (strg->st_tspec == CHAR) {
1553                         free(strg->st_cp);
1554                 } else if (strg->st_tspec == WCHAR) {
1555                         free(strg->st_wcp);
1556                 } else {
1557                         LERROR("fryylv()");
1558                 }
1559                 free(strg);
1560         }