tree.c revision 1.599 1 1.599 rillig /* $NetBSD: tree.c,v 1.599 2024/01/29 21:30:25 rillig Exp $ */
2 1.2 cgd
3 1.1 cgd /*
4 1.1 cgd * Copyright (c) 1994, 1995 Jochen Pohl
5 1.1 cgd * All Rights Reserved.
6 1.1 cgd *
7 1.1 cgd * Redistribution and use in source and binary forms, with or without
8 1.1 cgd * modification, are permitted provided that the following conditions
9 1.1 cgd * are met:
10 1.1 cgd * 1. Redistributions of source code must retain the above copyright
11 1.1 cgd * notice, this list of conditions and the following disclaimer.
12 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 cgd * notice, this list of conditions and the following disclaimer in the
14 1.1 cgd * documentation and/or other materials provided with the distribution.
15 1.1 cgd * 3. All advertising materials mentioning features or use of this software
16 1.1 cgd * must display the following acknowledgement:
17 1.563 rillig * This product includes software developed by Jochen Pohl for
18 1.1 cgd * The NetBSD Project.
19 1.1 cgd * 4. The name of the author may not be used to endorse or promote products
20 1.1 cgd * derived from this software without specific prior written permission.
21 1.1 cgd *
22 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
23 1.1 cgd * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
24 1.1 cgd * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
25 1.1 cgd * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
26 1.1 cgd * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
27 1.1 cgd * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28 1.1 cgd * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29 1.1 cgd * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 1.1 cgd * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
31 1.1 cgd * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 1.1 cgd */
33 1.1 cgd
34 1.37 jmc #if HAVE_NBTOOL_CONFIG_H
35 1.37 jmc #include "nbtool_config.h"
36 1.37 jmc #endif
37 1.37 jmc
38 1.14 christos #include <sys/cdefs.h>
39 1.442 rillig #if defined(__RCSID)
40 1.599 rillig __RCSID("$NetBSD: tree.c,v 1.599 2024/01/29 21:30:25 rillig Exp $");
41 1.1 cgd #endif
42 1.1 cgd
43 1.1 cgd #include <float.h>
44 1.1 cgd #include <limits.h>
45 1.1 cgd #include <math.h>
46 1.49 christos #include <signal.h>
47 1.92 rillig #include <stdlib.h>
48 1.92 rillig #include <string.h>
49 1.1 cgd
50 1.1 cgd #include "lint1.h"
51 1.1 cgd
52 1.506 rillig
53 1.444 rillig typedef struct integer_constraints {
54 1.444 rillig int64_t smin; /* signed minimum */
55 1.444 rillig int64_t smax; /* signed maximum */
56 1.444 rillig uint64_t umin; /* unsigned minimum */
57 1.444 rillig uint64_t umax; /* unsigned maximum */
58 1.444 rillig uint64_t bset; /* bits that are definitely set */
59 1.444 rillig uint64_t bclr; /* bits that are definitely clear */
60 1.444 rillig } integer_constraints;
61 1.444 rillig
62 1.1 cgd
63 1.472 rillig static uint64_t
64 1.472 rillig u64_fill_right(uint64_t x)
65 1.472 rillig {
66 1.472 rillig x |= x >> 1;
67 1.472 rillig x |= x >> 2;
68 1.472 rillig x |= x >> 4;
69 1.472 rillig x |= x >> 8;
70 1.472 rillig x |= x >> 16;
71 1.472 rillig x |= x >> 32;
72 1.472 rillig return x;
73 1.472 rillig }
74 1.472 rillig
75 1.506 rillig static bool
76 1.536 rillig str_ends_with(const char *haystack, const char *needle)
77 1.506 rillig {
78 1.506 rillig size_t hlen = strlen(haystack);
79 1.506 rillig size_t nlen = strlen(needle);
80 1.506 rillig
81 1.506 rillig return nlen <= hlen &&
82 1.584 rillig memcmp(haystack + hlen - nlen, needle, nlen) == 0;
83 1.506 rillig }
84 1.522 rillig
85 1.473 rillig static unsigned
86 1.473 rillig width_in_bits(const type_t *tp)
87 1.473 rillig {
88 1.473 rillig
89 1.473 rillig lint_assert(is_integer(tp->t_tspec));
90 1.532 rillig return tp->t_bitfield
91 1.532 rillig ? tp->t_bit_field_width
92 1.553 rillig : size_in_bits(tp->t_tspec);
93 1.550 rillig }
94 1.550 rillig
95 1.550 rillig static int
96 1.585 rillig portable_rank_cmp(tspec_t t1, tspec_t t2)
97 1.585 rillig {
98 1.554 rillig const ttab_t *p1 = type_properties(t1), *p2 = type_properties(t2);
99 1.554 rillig lint_assert(p1->tt_rank_kind == p2->tt_rank_kind);
100 1.554 rillig lint_assert(p1->tt_rank_value > 0);
101 1.554 rillig lint_assert(p2->tt_rank_value > 0);
102 1.554 rillig return (int)p1->tt_rank_value - (int)p2->tt_rank_value;
103 1.473 rillig }
104 1.473 rillig
105 1.449 rillig static bool
106 1.449 rillig ic_maybe_signed(const type_t *tp, const integer_constraints *ic)
107 1.449 rillig {
108 1.522 rillig return !is_uinteger(tp->t_tspec) && ic->bclr >> 63 == 0;
109 1.449 rillig }
110 1.449 rillig
111 1.444 rillig static integer_constraints
112 1.444 rillig ic_any(const type_t *tp)
113 1.444 rillig {
114 1.444 rillig integer_constraints c;
115 1.444 rillig
116 1.473 rillig uint64_t vbits = value_bits(width_in_bits(tp));
117 1.444 rillig if (is_uinteger(tp->t_tspec)) {
118 1.444 rillig c.smin = INT64_MIN;
119 1.444 rillig c.smax = INT64_MAX;
120 1.444 rillig c.umin = 0;
121 1.444 rillig c.umax = vbits;
122 1.444 rillig c.bset = 0;
123 1.444 rillig c.bclr = ~c.umax;
124 1.444 rillig } else {
125 1.444 rillig c.smin = (int64_t)-1 - (int64_t)(vbits >> 1);
126 1.444 rillig c.smax = (int64_t)(vbits >> 1);
127 1.444 rillig c.umin = 0;
128 1.444 rillig c.umax = UINT64_MAX;
129 1.444 rillig c.bset = 0;
130 1.444 rillig c.bclr = 0;
131 1.444 rillig }
132 1.444 rillig return c;
133 1.444 rillig }
134 1.444 rillig
135 1.444 rillig static integer_constraints
136 1.444 rillig ic_con(const type_t *tp, const val_t *v)
137 1.444 rillig {
138 1.444 rillig integer_constraints c;
139 1.444 rillig
140 1.444 rillig lint_assert(is_integer(tp->t_tspec));
141 1.544 rillig int64_t si = v->u.integer;
142 1.544 rillig uint64_t ui = (uint64_t)si;
143 1.544 rillig c.smin = si;
144 1.544 rillig c.smax = si;
145 1.544 rillig c.umin = ui;
146 1.544 rillig c.umax = ui;
147 1.544 rillig c.bset = ui;
148 1.544 rillig c.bclr = ~ui;
149 1.444 rillig return c;
150 1.444 rillig }
151 1.444 rillig
152 1.444 rillig static integer_constraints
153 1.444 rillig ic_cvt(const type_t *ntp, const type_t *otp, integer_constraints a)
154 1.444 rillig {
155 1.520 rillig unsigned nw = width_in_bits(ntp);
156 1.520 rillig unsigned ow = width_in_bits(otp);
157 1.520 rillig bool nu = is_uinteger(ntp->t_tspec);
158 1.520 rillig bool ou = is_uinteger(otp->t_tspec);
159 1.444 rillig
160 1.520 rillig if (nw >= ow && nu == ou)
161 1.520 rillig return a;
162 1.520 rillig if (nw > ow && ou)
163 1.444 rillig return a;
164 1.444 rillig return ic_any(ntp);
165 1.444 rillig }
166 1.444 rillig
167 1.444 rillig static integer_constraints
168 1.444 rillig ic_bitand(integer_constraints a, integer_constraints b)
169 1.444 rillig {
170 1.444 rillig integer_constraints c;
171 1.444 rillig
172 1.444 rillig c.smin = INT64_MIN;
173 1.444 rillig c.smax = INT64_MAX;
174 1.444 rillig c.umin = 0;
175 1.444 rillig c.umax = UINT64_MAX;
176 1.444 rillig c.bset = a.bset & b.bset;
177 1.444 rillig c.bclr = a.bclr | b.bclr;
178 1.444 rillig return c;
179 1.444 rillig }
180 1.444 rillig
181 1.444 rillig static integer_constraints
182 1.444 rillig ic_bitor(integer_constraints a, integer_constraints b)
183 1.444 rillig {
184 1.444 rillig integer_constraints c;
185 1.444 rillig
186 1.444 rillig c.smin = INT64_MIN;
187 1.444 rillig c.smax = INT64_MAX;
188 1.444 rillig c.umin = 0;
189 1.444 rillig c.umax = UINT64_MAX;
190 1.444 rillig c.bset = a.bset | b.bset;
191 1.444 rillig c.bclr = a.bclr & b.bclr;
192 1.444 rillig return c;
193 1.444 rillig }
194 1.444 rillig
195 1.444 rillig static integer_constraints
196 1.472 rillig ic_mod(const type_t *tp, integer_constraints a, integer_constraints b)
197 1.472 rillig {
198 1.472 rillig integer_constraints c;
199 1.472 rillig
200 1.472 rillig if (ic_maybe_signed(tp, &a) || ic_maybe_signed(tp, &b))
201 1.472 rillig return ic_any(tp);
202 1.472 rillig
203 1.472 rillig c.smin = INT64_MIN;
204 1.472 rillig c.smax = INT64_MAX;
205 1.472 rillig c.umin = 0;
206 1.472 rillig c.umax = b.umax - 1;
207 1.472 rillig c.bset = 0;
208 1.472 rillig c.bclr = ~u64_fill_right(c.umax);
209 1.472 rillig return c;
210 1.472 rillig }
211 1.472 rillig
212 1.472 rillig static integer_constraints
213 1.444 rillig ic_shl(const type_t *tp, integer_constraints a, integer_constraints b)
214 1.444 rillig {
215 1.444 rillig integer_constraints c;
216 1.444 rillig unsigned int amount;
217 1.444 rillig
218 1.449 rillig if (ic_maybe_signed(tp, &a))
219 1.449 rillig return ic_any(tp);
220 1.449 rillig
221 1.444 rillig if (b.smin == b.smax && b.smin >= 0 && b.smin < 64)
222 1.444 rillig amount = (unsigned int)b.smin;
223 1.444 rillig else if (b.umin == b.umax && b.umin < 64)
224 1.444 rillig amount = (unsigned int)b.umin;
225 1.444 rillig else
226 1.444 rillig return ic_any(tp);
227 1.444 rillig
228 1.444 rillig c.smin = INT64_MIN;
229 1.444 rillig c.smax = INT64_MAX;
230 1.444 rillig c.umin = 0;
231 1.444 rillig c.umax = UINT64_MAX;
232 1.444 rillig c.bset = a.bset << amount;
233 1.444 rillig c.bclr = a.bclr << amount | (((uint64_t)1 << amount) - 1);
234 1.444 rillig return c;
235 1.444 rillig }
236 1.444 rillig
237 1.444 rillig static integer_constraints
238 1.449 rillig ic_shr(const type_t *tp, integer_constraints a, integer_constraints b)
239 1.449 rillig {
240 1.449 rillig integer_constraints c;
241 1.449 rillig unsigned int amount;
242 1.449 rillig
243 1.449 rillig if (ic_maybe_signed(tp, &a))
244 1.449 rillig return ic_any(tp);
245 1.449 rillig
246 1.449 rillig if (b.smin == b.smax && b.smin >= 0 && b.smin < 64)
247 1.449 rillig amount = (unsigned int)b.smin;
248 1.449 rillig else if (b.umin == b.umax && b.umin < 64)
249 1.449 rillig amount = (unsigned int)b.umin;
250 1.449 rillig else
251 1.449 rillig return ic_any(tp);
252 1.449 rillig
253 1.449 rillig c.smin = INT64_MIN;
254 1.449 rillig c.smax = INT64_MAX;
255 1.449 rillig c.umin = 0;
256 1.449 rillig c.umax = UINT64_MAX;
257 1.449 rillig c.bset = a.bset >> amount;
258 1.449 rillig c.bclr = a.bclr >> amount | ~(~(uint64_t)0 >> amount);
259 1.449 rillig return c;
260 1.449 rillig }
261 1.449 rillig
262 1.449 rillig static integer_constraints
263 1.521 rillig ic_cond(integer_constraints a, integer_constraints b)
264 1.521 rillig {
265 1.521 rillig integer_constraints c;
266 1.521 rillig
267 1.521 rillig c.smin = a.smin < b.smin ? a.smin : b.smin;
268 1.521 rillig c.smax = a.smax > b.smax ? a.smax : b.smax;
269 1.521 rillig c.umin = a.umin < b.umin ? a.umin : b.umin;
270 1.521 rillig c.umax = a.umax > b.umax ? a.umax : b.umax;
271 1.521 rillig c.bset = a.bset | b.bset;
272 1.521 rillig c.bclr = a.bclr & b.bclr;
273 1.521 rillig return c;
274 1.521 rillig }
275 1.521 rillig
276 1.521 rillig static integer_constraints
277 1.444 rillig ic_expr(const tnode_t *tn)
278 1.444 rillig {
279 1.444 rillig integer_constraints lc, rc;
280 1.444 rillig
281 1.451 rillig lint_assert(is_integer(tn->tn_type->t_tspec));
282 1.451 rillig
283 1.444 rillig switch (tn->tn_op) {
284 1.444 rillig case CON:
285 1.531 rillig return ic_con(tn->tn_type, &tn->tn_val);
286 1.444 rillig case CVT:
287 1.451 rillig if (!is_integer(tn->tn_left->tn_type->t_tspec))
288 1.451 rillig return ic_any(tn->tn_type);
289 1.444 rillig lc = ic_expr(tn->tn_left);
290 1.444 rillig return ic_cvt(tn->tn_type, tn->tn_left->tn_type, lc);
291 1.472 rillig case MOD:
292 1.472 rillig lc = ic_expr(before_conversion(tn->tn_left));
293 1.472 rillig rc = ic_expr(before_conversion(tn->tn_right));
294 1.472 rillig return ic_mod(tn->tn_type, lc, rc);
295 1.444 rillig case SHL:
296 1.444 rillig lc = ic_expr(tn->tn_left);
297 1.444 rillig rc = ic_expr(tn->tn_right);
298 1.444 rillig return ic_shl(tn->tn_type, lc, rc);
299 1.449 rillig case SHR:
300 1.449 rillig lc = ic_expr(tn->tn_left);
301 1.449 rillig rc = ic_expr(tn->tn_right);
302 1.449 rillig return ic_shr(tn->tn_type, lc, rc);
303 1.444 rillig case BITAND:
304 1.444 rillig lc = ic_expr(tn->tn_left);
305 1.444 rillig rc = ic_expr(tn->tn_right);
306 1.444 rillig return ic_bitand(lc, rc);
307 1.444 rillig case BITOR:
308 1.444 rillig lc = ic_expr(tn->tn_left);
309 1.444 rillig rc = ic_expr(tn->tn_right);
310 1.444 rillig return ic_bitor(lc, rc);
311 1.521 rillig case QUEST:
312 1.521 rillig lc = ic_expr(tn->tn_right->tn_left);
313 1.521 rillig rc = ic_expr(tn->tn_right->tn_right);
314 1.521 rillig return ic_cond(lc, rc);
315 1.444 rillig default:
316 1.444 rillig return ic_any(tn->tn_type);
317 1.444 rillig }
318 1.444 rillig }
319 1.444 rillig
320 1.257 rillig /* Build 'pointer to tp', 'array of tp' or 'function returning tp'. */
321 1.1 cgd type_t *
322 1.406 rillig block_derive_type(type_t *tp, tspec_t t)
323 1.1 cgd {
324 1.526 rillig type_t *tp2;
325 1.1 cgd
326 1.568 rillig tp2 = block_zero_alloc(sizeof(*tp2), "type");
327 1.1 cgd tp2->t_tspec = t;
328 1.1 cgd tp2->t_subt = tp;
329 1.95 rillig return tp2;
330 1.1 cgd }
331 1.1 cgd
332 1.1 cgd /*
333 1.365 rillig * Derive 'pointer to tp' or 'function returning tp'.
334 1.365 rillig * The memory is freed at the end of the current expression.
335 1.1 cgd */
336 1.1 cgd type_t *
337 1.257 rillig expr_derive_type(type_t *tp, tspec_t t)
338 1.1 cgd {
339 1.526 rillig type_t *tp2;
340 1.1 cgd
341 1.568 rillig tp2 = expr_zero_alloc(sizeof(*tp2), "type");
342 1.1 cgd tp2->t_tspec = t;
343 1.1 cgd tp2->t_subt = tp;
344 1.95 rillig return tp2;
345 1.1 cgd }
346 1.1 cgd
347 1.564 rillig /* Create an expression from a unary or binary operator and its operands. */
348 1.506 rillig static tnode_t *
349 1.565 rillig build_op(op_t op, bool sys, type_t *type, tnode_t *ln, tnode_t *rn)
350 1.506 rillig {
351 1.506 rillig
352 1.506 rillig tnode_t *ntn = expr_alloc_tnode();
353 1.506 rillig ntn->tn_op = op;
354 1.506 rillig ntn->tn_type = type;
355 1.506 rillig ntn->tn_sys = sys;
356 1.506 rillig ntn->tn_left = ln;
357 1.506 rillig ntn->tn_right = rn;
358 1.506 rillig
359 1.506 rillig if (op == INDIR || op == FSEL) {
360 1.506 rillig lint_assert(ln->tn_type->t_tspec == PTR);
361 1.506 rillig tspec_t t = ln->tn_type->t_subt->t_tspec;
362 1.566 rillig ntn->tn_lvalue = t != FUNC && t != VOID;
363 1.506 rillig }
364 1.506 rillig
365 1.506 rillig return ntn;
366 1.506 rillig }
367 1.506 rillig
368 1.1 cgd tnode_t *
369 1.318 rillig build_constant(type_t *tp, val_t *v)
370 1.1 cgd {
371 1.1 cgd
372 1.536 rillig tnode_t *n = expr_alloc_tnode();
373 1.1 cgd n->tn_op = CON;
374 1.1 cgd n->tn_type = tp;
375 1.544 rillig n->tn_val = *v;
376 1.531 rillig n->tn_val.v_tspec = tp->t_tspec;
377 1.1 cgd free(v);
378 1.95 rillig return n;
379 1.1 cgd }
380 1.1 cgd
381 1.1 cgd static tnode_t *
382 1.544 rillig build_integer_constant(tspec_t t, int64_t si)
383 1.1 cgd {
384 1.1 cgd
385 1.536 rillig tnode_t *n = expr_alloc_tnode();
386 1.1 cgd n->tn_op = CON;
387 1.1 cgd n->tn_type = gettyp(t);
388 1.531 rillig n->tn_val.v_tspec = t;
389 1.531 rillig n->tn_val.v_unsigned_since_c90 = false;
390 1.531 rillig n->tn_val.v_char_constant = false;
391 1.544 rillig n->tn_val.u.integer = si;
392 1.95 rillig return n;
393 1.1 cgd }
394 1.1 cgd
395 1.167 rillig static void
396 1.167 rillig fallback_symbol(sym_t *sym)
397 1.167 rillig {
398 1.167 rillig
399 1.493 rillig if (Tflag && fallback_symbol_strict_bool(sym))
400 1.167 rillig return;
401 1.167 rillig
402 1.233 rillig if (block_level > 0 && (strcmp(sym->s_name, "__FUNCTION__") == 0 ||
403 1.167 rillig strcmp(sym->s_name, "__PRETTY_FUNCTION__") == 0)) {
404 1.167 rillig /* __FUNCTION__/__PRETTY_FUNCTION__ is a GCC extension */
405 1.167 rillig gnuism(316);
406 1.564 rillig // XXX: Should probably be ARRAY instead of PTR.
407 1.406 rillig sym->s_type = block_derive_type(gettyp(CHAR), PTR);
408 1.167 rillig sym->s_type->t_const = true;
409 1.167 rillig return;
410 1.167 rillig }
411 1.167 rillig
412 1.591 rillig if (funcsym != NULL && strcmp(sym->s_name, "__func__") == 0) {
413 1.437 rillig if (!allow_c99)
414 1.409 rillig /* __func__ is a C99 feature */
415 1.167 rillig warning(317);
416 1.503 rillig /* C11 6.4.2.2 */
417 1.504 rillig sym->s_type = block_derive_type(gettyp(CHAR), ARRAY);
418 1.167 rillig sym->s_type->t_const = true;
419 1.504 rillig sym->s_type->t_dim = (int)strlen(funcsym->s_name) + 1;
420 1.167 rillig return;
421 1.167 rillig }
422 1.167 rillig
423 1.251 rillig /* '%s' undefined */
424 1.167 rillig error(99, sym->s_name);
425 1.167 rillig }
426 1.167 rillig
427 1.358 rillig /*
428 1.361 rillig * Functions that are predeclared by GCC or other compilers can be called
429 1.361 rillig * with arbitrary arguments. Since lint usually runs after a successful
430 1.361 rillig * compilation, it's the compiler's job to catch any errors.
431 1.358 rillig */
432 1.358 rillig bool
433 1.361 rillig is_compiler_builtin(const char *name)
434 1.303 rillig {
435 1.361 rillig /* https://gcc.gnu.org/onlinedocs/gcc/C-Extensions.html */
436 1.429 rillig if (allow_gcc) {
437 1.362 rillig if (strncmp(name, "__atomic_", 9) == 0 ||
438 1.362 rillig strncmp(name, "__builtin_", 10) == 0 ||
439 1.400 rillig strcmp(name, "alloca") == 0 ||
440 1.362 rillig /* obsolete but still in use, as of 2021 */
441 1.362 rillig strncmp(name, "__sync_", 7) == 0)
442 1.362 rillig return true;
443 1.362 rillig }
444 1.361 rillig
445 1.361 rillig /* https://software.intel.com/sites/landingpage/IntrinsicsGuide/ */
446 1.361 rillig if (strncmp(name, "_mm_", 4) == 0)
447 1.361 rillig return true;
448 1.361 rillig
449 1.361 rillig return false;
450 1.303 rillig }
451 1.303 rillig
452 1.372 rillig /* https://gcc.gnu.org/onlinedocs/gcc/Integer-Overflow-Builtins.html */
453 1.372 rillig static bool
454 1.372 rillig is_gcc_bool_builtin(const char *name)
455 1.372 rillig {
456 1.372 rillig return strncmp(name, "__builtin_", 10) == 0 &&
457 1.584 rillig (str_ends_with(name, "_overflow") ||
458 1.536 rillig str_ends_with(name, "_overflow_p"));
459 1.372 rillig }
460 1.372 rillig
461 1.371 rillig static void
462 1.371 rillig build_name_call(sym_t *sym)
463 1.371 rillig {
464 1.371 rillig
465 1.371 rillig if (is_compiler_builtin(sym->s_name)) {
466 1.371 rillig /*
467 1.586 rillig * Do not warn about these, just assume that they are regular
468 1.586 rillig * functions compatible with non-prototype calling conventions.
469 1.371 rillig */
470 1.429 rillig if (allow_gcc && is_gcc_bool_builtin(sym->s_name))
471 1.372 rillig sym->s_type = gettyp(BOOL);
472 1.437 rillig } else if (allow_c99) {
473 1.371 rillig /* function '%s' implicitly declared to return int */
474 1.371 rillig error(215, sym->s_name);
475 1.437 rillig } else if (!allow_trad) {
476 1.371 rillig /* function '%s' implicitly declared to return int */
477 1.371 rillig warning(215, sym->s_name);
478 1.371 rillig }
479 1.371 rillig
480 1.438 rillig /* XXX if !allow_c90, the symbol should be exported to level 0 */
481 1.406 rillig sym->s_type = block_derive_type(sym->s_type, FUNC);
482 1.371 rillig }
483 1.371 rillig
484 1.402 rillig /* Create a node for a name (symbol table entry). */
485 1.1 cgd tnode_t *
486 1.399 rillig build_name(sym_t *sym, bool is_funcname)
487 1.1 cgd {
488 1.1 cgd
489 1.582 rillig if (sym->s_scl == NO_SCL && !in_gcc_attribute) {
490 1.1 cgd sym->s_scl = EXTERN;
491 1.1 cgd sym->s_def = DECL;
492 1.399 rillig if (is_funcname)
493 1.371 rillig build_name_call(sym);
494 1.399 rillig else
495 1.167 rillig fallback_symbol(sym);
496 1.1 cgd }
497 1.1 cgd
498 1.597 rillig lint_assert(sym->s_kind == SK_VCFT || sym->s_kind == SK_MEMBER);
499 1.1 cgd
500 1.536 rillig tnode_t *n = expr_alloc_tnode();
501 1.1 cgd n->tn_type = sym->s_type;
502 1.422 rillig if (sym->s_scl == BOOL_CONST) {
503 1.401 rillig n->tn_op = CON;
504 1.531 rillig n->tn_val.v_tspec = BOOL;
505 1.531 rillig n->tn_val.v_unsigned_since_c90 = false;
506 1.531 rillig n->tn_val.v_char_constant = false;
507 1.544 rillig n->tn_val.u.integer = sym->u.s_bool_constant ? 1 : 0;
508 1.422 rillig } else if (sym->s_scl == ENUM_CONST) {
509 1.422 rillig n->tn_op = CON;
510 1.531 rillig n->tn_val.v_tspec = INT; /* ENUM is in n->tn_type */
511 1.531 rillig n->tn_val.v_unsigned_since_c90 = false;
512 1.531 rillig n->tn_val.v_char_constant = false;
513 1.544 rillig n->tn_val.u.integer = sym->u.s_enum_constant;
514 1.401 rillig } else {
515 1.1 cgd n->tn_op = NAME;
516 1.1 cgd n->tn_sym = sym;
517 1.597 rillig if (sym->s_kind == SK_VCFT && sym->s_type->t_tspec != FUNC)
518 1.154 rillig n->tn_lvalue = true;
519 1.1 cgd }
520 1.1 cgd
521 1.95 rillig return n;
522 1.1 cgd }
523 1.1 cgd
524 1.1 cgd tnode_t *
525 1.318 rillig build_string(strg_t *strg)
526 1.1 cgd {
527 1.536 rillig size_t len = strg->st_len;
528 1.1 cgd
529 1.568 rillig type_t *tp = expr_zero_alloc(sizeof(*tp), "type");
530 1.365 rillig tp->t_tspec = ARRAY;
531 1.559 rillig tp->t_subt = gettyp(strg->st_char ? CHAR : WCHAR_TSPEC);
532 1.378 rillig tp->t_dim = (int)(len + 1);
533 1.365 rillig
534 1.536 rillig tnode_t *n = expr_alloc_tnode();
535 1.1 cgd n->tn_op = STRING;
536 1.365 rillig n->tn_type = tp;
537 1.154 rillig n->tn_lvalue = true;
538 1.1 cgd
539 1.590 rillig n->tn_string = expr_zero_alloc(sizeof(*n->tn_string), "tnode.string");
540 1.410 rillig n->tn_string->st_char = strg->st_char;
541 1.104 rillig n->tn_string->st_len = len;
542 1.1 cgd
543 1.410 rillig size_t chsize = strg->st_char ? sizeof(char) : sizeof(wchar_t);
544 1.410 rillig size_t size = (len + 1) * chsize;
545 1.599 rillig if (strg->st_char) {
546 1.599 rillig n->tn_string->st_chars = expr_zero_alloc(size,
547 1.599 rillig "tnode.string.data");
548 1.599 rillig (void)memcpy(n->tn_string->st_chars, strg->st_chars, size);
549 1.599 rillig free(strg->st_chars);
550 1.599 rillig }
551 1.1 cgd free(strg);
552 1.1 cgd
553 1.95 rillig return n;
554 1.1 cgd }
555 1.1 cgd
556 1.291 rillig tnode_t *
557 1.291 rillig build_generic_selection(const tnode_t *expr,
558 1.313 rillig struct generic_association *sel)
559 1.291 rillig {
560 1.291 rillig tnode_t *default_result = NULL;
561 1.291 rillig
562 1.411 rillig for (; sel != NULL; sel = sel->ga_prev) {
563 1.292 rillig if (expr != NULL &&
564 1.479 rillig types_compatible(sel->ga_arg, expr->tn_type,
565 1.479 rillig false, false, NULL))
566 1.313 rillig return sel->ga_result;
567 1.313 rillig else if (sel->ga_arg == NULL)
568 1.313 rillig default_result = sel->ga_result;
569 1.411 rillig }
570 1.291 rillig return default_result;
571 1.291 rillig }
572 1.291 rillig
573 1.506 rillig static bool
574 1.506 rillig is_out_of_char_range(const tnode_t *tn)
575 1.506 rillig {
576 1.506 rillig return tn->tn_op == CON &&
577 1.584 rillig !tn->tn_val.v_char_constant &&
578 1.584 rillig !(0 <= tn->tn_val.u.integer &&
579 1.584 rillig tn->tn_val.u.integer < 1 << (CHAR_SIZE - 1));
580 1.506 rillig }
581 1.506 rillig
582 1.583 rillig static bool
583 1.583 rillig check_nonportable_char_comparison(op_t op,
584 1.583 rillig const tnode_t *ln, tspec_t lt,
585 1.583 rillig const tnode_t *rn, tspec_t rt)
586 1.583 rillig {
587 1.583 rillig if (!(hflag || pflag))
588 1.583 rillig return true;
589 1.583 rillig
590 1.583 rillig if (lt == CHAR && is_out_of_char_range(rn)) {
591 1.583 rillig char buf[128];
592 1.583 rillig (void)snprintf(buf, sizeof(buf), "%s %d",
593 1.583 rillig op_name(op), (int)rn->tn_val.u.integer);
594 1.583 rillig /* nonportable character comparison '%s' */
595 1.583 rillig warning(230, buf);
596 1.583 rillig return false;
597 1.583 rillig }
598 1.583 rillig if (rt == CHAR && is_out_of_char_range(ln)) {
599 1.583 rillig char buf[128];
600 1.583 rillig (void)snprintf(buf, sizeof(buf), "%d %s ?",
601 1.583 rillig (int)ln->tn_val.u.integer, op_name(op));
602 1.583 rillig /* nonportable character comparison '%s' */
603 1.583 rillig warning(230, buf);
604 1.583 rillig return false;
605 1.583 rillig }
606 1.583 rillig return true;
607 1.583 rillig }
608 1.583 rillig
609 1.506 rillig static void
610 1.506 rillig check_integer_comparison(op_t op, tnode_t *ln, tnode_t *rn)
611 1.1 cgd {
612 1.506 rillig
613 1.536 rillig tspec_t lt = ln->tn_type->t_tspec;
614 1.536 rillig tspec_t rt = rn->tn_type->t_tspec;
615 1.1 cgd
616 1.506 rillig if (ln->tn_op != CON && rn->tn_op != CON)
617 1.506 rillig return;
618 1.1 cgd
619 1.506 rillig if (!is_integer(lt) || !is_integer(rt))
620 1.506 rillig return;
621 1.1 cgd
622 1.529 rillig if (any_query_enabled && !in_system_header) {
623 1.529 rillig if (lt == CHAR && rn->tn_op == CON &&
624 1.531 rillig !rn->tn_val.v_char_constant) {
625 1.529 rillig /* comparison '%s' of 'char' with plain integer %d */
626 1.529 rillig query_message(14,
627 1.544 rillig op_name(op), (int)rn->tn_val.u.integer);
628 1.529 rillig }
629 1.529 rillig if (rt == CHAR && ln->tn_op == CON &&
630 1.531 rillig !ln->tn_val.v_char_constant) {
631 1.529 rillig /* comparison '%s' of 'char' with plain integer %d */
632 1.529 rillig query_message(14,
633 1.544 rillig op_name(op), (int)ln->tn_val.u.integer);
634 1.529 rillig }
635 1.529 rillig }
636 1.529 rillig
637 1.583 rillig if (!check_nonportable_char_comparison(op, ln, lt, rn, rt))
638 1.583 rillig return;
639 1.1 cgd
640 1.506 rillig if (is_uinteger(lt) && !is_uinteger(rt) &&
641 1.544 rillig rn->tn_op == CON && rn->tn_val.u.integer <= 0) {
642 1.544 rillig if (rn->tn_val.u.integer < 0) {
643 1.506 rillig /* operator '%s' compares '%s' with '%s' */
644 1.506 rillig warning(162, op_name(op),
645 1.506 rillig type_name(ln->tn_type), "negative constant");
646 1.506 rillig } else if (op == LT || op == GE) {
647 1.506 rillig /* operator '%s' compares '%s' with '%s' */
648 1.506 rillig warning(162, op_name(op), type_name(ln->tn_type), "0");
649 1.506 rillig }
650 1.506 rillig return;
651 1.1 cgd }
652 1.506 rillig if (is_uinteger(rt) && !is_uinteger(lt) &&
653 1.544 rillig ln->tn_op == CON && ln->tn_val.u.integer <= 0) {
654 1.544 rillig if (ln->tn_val.u.integer < 0) {
655 1.506 rillig /* operator '%s' compares '%s' with '%s' */
656 1.506 rillig warning(162, op_name(op),
657 1.506 rillig "negative constant", type_name(rn->tn_type));
658 1.506 rillig } else if (op == GT || op == LE) {
659 1.506 rillig /* operator '%s' compares '%s' with '%s' */
660 1.506 rillig warning(162, op_name(op), "0", type_name(rn->tn_type));
661 1.506 rillig }
662 1.506 rillig return;
663 1.1 cgd }
664 1.506 rillig }
665 1.506 rillig
666 1.506 rillig static const tspec_t arith_rank[] = {
667 1.506 rillig LDOUBLE, DOUBLE, FLOAT,
668 1.506 rillig #ifdef INT128_SIZE
669 1.506 rillig UINT128, INT128,
670 1.506 rillig #endif
671 1.545 rillig ULLONG, LLONG,
672 1.506 rillig ULONG, LONG,
673 1.506 rillig UINT, INT,
674 1.506 rillig };
675 1.506 rillig
676 1.506 rillig /* Keep unsigned in traditional C */
677 1.506 rillig static tspec_t
678 1.506 rillig usual_arithmetic_conversion_trad(tspec_t lt, tspec_t rt)
679 1.506 rillig {
680 1.1 cgd
681 1.506 rillig size_t i;
682 1.506 rillig for (i = 0; arith_rank[i] != INT; i++)
683 1.506 rillig if (lt == arith_rank[i] || rt == arith_rank[i])
684 1.506 rillig break;
685 1.1 cgd
686 1.506 rillig tspec_t t = arith_rank[i];
687 1.506 rillig if (is_uinteger(lt) || is_uinteger(rt))
688 1.506 rillig if (is_integer(t) && !is_uinteger(t))
689 1.506 rillig return unsigned_type(t);
690 1.506 rillig return t;
691 1.506 rillig }
692 1.1 cgd
693 1.506 rillig static tspec_t
694 1.506 rillig usual_arithmetic_conversion_c90(tspec_t lt, tspec_t rt)
695 1.506 rillig {
696 1.1 cgd
697 1.506 rillig if (lt == rt)
698 1.506 rillig return lt;
699 1.1 cgd
700 1.506 rillig if (lt == LCOMPLEX || rt == LCOMPLEX)
701 1.506 rillig return LCOMPLEX;
702 1.506 rillig if (lt == DCOMPLEX || rt == DCOMPLEX)
703 1.506 rillig return DCOMPLEX;
704 1.506 rillig if (lt == FCOMPLEX || rt == FCOMPLEX)
705 1.506 rillig return FCOMPLEX;
706 1.506 rillig if (lt == LDOUBLE || rt == LDOUBLE)
707 1.506 rillig return LDOUBLE;
708 1.506 rillig if (lt == DOUBLE || rt == DOUBLE)
709 1.506 rillig return DOUBLE;
710 1.506 rillig if (lt == FLOAT || rt == FLOAT)
711 1.506 rillig return FLOAT;
712 1.1 cgd
713 1.506 rillig if (size_in_bits(lt) > size_in_bits(rt))
714 1.506 rillig return lt;
715 1.506 rillig if (size_in_bits(lt) < size_in_bits(rt))
716 1.506 rillig return rt;
717 1.1 cgd
718 1.506 rillig size_t i;
719 1.506 rillig for (i = 3; arith_rank[i] != INT; i++)
720 1.506 rillig if (arith_rank[i] == lt || arith_rank[i] == rt)
721 1.506 rillig break;
722 1.506 rillig if ((is_uinteger(lt) || is_uinteger(rt)) &&
723 1.506 rillig !is_uinteger(arith_rank[i]))
724 1.506 rillig i--;
725 1.506 rillig return arith_rank[i];
726 1.1 cgd }
727 1.1 cgd
728 1.506 rillig static tnode_t *
729 1.506 rillig apply_usual_arithmetic_conversions(op_t op, tnode_t *tn, tspec_t t)
730 1.317 rillig {
731 1.506 rillig type_t *ntp = expr_dup_type(tn->tn_type);
732 1.506 rillig ntp->t_tspec = t;
733 1.506 rillig if (tn->tn_op != CON) {
734 1.506 rillig /* usual arithmetic conversion for '%s' from '%s' to '%s' */
735 1.506 rillig query_message(4, op_name(op),
736 1.506 rillig type_name(tn->tn_type), type_name(ntp));
737 1.506 rillig }
738 1.506 rillig return convert(op, 0, ntp, tn);
739 1.317 rillig }
740 1.317 rillig
741 1.506 rillig /*
742 1.506 rillig * Apply the "usual arithmetic conversions" (C99 6.3.1.8), which gives both
743 1.506 rillig * operands the same type.
744 1.506 rillig */
745 1.506 rillig static void
746 1.506 rillig balance(op_t op, tnode_t **lnp, tnode_t **rnp)
747 1.314 rillig {
748 1.314 rillig
749 1.506 rillig tspec_t lt = (*lnp)->tn_type->t_tspec;
750 1.506 rillig tspec_t rt = (*rnp)->tn_type->t_tspec;
751 1.506 rillig if (!is_arithmetic(lt) || !is_arithmetic(rt))
752 1.506 rillig return;
753 1.506 rillig
754 1.506 rillig tspec_t t = allow_c90
755 1.506 rillig ? usual_arithmetic_conversion_c90(lt, rt)
756 1.506 rillig : usual_arithmetic_conversion_trad(lt, rt);
757 1.314 rillig
758 1.506 rillig if (t != lt)
759 1.506 rillig *lnp = apply_usual_arithmetic_conversions(op, *lnp, t);
760 1.506 rillig if (t != rt)
761 1.506 rillig *rnp = apply_usual_arithmetic_conversions(op, *rnp, t);
762 1.314 rillig }
763 1.314 rillig
764 1.506 rillig static tnode_t *
765 1.590 rillig build_address(bool sys, tnode_t *tn, bool force)
766 1.1 cgd {
767 1.526 rillig tspec_t t;
768 1.1 cgd
769 1.590 rillig if (!force && ((t = tn->tn_type->t_tspec) == ARRAY || t == FUNC)) {
770 1.506 rillig if (!allow_c90)
771 1.506 rillig /* '&' before array or function: ignored */
772 1.506 rillig warning(127);
773 1.506 rillig return tn;
774 1.1 cgd }
775 1.1 cgd
776 1.590 rillig /* eliminate '&*' */
777 1.506 rillig if (tn->tn_op == INDIR &&
778 1.506 rillig tn->tn_left->tn_type->t_tspec == PTR &&
779 1.506 rillig tn->tn_left->tn_type->t_subt == tn->tn_type) {
780 1.506 rillig return tn->tn_left;
781 1.1 cgd }
782 1.1 cgd
783 1.565 rillig return build_op(ADDR, sys, expr_derive_type(tn->tn_type, PTR),
784 1.506 rillig tn, NULL);
785 1.1 cgd }
786 1.1 cgd
787 1.506 rillig /*
788 1.506 rillig * XXX
789 1.506 rillig * Note: There appear to be a number of bugs in detecting overflow in
790 1.506 rillig * this function. An audit and a set of proper regression tests are needed.
791 1.506 rillig * --Perry Metzger, Nov. 16, 2001
792 1.506 rillig */
793 1.506 rillig static tnode_t *
794 1.589 rillig fold_constant_integer(tnode_t *tn)
795 1.151 rillig {
796 1.506 rillig
797 1.536 rillig val_t *v = xcalloc(1, sizeof(*v));
798 1.506 rillig v->v_tspec = tn->tn_type->t_tspec;
799 1.506 rillig
800 1.581 rillig lint_assert(has_operands(tn));
801 1.536 rillig tspec_t t = tn->tn_left->tn_type->t_tspec;
802 1.536 rillig bool utyp = !is_integer(t) || is_uinteger(t);
803 1.544 rillig int64_t sl = tn->tn_left->tn_val.u.integer, sr = 0;
804 1.536 rillig uint64_t ul = sl, ur = 0;
805 1.506 rillig if (is_binary(tn))
806 1.544 rillig ur = sr = tn->tn_right->tn_val.u.integer;
807 1.506 rillig
808 1.593 rillig uint64_t mask = value_bits(size_in_bits(t));
809 1.536 rillig bool ovfl = false;
810 1.506 rillig
811 1.544 rillig int64_t si;
812 1.506 rillig switch (tn->tn_op) {
813 1.506 rillig case UPLUS:
814 1.544 rillig si = sl;
815 1.506 rillig break;
816 1.506 rillig case UMINUS:
817 1.544 rillig si = sl == INT64_MIN ? sl : -sl;
818 1.544 rillig if (sl != 0 && msb(si, t) == msb(sl, t))
819 1.506 rillig ovfl = true;
820 1.506 rillig break;
821 1.506 rillig case COMPL:
822 1.544 rillig si = ~sl;
823 1.506 rillig break;
824 1.506 rillig case MULT:
825 1.506 rillig if (utyp) {
826 1.544 rillig si = (int64_t)(ul * ur);
827 1.593 rillig if (si != (si & (int64_t)mask))
828 1.506 rillig ovfl = true;
829 1.589 rillig else if (ul != 0 && si / ul != ur)
830 1.506 rillig ovfl = true;
831 1.506 rillig } else {
832 1.544 rillig si = sl * sr;
833 1.544 rillig if (msb(si, t) != (msb(sl, t) ^ msb(sr, t)))
834 1.506 rillig ovfl = true;
835 1.506 rillig }
836 1.506 rillig break;
837 1.506 rillig case DIV:
838 1.506 rillig if (sr == 0) {
839 1.506 rillig /* division by 0 */
840 1.506 rillig error(139);
841 1.544 rillig si = utyp ? -1 : INT64_MAX;
842 1.593 rillig } else if (!utyp
843 1.593 rillig && (sl & mask) == (mask ^ (mask >> 1)) && sr == -1) {
844 1.593 rillig /* operator '%s' produces integer overflow */
845 1.593 rillig warning(141, op_name(DIV));
846 1.593 rillig si = sl;
847 1.506 rillig } else {
848 1.544 rillig si = utyp ? (int64_t)(ul / ur) : sl / sr;
849 1.506 rillig }
850 1.506 rillig break;
851 1.506 rillig case MOD:
852 1.506 rillig if (sr == 0) {
853 1.506 rillig /* modulus by 0 */
854 1.506 rillig error(140);
855 1.544 rillig si = 0;
856 1.506 rillig } else {
857 1.544 rillig si = utyp ? (int64_t)(ul % ur) : sl % sr;
858 1.506 rillig }
859 1.506 rillig break;
860 1.506 rillig case PLUS:
861 1.544 rillig si = utyp ? (int64_t)(ul + ur) : sl + sr;
862 1.544 rillig if (msb(sl, t) && msb(sr, t) && !msb(si, t))
863 1.506 rillig ovfl = true;
864 1.544 rillig if (!utyp && !msb(sl, t) && !msb(sr, t) && msb(si, t))
865 1.506 rillig ovfl = true;
866 1.506 rillig break;
867 1.506 rillig case MINUS:
868 1.544 rillig si = utyp ? (int64_t)(ul - ur) : sl - sr;
869 1.544 rillig if (!utyp && msb(sl, t) && !msb(sr, t) && !msb(si, t))
870 1.506 rillig ovfl = true;
871 1.544 rillig if (!msb(sl, t) && msb(sr, t) && msb(si, t))
872 1.506 rillig ovfl = true;
873 1.506 rillig break;
874 1.506 rillig case SHL:
875 1.506 rillig /* TODO: warn about out-of-bounds 'sr'. */
876 1.506 rillig /* TODO: warn about overflow in signed '<<'. */
877 1.544 rillig si = utyp ? (int64_t)(ul << (sr & 63)) : sl << (sr & 63);
878 1.506 rillig break;
879 1.506 rillig case SHR:
880 1.506 rillig /*
881 1.586 rillig * The sign must be explicitly extended because shifts of
882 1.586 rillig * signed values are implementation dependent.
883 1.506 rillig */
884 1.506 rillig /* TODO: warn about out-of-bounds 'sr'. */
885 1.544 rillig si = (int64_t)(ul >> (sr & 63));
886 1.544 rillig si = convert_integer(si, t, size_in_bits(t) - (int)sr);
887 1.506 rillig break;
888 1.506 rillig case LT:
889 1.544 rillig si = (utyp ? ul < ur : sl < sr) ? 1 : 0;
890 1.506 rillig break;
891 1.506 rillig case LE:
892 1.544 rillig si = (utyp ? ul <= ur : sl <= sr) ? 1 : 0;
893 1.506 rillig break;
894 1.506 rillig case GE:
895 1.544 rillig si = (utyp ? ul >= ur : sl >= sr) ? 1 : 0;
896 1.506 rillig break;
897 1.506 rillig case GT:
898 1.544 rillig si = (utyp ? ul > ur : sl > sr) ? 1 : 0;
899 1.506 rillig break;
900 1.506 rillig case EQ:
901 1.544 rillig si = (utyp ? ul == ur : sl == sr) ? 1 : 0;
902 1.506 rillig break;
903 1.506 rillig case NE:
904 1.544 rillig si = (utyp ? ul != ur : sl != sr) ? 1 : 0;
905 1.506 rillig break;
906 1.506 rillig case BITAND:
907 1.544 rillig si = utyp ? (int64_t)(ul & ur) : sl & sr;
908 1.506 rillig break;
909 1.506 rillig case BITXOR:
910 1.544 rillig si = utyp ? (int64_t)(ul ^ ur) : sl ^ sr;
911 1.506 rillig break;
912 1.506 rillig case BITOR:
913 1.544 rillig si = utyp ? (int64_t)(ul | ur) : sl | sr;
914 1.506 rillig break;
915 1.506 rillig default:
916 1.506 rillig lint_assert(/*CONSTCOND*/false);
917 1.506 rillig }
918 1.506 rillig
919 1.536 rillig /* XXX: The overflow check does not work for 64-bit integers. */
920 1.506 rillig if (ovfl ||
921 1.593 rillig ((si | mask) != ~(uint64_t)0 && (si & ~mask) != 0)) {
922 1.506 rillig if (hflag)
923 1.556 rillig /* operator '%s' produces integer overflow */
924 1.506 rillig warning(141, op_name(tn->tn_op));
925 1.506 rillig }
926 1.506 rillig
927 1.544 rillig v->u.integer = convert_integer(si, t, 0);
928 1.151 rillig
929 1.536 rillig tnode_t *cn = build_constant(tn->tn_type, v);
930 1.506 rillig if (tn->tn_left->tn_system_dependent)
931 1.506 rillig cn->tn_system_dependent = true;
932 1.506 rillig if (is_binary(tn) && tn->tn_right->tn_system_dependent)
933 1.506 rillig cn->tn_system_dependent = true;
934 1.190 rillig
935 1.506 rillig return cn;
936 1.190 rillig }
937 1.190 rillig
938 1.506 rillig static tnode_t *
939 1.506 rillig build_struct_access(op_t op, bool sys, tnode_t *ln, tnode_t *rn)
940 1.375 rillig {
941 1.440 rillig
942 1.506 rillig lint_assert(rn->tn_op == NAME);
943 1.506 rillig lint_assert(is_member(rn->tn_sym));
944 1.440 rillig
945 1.566 rillig bool lvalue = op == ARROW || ln->tn_lvalue;
946 1.506 rillig
947 1.506 rillig if (op == POINT) {
948 1.506 rillig ln = build_address(sys, ln, true);
949 1.506 rillig } else if (ln->tn_type->t_tspec != PTR) {
950 1.506 rillig lint_assert(!allow_c90);
951 1.506 rillig lint_assert(is_integer(ln->tn_type->t_tspec));
952 1.506 rillig ln = convert(NOOP, 0, expr_derive_type(gettyp(VOID), PTR), ln);
953 1.506 rillig }
954 1.506 rillig
955 1.536 rillig tnode_t *ctn = build_integer_constant(PTRDIFF_TSPEC,
956 1.506 rillig rn->tn_sym->u.s_member.sm_offset_in_bits / CHAR_SIZE);
957 1.506 rillig
958 1.536 rillig type_t *ptr_tp = expr_derive_type(rn->tn_type, PTR);
959 1.565 rillig tnode_t *ntn = build_op(PLUS, sys, ptr_tp, ln, ctn);
960 1.506 rillig if (ln->tn_op == CON)
961 1.589 rillig ntn = fold_constant_integer(ntn);
962 1.506 rillig
963 1.566 rillig op_t nop = rn->tn_type->t_bitfield ? FSEL : INDIR;
964 1.566 rillig ntn = build_op(nop, sys, ntn->tn_type->t_subt, ntn, NULL);
965 1.566 rillig if (!lvalue)
966 1.506 rillig ntn->tn_lvalue = false;
967 1.440 rillig
968 1.506 rillig return ntn;
969 1.375 rillig }
970 1.375 rillig
971 1.506 rillig /*
972 1.506 rillig * Get the size in bytes of type tp->t_subt, as a constant expression of type
973 1.506 rillig * ptrdiff_t as seen from the target platform.
974 1.506 rillig */
975 1.506 rillig static tnode_t *
976 1.506 rillig subt_size_in_bytes(type_t *tp)
977 1.375 rillig {
978 1.506 rillig
979 1.506 rillig lint_assert(tp->t_tspec == PTR);
980 1.506 rillig tp = tp->t_subt;
981 1.375 rillig
982 1.536 rillig int elem = 1;
983 1.506 rillig while (tp->t_tspec == ARRAY) {
984 1.506 rillig elem *= tp->t_dim;
985 1.506 rillig tp = tp->t_subt;
986 1.138 rillig }
987 1.138 rillig
988 1.536 rillig int elsz_in_bits = 0;
989 1.506 rillig switch (tp->t_tspec) {
990 1.506 rillig case FUNC:
991 1.506 rillig /* pointer to function is not allowed here */
992 1.506 rillig error(110);
993 1.506 rillig break;
994 1.506 rillig case VOID:
995 1.506 rillig /* cannot do pointer arithmetic on operand of unknown size */
996 1.506 rillig gnuism(136);
997 1.506 rillig break;
998 1.506 rillig case STRUCT:
999 1.506 rillig case UNION:
1000 1.527 rillig if ((elsz_in_bits = (int)tp->t_sou->sou_size_in_bits) == 0)
1001 1.506 rillig /* cannot do pointer arithmetic on operand of ... */
1002 1.506 rillig error(136);
1003 1.506 rillig break;
1004 1.506 rillig case ENUM:
1005 1.506 rillig if (is_incomplete(tp)) {
1006 1.506 rillig /* cannot do pointer arithmetic on operand of ... */
1007 1.506 rillig warning(136);
1008 1.139 rillig }
1009 1.506 rillig /* FALLTHROUGH */
1010 1.506 rillig default:
1011 1.506 rillig if ((elsz_in_bits = size_in_bits(tp->t_tspec)) == 0) {
1012 1.506 rillig /* cannot do pointer arithmetic on operand of ... */
1013 1.506 rillig error(136);
1014 1.506 rillig } else {
1015 1.506 rillig lint_assert(elsz_in_bits != -1);
1016 1.139 rillig }
1017 1.506 rillig break;
1018 1.139 rillig }
1019 1.506 rillig
1020 1.506 rillig if (elem == 0 && elsz_in_bits != 0) {
1021 1.506 rillig /* cannot do pointer arithmetic on operand of unknown size */
1022 1.506 rillig error(136);
1023 1.139 rillig }
1024 1.506 rillig
1025 1.506 rillig if (elsz_in_bits == 0)
1026 1.506 rillig elsz_in_bits = CHAR_SIZE;
1027 1.506 rillig
1028 1.506 rillig return build_integer_constant(PTRDIFF_TSPEC,
1029 1.506 rillig (int64_t)(elem * elsz_in_bits / CHAR_SIZE));
1030 1.139 rillig }
1031 1.139 rillig
1032 1.506 rillig static tnode_t *
1033 1.506 rillig build_prepost_incdec(op_t op, bool sys, tnode_t *ln)
1034 1.140 rillig {
1035 1.457 rillig
1036 1.506 rillig lint_assert(ln != NULL);
1037 1.536 rillig tnode_t *cn = ln->tn_type->t_tspec == PTR
1038 1.536 rillig ? subt_size_in_bytes(ln->tn_type)
1039 1.536 rillig : build_integer_constant(INT, 1);
1040 1.565 rillig return build_op(op, sys, ln->tn_type, ln, cn);
1041 1.140 rillig }
1042 1.140 rillig
1043 1.140 rillig static void
1044 1.506 rillig check_enum_array_index(const tnode_t *ln, const tnode_t *rn)
1045 1.140 rillig {
1046 1.506 rillig
1047 1.506 rillig if (ln->tn_op != ADDR || ln->tn_left->tn_op != NAME)
1048 1.506 rillig return;
1049 1.506 rillig
1050 1.536 rillig const type_t *ltp = ln->tn_left->tn_type;
1051 1.536 rillig if (ltp->t_tspec != ARRAY || ltp->t_incomplete_array)
1052 1.506 rillig return;
1053 1.506 rillig
1054 1.506 rillig if (rn->tn_op != CVT || !rn->tn_type->t_is_enum)
1055 1.506 rillig return;
1056 1.506 rillig if (rn->tn_left->tn_op != LOAD)
1057 1.506 rillig return;
1058 1.506 rillig
1059 1.536 rillig const type_t *rtp = rn->tn_left->tn_type;
1060 1.540 rillig const sym_t *ec = rtp->t_enum->en_first_enumerator;
1061 1.540 rillig const sym_t *max_ec = ec;
1062 1.506 rillig lint_assert(ec != NULL);
1063 1.506 rillig for (ec = ec->s_next; ec != NULL; ec = ec->s_next)
1064 1.506 rillig if (ec->u.s_enum_constant > max_ec->u.s_enum_constant)
1065 1.506 rillig max_ec = ec;
1066 1.506 rillig
1067 1.536 rillig int64_t max_enum_value = max_ec->u.s_enum_constant;
1068 1.506 rillig lint_assert(INT_MIN <= max_enum_value && max_enum_value <= INT_MAX);
1069 1.143 rillig
1070 1.536 rillig int max_array_index = ltp->t_dim - 1;
1071 1.506 rillig if (max_enum_value == max_array_index)
1072 1.506 rillig return;
1073 1.143 rillig
1074 1.506 rillig if (max_enum_value == max_array_index + 1 &&
1075 1.506 rillig (strstr(max_ec->s_name, "MAX") != NULL ||
1076 1.506 rillig strstr(max_ec->s_name, "max") != NULL ||
1077 1.506 rillig strstr(max_ec->s_name, "NUM") != NULL ||
1078 1.506 rillig strstr(max_ec->s_name, "num") != NULL))
1079 1.506 rillig return;
1080 1.502 rillig
1081 1.506 rillig /* maximum value %d of '%s' does not match maximum array index %d */
1082 1.536 rillig warning(348, (int)max_enum_value, type_name(rtp), max_array_index);
1083 1.506 rillig print_previous_declaration(max_ec);
1084 1.140 rillig }
1085 1.140 rillig
1086 1.506 rillig static tnode_t *
1087 1.506 rillig build_plus_minus(op_t op, bool sys, tnode_t *ln, tnode_t *rn)
1088 1.182 rillig {
1089 1.506 rillig
1090 1.506 rillig if (rn->tn_type->t_tspec == PTR && is_integer(ln->tn_type->t_tspec)) {
1091 1.506 rillig tnode_t *tmp = ln;
1092 1.506 rillig ln = rn;
1093 1.506 rillig rn = tmp;
1094 1.506 rillig /* pointer addition has integer on the left-hand side */
1095 1.506 rillig query_message(5);
1096 1.140 rillig }
1097 1.140 rillig
1098 1.506 rillig /* pointer +- integer */
1099 1.506 rillig if (ln->tn_type->t_tspec == PTR && rn->tn_type->t_tspec != PTR) {
1100 1.506 rillig lint_assert(is_integer(rn->tn_type->t_tspec));
1101 1.270 rillig
1102 1.506 rillig check_ctype_macro_invocation(ln, rn);
1103 1.506 rillig check_enum_array_index(ln, rn);
1104 1.140 rillig
1105 1.506 rillig tnode_t *elsz = subt_size_in_bytes(ln->tn_type);
1106 1.506 rillig if (rn->tn_type->t_tspec != elsz->tn_type->t_tspec)
1107 1.506 rillig rn = convert(NOOP, 0, elsz->tn_type, rn);
1108 1.140 rillig
1109 1.565 rillig tnode_t *prod = build_op(MULT, sys, rn->tn_type, rn, elsz);
1110 1.506 rillig if (rn->tn_op == CON)
1111 1.589 rillig prod = fold_constant_integer(prod);
1112 1.392 rillig
1113 1.565 rillig return build_op(op, sys, ln->tn_type, ln, prod);
1114 1.140 rillig }
1115 1.178 rillig
1116 1.506 rillig /* pointer - pointer */
1117 1.506 rillig if (rn->tn_type->t_tspec == PTR) {
1118 1.506 rillig lint_assert(ln->tn_type->t_tspec == PTR);
1119 1.506 rillig lint_assert(op == MINUS);
1120 1.178 rillig
1121 1.506 rillig type_t *ptrdiff = gettyp(PTRDIFF_TSPEC);
1122 1.565 rillig tnode_t *raw_diff = build_op(op, sys, ptrdiff, ln, rn);
1123 1.506 rillig if (ln->tn_op == CON && rn->tn_op == CON)
1124 1.589 rillig raw_diff = fold_constant_integer(raw_diff);
1125 1.178 rillig
1126 1.506 rillig tnode_t *elsz = subt_size_in_bytes(ln->tn_type);
1127 1.506 rillig balance(NOOP, &raw_diff, &elsz);
1128 1.140 rillig
1129 1.565 rillig return build_op(DIV, sys, ptrdiff, raw_diff, elsz);
1130 1.140 rillig }
1131 1.506 rillig
1132 1.565 rillig return build_op(op, sys, ln->tn_type, ln, rn);
1133 1.140 rillig }
1134 1.140 rillig
1135 1.506 rillig static tnode_t *
1136 1.506 rillig build_bit_shift(op_t op, bool sys, tnode_t *ln, tnode_t *rn)
1137 1.206 rillig {
1138 1.206 rillig
1139 1.506 rillig if (!allow_c90 && rn->tn_type->t_tspec != INT)
1140 1.564 rillig // XXX: C1978 7.5 says: "Both [operators] perform the usual
1141 1.564 rillig // arithmetic conversions on their operands."
1142 1.564 rillig // TODO: Add a test to exercise this part of the code.
1143 1.506 rillig rn = convert(NOOP, 0, gettyp(INT), rn);
1144 1.565 rillig return build_op(op, sys, ln->tn_type, ln, rn);
1145 1.206 rillig }
1146 1.206 rillig
1147 1.140 rillig static bool
1148 1.506 rillig is_null_pointer(const tnode_t *tn)
1149 1.140 rillig {
1150 1.506 rillig tspec_t t = tn->tn_type->t_tspec;
1151 1.142 rillig
1152 1.564 rillig // TODO: Investigate how other pointers are stored, in particular,
1153 1.564 rillig // whether a pointer constant can have a non-zero value.
1154 1.564 rillig // If not, simplify the code below.
1155 1.584 rillig return ((t == PTR && tn->tn_type->t_subt->t_tspec == VOID)
1156 1.584 rillig || is_integer(t))
1157 1.584 rillig && (tn->tn_op == CON && tn->tn_val.u.integer == 0);
1158 1.506 rillig }
1159 1.140 rillig
1160 1.506 rillig /* Return a type based on tp1, with added qualifiers from tp2. */
1161 1.506 rillig static type_t *
1162 1.506 rillig merge_qualifiers(type_t *tp1, const type_t *tp2)
1163 1.506 rillig {
1164 1.140 rillig
1165 1.506 rillig lint_assert(tp1->t_tspec == PTR);
1166 1.506 rillig lint_assert(tp2->t_tspec == PTR);
1167 1.140 rillig
1168 1.536 rillig bool c1 = tp1->t_subt->t_const;
1169 1.536 rillig bool c2 = tp2->t_subt->t_const;
1170 1.536 rillig bool v1 = tp1->t_subt->t_volatile;
1171 1.536 rillig bool v2 = tp2->t_subt->t_volatile;
1172 1.140 rillig
1173 1.506 rillig if (c1 == (c1 | c2) && v1 == (v1 | v2))
1174 1.506 rillig return tp1;
1175 1.140 rillig
1176 1.536 rillig type_t *nstp = expr_dup_type(tp1->t_subt);
1177 1.506 rillig nstp->t_const |= c2;
1178 1.506 rillig nstp->t_volatile |= v2;
1179 1.140 rillig
1180 1.536 rillig type_t *ntp = expr_dup_type(tp1);
1181 1.506 rillig ntp->t_subt = nstp;
1182 1.506 rillig return ntp;
1183 1.140 rillig }
1184 1.140 rillig
1185 1.506 rillig /* See C99 6.5.15 "Conditional operator". */
1186 1.506 rillig static tnode_t *
1187 1.506 rillig build_colon(bool sys, tnode_t *ln, tnode_t *rn)
1188 1.140 rillig {
1189 1.536 rillig tspec_t lt = ln->tn_type->t_tspec;
1190 1.536 rillig tspec_t rt = rn->tn_type->t_tspec;
1191 1.332 rillig
1192 1.536 rillig type_t *tp;
1193 1.506 rillig if (is_arithmetic(lt) && is_arithmetic(rt)) {
1194 1.506 rillig /* The operands were already balanced in build_binary. */
1195 1.506 rillig tp = ln->tn_type;
1196 1.506 rillig } else if (lt == BOOL && rt == BOOL) {
1197 1.506 rillig tp = ln->tn_type;
1198 1.506 rillig } else if (lt == VOID || rt == VOID) {
1199 1.506 rillig tp = gettyp(VOID);
1200 1.506 rillig } else if (is_struct_or_union(lt)) {
1201 1.506 rillig lint_assert(is_struct_or_union(rt));
1202 1.517 rillig lint_assert(ln->tn_type->t_sou == rn->tn_type->t_sou);
1203 1.506 rillig if (is_incomplete(ln->tn_type)) {
1204 1.506 rillig /* unknown operand size, op '%s' */
1205 1.506 rillig error(138, op_name(COLON));
1206 1.506 rillig return NULL;
1207 1.140 rillig }
1208 1.506 rillig tp = ln->tn_type;
1209 1.506 rillig } else if (lt == PTR && is_integer(rt)) {
1210 1.506 rillig if (rt != PTRDIFF_TSPEC)
1211 1.506 rillig rn = convert(NOOP, 0, gettyp(PTRDIFF_TSPEC), rn);
1212 1.506 rillig tp = ln->tn_type;
1213 1.506 rillig } else if (rt == PTR && is_integer(lt)) {
1214 1.506 rillig if (lt != PTRDIFF_TSPEC)
1215 1.506 rillig ln = convert(NOOP, 0, gettyp(PTRDIFF_TSPEC), ln);
1216 1.506 rillig tp = rn->tn_type;
1217 1.506 rillig } else if (lt == PTR && is_null_pointer(rn)) {
1218 1.506 rillig tp = merge_qualifiers(ln->tn_type, rn->tn_type);
1219 1.506 rillig } else if (rt == PTR && is_null_pointer(ln)) {
1220 1.506 rillig tp = merge_qualifiers(rn->tn_type, ln->tn_type);
1221 1.506 rillig } else if (lt == PTR && ln->tn_type->t_subt->t_tspec == VOID) {
1222 1.506 rillig tp = merge_qualifiers(ln->tn_type, rn->tn_type);
1223 1.506 rillig } else if (rt == PTR && rn->tn_type->t_subt->t_tspec == VOID) {
1224 1.506 rillig tp = merge_qualifiers(rn->tn_type, ln->tn_type);
1225 1.506 rillig } else {
1226 1.506 rillig /*
1227 1.586 rillig * XXX For now we simply take the left type. This is probably
1228 1.586 rillig * wrong, if one type contains a function prototype and the
1229 1.586 rillig * other one, at the same place, only an old-style declaration.
1230 1.506 rillig */
1231 1.506 rillig tp = merge_qualifiers(ln->tn_type, rn->tn_type);
1232 1.140 rillig }
1233 1.506 rillig
1234 1.565 rillig return build_op(COLON, sys, tp, ln, rn);
1235 1.140 rillig }
1236 1.140 rillig
1237 1.506 rillig /* TODO: check for varargs */
1238 1.150 rillig static bool
1239 1.506 rillig is_cast_redundant(const tnode_t *tn)
1240 1.1 cgd {
1241 1.581 rillig const type_t *ntp = tn->tn_type, *otp = tn_ck_left(tn)->tn_type;
1242 1.506 rillig tspec_t nt = ntp->t_tspec, ot = otp->t_tspec;
1243 1.506 rillig
1244 1.506 rillig if (nt == BOOL || ot == BOOL)
1245 1.506 rillig return nt == BOOL && ot == BOOL;
1246 1.506 rillig
1247 1.506 rillig if (is_integer(nt) && is_integer(ot)) {
1248 1.506 rillig unsigned int nw = width_in_bits(ntp), ow = width_in_bits(otp);
1249 1.506 rillig if (is_uinteger(nt) == is_uinteger(ot))
1250 1.584 rillig return nw >= ow;
1251 1.506 rillig return is_uinteger(ot) && nw > ow;
1252 1.1 cgd }
1253 1.1 cgd
1254 1.506 rillig if (is_complex(nt) || is_complex(ot))
1255 1.506 rillig return is_complex(nt) && is_complex(ot) &&
1256 1.584 rillig size_in_bits(nt) >= size_in_bits(ot);
1257 1.506 rillig
1258 1.506 rillig if (is_floating(nt) && is_floating(ot))
1259 1.506 rillig return size_in_bits(nt) >= size_in_bits(ot);
1260 1.506 rillig
1261 1.506 rillig if (nt == PTR && ot == PTR) {
1262 1.506 rillig if (!ntp->t_subt->t_const && otp->t_subt->t_const)
1263 1.141 rillig return false;
1264 1.506 rillig if (!ntp->t_subt->t_volatile && otp->t_subt->t_volatile)
1265 1.141 rillig return false;
1266 1.506 rillig
1267 1.506 rillig if (ntp->t_subt->t_tspec == VOID ||
1268 1.506 rillig otp->t_subt->t_tspec == VOID ||
1269 1.506 rillig types_compatible(ntp->t_subt, otp->t_subt,
1270 1.506 rillig false, false, NULL))
1271 1.506 rillig return true;
1272 1.1 cgd }
1273 1.1 cgd
1274 1.506 rillig return false;
1275 1.150 rillig }
1276 1.150 rillig
1277 1.523 rillig static bool
1278 1.523 rillig is_assignment(op_t op)
1279 1.523 rillig {
1280 1.523 rillig
1281 1.523 rillig return op == ASSIGN ||
1282 1.584 rillig op == MULASS ||
1283 1.584 rillig op == DIVASS ||
1284 1.584 rillig op == MODASS ||
1285 1.584 rillig op == ADDASS ||
1286 1.584 rillig op == SUBASS ||
1287 1.584 rillig op == SHLASS ||
1288 1.584 rillig op == SHRASS ||
1289 1.584 rillig op == ANDASS ||
1290 1.584 rillig op == XORASS ||
1291 1.584 rillig op == ORASS ||
1292 1.584 rillig op == RETURN ||
1293 1.584 rillig op == INIT;
1294 1.523 rillig }
1295 1.523 rillig
1296 1.506 rillig static tnode_t *
1297 1.506 rillig build_assignment(op_t op, bool sys, tnode_t *ln, tnode_t *rn)
1298 1.150 rillig {
1299 1.150 rillig
1300 1.536 rillig tspec_t lt = ln->tn_type->t_tspec;
1301 1.536 rillig tspec_t rt = rn->tn_type->t_tspec;
1302 1.150 rillig
1303 1.523 rillig if (any_query_enabled && is_assignment(rn->tn_op)) {
1304 1.523 rillig /* chained assignment with '%s' and '%s' */
1305 1.523 rillig query_message(10, op_name(op), op_name(rn->tn_op));
1306 1.523 rillig }
1307 1.523 rillig
1308 1.506 rillig if ((op == ADDASS || op == SUBASS) && lt == PTR) {
1309 1.506 rillig lint_assert(is_integer(rt));
1310 1.536 rillig tnode_t *ctn = subt_size_in_bytes(ln->tn_type);
1311 1.506 rillig if (rn->tn_type->t_tspec != ctn->tn_type->t_tspec)
1312 1.506 rillig rn = convert(NOOP, 0, ctn->tn_type, rn);
1313 1.565 rillig rn = build_op(MULT, sys, rn->tn_type, rn, ctn);
1314 1.506 rillig if (rn->tn_left->tn_op == CON)
1315 1.589 rillig rn = fold_constant_integer(rn);
1316 1.150 rillig }
1317 1.150 rillig
1318 1.506 rillig if ((op == ASSIGN || op == RETURN || op == INIT) &&
1319 1.506 rillig (lt == STRUCT || rt == STRUCT)) {
1320 1.506 rillig lint_assert(lt == rt);
1321 1.517 rillig lint_assert(ln->tn_type->t_sou == rn->tn_type->t_sou);
1322 1.506 rillig if (is_incomplete(ln->tn_type)) {
1323 1.506 rillig if (op == RETURN) {
1324 1.506 rillig /* cannot return incomplete type */
1325 1.506 rillig error(212);
1326 1.506 rillig } else {
1327 1.506 rillig /* unknown operand size, op '%s' */
1328 1.506 rillig error(138, op_name(op));
1329 1.506 rillig }
1330 1.506 rillig return NULL;
1331 1.506 rillig }
1332 1.506 rillig }
1333 1.506 rillig
1334 1.549 rillig if (op == SHLASS && hflag && allow_trad && allow_c90
1335 1.550 rillig && portable_rank_cmp(lt, rt) < 0)
1336 1.578 rillig /* semantics of '%s' change in C90; ... */
1337 1.549 rillig warning(118, "<<=");
1338 1.549 rillig
1339 1.549 rillig if (op != SHLASS && op != SHRASS
1340 1.549 rillig && (op == ASSIGN || lt != PTR)
1341 1.549 rillig && (lt != rt || (ln->tn_type->t_bitfield && rn->tn_op == CON))) {
1342 1.549 rillig rn = convert(op, 0, ln->tn_type, rn);
1343 1.549 rillig rt = lt;
1344 1.506 rillig }
1345 1.506 rillig
1346 1.506 rillig if (any_query_enabled && rn->tn_op == CVT && rn->tn_cast &&
1347 1.506 rillig types_compatible(ln->tn_type, rn->tn_type, false, false, NULL) &&
1348 1.506 rillig is_cast_redundant(rn)) {
1349 1.506 rillig /* redundant cast from '%s' to '%s' before assignment */
1350 1.506 rillig query_message(7,
1351 1.506 rillig type_name(rn->tn_left->tn_type), type_name(rn->tn_type));
1352 1.506 rillig }
1353 1.150 rillig
1354 1.565 rillig return build_op(op, sys, ln->tn_type, ln, rn);
1355 1.1 cgd }
1356 1.1 cgd
1357 1.506 rillig static tnode_t *
1358 1.506 rillig build_real_imag(op_t op, bool sys, tnode_t *ln)
1359 1.1 cgd {
1360 1.1 cgd
1361 1.506 rillig lint_assert(ln != NULL);
1362 1.506 rillig if (ln->tn_op == NAME) {
1363 1.506 rillig /*
1364 1.586 rillig * This may be too much, but it avoids wrong warnings. See
1365 1.586 rillig * d_c99_complex_split.c.
1366 1.506 rillig */
1367 1.506 rillig mark_as_used(ln->tn_sym, false, false);
1368 1.506 rillig mark_as_set(ln->tn_sym);
1369 1.1 cgd }
1370 1.1 cgd
1371 1.561 rillig tspec_t t;
1372 1.506 rillig switch (ln->tn_type->t_tspec) {
1373 1.506 rillig case LCOMPLEX:
1374 1.561 rillig t = LDOUBLE;
1375 1.506 rillig break;
1376 1.506 rillig case DCOMPLEX:
1377 1.561 rillig t = DOUBLE;
1378 1.506 rillig break;
1379 1.506 rillig case FCOMPLEX:
1380 1.561 rillig t = FLOAT;
1381 1.506 rillig break;
1382 1.506 rillig default:
1383 1.506 rillig /* '__%s__' is illegal for type '%s' */
1384 1.506 rillig error(276, op == REAL ? "real" : "imag",
1385 1.506 rillig type_name(ln->tn_type));
1386 1.506 rillig return NULL;
1387 1.1 cgd }
1388 1.536 rillig
1389 1.565 rillig tnode_t *ntn = build_op(op, sys, gettyp(t), ln, NULL);
1390 1.506 rillig ntn->tn_lvalue = true;
1391 1.506 rillig return ntn;
1392 1.1 cgd }
1393 1.1 cgd
1394 1.331 rillig static bool
1395 1.506 rillig is_confusing_precedence(op_t op, op_t lop, bool lparen, op_t rop, bool rparen)
1396 1.331 rillig {
1397 1.336 rillig
1398 1.506 rillig if (op == SHL || op == SHR) {
1399 1.506 rillig if (!lparen && (lop == PLUS || lop == MINUS))
1400 1.506 rillig return true;
1401 1.506 rillig if (!rparen && (rop == PLUS || rop == MINUS))
1402 1.506 rillig return true;
1403 1.506 rillig return false;
1404 1.506 rillig }
1405 1.506 rillig
1406 1.506 rillig if (op == LOGOR) {
1407 1.506 rillig if (!lparen && lop == LOGAND)
1408 1.506 rillig return true;
1409 1.506 rillig if (!rparen && rop == LOGAND)
1410 1.506 rillig return true;
1411 1.336 rillig return false;
1412 1.506 rillig }
1413 1.336 rillig
1414 1.506 rillig lint_assert(op == BITAND || op == BITXOR || op == BITOR);
1415 1.506 rillig if (!lparen && lop != op) {
1416 1.506 rillig if (lop == PLUS || lop == MINUS)
1417 1.506 rillig return true;
1418 1.506 rillig if (lop == BITAND || lop == BITXOR)
1419 1.506 rillig return true;
1420 1.506 rillig }
1421 1.506 rillig if (!rparen && rop != op) {
1422 1.506 rillig if (rop == PLUS || rop == MINUS)
1423 1.506 rillig return true;
1424 1.506 rillig if (rop == BITAND || rop == BITXOR)
1425 1.506 rillig return true;
1426 1.506 rillig }
1427 1.506 rillig return false;
1428 1.336 rillig }
1429 1.336 rillig
1430 1.506 rillig /*
1431 1.506 rillig * Print a warning if the given node has operands which should be
1432 1.506 rillig * parenthesized.
1433 1.506 rillig *
1434 1.506 rillig * XXX Does not work if an operand is a constant expression. Constant
1435 1.506 rillig * expressions are already folded.
1436 1.506 rillig */
1437 1.506 rillig static void
1438 1.506 rillig check_precedence_confusion(tnode_t *tn)
1439 1.336 rillig {
1440 1.506 rillig tnode_t *ln, *rn;
1441 1.336 rillig
1442 1.506 rillig if (!hflag)
1443 1.506 rillig return;
1444 1.331 rillig
1445 1.506 rillig debug_node(tn);
1446 1.331 rillig
1447 1.506 rillig lint_assert(is_binary(tn));
1448 1.506 rillig for (ln = tn->tn_left; ln->tn_op == CVT; ln = ln->tn_left)
1449 1.506 rillig continue;
1450 1.506 rillig for (rn = tn->tn_right; rn->tn_op == CVT; rn = rn->tn_left)
1451 1.506 rillig continue;
1452 1.331 rillig
1453 1.506 rillig if (is_confusing_precedence(tn->tn_op,
1454 1.506 rillig ln->tn_op, ln->tn_parenthesized,
1455 1.506 rillig rn->tn_op, rn->tn_parenthesized)) {
1456 1.506 rillig /* precedence confusion possible: parenthesize! */
1457 1.506 rillig warning(169);
1458 1.506 rillig }
1459 1.331 rillig }
1460 1.331 rillig
1461 1.506 rillig static tnode_t *
1462 1.589 rillig fold_constant_compare_zero(tnode_t *tn)
1463 1.384 rillig {
1464 1.384 rillig
1465 1.536 rillig val_t *v = xcalloc(1, sizeof(*v));
1466 1.506 rillig v->v_tspec = tn->tn_type->t_tspec;
1467 1.506 rillig lint_assert(v->v_tspec == INT || (Tflag && v->v_tspec == BOOL));
1468 1.384 rillig
1469 1.581 rillig lint_assert(has_operands(tn));
1470 1.536 rillig bool l = constant_is_nonzero(tn->tn_left);
1471 1.536 rillig bool r = is_binary(tn) && constant_is_nonzero(tn->tn_right);
1472 1.336 rillig
1473 1.506 rillig switch (tn->tn_op) {
1474 1.506 rillig case NOT:
1475 1.562 rillig if (hflag && !suppress_constcond)
1476 1.574 rillig /* constant operand to '!' */
1477 1.506 rillig warning(239);
1478 1.544 rillig v->u.integer = !l ? 1 : 0;
1479 1.506 rillig break;
1480 1.506 rillig case LOGAND:
1481 1.544 rillig v->u.integer = l && r ? 1 : 0;
1482 1.506 rillig break;
1483 1.506 rillig case LOGOR:
1484 1.544 rillig v->u.integer = l || r ? 1 : 0;
1485 1.506 rillig break;
1486 1.506 rillig default:
1487 1.506 rillig lint_assert(/*CONSTCOND*/false);
1488 1.506 rillig }
1489 1.336 rillig
1490 1.506 rillig return build_constant(tn->tn_type, v);
1491 1.331 rillig }
1492 1.331 rillig
1493 1.527 rillig static long double
1494 1.527 rillig floating_error_value(tspec_t t, long double lv)
1495 1.384 rillig {
1496 1.509 rillig if (t == FLOAT)
1497 1.506 rillig return lv < 0 ? -FLT_MAX : FLT_MAX;
1498 1.509 rillig if (t == DOUBLE)
1499 1.506 rillig return lv < 0 ? -DBL_MAX : DBL_MAX;
1500 1.512 rillig /*
1501 1.586 rillig * When NetBSD is cross-built in MKLINT=yes mode on x86_64 for sparc64,
1502 1.586 rillig * tools/lint checks this code while building usr.bin/xlint. In that
1503 1.586 rillig * situation, lint uses the preprocessor for sparc64, in which the type
1504 1.586 rillig * 'long double' is IEEE-754-binary128, affecting the macro LDBL_MAX
1505 1.586 rillig * below. The type 'long double', as well as the strtold
1506 1.513 rillig * implementation, comes from the host platform x86_64 though, where
1507 1.513 rillig * 'long double' consumes 128 bits as well but only uses 80 of them.
1508 1.513 rillig * The exponent range of the two 'long double' types is the same, but
1509 1.513 rillig * the maximum finite value differs due to the extended precision on
1510 1.513 rillig * sparc64.
1511 1.512 rillig *
1512 1.586 rillig * To properly handle the data types of the target platform, lint would
1513 1.586 rillig * have to implement the floating-point types in a platform-independent
1514 1.586 rillig * way, which is not worth the effort, given how few programs
1515 1.586 rillig * practically use 'long double'.
1516 1.512 rillig */
1517 1.512 rillig /* LINTED 248: floating-point constant out of range */
1518 1.527 rillig long double max = LDBL_MAX;
1519 1.512 rillig return lv < 0 ? -max : max;
1520 1.506 rillig }
1521 1.384 rillig
1522 1.536 rillig static bool
1523 1.536 rillig is_floating_overflow(tspec_t t, long double val)
1524 1.536 rillig {
1525 1.536 rillig if (fpe != 0 || isfinite(val) == 0)
1526 1.536 rillig return true;
1527 1.536 rillig if (t == FLOAT && (val > FLT_MAX || val < -FLT_MAX))
1528 1.536 rillig return true;
1529 1.536 rillig if (t == DOUBLE && (val > DBL_MAX || val < -DBL_MAX))
1530 1.536 rillig return true;
1531 1.536 rillig return false;
1532 1.536 rillig }
1533 1.536 rillig
1534 1.506 rillig static tnode_t *
1535 1.589 rillig fold_constant_floating(tnode_t *tn)
1536 1.331 rillig {
1537 1.336 rillig
1538 1.506 rillig fpe = 0;
1539 1.536 rillig
1540 1.536 rillig tspec_t t = tn->tn_type->t_tspec;
1541 1.536 rillig
1542 1.536 rillig val_t *v = xcalloc(1, sizeof(*v));
1543 1.536 rillig v->v_tspec = t;
1544 1.384 rillig
1545 1.506 rillig lint_assert(is_floating(t));
1546 1.581 rillig lint_assert(has_operands(tn));
1547 1.506 rillig lint_assert(t == tn->tn_left->tn_type->t_tspec);
1548 1.506 rillig lint_assert(!is_binary(tn) || t == tn->tn_right->tn_type->t_tspec);
1549 1.331 rillig
1550 1.544 rillig long double lv = tn->tn_left->tn_val.u.floating;
1551 1.544 rillig long double rv = is_binary(tn) ? tn->tn_right->tn_val.u.floating : 0.0;
1552 1.1 cgd
1553 1.506 rillig switch (tn->tn_op) {
1554 1.506 rillig case UPLUS:
1555 1.544 rillig v->u.floating = lv;
1556 1.369 rillig break;
1557 1.506 rillig case UMINUS:
1558 1.544 rillig v->u.floating = -lv;
1559 1.369 rillig break;
1560 1.506 rillig case MULT:
1561 1.544 rillig v->u.floating = lv * rv;
1562 1.369 rillig break;
1563 1.506 rillig case DIV:
1564 1.506 rillig if (rv == 0.0) {
1565 1.506 rillig /* division by 0 */
1566 1.506 rillig error(139);
1567 1.544 rillig v->u.floating = floating_error_value(t, lv);
1568 1.506 rillig } else {
1569 1.544 rillig v->u.floating = lv / rv;
1570 1.1 cgd }
1571 1.369 rillig break;
1572 1.506 rillig case PLUS:
1573 1.544 rillig v->u.floating = lv + rv;
1574 1.369 rillig break;
1575 1.506 rillig case MINUS:
1576 1.544 rillig v->u.floating = lv - rv;
1577 1.369 rillig break;
1578 1.506 rillig case LT:
1579 1.544 rillig v->u.integer = lv < rv ? 1 : 0;
1580 1.369 rillig break;
1581 1.506 rillig case LE:
1582 1.544 rillig v->u.integer = lv <= rv ? 1 : 0;
1583 1.369 rillig break;
1584 1.506 rillig case GE:
1585 1.544 rillig v->u.integer = lv >= rv ? 1 : 0;
1586 1.369 rillig break;
1587 1.506 rillig case GT:
1588 1.544 rillig v->u.integer = lv > rv ? 1 : 0;
1589 1.1 cgd break;
1590 1.506 rillig case EQ:
1591 1.544 rillig v->u.integer = lv == rv ? 1 : 0;
1592 1.1 cgd break;
1593 1.506 rillig case NE:
1594 1.544 rillig v->u.integer = lv != rv ? 1 : 0;
1595 1.1 cgd break;
1596 1.1 cgd default:
1597 1.506 rillig lint_assert(/*CONSTCOND*/false);
1598 1.506 rillig }
1599 1.506 rillig
1600 1.564 rillig // XXX: Must not access u.floating after setting u.integer.
1601 1.544 rillig lint_assert(fpe != 0 || isnan(v->u.floating) == 0);
1602 1.508 rillig if (is_complex(v->v_tspec)) {
1603 1.508 rillig /*
1604 1.508 rillig * Don't warn, as lint doesn't model the imaginary part of
1605 1.508 rillig * complex numbers.
1606 1.508 rillig */
1607 1.508 rillig fpe = 0;
1608 1.544 rillig } else if (is_floating_overflow(t, v->u.floating)) {
1609 1.556 rillig /* operator '%s' produces floating point overflow */
1610 1.506 rillig warning(142, op_name(tn->tn_op));
1611 1.544 rillig v->u.floating = floating_error_value(t, v->u.floating);
1612 1.506 rillig fpe = 0;
1613 1.1 cgd }
1614 1.506 rillig
1615 1.506 rillig return build_constant(tn->tn_type, v);
1616 1.369 rillig }
1617 1.369 rillig
1618 1.579 rillig static void
1619 1.579 rillig use(const tnode_t *tn)
1620 1.579 rillig {
1621 1.579 rillig if (tn == NULL)
1622 1.579 rillig return;
1623 1.579 rillig switch (tn->tn_op) {
1624 1.579 rillig case NAME:
1625 1.579 rillig mark_as_used(tn->tn_sym, false /* XXX */, false /* XXX */);
1626 1.579 rillig break;
1627 1.579 rillig case CON:
1628 1.579 rillig case STRING:
1629 1.579 rillig break;
1630 1.579 rillig default:
1631 1.581 rillig lint_assert(has_operands(tn));
1632 1.579 rillig use(tn->tn_left);
1633 1.580 rillig if (is_binary(tn) || tn->tn_op == PUSH)
1634 1.579 rillig use(tn->tn_right);
1635 1.579 rillig }
1636 1.579 rillig }
1637 1.579 rillig
1638 1.369 rillig /*
1639 1.506 rillig * Create a tree node for a binary operator and its two operands. Also called
1640 1.506 rillig * for unary operators; in that case rn is NULL.
1641 1.506 rillig *
1642 1.506 rillig * Function calls, sizeof and casts are handled elsewhere.
1643 1.369 rillig */
1644 1.506 rillig tnode_t *
1645 1.506 rillig build_binary(tnode_t *ln, op_t op, bool sys, tnode_t *rn)
1646 1.369 rillig {
1647 1.536 rillig const mod_t *mp = &modtab[op];
1648 1.369 rillig
1649 1.506 rillig /* If there was an error in one of the operands, return. */
1650 1.506 rillig if (ln == NULL || (mp->m_binary && rn == NULL))
1651 1.506 rillig return NULL;
1652 1.369 rillig
1653 1.506 rillig if (mp->m_value_context || mp->m_compares_with_zero)
1654 1.506 rillig ln = cconv(ln);
1655 1.506 rillig if (mp->m_binary && op != ARROW && op != POINT)
1656 1.506 rillig rn = cconv(rn);
1657 1.369 rillig
1658 1.506 rillig if (mp->m_comparison)
1659 1.506 rillig check_integer_comparison(op, ln, rn);
1660 1.369 rillig
1661 1.506 rillig if (mp->m_value_context || mp->m_compares_with_zero)
1662 1.506 rillig ln = promote(op, false, ln);
1663 1.506 rillig if (mp->m_binary && op != ARROW && op != POINT &&
1664 1.589 rillig op != ASSIGN && op != RETURN && op != INIT)
1665 1.506 rillig rn = promote(op, false, rn);
1666 1.369 rillig
1667 1.506 rillig if (mp->m_warn_if_left_unsigned_in_c90 &&
1668 1.531 rillig ln->tn_op == CON && ln->tn_val.v_unsigned_since_c90) {
1669 1.578 rillig /* C90 treats constant as unsigned, op '%s' */
1670 1.560 rillig warning(218, op_name(op));
1671 1.531 rillig ln->tn_val.v_unsigned_since_c90 = false;
1672 1.506 rillig }
1673 1.506 rillig if (mp->m_warn_if_right_unsigned_in_c90 &&
1674 1.531 rillig rn->tn_op == CON && rn->tn_val.v_unsigned_since_c90) {
1675 1.578 rillig /* C90 treats constant as unsigned, op '%s' */
1676 1.560 rillig warning(218, op_name(op));
1677 1.531 rillig rn->tn_val.v_unsigned_since_c90 = false;
1678 1.506 rillig }
1679 1.369 rillig
1680 1.506 rillig if (mp->m_balance_operands || (!allow_c90 && (op == SHL || op == SHR)))
1681 1.506 rillig balance(op, &ln, &rn);
1682 1.369 rillig
1683 1.506 rillig if (!typeok(op, 0, ln, rn))
1684 1.506 rillig return NULL;
1685 1.369 rillig
1686 1.536 rillig tnode_t *ntn;
1687 1.506 rillig switch (op) {
1688 1.506 rillig case POINT:
1689 1.506 rillig case ARROW:
1690 1.506 rillig ntn = build_struct_access(op, sys, ln, rn);
1691 1.506 rillig break;
1692 1.506 rillig case INCAFT:
1693 1.506 rillig case DECAFT:
1694 1.506 rillig case INCBEF:
1695 1.506 rillig case DECBEF:
1696 1.506 rillig ntn = build_prepost_incdec(op, sys, ln);
1697 1.506 rillig break;
1698 1.506 rillig case ADDR:
1699 1.506 rillig ntn = build_address(sys, ln, false);
1700 1.506 rillig break;
1701 1.506 rillig case INDIR:
1702 1.565 rillig ntn = build_op(INDIR, sys, ln->tn_type->t_subt, ln, NULL);
1703 1.506 rillig break;
1704 1.506 rillig case PLUS:
1705 1.506 rillig case MINUS:
1706 1.506 rillig ntn = build_plus_minus(op, sys, ln, rn);
1707 1.506 rillig break;
1708 1.506 rillig case SHL:
1709 1.506 rillig case SHR:
1710 1.506 rillig ntn = build_bit_shift(op, sys, ln, rn);
1711 1.506 rillig break;
1712 1.506 rillig case COLON:
1713 1.506 rillig ntn = build_colon(sys, ln, rn);
1714 1.506 rillig break;
1715 1.506 rillig case ASSIGN:
1716 1.506 rillig case MULASS:
1717 1.506 rillig case DIVASS:
1718 1.506 rillig case MODASS:
1719 1.506 rillig case ADDASS:
1720 1.506 rillig case SUBASS:
1721 1.506 rillig case SHLASS:
1722 1.506 rillig case SHRASS:
1723 1.506 rillig case ANDASS:
1724 1.506 rillig case XORASS:
1725 1.506 rillig case ORASS:
1726 1.506 rillig case RETURN:
1727 1.506 rillig case INIT:
1728 1.506 rillig ntn = build_assignment(op, sys, ln, rn);
1729 1.506 rillig break;
1730 1.506 rillig case COMMA:
1731 1.528 rillig if (any_query_enabled) {
1732 1.528 rillig /* comma operator with types '%s' and '%s' */
1733 1.528 rillig query_message(12,
1734 1.528 rillig type_name(ln->tn_type), type_name(rn->tn_type));
1735 1.528 rillig }
1736 1.528 rillig /* FALLTHROUGH */
1737 1.506 rillig case QUEST:
1738 1.565 rillig ntn = build_op(op, sys, rn->tn_type, ln, rn);
1739 1.506 rillig break;
1740 1.506 rillig case REAL:
1741 1.506 rillig case IMAG:
1742 1.506 rillig ntn = build_real_imag(op, sys, ln);
1743 1.506 rillig break;
1744 1.506 rillig default:
1745 1.536 rillig lint_assert(mp->m_binary == (rn != NULL));
1746 1.536 rillig type_t *rettp = mp->m_returns_bool
1747 1.506 rillig ? gettyp(Tflag ? BOOL : INT) : ln->tn_type;
1748 1.565 rillig ntn = build_op(op, sys, rettp, ln, rn);
1749 1.506 rillig break;
1750 1.506 rillig }
1751 1.1 cgd
1752 1.506 rillig if (ntn == NULL)
1753 1.506 rillig return NULL;
1754 1.1 cgd
1755 1.506 rillig if (mp->m_possible_precedence_confusion)
1756 1.506 rillig check_precedence_confusion(ntn);
1757 1.1 cgd
1758 1.562 rillig if (hflag && !suppress_constcond &&
1759 1.506 rillig mp->m_compares_with_zero &&
1760 1.506 rillig (ln->tn_op == CON ||
1761 1.589 rillig (mp->m_binary && op != QUEST && rn->tn_op == CON)) &&
1762 1.506 rillig /* XXX: rn->tn_system_dependent should be checked as well */
1763 1.506 rillig !ln->tn_system_dependent) {
1764 1.506 rillig /* constant in conditional context */
1765 1.506 rillig warning(161);
1766 1.506 rillig }
1767 1.506 rillig
1768 1.589 rillig if (mp->m_fold_constant_operands && ln->tn_op == CON) {
1769 1.589 rillig if (!mp->m_binary || rn->tn_op == CON) {
1770 1.589 rillig if (mp->m_compares_with_zero)
1771 1.589 rillig ntn = fold_constant_compare_zero(ntn);
1772 1.589 rillig else if (is_floating(ntn->tn_type->t_tspec))
1773 1.589 rillig ntn = fold_constant_floating(ntn);
1774 1.589 rillig else
1775 1.589 rillig ntn = fold_constant_integer(ntn);
1776 1.589 rillig } else if (op == QUEST) {
1777 1.581 rillig lint_assert(has_operands(rn));
1778 1.579 rillig use(ln->tn_val.u.integer != 0
1779 1.579 rillig ? rn->tn_right : rn->tn_left);
1780 1.544 rillig ntn = ln->tn_val.u.integer != 0
1781 1.506 rillig ? rn->tn_left : rn->tn_right;
1782 1.506 rillig }
1783 1.1 cgd }
1784 1.1 cgd
1785 1.506 rillig return ntn;
1786 1.506 rillig }
1787 1.506 rillig
1788 1.506 rillig tnode_t *
1789 1.506 rillig build_unary(op_t op, bool sys, tnode_t *tn)
1790 1.506 rillig {
1791 1.506 rillig return build_binary(tn, op, sys, NULL);
1792 1.1 cgd }
1793 1.1 cgd
1794 1.536 rillig static bool
1795 1.536 rillig are_members_compatible(const sym_t *a, const sym_t *b)
1796 1.536 rillig {
1797 1.536 rillig if (a->u.s_member.sm_offset_in_bits != b->u.s_member.sm_offset_in_bits)
1798 1.536 rillig return false;
1799 1.536 rillig
1800 1.536 rillig const type_t *atp = a->s_type;
1801 1.536 rillig const type_t *btp = b->s_type;
1802 1.536 rillig bool w = false;
1803 1.536 rillig if (!types_compatible(atp, btp, false, false, &w) && !w)
1804 1.536 rillig return false;
1805 1.536 rillig if (a->s_bitfield != b->s_bitfield)
1806 1.536 rillig return false;
1807 1.536 rillig if (a->s_bitfield) {
1808 1.536 rillig if (atp->t_bit_field_width != btp->t_bit_field_width)
1809 1.536 rillig return false;
1810 1.536 rillig if (atp->t_bit_field_offset != btp->t_bit_field_offset)
1811 1.536 rillig return false;
1812 1.536 rillig }
1813 1.536 rillig return true;
1814 1.536 rillig }
1815 1.536 rillig
1816 1.1 cgd /*
1817 1.506 rillig * Return whether all struct/union members with the same name have the same
1818 1.506 rillig * type and offset.
1819 1.1 cgd */
1820 1.506 rillig static bool
1821 1.506 rillig all_members_compatible(const sym_t *msym)
1822 1.1 cgd {
1823 1.506 rillig for (const sym_t *csym = msym;
1824 1.584 rillig csym != NULL; csym = csym->s_symtab_next) {
1825 1.506 rillig if (!is_member(csym))
1826 1.506 rillig continue;
1827 1.506 rillig if (strcmp(msym->s_name, csym->s_name) != 0)
1828 1.506 rillig continue;
1829 1.506 rillig
1830 1.506 rillig for (const sym_t *sym = csym->s_symtab_next;
1831 1.584 rillig sym != NULL; sym = sym->s_symtab_next) {
1832 1.536 rillig if (is_member(sym)
1833 1.536 rillig && strcmp(csym->s_name, sym->s_name) == 0
1834 1.536 rillig && !are_members_compatible(csym, sym))
1835 1.506 rillig return false;
1836 1.1 cgd }
1837 1.1 cgd }
1838 1.506 rillig return true;
1839 1.1 cgd }
1840 1.1 cgd
1841 1.539 rillig sym_t *
1842 1.573 rillig find_member(const struct_or_union *sou, const char *name)
1843 1.537 rillig {
1844 1.573 rillig for (sym_t *mem = sou->sou_first_member;
1845 1.584 rillig mem != NULL; mem = mem->s_next) {
1846 1.572 rillig lint_assert(is_member(mem));
1847 1.573 rillig lint_assert(mem->u.s_member.sm_containing_type == sou);
1848 1.537 rillig if (strcmp(mem->s_name, name) == 0)
1849 1.537 rillig return mem;
1850 1.537 rillig }
1851 1.573 rillig
1852 1.573 rillig for (sym_t *mem = sou->sou_first_member;
1853 1.584 rillig mem != NULL; mem = mem->s_next) {
1854 1.573 rillig if (is_struct_or_union(mem->s_type->t_tspec)
1855 1.573 rillig && mem->s_name == unnamed) {
1856 1.573 rillig sym_t *nested_mem =
1857 1.573 rillig find_member(mem->s_type->t_sou, name);
1858 1.537 rillig if (nested_mem != NULL)
1859 1.537 rillig return nested_mem;
1860 1.537 rillig }
1861 1.537 rillig }
1862 1.537 rillig return NULL;
1863 1.537 rillig }
1864 1.537 rillig
1865 1.506 rillig /*
1866 1.570 rillig * Remove the member if it was unknown until now, which means
1867 1.570 rillig * that no defined struct or union has a member with the same name.
1868 1.570 rillig */
1869 1.570 rillig static void
1870 1.570 rillig remove_unknown_member(tnode_t *tn, sym_t *msym)
1871 1.570 rillig {
1872 1.570 rillig /* type '%s' does not have member '%s' */
1873 1.570 rillig error(101, type_name(tn->tn_type), msym->s_name);
1874 1.570 rillig rmsym(msym);
1875 1.597 rillig msym->s_kind = SK_MEMBER;
1876 1.570 rillig msym->s_scl = STRUCT_MEMBER;
1877 1.570 rillig
1878 1.570 rillig struct_or_union *sou = expr_zero_alloc(sizeof(*sou),
1879 1.570 rillig "struct_or_union");
1880 1.570 rillig sou->sou_tag = expr_zero_alloc(sizeof(*sou->sou_tag), "sym");
1881 1.570 rillig sou->sou_tag->s_name = unnamed;
1882 1.570 rillig
1883 1.570 rillig msym->u.s_member.sm_containing_type = sou;
1884 1.570 rillig /*
1885 1.586 rillig * The member sm_offset_in_bits is not needed here since this symbol
1886 1.586 rillig * can only be used for error reporting.
1887 1.570 rillig */
1888 1.570 rillig }
1889 1.570 rillig
1890 1.570 rillig /*
1891 1.574 rillig * Returns a symbol which has the same name as 'msym' and is a member of the
1892 1.574 rillig * struct or union specified by 'tn'.
1893 1.506 rillig */
1894 1.506 rillig static sym_t *
1895 1.506 rillig struct_or_union_member(tnode_t *tn, op_t op, sym_t *msym)
1896 1.1 cgd {
1897 1.506 rillig
1898 1.537 rillig /* Determine the tag type of which msym is expected to be a member. */
1899 1.537 rillig const type_t *tp = NULL;
1900 1.536 rillig if (op == POINT && is_struct_or_union(tn->tn_type->t_tspec))
1901 1.537 rillig tp = tn->tn_type;
1902 1.536 rillig if (op == ARROW && tn->tn_type->t_tspec == PTR
1903 1.536 rillig && is_struct_or_union(tn->tn_type->t_subt->t_tspec))
1904 1.537 rillig tp = tn->tn_type->t_subt;
1905 1.543 rillig struct_or_union *sou = tp != NULL ? tp->t_sou : NULL;
1906 1.386 rillig
1907 1.543 rillig if (sou != NULL) {
1908 1.573 rillig sym_t *nested_mem = find_member(sou, msym->s_name);
1909 1.537 rillig if (nested_mem != NULL)
1910 1.537 rillig return nested_mem;
1911 1.537 rillig }
1912 1.537 rillig
1913 1.582 rillig if (msym->s_scl == NO_SCL) {
1914 1.571 rillig remove_unknown_member(tn, msym);
1915 1.571 rillig return msym;
1916 1.571 rillig }
1917 1.571 rillig
1918 1.506 rillig bool eq = all_members_compatible(msym);
1919 1.390 christos
1920 1.506 rillig /*
1921 1.586 rillig * Now handle the case in which the left operand refers really to a
1922 1.586 rillig * struct/union, but the right operand is not member of it.
1923 1.506 rillig */
1924 1.543 rillig if (sou != NULL) {
1925 1.506 rillig if (eq && !allow_c90) {
1926 1.506 rillig /* illegal use of member '%s' */
1927 1.506 rillig warning(102, msym->s_name);
1928 1.506 rillig } else {
1929 1.506 rillig /* illegal use of member '%s' */
1930 1.506 rillig error(102, msym->s_name);
1931 1.506 rillig }
1932 1.506 rillig return msym;
1933 1.506 rillig }
1934 1.390 christos
1935 1.506 rillig if (eq) {
1936 1.506 rillig if (op == POINT) {
1937 1.506 rillig if (!allow_c90) {
1938 1.506 rillig /* left operand of '.' must be struct ... */
1939 1.506 rillig warning(103, type_name(tn->tn_type));
1940 1.506 rillig } else {
1941 1.506 rillig /* left operand of '.' must be struct ... */
1942 1.506 rillig error(103, type_name(tn->tn_type));
1943 1.506 rillig }
1944 1.506 rillig } else {
1945 1.506 rillig if (!allow_c90 && tn->tn_type->t_tspec == PTR) {
1946 1.506 rillig /* left operand of '->' must be pointer ... */
1947 1.506 rillig warning(104, type_name(tn->tn_type));
1948 1.506 rillig } else {
1949 1.506 rillig /* left operand of '->' must be pointer ... */
1950 1.506 rillig error(104, type_name(tn->tn_type));
1951 1.506 rillig }
1952 1.506 rillig }
1953 1.506 rillig } else {
1954 1.506 rillig if (!allow_c90) {
1955 1.506 rillig /* non-unique member requires struct/union %s */
1956 1.506 rillig error(105, op == POINT ? "object" : "pointer");
1957 1.506 rillig } else {
1958 1.506 rillig /* unacceptable operand of '%s' */
1959 1.506 rillig error(111, op_name(op));
1960 1.506 rillig }
1961 1.506 rillig }
1962 1.389 rillig
1963 1.506 rillig return msym;
1964 1.506 rillig }
1965 1.386 rillig
1966 1.506 rillig tnode_t *
1967 1.506 rillig build_member_access(tnode_t *ln, op_t op, bool sys, sbuf_t *member)
1968 1.506 rillig {
1969 1.526 rillig sym_t *msym;
1970 1.386 rillig
1971 1.506 rillig if (ln == NULL)
1972 1.506 rillig return NULL;
1973 1.389 rillig
1974 1.506 rillig if (op == ARROW) {
1975 1.506 rillig /* must do this before struct_or_union_member is called */
1976 1.506 rillig ln = cconv(ln);
1977 1.506 rillig }
1978 1.506 rillig msym = struct_or_union_member(ln, op, getsym(member));
1979 1.506 rillig return build_binary(ln, op, sys, build_name(msym, false));
1980 1.386 rillig }
1981 1.386 rillig
1982 1.1 cgd /*
1983 1.506 rillig * Perform class conversions.
1984 1.506 rillig *
1985 1.506 rillig * Arrays of type T are converted into pointers to type T.
1986 1.506 rillig * Functions are converted to pointers to functions.
1987 1.506 rillig * Lvalues are converted to rvalues.
1988 1.506 rillig *
1989 1.506 rillig * C99 6.3 "Conversions"
1990 1.506 rillig * C99 6.3.2 "Other operands"
1991 1.506 rillig * C99 6.3.2.1 "Lvalues, arrays, and function designators"
1992 1.1 cgd */
1993 1.506 rillig tnode_t *
1994 1.506 rillig cconv(tnode_t *tn)
1995 1.1 cgd {
1996 1.506 rillig if (tn->tn_type->t_tspec == ARRAY) {
1997 1.506 rillig if (!tn->tn_lvalue) {
1998 1.506 rillig /* XXX print correct operator */
1999 1.506 rillig /* %soperand of '%s' must be lvalue */
2000 1.506 rillig gnuism(114, "", op_name(ADDR));
2001 1.506 rillig }
2002 1.565 rillig tn = build_op(ADDR, tn->tn_sys,
2003 1.506 rillig expr_derive_type(tn->tn_type->t_subt, PTR), tn, NULL);
2004 1.506 rillig }
2005 1.1 cgd
2006 1.506 rillig if (tn->tn_type->t_tspec == FUNC)
2007 1.506 rillig tn = build_address(tn->tn_sys, tn, true);
2008 1.1 cgd
2009 1.506 rillig if (tn->tn_lvalue) {
2010 1.509 rillig type_t *tp = expr_dup_type(tn->tn_type);
2011 1.506 rillig /* C99 6.3.2.1p2 sentence 2 says to remove the qualifiers. */
2012 1.506 rillig tp->t_const = tp->t_volatile = false;
2013 1.565 rillig tn = build_op(LOAD, tn->tn_sys, tp, tn, NULL);
2014 1.1 cgd }
2015 1.1 cgd
2016 1.506 rillig return tn;
2017 1.1 cgd }
2018 1.1 cgd
2019 1.506 rillig const tnode_t *
2020 1.506 rillig before_conversion(const tnode_t *tn)
2021 1.496 rillig {
2022 1.506 rillig while (tn->tn_op == CVT && !tn->tn_cast)
2023 1.506 rillig tn = tn->tn_left;
2024 1.506 rillig return tn;
2025 1.496 rillig }
2026 1.496 rillig
2027 1.496 rillig /*
2028 1.578 rillig * Most errors required by C90 are reported in struct_or_union_member().
2029 1.506 rillig * Here we only check for totally wrong things.
2030 1.496 rillig */
2031 1.506 rillig static bool
2032 1.506 rillig typeok_point(const tnode_t *ln, const type_t *ltp, tspec_t lt)
2033 1.496 rillig {
2034 1.506 rillig if (is_struct_or_union(lt))
2035 1.506 rillig return true;
2036 1.496 rillig
2037 1.506 rillig if (lt == FUNC || lt == VOID || ltp->t_bitfield)
2038 1.506 rillig goto wrong;
2039 1.496 rillig
2040 1.506 rillig /*
2041 1.506 rillig * Some C dialects from before C90 tolerated any lvalue on the
2042 1.586 rillig * left-hand side of the '.' operator, allowing things like 'char
2043 1.586 rillig * st[100]; st.st_mtime', assuming that the member 'st_mtime' only
2044 1.586 rillig * occurred in a single struct; see typeok_arrow.
2045 1.506 rillig */
2046 1.506 rillig if (ln->tn_lvalue)
2047 1.506 rillig return true;
2048 1.1 cgd
2049 1.506 rillig wrong:
2050 1.506 rillig /* With allow_c90 we already got an error */
2051 1.506 rillig if (!allow_c90)
2052 1.506 rillig /* unacceptable operand of '%s' */
2053 1.506 rillig error(111, op_name(POINT));
2054 1.1 cgd
2055 1.506 rillig return false;
2056 1.506 rillig }
2057 1.1 cgd
2058 1.506 rillig static bool
2059 1.506 rillig typeok_arrow(tspec_t lt)
2060 1.506 rillig {
2061 1.496 rillig /*
2062 1.506 rillig * C1978 Appendix A 14.1 says: <quote>In fact, any lvalue is allowed
2063 1.586 rillig * before '.', and that lvalue is then assumed to have the form of the
2064 1.586 rillig * structure of which the name of the right is a member. [...] Such
2065 1.586 rillig * constructions are non-portable.</quote>
2066 1.496 rillig */
2067 1.506 rillig if (lt == PTR || (!allow_c90 && is_integer(lt)))
2068 1.506 rillig return true;
2069 1.506 rillig
2070 1.506 rillig /* With allow_c90 we already got an error */
2071 1.506 rillig if (!allow_c90)
2072 1.506 rillig /* unacceptable operand of '%s' */
2073 1.506 rillig error(111, op_name(ARROW));
2074 1.506 rillig return false;
2075 1.1 cgd }
2076 1.1 cgd
2077 1.506 rillig static bool
2078 1.506 rillig typeok_incdec(op_t op, const tnode_t *tn, const type_t *tp)
2079 1.488 rillig {
2080 1.506 rillig /* operand has scalar type (checked in typeok) */
2081 1.506 rillig if (!tn->tn_lvalue) {
2082 1.506 rillig if (tn->tn_op == CVT && tn->tn_cast &&
2083 1.506 rillig tn->tn_left->tn_op == LOAD) {
2084 1.506 rillig /* a cast does not yield an lvalue */
2085 1.506 rillig error(163);
2086 1.506 rillig }
2087 1.506 rillig /* %soperand of '%s' must be lvalue */
2088 1.506 rillig error(114, "", op_name(op));
2089 1.506 rillig return false;
2090 1.509 rillig }
2091 1.509 rillig if (tp->t_const && allow_c90) {
2092 1.509 rillig /* %soperand of '%s' must be modifiable lvalue */
2093 1.509 rillig warning(115, "", op_name(op));
2094 1.489 rillig }
2095 1.506 rillig return true;
2096 1.488 rillig }
2097 1.488 rillig
2098 1.506 rillig static bool
2099 1.560 rillig typeok_address(op_t op, const tnode_t *tn, const type_t *tp, tspec_t t)
2100 1.497 rillig {
2101 1.506 rillig if (t == ARRAY || t == FUNC) {
2102 1.506 rillig /* ok, a warning comes later (in build_address()) */
2103 1.506 rillig } else if (!tn->tn_lvalue) {
2104 1.506 rillig if (tn->tn_op == CVT && tn->tn_cast &&
2105 1.506 rillig tn->tn_left->tn_op == LOAD) {
2106 1.506 rillig /* a cast does not yield an lvalue */
2107 1.506 rillig error(163);
2108 1.506 rillig }
2109 1.506 rillig /* %soperand of '%s' must be lvalue */
2110 1.560 rillig error(114, "", op_name(op));
2111 1.506 rillig return false;
2112 1.506 rillig } else if (is_scalar(t)) {
2113 1.506 rillig if (tp->t_bitfield) {
2114 1.506 rillig /* cannot take address of bit-field */
2115 1.506 rillig error(112);
2116 1.506 rillig return false;
2117 1.506 rillig }
2118 1.506 rillig } else if (t != STRUCT && t != UNION) {
2119 1.506 rillig /* unacceptable operand of '%s' */
2120 1.560 rillig error(111, op_name(op));
2121 1.506 rillig return false;
2122 1.506 rillig }
2123 1.506 rillig if (tn->tn_op == NAME && tn->tn_sym->s_register) {
2124 1.506 rillig /* cannot take address of register '%s' */
2125 1.506 rillig error(113, tn->tn_sym->s_name);
2126 1.506 rillig return false;
2127 1.506 rillig }
2128 1.506 rillig return true;
2129 1.497 rillig }
2130 1.497 rillig
2131 1.506 rillig static bool
2132 1.506 rillig typeok_indir(const type_t *tp, tspec_t t)
2133 1.497 rillig {
2134 1.497 rillig
2135 1.506 rillig if (t != PTR) {
2136 1.506 rillig /* cannot dereference non-pointer type '%s' */
2137 1.506 rillig error(96, type_name(tp));
2138 1.506 rillig return false;
2139 1.506 rillig }
2140 1.506 rillig return true;
2141 1.497 rillig }
2142 1.497 rillig
2143 1.1 cgd static void
2144 1.506 rillig warn_incompatible_types(op_t op,
2145 1.506 rillig const type_t *ltp, tspec_t lt,
2146 1.506 rillig const type_t *rtp, tspec_t rt)
2147 1.1 cgd {
2148 1.560 rillig bool binary = modtab[op].m_binary;
2149 1.1 cgd
2150 1.560 rillig if (lt == VOID || (binary && rt == VOID)) {
2151 1.506 rillig /* void type illegal in expression */
2152 1.506 rillig error(109);
2153 1.506 rillig } else if (op == ASSIGN) {
2154 1.506 rillig /* cannot assign to '%s' from '%s' */
2155 1.506 rillig error(171, type_name(ltp), type_name(rtp));
2156 1.560 rillig } else if (binary) {
2157 1.506 rillig /* operands of '%s' have incompatible types '%s' and '%s' */
2158 1.560 rillig error(107, op_name(op), type_name(ltp), type_name(rtp));
2159 1.506 rillig } else {
2160 1.524 rillig lint_assert(rt == NO_TSPEC);
2161 1.506 rillig /* operand of '%s' has invalid type '%s' */
2162 1.560 rillig error(108, op_name(op), type_name(ltp));
2163 1.506 rillig }
2164 1.1 cgd }
2165 1.1 cgd
2166 1.506 rillig static bool
2167 1.506 rillig typeok_plus(op_t op,
2168 1.506 rillig const type_t *ltp, tspec_t lt,
2169 1.506 rillig const type_t *rtp, tspec_t rt)
2170 1.471 rillig {
2171 1.506 rillig /* operands have scalar types (checked in typeok) */
2172 1.506 rillig if ((lt == PTR && !is_integer(rt)) || (rt == PTR && !is_integer(lt))) {
2173 1.506 rillig warn_incompatible_types(op, ltp, lt, rtp, rt);
2174 1.506 rillig return false;
2175 1.506 rillig }
2176 1.506 rillig return true;
2177 1.471 rillig }
2178 1.471 rillig
2179 1.506 rillig static bool
2180 1.506 rillig typeok_minus(op_t op,
2181 1.506 rillig const type_t *ltp, tspec_t lt,
2182 1.506 rillig const type_t *rtp, tspec_t rt)
2183 1.1 cgd {
2184 1.506 rillig /* operands have scalar types (checked in typeok) */
2185 1.506 rillig if ((lt == PTR && rt != PTR && !is_integer(rt)) ||
2186 1.506 rillig (lt != PTR && rt == PTR)) {
2187 1.506 rillig warn_incompatible_types(op, ltp, lt, rtp, rt);
2188 1.506 rillig return false;
2189 1.506 rillig }
2190 1.509 rillig if (lt == PTR && rt == PTR &&
2191 1.509 rillig !types_compatible(ltp->t_subt, rtp->t_subt, true, false, NULL)) {
2192 1.509 rillig /* illegal pointer subtraction */
2193 1.509 rillig error(116);
2194 1.1 cgd }
2195 1.506 rillig return true;
2196 1.1 cgd }
2197 1.1 cgd
2198 1.506 rillig static void
2199 1.560 rillig typeok_shr(op_t op,
2200 1.506 rillig const tnode_t *ln, tspec_t lt,
2201 1.506 rillig const tnode_t *rn, tspec_t rt)
2202 1.344 rillig {
2203 1.536 rillig tspec_t olt = before_conversion(ln)->tn_type->t_tspec;
2204 1.536 rillig tspec_t ort = before_conversion(rn)->tn_type->t_tspec;
2205 1.367 rillig
2206 1.506 rillig /* operands have integer types (checked in typeok) */
2207 1.506 rillig if (pflag && !is_uinteger(olt)) {
2208 1.506 rillig integer_constraints lc = ic_expr(ln);
2209 1.506 rillig if (!ic_maybe_signed(ln->tn_type, &lc))
2210 1.506 rillig return;
2211 1.367 rillig
2212 1.506 rillig if (ln->tn_op != CON) {
2213 1.506 rillig /* bitwise '%s' on signed value possibly nonportable */
2214 1.560 rillig warning(117, op_name(op));
2215 1.544 rillig } else if (ln->tn_val.u.integer < 0) {
2216 1.506 rillig /* bitwise '%s' on signed value nonportable */
2217 1.560 rillig warning(120, op_name(op));
2218 1.506 rillig }
2219 1.506 rillig } else if (allow_trad && allow_c90 &&
2220 1.584 rillig !is_uinteger(olt) && is_uinteger(ort)) {
2221 1.509 rillig /* The left operand would become unsigned in traditional C. */
2222 1.544 rillig if (hflag && (ln->tn_op != CON || ln->tn_val.u.integer < 0)) {
2223 1.578 rillig /* semantics of '%s' change in C90; use ... */
2224 1.560 rillig warning(118, op_name(op));
2225 1.506 rillig }
2226 1.506 rillig } else if (allow_trad && allow_c90 &&
2227 1.584 rillig !is_uinteger(olt) && !is_uinteger(ort) &&
2228 1.550 rillig portable_rank_cmp(lt, rt) < 0) {
2229 1.506 rillig /*
2230 1.564 rillig * In traditional C, the left operand would be extended
2231 1.506 rillig * (possibly sign-extended) and then shifted.
2232 1.383 rillig */
2233 1.544 rillig if (hflag && (ln->tn_op != CON || ln->tn_val.u.integer < 0)) {
2234 1.578 rillig /* semantics of '%s' change in C90; use ... */
2235 1.560 rillig warning(118, op_name(op));
2236 1.506 rillig }
2237 1.364 rillig }
2238 1.506 rillig }
2239 1.364 rillig
2240 1.506 rillig static void
2241 1.560 rillig typeok_shl(op_t op, tspec_t lt, tspec_t rt)
2242 1.506 rillig {
2243 1.344 rillig /*
2244 1.586 rillig * C90 does not perform balancing for shift operations, but traditional
2245 1.586 rillig * C does. If the width of the right operand is greater than the width
2246 1.586 rillig * of the left operand, then in traditional C the left operand would be
2247 1.586 rillig * extended to the width of the right operand. For SHL this may result
2248 1.586 rillig * in different results.
2249 1.344 rillig */
2250 1.550 rillig if (portable_rank_cmp(lt, rt) < 0) {
2251 1.506 rillig /*
2252 1.586 rillig * XXX If both operands are constant, make sure that there is
2253 1.586 rillig * really a difference between C90 and traditional C.
2254 1.506 rillig */
2255 1.549 rillig if (hflag && allow_trad && allow_c90)
2256 1.578 rillig /* semantics of '%s' change in C90; use ... */
2257 1.560 rillig warning(118, op_name(op));
2258 1.506 rillig }
2259 1.344 rillig }
2260 1.344 rillig
2261 1.1 cgd static void
2262 1.506 rillig typeok_shift(const type_t *ltp, tspec_t lt, const tnode_t *rn, tspec_t rt)
2263 1.1 cgd {
2264 1.506 rillig if (rn->tn_op != CON)
2265 1.1 cgd return;
2266 1.1 cgd
2267 1.544 rillig if (!is_uinteger(rt) && rn->tn_val.u.integer < 0) {
2268 1.506 rillig /* negative shift */
2269 1.506 rillig warning(121);
2270 1.546 rillig } else if ((uint64_t)rn->tn_val.u.integer == size_in_bits(lt)) {
2271 1.506 rillig /* shift amount %u equals bit-size of '%s' */
2272 1.544 rillig warning(267, (unsigned)rn->tn_val.u.integer, type_name(ltp));
2273 1.546 rillig } else if ((uint64_t)rn->tn_val.u.integer > size_in_bits(lt)) {
2274 1.506 rillig /* shift amount %llu is greater than bit-size %llu of '%s' */
2275 1.544 rillig warning(122, (unsigned long long)rn->tn_val.u.integer,
2276 1.506 rillig (unsigned long long)size_in_bits(lt),
2277 1.506 rillig tspec_name(lt));
2278 1.364 rillig }
2279 1.1 cgd }
2280 1.1 cgd
2281 1.434 rillig static bool
2282 1.506 rillig is_typeok_eq(const tnode_t *ln, tspec_t lt, const tnode_t *rn, tspec_t rt)
2283 1.434 rillig {
2284 1.506 rillig if (lt == PTR && is_null_pointer(rn))
2285 1.506 rillig return true;
2286 1.506 rillig if (rt == PTR && is_null_pointer(ln))
2287 1.444 rillig return true;
2288 1.434 rillig return false;
2289 1.434 rillig }
2290 1.434 rillig
2291 1.1 cgd static void
2292 1.560 rillig warn_incompatible_pointers(op_t op, const type_t *ltp, const type_t *rtp)
2293 1.1 cgd {
2294 1.506 rillig lint_assert(ltp->t_tspec == PTR);
2295 1.506 rillig lint_assert(rtp->t_tspec == PTR);
2296 1.115 rillig
2297 1.509 rillig tspec_t lt = ltp->t_subt->t_tspec;
2298 1.509 rillig tspec_t rt = rtp->t_subt->t_tspec;
2299 1.1 cgd
2300 1.506 rillig if (is_struct_or_union(lt) && is_struct_or_union(rt)) {
2301 1.560 rillig if (op == RETURN) {
2302 1.506 rillig /* illegal structure pointer combination */
2303 1.506 rillig warning(244);
2304 1.426 rillig } else {
2305 1.506 rillig /* incompatible structure pointers: '%s' '%s' '%s' */
2306 1.560 rillig warning(245, type_name(ltp),
2307 1.560 rillig op_name(op), type_name(rtp));
2308 1.1 cgd }
2309 1.506 rillig } else {
2310 1.560 rillig if (op == RETURN) {
2311 1.506 rillig /* illegal combination of '%s' and '%s' */
2312 1.506 rillig warning(184, type_name(ltp), type_name(rtp));
2313 1.425 rillig } else {
2314 1.506 rillig /* illegal combination of '%s' and '%s', op '%s' */
2315 1.506 rillig warning(124,
2316 1.560 rillig type_name(ltp), type_name(rtp), op_name(op));
2317 1.20 lukem }
2318 1.1 cgd }
2319 1.1 cgd }
2320 1.1 cgd
2321 1.1 cgd static void
2322 1.506 rillig check_pointer_comparison(op_t op, const tnode_t *ln, const tnode_t *rn)
2323 1.1 cgd {
2324 1.509 rillig type_t *ltp = ln->tn_type, *rtp = rn->tn_type;
2325 1.509 rillig tspec_t lst = ltp->t_subt->t_tspec, rst = rtp->t_subt->t_tspec;
2326 1.20 lukem
2327 1.506 rillig if (lst == VOID || rst == VOID) {
2328 1.506 rillig /* TODO: C99 behaves like C90 here. */
2329 1.589 rillig if (!allow_trad && !allow_c99 &&
2330 1.506 rillig (lst == FUNC || rst == FUNC)) {
2331 1.509 rillig /* (void *)0 is already handled in typeok() */
2332 1.509 rillig const char *lsts, *rsts;
2333 1.506 rillig *(lst == FUNC ? &lsts : &rsts) = "function pointer";
2334 1.506 rillig *(lst == VOID ? &lsts : &rsts) = "'void *'";
2335 1.578 rillig /* C90 or later forbid comparison of %s with %s */
2336 1.506 rillig warning(274, lsts, rsts);
2337 1.506 rillig }
2338 1.1 cgd return;
2339 1.506 rillig }
2340 1.506 rillig
2341 1.506 rillig if (!types_compatible(ltp->t_subt, rtp->t_subt, true, false, NULL)) {
2342 1.560 rillig warn_incompatible_pointers(op, ltp, rtp);
2343 1.1 cgd return;
2344 1.506 rillig }
2345 1.1 cgd
2346 1.506 rillig if (lst == FUNC && rst == FUNC) {
2347 1.506 rillig /* TODO: C99 behaves like C90 here, see C99 6.5.8p2. */
2348 1.589 rillig if (!allow_trad && !allow_c99 && op != EQ && op != NE)
2349 1.578 rillig /* pointers to functions can only be compared ... */
2350 1.506 rillig warning(125);
2351 1.1 cgd }
2352 1.1 cgd }
2353 1.1 cgd
2354 1.247 rillig static bool
2355 1.506 rillig typeok_compare(op_t op,
2356 1.506 rillig const tnode_t *ln, const type_t *ltp, tspec_t lt,
2357 1.506 rillig const tnode_t *rn, const type_t *rtp, tspec_t rt)
2358 1.462 rillig {
2359 1.506 rillig if (lt == PTR && rt == PTR) {
2360 1.506 rillig check_pointer_comparison(op, ln, rn);
2361 1.506 rillig return true;
2362 1.506 rillig }
2363 1.506 rillig
2364 1.506 rillig if (lt != PTR && rt != PTR)
2365 1.506 rillig return true;
2366 1.506 rillig
2367 1.506 rillig if (!is_integer(lt) && !is_integer(rt)) {
2368 1.506 rillig warn_incompatible_types(op, ltp, lt, rtp, rt);
2369 1.506 rillig return false;
2370 1.506 rillig }
2371 1.462 rillig
2372 1.509 rillig const char *lx = lt == PTR ? "pointer" : "integer";
2373 1.509 rillig const char *rx = rt == PTR ? "pointer" : "integer";
2374 1.506 rillig /* illegal combination of %s '%s' and %s '%s', op '%s' */
2375 1.506 rillig warning(123, lx, type_name(ltp), rx, type_name(rtp), op_name(op));
2376 1.506 rillig return true;
2377 1.462 rillig }
2378 1.462 rillig
2379 1.462 rillig static bool
2380 1.506 rillig typeok_quest(tspec_t lt, const tnode_t *rn)
2381 1.506 rillig {
2382 1.506 rillig if (!is_scalar(lt)) {
2383 1.557 rillig /* first operand of '?' must have scalar type */
2384 1.506 rillig error(170);
2385 1.506 rillig return false;
2386 1.506 rillig }
2387 1.506 rillig lint_assert(before_conversion(rn)->tn_op == COLON);
2388 1.506 rillig return true;
2389 1.506 rillig }
2390 1.506 rillig
2391 1.506 rillig static void
2392 1.560 rillig typeok_colon_pointer(const type_t *ltp, const type_t *rtp)
2393 1.461 rillig {
2394 1.506 rillig type_t *lstp = ltp->t_subt;
2395 1.506 rillig type_t *rstp = rtp->t_subt;
2396 1.506 rillig tspec_t lst = lstp->t_tspec;
2397 1.506 rillig tspec_t rst = rstp->t_tspec;
2398 1.506 rillig
2399 1.506 rillig if ((lst == VOID && rst == FUNC) || (lst == FUNC && rst == VOID)) {
2400 1.506 rillig /* (void *)0 is handled in typeok_colon */
2401 1.506 rillig /* TODO: C99 behaves like C90 here. */
2402 1.506 rillig if (!allow_trad && !allow_c99)
2403 1.578 rillig /* conversion of %s to %s requires a cast, op %s */
2404 1.506 rillig warning(305, "function pointer", "'void *'",
2405 1.560 rillig op_name(COLON));
2406 1.506 rillig return;
2407 1.506 rillig }
2408 1.461 rillig
2409 1.506 rillig if (pointer_types_are_compatible(lstp, rstp, true))
2410 1.506 rillig return;
2411 1.506 rillig if (!types_compatible(lstp, rstp, true, false, NULL))
2412 1.560 rillig warn_incompatible_pointers(COLON, ltp, rtp);
2413 1.461 rillig }
2414 1.461 rillig
2415 1.461 rillig static bool
2416 1.560 rillig typeok_colon(const tnode_t *ln, const type_t *ltp, tspec_t lt,
2417 1.506 rillig const tnode_t *rn, const type_t *rtp, tspec_t rt)
2418 1.247 rillig {
2419 1.462 rillig
2420 1.506 rillig if (is_arithmetic(lt) && is_arithmetic(rt))
2421 1.506 rillig return true;
2422 1.506 rillig if (lt == BOOL && rt == BOOL)
2423 1.506 rillig return true;
2424 1.463 rillig
2425 1.517 rillig if (lt == STRUCT && rt == STRUCT && ltp->t_sou == rtp->t_sou)
2426 1.506 rillig return true;
2427 1.517 rillig if (lt == UNION && rt == UNION && ltp->t_sou == rtp->t_sou)
2428 1.506 rillig return true;
2429 1.272 rillig
2430 1.506 rillig if (lt == PTR && is_null_pointer(rn))
2431 1.506 rillig return true;
2432 1.506 rillig if (rt == PTR && is_null_pointer(ln))
2433 1.506 rillig return true;
2434 1.274 rillig
2435 1.506 rillig if ((lt == PTR && is_integer(rt)) || (is_integer(lt) && rt == PTR)) {
2436 1.506 rillig const char *lx = lt == PTR ? "pointer" : "integer";
2437 1.506 rillig const char *rx = rt == PTR ? "pointer" : "integer";
2438 1.506 rillig /* illegal combination of %s '%s' and %s '%s', op '%s' */
2439 1.506 rillig warning(123, lx, type_name(ltp),
2440 1.560 rillig rx, type_name(rtp), op_name(COLON));
2441 1.506 rillig return true;
2442 1.506 rillig }
2443 1.249 rillig
2444 1.506 rillig if (lt == VOID || rt == VOID) {
2445 1.506 rillig if (lt != VOID || rt != VOID)
2446 1.506 rillig /* incompatible types '%s' and '%s' in conditional */
2447 1.506 rillig warning(126, type_name(ltp), type_name(rtp));
2448 1.506 rillig return true;
2449 1.461 rillig }
2450 1.461 rillig
2451 1.506 rillig if (lt == PTR && rt == PTR) {
2452 1.560 rillig typeok_colon_pointer(ltp, rtp);
2453 1.460 rillig return true;
2454 1.506 rillig }
2455 1.460 rillig
2456 1.506 rillig /* incompatible types '%s' and '%s' in conditional */
2457 1.506 rillig error(126, type_name(ltp), type_name(rtp));
2458 1.506 rillig return false;
2459 1.247 rillig }
2460 1.247 rillig
2461 1.506 rillig static bool
2462 1.506 rillig has_constant_member(const type_t *tp)
2463 1.1 cgd {
2464 1.506 rillig lint_assert(is_struct_or_union(tp->t_tspec));
2465 1.506 rillig
2466 1.517 rillig for (sym_t *m = tp->t_sou->sou_first_member;
2467 1.584 rillig m != NULL; m = m->s_next) {
2468 1.506 rillig const type_t *mtp = m->s_type;
2469 1.506 rillig if (mtp->t_const)
2470 1.506 rillig return true;
2471 1.506 rillig if (is_struct_or_union(mtp->t_tspec) &&
2472 1.506 rillig has_constant_member(mtp))
2473 1.506 rillig return true;
2474 1.506 rillig }
2475 1.506 rillig return false;
2476 1.506 rillig }
2477 1.1 cgd
2478 1.506 rillig static bool
2479 1.506 rillig typeok_assign(op_t op, const tnode_t *ln, const type_t *ltp, tspec_t lt)
2480 1.506 rillig {
2481 1.506 rillig if (op == RETURN || op == INIT || op == FARG)
2482 1.506 rillig return true;
2483 1.248 rillig
2484 1.506 rillig if (!ln->tn_lvalue) {
2485 1.506 rillig if (ln->tn_op == CVT && ln->tn_cast &&
2486 1.506 rillig ln->tn_left->tn_op == LOAD) {
2487 1.506 rillig /* a cast does not yield an lvalue */
2488 1.506 rillig error(163);
2489 1.1 cgd }
2490 1.506 rillig /* %soperand of '%s' must be lvalue */
2491 1.506 rillig error(114, "left ", op_name(op));
2492 1.506 rillig return false;
2493 1.536 rillig } else if (ltp->t_const
2494 1.536 rillig || (is_struct_or_union(lt) && has_constant_member(ltp))) {
2495 1.506 rillig if (allow_c90)
2496 1.506 rillig /* %soperand of '%s' must be modifiable lvalue */
2497 1.506 rillig warning(115, "left ", op_name(op));
2498 1.1 cgd }
2499 1.506 rillig return true;
2500 1.506 rillig }
2501 1.20 lukem
2502 1.506 rillig static bool
2503 1.506 rillig typeok_scalar(op_t op, const mod_t *mp,
2504 1.506 rillig const type_t *ltp, tspec_t lt,
2505 1.506 rillig const type_t *rtp, tspec_t rt)
2506 1.506 rillig {
2507 1.506 rillig if (mp->m_takes_bool && lt == BOOL && rt == BOOL)
2508 1.506 rillig return true;
2509 1.506 rillig if (mp->m_requires_integer) {
2510 1.506 rillig if (!is_integer(lt) || (mp->m_binary && !is_integer(rt))) {
2511 1.506 rillig warn_incompatible_types(op, ltp, lt, rtp, rt);
2512 1.506 rillig return false;
2513 1.506 rillig }
2514 1.506 rillig } else if (mp->m_requires_integer_or_complex) {
2515 1.506 rillig if ((!is_integer(lt) && !is_complex(lt)) ||
2516 1.506 rillig (mp->m_binary && (!is_integer(rt) && !is_complex(rt)))) {
2517 1.506 rillig warn_incompatible_types(op, ltp, lt, rtp, rt);
2518 1.506 rillig return false;
2519 1.506 rillig }
2520 1.506 rillig } else if (mp->m_requires_scalar) {
2521 1.506 rillig if (!is_scalar(lt) || (mp->m_binary && !is_scalar(rt))) {
2522 1.506 rillig warn_incompatible_types(op, ltp, lt, rtp, rt);
2523 1.506 rillig return false;
2524 1.506 rillig }
2525 1.506 rillig } else if (mp->m_requires_arith) {
2526 1.506 rillig if (!is_arithmetic(lt) ||
2527 1.506 rillig (mp->m_binary && !is_arithmetic(rt))) {
2528 1.506 rillig warn_incompatible_types(op, ltp, lt, rtp, rt);
2529 1.506 rillig return false;
2530 1.506 rillig }
2531 1.1 cgd }
2532 1.506 rillig return true;
2533 1.1 cgd }
2534 1.1 cgd
2535 1.282 rillig static void
2536 1.506 rillig check_assign_void_pointer(op_t op, int arg,
2537 1.506 rillig tspec_t lt, tspec_t lst,
2538 1.506 rillig tspec_t rt, tspec_t rst)
2539 1.282 rillig {
2540 1.506 rillig
2541 1.506 rillig if (!(lt == PTR && rt == PTR && (lst == VOID || rst == VOID)))
2542 1.506 rillig return;
2543 1.506 rillig /* two pointers, at least one pointer to void */
2544 1.506 rillig
2545 1.506 rillig /* TODO: C99 behaves like C90 here. */
2546 1.589 rillig if (!(!allow_trad && !allow_c99 && (lst == FUNC || rst == FUNC)))
2547 1.506 rillig return;
2548 1.506 rillig /* comb. of ptr to func and ptr to void */
2549 1.506 rillig
2550 1.509 rillig const char *lts, *rts;
2551 1.506 rillig *(lst == FUNC ? <s : &rts) = "function pointer";
2552 1.506 rillig *(lst == VOID ? <s : &rts) = "'void *'";
2553 1.282 rillig
2554 1.506 rillig switch (op) {
2555 1.506 rillig case INIT:
2556 1.506 rillig case RETURN:
2557 1.578 rillig /* conversion of %s to %s requires a cast */
2558 1.506 rillig warning(303, rts, lts);
2559 1.506 rillig break;
2560 1.506 rillig case FARG:
2561 1.578 rillig /* conversion of %s to %s requires a cast, arg #%d */
2562 1.506 rillig warning(304, rts, lts, arg);
2563 1.506 rillig break;
2564 1.282 rillig default:
2565 1.578 rillig /* conversion of %s to %s requires a cast, op %s */
2566 1.506 rillig warning(305, rts, lts, op_name(op));
2567 1.506 rillig break;
2568 1.282 rillig }
2569 1.282 rillig }
2570 1.282 rillig
2571 1.286 rillig static bool
2572 1.506 rillig is_direct_function_call(const tnode_t *tn, const char **out_name)
2573 1.286 rillig {
2574 1.506 rillig
2575 1.506 rillig if (!(tn->tn_op == CALL &&
2576 1.584 rillig tn->tn_left->tn_op == ADDR &&
2577 1.584 rillig tn->tn_left->tn_left->tn_op == NAME))
2578 1.286 rillig return false;
2579 1.506 rillig
2580 1.506 rillig *out_name = tn->tn_left->tn_left->tn_sym->s_name;
2581 1.286 rillig return true;
2582 1.286 rillig }
2583 1.286 rillig
2584 1.506 rillig static bool
2585 1.506 rillig is_unconst_function(const char *name)
2586 1.285 rillig {
2587 1.506 rillig
2588 1.506 rillig return strcmp(name, "memchr") == 0 ||
2589 1.584 rillig strcmp(name, "strchr") == 0 ||
2590 1.584 rillig strcmp(name, "strpbrk") == 0 ||
2591 1.584 rillig strcmp(name, "strrchr") == 0 ||
2592 1.584 rillig strcmp(name, "strstr") == 0;
2593 1.285 rillig }
2594 1.285 rillig
2595 1.506 rillig static bool
2596 1.506 rillig is_const_char_pointer(const tnode_t *tn)
2597 1.285 rillig {
2598 1.506 rillig /*
2599 1.506 rillig * For traditional reasons, C99 6.4.5p5 defines that string literals
2600 1.586 rillig * have type 'char[]'. They are often implicitly converted to 'char
2601 1.586 rillig * *', for example when they are passed as function arguments.
2602 1.506 rillig *
2603 1.506 rillig * C99 6.4.5p6 further defines that modifying a string that is
2604 1.506 rillig * constructed from a string literal invokes undefined behavior.
2605 1.506 rillig *
2606 1.506 rillig * Out of these reasons, string literals are treated as 'effectively
2607 1.506 rillig * const' here.
2608 1.506 rillig */
2609 1.506 rillig if (tn->tn_op == CVT &&
2610 1.506 rillig tn->tn_left->tn_op == ADDR &&
2611 1.506 rillig tn->tn_left->tn_left->tn_op == STRING)
2612 1.506 rillig return true;
2613 1.506 rillig
2614 1.509 rillig const type_t *tp = before_conversion(tn)->tn_type;
2615 1.506 rillig return tp->t_tspec == PTR &&
2616 1.584 rillig tp->t_subt->t_tspec == CHAR &&
2617 1.584 rillig tp->t_subt->t_const;
2618 1.285 rillig }
2619 1.285 rillig
2620 1.506 rillig static bool
2621 1.506 rillig is_first_arg_const_char_pointer(const tnode_t *tn)
2622 1.285 rillig {
2623 1.581 rillig lint_assert(has_operands(tn));
2624 1.509 rillig const tnode_t *an = tn->tn_right;
2625 1.506 rillig if (an == NULL)
2626 1.506 rillig return false;
2627 1.506 rillig
2628 1.581 rillig while (tn_ck_right(an) != NULL)
2629 1.506 rillig an = an->tn_right;
2630 1.506 rillig return is_const_char_pointer(an->tn_left);
2631 1.285 rillig }
2632 1.285 rillig
2633 1.506 rillig static bool
2634 1.506 rillig is_const_pointer(const tnode_t *tn)
2635 1.285 rillig {
2636 1.509 rillig const type_t *tp = before_conversion(tn)->tn_type;
2637 1.506 rillig return tp->t_tspec == PTR && tp->t_subt->t_const;
2638 1.285 rillig }
2639 1.285 rillig
2640 1.506 rillig static bool
2641 1.506 rillig is_second_arg_const_pointer(const tnode_t *tn)
2642 1.285 rillig {
2643 1.581 rillig const tnode_t *an = tn_ck_right(tn);
2644 1.581 rillig if (an == NULL || tn_ck_right(an) == NULL)
2645 1.506 rillig return false;
2646 1.506 rillig
2647 1.581 rillig while (tn_ck_right(an->tn_right) != NULL)
2648 1.506 rillig an = an->tn_right;
2649 1.506 rillig return is_const_pointer(an->tn_left);
2650 1.285 rillig }
2651 1.285 rillig
2652 1.283 rillig static void
2653 1.506 rillig check_unconst_function(const type_t *lstp, const tnode_t *rn)
2654 1.283 rillig {
2655 1.506 rillig const char *function_name;
2656 1.506 rillig
2657 1.506 rillig if (lstp->t_tspec == CHAR && !lstp->t_const &&
2658 1.506 rillig is_direct_function_call(rn, &function_name) &&
2659 1.506 rillig is_unconst_function(function_name) &&
2660 1.506 rillig is_first_arg_const_char_pointer(rn)) {
2661 1.506 rillig /* call to '%s' effectively discards 'const' from argument */
2662 1.506 rillig warning(346, function_name);
2663 1.506 rillig }
2664 1.283 rillig
2665 1.506 rillig if (!lstp->t_const &&
2666 1.506 rillig is_direct_function_call(rn, &function_name) &&
2667 1.506 rillig strcmp(function_name, "bsearch") == 0 &&
2668 1.506 rillig is_second_arg_const_pointer(rn)) {
2669 1.506 rillig /* call to '%s' effectively discards 'const' from argument */
2670 1.506 rillig warning(346, function_name);
2671 1.283 rillig }
2672 1.283 rillig }
2673 1.283 rillig
2674 1.506 rillig static bool
2675 1.506 rillig check_assign_void_pointer_compat(op_t op, int arg,
2676 1.598 rillig const type_t *ltp, tspec_t lt,
2677 1.598 rillig const type_t *lstp, tspec_t lst,
2678 1.598 rillig const tnode_t *rn,
2679 1.598 rillig const type_t *rtp, tspec_t rt,
2680 1.598 rillig const type_t *rstp, tspec_t rst)
2681 1.1 cgd {
2682 1.506 rillig if (!(lt == PTR && rt == PTR && (lst == VOID || rst == VOID ||
2683 1.506 rillig types_compatible(lstp, rstp,
2684 1.506 rillig true, false, NULL))))
2685 1.506 rillig return false;
2686 1.1 cgd
2687 1.506 rillig /* compatible pointer types (qualifiers ignored) */
2688 1.506 rillig if (allow_c90 &&
2689 1.506 rillig ((!lstp->t_const && rstp->t_const) ||
2690 1.506 rillig (!lstp->t_volatile && rstp->t_volatile))) {
2691 1.506 rillig /* left side has not all qualifiers of right */
2692 1.506 rillig switch (op) {
2693 1.506 rillig case INIT:
2694 1.506 rillig case RETURN:
2695 1.506 rillig /* incompatible pointer types to '%s' and '%s' */
2696 1.506 rillig warning(182, type_name(lstp), type_name(rstp));
2697 1.506 rillig break;
2698 1.506 rillig case FARG:
2699 1.506 rillig /* converting '%s' to incompatible '%s' ... */
2700 1.506 rillig warning(153,
2701 1.506 rillig type_name(rtp), type_name(ltp), arg);
2702 1.506 rillig break;
2703 1.506 rillig default:
2704 1.506 rillig /* operands of '%s' have incompatible pointer ... */
2705 1.506 rillig warning(128, op_name(op),
2706 1.506 rillig type_name(lstp), type_name(rstp));
2707 1.506 rillig break;
2708 1.506 rillig }
2709 1.147 rillig }
2710 1.147 rillig
2711 1.506 rillig if (allow_c90)
2712 1.506 rillig check_unconst_function(lstp, rn);
2713 1.1 cgd
2714 1.506 rillig return true;
2715 1.1 cgd }
2716 1.1 cgd
2717 1.506 rillig static bool
2718 1.506 rillig check_assign_pointer_integer(op_t op, int arg,
2719 1.598 rillig const type_t *ltp, tspec_t lt,
2720 1.598 rillig const type_t *rtp, tspec_t rt)
2721 1.1 cgd {
2722 1.506 rillig
2723 1.506 rillig if (!((lt == PTR && is_integer(rt)) || (is_integer(lt) && rt == PTR)))
2724 1.506 rillig return false;
2725 1.1 cgd
2726 1.536 rillig const char *lx = lt == PTR ? "pointer" : "integer";
2727 1.536 rillig const char *rx = rt == PTR ? "pointer" : "integer";
2728 1.1 cgd
2729 1.506 rillig switch (op) {
2730 1.506 rillig case INIT:
2731 1.506 rillig case RETURN:
2732 1.506 rillig /* illegal combination of %s '%s' and %s '%s' */
2733 1.506 rillig warning(183, lx, type_name(ltp), rx, type_name(rtp));
2734 1.506 rillig break;
2735 1.506 rillig case FARG:
2736 1.506 rillig /* illegal combination of %s '%s' and %s '%s', arg #%d */
2737 1.506 rillig warning(154,
2738 1.506 rillig lx, type_name(ltp), rx, type_name(rtp), arg);
2739 1.506 rillig break;
2740 1.506 rillig default:
2741 1.506 rillig /* illegal combination of %s '%s' and %s '%s', op '%s' */
2742 1.506 rillig warning(123,
2743 1.506 rillig lx, type_name(ltp), rx, type_name(rtp), op_name(op));
2744 1.506 rillig break;
2745 1.1 cgd }
2746 1.506 rillig return true;
2747 1.1 cgd }
2748 1.1 cgd
2749 1.506 rillig static bool
2750 1.506 rillig check_assign_pointer(op_t op, int arg,
2751 1.506 rillig const type_t *ltp, tspec_t lt,
2752 1.506 rillig const type_t *rtp, tspec_t rt)
2753 1.1 cgd {
2754 1.506 rillig if (!(lt == PTR && rt == PTR))
2755 1.506 rillig return false;
2756 1.1 cgd
2757 1.560 rillig if (op == FARG)
2758 1.506 rillig /* converting '%s' to incompatible '%s' for ... */
2759 1.506 rillig warning(153, type_name(rtp), type_name(ltp), arg);
2760 1.560 rillig else
2761 1.560 rillig warn_incompatible_pointers(op, ltp, rtp);
2762 1.506 rillig return true;
2763 1.506 rillig }
2764 1.1 cgd
2765 1.506 rillig static void
2766 1.506 rillig warn_assign(op_t op, int arg,
2767 1.506 rillig const type_t *ltp, tspec_t lt,
2768 1.506 rillig const type_t *rtp, tspec_t rt)
2769 1.506 rillig {
2770 1.506 rillig switch (op) {
2771 1.506 rillig case INIT:
2772 1.506 rillig /* cannot initialize '%s' from '%s' */
2773 1.506 rillig error(185, type_name(ltp), type_name(rtp));
2774 1.506 rillig break;
2775 1.506 rillig case RETURN:
2776 1.506 rillig /* function has return type '%s' but returns '%s' */
2777 1.506 rillig error(211, type_name(ltp), type_name(rtp));
2778 1.506 rillig break;
2779 1.506 rillig case FARG:
2780 1.506 rillig /* passing '%s' to incompatible '%s', arg #%d */
2781 1.506 rillig warning(155, type_name(rtp), type_name(ltp), arg);
2782 1.506 rillig break;
2783 1.506 rillig default:
2784 1.506 rillig warn_incompatible_types(op, ltp, lt, rtp, rt);
2785 1.506 rillig break;
2786 1.1 cgd }
2787 1.1 cgd }
2788 1.1 cgd
2789 1.506 rillig /*
2790 1.506 rillig * Checks type compatibility for ASSIGN, INIT, FARG and RETURN
2791 1.506 rillig * and prints warnings/errors if necessary.
2792 1.506 rillig * Returns whether the types are (almost) compatible.
2793 1.506 rillig */
2794 1.506 rillig static bool
2795 1.506 rillig check_assign_types_compatible(op_t op, int arg,
2796 1.506 rillig const tnode_t *ln, const tnode_t *rn)
2797 1.1 cgd {
2798 1.526 rillig tspec_t lt, rt, lst = NO_TSPEC, rst = NO_TSPEC;
2799 1.526 rillig type_t *ltp, *rtp, *lstp = NULL, *rstp = NULL;
2800 1.506 rillig
2801 1.506 rillig if ((lt = (ltp = ln->tn_type)->t_tspec) == PTR)
2802 1.506 rillig lst = (lstp = ltp->t_subt)->t_tspec;
2803 1.506 rillig if ((rt = (rtp = rn->tn_type)->t_tspec) == PTR)
2804 1.506 rillig rst = (rstp = rtp->t_subt)->t_tspec;
2805 1.506 rillig
2806 1.506 rillig if (lt == BOOL && is_scalar(rt)) /* C99 6.3.1.2 */
2807 1.506 rillig return true;
2808 1.20 lukem
2809 1.506 rillig if (is_arithmetic(lt) && (is_arithmetic(rt) || rt == BOOL))
2810 1.506 rillig return true;
2811 1.1 cgd
2812 1.506 rillig if (is_struct_or_union(lt) && is_struct_or_union(rt))
2813 1.517 rillig return ltp->t_sou == rtp->t_sou;
2814 1.263 rillig
2815 1.533 rillig if (lt == PTR && is_null_pointer(rn)) {
2816 1.533 rillig if (is_integer(rn->tn_type->t_tspec))
2817 1.533 rillig /* implicit conversion from integer 0 to pointer ... */
2818 1.533 rillig query_message(15, type_name(ltp));
2819 1.506 rillig return true;
2820 1.533 rillig }
2821 1.263 rillig
2822 1.506 rillig check_assign_void_pointer(op, arg, lt, lst, rt, rst);
2823 1.263 rillig
2824 1.506 rillig if (check_assign_void_pointer_compat(op, arg,
2825 1.506 rillig ltp, lt, lstp, lst, rn, rtp, rt, rstp, rst))
2826 1.506 rillig return true;
2827 1.1 cgd
2828 1.506 rillig if (check_assign_pointer_integer(op, arg, ltp, lt, rtp, rt))
2829 1.506 rillig return true;
2830 1.1 cgd
2831 1.506 rillig if (check_assign_pointer(op, arg, ltp, lt, rtp, rt))
2832 1.506 rillig return true;
2833 1.107 rillig
2834 1.506 rillig warn_assign(op, arg, ltp, lt, rtp, rt);
2835 1.149 rillig return false;
2836 1.1 cgd }
2837 1.1 cgd
2838 1.506 rillig static bool
2839 1.506 rillig has_side_effect(const tnode_t *tn) /* NOLINT(misc-no-recursion) */
2840 1.1 cgd {
2841 1.506 rillig op_t op = tn->tn_op;
2842 1.1 cgd
2843 1.506 rillig if (modtab[op].m_has_side_effect)
2844 1.506 rillig return true;
2845 1.1 cgd
2846 1.506 rillig if (op == CVT && tn->tn_type->t_tspec == VOID)
2847 1.506 rillig return has_side_effect(tn->tn_left);
2848 1.1 cgd
2849 1.506 rillig /* XXX: Why not has_side_effect(tn->tn_left) as well? */
2850 1.506 rillig if (op == LOGAND || op == LOGOR)
2851 1.506 rillig return has_side_effect(tn->tn_right);
2852 1.1 cgd
2853 1.506 rillig /* XXX: Why not has_side_effect(tn->tn_left) as well? */
2854 1.506 rillig if (op == QUEST)
2855 1.506 rillig return has_side_effect(tn->tn_right);
2856 1.1 cgd
2857 1.506 rillig if (op == COLON || op == COMMA) {
2858 1.506 rillig return has_side_effect(tn->tn_left) ||
2859 1.584 rillig has_side_effect(tn->tn_right);
2860 1.506 rillig }
2861 1.1 cgd
2862 1.506 rillig return false;
2863 1.506 rillig }
2864 1.1 cgd
2865 1.506 rillig static bool
2866 1.506 rillig is_void_cast(const tnode_t *tn)
2867 1.506 rillig {
2868 1.1 cgd
2869 1.506 rillig return tn->tn_op == CVT && tn->tn_cast &&
2870 1.584 rillig tn->tn_type->t_tspec == VOID;
2871 1.1 cgd }
2872 1.1 cgd
2873 1.506 rillig static bool
2874 1.506 rillig is_local_symbol(const tnode_t *tn)
2875 1.1 cgd {
2876 1.1 cgd
2877 1.506 rillig return tn->tn_op == LOAD &&
2878 1.584 rillig tn->tn_left->tn_op == NAME &&
2879 1.584 rillig tn->tn_left->tn_sym->s_scl == AUTO;
2880 1.506 rillig }
2881 1.1 cgd
2882 1.506 rillig static bool
2883 1.506 rillig is_int_constant_zero(const tnode_t *tn)
2884 1.506 rillig {
2885 1.1 cgd
2886 1.506 rillig return tn->tn_op == CON &&
2887 1.584 rillig tn->tn_type->t_tspec == INT &&
2888 1.584 rillig tn->tn_val.u.integer == 0;
2889 1.1 cgd }
2890 1.1 cgd
2891 1.506 rillig static void
2892 1.506 rillig check_null_effect(const tnode_t *tn)
2893 1.46 christos {
2894 1.46 christos
2895 1.509 rillig if (hflag &&
2896 1.509 rillig !has_side_effect(tn) &&
2897 1.509 rillig !(is_void_cast(tn) && is_local_symbol(tn->tn_left)) &&
2898 1.509 rillig !(is_void_cast(tn) && is_int_constant_zero(tn->tn_left))) {
2899 1.509 rillig /* expression has null effect */
2900 1.509 rillig warning(129);
2901 1.509 rillig }
2902 1.506 rillig }
2903 1.275 rillig
2904 1.506 rillig /*
2905 1.506 rillig * Check the types for specific operators and type combinations.
2906 1.506 rillig *
2907 1.506 rillig * At this point, the operands already conform to the type requirements of
2908 1.506 rillig * the operator, such as being integer, floating or scalar.
2909 1.506 rillig */
2910 1.506 rillig static bool
2911 1.560 rillig typeok_op(op_t op, int arg,
2912 1.506 rillig const tnode_t *ln, const type_t *ltp, tspec_t lt,
2913 1.506 rillig const tnode_t *rn, const type_t *rtp, tspec_t rt)
2914 1.506 rillig {
2915 1.506 rillig switch (op) {
2916 1.506 rillig case ARROW:
2917 1.506 rillig return typeok_arrow(lt);
2918 1.506 rillig case POINT:
2919 1.506 rillig return typeok_point(ln, ltp, lt);
2920 1.506 rillig case INCBEF:
2921 1.506 rillig case DECBEF:
2922 1.506 rillig case INCAFT:
2923 1.506 rillig case DECAFT:
2924 1.506 rillig return typeok_incdec(op, ln, ltp);
2925 1.506 rillig case INDIR:
2926 1.506 rillig return typeok_indir(ltp, lt);
2927 1.506 rillig case ADDR:
2928 1.560 rillig return typeok_address(op, ln, ltp, lt);
2929 1.506 rillig case PLUS:
2930 1.506 rillig return typeok_plus(op, ltp, lt, rtp, rt);
2931 1.506 rillig case MINUS:
2932 1.506 rillig return typeok_minus(op, ltp, lt, rtp, rt);
2933 1.506 rillig case SHL:
2934 1.560 rillig typeok_shl(op, lt, rt);
2935 1.506 rillig goto shift;
2936 1.506 rillig case SHR:
2937 1.560 rillig typeok_shr(op, ln, lt, rn, rt);
2938 1.506 rillig shift:
2939 1.506 rillig typeok_shift(ltp, lt, rn, rt);
2940 1.52 matt break;
2941 1.506 rillig case LT:
2942 1.506 rillig case LE:
2943 1.506 rillig case GT:
2944 1.506 rillig case GE:
2945 1.506 rillig compare:
2946 1.506 rillig return typeok_compare(op, ln, ltp, lt, rn, rtp, rt);
2947 1.506 rillig case EQ:
2948 1.506 rillig case NE:
2949 1.506 rillig if (is_typeok_eq(ln, lt, rn, rt))
2950 1.506 rillig break;
2951 1.506 rillig goto compare;
2952 1.506 rillig case QUEST:
2953 1.506 rillig return typeok_quest(lt, rn);
2954 1.506 rillig case COLON:
2955 1.560 rillig return typeok_colon(ln, ltp, lt, rn, rtp, rt);
2956 1.506 rillig case ASSIGN:
2957 1.506 rillig case INIT:
2958 1.506 rillig case FARG:
2959 1.506 rillig case RETURN:
2960 1.506 rillig if (!check_assign_types_compatible(op, arg, ln, rn))
2961 1.506 rillig return false;
2962 1.506 rillig goto assign;
2963 1.506 rillig case MULASS:
2964 1.506 rillig case DIVASS:
2965 1.506 rillig case MODASS:
2966 1.506 rillig goto assign;
2967 1.506 rillig case ADDASS:
2968 1.506 rillig case SUBASS:
2969 1.506 rillig if ((lt == PTR && !is_integer(rt)) || rt == PTR) {
2970 1.506 rillig warn_incompatible_types(op, ltp, lt, rtp, rt);
2971 1.506 rillig return false;
2972 1.506 rillig }
2973 1.506 rillig goto assign;
2974 1.506 rillig case SHLASS:
2975 1.506 rillig goto assign;
2976 1.506 rillig case SHRASS:
2977 1.506 rillig if (pflag && !is_uinteger(lt) &&
2978 1.506 rillig !(!allow_c90 && is_uinteger(rt))) {
2979 1.506 rillig /* bitwise '%s' on signed value possibly nonportable */
2980 1.560 rillig warning(117, op_name(op));
2981 1.506 rillig }
2982 1.506 rillig goto assign;
2983 1.506 rillig case ANDASS:
2984 1.506 rillig case XORASS:
2985 1.506 rillig case ORASS:
2986 1.506 rillig assign:
2987 1.506 rillig return typeok_assign(op, ln, ltp, lt);
2988 1.506 rillig case COMMA:
2989 1.506 rillig if (!modtab[ln->tn_op].m_has_side_effect)
2990 1.506 rillig check_null_effect(ln);
2991 1.46 christos break;
2992 1.506 rillig default:
2993 1.46 christos break;
2994 1.46 christos }
2995 1.506 rillig return true;
2996 1.46 christos }
2997 1.342 rillig
2998 1.506 rillig static void
2999 1.506 rillig check_bad_enum_operation(op_t op, const tnode_t *ln, const tnode_t *rn)
3000 1.1 cgd {
3001 1.20 lukem
3002 1.506 rillig if (!eflag)
3003 1.506 rillig return;
3004 1.1 cgd
3005 1.536 rillig /* Allow enum in array indices. */
3006 1.506 rillig if (op == PLUS &&
3007 1.506 rillig ((ln->tn_type->t_is_enum && rn->tn_type->t_tspec == PTR) ||
3008 1.506 rillig (rn->tn_type->t_is_enum && ln->tn_type->t_tspec == PTR))) {
3009 1.506 rillig return;
3010 1.1 cgd }
3011 1.20 lukem
3012 1.556 rillig /* dubious operation '%s' on enum */
3013 1.506 rillig warning(241, op_name(op));
3014 1.1 cgd }
3015 1.1 cgd
3016 1.506 rillig static void
3017 1.506 rillig check_enum_type_mismatch(op_t op, int arg, const tnode_t *ln, const tnode_t *rn)
3018 1.1 cgd {
3019 1.509 rillig const mod_t *mp = &modtab[op];
3020 1.1 cgd
3021 1.506 rillig if (ln->tn_type->t_enum != rn->tn_type->t_enum) {
3022 1.506 rillig switch (op) {
3023 1.506 rillig case INIT:
3024 1.506 rillig /* enum type mismatch between '%s' and '%s' in ... */
3025 1.506 rillig warning(210,
3026 1.506 rillig type_name(ln->tn_type), type_name(rn->tn_type));
3027 1.506 rillig break;
3028 1.506 rillig case FARG:
3029 1.506 rillig /* function expects '%s', passing '%s' for arg #%d */
3030 1.506 rillig warning(156,
3031 1.506 rillig type_name(ln->tn_type), type_name(rn->tn_type),
3032 1.506 rillig arg);
3033 1.506 rillig break;
3034 1.506 rillig case RETURN:
3035 1.506 rillig /* function has return type '%s' but returns '%s' */
3036 1.506 rillig warning(211,
3037 1.506 rillig type_name(ln->tn_type), type_name(rn->tn_type));
3038 1.506 rillig break;
3039 1.506 rillig default:
3040 1.506 rillig /* enum type mismatch: '%s' '%s' '%s' */
3041 1.560 rillig warning(130, type_name(ln->tn_type), op_name(op),
3042 1.506 rillig type_name(rn->tn_type));
3043 1.506 rillig break;
3044 1.506 rillig }
3045 1.558 rillig } else if (Pflag && eflag && mp->m_comparison && op != EQ && op != NE)
3046 1.558 rillig /* operator '%s' assumes that '%s' is ordered */
3047 1.560 rillig warning(243, op_name(op), type_name(ln->tn_type));
3048 1.1 cgd }
3049 1.1 cgd
3050 1.506 rillig static void
3051 1.506 rillig check_enum_int_mismatch(op_t op, int arg, const tnode_t *ln, const tnode_t *rn)
3052 1.1 cgd {
3053 1.1 cgd
3054 1.506 rillig if (!eflag)
3055 1.506 rillig return;
3056 1.1 cgd
3057 1.506 rillig switch (op) {
3058 1.506 rillig case INIT:
3059 1.506 rillig /*
3060 1.506 rillig * Initialization with 0 is allowed. Otherwise, all implicit
3061 1.506 rillig * initializations would need to be warned upon as well.
3062 1.506 rillig */
3063 1.506 rillig if (!rn->tn_type->t_is_enum && rn->tn_op == CON &&
3064 1.506 rillig is_integer(rn->tn_type->t_tspec) &&
3065 1.544 rillig rn->tn_val.u.integer == 0) {
3066 1.506 rillig return;
3067 1.1 cgd }
3068 1.506 rillig /* initialization of '%s' with '%s' */
3069 1.506 rillig warning(277, type_name(ln->tn_type), type_name(rn->tn_type));
3070 1.506 rillig break;
3071 1.506 rillig case FARG:
3072 1.506 rillig /* combination of '%s' and '%s', arg #%d */
3073 1.506 rillig warning(278,
3074 1.506 rillig type_name(ln->tn_type), type_name(rn->tn_type), arg);
3075 1.506 rillig break;
3076 1.506 rillig case RETURN:
3077 1.506 rillig /* combination of '%s' and '%s' in return */
3078 1.506 rillig warning(279, type_name(ln->tn_type), type_name(rn->tn_type));
3079 1.506 rillig break;
3080 1.506 rillig default:
3081 1.506 rillig /* combination of '%s' and '%s', op '%s' */
3082 1.506 rillig warning(242, type_name(ln->tn_type), type_name(rn->tn_type),
3083 1.506 rillig op_name(op));
3084 1.506 rillig break;
3085 1.1 cgd }
3086 1.1 cgd }
3087 1.1 cgd
3088 1.506 rillig static void
3089 1.506 rillig typeok_enum(op_t op, const mod_t *mp, int arg,
3090 1.506 rillig const tnode_t *ln, const type_t *ltp,
3091 1.506 rillig const tnode_t *rn, const type_t *rtp)
3092 1.473 rillig {
3093 1.506 rillig if (mp->m_bad_on_enum &&
3094 1.506 rillig (ltp->t_is_enum || (mp->m_binary && rtp->t_is_enum))) {
3095 1.506 rillig check_bad_enum_operation(op, ln, rn);
3096 1.506 rillig } else if (mp->m_valid_on_enum &&
3097 1.584 rillig (ltp->t_is_enum && rtp != NULL && rtp->t_is_enum)) {
3098 1.506 rillig check_enum_type_mismatch(op, arg, ln, rn);
3099 1.506 rillig } else if (mp->m_valid_on_enum &&
3100 1.584 rillig (ltp->t_is_enum || (rtp != NULL && rtp->t_is_enum))) {
3101 1.506 rillig check_enum_int_mismatch(op, arg, ln, rn);
3102 1.473 rillig }
3103 1.473 rillig }
3104 1.473 rillig
3105 1.506 rillig /* Perform most type checks. Return whether the types are ok. */
3106 1.506 rillig bool
3107 1.506 rillig typeok(op_t op, int arg, const tnode_t *ln, const tnode_t *rn)
3108 1.1 cgd {
3109 1.1 cgd
3110 1.509 rillig const mod_t *mp = &modtab[op];
3111 1.1 cgd
3112 1.536 rillig type_t *ltp = ln->tn_type;
3113 1.536 rillig tspec_t lt = ltp->t_tspec;
3114 1.1 cgd
3115 1.536 rillig type_t *rtp = mp->m_binary ? rn->tn_type : NULL;
3116 1.536 rillig tspec_t rt = mp->m_binary ? rtp->t_tspec : NO_TSPEC;
3117 1.1 cgd
3118 1.506 rillig if (Tflag && !typeok_scalar_strict_bool(op, mp, arg, ln, rn))
3119 1.506 rillig return false;
3120 1.506 rillig if (!typeok_scalar(op, mp, ltp, lt, rtp, rt))
3121 1.506 rillig return false;
3122 1.1 cgd
3123 1.560 rillig if (!typeok_op(op, arg, ln, ltp, lt, rn, rtp, rt))
3124 1.506 rillig return false;
3125 1.1 cgd
3126 1.506 rillig typeok_enum(op, mp, arg, ln, ltp, rn, rtp);
3127 1.506 rillig return true;
3128 1.506 rillig }
3129 1.471 rillig
3130 1.506 rillig /* In traditional C, keep unsigned and promote FLOAT to DOUBLE. */
3131 1.506 rillig static tspec_t
3132 1.506 rillig promote_trad(tspec_t t)
3133 1.506 rillig {
3134 1.1 cgd
3135 1.506 rillig if (t == UCHAR || t == USHORT)
3136 1.506 rillig return UINT;
3137 1.506 rillig if (t == CHAR || t == SCHAR || t == SHORT)
3138 1.506 rillig return INT;
3139 1.506 rillig if (t == FLOAT)
3140 1.506 rillig return DOUBLE;
3141 1.506 rillig if (t == ENUM)
3142 1.506 rillig return INT;
3143 1.506 rillig return t;
3144 1.1 cgd }
3145 1.1 cgd
3146 1.1 cgd /*
3147 1.506 rillig * C99 6.3.1.1p2 requires for types with lower rank than int that "If an int
3148 1.506 rillig * can represent all the values of the original type, the value is converted
3149 1.506 rillig * to an int; otherwise it is converted to an unsigned int", and that "All
3150 1.506 rillig * other types are unchanged by the integer promotions".
3151 1.1 cgd */
3152 1.506 rillig static tspec_t
3153 1.506 rillig promote_c90(const tnode_t *tn, tspec_t t, bool farg)
3154 1.1 cgd {
3155 1.506 rillig if (tn->tn_type->t_bitfield) {
3156 1.532 rillig unsigned int width = tn->tn_type->t_bit_field_width;
3157 1.532 rillig unsigned int int_width = size_in_bits(INT);
3158 1.532 rillig // XXX: What about _Bool bit-fields, since C99?
3159 1.532 rillig if (width < int_width)
3160 1.506 rillig return INT;
3161 1.532 rillig if (width == int_width)
3162 1.506 rillig return is_uinteger(t) ? UINT : INT;
3163 1.506 rillig return t;
3164 1.506 rillig }
3165 1.1 cgd
3166 1.506 rillig if (t == CHAR || t == SCHAR)
3167 1.506 rillig return INT;
3168 1.506 rillig if (t == UCHAR)
3169 1.506 rillig return size_in_bits(CHAR) < size_in_bits(INT) ? INT : UINT;
3170 1.506 rillig if (t == SHORT)
3171 1.506 rillig return INT;
3172 1.506 rillig if (t == USHORT)
3173 1.506 rillig return size_in_bits(SHORT) < size_in_bits(INT) ? INT : UINT;
3174 1.506 rillig if (t == ENUM)
3175 1.506 rillig return INT;
3176 1.506 rillig if (farg && t == FLOAT)
3177 1.506 rillig return DOUBLE;
3178 1.506 rillig return t;
3179 1.506 rillig }
3180 1.1 cgd
3181 1.506 rillig /*
3182 1.506 rillig * Performs the "integer promotions" (C99 6.3.1.1p2), which convert small
3183 1.506 rillig * integer types to either int or unsigned int.
3184 1.506 rillig *
3185 1.506 rillig * If allow_c90 is unset or the operand is a function argument with no type
3186 1.506 rillig * information (no prototype or variable # of args), converts float to double.
3187 1.506 rillig */
3188 1.506 rillig tnode_t *
3189 1.506 rillig promote(op_t op, bool farg, tnode_t *tn)
3190 1.506 rillig {
3191 1.506 rillig
3192 1.506 rillig tspec_t ot = tn->tn_type->t_tspec;
3193 1.506 rillig if (!is_arithmetic(ot))
3194 1.506 rillig return tn;
3195 1.506 rillig
3196 1.506 rillig tspec_t nt = allow_c90 ? promote_c90(tn, ot, farg) : promote_trad(ot);
3197 1.506 rillig if (nt == ot)
3198 1.506 rillig return tn;
3199 1.506 rillig
3200 1.506 rillig type_t *ntp = expr_dup_type(tn->tn_type);
3201 1.506 rillig ntp->t_tspec = nt;
3202 1.506 rillig /*
3203 1.586 rillig * Keep t_is_enum even though t_tspec gets converted from ENUM to INT,
3204 1.586 rillig * so we are later able to check compatibility of enum types.
3205 1.506 rillig */
3206 1.506 rillig return convert(op, 0, ntp, tn);
3207 1.506 rillig }
3208 1.506 rillig
3209 1.506 rillig static void
3210 1.506 rillig convert_integer_from_floating(op_t op, const type_t *tp, const tnode_t *tn)
3211 1.506 rillig {
3212 1.506 rillig
3213 1.506 rillig if (op == CVT)
3214 1.506 rillig /* cast from floating point '%s' to integer '%s' */
3215 1.506 rillig query_message(2, type_name(tn->tn_type), type_name(tp));
3216 1.506 rillig else
3217 1.506 rillig /* implicit conversion from floating point '%s' to ... */
3218 1.506 rillig query_message(1, type_name(tn->tn_type), type_name(tp));
3219 1.506 rillig }
3220 1.506 rillig
3221 1.506 rillig static bool
3222 1.506 rillig should_warn_about_prototype_conversion(tspec_t nt,
3223 1.506 rillig tspec_t ot, const tnode_t *ptn)
3224 1.506 rillig {
3225 1.506 rillig
3226 1.506 rillig if (nt == ot)
3227 1.506 rillig return false;
3228 1.1 cgd
3229 1.506 rillig if (nt == ENUM && ot == INT)
3230 1.506 rillig return false;
3231 1.1 cgd
3232 1.506 rillig if (is_floating(nt) != is_floating(ot) ||
3233 1.550 rillig portable_rank_cmp(nt, ot) != 0) {
3234 1.506 rillig /* representation and/or width change */
3235 1.506 rillig if (!is_integer(ot))
3236 1.506 rillig return true;
3237 1.506 rillig /*
3238 1.506 rillig * XXX: Investigate whether this rule makes sense; see
3239 1.506 rillig * tests/usr.bin/xlint/lint1/platform_long.c.
3240 1.506 rillig */
3241 1.550 rillig return portable_rank_cmp(ot, INT) > 0;
3242 1.1 cgd }
3243 1.1 cgd
3244 1.506 rillig if (!hflag)
3245 1.506 rillig return false;
3246 1.1 cgd
3247 1.506 rillig /*
3248 1.506 rillig * If the types differ only in sign and the argument has the same
3249 1.506 rillig * representation in both types, print no warning.
3250 1.506 rillig */
3251 1.506 rillig if (ptn->tn_op == CON && is_integer(nt) &&
3252 1.506 rillig signed_type(nt) == signed_type(ot) &&
3253 1.544 rillig !msb(ptn->tn_val.u.integer, ot))
3254 1.506 rillig return false;
3255 1.1 cgd
3256 1.506 rillig return true;
3257 1.1 cgd }
3258 1.1 cgd
3259 1.1 cgd /*
3260 1.506 rillig * Warn if a prototype causes a type conversion that is different from what
3261 1.506 rillig * would happen to the same argument in the absence of a prototype. This
3262 1.506 rillig * check is intended for code that needs to stay compatible with pre-C90 C.
3263 1.506 rillig *
3264 1.506 rillig * Errors/warnings about illegal type combinations are already printed
3265 1.506 rillig * in check_assign_types_compatible().
3266 1.22 perry */
3267 1.506 rillig static void
3268 1.506 rillig check_prototype_conversion(int arg, tspec_t nt, tspec_t ot, type_t *tp,
3269 1.506 rillig tnode_t *tn)
3270 1.506 rillig {
3271 1.506 rillig
3272 1.506 rillig if (!is_arithmetic(nt) || !is_arithmetic(ot))
3273 1.506 rillig return;
3274 1.506 rillig
3275 1.506 rillig /*
3276 1.586 rillig * If the type of the formal parameter is char/short, a warning would
3277 1.586 rillig * be useless, because functions declared the old style can't expect
3278 1.586 rillig * char/short arguments.
3279 1.506 rillig */
3280 1.506 rillig if (nt == CHAR || nt == SCHAR || nt == UCHAR ||
3281 1.506 rillig nt == SHORT || nt == USHORT)
3282 1.506 rillig return;
3283 1.506 rillig
3284 1.509 rillig tnode_t *ptn = promote(NOOP, true, tn);
3285 1.506 rillig ot = ptn->tn_type->t_tspec;
3286 1.506 rillig
3287 1.506 rillig if (should_warn_about_prototype_conversion(nt, ot, ptn)) {
3288 1.555 rillig /* argument %d is converted from '%s' to '%s' ... */
3289 1.506 rillig warning(259, arg, type_name(tn->tn_type), type_name(tp));
3290 1.506 rillig }
3291 1.506 rillig }
3292 1.506 rillig
3293 1.22 perry /*
3294 1.506 rillig * When converting a large integer type to a small integer type, in some
3295 1.506 rillig * cases the value of the actual expression is further restricted than the
3296 1.506 rillig * type bounds, such as in (expr & 0xFF) or (expr % 100) or (expr >> 24).
3297 1.1 cgd */
3298 1.506 rillig static bool
3299 1.506 rillig can_represent(const type_t *tp, const tnode_t *tn)
3300 1.1 cgd {
3301 1.1 cgd
3302 1.506 rillig debug_step("%s: type '%s'", __func__, type_name(tp));
3303 1.506 rillig debug_node(tn);
3304 1.506 rillig
3305 1.506 rillig uint64_t nmask = value_bits(width_in_bits(tp));
3306 1.506 rillig if (!is_uinteger(tp->t_tspec))
3307 1.506 rillig nmask >>= 1;
3308 1.506 rillig
3309 1.506 rillig integer_constraints c = ic_expr(tn);
3310 1.506 rillig if ((~c.bclr & ~nmask) == 0)
3311 1.506 rillig return true;
3312 1.506 rillig
3313 1.521 rillig integer_constraints tpc = ic_any(tp);
3314 1.521 rillig if (is_uinteger(tp->t_tspec)
3315 1.521 rillig ? tpc.umin <= c.umin && tpc.umax >= c.umax
3316 1.521 rillig : tpc.smin <= c.smin && tpc.smax >= c.smax)
3317 1.521 rillig return true;
3318 1.521 rillig
3319 1.506 rillig return false;
3320 1.506 rillig }
3321 1.506 rillig
3322 1.577 rillig static bool
3323 1.577 rillig should_warn_about_integer_conversion(const type_t *ntp, tspec_t nt,
3324 1.577 rillig const tnode_t *otn, tspec_t ot)
3325 1.577 rillig {
3326 1.577 rillig
3327 1.577 rillig // XXX: The portable_rank_cmp aims at portable mode, independent of the
3328 1.577 rillig // current platform, while can_represent acts on the actual type sizes
3329 1.577 rillig // from the current platform. This mix is inconsistent, but anything
3330 1.577 rillig // else would make the exact conditions too complicated to grasp.
3331 1.577 rillig if (aflag > 0 && portable_rank_cmp(nt, ot) < 0) {
3332 1.577 rillig if (ot == LONG || ot == ULONG
3333 1.577 rillig || ot == LLONG || ot == ULLONG
3334 1.577 rillig #ifdef INT128_SIZE
3335 1.577 rillig || ot == INT128 || ot == UINT128
3336 1.577 rillig #endif
3337 1.577 rillig || aflag > 1)
3338 1.577 rillig return !can_represent(ntp, otn);
3339 1.577 rillig }
3340 1.577 rillig return false;
3341 1.577 rillig }
3342 1.577 rillig
3343 1.506 rillig static void
3344 1.506 rillig convert_integer_from_integer(op_t op, int arg, tspec_t nt, tspec_t ot,
3345 1.506 rillig type_t *tp, tnode_t *tn)
3346 1.506 rillig {
3347 1.1 cgd
3348 1.506 rillig if (tn->tn_op == CON)
3349 1.506 rillig return;
3350 1.1 cgd
3351 1.506 rillig if (op == CVT)
3352 1.506 rillig return;
3353 1.1 cgd
3354 1.506 rillig if (Pflag && pflag && aflag > 0 &&
3355 1.550 rillig portable_rank_cmp(nt, ot) > 0 &&
3356 1.506 rillig is_uinteger(nt) != is_uinteger(ot)) {
3357 1.506 rillig if (op == FARG) {
3358 1.506 rillig /* conversion to '%s' may sign-extend ... */
3359 1.506 rillig warning(297, type_name(tp), arg);
3360 1.22 perry } else {
3361 1.506 rillig /* conversion to '%s' may sign-extend ... */
3362 1.506 rillig warning(131, type_name(tp));
3363 1.22 perry }
3364 1.506 rillig }
3365 1.506 rillig
3366 1.550 rillig if (Pflag && portable_rank_cmp(nt, ot) > 0 &&
3367 1.506 rillig (tn->tn_op == PLUS || tn->tn_op == MINUS || tn->tn_op == MULT ||
3368 1.506 rillig tn->tn_op == SHL)) {
3369 1.506 rillig /* suggest cast from '%s' to '%s' on op '%s' to ... */
3370 1.506 rillig warning(324, type_name(gettyp(ot)), type_name(tp),
3371 1.506 rillig op_name(tn->tn_op));
3372 1.506 rillig }
3373 1.506 rillig
3374 1.577 rillig if (should_warn_about_integer_conversion(tp, nt, tn, ot)) {
3375 1.506 rillig if (op == FARG) {
3376 1.506 rillig /* conversion from '%s' to '%s' may lose ... */
3377 1.506 rillig warning(298,
3378 1.506 rillig type_name(tn->tn_type), type_name(tp), arg);
3379 1.1 cgd } else {
3380 1.506 rillig /* conversion from '%s' to '%s' may lose accuracy */
3381 1.506 rillig warning(132,
3382 1.506 rillig type_name(tn->tn_type), type_name(tp));
3383 1.1 cgd }
3384 1.506 rillig }
3385 1.506 rillig
3386 1.551 rillig if (any_query_enabled && is_uinteger(nt) != is_uinteger(ot))
3387 1.506 rillig /* implicit conversion changes sign from '%s' to '%s' */
3388 1.506 rillig query_message(3, type_name(tn->tn_type), type_name(tp));
3389 1.506 rillig }
3390 1.506 rillig
3391 1.506 rillig static void
3392 1.506 rillig convert_integer_from_pointer(op_t op, tspec_t nt, type_t *tp, tnode_t *tn)
3393 1.506 rillig {
3394 1.506 rillig
3395 1.506 rillig if (tn->tn_op == CON)
3396 1.506 rillig return;
3397 1.506 rillig if (op != CVT)
3398 1.514 rillig return; /* We already got an error. */
3399 1.550 rillig if (portable_rank_cmp(nt, PTR) >= 0)
3400 1.506 rillig return;
3401 1.506 rillig
3402 1.506 rillig if (pflag && size_in_bits(nt) >= size_in_bits(PTR)) {
3403 1.506 rillig /* conversion of pointer to '%s' may lose bits */
3404 1.506 rillig warning(134, type_name(tp));
3405 1.506 rillig } else {
3406 1.506 rillig /* conversion of pointer to '%s' loses bits */
3407 1.506 rillig warning(133, type_name(tp));
3408 1.506 rillig }
3409 1.506 rillig }
3410 1.506 rillig
3411 1.506 rillig static bool
3412 1.506 rillig struct_starts_with(const type_t *struct_tp, const type_t *member_tp)
3413 1.506 rillig {
3414 1.506 rillig
3415 1.517 rillig return struct_tp->t_sou->sou_first_member != NULL &&
3416 1.584 rillig types_compatible(struct_tp->t_sou->sou_first_member->s_type,
3417 1.584 rillig member_tp, true, false, NULL);
3418 1.506 rillig }
3419 1.506 rillig
3420 1.506 rillig static bool
3421 1.506 rillig is_byte_array(const type_t *tp)
3422 1.506 rillig {
3423 1.506 rillig
3424 1.506 rillig return tp->t_tspec == ARRAY &&
3425 1.584 rillig (tp->t_subt->t_tspec == CHAR || tp->t_subt->t_tspec == UCHAR);
3426 1.506 rillig }
3427 1.506 rillig
3428 1.506 rillig static bool
3429 1.519 rillig union_contains(const type_t *utp, const type_t *mtp)
3430 1.519 rillig {
3431 1.519 rillig for (const sym_t *mem = utp->t_sou->sou_first_member;
3432 1.584 rillig mem != NULL; mem = mem->s_next) {
3433 1.519 rillig if (types_compatible(mem->s_type, mtp, true, false, NULL))
3434 1.519 rillig return true;
3435 1.519 rillig }
3436 1.519 rillig return false;
3437 1.519 rillig }
3438 1.519 rillig
3439 1.519 rillig static bool
3440 1.506 rillig should_warn_about_pointer_cast(const type_t *nstp, tspec_t nst,
3441 1.506 rillig const type_t *ostp, tspec_t ost)
3442 1.506 rillig {
3443 1.506 rillig
3444 1.506 rillig while (nst == ARRAY)
3445 1.506 rillig nstp = nstp->t_subt, nst = nstp->t_tspec;
3446 1.506 rillig while (ost == ARRAY)
3447 1.506 rillig ostp = ostp->t_subt, ost = ostp->t_tspec;
3448 1.506 rillig
3449 1.506 rillig if (nst == STRUCT && ost == STRUCT &&
3450 1.506 rillig (struct_starts_with(nstp, ostp) ||
3451 1.506 rillig struct_starts_with(ostp, nstp)))
3452 1.506 rillig return false;
3453 1.506 rillig
3454 1.506 rillig if (is_incomplete(nstp) || is_incomplete(ostp))
3455 1.506 rillig return false;
3456 1.506 rillig
3457 1.506 rillig if (nst == CHAR || nst == UCHAR)
3458 1.506 rillig return false; /* for the sake of traditional C code */
3459 1.506 rillig if (ost == CHAR || ost == UCHAR)
3460 1.506 rillig return false; /* for the sake of traditional C code */
3461 1.506 rillig
3462 1.506 rillig /* Allow cast between pointers to sockaddr variants. */
3463 1.506 rillig if (nst == STRUCT && ost == STRUCT) {
3464 1.517 rillig const sym_t *nmem = nstp->t_sou->sou_first_member;
3465 1.517 rillig const sym_t *omem = ostp->t_sou->sou_first_member;
3466 1.506 rillig while (nmem != NULL && omem != NULL &&
3467 1.584 rillig types_compatible(nmem->s_type, omem->s_type,
3468 1.584 rillig true, false, NULL))
3469 1.506 rillig nmem = nmem->s_next, omem = omem->s_next;
3470 1.506 rillig if (nmem != NULL && is_byte_array(nmem->s_type))
3471 1.506 rillig return false;
3472 1.506 rillig if (omem != NULL && is_byte_array(omem->s_type))
3473 1.506 rillig return false;
3474 1.506 rillig if (nmem == NULL && omem == NULL)
3475 1.506 rillig return false;
3476 1.506 rillig }
3477 1.506 rillig
3478 1.516 rillig if (nst == UNION || ost == UNION) {
3479 1.516 rillig const type_t *union_tp = nst == UNION ? nstp : ostp;
3480 1.516 rillig const type_t *other_tp = nst == UNION ? ostp : nstp;
3481 1.519 rillig if (union_contains(union_tp, other_tp))
3482 1.519 rillig return false;
3483 1.516 rillig }
3484 1.516 rillig
3485 1.554 rillig if (is_struct_or_union(nst) && is_struct_or_union(ost))
3486 1.554 rillig return nstp->t_sou != ostp->t_sou;
3487 1.554 rillig
3488 1.554 rillig enum rank_kind rk1 = type_properties(nst)->tt_rank_kind;
3489 1.554 rillig enum rank_kind rk2 = type_properties(ost)->tt_rank_kind;
3490 1.554 rillig if (rk1 != rk2 || rk1 == RK_NONE)
3491 1.506 rillig return true;
3492 1.506 rillig
3493 1.550 rillig return portable_rank_cmp(nst, ost) != 0;
3494 1.506 rillig }
3495 1.506 rillig
3496 1.506 rillig static void
3497 1.506 rillig convert_pointer_from_pointer(type_t *ntp, tnode_t *tn)
3498 1.506 rillig {
3499 1.509 rillig const type_t *nstp = ntp->t_subt;
3500 1.509 rillig const type_t *otp = tn->tn_type;
3501 1.509 rillig const type_t *ostp = otp->t_subt;
3502 1.509 rillig tspec_t nst = nstp->t_tspec;
3503 1.509 rillig tspec_t ost = ostp->t_tspec;
3504 1.506 rillig
3505 1.506 rillig if (nst == VOID || ost == VOID) {
3506 1.506 rillig /* TODO: C99 behaves like C90 here. */
3507 1.589 rillig if (!allow_trad && !allow_c99 && (nst == FUNC || ost == FUNC)) {
3508 1.509 rillig const char *nts, *ots;
3509 1.506 rillig /* null pointers are already handled in convert() */
3510 1.506 rillig *(nst == FUNC ? &nts : &ots) = "function pointer";
3511 1.506 rillig *(nst == VOID ? &nts : &ots) = "'void *'";
3512 1.578 rillig /* conversion of %s to %s requires a cast */
3513 1.506 rillig warning(303, ots, nts);
3514 1.506 rillig }
3515 1.506 rillig return;
3516 1.509 rillig }
3517 1.509 rillig if (nst == FUNC && ost == FUNC)
3518 1.506 rillig return;
3519 1.509 rillig if (nst == FUNC || ost == FUNC) {
3520 1.506 rillig /* converting '%s' to '%s' is questionable */
3521 1.506 rillig warning(229, type_name(otp), type_name(ntp));
3522 1.506 rillig return;
3523 1.506 rillig }
3524 1.506 rillig
3525 1.506 rillig if (hflag && alignment_in_bits(nstp) > alignment_in_bits(ostp) &&
3526 1.506 rillig ost != CHAR && ost != UCHAR &&
3527 1.519 rillig !is_incomplete(ostp) &&
3528 1.519 rillig !(nst == UNION && union_contains(nstp, ostp))) {
3529 1.506 rillig /* converting '%s' to '%s' increases alignment ... */
3530 1.506 rillig warning(135, type_name(otp), type_name(ntp),
3531 1.506 rillig alignment_in_bits(ostp) / CHAR_SIZE,
3532 1.506 rillig alignment_in_bits(nstp) / CHAR_SIZE);
3533 1.506 rillig }
3534 1.506 rillig
3535 1.506 rillig if (cflag && should_warn_about_pointer_cast(nstp, nst, ostp, ost)) {
3536 1.506 rillig /* pointer cast from '%s' to '%s' may be troublesome */
3537 1.506 rillig warning(247, type_name(otp), type_name(ntp));
3538 1.506 rillig }
3539 1.506 rillig }
3540 1.506 rillig
3541 1.506 rillig /*
3542 1.506 rillig * Insert a conversion operator, which converts the type of the node
3543 1.506 rillig * to another given type.
3544 1.506 rillig *
3545 1.506 rillig * Possible values for 'op':
3546 1.506 rillig * CVT a cast-expression
3547 1.506 rillig * binary integer promotion for one of the operands, or a usual
3548 1.506 rillig * arithmetic conversion
3549 1.506 rillig * binary plain or compound assignments to bit-fields
3550 1.574 rillig * FARG 'arg' is the number of the parameter (used for warnings)
3551 1.506 rillig * NOOP several other implicit conversions
3552 1.506 rillig * ...
3553 1.506 rillig */
3554 1.506 rillig tnode_t *
3555 1.506 rillig convert(op_t op, int arg, type_t *tp, tnode_t *tn)
3556 1.506 rillig {
3557 1.509 rillig tspec_t nt = tp->t_tspec;
3558 1.509 rillig tspec_t ot = tn->tn_type->t_tspec;
3559 1.506 rillig
3560 1.506 rillig if (allow_trad && allow_c90 && op == FARG)
3561 1.506 rillig check_prototype_conversion(arg, nt, ot, tp, tn);
3562 1.506 rillig
3563 1.506 rillig if (nt == BOOL) {
3564 1.506 rillig /* No further checks. */
3565 1.506 rillig
3566 1.506 rillig } else if (is_integer(nt)) {
3567 1.506 rillig if (ot == BOOL) {
3568 1.506 rillig /* No further checks. */
3569 1.536 rillig } else if (is_integer(ot))
3570 1.506 rillig convert_integer_from_integer(op, arg, nt, ot, tp, tn);
3571 1.536 rillig else if (is_floating(ot))
3572 1.506 rillig convert_integer_from_floating(op, tp, tn);
3573 1.536 rillig else if (ot == PTR)
3574 1.506 rillig convert_integer_from_pointer(op, nt, tp, tn);
3575 1.506 rillig
3576 1.506 rillig } else if (is_floating(nt)) {
3577 1.506 rillig /* No further checks. */
3578 1.506 rillig
3579 1.506 rillig } else if (nt == PTR) {
3580 1.506 rillig if (is_null_pointer(tn)) {
3581 1.506 rillig /* a null pointer may be assigned to any pointer. */
3582 1.536 rillig } else if (ot == PTR && op == CVT)
3583 1.506 rillig convert_pointer_from_pointer(tp, tn);
3584 1.506 rillig }
3585 1.506 rillig
3586 1.509 rillig tnode_t *ntn = expr_alloc_tnode();
3587 1.506 rillig ntn->tn_op = CVT;
3588 1.506 rillig ntn->tn_type = tp;
3589 1.506 rillig ntn->tn_cast = op == CVT;
3590 1.506 rillig ntn->tn_sys |= tn->tn_sys;
3591 1.506 rillig ntn->tn_right = NULL;
3592 1.506 rillig if (tn->tn_op != CON || nt == VOID) {
3593 1.506 rillig ntn->tn_left = tn;
3594 1.506 rillig } else {
3595 1.506 rillig ntn->tn_op = CON;
3596 1.531 rillig convert_constant(op, arg, ntn->tn_type, &ntn->tn_val,
3597 1.531 rillig &tn->tn_val);
3598 1.506 rillig }
3599 1.506 rillig
3600 1.506 rillig return ntn;
3601 1.506 rillig }
3602 1.506 rillig
3603 1.506 rillig static void
3604 1.506 rillig convert_constant_floating(op_t op, int arg, tspec_t ot, const type_t *tp,
3605 1.506 rillig tspec_t nt, val_t *v, val_t *nv)
3606 1.506 rillig {
3607 1.527 rillig long double max = 0.0, min = 0.0;
3608 1.506 rillig
3609 1.506 rillig switch (nt) {
3610 1.506 rillig case CHAR:
3611 1.506 rillig max = TARG_CHAR_MAX; min = TARG_CHAR_MIN; break;
3612 1.506 rillig case UCHAR:
3613 1.506 rillig max = TARG_UCHAR_MAX; min = 0; break;
3614 1.506 rillig case SCHAR:
3615 1.506 rillig max = TARG_SCHAR_MAX; min = TARG_SCHAR_MIN; break;
3616 1.506 rillig case SHORT:
3617 1.506 rillig max = TARG_SHRT_MAX; min = TARG_SHRT_MIN; break;
3618 1.506 rillig case USHORT:
3619 1.506 rillig max = TARG_USHRT_MAX; min = 0; break;
3620 1.506 rillig case ENUM:
3621 1.506 rillig case INT:
3622 1.506 rillig max = TARG_INT_MAX; min = TARG_INT_MIN; break;
3623 1.506 rillig case UINT:
3624 1.506 rillig max = TARG_UINT_MAX; min = 0; break;
3625 1.506 rillig case LONG:
3626 1.506 rillig max = TARG_LONG_MAX; min = TARG_LONG_MIN; break;
3627 1.506 rillig case ULONG:
3628 1.506 rillig max = TARG_ULONG_MAX; min = 0; break;
3629 1.545 rillig case LLONG:
3630 1.545 rillig max = LLONG_MAX; min = LLONG_MIN; break;
3631 1.545 rillig case ULLONG:
3632 1.545 rillig max = ULLONG_MAX; min = 0; break;
3633 1.506 rillig case FLOAT:
3634 1.506 rillig case FCOMPLEX:
3635 1.506 rillig max = FLT_MAX; min = -FLT_MAX; break;
3636 1.506 rillig case DOUBLE:
3637 1.506 rillig case DCOMPLEX:
3638 1.506 rillig max = DBL_MAX; min = -DBL_MAX; break;
3639 1.506 rillig case PTR:
3640 1.514 rillig /* Already got an error because of float --> ptr */
3641 1.506 rillig case LDOUBLE:
3642 1.506 rillig case LCOMPLEX:
3643 1.506 rillig /* LINTED 248 */
3644 1.506 rillig max = LDBL_MAX; min = -max; break;
3645 1.1 cgd default:
3646 1.157 rillig lint_assert(/*CONSTCOND*/false);
3647 1.1 cgd }
3648 1.544 rillig if (v->u.floating > max || v->u.floating < min) {
3649 1.506 rillig lint_assert(nt != LDOUBLE);
3650 1.506 rillig if (op == FARG) {
3651 1.506 rillig /* conversion of '%s' to '%s' is out of range, ... */
3652 1.506 rillig warning(295,
3653 1.506 rillig type_name(gettyp(ot)), type_name(tp), arg);
3654 1.506 rillig } else {
3655 1.506 rillig /* conversion of '%s' to '%s' is out of range */
3656 1.536 rillig warning(119, type_name(gettyp(ot)), type_name(tp));
3657 1.506 rillig }
3658 1.544 rillig v->u.floating = v->u.floating > 0 ? max : min;
3659 1.506 rillig }
3660 1.1 cgd
3661 1.536 rillig if (nt == FLOAT || nt == FCOMPLEX)
3662 1.544 rillig nv->u.floating = (float)v->u.floating;
3663 1.536 rillig else if (nt == DOUBLE || nt == DCOMPLEX)
3664 1.544 rillig nv->u.floating = (double)v->u.floating;
3665 1.536 rillig else if (nt == LDOUBLE || nt == LCOMPLEX)
3666 1.544 rillig nv->u.floating = v->u.floating;
3667 1.536 rillig else
3668 1.544 rillig nv->u.integer = (int64_t)v->u.floating;
3669 1.506 rillig }
3670 1.1 cgd
3671 1.506 rillig static bool
3672 1.506 rillig convert_constant_to_floating(tspec_t nt, val_t *nv,
3673 1.506 rillig tspec_t ot, const val_t *v)
3674 1.506 rillig {
3675 1.506 rillig if (nt == FLOAT) {
3676 1.544 rillig nv->u.floating = (ot == PTR || is_uinteger(ot)) ?
3677 1.544 rillig (float)(uint64_t)v->u.integer : (float)v->u.integer;
3678 1.506 rillig } else if (nt == DOUBLE) {
3679 1.544 rillig nv->u.floating = (ot == PTR || is_uinteger(ot)) ?
3680 1.544 rillig (double)(uint64_t)v->u.integer : (double)v->u.integer;
3681 1.506 rillig } else if (nt == LDOUBLE) {
3682 1.544 rillig nv->u.floating = (ot == PTR || is_uinteger(ot))
3683 1.544 rillig ? (long double)(uint64_t)v->u.integer
3684 1.544 rillig : (long double)v->u.integer;
3685 1.506 rillig } else
3686 1.506 rillig return false;
3687 1.506 rillig return true;
3688 1.506 rillig }
3689 1.1 cgd
3690 1.506 rillig /*
3691 1.506 rillig * Print a warning if bits which were set are lost due to the conversion.
3692 1.506 rillig * This can happen with operator ORASS only.
3693 1.506 rillig */
3694 1.506 rillig static void
3695 1.506 rillig convert_constant_check_range_bitor(size_t nsz, size_t osz, const val_t *v,
3696 1.506 rillig uint64_t xmask, op_t op)
3697 1.506 rillig {
3698 1.544 rillig if (nsz < osz && (v->u.integer & xmask) != 0) {
3699 1.506 rillig /* constant truncated by conversion, op '%s' */
3700 1.506 rillig warning(306, op_name(op));
3701 1.506 rillig }
3702 1.1 cgd }
3703 1.1 cgd
3704 1.506 rillig static void
3705 1.506 rillig convert_constant_check_range_bitand(size_t nsz, size_t osz,
3706 1.506 rillig uint64_t xmask, const val_t *nv,
3707 1.506 rillig tspec_t ot, const val_t *v,
3708 1.506 rillig const type_t *tp, op_t op)
3709 1.1 cgd {
3710 1.506 rillig if (nsz > osz &&
3711 1.544 rillig (nv->u.integer & bit((unsigned int)(osz - 1))) != 0 &&
3712 1.544 rillig (nv->u.integer & xmask) != xmask) {
3713 1.506 rillig /* extra bits set to 0 in conversion of '%s' to '%s', ... */
3714 1.506 rillig warning(309, type_name(gettyp(ot)),
3715 1.506 rillig type_name(tp), op_name(op));
3716 1.506 rillig } else if (nsz < osz &&
3717 1.584 rillig (v->u.integer & xmask) != xmask &&
3718 1.584 rillig (v->u.integer & xmask) != 0) {
3719 1.506 rillig /* constant truncated by conversion, op '%s' */
3720 1.506 rillig warning(306, op_name(op));
3721 1.506 rillig }
3722 1.506 rillig }
3723 1.1 cgd
3724 1.506 rillig static void
3725 1.506 rillig convert_constant_check_range_signed(op_t op, int arg)
3726 1.506 rillig {
3727 1.506 rillig if (op == ASSIGN) {
3728 1.506 rillig /* assignment of negative constant to unsigned type */
3729 1.506 rillig warning(164);
3730 1.506 rillig } else if (op == INIT) {
3731 1.506 rillig /* initialization of unsigned with negative constant */
3732 1.506 rillig warning(221);
3733 1.506 rillig } else if (op == FARG) {
3734 1.506 rillig /* conversion of negative constant to unsigned type, ... */
3735 1.506 rillig warning(296, arg);
3736 1.506 rillig } else if (modtab[op].m_comparison) {
3737 1.506 rillig /* handled by check_integer_comparison() */
3738 1.506 rillig } else {
3739 1.506 rillig /* conversion of negative constant to unsigned type */
3740 1.506 rillig warning(222);
3741 1.506 rillig }
3742 1.506 rillig }
3743 1.1 cgd
3744 1.506 rillig /*
3745 1.509 rillig * Loss of significant bit(s). All truncated bits of unsigned types or all
3746 1.509 rillig * truncated bits plus the msb of the target for signed types are considered
3747 1.509 rillig * to be significant bits. Loss of significant bits means that at least one
3748 1.509 rillig * of the bits was set in an unsigned type or that at least one but not all
3749 1.509 rillig * of the bits was set in a signed type. Loss of significant bits means that
3750 1.509 rillig * it is not possible, also not with necessary casts, to convert back to the
3751 1.527 rillig * original type. An example for a necessary cast is:
3752 1.506 rillig * char c; int i; c = 128;
3753 1.506 rillig * i = c; ** yields -128 **
3754 1.506 rillig * i = (unsigned char)c; ** yields 128 **
3755 1.506 rillig */
3756 1.506 rillig static void
3757 1.536 rillig warn_constant_check_range_truncated(op_t op, int arg, const type_t *tp,
3758 1.536 rillig tspec_t ot)
3759 1.506 rillig {
3760 1.536 rillig if (op == ASSIGN && tp->t_bitfield)
3761 1.506 rillig /* precision lost in bit-field assignment */
3762 1.506 rillig warning(166);
3763 1.536 rillig else if (op == ASSIGN)
3764 1.506 rillig /* constant truncated by assignment */
3765 1.506 rillig warning(165);
3766 1.536 rillig else if (op == INIT && tp->t_bitfield)
3767 1.506 rillig /* bit-field initializer does not fit */
3768 1.506 rillig warning(180);
3769 1.536 rillig else if (op == INIT)
3770 1.506 rillig /* initializer does not fit */
3771 1.506 rillig warning(178);
3772 1.536 rillig else if (op == CASE)
3773 1.506 rillig /* case label affected by conversion */
3774 1.506 rillig warning(196);
3775 1.536 rillig else if (op == FARG)
3776 1.506 rillig /* conversion of '%s' to '%s' is out of range, arg #%d */
3777 1.536 rillig warning(295, type_name(gettyp(ot)), type_name(tp), arg);
3778 1.536 rillig else
3779 1.506 rillig /* conversion of '%s' to '%s' is out of range */
3780 1.536 rillig warning(119, type_name(gettyp(ot)), type_name(tp));
3781 1.506 rillig }
3782 1.1 cgd
3783 1.506 rillig static void
3784 1.536 rillig warn_constant_check_range_loss(op_t op, int arg, const type_t *tp,
3785 1.506 rillig tspec_t ot)
3786 1.506 rillig {
3787 1.536 rillig if (op == ASSIGN && tp->t_bitfield)
3788 1.506 rillig /* precision lost in bit-field assignment */
3789 1.506 rillig warning(166);
3790 1.536 rillig else if (op == INIT && tp->t_bitfield)
3791 1.506 rillig /* bit-field initializer out of range */
3792 1.506 rillig warning(11);
3793 1.536 rillig else if (op == CASE)
3794 1.506 rillig /* case label affected by conversion */
3795 1.506 rillig warning(196);
3796 1.536 rillig else if (op == FARG)
3797 1.506 rillig /* conversion of '%s' to '%s' is out of range, arg #%d */
3798 1.509 rillig warning(295, type_name(gettyp(ot)), type_name(tp), arg);
3799 1.536 rillig else
3800 1.506 rillig /* conversion of '%s' to '%s' is out of range */
3801 1.509 rillig warning(119, type_name(gettyp(ot)), type_name(tp));
3802 1.1 cgd }
3803 1.1 cgd
3804 1.506 rillig static void
3805 1.506 rillig convert_constant_check_range(tspec_t ot, const type_t *tp, tspec_t nt,
3806 1.506 rillig op_t op, int arg, const val_t *v, val_t *nv)
3807 1.378 rillig {
3808 1.506 rillig unsigned int obitsz, nbitsz;
3809 1.506 rillig uint64_t xmask, xmsk1;
3810 1.506 rillig
3811 1.506 rillig obitsz = size_in_bits(ot);
3812 1.532 rillig nbitsz = tp->t_bitfield ? tp->t_bit_field_width : size_in_bits(nt);
3813 1.506 rillig xmask = value_bits(nbitsz) ^ value_bits(obitsz);
3814 1.506 rillig xmsk1 = value_bits(nbitsz) ^ value_bits(obitsz - 1);
3815 1.506 rillig if (op == ORASS || op == BITOR || op == BITXOR) {
3816 1.506 rillig convert_constant_check_range_bitor(
3817 1.506 rillig nbitsz, obitsz, v, xmask, op);
3818 1.506 rillig } else if (op == ANDASS || op == BITAND) {
3819 1.506 rillig convert_constant_check_range_bitand(
3820 1.506 rillig nbitsz, obitsz, xmask, nv, ot, v, tp, op);
3821 1.589 rillig } else if (nt != PTR && is_uinteger(nt) &&
3822 1.589 rillig ot != PTR && !is_uinteger(ot) &&
3823 1.584 rillig v->u.integer < 0)
3824 1.506 rillig convert_constant_check_range_signed(op, arg);
3825 1.544 rillig else if (nv->u.integer != v->u.integer && nbitsz <= obitsz &&
3826 1.584 rillig (v->u.integer & xmask) != 0 &&
3827 1.584 rillig (is_uinteger(ot) || (v->u.integer & xmsk1) != xmsk1))
3828 1.536 rillig warn_constant_check_range_truncated(op, arg, tp, ot);
3829 1.544 rillig else if (nv->u.integer != v->u.integer)
3830 1.536 rillig warn_constant_check_range_loss(op, arg, tp, ot);
3831 1.378 rillig }
3832 1.378 rillig
3833 1.574 rillig /*-
3834 1.506 rillig * Converts a typed constant to a constant of another type.
3835 1.506 rillig *
3836 1.506 rillig * op operator which requires conversion
3837 1.574 rillig * arg if op is FARG, # of parameter
3838 1.514 rillig * tp type to which to convert the constant
3839 1.506 rillig * nv new constant
3840 1.506 rillig * v old constant
3841 1.1 cgd */
3842 1.506 rillig void
3843 1.506 rillig convert_constant(op_t op, int arg, const type_t *tp, val_t *nv, val_t *v)
3844 1.506 rillig {
3845 1.506 rillig /*
3846 1.506 rillig * TODO: make 'v' const; the name of this function does not suggest
3847 1.506 rillig * that it modifies 'v'.
3848 1.506 rillig */
3849 1.509 rillig tspec_t ot = v->v_tspec;
3850 1.509 rillig tspec_t nt = nv->v_tspec = tp->t_tspec;
3851 1.509 rillig bool range_check = false;
3852 1.1 cgd
3853 1.506 rillig if (nt == BOOL) { /* C99 6.3.1.2 */
3854 1.506 rillig nv->v_unsigned_since_c90 = false;
3855 1.544 rillig nv->u.integer = is_nonzero_val(v) ? 1 : 0;
3856 1.506 rillig return;
3857 1.506 rillig }
3858 1.1 cgd
3859 1.536 rillig if (ot == FLOAT || ot == DOUBLE || ot == LDOUBLE)
3860 1.506 rillig convert_constant_floating(op, arg, ot, tp, nt, v, nv);
3861 1.536 rillig else if (!convert_constant_to_floating(nt, nv, ot, v)) {
3862 1.506 rillig range_check = true; /* Check for lost precision. */
3863 1.544 rillig nv->u.integer = v->u.integer;
3864 1.506 rillig }
3865 1.1 cgd
3866 1.506 rillig if (allow_trad && allow_c90 && v->v_unsigned_since_c90 &&
3867 1.506 rillig (is_floating(nt) || (
3868 1.506 rillig (is_integer(nt) && !is_uinteger(nt) &&
3869 1.550 rillig portable_rank_cmp(nt, ot) > 0)))) {
3870 1.578 rillig /* C90 treats constant as unsigned */
3871 1.506 rillig warning(157);
3872 1.506 rillig v->v_unsigned_since_c90 = false;
3873 1.1 cgd }
3874 1.1 cgd
3875 1.506 rillig if (is_integer(nt)) {
3876 1.544 rillig nv->u.integer = convert_integer(nv->u.integer, nt,
3877 1.532 rillig tp->t_bitfield ? tp->t_bit_field_width : size_in_bits(nt));
3878 1.1 cgd }
3879 1.1 cgd
3880 1.506 rillig if (range_check && op != CVT)
3881 1.506 rillig convert_constant_check_range(ot, tp, nt, op, arg, v, nv);
3882 1.1 cgd }
3883 1.1 cgd
3884 1.1 cgd tnode_t *
3885 1.253 rillig build_sizeof(const type_t *tp)
3886 1.1 cgd {
3887 1.355 rillig unsigned int size_in_bytes = type_size_in_bits(tp) / CHAR_SIZE;
3888 1.318 rillig tnode_t *tn = build_integer_constant(SIZEOF_TSPEC, size_in_bytes);
3889 1.227 rillig tn->tn_system_dependent = true;
3890 1.415 rillig debug_step("build_sizeof '%s' = %u", type_name(tp), size_in_bytes);
3891 1.227 rillig return tn;
3892 1.62 christos }
3893 1.62 christos
3894 1.84 christos tnode_t *
3895 1.592 rillig build_offsetof(const type_t *tp, designation dn)
3896 1.84 christos {
3897 1.576 rillig unsigned int offset_in_bits = 0;
3898 1.392 rillig
3899 1.576 rillig if (!is_struct_or_union(tp->t_tspec)) {
3900 1.113 rillig /* unacceptable operand of '%s' */
3901 1.84 christos error(111, "offsetof");
3902 1.576 rillig goto proceed;
3903 1.576 rillig }
3904 1.592 rillig for (size_t i = 0; i < dn.dn_len; i++) {
3905 1.592 rillig const designator *dr = dn.dn_items + i;
3906 1.595 rillig if (dr->dr_kind == DK_SUBSCRIPT) {
3907 1.592 rillig if (tp->t_tspec != ARRAY)
3908 1.592 rillig goto proceed; /* silent error */
3909 1.592 rillig tp = tp->t_subt;
3910 1.592 rillig offset_in_bits += (unsigned) dr->dr_subscript
3911 1.592 rillig * type_size_in_bits(tp);
3912 1.592 rillig } else {
3913 1.592 rillig if (!is_struct_or_union(tp->t_tspec))
3914 1.592 rillig goto proceed; /* silent error */
3915 1.592 rillig const char *name = dr->dr_member->s_name;
3916 1.592 rillig sym_t *mem = find_member(tp->t_sou, name);
3917 1.592 rillig if (mem == NULL) {
3918 1.592 rillig /* type '%s' does not have member '%s' */
3919 1.592 rillig error(101, name, type_name(tp));
3920 1.592 rillig goto proceed;
3921 1.592 rillig }
3922 1.592 rillig tp = mem->s_type;
3923 1.592 rillig offset_in_bits += mem->u.s_member.sm_offset_in_bits;
3924 1.592 rillig }
3925 1.576 rillig }
3926 1.592 rillig free(dn.dn_items);
3927 1.89 rillig
3928 1.576 rillig proceed:;
3929 1.576 rillig unsigned int offset_in_bytes = offset_in_bits / CHAR_SIZE;
3930 1.536 rillig tnode_t *tn = build_integer_constant(SIZEOF_TSPEC, offset_in_bytes);
3931 1.227 rillig tn->tn_system_dependent = true;
3932 1.227 rillig return tn;
3933 1.84 christos }
3934 1.84 christos
3935 1.355 rillig unsigned int
3936 1.253 rillig type_size_in_bits(const type_t *tp)
3937 1.62 christos {
3938 1.1 cgd
3939 1.509 rillig unsigned int elem = 1;
3940 1.509 rillig bool flex = false;
3941 1.412 rillig lint_assert(tp != NULL);
3942 1.1 cgd while (tp->t_tspec == ARRAY) {
3943 1.154 rillig flex = true; /* allow c99 flex arrays [] [0] */
3944 1.1 cgd elem *= tp->t_dim;
3945 1.1 cgd tp = tp->t_subt;
3946 1.1 cgd }
3947 1.536 rillig if (elem == 0 && !flex) {
3948 1.536 rillig /* cannot take size/alignment of incomplete type */
3949 1.536 rillig error(143);
3950 1.536 rillig elem = 1;
3951 1.1 cgd }
3952 1.536 rillig
3953 1.536 rillig unsigned int elsz;
3954 1.1 cgd switch (tp->t_tspec) {
3955 1.542 rillig case VOID:
3956 1.542 rillig /* cannot take size/alignment of void */
3957 1.542 rillig error(146);
3958 1.542 rillig elsz = 1;
3959 1.542 rillig break;
3960 1.1 cgd case FUNC:
3961 1.414 rillig /* cannot take size/alignment of function type '%s' */
3962 1.414 rillig error(144, type_name(tp));
3963 1.1 cgd elsz = 1;
3964 1.1 cgd break;
3965 1.1 cgd case STRUCT:
3966 1.1 cgd case UNION:
3967 1.194 rillig if (is_incomplete(tp)) {
3968 1.108 rillig /* cannot take size/alignment of incomplete type */
3969 1.1 cgd error(143);
3970 1.1 cgd elsz = 1;
3971 1.1 cgd } else {
3972 1.517 rillig elsz = tp->t_sou->sou_size_in_bits;
3973 1.1 cgd }
3974 1.1 cgd break;
3975 1.1 cgd case ENUM:
3976 1.194 rillig if (is_incomplete(tp)) {
3977 1.108 rillig /* cannot take size/alignment of incomplete type */
3978 1.1 cgd warning(143);
3979 1.1 cgd }
3980 1.1 cgd /* FALLTHROUGH */
3981 1.1 cgd default:
3982 1.120 rillig if (tp->t_bitfield) {
3983 1.108 rillig /* cannot take size/alignment of bit-field */
3984 1.1 cgd error(145);
3985 1.1 cgd }
3986 1.542 rillig elsz = size_in_bits(tp->t_tspec);
3987 1.542 rillig lint_assert(elsz > 0);
3988 1.1 cgd break;
3989 1.1 cgd }
3990 1.1 cgd
3991 1.355 rillig return elem * elsz;
3992 1.1 cgd }
3993 1.1 cgd
3994 1.536 rillig /* C11 6.5.3.4, GCC */
3995 1.59 christos tnode_t *
3996 1.253 rillig build_alignof(const type_t *tp)
3997 1.59 christos {
3998 1.535 rillig if (tp->t_tspec == FUNC) {
3999 1.414 rillig /* cannot take size/alignment of function type '%s' */
4000 1.414 rillig error(144, type_name(tp));
4001 1.534 rillig return NULL;
4002 1.59 christos }
4003 1.535 rillig if (tp->t_tspec == VOID) {
4004 1.535 rillig /* cannot take size/alignment of void */
4005 1.535 rillig error(146);
4006 1.535 rillig return NULL;
4007 1.535 rillig }
4008 1.535 rillig if (is_incomplete(tp)) {
4009 1.535 rillig /* cannot take size/alignment of incomplete type */
4010 1.535 rillig error(143);
4011 1.535 rillig return NULL;
4012 1.535 rillig }
4013 1.535 rillig if (tp->t_bitfield) {
4014 1.535 rillig /* cannot take size/alignment of bit-field */
4015 1.535 rillig error(145);
4016 1.535 rillig return NULL;
4017 1.535 rillig }
4018 1.318 rillig return build_integer_constant(SIZEOF_TSPEC,
4019 1.220 rillig (int64_t)alignment_in_bits(tp) / CHAR_SIZE);
4020 1.59 christos }
4021 1.59 christos
4022 1.499 rillig static tnode_t *
4023 1.594 rillig cast_to_union(tnode_t *otn, bool sys, type_t *ntp)
4024 1.499 rillig {
4025 1.499 rillig
4026 1.499 rillig if (!allow_gcc) {
4027 1.499 rillig /* union cast is a GCC extension */
4028 1.499 rillig error(328);
4029 1.499 rillig return NULL;
4030 1.499 rillig }
4031 1.499 rillig
4032 1.517 rillig for (const sym_t *m = ntp->t_sou->sou_first_member;
4033 1.499 rillig m != NULL; m = m->s_next) {
4034 1.499 rillig if (types_compatible(m->s_type, otn->tn_type,
4035 1.499 rillig false, false, NULL)) {
4036 1.594 rillig tnode_t *ntn = build_op(CVT, sys, ntp, otn, NULL);
4037 1.499 rillig ntn->tn_cast = true;
4038 1.499 rillig return ntn;
4039 1.499 rillig }
4040 1.499 rillig }
4041 1.499 rillig
4042 1.499 rillig /* type '%s' is not a member of '%s' */
4043 1.499 rillig error(329, type_name(otn->tn_type), type_name(ntp));
4044 1.499 rillig return NULL;
4045 1.499 rillig }
4046 1.499 rillig
4047 1.1 cgd tnode_t *
4048 1.594 rillig cast(tnode_t *tn, bool sys, type_t *tp)
4049 1.1 cgd {
4050 1.1 cgd
4051 1.1 cgd if (tn == NULL)
4052 1.95 rillig return NULL;
4053 1.1 cgd
4054 1.1 cgd tn = cconv(tn);
4055 1.1 cgd
4056 1.413 rillig lint_assert(tp != NULL);
4057 1.536 rillig tspec_t nt = tp->t_tspec;
4058 1.536 rillig tspec_t ot = tn->tn_type->t_tspec;
4059 1.1 cgd
4060 1.1 cgd if (nt == VOID) {
4061 1.1 cgd /*
4062 1.586 rillig * C90 6.3.4, C99 6.5.4p2 and C11 6.5.4p2 allow any type to be
4063 1.586 rillig * cast to void. The only other allowed casts are from a
4064 1.429 rillig * scalar type to a scalar type.
4065 1.1 cgd */
4066 1.536 rillig } else if (nt == UNION)
4067 1.594 rillig return cast_to_union(tn, sys, tp);
4068 1.536 rillig else if (nt == STRUCT || nt == ARRAY || nt == FUNC) {
4069 1.328 rillig /* Casting to a struct is an undocumented GCC extension. */
4070 1.429 rillig if (!(allow_gcc && nt == STRUCT))
4071 1.319 rillig goto invalid_cast;
4072 1.536 rillig } else if (is_struct_or_union(ot))
4073 1.319 rillig goto invalid_cast;
4074 1.536 rillig else if (ot == VOID) {
4075 1.1 cgd /* improper cast of void expression */
4076 1.1 cgd error(148);
4077 1.95 rillig return NULL;
4078 1.144 rillig } else if (is_integer(nt) && is_scalar(ot)) {
4079 1.1 cgd /* ok */
4080 1.144 rillig } else if (is_floating(nt) && is_arithmetic(ot)) {
4081 1.1 cgd /* ok */
4082 1.144 rillig } else if (nt == PTR && is_integer(ot)) {
4083 1.1 cgd /* ok */
4084 1.1 cgd } else if (nt == PTR && ot == PTR) {
4085 1.7 jpo if (!tp->t_subt->t_const && tn->tn_type->t_subt->t_const) {
4086 1.7 jpo if (hflag)
4087 1.196 rillig /* cast discards 'const' from type '%s' */
4088 1.196 rillig warning(275, type_name(tn->tn_type));
4089 1.7 jpo }
4090 1.319 rillig } else
4091 1.319 rillig goto invalid_cast;
4092 1.1 cgd
4093 1.479 rillig if (any_query_enabled && types_compatible(tp, tn->tn_type,
4094 1.479 rillig false, false, NULL)) {
4095 1.471 rillig /* no-op cast from '%s' to '%s' */
4096 1.471 rillig query_message(6, type_name(tn->tn_type), type_name(tp));
4097 1.479 rillig }
4098 1.471 rillig
4099 1.1 cgd tn = convert(CVT, 0, tp, tn);
4100 1.154 rillig tn->tn_cast = true;
4101 1.594 rillig tn->tn_sys = sys;
4102 1.1 cgd
4103 1.95 rillig return tn;
4104 1.319 rillig
4105 1.319 rillig invalid_cast:
4106 1.319 rillig /* invalid cast from '%s' to '%s' */
4107 1.319 rillig error(147, type_name(tn->tn_type), type_name(tp));
4108 1.319 rillig return NULL;
4109 1.1 cgd }
4110 1.1 cgd
4111 1.1 cgd /*
4112 1.1 cgd * Create the node for a function argument.
4113 1.122 rillig * All necessary conversions and type checks are done in
4114 1.318 rillig * build_function_call because build_function_argument has no
4115 1.574 rillig * information about the expected parameter types.
4116 1.1 cgd */
4117 1.1 cgd tnode_t *
4118 1.318 rillig build_function_argument(tnode_t *args, tnode_t *arg)
4119 1.1 cgd {
4120 1.1 cgd /*
4121 1.1 cgd * If there was a serious error in the expression for the argument,
4122 1.1 cgd * create a dummy argument so the positions of the remaining arguments
4123 1.1 cgd * will not change.
4124 1.1 cgd */
4125 1.1 cgd if (arg == NULL)
4126 1.318 rillig arg = build_integer_constant(INT, 0);
4127 1.1 cgd
4128 1.565 rillig return build_op(PUSH, arg->tn_sys, arg->tn_type, arg, args);
4129 1.1 cgd }
4130 1.1 cgd
4131 1.1 cgd /*
4132 1.506 rillig * Compare the type of an argument with the corresponding type of a
4133 1.506 rillig * prototype parameter. If it is a valid combination, but both types
4134 1.506 rillig * are not the same, insert a conversion to convert the argument into
4135 1.506 rillig * the type of the parameter.
4136 1.1 cgd */
4137 1.506 rillig static tnode_t *
4138 1.506 rillig check_prototype_argument(
4139 1.587 rillig int n, /* pos of arg */
4140 1.587 rillig type_t *tp, /* expected type (from prototype) */
4141 1.587 rillig tnode_t *tn) /* argument */
4142 1.1 cgd {
4143 1.526 rillig tnode_t *ln = xcalloc(1, sizeof(*ln));
4144 1.506 rillig ln->tn_type = expr_unqualified_type(tp);
4145 1.506 rillig ln->tn_lvalue = true;
4146 1.506 rillig if (typeok(FARG, n, ln, tn)) {
4147 1.509 rillig bool dowarn;
4148 1.506 rillig if (!types_compatible(tp, tn->tn_type,
4149 1.506 rillig true, false, (dowarn = false, &dowarn)) || dowarn)
4150 1.506 rillig tn = convert(FARG, n, tp, tn);
4151 1.1 cgd }
4152 1.506 rillig free(ln);
4153 1.506 rillig return tn;
4154 1.1 cgd }
4155 1.1 cgd
4156 1.1 cgd /*
4157 1.1 cgd * Check types of all function arguments and insert conversions,
4158 1.1 cgd * if necessary.
4159 1.1 cgd */
4160 1.1 cgd static tnode_t *
4161 1.100 rillig check_function_arguments(type_t *ftp, tnode_t *args)
4162 1.1 cgd {
4163 1.536 rillig /* get # of parameters in the prototype */
4164 1.536 rillig int npar = 0;
4165 1.574 rillig for (const sym_t *p = ftp->t_params; p != NULL; p = p->s_next)
4166 1.1 cgd npar++;
4167 1.1 cgd
4168 1.536 rillig /* get # of arguments in the function call */
4169 1.536 rillig int narg = 0;
4170 1.581 rillig for (const tnode_t *arg = args; arg != NULL; arg = tn_ck_right(arg))
4171 1.1 cgd narg++;
4172 1.1 cgd
4173 1.574 rillig const sym_t *param = ftp->t_params;
4174 1.1 cgd if (ftp->t_proto && npar != narg && !(ftp->t_vararg && npar < narg)) {
4175 1.459 rillig /* argument mismatch: %d %s passed, %d expected */
4176 1.575 rillig error(150, narg, narg != 1 ? "arguments" : "argument", npar);
4177 1.574 rillig param = NULL;
4178 1.1 cgd }
4179 1.20 lukem
4180 1.536 rillig for (int n = 1; n <= narg; n++) {
4181 1.1 cgd
4182 1.574 rillig // The rightmost argument starts the argument list.
4183 1.536 rillig tnode_t *arg = args;
4184 1.536 rillig for (int i = narg; i > n; i--, arg = arg->tn_right)
4185 1.20 lukem continue;
4186 1.1 cgd
4187 1.106 rillig /* some things which are always not allowed */
4188 1.536 rillig tspec_t at = arg->tn_left->tn_type->t_tspec;
4189 1.536 rillig if (at == VOID) {
4190 1.1 cgd /* void expressions may not be arguments, arg #%d */
4191 1.1 cgd error(151, n);
4192 1.95 rillig return NULL;
4193 1.574 rillig }
4194 1.574 rillig if (is_struct_or_union(at) &&
4195 1.584 rillig is_incomplete(arg->tn_left->tn_type)) {
4196 1.1 cgd /* argument cannot have unknown size, arg #%d */
4197 1.1 cgd error(152, n);
4198 1.95 rillig return NULL;
4199 1.574 rillig }
4200 1.574 rillig if (is_integer(at) &&
4201 1.584 rillig arg->tn_left->tn_type->t_is_enum &&
4202 1.584 rillig is_incomplete(arg->tn_left->tn_type)) {
4203 1.1 cgd /* argument cannot have unknown size, arg #%d */
4204 1.1 cgd warning(152, n);
4205 1.1 cgd }
4206 1.1 cgd
4207 1.1 cgd arg->tn_left = cconv(arg->tn_left);
4208 1.1 cgd
4209 1.574 rillig if (param != NULL) {
4210 1.100 rillig arg->tn_left = check_prototype_argument(
4211 1.574 rillig n, param->s_type, arg->tn_left);
4212 1.536 rillig } else
4213 1.172 rillig arg->tn_left = promote(NOOP, true, arg->tn_left);
4214 1.1 cgd arg->tn_type = arg->tn_left->tn_type;
4215 1.1 cgd
4216 1.574 rillig if (param != NULL)
4217 1.574 rillig param = param->s_next;
4218 1.1 cgd }
4219 1.1 cgd
4220 1.95 rillig return args;
4221 1.1 cgd }
4222 1.1 cgd
4223 1.506 rillig tnode_t *
4224 1.506 rillig build_function_call(tnode_t *func, bool sys, tnode_t *args)
4225 1.1 cgd {
4226 1.506 rillig
4227 1.506 rillig if (func == NULL)
4228 1.506 rillig return NULL;
4229 1.506 rillig
4230 1.536 rillig op_t fcop = func->tn_op == NAME && func->tn_type->t_tspec == FUNC
4231 1.536 rillig ? CALL : ICALL;
4232 1.506 rillig
4233 1.506 rillig check_ctype_function_call(func, args);
4234 1.506 rillig
4235 1.506 rillig func = cconv(func);
4236 1.1 cgd
4237 1.506 rillig if (func->tn_type->t_tspec != PTR ||
4238 1.506 rillig func->tn_type->t_subt->t_tspec != FUNC) {
4239 1.506 rillig /* cannot call '%s', must be a function */
4240 1.506 rillig error(149, type_name(func->tn_type));
4241 1.506 rillig return NULL;
4242 1.1 cgd }
4243 1.506 rillig
4244 1.506 rillig args = check_function_arguments(func->tn_type->t_subt, args);
4245 1.506 rillig
4246 1.565 rillig return build_op(fcop, sys, func->tn_type->t_subt->t_subt, func, args);
4247 1.1 cgd }
4248 1.1 cgd
4249 1.1 cgd /*
4250 1.1 cgd * Return the value of an integral constant expression.
4251 1.1 cgd * If the expression is not constant or its type is not an integer
4252 1.1 cgd * type, an error message is printed.
4253 1.1 cgd */
4254 1.1 cgd val_t *
4255 1.541 rillig integer_constant(tnode_t *tn, bool required)
4256 1.1 cgd {
4257 1.1 cgd
4258 1.1 cgd if (tn != NULL)
4259 1.1 cgd tn = cconv(tn);
4260 1.1 cgd if (tn != NULL)
4261 1.172 rillig tn = promote(NOOP, false, tn);
4262 1.1 cgd
4263 1.509 rillig val_t *v = xcalloc(1, sizeof(*v));
4264 1.1 cgd
4265 1.1 cgd if (tn == NULL) {
4266 1.548 rillig lint_assert(seen_error);
4267 1.325 rillig debug_step("constant node is null; returning 1 instead");
4268 1.1 cgd v->v_tspec = INT;
4269 1.544 rillig v->u.integer = 1;
4270 1.95 rillig return v;
4271 1.1 cgd }
4272 1.1 cgd
4273 1.1 cgd v->v_tspec = tn->tn_type->t_tspec;
4274 1.1 cgd
4275 1.1 cgd if (tn->tn_op == CON) {
4276 1.531 rillig lint_assert(tn->tn_type->t_tspec == tn->tn_val.v_tspec);
4277 1.531 rillig if (is_integer(tn->tn_val.v_tspec)) {
4278 1.289 rillig v->v_unsigned_since_c90 =
4279 1.531 rillig tn->tn_val.v_unsigned_since_c90;
4280 1.544 rillig v->u.integer = tn->tn_val.u.integer;
4281 1.95 rillig return v;
4282 1.1 cgd }
4283 1.544 rillig v->u.integer = (int64_t)tn->tn_val.u.floating;
4284 1.1 cgd } else {
4285 1.544 rillig v->u.integer = 1;
4286 1.1 cgd }
4287 1.1 cgd
4288 1.31 christos if (required)
4289 1.113 rillig /* integral constant expression expected */
4290 1.31 christos error(55);
4291 1.31 christos else
4292 1.113 rillig /* variable array dimension is a C99/GCC extension */
4293 1.45 christos c99ism(318);
4294 1.1 cgd
4295 1.144 rillig if (!is_integer(v->v_tspec))
4296 1.1 cgd v->v_tspec = INT;
4297 1.1 cgd
4298 1.95 rillig return v;
4299 1.1 cgd }
4300 1.1 cgd
4301 1.211 rillig static bool
4302 1.211 rillig is_constcond_false(const tnode_t *tn, tspec_t t)
4303 1.211 rillig {
4304 1.211 rillig return (t == BOOL || t == INT) &&
4305 1.584 rillig tn->tn_op == CON && tn->tn_val.u.integer == 0;
4306 1.211 rillig }
4307 1.211 rillig
4308 1.1 cgd /*
4309 1.317 rillig * Perform some tests on expressions which can't be done in build_binary()
4310 1.317 rillig * and functions called by build_binary(). These tests must be done here
4311 1.317 rillig * because we need some information about the context in which the operations
4312 1.1 cgd * are performed.
4313 1.217 rillig * After all tests are performed and dofreeblk is true, expr() frees the
4314 1.217 rillig * memory which is used for the expression.
4315 1.1 cgd */
4316 1.1 cgd void
4317 1.433 rillig expr(tnode_t *tn, bool vctx, bool cond, bool dofreeblk, bool is_do_while)
4318 1.1 cgd {
4319 1.20 lukem
4320 1.305 rillig if (tn == NULL) { /* in case of errors */
4321 1.257 rillig expr_free_all();
4322 1.1 cgd return;
4323 1.1 cgd }
4324 1.1 cgd
4325 1.218 rillig /* expr() is also called in global initializations */
4326 1.538 rillig if (dcs->d_kind != DLK_EXTERN && !is_do_while)
4327 1.98 rillig check_statement_reachable();
4328 1.1 cgd
4329 1.433 rillig check_expr_misc(tn, vctx, cond, !cond, false, false, false);
4330 1.515 rillig if (tn->tn_op == ASSIGN && !tn->tn_parenthesized) {
4331 1.433 rillig if (hflag && cond)
4332 1.1 cgd /* assignment in conditional context */
4333 1.1 cgd warning(159);
4334 1.1 cgd } else if (tn->tn_op == CON) {
4335 1.562 rillig if (hflag && cond && !suppress_constcond &&
4336 1.227 rillig !tn->tn_system_dependent &&
4337 1.280 rillig !(is_do_while &&
4338 1.211 rillig is_constcond_false(tn, tn->tn_type->t_tspec)))
4339 1.1 cgd /* constant in conditional context */
4340 1.1 cgd warning(161);
4341 1.1 cgd }
4342 1.164 rillig if (!modtab[tn->tn_op].m_has_side_effect) {
4343 1.1 cgd /*
4344 1.586 rillig * for left operands of COMMA this warning is already printed
4345 1.1 cgd */
4346 1.433 rillig if (tn->tn_op != COMMA && !vctx && !cond)
4347 1.100 rillig check_null_effect(tn);
4348 1.1 cgd }
4349 1.326 rillig debug_node(tn);
4350 1.1 cgd
4351 1.54 dholland if (dofreeblk)
4352 1.257 rillig expr_free_all();
4353 1.1 cgd }
4354 1.1 cgd
4355 1.506 rillig /*
4356 1.506 rillig * Checks the range of array indices, if possible.
4357 1.506 rillig * amper is set if only the address of the element is used. This
4358 1.506 rillig * means that the index is allowed to refer to the first element
4359 1.506 rillig * after the array.
4360 1.506 rillig */
4361 1.197 rillig static void
4362 1.506 rillig check_array_index(tnode_t *tn, bool amper)
4363 1.197 rillig {
4364 1.581 rillig lint_assert(has_operands(tn));
4365 1.509 rillig const tnode_t *ln = tn->tn_left;
4366 1.509 rillig const tnode_t *rn = tn->tn_right;
4367 1.506 rillig
4368 1.506 rillig /* We can only check constant indices. */
4369 1.506 rillig if (rn->tn_op != CON)
4370 1.506 rillig return;
4371 1.197 rillig
4372 1.506 rillig /* Return if the left node does not stem from an array. */
4373 1.506 rillig if (ln->tn_op != ADDR)
4374 1.506 rillig return;
4375 1.506 rillig if (ln->tn_left->tn_op != STRING && ln->tn_left->tn_op != NAME)
4376 1.341 rillig return;
4377 1.506 rillig if (ln->tn_left->tn_type->t_tspec != ARRAY)
4378 1.341 rillig return;
4379 1.506 rillig
4380 1.506 rillig /*
4381 1.586 rillig * For incomplete array types, we can print a warning only if the index
4382 1.586 rillig * is negative.
4383 1.506 rillig */
4384 1.544 rillig if (is_incomplete(ln->tn_left->tn_type) && rn->tn_val.u.integer >= 0)
4385 1.341 rillig return;
4386 1.506 rillig
4387 1.509 rillig int elsz = length_in_bits(ln->tn_type->t_subt, NULL);
4388 1.509 rillig if (elsz == 0)
4389 1.341 rillig return;
4390 1.506 rillig elsz /= CHAR_SIZE;
4391 1.506 rillig
4392 1.506 rillig /* Change the unit of the index from bytes to element size. */
4393 1.522 rillig int64_t con = is_uinteger(rn->tn_type->t_tspec)
4394 1.544 rillig ? (int64_t)((uint64_t)rn->tn_val.u.integer / elsz)
4395 1.544 rillig : rn->tn_val.u.integer / elsz;
4396 1.506 rillig
4397 1.509 rillig int dim = ln->tn_left->tn_type->t_dim + (amper ? 1 : 0);
4398 1.341 rillig
4399 1.506 rillig if (!is_uinteger(rn->tn_type->t_tspec) && con < 0) {
4400 1.506 rillig /* array subscript cannot be negative: %ld */
4401 1.506 rillig warning(167, (long)con);
4402 1.506 rillig } else if (dim > 0 && (uint64_t)con >= (uint64_t)dim) {
4403 1.506 rillig /* array subscript cannot be > %d: %ld */
4404 1.506 rillig warning(168, dim - 1, (long)con);
4405 1.506 rillig }
4406 1.1 cgd }
4407 1.1 cgd
4408 1.370 rillig static void
4409 1.370 rillig check_expr_addr(const tnode_t *ln, bool szof, bool fcall)
4410 1.370 rillig {
4411 1.370 rillig /* XXX: Taking warn_about_unreachable into account here feels wrong. */
4412 1.370 rillig if (ln->tn_op == NAME && (reached || !warn_about_unreachable)) {
4413 1.370 rillig if (!szof)
4414 1.370 rillig mark_as_set(ln->tn_sym);
4415 1.370 rillig mark_as_used(ln->tn_sym, fcall, szof);
4416 1.370 rillig }
4417 1.370 rillig if (ln->tn_op == INDIR && ln->tn_left->tn_op == PLUS)
4418 1.370 rillig check_array_index(ln->tn_left, true);
4419 1.370 rillig }
4420 1.370 rillig
4421 1.370 rillig static void
4422 1.370 rillig check_expr_load(const tnode_t *ln)
4423 1.370 rillig {
4424 1.370 rillig if (ln->tn_op == INDIR && ln->tn_left->tn_op == PLUS)
4425 1.370 rillig check_array_index(ln->tn_left, false);
4426 1.370 rillig }
4427 1.370 rillig
4428 1.536 rillig /*
4429 1.536 rillig * If there is an asm statement in one of the compound statements around,
4430 1.536 rillig * there may be other side effects, so don't warn.
4431 1.536 rillig */
4432 1.536 rillig static bool
4433 1.536 rillig is_asm_around(void)
4434 1.536 rillig {
4435 1.538 rillig for (decl_level *dl = dcs; dl != NULL; dl = dl->d_enclosing)
4436 1.538 rillig if (dl->d_asm)
4437 1.536 rillig return true;
4438 1.536 rillig return false;
4439 1.536 rillig }
4440 1.536 rillig
4441 1.370 rillig static void
4442 1.370 rillig check_expr_side_effect(const tnode_t *ln, bool szof)
4443 1.1 cgd {
4444 1.370 rillig
4445 1.370 rillig /* XXX: Taking warn_about_unreachable into account here feels wrong. */
4446 1.370 rillig if (ln->tn_op == NAME && (reached || !warn_about_unreachable)) {
4447 1.509 rillig scl_t sc = ln->tn_sym->s_scl;
4448 1.370 rillig if (sc != EXTERN && sc != STATIC &&
4449 1.536 rillig !ln->tn_sym->s_set && !szof && !is_asm_around()) {
4450 1.459 rillig /* '%s' may be used before set */
4451 1.370 rillig warning(158, ln->tn_sym->s_name);
4452 1.370 rillig mark_as_set(ln->tn_sym);
4453 1.370 rillig }
4454 1.370 rillig mark_as_used(ln->tn_sym, false, false);
4455 1.370 rillig }
4456 1.370 rillig }
4457 1.1 cgd
4458 1.370 rillig static void
4459 1.370 rillig check_expr_assign(const tnode_t *ln, bool szof)
4460 1.370 rillig {
4461 1.370 rillig /* XXX: Taking warn_about_unreachable into account here feels wrong. */
4462 1.370 rillig if (ln->tn_op == NAME && !szof && (reached || !warn_about_unreachable)) {
4463 1.370 rillig mark_as_set(ln->tn_sym);
4464 1.370 rillig if (ln->tn_sym->s_scl == EXTERN)
4465 1.370 rillig outusg(ln->tn_sym);
4466 1.370 rillig }
4467 1.370 rillig if (ln->tn_op == INDIR && ln->tn_left->tn_op == PLUS)
4468 1.370 rillig /* check the range of array indices */
4469 1.370 rillig check_array_index(ln->tn_left, false);
4470 1.370 rillig }
4471 1.1 cgd
4472 1.370 rillig static void
4473 1.370 rillig check_expr_call(const tnode_t *tn, const tnode_t *ln,
4474 1.433 rillig bool szof, bool vctx, bool cond, bool retval_discarded)
4475 1.370 rillig {
4476 1.370 rillig lint_assert(ln->tn_op == ADDR);
4477 1.370 rillig lint_assert(ln->tn_left->tn_op == NAME);
4478 1.536 rillig if (!szof && !is_compiler_builtin(ln->tn_left->tn_sym->s_name))
4479 1.433 rillig outcall(tn, vctx || cond, retval_discarded);
4480 1.370 rillig }
4481 1.1 cgd
4482 1.581 rillig static void
4483 1.370 rillig check_expr_op(const tnode_t *tn, op_t op, const tnode_t *ln,
4484 1.433 rillig bool szof, bool fcall, bool vctx, bool cond,
4485 1.381 rillig bool retval_discarded, bool eqwarn)
4486 1.370 rillig {
4487 1.1 cgd switch (op) {
4488 1.169 rillig case ADDR:
4489 1.370 rillig check_expr_addr(ln, szof, fcall);
4490 1.1 cgd break;
4491 1.1 cgd case LOAD:
4492 1.370 rillig check_expr_load(ln);
4493 1.1 cgd /* FALLTHROUGH */
4494 1.1 cgd case PUSH:
4495 1.1 cgd case INCBEF:
4496 1.1 cgd case DECBEF:
4497 1.1 cgd case INCAFT:
4498 1.1 cgd case DECAFT:
4499 1.1 cgd case ADDASS:
4500 1.1 cgd case SUBASS:
4501 1.1 cgd case MULASS:
4502 1.1 cgd case DIVASS:
4503 1.1 cgd case MODASS:
4504 1.1 cgd case ANDASS:
4505 1.1 cgd case ORASS:
4506 1.1 cgd case XORASS:
4507 1.1 cgd case SHLASS:
4508 1.1 cgd case SHRASS:
4509 1.46 christos case REAL:
4510 1.46 christos case IMAG:
4511 1.370 rillig check_expr_side_effect(ln, szof);
4512 1.1 cgd break;
4513 1.1 cgd case ASSIGN:
4514 1.370 rillig check_expr_assign(ln, szof);
4515 1.1 cgd break;
4516 1.1 cgd case CALL:
4517 1.433 rillig check_expr_call(tn, ln, szof, vctx, cond, retval_discarded);
4518 1.1 cgd break;
4519 1.1 cgd case EQ:
4520 1.1 cgd if (hflag && eqwarn)
4521 1.113 rillig /* operator '==' found where '=' was expected */
4522 1.1 cgd warning(160);
4523 1.1 cgd break;
4524 1.443 rillig default:
4525 1.14 christos break;
4526 1.1 cgd }
4527 1.370 rillig }
4528 1.370 rillig
4529 1.440 rillig /*
4530 1.440 rillig * vctx ???
4531 1.440 rillig * cond whether the expression is a condition that
4532 1.440 rillig * will be compared with 0
4533 1.440 rillig * eqwarn whether the operator '==' might be a
4534 1.440 rillig * misspelled '='
4535 1.440 rillig * fcall whether the expression is a function call
4536 1.440 rillig * retval_discarded whether the return value of a function call
4537 1.440 rillig * is discarded; such calls will be analyzed by
4538 1.440 rillig * lint2 in messages 4, 8 and 9
4539 1.440 rillig * szof whether the expression is part of a sizeof
4540 1.440 rillig * expression, which means that its value is
4541 1.440 rillig * discarded since only the type is relevant
4542 1.440 rillig */
4543 1.370 rillig void
4544 1.433 rillig check_expr_misc(const tnode_t *tn, bool vctx, bool cond,
4545 1.381 rillig bool eqwarn, bool fcall, bool retval_discarded, bool szof)
4546 1.370 rillig {
4547 1.370 rillig
4548 1.370 rillig if (tn == NULL)
4549 1.370 rillig return;
4550 1.581 rillig op_t op = tn->tn_op;
4551 1.581 rillig if (op == NAME || op == CON || op == STRING)
4552 1.581 rillig return;
4553 1.370 rillig
4554 1.581 rillig lint_assert(has_operands(tn));
4555 1.536 rillig tnode_t *ln = tn->tn_left;
4556 1.536 rillig tnode_t *rn = tn->tn_right;
4557 1.581 rillig check_expr_op(tn, op, ln,
4558 1.581 rillig szof, fcall, vctx, cond, retval_discarded, eqwarn);
4559 1.581 rillig
4560 1.536 rillig const mod_t *mp = &modtab[op];
4561 1.536 rillig bool cvctx = mp->m_value_context;
4562 1.536 rillig bool ccond = mp->m_compares_with_zero;
4563 1.536 rillig bool eq = mp->m_warn_if_operand_eq &&
4564 1.584 rillig !ln->tn_parenthesized &&
4565 1.584 rillig rn != NULL && !rn->tn_parenthesized;
4566 1.173 rillig
4567 1.1 cgd /*
4568 1.586 rillig * Values of operands of ':' are not used if the type of at least
4569 1.586 rillig * one of the operands (for GCC compatibility) is 'void'.
4570 1.586 rillig *
4571 1.1 cgd * XXX test/value context of QUEST should probably be used as
4572 1.586 rillig * context for both operands of COLON.
4573 1.1 cgd */
4574 1.1 cgd if (op == COLON && tn->tn_type->t_tspec == VOID)
4575 1.433 rillig cvctx = ccond = false;
4576 1.536 rillig bool discard = op == CVT && tn->tn_type->t_tspec == VOID;
4577 1.433 rillig check_expr_misc(ln, cvctx, ccond, eq, op == CALL, discard, szof);
4578 1.1 cgd
4579 1.1 cgd switch (op) {
4580 1.1 cgd case PUSH:
4581 1.1 cgd if (rn != NULL)
4582 1.173 rillig check_expr_misc(rn, false, false, eq, false, false,
4583 1.173 rillig szof);
4584 1.1 cgd break;
4585 1.1 cgd case LOGAND:
4586 1.1 cgd case LOGOR:
4587 1.173 rillig check_expr_misc(rn, false, true, eq, false, false, szof);
4588 1.1 cgd break;
4589 1.1 cgd case COLON:
4590 1.433 rillig check_expr_misc(rn, cvctx, ccond, eq, false, false, szof);
4591 1.19 mycroft break;
4592 1.19 mycroft case COMMA:
4593 1.441 rillig check_expr_misc(rn, vctx, cond, false, false, false, szof);
4594 1.1 cgd break;
4595 1.1 cgd default:
4596 1.1 cgd if (mp->m_binary)
4597 1.173 rillig check_expr_misc(rn, true, false, eq, false, false,
4598 1.173 rillig szof);
4599 1.1 cgd break;
4600 1.1 cgd }
4601 1.1 cgd }
4602 1.1 cgd
4603 1.1 cgd /*
4604 1.218 rillig * Return whether the expression can be used for static initialization.
4605 1.1 cgd *
4606 1.218 rillig * Constant initialization expressions must be constant or an address
4607 1.1 cgd * of a static object with an optional offset. In the first case,
4608 1.1 cgd * the result is returned in *offsp. In the second case, the static
4609 1.1 cgd * object is returned in *symp and the offset in *offsp.
4610 1.1 cgd *
4611 1.169 rillig * The expression can consist of PLUS, MINUS, ADDR, NAME, STRING and
4612 1.1 cgd * CON. Type conversions are allowed if they do not change binary
4613 1.1 cgd * representation (including width).
4614 1.278 rillig *
4615 1.278 rillig * C99 6.6 "Constant expressions"
4616 1.278 rillig * C99 6.7.8p4 restricts initializers for static storage duration
4617 1.1 cgd */
4618 1.174 rillig bool
4619 1.253 rillig constant_addr(const tnode_t *tn, const sym_t **symp, ptrdiff_t *offsp)
4620 1.1 cgd {
4621 1.253 rillig const sym_t *sym;
4622 1.1 cgd ptrdiff_t offs1, offs2;
4623 1.526 rillig tspec_t t, ot;
4624 1.1 cgd
4625 1.1 cgd switch (tn->tn_op) {
4626 1.1 cgd case MINUS:
4627 1.28 christos if (tn->tn_right->tn_op == CVT)
4628 1.174 rillig return constant_addr(tn->tn_right, symp, offsp);
4629 1.28 christos else if (tn->tn_right->tn_op != CON)
4630 1.174 rillig return false;
4631 1.1 cgd /* FALLTHROUGH */
4632 1.1 cgd case PLUS:
4633 1.1 cgd offs1 = offs2 = 0;
4634 1.1 cgd if (tn->tn_left->tn_op == CON) {
4635 1.544 rillig offs1 = (ptrdiff_t)tn->tn_left->tn_val.u.integer;
4636 1.174 rillig if (!constant_addr(tn->tn_right, &sym, &offs2))
4637 1.174 rillig return false;
4638 1.1 cgd } else if (tn->tn_right->tn_op == CON) {
4639 1.544 rillig offs2 = (ptrdiff_t)tn->tn_right->tn_val.u.integer;
4640 1.1 cgd if (tn->tn_op == MINUS)
4641 1.1 cgd offs2 = -offs2;
4642 1.174 rillig if (!constant_addr(tn->tn_left, &sym, &offs1))
4643 1.174 rillig return false;
4644 1.1 cgd } else {
4645 1.174 rillig return false;
4646 1.1 cgd }
4647 1.1 cgd *symp = sym;
4648 1.1 cgd *offsp = offs1 + offs2;
4649 1.215 rillig return true;
4650 1.169 rillig case ADDR:
4651 1.1 cgd if (tn->tn_left->tn_op == NAME) {
4652 1.1 cgd *symp = tn->tn_left->tn_sym;
4653 1.1 cgd *offsp = 0;
4654 1.215 rillig return true;
4655 1.215 rillig } else {
4656 1.1 cgd /*
4657 1.586 rillig * If this were the front end of a compiler, we would
4658 1.586 rillig * return a label instead of 0, at least if
4659 1.215 rillig * 'tn->tn_left->tn_op == STRING'.
4660 1.1 cgd */
4661 1.215 rillig *symp = NULL;
4662 1.1 cgd *offsp = 0;
4663 1.215 rillig return true;
4664 1.1 cgd }
4665 1.1 cgd case CVT:
4666 1.1 cgd t = tn->tn_type->t_tspec;
4667 1.1 cgd ot = tn->tn_left->tn_type->t_tspec;
4668 1.144 rillig if ((!is_integer(t) && t != PTR) ||
4669 1.144 rillig (!is_integer(ot) && ot != PTR)) {
4670 1.174 rillig return false;
4671 1.90 rillig }
4672 1.380 rillig #if 0
4673 1.586 rillig /*-
4674 1.27 christos * consider:
4675 1.97 rillig * struct foo {
4676 1.97 rillig * unsigned char a;
4677 1.97 rillig * } f = {
4678 1.353 rillig * (unsigned char)(unsigned long)
4679 1.353 rillig * (&(((struct foo *)0)->a))
4680 1.27 christos * };
4681 1.353 rillig * since psize(unsigned long) != psize(unsigned char),
4682 1.353 rillig * this fails.
4683 1.27 christos */
4684 1.27 christos else if (psize(t) != psize(ot))
4685 1.95 rillig return -1;
4686 1.27 christos #endif
4687 1.215 rillig return constant_addr(tn->tn_left, symp, offsp);
4688 1.1 cgd default:
4689 1.174 rillig return false;
4690 1.1 cgd }
4691 1.1 cgd }
4692 1.1 cgd
4693 1.351 rillig /* Append s2 to s1, then free s2. */
4694 1.1 cgd strg_t *
4695 1.351 rillig cat_strings(strg_t *s1, strg_t *s2)
4696 1.1 cgd {
4697 1.1 cgd
4698 1.410 rillig if (s1->st_char != s2->st_char) {
4699 1.1 cgd /* cannot concatenate wide and regular string literals */
4700 1.1 cgd error(292);
4701 1.351 rillig return s1;
4702 1.1 cgd }
4703 1.1 cgd
4704 1.410 rillig size_t len1 = s1->st_len;
4705 1.410 rillig size_t len2 = s2->st_len;
4706 1.599 rillig if (s1->st_char) {
4707 1.599 rillig s1->st_chars = xrealloc(s1->st_chars, len1 + len2 + 1);
4708 1.599 rillig memcpy(s1->st_chars + len1, s2->st_chars, len2 + 1);
4709 1.599 rillig free(s2->st_chars);
4710 1.599 rillig }
4711 1.351 rillig s1->st_len = len1 + len2;
4712 1.351 rillig free(s2);
4713 1.1 cgd
4714 1.351 rillig return s1;
4715 1.1 cgd }
4716 1.1 cgd
4717 1.403 rillig
4718 1.404 rillig typedef struct stmt_expr {
4719 1.490 rillig memory_pool se_mem;
4720 1.404 rillig sym_t *se_sym;
4721 1.404 rillig struct stmt_expr *se_enclosing;
4722 1.404 rillig } stmt_expr;
4723 1.404 rillig
4724 1.404 rillig static stmt_expr *stmt_exprs;
4725 1.404 rillig
4726 1.404 rillig void
4727 1.404 rillig begin_statement_expr(void)
4728 1.404 rillig {
4729 1.567 rillig debug_enter();
4730 1.567 rillig
4731 1.404 rillig stmt_expr *se = xmalloc(sizeof(*se));
4732 1.404 rillig se->se_mem = expr_save_memory();
4733 1.404 rillig se->se_sym = NULL;
4734 1.404 rillig se->se_enclosing = stmt_exprs;
4735 1.404 rillig stmt_exprs = se;
4736 1.404 rillig }
4737 1.404 rillig
4738 1.403 rillig void
4739 1.403 rillig do_statement_expr(tnode_t *tn)
4740 1.403 rillig {
4741 1.403 rillig block_level--;
4742 1.403 rillig mem_block_level--;
4743 1.418 rillig stmt_exprs->se_sym = tn != NULL
4744 1.418 rillig ? mktempsym(block_dup_type(tn->tn_type))
4745 1.418 rillig : NULL; /* after a syntax error */
4746 1.403 rillig mem_block_level++;
4747 1.403 rillig block_level++;
4748 1.556 rillig /* '({ ... })' is a GCC extension */
4749 1.403 rillig gnuism(320);
4750 1.403 rillig }
4751 1.403 rillig
4752 1.403 rillig tnode_t *
4753 1.403 rillig end_statement_expr(void)
4754 1.403 rillig {
4755 1.567 rillig tnode_t *tn;
4756 1.567 rillig
4757 1.404 rillig stmt_expr *se = stmt_exprs;
4758 1.567 rillig if (se->se_sym == NULL) {
4759 1.567 rillig tn = NULL; /* after a syntax error */
4760 1.567 rillig goto end;
4761 1.567 rillig }
4762 1.567 rillig
4763 1.567 rillig tn = build_name(se->se_sym, false);
4764 1.417 rillig (void)expr_save_memory(); /* leak */
4765 1.404 rillig expr_restore_memory(se->se_mem);
4766 1.404 rillig stmt_exprs = se->se_enclosing;
4767 1.404 rillig free(se);
4768 1.567 rillig
4769 1.567 rillig end:
4770 1.567 rillig debug_leave();
4771 1.403 rillig return tn;
4772 1.403 rillig }
4773 1.569 rillig
4774 1.569 rillig bool
4775 1.569 rillig in_statement_expr(void)
4776 1.569 rillig {
4777 1.569 rillig return stmt_exprs != NULL;
4778 1.569 rillig }
4779