Home | History | Annotate | Line # | Download | only in lint1
lint1.h revision 1.136
      1 /* $NetBSD: lint1.h,v 1.136 2022/02/27 01:47:28 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  * XXX - Super conservative so that works for most systems, but we should
     41  * not depend on the host settings but the target settings in determining
     42  * the alignment. The only valid use for this is in mem1.c; uses in decl.c
     43  * are bogus.
     44  */
     45 #ifndef WORST_ALIGN
     46 #ifdef _LP64
     47 # define AVAL	15
     48 #else
     49 # define AVAL	7
     50 #endif
     51 #define WORST_ALIGN(x) (((x) + AVAL) & ~AVAL)
     52 #endif
     53 
     54 #define LWARN_BAD	(-3)
     55 #define LWARN_ALL	(-2)
     56 #define LWARN_NONE	(-1)
     57 
     58 /*
     59  * Describes the position of a declaration or anything else.
     60  *
     61  * FIXME: Just a single file:lineno pair is not enough to accurately describe
     62  *  the position of a symbol.  The whole inclusion path at that point must be
     63  *  stored as well.  This makes a difference for symbols from included
     64  *  headers, see print_stack_trace.
     65  */
     66 typedef struct {
     67 	const	char *p_file;
     68 	int	p_line;
     69 	int	p_uniq;			/* uniquifier */
     70 } pos_t;
     71 
     72 /* Copies curr_pos, keeping things unique. */
     73 #define	UNIQUE_CURR_POS(pos)						\
     74 	do {								\
     75 		(pos) = curr_pos;					\
     76 		curr_pos.p_uniq++;					\
     77 		if (curr_pos.p_file == csrc_pos.p_file)			\
     78 			csrc_pos.p_uniq++;				\
     79 	} while (false)
     80 
     81 /*
     82  * Strings cannot be referenced simply by a pointer to their first
     83  * char. This is because strings can contain NUL characters other than the
     84  * trailing NUL.
     85  *
     86  * Strings are stored with a trailing NUL.
     87  */
     88 typedef	struct strg {
     89 	tspec_t	st_tspec;		/* CHAR or WCHAR */
     90 	size_t	st_len;			/* length without trailing NUL */
     91 	union {
     92 		unsigned char *_st_cp;
     93 		wchar_t *_st_wcp;
     94 	} st_u;
     95 } strg_t;
     96 
     97 #define st_cp	st_u._st_cp
     98 #define	st_wcp	st_u._st_wcp
     99 
    100 /*
    101  * qualifiers (only for lex/yacc interface)
    102  */
    103 typedef enum {
    104 	CONST, VOLATILE, RESTRICT, THREAD
    105 } tqual_t;
    106 
    107 /* An integer or floating-point value. */
    108 typedef struct {
    109 	tspec_t	v_tspec;
    110 	/*
    111 	 * Set if an integer constant is unsigned only in C90 and later, but
    112 	 * not in traditional C.
    113 	 *
    114 	 * See the operators table in ops.def, columns "l r".
    115 	 */
    116 	bool	v_unsigned_since_c90;
    117 	union {
    118 		int64_t	_v_quad;	/* integers */
    119 		ldbl_t	_v_ldbl;	/* floats */
    120 	} v_u;
    121 } val_t;
    122 
    123 #define v_quad	v_u._v_quad
    124 #define v_ldbl	v_u._v_ldbl
    125 
    126 /*
    127  * Structures of type struct_or_union uniquely identify structures. This can't
    128  * be done in structures of type type_t, because these are copied
    129  * if they must be modified. So it would not be possible to check
    130  * if two structures are identical by comparing the pointers to
    131  * the type structures.
    132  *
    133  * The typename is used if the structure is unnamed to identify
    134  * the structure type in pass 2.
    135  */
    136 typedef	struct {
    137 	unsigned int sou_size_in_bits;
    138 	unsigned short sou_align_in_bits;
    139 	bool	sou_incomplete:1;
    140 	struct	sym *sou_first_member;
    141 	struct	sym *sou_tag;
    142 	struct	sym *sou_first_typedef;
    143 } struct_or_union;
    144 
    145 /*
    146  * same as above for enums
    147  */
    148 typedef	struct {
    149 	bool	en_incomplete:1;
    150 	struct	sym *en_first_enumerator;
    151 	struct	sym *en_tag;
    152 	struct	sym *en_first_typedef;
    153 } enumeration;
    154 
    155 /*
    156  * The type of an expression or object. Complex types are formed via t_subt
    157  * (for arrays, pointers and functions), as well as t_str.
    158  */
    159 struct lint1_type {
    160 	tspec_t	t_tspec;	/* type specifier */
    161 	bool	t_incomplete_array:1;
    162 	bool	t_const:1;	/* const modifier */
    163 	bool	t_volatile:1;	/* volatile modifier */
    164 	bool	t_proto:1;	/* function prototype (t_args valid) */
    165 	bool	t_vararg:1;	/* prototype with '...' */
    166 	bool	t_typedef:1;	/* type defined with typedef */
    167 	bool	t_bitfield:1;
    168 	/*
    169 	 * Either the type is currently an enum (having t_tspec ENUM), or
    170 	 * it is an integer type (typically INT) that has been implicitly
    171 	 * converted from an enum type.  In both cases, t_enum is valid.
    172 	 *
    173 	 * The information about a former enum type is retained to allow
    174 	 * type checks in expressions such as ((var1 & 0x0001) == var2), to
    175 	 * detect when var1 and var2 are from incompatible enum types.
    176 	 */
    177 	bool	t_is_enum:1;
    178 	bool	t_packed:1;
    179 	union {
    180 		int	_t_dim;		/* dimension (if ARRAY) */
    181 		struct_or_union	*_t_str;
    182 		enumeration	*_t_enum;
    183 		struct	sym *_t_args;	/* arguments (if t_proto) */
    184 	} t_u;
    185 	struct {
    186 		unsigned int	_t_flen:8;	/* length of bit-field */
    187 		unsigned int	_t_foffs:24;	/* offset of bit-field */
    188 	} t_b;
    189 	struct	lint1_type *t_subt; /* element type (if ARRAY),
    190 				 * return value (if FUNC),
    191 				 * target type (if PTR) */
    192 };
    193 
    194 #define	t_dim	t_u._t_dim
    195 /* TODO: rename t_str to t_sou, to avoid confusing it with strings. */
    196 #define	t_str	t_u._t_str
    197 #define	t_enum	t_u._t_enum
    198 #define	t_args	t_u._t_args
    199 #define	t_flen	t_b._t_flen
    200 #define	t_foffs	t_b._t_foffs
    201 
    202 /*
    203  * types of symbols
    204  */
    205 typedef	enum {
    206 	FVFT,		/* variables, functions, type names, enums */
    207 	FMEMBER,	/* members of structs or unions */
    208 	FTAG,		/* tags */
    209 	FLABEL		/* labels */
    210 } symt_t;
    211 
    212 /*
    213  * storage classes and related things
    214  */
    215 typedef enum {
    216 	NOSCL,
    217 	EXTERN,		/* external symbols (independent of decl_t) */
    218 	STATIC,		/* static symbols (local and global) */
    219 	AUTO,		/* automatic symbols (except register) */
    220 	REG,		/* register */
    221 	TYPEDEF,	/* typedef */
    222 	STRUCT_TAG,
    223 	UNION_TAG,
    224 	ENUM_TAG,
    225 	MOS,		/* member of struct */
    226 	MOU,		/* member of union */
    227 	CTCONST,	/* enumerator, enum constant or bool constant */
    228 	ABSTRACT,	/* abstract symbol (sizeof, casts, unnamed argument) */
    229 	OLD_STYLE_ARG,	/* old-style function argument declarations */
    230 	PROTO_ARG,	/* used in declaration stack during prototype
    231 			   declaration */
    232 	INLINE		/* only used by the parser */
    233 } scl_t;
    234 
    235 /*
    236  * symbol table entry
    237  */
    238 typedef	struct sym {
    239 	const	char *s_name;
    240 	const	char *s_rename;	/* renamed symbol's given name */
    241 	pos_t	s_def_pos;	/* position of last (prototype) definition,
    242 				   prototype declaration, no-prototype-def.,
    243 				   tentative definition or declaration,
    244 				   in this order */
    245 	pos_t	s_set_pos;	/* position of first initialization */
    246 	pos_t	s_use_pos;	/* position of first use */
    247 	symt_t	s_kind;		/* type of symbol */
    248 	const struct keyword *s_keyword;
    249 	bool	s_bitfield:1;
    250 	bool	s_set:1;	/* variable set, label defined */
    251 	bool	s_used:1;	/* variable/label used */
    252 	bool	s_arg:1;	/* symbol is function argument */
    253 	bool	s_reg:1;	/* symbol is register variable */
    254 	bool	s_defarg:1;	/* undefined symbol in old style function
    255 				   definition */
    256 	bool	s_return_type_implicit_int:1;
    257 	bool	s_osdef:1;	/* symbol stems from old style function def. */
    258 	bool	s_inline:1;	/* true if this is an inline function */
    259 	struct	sym *s_ext_sym;	/* for local declared external symbols pointer
    260 				   to external symbol with same name */
    261 	def_t	s_def;		/* declared, tentative defined, defined */
    262 	scl_t	s_scl;		/* storage class */
    263 	int	s_block_level;	/* level of declaration, -1 if not in symbol
    264 				   table */
    265 	type_t	*s_type;
    266 	val_t	s_value;	/* value (if enum or bool constant) */
    267 	union {
    268 		/* XXX: what is the difference to s_type->t_str? */
    269 		struct_or_union	*_s_st;
    270 		enumeration	*_s_et;
    271 		tspec_t	_s_tsp;	/* type (only for keywords) */
    272 		tqual_t	_s_tqu;	/* qualifier (only for keywords) */
    273 		struct	sym *_s_args; /* arguments in old style function
    274 					 definitions */
    275 	} u;
    276 	struct	sym *s_link;	/* next symbol with same hash value */
    277 	struct	sym **s_rlink;	/* pointer to s_link of prev. symbol */
    278 	struct	sym *s_next;	/* next struct/union member, enumerator,
    279 				   argument */
    280 	struct	sym *s_dlnxt;	/* next symbol declared on same level */
    281 } sym_t;
    282 
    283 #define	s_styp	u._s_st
    284 #define	s_etyp	u._s_et
    285 #define	s_tspec	u._s_tsp
    286 #define	s_tqual	u._s_tqu
    287 #define	s_args	u._s_args
    288 
    289 /*
    290  * Used to keep some information about symbols before they are entered
    291  * into the symbol table.
    292  */
    293 typedef	struct sbuf {
    294 	const	char *sb_name;		/* name of symbol */
    295 	size_t	sb_len;			/* length (without '\0') */
    296 	sym_t	*sb_sym;		/* symbol table entry */
    297 	struct	sbuf *sb_next;		/* for freelist */
    298 } sbuf_t;
    299 
    300 
    301 /*
    302  * tree node
    303  */
    304 typedef	struct tnode {
    305 	op_t	tn_op;		/* operator */
    306 	type_t	*tn_type;	/* type */
    307 	bool	tn_lvalue:1;	/* node is lvalue */
    308 	bool	tn_cast:1;	/* if tn_op == CVT, it's an explicit cast */
    309 	bool	tn_parenthesized:1;
    310 	bool	tn_sys:1;	/* in strict bool mode, allow mixture between
    311 				 * bool and scalar, for code from system
    312 				 * headers that may be a mixture between
    313 				 * scalar types and bool
    314 				 */
    315 	bool	tn_system_dependent:1; /* depends on sizeof or offsetof */
    316 	union {
    317 		struct {
    318 			struct	tnode *_tn_left;	/* (left) operand */
    319 			struct	tnode *_tn_right;	/* right operand */
    320 		} tn_s;
    321 		sym_t	*_tn_sym;	/* symbol if op == NAME */
    322 		val_t	*_tn_val;	/* value if op == CON */
    323 		strg_t	*_tn_string;	/* string if op == STRING */
    324 	} tn_u;
    325 } tnode_t;
    326 
    327 #define	tn_left		tn_u.tn_s._tn_left
    328 #define tn_right	tn_u.tn_s._tn_right
    329 #define tn_sym		tn_u._tn_sym
    330 #define	tn_val		tn_u._tn_val
    331 #define	tn_string	tn_u._tn_string
    332 
    333 struct generic_association {
    334 	type_t *ga_arg;		/* NULL means default or error */
    335 	tnode_t *ga_result;	/* NULL means error */
    336 	struct generic_association *ga_prev;
    337 };
    338 
    339 struct array_size {
    340 	bool has_dim;
    341 	int dim;
    342 };
    343 
    344 /*
    345  * For nested declarations there is a stack that holds all information
    346  * needed for the current level. dcs points to the innermost element of this
    347  * stack.
    348  *
    349  * d_ctx describes the context of the current declaration. Its value is
    350  * one of
    351  *	EXTERN		global declarations
    352  *	MOS or MOU	declarations of struct or union members
    353  *	CTCONST		declarations of enums or boolean constants
    354  *	OLD_STYLE_ARG	declaration of arguments in old-style function
    355  *			definitions
    356  *	PROTO_ARG	declaration of arguments in function prototypes
    357  *	AUTO		declaration of local symbols
    358  *	ABSTRACT	abstract declarations (sizeof, casts)
    359  *
    360  */
    361 typedef	struct dinfo {
    362 	tspec_t	d_abstract_type;/* VOID, BOOL, CHAR, INT or COMPLEX */
    363 	tspec_t	d_complex_mod;	/* FLOAT or DOUBLE */
    364 	tspec_t	d_sign_mod;	/* SIGNED or UNSIGN */
    365 	tspec_t	d_rank_mod;	/* SHORT, LONG or QUAD */
    366 	scl_t	d_scl;		/* storage class */
    367 	type_t	*d_type;	/* after end_type() pointer to the type used
    368 				   for all declarators */
    369 	sym_t	*d_redeclared_symbol;
    370 	unsigned int d_offset;	/* offset of next structure member */
    371 	unsigned short d_sou_align_in_bits; /* alignment required for current
    372 				 * structure */
    373 	scl_t	d_ctx;		/* context of declaration */
    374 	bool	d_const:1;	/* const in declaration specifiers */
    375 	bool	d_volatile:1;	/* volatile in declaration specifiers */
    376 	bool	d_inline:1;	/* inline in declaration specifiers */
    377 	bool	d_multiple_storage_classes:1; /* reported in end_type */
    378 	bool	d_invalid_type_combination:1;
    379 	bool	d_nonempty_decl:1; /* if at least one tag is declared
    380 				 * ... in the current function decl. */
    381 	bool	d_vararg:1;
    382 	bool	d_proto:1;	/* current function decl. is prototype */
    383 	bool	d_notyp:1;	/* set if no type specifier was present */
    384 	bool	d_asm:1;	/* set if d_ctx == AUTO and asm() present */
    385 	bool	d_packed:1;
    386 	bool	d_used:1;
    387 	type_t	*d_tagtyp;	/* tag during member declaration */
    388 	sym_t	*d_func_args;	/* list of arguments during function def. */
    389 	pos_t	d_func_def_pos;	/* position of function definition */
    390 	sym_t	*d_dlsyms;	/* first symbol declared at this level */
    391 	sym_t	**d_ldlsym;	/* points to s_dlnxt in last symbol decl.
    392 				   at this level */
    393 	sym_t	*d_func_proto_syms; /* symbols defined in prototype */
    394 	struct	dinfo *d_next;	/* next level */
    395 } dinfo_t;
    396 
    397 /* One level of pointer indirection in declarators, including qualifiers. */
    398 typedef	struct qual_ptr {
    399 	bool	p_const: 1;
    400 	bool	p_volatile: 1;
    401 	bool	p_pointer: 1;
    402 	struct	qual_ptr *p_next;
    403 } qual_ptr;
    404 
    405 /*
    406  * The values of the 'case' labels, linked via cl_next in reverse order of
    407  * appearance in the code, that is from bottom to top.
    408  */
    409 typedef	struct case_label {
    410 	val_t	cl_val;
    411 	struct case_label *cl_next;
    412 } case_label_t;
    413 
    414 typedef enum {
    415 	CS_DO_WHILE,
    416 	CS_FOR,
    417 	CS_FUNCTION_BODY,
    418 	CS_IF,
    419 	CS_SWITCH,
    420 	CS_WHILE
    421 } control_statement_kind;
    422 
    423 /*
    424  * Used to keep information about nested control statements.
    425  */
    426 typedef struct control_statement {
    427 	control_statement_kind c_kind;	/* to ensure proper nesting */
    428 	bool	c_loop:1;		/* 'continue' and 'break' are valid */
    429 	bool	c_switch:1;		/* 'case' and 'break' are valid */
    430 	bool	c_break:1;		/* the loop/switch has a reachable
    431 					 * 'break' statement */
    432 	bool	c_continue:1;		/* the loop has a reachable 'continue'
    433 					 * statement */
    434 	bool	c_default:1;		/* the switch has a 'default' label */
    435 	bool	c_maybe_endless:1;	/* the controlling expression is
    436 					 * always true (as in 'for (;;)' or
    437 					 * 'while (1)'), there may be break
    438 					 * statements though */
    439 	bool	c_always_then:1;
    440 	bool	c_reached_end_of_then:1;
    441 	bool	c_had_return_noval:1;	/* had "return;" */
    442 	bool	c_had_return_value:1;	/* had "return expr;" */
    443 
    444 	type_t	*c_switch_type;		/* type of switch expression */
    445 	tnode_t	*c_switch_expr;
    446 	case_label_t *c_case_labels;	/* list of case values */
    447 
    448 	struct	memory_block *c_for_expr3_mem; /* saved memory for end of loop
    449 					 * expression in for() */
    450 	tnode_t	*c_for_expr3;		/* end of loop expr in for() */
    451 	pos_t	c_for_expr3_pos;	/* position of end of loop expr */
    452 	pos_t	c_for_expr3_csrc_pos;	/* same for csrc_pos */
    453 
    454 	struct control_statement *c_surrounding;
    455 } control_statement;
    456 
    457 typedef struct {
    458 	size_t lo;			/* inclusive */
    459 	size_t hi;			/* inclusive */
    460 } range_t;
    461 
    462 #include "externs1.h"
    463 
    464 #define	ERR_SETSIZE	1024
    465 #define __NERRBITS (sizeof(unsigned int))
    466 
    467 typedef	struct err_set {
    468 	unsigned int	errs_bits[(ERR_SETSIZE + __NERRBITS-1) / __NERRBITS];
    469 } err_set;
    470 
    471 #define	ERR_SET(n, p)	\
    472 	((p)->errs_bits[(n)/__NERRBITS] |= (1 << ((n) % __NERRBITS)))
    473 #define	ERR_CLR(n, p)	\
    474 	((p)->errs_bits[(n)/__NERRBITS] &= ~(1 << ((n) % __NERRBITS)))
    475 #define	ERR_ISSET(n, p)	\
    476 	(((p)->errs_bits[(n)/__NERRBITS] & (1 << ((n) % __NERRBITS))) != 0)
    477 #define	ERR_ZERO(p)	(void)memset((p), 0, sizeof(*(p)))
    478 
    479 #define INTERNAL_ERROR(fmt, args...) \
    480 	internal_error(__FILE__, __LINE__, fmt, ##args)
    481 
    482 #define lint_assert(cond)						\
    483 	do {								\
    484 		if (!(cond))						\
    485 			assert_failed(__FILE__, __LINE__, __func__, #cond); \
    486 	} while (false)
    487 
    488 #ifdef BLKDEBUG
    489 #define INVALID_MEM_BYTE	0xa5
    490 #else
    491 #define	INVALID_MEM_BYTE	0
    492 #endif
    493 
    494 extern err_set	msgset;
    495 
    496 
    497 #ifdef DEBUG
    498 #  include "err-msgs.h"
    499 
    500 /* ARGSUSED */
    501 static inline void __attribute__((format(printf, 1, 2)))
    502 check_printf(const char *fmt, ...)
    503 {
    504 }
    505 
    506 #  define wrap_check_printf_at(func, msgid, pos, args...)		\
    507 	do {								\
    508 		check_printf(__CONCAT(MSG_, msgid), ##args);		\
    509 		(func)(msgid, pos, ##args);				\
    510 	} while (false)
    511 
    512 #  define error_at(msgid, pos, args...) \
    513 	wrap_check_printf_at(error_at, msgid, pos, ##args)
    514 #  define warning_at(msgid, pos, args...) \
    515 	wrap_check_printf_at(warning_at, msgid, pos, ##args)
    516 #  define message_at(msgid, pos, args...) \
    517 	wrap_check_printf_at(message_at, msgid, pos, ##args)
    518 
    519 #  define wrap_check_printf(func, msgid, args...)			\
    520 	do {								\
    521 		check_printf(__CONCAT(MSG_, msgid), ##args);		\
    522 		(func)(msgid, ##args);					\
    523 	} while (false)
    524 
    525 #  define error(msgid, args...) wrap_check_printf(error, msgid, ##args)
    526 #  define warning(msgid, args...) wrap_check_printf(warning, msgid, ##args)
    527 #  define gnuism(msgid, args...) wrap_check_printf(gnuism, msgid, ##args)
    528 #  define c99ism(msgid, args...) wrap_check_printf(c99ism, msgid, ##args)
    529 #  define c11ism(msgid, args...) wrap_check_printf(c11ism, msgid, ##args)
    530 #endif
    531 
    532 static inline bool
    533 is_nonzero_val(const val_t *val)
    534 {
    535 	return is_floating(val->v_tspec)
    536 	    ? val->v_ldbl != 0.0
    537 	    : val->v_quad != 0;
    538 }
    539 
    540 static inline bool
    541 constant_is_nonzero(const tnode_t *tn)
    542 {
    543 	lint_assert(tn->tn_op == CON);
    544 	lint_assert(tn->tn_type->t_tspec == tn->tn_val->v_tspec);
    545 	return is_nonzero_val(tn->tn_val);
    546 }
    547 
    548 static inline bool
    549 is_zero(const tnode_t *tn)
    550 {
    551 	return tn != NULL && tn->tn_op == CON && !is_nonzero_val(tn->tn_val);
    552 }
    553 
    554 static inline bool
    555 is_nonzero(const tnode_t *tn)
    556 {
    557 	return tn != NULL && tn->tn_op == CON && is_nonzero_val(tn->tn_val);
    558 }
    559 
    560 static inline bool
    561 is_binary(const tnode_t *tn)
    562 {
    563 	return modtab[tn->tn_op].m_binary;
    564 }
    565 
    566 static inline uint64_t
    567 bit(unsigned i)
    568 {
    569 	/*
    570 	 * TODO: Add proper support for INT128.
    571 	 * This involves changing val_t to 128 bits.
    572 	 */
    573 	if (i >= 64)
    574 		return 0;	/* XXX: not correct for INT128 and UINT128 */
    575 
    576 	lint_assert(i < 64);
    577 	return (uint64_t)1 << i;
    578 }
    579 
    580 static inline bool
    581 msb(int64_t q, tspec_t t)
    582 {
    583 	return (q & bit((unsigned int)size_in_bits(t) - 1)) != 0;
    584 }
    585 
    586 static inline uint64_t
    587 value_bits(unsigned bitsize)
    588 {
    589 	lint_assert(bitsize > 0);
    590 
    591 	/* for long double (80 or 128), double _Complex (128) */
    592 	/*
    593 	 * XXX: double _Complex does not have 128 bits of precision,
    594 	 * therefore it should never be necessary to query the value bits
    595 	 * of such a type; see d_c99_complex_split.c to trigger this case.
    596 	 */
    597 	if (bitsize >= 64)
    598 		return ~((uint64_t)0);
    599 
    600 	return ~(~(uint64_t)0 << bitsize);
    601 }
    602 
    603 /* C99 6.7.8p7 */
    604 static inline bool
    605 is_struct_or_union(tspec_t t)
    606 {
    607 	return t == STRUCT || t == UNION;
    608 }
    609