1 /* Classes for purging state at function_points.
2 Copyright (C) 2019-2021 Free Software Foundation, Inc.
3 Contributed by David Malcolm <dmalcolm@redhat.com>.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it
8 under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
12 GCC is distributed in the hope that it will be useful, but
13 WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
21 #ifndef GCC_ANALYZER_STATE_PURGE_H
22 #define GCC_ANALYZER_STATE_PURGE_H
24 /* Hash traits for function_point. */
26 template <> struct default_hash_traits
<function_point
>
27 : public pod_hash_traits
<function_point
>
29 static const bool empty_zero_p
= false;
34 pod_hash_traits
<function_point
>::hash (value_type v
)
41 pod_hash_traits
<function_point
>::equal (const value_type
&existing
,
42 const value_type
&candidate
)
44 return existing
== candidate
;
48 pod_hash_traits
<function_point
>::mark_deleted (value_type
&v
)
50 v
= function_point::deleted ();
54 pod_hash_traits
<function_point
>::mark_empty (value_type
&v
)
56 v
= function_point::empty ();
60 pod_hash_traits
<function_point
>::is_deleted (value_type v
)
62 return v
.get_kind () == PK_DELETED
;
66 pod_hash_traits
<function_point
>::is_empty (value_type v
)
68 return v
.get_kind () == PK_EMPTY
;
73 /* The result of analyzing which SSA names can be purged from state at
74 different points in the program, so that we can simplify program_state
75 objects, in the hope of reducing state-blowup. */
77 class state_purge_map
: public log_user
80 typedef ordered_hash_map
<tree
, state_purge_per_ssa_name
*> map_t
;
81 typedef map_t::iterator iterator
;
83 state_purge_map (const supergraph
&sg
, logger
*logger
);
86 const state_purge_per_ssa_name
&get_data_for_ssa_name (tree name
) const
88 gcc_assert (TREE_CODE (name
) == SSA_NAME
);
89 if (tree var
= SSA_NAME_VAR (name
))
90 if (TREE_CODE (var
) == VAR_DECL
)
91 gcc_assert (!VAR_DECL_IS_VIRTUAL_OPERAND (var
));
93 state_purge_per_ssa_name
**slot
94 = const_cast <map_t
&> (m_map
).get (name
);
98 const supergraph
&get_sg () const { return m_sg
; }
100 iterator
begin () const { return m_map
.begin (); }
101 iterator
end () const { return m_map
.end (); }
104 DISABLE_COPY_AND_ASSIGN (state_purge_map
);
106 const supergraph
&m_sg
;
110 /* The part of a state_purge_map relating to a specific SSA name.
112 The result of analyzing a given SSA name, recording which
113 function_points need to retain state information about it to handle
114 their successor states, so that we can simplify program_state objects,
115 in the hope of reducing state-blowup. */
117 class state_purge_per_ssa_name
120 state_purge_per_ssa_name (const state_purge_map
&map
,
124 bool needed_at_point_p (const function_point
&point
) const;
126 function
*get_function () const { return m_fun
; }
129 static function_point
before_use_stmt (const state_purge_map
&map
,
130 const gimple
*use_stmt
);
132 void add_to_worklist (const function_point
&point
,
133 auto_vec
<function_point
> *worklist
,
136 void process_point (const function_point
&point
,
137 auto_vec
<function_point
> *worklist
,
138 const state_purge_map
&map
);
140 typedef hash_set
<function_point
> point_set_t
;
141 point_set_t m_points_needing_name
;
146 /* Subclass of dot_annotator for use by -fdump-analyzer-state-purge.
147 Annotate the .dot output with state-purge information. */
149 class state_purge_annotator
: public dot_annotator
152 state_purge_annotator (const state_purge_map
*map
) : m_map (map
) {}
154 bool add_node_annotations (graphviz_out
*gv
, const supernode
&n
, bool)
155 const FINAL OVERRIDE
;
157 void add_stmt_annotations (graphviz_out
*gv
, const gimple
*stmt
,
159 const FINAL OVERRIDE
;
162 const state_purge_map
*m_map
;
167 #endif /* GCC_ANALYZER_STATE_PURGE_H */