func.c revision 1.116 1 /* $NetBSD: func.c,v 1.116 2021/07/31 11:03:04 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.116 2021/07/31 11:03:04 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 control_statement *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 control_statement *cs;
159
160 cs = xcalloc(1, sizeof(*cs));
161 cs->c_kind = kind;
162 cs->c_surrounding = cstmt;
163 cstmt = cs;
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 control_statement *cs;
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 cs = cstmt;
181 cstmt = cs->c_surrounding;
182
183 for (cl = cs->c_case_labels; cl != NULL; cl = next) {
184 next = cl->cl_next;
185 free(cl);
186 }
187
188 free(cs->c_switch_type);
189 free(cs);
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 control_statement *cs)
469 {
470 /* similar to typeok_enum in tree.c */
471
472 if (!(tn->tn_type->t_is_enum || cs->c_switch_type->t_is_enum))
473 return;
474 if (tn->tn_type->t_is_enum && cs->c_switch_type->t_is_enum &&
475 tn->tn_type->t_enum == cs->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(cs->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, control_statement *cs)
487 {
488 case_label_t *cl;
489 val_t *v;
490 val_t nv;
491 tspec_t t;
492
493 if (cs == 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, cs->c_switch_expr);
512 check_case_label_enum(tn, cs);
513
514 lint_assert(cs->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, cs->c_switch_type, &nv, v);
537 free(v);
538
539 /* look if we had this value already */
540 for (cl = cs->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 = cs->c_case_labels;
557 cs->c_case_labels = cl;
558 }
559 }
560
561 void
562 case_label(tnode_t *tn)
563 {
564 control_statement *cs;
565
566 /* find the innermost switch statement */
567 for (cs = cstmt; cs != NULL && !cs->c_switch; cs = cs->c_surrounding)
568 continue;
569
570 check_case_label(tn, cs);
571
572 expr_free_all();
573
574 set_reached(true);
575 }
576
577 void
578 default_label(void)
579 {
580 control_statement *cs;
581
582 /* find the innermost switch statement */
583 for (cs = cstmt; cs != NULL && !cs->c_switch; cs = cs->c_surrounding)
584 continue;
585
586 if (cs == NULL) {
587 /* default outside switch */
588 error(201);
589 } else if (cs->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 cs->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 }
626
627 return tn;
628 }
629
630 /*
631 * T_IF T_LPAREN expr T_RPAREN
632 */
633 void
634 if1(tnode_t *tn)
635 {
636
637 if (tn != NULL)
638 tn = check_controlling_expression(tn);
639 if (tn != NULL)
640 expr(tn, false, true, false, false);
641 begin_control_statement(CS_IF);
642
643 if (tn != NULL && tn->tn_op == CON && !tn->tn_system_dependent) {
644 /* XXX: what if inside 'if (0)'? */
645 set_reached(constant_is_nonzero(tn));
646 /* XXX: what about always_else? */
647 cstmt->c_always_then = reached;
648 }
649 }
650
651 /*
652 * if_without_else
653 * if_without_else T_ELSE
654 */
655 void
656 if2(void)
657 {
658
659 cstmt->c_reached_end_of_then = reached;
660 /* XXX: what if inside 'if (0)'? */
661 set_reached(!cstmt->c_always_then);
662 }
663
664 /*
665 * if_without_else
666 * if_without_else T_ELSE statement
667 */
668 void
669 if3(bool els)
670 {
671 if (cstmt->c_reached_end_of_then)
672 set_reached(true);
673 else if (cstmt->c_always_then)
674 set_reached(false);
675 else if (!els)
676 set_reached(true);
677
678 end_control_statement(CS_IF);
679 }
680
681 /*
682 * T_SWITCH T_LPAREN expr T_RPAREN
683 */
684 void
685 switch1(tnode_t *tn)
686 {
687 tspec_t t;
688 type_t *tp;
689
690 if (tn != NULL)
691 tn = cconv(tn);
692 if (tn != NULL)
693 tn = promote(NOOP, false, tn);
694 if (tn != NULL && !is_integer(tn->tn_type->t_tspec)) {
695 /* switch expression must have integral type */
696 error(205);
697 tn = NULL;
698 }
699 if (tn != NULL && tflag) {
700 t = tn->tn_type->t_tspec;
701 if (t == LONG || t == ULONG || t == QUAD || t == UQUAD) {
702 /* switch expr. must be of type `int' in trad. C */
703 warning(271);
704 }
705 }
706
707 /*
708 * Remember the type of the expression. Because it's possible
709 * that (*tp) is allocated on tree memory, the type must be
710 * duplicated. This is not too complicated because it is
711 * only an integer type.
712 */
713 tp = xcalloc(1, sizeof(*tp));
714 if (tn != NULL) {
715 tp->t_tspec = tn->tn_type->t_tspec;
716 if ((tp->t_is_enum = tn->tn_type->t_is_enum) != false)
717 tp->t_enum = tn->tn_type->t_enum;
718 } else {
719 tp->t_tspec = INT;
720 }
721
722 /* leak the memory, for check_case_label_bitand */
723 expr_save_memory();
724
725 check_getopt_begin_switch();
726 expr(tn, true, false, false, false);
727
728 begin_control_statement(CS_SWITCH);
729 cstmt->c_switch = true;
730 cstmt->c_switch_type = tp;
731 cstmt->c_switch_expr = tn;
732
733 set_reached(false);
734 seen_fallthrough = true;
735 }
736
737 /*
738 * switch_expr statement
739 */
740 void
741 switch2(void)
742 {
743 int nenum = 0, nclab = 0;
744 sym_t *esym;
745 case_label_t *cl;
746
747 lint_assert(cstmt->c_switch_type != NULL);
748
749 if (cstmt->c_switch_type->t_is_enum) {
750 /*
751 * Warn if the number of case labels is different from the
752 * number of enumerators.
753 */
754 nenum = nclab = 0;
755 lint_assert(cstmt->c_switch_type->t_enum != NULL);
756 for (esym = cstmt->c_switch_type->t_enum->en_first_enumerator;
757 esym != NULL; esym = esym->s_next) {
758 nenum++;
759 }
760 for (cl = cstmt->c_case_labels; cl != NULL; cl = cl->cl_next)
761 nclab++;
762 if (hflag && eflag && nenum != nclab && !cstmt->c_default) {
763 /* enumeration value(s) not handled in switch */
764 warning(206);
765 }
766 }
767
768 check_getopt_end_switch();
769
770 if (cstmt->c_break) {
771 /*
772 * The end of the switch statement is always reached since
773 * c_break is only set if a break statement can actually
774 * be reached.
775 */
776 set_reached(true);
777 } else if (cstmt->c_default ||
778 (hflag && cstmt->c_switch_type->t_is_enum &&
779 nenum == nclab)) {
780 /*
781 * The end of the switch statement is reached if the end
782 * of the last statement inside it is reached.
783 */
784 } else {
785 /*
786 * There are possible values that are not handled in the
787 * switch statement.
788 */
789 set_reached(true);
790 }
791
792 end_control_statement(CS_SWITCH);
793 }
794
795 /*
796 * T_WHILE T_LPAREN expr T_RPAREN
797 */
798 void
799 while1(tnode_t *tn)
800 {
801 bool body_reached;
802
803 if (!reached) {
804 /* loop not entered at top */
805 warning(207);
806 /* FIXME: that's plain wrong. */
807 set_reached(true);
808 }
809
810 if (tn != NULL)
811 tn = check_controlling_expression(tn);
812
813 begin_control_statement(CS_WHILE);
814 cstmt->c_loop = true;
815 cstmt->c_maybe_endless = is_nonzero(tn);
816 body_reached = !is_zero(tn);
817
818 check_getopt_begin_while(tn);
819 expr(tn, false, true, true, false);
820
821 set_reached(body_reached);
822 }
823
824 /*
825 * while_expr statement
826 * while_expr error
827 */
828 void
829 while2(void)
830 {
831
832 /*
833 * The end of the loop can be reached if it is no endless loop
834 * or there was a break statement which was reached.
835 */
836 set_reached(!cstmt->c_maybe_endless || cstmt->c_break);
837
838 check_getopt_end_while();
839 end_control_statement(CS_WHILE);
840 }
841
842 /*
843 * T_DO
844 */
845 void
846 do1(void)
847 {
848
849 if (!reached) {
850 /* loop not entered at top */
851 warning(207);
852 set_reached(true);
853 }
854
855 begin_control_statement(CS_DO_WHILE);
856 cstmt->c_loop = true;
857 }
858
859 /*
860 * do statement do_while_expr
861 * do error
862 */
863 void
864 do2(tnode_t *tn)
865 {
866
867 /*
868 * If there was a continue statement, the expression controlling the
869 * loop is reached.
870 */
871 if (cstmt->c_continue)
872 set_reached(true);
873
874 if (tn != NULL)
875 tn = check_controlling_expression(tn);
876
877 if (tn != NULL && tn->tn_op == CON) {
878 cstmt->c_maybe_endless = constant_is_nonzero(tn);
879 if (!cstmt->c_maybe_endless && cstmt->c_continue)
880 /* continue in 'do ... while (0)' loop */
881 error(323);
882 }
883
884 expr(tn, false, true, true, true);
885
886 if (cstmt->c_maybe_endless)
887 set_reached(false);
888 if (cstmt->c_break)
889 set_reached(true);
890
891 end_control_statement(CS_DO_WHILE);
892 }
893
894 /*
895 * T_FOR T_LPAREN opt_expr T_SEMI opt_expr T_SEMI opt_expr T_RPAREN
896 */
897 void
898 for1(tnode_t *tn1, tnode_t *tn2, tnode_t *tn3)
899 {
900
901 /*
902 * If there is no initialization expression it is possible that
903 * it is intended not to enter the loop at top.
904 */
905 if (tn1 != NULL && !reached) {
906 /* loop not entered at top */
907 warning(207);
908 set_reached(true);
909 }
910
911 begin_control_statement(CS_FOR);
912 cstmt->c_loop = true;
913
914 /*
915 * Store the tree memory for the reinitialization expression.
916 * Also remember this expression itself. We must check it at
917 * the end of the loop to get "used but not set" warnings correct.
918 */
919 cstmt->c_for_expr3_mem = expr_save_memory();
920 cstmt->c_for_expr3 = tn3;
921 cstmt->c_for_expr3_pos = curr_pos;
922 cstmt->c_for_expr3_csrc_pos = csrc_pos;
923
924 if (tn1 != NULL)
925 expr(tn1, false, false, true, false);
926
927 if (tn2 != NULL)
928 tn2 = check_controlling_expression(tn2);
929 if (tn2 != NULL)
930 expr(tn2, false, true, true, false);
931
932 cstmt->c_maybe_endless = tn2 == NULL || is_nonzero(tn2);
933
934 /* Checking the reinitialization expression is done in for2() */
935
936 set_reached(!is_zero(tn2));
937 }
938
939 /*
940 * for_exprs statement
941 * for_exprs error
942 */
943 void
944 for2(void)
945 {
946 pos_t cpos, cspos;
947 tnode_t *tn3;
948
949 if (cstmt->c_continue)
950 set_reached(true);
951
952 cpos = curr_pos;
953 cspos = csrc_pos;
954
955 /* Restore the tree memory for the reinitialization expression */
956 expr_restore_memory(cstmt->c_for_expr3_mem);
957 tn3 = cstmt->c_for_expr3;
958 curr_pos = cstmt->c_for_expr3_pos;
959 csrc_pos = cstmt->c_for_expr3_csrc_pos;
960
961 /* simply "statement not reached" would be confusing */
962 if (!reached && warn_about_unreachable) {
963 /* end-of-loop code not reached */
964 warning(223);
965 set_reached(true);
966 }
967
968 if (tn3 != NULL) {
969 expr(tn3, false, false, true, false);
970 } else {
971 expr_free_all();
972 }
973
974 curr_pos = cpos;
975 csrc_pos = cspos;
976
977 /* An endless loop without break will never terminate */
978 /* TODO: What if the loop contains a 'return'? */
979 set_reached(cstmt->c_break || !cstmt->c_maybe_endless);
980
981 end_control_statement(CS_FOR);
982 }
983
984 /*
985 * T_GOTO identifier T_SEMI
986 */
987 void
988 do_goto(sym_t *lab)
989 {
990
991 mark_as_used(lab, false, false);
992
993 check_statement_reachable();
994
995 set_reached(false);
996 }
997
998 /*
999 * T_BREAK T_SEMI
1000 */
1001 void
1002 do_break(void)
1003 {
1004 control_statement *cs;
1005
1006 cs = cstmt;
1007 while (cs != NULL && !cs->c_loop && !cs->c_switch)
1008 cs = cs->c_surrounding;
1009
1010 if (cs == NULL) {
1011 /* break outside loop or switch */
1012 error(208);
1013 } else {
1014 if (reached)
1015 cs->c_break = true;
1016 }
1017
1018 if (bflag)
1019 check_statement_reachable();
1020
1021 set_reached(false);
1022 }
1023
1024 /*
1025 * T_CONTINUE T_SEMI
1026 */
1027 void
1028 do_continue(void)
1029 {
1030 control_statement *cs;
1031
1032 for (cs = cstmt; cs != NULL && !cs->c_loop; cs = cs->c_surrounding)
1033 continue;
1034
1035 if (cs == NULL) {
1036 /* continue outside loop */
1037 error(209);
1038 } else {
1039 /* TODO: only if reachable, for symmetry with c_break */
1040 cs->c_continue = true;
1041 }
1042
1043 check_statement_reachable();
1044
1045 set_reached(false);
1046 }
1047
1048 /*
1049 * T_RETURN T_SEMI
1050 * T_RETURN expr T_SEMI
1051 */
1052 void
1053 do_return(tnode_t *tn)
1054 {
1055 tnode_t *ln, *rn;
1056 control_statement *cs;
1057 op_t op;
1058
1059 cs = cstmt;
1060 if (cs == NULL) {
1061 /* syntax error '%s' */
1062 error(249, "return outside function");
1063 return;
1064 }
1065
1066 for (; cs->c_surrounding != NULL; cs = cs->c_surrounding)
1067 continue;
1068
1069 if (tn != NULL)
1070 cs->c_had_return_value = true;
1071 else
1072 cs->c_had_return_noval = true;
1073
1074 if (tn != NULL && funcsym->s_type->t_subt->t_tspec == VOID) {
1075 /* void function %s cannot return value */
1076 error(213, funcsym->s_name);
1077 expr_free_all();
1078 tn = NULL;
1079 } else if (tn == NULL && funcsym->s_type->t_subt->t_tspec != VOID) {
1080 /*
1081 * Assume that the function has a return value only if it
1082 * is explicitly declared.
1083 */
1084 if (!funcsym->s_return_type_implicit_int)
1085 /* function %s expects to return value */
1086 warning(214, funcsym->s_name);
1087 }
1088
1089 if (tn != NULL) {
1090
1091 /* Create a temporary node for the left side */
1092 ln = expr_zalloc(sizeof(*ln));
1093 ln->tn_op = NAME;
1094 ln->tn_type = expr_unqualified_type(funcsym->s_type->t_subt);
1095 ln->tn_lvalue = true;
1096 ln->tn_sym = funcsym; /* better than nothing */
1097
1098 tn = build_binary(ln, RETURN, tn);
1099
1100 if (tn != NULL) {
1101 rn = tn->tn_right;
1102 while ((op = rn->tn_op) == CVT || op == PLUS)
1103 rn = rn->tn_left;
1104 if (rn->tn_op == ADDR && rn->tn_left->tn_op == NAME &&
1105 rn->tn_left->tn_sym->s_scl == AUTO) {
1106 /* %s returns pointer to automatic object */
1107 warning(302, funcsym->s_name);
1108 }
1109 }
1110
1111 expr(tn, true, false, true, false);
1112
1113 } else {
1114
1115 check_statement_reachable();
1116
1117 }
1118
1119 set_reached(false);
1120 }
1121
1122 /*
1123 * Do some cleanup after a global declaration or definition.
1124 * Especially remove information about unused lint comments.
1125 */
1126 void
1127 global_clean_up_decl(bool silent)
1128 {
1129
1130 if (nargusg != -1) {
1131 if (!silent) {
1132 /* must precede function definition: ** %s ** */
1133 warning_at(282, &argsused_pos, "ARGSUSED");
1134 }
1135 nargusg = -1;
1136 }
1137 if (nvararg != -1) {
1138 if (!silent) {
1139 /* must precede function definition: ** %s ** */
1140 warning_at(282, &vapos, "VARARGS");
1141 }
1142 nvararg = -1;
1143 }
1144 if (printflike_argnum != -1) {
1145 if (!silent) {
1146 /* must precede function definition: ** %s ** */
1147 warning_at(282, &printflike_pos, "PRINTFLIKE");
1148 }
1149 printflike_argnum = -1;
1150 }
1151 if (scanflike_argnum != -1) {
1152 if (!silent) {
1153 /* must precede function definition: ** %s ** */
1154 warning_at(282, &scanflike_pos, "SCANFLIKE");
1155 }
1156 scanflike_argnum = -1;
1157 }
1158
1159 dcs->d_asm = false;
1160
1161 /*
1162 * Needed for BSD yacc in case of parse errors; GNU Bison 3.0.4 is
1163 * fine. See gcc_attribute.c, function_with_unknown_attribute.
1164 */
1165 attron = false;
1166 }
1167
1168 /*
1169 * ARGSUSED comment
1170 *
1171 * Only the first n arguments of the following function are checked
1172 * for usage. A missing argument is taken to be 0.
1173 */
1174 void
1175 argsused(int n)
1176 {
1177
1178 if (n == -1)
1179 n = 0;
1180
1181 if (dcs->d_ctx != EXTERN) {
1182 /* must be outside function: ** %s ** */
1183 warning(280, "ARGSUSED");
1184 return;
1185 }
1186 if (nargusg != -1) {
1187 /* duplicate use of ** %s ** */
1188 warning(281, "ARGSUSED");
1189 }
1190 nargusg = n;
1191 argsused_pos = curr_pos;
1192 }
1193
1194 /*
1195 * VARARGS comment
1196 *
1197 * Causes lint2 to check only the first n arguments for compatibility
1198 * with the function definition. A missing argument is taken to be 0.
1199 */
1200 void
1201 varargs(int n)
1202 {
1203
1204 if (n == -1)
1205 n = 0;
1206
1207 if (dcs->d_ctx != EXTERN) {
1208 /* must be outside function: ** %s ** */
1209 warning(280, "VARARGS");
1210 return;
1211 }
1212 if (nvararg != -1) {
1213 /* duplicate use of ** %s ** */
1214 warning(281, "VARARGS");
1215 }
1216 nvararg = n;
1217 vapos = curr_pos;
1218 }
1219
1220 /*
1221 * PRINTFLIKE comment
1222 *
1223 * Check all arguments until the (n-1)-th as usual. The n-th argument is
1224 * used the check the types of remaining arguments.
1225 */
1226 void
1227 printflike(int n)
1228 {
1229
1230 if (n == -1)
1231 n = 0;
1232
1233 if (dcs->d_ctx != EXTERN) {
1234 /* must be outside function: ** %s ** */
1235 warning(280, "PRINTFLIKE");
1236 return;
1237 }
1238 if (printflike_argnum != -1) {
1239 /* duplicate use of ** %s ** */
1240 warning(281, "PRINTFLIKE");
1241 }
1242 printflike_argnum = n;
1243 printflike_pos = curr_pos;
1244 }
1245
1246 /*
1247 * SCANFLIKE comment
1248 *
1249 * Check all arguments until the (n-1)-th as usual. The n-th argument is
1250 * used the check the types of remaining arguments.
1251 */
1252 void
1253 scanflike(int n)
1254 {
1255
1256 if (n == -1)
1257 n = 0;
1258
1259 if (dcs->d_ctx != EXTERN) {
1260 /* must be outside function: ** %s ** */
1261 warning(280, "SCANFLIKE");
1262 return;
1263 }
1264 if (scanflike_argnum != -1) {
1265 /* duplicate use of ** %s ** */
1266 warning(281, "SCANFLIKE");
1267 }
1268 scanflike_argnum = n;
1269 scanflike_pos = curr_pos;
1270 }
1271
1272 /*
1273 * Set the line number for a CONSTCOND comment. At this and the following
1274 * line no warnings about constants in conditional contexts are printed.
1275 */
1276 /* ARGSUSED */
1277 void
1278 constcond(int n)
1279 {
1280
1281 constcond_flag = true;
1282 }
1283
1284 /*
1285 * Suppress printing of "fallthrough on ..." warnings until next
1286 * statement.
1287 */
1288 /* ARGSUSED */
1289 void
1290 fallthru(int n)
1291 {
1292
1293 seen_fallthrough = true;
1294 }
1295
1296 /*
1297 * Stop warnings about statements which cannot be reached. Also tells lint
1298 * that the following statements cannot be reached (e.g. after exit()).
1299 */
1300 /* ARGSUSED */
1301 void
1302 not_reached(int n)
1303 {
1304
1305 set_reached(false);
1306 warn_about_unreachable = false;
1307 }
1308
1309 /* ARGSUSED */
1310 void
1311 lintlib(int n)
1312 {
1313
1314 if (dcs->d_ctx != EXTERN) {
1315 /* must be outside function: ** %s ** */
1316 warning(280, "LINTLIBRARY");
1317 return;
1318 }
1319 llibflg = true;
1320 vflag = false;
1321 }
1322
1323 /*
1324 * Suppress most warnings at the current and the following line.
1325 */
1326 /* ARGSUSED */
1327 void
1328 linted(int n)
1329 {
1330
1331 #ifdef DEBUG
1332 printf("%s, %d: lwarn = %d\n", curr_pos.p_file, curr_pos.p_line, n);
1333 #endif
1334 lwarn = n;
1335 }
1336
1337 /*
1338 * Suppress bitfield type errors on the current line.
1339 */
1340 /* ARGSUSED */
1341 void
1342 bitfieldtype(int n)
1343 {
1344
1345 #ifdef DEBUG
1346 printf("%s, %d: bitfieldtype_ok = true\n", curr_pos.p_file,
1347 curr_pos.p_line);
1348 #endif
1349 bitfieldtype_ok = true;
1350 }
1351
1352 /*
1353 * PROTOLIB in conjunction with LINTLIBRARY can be used to handle
1354 * prototypes like function definitions. This is done if the argument
1355 * to PROTOLIB is nonzero. Otherwise prototypes are handled normally.
1356 */
1357 void
1358 protolib(int n)
1359 {
1360
1361 if (dcs->d_ctx != EXTERN) {
1362 /* must be outside function: ** %s ** */
1363 warning(280, "PROTOLIB");
1364 return;
1365 }
1366 plibflg = n != 0;
1367 }
1368
1369 /* The next statement/declaration may use "long long" without a diagnostic. */
1370 /* ARGSUSED */
1371 void
1372 longlong(int n)
1373 {
1374
1375 quadflg = true;
1376 }
1377