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