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