Home | History | Annotate | Line # | Download | only in lint1
scan.l revision 1.1
      1  1.1  cgd %{
      2  1.1  cgd /*
      3  1.1  cgd  * Copyright (c) 1994, 1995 Jochen Pohl
      4  1.1  cgd  * All Rights Reserved.
      5  1.1  cgd  *
      6  1.1  cgd  * Redistribution and use in source and binary forms, with or without
      7  1.1  cgd  * modification, are permitted provided that the following conditions
      8  1.1  cgd  * are met:
      9  1.1  cgd  * 1. Redistributions of source code must retain the above copyright
     10  1.1  cgd  *    notice, this list of conditions and the following disclaimer.
     11  1.1  cgd  * 2. Redistributions in binary form must reproduce the above copyright
     12  1.1  cgd  *    notice, this list of conditions and the following disclaimer in the
     13  1.1  cgd  *    documentation and/or other materials provided with the distribution.
     14  1.1  cgd  * 3. All advertising materials mentioning features or use of this software
     15  1.1  cgd  *    must display the following acknowledgement:
     16  1.1  cgd  *      This product includes software developed by Jochen Pohl for
     17  1.1  cgd  *      The NetBSD Project.
     18  1.1  cgd  * 4. The name of the author may not be used to endorse or promote products
     19  1.1  cgd  *    derived from this software without specific prior written permission.
     20  1.1  cgd  *
     21  1.1  cgd  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     22  1.1  cgd  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     23  1.1  cgd  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     24  1.1  cgd  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     25  1.1  cgd  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     26  1.1  cgd  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     27  1.1  cgd  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     28  1.1  cgd  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     29  1.1  cgd  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     30  1.1  cgd  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     31  1.1  cgd  *
     32  1.1  cgd  *	$Id: scan.l,v 1.1 1995/07/03 20:56:37 cgd Exp $
     33  1.1  cgd  */
     34  1.1  cgd 
     35  1.1  cgd #ifndef lint
     36  1.1  cgd static char rcsid[] = "$Id: scan.l,v 1.1 1995/07/03 20:56:37 cgd Exp $";
     37  1.1  cgd #endif
     38  1.1  cgd 
     39  1.1  cgd #include <stdlib.h>
     40  1.1  cgd #include <string.h>
     41  1.1  cgd #include <limits.h>
     42  1.1  cgd #include <float.h>
     43  1.1  cgd #include <ctype.h>
     44  1.1  cgd #include <errno.h>
     45  1.1  cgd #include <math.h>
     46  1.1  cgd #include <err.h>
     47  1.1  cgd 
     48  1.1  cgd #include "lint1.h"
     49  1.1  cgd #include "y.tab.h"
     50  1.1  cgd 
     51  1.1  cgd #define CHAR_MASK	(~(~0 << CHAR_BIT))
     52  1.1  cgd 
     53  1.1  cgd /* XXX declaration of strtouq() is missing in stdlib.h ? */
     54  1.1  cgd extern	u_quad_t strtouq __P((const char *, char **, int));
     55  1.1  cgd 
     56  1.1  cgd /* Current position (its also updated when an included file is parsed) */
     57  1.1  cgd pos_t	curr_pos = { 1, "" };
     58  1.1  cgd 
     59  1.1  cgd /*
     60  1.1  cgd  * Current position in C source (not updated when an included file is
     61  1.1  cgd  * parsed).
     62  1.1  cgd  */
     63  1.1  cgd pos_t	csrc_pos = { 1, "" };
     64  1.1  cgd 
     65  1.1  cgd /* Line number in output of cpp */
     66  1.1  cgd int	isrcline = 1;
     67  1.1  cgd 
     68  1.1  cgd static	void	incline __P((void));
     69  1.1  cgd static	void	badchar __P((int));
     70  1.1  cgd static	sbuf_t	*allocsb __P((void));
     71  1.1  cgd static	void	freesb __P((sbuf_t *));
     72  1.1  cgd static	int	inpc __P((void));
     73  1.1  cgd static	int	hash __P((const char *));
     74  1.1  cgd static	sym_t	*search __P((sbuf_t *));
     75  1.1  cgd static	int	name __P((void));
     76  1.1  cgd static	int	keyw __P((sym_t *));
     77  1.1  cgd static	int	icon __P((int));
     78  1.1  cgd static	int	fcon __P((void));
     79  1.1  cgd static	int	operator __P((int, op_t));
     80  1.1  cgd static	int	ccon __P((void));
     81  1.1  cgd static	int	wccon __P((void));
     82  1.1  cgd static	int	getescc __P((int));
     83  1.1  cgd static	void	directive __P((void));
     84  1.1  cgd static	void	comment __P((void));
     85  1.1  cgd static	int	string __P((void));
     86  1.1  cgd static	int	wcstrg __P((void));
     87  1.1  cgd 
     88  1.1  cgd %}
     89  1.1  cgd 
     90  1.1  cgd L	[_A-Za-z]
     91  1.1  cgd D	[0-9]
     92  1.1  cgd NZD	[1-9]
     93  1.1  cgd OD	[0-7]
     94  1.1  cgd HD	[0-9A-Fa-f]
     95  1.1  cgd EX	([eE][+-]?[0-9]+)
     96  1.1  cgd 
     97  1.1  cgd %%
     98  1.1  cgd 
     99  1.1  cgd {L}({L}|{D})*		 	return (name());
    100  1.1  cgd 0{OD}*[lLuU]*			return (icon(8));
    101  1.1  cgd {NZD}{D}*[lLuU]*		return (icon(10));
    102  1.1  cgd 0[xX]{HD}+[lLuU]*		return (icon(16));
    103  1.1  cgd {D}+\.{D}*{EX}?[fFlL]?		|
    104  1.1  cgd {D}+{EX}[fFlL]?			|
    105  1.1  cgd \.{D}+{EX}?[fFlL]?		return (fcon());
    106  1.1  cgd "="				return (operator(T_ASSIGN, ASSIGN));
    107  1.1  cgd "*="				return (operator(T_OPASS, MULASS));
    108  1.1  cgd "/="				return (operator(T_OPASS, DIVASS));
    109  1.1  cgd "%="				return (operator(T_OPASS, MODASS));
    110  1.1  cgd "+="				return (operator(T_OPASS, ADDASS));
    111  1.1  cgd "-="				return (operator(T_OPASS, SUBASS));
    112  1.1  cgd "<<="				return (operator(T_OPASS, SHLASS));
    113  1.1  cgd ">>="				return (operator(T_OPASS, SHRASS));
    114  1.1  cgd "&="				return (operator(T_OPASS, ANDASS));
    115  1.1  cgd "^="				return (operator(T_OPASS, XORASS));
    116  1.1  cgd "|="				return (operator(T_OPASS, ORASS));
    117  1.1  cgd "||"				return (operator(T_LOGOR, LOGOR));
    118  1.1  cgd "&&"				return (operator(T_LOGAND, LOGAND));
    119  1.1  cgd "|"				return (operator(T_OR, OR));
    120  1.1  cgd "&"				return (operator(T_AND, AND));
    121  1.1  cgd "^"				return (operator(T_XOR, XOR));
    122  1.1  cgd "=="				return (operator(T_EQOP, EQ));
    123  1.1  cgd "!="				return (operator(T_EQOP, NE));
    124  1.1  cgd "<"				return (operator(T_RELOP, LT));
    125  1.1  cgd ">"				return (operator(T_RELOP, GT));
    126  1.1  cgd "<="				return (operator(T_RELOP, LE));
    127  1.1  cgd ">="				return (operator(T_RELOP, GE));
    128  1.1  cgd "<<"				return (operator(T_SHFTOP, SHL));
    129  1.1  cgd ">>"				return (operator(T_SHFTOP, SHR));
    130  1.1  cgd "++"				return (operator(T_INCDEC, INC));
    131  1.1  cgd "--"				return (operator(T_INCDEC, DEC));
    132  1.1  cgd "->"				return (operator(T_STROP, ARROW));
    133  1.1  cgd "."				return (operator(T_STROP, POINT));
    134  1.1  cgd "+"				return (operator(T_ADDOP, PLUS));
    135  1.1  cgd "-"				return (operator(T_ADDOP, MINUS));
    136  1.1  cgd "*"				return (operator(T_MULT, MULT));
    137  1.1  cgd "/"				return (operator(T_DIVOP, DIV));
    138  1.1  cgd "%"				return (operator(T_DIVOP, MOD));
    139  1.1  cgd "!"				return (operator(T_UNOP, NOT));
    140  1.1  cgd "~"				return (operator(T_UNOP, COMPL));
    141  1.1  cgd "\""				return (string());
    142  1.1  cgd "L\""				return (wcstrg());
    143  1.1  cgd ";"				return (T_SEMI);
    144  1.1  cgd "{"				return (T_LBRACE);
    145  1.1  cgd "}"				return (T_RBRACE);
    146  1.1  cgd ","				return (T_COMMA);
    147  1.1  cgd ":"				return (T_COLON);
    148  1.1  cgd "?"				return (T_QUEST);
    149  1.1  cgd "["				return (T_LBRACK);
    150  1.1  cgd "]"				return (T_RBRACK);
    151  1.1  cgd "("				return (T_LPARN);
    152  1.1  cgd ")"				return (T_RPARN);
    153  1.1  cgd "..."				return (T_ELLIPSE);
    154  1.1  cgd "'"				return (ccon());
    155  1.1  cgd "L'"				return (wccon());
    156  1.1  cgd ^#.*$				directive();
    157  1.1  cgd \n				incline();
    158  1.1  cgd \t|" "|\f|\v			;
    159  1.1  cgd "/*"				comment();
    160  1.1  cgd .				badchar(yytext[0]);
    161  1.1  cgd 
    162  1.1  cgd %%
    163  1.1  cgd 
    164  1.1  cgd static void
    165  1.1  cgd incline()
    166  1.1  cgd {
    167  1.1  cgd 	curr_pos.p_line++;
    168  1.1  cgd 	isrcline++;
    169  1.1  cgd 	if (curr_pos.p_file == csrc_pos.p_file)
    170  1.1  cgd 		csrc_pos.p_line++;
    171  1.1  cgd }
    172  1.1  cgd 
    173  1.1  cgd static void
    174  1.1  cgd badchar(c)
    175  1.1  cgd 	int	c;
    176  1.1  cgd {
    177  1.1  cgd 	/* unknown character \%o */
    178  1.1  cgd 	error(250, c);
    179  1.1  cgd }
    180  1.1  cgd 
    181  1.1  cgd /*
    182  1.1  cgd  * Keywords.
    183  1.1  cgd  * During initialisation they are written to the symbol table.
    184  1.1  cgd  */
    185  1.1  cgd static	struct	kwtab {
    186  1.1  cgd 	const	char *kw_name;	/* keyword */
    187  1.1  cgd 	int	kw_token;	/* token returned by yylex() */
    188  1.1  cgd 	scl_t	kw_scl;		/* storage class if kw_token T_SCLASS */
    189  1.1  cgd 	tspec_t	kw_tspec;	/* type spec. if kw_token T_TYPE or T_SOU */
    190  1.1  cgd 	tqual_t	kw_tqual;	/* type qual. fi kw_token T_QUAL */
    191  1.1  cgd } kwtab[] = {
    192  1.1  cgd 	{"auto",	T_SCLASS,	AUTO,	0,	0	},
    193  1.1  cgd 	{"break",	T_BREAK,	0,	0,	0	},
    194  1.1  cgd 	{"case",	T_CASE,		0,	0,	0	},
    195  1.1  cgd 	{"char",	T_TYPE,		0,	CHAR,	0	},
    196  1.1  cgd 	{"const",	T_QUAL,		0,	0,	CONST	},
    197  1.1  cgd 	{"continue",	T_CONTINUE,	0,	0,	0	},
    198  1.1  cgd 	{"default",	T_DEFAULT,	0,	0,	0	},
    199  1.1  cgd 	{"do",		T_DO,		0,	0,	0	},
    200  1.1  cgd 	{"double",	T_TYPE,		0,	DOUBLE,	0	},
    201  1.1  cgd 	{"else",	T_ELSE,		0,	0,	0	},
    202  1.1  cgd 	{"enum",	T_ENUM,		0,	0,	0	},
    203  1.1  cgd 	{"extern",	T_SCLASS,	EXTERN,	0,	0	},
    204  1.1  cgd 	{"float",	T_TYPE,		0,	FLOAT,	0	},
    205  1.1  cgd 	{"for",		T_FOR,		0,	0,	0	},
    206  1.1  cgd 	{"goto",	T_GOTO,		0,	0,	0	},
    207  1.1  cgd 	{"if",		T_IF,		0,	0,	0	},
    208  1.1  cgd 	{"int",		T_TYPE,		0,	INT,	0	},
    209  1.1  cgd 	{"long",	T_TYPE,		0,	LONG,	0	},
    210  1.1  cgd 	{"register",	T_SCLASS,	REG,	0,	0	},
    211  1.1  cgd 	{"return",	T_RETURN,	0,	0,	0	},
    212  1.1  cgd 	{"short",	T_TYPE,		0,	SHORT,	0	},
    213  1.1  cgd 	{"signed",	T_TYPE,		0,	SIGNED,	0	},
    214  1.1  cgd 	{"sizeof",	T_SIZEOF,	0,	0,	0	},
    215  1.1  cgd 	{"static",	T_SCLASS,	STATIC,	0,	0	},
    216  1.1  cgd 	{"struct",	T_SOU,		0,	STRUCT,	0	},
    217  1.1  cgd 	{"switch",	T_SWITCH,	0,	0,	0	},
    218  1.1  cgd 	{"typedef",	T_SCLASS,	TYPEDEF, 0,	0	},
    219  1.1  cgd 	{"union",	T_SOU,		0,	UNION,	0	},
    220  1.1  cgd 	{"unsigned",	T_TYPE,		0,	UNSIGN,	0	},
    221  1.1  cgd 	{"void",	T_TYPE,		0,	VOID,	0	},
    222  1.1  cgd 	{"volatile",	T_QUAL,		0,	0,	VOLATILE },
    223  1.1  cgd 	{"while",	T_WHILE,	0,	0,	0	},
    224  1.1  cgd 	{NULL,		0,		0,	0,	0	}
    225  1.1  cgd };
    226  1.1  cgd 
    227  1.1  cgd /* Symbol table */
    228  1.1  cgd static	sym_t	*symtab[HSHSIZ1];
    229  1.1  cgd 
    230  1.1  cgd /* bit i of the entry with index i is set */
    231  1.1  cgd u_quad_t qbmasks[sizeof(u_quad_t) * CHAR_BIT];
    232  1.1  cgd 
    233  1.1  cgd /* least significant i bits are set in the entry with index i */
    234  1.1  cgd u_quad_t qlmasks[sizeof(u_quad_t) * CHAR_BIT + 1];
    235  1.1  cgd 
    236  1.1  cgd /* least significant i bits are not set in the entry with index i */
    237  1.1  cgd u_quad_t qumasks[sizeof(u_quad_t) * CHAR_BIT + 1];
    238  1.1  cgd 
    239  1.1  cgd /* free list for sbuf structures */
    240  1.1  cgd static	sbuf_t	 *sbfrlst;
    241  1.1  cgd 
    242  1.1  cgd /* Typ of next expected symbol */
    243  1.1  cgd symt_t	symtyp;
    244  1.1  cgd 
    245  1.1  cgd 
    246  1.1  cgd /*
    247  1.1  cgd  * All keywords are written to the symbol table. This saves us looking
    248  1.1  cgd  * in a extra table for each name we found.
    249  1.1  cgd  */
    250  1.1  cgd void
    251  1.1  cgd initscan()
    252  1.1  cgd {
    253  1.1  cgd 	struct	kwtab *kw;
    254  1.1  cgd 	sym_t	*sym;
    255  1.1  cgd 	int	h, i;
    256  1.1  cgd 	u_quad_t uq;
    257  1.1  cgd 
    258  1.1  cgd 	for (kw = kwtab; kw->kw_name != NULL; kw++) {
    259  1.1  cgd 		sym = getblk(sizeof (sym_t));
    260  1.1  cgd 		sym->s_name = kw->kw_name;
    261  1.1  cgd 		sym->s_keyw = 1;
    262  1.1  cgd 		sym->s_value.v_quad = kw->kw_token;
    263  1.1  cgd 		if (kw->kw_token == T_TYPE || kw->kw_token == T_SOU) {
    264  1.1  cgd 			sym->s_tspec = kw->kw_tspec;
    265  1.1  cgd 		} else if (kw->kw_token == T_SCLASS) {
    266  1.1  cgd 			sym->s_scl = kw->kw_scl;
    267  1.1  cgd 		} else if (kw->kw_token == T_QUAL) {
    268  1.1  cgd 			sym->s_tqual = kw->kw_tqual;
    269  1.1  cgd 		}
    270  1.1  cgd 		h = hash(sym->s_name);
    271  1.1  cgd 		if ((sym->s_link = symtab[h]) != NULL)
    272  1.1  cgd 			symtab[h]->s_rlink = &sym->s_link;
    273  1.1  cgd 		(symtab[h] = sym)->s_rlink = &symtab[h];
    274  1.1  cgd 	}
    275  1.1  cgd 
    276  1.1  cgd 	/* initialize bit-masks for quads */
    277  1.1  cgd 	for (i = 0; i < sizeof (u_quad_t) * CHAR_BIT; i++) {
    278  1.1  cgd 		qbmasks[i] = (u_quad_t)1 << i;
    279  1.1  cgd 		uq = ~(u_quad_t)0 << i;
    280  1.1  cgd 		qumasks[i] = uq;
    281  1.1  cgd 		qlmasks[i] = ~uq;
    282  1.1  cgd 	}
    283  1.1  cgd 	qumasks[i] = 0;
    284  1.1  cgd 	qlmasks[i] = ~(u_quad_t)0;
    285  1.1  cgd }
    286  1.1  cgd 
    287  1.1  cgd /*
    288  1.1  cgd  * Get a free sbuf structure, if possible from the free list
    289  1.1  cgd  */
    290  1.1  cgd static sbuf_t *
    291  1.1  cgd allocsb()
    292  1.1  cgd {
    293  1.1  cgd 	sbuf_t	*sb;
    294  1.1  cgd 
    295  1.1  cgd 	if ((sb = sbfrlst) != NULL) {
    296  1.1  cgd 		sbfrlst = sb->sb_nxt;
    297  1.1  cgd 	} else {
    298  1.1  cgd 		sb = xmalloc(sizeof (sbuf_t));
    299  1.1  cgd 	}
    300  1.1  cgd 	(void)memset(sb, 0, sizeof (sb));
    301  1.1  cgd 	return (sb);
    302  1.1  cgd }
    303  1.1  cgd 
    304  1.1  cgd /*
    305  1.1  cgd  * Put a sbuf structure to the free list
    306  1.1  cgd  */
    307  1.1  cgd static void
    308  1.1  cgd freesb(sb)
    309  1.1  cgd 	sbuf_t	*sb;
    310  1.1  cgd {
    311  1.1  cgd 	sb->sb_nxt = sbfrlst;
    312  1.1  cgd 	sbfrlst = sb;
    313  1.1  cgd }
    314  1.1  cgd 
    315  1.1  cgd /*
    316  1.1  cgd  * Read a character and ensure that it is positive (except EOF).
    317  1.1  cgd  * Increment line count(s) if necessary.
    318  1.1  cgd  */
    319  1.1  cgd static int
    320  1.1  cgd inpc()
    321  1.1  cgd {
    322  1.1  cgd 	int	c;
    323  1.1  cgd 
    324  1.1  cgd 	if ((c = input()) != EOF && (c &= CHAR_MASK) == '\n')
    325  1.1  cgd 		incline();
    326  1.1  cgd 	return (c);
    327  1.1  cgd }
    328  1.1  cgd 
    329  1.1  cgd static int
    330  1.1  cgd hash(s)
    331  1.1  cgd 	const	char *s;
    332  1.1  cgd {
    333  1.1  cgd 	u_int	v;
    334  1.1  cgd 	const	u_char *us;
    335  1.1  cgd 
    336  1.1  cgd 	v = 0;
    337  1.1  cgd 	for (us = (const u_char *)s; *us != '\0'; us++) {
    338  1.1  cgd 		v = (v << sizeof (v)) + *us;
    339  1.1  cgd 		v ^= v >> (sizeof (v) * CHAR_BIT - sizeof (v));
    340  1.1  cgd 	}
    341  1.1  cgd 	return (v % HSHSIZ1);
    342  1.1  cgd }
    343  1.1  cgd 
    344  1.1  cgd /*
    345  1.1  cgd  * Lex has found a letter followed by zero or more letters or digits.
    346  1.1  cgd  * It looks for a symbol in the symbol table with the same name. This
    347  1.1  cgd  * symbol must either be a keyword or a symbol of the type required by
    348  1.1  cgd  * symtyp (label, member, tag, ...).
    349  1.1  cgd  *
    350  1.1  cgd  * If it is a keyword, the token is returned. In some cases it is described
    351  1.1  cgd  * more deeply by data written to yylval.
    352  1.1  cgd  *
    353  1.1  cgd  * If it is a symbol, T_NAME is returned and the pointer to a sbuf struct
    354  1.1  cgd  * is stored in yylval. This struct contains the name of the symbol, it's
    355  1.1  cgd  * length and hash value. If there is already a symbol of the same name
    356  1.1  cgd  * and type in the symbol table, the sbuf struct also contains a pointer
    357  1.1  cgd  * to the symbol table entry.
    358  1.1  cgd  */
    359  1.1  cgd static int
    360  1.1  cgd name()
    361  1.1  cgd {
    362  1.1  cgd 	char	*s;
    363  1.1  cgd 	sbuf_t	*sb;
    364  1.1  cgd 	sym_t	*sym;
    365  1.1  cgd 	int	tok;
    366  1.1  cgd 
    367  1.1  cgd 	sb = allocsb();
    368  1.1  cgd 	sb->sb_name = yytext;
    369  1.1  cgd 	sb->sb_len = yyleng;
    370  1.1  cgd 	sb->sb_hash = hash(yytext);
    371  1.1  cgd 
    372  1.1  cgd 	if ((sym = search(sb)) != NULL && sym->s_keyw) {
    373  1.1  cgd 		freesb(sb);
    374  1.1  cgd 		return (keyw(sym));
    375  1.1  cgd 	}
    376  1.1  cgd 
    377  1.1  cgd 	sb->sb_sym = sym;
    378  1.1  cgd 
    379  1.1  cgd 	if (sym != NULL) {
    380  1.1  cgd 		if (blklev < sym->s_blklev)
    381  1.1  cgd 			lerror("name() 1");
    382  1.1  cgd 		sb->sb_name = sym->s_name;
    383  1.1  cgd 		sb->sb_len = strlen(sym->s_name);
    384  1.1  cgd 		tok = sym->s_scl == TYPEDEF ? T_TYPENAME : T_NAME;
    385  1.1  cgd 	} else {
    386  1.1  cgd 		s = getblk(yyleng + 1);
    387  1.1  cgd 		(void)memcpy(s, yytext, yyleng + 1);
    388  1.1  cgd 		sb->sb_name = s;
    389  1.1  cgd 		sb->sb_len = yyleng;
    390  1.1  cgd 		tok = T_NAME;
    391  1.1  cgd 	}
    392  1.1  cgd 
    393  1.1  cgd 	yylval.y_sb = sb;
    394  1.1  cgd 	return (tok);
    395  1.1  cgd }
    396  1.1  cgd 
    397  1.1  cgd static sym_t *
    398  1.1  cgd search(sb)
    399  1.1  cgd 	sbuf_t	*sb;
    400  1.1  cgd {
    401  1.1  cgd 	sym_t	*sym;
    402  1.1  cgd 
    403  1.1  cgd 	for (sym = symtab[sb->sb_hash]; sym != NULL; sym = sym->s_link) {
    404  1.1  cgd 		if (strcmp(sym->s_name, sb->sb_name) == 0) {
    405  1.1  cgd 			if (sym->s_keyw || sym->s_kind == symtyp)
    406  1.1  cgd 				return (sym);
    407  1.1  cgd 		}
    408  1.1  cgd 	}
    409  1.1  cgd 
    410  1.1  cgd 	return (NULL);
    411  1.1  cgd }
    412  1.1  cgd 
    413  1.1  cgd static int
    414  1.1  cgd keyw(sym)
    415  1.1  cgd 	sym_t	*sym;
    416  1.1  cgd {
    417  1.1  cgd 	int	t;
    418  1.1  cgd 
    419  1.1  cgd 	if ((t = (int)sym->s_value.v_quad) == T_SCLASS) {
    420  1.1  cgd 		yylval.y_scl = sym->s_scl;
    421  1.1  cgd 	} else if (t == T_TYPE || t == T_SOU) {
    422  1.1  cgd 		yylval.y_tspec = sym->s_tspec;
    423  1.1  cgd 	} else if (t == T_QUAL) {
    424  1.1  cgd 		yylval.y_tqual = sym->s_tqual;
    425  1.1  cgd 	}
    426  1.1  cgd 	return (t);
    427  1.1  cgd }
    428  1.1  cgd 
    429  1.1  cgd /*
    430  1.1  cgd  * Convert a string representing an integer into internal representation.
    431  1.1  cgd  * The value is returned in yylval. icon() (and yylex()) returns T_CON.
    432  1.1  cgd  */
    433  1.1  cgd static int
    434  1.1  cgd icon(base)
    435  1.1  cgd 	int	base;
    436  1.1  cgd {
    437  1.1  cgd 	int	l_suffix, u_suffix;
    438  1.1  cgd 	int	len;
    439  1.1  cgd 	const	char *cp;
    440  1.1  cgd 	char	c, *eptr;
    441  1.1  cgd 	tspec_t	typ;
    442  1.1  cgd 	u_long	ul;
    443  1.1  cgd 	u_quad_t uq;
    444  1.1  cgd 	int	ansiu;
    445  1.1  cgd 	static	tspec_t contypes[2][3] = {
    446  1.1  cgd 		{ INT,  LONG,  QUAD },
    447  1.1  cgd 		{ UINT, ULONG, UQUAD }
    448  1.1  cgd 	};
    449  1.1  cgd 
    450  1.1  cgd 	cp = yytext;
    451  1.1  cgd 	len = yyleng;
    452  1.1  cgd 
    453  1.1  cgd 	/* skip 0x */
    454  1.1  cgd 	if (base == 16) {
    455  1.1  cgd 		cp += 2;
    456  1.1  cgd 		len -= 2;
    457  1.1  cgd 	}
    458  1.1  cgd 
    459  1.1  cgd 	/* read suffixes */
    460  1.1  cgd 	l_suffix = u_suffix = 0;
    461  1.1  cgd 	for ( ; ; ) {
    462  1.1  cgd 		if ((c = cp[len - 1]) == 'l' || c == 'L') {
    463  1.1  cgd 			l_suffix++;
    464  1.1  cgd 		} else if (c == 'u' || c == 'U') {
    465  1.1  cgd 			u_suffix++;
    466  1.1  cgd 		} else {
    467  1.1  cgd 			break;
    468  1.1  cgd 		}
    469  1.1  cgd 		len--;
    470  1.1  cgd 	}
    471  1.1  cgd 	if (l_suffix > 2 || u_suffix > 1) {
    472  1.1  cgd 		/* malformed integer constant */
    473  1.1  cgd 		warning(251);
    474  1.1  cgd 		if (l_suffix > 2)
    475  1.1  cgd 			l_suffix = 2;
    476  1.1  cgd 		if (u_suffix > 1)
    477  1.1  cgd 			u_suffix = 1;
    478  1.1  cgd 	}
    479  1.1  cgd 	if (tflag && u_suffix != 0) {
    480  1.1  cgd 		/* suffix U is illegal in traditional C */
    481  1.1  cgd 		warning(97);
    482  1.1  cgd 	}
    483  1.1  cgd 	typ = contypes[u_suffix][l_suffix];
    484  1.1  cgd 
    485  1.1  cgd 	errno = 0;
    486  1.1  cgd 	if (l_suffix < 2) {
    487  1.1  cgd 		ul = strtoul(cp, &eptr, base);
    488  1.1  cgd 	} else {
    489  1.1  cgd 		uq = strtouq(cp, &eptr, base);
    490  1.1  cgd 	}
    491  1.1  cgd 	if (eptr != cp + len)
    492  1.1  cgd 		lerror("icon() 1");
    493  1.1  cgd 	if (errno != 0)
    494  1.1  cgd 		/* integer constant out of range */
    495  1.1  cgd 		warning(252);
    496  1.1  cgd 
    497  1.1  cgd 	/*
    498  1.1  cgd          * If the value is to big for the current type, we must choose
    499  1.1  cgd 	 * another type.
    500  1.1  cgd 	 */
    501  1.1  cgd 	ansiu = 0;
    502  1.1  cgd 	switch (typ) {
    503  1.1  cgd 	case INT:
    504  1.1  cgd 		if (ul <= INT_MAX) {
    505  1.1  cgd 			/* ok */
    506  1.1  cgd 		} else if (ul <= (unsigned)UINT_MAX && base != 10) {
    507  1.1  cgd 			typ = UINT;
    508  1.1  cgd 		} else if (ul <= LONG_MAX) {
    509  1.1  cgd 			typ = LONG;
    510  1.1  cgd 		} else {
    511  1.1  cgd 			typ = ULONG;
    512  1.1  cgd 		}
    513  1.1  cgd 		if (typ == UINT || typ == ULONG) {
    514  1.1  cgd 			if (tflag) {
    515  1.1  cgd 				typ = LONG;
    516  1.1  cgd 			} else if (!sflag) {
    517  1.1  cgd 				/*
    518  1.1  cgd 				 * Remember that the constant is unsigned
    519  1.1  cgd 				 * only in ANSI C
    520  1.1  cgd 				 */
    521  1.1  cgd 				ansiu = 1;
    522  1.1  cgd 			}
    523  1.1  cgd 		}
    524  1.1  cgd 		break;
    525  1.1  cgd 	case UINT:
    526  1.1  cgd 		if (ul > (u_int)UINT_MAX)
    527  1.1  cgd 			typ = ULONG;
    528  1.1  cgd 		break;
    529  1.1  cgd 	case LONG:
    530  1.1  cgd 		if (ul > LONG_MAX && !tflag) {
    531  1.1  cgd 			typ = ULONG;
    532  1.1  cgd 			if (!sflag)
    533  1.1  cgd 				ansiu = 1;
    534  1.1  cgd 		}
    535  1.1  cgd 		break;
    536  1.1  cgd 	case QUAD:
    537  1.1  cgd 		if (uq > QUAD_MAX && !tflag) {
    538  1.1  cgd 			typ = UQUAD;
    539  1.1  cgd 			if (!sflag)
    540  1.1  cgd 				ansiu = 1;
    541  1.1  cgd 		}
    542  1.1  cgd 		break;
    543  1.1  cgd 		/* LINTED (enumeration values not handled in switch) */
    544  1.1  cgd 	}
    545  1.1  cgd 
    546  1.1  cgd 	if (typ != QUAD && typ != UQUAD) {
    547  1.1  cgd 		if (isutyp(typ)) {
    548  1.1  cgd 			uq = ul;
    549  1.1  cgd 		} else {
    550  1.1  cgd 			uq = (quad_t)(long)ul;
    551  1.1  cgd 		}
    552  1.1  cgd 	}
    553  1.1  cgd 
    554  1.1  cgd 	uq = (u_quad_t)xsign((quad_t)uq, typ, -1);
    555  1.1  cgd 
    556  1.1  cgd 	(yylval.y_val = xcalloc(1, sizeof (val_t)))->v_tspec = typ;
    557  1.1  cgd 	yylval.y_val->v_ansiu = ansiu;
    558  1.1  cgd 	yylval.y_val->v_quad = (quad_t)uq;
    559  1.1  cgd 
    560  1.1  cgd 	return (T_CON);
    561  1.1  cgd }
    562  1.1  cgd 
    563  1.1  cgd /*
    564  1.1  cgd  * Returns 1 if t is a signed type and the value is negative.
    565  1.1  cgd  *
    566  1.1  cgd  * len is the number of significant bits. If len is -1, len is set
    567  1.1  cgd  * to the width of type t.
    568  1.1  cgd  */
    569  1.1  cgd int
    570  1.1  cgd sign(q, t, len)
    571  1.1  cgd 	quad_t	q;
    572  1.1  cgd 	tspec_t	t;
    573  1.1  cgd 	int	len;
    574  1.1  cgd {
    575  1.1  cgd 	if (t == PTR || isutyp(t))
    576  1.1  cgd 		return (0);
    577  1.1  cgd 	return (msb(q, t, len));
    578  1.1  cgd }
    579  1.1  cgd 
    580  1.1  cgd int
    581  1.1  cgd msb(q, t, len)
    582  1.1  cgd 	quad_t	q;
    583  1.1  cgd 	tspec_t	t;
    584  1.1  cgd 	int	len;
    585  1.1  cgd {
    586  1.1  cgd 	if (len <= 0)
    587  1.1  cgd 		len = size(t);
    588  1.1  cgd 	return ((q & qbmasks[len - 1]) != 0);
    589  1.1  cgd }
    590  1.1  cgd 
    591  1.1  cgd /*
    592  1.1  cgd  * Extends the sign of q.
    593  1.1  cgd  */
    594  1.1  cgd quad_t
    595  1.1  cgd xsign(q, t, len)
    596  1.1  cgd 	quad_t	q;
    597  1.1  cgd 	tspec_t	t;
    598  1.1  cgd 	int	len;
    599  1.1  cgd {
    600  1.1  cgd 	if (len <= 0)
    601  1.1  cgd 		len = size(t);
    602  1.1  cgd 
    603  1.1  cgd 	if (t == PTR || isutyp(t) || !sign(q, t, len)) {
    604  1.1  cgd 		q &= qlmasks[len];
    605  1.1  cgd 	} else {
    606  1.1  cgd 		q |= qumasks[len];
    607  1.1  cgd 	}
    608  1.1  cgd 	return (q);
    609  1.1  cgd }
    610  1.1  cgd 
    611  1.1  cgd /*
    612  1.1  cgd  * Convert a string representing a floating point value into its interal
    613  1.1  cgd  * representation. Type and value are returned in yylval. fcon()
    614  1.1  cgd  * (and yylex()) returns T_CON.
    615  1.1  cgd  * XXX Currently it is not possible to convert constants of type
    616  1.1  cgd  * long double which are greater then DBL_MAX.
    617  1.1  cgd  */
    618  1.1  cgd static int
    619  1.1  cgd fcon()
    620  1.1  cgd {
    621  1.1  cgd 	const	char *cp;
    622  1.1  cgd 	int	len;
    623  1.1  cgd 	tspec_t typ;
    624  1.1  cgd 	char	c, *eptr;
    625  1.1  cgd 	double	d;
    626  1.1  cgd 	float	f;
    627  1.1  cgd 
    628  1.1  cgd 	cp = yytext;
    629  1.1  cgd 	len = yyleng;
    630  1.1  cgd 
    631  1.1  cgd 	if ((c = cp[len - 1]) == 'f' || c == 'F') {
    632  1.1  cgd 		typ = FLOAT;
    633  1.1  cgd 		len--;
    634  1.1  cgd 	} else if (c == 'l' || c == 'L') {
    635  1.1  cgd 		typ = LDOUBLE;
    636  1.1  cgd 		len--;
    637  1.1  cgd 	} else {
    638  1.1  cgd 		typ = DOUBLE;
    639  1.1  cgd 	}
    640  1.1  cgd 
    641  1.1  cgd 	if (tflag && typ != DOUBLE) {
    642  1.1  cgd 		/* suffixes F and L are illegal in traditional C */
    643  1.1  cgd 		warning(98);
    644  1.1  cgd 	}
    645  1.1  cgd 
    646  1.1  cgd 	errno = 0;
    647  1.1  cgd 	d = strtod(cp, &eptr);
    648  1.1  cgd 	if (eptr != cp + len)
    649  1.1  cgd 		lerror("fcon() 1");
    650  1.1  cgd 	if (errno != 0)
    651  1.1  cgd 		/* floating-point constant out of range */
    652  1.1  cgd 		warning(248);
    653  1.1  cgd 
    654  1.1  cgd 	if (typ == FLOAT) {
    655  1.1  cgd 		f = (float)d;
    656  1.1  cgd 		if (isinf(f)) {
    657  1.1  cgd 			/* floating-point constant out of range */
    658  1.1  cgd 			warning(248);
    659  1.1  cgd 			f = f > 0 ? FLT_MAX : -FLT_MAX;
    660  1.1  cgd 		}
    661  1.1  cgd 	}
    662  1.1  cgd 
    663  1.1  cgd 	(yylval.y_val = xcalloc(1, sizeof (val_t)))->v_tspec = typ;
    664  1.1  cgd 	if (typ == FLOAT) {
    665  1.1  cgd 		yylval.y_val->v_ldbl = f;
    666  1.1  cgd 	} else {
    667  1.1  cgd 		yylval.y_val->v_ldbl = d;
    668  1.1  cgd 	}
    669  1.1  cgd 
    670  1.1  cgd 	return (T_CON);
    671  1.1  cgd }
    672  1.1  cgd 
    673  1.1  cgd static int
    674  1.1  cgd operator(t, o)
    675  1.1  cgd 	int	t;
    676  1.1  cgd 	op_t	o;
    677  1.1  cgd {
    678  1.1  cgd 	yylval.y_op = o;
    679  1.1  cgd 	return (t);
    680  1.1  cgd }
    681  1.1  cgd 
    682  1.1  cgd /*
    683  1.1  cgd  * Called if lex found a leading \'.
    684  1.1  cgd  */
    685  1.1  cgd static int
    686  1.1  cgd ccon()
    687  1.1  cgd {
    688  1.1  cgd 	int	n, val, c;
    689  1.1  cgd 	char	cv;
    690  1.1  cgd 
    691  1.1  cgd 	n = 0;
    692  1.1  cgd 	val = 0;
    693  1.1  cgd 	while ((c = getescc('\'')) >= 0) {
    694  1.1  cgd 		val = (val << CHAR_BIT) + c;
    695  1.1  cgd 		n++;
    696  1.1  cgd 	}
    697  1.1  cgd 	if (c == -2) {
    698  1.1  cgd 		/* unterminated character constant */
    699  1.1  cgd 		error(253);
    700  1.1  cgd 	} else {
    701  1.1  cgd 		if (n > sizeof (int) || (n > 1 && (pflag || hflag))) {
    702  1.1  cgd 			/* too many characters in character constant */
    703  1.1  cgd 			error(71);
    704  1.1  cgd 		} else if (n > 1) {
    705  1.1  cgd 			/* multi-character character constant */
    706  1.1  cgd 			warning(294);
    707  1.1  cgd 		} else if (n == 0) {
    708  1.1  cgd 			/* empty character constant */
    709  1.1  cgd 			error(73);
    710  1.1  cgd 		}
    711  1.1  cgd 	}
    712  1.1  cgd 	if (n == 1) {
    713  1.1  cgd 		cv = (char)val;
    714  1.1  cgd 		val = cv;
    715  1.1  cgd 	}
    716  1.1  cgd 
    717  1.1  cgd 	yylval.y_val = xcalloc(1, sizeof (val_t));
    718  1.1  cgd 	yylval.y_val->v_tspec = INT;
    719  1.1  cgd 	yylval.y_val->v_quad = val;
    720  1.1  cgd 
    721  1.1  cgd 	return (T_CON);
    722  1.1  cgd }
    723  1.1  cgd 
    724  1.1  cgd /*
    725  1.1  cgd  * Called if lex found a leading L\'
    726  1.1  cgd  */
    727  1.1  cgd static int
    728  1.1  cgd wccon()
    729  1.1  cgd {
    730  1.1  cgd 	static	char buf[MB_CUR_MAX + 1];
    731  1.1  cgd 	int	i, c;
    732  1.1  cgd 	wchar_t	wc;
    733  1.1  cgd 
    734  1.1  cgd 	i = 0;
    735  1.1  cgd 	while ((c = getescc('\'')) >= 0) {
    736  1.1  cgd 		if (i < MB_CUR_MAX)
    737  1.1  cgd 			buf[i] = (char)c;
    738  1.1  cgd 		i++;
    739  1.1  cgd 	}
    740  1.1  cgd 
    741  1.1  cgd 	wc = 0;
    742  1.1  cgd 
    743  1.1  cgd 	if (c == -2) {
    744  1.1  cgd 		/* unterminated character constant */
    745  1.1  cgd 		error(253);
    746  1.1  cgd 	} else if (c == 0) {
    747  1.1  cgd 		/* empty character constant */
    748  1.1  cgd 		error(73);
    749  1.1  cgd 	} else {
    750  1.1  cgd 		if (i > MB_CUR_MAX) {
    751  1.1  cgd 			i = MB_CUR_MAX;
    752  1.1  cgd 			/* too many characters in character constant */
    753  1.1  cgd 			error(71);
    754  1.1  cgd 		} else {
    755  1.1  cgd 			buf[i] = '\0';
    756  1.1  cgd 			(void)mbtowc(NULL, NULL, 0);
    757  1.1  cgd 			if (mbtowc(&wc, buf, MB_CUR_MAX) < 0)
    758  1.1  cgd 				/* invalid multibyte character */
    759  1.1  cgd 				error(291);
    760  1.1  cgd 		}
    761  1.1  cgd 	}
    762  1.1  cgd 
    763  1.1  cgd 	yylval.y_val = xcalloc(1, sizeof (val_t));
    764  1.1  cgd 	yylval.y_val->v_tspec = WCHAR;
    765  1.1  cgd 	yylval.y_val->v_quad = wc;
    766  1.1  cgd 
    767  1.1  cgd 	return (T_CON);
    768  1.1  cgd }
    769  1.1  cgd 
    770  1.1  cgd /*
    771  1.1  cgd  * Read a character which is part of a character constant or of a string
    772  1.1  cgd  * and handle escapes.
    773  1.1  cgd  *
    774  1.1  cgd  * The Argument is the character which delimits the character constant or
    775  1.1  cgd  * string.
    776  1.1  cgd  *
    777  1.1  cgd  * Returns -1 if the end of the character constant or string is reached,
    778  1.1  cgd  * -2 if the EOF is reached, and the charachter otherwise.
    779  1.1  cgd  */
    780  1.1  cgd static int
    781  1.1  cgd getescc(d)
    782  1.1  cgd 	int	d;
    783  1.1  cgd {
    784  1.1  cgd 	static	int pbc = -1;
    785  1.1  cgd 	int	n, c, v;
    786  1.1  cgd 
    787  1.1  cgd 	if (pbc == -1) {
    788  1.1  cgd 		c = inpc();
    789  1.1  cgd 	} else {
    790  1.1  cgd 		c = pbc;
    791  1.1  cgd 		pbc = -1;
    792  1.1  cgd 	}
    793  1.1  cgd 	if (c == d)
    794  1.1  cgd 		return (-1);
    795  1.1  cgd 	switch (c) {
    796  1.1  cgd 	case '\n':
    797  1.1  cgd 		/* newline in string or char constant */
    798  1.1  cgd 		error(254);
    799  1.1  cgd 		return (-2);
    800  1.1  cgd 	case EOF:
    801  1.1  cgd 		return (-2);
    802  1.1  cgd 	case '\\':
    803  1.1  cgd 		switch (c = inpc()) {
    804  1.1  cgd 		case '"':
    805  1.1  cgd 			if (tflag && d == '\'')
    806  1.1  cgd 				/* \" inside character constant undef. ... */
    807  1.1  cgd 				warning(262);
    808  1.1  cgd 			return ('"');
    809  1.1  cgd 		case '\'':
    810  1.1  cgd 			return ('\'');
    811  1.1  cgd 		case '?':
    812  1.1  cgd 			if (tflag)
    813  1.1  cgd 				/* \? undefined in traditional C */
    814  1.1  cgd 				warning(263);
    815  1.1  cgd 			return ('?');
    816  1.1  cgd 		case '\\':
    817  1.1  cgd 			return ('\\');
    818  1.1  cgd 		case 'a':
    819  1.1  cgd 			if (tflag)
    820  1.1  cgd 				/* \a undefined in traditional C */
    821  1.1  cgd 				warning(81);
    822  1.1  cgd #ifdef __STDC__
    823  1.1  cgd 			return ('\a');
    824  1.1  cgd #else
    825  1.1  cgd 			return ('\007');
    826  1.1  cgd #endif
    827  1.1  cgd 		case 'b':
    828  1.1  cgd 			return ('\b');
    829  1.1  cgd 		case 'f':
    830  1.1  cgd 			return ('\f');
    831  1.1  cgd 		case 'n':
    832  1.1  cgd 			return ('\n');
    833  1.1  cgd 		case 'r':
    834  1.1  cgd 			return ('\r');
    835  1.1  cgd 		case 't':
    836  1.1  cgd 			return ('\t');
    837  1.1  cgd 		case 'v':
    838  1.1  cgd 			if (tflag)
    839  1.1  cgd 				/* \v undefined in traditional C */
    840  1.1  cgd 				warning(264);
    841  1.1  cgd #ifdef __STDC__
    842  1.1  cgd 			return ('\v');
    843  1.1  cgd #else
    844  1.1  cgd 			return ('\013');
    845  1.1  cgd #endif
    846  1.1  cgd 		case '8': case '9':
    847  1.1  cgd 			/* bad octal digit %c */
    848  1.1  cgd 			warning(77, c);
    849  1.1  cgd 			/* FALLTHROUGH */
    850  1.1  cgd 		case '0': case '1': case '2': case '3':
    851  1.1  cgd 		case '4': case '5': case '6': case '7':
    852  1.1  cgd 			n = 3;
    853  1.1  cgd 			v = 0;
    854  1.1  cgd 			do {
    855  1.1  cgd 				v = (v << 3) + (c - '0');
    856  1.1  cgd 				c = inpc();
    857  1.1  cgd 			} while (--n && isdigit(c) && (tflag || c <= '7'));
    858  1.1  cgd 			if (tflag && n > 0 && isdigit(c))
    859  1.1  cgd 				/* bad octal digit %c */
    860  1.1  cgd 				warning(77, c);
    861  1.1  cgd 			pbc = c;
    862  1.1  cgd 			if (v > UCHAR_MAX) {
    863  1.1  cgd 				/* character escape does not fit in char. */
    864  1.1  cgd 				warning(76);
    865  1.1  cgd 				v &= CHAR_MASK;
    866  1.1  cgd 			}
    867  1.1  cgd 			return (v);
    868  1.1  cgd 		case 'x':
    869  1.1  cgd 			if (tflag)
    870  1.1  cgd 				/* \x undefined in traditional C */
    871  1.1  cgd 				warning(82);
    872  1.1  cgd 			v = 0;
    873  1.1  cgd 			n = 0;
    874  1.1  cgd 			while ((c = inpc()) >= 0 && isxdigit(c)) {
    875  1.1  cgd 				c = isdigit(c) ?
    876  1.1  cgd 					c - '0' : toupper(c) - 'A' + 10;
    877  1.1  cgd 				v = (v << 4) + c;
    878  1.1  cgd 				if (n >= 0) {
    879  1.1  cgd 					if ((v & ~CHAR_MASK) != 0) {
    880  1.1  cgd 						/* overflow in hex escape */
    881  1.1  cgd 						warning(75);
    882  1.1  cgd 						n = -1;
    883  1.1  cgd 					} else {
    884  1.1  cgd 						n++;
    885  1.1  cgd 					}
    886  1.1  cgd 				}
    887  1.1  cgd 			}
    888  1.1  cgd 			pbc = c;
    889  1.1  cgd 			if (n == 0) {
    890  1.1  cgd 				/* no hex digits follow \x */
    891  1.1  cgd 				error(74);
    892  1.1  cgd 			} if (n == -1) {
    893  1.1  cgd 				v &= CHAR_MASK;
    894  1.1  cgd 			}
    895  1.1  cgd 			return (v);
    896  1.1  cgd 		case '\n':
    897  1.1  cgd 			return (getescc(d));
    898  1.1  cgd 		case EOF:
    899  1.1  cgd 			return (-2);
    900  1.1  cgd 		default:
    901  1.1  cgd 			if (isprint(c)) {
    902  1.1  cgd 				/* dubious escape \%c */
    903  1.1  cgd 				warning(79, c);
    904  1.1  cgd 			} else {
    905  1.1  cgd 				/* dubious escape \%o */
    906  1.1  cgd 				warning(80, c);
    907  1.1  cgd 			}
    908  1.1  cgd 		}
    909  1.1  cgd 	}
    910  1.1  cgd 	return (c);
    911  1.1  cgd }
    912  1.1  cgd 
    913  1.1  cgd /*
    914  1.1  cgd  * Called for preprocessor directives. Currently implemented are:
    915  1.1  cgd  *	# lineno
    916  1.1  cgd  *	# lineno "filename"
    917  1.1  cgd  */
    918  1.1  cgd static void
    919  1.1  cgd directive()
    920  1.1  cgd {
    921  1.1  cgd 	const	char *cp, *fn;
    922  1.1  cgd 	char	c, *eptr;
    923  1.1  cgd 	size_t	fnl;
    924  1.1  cgd 	long	ln;
    925  1.1  cgd 	static	int first = 1;
    926  1.1  cgd 
    927  1.1  cgd 	/* Go to first non-whitespace after # */
    928  1.1  cgd 	for (cp = yytext + 1; (c = *cp) == ' ' || c == '\t'; cp++) ;
    929  1.1  cgd 
    930  1.1  cgd 	if (!isdigit(c)) {
    931  1.1  cgd 	error:
    932  1.1  cgd 		/* undefined or invalid # directive */
    933  1.1  cgd 		warning(255);
    934  1.1  cgd 		return;
    935  1.1  cgd 	}
    936  1.1  cgd 	ln = strtol(--cp, &eptr, 10);
    937  1.1  cgd 	if (cp == eptr)
    938  1.1  cgd 		goto error;
    939  1.1  cgd 	if ((c = *(cp = eptr)) != ' ' && c != '\t' && c != '\0')
    940  1.1  cgd 		goto error;
    941  1.1  cgd 	while ((c = *cp++) == ' ' || c == '\t') ;
    942  1.1  cgd 	if (c != '\0') {
    943  1.1  cgd 		if (c != '"')
    944  1.1  cgd 			goto error;
    945  1.1  cgd 		fn = cp;
    946  1.1  cgd 		while ((c = *cp) != '"' && c != '\0')
    947  1.1  cgd 			cp++;
    948  1.1  cgd 		if (c != '"')
    949  1.1  cgd 			goto error;
    950  1.1  cgd 		if ((fnl = cp++ - fn) > PATH_MAX)
    951  1.1  cgd 			goto error;
    952  1.1  cgd 		while ((c = *cp++) == ' ' || c == '\t') ;
    953  1.1  cgd #if 0
    954  1.1  cgd 		if (c != '\0')
    955  1.1  cgd 			warning("extra character(s) after directive");
    956  1.1  cgd #endif
    957  1.1  cgd 		curr_pos.p_file = fnnalloc(fn, fnl);
    958  1.1  cgd 		/*
    959  1.1  cgd 		 * If this is the first directive, the name is the name
    960  1.1  cgd 		 * of the C source file as specified at the command line.
    961  1.1  cgd 		 * It is written to the output file.
    962  1.1  cgd 		 */
    963  1.1  cgd 		if (first) {
    964  1.1  cgd 			csrc_pos.p_file = curr_pos.p_file;
    965  1.1  cgd 			outsrc(curr_pos.p_file);
    966  1.1  cgd 			first = 0;
    967  1.1  cgd 		}
    968  1.1  cgd 	}
    969  1.1  cgd 	curr_pos.p_line = (int)ln - 1;
    970  1.1  cgd 	if (curr_pos.p_file == csrc_pos.p_file)
    971  1.1  cgd 		csrc_pos.p_line = (int)ln - 1;
    972  1.1  cgd }
    973  1.1  cgd 
    974  1.1  cgd /*
    975  1.1  cgd  * Handle lint comments. Following comments are currently understood:
    976  1.1  cgd  *	ARGSUSEDn
    977  1.1  cgd  *	CONSTCOND CONSTANTCOND CONSTANTCONDITION
    978  1.1  cgd  *	FALLTHRU FALLTHROUGH
    979  1.1  cgd  *	LINTLIBRARY
    980  1.1  cgd  *	LINTED NOSTRICT
    981  1.1  cgd  *	NOTREACHED
    982  1.1  cgd  *	PRINTFLIKEn
    983  1.1  cgd  *	PROTOLIB
    984  1.1  cgd  *	SCANFLIKEn
    985  1.1  cgd  *	VARARGSn
    986  1.1  cgd  * If one of this comments is recognized, the arguments, if any, are
    987  1.1  cgd  * parsed and a function which handles this comment is called.
    988  1.1  cgd  */
    989  1.1  cgd static void
    990  1.1  cgd comment()
    991  1.1  cgd {
    992  1.1  cgd 	int	c, lc;
    993  1.1  cgd 	static struct {
    994  1.1  cgd 		const	char *keywd;
    995  1.1  cgd 		int	arg;
    996  1.1  cgd 		void	(*func) __P((int));
    997  1.1  cgd 	} keywtab[] = {
    998  1.1  cgd 		{ "ARGSUSED",		1,	argsused	},
    999  1.1  cgd 		{ "CONSTCOND",		0,	constcond	},
   1000  1.1  cgd 		{ "CONSTANTCOND",	0,	constcond	},
   1001  1.1  cgd 		{ "CONSTANTCONDITION",	0,	constcond	},
   1002  1.1  cgd 		{ "FALLTHRU",		0,	fallthru	},
   1003  1.1  cgd 		{ "FALLTHROUGH",	0,	fallthru	},
   1004  1.1  cgd 		{ "LINTLIBRARY",	0,	lintlib		},
   1005  1.1  cgd 		{ "LINTED",		0,	linted		},
   1006  1.1  cgd 		{ "NOSTRICT",		0,	linted		},
   1007  1.1  cgd 		{ "NOTREACHED",		0,	notreach	},
   1008  1.1  cgd 		{ "PRINTFLIKE",		1,	printflike	},
   1009  1.1  cgd 		{ "PROTOLIB",		1,	protolib	},
   1010  1.1  cgd 		{ "SCANFLIKE",		1,	scanflike	},
   1011  1.1  cgd 		{ "VARARGS",		1,	varargs		},
   1012  1.1  cgd 	};
   1013  1.1  cgd 	char	keywd[32];
   1014  1.1  cgd 	char	arg[32];
   1015  1.1  cgd 	int	l, i, a;
   1016  1.1  cgd 	int	eoc;
   1017  1.1  cgd 
   1018  1.1  cgd 	eoc = 0;
   1019  1.1  cgd 
   1020  1.1  cgd 	/* Skip white spaces after the start of the comment */
   1021  1.1  cgd 	while ((c = inpc()) != EOF && isspace(c)) ;
   1022  1.1  cgd 
   1023  1.1  cgd 	/* Read the potential keyword to keywd */
   1024  1.1  cgd 	l = 0;
   1025  1.1  cgd 	while (c != EOF && isupper(c) && l < sizeof (keywd) - 1) {
   1026  1.1  cgd 		keywd[l++] = (char)c;
   1027  1.1  cgd 		c = inpc();
   1028  1.1  cgd 	}
   1029  1.1  cgd 	keywd[l] = '\0';
   1030  1.1  cgd 
   1031  1.1  cgd 	/* look for the keyword */
   1032  1.1  cgd 	for (i = 0; i < sizeof (keywtab) / sizeof (keywtab[0]); i++) {
   1033  1.1  cgd 		if (strcmp(keywtab[i].keywd, keywd) == 0)
   1034  1.1  cgd 			break;
   1035  1.1  cgd 	}
   1036  1.1  cgd 	if (i == sizeof (keywtab) / sizeof (keywtab[0]))
   1037  1.1  cgd 		goto skip_rest;
   1038  1.1  cgd 
   1039  1.1  cgd 	/* skip white spaces after the keyword */
   1040  1.1  cgd 	while (c != EOF && isspace(c))
   1041  1.1  cgd 		c = inpc();
   1042  1.1  cgd 
   1043  1.1  cgd 	/* read the argument, if the keyword accepts one and there is one */
   1044  1.1  cgd 	l = 0;
   1045  1.1  cgd 	if (keywtab[i].arg) {
   1046  1.1  cgd 		while (c != EOF && isdigit(c) && l < sizeof (arg) - 1) {
   1047  1.1  cgd 			arg[l++] = (char)c;
   1048  1.1  cgd 			c = inpc();
   1049  1.1  cgd 		}
   1050  1.1  cgd 	}
   1051  1.1  cgd 	arg[l] = '\0';
   1052  1.1  cgd 	a = l != 0 ? atoi(arg) : -1;
   1053  1.1  cgd 
   1054  1.1  cgd 	/* skip white spaces after the argument */
   1055  1.1  cgd 	while (c != EOF && isspace(c))
   1056  1.1  cgd 		c = inpc();
   1057  1.1  cgd 
   1058  1.1  cgd 	if (c != '*' || (c = inpc()) != '/') {
   1059  1.1  cgd 		if (keywtab[i].func != linted)
   1060  1.1  cgd 			/* extra characters in lint comment */
   1061  1.1  cgd 			warning(257);
   1062  1.1  cgd 	} else {
   1063  1.1  cgd 		/*
   1064  1.1  cgd 		 * remember that we have already found the end of the
   1065  1.1  cgd 		 * comment
   1066  1.1  cgd 		 */
   1067  1.1  cgd 		eoc = 1;
   1068  1.1  cgd 	}
   1069  1.1  cgd 
   1070  1.1  cgd 	if (keywtab[i].func != NULL)
   1071  1.1  cgd 		(*keywtab[i].func)(a);
   1072  1.1  cgd 
   1073  1.1  cgd  skip_rest:
   1074  1.1  cgd 	while (!eoc) {
   1075  1.1  cgd 		lc = c;
   1076  1.1  cgd 		if ((c = inpc()) == EOF) {
   1077  1.1  cgd 			/* unterminated comment */
   1078  1.1  cgd 			error(256);
   1079  1.1  cgd 			break;
   1080  1.1  cgd 		}
   1081  1.1  cgd 		if (lc == '*' && c == '/')
   1082  1.1  cgd 			eoc = 1;
   1083  1.1  cgd 	}
   1084  1.1  cgd }
   1085  1.1  cgd 
   1086  1.1  cgd /*
   1087  1.1  cgd  * Strings are stored in a dynamically alloceted buffer and passed
   1088  1.1  cgd  * in yylval.y_xstrg to the parser. The parser or the routines called
   1089  1.1  cgd  * by the parser are responsible for freeing this buffer.
   1090  1.1  cgd  */
   1091  1.1  cgd static int
   1092  1.1  cgd string()
   1093  1.1  cgd {
   1094  1.1  cgd 	u_char	*s;
   1095  1.1  cgd 	int	c;
   1096  1.1  cgd 	size_t	len, max;
   1097  1.1  cgd 	strg_t	*strg;
   1098  1.1  cgd 
   1099  1.1  cgd 	s = xmalloc(max = 64);
   1100  1.1  cgd 
   1101  1.1  cgd 	len = 0;
   1102  1.1  cgd 	while ((c = getescc('"')) >= 0) {
   1103  1.1  cgd 		/* +1 to reserve space for a trailing NUL character */
   1104  1.1  cgd 		if (len + 1 == max)
   1105  1.1  cgd 			s = xrealloc(s, max *= 2);
   1106  1.1  cgd 		s[len++] = (char)c;
   1107  1.1  cgd 	}
   1108  1.1  cgd 	s[len] = '\0';
   1109  1.1  cgd 	if (c == -2)
   1110  1.1  cgd 		/* unterminated string constant */
   1111  1.1  cgd 		error(258);
   1112  1.1  cgd 
   1113  1.1  cgd 	strg = xcalloc(1, sizeof (strg_t));
   1114  1.1  cgd 	strg->st_tspec = CHAR;
   1115  1.1  cgd 	strg->st_len = len;
   1116  1.1  cgd 	strg->st_cp = s;
   1117  1.1  cgd 
   1118  1.1  cgd 	yylval.y_strg = strg;
   1119  1.1  cgd 	return (T_STRING);
   1120  1.1  cgd }
   1121  1.1  cgd 
   1122  1.1  cgd static int
   1123  1.1  cgd wcstrg()
   1124  1.1  cgd {
   1125  1.1  cgd 	char	*s;
   1126  1.1  cgd 	int	c, i, n, wi;
   1127  1.1  cgd 	size_t	len, max, wlen;
   1128  1.1  cgd 	wchar_t	*ws;
   1129  1.1  cgd 	strg_t	*strg;
   1130  1.1  cgd 
   1131  1.1  cgd 	s = xmalloc(max = 64);
   1132  1.1  cgd 	len = 0;
   1133  1.1  cgd 	while ((c = getescc('"')) >= 0) {
   1134  1.1  cgd 		/* +1 to save space for a trailing NUL character */
   1135  1.1  cgd 		if (len + 1 >= max)
   1136  1.1  cgd 			s = xrealloc(s, max *= 2);
   1137  1.1  cgd 		s[len++] = (char)c;
   1138  1.1  cgd 	}
   1139  1.1  cgd 	s[len] = '\0';
   1140  1.1  cgd 	if (c == -2)
   1141  1.1  cgd 		/* unterminated string constant */
   1142  1.1  cgd 		error(258);
   1143  1.1  cgd 
   1144  1.1  cgd 	/* get length of wide character string */
   1145  1.1  cgd 	(void)mblen(NULL, 0);
   1146  1.1  cgd 	for (i = 0, wlen = 0; i < len; i += n, wlen++) {
   1147  1.1  cgd 		if ((n = mblen(&s[i], MB_CUR_MAX)) == -1) {
   1148  1.1  cgd 			/* invalid multibyte character */
   1149  1.1  cgd 			error(291);
   1150  1.1  cgd 			break;
   1151  1.1  cgd 		}
   1152  1.1  cgd 		if (n == 0)
   1153  1.1  cgd 			n = 1;
   1154  1.1  cgd 	}
   1155  1.1  cgd 
   1156  1.1  cgd 	ws = xmalloc((wlen + 1) * sizeof (wchar_t));
   1157  1.1  cgd 
   1158  1.1  cgd 	/* convert from multibyte to wide char */
   1159  1.1  cgd 	(void)mbtowc(NULL, NULL, 0);
   1160  1.1  cgd 	for (i = 0, wi = 0; i < len; i += n, wi++) {
   1161  1.1  cgd 		if ((n = mbtowc(&ws[wi], &s[i], MB_CUR_MAX)) == -1)
   1162  1.1  cgd 			break;
   1163  1.1  cgd 		if (n == 0)
   1164  1.1  cgd 			n = 1;
   1165  1.1  cgd 	}
   1166  1.1  cgd 	ws[wi] = 0;
   1167  1.1  cgd 	free(s);
   1168  1.1  cgd 
   1169  1.1  cgd 	strg = xcalloc(1, sizeof (strg_t));
   1170  1.1  cgd 	strg->st_tspec = WCHAR;
   1171  1.1  cgd 	strg->st_len = wlen;
   1172  1.1  cgd 	strg->st_wcp = ws;
   1173  1.1  cgd 
   1174  1.1  cgd 	yylval.y_strg = strg;
   1175  1.1  cgd 	return (T_STRING);
   1176  1.1  cgd }
   1177  1.1  cgd 
   1178  1.1  cgd /*
   1179  1.1  cgd  * As noted above the scanner does not create new symbol table entries
   1180  1.1  cgd  * for symbols it cannot find in the symbol table. This is to avoid
   1181  1.1  cgd  * putting undeclared symbols into the symbol table if a syntax error
   1182  1.1  cgd  * occurs.
   1183  1.1  cgd  *
   1184  1.1  cgd  * getsym() is called as soon as it is probably ok to put the symbol to
   1185  1.1  cgd  * the symbol table. This does not mean that it is not possible that
   1186  1.1  cgd  * symbols are put to the symbol table which are than not completely
   1187  1.1  cgd  * declared due to syntax errors. To avoid too many problems in this
   1188  1.1  cgd  * case symbols get type int in getsym().
   1189  1.1  cgd  *
   1190  1.1  cgd  * XXX calls to getsym() should be delayed until decl1*() is called
   1191  1.1  cgd  */
   1192  1.1  cgd sym_t *
   1193  1.1  cgd getsym(sb)
   1194  1.1  cgd 	sbuf_t	*sb;
   1195  1.1  cgd {
   1196  1.1  cgd 	dinfo_t	*di;
   1197  1.1  cgd 	char	*s;
   1198  1.1  cgd 	sym_t	*sym;
   1199  1.1  cgd 
   1200  1.1  cgd 	sym = sb->sb_sym;
   1201  1.1  cgd 
   1202  1.1  cgd 	/*
   1203  1.1  cgd 	 * During member declaration it is possible that name() looked
   1204  1.1  cgd 	 * for symbols of type FVFT, although it should have looked for
   1205  1.1  cgd 	 * symbols of type FTAG. Same can happen for labels. Both cases
   1206  1.1  cgd 	 * are compensated here.
   1207  1.1  cgd 	 */
   1208  1.1  cgd 	if (symtyp == FMOS || symtyp == FLAB) {
   1209  1.1  cgd 		if (sym == NULL || sym->s_kind == FVFT)
   1210  1.1  cgd 			sym = search(sb);
   1211  1.1  cgd 	}
   1212  1.1  cgd 
   1213  1.1  cgd 	if (sym != NULL) {
   1214  1.1  cgd 		if (sym->s_kind != symtyp)
   1215  1.1  cgd 			lerror("storesym() 1");
   1216  1.1  cgd 		symtyp = FVFT;
   1217  1.1  cgd 		freesb(sb);
   1218  1.1  cgd 		return (sym);
   1219  1.1  cgd 	}
   1220  1.1  cgd 
   1221  1.1  cgd 	/* create a new symbol table entry */
   1222  1.1  cgd 
   1223  1.1  cgd 	/* labels must always be allocated at level 1 (outhermost block) */
   1224  1.1  cgd 	if (symtyp == FLAB) {
   1225  1.1  cgd 		sym = getlblk(1, sizeof (sym_t));
   1226  1.1  cgd 		s = getlblk(1, sb->sb_len + 1);
   1227  1.1  cgd 		(void)memcpy(s, sb->sb_name, sb->sb_len + 1);
   1228  1.1  cgd 		sym->s_name = s;
   1229  1.1  cgd 		sym->s_blklev = 1;
   1230  1.1  cgd 		di = dcs;
   1231  1.1  cgd 		while (di->nxt != NULL && di->nxt->nxt != NULL)
   1232  1.1  cgd 			di = di->nxt;
   1233  1.1  cgd 		if (di->ctx != AUTO)
   1234  1.1  cgd 			lerror("storesym() 2");
   1235  1.1  cgd 	} else {
   1236  1.1  cgd 		sym = getblk(sizeof (sym_t));
   1237  1.1  cgd 		sym->s_name = sb->sb_name;
   1238  1.1  cgd 		sym->s_blklev = blklev;
   1239  1.1  cgd 		di = dcs;
   1240  1.1  cgd 	}
   1241  1.1  cgd 
   1242  1.1  cgd 	STRUCT_ASSIGN(sym->s_dpos, curr_pos);
   1243  1.1  cgd 	if ((sym->s_kind = symtyp) != FLAB)
   1244  1.1  cgd 		sym->s_type = gettyp(INT);
   1245  1.1  cgd 
   1246  1.1  cgd 	symtyp = FVFT;
   1247  1.1  cgd 
   1248  1.1  cgd 	if ((sym->s_link = symtab[sb->sb_hash]) != NULL)
   1249  1.1  cgd 		symtab[sb->sb_hash]->s_rlink = &sym->s_link;
   1250  1.1  cgd 	(symtab[sb->sb_hash] = sym)->s_rlink = &symtab[sb->sb_hash];
   1251  1.1  cgd 
   1252  1.1  cgd 	*di->ldlsym = sym;
   1253  1.1  cgd 	di->ldlsym = &sym->s_dlnxt;
   1254  1.1  cgd 
   1255  1.1  cgd 	freesb(sb);
   1256  1.1  cgd 	return (sym);
   1257  1.1  cgd }
   1258  1.1  cgd 
   1259  1.1  cgd /*
   1260  1.1  cgd  * Remove a symbol forever from the symbol table. s_blklev
   1261  1.1  cgd  * is set to -1 to avoid that the symbol will later be put
   1262  1.1  cgd  * back to the symbol table.
   1263  1.1  cgd  */
   1264  1.1  cgd void
   1265  1.1  cgd rmsym(sym)
   1266  1.1  cgd 	sym_t	*sym;
   1267  1.1  cgd {
   1268  1.1  cgd 	if ((*sym->s_rlink = sym->s_link) != NULL)
   1269  1.1  cgd 		sym->s_link->s_rlink = sym->s_rlink;
   1270  1.1  cgd 	sym->s_blklev = -1;
   1271  1.1  cgd 	sym->s_link = NULL;
   1272  1.1  cgd }
   1273  1.1  cgd 
   1274  1.1  cgd /*
   1275  1.1  cgd  * Remove a list of symbols declared at one level from the symbol
   1276  1.1  cgd  * table.
   1277  1.1  cgd  */
   1278  1.1  cgd void
   1279  1.1  cgd rmsyms(syms)
   1280  1.1  cgd 	sym_t	*syms;
   1281  1.1  cgd {
   1282  1.1  cgd 	sym_t	*sym;
   1283  1.1  cgd 
   1284  1.1  cgd 	for (sym = syms; sym != NULL; sym = sym->s_dlnxt) {
   1285  1.1  cgd 		if (sym->s_blklev != -1) {
   1286  1.1  cgd 			if ((*sym->s_rlink = sym->s_link) != NULL)
   1287  1.1  cgd 				sym->s_link->s_rlink = sym->s_rlink;
   1288  1.1  cgd 			sym->s_link = NULL;
   1289  1.1  cgd 			sym->s_rlink = NULL;
   1290  1.1  cgd 		}
   1291  1.1  cgd 	}
   1292  1.1  cgd }
   1293  1.1  cgd 
   1294  1.1  cgd /*
   1295  1.1  cgd  * Put a symbol into the symbol table
   1296  1.1  cgd  */
   1297  1.1  cgd void
   1298  1.1  cgd inssym(bl, sym)
   1299  1.1  cgd 	int	bl;
   1300  1.1  cgd 	sym_t	*sym;
   1301  1.1  cgd {
   1302  1.1  cgd 	int	h;
   1303  1.1  cgd 
   1304  1.1  cgd 	h = hash(sym->s_name);
   1305  1.1  cgd 	if ((sym->s_link = symtab[h]) != NULL)
   1306  1.1  cgd 		symtab[h]->s_rlink = &sym->s_link;
   1307  1.1  cgd 	(symtab[h] = sym)->s_rlink = &symtab[h];
   1308  1.1  cgd 	sym->s_blklev = bl;
   1309  1.1  cgd 	if (sym->s_link != NULL && sym->s_blklev < sym->s_link->s_blklev)
   1310  1.1  cgd 		lerror("inssym()");
   1311  1.1  cgd }
   1312  1.1  cgd 
   1313  1.1  cgd /*
   1314  1.1  cgd  * Called at level 0 after syntax errors
   1315  1.1  cgd  * Removes all symbols which are not declared at level 0 from the
   1316  1.1  cgd  * symbol table. Also frees all memory which is not associated with
   1317  1.1  cgd  * level 0.
   1318  1.1  cgd  */
   1319  1.1  cgd void
   1320  1.1  cgd cleanup()
   1321  1.1  cgd {
   1322  1.1  cgd 	sym_t	*sym, *nsym;
   1323  1.1  cgd 	int	i;
   1324  1.1  cgd 
   1325  1.1  cgd 	for (i = 0; i < HSHSIZ1; i++) {
   1326  1.1  cgd 		for (sym = symtab[i]; sym != NULL; sym = nsym) {
   1327  1.1  cgd 			nsym = sym->s_link;
   1328  1.1  cgd 			if (sym->s_blklev >= 1) {
   1329  1.1  cgd 				if ((*sym->s_rlink = nsym) != NULL)
   1330  1.1  cgd 					nsym->s_rlink = sym->s_rlink;
   1331  1.1  cgd 			}
   1332  1.1  cgd 		}
   1333  1.1  cgd 	}
   1334  1.1  cgd 
   1335  1.1  cgd 	for (i = mblklev; i > 0; i--)
   1336  1.1  cgd 		freelblk(i);
   1337  1.1  cgd }
   1338  1.1  cgd 
   1339  1.1  cgd /*
   1340  1.1  cgd  * Create a new symbol with the name of an existing symbol.
   1341  1.1  cgd  */
   1342  1.1  cgd sym_t *
   1343  1.1  cgd pushdown(sym)
   1344  1.1  cgd 	sym_t	*sym;
   1345  1.1  cgd {
   1346  1.1  cgd 	int	h;
   1347  1.1  cgd 	sym_t	*nsym;
   1348  1.1  cgd 
   1349  1.1  cgd 	h = hash(sym->s_name);
   1350  1.1  cgd 	nsym = getblk(sizeof (sym_t));
   1351  1.1  cgd 	if (sym->s_blklev > blklev)
   1352  1.1  cgd 		lerror("pushdown()");
   1353  1.1  cgd 	nsym->s_name = sym->s_name;
   1354  1.1  cgd 	STRUCT_ASSIGN(nsym->s_dpos, curr_pos);
   1355  1.1  cgd 	nsym->s_kind = sym->s_kind;
   1356  1.1  cgd 	nsym->s_blklev = blklev;
   1357  1.1  cgd 
   1358  1.1  cgd 	if ((nsym->s_link = symtab[h]) != NULL)
   1359  1.1  cgd 		symtab[h]->s_rlink = &nsym->s_link;
   1360  1.1  cgd 	(symtab[h] = nsym)->s_rlink = &symtab[h];
   1361  1.1  cgd 
   1362  1.1  cgd 	*dcs->ldlsym = nsym;
   1363  1.1  cgd 	dcs->ldlsym = &nsym->s_dlnxt;
   1364  1.1  cgd 
   1365  1.1  cgd 	return (nsym);
   1366  1.1  cgd }
   1367