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