Home | History | Annotate | Line # | Download | only in lint1
decl.c revision 1.369
      1  1.369    rillig /* $NetBSD: decl.c,v 1.369 2023/07/30 22:38:09 rillig Exp $ */
      2    1.2       cgd 
      3    1.1       cgd /*
      4   1.12       cgd  * Copyright (c) 1996 Christopher G. Demetriou.  All Rights Reserved.
      5    1.1       cgd  * Copyright (c) 1994, 1995 Jochen Pohl
      6    1.1       cgd  * All Rights Reserved.
      7    1.1       cgd  *
      8    1.1       cgd  * Redistribution and use in source and binary forms, with or without
      9    1.1       cgd  * modification, are permitted provided that the following conditions
     10    1.1       cgd  * are met:
     11    1.1       cgd  * 1. Redistributions of source code must retain the above copyright
     12    1.1       cgd  *    notice, this list of conditions and the following disclaimer.
     13    1.1       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     14    1.1       cgd  *    notice, this list of conditions and the following disclaimer in the
     15    1.1       cgd  *    documentation and/or other materials provided with the distribution.
     16    1.1       cgd  * 3. All advertising materials mentioning features or use of this software
     17    1.1       cgd  *    must display the following acknowledgement:
     18  1.351    rillig  *	This product includes software developed by Jochen Pohl for
     19    1.1       cgd  *	The NetBSD Project.
     20    1.1       cgd  * 4. The name of the author may not be used to endorse or promote products
     21    1.1       cgd  *    derived from this software without specific prior written permission.
     22    1.1       cgd  *
     23    1.1       cgd  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     24    1.1       cgd  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     25    1.1       cgd  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     26    1.1       cgd  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     27    1.1       cgd  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     28    1.1       cgd  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     29    1.1       cgd  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     30    1.1       cgd  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     31    1.1       cgd  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     32    1.1       cgd  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     33    1.1       cgd  */
     34    1.1       cgd 
     35   1.33       jmc #if HAVE_NBTOOL_CONFIG_H
     36   1.33       jmc #include "nbtool_config.h"
     37   1.33       jmc #endif
     38   1.33       jmc 
     39   1.13  christos #include <sys/cdefs.h>
     40  1.281    rillig #if defined(__RCSID)
     41  1.369    rillig __RCSID("$NetBSD: decl.c,v 1.369 2023/07/30 22:38:09 rillig Exp $");
     42    1.1       cgd #endif
     43    1.1       cgd 
     44    1.1       cgd #include <sys/param.h>
     45    1.1       cgd #include <limits.h>
     46    1.1       cgd #include <stdlib.h>
     47    1.1       cgd #include <string.h>
     48    1.1       cgd 
     49    1.1       cgd #include "lint1.h"
     50    1.1       cgd 
     51  1.301    rillig const char unnamed[] = "<unnamed>";
     52    1.1       cgd 
     53  1.111    rillig /* shared type structures for arithmetic types and void */
     54  1.286    rillig static	type_t	typetab[NTSPEC];
     55    1.1       cgd 
     56    1.1       cgd /* value of next enumerator during declaration of enum types */
     57    1.1       cgd int	enumval;
     58    1.1       cgd 
     59    1.1       cgd /*
     60  1.330    rillig  * Points to the innermost element of a stack that contains information about
     61  1.330    rillig  * nested declarations, such as struct declarations, function prototypes,
     62  1.330    rillig  * local variables.
     63    1.1       cgd  */
     64  1.330    rillig decl_level	*dcs;
     65    1.1       cgd 
     66    1.1       cgd 
     67    1.1       cgd /*
     68    1.1       cgd  * initializes all global vars used in declarations
     69    1.1       cgd  */
     70    1.1       cgd void
     71   1.22     lukem initdecl(void)
     72    1.1       cgd {
     73    1.1       cgd 
     74    1.1       cgd 	/* declaration stack */
     75  1.170    rillig 	dcs = xcalloc(1, sizeof(*dcs));
     76  1.330    rillig 	dcs->d_kind = DLK_EXTERN;
     77  1.323    rillig 	dcs->d_last_dlsym = &dcs->d_first_dlsym;
     78    1.1       cgd 
     79  1.321    rillig 	if (!pflag) {
     80  1.345    rillig 		for (size_t i = 0; i < NTSPEC; i++) {
     81  1.345    rillig 			if (ttab[i].tt_rank_kind != RK_NONE)
     82  1.345    rillig 				ttab[i].tt_rank_value =
     83  1.345    rillig 				    ttab[i].tt_size_in_bits;
     84  1.345    rillig 		}
     85  1.345    rillig 		ttab[BOOL].tt_rank_value = 1;
     86  1.321    rillig 	}
     87  1.321    rillig 
     88  1.321    rillig 	if (Tflag) {
     89  1.321    rillig 		ttab[BOOL].tt_is_integer = false;
     90  1.321    rillig 		ttab[BOOL].tt_is_uinteger = false;
     91  1.321    rillig 		ttab[BOOL].tt_is_arithmetic = false;
     92  1.321    rillig 	}
     93   1.22     lukem 
     94  1.214    rillig 	/* struct, union, enum, ptr, array and func are not shared. */
     95  1.321    rillig 	for (int i = (int)SIGNED; i < (int)STRUCT; i++)
     96  1.321    rillig 		typetab[i].t_tspec = (tspec_t)i;
     97    1.1       cgd }
     98    1.1       cgd 
     99    1.1       cgd /*
    100   1.73    rillig  * Returns a shared type structure for arithmetic types and void.
    101    1.1       cgd  *
    102  1.247    rillig  * It's important to duplicate this structure using block_dup_type or
    103  1.247    rillig  * expr_dup_type if it is to be modified (adding qualifiers or anything
    104  1.169    rillig  * else).
    105    1.1       cgd  */
    106    1.1       cgd type_t *
    107   1.22     lukem gettyp(tspec_t t)
    108    1.1       cgd {
    109   1.22     lukem 
    110  1.348    rillig 	lint_assert((int)t < (int)STRUCT);
    111  1.172    rillig 	/* TODO: make the return type 'const' */
    112   1.76    rillig 	return &typetab[t];
    113    1.1       cgd }
    114    1.1       cgd 
    115    1.1       cgd type_t *
    116  1.247    rillig block_dup_type(const type_t *tp)
    117    1.1       cgd {
    118    1.1       cgd 
    119  1.369    rillig 	debug_step("%s '%s'", __func__, type_name(tp));
    120  1.358    rillig 	type_t *ntp = block_zero_alloc(sizeof(*ntp), "type");
    121   1.85    rillig 	*ntp = *tp;
    122   1.76    rillig 	return ntp;
    123    1.1       cgd }
    124    1.1       cgd 
    125  1.247    rillig /* Duplicate a type, free the allocated memory after the expression. */
    126    1.1       cgd type_t *
    127  1.169    rillig expr_dup_type(const type_t *tp)
    128    1.1       cgd {
    129    1.1       cgd 
    130  1.369    rillig 	debug_step("%s '%s'", __func__, type_name(tp));
    131  1.358    rillig 	type_t *ntp = expr_zero_alloc(sizeof(*ntp), "type");
    132   1.85    rillig 	*ntp = *tp;
    133   1.76    rillig 	return ntp;
    134    1.1       cgd }
    135    1.1       cgd 
    136    1.1       cgd /*
    137  1.211    rillig  * Return the unqualified version of the type.  The returned type is freed at
    138  1.211    rillig  * the end of the current expression.
    139  1.211    rillig  *
    140  1.211    rillig  * See C99 6.2.5p25.
    141  1.211    rillig  */
    142  1.211    rillig type_t *
    143  1.211    rillig expr_unqualified_type(const type_t *tp)
    144  1.211    rillig {
    145  1.211    rillig 
    146  1.358    rillig 	type_t *ntp = expr_zero_alloc(sizeof(*ntp), "type");
    147  1.211    rillig 	*ntp = *tp;
    148  1.211    rillig 	ntp->t_const = false;
    149  1.211    rillig 	ntp->t_volatile = false;
    150  1.211    rillig 
    151  1.221    rillig 	/*
    152  1.221    rillig 	 * In case of a struct or union type, the members should lose their
    153  1.221    rillig 	 * qualifiers as well, but that would require a deep copy of the
    154  1.221    rillig 	 * struct or union type.  This in turn would defeat the type
    155  1.298    rillig 	 * comparison in types_compatible, which simply tests whether
    156  1.308    rillig 	 * tp1->t_sou == tp2->t_sou.
    157  1.221    rillig 	 */
    158  1.211    rillig 
    159  1.369    rillig 	debug_step("%s '%s'", __func__, type_name(ntp));
    160  1.211    rillig 	return ntp;
    161  1.211    rillig }
    162  1.211    rillig 
    163  1.211    rillig /*
    164  1.327    rillig  * Returns whether the argument is void or an incomplete array, struct, union
    165  1.327    rillig  * or enum type.
    166    1.1       cgd  */
    167  1.122    rillig bool
    168  1.132    rillig is_incomplete(const type_t *tp)
    169    1.1       cgd {
    170  1.327    rillig 	tspec_t t = tp->t_tspec;
    171    1.1       cgd 
    172  1.327    rillig 	if (t == VOID)
    173  1.124    rillig 		return true;
    174  1.298    rillig 	if (t == ARRAY)
    175  1.136    rillig 		return tp->t_incomplete_array;
    176  1.298    rillig 	if (is_struct_or_union(t))
    177  1.308    rillig 		return tp->t_sou->sou_incomplete;
    178  1.298    rillig 	if (t == ENUM)
    179  1.135    rillig 		return tp->t_enum->en_incomplete;
    180  1.124    rillig 	return false;
    181    1.1       cgd }
    182    1.1       cgd 
    183  1.349    rillig void
    184  1.349    rillig dcs_add_function_specifier(function_specifier fs)
    185  1.349    rillig {
    186  1.349    rillig 	debug_step("%s: %s", __func__, function_specifier_name(fs));
    187  1.349    rillig 	if (fs == FS_INLINE) {
    188  1.349    rillig 		if (dcs->d_inline)
    189  1.349    rillig 			/* duplicate '%s' */
    190  1.349    rillig 			warning(10, "inline");
    191  1.349    rillig 		dcs->d_inline = true;
    192  1.349    rillig 	}
    193  1.349    rillig }
    194  1.349    rillig 
    195    1.1       cgd /*
    196  1.297    rillig  * Remember the storage class of the current declaration and detect multiple
    197    1.1       cgd  * storage classes.
    198    1.1       cgd  */
    199    1.1       cgd void
    200  1.296    rillig dcs_add_storage_class(scl_t sc)
    201    1.1       cgd {
    202   1.22     lukem 
    203  1.311    rillig 	if (dcs->d_type != NULL || dcs->d_abstract_type != NO_TSPEC ||
    204  1.311    rillig 	    dcs->d_sign_mod != NO_TSPEC || dcs->d_rank_mod != NO_TSPEC) {
    205    1.1       cgd 		/* storage class after type is obsolescent */
    206    1.1       cgd 		warning(83);
    207    1.1       cgd 	}
    208  1.298    rillig 
    209  1.298    rillig 	if (dcs->d_scl == NOSCL)
    210    1.3       jpo 		dcs->d_scl = sc;
    211  1.360    rillig 	else if ((dcs->d_scl == EXTERN && sc == THREAD_LOCAL)
    212  1.360    rillig 	    || (dcs->d_scl == THREAD_LOCAL && sc == EXTERN))
    213  1.360    rillig 		dcs->d_scl = EXTERN;	/* ignore thread_local */
    214  1.362    rillig 	else if ((dcs->d_scl == STATIC && sc == THREAD_LOCAL)
    215  1.362    rillig 	    || (dcs->d_scl == THREAD_LOCAL && sc == STATIC))
    216  1.362    rillig 		dcs->d_scl = STATIC;	/* ignore thread_local */
    217  1.298    rillig 	else
    218  1.209    rillig 		dcs->d_multiple_storage_classes = true;
    219  1.369    rillig 	debug_step("%s:", __func__);
    220  1.369    rillig 	debug_dcs(false);
    221    1.1       cgd }
    222    1.1       cgd 
    223  1.364    rillig /* Merge the signedness into the abstract type. */
    224  1.364    rillig static tspec_t
    225  1.364    rillig merge_signedness(tspec_t t, tspec_t s)
    226  1.364    rillig {
    227  1.364    rillig 
    228  1.364    rillig 	if (s == SIGNED)
    229  1.364    rillig 		return t == CHAR ? SCHAR : t;
    230  1.364    rillig 	if (s != UNSIGN)
    231  1.364    rillig 		return t;
    232  1.364    rillig 	return t == CHAR ? UCHAR
    233  1.364    rillig 	    : t == SHORT ? USHORT
    234  1.364    rillig 	    : t == INT ? UINT
    235  1.364    rillig 	    : t == LONG ? ULONG
    236  1.364    rillig 	    : t == LLONG ? ULLONG
    237  1.364    rillig 	    : t;
    238  1.364    rillig }
    239  1.364    rillig 
    240  1.364    rillig /*
    241  1.364    rillig  * Called if a list of declaration specifiers contains a typedef name
    242  1.364    rillig  * and other specifiers (except struct, union, enum, typedef name).
    243  1.364    rillig  */
    244  1.364    rillig static type_t *
    245  1.364    rillig typedef_error(type_t *td, tspec_t t)
    246  1.364    rillig {
    247  1.364    rillig 
    248  1.369    rillig 	debug_step("%s: '%s' %s", __func__, type_name(td), tspec_name(t));
    249  1.369    rillig 
    250  1.364    rillig 	tspec_t t2 = td->t_tspec;
    251  1.364    rillig 
    252  1.364    rillig 	if ((t == SIGNED || t == UNSIGN) &&
    253  1.364    rillig 	    (t2 == CHAR || t2 == SHORT || t2 == INT ||
    254  1.364    rillig 	     t2 == LONG || t2 == LLONG)) {
    255  1.364    rillig 		if (allow_c90)
    256  1.364    rillig 			/* modifying typedef with '%s'; only qualifiers... */
    257  1.364    rillig 			warning(5, tspec_name(t));
    258  1.364    rillig 		td = block_dup_type(gettyp(merge_signedness(t2, t)));
    259  1.364    rillig 		td->t_typedef = true;
    260  1.364    rillig 		return td;
    261  1.364    rillig 	}
    262  1.364    rillig 
    263  1.364    rillig 	if (t == SHORT && (t2 == INT || t2 == UINT)) {
    264  1.364    rillig 		/* modifying typedef with '%s'; only qualifiers allowed */
    265  1.364    rillig 		warning(5, "short");
    266  1.364    rillig 		td = block_dup_type(gettyp(t2 == INT ? SHORT : USHORT));
    267  1.364    rillig 		td->t_typedef = true;
    268  1.364    rillig 		return td;
    269  1.364    rillig 	}
    270  1.364    rillig 
    271  1.364    rillig 	if (t != LONG)
    272  1.364    rillig 		goto invalid;
    273  1.364    rillig 
    274  1.367    rillig 	tspec_t lt;
    275  1.364    rillig 	if (t2 == INT)
    276  1.367    rillig 		lt = LONG;
    277  1.364    rillig 	else if (t2 == UINT)
    278  1.367    rillig 		lt = ULONG;
    279  1.364    rillig 	else if (t2 == LONG)
    280  1.367    rillig 		lt = LLONG;
    281  1.364    rillig 	else if (t2 == ULONG)
    282  1.367    rillig 		lt = ULLONG;
    283  1.364    rillig 	else if (t2 == FLOAT)
    284  1.367    rillig 		lt = DOUBLE;
    285  1.364    rillig 	else if (t2 == DOUBLE)
    286  1.367    rillig 		lt = LDOUBLE;
    287  1.364    rillig 	else if (t2 == DCOMPLEX)
    288  1.367    rillig 		lt = LCOMPLEX;
    289  1.364    rillig 	else
    290  1.364    rillig 		goto invalid;
    291  1.364    rillig 
    292  1.364    rillig 	/* modifying typedef with '%s'; only qualifiers allowed */
    293  1.364    rillig 	warning(5, "long");
    294  1.367    rillig 	td = block_dup_type(gettyp(lt));
    295  1.364    rillig 	td->t_typedef = true;
    296  1.364    rillig 	return td;
    297  1.364    rillig 
    298  1.364    rillig invalid:
    299  1.364    rillig 	/* Anything else is not accepted. */
    300  1.364    rillig 	dcs->d_invalid_type_combination = true;
    301  1.364    rillig 	return td;
    302  1.364    rillig }
    303  1.364    rillig 
    304    1.1       cgd /*
    305  1.327    rillig  * Remember the type, modifier or typedef name returned by the parser in the
    306  1.327    rillig  * top element of the declaration stack. This information is used in
    307  1.327    rillig  * dcs_end_type to build the type used for all declarators in this declaration.
    308    1.1       cgd  *
    309  1.327    rillig  * If tp->t_typedef is true, the type comes from a previously defined typename.
    310  1.327    rillig  * Otherwise, it comes from a type specifier (int, long, ...) or a
    311    1.1       cgd  * struct/union/enum tag.
    312    1.1       cgd  */
    313    1.1       cgd void
    314  1.296    rillig dcs_add_type(type_t *tp)
    315    1.1       cgd {
    316  1.213    rillig 
    317  1.213    rillig 	debug_step("%s: %s", __func__, type_name(tp));
    318  1.369    rillig 	debug_dcs(false);
    319    1.1       cgd 	if (tp->t_typedef) {
    320   1.92    rillig 		/*
    321   1.92    rillig 		 * something like "typedef int a; int a b;"
    322   1.92    rillig 		 * This should not happen with current grammar.
    323   1.92    rillig 		 */
    324   1.92    rillig 		lint_assert(dcs->d_type == NULL);
    325  1.311    rillig 		lint_assert(dcs->d_abstract_type == NO_TSPEC);
    326  1.311    rillig 		lint_assert(dcs->d_sign_mod == NO_TSPEC);
    327  1.311    rillig 		lint_assert(dcs->d_rank_mod == NO_TSPEC);
    328   1.92    rillig 
    329    1.3       jpo 		dcs->d_type = tp;
    330    1.1       cgd 		return;
    331    1.1       cgd 	}
    332    1.1       cgd 
    333  1.327    rillig 	tspec_t t = tp->t_tspec;
    334  1.292    rillig 	if (is_struct_or_union(t) || t == ENUM) {
    335    1.1       cgd 		/*
    336    1.1       cgd 		 * something like "int struct a ..."
    337    1.1       cgd 		 * struct/union/enum with anything else is not allowed
    338    1.1       cgd 		 */
    339  1.311    rillig 		if (dcs->d_type != NULL || dcs->d_abstract_type != NO_TSPEC ||
    340  1.311    rillig 		    dcs->d_rank_mod != NO_TSPEC || dcs->d_sign_mod != NO_TSPEC) {
    341  1.209    rillig 			dcs->d_invalid_type_combination = true;
    342  1.311    rillig 			dcs->d_abstract_type = NO_TSPEC;
    343  1.311    rillig 			dcs->d_sign_mod = NO_TSPEC;
    344  1.311    rillig 			dcs->d_rank_mod = NO_TSPEC;
    345    1.1       cgd 		}
    346    1.3       jpo 		dcs->d_type = tp;
    347  1.369    rillig 		debug_dcs(false);
    348    1.1       cgd 		return;
    349    1.1       cgd 	}
    350    1.1       cgd 
    351    1.3       jpo 	if (dcs->d_type != NULL && !dcs->d_type->t_typedef) {
    352    1.1       cgd 		/*
    353    1.1       cgd 		 * something like "struct a int"
    354    1.1       cgd 		 * struct/union/enum with anything else is not allowed
    355    1.1       cgd 		 */
    356  1.209    rillig 		dcs->d_invalid_type_combination = true;
    357    1.1       cgd 		return;
    358    1.1       cgd 	}
    359    1.1       cgd 
    360   1.39  christos 	if (t == COMPLEX) {
    361  1.147    rillig 		if (dcs->d_complex_mod == FLOAT)
    362   1.39  christos 			t = FCOMPLEX;
    363  1.147    rillig 		else if (dcs->d_complex_mod == DOUBLE)
    364   1.39  christos 			t = DCOMPLEX;
    365  1.100    rillig 		else {
    366  1.104    rillig 			/* invalid type for _Complex */
    367  1.100    rillig 			error(308);
    368  1.100    rillig 			t = DCOMPLEX; /* just as a fallback */
    369  1.100    rillig 		}
    370  1.311    rillig 		dcs->d_complex_mod = NO_TSPEC;
    371   1.39  christos 	}
    372   1.39  christos 
    373  1.147    rillig 	if (t == LONG && dcs->d_rank_mod == LONG) {
    374    1.1       cgd 		/* "long long" or "long ... long" */
    375  1.340    rillig 		t = LLONG;
    376  1.311    rillig 		dcs->d_rank_mod = NO_TSPEC;
    377  1.350    rillig 		if (!suppress_longlong)
    378  1.243    rillig 			/* %s does not support 'long long' */
    379  1.279    rillig 			c99ism(265, allow_c90 ? "C90" : "traditional C");
    380    1.1       cgd 	}
    381    1.1       cgd 
    382    1.3       jpo 	if (dcs->d_type != NULL && dcs->d_type->t_typedef) {
    383    1.1       cgd 		/* something like "typedef int a; a long ..." */
    384  1.297    rillig 		dcs->d_type = typedef_error(dcs->d_type, t);
    385    1.1       cgd 		return;
    386    1.1       cgd 	}
    387    1.1       cgd 
    388    1.1       cgd 	/* now it can be only a combination of arithmetic types and void */
    389    1.1       cgd 	if (t == SIGNED || t == UNSIGN) {
    390  1.311    rillig 		if (dcs->d_sign_mod != NO_TSPEC)
    391  1.209    rillig 			dcs->d_invalid_type_combination = true;
    392  1.147    rillig 		dcs->d_sign_mod = t;
    393  1.340    rillig 	} else if (t == SHORT || t == LONG || t == LLONG) {
    394  1.311    rillig 		if (dcs->d_rank_mod != NO_TSPEC)
    395  1.209    rillig 			dcs->d_invalid_type_combination = true;
    396  1.147    rillig 		dcs->d_rank_mod = t;
    397   1.39  christos 	} else if (t == FLOAT || t == DOUBLE) {
    398  1.311    rillig 		if (dcs->d_rank_mod == NO_TSPEC || dcs->d_rank_mod == LONG) {
    399  1.311    rillig 			if (dcs->d_complex_mod != NO_TSPEC
    400  1.147    rillig 			    || (t == FLOAT && dcs->d_rank_mod == LONG))
    401  1.209    rillig 				dcs->d_invalid_type_combination = true;
    402  1.147    rillig 			dcs->d_complex_mod = t;
    403   1.40  christos 		} else {
    404  1.311    rillig 			if (dcs->d_abstract_type != NO_TSPEC)
    405  1.209    rillig 				dcs->d_invalid_type_combination = true;
    406  1.147    rillig 			dcs->d_abstract_type = t;
    407   1.40  christos 		}
    408   1.68  christos 	} else if (t == PTR) {
    409   1.68  christos 		dcs->d_type = tp;
    410    1.1       cgd 	} else {
    411  1.311    rillig 		if (dcs->d_abstract_type != NO_TSPEC)
    412  1.209    rillig 			dcs->d_invalid_type_combination = true;
    413  1.147    rillig 		dcs->d_abstract_type = t;
    414    1.1       cgd 	}
    415  1.369    rillig 	debug_dcs(false);
    416    1.1       cgd }
    417    1.1       cgd 
    418    1.1       cgd static void
    419  1.297    rillig set_first_typedef(type_t *tp, sym_t *sym)
    420    1.1       cgd {
    421    1.1       cgd 
    422  1.327    rillig 	tspec_t t = tp->t_tspec;
    423  1.327    rillig 	if (is_struct_or_union(t) && tp->t_sou->sou_first_typedef == NULL)
    424  1.327    rillig 		tp->t_sou->sou_first_typedef = sym;
    425  1.327    rillig 	if (t == ENUM && tp->t_enum->en_first_typedef == NULL)
    426  1.327    rillig 		tp->t_enum->en_first_typedef = sym;
    427    1.1       cgd }
    428    1.1       cgd 
    429  1.225    rillig static unsigned int
    430  1.332    rillig bit_fields_width(const sym_t **mem, bool *named)
    431   1.65  christos {
    432  1.326    rillig 	unsigned int width = 0;
    433  1.326    rillig 	unsigned int align = 0;
    434  1.122    rillig 	while (*mem != NULL && (*mem)->s_type->t_bitfield) {
    435  1.326    rillig 		if ((*mem)->s_name != unnamed)
    436  1.326    rillig 			*named = true;
    437  1.322    rillig 		width += (*mem)->s_type->t_bit_field_width;
    438  1.326    rillig 		unsigned int mem_align = alignment_in_bits((*mem)->s_type);
    439  1.326    rillig 		if (mem_align > align)
    440  1.326    rillig 			align = mem_align;
    441   1.80    rillig 		*mem = (*mem)->s_next;
    442   1.65  christos 	}
    443  1.326    rillig 	return (width + align - 1) & -align;
    444   1.65  christos }
    445   1.65  christos 
    446   1.48  christos static void
    447  1.325    rillig pack_struct_or_union(type_t *tp)
    448   1.47  christos {
    449   1.47  christos 
    450  1.325    rillig 	if (!is_struct_or_union(tp->t_tspec)) {
    451  1.325    rillig 		/* attribute '%s' ignored for '%s' */
    452  1.325    rillig 		warning(326, "packed", type_name(tp));
    453  1.325    rillig 		return;
    454  1.325    rillig 	}
    455  1.242    rillig 
    456  1.325    rillig 	unsigned int bits = 0;
    457  1.326    rillig 	bool named = false;
    458  1.332    rillig 	for (const sym_t *mem = tp->t_sou->sou_first_member;
    459  1.325    rillig 	     mem != NULL; mem = mem->s_next) {
    460  1.325    rillig 		// TODO: Maybe update mem->u.s_member.sm_offset_in_bits.
    461  1.325    rillig 		if (mem->s_type->t_bitfield) {
    462  1.327    rillig 			bits += bit_fields_width(&mem, &named);
    463  1.325    rillig 			if (mem == NULL)
    464  1.325    rillig 				break;
    465   1.47  christos 		}
    466  1.325    rillig 		unsigned int mem_bits = type_size_in_bits(mem->s_type);
    467  1.325    rillig 		if (tp->t_tspec == STRUCT)
    468  1.325    rillig 			bits += mem_bits;
    469  1.325    rillig 		else if (mem_bits > bits)
    470  1.325    rillig 			bits = mem_bits;
    471   1.47  christos 	}
    472  1.325    rillig 	tp->t_sou->sou_size_in_bits = bits;
    473  1.369    rillig 	debug_dcs(false);
    474   1.47  christos }
    475   1.47  christos 
    476   1.48  christos void
    477  1.296    rillig dcs_add_packed(void)
    478   1.48  christos {
    479   1.49  christos 	if (dcs->d_type == NULL)
    480  1.122    rillig 		dcs->d_packed = true;
    481   1.49  christos 	else
    482  1.325    rillig 		pack_struct_or_union(dcs->d_type);
    483   1.48  christos }
    484   1.48  christos 
    485   1.67  christos void
    486  1.296    rillig dcs_set_used(void)
    487   1.67  christos {
    488  1.122    rillig 	dcs->d_used = true;
    489   1.67  christos }
    490   1.67  christos 
    491    1.1       cgd /*
    492  1.327    rillig  * Remember a qualifier that is part of the declaration specifiers (and not the
    493  1.327    rillig  * declarator). The remembered qualifier is used by dcs_end_type for all
    494  1.327    rillig  * declarators.
    495    1.1       cgd  */
    496    1.1       cgd void
    497  1.354    rillig dcs_add_qualifiers(type_qualifiers qs)
    498    1.1       cgd {
    499  1.355    rillig 	add_type_qualifiers(&dcs->d_qual, qs);
    500    1.1       cgd }
    501    1.1       cgd 
    502    1.1       cgd void
    503  1.330    rillig begin_declaration_level(decl_level_kind kind)
    504    1.1       cgd {
    505    1.1       cgd 
    506  1.330    rillig 	decl_level *dl = xcalloc(1, sizeof(*dl));
    507  1.330    rillig 	dl->d_enclosing = dcs;
    508  1.330    rillig 	dl->d_kind = kind;
    509  1.330    rillig 	dl->d_last_dlsym = &dl->d_first_dlsym;
    510  1.330    rillig 	dcs = dl;
    511  1.335    rillig 	debug_enter();
    512  1.335    rillig 	debug_dcs(true);
    513    1.1       cgd }
    514    1.1       cgd 
    515    1.1       cgd void
    516  1.160    rillig end_declaration_level(void)
    517    1.1       cgd {
    518    1.1       cgd 
    519  1.335    rillig 	debug_dcs(true);
    520    1.1       cgd 
    521  1.335    rillig 	decl_level *dl = dcs;
    522  1.330    rillig 	dcs = dl->d_enclosing;
    523  1.335    rillig 	lint_assert(dcs != NULL);
    524  1.302    rillig 
    525  1.330    rillig 	switch (dl->d_kind) {
    526  1.330    rillig 	case DLK_STRUCT:
    527  1.330    rillig 	case DLK_UNION:
    528  1.330    rillig 	case DLK_ENUM:
    529    1.1       cgd 		/*
    530  1.327    rillig 		 * Symbols declared in (nested) structs or enums are part of
    531  1.327    rillig 		 * the next level (they are removed from the symbol table if
    532  1.327    rillig 		 * the symbols of the outer level are removed).
    533    1.1       cgd 		 */
    534  1.330    rillig 		if ((*dcs->d_last_dlsym = dl->d_first_dlsym) != NULL)
    535  1.330    rillig 			dcs->d_last_dlsym = dl->d_last_dlsym;
    536    1.1       cgd 		break;
    537  1.330    rillig 	case DLK_OLD_STYLE_ARGS:
    538    1.1       cgd 		/*
    539  1.323    rillig 		 * All symbols in dcs->d_first_dlsym are introduced in
    540  1.323    rillig 		 * old-style argument declarations (it's not clean, but
    541  1.323    rillig 		 * possible). They are appended to the list of symbols declared
    542  1.323    rillig 		 * in an old-style argument identifier list or a new-style
    543    1.1       cgd 		 * parameter type list.
    544    1.1       cgd 		 */
    545  1.330    rillig 		if (dl->d_first_dlsym != NULL) {
    546  1.330    rillig 			*dl->d_last_dlsym = dcs->d_func_proto_syms;
    547  1.330    rillig 			dcs->d_func_proto_syms = dl->d_first_dlsym;
    548    1.1       cgd 		}
    549    1.1       cgd 		break;
    550  1.330    rillig 	case DLK_ABSTRACT:
    551    1.1       cgd 		/*
    552  1.327    rillig 		 * Append all symbols declared in the abstract declaration to
    553  1.327    rillig 		 * the list of symbols declared in the surrounding declaration
    554  1.327    rillig 		 * or block.
    555  1.327    rillig 		 *
    556    1.1       cgd 		 * XXX I'm not sure whether they should be removed from the
    557    1.1       cgd 		 * symbol table now or later.
    558    1.1       cgd 		 */
    559  1.330    rillig 		if ((*dcs->d_last_dlsym = dl->d_first_dlsym) != NULL)
    560  1.330    rillig 			dcs->d_last_dlsym = dl->d_last_dlsym;
    561    1.1       cgd 		break;
    562  1.330    rillig 	case DLK_AUTO:
    563  1.330    rillig 		check_usage(dl);
    564    1.1       cgd 		/* FALLTHROUGH */
    565  1.330    rillig 	case DLK_PROTO_PARAMS:
    566  1.305    rillig 		/* usage of arguments will be checked by end_function() */
    567  1.335    rillig 		symtab_remove_level(dl->d_first_dlsym);
    568    1.1       cgd 		break;
    569  1.330    rillig 	case DLK_EXTERN:
    570  1.348    rillig 		/* there is nothing around an external declaration */
    571   1.97    rillig 		/* FALLTHROUGH */
    572    1.1       cgd 	default:
    573  1.124    rillig 		lint_assert(/*CONSTCOND*/false);
    574    1.1       cgd 	}
    575  1.330    rillig 	free(dl);
    576  1.357    rillig 	debug_leave();
    577    1.1       cgd }
    578    1.1       cgd 
    579    1.1       cgd /*
    580  1.327    rillig  * Set flag d_asm in all declaration stack elements up to the outermost one.
    581   1.10       jpo  *
    582  1.327    rillig  * This is used to mark compound statements which have, possibly in nested
    583  1.327    rillig  * compound statements, asm statements. For these compound statements, no
    584  1.327    rillig  * warnings about unused or uninitialized variables are printed.
    585   1.10       jpo  *
    586  1.330    rillig  * There is no need to clear d_asm in decl_level structs with context AUTO, as
    587  1.327    rillig  * these structs are freed at the end of the compound statement. But it must be
    588  1.330    rillig  * cleared in the outermost decl_level struct, which has context EXTERN. This
    589  1.330    rillig  * could be done in dcs_begin_type and would work for C90, but not for C99 or
    590  1.330    rillig  * C++ (due to mixed statements and declarations). Thus, we clear it in
    591  1.327    rillig  * global_clean_up_decl.
    592   1.10       jpo  */
    593   1.10       jpo void
    594  1.296    rillig dcs_set_asm(void)
    595   1.10       jpo {
    596   1.10       jpo 
    597  1.330    rillig 	for (decl_level *dl = dcs; dl != NULL; dl = dl->d_enclosing)
    598  1.330    rillig 		dl->d_asm = true;
    599   1.10       jpo }
    600   1.10       jpo 
    601    1.1       cgd void
    602  1.296    rillig dcs_begin_type(void)
    603    1.1       cgd {
    604   1.22     lukem 
    605  1.356    rillig 	debug_enter();
    606  1.311    rillig 	dcs->d_abstract_type = NO_TSPEC;
    607  1.311    rillig 	dcs->d_complex_mod = NO_TSPEC;
    608  1.311    rillig 	dcs->d_sign_mod = NO_TSPEC;
    609  1.311    rillig 	dcs->d_rank_mod = NO_TSPEC;
    610    1.3       jpo 	dcs->d_scl = NOSCL;
    611    1.3       jpo 	dcs->d_type = NULL;
    612  1.355    rillig 	dcs->d_qual = (type_qualifiers) { .tq_const = false };
    613  1.122    rillig 	dcs->d_inline = false;
    614  1.209    rillig 	dcs->d_multiple_storage_classes = false;
    615  1.209    rillig 	dcs->d_invalid_type_combination = false;
    616  1.155    rillig 	dcs->d_nonempty_decl = false;
    617  1.323    rillig 	dcs->d_no_type_specifier = false;
    618    1.1       cgd }
    619    1.1       cgd 
    620  1.150    rillig static void
    621  1.150    rillig dcs_adjust_storage_class(void)
    622  1.150    rillig {
    623  1.330    rillig 	if (dcs->d_kind == DLK_EXTERN) {
    624  1.150    rillig 		if (dcs->d_scl == REG || dcs->d_scl == AUTO) {
    625  1.150    rillig 			/* illegal storage class */
    626  1.150    rillig 			error(8);
    627  1.150    rillig 			dcs->d_scl = NOSCL;
    628  1.150    rillig 		}
    629  1.330    rillig 	} else if (dcs->d_kind == DLK_OLD_STYLE_ARGS ||
    630  1.330    rillig 		   dcs->d_kind == DLK_PROTO_PARAMS) {
    631  1.150    rillig 		if (dcs->d_scl != NOSCL && dcs->d_scl != REG) {
    632  1.346    rillig 			/* only 'register' is valid as storage class ... */
    633  1.150    rillig 			error(9);
    634  1.150    rillig 			dcs->d_scl = NOSCL;
    635  1.150    rillig 		}
    636  1.150    rillig 	}
    637  1.150    rillig }
    638  1.150    rillig 
    639  1.205    rillig /*
    640  1.205    rillig  * Merge the declaration specifiers from dcs into dcs->d_type.
    641  1.205    rillig  *
    642  1.205    rillig  * See C99 6.7.2 "Type specifiers".
    643  1.205    rillig  */
    644  1.204    rillig static void
    645  1.204    rillig dcs_merge_declaration_specifiers(void)
    646    1.1       cgd {
    647  1.339    rillig 	tspec_t t = dcs->d_abstract_type;
    648  1.339    rillig 	tspec_t c = dcs->d_complex_mod;
    649  1.339    rillig 	tspec_t s = dcs->d_sign_mod;
    650  1.339    rillig 	tspec_t l = dcs->d_rank_mod;
    651  1.339    rillig 	type_t *tp = dcs->d_type;
    652    1.1       cgd 
    653   1.92    rillig 	if (tp != NULL) {
    654  1.311    rillig 		lint_assert(t == NO_TSPEC);
    655  1.311    rillig 		lint_assert(s == NO_TSPEC);
    656  1.311    rillig 		lint_assert(l == NO_TSPEC);
    657  1.204    rillig 		return;
    658    1.1       cgd 	}
    659    1.1       cgd 
    660  1.339    rillig 	debug_step("%s: %s", __func__, type_name(tp));
    661  1.339    rillig 
    662  1.339    rillig 	if (t == NO_TSPEC && s == NO_TSPEC && l == NO_TSPEC && c == NO_TSPEC)
    663  1.339    rillig 		dcs->d_no_type_specifier = true;
    664  1.339    rillig 	if (t == NO_TSPEC && s == NO_TSPEC && (l == NO_TSPEC || l == LONG))
    665  1.339    rillig 		t = c;
    666  1.339    rillig 
    667  1.311    rillig 	if (t == NO_TSPEC)
    668  1.204    rillig 		t = INT;
    669  1.311    rillig 	if (s == NO_TSPEC && t == INT)
    670  1.205    rillig 		s = SIGNED;
    671  1.311    rillig 	if (l != NO_TSPEC && t == CHAR) {
    672  1.209    rillig 		dcs->d_invalid_type_combination = true;
    673  1.311    rillig 		l = NO_TSPEC;
    674  1.205    rillig 	}
    675  1.205    rillig 	if (l == LONG && t == FLOAT) {
    676  1.311    rillig 		l = NO_TSPEC;
    677  1.205    rillig 		t = DOUBLE;
    678  1.279    rillig 		if (allow_c90)
    679  1.205    rillig 			/* use 'double' instead of 'long float' */
    680  1.205    rillig 			warning(6);
    681  1.205    rillig 	}
    682  1.205    rillig 	if ((l == LONG && t == DOUBLE) || t == LDOUBLE) {
    683  1.311    rillig 		l = NO_TSPEC;
    684  1.204    rillig 		t = LDOUBLE;
    685  1.204    rillig 	}
    686  1.279    rillig 	if (t == LDOUBLE && !allow_c90) {
    687  1.205    rillig 		/* 'long double' is illegal in traditional C */
    688  1.205    rillig 		warning(266);
    689  1.205    rillig 	}
    690  1.205    rillig 	if (l == LONG && t == DCOMPLEX) {
    691  1.311    rillig 		l = NO_TSPEC;
    692  1.205    rillig 		t = LCOMPLEX;
    693  1.205    rillig 	}
    694  1.205    rillig 
    695  1.311    rillig 	if (t != INT && t != CHAR && (s != NO_TSPEC || l != NO_TSPEC)) {
    696  1.209    rillig 		dcs->d_invalid_type_combination = true;
    697  1.311    rillig 		l = s = NO_TSPEC;
    698    1.1       cgd 	}
    699  1.311    rillig 	if (l != NO_TSPEC)
    700  1.204    rillig 		t = l;
    701  1.206    rillig 	dcs->d_type = gettyp(merge_signedness(t, s));
    702  1.369    rillig 	debug_dcs(false);
    703  1.204    rillig }
    704  1.204    rillig 
    705  1.327    rillig /* Create a type in 'dcs->d_type' from the information gathered in 'dcs'. */
    706  1.204    rillig void
    707  1.296    rillig dcs_end_type(void)
    708  1.204    rillig {
    709  1.204    rillig 
    710  1.204    rillig 	dcs_merge_declaration_specifiers();
    711    1.1       cgd 
    712  1.209    rillig 	if (dcs->d_multiple_storage_classes) {
    713    1.1       cgd 		/* only one storage class allowed */
    714    1.1       cgd 		error(7);
    715    1.1       cgd 	}
    716  1.209    rillig 	if (dcs->d_invalid_type_combination) {
    717    1.1       cgd 		/* illegal type combination */
    718    1.1       cgd 		error(4);
    719    1.1       cgd 	}
    720    1.1       cgd 
    721  1.150    rillig 	dcs_adjust_storage_class();
    722    1.1       cgd 
    723  1.355    rillig 	if (dcs->d_qual.tq_const && dcs->d_type->t_const
    724  1.355    rillig 	    && !dcs->d_type->t_typeof) {
    725   1.92    rillig 		lint_assert(dcs->d_type->t_typedef);
    726   1.88    rillig 		/* typedef already qualified with '%s' */
    727    1.1       cgd 		warning(68, "const");
    728    1.1       cgd 	}
    729  1.355    rillig 	if (dcs->d_qual.tq_volatile && dcs->d_type->t_volatile &&
    730  1.277    rillig 	    !dcs->d_type->t_typeof) {
    731   1.92    rillig 		lint_assert(dcs->d_type->t_typedef);
    732   1.88    rillig 		/* typedef already qualified with '%s' */
    733    1.1       cgd 		warning(68, "volatile");
    734    1.1       cgd 	}
    735    1.1       cgd 
    736  1.355    rillig 	if (dcs->d_qual.tq_const || dcs->d_qual.tq_volatile) {
    737  1.247    rillig 		dcs->d_type = block_dup_type(dcs->d_type);
    738  1.355    rillig 		dcs->d_type->t_const |= dcs->d_qual.tq_const;
    739  1.355    rillig 		dcs->d_type->t_volatile |= dcs->d_qual.tq_volatile;
    740    1.1       cgd 	}
    741  1.356    rillig 
    742  1.369    rillig 	debug_dcs(false);
    743  1.356    rillig 	debug_leave();
    744    1.1       cgd }
    745    1.1       cgd 
    746    1.1       cgd /*
    747  1.327    rillig  * Return the length of a type in bits. For bit-fields, return the length of
    748  1.327    rillig  * the underlying storage type.
    749    1.1       cgd  *
    750  1.111    rillig  * Printing a message if the outermost dimension of an array is 0 must
    751  1.270    rillig  * be done by the caller. All other problems are reported by this function
    752    1.1       cgd  * if name is not NULL.
    753    1.1       cgd  */
    754    1.1       cgd int
    755  1.270    rillig length_in_bits(const type_t *tp, const char *name)
    756    1.1       cgd {
    757    1.1       cgd 
    758  1.327    rillig 	if (tp == NULL)
    759  1.327    rillig 		return -1;
    760  1.327    rillig 
    761  1.327    rillig 	unsigned int elem = 1;
    762  1.327    rillig 	while (tp->t_tspec == ARRAY) {
    763    1.1       cgd 		elem *= tp->t_dim;
    764    1.1       cgd 		tp = tp->t_subt;
    765    1.1       cgd 	}
    766   1.18  christos 
    767  1.327    rillig 	if (is_struct_or_union(tp->t_tspec)) {
    768  1.132    rillig 		if (is_incomplete(tp) && name != NULL) {
    769  1.199    rillig 			/* '%s' has incomplete type '%s' */
    770  1.193    rillig 			error(31, name, type_name(tp));
    771    1.1       cgd 		}
    772  1.327    rillig 		return (int)(elem * tp->t_sou->sou_size_in_bits);
    773    1.1       cgd 	}
    774  1.327    rillig 
    775  1.327    rillig 	if (tp->t_tspec == ENUM && is_incomplete(tp) && name != NULL)
    776  1.327    rillig 		/* incomplete enum type '%s' */
    777  1.327    rillig 		warning(13, name);
    778  1.327    rillig 
    779  1.327    rillig 	lint_assert(tp->t_tspec != FUNC);
    780  1.327    rillig 
    781  1.327    rillig 	unsigned int elsz = size_in_bits(tp->t_tspec);
    782  1.327    rillig 	/*
    783  1.327    rillig 	 * Workaround until the type parser (see add_function, add_array,
    784  1.327    rillig 	 * add_pointer) does not construct the invalid intermediate declaration
    785  1.327    rillig 	 * 'void b[4]' for the legitimate declaration 'void *b[4]'.
    786  1.327    rillig 	 */
    787  1.327    rillig 	if (sytxerr > 0 && elsz == 0)
    788  1.327    rillig 		elsz = CHAR_SIZE;
    789  1.327    rillig 	lint_assert(elsz > 0);
    790  1.232    rillig 	return (int)(elem * elsz);
    791    1.1       cgd }
    792    1.1       cgd 
    793  1.225    rillig unsigned int
    794  1.139    rillig alignment_in_bits(const type_t *tp)
    795    1.1       cgd {
    796    1.1       cgd 
    797  1.266    rillig 	/* Super conservative so that it works for most systems. */
    798  1.266    rillig 	unsigned int worst_align_in_bits = 2 * LONG_SIZE;
    799  1.266    rillig 
    800  1.223    rillig 	while (tp->t_tspec == ARRAY)
    801    1.1       cgd 		tp = tp->t_subt;
    802    1.1       cgd 
    803  1.327    rillig 	tspec_t t = tp->t_tspec;
    804  1.327    rillig 	unsigned int a;
    805  1.327    rillig 	if (is_struct_or_union(t))
    806  1.308    rillig 		a = tp->t_sou->sou_align_in_bits;
    807  1.298    rillig 	else {
    808  1.265    rillig 		lint_assert(t != FUNC);
    809  1.298    rillig 		if ((a = size_in_bits(t)) == 0)
    810  1.113    rillig 			a = CHAR_SIZE;
    811  1.298    rillig 		else if (a > worst_align_in_bits)
    812  1.266    rillig 			a = worst_align_in_bits;
    813    1.1       cgd 	}
    814  1.113    rillig 	lint_assert(a >= CHAR_SIZE);
    815  1.266    rillig 	lint_assert(a <= worst_align_in_bits);
    816   1.76    rillig 	return a;
    817    1.1       cgd }
    818    1.1       cgd 
    819    1.1       cgd /*
    820   1.80    rillig  * Concatenate two lists of symbols by s_next. Used by declarations of
    821    1.1       cgd  * struct/union/enum elements and parameters.
    822    1.1       cgd  */
    823    1.1       cgd sym_t *
    824  1.327    rillig concat_symbols(sym_t *l1, sym_t *l2)
    825    1.1       cgd {
    826    1.1       cgd 
    827  1.327    rillig 	if (l1 == NULL)
    828   1.76    rillig 		return l2;
    829  1.327    rillig 	sym_t *l = l1;
    830  1.327    rillig 	while (l->s_next != NULL)
    831  1.327    rillig 		l = l->s_next;
    832  1.327    rillig 	l->s_next = l2;
    833  1.327    rillig 	return l1;
    834    1.1       cgd }
    835    1.1       cgd 
    836    1.1       cgd /*
    837  1.327    rillig  * Check if the type of the given symbol is valid.
    838    1.1       cgd  *
    839    1.1       cgd  * Invalid types are:
    840  1.111    rillig  * - arrays of incomplete types or functions
    841    1.1       cgd  * - functions returning arrays or functions
    842    1.1       cgd  * - void types other than type of function or pointer
    843    1.1       cgd  */
    844    1.1       cgd void
    845   1.75    rillig check_type(sym_t *sym)
    846    1.1       cgd {
    847    1.1       cgd 
    848  1.327    rillig 	type_t **tpp = &sym->s_type;
    849  1.327    rillig 	tspec_t to = NO_TSPEC;
    850  1.327    rillig 	while (*tpp != NULL) {
    851  1.327    rillig 		type_t *tp = *tpp;
    852  1.327    rillig 		tspec_t t = tp->t_tspec;
    853    1.1       cgd 		/*
    854  1.300    rillig 		 * If this is the type of an old-style function definition,
    855  1.305    rillig 		 * a better warning is printed in begin_function().
    856    1.1       cgd 		 */
    857    1.1       cgd 		if (t == FUNC && !tp->t_proto &&
    858  1.311    rillig 		    !(to == NO_TSPEC && sym->s_osdef)) {
    859  1.280    rillig 			/* TODO: Make this an error in C99 mode as well. */
    860  1.280    rillig 			if ((!allow_trad && !allow_c99) && hflag)
    861    1.1       cgd 				/* function declaration is not a prototype */
    862    1.1       cgd 				warning(287);
    863    1.1       cgd 		}
    864    1.1       cgd 		if (to == FUNC) {
    865    1.1       cgd 			if (t == FUNC || t == ARRAY) {
    866  1.256    rillig 				/* function returns illegal type '%s' */
    867  1.256    rillig 				error(15, type_name(tp));
    868  1.298    rillig 				*tpp = block_derive_type(
    869  1.298    rillig 				    t == FUNC ? *tpp : (*tpp)->t_subt, PTR);
    870    1.1       cgd 				return;
    871  1.298    rillig 			}
    872  1.298    rillig 			if (tp->t_const || tp->t_volatile) {
    873  1.280    rillig 				/* TODO: Make this a warning in C99 mode as well. */
    874  1.280    rillig 				if (!allow_trad && !allow_c99) {	/* XXX or better allow_c90? */
    875    1.1       cgd 					/* function cannot return const... */
    876    1.1       cgd 					warning(228);
    877    1.1       cgd 				}
    878    1.1       cgd 			}
    879  1.254    rillig 		} else if (to == ARRAY) {
    880    1.1       cgd 			if (t == FUNC) {
    881    1.1       cgd 				/* array of function is illegal */
    882    1.1       cgd 				error(16);
    883    1.1       cgd 				*tpp = gettyp(INT);
    884    1.1       cgd 				return;
    885  1.298    rillig 			}
    886  1.298    rillig 			if (t == ARRAY && tp->t_dim == 0) {
    887    1.1       cgd 				/* null dimension */
    888    1.1       cgd 				error(17);
    889    1.1       cgd 				return;
    890  1.298    rillig 			}
    891  1.298    rillig 			if (t == VOID) {
    892   1.88    rillig 				/* illegal use of 'void' */
    893    1.1       cgd 				error(18);
    894    1.1       cgd 				*tpp = gettyp(INT);
    895    1.1       cgd 			}
    896  1.298    rillig 			/*
    897  1.298    rillig 			 * No need to check for incomplete types here as
    898  1.298    rillig 			 * length_in_bits already does this.
    899  1.298    rillig 			 */
    900  1.311    rillig 		} else if (to == NO_TSPEC && t == VOID) {
    901  1.330    rillig 			if (dcs->d_kind == DLK_PROTO_PARAMS) {
    902    1.1       cgd 				if (sym->s_scl != ABSTRACT) {
    903   1.92    rillig 					lint_assert(sym->s_name != unnamed);
    904  1.290    rillig 					/* void parameter '%s' cannot ... */
    905    1.1       cgd 					error(61, sym->s_name);
    906    1.1       cgd 					*tpp = gettyp(INT);
    907    1.1       cgd 				}
    908  1.330    rillig 			} else if (dcs->d_kind == DLK_ABSTRACT) {
    909    1.1       cgd 				/* ok */
    910    1.1       cgd 			} else if (sym->s_scl != TYPEDEF) {
    911  1.133    rillig 				/* void type for '%s' */
    912    1.1       cgd 				error(19, sym->s_name);
    913    1.1       cgd 				*tpp = gettyp(INT);
    914    1.1       cgd 			}
    915    1.1       cgd 		}
    916    1.1       cgd 		if (t == VOID && to != PTR) {
    917    1.1       cgd 			if (tp->t_const || tp->t_volatile) {
    918   1.88    rillig 				/* inappropriate qualifiers with 'void' */
    919    1.1       cgd 				warning(69);
    920  1.122    rillig 				tp->t_const = tp->t_volatile = false;
    921    1.1       cgd 			}
    922    1.1       cgd 		}
    923    1.1       cgd 		tpp = &tp->t_subt;
    924    1.1       cgd 		to = t;
    925    1.1       cgd 	}
    926    1.1       cgd }
    927    1.1       cgd 
    928  1.142    rillig /*
    929  1.142    rillig  * In traditional C, the only portable type for bit-fields is unsigned int.
    930  1.142    rillig  *
    931  1.142    rillig  * In C90, the only allowed types for bit-fields are int, signed int and
    932  1.142    rillig  * unsigned int (3.5.2.1).  There is no mention of implementation-defined
    933  1.142    rillig  * types.
    934  1.142    rillig  *
    935  1.142    rillig  * In C99, the only portable types for bit-fields are _Bool, signed int and
    936  1.142    rillig  * unsigned int (6.7.2.1p4).  In addition, C99 allows "or some other
    937  1.142    rillig  * implementation-defined type".
    938  1.142    rillig  */
    939  1.141    rillig static void
    940  1.254    rillig check_bit_field_type(sym_t *dsym, type_t **const inout_tp, tspec_t *inout_t)
    941  1.141    rillig {
    942  1.179    rillig 	type_t *tp = *inout_tp;
    943  1.141    rillig 	tspec_t t = *inout_t;
    944  1.141    rillig 
    945  1.141    rillig 	if (t == CHAR || t == UCHAR || t == SCHAR ||
    946  1.141    rillig 	    t == SHORT || t == USHORT || t == ENUM) {
    947  1.350    rillig 		if (!suppress_bitfieldtype) {
    948  1.280    rillig 			/* TODO: Make this an error in C99 mode as well. */
    949  1.280    rillig 			if (!allow_trad && !allow_c99) {
    950  1.294    rillig 				type_t *btp = block_dup_type(tp);
    951  1.294    rillig 				btp->t_bitfield = false;
    952  1.141    rillig 				/* bit-field type '%s' invalid in ANSI C */
    953  1.294    rillig 				warning(273, type_name(btp));
    954  1.141    rillig 			} else if (pflag) {
    955  1.294    rillig 				type_t *btp = block_dup_type(tp);
    956  1.294    rillig 				btp->t_bitfield = false;
    957  1.181    rillig 				/* nonportable bit-field type '%s' */
    958  1.294    rillig 				warning(34, type_name(btp));
    959  1.141    rillig 			}
    960  1.141    rillig 		}
    961  1.311    rillig 	} else if (t == INT && dcs->d_sign_mod == NO_TSPEC) {
    962  1.350    rillig 		if (pflag && !suppress_bitfieldtype) {
    963  1.182    rillig 			/* bit-field of type plain 'int' has ... */
    964  1.182    rillig 			warning(344);
    965  1.141    rillig 		}
    966  1.350    rillig 	} else if (!(t == INT || t == UINT || t == BOOL
    967  1.350    rillig 		|| (is_integer(t) && (suppress_bitfieldtype || allow_gcc)))) {
    968  1.278    rillig 
    969  1.294    rillig 		type_t *btp = block_dup_type(tp);
    970  1.294    rillig 		btp->t_bitfield = false;
    971  1.278    rillig 		/* illegal bit-field type '%s' */
    972  1.294    rillig 		warning(35, type_name(btp));
    973  1.278    rillig 
    974  1.322    rillig 		unsigned int width = tp->t_bit_field_width;
    975  1.278    rillig 		dsym->s_type = tp = block_dup_type(gettyp(t = INT));
    976  1.322    rillig 		if ((tp->t_bit_field_width = width) > size_in_bits(t))
    977  1.322    rillig 			tp->t_bit_field_width = size_in_bits(t);
    978  1.278    rillig 		*inout_t = t;
    979  1.278    rillig 		*inout_tp = tp;
    980  1.141    rillig 	}
    981  1.179    rillig }
    982  1.179    rillig 
    983  1.179    rillig static void
    984  1.327    rillig check_bit_field(sym_t *dsym, tspec_t *inout_t, type_t **const inout_tp)
    985  1.179    rillig {
    986  1.141    rillig 
    987  1.179    rillig 	check_bit_field_type(dsym, inout_tp, inout_t);
    988  1.179    rillig 
    989  1.322    rillig 	type_t *tp = *inout_tp;
    990  1.322    rillig 	tspec_t t = *inout_t;
    991  1.322    rillig 	unsigned int t_width = size_in_bits(t);
    992  1.322    rillig 	if (tp->t_bit_field_width > t_width) {
    993  1.141    rillig 		/* illegal bit-field size: %d */
    994  1.322    rillig 		error(36, (int)tp->t_bit_field_width);
    995  1.322    rillig 		tp->t_bit_field_width = t_width;
    996  1.322    rillig 	} else if (tp->t_bit_field_width == 0 && dsym->s_name != unnamed) {
    997  1.141    rillig 		/* zero size bit-field */
    998  1.141    rillig 		error(37);
    999  1.322    rillig 		tp->t_bit_field_width = t_width;
   1000  1.141    rillig 	}
   1001  1.303    rillig 	if (dsym->s_scl == UNION_MEMBER) {
   1002  1.244    rillig 		/* bit-field in union is very unusual */
   1003  1.241  christos 		warning(41);
   1004  1.141    rillig 		dsym->s_type->t_bitfield = false;
   1005  1.141    rillig 		dsym->s_bitfield = false;
   1006  1.141    rillig 	}
   1007  1.141    rillig }
   1008  1.141    rillig 
   1009  1.364    rillig /* Aligns the next structure element as required. */
   1010  1.364    rillig static void
   1011  1.364    rillig dcs_align(unsigned int member_alignment, unsigned int bit_field_width)
   1012  1.364    rillig {
   1013  1.364    rillig 
   1014  1.364    rillig 	if (member_alignment > dcs->d_sou_align_in_bits)
   1015  1.364    rillig 		dcs->d_sou_align_in_bits = member_alignment;
   1016  1.364    rillig 
   1017  1.364    rillig 	unsigned int offset = (dcs->d_sou_size_in_bits + member_alignment - 1)
   1018  1.364    rillig 	    & ~(member_alignment - 1);
   1019  1.364    rillig 	if (bit_field_width == 0
   1020  1.364    rillig 	    || dcs->d_sou_size_in_bits + bit_field_width > offset)
   1021  1.364    rillig 		dcs->d_sou_size_in_bits = offset;
   1022  1.364    rillig }
   1023  1.364    rillig 
   1024  1.329    rillig /* Add a member to the struct or union type that is being built in 'dcs'. */
   1025  1.329    rillig static void
   1026  1.329    rillig dcs_add_member(sym_t *mem)
   1027  1.329    rillig {
   1028  1.329    rillig 	type_t *tp = mem->s_type;
   1029  1.329    rillig 
   1030  1.338    rillig 	unsigned int union_size = 0;
   1031  1.330    rillig 	if (dcs->d_kind == DLK_UNION) {
   1032  1.338    rillig 		union_size = dcs->d_sou_size_in_bits;
   1033  1.338    rillig 		dcs->d_sou_size_in_bits = 0;
   1034  1.329    rillig 	}
   1035  1.329    rillig 
   1036  1.329    rillig 	if (mem->s_bitfield) {
   1037  1.329    rillig 		dcs_align(alignment_in_bits(tp), tp->t_bit_field_width);
   1038  1.329    rillig 		// XXX: Why round down?
   1039  1.338    rillig 		mem->u.s_member.sm_offset_in_bits = dcs->d_sou_size_in_bits
   1040  1.338    rillig 		    - dcs->d_sou_size_in_bits % size_in_bits(tp->t_tspec);
   1041  1.338    rillig 		tp->t_bit_field_offset = dcs->d_sou_size_in_bits
   1042  1.329    rillig 		    - mem->u.s_member.sm_offset_in_bits;
   1043  1.338    rillig 		dcs->d_sou_size_in_bits += tp->t_bit_field_width;
   1044  1.329    rillig 	} else {
   1045  1.329    rillig 		dcs_align(alignment_in_bits(tp), 0);
   1046  1.338    rillig 		mem->u.s_member.sm_offset_in_bits = dcs->d_sou_size_in_bits;
   1047  1.338    rillig 		dcs->d_sou_size_in_bits += type_size_in_bits(tp);
   1048  1.329    rillig 	}
   1049  1.329    rillig 
   1050  1.338    rillig 	if (union_size > dcs->d_sou_size_in_bits)
   1051  1.338    rillig 		dcs->d_sou_size_in_bits = union_size;
   1052  1.369    rillig 
   1053  1.369    rillig 	debug_dcs(false);
   1054  1.329    rillig }
   1055  1.329    rillig 
   1056  1.329    rillig sym_t *
   1057  1.329    rillig declare_unnamed_member(void)
   1058  1.329    rillig {
   1059  1.329    rillig 
   1060  1.358    rillig 	sym_t *mem = block_zero_alloc(sizeof(*mem), "sym");
   1061  1.329    rillig 	mem->s_name = unnamed;
   1062  1.334    rillig 	mem->s_kind = FMEMBER;
   1063  1.359    rillig 	mem->s_scl = dcs->d_kind == DLK_STRUCT ? STRUCT_MEMBER : UNION_MEMBER;
   1064  1.359    rillig 	mem->s_block_level = -1;
   1065  1.329    rillig 	mem->s_type = dcs->d_type;
   1066  1.359    rillig 	mem->u.s_member.sm_containing_type = dcs->d_tag_type->t_sou;
   1067  1.329    rillig 
   1068  1.329    rillig 	dcs_add_member(mem);
   1069  1.350    rillig 	suppress_bitfieldtype = false;
   1070  1.329    rillig 	return mem;
   1071  1.329    rillig }
   1072  1.329    rillig 
   1073    1.1       cgd sym_t *
   1074  1.320    rillig declare_member(sym_t *dsym)
   1075    1.1       cgd {
   1076    1.1       cgd 
   1077  1.274    rillig 	lint_assert(is_member(dsym));
   1078    1.1       cgd 
   1079  1.369    rillig 	sym_t *rdsym = dcs->d_redeclared_symbol;
   1080  1.369    rillig 	if (rdsym != NULL) {
   1081  1.369    rillig 		debug_sym("rdsym: ", rdsym, "\n");
   1082  1.369    rillig 		lint_assert(is_member(rdsym));
   1083  1.153    rillig 
   1084  1.333    rillig 		if (dsym->u.s_member.sm_containing_type ==
   1085  1.369    rillig 		    rdsym->u.s_member.sm_containing_type) {
   1086  1.289    rillig 			/* duplicate member name '%s' */
   1087    1.1       cgd 			error(33, dsym->s_name);
   1088  1.369    rillig 			rmsym(rdsym);
   1089    1.1       cgd 		}
   1090    1.1       cgd 	}
   1091    1.1       cgd 
   1092   1.75    rillig 	check_type(dsym);
   1093    1.1       cgd 
   1094  1.327    rillig 	type_t *tp = dsym->s_type;
   1095  1.327    rillig 	tspec_t t = tp->t_tspec;
   1096  1.298    rillig 	if (dsym->s_bitfield)
   1097  1.327    rillig 		check_bit_field(dsym, &t, &tp);
   1098  1.298    rillig 	else if (t == FUNC) {
   1099    1.1       cgd 		/* function illegal in structure or union */
   1100    1.1       cgd 		error(38);
   1101  1.247    rillig 		dsym->s_type = tp = block_derive_type(tp, t = PTR);
   1102    1.1       cgd 	}
   1103    1.1       cgd 
   1104    1.1       cgd 	/*
   1105  1.270    rillig 	 * bit-fields of length 0 are not warned about because length_in_bits
   1106    1.1       cgd 	 * does not return the length of the bit-field but the length
   1107   1.86    rillig 	 * of the type the bit-field is packed in (it's ok)
   1108    1.1       cgd 	 */
   1109  1.327    rillig 	int sz = length_in_bits(dsym->s_type, dsym->s_name);
   1110  1.327    rillig 	if (sz == 0 && t == ARRAY && dsym->s_type->t_dim == 0) {
   1111  1.327    rillig 		/* zero-sized array '%s' in struct is a C99 extension */
   1112  1.327    rillig 		c99ism(39, dsym->s_name);
   1113    1.1       cgd 	}
   1114    1.1       cgd 
   1115  1.329    rillig 	dcs_add_member(dsym);
   1116    1.1       cgd 
   1117  1.124    rillig 	check_function_definition(dsym, false);
   1118   1.26   thorpej 
   1119  1.350    rillig 	suppress_bitfieldtype = false;
   1120    1.1       cgd 
   1121   1.76    rillig 	return dsym;
   1122    1.1       cgd }
   1123    1.1       cgd 
   1124    1.1       cgd sym_t *
   1125  1.322    rillig set_bit_field_width(sym_t *dsym, int bit_field_width)
   1126    1.1       cgd {
   1127   1.22     lukem 
   1128    1.1       cgd 	if (dsym == NULL) {
   1129  1.358    rillig 		dsym = block_zero_alloc(sizeof(*dsym), "sym");
   1130    1.1       cgd 		dsym->s_name = unnamed;
   1131   1.81    rillig 		dsym->s_kind = FMEMBER;
   1132  1.303    rillig 		dsym->s_scl = STRUCT_MEMBER;
   1133   1.20  sommerfe 		dsym->s_type = gettyp(UINT);
   1134  1.144    rillig 		dsym->s_block_level = -1;
   1135    1.1       cgd 	}
   1136  1.247    rillig 	dsym->s_type = block_dup_type(dsym->s_type);
   1137  1.108    rillig 	dsym->s_type->t_bitfield = true;
   1138  1.322    rillig 	dsym->s_type->t_bit_field_width = bit_field_width;
   1139  1.122    rillig 	dsym->s_bitfield = true;
   1140  1.369    rillig 	debug_sym("set_bit_field_width: ", dsym, "\n");
   1141   1.76    rillig 	return dsym;
   1142    1.1       cgd }
   1143    1.1       cgd 
   1144  1.354    rillig void
   1145  1.354    rillig add_type_qualifiers(type_qualifiers *dst, type_qualifiers src)
   1146  1.354    rillig {
   1147  1.354    rillig 
   1148  1.354    rillig 	if (src.tq_const && dst->tq_const)
   1149  1.354    rillig 		/* duplicate '%s' */
   1150  1.354    rillig 		warning(10, "const");
   1151  1.354    rillig 	if (src.tq_volatile && dst->tq_volatile)
   1152  1.354    rillig 		/* duplicate '%s' */
   1153  1.354    rillig 		warning(10, "volatile");
   1154  1.354    rillig 
   1155  1.356    rillig 	dst->tq_const = dst->tq_const | src.tq_const;
   1156  1.356    rillig 	dst->tq_restrict = dst->tq_restrict | src.tq_restrict;
   1157  1.356    rillig 	dst->tq_volatile = dst->tq_volatile | src.tq_volatile;
   1158  1.356    rillig 	dst->tq_atomic = dst->tq_atomic | src.tq_atomic;
   1159  1.369    rillig 	debug_step("%s: '%s'", __func__, type_qualifiers_string(*dst));
   1160  1.354    rillig }
   1161  1.354    rillig 
   1162  1.190    rillig qual_ptr *
   1163  1.354    rillig append_qualified_pointer(qual_ptr *p1, qual_ptr *p2)
   1164    1.1       cgd {
   1165    1.1       cgd 
   1166  1.354    rillig 	qual_ptr *tail = p2;
   1167  1.354    rillig 	while (tail->p_next != NULL)
   1168  1.354    rillig 		tail = tail->p_next;
   1169  1.354    rillig 	tail->p_next = p1;
   1170  1.354    rillig 	return p2;
   1171    1.1       cgd }
   1172    1.1       cgd 
   1173  1.263    rillig static type_t *
   1174  1.263    rillig block_derive_pointer(type_t *stp, bool is_const, bool is_volatile)
   1175  1.263    rillig {
   1176  1.263    rillig 
   1177  1.327    rillig 	type_t *tp = block_derive_type(stp, PTR);
   1178  1.263    rillig 	tp->t_const = is_const;
   1179  1.263    rillig 	tp->t_volatile = is_volatile;
   1180  1.369    rillig 	debug_step("%s: '%s'", __func__, type_name(tp));
   1181  1.263    rillig 	return tp;
   1182  1.263    rillig }
   1183  1.263    rillig 
   1184    1.1       cgd /*
   1185   1.73    rillig  * The following 3 functions extend the type of a declarator with
   1186    1.1       cgd  * pointer, function and array types.
   1187    1.1       cgd  *
   1188  1.296    rillig  * The current type is the type built by dcs_end_type (dcs->d_type) and
   1189    1.1       cgd  * pointer, function and array types already added for this
   1190    1.1       cgd  * declarator. The new type extension is inserted between both.
   1191    1.1       cgd  */
   1192    1.1       cgd sym_t *
   1193  1.190    rillig add_pointer(sym_t *decl, qual_ptr *p)
   1194    1.1       cgd {
   1195    1.1       cgd 
   1196  1.335    rillig 	debug_dcs(false);
   1197  1.258    rillig 
   1198  1.298    rillig 	type_t **tpp = &decl->s_type;
   1199  1.122    rillig 	while (*tpp != NULL && *tpp != dcs->d_type)
   1200    1.1       cgd 		tpp = &(*tpp)->t_subt;
   1201  1.255    rillig 	if (*tpp == NULL) {
   1202  1.255    rillig 		debug_step("add_pointer: unchanged '%s'",
   1203  1.255    rillig 		    type_name(decl->s_type));
   1204   1.18  christos 		return decl;
   1205  1.255    rillig 	}
   1206    1.1       cgd 
   1207  1.190    rillig 	while (p != NULL) {
   1208  1.263    rillig 		*tpp = block_derive_pointer(dcs->d_type,
   1209  1.354    rillig 		    p->qualifiers.tq_const, p->qualifiers.tq_volatile);
   1210  1.261    rillig 
   1211  1.263    rillig 		tpp = &(*tpp)->t_subt;
   1212  1.261    rillig 
   1213  1.298    rillig 		qual_ptr *next = p->p_next;
   1214  1.190    rillig 		free(p);
   1215  1.190    rillig 		p = next;
   1216    1.1       cgd 	}
   1217  1.255    rillig 	debug_step("add_pointer: '%s'", type_name(decl->s_type));
   1218   1.76    rillig 	return decl;
   1219    1.1       cgd }
   1220    1.1       cgd 
   1221  1.263    rillig static type_t *
   1222  1.263    rillig block_derive_array(type_t *stp, bool dim, int len)
   1223  1.263    rillig {
   1224  1.263    rillig 
   1225  1.298    rillig 	type_t *tp = block_derive_type(stp, ARRAY);
   1226  1.263    rillig 	tp->t_dim = len;
   1227  1.263    rillig 
   1228  1.268    rillig #if 0
   1229  1.268    rillig 	/*
   1230  1.268    rillig 	 * As of 2022-04-03, the implementation of the type parser (see
   1231  1.268    rillig 	 * add_function, add_array, add_pointer) is strange.  When it sees
   1232  1.268    rillig 	 * the type 'void *b[4]', it first creates 'void b[4]' and only later
   1233  1.298    rillig 	 * inserts the '*' in the middle of the type.  Late modifications like
   1234  1.298    rillig 	 * these should not be done at all, instead the parser should be fixed
   1235  1.298    rillig 	 * to process the type names in the proper syntactical order.
   1236  1.268    rillig 	 *
   1237  1.268    rillig 	 * Since the intermediate type would be an array of void, but the
   1238  1.268    rillig 	 * final type is valid, this check cannot be enabled yet.
   1239  1.268    rillig 	 */
   1240  1.268    rillig 	if (stp->t_tspec == VOID) {
   1241  1.268    rillig 		/* array of incomplete type */
   1242  1.268    rillig 		error(301);
   1243  1.268    rillig 		tp->t_subt = gettyp(CHAR);
   1244  1.268    rillig 	}
   1245  1.268    rillig #endif
   1246  1.263    rillig 	if (len < 0) {
   1247  1.263    rillig 		/* negative array dimension (%d) */
   1248  1.263    rillig 		error(20, len);
   1249  1.263    rillig 	} else if (len == 0 && dim) {
   1250  1.263    rillig 		/* zero sized array is a C99 extension */
   1251  1.263    rillig 		c99ism(322);
   1252  1.263    rillig 	} else if (len == 0 && !dim)
   1253  1.263    rillig 		tp->t_incomplete_array = true;
   1254  1.263    rillig 
   1255  1.369    rillig 	debug_step("%s: '%s'", __func__, type_name(tp));
   1256  1.263    rillig 	return tp;
   1257  1.263    rillig }
   1258  1.263    rillig 
   1259    1.1       cgd /*
   1260  1.157    rillig  * If a dimension was specified, dim is true, otherwise false
   1261    1.1       cgd  * n is the specified dimension
   1262    1.1       cgd  */
   1263    1.1       cgd sym_t *
   1264  1.122    rillig add_array(sym_t *decl, bool dim, int n)
   1265    1.1       cgd {
   1266    1.1       cgd 
   1267  1.335    rillig 	debug_dcs(false);
   1268  1.258    rillig 
   1269  1.298    rillig 	type_t **tpp = &decl->s_type;
   1270  1.122    rillig 	while (*tpp != NULL && *tpp != dcs->d_type)
   1271    1.1       cgd 		tpp = &(*tpp)->t_subt;
   1272  1.255    rillig 	if (*tpp == NULL) {
   1273  1.255    rillig 		debug_step("add_array: unchanged '%s'",
   1274  1.255    rillig 		    type_name(decl->s_type));
   1275  1.254    rillig 		return decl;
   1276  1.255    rillig 	}
   1277    1.1       cgd 
   1278  1.263    rillig 	*tpp = block_derive_array(dcs->d_type, dim, n);
   1279    1.1       cgd 
   1280  1.369    rillig 	debug_step("%s: '%s'", __func__, type_name(decl->s_type));
   1281   1.76    rillig 	return decl;
   1282    1.1       cgd }
   1283    1.1       cgd 
   1284  1.263    rillig static type_t *
   1285  1.263    rillig block_derive_function(type_t *ret, bool proto, sym_t *args, bool vararg)
   1286  1.263    rillig {
   1287  1.263    rillig 
   1288  1.298    rillig 	type_t *tp = block_derive_type(ret, FUNC);
   1289  1.263    rillig 	tp->t_proto = proto;
   1290  1.263    rillig 	if (proto)
   1291  1.263    rillig 		tp->t_args = args;
   1292  1.263    rillig 	tp->t_vararg = vararg;
   1293  1.369    rillig 	debug_step("%s: '%s'", __func__, type_name(tp));
   1294  1.263    rillig 	return tp;
   1295  1.263    rillig }
   1296  1.263    rillig 
   1297  1.364    rillig static void
   1298  1.364    rillig check_prototype_parameters(sym_t *args)
   1299  1.364    rillig {
   1300  1.364    rillig 
   1301  1.364    rillig 	for (sym_t *sym = dcs->d_first_dlsym;
   1302  1.364    rillig 	     sym != NULL; sym = sym->s_level_next) {
   1303  1.364    rillig 		scl_t sc = sym->s_scl;
   1304  1.364    rillig 		if (sc == STRUCT_TAG || sc == UNION_TAG || sc == ENUM_TAG) {
   1305  1.364    rillig 			/* dubious tag declaration '%s %s' */
   1306  1.364    rillig 			warning(85, storage_class_name(sc), sym->s_name);
   1307  1.364    rillig 		}
   1308  1.364    rillig 	}
   1309  1.364    rillig 
   1310  1.364    rillig 	for (sym_t *arg = args; arg != NULL; arg = arg->s_next) {
   1311  1.364    rillig 		if (arg->s_type->t_tspec == VOID &&
   1312  1.364    rillig 		    !(arg == args && arg->s_next == NULL)) {
   1313  1.364    rillig 			/* void must be sole parameter */
   1314  1.364    rillig 			error(60);
   1315  1.364    rillig 			arg->s_type = gettyp(INT);
   1316  1.364    rillig 		}
   1317  1.364    rillig 	}
   1318  1.364    rillig }
   1319  1.364    rillig 
   1320  1.364    rillig static void
   1321  1.364    rillig old_style_function(sym_t *decl, sym_t *args)
   1322  1.364    rillig {
   1323  1.364    rillig 
   1324  1.364    rillig 	/*
   1325  1.364    rillig 	 * Remember the list of parameters only if this really seems to be a
   1326  1.364    rillig 	 * function definition.
   1327  1.364    rillig 	 */
   1328  1.364    rillig 	if (dcs->d_enclosing->d_kind == DLK_EXTERN &&
   1329  1.364    rillig 	    decl->s_type == dcs->d_enclosing->d_type) {
   1330  1.364    rillig 		/*
   1331  1.364    rillig 		 * Assume that this becomes a function definition. If not, it
   1332  1.364    rillig 		 * will be corrected in check_function_definition.
   1333  1.364    rillig 		 */
   1334  1.364    rillig 		if (args != NULL) {
   1335  1.364    rillig 			decl->s_osdef = true;
   1336  1.364    rillig 			decl->u.s_old_style_args = args;
   1337  1.364    rillig 		}
   1338  1.364    rillig 	} else {
   1339  1.364    rillig 		if (args != NULL)
   1340  1.364    rillig 			/* function prototype parameters must have types */
   1341  1.364    rillig 			warning(62);
   1342  1.364    rillig 	}
   1343  1.364    rillig }
   1344  1.364    rillig 
   1345    1.1       cgd sym_t *
   1346  1.363    rillig add_function(sym_t *decl, struct parameter_list params)
   1347    1.1       cgd {
   1348    1.1       cgd 
   1349  1.258    rillig 	debug_enter();
   1350  1.335    rillig 	debug_dcs(true);
   1351  1.258    rillig 	debug_sym("decl: ", decl, "\n");
   1352  1.258    rillig #ifdef DEBUG
   1353  1.363    rillig 	for (const sym_t *arg = params.first; arg != NULL; arg = arg->s_next)
   1354  1.258    rillig 		debug_sym("arg: ", arg, "\n");
   1355  1.258    rillig #endif
   1356  1.258    rillig 
   1357  1.363    rillig 	if (params.prototype) {
   1358  1.279    rillig 		if (!allow_c90)
   1359    1.1       cgd 			/* function prototypes are illegal in traditional C */
   1360    1.1       cgd 			warning(270);
   1361  1.363    rillig 		check_prototype_parameters(params.first);
   1362  1.363    rillig 		if (params.first != NULL
   1363  1.363    rillig 		    && params.first->s_type->t_tspec == VOID)
   1364  1.363    rillig 			params.first = NULL;
   1365  1.327    rillig 	} else
   1366  1.363    rillig 		old_style_function(decl, params.first);
   1367    1.1       cgd 
   1368    1.1       cgd 	/*
   1369  1.160    rillig 	 * The symbols are removed from the symbol table by
   1370  1.160    rillig 	 * end_declaration_level after add_function. To be able to restore
   1371  1.259    rillig 	 * them if this is a function definition, a pointer to the list of
   1372  1.327    rillig 	 * all symbols is stored in dcs->d_enclosing->d_func_proto_syms. Also,
   1373  1.259    rillig 	 * a list of the arguments (concatenated by s_next) is stored in
   1374  1.259    rillig 	 * dcs->d_enclosing->d_func_args. (dcs->d_enclosing must be used
   1375  1.259    rillig 	 * because *dcs is the declaration stack element created for the list
   1376  1.259    rillig 	 * of params and is removed after add_function.)
   1377  1.259    rillig 	 */
   1378  1.330    rillig 	if (dcs->d_enclosing->d_kind == DLK_EXTERN &&
   1379  1.259    rillig 	    decl->s_type == dcs->d_enclosing->d_type) {
   1380  1.323    rillig 		dcs->d_enclosing->d_func_proto_syms = dcs->d_first_dlsym;
   1381  1.363    rillig 		dcs->d_enclosing->d_func_args = params.first;
   1382    1.1       cgd 	}
   1383    1.1       cgd 
   1384  1.237    rillig 	/*
   1385  1.237    rillig 	 * XXX: What is this code doing on a semantic level, and why?
   1386  1.237    rillig 	 * Returning decl leads to the wrong function types in msg_347.
   1387  1.237    rillig 	 */
   1388  1.298    rillig 	type_t **tpp = &decl->s_type;
   1389  1.257    rillig 	if (*tpp == NULL)
   1390  1.259    rillig 		decl->s_type = dcs->d_enclosing->d_type;
   1391  1.259    rillig 	while (*tpp != NULL && *tpp != dcs->d_enclosing->d_type)
   1392  1.237    rillig 		/*
   1393  1.237    rillig 		 * XXX: accessing INT->t_subt feels strange, even though it
   1394  1.237    rillig 		 * may even be guaranteed to be NULL.
   1395  1.237    rillig 		 */
   1396    1.1       cgd 		tpp = &(*tpp)->t_subt;
   1397  1.255    rillig 	if (*tpp == NULL) {
   1398  1.255    rillig 		debug_step("add_function: unchanged '%s'",
   1399  1.255    rillig 		    type_name(decl->s_type));
   1400  1.258    rillig 		debug_leave();
   1401  1.254    rillig 		return decl;	/* see msg_347 */
   1402  1.255    rillig 	}
   1403    1.1       cgd 
   1404  1.263    rillig 	*tpp = block_derive_function(dcs->d_enclosing->d_type,
   1405  1.363    rillig 	    params.prototype, params.first, params.vararg);
   1406    1.1       cgd 
   1407  1.261    rillig 	debug_step("add_function: '%s'", type_name(decl->s_type));
   1408  1.335    rillig 	debug_dcs(true);
   1409  1.258    rillig 	debug_leave();
   1410   1.76    rillig 	return decl;
   1411    1.1       cgd }
   1412    1.1       cgd 
   1413  1.364    rillig /*
   1414  1.364    rillig  * In a function declaration, a list of identifiers (as opposed to a list of
   1415  1.364    rillig  * types) is allowed only if it's also a function definition.
   1416  1.364    rillig  */
   1417  1.364    rillig void
   1418  1.364    rillig check_function_definition(sym_t *sym, bool msg)
   1419    1.1       cgd {
   1420    1.1       cgd 
   1421  1.364    rillig 	if (sym->s_osdef) {
   1422  1.364    rillig 		if (msg) {
   1423  1.364    rillig 			/* incomplete or misplaced function definition */
   1424  1.364    rillig 			error(22);
   1425    1.1       cgd 		}
   1426  1.364    rillig 		sym->s_osdef = false;
   1427  1.364    rillig 		sym->u.s_old_style_args = NULL;
   1428    1.1       cgd 	}
   1429  1.364    rillig }
   1430    1.1       cgd 
   1431  1.364    rillig /* The symbol gets a storage class and a definedness. */
   1432    1.1       cgd sym_t *
   1433   1.75    rillig declarator_name(sym_t *sym)
   1434    1.1       cgd {
   1435  1.316    rillig 	scl_t sc = NOSCL;
   1436    1.1       cgd 
   1437  1.298    rillig 	if (sym->s_scl == NOSCL)
   1438  1.154    rillig 		dcs->d_redeclared_symbol = NULL;
   1439  1.298    rillig 	else if (sym->s_defarg) {
   1440  1.122    rillig 		sym->s_defarg = false;
   1441  1.154    rillig 		dcs->d_redeclared_symbol = NULL;
   1442    1.1       cgd 	} else {
   1443  1.154    rillig 		dcs->d_redeclared_symbol = sym;
   1444    1.1       cgd 		sym = pushdown(sym);
   1445    1.1       cgd 	}
   1446    1.1       cgd 
   1447  1.276    rillig 	switch (dcs->d_kind) {
   1448  1.330    rillig 	case DLK_STRUCT:
   1449  1.330    rillig 	case DLK_UNION:
   1450  1.333    rillig 		sym->u.s_member.sm_containing_type = dcs->d_tag_type->t_sou;
   1451    1.1       cgd 		sym->s_def = DEF;
   1452  1.330    rillig 		sc = dcs->d_kind == DLK_STRUCT ? STRUCT_MEMBER : UNION_MEMBER;
   1453    1.1       cgd 		break;
   1454  1.330    rillig 	case DLK_EXTERN:
   1455    1.1       cgd 		/*
   1456  1.352    rillig 		 * Symbols that are 'static' or without any storage class are
   1457  1.352    rillig 		 * tentatively defined. Symbols that are tentatively defined or
   1458  1.352    rillig 		 * declared may later become defined if an initializer is seen
   1459  1.352    rillig 		 * or this is a function definition.
   1460    1.1       cgd 		 */
   1461  1.352    rillig 		sc = dcs->d_scl;
   1462  1.352    rillig 		if (sc == NOSCL || sc == THREAD_LOCAL) {
   1463    1.1       cgd 			sc = EXTERN;
   1464    1.1       cgd 			sym->s_def = TDEF;
   1465  1.298    rillig 		} else if (sc == STATIC)
   1466    1.1       cgd 			sym->s_def = TDEF;
   1467  1.298    rillig 		else if (sc == TYPEDEF)
   1468    1.1       cgd 			sym->s_def = DEF;
   1469  1.298    rillig 		else {
   1470   1.93    rillig 			lint_assert(sc == EXTERN);
   1471    1.1       cgd 			sym->s_def = DECL;
   1472    1.1       cgd 		}
   1473    1.1       cgd 		break;
   1474  1.330    rillig 	case DLK_PROTO_PARAMS:
   1475  1.122    rillig 		sym->s_arg = true;
   1476    1.1       cgd 		/* FALLTHROUGH */
   1477  1.330    rillig 	case DLK_OLD_STYLE_ARGS:
   1478  1.298    rillig 		if ((sc = dcs->d_scl) == NOSCL)
   1479    1.1       cgd 			sc = AUTO;
   1480  1.298    rillig 		else {
   1481   1.93    rillig 			lint_assert(sc == REG);
   1482  1.249    rillig 			sym->s_register = true;
   1483    1.1       cgd 			sc = AUTO;
   1484    1.1       cgd 		}
   1485    1.1       cgd 		sym->s_def = DEF;
   1486    1.1       cgd 		break;
   1487  1.330    rillig 	case DLK_AUTO:
   1488    1.3       jpo 		if ((sc = dcs->d_scl) == NOSCL) {
   1489    1.1       cgd 			/*
   1490  1.327    rillig 			 * XXX somewhat ugly because we don't know whether this
   1491  1.327    rillig 			 * is AUTO or EXTERN (functions). If we are wrong, it
   1492  1.327    rillig 			 * must be corrected in declare_local, when the
   1493  1.327    rillig 			 * necessary type information is available.
   1494    1.1       cgd 			 */
   1495    1.1       cgd 			sc = AUTO;
   1496    1.1       cgd 			sym->s_def = DEF;
   1497  1.353    rillig 		} else if (sc == AUTO || sc == STATIC || sc == TYPEDEF
   1498  1.353    rillig 		    || sc == THREAD_LOCAL)
   1499    1.1       cgd 			sym->s_def = DEF;
   1500  1.298    rillig 		else if (sc == REG) {
   1501  1.249    rillig 			sym->s_register = true;
   1502    1.1       cgd 			sc = AUTO;
   1503    1.1       cgd 			sym->s_def = DEF;
   1504   1.93    rillig 		} else {
   1505   1.93    rillig 			lint_assert(sc == EXTERN);
   1506    1.1       cgd 			sym->s_def = DECL;
   1507    1.1       cgd 		}
   1508    1.1       cgd 		break;
   1509  1.327    rillig 	default:
   1510  1.330    rillig 		lint_assert(dcs->d_kind == DLK_ABSTRACT);
   1511  1.327    rillig 		/* try to continue after syntax errors */
   1512  1.264    rillig 		sc = NOSCL;
   1513    1.1       cgd 	}
   1514    1.1       cgd 	sym->s_scl = sc;
   1515    1.1       cgd 
   1516    1.3       jpo 	sym->s_type = dcs->d_type;
   1517    1.1       cgd 
   1518  1.156    rillig 	dcs->d_func_proto_syms = NULL;
   1519    1.1       cgd 
   1520  1.369    rillig 	debug_sym("declarator_name: ", sym, "\n");
   1521   1.76    rillig 	return sym;
   1522    1.1       cgd }
   1523    1.1       cgd 
   1524    1.1       cgd sym_t *
   1525  1.327    rillig old_style_function_parameter_name(sym_t *sym)
   1526    1.1       cgd {
   1527   1.22     lukem 
   1528    1.1       cgd 	if (sym->s_scl != NOSCL) {
   1529  1.144    rillig 		if (block_level == sym->s_block_level) {
   1530  1.285    rillig 			/* redeclaration of formal parameter '%s' */
   1531    1.1       cgd 			error(21, sym->s_name);
   1532   1.92    rillig 			lint_assert(sym->s_defarg);
   1533    1.1       cgd 		}
   1534    1.1       cgd 		sym = pushdown(sym);
   1535    1.1       cgd 	}
   1536    1.1       cgd 	sym->s_type = gettyp(INT);
   1537    1.1       cgd 	sym->s_scl = AUTO;
   1538    1.1       cgd 	sym->s_def = DEF;
   1539  1.122    rillig 	sym->s_defarg = sym->s_arg = true;
   1540  1.369    rillig 	debug_sym("old_style_function_parameter_name: ", sym, "\n");
   1541   1.76    rillig 	return sym;
   1542    1.1       cgd }
   1543    1.1       cgd 
   1544  1.327    rillig /*-
   1545  1.364    rillig  * Checks all possible cases of tag redeclarations.
   1546  1.364    rillig  *
   1547  1.364    rillig  * decl		whether T_LBRACE follows
   1548  1.364    rillig  * semi		whether T_SEMI follows
   1549  1.364    rillig  */
   1550  1.364    rillig static sym_t *
   1551  1.364    rillig new_tag(sym_t *tag, scl_t scl, bool decl, bool semi)
   1552  1.364    rillig {
   1553  1.364    rillig 
   1554  1.364    rillig 	if (tag->s_block_level < block_level) {
   1555  1.364    rillig 		if (semi) {
   1556  1.364    rillig 			/* "struct a;" */
   1557  1.364    rillig 			if (allow_c90) {
   1558  1.364    rillig 				/* XXX: Why is this warning suppressed in C90 mode? */
   1559  1.364    rillig 				if (allow_trad || allow_c99)
   1560  1.364    rillig 					/* declaration of '%s %s' intro... */
   1561  1.364    rillig 					warning(44, storage_class_name(scl),
   1562  1.364    rillig 					    tag->s_name);
   1563  1.364    rillig 				tag = pushdown(tag);
   1564  1.364    rillig 			} else if (tag->s_scl != scl) {
   1565  1.364    rillig 				/* base type is really '%s %s' */
   1566  1.364    rillig 				warning(45, storage_class_name(tag->s_scl),
   1567  1.364    rillig 				    tag->s_name);
   1568  1.364    rillig 			}
   1569  1.364    rillig 			dcs->d_enclosing->d_nonempty_decl = true;
   1570  1.364    rillig 		} else if (decl) {
   1571  1.364    rillig 			/* "struct a { ... } " */
   1572  1.364    rillig 			if (hflag)
   1573  1.364    rillig 				/* redefinition of '%s' hides earlier one */
   1574  1.364    rillig 				warning(43, tag->s_name);
   1575  1.364    rillig 			tag = pushdown(tag);
   1576  1.364    rillig 			dcs->d_enclosing->d_nonempty_decl = true;
   1577  1.364    rillig 		} else if (tag->s_scl != scl) {
   1578  1.364    rillig 			/* base type is really '%s %s' */
   1579  1.364    rillig 			warning(45, storage_class_name(tag->s_scl),
   1580  1.364    rillig 			    tag->s_name);
   1581  1.364    rillig 			/* XXX: Why is this warning suppressed in C90 mode? */
   1582  1.364    rillig 			if (allow_trad || allow_c99) {
   1583  1.364    rillig 				/* declaration of '%s %s' introduces ... */
   1584  1.364    rillig 				warning(44, storage_class_name(scl),
   1585  1.364    rillig 				    tag->s_name);
   1586  1.364    rillig 			}
   1587  1.364    rillig 			tag = pushdown(tag);
   1588  1.364    rillig 			dcs->d_enclosing->d_nonempty_decl = true;
   1589  1.364    rillig 		}
   1590  1.364    rillig 	} else {
   1591  1.364    rillig 		if (tag->s_scl != scl ||
   1592  1.364    rillig 		    (decl && !is_incomplete(tag->s_type))) {
   1593  1.364    rillig 			/* %s tag '%s' redeclared as %s */
   1594  1.364    rillig 			error(46, storage_class_name(tag->s_scl),
   1595  1.364    rillig 			    tag->s_name, storage_class_name(scl));
   1596  1.364    rillig 			print_previous_declaration(tag);
   1597  1.364    rillig 			tag = pushdown(tag);
   1598  1.364    rillig 			dcs->d_enclosing->d_nonempty_decl = true;
   1599  1.364    rillig 		} else if (semi || decl)
   1600  1.364    rillig 			dcs->d_enclosing->d_nonempty_decl = true;
   1601  1.364    rillig 	}
   1602  1.369    rillig 	debug_sym("new_tag: ", tag, "\n");
   1603  1.364    rillig 	return tag;
   1604  1.364    rillig }
   1605  1.364    rillig 
   1606  1.364    rillig /*-
   1607  1.327    rillig  * tag		the symbol table entry of the tag
   1608  1.327    rillig  * kind		the kind of the tag (STRUCT/UNION/ENUM)
   1609  1.327    rillig  * decl		whether the tag type will be completed in this declaration
   1610  1.327    rillig  *		(when the following token is T_LBRACE)
   1611  1.327    rillig  * semi		whether the following token is T_SEMI
   1612    1.1       cgd  */
   1613    1.1       cgd type_t *
   1614  1.297    rillig make_tag_type(sym_t *tag, tspec_t kind, bool decl, bool semi)
   1615    1.1       cgd {
   1616  1.316    rillig 	scl_t scl;
   1617  1.316    rillig 	type_t *tp;
   1618    1.1       cgd 
   1619  1.298    rillig 	if (kind == STRUCT)
   1620  1.137    rillig 		scl = STRUCT_TAG;
   1621  1.298    rillig 	else if (kind == UNION)
   1622  1.137    rillig 		scl = UNION_TAG;
   1623  1.298    rillig 	else {
   1624   1.92    rillig 		lint_assert(kind == ENUM);
   1625  1.137    rillig 		scl = ENUM_TAG;
   1626    1.1       cgd 	}
   1627    1.1       cgd 
   1628    1.1       cgd 	if (tag != NULL) {
   1629  1.298    rillig 		if (tag->s_scl != NOSCL)
   1630  1.297    rillig 			tag = new_tag(tag, scl, decl, semi);
   1631  1.298    rillig 		else {
   1632    1.1       cgd 			/* a new tag, no empty declaration */
   1633  1.259    rillig 			dcs->d_enclosing->d_nonempty_decl = true;
   1634  1.137    rillig 			if (scl == ENUM_TAG && !decl) {
   1635  1.280    rillig 				/* TODO: Make this an error in C99 mode as well. */
   1636  1.298    rillig 				if (allow_c90 &&
   1637  1.298    rillig 				    ((!allow_trad && !allow_c99) || pflag))
   1638    1.1       cgd 					/* forward reference to enum type */
   1639    1.1       cgd 					warning(42);
   1640    1.1       cgd 			}
   1641    1.1       cgd 		}
   1642    1.1       cgd 		if (tag->s_scl == NOSCL) {
   1643    1.1       cgd 			tag->s_scl = scl;
   1644  1.358    rillig 			tag->s_type = tp =
   1645  1.358    rillig 			    block_zero_alloc(sizeof(*tp), "type");
   1646  1.109    rillig 			tp->t_packed = dcs->d_packed;
   1647  1.298    rillig 		} else
   1648    1.1       cgd 			tp = tag->s_type;
   1649  1.298    rillig 
   1650    1.1       cgd 	} else {
   1651  1.358    rillig 		tag = block_zero_alloc(sizeof(*tag), "sym");
   1652    1.1       cgd 		tag->s_name = unnamed;
   1653  1.328    rillig 		tag->s_def_pos = unique_curr_pos();
   1654    1.1       cgd 		tag->s_kind = FTAG;
   1655    1.1       cgd 		tag->s_scl = scl;
   1656  1.144    rillig 		tag->s_block_level = -1;
   1657  1.358    rillig 		tag->s_type = tp = block_zero_alloc(sizeof(*tp), "type");
   1658  1.109    rillig 		tp->t_packed = dcs->d_packed;
   1659  1.259    rillig 		dcs->d_enclosing->d_nonempty_decl = true;
   1660    1.1       cgd 	}
   1661    1.1       cgd 
   1662  1.311    rillig 	if (tp->t_tspec == NO_TSPEC) {
   1663    1.1       cgd 		tp->t_tspec = kind;
   1664    1.1       cgd 		if (kind != ENUM) {
   1665  1.358    rillig 			tp->t_sou = block_zero_alloc(sizeof(*tp->t_sou),
   1666  1.358    rillig 			    "struct_or_union");
   1667  1.308    rillig 			tp->t_sou->sou_align_in_bits = CHAR_SIZE;
   1668  1.308    rillig 			tp->t_sou->sou_tag = tag;
   1669  1.308    rillig 			tp->t_sou->sou_incomplete = true;
   1670    1.1       cgd 		} else {
   1671  1.136    rillig 			tp->t_is_enum = true;
   1672  1.358    rillig 			tp->t_enum = block_zero_alloc(sizeof(*tp->t_enum),
   1673  1.358    rillig 			    "enumeration");
   1674  1.135    rillig 			tp->t_enum->en_tag = tag;
   1675  1.262    rillig 			tp->t_enum->en_incomplete = true;
   1676    1.1       cgd 		}
   1677    1.1       cgd 	}
   1678  1.369    rillig 	debug_printf("%s: '%s'", __func__, type_name(tp));
   1679  1.369    rillig 	debug_sym(" ", tag, "\n");
   1680   1.76    rillig 	return tp;
   1681    1.1       cgd }
   1682    1.1       cgd 
   1683    1.1       cgd const char *
   1684   1.77    rillig storage_class_name(scl_t sc)
   1685    1.1       cgd {
   1686    1.1       cgd 	switch (sc) {
   1687  1.195    rillig 	case EXTERN:	return "extern";
   1688  1.195    rillig 	case STATIC:	return "static";
   1689  1.195    rillig 	case AUTO:	return "auto";
   1690  1.195    rillig 	case REG:	return "register";
   1691  1.195    rillig 	case TYPEDEF:	return "typedef";
   1692  1.195    rillig 	case STRUCT_TAG:return "struct";
   1693  1.195    rillig 	case UNION_TAG:	return "union";
   1694  1.195    rillig 	case ENUM_TAG:	return "enum";
   1695  1.124    rillig 	default:	lint_assert(/*CONSTCOND*/false);
   1696    1.1       cgd 	}
   1697  1.225    rillig 	/* NOTREACHED */
   1698    1.1       cgd }
   1699    1.1       cgd 
   1700  1.329    rillig static bool
   1701  1.329    rillig has_named_member(const type_t *tp)
   1702  1.329    rillig {
   1703  1.329    rillig 	for (const sym_t *mem = tp->t_sou->sou_first_member;
   1704  1.329    rillig 	     mem != NULL; mem = mem->s_next) {
   1705  1.329    rillig 		if (mem->s_name != unnamed)
   1706  1.329    rillig 			return true;
   1707  1.329    rillig 		if (is_struct_or_union(mem->s_type->t_tspec)
   1708  1.329    rillig 		    && has_named_member(mem->s_type))
   1709  1.329    rillig 			return true;
   1710  1.329    rillig 	}
   1711  1.329    rillig 	return false;
   1712  1.329    rillig }
   1713  1.329    rillig 
   1714    1.1       cgd type_t *
   1715  1.319    rillig complete_struct_or_union(sym_t *first_member)
   1716    1.1       cgd {
   1717    1.1       cgd 
   1718  1.323    rillig 	type_t *tp = dcs->d_tag_type;
   1719  1.188    rillig 	if (tp == NULL)		/* in case of syntax errors */
   1720  1.188    rillig 		return gettyp(INT);
   1721  1.188    rillig 
   1722  1.336    rillig 	dcs_align(dcs->d_sou_align_in_bits, 0);
   1723  1.298    rillig 
   1724  1.338    rillig 	struct_or_union *sou = tp->t_sou;
   1725  1.338    rillig 	sou->sou_align_in_bits = dcs->d_sou_align_in_bits;
   1726  1.338    rillig 	sou->sou_incomplete = false;
   1727  1.338    rillig 	sou->sou_first_member = first_member;
   1728  1.109    rillig 	if (tp->t_packed)
   1729  1.325    rillig 		pack_struct_or_union(tp);
   1730   1.78    rillig 	else
   1731  1.338    rillig 		sou->sou_size_in_bits = dcs->d_sou_size_in_bits;
   1732   1.78    rillig 
   1733  1.338    rillig 	if (sou->sou_size_in_bits == 0) {
   1734  1.250    rillig 		/* zero sized %s is a C99 feature */
   1735  1.319    rillig 		c99ism(47, tspec_name(tp->t_tspec));
   1736  1.329    rillig 	} else if (!has_named_member(tp)) {
   1737  1.293    rillig 		/* '%s' has no named members */
   1738  1.293    rillig 		warning(65, type_name(tp));
   1739    1.1       cgd 	}
   1740  1.369    rillig 	debug_step("%s: '%s'", __func__, type_name(tp));
   1741   1.76    rillig 	return tp;
   1742    1.1       cgd }
   1743    1.1       cgd 
   1744   1.78    rillig type_t *
   1745  1.319    rillig complete_enum(sym_t *first_enumerator)
   1746   1.78    rillig {
   1747   1.78    rillig 
   1748  1.323    rillig 	type_t *tp = dcs->d_tag_type;
   1749  1.262    rillig 	tp->t_enum->en_incomplete = false;
   1750  1.302    rillig 	tp->t_enum->en_first_enumerator = first_enumerator;
   1751  1.369    rillig 	debug_step("%s: '%s'", __func__, type_name(tp));
   1752   1.78    rillig 	return tp;
   1753   1.78    rillig }
   1754   1.78    rillig 
   1755    1.1       cgd /*
   1756   1.73    rillig  * Processes the name of an enumerator in an enum declaration.
   1757    1.1       cgd  *
   1758    1.1       cgd  * sym points to the enumerator
   1759    1.1       cgd  * val is the value of the enumerator
   1760  1.122    rillig  * impl is true if the value of the enumerator was not explicitly specified.
   1761    1.1       cgd  */
   1762    1.1       cgd sym_t *
   1763  1.122    rillig enumeration_constant(sym_t *sym, int val, bool impl)
   1764    1.1       cgd {
   1765   1.22     lukem 
   1766  1.122    rillig 	if (sym->s_scl != NOSCL) {
   1767  1.144    rillig 		if (sym->s_block_level == block_level) {
   1768  1.290    rillig 			/* no hflag, because this is illegal */
   1769    1.1       cgd 			if (sym->s_arg) {
   1770  1.290    rillig 				/* enumeration constant '%s' hides parameter */
   1771    1.1       cgd 				warning(57, sym->s_name);
   1772    1.1       cgd 			} else {
   1773  1.285    rillig 				/* redeclaration of '%s' */
   1774    1.1       cgd 				error(27, sym->s_name);
   1775    1.1       cgd 				/*
   1776  1.317    rillig 				 * Inside blocks, it should not be too
   1777   1.73    rillig 				 * complicated to find the position of the
   1778   1.73    rillig 				 * previous declaration
   1779    1.1       cgd 				 */
   1780  1.144    rillig 				if (block_level == 0)
   1781  1.299    rillig 					print_previous_declaration(sym);
   1782    1.1       cgd 			}
   1783    1.1       cgd 		} else {
   1784    1.1       cgd 			if (hflag)
   1785  1.290    rillig 				/* redefinition of '%s' hides earlier one */
   1786    1.1       cgd 				warning(43, sym->s_name);
   1787    1.1       cgd 		}
   1788    1.1       cgd 		sym = pushdown(sym);
   1789    1.1       cgd 	}
   1790  1.298    rillig 
   1791  1.272    rillig 	sym->s_scl = ENUM_CONST;
   1792  1.323    rillig 	sym->s_type = dcs->d_tag_type;
   1793  1.273    rillig 	sym->u.s_enum_constant = val;
   1794  1.298    rillig 
   1795  1.269    rillig 	if (impl && val == TARG_INT_MIN) {
   1796  1.290    rillig 		/* enumeration value '%s' overflows */
   1797    1.1       cgd 		warning(48, sym->s_name);
   1798    1.1       cgd 	}
   1799  1.298    rillig 
   1800  1.269    rillig 	enumval = val == TARG_INT_MAX ? TARG_INT_MIN : val + 1;
   1801  1.369    rillig 	debug_sym("enumeration_constant: ", sym, "\n");
   1802   1.76    rillig 	return sym;
   1803    1.1       cgd }
   1804    1.1       cgd 
   1805  1.306    rillig static bool
   1806  1.306    rillig ends_with(const char *s, const char *suffix)
   1807  1.306    rillig {
   1808  1.306    rillig 	size_t s_len = strlen(s);
   1809  1.306    rillig 	size_t suffix_len = strlen(suffix);
   1810  1.306    rillig 	return s_len >= suffix_len &&
   1811  1.306    rillig 	       memcmp(s + s_len - suffix_len, suffix, suffix_len) == 0;
   1812  1.306    rillig }
   1813  1.306    rillig 
   1814  1.343    rillig void
   1815  1.306    rillig check_extern_declaration(const sym_t *sym)
   1816  1.306    rillig {
   1817  1.306    rillig 
   1818  1.306    rillig 	if (sym->s_scl == EXTERN &&
   1819  1.306    rillig 	    dcs->d_redeclared_symbol == NULL &&
   1820  1.309    rillig 	    ends_with(curr_pos.p_file, ".c") &&
   1821  1.343    rillig 	    allow_c90 &&
   1822  1.343    rillig 	    !ch_isdigit(sym->s_name[0]) &&	/* see mktempsym */
   1823  1.343    rillig 	    strcmp(sym->s_name, "main") != 0) {
   1824  1.310    rillig 		/* missing%s header declaration for '%s' */
   1825  1.310    rillig 		warning(351, sym->s_type->t_tspec == FUNC ? "" : " 'extern'",
   1826  1.310    rillig 		    sym->s_name);
   1827  1.306    rillig 	}
   1828  1.318    rillig 	if (any_query_enabled &&
   1829  1.318    rillig 	    sym->s_type->t_tspec == FUNC &&
   1830  1.318    rillig 	    sym->s_scl == EXTERN &&
   1831  1.318    rillig 	    sym->s_def == DECL &&
   1832  1.318    rillig 	    !in_system_header) {
   1833  1.318    rillig 		/* redundant 'extern' in function declaration of '%s' */
   1834  1.318    rillig 		query_message(13, sym->s_name);
   1835  1.318    rillig 	}
   1836  1.306    rillig }
   1837  1.306    rillig 
   1838  1.364    rillig /*
   1839  1.364    rillig  * Check whether the symbol cannot be initialized due to type/storage class.
   1840  1.364    rillig  * Return whether an error has been detected.
   1841  1.364    rillig  */
   1842  1.364    rillig static bool
   1843  1.364    rillig check_init(sym_t *sym)
   1844  1.364    rillig {
   1845  1.364    rillig 
   1846  1.364    rillig 	if (sym->s_type->t_tspec == FUNC) {
   1847  1.364    rillig 		/* cannot initialize function '%s' */
   1848  1.364    rillig 		error(24, sym->s_name);
   1849  1.364    rillig 		return true;
   1850  1.364    rillig 	}
   1851  1.364    rillig 	if (sym->s_scl == TYPEDEF) {
   1852  1.364    rillig 		/* cannot initialize typedef '%s' */
   1853  1.364    rillig 		error(25, sym->s_name);
   1854  1.364    rillig 		return true;
   1855  1.364    rillig 	}
   1856  1.364    rillig 	if (sym->s_scl == EXTERN && sym->s_def == DECL) {
   1857  1.364    rillig 		if (dcs->d_kind == DLK_EXTERN) {
   1858  1.364    rillig 			/* cannot initialize extern declaration '%s' */
   1859  1.364    rillig 			warning(26, sym->s_name);
   1860  1.364    rillig 		} else {
   1861  1.364    rillig 			/* cannot initialize extern declaration '%s' */
   1862  1.364    rillig 			error(26, sym->s_name);
   1863  1.364    rillig 			return true;
   1864  1.364    rillig 		}
   1865  1.364    rillig 	}
   1866  1.364    rillig 
   1867  1.364    rillig 	return false;
   1868  1.364    rillig }
   1869  1.364    rillig 
   1870  1.364    rillig /*
   1871  1.364    rillig  * Compares a prototype declaration with the remembered arguments of a previous
   1872  1.364    rillig  * old-style function definition.
   1873  1.364    rillig  */
   1874  1.364    rillig static bool
   1875  1.369    rillig check_old_style_definition(const sym_t *rdsym, const sym_t *dsym)
   1876  1.364    rillig {
   1877  1.364    rillig 
   1878  1.369    rillig 	const sym_t *args = rdsym->u.s_old_style_args;
   1879  1.369    rillig 	const sym_t *pargs = dsym->s_type->t_args;
   1880  1.364    rillig 
   1881  1.364    rillig 	bool msg = false;
   1882  1.364    rillig 
   1883  1.364    rillig 	int narg = 0;
   1884  1.369    rillig 	for (const sym_t *arg = args; arg != NULL; arg = arg->s_next)
   1885  1.364    rillig 		narg++;
   1886  1.364    rillig 	int nparg = 0;
   1887  1.369    rillig 	for (const sym_t *parg = pargs; parg != NULL; parg = parg->s_next)
   1888  1.364    rillig 		nparg++;
   1889  1.364    rillig 	if (narg != nparg) {
   1890  1.364    rillig 		/* prototype does not match old-style definition */
   1891  1.364    rillig 		error(63);
   1892  1.364    rillig 		msg = true;
   1893  1.364    rillig 		goto end;
   1894  1.364    rillig 	}
   1895  1.364    rillig 
   1896  1.369    rillig 	const sym_t *arg = args;
   1897  1.369    rillig 	const sym_t *parg = pargs;
   1898  1.364    rillig 	int n = 1;
   1899  1.364    rillig 	while (narg-- > 0) {
   1900  1.364    rillig 		bool dowarn = false;
   1901  1.364    rillig 		if (!types_compatible(arg->s_type, parg->s_type,
   1902  1.364    rillig 		    true, true, &dowarn) ||
   1903  1.364    rillig 		    dowarn) {
   1904  1.364    rillig 			/* prototype does not match old-style ... */
   1905  1.364    rillig 			error(299, n);
   1906  1.364    rillig 			msg = true;
   1907  1.364    rillig 		}
   1908  1.364    rillig 		arg = arg->s_next;
   1909  1.364    rillig 		parg = parg->s_next;
   1910  1.364    rillig 		n++;
   1911  1.364    rillig 	}
   1912  1.364    rillig 
   1913  1.364    rillig end:
   1914  1.364    rillig 	if (msg && rflag) {
   1915  1.364    rillig 		/* old-style definition */
   1916  1.364    rillig 		message_at(300, &rdsym->s_def_pos);
   1917  1.364    rillig 	}
   1918  1.364    rillig 
   1919  1.364    rillig 	return msg;
   1920  1.364    rillig }
   1921  1.364    rillig 
   1922  1.306    rillig /* Process a single external or 'static' declarator. */
   1923  1.165    rillig static void
   1924  1.312    rillig declare_extern(sym_t *dsym, bool has_initializer, sbuf_t *renaming)
   1925    1.1       cgd {
   1926  1.166    rillig 
   1927  1.166    rillig 	if (renaming != NULL) {
   1928  1.166    rillig 		lint_assert(dsym->s_rename == NULL);
   1929  1.166    rillig 
   1930  1.358    rillig 		char *s = level_zero_alloc(1, renaming->sb_len + 1, "string");
   1931  1.166    rillig 		(void)memcpy(s, renaming->sb_name, renaming->sb_len + 1);
   1932  1.166    rillig 		dsym->s_rename = s;
   1933  1.166    rillig 	}
   1934    1.1       cgd 
   1935  1.306    rillig 	check_extern_declaration(dsym);
   1936  1.306    rillig 
   1937  1.124    rillig 	check_function_definition(dsym, true);
   1938    1.1       cgd 
   1939   1.75    rillig 	check_type(dsym);
   1940    1.1       cgd 
   1941  1.312    rillig 	if (has_initializer && !check_init(dsym))
   1942    1.1       cgd 		dsym->s_def = DEF;
   1943    1.1       cgd 
   1944    1.1       cgd 	/*
   1945   1.75    rillig 	 * Declarations of functions are marked as "tentative" in
   1946   1.75    rillig 	 * declarator_name(). This is wrong because there are no
   1947   1.75    rillig 	 * tentative function definitions.
   1948    1.1       cgd 	 */
   1949    1.1       cgd 	if (dsym->s_type->t_tspec == FUNC && dsym->s_def == TDEF)
   1950    1.1       cgd 		dsym->s_def = DECL;
   1951    1.1       cgd 
   1952    1.4       jpo 	if (dcs->d_inline) {
   1953    1.4       jpo 		if (dsym->s_type->t_tspec == FUNC) {
   1954  1.122    rillig 			dsym->s_inline = true;
   1955    1.4       jpo 		} else {
   1956  1.284    rillig 			/* variable '%s' declared inline */
   1957    1.5       jpo 			warning(268, dsym->s_name);
   1958    1.4       jpo 		}
   1959    1.4       jpo 	}
   1960    1.4       jpo 
   1961    1.1       cgd 	/* Write the declaration into the output file */
   1962    1.1       cgd 	if (plibflg && llibflg &&
   1963    1.1       cgd 	    dsym->s_type->t_tspec == FUNC && dsym->s_type->t_proto) {
   1964    1.1       cgd 		/*
   1965  1.111    rillig 		 * With both LINTLIBRARY and PROTOLIB the prototype is
   1966    1.1       cgd 		 * written as a function definition to the output file.
   1967    1.1       cgd 		 */
   1968  1.298    rillig 		bool rval = dsym->s_type->t_subt->t_tspec != VOID;
   1969  1.124    rillig 		outfdef(dsym, &dsym->s_def_pos, rval, false, NULL);
   1970  1.313    rillig 	} else if (!is_compiler_builtin(dsym->s_name)
   1971  1.313    rillig 	    && !(has_initializer && dsym->s_type->t_incomplete_array)) {
   1972    1.4       jpo 		outsym(dsym, dsym->s_scl, dsym->s_def);
   1973    1.1       cgd 	}
   1974    1.1       cgd 
   1975  1.314    rillig 	sym_t *rdsym = dcs->d_redeclared_symbol;
   1976  1.314    rillig 	if (rdsym != NULL) {
   1977    1.1       cgd 
   1978    1.1       cgd 		/*
   1979  1.300    rillig 		 * If the old symbol stems from an old-style function
   1980  1.271    rillig 		 * definition, we have remembered the params in
   1981  1.271    rillig 		 * rdsym->s_old_style_args and compare them with the params
   1982  1.271    rillig 		 * of the prototype.
   1983    1.1       cgd 		 */
   1984  1.298    rillig 		bool redec = rdsym->s_osdef && dsym->s_type->t_proto &&
   1985  1.298    rillig 		    check_old_style_definition(rdsym, dsym);
   1986   1.22     lukem 
   1987  1.298    rillig 		bool dowarn = false;
   1988  1.298    rillig 		if (!redec && !check_redeclaration(dsym, &dowarn)) {
   1989   1.44  dholland 			if (dowarn) {
   1990  1.280    rillig 				/* TODO: Make this an error in C99 mode as well. */
   1991  1.280    rillig 				if (!allow_trad && !allow_c99)
   1992  1.285    rillig 					/* redeclaration of '%s' */
   1993  1.105    rillig 					error(27, dsym->s_name);
   1994  1.105    rillig 				else
   1995  1.285    rillig 					/* redeclaration of '%s' */
   1996  1.105    rillig 					warning(27, dsym->s_name);
   1997  1.299    rillig 				print_previous_declaration(rdsym);
   1998    1.1       cgd 			}
   1999    1.1       cgd 
   2000    1.1       cgd 			/*
   2001   1.73    rillig 			 * Take over the remembered params if the new symbol
   2002    1.4       jpo 			 * is not a prototype.
   2003    1.1       cgd 			 */
   2004    1.1       cgd 			if (rdsym->s_osdef && !dsym->s_type->t_proto) {
   2005    1.1       cgd 				dsym->s_osdef = rdsym->s_osdef;
   2006  1.271    rillig 				dsym->u.s_old_style_args =
   2007  1.271    rillig 				    rdsym->u.s_old_style_args;
   2008   1.85    rillig 				dsym->s_def_pos = rdsym->s_def_pos;
   2009    1.1       cgd 			}
   2010    1.1       cgd 
   2011  1.298    rillig 			if (rdsym->s_type->t_proto && !dsym->s_type->t_proto)
   2012   1.85    rillig 				dsym->s_def_pos = rdsym->s_def_pos;
   2013  1.298    rillig 			else if (rdsym->s_def == DEF && dsym->s_def != DEF)
   2014   1.85    rillig 				dsym->s_def_pos = rdsym->s_def_pos;
   2015    1.1       cgd 
   2016   1.75    rillig 			copy_usage_info(dsym, rdsym);
   2017    1.1       cgd 
   2018    1.1       cgd 			/* Once a name is defined, it remains defined. */
   2019    1.1       cgd 			if (rdsym->s_def == DEF)
   2020    1.1       cgd 				dsym->s_def = DEF;
   2021    1.1       cgd 
   2022    1.4       jpo 			/* once a function is inline, it remains inline */
   2023    1.4       jpo 			if (rdsym->s_inline)
   2024  1.122    rillig 				dsym->s_inline = true;
   2025    1.4       jpo 
   2026   1.75    rillig 			complete_type(dsym, rdsym);
   2027    1.1       cgd 		}
   2028   1.22     lukem 
   2029    1.1       cgd 		rmsym(rdsym);
   2030    1.1       cgd 	}
   2031    1.1       cgd 
   2032    1.1       cgd 	if (dsym->s_scl == TYPEDEF) {
   2033  1.247    rillig 		dsym->s_type = block_dup_type(dsym->s_type);
   2034  1.122    rillig 		dsym->s_type->t_typedef = true;
   2035  1.297    rillig 		set_first_typedef(dsym->s_type, dsym);
   2036    1.1       cgd 	}
   2037  1.369    rillig 	debug_printf("%s: ", __func__);
   2038  1.369    rillig 	debug_sym("", dsym, "\n");
   2039    1.1       cgd }
   2040    1.1       cgd 
   2041  1.165    rillig void
   2042  1.312    rillig declare(sym_t *decl, bool has_initializer, sbuf_t *renaming)
   2043  1.165    rillig {
   2044  1.165    rillig 
   2045  1.330    rillig 	if (dcs->d_kind == DLK_EXTERN)
   2046  1.312    rillig 		declare_extern(decl, has_initializer, renaming);
   2047  1.330    rillig 	else if (dcs->d_kind == DLK_OLD_STYLE_ARGS ||
   2048  1.330    rillig 		 dcs->d_kind == DLK_PROTO_PARAMS) {
   2049  1.165    rillig 		if (renaming != NULL) {
   2050  1.165    rillig 			/* symbol renaming can't be used on function arguments */
   2051  1.165    rillig 			error(310);
   2052  1.166    rillig 		} else
   2053  1.312    rillig 			(void)declare_argument(decl, has_initializer);
   2054  1.166    rillig 	} else {
   2055  1.330    rillig 		lint_assert(dcs->d_kind == DLK_AUTO);
   2056  1.165    rillig 		if (renaming != NULL) {
   2057  1.165    rillig 			/* symbol renaming can't be used on automatic variables */
   2058  1.165    rillig 			error(311);
   2059  1.166    rillig 		} else
   2060  1.312    rillig 			declare_local(decl, has_initializer);
   2061  1.165    rillig 	}
   2062  1.369    rillig 	debug_printf("%s: ", __func__);
   2063  1.369    rillig 	debug_sym("", decl, "\n");
   2064  1.165    rillig }
   2065  1.165    rillig 
   2066    1.1       cgd /*
   2067   1.73    rillig  * Copies information about usage into a new symbol table entry of
   2068    1.1       cgd  * the same symbol.
   2069    1.1       cgd  */
   2070    1.1       cgd void
   2071   1.75    rillig copy_usage_info(sym_t *sym, sym_t *rdsym)
   2072    1.1       cgd {
   2073   1.22     lukem 
   2074   1.84    rillig 	sym->s_set_pos = rdsym->s_set_pos;
   2075   1.84    rillig 	sym->s_use_pos = rdsym->s_use_pos;
   2076    1.1       cgd 	sym->s_set = rdsym->s_set;
   2077    1.1       cgd 	sym->s_used = rdsym->s_used;
   2078    1.1       cgd }
   2079    1.1       cgd 
   2080    1.1       cgd /*
   2081  1.131    rillig  * Prints an error and returns true if a symbol is redeclared/redefined.
   2082  1.298    rillig  * Otherwise, returns false and, in some cases of minor problems, prints
   2083    1.1       cgd  * a warning.
   2084    1.1       cgd  */
   2085  1.122    rillig bool
   2086  1.122    rillig check_redeclaration(sym_t *dsym, bool *dowarn)
   2087    1.1       cgd {
   2088    1.1       cgd 
   2089  1.314    rillig 	sym_t *rdsym = dcs->d_redeclared_symbol;
   2090  1.314    rillig 	if (rdsym->s_scl == ENUM_CONST) {
   2091  1.285    rillig 		/* redeclaration of '%s' */
   2092    1.1       cgd 		error(27, dsym->s_name);
   2093  1.314    rillig 		print_previous_declaration(rdsym);
   2094  1.122    rillig 		return true;
   2095    1.1       cgd 	}
   2096  1.314    rillig 	if (rdsym->s_scl == TYPEDEF) {
   2097  1.289    rillig 		/* typedef '%s' redeclared */
   2098    1.1       cgd 		error(89, dsym->s_name);
   2099  1.314    rillig 		print_previous_declaration(rdsym);
   2100  1.122    rillig 		return true;
   2101    1.1       cgd 	}
   2102    1.1       cgd 	if (dsym->s_scl == TYPEDEF) {
   2103  1.285    rillig 		/* redeclaration of '%s' */
   2104    1.1       cgd 		error(27, dsym->s_name);
   2105  1.314    rillig 		print_previous_declaration(rdsym);
   2106  1.122    rillig 		return true;
   2107    1.1       cgd 	}
   2108  1.314    rillig 	if (rdsym->s_def == DEF && dsym->s_def == DEF) {
   2109  1.288    rillig 		/* redefinition of '%s' */
   2110    1.1       cgd 		error(28, dsym->s_name);
   2111  1.314    rillig 		print_previous_declaration(rdsym);
   2112  1.122    rillig 		return true;
   2113    1.1       cgd 	}
   2114  1.327    rillig 	if (!types_compatible(rdsym->s_type, dsym->s_type,
   2115  1.327    rillig 	    false, false, dowarn)) {
   2116  1.236    rillig 		/* redeclaration of '%s' with type '%s', expected '%s' */
   2117  1.236    rillig 		error(347, dsym->s_name,
   2118  1.314    rillig 		    type_name(dsym->s_type), type_name(rdsym->s_type));
   2119  1.314    rillig 		print_previous_declaration(rdsym);
   2120  1.122    rillig 		return true;
   2121    1.1       cgd 	}
   2122  1.314    rillig 	if (rdsym->s_scl == EXTERN && dsym->s_scl == EXTERN)
   2123  1.122    rillig 		return false;
   2124  1.314    rillig 	if (rdsym->s_scl == STATIC && dsym->s_scl == STATIC)
   2125  1.122    rillig 		return false;
   2126  1.314    rillig 	if (rdsym->s_scl == STATIC && dsym->s_def == DECL)
   2127  1.122    rillig 		return false;
   2128  1.314    rillig 	if (rdsym->s_scl == EXTERN && rdsym->s_def == DEF) {
   2129    1.1       cgd 		/*
   2130   1.66     kamil 		 * All cases except "int a = 1; static int a;" are caught
   2131    1.1       cgd 		 * above with or without a warning
   2132    1.1       cgd 		 */
   2133  1.285    rillig 		/* redeclaration of '%s' */
   2134    1.1       cgd 		error(27, dsym->s_name);
   2135  1.314    rillig 		print_previous_declaration(rdsym);
   2136  1.122    rillig 		return true;
   2137    1.1       cgd 	}
   2138  1.314    rillig 	if (rdsym->s_scl == EXTERN) {
   2139  1.288    rillig 		/* '%s' was previously declared extern, becomes static */
   2140    1.1       cgd 		warning(29, dsym->s_name);
   2141  1.314    rillig 		print_previous_declaration(rdsym);
   2142  1.122    rillig 		return false;
   2143    1.1       cgd 	}
   2144    1.1       cgd 	/*
   2145   1.86    rillig 	 * Now it's one of:
   2146    1.1       cgd 	 * "static a; int a;", "static a; int a = 1;", "static a = 1; int a;"
   2147    1.1       cgd 	 */
   2148  1.280    rillig 	/* TODO: Make this an error in C99 mode as well. */
   2149  1.280    rillig 	if (!allow_trad && !allow_c99) {
   2150  1.285    rillig 		/* redeclaration of '%s'; ANSI C requires static */
   2151    1.1       cgd 		warning(30, dsym->s_name);
   2152  1.314    rillig 		print_previous_declaration(rdsym);
   2153    1.1       cgd 	}
   2154    1.1       cgd 	dsym->s_scl = STATIC;
   2155  1.122    rillig 	return false;
   2156    1.1       cgd }
   2157    1.1       cgd 
   2158  1.117    rillig static bool
   2159  1.364    rillig qualifiers_correspond(const type_t *tp1, const type_t *tp2, bool ignqual)
   2160  1.364    rillig {
   2161  1.364    rillig 
   2162  1.364    rillig 	if (tp1->t_const != tp2->t_const && !ignqual && allow_c90)
   2163  1.364    rillig 		return false;
   2164  1.364    rillig 	if (tp1->t_volatile != tp2->t_volatile && !ignqual && allow_c90)
   2165  1.364    rillig 		return false;
   2166  1.364    rillig 	return true;
   2167  1.364    rillig }
   2168  1.364    rillig 
   2169  1.364    rillig bool
   2170  1.364    rillig pointer_types_are_compatible(const type_t *tp1, const type_t *tp2, bool ignqual)
   2171  1.364    rillig {
   2172  1.364    rillig 
   2173  1.364    rillig 	return tp1->t_tspec == VOID || tp2->t_tspec == VOID ||
   2174  1.364    rillig 	       qualifiers_correspond(tp1, tp2, ignqual);
   2175  1.364    rillig }
   2176  1.364    rillig 
   2177  1.364    rillig static bool
   2178  1.364    rillig prototypes_compatible(const type_t *tp1, const type_t *tp2, bool *dowarn)
   2179  1.364    rillig {
   2180  1.364    rillig 
   2181  1.364    rillig 	if (tp1->t_vararg != tp2->t_vararg)
   2182  1.364    rillig 		return false;
   2183  1.364    rillig 
   2184  1.364    rillig 	sym_t *a1 = tp1->t_args;
   2185  1.364    rillig 	sym_t *a2 = tp2->t_args;
   2186  1.364    rillig 
   2187  1.364    rillig 	for (; a1 != NULL && a2 != NULL; a1 = a1->s_next, a2 = a2->s_next) {
   2188  1.364    rillig 		if (!types_compatible(a1->s_type, a2->s_type,
   2189  1.364    rillig 		    true, false, dowarn))
   2190  1.364    rillig 			return false;
   2191  1.364    rillig 	}
   2192  1.364    rillig 	return a1 == a2;
   2193  1.364    rillig }
   2194  1.364    rillig 
   2195  1.364    rillig /*
   2196  1.364    rillig  * Returns whether all parameters of a prototype are compatible with an
   2197  1.364    rillig  * old-style function declaration.
   2198  1.364    rillig  *
   2199  1.364    rillig  * This is the case if the following conditions are met:
   2200  1.364    rillig  *	1. the prototype has a fixed number of parameters
   2201  1.364    rillig  *	2. no parameter is of type float
   2202  1.364    rillig  *	3. no parameter is converted to another type if integer promotion
   2203  1.364    rillig  *	   is applied on it
   2204  1.364    rillig  */
   2205  1.364    rillig static bool
   2206  1.364    rillig matches_no_arg_function(const type_t *tp, bool *dowarn)
   2207   1.45  christos {
   2208  1.298    rillig 
   2209  1.364    rillig 	if (tp->t_vararg && dowarn != NULL)
   2210  1.364    rillig 		*dowarn = true;
   2211  1.364    rillig 	for (sym_t *arg = tp->t_args; arg != NULL; arg = arg->s_next) {
   2212  1.364    rillig 		tspec_t t = arg->s_type->t_tspec;
   2213  1.364    rillig 		if (t == FLOAT ||
   2214  1.364    rillig 		    t == CHAR || t == SCHAR || t == UCHAR ||
   2215  1.364    rillig 		    t == SHORT || t == USHORT) {
   2216  1.364    rillig 			if (dowarn != NULL)
   2217  1.364    rillig 				*dowarn = true;
   2218  1.364    rillig 		}
   2219  1.364    rillig 	}
   2220  1.364    rillig 	/* FIXME: Always returning true cannot be correct. */
   2221  1.117    rillig 	return true;
   2222   1.45  christos }
   2223   1.45  christos 
   2224  1.327    rillig /*-
   2225  1.327    rillig  * ignqual	ignore type qualifiers; used for function parameters
   2226  1.298    rillig  * promot	promote the left type; used for comparison of parameters of
   2227  1.298    rillig  *		old-style function definitions with parameters of prototypes.
   2228  1.298    rillig  * *dowarn	is set to true if an old-style function declaration is not
   2229    1.1       cgd  *		compatible with a prototype
   2230    1.1       cgd  */
   2231  1.122    rillig bool
   2232  1.298    rillig types_compatible(const type_t *tp1, const type_t *tp2,
   2233  1.298    rillig 		     bool ignqual, bool promot, bool *dowarn)
   2234    1.1       cgd {
   2235    1.1       cgd 
   2236    1.1       cgd 	while (tp1 != NULL && tp2 != NULL) {
   2237  1.298    rillig 		tspec_t t = tp1->t_tspec;
   2238    1.1       cgd 		if (promot) {
   2239  1.298    rillig 			if (t == FLOAT)
   2240    1.1       cgd 				t = DOUBLE;
   2241  1.298    rillig 			else if (t == CHAR || t == SCHAR)
   2242    1.1       cgd 				t = INT;
   2243  1.298    rillig 			else if (t == UCHAR)
   2244  1.279    rillig 				t = allow_c90 ? INT : UINT;
   2245  1.298    rillig 			else if (t == SHORT)
   2246    1.1       cgd 				t = INT;
   2247  1.298    rillig 			else if (t == USHORT) {
   2248    1.1       cgd 				/* CONSTCOND */
   2249  1.279    rillig 				t = TARG_INT_MAX < TARG_USHRT_MAX || !allow_c90
   2250  1.254    rillig 				    ? UINT : INT;
   2251    1.1       cgd 			}
   2252    1.1       cgd 		}
   2253    1.1       cgd 
   2254    1.1       cgd 		if (t != tp2->t_tspec)
   2255  1.124    rillig 			return false;
   2256    1.1       cgd 
   2257  1.116    rillig 		if (!qualifiers_correspond(tp1, tp2, ignqual))
   2258  1.124    rillig 			return false;
   2259    1.1       cgd 
   2260  1.292    rillig 		if (is_struct_or_union(t))
   2261  1.308    rillig 			return tp1->t_sou == tp2->t_sou;
   2262    1.1       cgd 
   2263  1.219    rillig 		if (t == ENUM && eflag)
   2264  1.219    rillig 			return tp1->t_enum == tp2->t_enum;
   2265  1.219    rillig 
   2266    1.1       cgd 		if (t == ARRAY && tp1->t_dim != tp2->t_dim) {
   2267    1.1       cgd 			if (tp1->t_dim != 0 && tp2->t_dim != 0)
   2268  1.124    rillig 				return false;
   2269    1.1       cgd 		}
   2270    1.1       cgd 
   2271  1.218    rillig 		/* don't check prototypes for traditional */
   2272  1.279    rillig 		if (t == FUNC && allow_c90) {
   2273    1.1       cgd 			if (tp1->t_proto && tp2->t_proto) {
   2274  1.298    rillig 				if (!prototypes_compatible(tp1, tp2, dowarn))
   2275  1.124    rillig 					return false;
   2276    1.1       cgd 			} else if (tp1->t_proto) {
   2277  1.297    rillig 				if (!matches_no_arg_function(tp1, dowarn))
   2278  1.124    rillig 					return false;
   2279    1.1       cgd 			} else if (tp2->t_proto) {
   2280  1.297    rillig 				if (!matches_no_arg_function(tp2, dowarn))
   2281  1.124    rillig 					return false;
   2282    1.1       cgd 			}
   2283    1.1       cgd 		}
   2284    1.1       cgd 
   2285    1.1       cgd 		tp1 = tp1->t_subt;
   2286    1.1       cgd 		tp2 = tp2->t_subt;
   2287  1.122    rillig 		ignqual = promot = false;
   2288    1.1       cgd 	}
   2289    1.1       cgd 
   2290   1.76    rillig 	return tp1 == tp2;
   2291    1.1       cgd }
   2292    1.1       cgd 
   2293    1.1       cgd /*
   2294  1.327    rillig  * Completes a type by copying the dimension and prototype information from a
   2295  1.327    rillig  * second compatible type.
   2296    1.1       cgd  *
   2297    1.1       cgd  * Following lines are legal:
   2298    1.1       cgd  *  "typedef a[]; a b; a b[10]; a c; a c[20];"
   2299    1.1       cgd  *  "typedef ft(); ft f; f(int); ft g; g(long);"
   2300  1.327    rillig  * This means that, if a type is completed, the type structure must be
   2301  1.327    rillig  * duplicated.
   2302    1.1       cgd  */
   2303    1.1       cgd void
   2304   1.75    rillig complete_type(sym_t *dsym, sym_t *ssym)
   2305    1.1       cgd {
   2306  1.327    rillig 	type_t **dstp = &dsym->s_type;
   2307  1.327    rillig 	type_t *src = ssym->s_type;
   2308    1.1       cgd 
   2309  1.327    rillig 	while (*dstp != NULL) {
   2310  1.327    rillig 		type_t *dst = *dstp;
   2311   1.92    rillig 		lint_assert(src != NULL);
   2312   1.92    rillig 		lint_assert(dst->t_tspec == src->t_tspec);
   2313    1.1       cgd 		if (dst->t_tspec == ARRAY) {
   2314    1.1       cgd 			if (dst->t_dim == 0 && src->t_dim != 0) {
   2315  1.247    rillig 				*dstp = dst = block_dup_type(dst);
   2316    1.1       cgd 				dst->t_dim = src->t_dim;
   2317  1.262    rillig 				dst->t_incomplete_array = false;
   2318    1.1       cgd 			}
   2319    1.1       cgd 		} else if (dst->t_tspec == FUNC) {
   2320    1.1       cgd 			if (!dst->t_proto && src->t_proto) {
   2321  1.247    rillig 				*dstp = dst = block_dup_type(dst);
   2322  1.122    rillig 				dst->t_proto = true;
   2323    1.1       cgd 				dst->t_args = src->t_args;
   2324    1.1       cgd 			}
   2325    1.1       cgd 		}
   2326    1.1       cgd 		dstp = &dst->t_subt;
   2327    1.1       cgd 		src = src->t_subt;
   2328    1.1       cgd 	}
   2329  1.369    rillig 	debug_printf("%s: ", __func__);
   2330  1.369    rillig 	debug_sym("dsym: ", dsym, "");
   2331  1.369    rillig 	debug_sym("ssym: ", ssym, "\n");
   2332    1.1       cgd }
   2333    1.1       cgd 
   2334    1.1       cgd /*
   2335    1.1       cgd  * Completes the declaration of a single argument.
   2336    1.1       cgd  */
   2337    1.1       cgd sym_t *
   2338  1.312    rillig declare_argument(sym_t *sym, bool has_initializer)
   2339    1.1       cgd {
   2340    1.1       cgd 
   2341  1.124    rillig 	check_function_definition(sym, true);
   2342    1.1       cgd 
   2343   1.75    rillig 	check_type(sym);
   2344    1.1       cgd 
   2345  1.154    rillig 	if (dcs->d_redeclared_symbol != NULL &&
   2346  1.154    rillig 	    dcs->d_redeclared_symbol->s_block_level == block_level) {
   2347  1.285    rillig 		/* redeclaration of formal parameter '%s' */
   2348    1.1       cgd 		error(237, sym->s_name);
   2349  1.154    rillig 		rmsym(dcs->d_redeclared_symbol);
   2350  1.122    rillig 		sym->s_arg = true;
   2351    1.1       cgd 	}
   2352    1.1       cgd 
   2353    1.1       cgd 	if (!sym->s_arg) {
   2354  1.290    rillig 		/* declared argument '%s' is missing */
   2355    1.1       cgd 		error(53, sym->s_name);
   2356  1.122    rillig 		sym->s_arg = true;
   2357    1.1       cgd 	}
   2358    1.1       cgd 
   2359  1.312    rillig 	if (has_initializer) {
   2360  1.290    rillig 		/* cannot initialize parameter '%s' */
   2361    1.1       cgd 		error(52, sym->s_name);
   2362    1.1       cgd 	}
   2363    1.1       cgd 
   2364  1.196    rillig 	if (sym->s_type == NULL)	/* for c(void()) */
   2365  1.196    rillig 		sym->s_type = gettyp(VOID);
   2366  1.196    rillig 
   2367  1.327    rillig 	tspec_t t = sym->s_type->t_tspec;
   2368  1.327    rillig 	if (t == ARRAY)
   2369  1.247    rillig 		sym->s_type = block_derive_type(sym->s_type->t_subt, PTR);
   2370  1.327    rillig 	if (t == FUNC) {
   2371  1.279    rillig 		if (!allow_c90)
   2372  1.347    rillig 			/* parameter '%s' has function type, should be ... */
   2373    1.1       cgd 			warning(50, sym->s_name);
   2374  1.247    rillig 		sym->s_type = block_derive_type(sym->s_type, PTR);
   2375    1.1       cgd 	}
   2376  1.327    rillig 	if (t == FLOAT && !allow_c90)
   2377  1.327    rillig 		sym->s_type = gettyp(DOUBLE);
   2378    1.1       cgd 
   2379    1.4       jpo 	if (dcs->d_inline)
   2380  1.347    rillig 		/* parameter '%s' declared inline */
   2381    1.5       jpo 		warning(269, sym->s_name);
   2382    1.4       jpo 
   2383    1.1       cgd 	/*
   2384  1.270    rillig 	 * Arguments must have complete types. length_in_bits prints the
   2385  1.270    rillig 	 * needed error messages (null dimension is impossible because arrays
   2386  1.270    rillig 	 * are converted to pointers).
   2387    1.1       cgd 	 */
   2388    1.1       cgd 	if (sym->s_type->t_tspec != VOID)
   2389  1.270    rillig 		(void)length_in_bits(sym->s_type, sym->s_name);
   2390    1.1       cgd 
   2391   1.67  christos 	sym->s_used = dcs->d_used;
   2392   1.75    rillig 	mark_as_set(sym);
   2393    1.1       cgd 
   2394  1.369    rillig 	debug_printf("%s: ", __func__);
   2395  1.369    rillig 	debug_sym("", sym, "\n");
   2396   1.76    rillig 	return sym;
   2397    1.1       cgd }
   2398    1.1       cgd 
   2399  1.298    rillig static bool
   2400  1.298    rillig is_character_pointer(const type_t *tp)
   2401  1.298    rillig {
   2402  1.298    rillig 	tspec_t st;
   2403  1.298    rillig 
   2404  1.298    rillig 	return tp->t_tspec == PTR &&
   2405  1.298    rillig 	       (st = tp->t_subt->t_tspec,
   2406  1.298    rillig 		   st == CHAR || st == SCHAR || st == UCHAR);
   2407  1.298    rillig }
   2408  1.298    rillig 
   2409    1.1       cgd void
   2410   1.87    rillig check_func_lint_directives(void)
   2411    1.1       cgd {
   2412    1.1       cgd 
   2413    1.1       cgd 	/* check for illegal combinations of lint directives */
   2414  1.110    rillig 	if (printflike_argnum != -1 && scanflike_argnum != -1) {
   2415  1.346    rillig 		/* ** PRINTFLIKE ** and ** SCANFLIKE ** cannot be combined */
   2416    1.1       cgd 		warning(289);
   2417  1.110    rillig 		printflike_argnum = scanflike_argnum = -1;
   2418    1.1       cgd 	}
   2419  1.110    rillig 	if (nvararg != -1 &&
   2420  1.110    rillig 	    (printflike_argnum != -1 || scanflike_argnum != -1)) {
   2421    1.1       cgd 		/* dubious use of ** VARARGS ** with ** %s ** */
   2422  1.110    rillig 		warning(288,
   2423  1.110    rillig 		    printflike_argnum != -1 ? "PRINTFLIKE" : "SCANFLIKE");
   2424    1.1       cgd 		nvararg = -1;
   2425    1.1       cgd 	}
   2426    1.1       cgd 
   2427    1.1       cgd 	/*
   2428    1.1       cgd 	 * check if the argument of a lint directive is compatible with the
   2429    1.1       cgd 	 * number of arguments.
   2430    1.1       cgd 	 */
   2431  1.298    rillig 	int narg = 0;
   2432  1.298    rillig 	for (sym_t *arg = dcs->d_func_args; arg != NULL; arg = arg->s_next)
   2433    1.1       cgd 		narg++;
   2434    1.1       cgd 	if (nargusg > narg) {
   2435  1.346    rillig 		/* argument number mismatch in comment ** %s ** */
   2436    1.1       cgd 		warning(283, "ARGSUSED");
   2437    1.1       cgd 		nargusg = 0;
   2438    1.1       cgd 	}
   2439    1.1       cgd 	if (nvararg > narg) {
   2440  1.346    rillig 		/* argument number mismatch in comment ** %s ** */
   2441    1.1       cgd 		warning(283, "VARARGS");
   2442    1.1       cgd 		nvararg = 0;
   2443    1.1       cgd 	}
   2444  1.110    rillig 	if (printflike_argnum > narg) {
   2445  1.346    rillig 		/* argument number mismatch in comment ** %s ** */
   2446    1.1       cgd 		warning(283, "PRINTFLIKE");
   2447  1.110    rillig 		printflike_argnum = -1;
   2448  1.110    rillig 	} else if (printflike_argnum == 0) {
   2449  1.110    rillig 		printflike_argnum = -1;
   2450    1.1       cgd 	}
   2451  1.110    rillig 	if (scanflike_argnum > narg) {
   2452  1.346    rillig 		/* argument number mismatch in comment ** %s ** */
   2453    1.1       cgd 		warning(283, "SCANFLIKE");
   2454  1.110    rillig 		scanflike_argnum = -1;
   2455  1.110    rillig 	} else if (scanflike_argnum == 0) {
   2456  1.110    rillig 		scanflike_argnum = -1;
   2457  1.110    rillig 	}
   2458  1.110    rillig 	if (printflike_argnum != -1 || scanflike_argnum != -1) {
   2459  1.110    rillig 		narg = printflike_argnum != -1
   2460  1.110    rillig 		    ? printflike_argnum : scanflike_argnum;
   2461  1.369    rillig 		const sym_t *arg = dcs->d_func_args;
   2462  1.298    rillig 		for (int n = 1; n < narg; n++)
   2463   1.80    rillig 			arg = arg->s_next;
   2464  1.298    rillig 		if (!is_character_pointer(arg->s_type)) {
   2465  1.230    rillig 			/* argument %d must be 'char *' for PRINTFLIKE/... */
   2466    1.1       cgd 			warning(293, narg);
   2467  1.110    rillig 			printflike_argnum = scanflike_argnum = -1;
   2468    1.1       cgd 		}
   2469    1.1       cgd 	}
   2470   1.87    rillig }
   2471   1.87    rillig 
   2472   1.87    rillig /*
   2473  1.364    rillig  * Checks compatibility of an old-style function definition with a previous
   2474  1.364    rillig  * prototype declaration.
   2475  1.364    rillig  * Returns true if the position of the previous declaration should be reported.
   2476  1.364    rillig  */
   2477  1.364    rillig static bool
   2478  1.364    rillig check_prototype_declaration(sym_t *arg, sym_t *parg)
   2479  1.364    rillig {
   2480  1.364    rillig 	type_t *tp = arg->s_type;
   2481  1.364    rillig 	type_t *ptp = parg->s_type;
   2482  1.364    rillig 	bool dowarn = false;
   2483  1.364    rillig 
   2484  1.364    rillig 	if (!types_compatible(tp, ptp, true, true, &dowarn)) {
   2485  1.364    rillig 		if (types_compatible(tp, ptp, true, false, &dowarn)) {
   2486  1.364    rillig 			/* type of '%s' does not match prototype */
   2487  1.364    rillig 			return gnuism(58, arg->s_name);
   2488  1.364    rillig 		} else {
   2489  1.364    rillig 			/* type of '%s' does not match prototype */
   2490  1.364    rillig 			error(58, arg->s_name);
   2491  1.364    rillig 			return true;
   2492  1.364    rillig 		}
   2493  1.364    rillig 	}
   2494  1.364    rillig 	if (dowarn) {
   2495  1.364    rillig 		/* TODO: Make this an error in C99 mode as well. */
   2496  1.364    rillig 		if (!allow_trad && !allow_c99)
   2497  1.364    rillig 			/* type of '%s' does not match prototype */
   2498  1.364    rillig 			error(58, arg->s_name);
   2499  1.364    rillig 		else
   2500  1.364    rillig 			/* type of '%s' does not match prototype */
   2501  1.364    rillig 			warning(58, arg->s_name);
   2502  1.364    rillig 		return true;
   2503  1.364    rillig 	}
   2504  1.364    rillig 
   2505  1.364    rillig 	return false;
   2506  1.364    rillig }
   2507  1.364    rillig 
   2508  1.364    rillig /*
   2509  1.300    rillig  * Warn about arguments in old-style function definitions that default to int.
   2510  1.300    rillig  * Check that an old-style function definition is compatible to a previous
   2511   1.87    rillig  * prototype.
   2512   1.87    rillig  */
   2513   1.87    rillig void
   2514   1.87    rillig check_func_old_style_arguments(void)
   2515   1.87    rillig {
   2516  1.327    rillig 	int narg;
   2517  1.327    rillig 	int nparg;
   2518  1.122    rillig 	bool msg;
   2519   1.87    rillig 
   2520  1.327    rillig 	sym_t *args = funcsym->u.s_old_style_args;
   2521  1.327    rillig 	sym_t *pargs = funcsym->s_type->t_args;
   2522    1.1       cgd 
   2523    1.1       cgd 	/*
   2524  1.300    rillig 	 * print a warning for each argument of an old-style function
   2525    1.1       cgd 	 * definition which defaults to int
   2526    1.1       cgd 	 */
   2527  1.327    rillig 	for (sym_t *arg = args; arg != NULL; arg = arg->s_next) {
   2528    1.1       cgd 		if (arg->s_defarg) {
   2529  1.290    rillig 			/* type of argument '%s' defaults to 'int' */
   2530    1.1       cgd 			warning(32, arg->s_name);
   2531  1.122    rillig 			arg->s_defarg = false;
   2532   1.75    rillig 			mark_as_set(arg);
   2533    1.1       cgd 		}
   2534    1.1       cgd 	}
   2535    1.1       cgd 
   2536    1.1       cgd 	/*
   2537  1.300    rillig 	 * If this is an old-style function definition and a prototype
   2538    1.1       cgd 	 * exists, compare the types of arguments.
   2539    1.1       cgd 	 */
   2540    1.1       cgd 	if (funcsym->s_osdef && funcsym->s_type->t_proto) {
   2541    1.1       cgd 		/*
   2542   1.73    rillig 		 * If the number of arguments does not match, we need not
   2543    1.1       cgd 		 * continue.
   2544    1.1       cgd 		 */
   2545    1.1       cgd 		narg = nparg = 0;
   2546  1.122    rillig 		msg = false;
   2547  1.327    rillig 		for (sym_t *parg = pargs; parg != NULL; parg = parg->s_next)
   2548    1.1       cgd 			nparg++;
   2549  1.327    rillig 		for (sym_t *arg = args; arg != NULL; arg = arg->s_next)
   2550    1.1       cgd 			narg++;
   2551    1.1       cgd 		if (narg != nparg) {
   2552    1.1       cgd 			/* parameter mismatch: %d declared, %d defined */
   2553    1.1       cgd 			error(51, nparg, narg);
   2554  1.122    rillig 			msg = true;
   2555    1.1       cgd 		} else {
   2556  1.327    rillig 			sym_t *parg = pargs;
   2557  1.327    rillig 			sym_t *arg = args;
   2558  1.122    rillig 			while (narg-- > 0) {
   2559   1.75    rillig 				msg |= check_prototype_declaration(arg, parg);
   2560   1.80    rillig 				parg = parg->s_next;
   2561   1.80    rillig 				arg = arg->s_next;
   2562    1.1       cgd 			}
   2563    1.1       cgd 		}
   2564  1.299    rillig 		if (msg && rflag) {
   2565    1.1       cgd 			/* prototype declaration */
   2566  1.299    rillig 			message_at(285, &dcs->d_redeclared_symbol->s_def_pos);
   2567  1.298    rillig 		}
   2568    1.6       jpo 
   2569   1.73    rillig 		/* from now on the prototype is valid */
   2570  1.122    rillig 		funcsym->s_osdef = false;
   2571  1.271    rillig 		funcsym->u.s_old_style_args = NULL;
   2572    1.1       cgd 	}
   2573    1.1       cgd }
   2574    1.1       cgd 
   2575  1.229    rillig static void
   2576  1.229    rillig check_local_hiding(const sym_t *dsym)
   2577  1.229    rillig {
   2578  1.229    rillig 	switch (dsym->s_scl) {
   2579  1.229    rillig 	case AUTO:
   2580  1.290    rillig 		/* automatic '%s' hides external declaration */
   2581  1.229    rillig 		warning(86, dsym->s_name);
   2582  1.229    rillig 		break;
   2583  1.229    rillig 	case STATIC:
   2584  1.290    rillig 		/* static '%s' hides external declaration */
   2585  1.229    rillig 		warning(87, dsym->s_name);
   2586  1.229    rillig 		break;
   2587  1.229    rillig 	case TYPEDEF:
   2588  1.290    rillig 		/* typedef '%s' hides external declaration */
   2589  1.229    rillig 		warning(88, dsym->s_name);
   2590  1.229    rillig 		break;
   2591  1.229    rillig 	case EXTERN:
   2592  1.229    rillig 		/* Already checked in declare_external_in_block. */
   2593  1.229    rillig 		break;
   2594  1.229    rillig 	default:
   2595  1.229    rillig 		lint_assert(/*CONSTCOND*/false);
   2596  1.229    rillig 	}
   2597  1.229    rillig }
   2598  1.229    rillig 
   2599  1.229    rillig static void
   2600  1.314    rillig check_local_redeclaration(const sym_t *dsym, sym_t *rdsym)
   2601  1.229    rillig {
   2602  1.314    rillig 	if (rdsym->s_block_level == 0) {
   2603  1.229    rillig 		if (hflag)
   2604  1.229    rillig 			check_local_hiding(dsym);
   2605  1.229    rillig 
   2606  1.314    rillig 	} else if (rdsym->s_block_level == block_level) {
   2607  1.229    rillig 
   2608  1.364    rillig 		/* no hflag, because it's illegal! */
   2609  1.364    rillig 		if (rdsym->s_arg) {
   2610  1.364    rillig 			/*
   2611  1.364    rillig 			 * if allow_c90, a "redeclaration of '%s'" error
   2612  1.364    rillig 			 * is produced below
   2613  1.364    rillig 			 */
   2614  1.364    rillig 			if (!allow_c90) {
   2615  1.364    rillig 				if (hflag) {
   2616  1.364    rillig 					/* declaration of '%s' hides ... */
   2617  1.364    rillig 					warning(91, dsym->s_name);
   2618  1.364    rillig 				}
   2619  1.364    rillig 				rmsym(rdsym);
   2620  1.364    rillig 			}
   2621  1.364    rillig 		}
   2622  1.364    rillig 
   2623  1.364    rillig 	} else if (rdsym->s_block_level < block_level) {
   2624  1.364    rillig 		if (hflag) {
   2625  1.364    rillig 			/* declaration of '%s' hides earlier one */
   2626  1.364    rillig 			warning(95, dsym->s_name);
   2627  1.364    rillig 		}
   2628  1.364    rillig 	}
   2629  1.364    rillig 
   2630  1.364    rillig 	if (rdsym->s_block_level == block_level) {
   2631  1.364    rillig 		/* redeclaration of '%s' */
   2632  1.364    rillig 		error(27, dsym->s_name);
   2633  1.364    rillig 		rmsym(rdsym);
   2634  1.364    rillig 	}
   2635  1.364    rillig }
   2636  1.364    rillig 
   2637  1.364    rillig /* Processes (re)declarations of external symbols inside blocks. */
   2638  1.364    rillig static void
   2639  1.364    rillig declare_external_in_block(sym_t *dsym)
   2640  1.364    rillig {
   2641  1.364    rillig 
   2642  1.364    rillig 	/* look for a symbol with the same name */
   2643  1.364    rillig 	sym_t *esym = dcs->d_redeclared_symbol;
   2644  1.364    rillig 	while (esym != NULL && esym->s_block_level != 0) {
   2645  1.364    rillig 		while ((esym = esym->s_symtab_next) != NULL) {
   2646  1.364    rillig 			if (esym->s_kind != FVFT)
   2647  1.364    rillig 				continue;
   2648  1.364    rillig 			if (strcmp(dsym->s_name, esym->s_name) == 0)
   2649  1.364    rillig 				break;
   2650  1.364    rillig 		}
   2651  1.364    rillig 	}
   2652  1.364    rillig 	if (esym == NULL)
   2653  1.364    rillig 		return;
   2654  1.364    rillig 	if (esym->s_scl != EXTERN && esym->s_scl != STATIC) {
   2655  1.364    rillig 		/* gcc accepts this without a warning, pcc prints an error. */
   2656  1.364    rillig 		/* redeclaration of '%s' */
   2657  1.364    rillig 		warning(27, dsym->s_name);
   2658  1.364    rillig 		print_previous_declaration(esym);
   2659  1.364    rillig 		return;
   2660  1.364    rillig 	}
   2661  1.364    rillig 
   2662  1.364    rillig 	bool dowarn = false;
   2663  1.364    rillig 	bool compatible = types_compatible(esym->s_type, dsym->s_type,
   2664  1.364    rillig 	    false, false, &dowarn);
   2665  1.229    rillig 
   2666  1.364    rillig 	if (!compatible || dowarn) {
   2667  1.364    rillig 		if (esym->s_scl == EXTERN) {
   2668  1.364    rillig 			/* inconsistent redeclaration of extern '%s' */
   2669  1.364    rillig 			warning(90, dsym->s_name);
   2670  1.364    rillig 			print_previous_declaration(esym);
   2671  1.364    rillig 		} else {
   2672  1.364    rillig 			/* inconsistent redeclaration of static '%s' */
   2673  1.364    rillig 			warning(92, dsym->s_name);
   2674  1.364    rillig 			print_previous_declaration(esym);
   2675  1.298    rillig 		}
   2676  1.229    rillig 	}
   2677  1.229    rillig 
   2678  1.364    rillig 	if (compatible) {
   2679  1.364    rillig 		/*
   2680  1.364    rillig 		 * Remember the external symbol, so we can update usage
   2681  1.364    rillig 		 * information at the end of the block.
   2682  1.364    rillig 		 */
   2683  1.364    rillig 		dsym->s_ext_sym = esym;
   2684  1.229    rillig 	}
   2685  1.229    rillig }
   2686  1.229    rillig 
   2687    1.1       cgd /*
   2688    1.1       cgd  * Completes a single local declaration/definition.
   2689    1.1       cgd  */
   2690    1.1       cgd void
   2691  1.312    rillig declare_local(sym_t *dsym, bool has_initializer)
   2692    1.1       cgd {
   2693   1.22     lukem 
   2694   1.75    rillig 	/* Correct a mistake done in declarator_name(). */
   2695    1.1       cgd 	if (dsym->s_type->t_tspec == FUNC) {
   2696    1.1       cgd 		dsym->s_def = DECL;
   2697    1.3       jpo 		if (dcs->d_scl == NOSCL)
   2698    1.1       cgd 			dsym->s_scl = EXTERN;
   2699    1.1       cgd 	}
   2700    1.1       cgd 
   2701  1.307    rillig 	if (dsym->s_scl == EXTERN) {
   2702  1.307    rillig 		/* nested 'extern' declaration of '%s' */
   2703  1.307    rillig 		warning(352, dsym->s_name);
   2704  1.307    rillig 	}
   2705  1.307    rillig 
   2706    1.1       cgd 	if (dsym->s_type->t_tspec == FUNC) {
   2707    1.1       cgd 		if (dsym->s_scl == STATIC) {
   2708  1.291    rillig 			/* dubious static function '%s' at block level */
   2709    1.1       cgd 			warning(93, dsym->s_name);
   2710    1.1       cgd 			dsym->s_scl = EXTERN;
   2711    1.1       cgd 		} else if (dsym->s_scl != EXTERN && dsym->s_scl != TYPEDEF) {
   2712  1.291    rillig 			/* function '%s' has illegal storage class */
   2713    1.1       cgd 			error(94, dsym->s_name);
   2714    1.1       cgd 			dsym->s_scl = EXTERN;
   2715    1.1       cgd 		}
   2716    1.1       cgd 	}
   2717    1.1       cgd 
   2718    1.4       jpo 	/*
   2719    1.4       jpo 	 * functions may be declared inline at local scope, although
   2720    1.4       jpo 	 * this has no effect for a later definition of the same
   2721    1.4       jpo 	 * function.
   2722  1.279    rillig 	 * XXX it should have an effect if !allow_c90 is set. this would
   2723    1.4       jpo 	 * also be the way gcc behaves.
   2724    1.4       jpo 	 */
   2725    1.4       jpo 	if (dcs->d_inline) {
   2726  1.298    rillig 		if (dsym->s_type->t_tspec == FUNC)
   2727  1.122    rillig 			dsym->s_inline = true;
   2728  1.298    rillig 		else {
   2729  1.284    rillig 			/* variable '%s' declared inline */
   2730    1.5       jpo 			warning(268, dsym->s_name);
   2731    1.4       jpo 		}
   2732    1.4       jpo 	}
   2733    1.4       jpo 
   2734  1.124    rillig 	check_function_definition(dsym, true);
   2735    1.1       cgd 
   2736   1.75    rillig 	check_type(dsym);
   2737    1.1       cgd 
   2738  1.154    rillig 	if (dcs->d_redeclared_symbol != NULL && dsym->s_scl == EXTERN)
   2739  1.116    rillig 		declare_external_in_block(dsym);
   2740    1.1       cgd 
   2741    1.1       cgd 	if (dsym->s_scl == EXTERN) {
   2742    1.1       cgd 		/*
   2743   1.73    rillig 		 * XXX if the static variable at level 0 is only defined
   2744   1.73    rillig 		 * later, checking will be possible.
   2745    1.1       cgd 		 */
   2746  1.298    rillig 		if (dsym->s_ext_sym == NULL)
   2747    1.4       jpo 			outsym(dsym, EXTERN, dsym->s_def);
   2748  1.298    rillig 		else
   2749   1.83    rillig 			outsym(dsym, dsym->s_ext_sym->s_scl, dsym->s_def);
   2750    1.1       cgd 	}
   2751    1.1       cgd 
   2752  1.229    rillig 	if (dcs->d_redeclared_symbol != NULL)
   2753  1.229    rillig 		check_local_redeclaration(dsym, dcs->d_redeclared_symbol);
   2754    1.1       cgd 
   2755  1.312    rillig 	if (has_initializer && !check_init(dsym)) {
   2756    1.1       cgd 		dsym->s_def = DEF;
   2757   1.75    rillig 		mark_as_set(dsym);
   2758    1.1       cgd 	}
   2759    1.1       cgd 
   2760    1.1       cgd 	if (dsym->s_scl == TYPEDEF) {
   2761  1.247    rillig 		dsym->s_type = block_dup_type(dsym->s_type);
   2762  1.122    rillig 		dsym->s_type->t_typedef = true;
   2763  1.297    rillig 		set_first_typedef(dsym->s_type, dsym);
   2764    1.1       cgd 	}
   2765    1.1       cgd 
   2766  1.315    rillig 	if (dsym->s_scl == STATIC && any_query_enabled) {
   2767  1.315    rillig 		/* static variable '%s' in function */
   2768  1.315    rillig 		query_message(11, dsym->s_name);
   2769  1.315    rillig 	}
   2770  1.369    rillig 
   2771  1.369    rillig 	debug_printf("%s: ", __func__);
   2772  1.369    rillig 	debug_sym("", dsym, "\n");
   2773    1.1       cgd }
   2774    1.1       cgd 
   2775  1.327    rillig /* Create a symbol for an abstract declaration. */
   2776    1.1       cgd sym_t *
   2777   1.75    rillig abstract_name(void)
   2778    1.1       cgd {
   2779    1.1       cgd 
   2780  1.330    rillig 	lint_assert(dcs->d_kind == DLK_ABSTRACT
   2781  1.330    rillig 	    || dcs->d_kind == DLK_PROTO_PARAMS);
   2782    1.1       cgd 
   2783  1.358    rillig 	sym_t *sym = block_zero_alloc(sizeof(*sym), "sym");
   2784    1.1       cgd 	sym->s_name = unnamed;
   2785    1.1       cgd 	sym->s_def = DEF;
   2786    1.1       cgd 	sym->s_scl = ABSTRACT;
   2787  1.144    rillig 	sym->s_block_level = -1;
   2788  1.330    rillig 	sym->s_arg = dcs->d_kind == DLK_PROTO_PARAMS;
   2789    1.1       cgd 
   2790  1.240    rillig 	/*
   2791  1.240    rillig 	 * At this point, dcs->d_type contains only the basic type.  That
   2792  1.240    rillig 	 * type will be updated later, adding pointers, arrays and functions
   2793  1.240    rillig 	 * as necessary.
   2794  1.240    rillig 	 */
   2795  1.240    rillig 	/*
   2796  1.240    rillig 	 * XXX: This is not the correct type.  For example in msg_347, it is
   2797  1.240    rillig 	 * the type of the last prototype parameter, but it should rather be
   2798  1.240    rillig 	 * the return type of the function.
   2799  1.240    rillig 	 */
   2800    1.3       jpo 	sym->s_type = dcs->d_type;
   2801  1.154    rillig 	dcs->d_redeclared_symbol = NULL;
   2802    1.1       cgd 
   2803  1.369    rillig 	debug_printf("%s: ", __func__);
   2804  1.369    rillig 	debug_sym("", sym, "\n");
   2805   1.76    rillig 	return sym;
   2806    1.1       cgd }
   2807    1.1       cgd 
   2808  1.327    rillig /* Removes anything which has nothing to do on global level. */
   2809    1.1       cgd void
   2810   1.77    rillig global_clean_up(void)
   2811    1.1       cgd {
   2812   1.22     lukem 
   2813  1.259    rillig 	while (dcs->d_enclosing != NULL)
   2814  1.160    rillig 		end_declaration_level();
   2815    1.1       cgd 
   2816  1.253    rillig 	clean_up_after_error();
   2817  1.144    rillig 	block_level = 0;
   2818  1.144    rillig 	mem_block_level = 0;
   2819  1.357    rillig 	debug_step("%s: mem_block_level = %zu", __func__, mem_block_level);
   2820  1.124    rillig 	global_clean_up_decl(true);
   2821    1.1       cgd }
   2822    1.1       cgd 
   2823    1.1       cgd sym_t *
   2824  1.320    rillig declare_abstract_type(sym_t *sym)
   2825    1.1       cgd {
   2826   1.22     lukem 
   2827  1.124    rillig 	check_function_definition(sym, true);
   2828   1.75    rillig 	check_type(sym);
   2829   1.76    rillig 	return sym;
   2830    1.1       cgd }
   2831    1.1       cgd 
   2832  1.327    rillig /* Checks size after declarations of variables and their initialization. */
   2833    1.1       cgd void
   2834  1.365    rillig check_size(const sym_t *dsym)
   2835    1.1       cgd {
   2836   1.22     lukem 
   2837  1.298    rillig 	if (dsym->s_def == DEF &&
   2838  1.298    rillig 	    dsym->s_scl != TYPEDEF &&
   2839  1.298    rillig 	    dsym->s_type->t_tspec != FUNC &&
   2840  1.298    rillig 	    length_in_bits(dsym->s_type, dsym->s_name) == 0 &&
   2841  1.298    rillig 	    dsym->s_type->t_tspec == ARRAY &&
   2842  1.298    rillig 	    dsym->s_type->t_dim == 0) {
   2843  1.327    rillig 		if (!allow_c90)
   2844  1.293    rillig 			/* empty array declaration for '%s' */
   2845    1.1       cgd 			warning(190, dsym->s_name);
   2846  1.327    rillig 		else
   2847  1.293    rillig 			/* empty array declaration for '%s' */
   2848    1.1       cgd 			error(190, dsym->s_name);
   2849    1.1       cgd 	}
   2850    1.1       cgd }
   2851    1.1       cgd 
   2852  1.327    rillig /* Mark an object as set if it is not already. */
   2853    1.1       cgd void
   2854   1.75    rillig mark_as_set(sym_t *sym)
   2855    1.1       cgd {
   2856   1.22     lukem 
   2857    1.1       cgd 	if (!sym->s_set) {
   2858  1.122    rillig 		sym->s_set = true;
   2859  1.328    rillig 		sym->s_set_pos = unique_curr_pos();
   2860    1.1       cgd 	}
   2861    1.1       cgd }
   2862    1.1       cgd 
   2863  1.327    rillig /* Mark an object as used if it is not already. */
   2864    1.1       cgd void
   2865  1.122    rillig mark_as_used(sym_t *sym, bool fcall, bool szof)
   2866    1.1       cgd {
   2867   1.22     lukem 
   2868    1.1       cgd 	if (!sym->s_used) {
   2869  1.122    rillig 		sym->s_used = true;
   2870  1.328    rillig 		sym->s_use_pos = unique_curr_pos();
   2871    1.1       cgd 	}
   2872    1.1       cgd 	/*
   2873  1.302    rillig 	 * For function calls, another record is written.
   2874    1.1       cgd 	 *
   2875  1.302    rillig 	 * XXX: Should symbols used in sizeof() be treated as used or not?
   2876  1.302    rillig 	 * Probably not, because there is no point in declaring an external
   2877  1.302    rillig 	 * variable only to get its size.
   2878    1.1       cgd 	 */
   2879    1.1       cgd 	if (!fcall && !szof && sym->s_kind == FVFT && sym->s_scl == EXTERN)
   2880    1.1       cgd 		outusg(sym);
   2881    1.1       cgd }
   2882    1.1       cgd 
   2883  1.327    rillig /* Warns about variables and labels that are not used or only set. */
   2884    1.1       cgd void
   2885  1.365    rillig check_usage(const decl_level *dl)
   2886    1.1       cgd {
   2887   1.57  christos 	/* for this warning LINTED has no effect */
   2888  1.298    rillig 	int saved_lwarn = lwarn;
   2889   1.56  christos 	lwarn = LWARN_ALL;
   2890    1.1       cgd 
   2891  1.216    rillig 	debug_step("begin lwarn %d", lwarn);
   2892  1.330    rillig 	for (sym_t *sym = dl->d_first_dlsym;
   2893  1.323    rillig 	     sym != NULL; sym = sym->s_level_next)
   2894  1.330    rillig 		check_usage_sym(dl->d_asm, sym);
   2895  1.282    rillig 	lwarn = saved_lwarn;
   2896  1.216    rillig 	debug_step("end lwarn %d", lwarn);
   2897    1.1       cgd }
   2898    1.1       cgd 
   2899    1.1       cgd static void
   2900  1.365    rillig check_argument_usage(bool novar, const sym_t *arg)
   2901    1.1       cgd {
   2902   1.22     lukem 
   2903   1.92    rillig 	lint_assert(arg->s_set);
   2904    1.1       cgd 
   2905   1.10       jpo 	if (novar)
   2906   1.10       jpo 		return;
   2907   1.10       jpo 
   2908  1.341    rillig 	if (!arg->s_used && !vflag) {
   2909  1.347    rillig 		/* parameter '%s' unused in function '%s' */
   2910  1.178    rillig 		warning_at(231, &arg->s_def_pos, arg->s_name, funcsym->s_name);
   2911    1.1       cgd 	}
   2912    1.1       cgd }
   2913    1.1       cgd 
   2914    1.1       cgd static void
   2915  1.365    rillig check_variable_usage(bool novar, const sym_t *sym)
   2916    1.1       cgd {
   2917    1.1       cgd 
   2918  1.144    rillig 	lint_assert(block_level != 0);
   2919  1.186    rillig 
   2920  1.186    rillig 	/* example at file scope: int c = ({ return 3; }); */
   2921  1.186    rillig 	if (sym->s_block_level == 0 && ch_isdigit(sym->s_name[0]))
   2922  1.186    rillig 		return;
   2923    1.1       cgd 
   2924    1.1       cgd 	/* errors in expressions easily cause lots of these warnings */
   2925  1.342    rillig 	if (seen_error)
   2926    1.1       cgd 		return;
   2927    1.1       cgd 
   2928    1.1       cgd 	/*
   2929   1.73    rillig 	 * XXX Only variables are checked, although types should
   2930    1.1       cgd 	 * probably also be checked
   2931    1.1       cgd 	 */
   2932  1.327    rillig 	scl_t sc = sym->s_scl;
   2933  1.298    rillig 	if (sc != EXTERN && sc != STATIC && sc != AUTO && sc != REG)
   2934    1.1       cgd 		return;
   2935   1.10       jpo 
   2936   1.10       jpo 	if (novar)
   2937   1.10       jpo 		return;
   2938    1.1       cgd 
   2939    1.1       cgd 	if (sc == EXTERN) {
   2940    1.1       cgd 		if (!sym->s_used && !sym->s_set) {
   2941  1.171    rillig 			/* '%s' unused in function '%s' */
   2942  1.178    rillig 			warning_at(192, &sym->s_def_pos,
   2943  1.177    rillig 			    sym->s_name, funcsym->s_name);
   2944    1.1       cgd 		}
   2945    1.1       cgd 	} else {
   2946    1.1       cgd 		if (sym->s_set && !sym->s_used) {
   2947  1.171    rillig 			/* '%s' set but not used in function '%s' */
   2948  1.178    rillig 			warning_at(191, &sym->s_set_pos,
   2949  1.177    rillig 			    sym->s_name, funcsym->s_name);
   2950    1.1       cgd 		} else if (!sym->s_used) {
   2951  1.171    rillig 			/* '%s' unused in function '%s' */
   2952  1.178    rillig 			warning_at(192, &sym->s_def_pos,
   2953  1.177    rillig 			    sym->s_name, funcsym->s_name);
   2954    1.1       cgd 		}
   2955    1.1       cgd 	}
   2956    1.1       cgd 
   2957    1.1       cgd 	if (sc == EXTERN) {
   2958    1.1       cgd 		/*
   2959    1.1       cgd 		 * information about usage is taken over into the symbol
   2960   1.73    rillig 		 * table entry at level 0 if the symbol was locally declared
   2961    1.1       cgd 		 * as an external symbol.
   2962    1.1       cgd 		 *
   2963    1.1       cgd 		 * XXX This is wrong for symbols declared static at level 0
   2964    1.1       cgd 		 * if the usage information stems from sizeof(). This is
   2965    1.1       cgd 		 * because symbols at level 0 only used in sizeof() are
   2966    1.1       cgd 		 * considered to not be used.
   2967    1.1       cgd 		 */
   2968  1.327    rillig 		sym_t *xsym = sym->s_ext_sym;
   2969  1.327    rillig 		if (xsym != NULL) {
   2970    1.1       cgd 			if (sym->s_used && !xsym->s_used) {
   2971  1.122    rillig 				xsym->s_used = true;
   2972   1.85    rillig 				xsym->s_use_pos = sym->s_use_pos;
   2973    1.1       cgd 			}
   2974    1.1       cgd 			if (sym->s_set && !xsym->s_set) {
   2975  1.122    rillig 				xsym->s_set = true;
   2976   1.85    rillig 				xsym->s_set_pos = sym->s_set_pos;
   2977    1.1       cgd 			}
   2978    1.1       cgd 		}
   2979    1.1       cgd 	}
   2980    1.1       cgd }
   2981    1.1       cgd 
   2982    1.1       cgd static void
   2983  1.365    rillig check_label_usage(const sym_t *lab)
   2984    1.1       cgd {
   2985   1.22     lukem 
   2986  1.144    rillig 	lint_assert(block_level == 1);
   2987  1.144    rillig 	lint_assert(lab->s_block_level == 1);
   2988    1.1       cgd 
   2989  1.327    rillig 	if (funcsym == NULL)
   2990  1.283    rillig 		/* syntax error '%s' */
   2991  1.283    rillig 		error(249, "labels are only valid inside a function");
   2992  1.327    rillig 	else if (lab->s_set && !lab->s_used)
   2993  1.198    rillig 		/* label '%s' unused in function '%s' */
   2994  1.178    rillig 		warning_at(232, &lab->s_set_pos, lab->s_name, funcsym->s_name);
   2995  1.327    rillig 	else if (!lab->s_set)
   2996  1.198    rillig 		/* undefined label '%s' */
   2997  1.178    rillig 		warning_at(23, &lab->s_use_pos, lab->s_name);
   2998    1.1       cgd }
   2999    1.1       cgd 
   3000    1.1       cgd static void
   3001  1.365    rillig check_tag_usage(const sym_t *sym)
   3002    1.1       cgd {
   3003   1.22     lukem 
   3004  1.132    rillig 	if (!is_incomplete(sym->s_type))
   3005    1.1       cgd 		return;
   3006    1.1       cgd 
   3007   1.73    rillig 	/* always complain about incomplete tags declared inside blocks */
   3008  1.341    rillig 	if (zflag || dcs->d_kind != DLK_EXTERN)
   3009    1.1       cgd 		return;
   3010    1.1       cgd 
   3011    1.1       cgd 	switch (sym->s_type->t_tspec) {
   3012    1.1       cgd 	case STRUCT:
   3013  1.284    rillig 		/* struct '%s' never defined */
   3014  1.178    rillig 		warning_at(233, &sym->s_def_pos, sym->s_name);
   3015    1.1       cgd 		break;
   3016    1.1       cgd 	case UNION:
   3017  1.284    rillig 		/* union '%s' never defined */
   3018  1.178    rillig 		warning_at(234, &sym->s_def_pos, sym->s_name);
   3019    1.1       cgd 		break;
   3020  1.327    rillig 	default:
   3021  1.327    rillig 		lint_assert(sym->s_type->t_tspec == ENUM);
   3022  1.284    rillig 		/* enum '%s' never defined */
   3023  1.178    rillig 		warning_at(235, &sym->s_def_pos, sym->s_name);
   3024    1.1       cgd 		break;
   3025    1.1       cgd 	}
   3026    1.1       cgd }
   3027    1.1       cgd 
   3028  1.364    rillig /* Warns about a variable or a label that is not used or only set. */
   3029    1.1       cgd void
   3030  1.365    rillig check_usage_sym(bool novar, const sym_t *sym)
   3031  1.364    rillig {
   3032  1.364    rillig 
   3033  1.364    rillig 	if (sym->s_block_level == -1)
   3034  1.364    rillig 		return;
   3035  1.364    rillig 
   3036  1.364    rillig 	if (sym->s_kind == FVFT && sym->s_arg)
   3037  1.364    rillig 		check_argument_usage(novar, sym);
   3038  1.364    rillig 	else if (sym->s_kind == FVFT)
   3039  1.364    rillig 		check_variable_usage(novar, sym);
   3040  1.364    rillig 	else if (sym->s_kind == FLABEL)
   3041  1.364    rillig 		check_label_usage(sym);
   3042  1.364    rillig 	else if (sym->s_kind == FTAG)
   3043  1.364    rillig 		check_tag_usage(sym);
   3044  1.364    rillig }
   3045  1.364    rillig 
   3046  1.364    rillig static void
   3047  1.364    rillig check_global_variable_size(const sym_t *sym)
   3048    1.1       cgd {
   3049    1.1       cgd 
   3050  1.364    rillig 	if (sym->s_def != TDEF)
   3051  1.364    rillig 		return;
   3052  1.364    rillig 	if (sym->s_type->t_tspec == FUNC) {
   3053  1.364    rillig 		/* Maybe a syntax error after a function declaration. */
   3054  1.364    rillig 		return;
   3055  1.364    rillig 	}
   3056  1.364    rillig 	if (sym->s_def == TDEF && sym->s_type->t_tspec == VOID) {
   3057  1.364    rillig 		/* Prevent an internal error in length_in_bits below. */
   3058  1.364    rillig 		return;
   3059  1.364    rillig 	}
   3060  1.364    rillig 
   3061  1.364    rillig 	pos_t cpos = curr_pos;
   3062  1.364    rillig 	curr_pos = sym->s_def_pos;
   3063  1.364    rillig 	int len_in_bits = length_in_bits(sym->s_type, sym->s_name);
   3064  1.364    rillig 	curr_pos = cpos;
   3065    1.1       cgd 
   3066  1.364    rillig 	if (len_in_bits == 0 &&
   3067  1.364    rillig 	    sym->s_type->t_tspec == ARRAY && sym->s_type->t_dim == 0) {
   3068  1.364    rillig 		/* TODO: C99 6.7.5.2p1 defines this as an error as well. */
   3069  1.364    rillig 		if (!allow_c90 ||
   3070  1.364    rillig 		    (sym->s_scl == EXTERN && (allow_trad || allow_c99))) {
   3071  1.364    rillig 			/* empty array declaration for '%s' */
   3072  1.364    rillig 			warning_at(190, &sym->s_def_pos, sym->s_name);
   3073  1.364    rillig 		} else {
   3074  1.364    rillig 			/* empty array declaration for '%s' */
   3075  1.364    rillig 			error_at(190, &sym->s_def_pos, sym->s_name);
   3076  1.364    rillig 		}
   3077    1.1       cgd 	}
   3078    1.1       cgd }
   3079    1.1       cgd 
   3080    1.1       cgd static void
   3081  1.120    rillig check_unused_static_global_variable(const sym_t *sym)
   3082  1.120    rillig {
   3083  1.120    rillig 	if (sym->s_type->t_tspec == FUNC) {
   3084  1.120    rillig 		if (sym->s_def == DEF) {
   3085  1.120    rillig 			if (!sym->s_inline)
   3086  1.284    rillig 				/* static function '%s' unused */
   3087  1.178    rillig 				warning_at(236, &sym->s_def_pos, sym->s_name);
   3088  1.120    rillig 		} else {
   3089  1.293    rillig 			/* static function '%s' declared but not defined */
   3090  1.178    rillig 			warning_at(290, &sym->s_def_pos, sym->s_name);
   3091  1.120    rillig 		}
   3092  1.120    rillig 	} else if (!sym->s_set) {
   3093  1.284    rillig 		/* static variable '%s' unused */
   3094  1.178    rillig 		warning_at(226, &sym->s_def_pos, sym->s_name);
   3095  1.120    rillig 	} else {
   3096  1.284    rillig 		/* static variable '%s' set but not used */
   3097  1.178    rillig 		warning_at(307, &sym->s_def_pos, sym->s_name);
   3098  1.120    rillig 	}
   3099  1.120    rillig }
   3100  1.120    rillig 
   3101  1.120    rillig static void
   3102  1.120    rillig check_static_global_variable(const sym_t *sym)
   3103  1.120    rillig {
   3104  1.120    rillig 	if (sym->s_type->t_tspec == FUNC && sym->s_used && sym->s_def != DEF) {
   3105  1.293    rillig 		/* static function '%s' called but not defined */
   3106  1.178    rillig 		error_at(225, &sym->s_use_pos, sym->s_name);
   3107  1.120    rillig 	}
   3108  1.120    rillig 
   3109  1.120    rillig 	if (!sym->s_used)
   3110  1.120    rillig 		check_unused_static_global_variable(sym);
   3111  1.120    rillig 
   3112  1.279    rillig 	if (allow_c90 && sym->s_def == TDEF && sym->s_type->t_const) {
   3113  1.293    rillig 		/* const object '%s' should have initializer */
   3114  1.178    rillig 		warning_at(227, &sym->s_def_pos, sym->s_name);
   3115  1.120    rillig 	}
   3116  1.120    rillig }
   3117  1.120    rillig 
   3118  1.120    rillig static void
   3119  1.120    rillig check_global_variable(const sym_t *sym)
   3120    1.1       cgd {
   3121  1.272    rillig 	scl_t scl = sym->s_scl;
   3122   1.22     lukem 
   3123  1.272    rillig 	if (scl == TYPEDEF || scl == BOOL_CONST || scl == ENUM_CONST)
   3124    1.1       cgd 		return;
   3125   1.22     lukem 
   3126  1.272    rillig 	if (scl == NOSCL)
   3127  1.119    rillig 		return;		/* May be caused by a syntax error. */
   3128  1.119    rillig 
   3129  1.272    rillig 	lint_assert(scl == EXTERN || scl == STATIC);
   3130    1.1       cgd 
   3131   1.75    rillig 	check_global_variable_size(sym);
   3132    1.1       cgd 
   3133  1.272    rillig 	if (scl == STATIC)
   3134  1.120    rillig 		check_static_global_variable(sym);
   3135    1.1       cgd }
   3136    1.1       cgd 
   3137  1.364    rillig void
   3138  1.366    rillig end_translation_unit(void)
   3139    1.1       cgd {
   3140   1.22     lukem 
   3141  1.364    rillig 	if (block_level != 0 || dcs->d_enclosing != NULL)
   3142  1.364    rillig 		norecover();
   3143  1.129    rillig 
   3144  1.366    rillig 	for (const sym_t *sym = dcs->d_first_dlsym;
   3145  1.366    rillig 	     sym != NULL; sym = sym->s_level_next) {
   3146  1.364    rillig 		if (sym->s_block_level == -1)
   3147  1.364    rillig 			continue;
   3148  1.364    rillig 		if (sym->s_kind == FVFT)
   3149  1.364    rillig 			check_global_variable(sym);
   3150  1.364    rillig 		else if (sym->s_kind == FTAG)
   3151  1.364    rillig 			check_tag_usage(sym);
   3152  1.364    rillig 		else
   3153  1.364    rillig 			lint_assert(sym->s_kind == FMEMBER);
   3154    1.1       cgd 	}
   3155    1.1       cgd }
   3156    1.1       cgd 
   3157    1.1       cgd /*
   3158    1.1       cgd  * Prints information about location of previous definition/declaration.
   3159    1.1       cgd  */
   3160    1.1       cgd void
   3161  1.299    rillig print_previous_declaration(const sym_t *psym)
   3162    1.1       cgd {
   3163    1.1       cgd 
   3164    1.1       cgd 	if (!rflag)
   3165    1.1       cgd 		return;
   3166    1.1       cgd 
   3167  1.299    rillig 	if (psym->s_def == DEF || psym->s_def == TDEF) {
   3168  1.284    rillig 		/* previous definition of '%s' */
   3169  1.178    rillig 		message_at(261, &psym->s_def_pos, psym->s_name);
   3170    1.1       cgd 	} else {
   3171  1.284    rillig 		/* previous declaration of '%s' */
   3172  1.178    rillig 		message_at(260, &psym->s_def_pos, psym->s_name);
   3173    1.1       cgd 	}
   3174    1.1       cgd }
   3175  1.146    rillig 
   3176  1.146    rillig /*
   3177  1.146    rillig  * Gets a node for a constant and returns the value of this constant
   3178  1.146    rillig  * as integer.
   3179  1.146    rillig  *
   3180  1.146    rillig  * If the node is not constant or too large for int or of type float,
   3181  1.146    rillig  * a warning will be printed.
   3182  1.146    rillig  *
   3183  1.146    rillig  * to_int_constant() should be used only inside declarations. If it is used in
   3184  1.146    rillig  * expressions, it frees the memory used for the expression.
   3185  1.146    rillig  */
   3186  1.146    rillig int
   3187  1.146    rillig to_int_constant(tnode_t *tn, bool required)
   3188  1.146    rillig {
   3189  1.146    rillig 
   3190  1.295    rillig 	if (tn == NULL)
   3191  1.295    rillig 		return 1;
   3192  1.295    rillig 
   3193  1.331    rillig 	val_t *v = integer_constant(tn, required);
   3194  1.331    rillig 	bool is_unsigned = is_uinteger(v->v_tspec);
   3195  1.337    rillig 	int64_t val = v->u.integer;
   3196  1.331    rillig 	free(v);
   3197  1.146    rillig 
   3198  1.146    rillig 	/*
   3199  1.146    rillig 	 * Abstract declarations are used inside expression. To free
   3200  1.146    rillig 	 * the memory would be a fatal error.
   3201  1.146    rillig 	 * We don't free blocks that are inside casts because these
   3202  1.146    rillig 	 * will be used later to match types.
   3203  1.146    rillig 	 */
   3204  1.330    rillig 	if (tn->tn_op != CON && dcs->d_kind != DLK_ABSTRACT)
   3205  1.168    rillig 		expr_free_all();
   3206  1.146    rillig 
   3207  1.331    rillig 	bool out_of_bounds = is_unsigned
   3208  1.331    rillig 	    ? (uint64_t)val > (uint64_t)TARG_INT_MAX
   3209  1.331    rillig 	    : val > (int64_t)TARG_INT_MAX || val < (int64_t)TARG_INT_MIN;
   3210  1.331    rillig 	if (out_of_bounds)
   3211  1.331    rillig 		/* integral constant too large */
   3212  1.331    rillig 		warning(56);
   3213  1.331    rillig 	return (int)val;
   3214  1.146    rillig }
   3215