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