GCC Middle and Back End API Reference
pretty-print.h
Go to the documentation of this file.
1/* Various declarations for language-independent pretty-print subroutines.
2 Copyright (C) 2002-2024 Free Software Foundation, Inc.
3 Contributed by Gabriel Dos Reis <gdr@integrable-solutions.net>
4
5This file is part of GCC.
6
7GCC is free software; you can redistribute it and/or modify it under
8the terms of the GNU General Public License as published by the Free
9Software Foundation; either version 3, or (at your option) any later
10version.
11
12GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13WARRANTY; without even the implied warranty of MERCHANTABILITY or
14FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15for more details.
16
17You should have received a copy of the GNU General Public License
18along with GCC; see the file COPYING3. If not see
19<http://www.gnu.org/licenses/>. */
20
21#ifndef GCC_PRETTY_PRINT_H
22#define GCC_PRETTY_PRINT_H
23
24#include "obstack.h"
25#include "rich-location.h"
26#include "diagnostic-url.h"
27
28/* Maximum number of format string arguments. */
29#define PP_NL_ARGMAX 30
30
31/* The type of a text to be formatted according a format specification
32 along with a list of things. */
34{
35 text_info () = default;
36 text_info (const char *format_spec,
37 va_list *args_ptr,
38 int err_no,
39 void **data = nullptr,
40 rich_location *rich_loc = nullptr)
41 : m_format_spec (format_spec),
42 m_args_ptr (args_ptr),
43 m_err_no (err_no),
44 m_data (data),
45 m_richloc (rich_loc)
46 {
47 }
48
49 void set_location (unsigned int idx, location_t loc,
50 enum range_display_kind range_display_kind);
51 location_t get_location (unsigned int index_of_location) const;
52
53 const char *m_format_spec;
54 va_list *m_args_ptr;
55 int m_err_no; /* for %m */
56 void **m_data;
57 rich_location *m_richloc;
58};
59
60/* How often diagnostics are prefixed by their locations:
61 o DIAGNOSTICS_SHOW_PREFIX_NEVER: never - not yet supported;
62 o DIAGNOSTICS_SHOW_PREFIX_ONCE: emit only once;
63 o DIAGNOSTICS_SHOW_PREFIX_EVERY_LINE: emit each time a physical
64 line is started. */
71
73class output_buffer;
74class pp_token_list;
75class urlifier;
76
77namespace pp_markup {
78 class context;
79} // namespace pp_markup
80
81/* The output buffer datatype. This is best seen as an abstract datatype
82 whose fields should not be accessed directly by clients. */
84{
85public:
87 output_buffer (const output_buffer &) = delete;
92
95
96 /* Obstack where the text is built up. */
98
99 /* Obstack containing a chunked representation of the format
100 specification plus arguments. */
102
103 /* Currently active obstack: one of the above two. This is used so
104 that the text formatters don't need to know which phase we're in. */
106
107 /* Topmost element in a stack of arrays of formatted chunks.
108 These come from the chunk_obstack. */
110
111 /* Where to output formatted text. */
112 FILE *m_stream;
113
114 /* The amount of characters output so far. */
116
117 /* This must be large enough to hold any printed integer or
118 floating-point value. */
119 char m_digit_buffer[128];
120
121 /* Nonzero means that text should be flushed when
122 appropriate. Otherwise, text is buffered until either
123 pp_really_flush or pp_clear_output_area are called. */
125};
126
127/* Finishes constructing a NULL-terminated character string representing
128 the buffered text. */
129inline const char *
131{
132 obstack_1grow (buff->m_obstack, '\0');
133 return (const char *) obstack_base (buff->m_obstack);
134}
135
136/* Append to the output buffer a string specified by its
137 STARTing character and LENGTH. */
138inline void
139output_buffer_append_r (output_buffer *buff, const char *start, int length)
140{
141 gcc_checking_assert (start);
142 obstack_grow (buff->m_obstack, start, length);
143 for (int i = 0; i < length; i++)
144 if (start[i] == '\n')
145 buff->m_line_length = 0;
146 else
147 buff->m_line_length++;
148}
149
150/* Return a pointer to the last character emitted in the
151 output_buffer. A NULL pointer means no character available. */
152inline const char *
154{
155 const char *p = NULL;
156 struct obstack *text = buff->m_obstack;
157
158 if (obstack_base (text) != obstack_next_free (text))
159 p = ((const char *) obstack_next_free (text)) - 1;
160 return p;
161}
162
163
164/* The type of pretty-printer flags passed to clients. */
165typedef unsigned int pp_flags;
166
171
172/* Structure for switching in and out of verbatim mode in a convenient
173 manner. */
175{
176 /* Current prefixing rule. */
178
179 /* The ideal upper bound of number of characters per line, as suggested
180 by front-end. */
182};
183
184/* The type of a hook that formats client-specific data onto a pretty_printer.
185 A client-supplied formatter returns true if everything goes well,
186 otherwise it returns false. */
187typedef bool (*printer_fn) (pretty_printer *, text_info *, const char *,
188 int, bool, bool, bool, bool *, pp_token_list &);
189
190/* Base class for an optional client-supplied object for doing additional
191 processing between stages 2 and 3 of formatted printing. */
193{
194 public:
196 virtual format_postprocessor *clone() const = 0;
197 virtual void handle (pretty_printer *) = 0;
198};
199
200/* Abstract base class for writing formatted tokens to the pretty_printer's
201 text buffer, allowing for output formats and dumpfiles to override
202 how different kinds of tokens are handled. */
203
205{
206public:
207 virtual ~token_printer () {}
208 virtual void print_tokens (pretty_printer *pp,
209 const pp_token_list &tokens) = 0;
210};
211
212inline bool & pp_needs_newline (pretty_printer *pp);
213
214/* True if PRETTY-PRINTER is in line-wrapping mode. */
215#define pp_is_wrapping_line(PP) (pp_line_cutoff (PP) > 0)
216
218inline output_buffer *pp_buffer (const pretty_printer *pp);
219inline const char *pp_get_prefix (const pretty_printer *pp);
220extern char *pp_take_prefix (pretty_printer *);
221extern void pp_destroy_prefix (pretty_printer *);
222inline int &pp_line_cutoff (pretty_printer *pp);
225inline int & pp_indentation (pretty_printer *pp);
226inline bool & pp_translate_identifiers (pretty_printer *pp);
227inline bool & pp_show_color (pretty_printer *pp);
230inline bool & pp_show_highlight_colors (pretty_printer *pp);
231
232class urlifier;
233
234/* The data structure that contains the bare minimum required to do
235 proper pretty-printing. Clients may derive from this structure
236 and add additional fields they need. */
238{
239public:
240 friend inline output_buffer *&pp_buffer (pretty_printer *pp);
241 friend inline output_buffer *pp_buffer (const pretty_printer *pp);
242 friend inline const char *pp_get_prefix (const pretty_printer *pp);
243 friend char *pp_take_prefix (pretty_printer *);
244 friend void pp_destroy_prefix (pretty_printer *);
245 friend inline int &pp_line_cutoff (pretty_printer *pp);
246 friend inline diagnostic_prefixing_rule_t &
248 friend inline const diagnostic_prefixing_rule_t &
251 friend bool & pp_needs_newline (pretty_printer *pp);
252 friend int & pp_indentation (pretty_printer *pp);
253 friend bool & pp_translate_identifiers (pretty_printer *pp);
254 friend bool & pp_show_color (pretty_printer *pp);
257 friend bool & pp_show_highlight_colors (pretty_printer *pp);
258
260 const urlifier *);
261
262 /* Default construct a pretty printer with specified
263 maximum line length cut off limit. */
264 explicit pretty_printer (int = 0);
265 explicit pretty_printer (const pretty_printer &other);
266
267 virtual ~pretty_printer ();
268
269 virtual pretty_printer *clone () const;
270
271 void set_output_stream (FILE *outfile)
272 {
273 m_buffer->m_stream = outfile;
274 }
275
277 {
278 m_token_printer = tp; // borrowed
279 }
280
281 void set_prefix (char *prefix);
282
283 void emit_prefix ();
284
285 void format (text_info &text);
286
287 void maybe_space ();
288
289 bool supports_urls_p () const { return m_url_format != URL_FORMAT_NONE; }
292 {
293 m_url_format = url_format;
294 }
295
296 void begin_url (const char *url);
297 void end_url ();
298
299 /* Switch into verbatim mode and return the old mode. */
302 {
303 const pp_wrapping_mode_t oldmode = pp_wrapping_mode (this);
304 pp_line_cutoff (this) = 0;
306 return oldmode;
307 }
308
309 void set_padding (pp_padding padding) { m_padding = padding; }
310 pp_padding get_padding () const { return m_padding; }
311
312 void clear_state ();
315
316private:
317 /* Where we print external representation of ENTITY. */
319
320 /* The prefix for each new line. If non-NULL, this is "owned" by the
321 pretty_printer, and will eventually be free-ed. */
322 char *m_prefix;
323
324 /* Where to put whitespace around the entity being formatted. */
326
327 /* The real upper bound of number of characters per line, taking into
328 account the case of a very very looong prefix. */
330
331 /* Indentation count. */
333
334 /* Current wrapping mode. */
336
337 /* If non-NULL, this function formats a TEXT into the BUFFER. When called,
338 TEXT->format_spec points to a format code. FORMAT_DECODER should call
339 pp_string (and related functions) to add data to the BUFFER.
340 FORMAT_DECODER can read arguments from *TEXT->args_pts using VA_ARG.
341 If the BUFFER needs additional characters from the format string, it
342 should advance the TEXT->format_spec as it goes. When FORMAT_DECODER
343 returns, TEXT->format_spec should point to the last character processed.
344 The QUOTE and FORMATTED_TOKEN_LIST are passed in, to allow for
345 deferring-handling of format codes (e.g. %H and %I in
346 the C++ frontend). */
348
349 /* If non-NULL, this is called by pp_format once after all format codes
350 have been processed, to allow for client-specific postprocessing.
351 This is used by the C++ frontend for handling the %H and %I
352 format codes (which interract with each other). */
354
355 /* This is used by pp_output_formatted_text after it has converted all
356 formatted chunks into a single list of tokens.
357 Can be nullptr.
358 Borrowed from the output format or from dump_pretty_printer. */
360
361 /* Nonzero if current PREFIX was emitted at least once. */
363
364 /* Nonzero means one should emit a newline before outputting anything. */
366
367 /* Nonzero means identifiers are translated to the locale character
368 set on output. */
370
371 /* Nonzero means that text should be colorized. */
373
374 /* True means that pertinent sections within the text should be
375 highlighted with color. */
377
378 /* Whether URLs should be emitted, and which terminator to use. */
380
381 /* If true, then we've had a begin_url (nullptr), and so the
382 next end_url should be a no-op. */
384};
385
386inline output_buffer *&
388{
389 return pp->m_buffer;
390}
391
392inline output_buffer *
394{
395 return pp->m_buffer;
396}
397
398inline const char *
400{
401 return pp->m_prefix;
402}
403
404/* TRUE if a newline character needs to be added before further
405 formatting. */
406inline bool &
408{
409 return pp->m_need_newline;
410}
411
412/* The amount of whitespace to be emitted when starting a new line. */
413inline int &
415{
416 return pp->m_indent_skip;
417}
418
419/* True if identifiers are translated to the locale character set on
420 output. */
421inline bool &
426
427/* True if colors should be shown. */
428inline bool &
430{
431 return pp->m_show_color;
432}
433
434inline printer_fn &
436{
437 return pp->m_format_decoder;
438}
439
440inline format_postprocessor *&
445
446inline bool &
451
452/* Maximum characters per line in automatic line wrapping mode.
453 Zero means don't wrap lines. */
454inline int &
456{
457 return pp->m_wrapping.line_cutoff;
458}
459
460/* Prefixing rule used in formatting a diagnostic message. */
463{
464 return pp->m_wrapping.rule;
465}
466inline const diagnostic_prefixing_rule_t &
468{
469 return pp->m_wrapping.rule;
470}
471
472/* Get or set the wrapping mode as a single entity. */
473inline pp_wrapping_mode_t &
475{
476 return pp->m_wrapping;
477}
478
479#define pp_space(PP) pp_character (PP, ' ')
480#define pp_left_paren(PP) pp_character (PP, '(')
481#define pp_right_paren(PP) pp_character (PP, ')')
482#define pp_left_bracket(PP) pp_character (PP, '[')
483#define pp_right_bracket(PP) pp_character (PP, ']')
484#define pp_left_brace(PP) pp_character (PP, '{')
485#define pp_right_brace(PP) pp_character (PP, '}')
486#define pp_semicolon(PP) pp_character (PP, ';')
487#define pp_comma(PP) pp_character (PP, ',')
488#define pp_dot(PP) pp_character (PP, '.')
489#define pp_colon(PP) pp_character (PP, ':')
490#define pp_colon_colon(PP) pp_string (PP, "::")
491#define pp_arrow(PP) pp_string (PP, "->")
492#define pp_equal(PP) pp_character (PP, '=')
493#define pp_question(PP) pp_character (PP, '?')
494#define pp_bar(PP) pp_character (PP, '|')
495#define pp_bar_bar(PP) pp_string (PP, "||")
496#define pp_carret(PP) pp_character (PP, '^')
497#define pp_ampersand(PP) pp_character (PP, '&')
498#define pp_ampersand_ampersand(PP) pp_string (PP, "&&")
499#define pp_less(PP) pp_character (PP, '<')
500#define pp_less_equal(PP) pp_string (PP, "<=")
501#define pp_greater(PP) pp_character (PP, '>')
502#define pp_greater_equal(PP) pp_string (PP, ">=")
503#define pp_plus(PP) pp_character (PP, '+')
504#define pp_minus(PP) pp_character (PP, '-')
505#define pp_star(PP) pp_character (PP, '*')
506#define pp_slash(PP) pp_character (PP, '/')
507#define pp_modulo(PP) pp_character (PP, '%')
508#define pp_exclamation(PP) pp_character (PP, '!')
509#define pp_complement(PP) pp_character (PP, '~')
510#define pp_quote(PP) pp_character (PP, '\'')
511#define pp_backquote(PP) pp_character (PP, '`')
512#define pp_doublequote(PP) pp_character (PP, '"')
513#define pp_underscore(PP) pp_character (PP, '_')
514#define pp_maybe_newline_and_indent(PP, N) \
515 if (pp_needs_newline (PP)) pp_newline_and_indent (PP, N)
516#define pp_scalar(PP, FORMAT, SCALAR) \
517 do \
518 { \
519 sprintf (pp_buffer (PP)->m_digit_buffer, FORMAT, SCALAR); \
520 pp_string (PP, pp_buffer (PP)->m_digit_buffer); \
521 } \
522 while (0)
523#define pp_decimal_int(PP, I) pp_scalar (PP, "%d", I)
524#define pp_unsigned_wide_integer(PP, I) \
525 pp_scalar (PP, HOST_WIDE_INT_PRINT_UNSIGNED, (unsigned HOST_WIDE_INT) I)
526#define pp_vrange(PP, R) \
527 do \
528 { \
529 vrange_printer vrange_pp (PP); \
530 (R)->accept (vrange_pp); \
531 } \
532 while (0)
533#define pp_double(PP, F) pp_scalar (PP, "%f", F)
534#define pp_pointer(PP, P) pp_scalar (PP, "%p", P)
535
536#define pp_identifier(PP, ID) pp_string (PP, (pp_translate_identifiers (PP) \
537 ? identifier_to_locale (ID) \
538 : (ID)))
539
540
541extern void pp_set_line_maximum_length (pretty_printer *, int);
542inline void pp_set_prefix (pretty_printer *pp, char *prefix)
543{
544 pp->set_prefix (prefix);
545}
546extern void pp_clear_output_area (pretty_printer *);
547extern const char *pp_formatted_text (pretty_printer *);
548extern const char *pp_last_position_in_text (const pretty_printer *);
549inline void pp_emit_prefix (pretty_printer *pp)
550{
551 pp->emit_prefix ();
552}
553extern void pp_append_text (pretty_printer *, const char *, const char *);
554extern void pp_newline_and_flush (pretty_printer *);
555extern void pp_newline_and_indent (pretty_printer *, int);
556extern void pp_separate_with (pretty_printer *, char);
557
558/* If we haven't already defined a front-end-specific diagnostics
559 style, use the generic one. */
560#ifdef GCC_DIAG_STYLE
561#define GCC_PPDIAG_STYLE GCC_DIAG_STYLE
562#else
563#define GCC_PPDIAG_STYLE __gcc_diag__
564#endif
565
566/* This header may be included before diagnostics-core.h, hence the duplicate
567 definitions to allow for GCC-specific formats. */
568#if GCC_VERSION >= 3005
569#define ATTRIBUTE_GCC_PPDIAG(m, n) __attribute__ ((__format__ (GCC_PPDIAG_STYLE, m ,n))) ATTRIBUTE_NONNULL(m)
570#else
571#define ATTRIBUTE_GCC_PPDIAG(m, n) ATTRIBUTE_NONNULL(m)
572#endif
573extern void pp_printf (pretty_printer *, const char *, ...)
574 ATTRIBUTE_GCC_PPDIAG(2,3);
575
576extern void pp_verbatim (pretty_printer *, const char *, ...)
577 ATTRIBUTE_GCC_PPDIAG(2,3);
578extern void pp_flush (pretty_printer *);
579extern void pp_really_flush (pretty_printer *);
580inline void pp_format (pretty_printer *pp, text_info *text)
581{
582 gcc_assert (text);
583 pp->format (*text);
584}
585extern void pp_output_formatted_text (pretty_printer *,
586 const urlifier * = nullptr);
587extern void pp_format_verbatim (pretty_printer *, text_info *);
588
589extern void pp_indent (pretty_printer *);
590extern void pp_newline (pretty_printer *);
591extern void pp_character (pretty_printer *, int);
592extern void pp_string (pretty_printer *, const char *);
593extern void pp_string_n (pretty_printer *, const char *, size_t);
594extern void pp_unicode_character (pretty_printer *, unsigned);
595
596extern void pp_write_text_to_stream (pretty_printer *);
597extern void pp_write_text_as_dot_label_to_stream (pretty_printer *, bool);
598extern void pp_write_text_as_html_like_dot_to_stream (pretty_printer *pp);
599
600inline void pp_maybe_space (pretty_printer *pp)
601{
602 pp->maybe_space ();
603}
604
605extern void pp_begin_quote (pretty_printer *, bool);
606extern void pp_end_quote (pretty_printer *, bool);
607
608inline void
609pp_begin_url (pretty_printer *pp, const char *url)
610{
611 pp->begin_url (url);
612}
613
614inline void
615pp_end_url (pretty_printer *pp)
616{
617 pp->end_url ();
618}
619
620/* Switch into verbatim mode and return the old mode. */
621inline pp_wrapping_mode_t
622pp_set_verbatim_wrapping (pretty_printer *pp)
623{
624 return pp->set_verbatim_wrapping ();
625}
626
627extern const char *identifier_to_locale (const char *);
628extern void *(*identifier_to_locale_alloc) (size_t);
629extern void (*identifier_to_locale_free) (void *);
630
631/* Print I to PP in decimal. */
632
633inline void
634pp_wide_integer (pretty_printer *pp, HOST_WIDE_INT i)
635{
636 pp_scalar (pp, HOST_WIDE_INT_PRINT_DEC, i);
637}
638
639inline void
640pp_wide_int (pretty_printer *pp, const wide_int_ref &w, signop sgn)
641{
642 unsigned int len;
643 print_dec_buf_size (w, sgn, &len);
644 if (UNLIKELY (len > sizeof (pp_buffer (pp)->m_digit_buffer)))
645 pp_wide_int_large (pp, w, sgn);
646 else
647 {
648 print_dec (w, pp_buffer (pp)->m_digit_buffer, sgn);
649 pp_string (pp, pp_buffer (pp)->m_digit_buffer);
650 }
651}
652
653template<unsigned int N, typename T>
654void pp_wide_integer (pretty_printer *pp, const poly_int<N, T> &);
655
656#endif /* GCC_PRETTY_PRINT_H */
Definition genoutput.cc:150
Definition pretty-print.h:193
virtual ~format_postprocessor()
Definition pretty-print.h:195
virtual void handle(pretty_printer *)=0
virtual format_postprocessor * clone() const =0
Definition pretty-print.h:84
int m_line_length
Definition pretty-print.h:115
output_buffer()
Definition pretty-print.cc:743
char m_digit_buffer[128]
Definition pretty-print.h:119
pp_formatted_chunks * push_formatted_chunks()
Definition pretty-print.cc:770
bool m_flush_p
Definition pretty-print.h:124
output_buffer(const output_buffer &)=delete
void pop_formatted_chunks()
Definition pretty-print.cc:785
FILE * m_stream
Definition pretty-print.h:112
~output_buffer()
Definition pretty-print.cc:759
output_buffer & operator=(const output_buffer &)=delete
output_buffer(output_buffer &&)=delete
struct obstack * m_obstack
Definition pretty-print.h:105
struct obstack m_formatted_obstack
Definition pretty-print.h:97
struct obstack m_chunk_obstack
Definition pretty-print.h:101
pp_formatted_chunks * m_cur_formatted_chunks
Definition pretty-print.h:109
Definition pretty-print-format-impl.h:366
Definition pretty-print-format-impl.h:300
Definition pretty-print.h:238
friend pp_wrapping_mode_t & pp_wrapping_mode(pretty_printer *pp)
Definition pretty-print.h:474
void set_real_maximum_length()
Definition pretty-print.cc:857
friend char * pp_take_prefix(pretty_printer *)
Definition pretty-print.cc:2329
diagnostic_url_format get_url_format() const
Definition pretty-print.h:290
void format(text_info &text)
Definition pretty-print.cc:1605
friend bool & pp_needs_newline(pretty_printer *pp)
Definition pretty-print.h:407
virtual pretty_printer * clone() const
Definition pretty-print.cc:2446
void maybe_space()
Definition pretty-print.cc:2647
void clear_state()
Definition pretty-print.cc:880
bool m_show_color
Definition pretty-print.h:372
format_postprocessor * m_format_postprocessor
Definition pretty-print.h:353
pp_wrapping_mode_t m_wrapping
Definition pretty-print.h:335
void set_padding(pp_padding padding)
Definition pretty-print.h:309
virtual ~pretty_printer()
Definition pretty-print.cc:2434
int remaining_character_count_for_line()
Definition pretty-print.cc:2489
void set_token_printer(token_printer *tp)
Definition pretty-print.h:276
void set_url_format(diagnostic_url_format url_format)
Definition pretty-print.h:291
pp_padding get_padding() const
Definition pretty-print.h:310
friend output_buffer *& pp_buffer(pretty_printer *pp)
Definition pretty-print.h:387
void set_output_stream(FILE *outfile)
Definition pretty-print.h:271
int m_indent_skip
Definition pretty-print.h:332
bool m_skipping_null_url
Definition pretty-print.h:383
bool m_need_newline
Definition pretty-print.h:365
pp_padding m_padding
Definition pretty-print.h:325
friend const char * pp_get_prefix(const pretty_printer *pp)
Definition pretty-print.h:399
bool supports_urls_p() const
Definition pretty-print.h:289
friend void pp_destroy_prefix(pretty_printer *)
Definition pretty-print.cc:2338
friend format_postprocessor *& pp_format_postprocessor(pretty_printer *pp)
Definition pretty-print.h:441
token_printer * m_token_printer
Definition pretty-print.h:359
output_buffer * m_buffer
Definition pretty-print.h:318
friend bool & pp_translate_identifiers(pretty_printer *pp)
Definition pretty-print.h:422
pp_wrapping_mode_t set_verbatim_wrapping()
Definition pretty-print.h:301
friend diagnostic_prefixing_rule_t & pp_prefixing_rule(pretty_printer *pp)
Definition pretty-print.h:462
char * m_prefix
Definition pretty-print.h:322
friend int & pp_indentation(pretty_printer *pp)
Definition pretty-print.h:414
friend void pp_output_formatted_text(pretty_printer *, const urlifier *)
Definition pretty-print.cc:2146
bool m_emitted_prefix
Definition pretty-print.h:362
void begin_url(const char *url)
Definition pretty-print.cc:2953
friend int & pp_line_cutoff(pretty_printer *pp)
Definition pretty-print.h:455
pretty_printer(int=0)
Definition pretty-print.cc:2381
diagnostic_url_format m_url_format
Definition pretty-print.h:379
bool m_translate_identifiers
Definition pretty-print.h:369
friend bool & pp_show_color(pretty_printer *pp)
Definition pretty-print.h:429
int m_maximum_length
Definition pretty-print.h:329
void emit_prefix()
Definition pretty-print.cc:2349
printer_fn m_format_decoder
Definition pretty-print.h:347
void end_url()
Definition pretty-print.cc:3003
friend bool & pp_show_highlight_colors(pretty_printer *pp)
Definition pretty-print.h:447
bool m_show_highlight_colors
Definition pretty-print.h:376
void set_prefix(char *prefix)
Definition pretty-print.cc:2315
friend printer_fn & pp_format_decoder(pretty_printer *pp)
Definition pretty-print.h:435
Definition pretty-print.h:205
virtual void print_tokens(pretty_printer *pp, const pp_token_list &tokens)=0
virtual ~token_printer()
Definition pretty-print.h:207
Definition pretty-print-urlifier.h:27
diagnostic_url_format
Definition diagnostic-url.h:37
@ URL_FORMAT_NONE
Definition diagnostic-url.h:39
static struct obstack obstack
Definition gcc.cc:358
Definition coretypes.h:165
i
Definition poly-int.h:776
pp_wrapping_mode_t & pp_wrapping_mode(pretty_printer *pp)
Definition pretty-print.h:474
bool(* printer_fn)(pretty_printer *, text_info *, const char *, int, bool, bool, bool, bool *, pp_token_list &)
Definition pretty-print.h:187
char * pp_take_prefix(pretty_printer *)
Definition pretty-print.cc:2329
bool & pp_needs_newline(pretty_printer *pp)
Definition pretty-print.h:407
void output_buffer_append_r(output_buffer *buff, const char *start, int length)
Definition pretty-print.h:139
pp_padding
Definition pretty-print.h:168
@ pp_none
Definition pretty-print.h:169
@ pp_after
Definition pretty-print.h:169
@ pp_before
Definition pretty-print.h:169
const char * output_buffer_formatted_text(output_buffer *buff)
Definition pretty-print.h:130
output_buffer *& pp_buffer(pretty_printer *pp)
Definition pretty-print.h:387
const char * pp_get_prefix(const pretty_printer *pp)
Definition pretty-print.h:399
void pp_destroy_prefix(pretty_printer *)
Definition pretty-print.cc:2338
format_postprocessor *& pp_format_postprocessor(pretty_printer *pp)
Definition pretty-print.h:441
bool & pp_translate_identifiers(pretty_printer *pp)
Definition pretty-print.h:422
diagnostic_prefixing_rule_t & pp_prefixing_rule(pretty_printer *pp)
Definition pretty-print.h:462
int & pp_indentation(pretty_printer *pp)
Definition pretty-print.h:414
int & pp_line_cutoff(pretty_printer *pp)
Definition pretty-print.h:455
diagnostic_prefixing_rule_t
Definition pretty-print.h:66
@ DIAGNOSTICS_SHOW_PREFIX_NEVER
Definition pretty-print.h:68
@ DIAGNOSTICS_SHOW_PREFIX_ONCE
Definition pretty-print.h:67
@ DIAGNOSTICS_SHOW_PREFIX_EVERY_LINE
Definition pretty-print.h:69
const char * output_buffer_last_position_in_text(const output_buffer *buff)
Definition pretty-print.h:153
bool & pp_show_color(pretty_printer *pp)
Definition pretty-print.h:429
unsigned int pp_flags
Definition pretty-print.h:165
bool & pp_show_highlight_colors(pretty_printer *pp)
Definition pretty-print.h:447
printer_fn & pp_format_decoder(pretty_printer *pp)
Definition pretty-print.h:435
Definition pretty-print.h:175
diagnostic_prefixing_rule_t rule
Definition pretty-print.h:177
int line_cutoff
Definition pretty-print.h:181
Definition pretty-print.h:34
int m_err_no
Definition pretty-print.h:55
va_list * m_args_ptr
Definition pretty-print.h:54
void ** m_data
Definition pretty-print.h:56
text_info()=default
void set_location(unsigned int idx, location_t loc, enum range_display_kind range_display_kind)
Definition pretty-print.cc:723
text_info(const char *format_spec, va_list *args_ptr, int err_no, void **data=nullptr, rich_location *rich_loc=nullptr)
Definition pretty-print.h:36
location_t get_location(unsigned int index_of_location) const
Definition pretty-print.cc:731
const char * m_format_spec
Definition pretty-print.h:53
rich_location * m_richloc
Definition pretty-print.h:57
#define NULL
Definition system.h:50
#define bool
Definition system.h:893
#define gcc_checking_assert(EXPR)
Definition system.h:828