OpenMP: Update documentation of metadirective implementation status.
[gcc.git] / gcc / selftest-diagnostic-path.h
blobe20986c58b570ee6f4cea6b868bc036919f7f997
1 /* Concrete classes for selftests involving diagnostic paths.
2 Copyright (C) 2019-2025 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 under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
10 version.
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 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_SELFTEST_DIAGNOSTIC_PATH_H
22 #define GCC_SELFTEST_DIAGNOSTIC_PATH_H
24 #include "diagnostic-path.h"
25 #include "selftest-logical-location.h"
27 /* The selftest code should entirely disappear in a production
28 configuration, hence we guard all of it with #if CHECKING_P. */
30 #if CHECKING_P
32 namespace selftest {
34 /* Concrete subclasses of the abstract base classes
35 declared in diagnostic-path.h for use in selftests.
37 This code should have no dependency on "tree". */
39 /* An implementation of diagnostic_event. */
41 class test_diagnostic_event : public diagnostic_event
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 ();
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
53 pp_string (&pp, m_desc);
55 const logical_location *get_logical_location () const final override
57 if (m_logical_loc.get_name ())
58 return &m_logical_loc;
59 else
60 return nullptr;
62 meaning get_meaning () const final override
64 return meaning ();
66 bool connect_to_next_event_p () const final override
68 return m_connected_to_next_event;
70 diagnostic_thread_id_t get_thread_id () const final override
72 return m_thread_id;
75 void connect_to_next_event ()
77 m_connected_to_next_event = true;
80 const char *get_function_name () const
82 return m_logical_loc.get_name ();
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;
94 /* A simple implementation of diagnostic_thread. */
96 class test_diagnostic_thread : public diagnostic_thread
98 public:
99 test_diagnostic_thread (const char *name) : m_name (name) {}
100 label_text get_name (bool) const final override
102 return label_text::borrow (m_name);
105 private:
106 const char *m_name; // has been i18n-ed and formatted
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". */
115 class test_diagnostic_path : public diagnostic_path
117 public:
118 test_diagnostic_path (pretty_printer *event_pp);
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;
129 diagnostic_thread_id_t add_thread (const char *name);
131 diagnostic_event_id_t add_event (location_t loc, const char *funcname, int depth,
132 const char *fmt, ...)
133 ATTRIBUTE_GCC_DIAG(5,6);
134 diagnostic_event_id_t
135 add_thread_event (diagnostic_thread_id_t thread_id,
136 location_t loc, const char *funcname, int depth,
137 const char *fmt, ...)
138 ATTRIBUTE_GCC_DIAG(6,7);
140 void connect_to_next_event ();
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);
151 private:
152 auto_delete_vec<test_diagnostic_thread> m_threads;
153 auto_delete_vec<test_diagnostic_event> m_events;
155 /* (for use by add_event). */
156 pretty_printer *m_event_pp;
159 } // namespace selftest
161 #endif /* #if CHECKING_P */
163 #endif /* ! GCC_SELFTEST_DIAGNOSTIC_PATH_H */