tautological-constant-compare.c
16.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
// RUN: %clang_cc1 -triple x86_64-linux-gnu -fsyntax-only -Wtautological-constant-in-range-compare -DTEST=2 -verify %s
// RUN: %clang_cc1 -triple x86_64-linux-gnu -fsyntax-only -Wtautological-constant-in-range-compare -DTEST=2 -verify -x c++ %s
// RUN: %clang_cc1 -triple x86_64-linux-gnu -fsyntax-only -Wtautological-type-limit-compare -DTEST -verify %s
// RUN: %clang_cc1 -triple x86_64-linux-gnu -fsyntax-only -Wtautological-type-limit-compare -DTEST -verify -x c++ %s
// RUN: %clang_cc1 -triple x86_64-linux-gnu -fsyntax-only -Wtype-limits -DTEST -verify %s
// RUN: %clang_cc1 -triple x86_64-linux-gnu -fsyntax-only -Wtype-limits -DTEST -verify -x c++ %s
// RUN: %clang_cc1 -triple x86_64-linux-gnu -fsyntax-only -Wextra -Wno-sign-compare -verify=silent %s
// RUN: %clang_cc1 -triple x86_64-linux-gnu -fsyntax-only -Wextra -Wno-sign-compare -verify=silent -x c++ %s
// RUN: %clang_cc1 -triple x86_64-linux-gnu -fsyntax-only -Wall -verify=silent %s
// RUN: %clang_cc1 -triple x86_64-linux-gnu -fsyntax-only -Wall -verify=silent -x c++ %s
// RUN: %clang_cc1 -triple x86_64-linux-gnu -fsyntax-only -verify=silent %s
// RUN: %clang_cc1 -triple x86_64-linux-gnu -fsyntax-only -verify=silent -x c++ %s
#ifndef TEST
// silent-no-diagnostics
#endif
int value(void);
#define macro(val) val
#ifdef __cplusplus
template<typename T>
void TFunc() {
// Make sure that we do warn for normal variables in template functions !
unsigned char c = value();
#ifdef TEST
if (c > 255) // expected-warning {{comparison 'unsigned char' > 255 is always false}}
return;
#else
if (c > 255)
return;
#endif
if (c > macro(255))
return;
T v = value();
if (v > 255)
return;
if (v > 32767)
return;
}
#endif
int main()
{
#ifdef __cplusplus
TFunc<unsigned char>();
TFunc<signed short>();
#endif
short s = value();
#ifdef TEST
if (s == 32767)
return 0;
if (s != 32767)
return 0;
if (s < 32767)
return 0;
if (s <= 32767) // expected-warning {{comparison 'short' <= 32767 is always true}}
return 0;
if (s > 32767) // expected-warning {{comparison 'short' > 32767 is always false}}
return 0;
if (s >= 32767)
return 0;
if (32767 == s)
return 0;
if (32767 != s)
return 0;
if (32767 < s) // expected-warning {{comparison 32767 < 'short' is always false}}
return 0;
if (32767 <= s)
return 0;
if (32767 > s)
return 0;
if (32767 >= s) // expected-warning {{comparison 32767 >= 'short' is always true}}
return 0;
// FIXME: assumes two's complement
if (s == -32768)
return 0;
if (s != -32768)
return 0;
if (s < -32768) // expected-warning {{comparison 'short' < -32768 is always false}}
return 0;
if (s <= -32768)
return 0;
if (s > -32768)
return 0;
if (s >= -32768) // expected-warning {{comparison 'short' >= -32768 is always true}}
return 0;
if (-32768 == s)
return 0;
if (-32768 != s)
return 0;
if (-32768 < s)
return 0;
if (-32768 <= s) // expected-warning {{comparison -32768 <= 'short' is always true}}
return 0;
if (-32768 > s) // expected-warning {{comparison -32768 > 'short' is always false}}
return 0;
if (-32768 >= s)
return 0;
// Note: both sides are promoted to unsigned long prior to the comparison, so
// it is perfectly possible for a short to compare greater than 32767UL.
if (s == 32767UL)
return 0;
if (s != 32767UL)
return 0;
if (s < 32767UL)
return 0;
if (s <= 32767UL)
return 0;
if (s > 32767UL)
return 0;
if (s >= 32767UL)
return 0;
if (32767UL == s)
return 0;
if (32767UL != s)
return 0;
if (32767UL < s)
return 0;
if (32767UL <= s)
return 0;
if (32767UL > s)
return 0;
if (32767UL >= s)
return 0;
enum { ULONG_MAX = (2UL * (unsigned long)__LONG_MAX__ + 1UL) };
if (s == 2UL * (unsigned long)__LONG_MAX__ + 1UL)
return 0;
if (s != 2UL * (unsigned long)__LONG_MAX__ + 1UL)
return 0;
if (s < 2UL * (unsigned long)__LONG_MAX__ + 1UL)
return 0;
if (s <= 2UL * (unsigned long)__LONG_MAX__ + 1UL) // expected-warning-re {{comparison 'short' <= {{.*}} is always true}}
return 0;
if (s > 2UL * (unsigned long)__LONG_MAX__ + 1UL) // expected-warning-re {{comparison 'short' > {{.*}} is always false}}
return 0;
if (s >= 2UL * (unsigned long)__LONG_MAX__ + 1UL)
return 0;
if (2UL * (unsigned long)__LONG_MAX__ + 1UL == s)
return 0;
if (2UL * (unsigned long)__LONG_MAX__ + 1UL != s)
return 0;
if (2UL * (unsigned long)__LONG_MAX__ + 1UL < s) // expected-warning-re {{comparison {{.*}} < 'short' is always false}}
return 0;
if (2UL * (unsigned long)__LONG_MAX__ + 1UL <= s)
return 0;
if (2UL * (unsigned long)__LONG_MAX__ + 1UL > s)
return 0;
if (2UL * (unsigned long)__LONG_MAX__ + 1UL >= s) // expected-warning-re {{comparison {{.*}} >= 'short' is always true}}
return 0;
// FIXME: assumes two's complement
if (s == -32768L)
return 0;
if (s != -32768L)
return 0;
if (s < -32768L) // expected-warning {{comparison 'short' < -32768 is always false}}
return 0;
if (s <= -32768L)
return 0;
if (s > -32768L)
return 0;
if (s >= -32768L) // expected-warning {{comparison 'short' >= -32768 is always true}}
return 0;
if (-32768L == s)
return 0;
if (-32768L != s)
return 0;
if (-32768L < s)
return 0;
if (-32768L <= s) // expected-warning {{comparison -32768 <= 'short' is always true}}
return 0;
if (-32768L > s) // expected-warning {{comparison -32768 > 'short' is always false}}
return 0;
if (-32768L >= s)
return 0;
#else
if (s == 32767)
return 0;
if (s != 32767)
return 0;
if (s < 32767)
return 0;
if (s <= 32767)
return 0;
if (s > 32767)
return 0;
if (s >= 32767)
return 0;
if (32767 == s)
return 0;
if (32767 != s)
return 0;
if (32767 < s)
return 0;
if (32767 <= s)
return 0;
if (32767 > s)
return 0;
if (32767 >= s)
return 0;
// FIXME: assumes two's complement
if (s == -32768)
return 0;
if (s != -32768)
return 0;
if (s < -32768)
return 0;
if (s <= -32768)
return 0;
if (s > -32768)
return 0;
if (s >= -32768)
return 0;
if (-32768 == s)
return 0;
if (-32768 != s)
return 0;
if (-32768 < s)
return 0;
if (-32768 <= s)
return 0;
if (-32768 > s)
return 0;
if (-32768 >= s)
return 0;
if (s == 32767UL)
return 0;
if (s != 32767UL)
return 0;
if (s < 32767UL)
return 0;
if (s <= 32767UL)
return 0;
if (s > 32767UL)
return 0;
if (s >= 32767UL)
return 0;
if (32767UL == s)
return 0;
if (32767UL != s)
return 0;
if (32767UL < s)
return 0;
if (32767UL <= s)
return 0;
if (32767UL > s)
return 0;
if (32767UL >= s)
return 0;
// FIXME: assumes two's complement
if (s == -32768L)
return 0;
if (s != -32768L)
return 0;
if (s < -32768L)
return 0;
if (s <= -32768L)
return 0;
if (s > -32768L)
return 0;
if (s >= -32768L)
return 0;
if (-32768L == s)
return 0;
if (-32768L != s)
return 0;
if (-32768L < s)
return 0;
if (-32768L <= s)
return 0;
if (-32768L > s)
return 0;
if (-32768L >= s)
return 0;
#endif
if (s == 0)
return 0;
if (s != 0)
return 0;
if (s < 0)
return 0;
if (s <= 0)
return 0;
if (s > 0)
return 0;
if (s >= 0)
return 0;
if (0 == s)
return 0;
if (0 != s)
return 0;
if (0 < s)
return 0;
if (0 <= s)
return 0;
if (0 > s)
return 0;
if (0 >= s)
return 0;
unsigned short us = value();
#ifdef TEST
if (us == 65535)
return 0;
if (us != 65535)
return 0;
if (us < 65535)
return 0;
if (us <= 65535) // expected-warning {{comparison 'unsigned short' <= 65535 is always true}}
return 0;
if (us > 65535) // expected-warning {{comparison 'unsigned short' > 65535 is always false}}
return 0;
if (us >= 65535)
return 0;
if (65535 == us)
return 0;
if (65535 != us)
return 0;
if (65535 < us) // expected-warning {{comparison 65535 < 'unsigned short' is always false}}
return 0;
if (65535 <= us)
return 0;
if (65535 > us)
return 0;
if (65535 >= us) // expected-warning {{comparison 65535 >= 'unsigned short' is always true}}
return 0;
if (us == 65535UL)
return 0;
if (us != 65535UL)
return 0;
if (us < 65535UL)
return 0;
if (us <= 65535UL) // expected-warning {{comparison 'unsigned short' <= 65535 is always true}}
return 0;
if (us > 65535UL) // expected-warning {{comparison 'unsigned short' > 65535 is always false}}
return 0;
if (us >= 65535UL)
return 0;
if (65535UL == us)
return 0;
if (65535UL != us)
return 0;
if (65535UL < us) // expected-warning {{comparison 65535 < 'unsigned short' is always false}}
return 0;
if (65535UL <= us)
return 0;
if (65535UL > us)
return 0;
if (65535UL >= us) // expected-warning {{comparison 65535 >= 'unsigned short' is always true}}
return 0;
#else
if (us == 65535)
return 0;
if (us != 65535)
return 0;
if (us < 65535)
return 0;
if (us <= 65535)
return 0;
if (us > 65535)
return 0;
if (us >= 65535)
return 0;
if (65535 == us)
return 0;
if (65535 != us)
return 0;
if (65535 < us)
return 0;
if (65535 <= us)
return 0;
if (65535 > us)
return 0;
if (65535 >= us)
return 0;
if (us == 65535UL)
return 0;
if (us != 65535UL)
return 0;
if (us < 65535UL)
return 0;
if (us <= 65535UL)
return 0;
if (us > 65535UL)
return 0;
if (us >= 65535UL)
return 0;
if (65535UL == us)
return 0;
if (65535UL != us)
return 0;
if (65535UL < us)
return 0;
if (65535UL <= us)
return 0;
if (65535UL > us)
return 0;
if (65535UL >= us)
return 0;
#endif
if (us == 32767)
return 0;
if (us != 32767)
return 0;
if (us < 32767)
return 0;
if (us <= 32767)
return 0;
if (us > 32767)
return 0;
if (us >= 32767)
return 0;
if (32767 == us)
return 0;
if (32767 != us)
return 0;
if (32767 < us)
return 0;
if (32767 <= us)
return 0;
if (32767 > us)
return 0;
if (32767 >= us)
return 0;
if (us == 32767UL)
return 0;
if (us != 32767UL)
return 0;
if (us < 32767UL)
return 0;
if (us <= 32767UL)
return 0;
if (us > 32767UL)
return 0;
if (us >= 32767UL)
return 0;
if (32767UL == us)
return 0;
if (32767UL != us)
return 0;
if (32767UL < us)
return 0;
if (32767UL <= us)
return 0;
if (32767UL > us)
return 0;
if (32767UL >= us)
return 0;
#if __SIZEOF_INT128__
__int128 i128 = value();
if (i128 == -1) // used to crash
return 0;
#endif
enum E {
yes,
no,
maybe
};
enum E e = (enum E)value();
if (e == yes)
return 0;
if (e != yes)
return 0;
if (e < yes)
return 0;
if (e <= yes)
return 0;
if (e > yes)
return 0;
if (e >= yes)
return 0;
if (yes == e)
return 0;
if (yes != e)
return 0;
if (yes < e)
return 0;
if (yes <= e)
return 0;
if (yes > e)
return 0;
if (yes >= e)
return 0;
if (e == maybe)
return 0;
if (e != maybe)
return 0;
if (e < maybe)
return 0;
if (e <= maybe)
return 0;
if (e > maybe)
return 0;
if (e >= maybe)
return 0;
if (maybe == e)
return 0;
if (maybe != e)
return 0;
if (maybe < e)
return 0;
if (maybe <= e)
return 0;
if (maybe > e)
return 0;
if (maybe >= e)
return 0;
// We only warn on out-of-range bitfields and expressions with limited range
// under -Wtantological-in-range-compare, not under -Wtype-limits, because
// the warning is not based on the type alone.
struct A {
int a : 3;
unsigned b : 3;
long c : 3;
unsigned long d : 3;
} a;
if (a.a < 3) {}
if (a.a < 4) {} // #bitfield1
if (a.b < 7) {}
if (a.b < 8) {} // #bitfield2
if (a.c < 3) {}
if (a.c < 4) {} // #bitfield3
if (a.d < 7) {}
if (a.d < 8) {} // #bitfield4
#if TEST == 2
// expected-warning@#bitfield1 {{comparison of 3-bit signed value < 4 is always true}}
// expected-warning@#bitfield2 {{comparison of 3-bit unsigned value < 8 is always true}}
// expected-warning@#bitfield3 {{comparison of 3-bit signed value < 4 is always true}}
// expected-warning@#bitfield4 {{comparison of 3-bit unsigned value < 8 is always true}}
#endif
if ((s & 0xff) < 0) {} // #valuerange1
if ((s & 0xff) < 1) {}
if ((s & -3) < -4) {}
if ((s & -3) < -3) {}
if ((s & -3) < 4u) {}
if ((s & -3) > 4u) {}
if ((s & -3) == 4u) {}
if ((s & -3) == 3u) {} // FIXME: Impossible.
if ((s & -3) == -5u) {}
if ((s & -3) == -4u) {}
#if TEST == 2
// expected-warning@#valuerange1 {{comparison of 8-bit unsigned value < 0 is always false}}
#endif
// FIXME: Our bit-level width tracking comes unstuck here: the second of the
// conditions below is also tautological, but we can't tell that because we
// don't track the actual range, only the bit-width.
if ((s ? 1 : 0) + (us ? 1 : 0) > 1) {}
if ((s ? 1 : 0) + (us ? 1 : 0) > 2) {}
if ((s ? 1 : 0) + (us ? 1 : 0) > 3) {} // #addrange1
#if TEST == 2
// expected-warning@#addrange1 {{comparison of 2-bit unsigned value > 3 is always false}}
#endif
// FIXME: The second and third comparisons are also tautological; 0x40000000
// is the greatest value that multiplying two int16s can produce.
if (s * s > 0x3fffffff) {}
if (s * s > 0x40000000) {}
if (s * s > 0x7ffffffe) {}
if (s * s > 0x7fffffff) {} // expected-warning {{result of comparison 'int' > 2147483647 is always false}}
if ((s & 0x3ff) * (s & 0x1f) > 0x7be0) {}
if ((s & 0x3ff) * (s & 0x1f) > 0x7be1) {} // FIXME
if ((s & 0x3ff) * (s & 0x1f) > 0x7ffe) {} // FIXME
if ((s & 0x3ff) * (s & 0x1f) > 0x7fff) {} // #mulrange1
#if TEST == 2
// expected-warning@#mulrange1 {{comparison of 15-bit unsigned value > 32767 is always false}}
#endif
if (a.a * a.b > 21) {} // FIXME
if (a.a * a.b > 31) {} // #mulrange2
#if TEST == 2
// expected-warning@#mulrange2 {{comparison of 6-bit signed value > 31 is always false}}
#endif
if (a.a - (s & 1) < -4) {}
if (a.a - (s & 1) < -7) {} // FIXME
if (a.a - (s & 1) < -8) {} // #subrange1
if (a.a - (s & 1) > 3) {} // FIXME: Can be < -4 but not > 3.
if (a.a - (s & 1) > 7) {} // #subrange2
if (a.a - (s & 7) < -8) {}
if (a.a - (s & 7) > 7) {} // FIXME: Can be < -8 but not > 7.
if (a.a - (s & 7) < -15) {}
if (a.a - (s & 7) < -16) {} // #subrange3
if (a.a - (s & 7) > 15) {} // #subrange4
if (a.b - (s & 1) > 6) {}
if (a.b - (s & 1) > 7) {} // #subrange5
if (a.b - (s & 7) < -8) {} // #subrange6
if (a.b - (s & 15) < -8) {}
if (a.b - (s & 15) < -16) {} // #subrange7
#if TEST == 2
// expected-warning@#subrange1 {{comparison of 4-bit signed value < -8 is always false}}
// expected-warning@#subrange2 {{comparison of 4-bit signed value > 7 is always false}}
// expected-warning@#subrange3 {{comparison of 5-bit signed value < -16 is always false}}
// expected-warning@#subrange4 {{comparison of 5-bit signed value > 15 is always false}}
// expected-warning@#subrange5 {{comparison of 4-bit signed value > 7 is always false}}
// expected-warning@#subrange6 {{comparison of 4-bit signed value < -8 is always false}}
// expected-warning@#subrange7 {{comparison of 5-bit signed value < -16 is always false}}
#endif
// a.a % 3 is in range [-2, 2], which we expand to [-4, 4)
if (a.a % 3 > 2) {}
if (a.a % 3 > 3) {} // #remrange1
if (a.a % 3 == -1) {}
if (a.a % 3 == -2) {}
if (a.a % 3 < -3) {} // FIXME
if (a.a % 3 < -4) {} // #remrange2
// a.b % 3 is in range [0, 3), which we expand to [0, 4)
if (a.b % 3 > 2) {}
if (a.b % 3 > 3) {} // #remrange3
if (a.b % 3 < 0) {} // #remrange4
#if TEST == 2
// expected-warning@#remrange1 {{comparison of 3-bit signed value > 3 is always false}}
// expected-warning@#remrange2 {{comparison of 3-bit signed value < -4 is always false}}
// expected-warning@#remrange3 {{comparison of 2-bit unsigned value > 3 is always false}}
// expected-warning@#remrange4 {{comparison of 2-bit unsigned value < 0 is always false}}
#endif
// Don't warn on non-constant-expression values that end up being a constant
// 0; we generally only want to warn when one side of the comparison is
// effectively non-constant.
if ("x"[1] == 0) {}
if (((void)s, 0) == 0) {}
return 1;
}