Home | History | Annotate | Line # | Download | only in lint1
lint1.h revision 1.189
      1 /* $NetBSD: lint1.h,v 1.189 2023/07/13 08:40:38 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 "err-msgs.h"
     37 #include "op.h"
     38 
     39 /*
     40  * A memory pool collects allocated objects that must be available until:
     41  * - the end of a block,
     42  * - the end of an expression, or
     43  * - the end of the translation unit.
     44  */
     45 typedef struct memory_pool {
     46 	void	**items;
     47 	size_t	len;
     48 	size_t	cap;
     49 } memory_pool;
     50 
     51 /* See saved_lwarn in cgram.y. */
     52 #define LWARN_ALL	(-2)
     53 #define LWARN_NONE	(-1)
     54 
     55 /*
     56  * Describes the position of a declaration or anything else.
     57  *
     58  * FIXME: Just a single file:lineno pair is not enough to accurately describe
     59  *  the position of a symbol.  The whole inclusion path at that point must be
     60  *  stored as well.  This makes a difference for symbols from included
     61  *  headers, see print_stack_trace.
     62  */
     63 typedef struct {
     64 	const	char *p_file;
     65 	int	p_line;
     66 	int	p_uniq;			/* uniquifier */
     67 } pos_t;
     68 
     69 /*
     70  * Strings cannot be referenced simply by a pointer to their first
     71  * char. This is because strings can contain NUL characters other than the
     72  * trailing NUL.
     73  *
     74  * Strings are stored with a trailing NUL.
     75  */
     76 typedef	struct strg {
     77 	bool	st_char;	/* string doesn't have an 'L' prefix */
     78 	size_t	st_len;		/* length without trailing NUL */
     79 	void	*st_mem;	/* char[] for st_char, or wchar_t[] */
     80 } strg_t;
     81 
     82 /*
     83  * qualifiers (only for lex/yacc interface)
     84  */
     85 typedef enum {
     86 	CONST,
     87 	VOLATILE,
     88 	RESTRICT,
     89 	THREAD,			/* XXX: storage-class-qualifier */
     90 	ATOMIC,
     91 } tqual_t;
     92 
     93 /* An integer or floating-point value. */
     94 typedef struct {
     95 	tspec_t	v_tspec;
     96 	/*
     97 	 * Set if an integer constant is unsigned only in C90 and later, but
     98 	 * not in traditional C.
     99 	 *
    100 	 * See the operators table in ops.def, columns "l r".
    101 	 */
    102 	bool	v_unsigned_since_c90;
    103 	bool	v_char_constant;
    104 	union {
    105 		int64_t		integer;
    106 		long double	floating;
    107 	} u;
    108 } val_t;
    109 
    110 /*
    111  * Structures of type struct_or_union uniquely identify structures. This can't
    112  * be done in structures of type type_t, because these are copied if they must
    113  * be modified. So it would not be possible to check if two structures are
    114  * identical by comparing the pointers to the type structures.
    115  *
    116  * If the structure has no tag name, its first typedef name is used to identify
    117  * the structure in lint2.
    118  */
    119 typedef	struct {
    120 	unsigned int sou_size_in_bits;
    121 	unsigned int sou_align_in_bits;
    122 	bool	sou_incomplete:1;
    123 	struct	sym *sou_first_member;
    124 	struct	sym *sou_tag;
    125 	struct	sym *sou_first_typedef;
    126 } struct_or_union;
    127 
    128 /*
    129  * same as above for enums
    130  */
    131 typedef	struct {
    132 	bool	en_incomplete:1;
    133 	struct	sym *en_first_enumerator;
    134 	struct	sym *en_tag;
    135 	struct	sym *en_first_typedef;
    136 } enumeration;
    137 
    138 /*
    139  * The type of an expression or object. Complex types are formed via t_subt
    140  * (for arrays, pointers and functions), as well as t_sou.
    141  */
    142 struct lint1_type {
    143 	tspec_t	t_tspec;	/* type specifier */
    144 	bool	t_incomplete_array:1;
    145 	bool	t_const:1;	/* const modifier */
    146 	bool	t_volatile:1;	/* volatile modifier */
    147 	bool	t_proto:1;	/* function prototype (t_args valid) */
    148 	bool	t_vararg:1;	/* prototype with '...' */
    149 	bool	t_typedef:1;	/* type defined with typedef */
    150 	bool	t_typeof:1;	/* type defined with GCC's __typeof__ */
    151 	bool	t_bitfield:1;
    152 	/*
    153 	 * Either the type is currently an enum (having t_tspec ENUM), or
    154 	 * it is an integer type (typically INT) that has been implicitly
    155 	 * converted from an enum type.  In both cases, t_enum is valid.
    156 	 *
    157 	 * The information about a former enum type is retained to allow
    158 	 * type checks in expressions such as ((var1 & 0x0001) == var2), to
    159 	 * detect when var1 and var2 are from incompatible enum types.
    160 	 */
    161 	bool	t_is_enum:1;
    162 	bool	t_packed:1;
    163 	union {
    164 		int	_t_dim;		/* dimension (if ARRAY) */
    165 		struct_or_union	*_t_sou;
    166 		enumeration	*_t_enum;
    167 		struct	sym *_t_args;	/* arguments (if t_proto) */
    168 	} t_u;
    169 	unsigned int	t_bit_field_width:8;
    170 	unsigned int	t_bit_field_offset:24;
    171 	struct	lint1_type *t_subt;	/* element type (if ARRAY),
    172 					 * return value (if FUNC),
    173 					 * target type (if PTR) */
    174 };
    175 
    176 #define	t_dim	t_u._t_dim
    177 #define	t_sou	t_u._t_sou
    178 #define	t_enum	t_u._t_enum
    179 #define	t_args	t_u._t_args
    180 
    181 /*
    182  * types of symbols
    183  */
    184 typedef	enum {
    185 	FVFT,		/* variables, functions, type names, enums */
    186 	FMEMBER,	/* members of structs or unions */
    187 	FTAG,		/* tags */
    188 	FLABEL		/* labels */
    189 } symt_t;
    190 
    191 /*
    192  * storage classes and related things
    193  */
    194 typedef enum {
    195 	NOSCL,
    196 	EXTERN,		/* external symbols (independent of decl_t) */
    197 	STATIC,		/* static symbols (local and global) */
    198 	AUTO,		/* automatic symbols (except register) */
    199 	REG,		/* register */
    200 	TYPEDEF,	/* typedef */
    201 	STRUCT_TAG,
    202 	UNION_TAG,
    203 	ENUM_TAG,
    204 	STRUCT_MEMBER,
    205 	UNION_MEMBER,
    206 	BOOL_CONST,
    207 	ENUM_CONST,
    208 	ABSTRACT,	/* abstract symbol (sizeof, casts, unnamed argument) */
    209 } scl_t;
    210 
    211 /* C23 6.7.4 */
    212 typedef enum {
    213 	FS_INLINE,		/* since C99 */
    214 	FS_NORETURN,		/* since C11 */
    215 } function_specifier;
    216 
    217 /*
    218  * symbol table entry
    219  */
    220 typedef	struct sym {
    221 	const	char *s_name;
    222 	const	char *s_rename;	/* renamed symbol's given name */
    223 	pos_t	s_def_pos;	/* position of last (prototype) definition,
    224 				   prototype declaration, no-prototype-def.,
    225 				   tentative definition or declaration,
    226 				   in this order */
    227 	pos_t	s_set_pos;	/* position of first initialization */
    228 	pos_t	s_use_pos;	/* position of first use */
    229 	symt_t	s_kind;		/* type of symbol */
    230 	const struct keyword *s_keyword;
    231 	bool	s_bitfield:1;
    232 	bool	s_set:1;	/* variable set, label defined */
    233 	bool	s_used:1;	/* variable/label used */
    234 	bool	s_arg:1;	/* symbol is function argument */
    235 	bool	s_register:1;	/* symbol is register variable */
    236 	bool	s_defarg:1;	/* undefined symbol in old-style function
    237 				   definition */
    238 	bool	s_return_type_implicit_int:1;
    239 	bool	s_osdef:1;	/* symbol stems from old-style function def. */
    240 	bool	s_inline:1;	/* true if this is an inline function */
    241 	struct	sym *s_ext_sym;	/* for locally declared external symbols, the
    242 				 * pointer to the external symbol with the
    243 				 * same name */
    244 	def_t	s_def;		/* declared, tentative defined, defined */
    245 	scl_t	s_scl;		/* storage class, more or less */
    246 	int	s_block_level;	/* level of declaration, -1 if not in symbol
    247 				   table */
    248 	type_t	*s_type;
    249 	union {
    250 		bool s_bool_constant;
    251 		int s_enum_constant;	/* XXX: should be TARG_INT */
    252 		struct {
    253 			struct_or_union	*sm_containing_type;
    254 			unsigned int sm_offset_in_bits;
    255 		} s_member;
    256 		struct {
    257 			int sk_token;
    258 			union {
    259 				/* if T_TYPE or T_STRUCT_OR_UNION */
    260 				tspec_t sk_tspec;
    261 				/* if T_QUAL */
    262 				tqual_t sk_qualifier;
    263 				/* if T_FUNCTION_SPECIFIER */
    264 				function_specifier function_specifier;
    265 			} u;
    266 		} s_keyword;
    267 		struct	sym *s_old_style_args;	/* arguments in an old-style
    268 						 * function definition */
    269 	} u;
    270 	struct	sym *s_symtab_next;	/* next symbol with same hash value */
    271 	struct	sym **s_symtab_ref;	/* pointer to s_symtab_next of the
    272 					 * previous symbol */
    273 	struct	sym *s_next;	/* next struct/union member, enumerator,
    274 				   argument */
    275 	struct	sym *s_level_next;	/* next symbol declared on the same
    276 					 * level */
    277 } sym_t;
    278 
    279 /*
    280  * Used to keep some information about symbols before they are entered
    281  * into the symbol table.
    282  */
    283 typedef	struct sbuf {
    284 	const	char *sb_name;		/* name of symbol */
    285 	size_t	sb_len;			/* length (without '\0') */
    286 	sym_t	*sb_sym;		/* symbol table entry */
    287 } sbuf_t;
    288 
    289 
    290 /*
    291  * tree node
    292  */
    293 typedef	struct tnode {
    294 	op_t	tn_op;		/* operator */
    295 	type_t	*tn_type;	/* type */
    296 	bool	tn_lvalue:1;	/* node is lvalue */
    297 	bool	tn_cast:1;	/* if tn_op == CVT, it's an explicit cast */
    298 	bool	tn_parenthesized:1;
    299 	bool	tn_sys:1;	/* in strict bool mode, allow mixture between
    300 				 * bool and scalar, for code from system
    301 				 * headers that may be a mixture between
    302 				 * scalar types and bool
    303 				 */
    304 	bool	tn_system_dependent:1; /* depends on sizeof or offsetof */
    305 	union {
    306 		struct {
    307 			struct	tnode *_tn_left;	/* (left) operand */
    308 			struct	tnode *_tn_right;	/* right operand */
    309 		} tn_s;
    310 		sym_t	*_tn_sym;	/* symbol if op == NAME */
    311 		val_t	_tn_val;	/* value if op == CON */
    312 		strg_t	*_tn_string;	/* string if op == STRING */
    313 	} tn_u;
    314 } tnode_t;
    315 
    316 #define	tn_left		tn_u.tn_s._tn_left
    317 #define tn_right	tn_u.tn_s._tn_right
    318 #define tn_sym		tn_u._tn_sym
    319 #define	tn_val		tn_u._tn_val
    320 #define	tn_string	tn_u._tn_string
    321 
    322 struct generic_association {
    323 	type_t *ga_arg;		/* NULL means default or error */
    324 	tnode_t *ga_result;	/* NULL means error */
    325 	struct generic_association *ga_prev;
    326 };
    327 
    328 struct array_size {
    329 	bool has_dim;
    330 	int dim;
    331 };
    332 
    333 typedef enum decl_level_kind {
    334 	DLK_EXTERN,		/* global types, variables or functions */
    335 	DLK_STRUCT,		/* members */
    336 	DLK_UNION,		/* members */
    337 	DLK_ENUM,		/* constants */
    338 	DLK_OLD_STYLE_ARGS,	/* arguments in an old-style function
    339 				 * definition */
    340 	DLK_PROTO_PARAMS,	/* parameters in a prototype function
    341 				 * definition */
    342 	DLK_AUTO,		/* local types or variables */
    343 	DLK_ABSTRACT		/* abstract (unnamed) declaration; type name;
    344 				 * used in casts and sizeof */
    345 } decl_level_kind;
    346 
    347 /*
    348  * A declaration level describes a struct, union, enum, block, argument
    349  * declaration list or an abstract (unnamed) type.
    350  *
    351  * For nested declarations, the global 'dcs' holds all information needed for
    352  * the current level, the outer levels are available via 'd_enclosing'.
    353  */
    354 typedef	struct decl_level {
    355 	decl_level_kind d_kind;
    356 	tspec_t	d_abstract_type;/* VOID, BOOL, CHAR, INT or COMPLEX */
    357 	tspec_t	d_complex_mod;	/* FLOAT or DOUBLE */
    358 	tspec_t	d_sign_mod;	/* SIGNED or UNSIGN */
    359 	tspec_t	d_rank_mod;	/* SHORT, LONG or LLONG */
    360 	scl_t	d_scl;		/* storage class */
    361 	type_t	*d_type;	/* after dcs_end_type, the pointer to the type
    362 				 * used for all declarators */
    363 	sym_t	*d_redeclared_symbol;
    364 	unsigned int d_sou_size_in_bits;	/* size of the structure or
    365 						 * union being built, without
    366 						 * trailing padding */
    367 	unsigned int d_sou_align_in_bits;	/* alignment of the structure
    368 						 * or union being built */
    369 	bool	d_const:1;	/* const in declaration specifiers */
    370 	bool	d_volatile:1;	/* volatile in declaration specifiers */
    371 	bool	d_inline:1;	/* inline in declaration specifiers */
    372 	bool	d_multiple_storage_classes:1; /* reported in dcs_end_type */
    373 	bool	d_invalid_type_combination:1;
    374 	bool	d_nonempty_decl:1; /* in a function declaration, whether at
    375 				 * least one tag was declared */
    376 	bool	d_vararg:1;
    377 	bool	d_prototype:1;	/* in a function declaration, whether the
    378 				 * function has a prototype */
    379 	bool	d_no_type_specifier:1;
    380 	bool	d_asm:1;	/* set if d_ctx == AUTO and asm() present */
    381 	bool	d_packed:1;
    382 	bool	d_used:1;
    383 	type_t	*d_tag_type;	/* during a member declaration, the tag type to
    384 				 * which the member belongs */
    385 	sym_t	*d_func_args;	/* during a function declaration, the list of
    386 				 * arguments */
    387 	pos_t	d_func_def_pos;	/* position of the function definition */
    388 	sym_t	*d_first_dlsym;	/* first symbol declared at this level */
    389 	sym_t	**d_last_dlsym;	/* points to s_level_next in the last symbol
    390 				   declaration at this level */
    391 	sym_t	*d_func_proto_syms; /* symbols defined in prototype */
    392 	struct decl_level *d_enclosing; /* the enclosing declaration level */
    393 } decl_level;
    394 
    395 /* One level of pointer indirection in declarators, including qualifiers. */
    396 typedef	struct qual_ptr {
    397 	bool	p_const:1;
    398 	bool	p_volatile:1;
    399 	bool	p_pointer:1;
    400 	struct	qual_ptr *p_next;
    401 } qual_ptr;
    402 
    403 /*
    404  * The values of the 'case' labels, linked via cl_next in reverse order of
    405  * appearance in the code, that is from bottom to top.
    406  */
    407 typedef	struct case_label {
    408 	val_t	cl_val;
    409 	struct case_label *cl_next;
    410 } case_label_t;
    411 
    412 typedef enum {
    413 	CS_DO_WHILE,
    414 	CS_FOR,
    415 	CS_FUNCTION_BODY,
    416 	CS_IF,
    417 	CS_SWITCH,
    418 	CS_WHILE
    419 } control_statement_kind;
    420 
    421 /*
    422  * Used to keep information about nested control statements.
    423  */
    424 typedef struct control_statement {
    425 	control_statement_kind c_kind;	/* to ensure proper nesting */
    426 	bool	c_loop:1;		/* 'continue' and 'break' are valid */
    427 	bool	c_switch:1;		/* 'case' and 'break' are valid */
    428 	bool	c_break:1;		/* the loop/switch has a reachable
    429 					 * 'break' statement */
    430 	bool	c_continue:1;		/* the loop has a reachable 'continue'
    431 					 * statement */
    432 	bool	c_default:1;		/* the switch has a 'default' label */
    433 	bool	c_maybe_endless:1;	/* the controlling expression is
    434 					 * always true (as in 'for (;;)' or
    435 					 * 'while (1)'), there may be break
    436 					 * statements though */
    437 	bool	c_always_then:1;
    438 	bool	c_reached_end_of_then:1;
    439 	bool	c_had_return_noval:1;	/* had "return;" */
    440 	bool	c_had_return_value:1;	/* had "return expr;" */
    441 
    442 	type_t	*c_switch_type;		/* type of switch expression */
    443 	tnode_t	*c_switch_expr;
    444 	case_label_t *c_case_labels;	/* list of case values */
    445 
    446 	memory_pool c_for_expr3_mem;	/* saved memory for end of loop
    447 					 * expression in for() */
    448 	tnode_t	*c_for_expr3;		/* end of loop expr in for() */
    449 	pos_t	c_for_expr3_pos;	/* position of end of loop expr */
    450 	pos_t	c_for_expr3_csrc_pos;	/* same for csrc_pos */
    451 
    452 	struct control_statement *c_surrounding;
    453 } control_statement;
    454 
    455 typedef struct {
    456 	size_t lo;			/* inclusive */
    457 	size_t hi;			/* inclusive */
    458 } range_t;
    459 
    460 typedef enum {
    461 	LC_ARGSUSED,
    462 	LC_BITFIELDTYPE,
    463 	LC_CONSTCOND,
    464 	LC_FALLTHROUGH,
    465 	LC_LINTLIBRARY,
    466 	LC_LINTED,
    467 	LC_LONGLONG,
    468 	LC_NOTREACHED,
    469 	LC_PRINTFLIKE,
    470 	LC_PROTOLIB,
    471 	LC_SCANFLIKE,
    472 	LC_VARARGS,
    473 } lint_comment;
    474 
    475 #include "externs1.h"
    476 
    477 #define lint_assert(cond)						\
    478 	do {								\
    479 		if (!(cond))						\
    480 			assert_failed(__FILE__, __LINE__, __func__, #cond); \
    481 	} while (false)
    482 
    483 #ifdef DEBUG
    484 #  include "err-msgs.h"
    485 
    486 /* ARGSUSED */
    487 static inline void __printflike(1, 2)
    488 check_printf(const char *fmt, ...)
    489 {
    490 }
    491 
    492 #  define wrap_check_printf_at(func, msgid, pos, args...)		\
    493 	do {								\
    494 		check_printf(__CONCAT(MSG_, msgid), ##args);		\
    495 		(func)(msgid, pos, ##args);				\
    496 	} while (false)
    497 
    498 #  define error_at(msgid, pos, args...) \
    499 	wrap_check_printf_at(error_at, msgid, pos, ##args)
    500 #  define warning_at(msgid, pos, args...) \
    501 	wrap_check_printf_at(warning_at, msgid, pos, ##args)
    502 #  define message_at(msgid, pos, args...) \
    503 	wrap_check_printf_at(message_at, msgid, pos, ##args)
    504 
    505 #  define wrap_check_printf(func, cond, msgid, args...)			\
    506 	({								\
    507 		if (/* CONSTCOND */cond)				\
    508 			debug_step("%s:%d: %s %d '%s' in %s",		\
    509 			    __FILE__, __LINE__,	#func, msgid,		\
    510 			    __CONCAT(MSG_, msgid), __func__);		\
    511 		check_printf(__CONCAT(MSG_, msgid), ##args);		\
    512 		(func)(msgid, ##args);					\
    513 		/* LINTED 129 */					\
    514 	})
    515 
    516 #  define error(msgid, args...) wrap_check_printf(error, \
    517     true, msgid, ##args)
    518 #  define warning(msgid, args...) wrap_check_printf(warning, \
    519     true, msgid, ##args)
    520 #  define gnuism(msgid, args...) wrap_check_printf(gnuism, \
    521     !allow_gcc || (!allow_trad && !allow_c99), msgid, ##args)
    522 #  define c99ism(msgid, args...) wrap_check_printf(c99ism, \
    523     !allow_c99 && (!allow_gcc || !allow_trad), msgid, ##args)
    524 #  define c11ism(msgid, args...) wrap_check_printf(c11ism, \
    525     !allow_c11 && !allow_gcc, msgid, ##args)
    526 #  define c23ism(msgid, args...) wrap_check_printf(c23ism, \
    527     !allow_c23, msgid, ##args)
    528 #endif
    529 
    530 #ifdef DEBUG
    531 #  define query_message(query_id, args...)				\
    532 	do {								\
    533 		debug_step("%s:%d: query %d '%s' in %s",		\
    534 		    __FILE__, __LINE__,					\
    535 		    query_id, __CONCAT(MSG_Q, query_id), __func__);	\
    536 		check_printf(__CONCAT(MSG_Q, query_id), ##args);	\
    537 		(query_message)(query_id, ##args);			\
    538 	} while (false)
    539 #else
    540 #  define query_message(...)						\
    541 	do {								\
    542 		if (any_query_enabled)					\
    543 			(query_message)(__VA_ARGS__);			\
    544 	} while (false)
    545 #endif
    546 
    547 /* Copies curr_pos, keeping things unique. */
    548 static inline pos_t
    549 unique_curr_pos(void)
    550 {
    551 	pos_t curr = curr_pos;
    552 	curr_pos.p_uniq++;
    553 	if (curr_pos.p_file == csrc_pos.p_file)
    554 		csrc_pos.p_uniq++;
    555 	return curr;
    556 }
    557 
    558 static inline bool
    559 is_nonzero_val(const val_t *val)
    560 {
    561 	return is_floating(val->v_tspec)
    562 	    ? val->u.floating != 0.0
    563 	    : val->u.integer != 0;
    564 }
    565 
    566 static inline bool
    567 constant_is_nonzero(const tnode_t *tn)
    568 {
    569 	lint_assert(tn->tn_op == CON);
    570 	lint_assert(tn->tn_type->t_tspec == tn->tn_val.v_tspec);
    571 	return is_nonzero_val(&tn->tn_val);
    572 }
    573 
    574 static inline bool
    575 is_zero(const tnode_t *tn)
    576 {
    577 	return tn != NULL && tn->tn_op == CON && !is_nonzero_val(&tn->tn_val);
    578 }
    579 
    580 static inline bool
    581 is_nonzero(const tnode_t *tn)
    582 {
    583 	return tn != NULL && tn->tn_op == CON && is_nonzero_val(&tn->tn_val);
    584 }
    585 
    586 static inline const char *
    587 op_name(op_t op)
    588 {
    589 	return modtab[op].m_name;
    590 }
    591 
    592 static inline bool
    593 is_binary(const tnode_t *tn)
    594 {
    595 	return modtab[tn->tn_op].m_binary;
    596 }
    597 
    598 static inline uint64_t
    599 bit(unsigned i)
    600 {
    601 	/*
    602 	 * TODO: Add proper support for INT128.
    603 	 * This involves changing val_t to 128 bits.
    604 	 */
    605 	if (i >= 64)
    606 		return 0;	/* XXX: not correct for INT128 and UINT128 */
    607 
    608 	lint_assert(i < 64);
    609 	return (uint64_t)1 << i;
    610 }
    611 
    612 static inline bool
    613 msb(int64_t si, tspec_t t)
    614 {
    615 	return ((uint64_t)si & bit(size_in_bits(t) - 1)) != 0;
    616 }
    617 
    618 static inline uint64_t
    619 value_bits(unsigned bitsize)
    620 {
    621 	lint_assert(bitsize > 0);
    622 
    623 	/* for long double (80 or 128), double _Complex (128) */
    624 	/*
    625 	 * XXX: double _Complex does not have 128 bits of precision,
    626 	 * therefore it should never be necessary to query the value bits
    627 	 * of such a type; see d_c99_complex_split.c to trigger this case.
    628 	 */
    629 	if (bitsize >= 64)
    630 		return ~((uint64_t)0);
    631 
    632 	return ~(~(uint64_t)0 << bitsize);
    633 }
    634 
    635 /* C99 6.7.8p7 */
    636 static inline bool
    637 is_struct_or_union(tspec_t t)
    638 {
    639 	return t == STRUCT || t == UNION;
    640 }
    641 
    642 static inline bool
    643 is_member(const sym_t *sym)
    644 {
    645 	return sym->s_scl == STRUCT_MEMBER || sym->s_scl == UNION_MEMBER;
    646 }
    647 
    648 static inline void
    649 set_symtyp(symt_t symt)
    650 {
    651 	if (yflag)
    652 		debug_step("%s: %s -> %s", __func__,
    653 		    symt_name(symtyp), symt_name(symt));
    654 	symtyp = symt;
    655 }
    656