GCC Middle and Back End API Reference
gimple-range-path.h
Go to the documentation of this file.
1/* Header file for jump threading path solver.
2 Copyright (C) 2021-2026 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_TREE_SSA_THREADSOLVER_H
22#define GCC_TREE_SSA_THREADSOLVER_H
23
24// This class is a basic block path solver. Given a set of BBs
25// indicating a path through the CFG, range_of_expr and range_of_stmt
26// will calculate the range of an SSA or STMT as if the BBs in the
27// path would have been executed in order.
28//
29// Note that the blocks are in reverse order, thus the exit block is
30// path[0].
31
33{
34public:
35 path_range_query (class gimple_ranger &ranger,
36 const vec<basic_block> &path,
37 const bitmap_head *dependencies = NULL,
38 bool resolve = true);
39 path_range_query (gimple_ranger &ranger, bool resolve = true);
40 virtual ~path_range_query ();
41 void reset_path (const vec<basic_block> &, const bitmap_head *dependencies);
42 bool range_of_expr (vrange &r, tree name, gimple * = NULL) override;
43 bool range_of_stmt (vrange &r, gimple *, tree name = NULL) override;
44 bool unreachable_path_p ();
45 // Path ranger should not be an active query.
46 virtual bool active_query_compatible_p () { return false; }
47 void dump (FILE *) override;
48 void debug ();
49
50private:
51 bool internal_range_of_expr (vrange &r, tree name, gimple *);
52 void compute_ranges (const bitmap_head *dependencies);
53 void compute_exit_dependencies (bitmap_head *dependencies);
54 bool defined_outside_path (tree name);
55 void range_on_path_entry (vrange &r, tree name);
57
58 // Cache manipulation.
59 bool get_cache (vrange &r, tree name);
60
61 // Methods to compute ranges for the given path.
66 void ssa_range_in_phi (vrange &r, gphi *phi);
70 bool add_to_exit_dependencies (tree name, bitmap dependencies);
71 bool exit_dependency_p (tree name);
72 bool ssa_defined_in_bb (tree name, basic_block bb);
74
75 // Path navigation.
76 basic_block entry_bb () { return m_path[m_path.length () - 1]; }
77 basic_block exit_bb () { return m_path[0]; }
79 basic_block prev_bb () { return m_path[m_pos + 1]; }
80 basic_block next_bb () { return m_path[m_pos - 1]; }
81 bool at_entry () { return m_pos == m_path.length () - 1; }
82 bool at_exit () { return m_pos == 0; }
83 void move_next () { --m_pos; }
84
85 // Range cache for SSA names.
87
88 // All the pointer typed exit dependencies in the path.
90
91 // Path being analyzed.
93
94 // This is a list of SSA names that may have relevant context
95 // information for solving the final conditional along the path.
96 // Ranges for these SSA names are pre-calculated and cached during a
97 // top-down traversal of the path, and are then used to answer
98 // questions at the path exit.
100
101 // A ranger used to resolve ranges for SSA names whose values come
102 // from outside the path.
104
105 // Current path position.
106 unsigned m_pos;
107
108 // Use ranger to resolve anything not known on entry.
110
111 // Set if there were any undefined expressions while pre-calculating path.
113};
114
115#endif // GCC_TREE_SSA_THREADSOLVER_H
Definition bitmap.h:950
Definition vec.h:1667
Definition bitmap.h:327
Definition gimple-range.h:48
Definition value-relation.h:296
bool defined_outside_path(tree name)
Definition gimple-range-path.cc:123
void compute_ranges(const bitmap_head *dependencies)
Definition gimple-range-path.cc:572
bool exit_dependency_p(tree name)
Definition gimple-range-path.cc:73
path_oracle * get_path_oracle()
Definition gimple-range-path.h:56
void range_on_path_entry(vrange &r, tree name)
Definition gimple-range-path.cc:134
auto_vec< tree > m_pointer_exit_dependencies
Definition gimple-range-path.h:89
void adjust_for_non_null_uses(basic_block bb)
Definition gimple-range-path.cc:466
auto_bitmap m_exit_dependencies
Definition gimple-range-path.h:99
unsigned m_pos
Definition gimple-range-path.h:106
bool ssa_defined_in_bb(tree name, basic_block bb)
Definition gimple-range-path.cc:221
path_range_query(class gimple_ranger &ranger, const vec< basic_block > &path, const bitmap_head *dependencies=NULL, bool resolve=true)
Definition gimple-range-path.cc:39
bool m_undefined_path
Definition gimple-range-path.h:112
basic_block next_bb()
Definition gimple-range-path.h:80
gimple_ranger & m_ranger
Definition gimple-range-path.h:103
bool range_defined_in_block(vrange &, tree name, basic_block bb)
Definition gimple-range-path.cc:300
bool add_to_exit_dependencies(tree name, bitmap dependencies)
Definition gimple-range-path.cc:494
virtual bool active_query_compatible_p()
Definition gimple-range-path.h:46
basic_block entry_bb()
Definition gimple-range-path.h:76
bool get_cache(vrange &r, tree name)
Definition gimple-range-path.cc:82
void dump(FILE *) override
Definition gimple-range-path.cc:91
ssa_lazy_cache m_cache
Definition gimple-range-path.h:86
basic_block curr_bb()
Definition gimple-range-path.h:78
void maybe_register_phi_relation(gphi *, edge e)
Definition gimple-range-path.cc:725
bool internal_range_of_expr(vrange &r, tree name, gimple *)
Definition gimple-range-path.cc:144
bool relations_may_be_invalidated(edge)
Definition gimple-range-path.cc:369
void compute_phi_relations(basic_block bb, basic_block prev)
Definition gimple-range-path.cc:757
bool range_of_expr(vrange &r, tree name, gimple *=NULL) override
Definition gimple-range-path.cc:183
void compute_ranges_in_block(basic_block bb)
Definition gimple-range-path.cc:383
basic_block exit_bb()
Definition gimple-range-path.h:77
bool m_resolve
Definition gimple-range-path.h:109
bool at_exit()
Definition gimple-range-path.h:82
auto_vec< basic_block > m_path
Definition gimple-range-path.h:92
bool unreachable_path_p()
Definition gimple-range-path.cc:196
bool range_of_stmt(vrange &r, gimple *, tree name=NULL) override
Definition gimple-range-path.cc:699
void compute_outgoing_relations(basic_block bb, basic_block next)
Definition gimple-range-path.cc:786
void compute_exit_dependencies(bitmap_head *dependencies)
Definition gimple-range-path.cc:506
void ssa_range_in_phi(vrange &r, gphi *phi)
Definition gimple-range-path.cc:236
bool at_entry()
Definition gimple-range-path.h:81
void move_next()
Definition gimple-range-path.h:83
basic_block prev_bb()
Definition gimple-range-path.h:79
void compute_ranges_in_phis(basic_block bb)
Definition gimple-range-path.cc:345
void reset_path(const vec< basic_block > &, const bitmap_head *dependencies)
Definition gimple-range-path.cc:204
relation_oracle * m_relation
Definition value-query.h:109
range_query()
Definition value-query.cc:321
Definition gimple-range-cache.h:80
Definition value-range.h:88
bool debug
Definition collect-utils.cc:34
struct basic_block_def * basic_block
Definition coretypes.h:351
class edge_def * edge
Definition coretypes.h:348
class bitmap_head * bitmap
Definition coretypes.h:51
union tree_node * tree
Definition coretypes.h:97
poly_int< N, C > r
Definition poly-int.h:774
Definition gimple.h:224
Definition gimple.h:464
Definition vec.h:450
#define NULL
Definition system.h:58