GCC Middle and Back End API Reference
selftest-diagnostic-path.h
Go to the documentation of this file.
1/* Concrete classes for selftests involving diagnostic paths.
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 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
15for 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_SELFTEST_DIAGNOSTIC_PATH_H
22#define GCC_SELFTEST_DIAGNOSTIC_PATH_H
23
24#include "diagnostic-path.h"
26
27/* The selftest code should entirely disappear in a production
28 configuration, hence we guard all of it with #if CHECKING_P. */
29
30#if CHECKING_P
31
32namespace selftest {
33
34/* Concrete subclasses of the abstract base classes
35 declared in diagnostic-path.h for use in selftests.
36
37 This code should have no dependency on "tree". */
38
39/* An implementation of diagnostic_event. */
40
41class test_diagnostic_event : public diagnostic_event
42{
43 public:
44 test_diagnostic_event (location_t loc, const char *funcname, int depth,
45 const char *desc,
46 diagnostic_thread_id_t thread_id = 0);
47 ~test_diagnostic_event ();
48
49 location_t get_location () const final override { return m_loc; }
50 int get_stack_depth () const final override { return m_depth; }
51 void print_desc (pretty_printer &pp) const final override
52 {
53 pp_string (&pp, m_desc);
54 }
55 const logical_location *get_logical_location () const final override
56 {
57 if (m_logical_loc.get_name ())
58 return &m_logical_loc;
59 else
60 return nullptr;
61 }
62 meaning get_meaning () const final override
63 {
64 return meaning ();
65 }
66 bool connect_to_next_event_p () const final override
67 {
68 return m_connected_to_next_event;
69 }
70 diagnostic_thread_id_t get_thread_id () const final override
71 {
72 return m_thread_id;
73 }
74
75 void connect_to_next_event ()
76 {
77 m_connected_to_next_event = true;
78 }
79
80 const char *get_function_name () const
81 {
82 return m_logical_loc.get_name ();
83 }
84
85 private:
86 location_t m_loc;
87 test_logical_location m_logical_loc;
88 int m_depth;
89 char *m_desc; // has been formatted; doesn't get i18n-ed
90 bool m_connected_to_next_event;
91 diagnostic_thread_id_t m_thread_id;
92};
93
94/* A simple implementation of diagnostic_thread. */
95
96class test_diagnostic_thread : public diagnostic_thread
97{
98public:
99 test_diagnostic_thread (const char *name) : m_name (name) {}
100 label_text get_name (bool) const final override
101 {
102 return label_text::borrow (m_name);
103 }
104
105private:
106 const char *m_name; // has been i18n-ed and formatted
107};
108
109/* A concrete subclass of diagnostic_path for implementing selftests
110 - a vector of test_diagnostic_event instances
111 - adds member functions for adding test event
112 - does no translation of its events
113 - has no dependency on "tree". */
114
115class test_diagnostic_path : public diagnostic_path
116{
117 public:
118 test_diagnostic_path (pretty_printer *event_pp);
119
120 unsigned num_events () const final override;
121 const diagnostic_event & get_event (int idx) const final override;
122 unsigned num_threads () const final override;
123 const diagnostic_thread &
124 get_thread (diagnostic_thread_id_t) const final override;
125 bool
126 same_function_p (int event_idx_a,
127 int event_idx_b) const final override;
128
129 diagnostic_thread_id_t add_thread (const char *name);
130
131 diagnostic_event_id_t add_event (location_t loc, const char *funcname, int depth,
132 const char *fmt, ...)
135 add_thread_event (diagnostic_thread_id_t thread_id,
136 location_t loc, const char *funcname, int depth,
137 const char *fmt, ...)
139
140 void connect_to_next_event ();
141
142 void add_entry (const char *callee_name, int stack_depth,
143 diagnostic_thread_id_t thread_id = 0);
144 void add_return (const char *caller_name, int stack_depth,
145 diagnostic_thread_id_t thread_id = 0);
146 void add_call (const char *caller_name,
147 int caller_stack_depth,
148 const char *callee_name,
149 diagnostic_thread_id_t thread_id = 0);
150
151 private:
152 auto_delete_vec<test_diagnostic_thread> m_threads;
153 auto_delete_vec<test_diagnostic_event> m_events;
154
155 /* (for use by add_event). */
156 pretty_printer *m_event_pp;
157};
158
159} // namespace selftest
160
161#endif /* #if CHECKING_P */
162
163#endif /* ! GCC_SELFTEST_DIAGNOSTIC_PATH_H */
Definition vec.h:1802
Definition diagnostic-event-id.h:37
Definition diagnostic-path.h:70
Definition diagnostic-path.h:188
Definition diagnostic-path.h:179
Definition logical-location.h:55
Definition pretty-print.h:241
#define ATTRIBUTE_GCC_DIAG(m, n)
Definition diagnostic-core.h:100
int diagnostic_thread_id_t
Definition diagnostic-event-id.h:70
void final(rtx_insn *first, FILE *file, int optimize_p)
Definition final.cc:2004
static location_t get_location(const gimple *stmt)
Definition gimple-ssa-warn-access.cc:78
Definition dump-context.h:31
void pp_string(pretty_printer *pp, const char *str)
Definition pretty-print.cc:2653
static const char * get_function_name(struct function *fn)
Definition statistics.cc:124
const char * get_name(tree t)
Definition tree.cc:11839