]> gcc.gnu.org Git - gcc.git/blame - gcc/gimple-range-cache.h
return auto_vec from cgraph_node::collect_callers
[gcc.git] / gcc / gimple-range-cache.h
CommitLineData
90e88fd3 1/* Header file for gimple ranger SSA cache.
99dee823 2 Copyright (C) 2017-2021 Free Software Foundation, Inc.
90e88fd3
AM
3 Contributed by Andrew MacLeod <amacleod@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_SSA_RANGE_CACHE_H
22#define GCC_SSA_RANGE_CACHE_H
23
24#include "gimple-range-gori.h"
25
26// Class used to track non-null references of an SSA name. A vector
27// of bitmaps indexed by SSA name is maintained. When indexed by
28// basic block, an on-bit indicates there is a non-null dereference
29// for that SSA in that block.
30
31class non_null_ref
32{
33public:
34 non_null_ref ();
35 ~non_null_ref ();
a7943ea9 36 bool non_null_deref_p (tree name, basic_block bb, bool search_dom = true);
90e88fd3
AM
37private:
38 vec <bitmap> m_nn;
39 void process_name (tree name);
40 bitmap_obstack m_bitmaps;
41};
42
43// This class manages a vector of pointers to ssa_block ranges. It
44// provides the basis for the "range on entry" cache for all
45// SSA names.
46
47class block_range_cache
48{
49public:
50 block_range_cache ();
51 ~block_range_cache ();
52
53 void set_bb_range (tree name, const basic_block bb, const irange &r);
90e88fd3
AM
54 bool get_bb_range (irange &r, tree name, const basic_block bb);
55 bool bb_range_p (tree name, const basic_block bb);
56
57 void dump (FILE *f);
58 void dump (FILE *f, basic_block bb, bool print_varying = true);
59private:
60 vec<class ssa_block_ranges *> m_ssa_ranges;
61 ssa_block_ranges &get_block_ranges (tree name);
220929c0 62 ssa_block_ranges *query_block_ranges (tree name);
90e88fd3 63 irange_allocator *m_irange_allocator;
9858cd1a 64 bitmap_obstack m_bitmaps;
90e88fd3
AM
65};
66
67// This global cache is used with the range engine as markers for what
68// has been visited during this incarnation. Once the ranger evaluates
69// a name, it is typically not re-evaluated again.
70
71class ssa_global_cache
72{
73public:
74 ssa_global_cache ();
75 ~ssa_global_cache ();
76 bool get_global_range (irange &r, tree name) const;
ea7df355 77 bool set_global_range (tree name, const irange &r);
90e88fd3
AM
78 void clear_global_range (tree name);
79 void clear ();
80 void dump (FILE *f = stderr);
81private:
82 vec<irange *> m_tab;
83 class irange_allocator *m_irange_allocator;
84};
85
86// This class provides all the caches a global ranger may need, and makes
87// them available for gori-computes to query so outgoing edges can be
88// properly calculated.
89
47ea02bb 90class ranger_cache : public range_query
90e88fd3
AM
91{
92public:
ea7df355 93 ranger_cache (class gimple_ranger &q);
90e88fd3
AM
94 ~ranger_cache ();
95
2e0f3246 96 virtual bool range_of_expr (irange &r, tree name, gimple *stmt);
47ea02bb 97 virtual bool range_on_edge (irange &r, edge e, tree expr);
90e88fd3
AM
98 bool block_range (irange &r, basic_block bb, tree name, bool calc = true);
99
220929c0 100 bool get_global_range (irange &r, tree name) const;
e86fd6a1 101 bool get_non_stale_global_range (irange &r, tree name);
220929c0
AM
102 void set_global_range (tree name, const irange &r);
103
ecc5644f 104 bool enable_new_values (bool state);
90e88fd3 105 non_null_ref m_non_null;
47ea02bb 106 gori_compute m_gori;
220929c0 107
47ea02bb
AM
108 void dump_bb (FILE *f, basic_block bb);
109 virtual void dump (FILE *f) OVERRIDE;
90e88fd3 110private:
220929c0
AM
111 ssa_global_cache m_globals;
112 block_range_cache m_on_entry;
e86fd6a1 113 class temporal_cache *m_temporal;
90e88fd3
AM
114 void add_to_update (basic_block bb);
115 void fill_block_cache (tree name, basic_block bb, basic_block def_bb);
ea7df355
AM
116 void propagate_cache (tree name);
117
2e0f3246
AM
118 void range_of_def (irange &r, tree name, basic_block bb);
119 void entry_range (irange &r, tree expr, basic_block bb);
120 void exit_range (irange &r, tree expr, basic_block bb);
121
ea7df355 122 void propagate_updated_value (tree name, basic_block bb);
90e88fd3
AM
123
124 vec<basic_block> m_workback;
125 vec<basic_block> m_update_list;
126
127 // Iterative "poor value" calculations.
128 struct update_record
129 {
130 basic_block bb; // Block which value needs to be calculated in.
131 tree calc; // SSA_NAME which needs its value calculated.
132 };
133 bool push_poor_value (basic_block bb, tree name);
134 vec<update_record> m_poor_value_list;
ea7df355 135 class gimple_ranger &query;
715914d3 136 bool m_new_value_p;
90e88fd3
AM
137};
138
139#endif // GCC_SSA_RANGE_CACHE_H
This page took 0.405696 seconds and 5 git commands to generate.