libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git] / gcc / analyzer / sm.cc
blobf8b21b85db037332a64ba8b08c18e75d854d9cbb
1 /* Modeling API uses and misuses via state machines.
2 Copyright (C) 2019-2024 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)
10 any later version.
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 #include "config.h"
22 #define INCLUDE_MEMORY
23 #define INCLUDE_VECTOR
24 #include "system.h"
25 #include "coretypes.h"
26 #include "tree.h"
27 #include "function.h"
28 #include "basic-block.h"
29 #include "gimple.h"
30 #include "options.h"
31 #include "function.h"
32 #include "diagnostic-core.h"
33 #include "pretty-print.h"
34 #include "diagnostic.h"
35 #include "tree-diagnostic.h"
36 #include "analyzer/analyzer.h"
37 #include "analyzer/analyzer-logging.h"
38 #include "analyzer/sm.h"
39 #include "analyzer/call-string.h"
40 #include "analyzer/program-point.h"
41 #include "analyzer/store.h"
42 #include "analyzer/svalue.h"
43 #include "analyzer/program-state.h"
44 #include "analyzer/pending-diagnostic.h"
46 #if ENABLE_ANALYZER
48 namespace ana {
50 /* Return true if VAR has pointer or reference type. */
52 bool
53 any_pointer_p (tree var)
55 return POINTER_TYPE_P (TREE_TYPE (var));
58 /* Return true if SVAL has pointer or reference type. */
60 bool
61 any_pointer_p (const svalue *sval)
63 if (!sval->get_type ())
64 return false;
65 return POINTER_TYPE_P (sval->get_type ());
68 /* class state_machine::state. */
70 /* Base implementation of dump_to_pp vfunc. */
72 void
73 state_machine::state::dump_to_pp (pretty_printer *pp) const
75 pp_string (pp, m_name);
78 /* Return a new json::string describing the state. */
80 json::value *
81 state_machine::state::to_json () const
83 pretty_printer pp;
84 pp_format_decoder (&pp) = default_tree_printer;
85 dump_to_pp (&pp);
86 return new json::string (pp_formatted_text (&pp));
89 /* class state_machine. */
91 /* state_machine's ctor. */
93 state_machine::state_machine (const char *name, logger *logger)
94 : log_user (logger), m_name (name), m_next_state_id (0),
95 m_start (add_state ("start"))
99 /* Add a state with name NAME to this state_machine.
100 The string is required to outlive the state_machine.
102 Return the state_t for the new state. */
104 state_machine::state_t
105 state_machine::add_state (const char *name)
107 state *s = new state (name, alloc_state_id ());
108 m_states.safe_push (s);
109 return s;
112 /* Get the state with name NAME, which must exist.
113 This is purely intended for use in selftests. */
115 state_machine::state_t
116 state_machine::get_state_by_name (const char *name) const
118 unsigned i;
119 state *s;
120 FOR_EACH_VEC_ELT (m_states, i, s)
121 if (!strcmp (name, s->get_name ()))
122 return s;
123 /* Name not found. */
124 gcc_unreachable ();
127 /* Base implementation of state_machine::on_leak. */
129 std::unique_ptr<pending_diagnostic>
130 state_machine::on_leak (tree var ATTRIBUTE_UNUSED) const
132 return NULL;
135 /* Dump a multiline representation of this state machine to PP. */
137 void
138 state_machine::dump_to_pp (pretty_printer *pp) const
140 unsigned i;
141 state *s;
142 FOR_EACH_VEC_ELT (m_states, i, s)
144 pp_printf (pp, " state %i: ", i);
145 s->dump_to_pp (pp);
146 pp_newline (pp);
150 /* Return a new json::object of the form
151 {"name" : str,
152 "states" : [str]}. */
154 json::object *
155 state_machine::to_json () const
157 json::object *sm_obj = new json::object ();
159 sm_obj->set_string ("name", m_name);
161 json::array *states_arr = new json::array ();
162 unsigned i;
163 state *s;
164 FOR_EACH_VEC_ELT (m_states, i, s)
165 states_arr->append (s->to_json ());
166 sm_obj->set ("states", states_arr);
169 return sm_obj;
172 /* class sm_context. */
174 const region_model *
175 sm_context::get_old_region_model () const
177 if (const program_state *old_state = get_old_program_state ())
178 return old_state->m_region_model;
179 else
180 return NULL;
183 /* Create instances of the various state machines, each using LOGGER,
184 and populate OUT with them. */
186 void
187 make_checkers (auto_delete_vec <state_machine> &out, logger *logger)
189 out.safe_push (make_malloc_state_machine (logger));
190 out.safe_push (make_fileptr_state_machine (logger));
191 out.safe_push (make_fd_state_machine (logger));
192 out.safe_push (make_taint_state_machine (logger));
193 out.safe_push (make_sensitive_state_machine (logger));
194 out.safe_push (make_signal_state_machine (logger));
195 out.safe_push (make_va_list_state_machine (logger));
197 /* We only attempt to run the pattern tests if it might have been manually
198 enabled (for DejaGnu purposes). */
199 if (flag_analyzer_checker)
200 out.safe_push (make_pattern_test_state_machine (logger));
202 if (flag_analyzer_checker)
204 unsigned read_index, write_index;
205 state_machine **sm;
207 /* TODO: this leaks the machines
208 Would be nice to log the things that were removed. */
209 VEC_ORDERED_REMOVE_IF (out, read_index, write_index, sm,
210 0 != strcmp (flag_analyzer_checker,
211 (*sm)->get_name ()));
215 } // namespace ana
217 #endif /* #if ENABLE_ANALYZER */