libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git] / gcc / pretty-print-markup.h
blob8e6897ce25ff08e4c97a81e0ff9ee1b6a6017d03
1 /* Copyright (C) 2024 Free Software Foundation, Inc.
2 Contributed by David Malcolm <dmalcolm@redhat.com>
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
9 version.
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 for more details.
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
20 #ifndef GCC_PRETTY_PRINT_MARKUP_H
21 #define GCC_PRETTY_PRINT_MARKUP_H
23 #include "diagnostic-color.h"
25 class pp_token_list;
27 namespace pp_markup {
29 class context
31 public:
32 context (pretty_printer &pp,
33 bool &quoted,
34 pp_token_list *formatted_token_list)
35 : m_pp (pp),
36 m_buf (*pp_buffer (&pp)),
37 m_quoted (quoted),
38 m_formatted_token_list (formatted_token_list)
42 void begin_quote ();
43 void end_quote ();
45 void begin_highlight_color (const char *color_name);
46 void end_highlight_color ();
48 void push_back_any_text ();
50 pretty_printer &m_pp;
51 output_buffer &m_buf;
52 bool &m_quoted;
53 pp_token_list *m_formatted_token_list;
56 /* Abstract base class for use in pp_format for handling "%e".
57 This can add arbitrary content to the buffer being constructed, and
58 isolates the non-typesafe part of the formatting call in one place. */
60 class element
62 public:
63 virtual ~element () {}
64 virtual void add_to_phase_2 (context &ctxt) = 0;
66 protected:
67 element () {}
69 private:
70 DISABLE_COPY_AND_ASSIGN (element);
73 /* Concrete subclass: handle "%e" by printing a comma-separated list
74 of quoted strings. */
76 class comma_separated_quoted_strings : public element
78 public:
79 comma_separated_quoted_strings (const auto_vec<const char *> &strings)
80 : m_strings (strings)
84 void add_to_phase_2 (context &ctxt) final override;
86 private:
87 const auto_vec<const char *> &m_strings;
90 } // namespace pp_markup
92 #endif /* GCC_PRETTY_PRINT_MARKUP_H */