1 /* Support for plotting bar charts in dumps.
2 Copyright (C) 2020-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
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)
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.
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_ANALYZER_BAR_CHART_H
22 #define GCC_ANALYZER_BAR_CHART_H
26 /* A class for printing bar charts to a pretty_printer.
28 TODO(stage1): move to gcc subdir? */
33 typedef unsigned long value_t
;
35 /* Add an item, taking a copy of NAME. */
36 void add_item (const char *name
, value_t value
);
38 /* Print the data to PP. */
39 void print (pretty_printer
*pp
) const;
44 item (const char *name
, value_t value
)
45 : m_name (xstrdup (name
)), m_strlen (strlen (name
)) , m_value (value
) {}
46 ~item () { free (m_name
); }
53 static void print_padding (pretty_printer
*pp
, size_t count
);
55 auto_delete_vec
<item
> m_items
;
60 #endif /* GCC_ANALYZER_BAR_CHART_H */