]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/range.h
check undefine_p for one more vr
[thirdparty/gcc.git] / gcc / range.h
CommitLineData
38a73435 1/* Header file for misc range functions. -*- C++ -*-
aeee4812 2 Copyright (C) 2017-2023 Free Software Foundation, Inc.
38a73435
AH
3 Contributed by Aldy Hernandez <aldyh@redhat.com>.
4
5This file is part of GCC.
6
7GCC is free software; you can redistribute it and/or modify it under
8the terms of the GNU General Public License as published by the Free
9Software Foundation; either version 3, or (at your option) any later
10version.
11
12GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13WARRANTY; without even the implied warranty of MERCHANTABILITY or
14FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
16
17You should have received a copy of the GNU General Public License
18along with GCC; see the file COPYING3. If not see
19<http://www.gnu.org/licenses/>. */
20
21#ifndef GCC_RANGE_H
22#define GCC_RANGE_H
23
028d81b1
AH
24value_range range_zero (tree type);
25value_range range_nonzero (tree type);
028d81b1
AH
26value_range range_positives (tree type);
27value_range range_negatives (tree type);
9eb38e88
AH
28
29// Return an irange instance that is a boolean TRUE.
30
cb3e0eac 31inline int_range<1>
cb779afe 32range_true (tree type = boolean_type_node)
9eb38e88
AH
33{
34 unsigned prec = TYPE_PRECISION (type);
cb779afe 35 return int_range<1> (type, wi::one (prec), wi::one (prec));
9eb38e88
AH
36}
37
38// Return an irange instance that is a boolean FALSE.
39
cb3e0eac 40inline int_range<1>
cb779afe 41range_false (tree type = boolean_type_node)
9eb38e88
AH
42{
43 unsigned prec = TYPE_PRECISION (type);
cb779afe 44 return int_range<1> (type, wi::zero (prec), wi::zero (prec));
9eb38e88
AH
45}
46
47// Return an irange that covers both true and false.
48
cb3e0eac 49inline int_range<1>
cb779afe 50range_true_and_false (tree type = boolean_type_node)
9eb38e88
AH
51{
52 unsigned prec = TYPE_PRECISION (type);
d3296989 53 if (prec == 1)
cb779afe
AH
54 return int_range<1> (type);
55 return int_range<1> (type, wi::zero (prec), wi::one (prec));
9eb38e88
AH
56}
57
38a73435 58#endif // GCC_RANGE_H