Make graph dumps use graphviz format
[official-gcc.git] / gcc / optinfo-emit-json.h
blobdc85ce29cf6f0fab02837b3281b7f164b3b91c54
1 /* Emit optimization information as JSON files.
2 Copyright (C) 2018-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 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_OPTINFO_EMIT_JSON_H
22 #define GCC_OPTINFO_EMIT_JSON_H
24 #include "json.h"
26 class optinfo;
28 /* A class for writing out optimization records in JSON format. */
30 class optrecord_json_writer
32 public:
33 optrecord_json_writer ();
34 ~optrecord_json_writer ();
35 void write () const;
36 void add_record (const optinfo *optinfo);
37 void pop_scope ();
39 void add_record (json::object *obj);
40 json::object *impl_location_to_json (dump_impl_location_t loc);
41 json::object *location_to_json (location_t loc);
42 json::object *profile_count_to_json (profile_count count);
43 json::string *get_id_value_for_pass (opt_pass *pass);
44 json::object *pass_to_json (opt_pass *pass);
45 json::value *inlining_chain_to_json (location_t loc);
46 json::object *optinfo_to_json (const optinfo *optinfo);
47 void add_pass_list (json::array *arr, opt_pass *pass);
49 private:
50 /* The root value for the JSON file.
51 Currently the JSON values are stored in memory, and flushed when the
52 compiler exits. It would probably be better to simply write out
53 the JSON as we go. */
54 json::array *m_root_tuple;
56 /* The currently open scopes, for expressing nested optimization records. */
57 auto_vec<json::array *> m_scopes;
60 #endif /* #ifndef GCC_OPTINFO_EMIT_JSON_H */