GCC Middle and Back End API Reference
analysis-plan.h
Go to the documentation of this file.
1/* A class to encapsulate decisions about how the analysis should happen.
2 Copyright (C) 2019-2024 Free Software Foundation, Inc.
3 Contributed by David Malcolm <dmalcolm@redhat.com>.
4
5This file is part of GCC.
6
7GCC is free software; you can redistribute it and/or modify it
8under the terms of the GNU General Public License as published by
9the Free Software Foundation; either version 3, or (at your option)
10any later version.
11
12GCC is distributed in the hope that it will be useful, but
13WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15General Public License 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_ANALYZER_ANALYSIS_PLAN_H
22#define GCC_ANALYZER_ANALYSIS_PLAN_H
23
24namespace ana {
25
26/* A class to encapsulate decisions about how the analysis should happen.
27 Examples:
28 - the order in which functions should be analyzed, so that function
29 summaries are created before analysis of call sites that might use
30 them
31 - which callgraph edges should use call summaries
32 TODO: the above is a work-in-progress. */
33
34class analysis_plan : public log_user
35{
36public:
39
41
42 bool use_summary_p (const cgraph_edge *edge) const;
43
44private:
46
48
49 /* Result of ipa_reverse_postorder. */
52
53 /* Index of each node within the postorder ordering,
54 accessed via the "m_uid" field. */
56};
57
58} // namespace ana
59
60#endif /* GCC_ANALYZER_ANALYSIS_PLAN_H */
Definition analysis-plan.h:35
cgraph_node ** m_cgraph_node_postorder
Definition analysis-plan.h:50
int cmp_function(function *fun_a, function *fun_b) const
auto_vec< int > m_index_by_uid
Definition analysis-plan.h:55
int m_num_cgraph_nodes
Definition analysis-plan.h:51
bool use_summary_p(const cgraph_edge *edge) const
DISABLE_COPY_AND_ASSIGN(analysis_plan)
analysis_plan(const supergraph &sg, logger *logger)
const supergraph & m_sg
Definition analysis-plan.h:47
Definition analyzer-logging.h:147
Definition analyzer-logging.h:34
Definition supergraph.h:109
Definition vec.h:1656
Definition cgraph.h:1696
class edge_def * edge
Definition coretypes.h:342
T * ggc_alloc(ALONE_CXX_MEM_STAT_INFO)
Definition ggc.h:184
Definition access-diagram.h:30
Definition cgraph.h:875
Definition function.h:249