Line data Source code
1 : /* Subclasses of custom_edge_info for describing outcomes of function calls.
2 : Copyright (C) 2021-2026 Free Software Foundation, Inc.
3 : Contributed by David Malcolm <dmalcolm@redhat.com>.
4 :
5 : This file is part of GCC.
6 :
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.
11 :
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.
16 :
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/>. */
20 :
21 : #ifndef GCC_ANALYZER_CALL_INFO_H
22 : #define GCC_ANALYZER_CALL_INFO_H
23 :
24 : namespace ana {
25 :
26 : /* Subclass of custom_edge_info for an outcome of a call.
27 : This is still abstract; the update_model and print_desc vfuncs must be
28 : implemented. */
29 :
30 0 : class call_info : public custom_edge_info
31 : {
32 : public:
33 : void print (pretty_printer *pp) const override;
34 : void add_events_to_path (checker_path *emission_path,
35 : const exploded_edge &eedge,
36 : pending_diagnostic &pd) const override;
37 :
38 349 : const gcall &get_call_stmt () const { return m_call_stmt; }
39 482 : tree get_fndecl () const { return m_fndecl; }
40 :
41 : virtual void print_desc (pretty_printer &pp) const = 0;
42 :
43 : call_details get_call_details (region_model *model,
44 : region_model_context *ctxt) const;
45 :
46 : protected:
47 : call_info (const call_details &cd);
48 : call_info (const call_details &cd, const function &called_fn);
49 :
50 : private:
51 : const gcall &m_call_stmt;
52 : tree m_fndecl;
53 : };
54 :
55 : /* Subclass of call_info for a "success" outcome of a call,
56 : adding either a
57 : "when `FNDECL' succeeds" message (when 'success' is true)
58 : or a
59 : "when `FNDECL' fails" message (when 'success' is false).
60 : This is still abstract: the custom_edge_info::update_model vfunc
61 : must be implemented. */
62 :
63 0 : class succeed_or_fail_call_info : public call_info
64 : {
65 : public:
66 : void print_desc (pretty_printer &pp) const final override;
67 :
68 : protected:
69 1176 : succeed_or_fail_call_info (const call_details &cd, bool success)
70 1468 : : call_info (cd), m_success (success) {}
71 :
72 : bool m_success;
73 : };
74 :
75 : /* Subclass of call_info for a "success" outcome of a call,
76 : adding a "when `FNDECL' succeeds" message.
77 : This is still abstract: the custom_edge_info::update_model vfunc
78 : must be implemented. */
79 :
80 : class success_call_info : public succeed_or_fail_call_info
81 : {
82 : protected:
83 9 : success_call_info (const call_details &cd)
84 9 : : succeed_or_fail_call_info (cd, true)
85 : {}
86 : };
87 :
88 : /* Subclass of call_info for a "failure" outcome of a call,
89 : adding a "when `FNDECL' fails" message.
90 : This is still abstract: the custom_edge_info::update_model vfunc
91 : must be implemented. */
92 :
93 0 : class failed_call_info : public succeed_or_fail_call_info
94 : {
95 : protected:
96 319 : failed_call_info (const call_details &cd)
97 319 : : succeed_or_fail_call_info (cd, false)
98 : {}
99 : };
100 :
101 : } // namespace ana
102 :
103 : #endif /* GCC_ANALYZER_CALL_INFO_H */
|