Home | History | Annotate | Line # | Download | only in lint1
func.c revision 1.112
      1 /*	$NetBSD: func.c,v 1.112 2021/06/30 11:29:29 rillig Exp $	*/
      2 
      3 /*
      4  * Copyright (c) 1994, 1995 Jochen Pohl
      5  * All Rights Reserved.
      6  *
      7  * Redistribution and use in source and binary forms, with or without
      8  * modification, are permitted provided that the following conditions
      9  * are met:
     10  * 1. Redistributions of source code must retain the above copyright
     11  *    notice, this list of conditions and the following disclaimer.
     12  * 2. Redistributions in binary form must reproduce the above copyright
     13  *    notice, this list of conditions and the following disclaimer in the
     14  *    documentation and/or other materials provided with the distribution.
     15  * 3. All advertising materials mentioning features or use of this software
     16  *    must display the following acknowledgement:
     17  *      This product includes software developed by Jochen Pohl for
     18  *	The NetBSD Project.
     19  * 4. The name of the author may not be used to endorse or promote products
     20  *    derived from this software without specific prior written permission.
     21  *
     22  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     23  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     24  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     25  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     26  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     27  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     28  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     29  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     30  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     31  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     32  */
     33 
     34 #if HAVE_NBTOOL_CONFIG_H
     35 #include "nbtool_config.h"
     36 #endif
     37 
     38 #include <sys/cdefs.h>
     39 #if defined(__RCSID) && !defined(lint)
     40 __RCSID("$NetBSD: func.c,v 1.112 2021/06/30 11:29:29 rillig Exp $");
     41 #endif
     42 
     43 #include <stdlib.h>
     44 #include <string.h>
     45 
     46 #include "lint1.h"
     47 #include "cgram.h"
     48 
     49 /*
     50  * Contains a pointer to the symbol table entry of the current function
     51  * definition.
     52  */
     53 sym_t	*funcsym;
     54 
     55 /* Is set as long as a statement can be reached. Must be set at level 0. */
     56 bool	reached = true;
     57 
     58 /*
     59  * Is true by default, can be cleared by NOTREACHED.
     60  * Is reset to true whenever 'reached' changes.
     61  */
     62 bool	warn_about_unreachable;
     63 
     64 /*
     65  * In conjunction with 'reached', controls printing of "fallthrough on ..."
     66  * warnings.
     67  * Reset by each statement and set by FALLTHROUGH, switch (switch1())
     68  * and case (label()).
     69  *
     70  * Control statements if, for, while and switch do not reset seen_fallthrough
     71  * because this must be done by the controlled statement. At least for if this
     72  * is important because ** FALLTHROUGH ** after "if (expr) statement" is
     73  * evaluated before the following token, which causes reduction of above.
     74  * This means that ** FALLTHROUGH ** after "if ..." would always be ignored.
     75  */
     76 bool	seen_fallthrough;
     77 
     78 /* The innermost control statement */
     79 cstk_t	*cstmt;
     80 
     81 /*
     82  * Number of arguments which will be checked for usage in following
     83  * function definition. -1 stands for all arguments.
     84  *
     85  * The position of the last ARGSUSED comment is stored in argsused_pos.
     86  */
     87 int	nargusg = -1;
     88 pos_t	argsused_pos;
     89 
     90 /*
     91  * Number of arguments of the following function definition whose types
     92  * shall be checked by lint2. -1 stands for all arguments.
     93  *
     94  * The position of the last VARARGS comment is stored in vapos.
     95  */
     96 int	nvararg = -1;
     97 pos_t	vapos;
     98 
     99 /*
    100  * Both printflike_argnum and scanflike_argnum contain the 1-based number
    101  * of the string argument which shall be used to check the types of remaining
    102  * arguments (for PRINTFLIKE and SCANFLIKE).
    103  *
    104  * printflike_pos and scanflike_pos are the positions of the last PRINTFLIKE
    105  * or SCANFLIKE comment.
    106  */
    107 int	printflike_argnum = -1;
    108 int	scanflike_argnum = -1;
    109 pos_t	printflike_pos;
    110 pos_t	scanflike_pos;
    111 
    112 /*
    113  * If both plibflg and llibflg are set, prototypes are written as function
    114  * definitions to the output file.
    115  */
    116 bool	plibflg;
    117 
    118 /*
    119  * True means that no warnings about constants in conditional
    120  * context are printed.
    121  */
    122 bool	constcond_flag;
    123 
    124 /*
    125  * llibflg is set if a lint library shall be created. The effect of
    126  * llibflg is that all defined symbols are treated as used.
    127  * (The LINTLIBRARY comment also resets vflag.)
    128  */
    129 bool	llibflg;
    130 
    131 /*
    132  * Nonzero if warnings are suppressed by a LINTED directive
    133  * LWARN_BAD:	error
    134  * LWARN_ALL:	warnings on
    135  * LWARN_NONE:	all warnings ignored
    136  * 0..n: warning n ignored
    137  */
    138 int	lwarn = LWARN_ALL;
    139 
    140 /*
    141  * Whether bitfield type errors are suppressed by a BITFIELDTYPE
    142  * directive.
    143  */
    144 bool	bitfieldtype_ok;
    145 
    146 /*
    147  * Whether complaints about use of "long long" are suppressed in
    148  * the next statement or declaration.
    149  */
    150 bool	quadflg;
    151 
    152 /*
    153  * Puts a new element at the top of the stack used for control statements.
    154  */
    155 void
    156 begin_control_statement(control_statement_kind kind)
    157 {
    158 	cstk_t	*ci;
    159 
    160 	ci = xcalloc(1, sizeof(*ci));
    161 	ci->c_kind = kind;
    162 	ci->c_surrounding = cstmt;
    163 	cstmt = ci;
    164 }
    165 
    166 /*
    167  * Removes the top element of the stack used for control statements.
    168  */
    169 void
    170 end_control_statement(control_statement_kind kind)
    171 {
    172 	cstk_t	*ci;
    173 	case_label_t *cl, *next;
    174 
    175 	lint_assert(cstmt != NULL);
    176 
    177 	while (cstmt->c_kind != kind)
    178 		cstmt = cstmt->c_surrounding;
    179 
    180 	ci = cstmt;
    181 	cstmt = ci->c_surrounding;
    182 
    183 	for (cl = ci->c_case_labels; cl != NULL; cl = next) {
    184 		next = cl->cl_next;
    185 		free(cl);
    186 	}
    187 
    188 	free(ci->c_switch_type);
    189 	free(ci);
    190 }
    191 
    192 static void
    193 set_reached(bool new_reached)
    194 {
    195 #ifdef DEBUG
    196 	printf("%s:%d: %s -> %s\n", curr_pos.p_file, curr_pos.p_line,
    197 	    reached ? "reachable" : "unreachable",
    198 	    new_reached ? "reachable" : "unreachable");
    199 #endif
    200 	reached = new_reached;
    201 	warn_about_unreachable = true;
    202 }
    203 
    204 /*
    205  * Prints a warning if a statement cannot be reached.
    206  */
    207 void
    208 check_statement_reachable(void)
    209 {
    210 	if (!reached && warn_about_unreachable) {
    211 		/* statement not reached */
    212 		warning(193);
    213 		warn_about_unreachable = false;
    214 	}
    215 }
    216 
    217 /*
    218  * Called after a function declaration which introduces a function definition
    219  * and before an (optional) old style argument declaration list.
    220  *
    221  * Puts all symbols declared in the prototype or in an old style argument
    222  * list back to the symbol table.
    223  *
    224  * Does the usual checking of storage class, type (return value),
    225  * redeclaration, etc.
    226  */
    227 void
    228 funcdef(sym_t *fsym)
    229 {
    230 	int	n;
    231 	bool	dowarn;
    232 	sym_t	*arg, *sym, *rdsym;
    233 
    234 	funcsym = fsym;
    235 
    236 	/*
    237 	 * Put all symbols declared in the argument list back to the
    238 	 * symbol table.
    239 	 */
    240 	for (sym = dcs->d_func_proto_syms; sym != NULL; sym = sym->s_dlnxt) {
    241 		if (sym->s_block_level != -1) {
    242 			lint_assert(sym->s_block_level == 1);
    243 			inssym(1, sym);
    244 		}
    245 	}
    246 
    247 	/*
    248 	 * In old_style_function() we did not know whether it is an old
    249 	 * style function definition or only an old style declaration,
    250 	 * if there are no arguments inside the argument list ("f()").
    251 	 */
    252 	if (!fsym->s_type->t_proto && fsym->s_args == NULL)
    253 		fsym->s_osdef = true;
    254 
    255 	check_type(fsym);
    256 
    257 	/*
    258 	 * check_type() checks for almost all possible errors, but not for
    259 	 * incomplete return values (these are allowed in declarations)
    260 	 */
    261 	if (fsym->s_type->t_subt->t_tspec != VOID &&
    262 	    is_incomplete(fsym->s_type->t_subt)) {
    263 		/* cannot return incomplete type */
    264 		error(67);
    265 	}
    266 
    267 	fsym->s_def = DEF;
    268 
    269 	if (fsym->s_scl == TYPEDEF) {
    270 		fsym->s_scl = EXTERN;
    271 		/* illegal storage class */
    272 		error(8);
    273 	}
    274 
    275 	if (dcs->d_inline)
    276 		fsym->s_inline = true;
    277 
    278 	/*
    279 	 * Arguments in new style function declarations need a name.
    280 	 * (void is already removed from the list of arguments)
    281 	 */
    282 	n = 1;
    283 	for (arg = fsym->s_type->t_args; arg != NULL; arg = arg->s_next) {
    284 		if (arg->s_scl == ABSTRACT) {
    285 			lint_assert(arg->s_name == unnamed);
    286 			/* formal parameter lacks name: param #%d */
    287 			error(59, n);
    288 		} else {
    289 			lint_assert(arg->s_name != unnamed);
    290 		}
    291 		n++;
    292 	}
    293 
    294 	/*
    295 	 * We must also remember the position. s_def_pos is overwritten
    296 	 * if this is an old style definition and we had already a
    297 	 * prototype.
    298 	 */
    299 	dcs->d_func_def_pos = fsym->s_def_pos;
    300 
    301 	if ((rdsym = dcs->d_redeclared_symbol) != NULL) {
    302 
    303 		if (!check_redeclaration(fsym, (dowarn = false, &dowarn))) {
    304 
    305 			/*
    306 			 * Print nothing if the newly defined function
    307 			 * is defined in old style. A better warning will
    308 			 * be printed in check_func_lint_directives().
    309 			 */
    310 			if (dowarn && !fsym->s_osdef) {
    311 				if (sflag)
    312 					/* redeclaration of %s */
    313 					error(27, fsym->s_name);
    314 				else
    315 					/* redeclaration of %s */
    316 					warning(27, fsym->s_name);
    317 				print_previous_declaration(-1, rdsym);
    318 			}
    319 
    320 			copy_usage_info(fsym, rdsym);
    321 
    322 			/*
    323 			 * If the old symbol was a prototype and the new
    324 			 * one is none, overtake the position of the
    325 			 * declaration of the prototype.
    326 			 */
    327 			if (fsym->s_osdef && rdsym->s_type->t_proto)
    328 				fsym->s_def_pos = rdsym->s_def_pos;
    329 
    330 			complete_type(fsym, rdsym);
    331 
    332 			if (rdsym->s_inline)
    333 				fsym->s_inline = true;
    334 
    335 		}
    336 
    337 		/* remove the old symbol from the symbol table */
    338 		rmsym(rdsym);
    339 
    340 	}
    341 
    342 	if (fsym->s_osdef && !fsym->s_type->t_proto) {
    343 		if (sflag && hflag && strcmp(fsym->s_name, "main") != 0)
    344 			/* function definition is not a prototype */
    345 			warning(286);
    346 	}
    347 
    348 	if (dcs->d_notyp)
    349 		fsym->s_return_type_implicit_int = true;
    350 
    351 	set_reached(true);
    352 }
    353 
    354 static void
    355 check_missing_return_value(void)
    356 {
    357 	if (funcsym->s_type->t_subt->t_tspec == VOID)
    358 		return;
    359 	if (funcsym->s_return_type_implicit_int)
    360 		return;
    361 
    362 	/* C99 5.1.2.2.3 "Program termination" p1 */
    363 	if (Sflag && strcmp(funcsym->s_name, "main") == 0)
    364 		return;
    365 
    366 	/* function %s falls off bottom without returning value */
    367 	warning(217, funcsym->s_name);
    368 }
    369 
    370 /*
    371  * Called at the end of a function definition.
    372  */
    373 void
    374 funcend(void)
    375 {
    376 	sym_t	*arg;
    377 	int	n;
    378 
    379 	if (reached) {
    380 		cstmt->c_had_return_noval = true;
    381 		check_missing_return_value();
    382 	}
    383 
    384 	/*
    385 	 * This warning is printed only if the return value was implicitly
    386 	 * declared to be int. Otherwise the wrong return statement
    387 	 * has already printed a warning.
    388 	 */
    389 	if (cstmt->c_had_return_noval && cstmt->c_had_return_value &&
    390 	    funcsym->s_return_type_implicit_int)
    391 		/* function %s has return (e); and return; */
    392 		warning(216, funcsym->s_name);
    393 
    394 	/* Print warnings for unused arguments */
    395 	arg = dcs->d_func_args;
    396 	n = 0;
    397 	while (arg != NULL && (nargusg == -1 || n < nargusg)) {
    398 		check_usage_sym(dcs->d_asm, arg);
    399 		arg = arg->s_next;
    400 		n++;
    401 	}
    402 	nargusg = -1;
    403 
    404 	/*
    405 	 * write the information about the function definition to the
    406 	 * output file
    407 	 * inline functions explicitly declared extern are written as
    408 	 * declarations only.
    409 	 */
    410 	if (dcs->d_scl == EXTERN && funcsym->s_inline) {
    411 		outsym(funcsym, funcsym->s_scl, DECL);
    412 	} else {
    413 		outfdef(funcsym, &dcs->d_func_def_pos,
    414 		    cstmt->c_had_return_value, funcsym->s_osdef,
    415 		    dcs->d_func_args);
    416 	}
    417 
    418 	/* clean up after syntax errors, see test stmt_for.c. */
    419 	while (dcs->d_next != NULL)
    420 		dcs = dcs->d_next;
    421 
    422 	/*
    423 	 * remove all symbols declared during argument declaration from
    424 	 * the symbol table
    425 	 */
    426 	lint_assert(dcs->d_next == NULL);
    427 	lint_assert(dcs->d_ctx == EXTERN);
    428 	rmsyms(dcs->d_func_proto_syms);
    429 
    430 	/* must be set on level 0 */
    431 	set_reached(true);
    432 }
    433 
    434 void
    435 named_label(sym_t *sym)
    436 {
    437 
    438 	if (sym->s_set) {
    439 		/* label %s redefined */
    440 		error(194, sym->s_name);
    441 	} else {
    442 		mark_as_set(sym);
    443 	}
    444 
    445 	set_reached(true);
    446 }
    447 
    448 static void
    449 check_case_label_bitand(const tnode_t *case_expr, const tnode_t *switch_expr)
    450 {
    451 	uint64_t case_value, mask;
    452 
    453 	if (switch_expr->tn_op != BITAND ||
    454 	    switch_expr->tn_right->tn_op != CON)
    455 		return;
    456 
    457 	lint_assert(case_expr->tn_op == CON);
    458 	case_value = case_expr->tn_val->v_quad;
    459 	mask = switch_expr->tn_right->tn_val->v_quad;
    460 
    461 	if ((case_value & ~mask) != 0) {
    462 		/* statement not reached */
    463 		warning(193);
    464 	}
    465 }
    466 
    467 static void
    468 check_case_label_enum(const tnode_t *tn, const cstk_t *ci)
    469 {
    470 	/* similar to typeok_enum in tree.c */
    471 
    472 	if (!(tn->tn_type->t_is_enum || ci->c_switch_type->t_is_enum))
    473 		return;
    474 	if (tn->tn_type->t_is_enum && ci->c_switch_type->t_is_enum &&
    475 	    tn->tn_type->t_enum == ci->c_switch_type->t_enum)
    476 		return;
    477 
    478 #if 0 /* not yet ready, see msg_130.c */
    479 	/* enum type mismatch: '%s' '%s' '%s' */
    480 	warning(130, type_name(ci->c_switch_type), op_name(EQ),
    481 	    type_name(tn->tn_type));
    482 #endif
    483 }
    484 
    485 static void
    486 check_case_label(tnode_t *tn, cstk_t *ci)
    487 {
    488 	case_label_t *cl;
    489 	val_t	*v;
    490 	val_t	nv;
    491 	tspec_t	t;
    492 
    493 	if (ci == NULL) {
    494 		/* case not in switch */
    495 		error(195);
    496 		return;
    497 	}
    498 
    499 	if (tn != NULL && tn->tn_op != CON) {
    500 		/* non-constant case expression */
    501 		error(197);
    502 		return;
    503 	}
    504 
    505 	if (tn != NULL && !is_integer(tn->tn_type->t_tspec)) {
    506 		/* non-integral case expression */
    507 		error(198);
    508 		return;
    509 	}
    510 
    511 	check_case_label_bitand(tn, ci->c_switch_expr);
    512 	check_case_label_enum(tn, ci);
    513 
    514 	lint_assert(ci->c_switch_type != NULL);
    515 
    516 	if (reached && !seen_fallthrough) {
    517 		if (hflag)
    518 			/* fallthrough on case statement */
    519 			warning(220);
    520 	}
    521 
    522 	t = tn->tn_type->t_tspec;
    523 	if (t == LONG || t == ULONG ||
    524 	    t == QUAD || t == UQUAD) {
    525 		if (tflag)
    526 			/* case label must be of type `int' in traditional C */
    527 			warning(203);
    528 	}
    529 
    530 	/*
    531 	 * get the value of the expression and convert it
    532 	 * to the type of the switch expression
    533 	 */
    534 	v = constant(tn, true);
    535 	(void)memset(&nv, 0, sizeof(nv));
    536 	convert_constant(CASE, 0, ci->c_switch_type, &nv, v);
    537 	free(v);
    538 
    539 	/* look if we had this value already */
    540 	for (cl = ci->c_case_labels; cl != NULL; cl = cl->cl_next) {
    541 		if (cl->cl_val.v_quad == nv.v_quad)
    542 			break;
    543 	}
    544 	if (cl != NULL && is_uinteger(nv.v_tspec)) {
    545 		/* duplicate case in switch: %lu */
    546 		error(200, (u_long)nv.v_quad);
    547 	} else if (cl != NULL) {
    548 		/* duplicate case in switch: %ld */
    549 		error(199, (long)nv.v_quad);
    550 	} else {
    551 		check_getopt_case_label(nv.v_quad);
    552 
    553 		/* append the value to the list of case values */
    554 		cl = xcalloc(1, sizeof(*cl));
    555 		cl->cl_val = nv;
    556 		cl->cl_next = ci->c_case_labels;
    557 		ci->c_case_labels = cl;
    558 	}
    559 }
    560 
    561 void
    562 case_label(tnode_t *tn)
    563 {
    564 	cstk_t	*ci;
    565 
    566 	/* find the innermost switch statement */
    567 	for (ci = cstmt; ci != NULL && !ci->c_switch; ci = ci->c_surrounding)
    568 		continue;
    569 
    570 	check_case_label(tn, ci);
    571 
    572 	expr_free_all();
    573 
    574 	set_reached(true);
    575 }
    576 
    577 void
    578 default_label(void)
    579 {
    580 	cstk_t	*ci;
    581 
    582 	/* find the innermost switch statement */
    583 	for (ci = cstmt; ci != NULL && !ci->c_switch; ci = ci->c_surrounding)
    584 		continue;
    585 
    586 	if (ci == NULL) {
    587 		/* default outside switch */
    588 		error(201);
    589 	} else if (ci->c_default) {
    590 		/* duplicate default in switch */
    591 		error(202);
    592 	} else {
    593 		if (reached && !seen_fallthrough) {
    594 			if (hflag)
    595 				/* fallthrough on default statement */
    596 				warning(284);
    597 		}
    598 		ci->c_default = true;
    599 	}
    600 
    601 	set_reached(true);
    602 }
    603 
    604 static tnode_t *
    605 check_controlling_expression(tnode_t *tn)
    606 {
    607 
    608 	if (tn != NULL)
    609 		tn = cconv(tn);
    610 	if (tn != NULL)
    611 		tn = promote(NOOP, false, tn);
    612 
    613 	if (tn != NULL && !is_scalar(tn->tn_type->t_tspec)) {
    614 		/* C99 6.5.15p4 for the ?: operator; see typeok:QUEST */
    615 		/* C99 6.8.4.1p1 for if statements */
    616 		/* C99 6.8.5p2 for while, do and for loops */
    617 		/* controlling expressions must have scalar type */
    618 		error(204);
    619 		return NULL;
    620 	}
    621 
    622 	if (tn != NULL && Tflag && !is_typeok_bool_operand(tn)) {
    623 		/* controlling expression must be bool, not '%s' */
    624 		error(333, tspec_name(tn->tn_type->t_tspec));
    625 		return NULL;
    626 	}
    627 
    628 	return tn;
    629 }
    630 
    631 /*
    632  * T_IF T_LPAREN expr T_RPAREN
    633  */
    634 void
    635 if1(tnode_t *tn)
    636 {
    637 
    638 	if (tn != NULL)
    639 		tn = check_controlling_expression(tn);
    640 	if (tn != NULL)
    641 		expr(tn, false, true, false, false);
    642 	begin_control_statement(CS_IF);
    643 
    644 	if (tn != NULL && tn->tn_op == CON && !tn->tn_system_dependent) {
    645 		/* XXX: what if inside 'if (0)'? */
    646 		set_reached(constant_is_nonzero(tn));
    647 		/* XXX: what about always_else? */
    648 		cstmt->c_always_then = reached;
    649 	}
    650 }
    651 
    652 /*
    653  * if_without_else
    654  * if_without_else T_ELSE
    655  */
    656 void
    657 if2(void)
    658 {
    659 
    660 	cstmt->c_reached_end_of_then = reached;
    661 	/* XXX: what if inside 'if (0)'? */
    662 	set_reached(!cstmt->c_always_then);
    663 }
    664 
    665 /*
    666  * if_without_else
    667  * if_without_else T_ELSE statement
    668  */
    669 void
    670 if3(bool els)
    671 {
    672 	if (cstmt->c_reached_end_of_then)
    673 		set_reached(true);
    674 	else if (cstmt->c_always_then)
    675 		set_reached(false);
    676 	else if (!els)
    677 		set_reached(true);
    678 
    679 	end_control_statement(CS_IF);
    680 }
    681 
    682 /*
    683  * T_SWITCH T_LPAREN expr T_RPAREN
    684  */
    685 void
    686 switch1(tnode_t *tn)
    687 {
    688 	tspec_t	t;
    689 	type_t	*tp;
    690 
    691 	if (tn != NULL)
    692 		tn = cconv(tn);
    693 	if (tn != NULL)
    694 		tn = promote(NOOP, false, tn);
    695 	if (tn != NULL && !is_integer(tn->tn_type->t_tspec)) {
    696 		/* switch expression must have integral type */
    697 		error(205);
    698 		tn = NULL;
    699 	}
    700 	if (tn != NULL && tflag) {
    701 		t = tn->tn_type->t_tspec;
    702 		if (t == LONG || t == ULONG || t == QUAD || t == UQUAD) {
    703 			/* switch expr. must be of type `int' in trad. C */
    704 			warning(271);
    705 		}
    706 	}
    707 
    708 	/*
    709 	 * Remember the type of the expression. Because it's possible
    710 	 * that (*tp) is allocated on tree memory, the type must be
    711 	 * duplicated. This is not too complicated because it is
    712 	 * only an integer type.
    713 	 */
    714 	tp = xcalloc(1, sizeof(*tp));
    715 	if (tn != NULL) {
    716 		tp->t_tspec = tn->tn_type->t_tspec;
    717 		if ((tp->t_is_enum = tn->tn_type->t_is_enum) != false)
    718 			tp->t_enum = tn->tn_type->t_enum;
    719 	} else {
    720 		tp->t_tspec = INT;
    721 	}
    722 
    723 	/* leak the memory, for check_case_label_bitand */
    724 	expr_save_memory();
    725 
    726 	check_getopt_begin_switch();
    727 	expr(tn, true, false, false, false);
    728 
    729 	begin_control_statement(CS_SWITCH);
    730 	cstmt->c_switch = true;
    731 	cstmt->c_switch_type = tp;
    732 	cstmt->c_switch_expr = tn;
    733 
    734 	set_reached(false);
    735 	seen_fallthrough = true;
    736 }
    737 
    738 /*
    739  * switch_expr statement
    740  */
    741 void
    742 switch2(void)
    743 {
    744 	int	nenum = 0, nclab = 0;
    745 	sym_t	*esym;
    746 	case_label_t *cl;
    747 
    748 	lint_assert(cstmt->c_switch_type != NULL);
    749 
    750 	if (cstmt->c_switch_type->t_is_enum) {
    751 		/*
    752 		 * Warn if the number of case labels is different from the
    753 		 * number of enumerators.
    754 		 */
    755 		nenum = nclab = 0;
    756 		lint_assert(cstmt->c_switch_type->t_enum != NULL);
    757 		for (esym = cstmt->c_switch_type->t_enum->en_first_enumerator;
    758 		     esym != NULL; esym = esym->s_next) {
    759 			nenum++;
    760 		}
    761 		for (cl = cstmt->c_case_labels; cl != NULL; cl = cl->cl_next)
    762 			nclab++;
    763 		if (hflag && eflag && nenum != nclab && !cstmt->c_default) {
    764 			/* enumeration value(s) not handled in switch */
    765 			warning(206);
    766 		}
    767 	}
    768 
    769 	check_getopt_end_switch();
    770 
    771 	if (cstmt->c_break) {
    772 		/*
    773 		 * The end of the switch statement is always reached since
    774 		 * c_break is only set if a break statement can actually
    775 		 * be reached.
    776 		 */
    777 		set_reached(true);
    778 	} else if (cstmt->c_default ||
    779 		   (hflag && cstmt->c_switch_type->t_is_enum &&
    780 		    nenum == nclab)) {
    781 		/*
    782 		 * The end of the switch statement is reached if the end
    783 		 * of the last statement inside it is reached.
    784 		 */
    785 	} else {
    786 		/*
    787 		 * There are possible values that are not handled in the
    788 		 * switch statement.
    789 		 */
    790 		set_reached(true);
    791 	}
    792 
    793 	end_control_statement(CS_SWITCH);
    794 }
    795 
    796 /*
    797  * T_WHILE T_LPAREN expr T_RPAREN
    798  */
    799 void
    800 while1(tnode_t *tn)
    801 {
    802 	bool body_reached;
    803 
    804 	if (!reached) {
    805 		/* loop not entered at top */
    806 		warning(207);
    807 		/* FIXME: that's plain wrong. */
    808 		set_reached(true);
    809 	}
    810 
    811 	if (tn != NULL)
    812 		tn = check_controlling_expression(tn);
    813 
    814 	begin_control_statement(CS_WHILE);
    815 	cstmt->c_loop = true;
    816 	cstmt->c_maybe_endless = is_nonzero(tn);
    817 	body_reached = !is_zero(tn);
    818 
    819 	check_getopt_begin_while(tn);
    820 	expr(tn, false, true, true, false);
    821 
    822 	set_reached(body_reached);
    823 }
    824 
    825 /*
    826  * while_expr statement
    827  * while_expr error
    828  */
    829 void
    830 while2(void)
    831 {
    832 
    833 	/*
    834 	 * The end of the loop can be reached if it is no endless loop
    835 	 * or there was a break statement which was reached.
    836 	 */
    837 	set_reached(!cstmt->c_maybe_endless || cstmt->c_break);
    838 
    839 	check_getopt_end_while();
    840 	end_control_statement(CS_WHILE);
    841 }
    842 
    843 /*
    844  * T_DO
    845  */
    846 void
    847 do1(void)
    848 {
    849 
    850 	if (!reached) {
    851 		/* loop not entered at top */
    852 		warning(207);
    853 		set_reached(true);
    854 	}
    855 
    856 	begin_control_statement(CS_DO_WHILE);
    857 	cstmt->c_loop = true;
    858 }
    859 
    860 /*
    861  * do statement do_while_expr
    862  * do error
    863  */
    864 void
    865 do2(tnode_t *tn)
    866 {
    867 
    868 	/*
    869 	 * If there was a continue statement, the expression controlling the
    870 	 * loop is reached.
    871 	 */
    872 	if (cstmt->c_continue)
    873 		set_reached(true);
    874 
    875 	if (tn != NULL)
    876 		tn = check_controlling_expression(tn);
    877 
    878 	if (tn != NULL && tn->tn_op == CON) {
    879 		cstmt->c_maybe_endless = constant_is_nonzero(tn);
    880 		if (!cstmt->c_maybe_endless && cstmt->c_continue)
    881 			/* continue in 'do ... while (0)' loop */
    882 			error(323);
    883 	}
    884 
    885 	expr(tn, false, true, true, true);
    886 
    887 	if (cstmt->c_maybe_endless)
    888 		set_reached(false);
    889 	if (cstmt->c_break)
    890 		set_reached(true);
    891 
    892 	end_control_statement(CS_DO_WHILE);
    893 }
    894 
    895 /*
    896  * T_FOR T_LPAREN opt_expr T_SEMI opt_expr T_SEMI opt_expr T_RPAREN
    897  */
    898 void
    899 for1(tnode_t *tn1, tnode_t *tn2, tnode_t *tn3)
    900 {
    901 
    902 	/*
    903 	 * If there is no initialization expression it is possible that
    904 	 * it is intended not to enter the loop at top.
    905 	 */
    906 	if (tn1 != NULL && !reached) {
    907 		/* loop not entered at top */
    908 		warning(207);
    909 		set_reached(true);
    910 	}
    911 
    912 	begin_control_statement(CS_FOR);
    913 	cstmt->c_loop = true;
    914 
    915 	/*
    916 	 * Store the tree memory for the reinitialization expression.
    917 	 * Also remember this expression itself. We must check it at
    918 	 * the end of the loop to get "used but not set" warnings correct.
    919 	 */
    920 	cstmt->c_for_expr3_mem = expr_save_memory();
    921 	cstmt->c_for_expr3 = tn3;
    922 	cstmt->c_for_expr3_pos = curr_pos;
    923 	cstmt->c_for_expr3_csrc_pos = csrc_pos;
    924 
    925 	if (tn1 != NULL)
    926 		expr(tn1, false, false, true, false);
    927 
    928 	if (tn2 != NULL)
    929 		tn2 = check_controlling_expression(tn2);
    930 	if (tn2 != NULL)
    931 		expr(tn2, false, true, true, false);
    932 
    933 	cstmt->c_maybe_endless = tn2 == NULL || is_nonzero(tn2);
    934 
    935 	/* Checking the reinitialization expression is done in for2() */
    936 
    937 	set_reached(!is_zero(tn2));
    938 }
    939 
    940 /*
    941  * for_exprs statement
    942  * for_exprs error
    943  */
    944 void
    945 for2(void)
    946 {
    947 	pos_t	cpos, cspos;
    948 	tnode_t	*tn3;
    949 
    950 	if (cstmt->c_continue)
    951 		set_reached(true);
    952 
    953 	cpos = curr_pos;
    954 	cspos = csrc_pos;
    955 
    956 	/* Restore the tree memory for the reinitialization expression */
    957 	expr_restore_memory(cstmt->c_for_expr3_mem);
    958 	tn3 = cstmt->c_for_expr3;
    959 	curr_pos = cstmt->c_for_expr3_pos;
    960 	csrc_pos = cstmt->c_for_expr3_csrc_pos;
    961 
    962 	/* simply "statement not reached" would be confusing */
    963 	if (!reached && warn_about_unreachable) {
    964 		/* end-of-loop code not reached */
    965 		warning(223);
    966 		set_reached(true);
    967 	}
    968 
    969 	if (tn3 != NULL) {
    970 		expr(tn3, false, false, true, false);
    971 	} else {
    972 		expr_free_all();
    973 	}
    974 
    975 	curr_pos = cpos;
    976 	csrc_pos = cspos;
    977 
    978 	/* An endless loop without break will never terminate */
    979 	/* TODO: What if the loop contains a 'return'? */
    980 	set_reached(cstmt->c_break || !cstmt->c_maybe_endless);
    981 
    982 	end_control_statement(CS_FOR);
    983 }
    984 
    985 /*
    986  * T_GOTO identifier T_SEMI
    987  */
    988 void
    989 do_goto(sym_t *lab)
    990 {
    991 
    992 	mark_as_used(lab, false, false);
    993 
    994 	check_statement_reachable();
    995 
    996 	set_reached(false);
    997 }
    998 
    999 /*
   1000  * T_BREAK T_SEMI
   1001  */
   1002 void
   1003 do_break(void)
   1004 {
   1005 	cstk_t	*ci;
   1006 
   1007 	ci = cstmt;
   1008 	while (ci != NULL && !ci->c_loop && !ci->c_switch)
   1009 		ci = ci->c_surrounding;
   1010 
   1011 	if (ci == NULL) {
   1012 		/* break outside loop or switch */
   1013 		error(208);
   1014 	} else {
   1015 		if (reached)
   1016 			ci->c_break = true;
   1017 	}
   1018 
   1019 	if (bflag)
   1020 		check_statement_reachable();
   1021 
   1022 	set_reached(false);
   1023 }
   1024 
   1025 /*
   1026  * T_CONTINUE T_SEMI
   1027  */
   1028 void
   1029 do_continue(void)
   1030 {
   1031 	cstk_t	*ci;
   1032 
   1033 	for (ci = cstmt; ci != NULL && !ci->c_loop; ci = ci->c_surrounding)
   1034 		continue;
   1035 
   1036 	if (ci == NULL) {
   1037 		/* continue outside loop */
   1038 		error(209);
   1039 	} else {
   1040 		/* TODO: only if reachable, for symmetry with c_break */
   1041 		ci->c_continue = true;
   1042 	}
   1043 
   1044 	check_statement_reachable();
   1045 
   1046 	set_reached(false);
   1047 }
   1048 
   1049 /*
   1050  * T_RETURN T_SEMI
   1051  * T_RETURN expr T_SEMI
   1052  */
   1053 void
   1054 do_return(tnode_t *tn)
   1055 {
   1056 	tnode_t	*ln, *rn;
   1057 	cstk_t	*ci;
   1058 	op_t	op;
   1059 
   1060 	ci = cstmt;
   1061 	if (ci == NULL) {
   1062 		/* syntax error '%s' */
   1063 		error(249, "return outside function");
   1064 		return;
   1065 	}
   1066 
   1067 	for (; ci->c_surrounding != NULL; ci = ci->c_surrounding)
   1068 		continue;
   1069 
   1070 	if (tn != NULL)
   1071 		ci->c_had_return_value = true;
   1072 	else
   1073 		ci->c_had_return_noval = true;
   1074 
   1075 	if (tn != NULL && funcsym->s_type->t_subt->t_tspec == VOID) {
   1076 		/* void function %s cannot return value */
   1077 		error(213, funcsym->s_name);
   1078 		expr_free_all();
   1079 		tn = NULL;
   1080 	} else if (tn == NULL && funcsym->s_type->t_subt->t_tspec != VOID) {
   1081 		/*
   1082 		 * Assume that the function has a return value only if it
   1083 		 * is explicitly declared.
   1084 		 */
   1085 		if (!funcsym->s_return_type_implicit_int)
   1086 			/* function %s expects to return value */
   1087 			warning(214, funcsym->s_name);
   1088 	}
   1089 
   1090 	if (tn != NULL) {
   1091 
   1092 		/* Create a temporary node for the left side */
   1093 		ln = expr_zalloc(sizeof(*ln));
   1094 		ln->tn_op = NAME;
   1095 		ln->tn_type = expr_dup_type(funcsym->s_type->t_subt);
   1096 		ln->tn_type->t_const = false;
   1097 		ln->tn_lvalue = true;
   1098 		ln->tn_sym = funcsym;		/* better than nothing */
   1099 
   1100 		tn = build(RETURN, ln, tn);
   1101 
   1102 		if (tn != NULL) {
   1103 			rn = tn->tn_right;
   1104 			while ((op = rn->tn_op) == CVT || op == PLUS)
   1105 				rn = rn->tn_left;
   1106 			if (rn->tn_op == ADDR && rn->tn_left->tn_op == NAME &&
   1107 			    rn->tn_left->tn_sym->s_scl == AUTO) {
   1108 				/* %s returns pointer to automatic object */
   1109 				warning(302, funcsym->s_name);
   1110 			}
   1111 		}
   1112 
   1113 		expr(tn, true, false, true, false);
   1114 
   1115 	} else {
   1116 
   1117 		check_statement_reachable();
   1118 
   1119 	}
   1120 
   1121 	set_reached(false);
   1122 }
   1123 
   1124 /*
   1125  * Do some cleanup after a global declaration or definition.
   1126  * Especially remove information about unused lint comments.
   1127  */
   1128 void
   1129 global_clean_up_decl(bool silent)
   1130 {
   1131 
   1132 	if (nargusg != -1) {
   1133 		if (!silent) {
   1134 			/* must precede function definition: ** %s ** */
   1135 			warning_at(282, &argsused_pos, "ARGSUSED");
   1136 		}
   1137 		nargusg = -1;
   1138 	}
   1139 	if (nvararg != -1) {
   1140 		if (!silent) {
   1141 			/* must precede function definition: ** %s ** */
   1142 			warning_at(282, &vapos, "VARARGS");
   1143 		}
   1144 		nvararg = -1;
   1145 	}
   1146 	if (printflike_argnum != -1) {
   1147 		if (!silent) {
   1148 			/* must precede function definition: ** %s ** */
   1149 			warning_at(282, &printflike_pos, "PRINTFLIKE");
   1150 		}
   1151 		printflike_argnum = -1;
   1152 	}
   1153 	if (scanflike_argnum != -1) {
   1154 		if (!silent) {
   1155 			/* must precede function definition: ** %s ** */
   1156 			warning_at(282, &scanflike_pos, "SCANFLIKE");
   1157 		}
   1158 		scanflike_argnum = -1;
   1159 	}
   1160 
   1161 	dcs->d_asm = false;
   1162 
   1163 	/*
   1164 	 * Needed for BSD yacc in case of parse errors; GNU Bison 3.0.4 is
   1165 	 * fine.  See gcc_attribute.c, function_with_unknown_attribute.
   1166 	 */
   1167 	attron = false;
   1168 }
   1169 
   1170 /*
   1171  * ARGSUSED comment
   1172  *
   1173  * Only the first n arguments of the following function are checked
   1174  * for usage. A missing argument is taken to be 0.
   1175  */
   1176 void
   1177 argsused(int n)
   1178 {
   1179 
   1180 	if (n == -1)
   1181 		n = 0;
   1182 
   1183 	if (dcs->d_ctx != EXTERN) {
   1184 		/* must be outside function: ** %s ** */
   1185 		warning(280, "ARGSUSED");
   1186 		return;
   1187 	}
   1188 	if (nargusg != -1) {
   1189 		/* duplicate use of ** %s ** */
   1190 		warning(281, "ARGSUSED");
   1191 	}
   1192 	nargusg = n;
   1193 	argsused_pos = curr_pos;
   1194 }
   1195 
   1196 /*
   1197  * VARARGS comment
   1198  *
   1199  * Causes lint2 to check only the first n arguments for compatibility
   1200  * with the function definition. A missing argument is taken to be 0.
   1201  */
   1202 void
   1203 varargs(int n)
   1204 {
   1205 
   1206 	if (n == -1)
   1207 		n = 0;
   1208 
   1209 	if (dcs->d_ctx != EXTERN) {
   1210 		/* must be outside function: ** %s ** */
   1211 		warning(280, "VARARGS");
   1212 		return;
   1213 	}
   1214 	if (nvararg != -1) {
   1215 		/* duplicate use of ** %s ** */
   1216 		warning(281, "VARARGS");
   1217 	}
   1218 	nvararg = n;
   1219 	vapos = curr_pos;
   1220 }
   1221 
   1222 /*
   1223  * PRINTFLIKE comment
   1224  *
   1225  * Check all arguments until the (n-1)-th as usual. The n-th argument is
   1226  * used the check the types of remaining arguments.
   1227  */
   1228 void
   1229 printflike(int n)
   1230 {
   1231 
   1232 	if (n == -1)
   1233 		n = 0;
   1234 
   1235 	if (dcs->d_ctx != EXTERN) {
   1236 		/* must be outside function: ** %s ** */
   1237 		warning(280, "PRINTFLIKE");
   1238 		return;
   1239 	}
   1240 	if (printflike_argnum != -1) {
   1241 		/* duplicate use of ** %s ** */
   1242 		warning(281, "PRINTFLIKE");
   1243 	}
   1244 	printflike_argnum = n;
   1245 	printflike_pos = curr_pos;
   1246 }
   1247 
   1248 /*
   1249  * SCANFLIKE comment
   1250  *
   1251  * Check all arguments until the (n-1)-th as usual. The n-th argument is
   1252  * used the check the types of remaining arguments.
   1253  */
   1254 void
   1255 scanflike(int n)
   1256 {
   1257 
   1258 	if (n == -1)
   1259 		n = 0;
   1260 
   1261 	if (dcs->d_ctx != EXTERN) {
   1262 		/* must be outside function: ** %s ** */
   1263 		warning(280, "SCANFLIKE");
   1264 		return;
   1265 	}
   1266 	if (scanflike_argnum != -1) {
   1267 		/* duplicate use of ** %s ** */
   1268 		warning(281, "SCANFLIKE");
   1269 	}
   1270 	scanflike_argnum = n;
   1271 	scanflike_pos = curr_pos;
   1272 }
   1273 
   1274 /*
   1275  * Set the line number for a CONSTCOND comment. At this and the following
   1276  * line no warnings about constants in conditional contexts are printed.
   1277  */
   1278 /* ARGSUSED */
   1279 void
   1280 constcond(int n)
   1281 {
   1282 
   1283 	constcond_flag = true;
   1284 }
   1285 
   1286 /*
   1287  * Suppress printing of "fallthrough on ..." warnings until next
   1288  * statement.
   1289  */
   1290 /* ARGSUSED */
   1291 void
   1292 fallthru(int n)
   1293 {
   1294 
   1295 	seen_fallthrough = true;
   1296 }
   1297 
   1298 /*
   1299  * Stop warnings about statements which cannot be reached. Also tells lint
   1300  * that the following statements cannot be reached (e.g. after exit()).
   1301  */
   1302 /* ARGSUSED */
   1303 void
   1304 not_reached(int n)
   1305 {
   1306 
   1307 	set_reached(false);
   1308 	warn_about_unreachable = false;
   1309 }
   1310 
   1311 /* ARGSUSED */
   1312 void
   1313 lintlib(int n)
   1314 {
   1315 
   1316 	if (dcs->d_ctx != EXTERN) {
   1317 		/* must be outside function: ** %s ** */
   1318 		warning(280, "LINTLIBRARY");
   1319 		return;
   1320 	}
   1321 	llibflg = true;
   1322 	vflag = false;
   1323 }
   1324 
   1325 /*
   1326  * Suppress most warnings at the current and the following line.
   1327  */
   1328 /* ARGSUSED */
   1329 void
   1330 linted(int n)
   1331 {
   1332 
   1333 #ifdef DEBUG
   1334 	printf("%s, %d: lwarn = %d\n", curr_pos.p_file, curr_pos.p_line, n);
   1335 #endif
   1336 	lwarn = n;
   1337 }
   1338 
   1339 /*
   1340  * Suppress bitfield type errors on the current line.
   1341  */
   1342 /* ARGSUSED */
   1343 void
   1344 bitfieldtype(int n)
   1345 {
   1346 
   1347 #ifdef DEBUG
   1348 	printf("%s, %d: bitfieldtype_ok = true\n", curr_pos.p_file,
   1349 	    curr_pos.p_line);
   1350 #endif
   1351 	bitfieldtype_ok = true;
   1352 }
   1353 
   1354 /*
   1355  * PROTOLIB in conjunction with LINTLIBRARY can be used to handle
   1356  * prototypes like function definitions. This is done if the argument
   1357  * to PROTOLIB is nonzero. Otherwise prototypes are handled normally.
   1358  */
   1359 void
   1360 protolib(int n)
   1361 {
   1362 
   1363 	if (dcs->d_ctx != EXTERN) {
   1364 		/* must be outside function: ** %s ** */
   1365 		warning(280, "PROTOLIB");
   1366 		return;
   1367 	}
   1368 	plibflg = n != 0;
   1369 }
   1370 
   1371 /* The next statement/declaration may use "long long" without a diagnostic. */
   1372 /* ARGSUSED */
   1373 void
   1374 longlong(int n)
   1375 {
   1376 
   1377 	quadflg = true;
   1378 }
   1379