Require target lra in gcc.dg/pr108095.c
[official-gcc.git] / gcc / analyzer / bar-chart.h
blob44a4a4777a06e3cd92b57e38cad15be42cfea24e
1 /* Support for plotting bar charts in dumps.
2 Copyright (C) 2020-2023 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)
10 any later version.
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
24 namespace ana {
26 /* A class for printing bar charts to a pretty_printer.
28 TODO(stage1): move to gcc subdir? */
30 class bar_chart
32 public:
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;
41 private:
42 struct item
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); }
48 char *m_name;
49 size_t m_strlen;
50 value_t m_value;
53 static void print_padding (pretty_printer *pp, size_t count);
55 auto_delete_vec<item> m_items;
58 } // namespace ana
60 #endif /* GCC_ANALYZER_BAR_CHART_H */