lint1.h revision 1.47 1 /* $NetBSD: lint1.h,v 1.47 2021/01/02 01:06:15 rillig Exp $ */
2
3 /*
4 * Copyright (c) 1996 Christopher G. Demetriou. All Rights Reserved.
5 * Copyright (c) 1994, 1995 Jochen Pohl
6 * All Rights Reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. All advertising materials mentioning features or use of this software
17 * must display the following acknowledgement:
18 * This product includes software developed by Jochen Pohl for
19 * The NetBSD Project.
20 * 4. The name of the author may not be used to endorse or promote products
21 * derived from this software without specific prior written permission.
22 *
23 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
24 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
25 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
26 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
27 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
28 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
29 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
30 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
31 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
32 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33 */
34
35 #include "lint.h"
36 #include "op.h"
37
38 /*
39 * XXX - Super conservative so that works for most systems, but we should
40 * not depend on the host settings but the target settings in determining
41 * the alignment. The only valid use for this is in mem1.c; uses in decl.c
42 * are bogus.
43 */
44 #ifndef WORST_ALIGN
45 #ifdef _LP64
46 # define AVAL 15
47 #else
48 # define AVAL 7
49 #endif
50 #define WORST_ALIGN(x) (((x) + AVAL) & ~AVAL)
51 #endif
52
53 #define LWARN_BAD -3
54 #define LWARN_ALL -2
55 #define LWARN_NONE -1
56
57 /*
58 * Describes the position of a declaration or anything else.
59 */
60 typedef struct {
61 int p_line;
62 const char *p_file;
63 int p_uniq; /* uniquifier */
64 } pos_t;
65
66 /* Copies curr_pos, keeping things unique. */
67 #define UNIQUE_CURR_POS(pos) \
68 do { \
69 (pos) = curr_pos; \
70 curr_pos.p_uniq++; \
71 if (curr_pos.p_file == csrc_pos.p_file) \
72 csrc_pos.p_uniq++; \
73 } while (0)
74
75 /*
76 * Strings cannot be referenced to simply by a pointer to its first
77 * char. This is because strings can contain NUL characters other than the
78 * trailing NUL.
79 *
80 * Strings are stored with a trailing NUL.
81 */
82 typedef struct strg {
83 tspec_t st_tspec; /* CHAR or WCHAR */
84 size_t st_len; /* length without trailing NUL */
85 union {
86 u_char *_st_cp;
87 wchar_t *_st_wcp;
88 } st_u;
89 } strg_t;
90
91 #define st_cp st_u._st_cp
92 #define st_wcp st_u._st_wcp
93
94 /*
95 * qualifiers (only for lex/yacc interface)
96 */
97 typedef enum {
98 CONST, VOLATILE, RESTRICT, THREAD
99 } tqual_t;
100
101 /*
102 * Integer and floating point values are stored in this structure
103 */
104 typedef struct {
105 tspec_t v_tspec;
106 int v_ansiu; /* set if an integer constant is
107 unsigned in ANSI C */
108 union {
109 int64_t _v_quad; /* integers */
110 ldbl_t _v_ldbl; /* floats */
111 } v_u;
112 } val_t;
113
114 #define v_quad v_u._v_quad
115 #define v_ldbl v_u._v_ldbl
116
117 /*
118 * Structures of type str_t uniqely identify structures. This can't
119 * be done in structures of type type_t, because these are copied
120 * if they must be modified. So it would not be possible to check
121 * if two structures are identical by comparing the pointers to
122 * the type structures.
123 *
124 * The typename is used if the structure is unnamed to identify
125 * the structure type in pass 2.
126 */
127 typedef struct {
128 u_int size; /* size in bit */
129 u_int align : 15; /* alignment in bit */
130 bool sincompl : 1; /* set if incomplete type */
131 struct sym *memb; /* list of members */
132 struct sym *stag; /* symbol table entry of tag */
133 struct sym *stdef; /* symbol table entry of first typename */
134 } str_t;
135
136 /*
137 * same as above for enums
138 */
139 typedef struct {
140 bool eincompl : 1; /* incomplete enum type */
141 struct sym *elem; /* list of enumerators */
142 struct sym *etag; /* symbol table entry of tag */
143 struct sym *etdef; /* symbol table entry of first typename */
144 } tenum_t;
145
146 /*
147 * Types are represented by concatenation of structures of type type_t
148 * via t_subt.
149 */
150 struct type {
151 tspec_t t_tspec; /* type specifier */
152 bool t_aincompl : 1; /* incomplete array type */
153 bool t_const : 1; /* const modifier */
154 bool t_volatile : 1; /* volatile modifier */
155 bool t_proto : 1; /* function prototype (t_args valid) */
156 bool t_vararg : 1; /* prototype with ... */
157 bool t_typedef : 1; /* type defined with typedef */
158 bool t_isfield : 1; /* type is bitfield */
159 bool t_isenum : 1; /* type is (or was) enum (t_enum valid) */
160 bool t_ispacked : 1; /* type is packed */
161 union {
162 int _t_dim; /* dimension */
163 str_t *_t_str; /* struct/union tag */
164 tenum_t *_t_enum; /* enum tag */
165 struct sym *_t_args; /* arguments (if t_proto) */
166 } t_u;
167 struct {
168 u_int _t_flen : 8; /* length of bit-field */
169 u_int _t_foffs : 24; /* offset of bit-field */
170 } t_b;
171 struct type *t_subt; /* element type (arrays), return value
172 (functions), or type pointer points to */
173 };
174
175 #define t_dim t_u._t_dim
176 #define t_str t_u._t_str
177 #define t_enum t_u._t_enum
178 #define t_args t_u._t_args
179 #define t_flen t_b._t_flen
180 #define t_foffs t_b._t_foffs
181
182 /*
183 * types of symbols
184 */
185 typedef enum {
186 FVFT, /* variables, functions, type names, enums */
187 FMEMBER, /* members of structs or unions */
188 FTAG, /* tags */
189 FLABEL /* labels */
190 } symt_t;
191
192 /*
193 * storage classes
194 */
195 typedef enum {
196 NOSCL,
197 EXTERN, /* external symbols (indep. of decl_t) */
198 STATIC, /* static symbols (local and global) */
199 AUTO, /* automatic symbols (except register) */
200 REG, /* register */
201 TYPEDEF, /* typedef */
202 STRTAG,
203 UNIONTAG,
204 ENUMTAG,
205 MOS, /* member of struct */
206 MOU, /* member of union */
207 ENUMCON, /* enumerator, enum constant */
208 ABSTRACT, /* abstract symbol (sizeof, casts, unnamed argument) */
209 ARG, /* argument */
210 PARG, /* used in declaration stack during prototype
211 declaration */
212 INLINE /* only used by the parser */
213 } scl_t;
214
215 /*
216 * symbol table entry
217 */
218 typedef struct sym {
219 const char *s_name;
220 const char *s_rename; /* renamed symbol's given name */
221 pos_t s_def_pos; /* position of last (prototype) definition,
222 prototype declaration, no-prototype-def.,
223 tentative definition or declaration,
224 in this order */
225 pos_t s_set_pos; /* position of first initialisation */
226 pos_t s_use_pos; /* position of first use */
227 symt_t s_kind; /* type of symbol */
228 void *s_keyword;
229 bool s_bitfield : 1;
230 bool s_set : 1; /* variable set, label defined */
231 bool s_used : 1; /* variable/label used */
232 bool s_arg : 1; /* symbol is function argument */
233 bool s_reg : 1; /* symbol is register variable */
234 bool s_defarg : 1; /* undefined symbol in old style function
235 definition */
236 bool s_rimpl : 1; /* return value of function implicit decl. */
237 bool s_osdef : 1; /* symbol stems from old style function def. */
238 bool s_inline : 1; /* true if this is an inline function */
239 struct sym *s_ext_sym; /* for local declared external symbols pointer
240 to external symbol with same name */
241 def_t s_def; /* declared, tentative defined, defined */
242 scl_t s_scl; /* storage class */
243 int s_blklev; /* level of declaration, -1 if not in symbol
244 table */
245 type_t *s_type;
246 val_t s_value; /* value (if enum constant) */
247 union {
248 str_t *_s_st; /* tag, if it is a struct/union member */
249 tenum_t *_s_et; /* tag, if it is an enumerator */
250 tspec_t _s_tsp; /* type (only for keywords) */
251 tqual_t _s_tqu; /* qualifier (only for keywords) */
252 struct sym *_s_args; /* arguments in old style function
253 definitions */
254 } u;
255 struct sym *s_link; /* next symbol with same hash value */
256 struct sym **s_rlink; /* pointer to s_link of prev. symbol */
257 struct sym *s_next; /* next struct/union member, enumerator,
258 argument */
259 struct sym *s_dlnxt; /* next symbol declared on same level */
260 } sym_t;
261
262 #define s_styp u._s_st
263 #define s_etyp u._s_et
264 #define s_tspec u._s_tsp
265 #define s_tqual u._s_tqu
266 #define s_args u._s_args
267
268 /*
269 * Used to keep some information about symbols before they are entered
270 * into the symbol table.
271 */
272 typedef struct sbuf {
273 const char *sb_name; /* name of symbol */
274 size_t sb_len; /* length (without '\0') */
275 int sb_hash; /* hash value */
276 sym_t *sb_sym; /* symbol table entry */
277 struct sbuf *sb_next; /* for freelist */
278 } sbuf_t;
279
280
281 /*
282 * tree node
283 */
284 typedef struct tnode {
285 op_t tn_op; /* operator */
286 type_t *tn_type; /* type */
287 bool tn_lvalue : 1; /* node is lvalue */
288 bool tn_cast : 1; /* if tn_op == CVT, it's an explicit cast */
289 bool tn_parenthesized : 1;
290 union {
291 struct {
292 struct tnode *_tn_left; /* (left) operand */
293 struct tnode *_tn_right; /* right operand */
294 } tn_s;
295 sym_t *_tn_sym; /* symbol if op == NAME */
296 val_t *_tn_val; /* value if op == CON */
297 strg_t *_tn_string; /* string if op == STRING */
298 } tn_u;
299 } tnode_t;
300
301 #define tn_left tn_u.tn_s._tn_left
302 #define tn_right tn_u.tn_s._tn_right
303 #define tn_sym tn_u._tn_sym
304 #define tn_val tn_u._tn_val
305 #define tn_string tn_u._tn_string
306
307 /*
308 * For nested declarations a stack exists, which holds all information
309 * needed for the current level. dcs points to the top element of this
310 * stack.
311 *
312 * ctx describes the context of the current declaration. Its value is
313 * one of
314 * EXTERN global declarations
315 * MOS oder MOU declarations of struct or union members
316 * ENUMCON declarations of enums
317 * ARG declaration of arguments in old style function definitions
318 * PARG declaration of arguments in function prototypes
319 * AUTO declaration of local symbols
320 * ABSTRACT abstract declarations (sizeof, casts)
321 *
322 */
323 typedef struct dinfo {
324 tspec_t d_atyp; /* VOID, CHAR, INT, or COMPLEX */
325 tspec_t d_cmod; /* FLOAT, or DOUBLE */
326 tspec_t d_smod; /* SIGNED or UNSIGN */
327 tspec_t d_lmod; /* SHORT, LONG or QUAD */
328 scl_t d_scl; /* storage class */
329 type_t *d_type; /* after deftyp() pointer to the type used
330 for all declarators */
331 sym_t *d_rdcsym; /* redeclared symbol */
332 int d_offset; /* offset of next structure member */
333 int d_stralign; /* alignment required for current structure */
334 scl_t d_ctx; /* context of declaration */
335 bool d_const : 1; /* const in declaration specifiers */
336 bool d_volatile : 1; /* volatile in declaration specifiers */
337 bool d_inline : 1; /* inline in declaration specifiers */
338 bool d_mscl : 1; /* multiple storage classes */
339 bool d_terr : 1; /* invalid type combination */
340 bool d_nedecl : 1; /* if at least one tag is declared */
341 bool d_vararg : 1; /* ... in in current function decl. */
342 bool d_proto : 1; /* current function decl. is prototype */
343 bool d_notyp : 1; /* set if no type specifier was present */
344 bool d_asm : 1; /* set if d_ctx == AUTO and asm() present */
345 bool d_ispacked : 1; /* packed */
346 bool d_used : 1; /* used */
347 type_t *d_tagtyp; /* tag during member declaration */
348 sym_t *d_fargs; /* list of arguments during function def. */
349 pos_t d_fdpos; /* position of function definition */
350 sym_t *d_dlsyms; /* first symbol declared at this level */
351 sym_t **d_ldlsym; /* points to s_dlnxt in last symbol decl.
352 at this level */
353 sym_t *d_fpsyms; /* symbols defined in prototype */
354 struct dinfo *d_next; /* next level */
355 } dinfo_t;
356
357 /*
358 * Used to collect information about pointers and qualifiers in
359 * declarators.
360 */
361 typedef struct pqinf {
362 int p_pcnt; /* number of asterisks */
363 bool p_const : 1;
364 bool p_volatile : 1;
365 struct pqinf *p_next;
366 } pqinf_t;
367
368 /*
369 * Case values are stored in a list of type clst_t.
370 */
371 typedef struct clst {
372 val_t cl_val;
373 struct clst *cl_next;
374 } clst_t;
375
376 /*
377 * Used to keep information about nested control statements.
378 */
379 typedef struct cstk {
380 int c_env; /* type of statement (T_IF, ...) */
381 bool c_loop : 1; /* continue && break are valid */
382 bool c_switch : 1; /* case && break are valid */
383 bool c_break : 1; /* loop/switch has break */
384 bool c_cont : 1; /* loop has continue */
385 bool c_default : 1; /* switch has default */
386 bool c_infinite : 1; /* break condition always false
387 (for (;;), while (1)) */
388 bool c_rchif : 1; /* end of if-branch reached */
389 bool c_noretval : 1; /* had "return;" */
390 bool c_retval : 1; /* had "return (e);" */
391 type_t *c_swtype; /* type of switch expression */
392 clst_t *c_clst; /* list of case values */
393 struct mbl *c_fexprm; /* saved memory for end of loop
394 expression in for() */
395 tnode_t *c_f3expr; /* end of loop expr in for() */
396 pos_t c_fpos; /* position of end of loop expr */
397 pos_t c_cfpos; /* same for csrc_pos */
398 struct cstk *c_next; /* outer control statement */
399 } cstk_t;
400
401 typedef struct {
402 size_t lo;
403 size_t hi;
404 } range_t;
405
406 #include "externs1.h"
407
408 #define ERR_SETSIZE 1024
409 #define __NERRBITS (sizeof(unsigned int))
410
411 typedef struct err_set {
412 unsigned int errs_bits[(ERR_SETSIZE + __NERRBITS-1) / __NERRBITS];
413 } err_set;
414
415 #define ERR_SET(n, p) \
416 ((p)->errs_bits[(n)/__NERRBITS] |= (1 << ((n) % __NERRBITS)))
417 #define ERR_CLR(n, p) \
418 ((p)->errs_bits[(n)/__NERRBITS] &= ~(1 << ((n) % __NERRBITS)))
419 #define ERR_ISSET(n, p) \
420 ((p)->errs_bits[(n)/__NERRBITS] & (1 << ((n) % __NERRBITS)))
421 #define ERR_ZERO(p) (void)memset((p), 0, sizeof(*(p)))
422
423 #define LERROR(fmt, args...) lerror(__FILE__, __LINE__, fmt, ##args)
424
425 #define lint_assert(cond) \
426 do { \
427 if (!(cond)) \
428 assert_failed(__FILE__, __LINE__, __func__, #cond); \
429 } while (/*CONSTCOND*/0)
430
431 #ifdef BLKDEBUG
432 #define ZERO 0xa5
433 #else
434 #define ZERO 0
435 #endif
436
437 extern err_set msgset;
438