GCC Middle and Back End API Reference
range.h
Go to the documentation of this file.
1/* Header file for misc range functions. -*- C++ -*-
2 Copyright (C) 2017-2024 Free Software Foundation, Inc.
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
26
27// Return an irange instance that is a boolean TRUE.
28
29inline int_range<1>
31{
32 unsigned prec = TYPE_PRECISION (type);
33 return int_range<1> (type, wi::one (prec), wi::one (prec));
34}
35
36// Return an irange instance that is a boolean FALSE.
37
38inline int_range<1>
40{
41 unsigned prec = TYPE_PRECISION (type);
42 return int_range<1> (type, wi::zero (prec), wi::zero (prec));
43}
44
45// Return an irange that covers both true and false.
46
47inline int_range<1>
49{
50 unsigned prec = TYPE_PRECISION (type);
51 if (prec == 1)
52 return int_range<1> (type);
53 return int_range<1> (type, wi::zero (prec), wi::one (prec));
54}
55
56#endif // GCC_RANGE_H
union tree_node * tree
Definition coretypes.h:97
T * ggc_alloc(ALONE_CXX_MEM_STAT_INFO)
Definition ggc.h:184
hwi_with_prec zero(unsigned int)
Definition wide-int.h:2018
hwi_with_prec one(unsigned int)
Definition wide-int.h:2025
int_range< 1 > range_false(tree type=boolean_type_node)
Definition range.h:39
value_range range_positives(tree type)
Definition range.cc:33
int_range< 1 > range_true_and_false(tree type=boolean_type_node)
Definition range.h:48
value_range range_negatives(tree type)
Definition range.cc:41
int_range< 1 > range_true(tree type=boolean_type_node)
Definition range.h:30
Definition gengtype.h:252
#define TYPE_PRECISION(NODE)
Definition tree.h:2245
#define boolean_type_node
Definition tree.h:4514