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 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707
|
/* Support routines for value ranges.
Copyright (C) 2019-2022 Free Software Foundation, Inc.
Contributed by Aldy Hernandez <aldyh@redhat.com> and
Andrew Macleod <amacleod@redhat.com>.
This file is part of GCC.
GCC is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3, or (at your option)
any later version.
GCC is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with GCC; see the file COPYING3. If not see
<http://www.gnu.org/licenses/>. */
#ifndef GCC_VALUE_RANGE_H
#define GCC_VALUE_RANGE_H
// Types of value ranges.
enum value_range_kind
{
/* Empty range. */
VR_UNDEFINED,
/* Range spans the entire domain. */
VR_VARYING,
/* Range is [MIN, MAX]. */
VR_RANGE,
/* Range is ~[MIN, MAX]. */
VR_ANTI_RANGE,
/* Range is a nice guy. */
VR_LAST
};
// Range of values that can be associated with an SSA_NAME.
//
// This is the base class without any storage.
class GTY((user)) irange
{
friend class irange_allocator;
public:
// In-place setters.
void set (tree, tree, value_range_kind = VR_RANGE);
void set_nonzero (tree);
void set_zero (tree);
void set_varying (tree type);
void set_undefined ();
// Range types.
static bool supports_type_p (tree);
tree type () const;
// Iteration over sub-ranges.
unsigned num_pairs () const;
wide_int lower_bound (unsigned = 0) const;
wide_int upper_bound (unsigned) const;
wide_int upper_bound () const;
// Predicates.
bool zero_p () const;
bool nonzero_p () const;
bool undefined_p () const;
bool varying_p () const;
bool singleton_p (tree *result = NULL) const;
bool contains_p (tree) const;
// In-place operators.
void union_ (const irange &);
void intersect (const irange &);
void intersect (const wide_int& lb, const wide_int& ub);
void invert ();
// Operator overloads.
irange& operator= (const irange &);
bool operator== (const irange &) const;
bool operator!= (const irange &r) const { return !(*this == r); }
// Misc methods.
bool fits_p (const irange &r) { return m_max_ranges >= r.num_pairs (); }
void dump (FILE * = stderr) const;
void debug () const;
// Deprecated legacy public methods.
enum value_range_kind kind () const; // DEPRECATED
tree min () const; // DEPRECATED
tree max () const; // DEPRECATED
bool symbolic_p () const; // DEPRECATED
bool constant_p () const; // DEPRECATED
void normalize_symbolics (); // DEPRECATED
void normalize_addresses (); // DEPRECATED
bool may_contain_p (tree) const; // DEPRECATED
void set (tree); // DEPRECATED
bool equal_p (const irange &) const; // DEPRECATED
void union_ (const class irange *); // DEPRECATED
void intersect (const irange *); // DEPRECATED
protected:
irange (tree *, unsigned);
// potential promotion to public?
tree tree_lower_bound (unsigned = 0) const;
tree tree_upper_bound (unsigned) const;
tree tree_upper_bound () const;
// In-place operators.
void irange_union (const irange &);
void irange_intersect (const irange &);
void irange_set (tree, tree);
void irange_set_anti_range (tree, tree);
void normalize_kind ();
bool legacy_mode_p () const;
bool legacy_equal_p (const irange &) const;
void legacy_union (irange *, const irange *);
void legacy_intersect (irange *, const irange *);
void verify_range ();
wide_int legacy_lower_bound (unsigned = 0) const;
wide_int legacy_upper_bound (unsigned) const;
int value_inside_range (tree) const;
bool maybe_anti_range () const;
void copy_to_legacy (const irange &);
void copy_legacy_to_multi_range (const irange &);
private:
friend void gt_ggc_mx (irange *);
friend void gt_pch_nx (irange *);
friend void gt_pch_nx (irange *, gt_pointer_operator, void *);
void irange_set_1bit_anti_range (tree, tree);
bool varying_compatible_p () const;
unsigned char m_num_ranges;
unsigned char m_max_ranges;
ENUM_BITFIELD(value_range_kind) m_kind : 8;
tree *m_base;
};
// Here we describe an irange with N pairs of ranges. The storage for
// the pairs is embedded in the class as an array.
template<unsigned N>
class GTY((user)) int_range : public irange
{
public:
int_range ();
int_range (tree, tree, value_range_kind = VR_RANGE);
int_range (tree type, const wide_int &, const wide_int &,
value_range_kind = VR_RANGE);
int_range (tree type);
int_range (const int_range &);
int_range (const irange &);
int_range& operator= (const int_range &);
private:
template <unsigned X> friend void gt_ggc_mx (int_range<X> *);
template <unsigned X> friend void gt_pch_nx (int_range<X> *);
template <unsigned X> friend void gt_pch_nx (int_range<X> *,
gt_pointer_operator, void *);
// ?? These stubs are for ipa-prop.cc which use a value_range in a
// hash_traits. hash-traits.h defines an extern of gt_ggc_mx (T &)
// instead of picking up the gt_ggc_mx (T *) version.
friend void gt_ggc_mx (int_range<1> *&);
friend void gt_pch_nx (int_range<1> *&);
tree m_ranges[N*2];
};
// This is a special int_range<1> with only one pair, plus
// VR_ANTI_RANGE magic to describe slightly more than can be described
// in one pair. It is described in the code as a "legacy range" (as
// opposed to multi-ranges which have multiple sub-ranges). It is
// provided for backward compatibility with code that has not been
// converted to multi-range irange's.
//
// There are copy operators to seamlessly copy to/fro multi-ranges.
typedef int_range<1> value_range;
// This is an "infinite" precision irange for use in temporary
// calculations.
typedef int_range<255> int_range_max;
// Returns true for an old-school value_range as described above.
inline bool
irange::legacy_mode_p () const
{
return m_max_ranges == 1;
}
extern bool range_has_numeric_bounds_p (const irange *);
extern bool ranges_from_anti_range (const value_range *,
value_range *, value_range *);
extern void dump_value_range (FILE *, const irange *);
extern bool vrp_val_is_min (const_tree);
extern bool vrp_val_is_max (const_tree);
extern bool vrp_operand_equal_p (const_tree, const_tree);
inline value_range_kind
irange::kind () const
{
return m_kind;
}
// Number of sub-ranges in a range.
inline unsigned
irange::num_pairs () const
{
if (m_kind == VR_ANTI_RANGE)
return constant_p () ? 2 : 1;
else
return m_num_ranges;
}
inline tree
irange::type () const
{
gcc_checking_assert (m_num_ranges > 0);
return TREE_TYPE (m_base[0]);
}
// Return the lower bound of a sub-range expressed as a tree. PAIR is
// the sub-range in question.
inline tree
irange::tree_lower_bound (unsigned pair) const
{
return m_base[pair * 2];
}
// Return the upper bound of a sub-range expressed as a tree. PAIR is
// the sub-range in question.
inline tree
irange::tree_upper_bound (unsigned pair) const
{
return m_base[pair * 2 + 1];
}
// Return the highest bound of a range expressed as a tree.
inline tree
irange::tree_upper_bound () const
{
gcc_checking_assert (m_num_ranges);
return tree_upper_bound (m_num_ranges - 1);
}
inline tree
irange::min () const
{
return tree_lower_bound (0);
}
inline tree
irange::max () const
{
if (m_num_ranges)
return tree_upper_bound ();
else
return NULL;
}
inline bool
irange::varying_compatible_p () const
{
if (m_num_ranges != 1)
return false;
tree l = m_base[0];
tree u = m_base[1];
tree t = TREE_TYPE (l);
if (m_kind == VR_VARYING && t == error_mark_node)
return true;
unsigned prec = TYPE_PRECISION (t);
signop sign = TYPE_SIGN (t);
if (INTEGRAL_TYPE_P (t))
return (wi::to_wide (l) == wi::min_value (prec, sign)
&& wi::to_wide (u) == wi::max_value (prec, sign));
if (POINTER_TYPE_P (t))
return (wi::to_wide (l) == 0
&& wi::to_wide (u) == wi::max_value (prec, sign));
return true;
}
inline bool
irange::varying_p () const
{
return m_kind == VR_VARYING;
}
inline bool
irange::undefined_p () const
{
return m_kind == VR_UNDEFINED;
}
inline bool
irange::zero_p () const
{
return (m_kind == VR_RANGE && m_num_ranges == 1
&& integer_zerop (tree_lower_bound (0))
&& integer_zerop (tree_upper_bound (0)));
}
inline bool
irange::nonzero_p () const
{
if (undefined_p ())
return false;
tree zero = build_zero_cst (type ());
return *this == int_range<1> (zero, zero, VR_ANTI_RANGE);
}
inline bool
irange::supports_type_p (tree type)
{
if (type && (INTEGRAL_TYPE_P (type) || POINTER_TYPE_P (type)))
return type;
return false;
}
inline bool
range_includes_zero_p (const irange *vr)
{
if (vr->undefined_p ())
return false;
if (vr->varying_p ())
return true;
return vr->may_contain_p (build_zero_cst (vr->type ()));
}
inline void
gt_ggc_mx (irange *x)
{
for (unsigned i = 0; i < x->m_num_ranges; ++i)
{
gt_ggc_mx (x->m_base[i * 2]);
gt_ggc_mx (x->m_base[i * 2 + 1]);
}
}
inline void
gt_pch_nx (irange *x)
{
for (unsigned i = 0; i < x->m_num_ranges; ++i)
{
gt_pch_nx (x->m_base[i * 2]);
gt_pch_nx (x->m_base[i * 2 + 1]);
}
}
inline void
gt_pch_nx (irange *x, gt_pointer_operator op, void *cookie)
{
for (unsigned i = 0; i < x->m_num_ranges; ++i)
{
op (&x->m_base[i * 2], NULL, cookie);
op (&x->m_base[i * 2 + 1], NULL, cookie);
}
}
template<unsigned N>
inline void
gt_ggc_mx (int_range<N> *x)
{
gt_ggc_mx ((irange *) x);
}
template<unsigned N>
inline void
gt_pch_nx (int_range<N> *x)
{
gt_pch_nx ((irange *) x);
}
template<unsigned N>
inline void
gt_pch_nx (int_range<N> *x, gt_pointer_operator op, void *cookie)
{
gt_pch_nx ((irange *) x, op, cookie);
}
// Constructors for irange
inline
irange::irange (tree *base, unsigned nranges)
{
m_base = base;
m_num_ranges = 0;
m_max_ranges = nranges;
m_kind = VR_UNDEFINED;
}
// Constructors for int_range<>.
template<unsigned N>
inline
int_range<N>::int_range ()
: irange (m_ranges, N)
{
}
template<unsigned N>
int_range<N>::int_range (const int_range &other)
: irange (m_ranges, N)
{
irange::operator= (other);
}
template<unsigned N>
int_range<N>::int_range (tree min, tree max, value_range_kind kind)
: irange (m_ranges, N)
{
irange::set (min, max, kind);
}
template<unsigned N>
int_range<N>::int_range (tree type)
: irange (m_ranges, N)
{
set_varying (type);
}
template<unsigned N>
int_range<N>::int_range (tree type, const wide_int &wmin, const wide_int &wmax,
value_range_kind kind)
: irange (m_ranges, N)
{
tree min = wide_int_to_tree (type, wmin);
tree max = wide_int_to_tree (type, wmax);
set (min, max, kind);
}
template<unsigned N>
int_range<N>::int_range (const irange &other)
: irange (m_ranges, N)
{
irange::operator= (other);
}
template<unsigned N>
int_range<N>&
int_range<N>::operator= (const int_range &src)
{
irange::operator= (src);
return *this;
}
inline void
irange::set (tree val)
{
set (val, val);
}
inline void
irange::set_undefined ()
{
m_kind = VR_UNDEFINED;
m_num_ranges = 0;
}
inline void
irange::set_varying (tree type)
{
m_kind = VR_VARYING;
m_num_ranges = 1;
if (INTEGRAL_TYPE_P (type))
{
// Strict enum's require varying to be not TYPE_MIN/MAX, but rather
// min_value and max_value.
wide_int min = wi::min_value (TYPE_PRECISION (type), TYPE_SIGN (type));
wide_int max = wi::max_value (TYPE_PRECISION (type), TYPE_SIGN (type));
if (wi::eq_p (max, wi::to_wide (TYPE_MAX_VALUE (type)))
&& wi::eq_p (min, wi::to_wide (TYPE_MIN_VALUE (type))))
{
m_base[0] = TYPE_MIN_VALUE (type);
m_base[1] = TYPE_MAX_VALUE (type);
}
else
{
m_base[0] = wide_int_to_tree (type, min);
m_base[1] = wide_int_to_tree (type, max);
}
}
else if (POINTER_TYPE_P (type))
{
m_base[0] = build_int_cst (type, 0);
m_base[1] = build_int_cst (type, -1);
}
else
m_base[0] = m_base[1] = error_mark_node;
}
inline bool
irange::operator== (const irange &r) const
{
return equal_p (r);
}
// Return the lower bound of a sub-range. PAIR is the sub-range in
// question.
inline wide_int
irange::lower_bound (unsigned pair) const
{
if (legacy_mode_p ())
return legacy_lower_bound (pair);
gcc_checking_assert (m_num_ranges > 0);
gcc_checking_assert (pair + 1 <= num_pairs ());
return wi::to_wide (tree_lower_bound (pair));
}
// Return the upper bound of a sub-range. PAIR is the sub-range in
// question.
inline wide_int
irange::upper_bound (unsigned pair) const
{
if (legacy_mode_p ())
return legacy_upper_bound (pair);
gcc_checking_assert (m_num_ranges > 0);
gcc_checking_assert (pair + 1 <= num_pairs ());
return wi::to_wide (tree_upper_bound (pair));
}
// Return the highest bound of a range.
inline wide_int
irange::upper_bound () const
{
unsigned pairs = num_pairs ();
gcc_checking_assert (pairs > 0);
return upper_bound (pairs - 1);
}
inline void
irange::union_ (const irange &r)
{
dump_flags_t m_flags = dump_flags;
dump_flags &= ~TDF_DETAILS;
irange::union_ (&r);
dump_flags = m_flags;
}
inline void
irange::intersect (const irange &r)
{
dump_flags_t m_flags = dump_flags;
dump_flags &= ~TDF_DETAILS;
irange::intersect (&r);
dump_flags = m_flags;
}
// Set value range VR to a nonzero range of type TYPE.
inline void
irange::set_nonzero (tree type)
{
tree zero = build_int_cst (type, 0);
if (legacy_mode_p ())
set (zero, zero, VR_ANTI_RANGE);
else
irange_set_anti_range (zero, zero);
}
// Set value range VR to a ZERO range of type TYPE.
inline void
irange::set_zero (tree type)
{
tree z = build_int_cst (type, 0);
if (legacy_mode_p ())
set (z);
else
irange_set (z, z);
}
// Normalize a range to VARYING or UNDEFINED if possible.
inline void
irange::normalize_kind ()
{
if (m_num_ranges == 0)
m_kind = VR_UNDEFINED;
else if (varying_compatible_p ())
{
if (m_kind == VR_RANGE)
m_kind = VR_VARYING;
else if (m_kind == VR_ANTI_RANGE)
set_undefined ();
else
gcc_unreachable ();
}
}
// Return the maximum value for TYPE.
inline tree
vrp_val_max (const_tree type)
{
if (INTEGRAL_TYPE_P (type))
return TYPE_MAX_VALUE (type);
if (POINTER_TYPE_P (type))
{
wide_int max = wi::max_value (TYPE_PRECISION (type), TYPE_SIGN (type));
return wide_int_to_tree (const_cast<tree> (type), max);
}
return NULL_TREE;
}
// Return the minimum value for TYPE.
inline tree
vrp_val_min (const_tree type)
{
if (INTEGRAL_TYPE_P (type))
return TYPE_MIN_VALUE (type);
if (POINTER_TYPE_P (type))
return build_zero_cst (const_cast<tree> (type));
return NULL_TREE;
}
// This is the irange storage class. It is used to allocate the
// minimum amount of storage needed for a given irange. Storage is
// automatically freed at destruction of the storage class.
//
// It is meant for long term storage, as opposed to int_range_max
// which is meant for intermediate temporary results on the stack.
//
// The newly allocated irange is initialized to the empty set
// (undefined_p() is true).
class irange_allocator
{
public:
irange_allocator ();
~irange_allocator ();
// Return a new range with NUM_PAIRS.
irange *allocate (unsigned num_pairs);
// Return a copy of SRC with the minimum amount of sub-ranges needed
// to represent it.
irange *allocate (const irange &src);
void *get_memory (unsigned num_bytes);
private:
DISABLE_COPY_AND_ASSIGN (irange_allocator);
struct obstack m_obstack;
};
inline
irange_allocator::irange_allocator ()
{
obstack_init (&m_obstack);
}
inline
irange_allocator::~irange_allocator ()
{
obstack_free (&m_obstack, NULL);
}
// Provide a hunk of memory from the obstack.
inline void *
irange_allocator::get_memory (unsigned num_bytes)
{
void *r = obstack_alloc (&m_obstack, num_bytes);
return r;
}
// Return a new range with NUM_PAIRS.
inline irange *
irange_allocator::allocate (unsigned num_pairs)
{
// Never allocate 0 pairs.
// Don't allocate 1 either, or we get legacy value_range's.
if (num_pairs < 2)
num_pairs = 2;
size_t nbytes = sizeof (tree) * 2 * num_pairs;
// Allocate the irange and required memory for the vector.
void *r = obstack_alloc (&m_obstack, sizeof (irange));
tree *mem = (tree *) obstack_alloc (&m_obstack, nbytes);
return new (r) irange (mem, num_pairs);
}
inline irange *
irange_allocator::allocate (const irange &src)
{
irange *r = allocate (src.num_pairs ());
*r = src;
return r;
}
#endif // GCC_VALUE_RANGE_H
|