Home | History | Annotate | Line # | Download | only in lint1
tree.c revision 1.224
      1 /*	$NetBSD: tree.c,v 1.224 2021/02/28 01:30:22 rillig Exp $	*/
      2 
      3 /*
      4  * Copyright (c) 1994, 1995 Jochen Pohl
      5  * All Rights Reserved.
      6  *
      7  * Redistribution and use in source and binary forms, with or without
      8  * modification, are permitted provided that the following conditions
      9  * are met:
     10  * 1. Redistributions of source code must retain the above copyright
     11  *    notice, this list of conditions and the following disclaimer.
     12  * 2. Redistributions in binary form must reproduce the above copyright
     13  *    notice, this list of conditions and the following disclaimer in the
     14  *    documentation and/or other materials provided with the distribution.
     15  * 3. All advertising materials mentioning features or use of this software
     16  *    must display the following acknowledgement:
     17  *      This product includes software developed by Jochen Pohl for
     18  *	The NetBSD Project.
     19  * 4. The name of the author may not be used to endorse or promote products
     20  *    derived from this software without specific prior written permission.
     21  *
     22  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     23  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     24  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     25  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     26  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     27  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     28  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     29  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     30  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     31  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     32  */
     33 
     34 #if HAVE_NBTOOL_CONFIG_H
     35 #include "nbtool_config.h"
     36 #endif
     37 
     38 #include <sys/cdefs.h>
     39 #if defined(__RCSID) && !defined(lint)
     40 __RCSID("$NetBSD: tree.c,v 1.224 2021/02/28 01:30:22 rillig Exp $");
     41 #endif
     42 
     43 #include <float.h>
     44 #include <limits.h>
     45 #include <math.h>
     46 #include <signal.h>
     47 #include <stdlib.h>
     48 #include <string.h>
     49 
     50 #include "lint1.h"
     51 #include "cgram.h"
     52 
     53 static	tnode_t	*new_integer_constant_node(tspec_t, int64_t);
     54 static	void	check_pointer_comparison(op_t,
     55 					 const tnode_t *, const tnode_t *);
     56 static	bool	check_assign_types_compatible(op_t, int,
     57 					      const tnode_t *, const tnode_t *);
     58 static	void	check_bad_enum_operation(op_t,
     59 					 const tnode_t *, const tnode_t *);
     60 static	void	check_enum_type_mismatch(op_t, int,
     61 				         const tnode_t *, const tnode_t *);
     62 static	void	check_enum_int_mismatch(op_t, int,
     63 					const tnode_t *, const tnode_t *);
     64 static	tnode_t	*new_tnode(op_t, type_t *, tnode_t *, tnode_t *);
     65 static	void	balance(op_t, tnode_t **, tnode_t **);
     66 static	void	warn_incompatible_types(op_t, tspec_t, tspec_t);
     67 static	void	warn_incompatible_pointers(const mod_t *,
     68 					   const type_t *, const type_t *);
     69 static	void	merge_qualifiers(type_t **, type_t *, type_t *);
     70 static	bool	has_constant_member(const type_t *);
     71 static	void	check_prototype_conversion(int, tspec_t, tspec_t, type_t *,
     72 					   tnode_t *);
     73 static	void	check_integer_conversion(op_t, int, tspec_t, tspec_t, type_t *,
     74 					 tnode_t *);
     75 static	void	check_pointer_integer_conversion(op_t, tspec_t, type_t *,
     76 						 tnode_t *);
     77 static	void	check_pointer_conversion(op_t, tnode_t *, type_t *);
     78 static	tnode_t	*build_struct_access(op_t, tnode_t *, tnode_t *);
     79 static	tnode_t	*build_prepost_incdec(op_t, tnode_t *);
     80 static	tnode_t	*build_real_imag(op_t, tnode_t *);
     81 static	tnode_t	*build_address(tnode_t *, bool);
     82 static	tnode_t	*build_plus_minus(op_t, tnode_t *, tnode_t *);
     83 static	tnode_t	*build_bit_shift(op_t, tnode_t *, tnode_t *);
     84 static	tnode_t	*build_colon(tnode_t *, tnode_t *);
     85 static	tnode_t	*build_assignment(op_t, tnode_t *, tnode_t *);
     86 static	tnode_t	*plength(type_t *);
     87 static	tnode_t	*fold(tnode_t *);
     88 static	tnode_t	*fold_test(tnode_t *);
     89 static	tnode_t	*fold_float(tnode_t *);
     90 static	tnode_t	*check_function_arguments(type_t *, tnode_t *);
     91 static	tnode_t	*check_prototype_argument(int, type_t *, tnode_t *);
     92 static	void	check_null_effect(const tnode_t *);
     93 static	void	display_expression(const tnode_t *, int);
     94 static	void	check_array_index(tnode_t *, bool);
     95 static	void	check_integer_comparison(op_t, tnode_t *, tnode_t *);
     96 static	void	check_precedence_confusion(tnode_t *);
     97 
     98 extern sig_atomic_t fpe;
     99 
    100 #ifdef DEBUG
    101 void
    102 debug_node(const tnode_t *tn, int indent)
    103 {
    104 	op_t op;
    105 
    106 	if (tn == NULL) {
    107 		printf("%*s" "null\n", indent, "");
    108 		return;
    109 	}
    110 
    111 	op = tn->tn_op;
    112 	printf("%*s%s: %s%s%s",
    113 	    2 * indent, "",
    114 	    op == CVT && !tn->tn_cast ? "convert" :
    115 		op == NAME ? "name" : getopname(op),
    116 	    type_name(tn->tn_type), tn->tn_lvalue ? " lvalue" : "",
    117 	    tn->tn_parenthesized ? " ()" : "");
    118 
    119 	if (op == NAME)
    120 		printf(" %s\n", tn->tn_sym->s_name);
    121 	else if (op == CON && is_floating(tn->tn_type->t_tspec))
    122 		printf(" value=%Lg", tn->tn_val->v_ldbl);
    123 	else if (op == CON && is_uinteger(tn->tn_type->t_tspec))
    124 		printf(" value=%llu\n", (unsigned long long)tn->tn_val->v_quad);
    125 	else if (op == CON && is_integer(tn->tn_type->t_tspec))
    126 		printf(" value=%lld\n", (long long)tn->tn_val->v_quad);
    127 	else if (op == CON)
    128 		printf(" value=?\n");
    129 	else if (op == STRING)
    130 		printf(" length=%zu\n", tn->tn_string->st_len);
    131 	else {
    132 		printf("\n");
    133 
    134 		debug_node(tn->tn_left, indent + 1);
    135 		if (modtab[op].m_binary || tn->tn_right != NULL)
    136 			debug_node(tn->tn_right, indent + 1);
    137 	}
    138 }
    139 #endif
    140 
    141 /*
    142  * Increase degree of reference.
    143  * This is most often used to change type "T" in type "pointer to T".
    144  */
    145 type_t *
    146 incref(type_t *tp, tspec_t t)
    147 {
    148 	type_t	*tp2;
    149 
    150 	tp2 = getblk(sizeof (type_t));
    151 	tp2->t_tspec = t;
    152 	tp2->t_subt = tp;
    153 	return tp2;
    154 }
    155 
    156 /*
    157  * same for use in expressions
    158  */
    159 type_t *
    160 tincref(type_t *tp, tspec_t t)
    161 {
    162 	type_t	*tp2;
    163 
    164 	tp2 = tgetblk(sizeof (type_t));
    165 	tp2->t_tspec = t;
    166 	tp2->t_subt = tp;
    167 	return tp2;
    168 }
    169 
    170 /*
    171  * Create a node for a constant.
    172  */
    173 tnode_t *
    174 new_constant_node(type_t *tp, val_t *v)
    175 {
    176 	tnode_t	*n;
    177 
    178 	n = getnode();
    179 	n->tn_op = CON;
    180 	n->tn_type = tp;
    181 	n->tn_val = tgetblk(sizeof (val_t));
    182 	n->tn_val->v_tspec = tp->t_tspec;
    183 	n->tn_val->v_ansiu = v->v_ansiu;
    184 	n->tn_val->v_u = v->v_u;
    185 	free(v);
    186 	return n;
    187 }
    188 
    189 static tnode_t *
    190 new_integer_constant_node(tspec_t t, int64_t q)
    191 {
    192 	tnode_t	*n;
    193 
    194 	n = getnode();
    195 	n->tn_op = CON;
    196 	n->tn_type = gettyp(t);
    197 	n->tn_val = tgetblk(sizeof (val_t));
    198 	n->tn_val->v_tspec = t;
    199 	n->tn_val->v_quad = q;
    200 	return n;
    201 }
    202 
    203 static void
    204 fallback_symbol(sym_t *sym)
    205 {
    206 
    207 	if (Tflag && strcmp(sym->s_name, "__lint_false") == 0) {
    208 		sym->s_scl = CTCONST; /* close enough */
    209 		sym->s_type = gettyp(BOOL);
    210 		sym->s_value.v_tspec = BOOL;
    211 		sym->s_value.v_ansiu = false;
    212 		sym->s_value.v_quad = 0;
    213 		return;
    214 	}
    215 
    216 	if (Tflag && strcmp(sym->s_name, "__lint_true") == 0) {
    217 		sym->s_scl = CTCONST; /* close enough */
    218 		sym->s_type = gettyp(BOOL);
    219 		sym->s_value.v_tspec = BOOL;
    220 		sym->s_value.v_ansiu = false;
    221 		sym->s_value.v_quad = 1;
    222 		return;
    223 	}
    224 
    225 	if (blklev > 0 && (strcmp(sym->s_name, "__FUNCTION__") == 0 ||
    226 			   strcmp(sym->s_name, "__PRETTY_FUNCTION__") == 0)) {
    227 		/* __FUNCTION__/__PRETTY_FUNCTION__ is a GCC extension */
    228 		gnuism(316);
    229 		sym->s_type = incref(gettyp(CHAR), PTR);
    230 		sym->s_type->t_const = true;
    231 		return;
    232 	}
    233 
    234 	if (blklev > 0 && strcmp(sym->s_name, "__func__") == 0) {
    235 		if (!Sflag)
    236 			/* __func__ is a C9X feature */
    237 			warning(317);
    238 		sym->s_type = incref(gettyp(CHAR), PTR);
    239 		sym->s_type->t_const = true;
    240 		return;
    241 	}
    242 
    243 	/* %s undefined */
    244 	error(99, sym->s_name);
    245 }
    246 
    247 /*
    248  * Create a node for a name (symbol table entry).
    249  * ntok is the token which follows the name.
    250  */
    251 tnode_t *
    252 new_name_node(sym_t *sym, int ntok)
    253 {
    254 	tnode_t	*n;
    255 
    256 	if (sym->s_scl == NOSCL) {
    257 		sym->s_scl = EXTERN;
    258 		sym->s_def = DECL;
    259 		if (ntok == T_LPAREN) {
    260 			if (sflag) {
    261 				/* function implicitly declared to ... */
    262 				warning(215);
    263 			}
    264 			/*
    265 			 * XXX if tflag is set the symbol should be
    266 			 * exported to level 0
    267 			 */
    268 			sym->s_type = incref(sym->s_type, FUNC);
    269 		} else {
    270 			fallback_symbol(sym);
    271 		}
    272 	}
    273 
    274 	if (sym->s_kind != FVFT && sym->s_kind != FMEMBER)
    275 		LERROR("new_name_node(%d)", sym->s_kind);
    276 
    277 	n = getnode();
    278 	n->tn_type = sym->s_type;
    279 	if (sym->s_scl != CTCONST) {
    280 		n->tn_op = NAME;
    281 		n->tn_sym = sym;
    282 		if (sym->s_kind == FVFT && sym->s_type->t_tspec != FUNC)
    283 			n->tn_lvalue = true;
    284 	} else {
    285 		n->tn_op = CON;
    286 		n->tn_val = tgetblk(sizeof (val_t));
    287 		*n->tn_val = sym->s_value;
    288 	}
    289 
    290 	return n;
    291 }
    292 
    293 tnode_t *
    294 new_string_node(strg_t *strg)
    295 {
    296 	size_t	len;
    297 	tnode_t	*n;
    298 
    299 	len = strg->st_len;
    300 
    301 	n = getnode();
    302 
    303 	n->tn_op = STRING;
    304 	n->tn_type = tincref(gettyp(strg->st_tspec), ARRAY);
    305 	n->tn_type->t_dim = len + 1;
    306 	n->tn_lvalue = true;
    307 
    308 	n->tn_string = tgetblk(sizeof (strg_t));
    309 	n->tn_string->st_tspec = strg->st_tspec;
    310 	n->tn_string->st_len = len;
    311 
    312 	if (strg->st_tspec == CHAR) {
    313 		n->tn_string->st_cp = tgetblk(len + 1);
    314 		(void)memcpy(n->tn_string->st_cp, strg->st_cp, len + 1);
    315 		free(strg->st_cp);
    316 	} else {
    317 		n->tn_string->st_wcp = tgetblk((len + 1) * sizeof (wchar_t));
    318 		(void)memcpy(n->tn_string->st_wcp, strg->st_wcp,
    319 			     (len + 1) * sizeof (wchar_t));
    320 		free(strg->st_wcp);
    321 	}
    322 	free(strg);
    323 
    324 	return n;
    325 }
    326 
    327 /*
    328  * Returns a symbol which has the same name as the msym argument and is a
    329  * member of the struct or union specified by the tn argument.
    330  */
    331 sym_t *
    332 struct_or_union_member(tnode_t *tn, op_t op, sym_t *msym)
    333 {
    334 	struct_or_union	*str;
    335 	type_t	*tp;
    336 	sym_t	*sym, *csym;
    337 	bool	eq;
    338 	tspec_t	t;
    339 
    340 	/*
    341 	 * Remove the member if it was unknown until now, which means
    342 	 * that no defined struct or union has a member with the same name.
    343 	 */
    344 	if (msym->s_scl == NOSCL) {
    345 		/* undefined struct/union member: %s */
    346 		error(101, msym->s_name);
    347 		rmsym(msym);
    348 		msym->s_kind = FMEMBER;
    349 		msym->s_scl = MOS;
    350 		msym->s_styp = tgetblk(sizeof (struct_or_union));
    351 		msym->s_styp->sou_tag = tgetblk(sizeof (sym_t));
    352 		msym->s_styp->sou_tag->s_name = unnamed;
    353 		msym->s_value.v_tspec = INT;
    354 		return msym;
    355 	}
    356 
    357 	/* Set str to the tag of which msym is expected to be a member. */
    358 	str = NULL;
    359 	t = (tp = tn->tn_type)->t_tspec;
    360 	if (op == POINT) {
    361 		if (t == STRUCT || t == UNION)
    362 			str = tp->t_str;
    363 	} else if (op == ARROW && t == PTR) {
    364 		t = (tp = tp->t_subt)->t_tspec;
    365 		if (t == STRUCT || t == UNION)
    366 			str = tp->t_str;
    367 	}
    368 
    369 	/*
    370 	 * If this struct/union has a member with the name of msym, return it.
    371 	 */
    372 	if (str != NULL) {
    373 		for (sym = msym; sym != NULL; sym = sym->s_link) {
    374 			if (sym->s_scl != MOS && sym->s_scl != MOU)
    375 				continue;
    376 			if (sym->s_styp != str)
    377 				continue;
    378 			if (strcmp(sym->s_name, msym->s_name) != 0)
    379 				continue;
    380 			return sym;
    381 		}
    382 	}
    383 
    384 	/*
    385 	 * Set eq to false if there are struct/union members with the same
    386 	 * name and different types and/or offsets.
    387 	 */
    388 	eq = true;
    389 	for (csym = msym; csym != NULL; csym = csym->s_link) {
    390 		if (csym->s_scl != MOS && csym->s_scl != MOU)
    391 			continue;
    392 		if (strcmp(msym->s_name, csym->s_name) != 0)
    393 			continue;
    394 		for (sym = csym->s_link ; sym != NULL; sym = sym->s_link) {
    395 			bool w;
    396 
    397 			if (sym->s_scl != MOS && sym->s_scl != MOU)
    398 				continue;
    399 			if (strcmp(csym->s_name, sym->s_name) != 0)
    400 				continue;
    401 			if (csym->s_value.v_quad != sym->s_value.v_quad) {
    402 				eq = false;
    403 				break;
    404 			}
    405 			w = false;
    406 			eq = eqtype(csym->s_type, sym->s_type,
    407 			    false, false, &w) && !w;
    408 			if (!eq)
    409 				break;
    410 			if (csym->s_bitfield != sym->s_bitfield) {
    411 				eq = false;
    412 				break;
    413 			}
    414 			if (csym->s_bitfield) {
    415 				type_t	*tp1, *tp2;
    416 
    417 				tp1 = csym->s_type;
    418 				tp2 = sym->s_type;
    419 				if (tp1->t_flen != tp2->t_flen) {
    420 					eq = false;
    421 					break;
    422 				}
    423 				if (tp1->t_foffs != tp2->t_foffs) {
    424 					eq = false;
    425 					break;
    426 				}
    427 			}
    428 		}
    429 		if (!eq)
    430 			break;
    431 	}
    432 
    433 	/*
    434 	 * Now handle the case in which the left operand refers really
    435 	 * to a struct/union, but the right operand is not member of it.
    436 	 */
    437 	if (str != NULL) {
    438 		if (eq && tflag) {
    439 			/* illegal member use: %s */
    440 			warning(102, msym->s_name);
    441 		} else {
    442 			/* illegal member use: %s */
    443 			error(102, msym->s_name);
    444 		}
    445 		return msym;
    446 	}
    447 
    448 	/*
    449 	 * Now the left operand of ARROW does not point to a struct/union
    450 	 * or the left operand of POINT is no struct/union.
    451 	 */
    452 	if (eq) {
    453 		if (op == POINT) {
    454 			if (tflag) {
    455 				/* left operand of '.' must be struct/... */
    456 				warning(103);
    457 			} else {
    458 				/* left operand of '.' must be struct/... */
    459 				error(103);
    460 			}
    461 		} else {
    462 			if (tflag && tn->tn_type->t_tspec == PTR) {
    463 				/* left operand of '->' must be pointer ... */
    464 				warning(104, type_name(tn->tn_type));
    465 			} else {
    466 				/* left operand of '->' must be pointer ... */
    467 				error(104, type_name(tn->tn_type));
    468 			}
    469 		}
    470 	} else {
    471 		if (tflag) {
    472 			/* non-unique member requires struct/union %s */
    473 			error(105, op == POINT ? "object" : "pointer");
    474 		} else {
    475 			/* unacceptable operand of '%s' */
    476 			error(111, modtab[op].m_name);
    477 		}
    478 	}
    479 
    480 	return msym;
    481 }
    482 
    483 /*
    484  * Create a tree node. Called for most operands except function calls,
    485  * sizeof and casts.
    486  *
    487  * op	operator
    488  * ln	left operand
    489  * rn	if not NULL, right operand
    490  */
    491 tnode_t *
    492 build(op_t op, tnode_t *ln, tnode_t *rn)
    493 {
    494 	mod_t	*mp;
    495 	tnode_t	*ntn;
    496 	type_t	*rettp;
    497 
    498 	mp = &modtab[op];
    499 
    500 	/* If there was an error in one of the operands, return. */
    501 	if (ln == NULL || (mp->m_binary && rn == NULL))
    502 		return NULL;
    503 
    504 	/*
    505 	 * Apply class conversions to the left operand, but only if its
    506 	 * value is needed or it is compared with null.
    507 	 */
    508 	if (mp->m_left_value_context || mp->m_left_test_context)
    509 		ln = cconv(ln);
    510 	/*
    511 	 * The right operand is almost always in a test or value context,
    512 	 * except if it is a struct or union member.
    513 	 */
    514 	if (mp->m_binary && op != ARROW && op != POINT)
    515 		rn = cconv(rn);
    516 
    517 	/*
    518 	 * Print some warnings for comparisons of unsigned values with
    519 	 * constants lower than or equal to null. This must be done
    520 	 * before promote() because otherwise unsigned char and unsigned
    521 	 * short would be promoted to int. Also types are tested to be
    522 	 * CHAR, which would also become int.
    523 	 */
    524 	if (mp->m_comparison)
    525 		check_integer_comparison(op, ln, rn);
    526 
    527 	/*
    528 	 * Promote the left operand if it is in a test or value context
    529 	 */
    530 	if (mp->m_left_value_context || mp->m_left_test_context)
    531 		ln = promote(op, false, ln);
    532 	/*
    533 	 * Promote the right operand, but only if it is no struct or
    534 	 * union member, or if it is not to be assigned to the left operand
    535 	 */
    536 	if (mp->m_binary && op != ARROW && op != POINT &&
    537 	    op != ASSIGN && op != RETURN) {
    538 		rn = promote(op, false, rn);
    539 	}
    540 
    541 	/*
    542 	 * If the result of the operation is different for signed or
    543 	 * unsigned operands and one of the operands is signed only in
    544 	 * ANSI C, print a warning.
    545 	 */
    546 	if (mp->m_warn_if_left_unsigned_in_c90 &&
    547 	    ln->tn_op == CON && ln->tn_val->v_ansiu) {
    548 		/* ANSI C treats constant as unsigned, op %s */
    549 		warning(218, mp->m_name);
    550 		ln->tn_val->v_ansiu = false;
    551 	}
    552 	if (mp->m_warn_if_right_unsigned_in_c90 &&
    553 	    rn->tn_op == CON && rn->tn_val->v_ansiu) {
    554 		/* ANSI C treats constant as unsigned, op %s */
    555 		warning(218, mp->m_name);
    556 		rn->tn_val->v_ansiu = false;
    557 	}
    558 
    559 	/* Make sure both operands are of the same type */
    560 	if (mp->m_balance_operands || (tflag && (op == SHL || op == SHR)))
    561 		balance(op, &ln, &rn);
    562 
    563 	/*
    564 	 * Check types for compatibility with the operation and mutual
    565 	 * compatibility. Return if there are serious problems.
    566 	 */
    567 	if (!typeok(op, 0, ln, rn))
    568 		return NULL;
    569 
    570 	/* And now create the node. */
    571 	switch (op) {
    572 	case POINT:
    573 	case ARROW:
    574 		ntn = build_struct_access(op, ln, rn);
    575 		break;
    576 	case INCAFT:
    577 	case DECAFT:
    578 	case INCBEF:
    579 	case DECBEF:
    580 		ntn = build_prepost_incdec(op, ln);
    581 		break;
    582 	case ADDR:
    583 		ntn = build_address(ln, false);
    584 		break;
    585 	case INDIR:
    586 		ntn = new_tnode(INDIR, ln->tn_type->t_subt, ln, NULL);
    587 		break;
    588 	case PLUS:
    589 	case MINUS:
    590 		ntn = build_plus_minus(op, ln, rn);
    591 		break;
    592 	case SHL:
    593 	case SHR:
    594 		ntn = build_bit_shift(op, ln, rn);
    595 		break;
    596 	case COLON:
    597 		ntn = build_colon(ln, rn);
    598 		break;
    599 	case ASSIGN:
    600 	case MULASS:
    601 	case DIVASS:
    602 	case MODASS:
    603 	case ADDASS:
    604 	case SUBASS:
    605 	case SHLASS:
    606 	case SHRASS:
    607 	case ANDASS:
    608 	case XORASS:
    609 	case ORASS:
    610 	case RETURN:
    611 		ntn = build_assignment(op, ln, rn);
    612 		break;
    613 	case COMMA:
    614 	case QUEST:
    615 		ntn = new_tnode(op, rn->tn_type, ln, rn);
    616 		break;
    617 	case REAL:
    618 	case IMAG:
    619 		ntn = build_real_imag(op, ln);
    620 		break;
    621 	default:
    622 		rettp = mp->m_returns_bool
    623 		    ? gettyp(Tflag ? BOOL : INT) : ln->tn_type;
    624 		lint_assert(mp->m_binary || rn == NULL);
    625 		ntn = new_tnode(op, rettp, ln, rn);
    626 		break;
    627 	}
    628 
    629 	/* Return if an error occurred. */
    630 	if (ntn == NULL)
    631 		return NULL;
    632 
    633 	/* Print a warning if precedence confusion is possible */
    634 	if (mp->m_possible_precedence_confusion)
    635 		check_precedence_confusion(ntn);
    636 
    637 	/*
    638 	 * Print a warning if one of the operands is in a context where
    639 	 * it is compared with null and if this operand is a constant.
    640 	 */
    641 	if (mp->m_left_test_context) {
    642 		if (ln->tn_op == CON ||
    643 		    ((mp->m_binary && op != QUEST) && rn->tn_op == CON)) {
    644 			if (hflag && !constcond_flag)
    645 				/* constant in conditional context */
    646 				warning(161);
    647 		}
    648 	}
    649 
    650 	/* Fold if the operator requires it */
    651 	if (mp->m_fold_constant_operands) {
    652 		if (ln->tn_op == CON && (!mp->m_binary || rn->tn_op == CON)) {
    653 			if (mp->m_left_test_context) {
    654 				ntn = fold_test(ntn);
    655 			} else if (is_floating(ntn->tn_type->t_tspec)) {
    656 				ntn = fold_float(ntn);
    657 			} else {
    658 				ntn = fold(ntn);
    659 			}
    660 		} else if (op == QUEST && ln->tn_op == CON) {
    661 			ntn = ln->tn_val->v_quad != 0
    662 			    ? rn->tn_left : rn->tn_right;
    663 		}
    664 	}
    665 
    666 	return ntn;
    667 }
    668 
    669 /*
    670  * Perform class conversions.
    671  *
    672  * Arrays of type T are converted into pointers to type T.
    673  * Functions are converted to pointers to functions.
    674  * Lvalues are converted to rvalues.
    675  */
    676 tnode_t *
    677 cconv(tnode_t *tn)
    678 {
    679 	type_t	*tp;
    680 
    681 	/*
    682 	 * Array-lvalue (array of type T) is converted into rvalue
    683 	 * (pointer to type T)
    684 	 */
    685 	if (tn->tn_type->t_tspec == ARRAY) {
    686 		if (!tn->tn_lvalue) {
    687 			/* XXX print correct operator */
    688 			/* %soperand of '%s' must be lvalue */
    689 			gnuism(114, "", modtab[ADDR].m_name);
    690 		}
    691 		tn = new_tnode(ADDR, tincref(tn->tn_type->t_subt, PTR),
    692 			     tn, NULL);
    693 	}
    694 
    695 	/*
    696 	 * Expression of type function (function with return value of type T)
    697 	 * in rvalue-expression (pointer to function with return value
    698 	 * of type T)
    699 	 */
    700 	if (tn->tn_type->t_tspec == FUNC)
    701 		tn = build_address(tn, true);
    702 
    703 	/* lvalue to rvalue */
    704 	if (tn->tn_lvalue) {
    705 		tp = tduptyp(tn->tn_type);
    706 		tp->t_const = tp->t_volatile = false;
    707 		tn = new_tnode(LOAD, tp, tn, NULL);
    708 	}
    709 
    710 	return tn;
    711 }
    712 
    713 static const tnode_t *
    714 before_conversion(const tnode_t *tn)
    715 {
    716 	while (tn->tn_op == CVT && !tn->tn_cast)
    717 		tn = tn->tn_left;
    718 	return tn;
    719 }
    720 
    721 static bool
    722 is_null_pointer(const tnode_t *tn)
    723 {
    724 	tspec_t t = tn->tn_type->t_tspec;
    725 
    726 	return ((t == PTR && tn->tn_type->t_subt->t_tspec == VOID) ||
    727 		is_integer(t))
    728 	       && (tn->tn_op == CON && tn->tn_val->v_quad == 0);
    729 }
    730 
    731 /*
    732  * See if the node is valid as operand of an operator that compares its
    733  * argument with 0.
    734  */
    735 bool
    736 is_typeok_bool_operand(const tnode_t *tn)
    737 {
    738 	tspec_t t;
    739 
    740 	lint_assert(Tflag);
    741 
    742 	tn = before_conversion(tn);
    743 	t = tn->tn_type->t_tspec;
    744 
    745 	if (t == BOOL)
    746 		return true;
    747 
    748 	if (tn->tn_from_system_header && is_scalar(t))
    749 		return true;
    750 
    751 	/* For enums that are used as bit sets, allow "flags & FLAG". */
    752 	if (tn->tn_op == BITAND &&
    753 	    tn->tn_left->tn_op == CVT &&
    754 	    tn->tn_left->tn_type->t_tspec == INT && !tn->tn_left->tn_cast &&
    755 	    tn->tn_left->tn_left->tn_type->t_tspec == ENUM &&
    756 	    /*
    757 	     * XXX: Somehow the type information got lost here.  The type
    758 	     * of the enum constant on the right-hand side should still be
    759 	     * ENUM, but is INT.
    760 	     */
    761 	    tn->tn_right->tn_type->t_tspec == INT)
    762 		return true;
    763 
    764 	return false;
    765 }
    766 
    767 static bool
    768 typeok_incdec(const mod_t *mp, const tnode_t *tn, const type_t *tp)
    769 {
    770 	/* operand has scalar type (checked in typeok) */
    771 	if (!tn->tn_lvalue) {
    772 		if (tn->tn_op == CVT && tn->tn_cast &&
    773 		    tn->tn_left->tn_op == LOAD) {
    774 			if (tn->tn_type->t_tspec == PTR)
    775 				return true;
    776 			/* a cast does not yield an lvalue */
    777 			error(163);
    778 		}
    779 		/* %soperand of '%s' must be lvalue */
    780 		error(114, "", mp->m_name);
    781 		return false;
    782 	} else if (tp->t_const) {
    783 		if (!tflag)
    784 			/* %soperand of '%s' must be modifiable lvalue */
    785 			warning(115, "", mp->m_name);
    786 	}
    787 	return true;
    788 }
    789 
    790 static bool
    791 typeok_address(const mod_t *mp,
    792 	    const tnode_t *tn, const type_t *tp, tspec_t t)
    793 {
    794 	if (t == ARRAY || t == FUNC) {
    795 		/* ok, a warning comes later (in build_address()) */
    796 	} else if (!tn->tn_lvalue) {
    797 		if (tn->tn_op == CVT && tn->tn_cast &&
    798 		    tn->tn_left->tn_op == LOAD) {
    799 			if (tn->tn_type->t_tspec == PTR)
    800 				return true;
    801 			/* a cast does not yield an lvalue */
    802 			error(163);
    803 		}
    804 		/* %soperand of '%s' must be lvalue */
    805 		error(114, "", mp->m_name);
    806 		return false;
    807 	} else if (is_scalar(t)) {
    808 		if (tp->t_bitfield) {
    809 			/* cannot take address of bit-field */
    810 			error(112);
    811 			return false;
    812 		}
    813 	} else if (t != STRUCT && t != UNION) {
    814 		/* unacceptable operand of '%s' */
    815 		error(111, mp->m_name);
    816 		return false;
    817 	}
    818 	if (tn->tn_op == NAME && tn->tn_sym->s_reg) {
    819 		/* cannot take address of register %s */
    820 		error(113, tn->tn_sym->s_name);
    821 		return false;
    822 	}
    823 	return true;
    824 }
    825 
    826 static bool
    827 typeok_star(tspec_t t)
    828 {
    829 	/* until now there were no type checks for this operator */
    830 	if (t != PTR) {
    831 		/* cannot dereference non-pointer type */
    832 		error(96);
    833 		return false;
    834 	}
    835 	return true;
    836 }
    837 
    838 static bool
    839 typeok_plus(op_t op, tspec_t lt, tspec_t rt)
    840 {
    841 	/* operands have scalar types (checked above) */
    842 	if ((lt == PTR && !is_integer(rt)) || (rt == PTR && !is_integer(lt))) {
    843 		warn_incompatible_types(op, lt, rt);
    844 		return false;
    845 	}
    846 	return true;
    847 }
    848 
    849 static bool
    850 typeok_minus(op_t op,
    851 	     const type_t *ltp, tspec_t lt,
    852 	     const type_t *rtp, tspec_t rt)
    853 {
    854 	/* operands have scalar types (checked above) */
    855 	if (lt == PTR && (!is_integer(rt) && rt != PTR)) {
    856 		warn_incompatible_types(op, lt, rt);
    857 		return false;
    858 	} else if (rt == PTR && lt != PTR) {
    859 		warn_incompatible_types(op, lt, rt);
    860 		return false;
    861 	}
    862 	if (lt == PTR && rt == PTR) {
    863 		if (!eqtype(ltp->t_subt, rtp->t_subt, true, false, NULL)) {
    864 			/* illegal pointer subtraction */
    865 			error(116);
    866 		}
    867 	}
    868 	return true;
    869 }
    870 
    871 static void
    872 typeok_shr(const mod_t *mp,
    873 	   const tnode_t *ln, tspec_t lt,
    874 	   const tnode_t *rn, tspec_t rt)
    875 {
    876 	tspec_t olt, ort;
    877 
    878 	olt = before_conversion(ln)->tn_type->t_tspec;
    879 	ort = before_conversion(rn)->tn_type->t_tspec;
    880 
    881 	/* operands have integer types (checked above) */
    882 	if (pflag && !is_uinteger(lt)) {
    883 		/*
    884 		 * The left operand is signed. This means that
    885 		 * the operation is (possibly) nonportable.
    886 		 */
    887 		if (ln->tn_op != CON) {
    888 			/* bitwise '%s' on signed value possibly nonportable */
    889 			warning(117, mp->m_name);
    890 		} else if (ln->tn_val->v_quad < 0) {
    891 			/* bitwise '%s' on signed value nonportable */
    892 			warning(120, mp->m_name);
    893 		}
    894 	} else if (!tflag && !sflag && !is_uinteger(olt) && is_uinteger(ort)) {
    895 		/*
    896 		 * The left operand would become unsigned in
    897 		 * traditional C.
    898 		 */
    899 		if (hflag &&
    900 		    (ln->tn_op != CON || ln->tn_val->v_quad < 0)) {
    901 			/* semantics of '%s' change in ANSI C; use ... */
    902 			warning(118, mp->m_name);
    903 		}
    904 	} else if (!tflag && !sflag && !is_uinteger(olt) && !is_uinteger(ort) &&
    905 		   psize(lt) < psize(rt)) {
    906 		/*
    907 		 * In traditional C the left operand would be extended,
    908 		 * possibly with 1, and then shifted.
    909 		 */
    910 		if (hflag &&
    911 		    (ln->tn_op != CON || ln->tn_val->v_quad < 0)) {
    912 			/* semantics of '%s' change in ANSI C; use ... */
    913 			warning(118, mp->m_name);
    914 		}
    915 	}
    916 }
    917 
    918 static void
    919 typeok_shl(const mod_t *mp, tspec_t lt, tspec_t rt)
    920 {
    921 	/*
    922 	 * C90 does not perform balancing for shift operations,
    923 	 * but traditional C does. If the width of the right operand
    924 	 * is greater than the width of the left operand, then in
    925 	 * traditional C the left operand would be extended to the
    926 	 * width of the right operand. For SHL this may result in
    927 	 * different results.
    928 	 */
    929 	if (psize(lt) < psize(rt)) {
    930 		/*
    931 		 * XXX If both operands are constant, make sure
    932 		 * that there is really a difference between
    933 		 * ANSI C and traditional C.
    934 		 */
    935 		if (hflag)
    936 			/* semantics of '%s' change in ANSI C; use ... */
    937 			warning(118, mp->m_name);
    938 	}
    939 }
    940 
    941 static void
    942 typeok_shift(tspec_t lt, const tnode_t *rn, tspec_t rt)
    943 {
    944 	if (rn->tn_op == CON) {
    945 		if (!is_uinteger(rt) && rn->tn_val->v_quad < 0) {
    946 			/* negative shift */
    947 			warning(121);
    948 		} else if ((uint64_t)rn->tn_val->v_quad == (uint64_t)size(lt)) {
    949 			/* shift equal to size of object */
    950 			warning(267);
    951 		} else if ((uint64_t)rn->tn_val->v_quad > (uint64_t)size(lt)) {
    952 			/* shift greater than size of object */
    953 			warning(122);
    954 		}
    955 	}
    956 }
    957 
    958 static bool
    959 is_typeok_eq(const tnode_t *ln, tspec_t lt, const tnode_t *rn, tspec_t rt)
    960 {
    961 	if (lt == PTR && is_null_pointer(rn))
    962 		return true;
    963 	if (rt == PTR && is_null_pointer(ln))
    964 		return true;
    965 	return false;
    966 }
    967 
    968 static bool
    969 typeok_ordered_comparison(op_t op,
    970 			  const tnode_t *ln, const type_t *ltp, tspec_t lt,
    971 			  const tnode_t *rn, const type_t *rtp, tspec_t rt)
    972 {
    973 	if (lt == PTR && rt == PTR) {
    974 		check_pointer_comparison(op, ln, rn);
    975 		return true;
    976 	}
    977 
    978 	if (lt != PTR && rt != PTR)
    979 		return true;
    980 
    981 	if (!is_integer(lt) && !is_integer(rt)) {
    982 		warn_incompatible_types(op, lt, rt);
    983 		return false;
    984 	}
    985 
    986 	const char *lx = lt == PTR ? "pointer" : "integer";
    987 	const char *rx = rt == PTR ? "pointer" : "integer";
    988 	/* illegal combination of %s (%s) and %s (%s), op %s */
    989 	warning(123, lx, type_name(ltp), rx, type_name(rtp), getopname(op));
    990 	return true;
    991 }
    992 
    993 static bool
    994 typeok_quest(tspec_t lt, const tnode_t **rn)
    995 {
    996 	if (!is_scalar(lt)) {
    997 		/* first operand must have scalar type, op ? : */
    998 		error(170);
    999 		return false;
   1000 	}
   1001 	while ((*rn)->tn_op == CVT)
   1002 		*rn = (*rn)->tn_left;
   1003 	lint_assert((*rn)->tn_op == COLON);
   1004 	return true;
   1005 }
   1006 
   1007 static void
   1008 typeok_colon_pointer(const mod_t *mp, const type_t *ltp, const type_t *rtp)
   1009 {
   1010 	type_t *lstp = ltp->t_subt;
   1011 	type_t *rstp = rtp->t_subt;
   1012 	tspec_t lst = lstp->t_tspec;
   1013 	tspec_t rst = rstp->t_tspec;
   1014 
   1015 	if ((lst == VOID && rst == FUNC) || (lst == FUNC && rst == VOID)) {
   1016 		/* (void *)0 handled above */
   1017 		if (sflag)
   1018 			/* ANSI C forbids conv. of %s to %s, op %s */
   1019 			warning(305, "function pointer", "'void *'",
   1020 			    mp->m_name);
   1021 		return;
   1022 	}
   1023 
   1024 	if (eqptrtype(lstp, rstp, true))
   1025 		return;
   1026 	if (!eqtype(lstp, rstp, true, false, NULL))
   1027 		warn_incompatible_pointers(mp, ltp, rtp);
   1028 }
   1029 
   1030 static bool
   1031 typeok_colon(const mod_t *mp,
   1032 	     const tnode_t *ln, const type_t *ltp, tspec_t lt,
   1033 	     const tnode_t *rn, const type_t *rtp, tspec_t rt)
   1034 {
   1035 
   1036 	if (is_arithmetic(lt) && is_arithmetic(rt))
   1037 		return true;
   1038 	if (lt == BOOL && rt == BOOL)
   1039 		return true;
   1040 
   1041 	if (lt == STRUCT && rt == STRUCT && ltp->t_str == rtp->t_str)
   1042 		return true;
   1043 	if (lt == UNION && rt == UNION && ltp->t_str == rtp->t_str)
   1044 		return true;
   1045 
   1046 	if (lt == PTR && is_null_pointer(rn))
   1047 		return true;
   1048 	if (rt == PTR && is_null_pointer(ln))
   1049 		return true;
   1050 
   1051 	if ((lt == PTR && is_integer(rt)) || (is_integer(lt) && rt == PTR)) {
   1052 		const char *lx = lt == PTR ?  "pointer" : "integer";
   1053 		const char *rx = rt == PTR ?  "pointer" : "integer";
   1054 		/* illegal combination of %s (%s) and %s (%s), op %s */
   1055 		warning(123, lx, type_name(ltp),
   1056 		    rx, type_name(rtp), mp->m_name);
   1057 		return true;
   1058 	}
   1059 
   1060 	if (lt == VOID || rt == VOID) {
   1061 		if (lt != VOID || rt != VOID)
   1062 			/* incompatible types '%s' and '%s' in conditional */
   1063 			warning(126, type_name(ltp), type_name(rtp));
   1064 		return true;
   1065 	}
   1066 
   1067 	if (lt == PTR && rt == PTR) {
   1068 		typeok_colon_pointer(mp, ltp, rtp);
   1069 		return true;
   1070 	}
   1071 
   1072 	/* incompatible types '%s' and '%s' in conditional */
   1073 	error(126, type_name(ltp), type_name(rtp));
   1074 	return false;
   1075 }
   1076 
   1077 static bool
   1078 typeok_assign(const mod_t *mp, const tnode_t *ln, const type_t *ltp, tspec_t lt)
   1079 {
   1080 	if (!ln->tn_lvalue) {
   1081 		if (ln->tn_op == CVT && ln->tn_cast &&
   1082 		    ln->tn_left->tn_op == LOAD) {
   1083 			if (ln->tn_type->t_tspec == PTR)
   1084 				return true;
   1085 			/* a cast does not yield an lvalue */
   1086 			error(163);
   1087 		}
   1088 		/* %soperand of '%s' must be lvalue */
   1089 		error(114, "left ", mp->m_name);
   1090 		return false;
   1091 	} else if (ltp->t_const || ((lt == STRUCT || lt == UNION) &&
   1092 				    has_constant_member(ltp))) {
   1093 		if (!tflag)
   1094 			/* %soperand of '%s' must be modifiable lvalue */
   1095 			warning(115, "left ", mp->m_name);
   1096 	}
   1097 	return true;
   1098 }
   1099 
   1100 /*
   1101  * See if in strict bool mode, the operator takes either two bool operands
   1102  * or two arbitrary other operands.
   1103  */
   1104 static bool
   1105 is_assignment_bool_or_other(op_t op)
   1106 {
   1107 	return op == ASSIGN ||
   1108 	       op == ANDASS || op == XORASS || op == ORASS ||
   1109 	       op == RETURN || op == FARG;
   1110 }
   1111 
   1112 static bool
   1113 is_symmetric_bool_or_other(op_t op)
   1114 {
   1115 	return op == EQ || op == NE ||
   1116 	       op == BITAND || op == BITXOR || op == BITOR ||
   1117 	       op == COLON;
   1118 }
   1119 
   1120 static bool
   1121 is_int_constant_zero(const tnode_t *tn, tspec_t t)
   1122 {
   1123 	return t == INT && tn->tn_op == CON && tn->tn_val->v_quad == 0;
   1124 }
   1125 
   1126 static bool
   1127 is_typeok_strict_bool(op_t op,
   1128 		      const tnode_t *ln, tspec_t lt,
   1129 		      const tnode_t *rn, tspec_t rt)
   1130 {
   1131 	if (rn == NULL)
   1132 		return true;	/* TODO: check unary operators as well. */
   1133 
   1134 	if ((lt == BOOL) == (rt == BOOL))
   1135 		return true;
   1136 
   1137 	if ((ln->tn_from_system_header || rn->tn_from_system_header) &&
   1138 	    (is_int_constant_zero(ln, lt) || is_int_constant_zero(rn, rt)))
   1139 		return true;
   1140 
   1141 	if (is_assignment_bool_or_other(op)) {
   1142 		return lt != BOOL &&
   1143 		       (ln->tn_from_system_header || rn->tn_from_system_header);
   1144 	}
   1145 
   1146 	return !is_symmetric_bool_or_other(op);
   1147 }
   1148 
   1149 /*
   1150  * Some operators require that either both operands are bool or both are
   1151  * scalar.
   1152  *
   1153  * Code that passes this check can be compiled in a pre-C99 environment that
   1154  * doesn't implement the special rule C99 6.3.1.2, without silent change in
   1155  * behavior.
   1156  */
   1157 static bool
   1158 typeok_strict_bool_compatible(op_t op, int arg,
   1159 			      const tnode_t *ln, tspec_t lt,
   1160 			      const tnode_t *rn, tspec_t rt)
   1161 {
   1162 
   1163 	if (is_typeok_strict_bool(op, ln, lt, rn, rt))
   1164 		return true;
   1165 
   1166 	if (op == FARG) {
   1167 		/* argument #%d expects '%s', gets passed '%s' */
   1168 		error(334, arg, tspec_name(lt), tspec_name(rt));
   1169 	} else if (op == RETURN) {
   1170 		/* return value type mismatch (%s) and (%s) */
   1171 		error(211, tspec_name(lt), tspec_name(rt));
   1172 	} else {
   1173 		/* operands of '%s' have incompatible types (%s != %s) */
   1174 		error(107, getopname(op), tspec_name(lt), tspec_name(rt));
   1175 	}
   1176 
   1177 	return false;
   1178 }
   1179 
   1180 /*
   1181  * In strict bool mode, check whether the types of the operands match the
   1182  * operator.
   1183  */
   1184 static bool
   1185 typeok_scalar_strict_bool(op_t op, const mod_t *mp, int arg,
   1186 			  const tnode_t *ln,
   1187 			  const tnode_t *rn)
   1188 
   1189 {
   1190 	tspec_t lt, rt;
   1191 
   1192 	ln = before_conversion(ln);
   1193 	lt = ln->tn_type->t_tspec;
   1194 
   1195 	if (rn != NULL) {
   1196 		rn = before_conversion(rn);
   1197 		rt = rn->tn_type->t_tspec;
   1198 	} else {
   1199 		rt = NOTSPEC;
   1200 	}
   1201 
   1202 	if (!typeok_strict_bool_compatible(op, arg, ln, lt, rn, rt))
   1203 		return false;
   1204 
   1205 	if (mp->m_requires_bool || op == QUEST) {
   1206 		bool binary = mp->m_binary;
   1207 		bool lbool = is_typeok_bool_operand(ln);
   1208 		bool ok = true;
   1209 
   1210 		if (!binary && !lbool) {
   1211 			/* operand of '%s' must be bool, not '%s' */
   1212 			error(330, getopname(op), tspec_name(lt));
   1213 			ok = false;
   1214 		}
   1215 		if (binary && !lbool) {
   1216 			/* left operand of '%s' must be bool, not '%s' */
   1217 			error(331, getopname(op), tspec_name(lt));
   1218 			ok = false;
   1219 		}
   1220 		if (binary && op != QUEST && !is_typeok_bool_operand(rn)) {
   1221 			/* right operand of '%s' must be bool, not '%s' */
   1222 			error(332, getopname(op), tspec_name(rt));
   1223 			ok = false;
   1224 		}
   1225 		return ok;
   1226 	}
   1227 
   1228 	if (!mp->m_takes_bool) {
   1229 		bool binary = mp->m_binary;
   1230 		bool lbool = ln->tn_type->t_tspec == BOOL;
   1231 		bool ok = true;
   1232 
   1233 		if (!binary && lbool) {
   1234 			/* operand of '%s' must not be bool */
   1235 			error(335, getopname(op));
   1236 			ok = false;
   1237 		}
   1238 		if (binary && lbool) {
   1239 			/* left operand of '%s' must not be bool */
   1240 			error(336, getopname(op));
   1241 			ok = false;
   1242 		}
   1243 		if (binary && rn->tn_type->t_tspec == BOOL) {
   1244 			/* right operand of '%s' must not be bool */
   1245 			error(337, getopname(op));
   1246 			ok = false;
   1247 		}
   1248 		return ok;
   1249 	}
   1250 
   1251 	return true;
   1252 }
   1253 
   1254 /* Check the types using the information from modtab[]. */
   1255 static bool
   1256 typeok_scalar(op_t op, const mod_t *mp, tspec_t lt, tspec_t rt)
   1257 {
   1258 	if (mp->m_takes_bool && lt == BOOL && rt == BOOL)
   1259 		return true;
   1260 	if (mp->m_requires_integer) {
   1261 		if (!is_integer(lt) || (mp->m_binary && !is_integer(rt))) {
   1262 			warn_incompatible_types(op, lt, rt);
   1263 			return false;
   1264 		}
   1265 	} else if (mp->m_requires_integer_or_complex) {
   1266 		if ((!is_integer(lt) && !is_complex(lt)) ||
   1267 		    (mp->m_binary && (!is_integer(rt) && !is_complex(rt)))) {
   1268 			warn_incompatible_types(op, lt, rt);
   1269 			return false;
   1270 		}
   1271 	} else if (mp->m_requires_scalar) {
   1272 		if (!is_scalar(lt) || (mp->m_binary && !is_scalar(rt))) {
   1273 			warn_incompatible_types(op, lt, rt);
   1274 			return false;
   1275 		}
   1276 	} else if (mp->m_requires_arith) {
   1277 		if (!is_arithmetic(lt) ||
   1278 		    (mp->m_binary && !is_arithmetic(rt))) {
   1279 			warn_incompatible_types(op, lt, rt);
   1280 			return false;
   1281 		}
   1282 	}
   1283 	return true;
   1284 }
   1285 
   1286 /* Check the types for specific operators and type combinations. */
   1287 static bool
   1288 typeok_op(op_t op, const mod_t *mp, int arg,
   1289 	  const tnode_t *ln, const type_t *ltp, tspec_t lt,
   1290 	  const tnode_t *rn, const type_t *rtp, tspec_t rt)
   1291 {
   1292 	switch (op) {
   1293 	case POINT:
   1294 		/*
   1295 		 * Most errors required by ANSI C are reported in
   1296 		 * struct_or_union_member().
   1297 		 * Here we only must check for totally wrong things.
   1298 		 */
   1299 		if (lt == FUNC || lt == VOID || ltp->t_bitfield ||
   1300 		    ((lt != STRUCT && lt != UNION) && !ln->tn_lvalue)) {
   1301 			/* Without tflag we got already an error */
   1302 			if (tflag)
   1303 				/* unacceptable operand of '%s' */
   1304 				error(111, mp->m_name);
   1305 			return false;
   1306 		}
   1307 		/* Now we have an object we can create a pointer to */
   1308 		break;
   1309 	case ARROW:
   1310 		if (lt != PTR && !(tflag && is_integer(lt))) {
   1311 			/* Without tflag we got already an error */
   1312 			if (tflag)
   1313 				/* unacceptable operand of '%s' */
   1314 				error(111, mp->m_name);
   1315 			return false;
   1316 		}
   1317 		break;
   1318 	case INCAFT:
   1319 	case DECAFT:
   1320 	case INCBEF:
   1321 	case DECBEF:
   1322 		if (!typeok_incdec(mp, ln, ltp))
   1323 			return false;
   1324 		break;
   1325 	case ADDR:
   1326 		if (!typeok_address(mp, ln, ltp, lt))
   1327 			return false;
   1328 		break;
   1329 	case INDIR:
   1330 		if (!typeok_star(lt))
   1331 			return false;
   1332 		break;
   1333 	case PLUS:
   1334 		if (!typeok_plus(op, lt, rt))
   1335 			return false;
   1336 		break;
   1337 	case MINUS:
   1338 		if (!typeok_minus(op, ltp, lt, rtp, rt))
   1339 			return false;
   1340 		break;
   1341 	case SHR:
   1342 		typeok_shr(mp, ln, lt, rn, rt);
   1343 		goto shift;
   1344 	case SHL:
   1345 		typeok_shl(mp, lt, rt);
   1346 	shift:
   1347 		typeok_shift(lt, rn, rt);
   1348 		break;
   1349 	case EQ:
   1350 	case NE:
   1351 		/*
   1352 		 * Accept some things which are allowed with EQ and NE,
   1353 		 * but not with ordered comparisons.
   1354 		 */
   1355 		if (is_typeok_eq(ln, lt, rn, rt))
   1356 			break;
   1357 		/* FALLTHROUGH */
   1358 	case LT:
   1359 	case GT:
   1360 	case LE:
   1361 	case GE:
   1362 		if (!typeok_ordered_comparison(op, ln, ltp, lt, rn, rtp, rt))
   1363 			return false;
   1364 		break;
   1365 	case QUEST:
   1366 		if (!typeok_quest(lt, &rn))
   1367 			return false;
   1368 		break;
   1369 	case COLON:
   1370 		if (!typeok_colon(mp, ln, ltp, lt, rn, rtp, rt))
   1371 			return false;
   1372 		break;
   1373 	case ASSIGN:
   1374 	case INIT:
   1375 	case FARG:
   1376 	case RETURN:
   1377 		if (!check_assign_types_compatible(op, arg, ln, rn))
   1378 			return false;
   1379 		goto assign;
   1380 	case MULASS:
   1381 	case DIVASS:
   1382 	case MODASS:
   1383 		goto assign;
   1384 	case ADDASS:
   1385 	case SUBASS:
   1386 		/* operands have scalar types (checked above) */
   1387 		if ((lt == PTR && !is_integer(rt)) || rt == PTR) {
   1388 			warn_incompatible_types(op, lt, rt);
   1389 			return false;
   1390 		}
   1391 		goto assign;
   1392 	case SHLASS:
   1393 		goto assign;
   1394 	case SHRASS:
   1395 		if (pflag && !is_uinteger(lt) && !(tflag && is_uinteger(rt))) {
   1396 			/* bitwise '%s' on signed value possibly nonportable */
   1397 			warning(117, mp->m_name);
   1398 		}
   1399 		goto assign;
   1400 	case ANDASS:
   1401 	case XORASS:
   1402 	case ORASS:
   1403 		goto assign;
   1404 	assign:
   1405 		if (!typeok_assign(mp, ln, ltp, lt))
   1406 			return false;
   1407 		break;
   1408 	case COMMA:
   1409 		if (!modtab[ln->tn_op].m_has_side_effect)
   1410 			check_null_effect(ln);
   1411 		break;
   1412 		/* LINTED206: (enumeration values not handled in switch) */
   1413 	case CON:
   1414 	case CASE:
   1415 	case PUSH:
   1416 	case LOAD:
   1417 	case ICALL:
   1418 	case CVT:
   1419 	case CALL:
   1420 	case FSEL:
   1421 	case STRING:
   1422 	case NAME:
   1423 	case LOGOR:
   1424 	case LOGAND:
   1425 	case BITOR:
   1426 	case BITXOR:
   1427 	case BITAND:
   1428 	case MOD:
   1429 	case DIV:
   1430 	case MULT:
   1431 	case UMINUS:
   1432 	case UPLUS:
   1433 	case DEC:
   1434 	case INC:
   1435 	case COMPL:
   1436 	case NOT:
   1437 	case NOOP:
   1438 	case REAL:
   1439 	case IMAG:
   1440 		break;
   1441 	}
   1442 	return true;
   1443 }
   1444 
   1445 static void
   1446 typeok_enum(op_t op, const mod_t *mp, int arg,
   1447 	    const tnode_t *ln, const type_t *ltp,
   1448 	    const tnode_t *rn, const type_t *rtp)
   1449 {
   1450 	if (mp->m_bad_on_enum &&
   1451 	    (ltp->t_is_enum || (mp->m_binary && rtp->t_is_enum))) {
   1452 		check_bad_enum_operation(op, ln, rn);
   1453 	} else if (mp->m_valid_on_enum &&
   1454 		   (ltp->t_is_enum && rtp != NULL && rtp->t_is_enum)) {
   1455 		check_enum_type_mismatch(op, arg, ln, rn);
   1456 	} else if (mp->m_valid_on_enum &&
   1457 		   (ltp->t_is_enum || (rtp != NULL && rtp->t_is_enum))) {
   1458 		check_enum_int_mismatch(op, arg, ln, rn);
   1459 	}
   1460 }
   1461 
   1462 /* Perform most type checks. Return whether the types are ok. */
   1463 bool
   1464 typeok(op_t op, int arg, const tnode_t *ln, const tnode_t *rn)
   1465 {
   1466 	mod_t	*mp;
   1467 	tspec_t	lt, rt;
   1468 	type_t	*ltp, *rtp;
   1469 
   1470 	mp = &modtab[op];
   1471 
   1472 	lint_assert((ltp = ln->tn_type) != NULL);
   1473 	lt = ltp->t_tspec;
   1474 
   1475 	if (mp->m_binary) {
   1476 		lint_assert((rtp = rn->tn_type) != NULL);
   1477 		rt = rtp->t_tspec;
   1478 	} else {
   1479 		rtp = NULL;
   1480 		rt = NOTSPEC;
   1481 	}
   1482 
   1483 	if (Tflag && !typeok_scalar_strict_bool(op, mp, arg, ln, rn))
   1484 		return false;
   1485 	if (!typeok_scalar(op, mp, lt, rt))
   1486 		return false;
   1487 
   1488 	if (!typeok_op(op, mp, arg, ln, ltp, lt, rn, rtp, rt))
   1489 		return false;
   1490 
   1491 	typeok_enum(op, mp, arg, ln, ltp, rn, rtp);
   1492 	return true;
   1493 }
   1494 
   1495 static void
   1496 check_pointer_comparison(op_t op, const tnode_t *ln, const tnode_t *rn)
   1497 {
   1498 	type_t	*ltp, *rtp;
   1499 	tspec_t	lst, rst;
   1500 	const	char *lsts, *rsts;
   1501 
   1502 	lst = (ltp = ln->tn_type)->t_subt->t_tspec;
   1503 	rst = (rtp = rn->tn_type)->t_subt->t_tspec;
   1504 
   1505 	if (lst == VOID || rst == VOID) {
   1506 		if (sflag && (lst == FUNC || rst == FUNC)) {
   1507 			/* (void *)0 already handled in typeok() */
   1508 			*(lst == FUNC ? &lsts : &rsts) = "function pointer";
   1509 			*(lst == VOID ? &lsts : &rsts) = "'void *'";
   1510 			/* ANSI C forbids comparison of %s with %s */
   1511 			warning(274, lsts, rsts);
   1512 		}
   1513 		return;
   1514 	}
   1515 
   1516 	if (!eqtype(ltp->t_subt, rtp->t_subt, true, false, NULL)) {
   1517 		warn_incompatible_pointers(&modtab[op], ltp, rtp);
   1518 		return;
   1519 	}
   1520 
   1521 	if (lst == FUNC && rst == FUNC) {
   1522 		if (sflag && op != EQ && op != NE)
   1523 			/* ANSI C forbids ordered comparisons of ... */
   1524 			warning(125);
   1525 	}
   1526 }
   1527 
   1528 /*
   1529  * Checks type compatibility for ASSIGN, INIT, FARG and RETURN
   1530  * and prints warnings/errors if necessary.
   1531  * If the types are (almost) compatible, 1 is returned, otherwise 0.
   1532  */
   1533 static bool
   1534 check_assign_types_compatible(op_t op, int arg,
   1535 			      const tnode_t *ln, const tnode_t *rn)
   1536 {
   1537 	tspec_t	lt, rt, lst = NOTSPEC, rst = NOTSPEC;
   1538 	type_t	*ltp, *rtp, *lstp = NULL, *rstp = NULL;
   1539 	mod_t	*mp;
   1540 	const	char *lts, *rts;
   1541 
   1542 	if ((lt = (ltp = ln->tn_type)->t_tspec) == PTR)
   1543 		lst = (lstp = ltp->t_subt)->t_tspec;
   1544 	if ((rt = (rtp = rn->tn_type)->t_tspec) == PTR)
   1545 		rst = (rstp = rtp->t_subt)->t_tspec;
   1546 	mp = &modtab[op];
   1547 
   1548 	if (lt == BOOL && is_scalar(rt))	/* C99 6.3.1.2 */
   1549 		return true;
   1550 
   1551 	if (is_arithmetic(lt) && (is_arithmetic(rt) || rt == BOOL))
   1552 		return true;
   1553 
   1554 	if ((lt == STRUCT || lt == UNION) && (rt == STRUCT || rt == UNION))
   1555 		/* both are struct or union */
   1556 		return ltp->t_str == rtp->t_str;
   1557 
   1558 	/* a null pointer may be assigned to any pointer */
   1559 	if (lt == PTR && is_null_pointer(rn))
   1560 		return true;
   1561 
   1562 	if (lt == PTR && rt == PTR && (lst == VOID || rst == VOID)) {
   1563 		/* two pointers, at least one pointer to void */
   1564 		if (sflag && (lst == FUNC || rst == FUNC)) {
   1565 			/* comb. of ptr to func and ptr to void */
   1566 			*(lst == FUNC ? &lts : &rts) = "function pointer";
   1567 			*(lst == VOID ? &lts : &rts) = "'void *'";
   1568 			switch (op) {
   1569 			case INIT:
   1570 			case RETURN:
   1571 				/* ANSI C forbids conversion of %s to %s */
   1572 				warning(303, rts, lts);
   1573 				break;
   1574 			case FARG:
   1575 				/* ANSI C forbids conv. of %s to %s, arg #%d */
   1576 				warning(304, rts, lts, arg);
   1577 				break;
   1578 			default:
   1579 				/* ANSI C forbids conv. of %s to %s, op %s */
   1580 				warning(305, rts, lts, mp->m_name);
   1581 				break;
   1582 			}
   1583 		}
   1584 	}
   1585 
   1586 	if (lt == PTR && rt == PTR && (lst == VOID || rst == VOID ||
   1587 				       eqtype(lstp, rstp, true, false, NULL))) {
   1588 		/* compatible pointer types (qualifiers ignored) */
   1589 		if (!tflag &&
   1590 		    ((!lstp->t_const && rstp->t_const) ||
   1591 		     (!lstp->t_volatile && rstp->t_volatile))) {
   1592 			/* left side has not all qualifiers of right */
   1593 			switch (op) {
   1594 			case INIT:
   1595 			case RETURN:
   1596 				/* incompatible pointer types (%s != %s) */
   1597 				warning(182, type_name(lstp), type_name(rstp));
   1598 				break;
   1599 			case FARG:
   1600 				/* converting '%s' to incompatible '%s' ... */
   1601 				warning(153,
   1602 				    type_name(rtp), type_name(ltp), arg);
   1603 				break;
   1604 			default:
   1605 				/* operands have incompatible pointer type... */
   1606 				warning(128, mp->m_name,
   1607 				    type_name(lstp), type_name(rstp));
   1608 				break;
   1609 			}
   1610 		}
   1611 		return true;
   1612 	}
   1613 
   1614 	if ((lt == PTR && is_integer(rt)) || (is_integer(lt) && rt == PTR)) {
   1615 		const char *lx = lt == PTR ? "pointer" : "integer";
   1616 		const char *rx = rt == PTR ? "pointer" : "integer";
   1617 
   1618 		switch (op) {
   1619 		case INIT:
   1620 		case RETURN:
   1621 			/* illegal combination of %s (%s) and %s (%s) */
   1622 			warning(183, lx, type_name(ltp), rx, type_name(rtp));
   1623 			break;
   1624 		case FARG:
   1625 			/* illegal comb. of %s (%s) and %s (%s), arg #%d */
   1626 			warning(154,
   1627 			    lx, type_name(ltp), rx, type_name(rtp), arg);
   1628 			break;
   1629 		default:
   1630 			/* illegal combination of %s (%s) and %s (%s), op %s */
   1631 			warning(123,
   1632 			    lx, type_name(ltp), rx, type_name(rtp), mp->m_name);
   1633 			break;
   1634 		}
   1635 		return true;
   1636 	}
   1637 
   1638 	if (lt == PTR && rt == PTR) {
   1639 		switch (op) {
   1640 		case INIT:
   1641 		case RETURN:
   1642 			warn_incompatible_pointers(NULL, ltp, rtp);
   1643 			break;
   1644 		case FARG:
   1645 			/* converting '%s' to incompatible '%s' for ... */
   1646 			warning(153, type_name(rtp), type_name(ltp), arg);
   1647 			break;
   1648 		default:
   1649 			warn_incompatible_pointers(mp, ltp, rtp);
   1650 			break;
   1651 		}
   1652 		return true;
   1653 	}
   1654 
   1655 	switch (op) {
   1656 	case INIT:
   1657 		/* initialization type mismatch (%s) and (%s) */
   1658 		error(185, type_name(ltp), type_name(rtp));
   1659 		break;
   1660 	case RETURN:
   1661 		/* return value type mismatch (%s) and (%s) */
   1662 		error(211, type_name(ltp), type_name(rtp));
   1663 		break;
   1664 	case FARG:
   1665 		/* argument is incompatible with prototype, arg #%d */
   1666 		warning(155, arg);
   1667 		break;
   1668 	default:
   1669 		warn_incompatible_types(op, lt, rt);
   1670 		break;
   1671 	}
   1672 
   1673 	return false;
   1674 }
   1675 
   1676 /* Prints a warning if a strange operator is used on an enum type. */
   1677 static void
   1678 check_bad_enum_operation(op_t op, const tnode_t *ln, const tnode_t *rn)
   1679 {
   1680 	mod_t	*mp;
   1681 
   1682 	if (!eflag)
   1683 		return;
   1684 
   1685 	mp = &modtab[op];
   1686 
   1687 	if (!(ln->tn_type->t_is_enum ||
   1688 	      (mp->m_binary && rn->tn_type->t_is_enum))) {
   1689 		return;
   1690 	}
   1691 
   1692 	/*
   1693 	 * Enum as offset to a pointer is an exception (otherwise enums
   1694 	 * could not be used as array indices).
   1695 	 */
   1696 	if (op == PLUS &&
   1697 	    ((ln->tn_type->t_is_enum && rn->tn_type->t_tspec == PTR) ||
   1698 	     (rn->tn_type->t_is_enum && ln->tn_type->t_tspec == PTR))) {
   1699 		return;
   1700 	}
   1701 
   1702 	/* dubious operation on enum, op %s */
   1703 	warning(241, mp->m_name);
   1704 
   1705 }
   1706 
   1707 /*
   1708  * Prints a warning if an operator is applied to two different enum types.
   1709  */
   1710 static void
   1711 check_enum_type_mismatch(op_t op, int arg, const tnode_t *ln, const tnode_t *rn)
   1712 {
   1713 	mod_t	*mp;
   1714 
   1715 	mp = &modtab[op];
   1716 
   1717 	if (ln->tn_type->t_enum != rn->tn_type->t_enum) {
   1718 		switch (op) {
   1719 		case INIT:
   1720 			/* enum type mismatch between '%s' and '%s' in ... */
   1721 			warning(210,
   1722 			    type_name(ln->tn_type), type_name(rn->tn_type));
   1723 			break;
   1724 		case FARG:
   1725 			/* enum type mismatch, arg #%d (%s != %s) */
   1726 			warning(156, arg,
   1727 			    type_name(ln->tn_type), type_name(rn->tn_type));
   1728 			break;
   1729 		case RETURN:
   1730 			/* return value type mismatch (%s) and (%s) */
   1731 			warning(211,
   1732 			    type_name(ln->tn_type), type_name(rn->tn_type));
   1733 			break;
   1734 		default:
   1735 			/* enum type mismatch: '%s' '%s' '%s' */
   1736 			warning(130, type_name(ln->tn_type), mp->m_name,
   1737 			    type_name(rn->tn_type));
   1738 			break;
   1739 		}
   1740 	} else if (Pflag && mp->m_comparison && op != EQ && op != NE) {
   1741 		if (eflag)
   1742 			/* dubious comparison of enums, op %s */
   1743 			warning(243, mp->m_name);
   1744 	}
   1745 }
   1746 
   1747 /* Prints a warning if the operands mix between enum and integer. */
   1748 static void
   1749 check_enum_int_mismatch(op_t op, int arg, const tnode_t *ln, const tnode_t *rn)
   1750 {
   1751 
   1752 	if (!eflag)
   1753 		return;
   1754 
   1755 	switch (op) {
   1756 	case INIT:
   1757 		/*
   1758 		 * Initialization with 0 is allowed. Otherwise, all implicit
   1759 		 * initializations would need to be warned upon as well.
   1760 		 */
   1761 		if (!rn->tn_type->t_is_enum && rn->tn_op == CON &&
   1762 		    is_integer(rn->tn_type->t_tspec) &&
   1763 		    rn->tn_val->v_quad == 0) {
   1764 			return;
   1765 		}
   1766 		/* initialization of '%s' with '%s' */
   1767 		warning(277, type_name(ln->tn_type), type_name(rn->tn_type));
   1768 		break;
   1769 	case FARG:
   1770 		/* combination of '%s' and '%s', arg #%d */
   1771 		warning(278,
   1772 		    type_name(ln->tn_type), type_name(rn->tn_type), arg);
   1773 		break;
   1774 	case RETURN:
   1775 		/* combination of '%s' and '%s' in return */
   1776 		warning(279, type_name(ln->tn_type), type_name(rn->tn_type));
   1777 		break;
   1778 	default:
   1779 		/* combination of '%s' and '%s', op %s */
   1780 		warning(242, type_name(ln->tn_type), type_name(rn->tn_type),
   1781 		    modtab[op].m_name);
   1782 		break;
   1783 	}
   1784 }
   1785 
   1786 /*
   1787  * Build and initialize a new node.
   1788  */
   1789 static tnode_t *
   1790 new_tnode(op_t op, type_t *type, tnode_t *ln, tnode_t *rn)
   1791 {
   1792 	tnode_t	*ntn;
   1793 	tspec_t	t;
   1794 #ifdef notyet
   1795 	size_t l;
   1796 	uint64_t rnum;
   1797 #endif
   1798 
   1799 	ntn = getnode();
   1800 
   1801 	ntn->tn_op = op;
   1802 	ntn->tn_type = type;
   1803 	if (ln->tn_from_system_header)
   1804 		ntn->tn_from_system_header = true;
   1805 	if (rn != NULL && rn->tn_from_system_header)
   1806 		ntn->tn_from_system_header = true;
   1807 	ntn->tn_left = ln;
   1808 	ntn->tn_right = rn;
   1809 
   1810 	switch (op) {
   1811 #ifdef notyet
   1812 	case SHR:
   1813 		if (rn->tn_op != CON)
   1814 			break;
   1815 		rnum = rn->tn_val->v_quad;
   1816 		l = tsize(ln->tn_type) / CHAR_SIZE;
   1817 		t = ln->tn_type->t_tspec;
   1818 		switch (l) {
   1819 		case 8:
   1820 			if (rnum >= 56)
   1821 				t = UCHAR;
   1822 			else if (rnum >= 48)
   1823 				t = USHORT;
   1824 			else if (rnum >= 32)
   1825 				t = UINT;
   1826 			break;
   1827 		case 4:
   1828 			if (rnum >= 24)
   1829 				t = UCHAR;
   1830 			else if (rnum >= 16)
   1831 				t = USHORT;
   1832 			break;
   1833 		case 2:
   1834 			if (rnum >= 8)
   1835 				t = UCHAR;
   1836 			break;
   1837 		default:
   1838 			break;
   1839 		}
   1840 		if (t != ln->tn_type->t_tspec)
   1841 			ntn->tn_type->t_tspec = t;
   1842 		break;
   1843 #endif
   1844 	case INDIR:
   1845 	case FSEL:
   1846 		lint_assert(ln->tn_type->t_tspec == PTR);
   1847 		t = ln->tn_type->t_subt->t_tspec;
   1848 		if (t != FUNC && t != VOID)
   1849 			ntn->tn_lvalue = true;
   1850 		break;
   1851 	default:
   1852 		break;
   1853 	}
   1854 
   1855 	return ntn;
   1856 }
   1857 
   1858 /*
   1859  * Performs the "integer promotions" (C99 6.3.1.1p2), which convert small
   1860  * integer types to either int or unsigned int.
   1861  *
   1862  * If tflag is set or the operand is a function argument with no type
   1863  * information (no prototype or variable # of args), converts float to double.
   1864  */
   1865 tnode_t *
   1866 promote(op_t op, bool farg, tnode_t *tn)
   1867 {
   1868 	tspec_t	t;
   1869 	type_t	*ntp;
   1870 	u_int	len;
   1871 
   1872 	t = tn->tn_type->t_tspec;
   1873 
   1874 	if (!is_arithmetic(t))
   1875 		return tn;
   1876 
   1877 	if (!tflag) {
   1878 		/*
   1879 		 * ANSI C requires that the result is always of type INT
   1880 		 * if INT can represent all possible values of the previous
   1881 		 * type.
   1882 		 */
   1883 		if (tn->tn_type->t_bitfield) {
   1884 			len = tn->tn_type->t_flen;
   1885 			if (size(INT) > len) {
   1886 				t = INT;
   1887 			} else {
   1888 				lint_assert(len == size(INT));
   1889 				if (is_uinteger(t)) {
   1890 					t = UINT;
   1891 				} else {
   1892 					t = INT;
   1893 				}
   1894 			}
   1895 		} else if (t == CHAR || t == UCHAR || t == SCHAR) {
   1896 			t = (size(CHAR) < size(INT) || t != UCHAR) ?
   1897 				INT : UINT;
   1898 		} else if (t == SHORT || t == USHORT) {
   1899 			t = (size(SHORT) < size(INT) || t == SHORT) ?
   1900 				INT : UINT;
   1901 		} else if (t == ENUM) {
   1902 			t = INT;
   1903 		} else if (farg && t == FLOAT) {
   1904 			t = DOUBLE;
   1905 		}
   1906 	} else {
   1907 		/*
   1908 		 * In traditional C, keep unsigned and promote FLOAT
   1909 		 * to DOUBLE.
   1910 		 */
   1911 		if (t == UCHAR || t == USHORT) {
   1912 			t = UINT;
   1913 		} else if (t == CHAR || t == SCHAR || t == SHORT) {
   1914 			t = INT;
   1915 		} else if (t == FLOAT) {
   1916 			t = DOUBLE;
   1917 		} else if (t == ENUM) {
   1918 			t = INT;
   1919 		}
   1920 	}
   1921 
   1922 	if (t != tn->tn_type->t_tspec) {
   1923 		ntp = tduptyp(tn->tn_type);
   1924 		ntp->t_tspec = t;
   1925 		/*
   1926 		 * Keep t_is_enum so we are later able to check compatibility
   1927 		 * of enum types.
   1928 		 */
   1929 		tn = convert(op, 0, ntp, tn);
   1930 	}
   1931 
   1932 	return tn;
   1933 }
   1934 
   1935 /*
   1936  * Apply the "usual arithmetic conversions" (C99 6.3.1.8).
   1937  *
   1938  * This gives both operands the same type.
   1939  * This is done in different ways for traditional C and C90.
   1940  */
   1941 static void
   1942 balance(op_t op, tnode_t **lnp, tnode_t **rnp)
   1943 {
   1944 	tspec_t	lt, rt, t;
   1945 	int	i;
   1946 	bool	u;
   1947 	type_t	*ntp;
   1948 	static const tspec_t tl[] = {
   1949 		LDOUBLE, DOUBLE, FLOAT, UQUAD, QUAD, ULONG, LONG, UINT, INT,
   1950 	};
   1951 
   1952 	lt = (*lnp)->tn_type->t_tspec;
   1953 	rt = (*rnp)->tn_type->t_tspec;
   1954 
   1955 	if (!is_arithmetic(lt) || !is_arithmetic(rt))
   1956 		return;
   1957 
   1958 	if (!tflag) {
   1959 		if (lt == rt) {
   1960 			t = lt;
   1961 		} else if (lt == LCOMPLEX || rt == LCOMPLEX) {
   1962 			t = LCOMPLEX;
   1963 		} else if (lt == DCOMPLEX || rt == DCOMPLEX) {
   1964 			t = DCOMPLEX;
   1965 		} else if (lt == COMPLEX || rt == COMPLEX) {
   1966 			t = COMPLEX;
   1967 		} else if (lt == FCOMPLEX || rt == FCOMPLEX) {
   1968 			t = FCOMPLEX;
   1969 		} else if (lt == LDOUBLE || rt == LDOUBLE) {
   1970 			t = LDOUBLE;
   1971 		} else if (lt == DOUBLE || rt == DOUBLE) {
   1972 			t = DOUBLE;
   1973 		} else if (lt == FLOAT || rt == FLOAT) {
   1974 			t = FLOAT;
   1975 		} else {
   1976 			/*
   1977 			 * If type A has more bits than type B it should
   1978 			 * be able to hold all possible values of type B.
   1979 			 */
   1980 			if (size(lt) > size(rt)) {
   1981 				t = lt;
   1982 			} else if (size(lt) < size(rt)) {
   1983 				t = rt;
   1984 			} else {
   1985 				for (i = 3; tl[i] != INT; i++) {
   1986 					if (tl[i] == lt || tl[i] == rt)
   1987 						break;
   1988 				}
   1989 				if ((is_uinteger(lt) || is_uinteger(rt)) &&
   1990 				    !is_uinteger(tl[i])) {
   1991 					i--;
   1992 				}
   1993 				t = tl[i];
   1994 			}
   1995 		}
   1996 	} else {
   1997 		/* Keep unsigned in traditional C */
   1998 		u = is_uinteger(lt) || is_uinteger(rt);
   1999 		for (i = 0; tl[i] != INT; i++) {
   2000 			if (lt == tl[i] || rt == tl[i])
   2001 				break;
   2002 		}
   2003 		t = tl[i];
   2004 		if (u && is_integer(t) && !is_uinteger(t))
   2005 			t = unsigned_type(t);
   2006 	}
   2007 
   2008 	if (t != lt) {
   2009 		ntp = tduptyp((*lnp)->tn_type);
   2010 		ntp->t_tspec = t;
   2011 		*lnp = convert(op, 0, ntp, *lnp);
   2012 	}
   2013 	if (t != rt) {
   2014 		ntp = tduptyp((*rnp)->tn_type);
   2015 		ntp->t_tspec = t;
   2016 		*rnp = convert(op, 0, ntp, *rnp);
   2017 	}
   2018 }
   2019 
   2020 /*
   2021  * Insert a conversion operator, which converts the type of the node
   2022  * to another given type.
   2023  * If op is FARG, arg is the number of the argument (used for warnings).
   2024  */
   2025 tnode_t *
   2026 convert(op_t op, int arg, type_t *tp, tnode_t *tn)
   2027 {
   2028 	tnode_t	*ntn;
   2029 	tspec_t	nt, ot;
   2030 
   2031 	nt = tp->t_tspec;
   2032 	ot = tn->tn_type->t_tspec;
   2033 
   2034 	if (!tflag && !sflag && op == FARG)
   2035 		check_prototype_conversion(arg, nt, ot, tp, tn);
   2036 	if (is_integer(nt) && is_integer(ot)) {
   2037 		check_integer_conversion(op, arg, nt, ot, tp, tn);
   2038 	} else if (nt == PTR && is_null_pointer(tn)) {
   2039 		/* a null pointer may be assigned to any pointer. */
   2040 	} else if (is_integer(nt) && nt != BOOL && ot == PTR) {
   2041 		check_pointer_integer_conversion(op, nt, tp, tn);
   2042 	} else if (nt == PTR && ot == PTR) {
   2043 		check_pointer_conversion(op, tn, tp);
   2044 	}
   2045 
   2046 	ntn = getnode();
   2047 	ntn->tn_op = CVT;
   2048 	ntn->tn_type = tp;
   2049 	ntn->tn_cast = op == CVT;
   2050 	ntn->tn_from_system_header |= tn->tn_from_system_header;
   2051 	ntn->tn_right = NULL;
   2052 	if (tn->tn_op != CON || nt == VOID) {
   2053 		ntn->tn_left = tn;
   2054 	} else {
   2055 		ntn->tn_op = CON;
   2056 		ntn->tn_val = tgetblk(sizeof (val_t));
   2057 		convert_constant(op, arg, ntn->tn_type, ntn->tn_val,
   2058 		    tn->tn_val);
   2059 	}
   2060 
   2061 	return ntn;
   2062 }
   2063 
   2064 /*
   2065  * Print a warning if a prototype causes a type conversion that is
   2066  * different from what would happen to the same argument in the
   2067  * absence of a prototype.
   2068  *
   2069  * Errors/warnings about illegal type combinations are already printed
   2070  * in check_assign_types_compatible().
   2071  */
   2072 static void
   2073 check_prototype_conversion(int arg, tspec_t nt, tspec_t ot, type_t *tp,
   2074 			   tnode_t *tn)
   2075 {
   2076 	tnode_t	*ptn;
   2077 
   2078 	if (!is_arithmetic(nt) || !is_arithmetic(ot))
   2079 		return;
   2080 
   2081 	/*
   2082 	 * If the type of the formal parameter is char/short, a warning
   2083 	 * would be useless, because functions declared the old style
   2084 	 * can't expect char/short arguments.
   2085 	 */
   2086 	/* XXX: what about SCHAR? */
   2087 	if (nt == CHAR || nt == UCHAR || nt == SHORT || nt == USHORT)
   2088 		return;
   2089 
   2090 	/* get default promotion */
   2091 	ptn = promote(NOOP, true, tn);
   2092 	ot = ptn->tn_type->t_tspec;
   2093 
   2094 	/* return if types are the same with and without prototype */
   2095 	if (nt == ot || (nt == ENUM && ot == INT))
   2096 		return;
   2097 
   2098 	if (is_floating(nt) != is_floating(ot) ||
   2099 	    psize(nt) != psize(ot)) {
   2100 		/* representation and/or width change */
   2101 		if (!is_integer(ot) || psize(ot) > psize(INT)) {
   2102 			/* argument #%d is converted from '%s' to '%s' ... */
   2103 			warning(259,
   2104 			    arg, type_name(tn->tn_type), type_name(tp));
   2105 		}
   2106 	} else if (hflag) {
   2107 		/*
   2108 		 * they differ in sign or base type (char, short, int,
   2109 		 * long, long long, float, double, long double)
   2110 		 *
   2111 		 * if they differ only in sign and the argument is a constant
   2112 		 * and the msb of the argument is not set, print no warning
   2113 		 */
   2114 		if (ptn->tn_op == CON && is_integer(nt) &&
   2115 		    signed_type(nt) == signed_type(ot) &&
   2116 		    msb(ptn->tn_val->v_quad, ot, -1) == 0) {
   2117 			/* ok */
   2118 		} else {
   2119 			/* argument #%d is converted from '%s' to '%s' ... */
   2120 			warning(259,
   2121 			    arg, type_name(tn->tn_type), type_name(tp));
   2122 		}
   2123 	}
   2124 }
   2125 
   2126 /*
   2127  * Print warnings for conversions of integer types which may cause problems.
   2128  */
   2129 /* ARGSUSED */
   2130 static void
   2131 check_integer_conversion(op_t op, int arg, tspec_t nt, tspec_t ot, type_t *tp,
   2132 			 tnode_t *tn)
   2133 {
   2134 	char opbuf[16];
   2135 
   2136 	if (tn->tn_op == CON)
   2137 		return;
   2138 
   2139 	if (op == CVT)
   2140 		return;
   2141 
   2142 	if (Pflag && psize(nt) > psize(ot) &&
   2143 	    is_uinteger(nt) != is_uinteger(ot)) {
   2144 		if (aflag > 0 && pflag) {
   2145 			if (op == FARG) {
   2146 				/* conversion to '%s' may sign-extend ... */
   2147 				warning(297, type_name(tp), arg);
   2148 			} else {
   2149 				/* conversion to '%s' may sign-extend ... */
   2150 				warning(131, type_name(tp));
   2151 			}
   2152 		}
   2153 	}
   2154 
   2155 	if (Pflag && psize(nt) > psize(ot)) {
   2156 		switch (tn->tn_op) {
   2157 		case PLUS:
   2158 		case MINUS:
   2159 		case MULT:
   2160 		case SHL:
   2161 			/* suggest cast from '%s' to '%s' on op %s to ... */
   2162 			warning(324, type_name(gettyp(ot)), type_name(tp),
   2163 			    print_tnode(opbuf, sizeof(opbuf), tn));
   2164 			break;
   2165 		default:
   2166 			break;
   2167 		}
   2168 	}
   2169 
   2170 	if (psize(nt) < psize(ot) &&
   2171 	    (ot == LONG || ot == ULONG || ot == QUAD || ot == UQUAD ||
   2172 	     aflag > 1)) {
   2173 		/* conversion from '%s' may lose accuracy */
   2174 		if (aflag > 0) {
   2175 			if (op == FARG) {
   2176 				/* conv. from '%s' to '%s' may lose ... */
   2177 				warning(298,
   2178 				    type_name(tn->tn_type), type_name(tp), arg);
   2179 			} else {
   2180 				/* conv. from '%s' to '%s' may lose accuracy */
   2181 				warning(132,
   2182 				    type_name(tn->tn_type), type_name(tp));
   2183 			}
   2184 		}
   2185 	}
   2186 }
   2187 
   2188 /*
   2189  * Print warnings for dubious conversions of pointer to integer.
   2190  */
   2191 static void
   2192 check_pointer_integer_conversion(op_t op, tspec_t nt, type_t *tp, tnode_t *tn)
   2193 {
   2194 
   2195 	if (tn->tn_op == CON)
   2196 		return;
   2197 	if (op != CVT)
   2198 		return;		/* We got already an error. */
   2199 	if (psize(nt) >= psize(PTR))
   2200 		return;
   2201 
   2202 	if (pflag && size(nt) >= size(PTR)) {
   2203 		/* conversion of pointer to '%s' may lose bits */
   2204 		warning(134, type_name(tp));
   2205 	} else {
   2206 		/* conversion of pointer to '%s' loses bits */
   2207 		warning(133, type_name(tp));
   2208 	}
   2209 }
   2210 
   2211 /*
   2212  * Print warnings for questionable pointer conversions.
   2213  */
   2214 static void
   2215 check_pointer_conversion(op_t op, tnode_t *tn, type_t *tp)
   2216 {
   2217 	tspec_t nt, ot;
   2218 	const	char *nts, *ots;
   2219 
   2220 	/*
   2221 	 * We got already an error (pointers of different types
   2222 	 * without a cast) or we will not get a warning.
   2223 	 */
   2224 	if (op != CVT)
   2225 		return;
   2226 
   2227 	nt = tp->t_subt->t_tspec;
   2228 	ot = tn->tn_type->t_subt->t_tspec;
   2229 
   2230 	if (nt == VOID || ot == VOID) {
   2231 		if (sflag && (nt == FUNC || ot == FUNC)) {
   2232 			/* (void *)0 already handled in convert() */
   2233 			*(nt == FUNC ? &nts : &ots) = "function pointer";
   2234 			*(nt == VOID ? &nts : &ots) = "'void *'";
   2235 			/* ANSI C forbids conversion of %s to %s */
   2236 			warning(303, ots, nts);
   2237 		}
   2238 		return;
   2239 	} else if (nt == FUNC && ot == FUNC) {
   2240 		return;
   2241 	} else if (nt == FUNC || ot == FUNC) {
   2242 		/* converting '%s' to '%s' is questionable */
   2243 		warning(229, type_name(tn->tn_type), type_name(tp));
   2244 		return;
   2245 	}
   2246 
   2247 	if (hflag && alignment_in_bits(tp->t_subt) >
   2248 		     alignment_in_bits(tn->tn_type->t_subt)) {
   2249 		/* converting '%s' to '%s' may cause alignment problem */
   2250 		warning(135, type_name(tn->tn_type), type_name(tp));
   2251 	}
   2252 
   2253 	if (((nt == STRUCT || nt == UNION) &&
   2254 	     tp->t_subt->t_str != tn->tn_type->t_subt->t_str) ||
   2255 	    psize(nt) != psize(ot)) {
   2256 		if (cflag) {
   2257 			/* pointer cast from '%s' to '%s' may be troublesome */
   2258 			warning(247, type_name(tn->tn_type), type_name(tp));
   2259 		}
   2260 	}
   2261 }
   2262 
   2263 /*
   2264  * Converts a typed constant to a constant of another type.
   2265  *
   2266  * op		operator which requires conversion
   2267  * arg		if op is FARG, # of argument
   2268  * tp		type in which to convert the constant
   2269  * nv		new constant
   2270  * v		old constant
   2271  */
   2272 void
   2273 convert_constant(op_t op, int arg, type_t *tp, val_t *nv, val_t *v)
   2274 {
   2275 	tspec_t	ot, nt;
   2276 	ldbl_t	max = 0.0, min = 0.0;
   2277 	int	sz;
   2278 	bool	rchk;
   2279 	int64_t	xmask, xmsk1;
   2280 	int	osz, nsz;
   2281 
   2282 	ot = v->v_tspec;
   2283 	nt = nv->v_tspec = tp->t_tspec;
   2284 	rchk = false;
   2285 
   2286 	if (nt == BOOL) {	/* C99 6.3.1.2 */
   2287 		nv->v_ansiu = false;
   2288 		nv->v_quad = is_nonzero_val(ot, v) ? 1 : 0;
   2289 		return;
   2290 	}
   2291 
   2292 	if (ot == FLOAT || ot == DOUBLE || ot == LDOUBLE) {
   2293 		switch (nt) {
   2294 		case CHAR:
   2295 			max = TARG_CHAR_MAX;	min = TARG_CHAR_MIN;	break;
   2296 		case UCHAR:
   2297 			max = TARG_UCHAR_MAX;	min = 0;		break;
   2298 		case SCHAR:
   2299 			max = TARG_SCHAR_MAX;	min = TARG_SCHAR_MIN;	break;
   2300 		case SHORT:
   2301 			max = TARG_SHRT_MAX;	min = TARG_SHRT_MIN;	break;
   2302 		case USHORT:
   2303 			max = TARG_USHRT_MAX;	min = 0;		break;
   2304 		case ENUM:
   2305 		case INT:
   2306 			max = TARG_INT_MAX;	min = TARG_INT_MIN;	break;
   2307 		case UINT:
   2308 			max = (u_int)TARG_UINT_MAX;min = 0;		break;
   2309 		case LONG:
   2310 			max = TARG_LONG_MAX;	min = TARG_LONG_MIN;	break;
   2311 		case ULONG:
   2312 			max = (u_long)TARG_ULONG_MAX; min = 0;		break;
   2313 		case QUAD:
   2314 			max = QUAD_MAX;		min = QUAD_MIN;		break;
   2315 		case UQUAD:
   2316 			max = (uint64_t)UQUAD_MAX; min = 0;		break;
   2317 		case FLOAT:
   2318 		case FCOMPLEX:
   2319 			max = FLT_MAX;		min = -FLT_MAX;		break;
   2320 		case DOUBLE:
   2321 		case DCOMPLEX:
   2322 			max = DBL_MAX;		min = -DBL_MAX;		break;
   2323 		case PTR:
   2324 			/* Got already an error because of float --> ptr */
   2325 		case LDOUBLE:
   2326 		case LCOMPLEX:
   2327 			max = LDBL_MAX;		min = -LDBL_MAX;	break;
   2328 		default:
   2329 			lint_assert(/*CONSTCOND*/false);
   2330 		}
   2331 		if (v->v_ldbl > max || v->v_ldbl < min) {
   2332 			lint_assert(nt != LDOUBLE);
   2333 			if (op == FARG) {
   2334 				/* conv. of '%s' to '%s' is out of range, ... */
   2335 				warning(295,
   2336 				    type_name(gettyp(ot)), type_name(tp), arg);
   2337 			} else {
   2338 				/* conversion of '%s' to '%s' is out of range */
   2339 				warning(119,
   2340 				    type_name(gettyp(ot)), type_name(tp));
   2341 			}
   2342 			v->v_ldbl = v->v_ldbl > 0 ? max : min;
   2343 		}
   2344 		if (nt == FLOAT) {
   2345 			nv->v_ldbl = (float)v->v_ldbl;
   2346 		} else if (nt == DOUBLE) {
   2347 			nv->v_ldbl = (double)v->v_ldbl;
   2348 		} else if (nt == LDOUBLE) {
   2349 			nv->v_ldbl = v->v_ldbl;
   2350 		} else {
   2351 			nv->v_quad = (nt == PTR || is_uinteger(nt)) ?
   2352 				(int64_t)v->v_ldbl : (int64_t)v->v_ldbl;
   2353 		}
   2354 	} else {
   2355 		if (nt == FLOAT) {
   2356 			nv->v_ldbl = (ot == PTR || is_uinteger(ot)) ?
   2357 			       (float)(uint64_t)v->v_quad : (float)v->v_quad;
   2358 		} else if (nt == DOUBLE) {
   2359 			nv->v_ldbl = (ot == PTR || is_uinteger(ot)) ?
   2360 			       (double)(uint64_t)v->v_quad : (double)v->v_quad;
   2361 		} else if (nt == LDOUBLE) {
   2362 			nv->v_ldbl = (ot == PTR || is_uinteger(ot)) ?
   2363 			       (ldbl_t)(uint64_t)v->v_quad : (ldbl_t)v->v_quad;
   2364 		} else {
   2365 			rchk = true;		/* Check for lost precision. */
   2366 			nv->v_quad = v->v_quad;
   2367 		}
   2368 	}
   2369 
   2370 	if (v->v_ansiu && is_floating(nt)) {
   2371 		/* ANSI C treats constant as unsigned */
   2372 		warning(157);
   2373 		v->v_ansiu = false;
   2374 	} else if (v->v_ansiu && (is_integer(nt) && !is_uinteger(nt) &&
   2375 				  psize(nt) > psize(ot))) {
   2376 		/* ANSI C treats constant as unsigned */
   2377 		warning(157);
   2378 		v->v_ansiu = false;
   2379 	}
   2380 
   2381 	switch (nt) {
   2382 	case FLOAT:
   2383 	case FCOMPLEX:
   2384 	case DOUBLE:
   2385 	case DCOMPLEX:
   2386 	case LDOUBLE:
   2387 	case LCOMPLEX:
   2388 		break;
   2389 	default:
   2390 		sz = tp->t_bitfield ? tp->t_flen : size(nt);
   2391 		nv->v_quad = xsign(nv->v_quad, nt, sz);
   2392 		break;
   2393 	}
   2394 
   2395 	if (rchk && op != CVT) {
   2396 		osz = size(ot);
   2397 		nsz = tp->t_bitfield ? tp->t_flen : size(nt);
   2398 		xmask = qlmasks[nsz] ^ qlmasks[osz];
   2399 		xmsk1 = qlmasks[nsz] ^ qlmasks[osz - 1];
   2400 		/*
   2401 		 * For bitwise operations we are not interested in the
   2402 		 * value, but in the bits itself.
   2403 		 */
   2404 		if (op == ORASS || op == BITOR || op == BITXOR) {
   2405 			/*
   2406 			 * Print a warning if bits which were set are
   2407 			 * lost due to the conversion.
   2408 			 * This can happen with operator ORASS only.
   2409 			 */
   2410 			if (nsz < osz && (v->v_quad & xmask) != 0) {
   2411 				/* constant truncated by conv., op %s */
   2412 				warning(306, modtab[op].m_name);
   2413 			}
   2414 		} else if (op == ANDASS || op == BITAND) {
   2415 			/*
   2416 			 * Print a warning if additional bits are not all 1
   2417 			 * and the most significant bit of the old value is 1,
   2418 			 * or if at least one (but not all) removed bit was 0.
   2419 			 */
   2420 			if (nsz > osz &&
   2421 			    (nv->v_quad & qbmasks[osz - 1]) != 0 &&
   2422 			    (nv->v_quad & xmask) != xmask) {
   2423 				/* extra bits set to 0 in conv. of '%s' ... */
   2424 				warning(309, type_name(gettyp(ot)),
   2425 				    type_name(tp), modtab[op].m_name);
   2426 			} else if (nsz < osz &&
   2427 				   (v->v_quad & xmask) != xmask &&
   2428 				   (v->v_quad & xmask) != 0) {
   2429 				/* constant truncated by conv., op %s */
   2430 				warning(306, modtab[op].m_name);
   2431 			}
   2432 		} else if ((nt != PTR && is_uinteger(nt)) &&
   2433 			   (ot != PTR && !is_uinteger(ot)) &&
   2434 			   v->v_quad < 0) {
   2435 			if (op == ASSIGN) {
   2436 				/* assignment of negative constant to ... */
   2437 				warning(164);
   2438 			} else if (op == INIT) {
   2439 				/* initialization of unsigned with neg... */
   2440 				warning(221);
   2441 			} else if (op == FARG) {
   2442 				/* conversion of negative constant to ... */
   2443 				warning(296, arg);
   2444 			} else if (modtab[op].m_comparison) {
   2445 				/* handled by check_integer_comparison() */
   2446 			} else {
   2447 				/* conversion of negative constant to ... */
   2448 				warning(222);
   2449 			}
   2450 		} else if (nv->v_quad != v->v_quad && nsz <= osz &&
   2451 			   (v->v_quad & xmask) != 0 &&
   2452 			   (is_uinteger(ot) || (v->v_quad & xmsk1) != xmsk1)) {
   2453 			/*
   2454 			 * Loss of significant bit(s). All truncated bits
   2455 			 * of unsigned types or all truncated bits plus the
   2456 			 * msb of the target for signed types are considered
   2457 			 * to be significant bits. Loss of significant bits
   2458 			 * means that at least on of the bits was set in an
   2459 			 * unsigned type or that at least one, but not all of
   2460 			 * the bits was set in an signed type.
   2461 			 * Loss of significant bits means that it is not
   2462 			 * possible, also not with necessary casts, to convert
   2463 			 * back to the original type. A example for a
   2464 			 * necessary cast is:
   2465 			 *	char c;	int	i; c = 128;
   2466 			 *	i = c;			** yields -128 **
   2467 			 *	i = (unsigned char)c;	** yields 128 **
   2468 			 */
   2469 			if (op == ASSIGN && tp->t_bitfield) {
   2470 				/* precision lost in bit-field assignment */
   2471 				warning(166);
   2472 			} else if (op == ASSIGN) {
   2473 				/* constant truncated by assignment */
   2474 				warning(165);
   2475 			} else if (op == INIT && tp->t_bitfield) {
   2476 				/* bit-field initializer does not fit */
   2477 				warning(180);
   2478 			} else if (op == INIT) {
   2479 				/* initializer does not fit */
   2480 				warning(178);
   2481 			} else if (op == CASE) {
   2482 				/* case label affected by conversion */
   2483 				warning(196);
   2484 			} else if (op == FARG) {
   2485 				/* conv. of '%s' to '%s' is out of range, ... */
   2486 				warning(295,
   2487 				    type_name(gettyp(ot)), type_name(tp), arg);
   2488 			} else {
   2489 				/* conversion of '%s' to '%s' is out of range */
   2490 				warning(119,
   2491 				    type_name(gettyp(ot)), type_name(tp));
   2492 			}
   2493 		} else if (nv->v_quad != v->v_quad) {
   2494 			if (op == ASSIGN && tp->t_bitfield) {
   2495 				/* precision lost in bit-field assignment */
   2496 				warning(166);
   2497 			} else if (op == INIT && tp->t_bitfield) {
   2498 				/* bit-field initializer out of range */
   2499 				warning(11);
   2500 			} else if (op == CASE) {
   2501 				/* case label affected by conversion */
   2502 				warning(196);
   2503 			} else if (op == FARG) {
   2504 				/* conv. of '%s' to '%s' is out of range, ... */
   2505 				warning(295,
   2506 				    type_name(gettyp(ot)), type_name(tp), arg);
   2507 			} else {
   2508 				/* conversion of '%s' to '%s' is out of range */
   2509 				warning(119,
   2510 				    type_name(gettyp(ot)), type_name(tp));
   2511 			}
   2512 		}
   2513 	}
   2514 }
   2515 
   2516 /*
   2517  * Called if incompatible types were detected.
   2518  * Prints a appropriate warning.
   2519  */
   2520 static void
   2521 warn_incompatible_types(op_t op, tspec_t lt, tspec_t rt)
   2522 {
   2523 	mod_t	*mp;
   2524 
   2525 	mp = &modtab[op];
   2526 
   2527 	if (lt == VOID || (mp->m_binary && rt == VOID)) {
   2528 		/* void type illegal in expression */
   2529 		error(109);
   2530 	} else if (op == ASSIGN) {
   2531 		if ((lt == STRUCT || lt == UNION) &&
   2532 		    (rt == STRUCT || rt == UNION)) {
   2533 			/* assignment of different structures (%s != %s) */
   2534 			error(240, tspec_name(lt), tspec_name(rt));
   2535 		} else {
   2536 			/* assignment type mismatch (%s != %s) */
   2537 			error(171, tspec_name(lt), tspec_name(rt));
   2538 		}
   2539 	} else if (mp->m_binary) {
   2540 		/* operands of '%s' have incompatible types (%s != %s) */
   2541 		error(107, mp->m_name, tspec_name(lt), tspec_name(rt));
   2542 	} else {
   2543 		lint_assert(rt == NOTSPEC);
   2544 		/* operand of '%s' has invalid type (%s) */
   2545 		error(108, mp->m_name, tspec_name(lt));
   2546 	}
   2547 }
   2548 
   2549 /*
   2550  * Called if incompatible pointer types are detected.
   2551  * Print an appropriate warning.
   2552  */
   2553 static void
   2554 warn_incompatible_pointers(const mod_t *mp,
   2555 			   const type_t *ltp, const type_t *rtp)
   2556 {
   2557 	tspec_t	lt, rt;
   2558 
   2559 	lint_assert(ltp->t_tspec == PTR);
   2560 	lint_assert(rtp->t_tspec == PTR);
   2561 
   2562 	lt = ltp->t_subt->t_tspec;
   2563 	rt = rtp->t_subt->t_tspec;
   2564 
   2565 	if ((lt == STRUCT || lt == UNION) && (rt == STRUCT || rt == UNION)) {
   2566 		if (mp == NULL) {
   2567 			/* illegal structure pointer combination */
   2568 			warning(244);
   2569 		} else {
   2570 			/* illegal structure pointer combination, op %s */
   2571 			warning(245, mp->m_name);
   2572 		}
   2573 	} else {
   2574 		if (mp == NULL) {
   2575 			/* illegal pointer combination */
   2576 			warning(184);
   2577 		} else {
   2578 			/* illegal pointer combination (%s) and (%s), op %s */
   2579 			warning(124,
   2580 			    type_name(ltp), type_name(rtp), mp->m_name);
   2581 		}
   2582 	}
   2583 }
   2584 
   2585 /*
   2586  * Make sure type (*tpp)->t_subt has at least the qualifiers
   2587  * of tp1->t_subt and tp2->t_subt.
   2588  */
   2589 static void
   2590 merge_qualifiers(type_t **tpp, type_t *tp1, type_t *tp2)
   2591 {
   2592 
   2593 	lint_assert((*tpp)->t_tspec == PTR);
   2594 	lint_assert(tp1->t_tspec == PTR);
   2595 	lint_assert(tp2->t_tspec == PTR);
   2596 
   2597 	if ((*tpp)->t_subt->t_const ==
   2598 	    (tp1->t_subt->t_const | tp2->t_subt->t_const) &&
   2599 	    (*tpp)->t_subt->t_volatile ==
   2600 	    (tp1->t_subt->t_volatile | tp2->t_subt->t_volatile)) {
   2601 		return;
   2602 	}
   2603 
   2604 	*tpp = tduptyp(*tpp);
   2605 	(*tpp)->t_subt = tduptyp((*tpp)->t_subt);
   2606 	(*tpp)->t_subt->t_const =
   2607 		tp1->t_subt->t_const | tp2->t_subt->t_const;
   2608 	(*tpp)->t_subt->t_volatile =
   2609 		tp1->t_subt->t_volatile | tp2->t_subt->t_volatile;
   2610 }
   2611 
   2612 /*
   2613  * Returns true if the given structure or union has a constant member
   2614  * (maybe recursively).
   2615  */
   2616 static bool
   2617 has_constant_member(const type_t *tp)
   2618 {
   2619 	sym_t	*m;
   2620 	tspec_t	t;
   2621 
   2622 	lint_assert((t = tp->t_tspec) == STRUCT || t == UNION);
   2623 
   2624 	for (m = tp->t_str->sou_first_member; m != NULL; m = m->s_next) {
   2625 		tp = m->s_type;
   2626 		if (tp->t_const)
   2627 			return true;
   2628 		if ((t = tp->t_tspec) == STRUCT || t == UNION) {
   2629 			if (has_constant_member(m->s_type))
   2630 				return true;
   2631 		}
   2632 	}
   2633 	return false;
   2634 }
   2635 
   2636 /*
   2637  * Create a new node for one of the operators POINT and ARROW.
   2638  */
   2639 static tnode_t *
   2640 build_struct_access(op_t op, tnode_t *ln, tnode_t *rn)
   2641 {
   2642 	tnode_t	*ntn, *ctn;
   2643 	bool	nolval;
   2644 
   2645 	lint_assert(rn->tn_op == NAME);
   2646 	lint_assert(rn->tn_sym->s_value.v_tspec == INT);
   2647 	lint_assert(rn->tn_sym->s_scl == MOS || rn->tn_sym->s_scl == MOU);
   2648 
   2649 	/*
   2650 	 * Remember if the left operand is an lvalue (structure members
   2651 	 * are lvalues if and only if the structure itself is an lvalue).
   2652 	 */
   2653 	nolval = op == POINT && !ln->tn_lvalue;
   2654 
   2655 	if (op == POINT) {
   2656 		ln = build_address(ln, true);
   2657 	} else if (ln->tn_type->t_tspec != PTR) {
   2658 		lint_assert(tflag);
   2659 		lint_assert(is_integer(ln->tn_type->t_tspec));
   2660 		ln = convert(NOOP, 0, tincref(gettyp(VOID), PTR), ln);
   2661 	}
   2662 
   2663 	ctn = new_integer_constant_node(PTRDIFF_TSPEC,
   2664 	    rn->tn_sym->s_value.v_quad / CHAR_SIZE);
   2665 
   2666 	ntn = new_tnode(PLUS, tincref(rn->tn_type, PTR), ln, ctn);
   2667 	if (ln->tn_op == CON)
   2668 		ntn = fold(ntn);
   2669 
   2670 	if (rn->tn_type->t_bitfield) {
   2671 		ntn = new_tnode(FSEL, ntn->tn_type->t_subt, ntn, NULL);
   2672 	} else {
   2673 		ntn = new_tnode(INDIR, ntn->tn_type->t_subt, ntn, NULL);
   2674 	}
   2675 
   2676 	if (nolval)
   2677 		ntn->tn_lvalue = false;
   2678 
   2679 	return ntn;
   2680 }
   2681 
   2682 /*
   2683  * Create a node for INCAFT, INCBEF, DECAFT and DECBEF.
   2684  */
   2685 static tnode_t *
   2686 build_prepost_incdec(op_t op, tnode_t *ln)
   2687 {
   2688 	tnode_t	*cn, *ntn;
   2689 
   2690 	lint_assert(ln != NULL);
   2691 
   2692 	if (ln->tn_type->t_tspec == PTR) {
   2693 		cn = plength(ln->tn_type);
   2694 	} else {
   2695 		cn = new_integer_constant_node(INT, (int64_t)1);
   2696 	}
   2697 	ntn = new_tnode(op, ln->tn_type, ln, cn);
   2698 
   2699 	return ntn;
   2700 }
   2701 
   2702 /*
   2703  * Create a node for REAL, IMAG
   2704  */
   2705 static tnode_t *
   2706 build_real_imag(op_t op, tnode_t *ln)
   2707 {
   2708 	tnode_t	*cn, *ntn;
   2709 
   2710 	lint_assert(ln != NULL);
   2711 
   2712 	switch (ln->tn_type->t_tspec) {
   2713 	case LCOMPLEX:
   2714 		/* XXX: integer and LDOUBLE don't match. */
   2715 		cn = new_integer_constant_node(LDOUBLE, (int64_t)1);
   2716 		break;
   2717 	case DCOMPLEX:
   2718 		cn = new_integer_constant_node(DOUBLE, (int64_t)1);
   2719 		break;
   2720 	case FCOMPLEX:
   2721 		cn = new_integer_constant_node(FLOAT, (int64_t)1);
   2722 		break;
   2723 	default:
   2724 		/* __%s__ is illegal for type %s */
   2725 		error(276, op == REAL ? "real" : "imag",
   2726 		    type_name(ln->tn_type));
   2727 		return NULL;
   2728 	}
   2729 	ntn = new_tnode(op, cn->tn_type, ln, cn);
   2730 	ntn->tn_lvalue = true;
   2731 
   2732 	return ntn;
   2733 }
   2734 /*
   2735  * Create a tree node for the unary & operator
   2736  */
   2737 static tnode_t *
   2738 build_address(tnode_t *tn, bool noign)
   2739 {
   2740 	tspec_t	t;
   2741 
   2742 	if (!noign && ((t = tn->tn_type->t_tspec) == ARRAY || t == FUNC)) {
   2743 		if (tflag)
   2744 			/* '&' before array or function: ignored */
   2745 			warning(127);
   2746 		return tn;
   2747 	}
   2748 
   2749 	/* eliminate &* */
   2750 	if (tn->tn_op == INDIR &&
   2751 	    tn->tn_left->tn_type->t_tspec == PTR &&
   2752 	    tn->tn_left->tn_type->t_subt == tn->tn_type) {
   2753 		return tn->tn_left;
   2754 	}
   2755 
   2756 	return new_tnode(ADDR, tincref(tn->tn_type, PTR), tn, NULL);
   2757 }
   2758 
   2759 /*
   2760  * Create a node for operators PLUS and MINUS.
   2761  */
   2762 static tnode_t *
   2763 build_plus_minus(op_t op, tnode_t *ln, tnode_t *rn)
   2764 {
   2765 	tnode_t	*ntn, *ctn;
   2766 	type_t	*tp;
   2767 
   2768 	/* If pointer and integer, then pointer to the lhs. */
   2769 	if (rn->tn_type->t_tspec == PTR && is_integer(ln->tn_type->t_tspec)) {
   2770 		ntn = ln;
   2771 		ln = rn;
   2772 		rn = ntn;
   2773 	}
   2774 
   2775 	if (ln->tn_type->t_tspec == PTR && rn->tn_type->t_tspec != PTR) {
   2776 
   2777 		lint_assert(is_integer(rn->tn_type->t_tspec));
   2778 
   2779 		ctn = plength(ln->tn_type);
   2780 		if (rn->tn_type->t_tspec != ctn->tn_type->t_tspec)
   2781 			rn = convert(NOOP, 0, ctn->tn_type, rn);
   2782 		rn = new_tnode(MULT, rn->tn_type, rn, ctn);
   2783 		if (rn->tn_left->tn_op == CON)
   2784 			rn = fold(rn);
   2785 		ntn = new_tnode(op, ln->tn_type, ln, rn);
   2786 
   2787 	} else if (rn->tn_type->t_tspec == PTR) {
   2788 
   2789 		lint_assert(ln->tn_type->t_tspec == PTR);
   2790 		lint_assert(op == MINUS);
   2791 		tp = gettyp(PTRDIFF_TSPEC);
   2792 		ntn = new_tnode(op, tp, ln, rn);
   2793 		if (ln->tn_op == CON && rn->tn_op == CON)
   2794 			ntn = fold(ntn);
   2795 		ctn = plength(ln->tn_type);
   2796 		balance(NOOP, &ntn, &ctn);
   2797 		ntn = new_tnode(DIV, tp, ntn, ctn);
   2798 
   2799 	} else {
   2800 
   2801 		ntn = new_tnode(op, ln->tn_type, ln, rn);
   2802 
   2803 	}
   2804 	return ntn;
   2805 }
   2806 
   2807 /*
   2808  * Create a node for operators SHL and SHR.
   2809  */
   2810 static tnode_t *
   2811 build_bit_shift(op_t op, tnode_t *ln, tnode_t *rn)
   2812 {
   2813 	tspec_t	t;
   2814 	tnode_t	*ntn;
   2815 
   2816 	if ((t = rn->tn_type->t_tspec) != INT && t != UINT)
   2817 		rn = convert(CVT, 0, gettyp(INT), rn);
   2818 	ntn = new_tnode(op, ln->tn_type, ln, rn);
   2819 	return ntn;
   2820 }
   2821 
   2822 /*
   2823  * Create a node for COLON.
   2824  */
   2825 static tnode_t *
   2826 build_colon(tnode_t *ln, tnode_t *rn)
   2827 {
   2828 	tspec_t	lt, rt, pdt;
   2829 	type_t	*rtp;
   2830 	tnode_t	*ntn;
   2831 
   2832 	lt = ln->tn_type->t_tspec;
   2833 	rt = rn->tn_type->t_tspec;
   2834 	pdt = PTRDIFF_TSPEC;
   2835 
   2836 	/*
   2837 	 * Arithmetic types are balanced, all other type combinations
   2838 	 * still need to be handled.
   2839 	 */
   2840 	if (is_arithmetic(lt) && is_arithmetic(rt)) {
   2841 		rtp = ln->tn_type;
   2842 	} else if (lt == BOOL && rt == BOOL) {
   2843 		rtp = ln->tn_type;
   2844 	} else if (lt == VOID || rt == VOID) {
   2845 		rtp = gettyp(VOID);
   2846 	} else if (lt == STRUCT || lt == UNION) {
   2847 		/* Both types must be identical. */
   2848 		lint_assert(rt == STRUCT || rt == UNION);
   2849 		lint_assert(ln->tn_type->t_str == rn->tn_type->t_str);
   2850 		if (is_incomplete(ln->tn_type)) {
   2851 			/* unknown operand size, op %s */
   2852 			error(138, modtab[COLON].m_name);
   2853 			return NULL;
   2854 		}
   2855 		rtp = ln->tn_type;
   2856 	} else if (lt == PTR && is_integer(rt)) {
   2857 		if (rt != pdt) {
   2858 			rn = convert(NOOP, 0, gettyp(pdt), rn);
   2859 			rt = pdt;
   2860 		}
   2861 		rtp = ln->tn_type;
   2862 	} else if (rt == PTR && is_integer(lt)) {
   2863 		if (lt != pdt) {
   2864 			ln = convert(NOOP, 0, gettyp(pdt), ln);
   2865 			lt = pdt;
   2866 		}
   2867 		rtp = rn->tn_type;
   2868 	} else if (lt == PTR && ln->tn_type->t_subt->t_tspec == VOID) {
   2869 		lint_assert(rt == PTR);
   2870 		rtp = rn->tn_type;
   2871 		merge_qualifiers(&rtp, ln->tn_type, rn->tn_type);
   2872 	} else if (rt == PTR && rn->tn_type->t_subt->t_tspec == VOID) {
   2873 		lint_assert(lt == PTR);
   2874 		rtp = ln->tn_type;
   2875 		merge_qualifiers(&rtp, ln->tn_type, rn->tn_type);
   2876 	} else {
   2877 		lint_assert(lt == PTR);
   2878 		lint_assert(rt == PTR);
   2879 		/*
   2880 		 * XXX For now we simply take the left type. This is
   2881 		 * probably wrong, if one type contains a function prototype
   2882 		 * and the other one, at the same place, only an old style
   2883 		 * declaration.
   2884 		 */
   2885 		rtp = ln->tn_type;
   2886 		merge_qualifiers(&rtp, ln->tn_type, rn->tn_type);
   2887 	}
   2888 
   2889 	ntn = new_tnode(COLON, rtp, ln, rn);
   2890 
   2891 	return ntn;
   2892 }
   2893 
   2894 /*
   2895  * Create a node for an assignment operator (both = and op= ).
   2896  */
   2897 static tnode_t *
   2898 build_assignment(op_t op, tnode_t *ln, tnode_t *rn)
   2899 {
   2900 	tspec_t	lt, rt;
   2901 	tnode_t	*ntn, *ctn;
   2902 
   2903 	lint_assert(ln != NULL);
   2904 	lint_assert(rn != NULL);
   2905 
   2906 	lt = ln->tn_type->t_tspec;
   2907 	rt = rn->tn_type->t_tspec;
   2908 
   2909 	if ((op == ADDASS || op == SUBASS) && lt == PTR) {
   2910 		lint_assert(is_integer(rt));
   2911 		ctn = plength(ln->tn_type);
   2912 		if (rn->tn_type->t_tspec != ctn->tn_type->t_tspec)
   2913 			rn = convert(NOOP, 0, ctn->tn_type, rn);
   2914 		rn = new_tnode(MULT, rn->tn_type, rn, ctn);
   2915 		if (rn->tn_left->tn_op == CON)
   2916 			rn = fold(rn);
   2917 	}
   2918 
   2919 	if ((op == ASSIGN || op == RETURN) && (lt == STRUCT || rt == STRUCT)) {
   2920 		lint_assert(lt == rt);
   2921 		lint_assert(ln->tn_type->t_str == rn->tn_type->t_str);
   2922 		if (is_incomplete(ln->tn_type)) {
   2923 			if (op == RETURN) {
   2924 				/* cannot return incomplete type */
   2925 				error(212);
   2926 			} else {
   2927 				/* unknown operand size, op %s */
   2928 				error(138, modtab[op].m_name);
   2929 			}
   2930 			return NULL;
   2931 		}
   2932 	}
   2933 
   2934 	if (op == SHLASS) {
   2935 		if (psize(lt) < psize(rt)) {
   2936 			if (hflag)
   2937 				/* semantics of '%s' change in ANSI C; ... */
   2938 				warning(118, "<<=");
   2939 		}
   2940 	} else if (op != SHRASS) {
   2941 		if (op == ASSIGN || lt != PTR) {
   2942 			if (lt != rt ||
   2943 			    (ln->tn_type->t_bitfield && rn->tn_op == CON)) {
   2944 				rn = convert(op, 0, ln->tn_type, rn);
   2945 				rt = lt;
   2946 			}
   2947 		}
   2948 	}
   2949 
   2950 	ntn = new_tnode(op, ln->tn_type, ln, rn);
   2951 
   2952 	return ntn;
   2953 }
   2954 
   2955 /*
   2956  * Get length of type tp->t_subt.
   2957  */
   2958 static tnode_t *
   2959 plength(type_t *tp)
   2960 {
   2961 	int	elem, elsz;
   2962 
   2963 	lint_assert(tp->t_tspec == PTR);
   2964 	tp = tp->t_subt;
   2965 
   2966 	elem = 1;
   2967 	elsz = 0;
   2968 
   2969 	while (tp->t_tspec == ARRAY) {
   2970 		elem *= tp->t_dim;
   2971 		tp = tp->t_subt;
   2972 	}
   2973 
   2974 	switch (tp->t_tspec) {
   2975 	case FUNC:
   2976 		/* pointer to function is not allowed here */
   2977 		error(110);
   2978 		break;
   2979 	case VOID:
   2980 		/* cannot do pointer arithmetic on operand of unknown size */
   2981 		gnuism(136);
   2982 		break;
   2983 	case STRUCT:
   2984 	case UNION:
   2985 		if ((elsz = tp->t_str->sou_size_in_bit) == 0)
   2986 			/* cannot do pointer arithmetic on operand of ... */
   2987 			error(136);
   2988 		break;
   2989 	case ENUM:
   2990 		if (is_incomplete(tp)) {
   2991 			/* cannot do pointer arithmetic on operand of ... */
   2992 			warning(136);
   2993 		}
   2994 		/* FALLTHROUGH */
   2995 	default:
   2996 		if ((elsz = size(tp->t_tspec)) == 0) {
   2997 			/* cannot do pointer arithmetic on operand of ... */
   2998 			error(136);
   2999 		} else {
   3000 			lint_assert(elsz != -1);
   3001 		}
   3002 		break;
   3003 	}
   3004 
   3005 	if (elem == 0 && elsz != 0) {
   3006 		/* cannot do pointer arithmetic on operand of unknown size */
   3007 		error(136);
   3008 	}
   3009 
   3010 	if (elsz == 0)
   3011 		elsz = CHAR_SIZE;
   3012 
   3013 	return new_integer_constant_node(PTRDIFF_TSPEC,
   3014 	    (int64_t)(elem * elsz / CHAR_SIZE));
   3015 }
   3016 
   3017 /*
   3018  * XXX
   3019  * Note: There appear to be a number of bugs in detecting overflow in
   3020  * this function. An audit and a set of proper regression tests are needed.
   3021  *     --Perry Metzger, Nov. 16, 2001
   3022  */
   3023 /*
   3024  * Do only as much as necessary to compute constant expressions.
   3025  * Called only if the operator allows folding and all operands are constants.
   3026  */
   3027 static tnode_t *
   3028 fold(tnode_t *tn)
   3029 {
   3030 	val_t	*v;
   3031 	tspec_t	t;
   3032 	bool	utyp, ovfl;
   3033 	int64_t	sl, sr = 0, q = 0, mask;
   3034 	uint64_t ul, ur = 0;
   3035 	tnode_t	*cn;
   3036 
   3037 	v = xcalloc(1, sizeof (val_t));
   3038 	v->v_tspec = t = tn->tn_type->t_tspec;
   3039 
   3040 	utyp = t == PTR || is_uinteger(t);
   3041 	ul = sl = tn->tn_left->tn_val->v_quad;
   3042 	if (modtab[tn->tn_op].m_binary)
   3043 		ur = sr = tn->tn_right->tn_val->v_quad;
   3044 
   3045 	mask = qlmasks[size(t)];
   3046 	ovfl = false;
   3047 
   3048 	switch (tn->tn_op) {
   3049 	case UPLUS:
   3050 		q = sl;
   3051 		break;
   3052 	case UMINUS:
   3053 		q = -sl;
   3054 		if (sl != 0 && msb(q, t, -1) == msb(sl, t, -1))
   3055 			ovfl = true;
   3056 		break;
   3057 	case COMPL:
   3058 		q = ~sl;
   3059 		break;
   3060 	case MULT:
   3061 		if (utyp) {
   3062 			q = ul * ur;
   3063 			if (q != (q & mask))
   3064 				ovfl = true;
   3065 			else if ((ul != 0) && ((q / ul) != ur))
   3066 				ovfl = true;
   3067 		} else {
   3068 			q = sl * sr;
   3069 			if (msb(q, t, -1) != (msb(sl, t, -1) ^ msb(sr, t, -1)))
   3070 				ovfl = true;
   3071 		}
   3072 		break;
   3073 	case DIV:
   3074 		if (sr == 0) {
   3075 			/* division by 0 */
   3076 			error(139);
   3077 			q = utyp ? UQUAD_MAX : QUAD_MAX;
   3078 		} else {
   3079 			q = utyp ? (int64_t)(ul / ur) : sl / sr;
   3080 		}
   3081 		break;
   3082 	case MOD:
   3083 		if (sr == 0) {
   3084 			/* modulus by 0 */
   3085 			error(140);
   3086 			q = 0;
   3087 		} else {
   3088 			q = utyp ? (int64_t)(ul % ur) : sl % sr;
   3089 		}
   3090 		break;
   3091 	case PLUS:
   3092 		q = utyp ? (int64_t)(ul + ur) : sl + sr;
   3093 		if (msb(sl, t, -1)  != 0 && msb(sr, t, -1) != 0) {
   3094 			if (msb(q, t, -1) == 0)
   3095 				ovfl = true;
   3096 		} else if (msb(sl, t, -1) == 0 && msb(sr, t, -1) == 0) {
   3097 			if (msb(q, t, -1) != 0)
   3098 				ovfl = true;
   3099 		}
   3100 		break;
   3101 	case MINUS:
   3102 		q = utyp ? (int64_t)(ul - ur) : sl - sr;
   3103 		if (msb(sl, t, -1) != 0 && msb(sr, t, -1) == 0) {
   3104 			if (msb(q, t, -1) == 0)
   3105 				ovfl = true;
   3106 		} else if (msb(sl, t, -1) == 0 && msb(sr, t, -1) != 0) {
   3107 			if (msb(q, t, -1) != 0)
   3108 				ovfl = true;
   3109 		}
   3110 		break;
   3111 	case SHL:
   3112 		q = utyp ? (int64_t)(ul << sr) : sl << sr;
   3113 		break;
   3114 	case SHR:
   3115 		/*
   3116 		 * The sign must be explicitly extended because
   3117 		 * shifts of signed values are implementation dependent.
   3118 		 */
   3119 		q = ul >> sr;
   3120 		q = xsign(q, t, size(t) - (int)sr);
   3121 		break;
   3122 	case LT:
   3123 		q = (utyp ? ul < ur : sl < sr) ? 1 : 0;
   3124 		break;
   3125 	case LE:
   3126 		q = (utyp ? ul <= ur : sl <= sr) ? 1 : 0;
   3127 		break;
   3128 	case GE:
   3129 		q = (utyp ? ul >= ur : sl >= sr) ? 1 : 0;
   3130 		break;
   3131 	case GT:
   3132 		q = (utyp ? ul > ur : sl > sr) ? 1 : 0;
   3133 		break;
   3134 	case EQ:
   3135 		q = (utyp ? ul == ur : sl == sr) ? 1 : 0;
   3136 		break;
   3137 	case NE:
   3138 		q = (utyp ? ul != ur : sl != sr) ? 1 : 0;
   3139 		break;
   3140 	case BITAND:
   3141 		q = utyp ? (int64_t)(ul & ur) : sl & sr;
   3142 		break;
   3143 	case BITXOR:
   3144 		q = utyp ? (int64_t)(ul ^ ur) : sl ^ sr;
   3145 		break;
   3146 	case BITOR:
   3147 		q = utyp ? (int64_t)(ul | ur) : sl | sr;
   3148 		break;
   3149 	default:
   3150 		lint_assert(/*CONSTCOND*/false);
   3151 	}
   3152 
   3153 	/* XXX does not work for quads. */
   3154 	if (ovfl || ((uint64_t)(q | mask) != ~(uint64_t)0 &&
   3155 	    (q & ~mask) != 0)) {
   3156 		if (hflag)
   3157 			/* integer overflow detected, op %s */
   3158 			warning(141, modtab[tn->tn_op].m_name);
   3159 	}
   3160 
   3161 	v->v_quad = xsign(q, t, -1);
   3162 
   3163 	cn = new_constant_node(tn->tn_type, v);
   3164 
   3165 	return cn;
   3166 }
   3167 
   3168 /*
   3169  * Fold constant nodes, as much as is needed for comparing the value with 0
   3170  * (test context, for controlling expressions).
   3171  */
   3172 static tnode_t *
   3173 fold_test(tnode_t *tn)
   3174 {
   3175 	bool	l, r;
   3176 	val_t	*v;
   3177 
   3178 	v = xcalloc(1, sizeof (val_t));
   3179 	v->v_tspec = tn->tn_type->t_tspec;
   3180 	lint_assert(v->v_tspec == INT || (Tflag && v->v_tspec == BOOL));
   3181 
   3182 	l = is_nonzero(tn->tn_left);
   3183 	r = modtab[tn->tn_op].m_binary && is_nonzero(tn->tn_right);
   3184 
   3185 	switch (tn->tn_op) {
   3186 	case NOT:
   3187 		if (hflag && !constcond_flag)
   3188 			/* constant argument to NOT */
   3189 			warning(239);
   3190 		v->v_quad = !l ? 1 : 0;
   3191 		break;
   3192 	case LOGAND:
   3193 		v->v_quad = l && r ? 1 : 0;
   3194 		break;
   3195 	case LOGOR:
   3196 		v->v_quad = l || r ? 1 : 0;
   3197 		break;
   3198 	default:
   3199 		lint_assert(/*CONSTCOND*/false);
   3200 	}
   3201 
   3202 	return new_constant_node(tn->tn_type, v);
   3203 }
   3204 
   3205 /*
   3206  * Fold constant nodes having operands with floating point type.
   3207  */
   3208 static tnode_t *
   3209 fold_float(tnode_t *tn)
   3210 {
   3211 	val_t	*v;
   3212 	tspec_t	t;
   3213 	ldbl_t	l, r = 0;
   3214 
   3215 	fpe = 0;
   3216 	v = xcalloc(1, sizeof (val_t));
   3217 	v->v_tspec = t = tn->tn_type->t_tspec;
   3218 
   3219 	lint_assert(is_floating(t));
   3220 	lint_assert(t == tn->tn_left->tn_type->t_tspec);
   3221 	lint_assert(!modtab[tn->tn_op].m_binary ||
   3222 	    t == tn->tn_right->tn_type->t_tspec);
   3223 
   3224 	l = tn->tn_left->tn_val->v_ldbl;
   3225 	if (modtab[tn->tn_op].m_binary)
   3226 		r = tn->tn_right->tn_val->v_ldbl;
   3227 
   3228 	switch (tn->tn_op) {
   3229 	case UPLUS:
   3230 		v->v_ldbl = l;
   3231 		break;
   3232 	case UMINUS:
   3233 		v->v_ldbl = -l;
   3234 		break;
   3235 	case MULT:
   3236 		v->v_ldbl = l * r;
   3237 		break;
   3238 	case DIV:
   3239 		if (r == 0.0) {
   3240 			/* division by 0 */
   3241 			error(139);
   3242 			if (t == FLOAT) {
   3243 				v->v_ldbl = l < 0 ? -FLT_MAX : FLT_MAX;
   3244 			} else if (t == DOUBLE) {
   3245 				v->v_ldbl = l < 0 ? -DBL_MAX : DBL_MAX;
   3246 			} else {
   3247 				v->v_ldbl = l < 0 ? -LDBL_MAX : LDBL_MAX;
   3248 			}
   3249 		} else {
   3250 			v->v_ldbl = l / r;
   3251 		}
   3252 		break;
   3253 	case PLUS:
   3254 		v->v_ldbl = l + r;
   3255 		break;
   3256 	case MINUS:
   3257 		v->v_ldbl = l - r;
   3258 		break;
   3259 	case LT:
   3260 		v->v_quad = l < r ? 1 : 0;
   3261 		break;
   3262 	case LE:
   3263 		v->v_quad = l <= r ? 1 : 0;
   3264 		break;
   3265 	case GE:
   3266 		v->v_quad = l >= r ? 1 : 0;
   3267 		break;
   3268 	case GT:
   3269 		v->v_quad = l > r ? 1 : 0;
   3270 		break;
   3271 	case EQ:
   3272 		v->v_quad = l == r ? 1 : 0;
   3273 		break;
   3274 	case NE:
   3275 		v->v_quad = l != r ? 1 : 0;
   3276 		break;
   3277 	default:
   3278 		lint_assert(/*CONSTCOND*/false);
   3279 	}
   3280 
   3281 	lint_assert(fpe != 0 || isnan((double)v->v_ldbl) == 0);
   3282 	if (fpe != 0 || finite((double)v->v_ldbl) == 0 ||
   3283 	    (t == FLOAT &&
   3284 	     (v->v_ldbl > FLT_MAX || v->v_ldbl < -FLT_MAX)) ||
   3285 	    (t == DOUBLE &&
   3286 	     (v->v_ldbl > DBL_MAX || v->v_ldbl < -DBL_MAX))) {
   3287 		/* floating point overflow detected, op %s */
   3288 		warning(142, modtab[tn->tn_op].m_name);
   3289 		if (t == FLOAT) {
   3290 			v->v_ldbl = v->v_ldbl < 0 ? -FLT_MAX : FLT_MAX;
   3291 		} else if (t == DOUBLE) {
   3292 			v->v_ldbl = v->v_ldbl < 0 ? -DBL_MAX : DBL_MAX;
   3293 		} else {
   3294 			v->v_ldbl = v->v_ldbl < 0 ? -LDBL_MAX: LDBL_MAX;
   3295 		}
   3296 	    fpe = 0;
   3297 	}
   3298 
   3299 	return new_constant_node(tn->tn_type, v);
   3300 }
   3301 
   3302 
   3303 /*
   3304  * Create a constant node for sizeof.
   3305  */
   3306 tnode_t *
   3307 build_sizeof(type_t *tp)
   3308 {
   3309 	return new_integer_constant_node(SIZEOF_TSPEC, tsize(tp) / CHAR_SIZE);
   3310 }
   3311 
   3312 /*
   3313  * Create a constant node for offsetof.
   3314  */
   3315 tnode_t *
   3316 build_offsetof(type_t *tp, sym_t *sym)
   3317 {
   3318 	tspec_t t = tp->t_tspec;
   3319 	if (t != STRUCT && t != UNION)
   3320 		/* unacceptable operand of '%s' */
   3321 		error(111, "offsetof");
   3322 
   3323 	// XXX: wrong size, no checking for sym fixme
   3324 	return new_integer_constant_node(SIZEOF_TSPEC, tsize(tp) / CHAR_SIZE);
   3325 }
   3326 
   3327 int64_t
   3328 tsize(type_t *tp)
   3329 {
   3330 	int	elem, elsz;
   3331 	bool	flex;
   3332 
   3333 	elem = 1;
   3334 	flex = false;
   3335 	while (tp->t_tspec == ARRAY) {
   3336 		flex = true;	/* allow c99 flex arrays [] [0] */
   3337 		elem *= tp->t_dim;
   3338 		tp = tp->t_subt;
   3339 	}
   3340 	if (elem == 0) {
   3341 		if (!flex) {
   3342 			/* cannot take size/alignment of incomplete type */
   3343 			error(143);
   3344 			elem = 1;
   3345 		}
   3346 	}
   3347 	switch (tp->t_tspec) {
   3348 	case FUNC:
   3349 		/* cannot take size/alignment of function */
   3350 		error(144);
   3351 		elsz = 1;
   3352 		break;
   3353 	case STRUCT:
   3354 	case UNION:
   3355 		if (is_incomplete(tp)) {
   3356 			/* cannot take size/alignment of incomplete type */
   3357 			error(143);
   3358 			elsz = 1;
   3359 		} else {
   3360 			elsz = tp->t_str->sou_size_in_bit;
   3361 		}
   3362 		break;
   3363 	case ENUM:
   3364 		if (is_incomplete(tp)) {
   3365 			/* cannot take size/alignment of incomplete type */
   3366 			warning(143);
   3367 		}
   3368 		/* FALLTHROUGH */
   3369 	default:
   3370 		if (tp->t_bitfield) {
   3371 			/* cannot take size/alignment of bit-field */
   3372 			error(145);
   3373 		}
   3374 		if (tp->t_tspec == VOID) {
   3375 			/* cannot take size/alignment of void */
   3376 			error(146);
   3377 			elsz = 1;
   3378 		} else {
   3379 			elsz = size(tp->t_tspec);
   3380 			lint_assert(elsz > 0);
   3381 		}
   3382 		break;
   3383 	}
   3384 
   3385 	return (int64_t)elem * elsz;
   3386 }
   3387 
   3388 tnode_t *
   3389 build_alignof(type_t *tp)
   3390 {
   3391 	switch (tp->t_tspec) {
   3392 	case ARRAY:
   3393 		break;
   3394 
   3395 	case FUNC:
   3396 		/* cannot take size/alignment of function */
   3397 		error(144);
   3398 		return 0;
   3399 
   3400 	case STRUCT:
   3401 	case UNION:
   3402 		if (is_incomplete(tp)) {
   3403 			/* cannot take size/alignment of incomplete type */
   3404 			error(143);
   3405 			return 0;
   3406 		}
   3407 		break;
   3408 	case ENUM:
   3409 		break;
   3410 	default:
   3411 		if (tp->t_bitfield) {
   3412 			/* cannot take size/alignment of bit-field */
   3413 			error(145);
   3414 			return 0;
   3415 		}
   3416 		if (tp->t_tspec == VOID) {
   3417 			/* cannot take size/alignment of void */
   3418 			error(146);
   3419 			return 0;
   3420 		}
   3421 		break;
   3422 	}
   3423 
   3424 	return new_integer_constant_node(SIZEOF_TSPEC,
   3425 	    (int64_t)alignment_in_bits(tp) / CHAR_SIZE);
   3426 }
   3427 
   3428 /*
   3429  * Type casts.
   3430  */
   3431 tnode_t *
   3432 cast(tnode_t *tn, type_t *tp)
   3433 {
   3434 	tspec_t	nt, ot;
   3435 
   3436 	if (tn == NULL)
   3437 		return NULL;
   3438 
   3439 	tn = cconv(tn);
   3440 
   3441 	nt = tp->t_tspec;
   3442 	ot = tn->tn_type->t_tspec;
   3443 
   3444 	if (nt == VOID) {
   3445 		/*
   3446 		 * XXX ANSI C requires scalar types or void (Plauger & Brodie).
   3447 		 * But this seems really questionable.
   3448 		 */
   3449 	} else if (nt == UNION) {
   3450 		sym_t *m;
   3451 		struct_or_union *str = tp->t_str;
   3452 		if (!Sflag) {
   3453 			/* union cast is a C9X feature */
   3454 			error(328);
   3455 			return NULL;
   3456 		}
   3457 		for (m = str->sou_first_member; m != NULL; m = m->s_next) {
   3458 			if (sametype(m->s_type, tn->tn_type)) {
   3459 				tn = getnode();
   3460 				tn->tn_op = CVT;
   3461 				tn->tn_type = tp;
   3462 				tn->tn_cast = true;
   3463 				tn->tn_right = NULL;
   3464 				return tn;
   3465 			}
   3466 		}
   3467 		/* type '%s' is not a member of '%s' */
   3468 		error(329, type_name(tn->tn_type), type_name(tp));
   3469 		return NULL;
   3470 	} else if (nt == STRUCT || nt == ARRAY || nt == FUNC) {
   3471 		if (!Sflag || nt == ARRAY || nt == FUNC) {
   3472 			/* invalid cast expression */
   3473 			error(147);
   3474 			return NULL;
   3475 		}
   3476 	} else if (ot == STRUCT || ot == UNION) {
   3477 		/* invalid cast expression */
   3478 		error(147);
   3479 		return NULL;
   3480 	} else if (ot == VOID) {
   3481 		/* improper cast of void expression */
   3482 		error(148);
   3483 		return NULL;
   3484 	} else if (is_integer(nt) && is_scalar(ot)) {
   3485 		/* ok */
   3486 	} else if (is_floating(nt) && is_arithmetic(ot)) {
   3487 		/* ok */
   3488 	} else if (nt == PTR && is_integer(ot)) {
   3489 		/* ok */
   3490 	} else if (nt == PTR && ot == PTR) {
   3491 		if (!tp->t_subt->t_const && tn->tn_type->t_subt->t_const) {
   3492 			if (hflag)
   3493 				/* cast discards 'const' from type '%s' */
   3494 				warning(275, type_name(tn->tn_type));
   3495 		}
   3496 	} else {
   3497 		/* invalid cast expression */
   3498 		error(147);
   3499 		return NULL;
   3500 	}
   3501 
   3502 	tn = convert(CVT, 0, tp, tn);
   3503 	tn->tn_cast = true;
   3504 
   3505 	return tn;
   3506 }
   3507 
   3508 /*
   3509  * Create the node for a function argument.
   3510  * All necessary conversions and type checks are done in
   3511  * new_function_call_node because new_function_argument_node has no
   3512  * information about expected argument types.
   3513  */
   3514 tnode_t *
   3515 new_function_argument_node(tnode_t *args, tnode_t *arg)
   3516 {
   3517 	tnode_t	*ntn;
   3518 
   3519 	/*
   3520 	 * If there was a serious error in the expression for the argument,
   3521 	 * create a dummy argument so the positions of the remaining arguments
   3522 	 * will not change.
   3523 	 */
   3524 	if (arg == NULL)
   3525 		arg = new_integer_constant_node(INT, (int64_t)0);
   3526 
   3527 	ntn = new_tnode(PUSH, arg->tn_type, arg, args);
   3528 
   3529 	return ntn;
   3530 }
   3531 
   3532 /*
   3533  * Create the node for a function call. Also check types of
   3534  * function arguments and insert conversions, if necessary.
   3535  */
   3536 tnode_t *
   3537 new_function_call_node(tnode_t *func, tnode_t *args)
   3538 {
   3539 	tnode_t	*ntn;
   3540 	op_t	fcop;
   3541 
   3542 	if (func == NULL)
   3543 		return NULL;
   3544 
   3545 	if (func->tn_op == NAME && func->tn_type->t_tspec == FUNC) {
   3546 		fcop = CALL;
   3547 	} else {
   3548 		fcop = ICALL;
   3549 	}
   3550 
   3551 	/*
   3552 	 * after cconv() func will always be a pointer to a function
   3553 	 * if it is a valid function designator.
   3554 	 */
   3555 	func = cconv(func);
   3556 
   3557 	if (func->tn_type->t_tspec != PTR ||
   3558 	    func->tn_type->t_subt->t_tspec != FUNC) {
   3559 		/* illegal function (type %s) */
   3560 		error(149, type_name(func->tn_type));
   3561 		return NULL;
   3562 	}
   3563 
   3564 	args = check_function_arguments(func->tn_type->t_subt, args);
   3565 
   3566 	ntn = new_tnode(fcop, func->tn_type->t_subt->t_subt, func, args);
   3567 
   3568 	return ntn;
   3569 }
   3570 
   3571 /*
   3572  * Check types of all function arguments and insert conversions,
   3573  * if necessary.
   3574  */
   3575 static tnode_t *
   3576 check_function_arguments(type_t *ftp, tnode_t *args)
   3577 {
   3578 	tnode_t	*arg;
   3579 	sym_t	*asym;
   3580 	tspec_t	at;
   3581 	int	narg, npar, n, i;
   3582 
   3583 	/* get # of args in the prototype */
   3584 	npar = 0;
   3585 	for (asym = ftp->t_args; asym != NULL; asym = asym->s_next)
   3586 		npar++;
   3587 
   3588 	/* get # of args in function call */
   3589 	narg = 0;
   3590 	for (arg = args; arg != NULL; arg = arg->tn_right)
   3591 		narg++;
   3592 
   3593 	asym = ftp->t_args;
   3594 	if (ftp->t_proto && npar != narg && !(ftp->t_vararg && npar < narg)) {
   3595 		/* argument mismatch: %d arg%s passed, %d expected */
   3596 		error(150, narg, narg > 1 ? "s" : "", npar);
   3597 		asym = NULL;
   3598 	}
   3599 
   3600 	for (n = 1; n <= narg; n++) {
   3601 
   3602 		/*
   3603 		 * The rightmost argument is at the top of the argument
   3604 		 * subtree.
   3605 		 */
   3606 		for (i = narg, arg = args; i > n; i--, arg = arg->tn_right)
   3607 			continue;
   3608 
   3609 		/* some things which are always not allowed */
   3610 		if ((at = arg->tn_left->tn_type->t_tspec) == VOID) {
   3611 			/* void expressions may not be arguments, arg #%d */
   3612 			error(151, n);
   3613 			return NULL;
   3614 		} else if ((at == STRUCT || at == UNION) &&
   3615 			   is_incomplete(arg->tn_left->tn_type)) {
   3616 			/* argument cannot have unknown size, arg #%d */
   3617 			error(152, n);
   3618 			return NULL;
   3619 		} else if (is_integer(at) &&
   3620 			   arg->tn_left->tn_type->t_is_enum &&
   3621 			   is_incomplete(arg->tn_left->tn_type)) {
   3622 			/* argument cannot have unknown size, arg #%d */
   3623 			warning(152, n);
   3624 		}
   3625 
   3626 		/* class conversions (arg in value context) */
   3627 		arg->tn_left = cconv(arg->tn_left);
   3628 
   3629 		if (asym != NULL) {
   3630 			arg->tn_left = check_prototype_argument(
   3631 			    n, asym->s_type, arg->tn_left);
   3632 		} else {
   3633 			arg->tn_left = promote(NOOP, true, arg->tn_left);
   3634 		}
   3635 		arg->tn_type = arg->tn_left->tn_type;
   3636 
   3637 		if (asym != NULL)
   3638 			asym = asym->s_next;
   3639 	}
   3640 
   3641 	return args;
   3642 }
   3643 
   3644 /*
   3645  * Compare the type of an argument with the corresponding type of a
   3646  * prototype parameter. If it is a valid combination, but both types
   3647  * are not the same, insert a conversion to convert the argument into
   3648  * the type of the parameter.
   3649  */
   3650 static tnode_t *
   3651 check_prototype_argument(
   3652 	int	n,		/* pos of arg */
   3653 	type_t	*tp,		/* expected type (from prototype) */
   3654 	tnode_t	*tn)		/* argument */
   3655 {
   3656 	tnode_t	*ln;
   3657 	bool	dowarn;
   3658 
   3659 	ln = xcalloc(1, sizeof (tnode_t));
   3660 	ln->tn_type = tduptyp(tp);
   3661 	ln->tn_type->t_const = false;
   3662 	ln->tn_lvalue = true;
   3663 	if (typeok(FARG, n, ln, tn)) {
   3664 		if (!eqtype(tp, tn->tn_type,
   3665 		    true, false, (dowarn = false, &dowarn)) || dowarn)
   3666 			tn = convert(FARG, n, tp, tn);
   3667 	}
   3668 	free(ln);
   3669 	return tn;
   3670 }
   3671 
   3672 /*
   3673  * Return the value of an integral constant expression.
   3674  * If the expression is not constant or its type is not an integer
   3675  * type, an error message is printed.
   3676  */
   3677 val_t *
   3678 constant(tnode_t *tn, bool required)
   3679 {
   3680 	val_t	*v;
   3681 
   3682 	if (tn != NULL)
   3683 		tn = cconv(tn);
   3684 	if (tn != NULL)
   3685 		tn = promote(NOOP, false, tn);
   3686 
   3687 	v = xcalloc(1, sizeof (val_t));
   3688 
   3689 	if (tn == NULL) {
   3690 		lint_assert(nerr != 0);
   3691 		if (dflag)
   3692 			printf("constant node is null; returning 1 instead\n");
   3693 		v->v_tspec = INT;
   3694 		v->v_quad = 1;
   3695 		return v;
   3696 	}
   3697 
   3698 	v->v_tspec = tn->tn_type->t_tspec;
   3699 
   3700 	if (tn->tn_op == CON) {
   3701 		lint_assert(tn->tn_type->t_tspec == tn->tn_val->v_tspec);
   3702 		if (is_integer(tn->tn_val->v_tspec)) {
   3703 			v->v_ansiu = tn->tn_val->v_ansiu;
   3704 			v->v_quad = tn->tn_val->v_quad;
   3705 			return v;
   3706 		}
   3707 		v->v_quad = tn->tn_val->v_ldbl;
   3708 	} else {
   3709 		v->v_quad = 1;
   3710 	}
   3711 
   3712 	if (required)
   3713 		/* integral constant expression expected */
   3714 		error(55);
   3715 	else
   3716 		/* variable array dimension is a C99/GCC extension */
   3717 		c99ism(318);
   3718 
   3719 	if (!is_integer(v->v_tspec))
   3720 		v->v_tspec = INT;
   3721 
   3722 	return v;
   3723 }
   3724 
   3725 static bool
   3726 is_constcond_false(const tnode_t *tn, tspec_t t)
   3727 {
   3728 	return (t == BOOL || t == INT) &&
   3729 	       tn->tn_op == CON && tn->tn_val->v_quad == 0;
   3730 }
   3731 
   3732 /*
   3733  * Perform some tests on expressions which can't be done in build() and
   3734  * functions called by build(). These tests must be done here because
   3735  * we need some information about the context in which the operations
   3736  * are performed.
   3737  * After all tests are performed and dofreeblk is true, expr() frees the
   3738  * memory which is used for the expression.
   3739  */
   3740 void
   3741 expr(tnode_t *tn, bool vctx, bool tctx, bool dofreeblk, bool constcond_zero_ok)
   3742 {
   3743 
   3744 	lint_assert(tn != NULL || nerr != 0);
   3745 
   3746 	if (tn == NULL) {
   3747 		tfreeblk();
   3748 		return;
   3749 	}
   3750 
   3751 	/* expr() is also called in global initializations */
   3752 	if (dcs->d_ctx != EXTERN)
   3753 		check_statement_reachable();
   3754 
   3755 	check_expr_misc(tn, vctx, tctx, !tctx, false, false, false);
   3756 	if (tn->tn_op == ASSIGN) {
   3757 		if (hflag && tctx)
   3758 			/* assignment in conditional context */
   3759 			warning(159);
   3760 	} else if (tn->tn_op == CON) {
   3761 		if (hflag && tctx && !constcond_flag &&
   3762 		    !(constcond_zero_ok &&
   3763 		      is_constcond_false(tn, tn->tn_type->t_tspec)))
   3764 			/* constant in conditional context */
   3765 			warning(161);
   3766 	}
   3767 	if (!modtab[tn->tn_op].m_has_side_effect) {
   3768 		/*
   3769 		 * for left operands of COMMA this warning is already
   3770 		 * printed
   3771 		 */
   3772 		if (tn->tn_op != COMMA && !vctx && !tctx)
   3773 			check_null_effect(tn);
   3774 	}
   3775 	if (dflag)
   3776 		display_expression(tn, 0);
   3777 
   3778 	/* free the tree memory */
   3779 	if (dofreeblk)
   3780 		tfreeblk();
   3781 }
   3782 
   3783 static bool
   3784 has_side_effect(const tnode_t *tn) // NOLINT(misc-no-recursion)
   3785 {
   3786 	op_t op = tn->tn_op;
   3787 
   3788 	if (modtab[op].m_has_side_effect)
   3789 		return true;
   3790 
   3791 	if (op == CVT && tn->tn_type->t_tspec == VOID)
   3792 		return has_side_effect(tn->tn_left);
   3793 
   3794 	/* XXX: Why not has_side_effect(tn->tn_left) as well? */
   3795 	if (op == LOGAND || op == LOGOR)
   3796 		return has_side_effect(tn->tn_right);
   3797 
   3798 	/* XXX: Why not has_side_effect(tn->tn_left) as well? */
   3799 	if (op == QUEST)
   3800 		return has_side_effect(tn->tn_right);
   3801 
   3802 	if (op == COLON || op == COMMA) {
   3803 		return has_side_effect(tn->tn_left) ||
   3804 		       has_side_effect(tn->tn_right);
   3805 	}
   3806 
   3807 	return false;
   3808 }
   3809 
   3810 static void
   3811 check_null_effect(const tnode_t *tn)
   3812 {
   3813 
   3814 	if (hflag && !has_side_effect(tn)) {
   3815 		/* expression has null effect */
   3816 		warning(129);
   3817 	}
   3818 }
   3819 
   3820 /*
   3821  * Dump an expression to stdout
   3822  * only used for debugging
   3823  */
   3824 static void
   3825 display_expression(const tnode_t *tn, int offs)
   3826 {
   3827 	uint64_t uq;
   3828 
   3829 	if (tn == NULL) {
   3830 		(void)printf("%*s%s\n", offs, "", "NULL");
   3831 		return;
   3832 	}
   3833 	(void)printf("%*sop %s  ", offs, "", modtab[tn->tn_op].m_name);
   3834 
   3835 	if (tn->tn_op == NAME) {
   3836 		(void)printf("%s: %s ",
   3837 		    tn->tn_sym->s_name,
   3838 		    storage_class_name(tn->tn_sym->s_scl));
   3839 	} else if (tn->tn_op == CON && is_floating(tn->tn_type->t_tspec)) {
   3840 		(void)printf("%#g ", (double)tn->tn_val->v_ldbl);
   3841 	} else if (tn->tn_op == CON && is_integer(tn->tn_type->t_tspec)) {
   3842 		uq = tn->tn_val->v_quad;
   3843 		(void)printf("0x %08lx %08lx ",
   3844 		    (long)(uq >> 32) & 0xffffffffl,
   3845 		    (long)uq & 0xffffffffl);
   3846 	} else if (tn->tn_op == CON) {
   3847 		lint_assert(tn->tn_type->t_tspec == PTR);
   3848 		(void)printf("0x%0*lx ", (int)(sizeof (void *) * CHAR_BIT / 4),
   3849 			     (u_long)tn->tn_val->v_quad);
   3850 	} else if (tn->tn_op == STRING) {
   3851 		if (tn->tn_string->st_tspec == CHAR) {
   3852 			(void)printf("\"%s\"", tn->tn_string->st_cp);
   3853 		} else {
   3854 			char	*s;
   3855 			size_t	n;
   3856 			n = MB_CUR_MAX * (tn->tn_string->st_len + 1);
   3857 			s = xmalloc(n);
   3858 			(void)wcstombs(s, tn->tn_string->st_wcp, n);
   3859 			(void)printf("L\"%s\"", s);
   3860 			free(s);
   3861 		}
   3862 		(void)printf(" ");
   3863 	} else if (tn->tn_op == FSEL) {
   3864 		(void)printf("o=%d, l=%d ", tn->tn_type->t_foffs,
   3865 			     tn->tn_type->t_flen);
   3866 	}
   3867 	(void)printf("%s\n", ttos(tn->tn_type));
   3868 	if (tn->tn_op == NAME || tn->tn_op == CON || tn->tn_op == STRING)
   3869 		return;
   3870 	display_expression(tn->tn_left, offs + 2);
   3871 	if (modtab[tn->tn_op].m_binary ||
   3872 	    (tn->tn_op == PUSH && tn->tn_right != NULL)) {
   3873 		display_expression(tn->tn_right, offs + 2);
   3874 	}
   3875 }
   3876 
   3877 /*
   3878  * Called by expr() to recursively perform some tests.
   3879  */
   3880 /* ARGSUSED */
   3881 void
   3882 check_expr_misc(const tnode_t *tn, bool vctx, bool tctx,
   3883 		bool eqwarn, bool fcall, bool rvdisc, bool szof)
   3884 {
   3885 	tnode_t	*ln, *rn;
   3886 	mod_t	*mp;
   3887 	op_t	op;
   3888 	scl_t	sc;
   3889 	dinfo_t	*di;
   3890 
   3891 	if (tn == NULL)
   3892 		return;
   3893 
   3894 	ln = tn->tn_left;
   3895 	rn = tn->tn_right;
   3896 	mp = &modtab[op = tn->tn_op];
   3897 
   3898 	switch (op) {
   3899 	case ADDR:
   3900 		if (ln->tn_op == NAME && (reached || rchflg)) {
   3901 			if (!szof)
   3902 				mark_as_set(ln->tn_sym);
   3903 			mark_as_used(ln->tn_sym, fcall, szof);
   3904 		}
   3905 		if (ln->tn_op == INDIR && ln->tn_left->tn_op == PLUS)
   3906 			/* check the range of array indices */
   3907 			check_array_index(ln->tn_left, true);
   3908 		break;
   3909 	case LOAD:
   3910 		if (ln->tn_op == INDIR && ln->tn_left->tn_op == PLUS)
   3911 			/* check the range of array indices */
   3912 			check_array_index(ln->tn_left, false);
   3913 		/* FALLTHROUGH */
   3914 	case PUSH:
   3915 	case INCBEF:
   3916 	case DECBEF:
   3917 	case INCAFT:
   3918 	case DECAFT:
   3919 	case ADDASS:
   3920 	case SUBASS:
   3921 	case MULASS:
   3922 	case DIVASS:
   3923 	case MODASS:
   3924 	case ANDASS:
   3925 	case ORASS:
   3926 	case XORASS:
   3927 	case SHLASS:
   3928 	case SHRASS:
   3929 	case REAL:
   3930 	case IMAG:
   3931 		if (ln->tn_op == NAME && (reached || rchflg)) {
   3932 			sc = ln->tn_sym->s_scl;
   3933 			/*
   3934 			 * Look if there was a asm statement in one of the
   3935 			 * compound statements we are in. If not, we don't
   3936 			 * print a warning.
   3937 			 */
   3938 			for (di = dcs; di != NULL; di = di->d_next) {
   3939 				if (di->d_asm)
   3940 					break;
   3941 			}
   3942 			if (sc != EXTERN && sc != STATIC &&
   3943 			    !ln->tn_sym->s_set && !szof && di == NULL) {
   3944 				/* %s may be used before set */
   3945 				warning(158, ln->tn_sym->s_name);
   3946 				mark_as_set(ln->tn_sym);
   3947 			}
   3948 			mark_as_used(ln->tn_sym, false, false);
   3949 		}
   3950 		break;
   3951 	case ASSIGN:
   3952 		if (ln->tn_op == NAME && !szof && (reached || rchflg)) {
   3953 			mark_as_set(ln->tn_sym);
   3954 			if (ln->tn_sym->s_scl == EXTERN)
   3955 				outusg(ln->tn_sym);
   3956 		}
   3957 		if (ln->tn_op == INDIR && ln->tn_left->tn_op == PLUS)
   3958 			/* check the range of array indices */
   3959 			check_array_index(ln->tn_left, false);
   3960 		break;
   3961 	case CALL:
   3962 		lint_assert(ln->tn_op == ADDR);
   3963 		lint_assert(ln->tn_left->tn_op == NAME);
   3964 		if (!szof)
   3965 			outcall(tn, vctx || tctx, rvdisc);
   3966 		break;
   3967 	case EQ:
   3968 		if (hflag && eqwarn)
   3969 			/* operator '==' found where '=' was expected */
   3970 			warning(160);
   3971 		break;
   3972 	case CON:
   3973 	case NAME:
   3974 	case STRING:
   3975 		return;
   3976 		/* LINTED206: (enumeration values not handled in switch) */
   3977 	case BITOR:
   3978 	case BITXOR:
   3979 	case NE:
   3980 	case GE:
   3981 	case GT:
   3982 	case LE:
   3983 	case LT:
   3984 	case SHR:
   3985 	case SHL:
   3986 	case MINUS:
   3987 	case PLUS:
   3988 	case MOD:
   3989 	case DIV:
   3990 	case MULT:
   3991 	case INDIR:
   3992 	case UMINUS:
   3993 	case UPLUS:
   3994 	case DEC:
   3995 	case INC:
   3996 	case COMPL:
   3997 	case NOT:
   3998 	case POINT:
   3999 	case ARROW:
   4000 	case NOOP:
   4001 	case BITAND:
   4002 	case FARG:
   4003 	case CASE:
   4004 	case INIT:
   4005 	case RETURN:
   4006 	case ICALL:
   4007 	case CVT:
   4008 	case COMMA:
   4009 	case FSEL:
   4010 	case COLON:
   4011 	case QUEST:
   4012 	case LOGOR:
   4013 	case LOGAND:
   4014 		break;
   4015 	}
   4016 
   4017 	bool cvctx = mp->m_left_value_context;
   4018 	bool ctctx = mp->m_left_test_context;
   4019 	bool eq = mp->m_warn_if_operand_eq &&
   4020 		  !ln->tn_parenthesized &&
   4021 		  rn != NULL && !rn->tn_parenthesized;
   4022 
   4023 	/*
   4024 	 * values of operands of ':' are not used if the type of at least
   4025 	 * one of the operands (for gcc compatibility) is void
   4026 	 * XXX test/value context of QUEST should probably be used as
   4027 	 * context for both operands of COLON
   4028 	 */
   4029 	if (op == COLON && tn->tn_type->t_tspec == VOID)
   4030 		cvctx = ctctx = false;
   4031 	bool discard = op == CVT && tn->tn_type->t_tspec == VOID;
   4032 	check_expr_misc(ln, cvctx, ctctx, eq, op == CALL, discard, szof);
   4033 
   4034 	switch (op) {
   4035 	case PUSH:
   4036 		if (rn != NULL)
   4037 			check_expr_misc(rn, false, false, eq, false, false,
   4038 			    szof);
   4039 		break;
   4040 	case LOGAND:
   4041 	case LOGOR:
   4042 		check_expr_misc(rn, false, true, eq, false, false, szof);
   4043 		break;
   4044 	case COLON:
   4045 		check_expr_misc(rn, cvctx, ctctx, eq, false, false, szof);
   4046 		break;
   4047 	case COMMA:
   4048 		check_expr_misc(rn, vctx, tctx, eq, false, false, szof);
   4049 		break;
   4050 	default:
   4051 		if (mp->m_binary)
   4052 			check_expr_misc(rn, true, false, eq, false, false,
   4053 			    szof);
   4054 		break;
   4055 	}
   4056 
   4057 }
   4058 
   4059 /*
   4060  * Checks the range of array indices, if possible.
   4061  * amper is set if only the address of the element is used. This
   4062  * means that the index is allowed to refer to the first element
   4063  * after the array.
   4064  */
   4065 static void
   4066 check_array_index(tnode_t *tn, bool amper)
   4067 {
   4068 	int	dim;
   4069 	tnode_t	*ln, *rn;
   4070 	int	elsz;
   4071 	int64_t	con;
   4072 
   4073 	ln = tn->tn_left;
   4074 	rn = tn->tn_right;
   4075 
   4076 	/* We can only check constant indices. */
   4077 	if (rn->tn_op != CON)
   4078 		return;
   4079 
   4080 	/* Return if the left node does not stem from an array. */
   4081 	if (ln->tn_op != ADDR)
   4082 		return;
   4083 	if (ln->tn_left->tn_op != STRING && ln->tn_left->tn_op != NAME)
   4084 		return;
   4085 	if (ln->tn_left->tn_type->t_tspec != ARRAY)
   4086 		return;
   4087 
   4088 	/*
   4089 	 * For incomplete array types, we can print a warning only if
   4090 	 * the index is negative.
   4091 	 */
   4092 	if (is_incomplete(ln->tn_left->tn_type) && rn->tn_val->v_quad >= 0)
   4093 		return;
   4094 
   4095 	/* Get the size of one array element */
   4096 	if ((elsz = length(ln->tn_type->t_subt, NULL)) == 0)
   4097 		return;
   4098 	elsz /= CHAR_SIZE;
   4099 
   4100 	/* Change the unit of the index from bytes to element size. */
   4101 	if (is_uinteger(rn->tn_type->t_tspec)) {
   4102 		con = (uint64_t)rn->tn_val->v_quad / elsz;
   4103 	} else {
   4104 		con = rn->tn_val->v_quad / elsz;
   4105 	}
   4106 
   4107 	dim = ln->tn_left->tn_type->t_dim + (amper ? 1 : 0);
   4108 
   4109 	if (!is_uinteger(rn->tn_type->t_tspec) && con < 0) {
   4110 		/* array subscript cannot be negative: %ld */
   4111 		warning(167, (long)con);
   4112 	} else if (dim > 0 && (uint64_t)con >= (uint64_t)dim) {
   4113 		/* array subscript cannot be > %d: %ld */
   4114 		warning(168, dim - 1, (long)con);
   4115 	}
   4116 }
   4117 
   4118 /*
   4119  * Check for ordered comparisons of unsigned values with 0.
   4120  */
   4121 static void
   4122 check_integer_comparison(op_t op, tnode_t *ln, tnode_t *rn)
   4123 {
   4124 	tspec_t	lt, rt;
   4125 	mod_t	*mp;
   4126 
   4127 	lt = ln->tn_type->t_tspec;
   4128 	rt = rn->tn_type->t_tspec;
   4129 	mp = &modtab[op];
   4130 
   4131 	if (ln->tn_op != CON && rn->tn_op != CON)
   4132 		return;
   4133 
   4134 	if (!is_integer(lt) || !is_integer(rt))
   4135 		return;
   4136 
   4137 	if ((hflag || pflag) && lt == CHAR && rn->tn_op == CON &&
   4138 	    (rn->tn_val->v_quad < 0 ||
   4139 	     rn->tn_val->v_quad > (int)~(~0U << (CHAR_SIZE - 1)))) {
   4140 		/* nonportable character comparison, op %s */
   4141 		warning(230, mp->m_name);
   4142 		return;
   4143 	}
   4144 	if ((hflag || pflag) && rt == CHAR && ln->tn_op == CON &&
   4145 	    (ln->tn_val->v_quad < 0 ||
   4146 	     ln->tn_val->v_quad > (int)~(~0U << (CHAR_SIZE - 1)))) {
   4147 		/* nonportable character comparison, op %s */
   4148 		warning(230, mp->m_name);
   4149 		return;
   4150 	}
   4151 	if (is_uinteger(lt) && !is_uinteger(rt) &&
   4152 	    rn->tn_op == CON && rn->tn_val->v_quad <= 0) {
   4153 		if (rn->tn_val->v_quad < 0) {
   4154 			/* comparison of %s with %s, op %s */
   4155 			warning(162, type_name(ln->tn_type),
   4156 			    "negative constant", mp->m_name);
   4157 		} else if (op == LT || op == GE || (hflag && op == LE)) {
   4158 			/* comparison of %s with %s, op %s */
   4159 			warning(162, type_name(ln->tn_type), "0", mp->m_name);
   4160 		}
   4161 		return;
   4162 	}
   4163 	if (is_uinteger(rt) && !is_uinteger(lt) &&
   4164 	    ln->tn_op == CON && ln->tn_val->v_quad <= 0) {
   4165 		if (ln->tn_val->v_quad < 0) {
   4166 			/* comparison of %s with %s, op %s */
   4167 			warning(162, "negative constant",
   4168 			    type_name(rn->tn_type), mp->m_name);
   4169 		} else if (op == GT || op == LE || (hflag && op == GE)) {
   4170 			/* comparison of %s with %s, op %s */
   4171 			warning(162, "0", type_name(rn->tn_type), mp->m_name);
   4172 		}
   4173 		return;
   4174 	}
   4175 }
   4176 
   4177 /*
   4178  * Return whether the expression can be used for static initialization.
   4179  *
   4180  * Constant initialization expressions must be constant or an address
   4181  * of a static object with an optional offset. In the first case,
   4182  * the result is returned in *offsp. In the second case, the static
   4183  * object is returned in *symp and the offset in *offsp.
   4184  *
   4185  * The expression can consist of PLUS, MINUS, ADDR, NAME, STRING and
   4186  * CON. Type conversions are allowed if they do not change binary
   4187  * representation (including width).
   4188  */
   4189 bool
   4190 constant_addr(const tnode_t *tn, sym_t **symp, ptrdiff_t *offsp)
   4191 {
   4192 	sym_t	*sym;
   4193 	ptrdiff_t offs1, offs2;
   4194 	tspec_t	t, ot;
   4195 
   4196 	switch (tn->tn_op) {
   4197 	case MINUS:
   4198 		if (tn->tn_right->tn_op == CVT)
   4199 			return constant_addr(tn->tn_right, symp, offsp);
   4200 		else if (tn->tn_right->tn_op != CON)
   4201 			return false;
   4202 		/* FALLTHROUGH */
   4203 	case PLUS:
   4204 		offs1 = offs2 = 0;
   4205 		if (tn->tn_left->tn_op == CON) {
   4206 			offs1 = (ptrdiff_t)tn->tn_left->tn_val->v_quad;
   4207 			if (!constant_addr(tn->tn_right, &sym, &offs2))
   4208 				return false;
   4209 		} else if (tn->tn_right->tn_op == CON) {
   4210 			offs2 = (ptrdiff_t)tn->tn_right->tn_val->v_quad;
   4211 			if (tn->tn_op == MINUS)
   4212 				offs2 = -offs2;
   4213 			if (!constant_addr(tn->tn_left, &sym, &offs1))
   4214 				return false;
   4215 		} else {
   4216 			return false;
   4217 		}
   4218 		*symp = sym;
   4219 		*offsp = offs1 + offs2;
   4220 		return true;
   4221 	case ADDR:
   4222 		if (tn->tn_left->tn_op == NAME) {
   4223 			*symp = tn->tn_left->tn_sym;
   4224 			*offsp = 0;
   4225 			return true;
   4226 		} else {
   4227 			/*
   4228 			 * If this would be the front end of a compiler we
   4229 			 * would return a label instead of 0, at least if
   4230 			 * 'tn->tn_left->tn_op == STRING'.
   4231 			 */
   4232 			*symp = NULL;
   4233 			*offsp = 0;
   4234 			return true;
   4235 		}
   4236 	case CVT:
   4237 		t = tn->tn_type->t_tspec;
   4238 		ot = tn->tn_left->tn_type->t_tspec;
   4239 		if ((!is_integer(t) && t != PTR) ||
   4240 		    (!is_integer(ot) && ot != PTR)) {
   4241 			return false;
   4242 		}
   4243 #ifdef notdef
   4244 		/*
   4245 		 * consider:
   4246 		 *	struct foo {
   4247 		 *		unsigned char a;
   4248 		 *	} f = {
   4249 		 *		(u_char)(u_long)(&(((struct foo *)0)->a))
   4250 		 *	};
   4251 		 * since psize(u_long) != psize(u_char) this fails.
   4252 		 */
   4253 		else if (psize(t) != psize(ot))
   4254 			return -1;
   4255 #endif
   4256 		return constant_addr(tn->tn_left, symp, offsp);
   4257 	default:
   4258 		return false;
   4259 	}
   4260 }
   4261 
   4262 /*
   4263  * Concatenate two string constants.
   4264  */
   4265 strg_t *
   4266 cat_strings(strg_t *strg1, strg_t *strg2)
   4267 {
   4268 	size_t	len1, len2, len;
   4269 
   4270 	if (strg1->st_tspec != strg2->st_tspec) {
   4271 		/* cannot concatenate wide and regular string literals */
   4272 		error(292);
   4273 		return strg1;
   4274 	}
   4275 
   4276 	len1 = strg1->st_len;
   4277 	len2 = strg2->st_len + 1;	/* + NUL */
   4278 	len = len1 + len2;
   4279 
   4280 #define COPY(F) \
   4281     do { \
   4282 	strg1->F = xrealloc(strg1->F, len * sizeof(*strg1->F)); \
   4283 	(void)memcpy(strg1->F + len1, strg2->F, len2 * sizeof(*strg1->F)); \
   4284 	free(strg2->F); \
   4285     } while (/*CONSTCOND*/false)
   4286 
   4287 	if (strg1->st_tspec == CHAR)
   4288 		COPY(st_cp);
   4289 	else
   4290 		COPY(st_wcp);
   4291 
   4292 	strg1->st_len = len - 1; /* - NUL */
   4293 	free(strg2);
   4294 
   4295 	return strg1;
   4296 }
   4297 
   4298 static bool
   4299 is_confusing_precedence(op_t op, op_t lop, bool lparen, op_t rop, bool rparen)
   4300 {
   4301 
   4302 	if (op == SHL || op == SHR) {
   4303 		if (!lparen && (lop == PLUS || lop == MINUS))
   4304 			return true;
   4305 		if (!rparen && (rop == PLUS || rop == MINUS))
   4306 			return true;
   4307 		return false;
   4308 	}
   4309 
   4310 	if (op == LOGOR) {
   4311 		if (!lparen && lop == LOGAND)
   4312 			return true;
   4313 		if (!rparen && rop == LOGAND)
   4314 			return true;
   4315 		return false;
   4316 	}
   4317 
   4318 	lint_assert(op == BITAND || op == BITXOR || op == BITOR);
   4319 	if (!lparen && lop != op) {
   4320 		if (lop == PLUS || lop == MINUS)
   4321 			return true;
   4322 		if (lop == BITAND || lop == BITXOR)
   4323 			return true;
   4324 	}
   4325 	if (!rparen && rop != op) {
   4326 		if (rop == PLUS || rop == MINUS)
   4327 			return true;
   4328 		if (rop == BITAND || rop == BITXOR)
   4329 			return true;
   4330 	}
   4331 	return false;
   4332 }
   4333 
   4334 /*
   4335  * Print a warning if the given node has operands which should be
   4336  * parenthesized.
   4337  *
   4338  * XXX Does not work if an operand is a constant expression. Constant
   4339  * expressions are already folded.
   4340  */
   4341 static void
   4342 check_precedence_confusion(tnode_t *tn)
   4343 {
   4344 	tnode_t *ln, *rn;
   4345 
   4346 	if (!hflag)
   4347 		return;
   4348 
   4349 	debug_node(tn, 0);
   4350 
   4351 	lint_assert(modtab[tn->tn_op].m_binary);
   4352 	for (ln = tn->tn_left; ln->tn_op == CVT; ln = ln->tn_left)
   4353 		continue;
   4354 	for (rn = tn->tn_right; rn->tn_op == CVT; rn = rn->tn_left)
   4355 		continue;
   4356 
   4357 	if (is_confusing_precedence(tn->tn_op,
   4358 	    ln->tn_op, ln->tn_parenthesized,
   4359 	    rn->tn_op, rn->tn_parenthesized)) {
   4360 		/* precedence confusion possible: parenthesize! */
   4361 		warning(169);
   4362 	}
   4363 }
   4364