Line data Source code
1 : /* Header file for the GIMPLE range-op interface.
2 : Copyright (C) 2022-2026 Free Software Foundation, Inc.
3 : Contributed by Andrew MacLeod <amacleod@redhat.com>
4 : and Aldy Hernandez <aldyh@redhat.com>.
5 :
6 : This file is part of GCC.
7 :
8 : GCC is free software; you can redistribute it and/or modify it under
9 : the terms of the GNU General Public License as published by the Free
10 : Software Foundation; either version 3, or (at your option) any later
11 : version.
12 :
13 : GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 : WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 : FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 : for more details.
17 :
18 : You should have received a copy of the GNU General Public License
19 : along with GCC; see the file COPYING3. If not see
20 : <http://www.gnu.org/licenses/>. */
21 :
22 : #ifndef GCC_GIMPLE_RANGE_OP_H
23 : #define GCC_GIMPLE_RANGE_OP_H
24 :
25 : #include "range-op.h"
26 :
27 :
28 : class gimple_range_op_handler : public range_op_handler
29 : {
30 : public:
31 : static bool supported_p (gimple *s);
32 : gimple_range_op_handler (gimple *s);
33 313992876 : inline gimple *stmt () const { return m_stmt; }
34 201039537 : inline tree lhs () const { return gimple_get_lhs (m_stmt); }
35 749828169 : tree operand1 () const { gcc_checking_assert (m_operator); return m_op1; }
36 684445500 : tree operand2 () const { gcc_checking_assert (m_operator); return m_op2; }
37 : bool calc_op1 (vrange &r, const vrange &lhs_range);
38 : bool calc_op1 (vrange &r, const vrange &lhs_range, const vrange &op2_range,
39 : relation_trio = TRIO_VARYING);
40 : bool calc_op2 (vrange &r, const vrange &lhs_range, const vrange &op1_range,
41 : relation_trio = TRIO_VARYING);
42 449873039 : inline bool recomputable_p () { return m_recomputable; }
43 : private:
44 : void maybe_builtin_call ();
45 : void maybe_non_standard ();
46 : gimple *m_stmt;
47 : tree m_op1, m_op2;
48 : bool m_recomputable;
49 : };
50 :
51 : // Given stmt S, fill VEC, up to VEC_SIZE elements, with relevant ssa-names
52 : // on the statement. For efficiency, it is an error to not pass in enough
53 : // elements for the vector. Return the number of ssa-names.
54 :
55 : unsigned gimple_range_ssa_names (tree *vec, unsigned vec_size, gimple *stmt);
56 :
57 : #endif // GCC_GIMPLE_RANGE_OP_H
|