GCC Middle and Back End API Reference
range-op-mixed.h
Go to the documentation of this file.
1/* Header file for mixed range operator class.
2 Copyright (C) 2017-2024 Free Software Foundation, Inc.
3 Contributed by Andrew MacLeod <amacleod@redhat.com>
4 and Aldy Hernandez <aldyh@redhat.com>.
5
6This file is part of GCC.
7
8GCC is free software; you can redistribute it and/or modify it under
9the terms of the GNU General Public License as published by the Free
10Software Foundation; either version 3, or (at your option) any later
11version.
12
13GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14WARRANTY; without even the implied warranty of MERCHANTABILITY or
15FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 for more details.
17
18You should have received a copy of the GNU General Public License
19along with GCC; see the file COPYING3. If not see
20<http://www.gnu.org/licenses/>. */
21
22#ifndef GCC_RANGE_OP_MIXED_H
23#define GCC_RANGE_OP_MIXED_H
24
25void update_known_bitmask (vrange &, tree_code, const vrange &, const vrange &);
27 const irange &, const irange &,
29
30
31// Return TRUE if 0 is within [WMIN, WMAX].
32
33inline bool
35{
36 signop sign = TYPE_SIGN (type);
37 return wi::le_p (wmin, 0, sign) && wi::ge_p (wmax, 0, sign);
38}
39
40// Return TRUE if [WMIN, WMAX] is the singleton 0.
41
42inline bool
44{
45 unsigned prec = TYPE_PRECISION (type);
46 return wmin == wmax && wi::eq_p (wmin, wi::zero (prec));
47}
48
49
52
53// If the range of either op1 or op2 is undefined, set the result to
54// varying and return TRUE. If the caller truly cares about a result,
55// they should pass in a varying if it has an undefined that it wants
56// treated as a varying.
57
58inline bool
60 const vrange &op1, const vrange & op2)
61{
62 if (op1.undefined_p () || op2.undefined_p ())
63 {
64 r.set_varying (type);
65 return true;
66 }
67 else
68 return false;
69}
70
71// For relation opcodes, first try to see if the supplied relation
72// forces a true or false result, and return that.
73// Then check for undefined operands. If none of this applies,
74// return false.
75
76inline bool
78 const vrange &op2, relation_trio trio,
80{
81 relation_kind rel = trio.op1_op2 ();
82 // If known relation is a complete subset of this relation, always true.
84 {
85 r = range_true (type);
86 return true;
87 }
88
89 // If known relation has no subset of this relation, always false.
91 {
92 r = range_false (type);
93 return true;
94 }
95
96 // If either operand is undefined, return VARYING.
97 if (empty_range_varying (r, type, op1, op2))
98 return true;
99
100 return false;
101}
102
103// ----------------------------------------------------------------------
104// Mixed Mode Operators.
105// ----------------------------------------------------------------------
106
108{
109public:
115 bool fold_range (irange &r, tree type,
116 const irange &op1, const irange &op2,
117 relation_trio = TRIO_VARYING) const final override;
118 bool fold_range (irange &r, tree type,
119 const prange &op1, const prange &op2,
120 relation_trio = TRIO_VARYING) const final override;
121 bool fold_range (irange &r, tree type,
122 const frange &op1, const frange &op2,
123 relation_trio = TRIO_VARYING) const final override;
124
125 bool op1_range (irange &r, tree type,
126 const irange &lhs, const irange &val,
127 relation_trio = TRIO_VARYING) const final override;
128 bool op1_range (prange &r, tree type,
129 const irange &lhs, const prange &val,
130 relation_trio = TRIO_VARYING) const final override;
131 bool op1_range (frange &r, tree type,
132 const irange &lhs, const frange &op2,
133 relation_trio = TRIO_VARYING) const final override;
134
135 bool op2_range (irange &r, tree type,
136 const irange &lhs, const irange &val,
137 relation_trio = TRIO_VARYING) const final override;
138 bool op2_range (prange &r, tree type,
139 const irange &lhs, const prange &val,
140 relation_trio = TRIO_VARYING) const final override;
141 bool op2_range (frange &r, tree type,
142 const irange &lhs, const frange &op1,
143 relation_trio rel = TRIO_VARYING) const final override;
144
145 relation_kind op1_op2_relation (const irange &lhs, const irange &,
146 const irange &) const final override;
147 relation_kind op1_op2_relation (const irange &lhs, const prange &,
148 const prange &) const final override;
149 relation_kind op1_op2_relation (const irange &lhs, const frange &,
150 const frange &) const final override;
151 void update_bitmask (irange &r, const irange &lh,
152 const irange &rh) const final override;
153 // Check op1 and op2 for compatibility.
154 bool operand_check_p (tree t1, tree t2, tree t3) const final override
155 { return range_compatible_p (t2, t3) && INTEGRAL_TYPE_P (t1); }
156};
157
159{
160public:
166 bool fold_range (irange &r, tree type,
167 const irange &op1, const irange &op2,
168 relation_trio = TRIO_VARYING) const final override;
169 bool fold_range (irange &r, tree type,
170 const prange &op1, const prange &op2,
171 relation_trio rel = TRIO_VARYING) const final override;
172 bool fold_range (irange &r, tree type,
173 const frange &op1, const frange &op2,
174 relation_trio rel = TRIO_VARYING) const final override;
175
176 bool op1_range (irange &r, tree type,
177 const irange &lhs, const irange &op2,
178 relation_trio = TRIO_VARYING) const final override;
179 bool op1_range (prange &r, tree type,
180 const irange &lhs, const prange &op2,
181 relation_trio = TRIO_VARYING) const final override;
182 bool op1_range (frange &r, tree type,
183 const irange &lhs, const frange &op2,
184 relation_trio = TRIO_VARYING) const final override;
185
186 bool op2_range (irange &r, tree type,
187 const irange &lhs, const irange &op1,
188 relation_trio = TRIO_VARYING) const final override;
189 bool op2_range (prange &r, tree type,
190 const irange &lhs, const prange &op1,
191 relation_trio = TRIO_VARYING) const final override;
192 bool op2_range (frange &r, tree type,
193 const irange &lhs, const frange &op1,
194 relation_trio = TRIO_VARYING) const final override;
195
196 relation_kind op1_op2_relation (const irange &lhs, const irange &,
197 const irange &) const final override;
198 relation_kind op1_op2_relation (const irange &lhs, const prange &,
199 const prange &) const final override;
200 relation_kind op1_op2_relation (const irange &lhs, const frange &,
201 const frange &) const final override;
202 void update_bitmask (irange &r, const irange &lh,
203 const irange &rh) const final override;
204 // Check op1 and op2 for compatibility.
205 bool operand_check_p (tree t0, tree t1, tree t2) const final override
206 { return range_compatible_p (t1, t2) && INTEGRAL_TYPE_P (t0); }
207};
208
210{
211public:
217 bool fold_range (irange &r, tree type,
218 const irange &op1, const irange &op2,
219 relation_trio = TRIO_VARYING) const final override;
220 bool fold_range (irange &r, tree type,
221 const prange &op1, const prange &op2,
222 relation_trio = TRIO_VARYING) const final override;
223 bool fold_range (irange &r, tree type,
224 const frange &op1, const frange &op2,
225 relation_trio = TRIO_VARYING) const final override;
226 bool op1_range (irange &r, tree type,
227 const irange &lhs, const irange &op2,
228 relation_trio = TRIO_VARYING) const final override;
229 bool op1_range (prange &r, tree type,
230 const irange &lhs, const prange &op2,
231 relation_trio = TRIO_VARYING) const final override;
232 bool op1_range (frange &r, tree type,
233 const irange &lhs, const frange &op2,
234 relation_trio = TRIO_VARYING) const final override;
235 bool op2_range (irange &r, tree type,
236 const irange &lhs, const irange &op1,
237 relation_trio = TRIO_VARYING) const final override;
238 bool op2_range (prange &r, tree type,
239 const irange &lhs, const prange &op1,
240 relation_trio = TRIO_VARYING) const final override;
241 bool op2_range (frange &r, tree type,
242 const irange &lhs, const frange &op1,
243 relation_trio = TRIO_VARYING) const final override;
244 relation_kind op1_op2_relation (const irange &lhs, const irange &,
245 const irange &) const final override;
246 relation_kind op1_op2_relation (const irange &lhs, const prange &,
247 const prange &) const final override;
248 relation_kind op1_op2_relation (const irange &lhs, const frange &,
249 const frange &) const final override;
250 void update_bitmask (irange &r, const irange &lh,
251 const irange &rh) const final override;
252 // Check op1 and op2 for compatibility.
253 bool operand_check_p (tree t1, tree t2, tree t3) const final override
254 { return range_compatible_p (t2, t3) && INTEGRAL_TYPE_P (t1); }
255};
256
258{
259public:
265 bool fold_range (irange &r, tree type,
266 const irange &op1, const irange &op2,
267 relation_trio = TRIO_VARYING) const final override;
268 bool fold_range (irange &r, tree type,
269 const prange &op1, const prange &op2,
270 relation_trio = TRIO_VARYING) const final override;
271 bool fold_range (irange &r, tree type,
272 const frange &op1, const frange &op2,
273 relation_trio rel = TRIO_VARYING) const final override;
274
275 bool op1_range (irange &r, tree type,
276 const irange &lhs, const irange &op2,
277 relation_trio = TRIO_VARYING) const final override;
278 bool op1_range (prange &r, tree type,
279 const irange &lhs, const prange &op2,
280 relation_trio = TRIO_VARYING) const final override;
281 bool op1_range (frange &r, tree type,
282 const irange &lhs, const frange &op2,
283 relation_trio rel = TRIO_VARYING) const final override;
284
285 bool op2_range (irange &r, tree type,
286 const irange &lhs, const irange &op1,
287 relation_trio = TRIO_VARYING) const final override;
288 bool op2_range (prange &r, tree type,
289 const irange &lhs, const prange &op1,
290 relation_trio = TRIO_VARYING) const final override;
291 bool op2_range (frange &r, tree type,
292 const irange &lhs, const frange &op1,
293 relation_trio rel = TRIO_VARYING) const final override;
294
295 relation_kind op1_op2_relation (const irange &lhs, const irange &,
296 const irange &) const final override;
297 relation_kind op1_op2_relation (const irange &lhs, const prange &,
298 const prange &) const final override;
299 relation_kind op1_op2_relation (const irange &lhs, const frange &,
300 const frange &) const final override;
301 void update_bitmask (irange &r, const irange &lh,
302 const irange &rh) const final override;
303 // Check op1 and op2 for compatibility.
304 bool operand_check_p (tree t1, tree t2, tree t3) const final override
305 { return range_compatible_p (t2, t3) && INTEGRAL_TYPE_P (t1); }
306};
307
309{
310public:
316 bool fold_range (irange &r, tree type,
317 const irange &op1, const irange &op2,
318 relation_trio = TRIO_VARYING) const final override;
319 bool fold_range (irange &r, tree type,
320 const prange &op1, const prange &op2,
321 relation_trio = TRIO_VARYING) const final override;
322 bool fold_range (irange &r, tree type,
323 const frange &op1, const frange &op2,
324 relation_trio = TRIO_VARYING) const final override;
325
326 bool op1_range (irange &r, tree type,
327 const irange &lhs, const irange &op2,
328 relation_trio = TRIO_VARYING) const final override;
329 bool op1_range (prange &r, tree type,
330 const irange &lhs, const prange &op2,
331 relation_trio = TRIO_VARYING) const final override;
332 bool op1_range (frange &r, tree type,
333 const irange &lhs, const frange &op2,
334 relation_trio = TRIO_VARYING) const final override;
335
336 bool op2_range (irange &r, tree type,
337 const irange &lhs, const irange &op1,
338 relation_trio = TRIO_VARYING) const final override;
339 bool op2_range (prange &r, tree type,
340 const irange &lhs, const prange &op1,
341 relation_trio = TRIO_VARYING) const final override;
342 bool op2_range (frange &r, tree type,
343 const irange &lhs, const frange &op1,
344 relation_trio = TRIO_VARYING) const final override;
345 relation_kind op1_op2_relation (const irange &lhs, const irange &,
346 const irange &) const final override;
347 relation_kind op1_op2_relation (const irange &lhs, const prange &,
348 const prange &) const final override;
349 relation_kind op1_op2_relation (const irange &lhs, const frange &,
350 const frange &) const final override;
351 void update_bitmask (irange &r, const irange &lh,
352 const irange &rh) const final override;
353 // Check op1 and op2 for compatibility.
354 bool operand_check_p (tree t1, tree t2, tree t3) const final override
355 { return range_compatible_p (t2, t3) && INTEGRAL_TYPE_P (t1); }
356};
357
359{
360public:
366 bool fold_range (irange &r, tree type,
367 const irange &op1, const irange &op2,
368 relation_trio = TRIO_VARYING) const final override;
369 bool fold_range (irange &r, tree type,
370 const prange &op1, const prange &op2,
371 relation_trio = TRIO_VARYING) const final override;
372 bool fold_range (irange &r, tree type,
373 const frange &op1, const frange &op2,
374 relation_trio = TRIO_VARYING) const final override;
375
376 bool op1_range (irange &r, tree type,
377 const irange &lhs, const irange &op2,
378 relation_trio = TRIO_VARYING) const final override;
379 bool op1_range (prange &r, tree type,
380 const irange &lhs, const prange &op2,
381 relation_trio = TRIO_VARYING) const final override;
382 bool op1_range (frange &r, tree type,
383 const irange &lhs, const frange &op2,
384 relation_trio = TRIO_VARYING) const final override;
385
386 bool op2_range (irange &r, tree type,
387 const irange &lhs, const irange &op1,
388 relation_trio = TRIO_VARYING) const final override;
389 bool op2_range (prange &r, tree type,
390 const irange &lhs, const prange &op1,
391 relation_trio = TRIO_VARYING) const final override;
392 bool op2_range (frange &r, tree type,
393 const irange &lhs, const frange &op1,
394 relation_trio = TRIO_VARYING) const final override;
395
396 relation_kind op1_op2_relation (const irange &lhs, const irange &,
397 const irange &) const final override;
398 relation_kind op1_op2_relation (const irange &lhs, const prange &,
399 const prange &) const final override;
400 relation_kind op1_op2_relation (const irange &lhs, const frange &,
401 const frange &) const final override;
402 void update_bitmask (irange &r, const irange &lh,
403 const irange &rh) const final override;
404 // Check op1 and op2 for compatibility.
405 bool operand_check_p (tree t1, tree t2, tree t3) const final override
406 { return range_compatible_p (t2, t3) && INTEGRAL_TYPE_P (t1); }
407};
408
410{
411public:
415 bool fold_range (irange &r, tree type,
416 const irange &op1, const irange &op2,
417 relation_trio rel = TRIO_VARYING) const final override;
418 bool fold_range (prange &r, tree type,
419 const prange &op1, const prange &op2,
420 relation_trio rel = TRIO_VARYING) const final override;
422 const frange &op1, const frange &op2 ATTRIBUTE_UNUSED,
423 relation_trio = TRIO_VARYING) const final override;
424 bool op1_range (irange &r, tree type,
425 const irange &lhs, const irange &op2,
426 relation_trio rel = TRIO_VARYING) const final override;
427 bool op1_range (prange &r, tree type,
428 const prange &lhs, const prange &op2,
429 relation_trio rel = TRIO_VARYING) const final override;
431 const frange &lhs, const frange &op2 ATTRIBUTE_UNUSED,
432 relation_trio = TRIO_VARYING) const final override;
434 const irange &op1, const irange &op2,
435 relation_kind rel) const final override;
437 const prange &op1, const prange &op2,
438 relation_kind rel) const final override;
439};
440
442{
443public:
445 bool fold_range (irange &r, tree type,
446 const irange &op1, const irange &op2,
447 relation_trio rel = TRIO_VARYING) const final override;
448 bool fold_range (prange &r, tree type,
449 const prange &op1, const prange &op2,
450 relation_trio rel = TRIO_VARYING) const final override;
451 bool fold_range (frange &r, tree type,
452 const frange &op1, const frange &op2,
453 relation_trio = TRIO_VARYING) const final override;
454};
455
456
458{
459public:
464 bool fold_range (irange &r, tree type,
465 const irange &op1, const irange &op2,
466 relation_trio rel = TRIO_VARYING) const final override;
467 bool fold_range (prange &r, tree type,
468 const prange &op1, const prange &op2,
469 relation_trio rel = TRIO_VARYING) const final override;
470 bool fold_range (irange &r, tree type,
471 const prange &op1, const irange &op2,
472 relation_trio rel = TRIO_VARYING) const final override;
473 bool fold_range (prange &r, tree type,
474 const irange &op1, const prange &op2,
475 relation_trio rel = TRIO_VARYING) const final override;
476 bool op1_range (irange &r, tree type,
477 const irange &lhs, const irange &op2,
478 relation_trio rel = TRIO_VARYING) const final override;
479 bool op1_range (prange &r, tree type,
480 const prange &lhs, const prange &op2,
481 relation_trio rel = TRIO_VARYING) const final override;
482 bool op1_range (irange &r, tree type,
483 const prange &lhs, const irange &op2,
484 relation_trio rel = TRIO_VARYING) const final override;
485 bool op1_range (prange &r, tree type,
486 const irange &lhs, const prange &op2,
487 relation_trio rel = TRIO_VARYING) const final override;
489 const irange &op1, const irange &op2,
490 relation_kind) const final override;
492 const prange &op1, const prange &op2,
493 relation_kind) const final override;
495 const irange &op1, const irange &op2,
496 relation_kind) const final override;
498 const prange &op1, const prange &op2,
499 relation_kind) const final override;
500 void update_bitmask (irange &r, const irange &lh,
501 const irange &rh) const final override;
502private:
503 bool truncating_cast_p (const irange &inner, const irange &outer) const;
504 bool inside_domain_p (const wide_int &min, const wide_int &max,
505 const irange &outer) const;
506 void fold_pair (irange &r, unsigned index, const irange &inner,
507 const irange &outer) const;
508};
509
511{
512public:
518 bool op1_range (irange &r, tree type,
519 const irange &lhs, const irange &op2,
520 relation_trio) const final override;
521 bool op1_range (frange &r, tree type,
522 const frange &lhs, const frange &op2,
523 relation_trio = TRIO_VARYING) const final override;
524
525 bool op2_range (irange &r, tree type,
526 const irange &lhs, const irange &op1,
527 relation_trio) const final override;
528 bool op2_range (frange &r, tree type,
529 const frange &lhs, const frange &op1,
530 relation_trio = TRIO_VARYING) const final override;
531
532 relation_kind lhs_op1_relation (const irange &lhs, const irange &op1,
533 const irange &op2,
534 relation_kind rel) const final override;
535 relation_kind lhs_op2_relation (const irange &lhs, const irange &op1,
536 const irange &op2,
537 relation_kind rel) const final override;
538 void update_bitmask (irange &r, const irange &lh,
539 const irange &rh) const final override;
540
541 virtual bool overflow_free_p (const irange &lh, const irange &rh,
543 // Check compatibility of all operands.
544 bool operand_check_p (tree t1, tree t2, tree t3) const final override
545 { return range_compatible_p (t1, t2) && range_compatible_p (t1, t3); }
546private:
547 void wi_fold (irange &r, tree type, const wide_int &lh_lb,
548 const wide_int &lh_ub, const wide_int &rh_lb,
549 const wide_int &rh_ub) const final override;
550 void rv_fold (frange &r, tree type,
553 relation_kind) const final override;
554};
555
557{
558 public:
562 bool fold_range (frange &r, tree type,
563 const frange &op1, const frange &,
564 relation_trio = TRIO_VARYING) const final override;
565
566 bool op1_range (irange &r, tree type, const irange &lhs,
567 const irange &op2, relation_trio) const final override;
568 bool op1_range (frange &r, tree type,
569 const frange &lhs, const frange &op2,
570 relation_trio rel = TRIO_VARYING) const final override;
571 void update_bitmask (irange &r, const irange &lh,
572 const irange &rh) const final override;
573 // Check compatibility of LHS and op1.
574 bool operand_check_p (tree t1, tree t2, tree) const final override
575 { return range_compatible_p (t1, t2); }
576private:
577 void wi_fold (irange &r, tree type, const wide_int &lh_lb,
578 const wide_int &lh_ub, const wide_int &rh_lb,
579 const wide_int &rh_ub) const final override;
580
581};
582
584{
585public:
592 bool op1_range (irange &r, tree type,
593 const irange &lhs, const irange &op2,
594 relation_trio) const final override;
595 bool op1_range (frange &r, tree type,
596 const frange &lhs, const frange &op2,
597 relation_trio = TRIO_VARYING) const final override;
598
599 bool op2_range (irange &r, tree type,
600 const irange &lhs, const irange &op1,
601 relation_trio) const final override;
602 bool op2_range (frange &r, tree type,
603 const frange &lhs,
604 const frange &op1,
605 relation_trio = TRIO_VARYING) const final override;
606
608 const irange &op1, const irange &op2,
609 relation_kind rel) const final override;
611 const irange &op1_range,
612 const irange &op2_range,
613 relation_kind rel) const final override;
614 void update_bitmask (irange &r, const irange &lh,
615 const irange &rh) const final override;
616
617 virtual bool overflow_free_p (const irange &lh, const irange &rh,
619 // Check compatibility of all operands.
620 bool operand_check_p (tree t1, tree t2, tree t3) const final override
621 { return range_compatible_p (t1, t2) && range_compatible_p (t1, t3); }
622private:
623 void wi_fold (irange &r, tree type, const wide_int &lh_lb,
624 const wide_int &lh_ub, const wide_int &rh_lb,
625 const wide_int &rh_ub) const final override;
626 void rv_fold (frange &r, tree type,
629 relation_kind) const final override;
630};
631
633{
634 public:
637 bool fold_range (irange &r, tree type,
638 const irange &op1, const irange &op2,
639 relation_trio rel = TRIO_VARYING) const final override;
640 bool fold_range (frange &r, tree type,
641 const frange &op1, const frange &op2,
642 relation_trio = TRIO_VARYING) const final override;
643
644 bool op1_range (irange &r, tree type,
645 const irange &lhs, const irange &op2,
646 relation_trio rel = TRIO_VARYING) const final override;
647 bool op1_range (frange &r, tree type,
648 const frange &lhs, const frange &op2,
649 relation_trio rel = TRIO_VARYING) const final override;
650 // Check compatibility of LHS and op1.
651 bool operand_check_p (tree t1, tree t2, tree) const final override
652 { return range_compatible_p (t1, t2); }
653};
654
655
657{
658public:
659 virtual bool wi_op_overflows (wide_int &r,
660 tree type,
661 const wide_int &,
662 const wide_int &) const = 0;
664 const wide_int &lh_lb,
665 const wide_int &lh_ub,
666 const wide_int &rh_lb,
667 const wide_int &rh_ub) const;
668};
669
671{
672public:
676 bool op1_range (irange &r, tree type,
677 const irange &lhs, const irange &op2,
678 relation_trio) const final override;
679 bool op1_range (frange &r, tree type,
680 const frange &lhs, const frange &op2,
681 relation_trio = TRIO_VARYING) const final override;
682
683 bool op2_range (irange &r, tree type,
684 const irange &lhs, const irange &op1,
685 relation_trio) const final override;
686 bool op2_range (frange &r, tree type,
687 const frange &lhs, const frange &op1,
688 relation_trio = TRIO_VARYING) const final override;
689
690 void update_bitmask (irange &r, const irange &lh,
691 const irange &rh) const final override;
692
693 void wi_fold (irange &r, tree type, const wide_int &lh_lb,
694 const wide_int &lh_ub, const wide_int &rh_lb,
695 const wide_int &rh_ub) const final override;
696 bool wi_op_overflows (wide_int &res, tree type, const wide_int &w0,
697 const wide_int &w1) const final override;
698
699 void rv_fold (frange &r, tree type,
702 relation_kind kind) const final override;
703 virtual bool overflow_free_p (const irange &lh, const irange &rh,
705 // Check compatibility of all operands.
706 bool operand_check_p (tree t1, tree t2, tree t3) const final override
707 { return range_compatible_p (t1, t2) && range_compatible_p (t1, t3); }
708};
709
711{
712public:
715 bool fold_range (irange &r, tree type,
716 const irange &op1, const irange &op2,
717 relation_trio rel = TRIO_VARYING) const final override;
718 bool op1_range (irange &r, tree type,
719 const irange &lhs, const irange &op2,
720 relation_trio rel = TRIO_VARYING) const final override;
721 bool op1_range (prange &r, tree type,
722 const prange &lhs, const prange &op2,
723 relation_trio rel = TRIO_VARYING) const final override;
724};
725
727{
728public:
732 bool fold_range (irange &r, tree type,
733 const irange &lh, const irange &rh,
734 relation_trio rel = TRIO_VARYING) const final override;
735 bool op1_range (irange &r, tree type,
736 const irange &lhs, const irange &op2,
737 relation_trio rel = TRIO_VARYING) const final override;
738 void update_bitmask (irange &r, const irange &lh,
739 const irange &rh) const final override;
740 // Check compatibility of all operands.
741 bool operand_check_p (tree t1, tree t2, tree t3) const final override
742 { return range_compatible_p (t1, t2) && range_compatible_p (t1, t3); }
743};
744
746{
747public:
752 bool op1_range (irange &r, tree type,
753 const irange &lhs, const irange &op2,
754 relation_trio rel = TRIO_VARYING) const final override;
755 bool op2_range (irange &r, tree type,
756 const irange &lhs, const irange &op1,
757 relation_trio rel = TRIO_VARYING) const final override;
759 tree type,
760 const irange &op1_range,
761 const irange &op2_range,
762 relation_kind rel) const final override;
763 void update_bitmask (irange &r, const irange &lh,
764 const irange &rh) const final override;
765 // Check compatibility of all operands.
766 bool operand_check_p (tree t1, tree t2, tree t3) const final override
767 { return range_compatible_p (t1, t2) && range_compatible_p (t1, t3); }
768private:
769 void wi_fold (irange &r, tree type, const wide_int &lh_lb,
770 const wide_int &lh_ub, const wide_int &rh_lb,
771 const wide_int &rh_ub) const final override;
772};
773
775{
776public:
782 bool fold_range (prange &r, tree type,
783 const prange &op1,
784 const prange &op2,
785 relation_trio) const final override;
786 bool op1_range (irange &r, tree type,
787 const irange &lhs, const irange &op2,
788 relation_trio rel = TRIO_VARYING) const override;
789 bool op2_range (irange &r, tree type,
790 const irange &lhs, const irange &op1,
791 relation_trio rel = TRIO_VARYING) const override;
793 const irange &op1, const irange &op2,
794 relation_kind) const override;
795 void update_bitmask (irange &r, const irange &lh,
796 const irange &rh) const override;
797 // Check compatibility of all operands.
798 bool operand_check_p (tree t1, tree t2, tree t3) const final override
799 { return range_compatible_p (t1, t2) && range_compatible_p (t1, t3); }
800protected:
801 void wi_fold (irange &r, tree type, const wide_int &lh_lb,
802 const wide_int &lh_ub, const wide_int &rh_lb,
803 const wide_int &rh_ub) const override;
805 const irange &lhs,
806 const irange &op2) const;
807};
808
810{
811public:
815 bool op1_range (irange &r, tree type,
816 const irange &lhs, const irange &op2,
817 relation_trio rel = TRIO_VARYING) const override;
818 bool op2_range (irange &r, tree type,
819 const irange &lhs, const irange &op1,
820 relation_trio rel = TRIO_VARYING) const override;
821 void update_bitmask (irange &r, const irange &lh,
822 const irange &rh) const override;
823 // Check compatibility of all operands.
824 bool operand_check_p (tree t1, tree t2, tree t3) const final override
825 { return range_compatible_p (t1, t2) && range_compatible_p (t1, t3); }
826protected:
827 void wi_fold (irange &r, tree type, const wide_int &lh_lb,
828 const wide_int &lh_ub, const wide_int &rh_lb,
829 const wide_int &rh_ub) const override;
830};
831
833{
834public:
837 bool fold_range (prange &r, tree type,
838 const prange &op1,
839 const prange &op2,
840 relation_trio) const final override;
841 void update_bitmask (irange &r, const irange &lh,
842 const irange &rh) const override;
843 // Check compatibility of all operands.
844 bool operand_check_p (tree t1, tree t2, tree t3) const final override
845 { return range_compatible_p (t1, t2) && range_compatible_p (t1, t3); }
846protected:
847 void wi_fold (irange &r, tree type, const wide_int &lh_lb,
848 const wide_int &lh_ub, const wide_int &rh_lb,
849 const wide_int &rh_ub) const override;
850};
851
853{
854public:
857 bool fold_range (prange &r, tree type,
858 const prange &op1,
859 const prange &op2,
860 relation_trio) const final override;
861 void update_bitmask (irange &r, const irange &lh,
862 const irange &rh) const override;
863 // Check compatibility of all operands.
864 bool operand_check_p (tree t1, tree t2, tree t3) const final override
865 { return range_compatible_p (t1, t2) && range_compatible_p (t1, t3); }
866protected:
867 void wi_fold (irange &r, tree type, const wide_int &lh_lb,
868 const wide_int &lh_ub, const wide_int &rh_lb,
869 const wide_int &rh_ub) const override;
870};
871#endif // GCC_RANGE_OP_MIXED_H
Definition range-op-mixed.h:657
void wi_cross_product(irange &r, tree type, const wide_int &lh_lb, const wide_int &lh_ub, const wide_int &rh_lb, const wide_int &rh_ub) const
Definition range-op.cc:2158
virtual bool wi_op_overflows(wide_int &r, tree type, const wide_int &, const wide_int &) const =0
Definition value-range.h:527
Definition value-range.h:273
Definition range-op-mixed.h:557
void update_bitmask(irange &r, const irange &lh, const irange &rh) const final override
Definition range-op.cc:4384
bool fold_range(frange &r, tree type, const frange &op1, const frange &, relation_trio=TRIO_VARYING) const final override
Definition range-op-float.cc:1525
bool operand_check_p(tree t1, tree t2, tree) const final override
Definition range-op-mixed.h:574
bool op1_range(irange &r, tree type, const irange &lhs, const irange &op2, relation_trio) const final override
Definition range-op.cc:4352
void wi_fold(irange &r, tree type, const wide_int &lh_lb, const wide_int &lh_ub, const wide_int &rh_lb, const wide_int &rh_ub) const final override
Definition range-op.cc:4278
Definition range-op-mixed.h:711
bool fold_range(irange &r, tree type, const irange &op1, const irange &op2, relation_trio rel=TRIO_VARYING) const final override
Definition range-op.cc:4471
bool op1_range(irange &r, tree type, const irange &lhs, const irange &op2, relation_trio rel=TRIO_VARYING) const final override
Definition range-op.cc:4490
Definition range-op-mixed.h:775
void update_bitmask(irange &r, const irange &lh, const irange &rh) const override
Definition range-op.cc:3254
bool op2_range(irange &r, tree type, const irange &lhs, const irange &op1, relation_trio rel=TRIO_VARYING) const override
Definition range-op.cc:3666
bool op1_range(irange &r, tree type, const irange &lhs, const irange &op2, relation_trio rel=TRIO_VARYING) const override
Definition range-op.cc:3623
bool operand_check_p(tree t1, tree t2, tree t3) const final override
Definition range-op-mixed.h:798
bool fold_range(prange &r, tree type, const prange &op1, const prange &op2, relation_trio) const final override
Definition range-op-ptr.cc:1104
relation_kind lhs_op1_relation(const irange &lhs, const irange &op1, const irange &op2, relation_kind) const override
Definition range-op.cc:3286
void wi_fold(irange &r, tree type, const wide_int &lh_lb, const wide_int &lh_ub, const wide_int &rh_lb, const wide_int &rh_ub) const override
Definition range-op.cc:3439
void simple_op1_range_solver(irange &r, tree type, const irange &lhs, const irange &op2) const
Definition range-op.cc:3544
Definition range-op-mixed.h:727
bool fold_range(irange &r, tree type, const irange &lh, const irange &rh, relation_trio rel=TRIO_VARYING) const final override
Definition range-op.cc:4170
bool operand_check_p(tree t1, tree t2, tree t3) const final override
Definition range-op-mixed.h:741
bool op1_range(irange &r, tree type, const irange &lhs, const irange &op2, relation_trio rel=TRIO_VARYING) const final override
Definition range-op.cc:4188
void update_bitmask(irange &r, const irange &lh, const irange &rh) const final override
Definition range-op.cc:4203
Definition range-op-mixed.h:810
bool op2_range(irange &r, tree type, const irange &lhs, const irange &op1, relation_trio rel=TRIO_VARYING) const override
Definition range-op.cc:3829
bool op1_range(irange &r, tree type, const irange &lhs, const irange &op2, relation_trio rel=TRIO_VARYING) const override
Definition range-op.cc:3808
void update_bitmask(irange &r, const irange &lh, const irange &rh) const override
Definition range-op.cc:3745
bool operand_check_p(tree t1, tree t2, tree t3) const final override
Definition range-op-mixed.h:824
void wi_fold(irange &r, tree type, const wide_int &lh_lb, const wide_int &lh_ub, const wide_int &rh_lb, const wide_int &rh_ub) const override
Definition range-op.cc:3752
Definition range-op-mixed.h:746
bool op1_op2_relation_effect(irange &lhs_range, tree type, const irange &op1_range, const irange &op2_range, relation_kind rel) const final override
Definition range-op.cc:3891
void update_bitmask(irange &r, const irange &lh, const irange &rh) const final override
Definition range-op.cc:3838
bool op1_range(irange &r, tree type, const irange &lhs, const irange &op2, relation_trio rel=TRIO_VARYING) const final override
Definition range-op.cc:3919
bool operand_check_p(tree t1, tree t2, tree t3) const final override
Definition range-op-mixed.h:766
void wi_fold(irange &r, tree type, const wide_int &lh_lb, const wide_int &lh_ub, const wide_int &rh_lb, const wide_int &rh_ub) const final override
Definition range-op.cc:3845
bool op2_range(irange &r, tree type, const irange &lhs, const irange &op1, relation_trio rel=TRIO_VARYING) const final override
Definition range-op.cc:3957
Definition range-op-mixed.h:458
bool op1_range(irange &r, tree type, const irange &lhs, const irange &op2, relation_trio rel=TRIO_VARYING) const final override
Definition range-op.cc:3062
bool inside_domain_p(const wide_int &min, const wide_int &max, const irange &outer) const
Definition range-op.cc:2971
void fold_pair(irange &r, unsigned index, const irange &inner, const irange &outer) const
Definition range-op.cc:2988
bool fold_range(irange &r, tree type, const irange &op1, const irange &op2, relation_trio rel=TRIO_VARYING) const final override
Definition range-op.cc:3026
bool truncating_cast_p(const irange &inner, const irange &outer) const
Definition range-op.cc:2962
relation_kind lhs_op1_relation(const irange &lhs, const irange &op1, const irange &op2, relation_kind) const final override
Definition range-op.cc:2933
void update_bitmask(irange &r, const irange &lh, const irange &rh) const final override
Definition range-op.cc:3055
Definition range-op-mixed.h:442
bool fold_range(irange &r, tree type, const irange &op1, const irange &op2, relation_trio rel=TRIO_VARYING) const final override
Definition range-op.cc:4211
Definition range-op-mixed.h:108
bool operand_check_p(tree t1, tree t2, tree t3) const final override
Definition range-op-mixed.h:154
bool op2_range(irange &r, tree type, const irange &lhs, const irange &val, relation_trio=TRIO_VARYING) const final override
Definition range-op.cc:1102
relation_kind op1_op2_relation(const irange &lhs, const irange &, const irange &) const final override
Definition range-op.cc:1014
void update_bitmask(irange &r, const irange &lh, const irange &rh) const final override
Definition range-op.cc:1005
bool fold_range(irange &r, tree type, const irange &op1, const irange &op2, relation_trio=TRIO_VARYING) const final override
Definition range-op.cc:1031
bool op1_range(irange &r, tree type, const irange &lhs, const irange &val, relation_trio=TRIO_VARYING) const final override
Definition range-op.cc:1070
Definition range-op-mixed.h:359
bool op1_range(irange &r, tree type, const irange &lhs, const irange &op2, relation_trio=TRIO_VARYING) const final override
Definition range-op.cc:1622
bool operand_check_p(tree t1, tree t2, tree t3) const final override
Definition range-op-mixed.h:405
bool fold_range(irange &r, tree type, const irange &op1, const irange &op2, relation_trio=TRIO_VARYING) const final override
Definition range-op.cc:1601
relation_kind op1_op2_relation(const irange &lhs, const irange &, const irange &) const final override
Definition range-op.cc:1584
bool op2_range(irange &r, tree type, const irange &lhs, const irange &op1, relation_trio=TRIO_VARYING) const final override
Definition range-op.cc:1647
void update_bitmask(irange &r, const irange &lh, const irange &rh) const final override
Definition range-op.cc:1575
Definition range-op-mixed.h:309
relation_kind op1_op2_relation(const irange &lhs, const irange &, const irange &) const final override
Definition range-op.cc:1488
void update_bitmask(irange &r, const irange &lh, const irange &rh) const final override
Definition range-op.cc:1479
bool fold_range(irange &r, tree type, const irange &op1, const irange &op2, relation_trio=TRIO_VARYING) const final override
Definition range-op.cc:1505
bool operand_check_p(tree t1, tree t2, tree t3) const final override
Definition range-op-mixed.h:354
bool op2_range(irange &r, tree type, const irange &lhs, const irange &op1, relation_trio=TRIO_VARYING) const final override
Definition range-op.cc:1549
bool op1_range(irange &r, tree type, const irange &lhs, const irange &op2, relation_trio=TRIO_VARYING) const final override
Definition range-op.cc:1525
Definition range-op-mixed.h:410
relation_kind lhs_op1_relation(const irange &lhs, const irange &op1, const irange &op2, relation_kind rel) const final override
Definition range-op.cc:4224
bool fold_range(irange &r, tree type, const irange &op1, const irange &op2, relation_trio rel=TRIO_VARYING) const final override
Definition range-op.cc:4236
bool op1_range(irange &r, tree type, const irange &lhs, const irange &op2, relation_trio rel=TRIO_VARYING) const final override
Definition range-op.cc:4246
Definition range-op-mixed.h:258
bool op2_range(irange &r, tree type, const irange &lhs, const irange &op1, relation_trio=TRIO_VARYING) const final override
Definition range-op.cc:1453
void update_bitmask(irange &r, const irange &lh, const irange &rh) const final override
Definition range-op.cc:1381
bool fold_range(irange &r, tree type, const irange &op1, const irange &op2, relation_trio=TRIO_VARYING) const final override
Definition range-op.cc:1407
bool op1_range(irange &r, tree type, const irange &lhs, const irange &op2, relation_trio=TRIO_VARYING) const final override
Definition range-op.cc:1428
bool operand_check_p(tree t1, tree t2, tree t3) const final override
Definition range-op-mixed.h:304
relation_kind op1_op2_relation(const irange &lhs, const irange &, const irange &) const final override
Definition range-op.cc:1390
Definition range-op-mixed.h:210
bool operand_check_p(tree t1, tree t2, tree t3) const final override
Definition range-op-mixed.h:253
bool op1_range(irange &r, tree type, const irange &lhs, const irange &op2, relation_trio=TRIO_VARYING) const final override
Definition range-op.cc:1330
bool op2_range(irange &r, tree type, const irange &lhs, const irange &op1, relation_trio=TRIO_VARYING) const final override
Definition range-op.cc:1355
void update_bitmask(irange &r, const irange &lh, const irange &rh) const final override
Definition range-op.cc:1280
bool fold_range(irange &r, tree type, const irange &op1, const irange &op2, relation_trio=TRIO_VARYING) const final override
Definition range-op.cc:1306
relation_kind op1_op2_relation(const irange &lhs, const irange &, const irange &) const final override
Definition range-op.cc:1289
Definition range-op-mixed.h:853
bool operand_check_p(tree t1, tree t2, tree t3) const final override
Definition range-op-mixed.h:864
void update_bitmask(irange &r, const irange &lh, const irange &rh) const override
Definition range-op.cc:2126
void wi_fold(irange &r, tree type, const wide_int &lh_lb, const wide_int &lh_ub, const wide_int &rh_lb, const wide_int &rh_ub) const override
Definition range-op.cc:2133
bool fold_range(prange &r, tree type, const prange &op1, const prange &op2, relation_trio) const final override
Definition range-op-ptr.cc:1061
Definition range-op-mixed.h:833
bool fold_range(prange &r, tree type, const prange &op1, const prange &op2, relation_trio) const final override
Definition range-op-ptr.cc:1039
bool operand_check_p(tree t1, tree t2, tree t3) const final override
Definition range-op-mixed.h:844
void wi_fold(irange &r, tree type, const wide_int &lh_lb, const wide_int &lh_ub, const wide_int &rh_lb, const wide_int &rh_ub) const override
Definition range-op.cc:2114
void update_bitmask(irange &r, const irange &lh, const irange &rh) const override
Definition range-op.cc:2107
Definition range-op-mixed.h:584
virtual bool overflow_free_p(const irange &lh, const irange &rh, relation_trio=TRIO_VARYING) const
Definition range-op.cc:4566
bool operand_check_p(tree t1, tree t2, tree t3) const final override
Definition range-op-mixed.h:620
relation_kind lhs_op1_relation(const irange &lhs, const irange &op1, const irange &op2, relation_kind rel) const final override
Definition range-op.cc:1980
bool op1_op2_relation_effect(irange &lhs_range, tree type, const irange &op1_range, const irange &op2_range, relation_kind rel) const final override
Definition range-op.cc:2066
void wi_fold(irange &r, tree type, const wide_int &lh_lb, const wide_int &lh_ub, const wide_int &rh_lb, const wide_int &rh_ub) const final override
Definition range-op.cc:1964
bool op1_range(irange &r, tree type, const irange &lhs, const irange &op2, relation_trio) const final override
Definition range-op.cc:2076
void rv_fold(frange &r, tree type, const REAL_VALUE_TYPE &lh_lb, const REAL_VALUE_TYPE &lh_ub, const REAL_VALUE_TYPE &rh_lb, const REAL_VALUE_TYPE &rh_ub, relation_kind) const final override
Definition range-op-float.cc:2510
void update_bitmask(irange &r, const irange &lh, const irange &rh) const final override
Definition range-op.cc:1957
bool op2_range(irange &r, tree type, const irange &lhs, const irange &op1, relation_trio) const final override
Definition range-op.cc:2096
Definition range-op-mixed.h:671
bool op2_range(irange &r, tree type, const irange &lhs, const irange &op1, relation_trio) const final override
Definition range-op.cc:2227
void update_bitmask(irange &r, const irange &lh, const irange &rh) const final override
Definition range-op.cc:2200
bool operand_check_p(tree t1, tree t2, tree t3) const final override
Definition range-op-mixed.h:706
void wi_fold(irange &r, tree type, const wide_int &lh_lb, const wide_int &lh_ub, const wide_int &rh_lb, const wide_int &rh_ub) const final override
Definition range-op.cc:2255
bool op1_range(irange &r, tree type, const irange &lhs, const irange &op2, relation_trio) const final override
Definition range-op.cc:2207
virtual bool overflow_free_p(const irange &lh, const irange &rh, relation_trio=TRIO_VARYING) const
Definition range-op.cc:4597
void rv_fold(frange &r, tree type, const REAL_VALUE_TYPE &lh_lb, const REAL_VALUE_TYPE &lh_ub, const REAL_VALUE_TYPE &rh_lb, const REAL_VALUE_TYPE &rh_ub, relation_kind kind) const final override
Definition range-op-float.cc:2618
bool wi_op_overflows(wide_int &res, tree type, const wide_int &w0, const wide_int &w1) const final override
Definition range-op.cc:2235
Definition range-op-mixed.h:633
bool operand_check_p(tree t1, tree t2, tree) const final override
Definition range-op-mixed.h:651
bool fold_range(irange &r, tree type, const irange &op1, const irange &op2, relation_trio rel=TRIO_VARYING) const final override
Definition range-op.cc:4445
bool op1_range(irange &r, tree type, const irange &lhs, const irange &op2, relation_trio rel=TRIO_VARYING) const final override
Definition range-op.cc:4460
Definition range-op-mixed.h:159
bool op1_range(irange &r, tree type, const irange &lhs, const irange &op2, relation_trio=TRIO_VARYING) const final override
Definition range-op.cc:1178
bool operand_check_p(tree t0, tree t1, tree t2) const final override
Definition range-op-mixed.h:205
void update_bitmask(irange &r, const irange &lh, const irange &rh) const final override
Definition range-op.cc:1113
bool op2_range(irange &r, tree type, const irange &lhs, const irange &op1, relation_trio=TRIO_VARYING) const final override
Definition range-op.cc:1211
bool fold_range(irange &r, tree type, const irange &op1, const irange &op2, relation_trio=TRIO_VARYING) const final override
Definition range-op.cc:1139
relation_kind op1_op2_relation(const irange &lhs, const irange &, const irange &) const final override
Definition range-op.cc:1122
Definition range-op-mixed.h:511
bool op2_range(irange &r, tree type, const irange &lhs, const irange &op1, relation_trio) const final override
Definition range-op.cc:1882
bool operand_check_p(tree t1, tree t2, tree t3) const final override
Definition range-op-mixed.h:544
void rv_fold(frange &r, tree type, const REAL_VALUE_TYPE &lh_lb, const REAL_VALUE_TYPE &lh_ub, const REAL_VALUE_TYPE &rh_lb, const REAL_VALUE_TYPE &rh_ub, relation_kind) const final override
Definition range-op-float.cc:2447
relation_kind lhs_op1_relation(const irange &lhs, const irange &op1, const irange &op2, relation_kind rel) const final override
Definition range-op.cc:1683
bool op1_range(irange &r, tree type, const irange &lhs, const irange &op2, relation_trio) const final override
Definition range-op.cc:1862
void wi_fold(irange &r, tree type, const wide_int &lh_lb, const wide_int &lh_ub, const wide_int &rh_lb, const wide_int &rh_ub) const final override
Definition range-op.cc:1757
relation_kind lhs_op2_relation(const irange &lhs, const irange &op1, const irange &op2, relation_kind rel) const final override
Definition range-op.cc:1750
virtual bool overflow_free_p(const irange &lh, const irange &rh, relation_trio=TRIO_VARYING) const
Definition range-op.cc:4535
void update_bitmask(irange &r, const irange &lh, const irange &rh) const final override
Definition range-op.cc:1673
Definition value-range.h:384
Definition range-op.h:65
virtual bool op1_range(irange &r, tree type, const irange &lhs, const irange &op2, relation_trio=TRIO_VARYING) const
Definition range-op.cc:763
virtual bool op2_range(irange &r, tree type, const irange &lhs, const irange &op1, relation_trio=TRIO_VARYING) const
Definition range-op.cc:775
virtual bool fold_range(irange &r, tree type, const irange &lh, const irange &rh, relation_trio=TRIO_VARYING) const
Definition range-op.cc:690
virtual void update_bitmask(irange &, const irange &, const irange &) const
Definition range-op.cc:834
virtual relation_kind lhs_op2_relation(const irange &lhs, const irange &op1, const irange &op2, relation_kind=VREL_VARYING) const
Definition range-op.cc:796
virtual relation_kind lhs_op1_relation(const irange &lhs, const irange &op1, const irange &op2, relation_kind=VREL_VARYING) const
Definition range-op.cc:787
virtual relation_kind op1_op2_relation(const irange &lhs, const irange &op1, const irange &op2) const
Definition range-op.cc:805
virtual bool op1_op2_relation_effect(irange &lhs_range, tree type, const irange &op1_range, const irange &op2_range, relation_kind rel) const
Definition range-op.cc:815
Definition value-relation.h:331
relation_kind op1_op2()
Definition value-relation.h:405
Definition value-range.h:78
bool undefined_p() const
Definition value-range.h:1016
union tree_node * tree
Definition coretypes.h:97
tree_code
Definition genmatch.cc:347
T * ggc_alloc(ALONE_CXX_MEM_STAT_INFO)
Definition ggc.h:184
BINARY_PREDICATE le_p(const T1 &, const T2 &, signop)
hwi_with_prec zero(unsigned int)
Definition wide-int.h:2018
BINARY_PREDICATE ge_p(const T1 &, const T2 &, signop)
BINARY_PREDICATE eq_p(const T1 &, const T2 &)
poly_int< N, C > r
Definition poly-int.h:770
bool wi_includes_zero_p(tree type, const wide_int &wmin, const wide_int &wmax)
Definition range-op-mixed.h:34
bool empty_range_varying(vrange &r, tree type, const vrange &op1, const vrange &op2)
Definition range-op-mixed.h:59
bool wi_zero_p(tree type, const wide_int &wmin, const wide_int &wmax)
Definition range-op-mixed.h:43
bool_range_state get_bool_state(vrange &r, const vrange &lhs, tree val_type)
Definition range-op.cc:979
void update_known_bitmask(vrange &, tree_code, const vrange &, const vrange &)
Definition range-op.cc:498
bool relop_early_resolve(irange &r, tree type, const vrange &op1, const vrange &op2, relation_trio trio, relation_kind my_rel)
Definition range-op-mixed.h:77
bool minus_op1_op2_relation_effect(irange &lhs_range, tree type, const irange &, const irange &, relation_kind rel)
Definition range-op.cc:2000
bool_range_state
Definition range-op-mixed.h:50
@ BRS_FALSE
Definition range-op-mixed.h:50
@ BRS_EMPTY
Definition range-op-mixed.h:50
@ BRS_FULL
Definition range-op-mixed.h:50
@ BRS_TRUE
Definition range-op-mixed.h:50
int_range< 1 > range_false(tree type=boolean_type_node)
Definition range.h:39
int_range< 1 > range_true(tree type=boolean_type_node)
Definition range.h:30
#define REAL_VALUE_TYPE
Definition real.h:68
signop
Definition signop.h:28
Definition gengtype.h:252
#define TYPE_PRECISION(NODE)
Definition tree.h:2245
#define TYPE_SIGN(NODE)
Definition tree.h:952
#define INTEGRAL_TYPE_P(TYPE)
Definition tree.h:613
bool range_compatible_p(tree type1, tree type2)
Definition value-range.h:1764
relation_kind relation_intersect(relation_kind r1, relation_kind r2)
Definition value-relation.cc:105
relation_kind relation_union(relation_kind r1, relation_kind r2)
Definition value-relation.cc:142
enum relation_kind_t relation_kind
@ VREL_UNDEFINED
Definition value-relation.h:66
#define TRIO_VARYING
Definition value-relation.h:350