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