1 /* Support code for handling the various dump_* calls in dumpfile.h
2 Copyright (C) 2018-2019 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
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
12 GCC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU 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/>. */
22 #ifndef GCC_DUMP_CONTEXT_H
23 #define GCC_DUMP_CONTEXT_H 1
26 #include "pretty-print.h"
30 class optrecord_json_writer
;
31 namespace selftest
{ class temp_dump_context
; }
33 /* A class for handling the various dump_* calls.
35 In particular, this class has responsibility for consolidating
36 the "dump_*" calls into optinfo instances (delimited by "dump_*_loc"
37 calls), and emitting them.
39 Putting this in a class (rather than as global state) allows
40 for selftesting of this code. */
44 friend class selftest::temp_dump_context
;
47 static dump_context
&get () { return *s_current
; }
51 void refresh_dumps_are_enabled ();
53 void dump_loc (const dump_metadata_t
&metadata
,
54 const dump_user_location_t
&loc
);
55 void dump_loc_immediate (dump_flags_t dump_kind
,
56 const dump_user_location_t
&loc
);
58 void dump_gimple_stmt (const dump_metadata_t
&metadata
,
59 dump_flags_t extra_dump_flags
,
62 void dump_gimple_stmt_loc (const dump_metadata_t
&metadata
,
63 const dump_user_location_t
&loc
,
64 dump_flags_t extra_dump_flags
,
67 void dump_gimple_expr (const dump_metadata_t
&metadata
,
68 dump_flags_t extra_dump_flags
,
71 void dump_gimple_expr_loc (const dump_metadata_t
&metadata
,
72 const dump_user_location_t
&loc
,
73 dump_flags_t extra_dump_flags
,
77 void dump_generic_expr (const dump_metadata_t
&metadata
,
78 dump_flags_t extra_dump_flags
,
81 void dump_generic_expr_loc (const dump_metadata_t
&metadata
,
82 const dump_user_location_t
&loc
,
83 dump_flags_t extra_dump_flags
,
86 void dump_printf_va (const dump_metadata_t
&metadata
, const char *format
,
87 va_list *ap
) ATTRIBUTE_GCC_DUMP_PRINTF (3, 0);
89 void dump_printf_loc_va (const dump_metadata_t
&metadata
,
90 const dump_user_location_t
&loc
,
91 const char *format
, va_list *ap
)
92 ATTRIBUTE_GCC_DUMP_PRINTF (4, 0);
94 template<unsigned int N
, typename C
>
95 void dump_dec (const dump_metadata_t
&metadata
, const poly_int
<N
, C
> &value
);
97 void dump_symtab_node (const dump_metadata_t
&metadata
, symtab_node
*node
);
99 /* Managing nested scopes. */
100 unsigned int get_scope_depth () const;
101 void begin_scope (const char *name
,
102 const dump_user_location_t
&user_location
,
103 const dump_impl_location_t
&impl_location
);
106 /* Should optinfo instances be created?
107 All creation of optinfos should be guarded by this predicate.
108 Return true if any optinfo destinations are active. */
109 bool optinfo_enabled_p () const;
111 bool optimization_records_enabled_p () const
113 return m_json_writer
!= NULL
;
115 void set_json_writer (optrecord_json_writer
*writer
);
116 void finish_any_json_writer ();
118 void end_any_optinfo ();
120 void emit_optinfo (const optinfo
*info
);
121 void emit_item (optinfo_item
*item
, dump_flags_t dump_kind
);
123 bool apply_dump_filter_p (dump_flags_t dump_kind
, dump_flags_t filter
) const;
126 optinfo
&ensure_pending_optinfo (const dump_metadata_t
&metadata
);
127 optinfo
&begin_next_optinfo (const dump_metadata_t
&metadata
,
128 const dump_user_location_t
&loc
);
130 /* The current nesting depth of dump scopes, for showing nesting
132 unsigned int m_scope_depth
;
134 /* The optinfo currently being accumulated since the last dump_*_loc call,
138 /* If -fsave-optimization-record is enabled, the heap-allocated JSON writer
139 instance, otherwise NULL. */
140 optrecord_json_writer
*m_json_writer
;
142 /* For use in selftests: if non-NULL, then items are to be printed
143 to this, using the given flags. */
144 pretty_printer
*m_test_pp
;
145 dump_flags_t m_test_pp_flags
;
147 /* The currently active dump_context, for use by the dump_* API calls. */
148 static dump_context
*s_current
;
150 /* The default active context. */
151 static dump_context s_default
;
154 /* A subclass of pretty_printer for implementing dump_context::dump_printf_va.
155 In particular, the formatted chunks are captured as optinfo_item instances,
156 thus retaining metadata about the entities being dumped (e.g. source
157 locations), rather than just as plain text. */
159 class dump_pretty_printer
: public pretty_printer
162 dump_pretty_printer (dump_context
*context
, dump_flags_t dump_kind
);
164 void emit_items (optinfo
*dest
);
167 /* Information on an optinfo_item that was generated during phase 2 of
171 stashed_item (const char **buffer_ptr_
, optinfo_item
*item_
)
172 : buffer_ptr (buffer_ptr_
), item (item_
) {}
173 const char **buffer_ptr
;
177 static bool format_decoder_cb (pretty_printer
*pp
, text_info
*text
,
178 const char *spec
, int /*precision*/,
179 bool /*wide*/, bool /*set_locus*/,
180 bool /*verbose*/, bool */
*quoted*/
,
181 const char **buffer_ptr
);
183 bool decode_format (text_info
*text
, const char *spec
,
184 const char **buffer_ptr
);
186 void stash_item (const char **buffer_ptr
, optinfo_item
*item
);
188 void emit_any_pending_textual_chunks (optinfo
*dest
);
190 void emit_item (optinfo_item
*item
, optinfo
*dest
);
192 dump_context
*m_context
;
193 dump_flags_t m_dump_kind
;
194 auto_vec
<stashed_item
> m_stashed_items
;
201 /* An RAII-style class for use in selftests for temporarily using a different
204 class temp_dump_context
207 temp_dump_context (bool forcibly_enable_optinfo
,
208 bool forcibly_enable_dumping
,
209 dump_flags_t test_pp_flags
);
210 ~temp_dump_context ();
212 /* Support for selftests. */
213 optinfo
*get_pending_optinfo () const { return m_context
.m_pending
; }
214 const char *get_dumped_text ();
218 dump_context m_context
;
219 dump_context
*m_saved
;
222 /* Implementation detail of ASSERT_DUMPED_TEXT_EQ. */
224 extern void verify_dumped_text (const location
&loc
,
225 temp_dump_context
*context
,
226 const char *expected_text
);
228 /* Verify that the text dumped so far in CONTEXT equals
230 As a side-effect, the internal buffer is 0-terminated. */
232 #define ASSERT_DUMPED_TEXT_EQ(CONTEXT, EXPECTED_TEXT) \
233 SELFTEST_BEGIN_STMT \
234 verify_dumped_text (SELFTEST_LOCATION, &(CONTEXT), (EXPECTED_TEXT)); \
238 /* Verify that ITEM has the expected values. */
241 verify_item (const location
&loc
,
242 const optinfo_item
*item
,
243 enum optinfo_item_kind expected_kind
,
244 location_t expected_location
,
245 const char *expected_text
);
247 /* Verify that ITEM is a text item, with EXPECTED_TEXT. */
249 #define ASSERT_IS_TEXT(ITEM, EXPECTED_TEXT) \
250 SELFTEST_BEGIN_STMT \
251 verify_item (SELFTEST_LOCATION, (ITEM), OPTINFO_ITEM_KIND_TEXT, \
252 UNKNOWN_LOCATION, (EXPECTED_TEXT)); \
255 /* Verify that ITEM is a tree item, with the expected values. */
257 #define ASSERT_IS_TREE(ITEM, EXPECTED_LOCATION, EXPECTED_TEXT) \
258 SELFTEST_BEGIN_STMT \
259 verify_item (SELFTEST_LOCATION, (ITEM), OPTINFO_ITEM_KIND_TREE, \
260 (EXPECTED_LOCATION), (EXPECTED_TEXT)); \
263 /* Verify that ITEM is a gimple item, with the expected values. */
265 #define ASSERT_IS_GIMPLE(ITEM, EXPECTED_LOCATION, EXPECTED_TEXT) \
266 SELFTEST_BEGIN_STMT \
267 verify_item (SELFTEST_LOCATION, (ITEM), OPTINFO_ITEM_KIND_GIMPLE, \
268 (EXPECTED_LOCATION), (EXPECTED_TEXT)); \
271 /* Verify that ITEM is a symtab node, with the expected values. */
273 #define ASSERT_IS_SYMTAB_NODE(ITEM, EXPECTED_LOCATION, EXPECTED_TEXT) \
274 SELFTEST_BEGIN_STMT \
275 verify_item (SELFTEST_LOCATION, (ITEM), OPTINFO_ITEM_KIND_SYMTAB_NODE, \
276 (EXPECTED_LOCATION), (EXPECTED_TEXT)); \
279 } // namespace selftest
281 #endif /* CHECKING_P */
283 #endif /* GCC_DUMP_CONTEXT_H */