stl_bvector.h (swap(_Bit_reference,_Bit_reference)): Move/rename...
[official-gcc.git] / gcc / diagnostic.h
blob3762136d0b62f233f9e019003a00a31dd3a38c22
1 /* Various declarations for language-independent diagnostics subroutines.
2 Copyright (C) 2000, 2001, 2002 Free Software Foundation, Inc.
3 Contributed by Gabriel Dos Reis <gdr@codesourcery.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 2, 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 COPYING. If not, write to the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
20 02111-1307, USA. */
22 #ifndef GCC_DIAGNOSTIC_H
23 #define GCC_DIAGNOSTIC_H
25 #include "obstack.h"
27 /* Forward declarations. */
28 typedef struct output_buffer output_buffer;
29 typedef struct diagnostic_context diagnostic_context;
30 typedef void (*diagnostic_starter_fn) PARAMS ((output_buffer *,
31 diagnostic_context *));
32 typedef diagnostic_starter_fn diagnostic_finalizer_fn;
34 typedef enum
36 #define DEFINE_DIAGNOSTIC_KIND(K, M) K,
37 #include "diagnostic.def"
38 #undef DEFINE_DIAGNOSTIC_KIND
39 DK_LAST_DIAGNOSTIC_KIND
40 } diagnostic_t;
42 #define pedantic_error_kind() (flag_pedantic_errors ? DK_ERROR : DK_WARNING)
44 /* How often diagnostics are prefixed by their locations:
45 o DIAGNOSTICS_SHOW_PREFIX_NEVER: never - not yet supported;
46 o DIAGNOSTICS_SHOW_PREFIX_ONCE: emit only once;
47 o DIAGNOSTICS_SHOW_PREFIX_EVERY_LINE: emit each time a physical
48 line is started. */
49 typedef enum
51 DIAGNOSTICS_SHOW_PREFIX_ONCE = 0x0,
52 DIAGNOSTICS_SHOW_PREFIX_NEVER = 0x1,
53 DIAGNOSTICS_SHOW_PREFIX_EVERY_LINE = 0x2
54 } diagnostic_prefixing_rule_t;
56 /* The type of front-end specific hook that formats trees into an
57 output_buffer. A language specific printer returns a truth value if
58 everything goes well. */
59 typedef int (*printer_fn) PARAMS ((output_buffer *));
61 /* This data structure encapsulates an output_buffer's state. */
62 typedef struct
64 /* The prefix for each new line. */
65 const char *prefix;
67 /* The real upper bound of number of characters per line, taking into
68 account the case of a very very looong prefix. */
69 int maximum_length;
71 /* The ideal upper bound of number of characters per line, as suggested
72 by front-end. */
73 int ideal_maximum_length;
75 /* Indentation count. */
76 int indent_skip;
78 /* Nonzero if current PREFIX was emitted at least once. */
79 bool emitted_prefix_p;
81 /* Nonzero means one should emit a newline before outputing anything. */
82 bool need_newline_p;
84 /* Current prefixing rule. */
85 diagnostic_prefixing_rule_t prefixing_rule;
87 /* The current char to output. Updated by front-end (*format_map) when
88 it is called to report front-end printer for a specified format. */
89 const char *cursor;
91 /* A pointer to the variable argument-list for formatting. */
92 va_list *format_args;
94 /* The number of times we have issued diagnostics. */
95 int diagnostic_count[DK_LAST_DIAGNOSTIC_KIND];
96 } output_state;
98 /* The output buffer datatype. This is best seen as an abstract datatype. */
99 struct output_buffer
101 /* Internal data. These fields should not be accessed directly by
102 front-ends. */
104 /* The current state of the buffer. */
105 output_state state;
107 /* Where to output formatted text. */
108 FILE* stream;
110 /* The obstack where the text is built up. */
111 struct obstack obstack;
113 /* The amount of characters output so far. */
114 int line_length;
116 /* This must be large enough to hold any printed integer or
117 floating-point value. */
118 char digit_buffer[128];
120 /* If non-NULL, this function formats data in the BUFFER. When called,
121 output_buffer_text_cursor (BUFFER) points to a format code.
122 FORMAT_DECODER should call output_add_string (and related functions)
123 to add data to the BUFFER. FORMAT_DECODER can read arguments from
124 output_buffer_format_args (BUFFER) using VA_ARG. If the BUFFER needs
125 additional characters from the format string, it should advance
126 the output_buffer_text_cursor (BUFFER) as it goes. When FORMAT_DECODER
127 returns, output_buffer_text_cursor (BUFFER) should point to the last
128 character processed. */
130 printer_fn format_decoder;
133 /* Current state of an output_buffer. */
134 #define output_buffer_state(BUFFER) (BUFFER)->state
136 /* The stream attached to the output_buffer, where the formatted
137 diagnostics will ultimately go. Works only on `output_buffer *'. */
138 #define output_buffer_attached_stream(BUFFER) (BUFFER)->stream
140 /* This points to the beginning of the rest of the diagnostic message
141 to be formatted. Accepts only `output_buffer *'s. */
142 #define output_buffer_text_cursor(BUFFER) (BUFFER)->state.cursor
144 /* The rest of the `variable argument list' not yet processed.
145 This macro works on both `output_state *' and `output_buffer *'. */
146 #define output_buffer_format_args(BUFFER) \
147 *(((output_state *)(BUFFER))->format_args)
149 /* In line-wrapping mode, whether we should start a new line. */
150 #define output_needs_newline(BUFFER) (BUFFER)->state.need_newline_p
152 /* The amount of whitespace to be emitted when starting a new line. */
153 #define output_indentation(BUFFER) (BUFFER)->state.indent_skip
155 /* A pointer to the formatted diagonstic message. */
156 #define output_message_text(BUFFER) \
157 ((const char *) obstack_base (&(BUFFER)->obstack))
159 /* Client supplied function used to decode formats. */
160 #define output_format_decoder(BUFFER) (BUFFER)->format_decoder
162 /* Prefixing rule used in formatting a diagnostic message. */
163 #define output_prefixing_rule(BUFFER) (BUFFER)->state.prefixing_rule
165 /* Maximum characters per line in automatic line wrapping mode.
166 Zero means don't wrap lines. */
167 #define output_line_cutoff(BUFFER) (BUFFER)->state.ideal_maximum_length
169 /* This data structure bundles altogether any information relevant to
170 the context of a diagnostic message. */
171 struct diagnostic_context
173 /* Where most of the diagnostic formatting work is done. In Object
174 Oriented terms, we'll say that diagnostic_context is a sub-class of
175 output_buffer. */
176 output_buffer buffer;
178 /* The diagnostic message to output. */
179 const char *message;
181 /* A pointer to a variable list of the arguments necessary for the
182 purpose of message formatting. */
183 va_list *args_ptr;
185 /* The name of the source file involved in the diiagnostic. */
186 const char *file;
188 /* The line-location in the source file. */
189 int line;
191 /* Is this message a warning? */
192 int warn;
194 /* This function is called before any message is printed out. It is
195 responsible for preparing message prefix and such. For example, it
196 might say:
197 In file included from "/usr/local/include/curses.h:5:
198 from "/home/gdr/src/nifty_printer.h:56:
201 void (*begin_diagnostic) PARAMS ((output_buffer *, diagnostic_context *));
203 /* This function is called after the diagnostic message is printed. */
204 void (*end_diagnostic) PARAMS ((output_buffer *, diagnostic_context *));
206 /* Client hook to report an internal error. */
207 void (*internal_error) PARAMS ((const char *, va_list *));
209 /* Hook for front-end extensions. */
210 void *x_data;
213 /* The diagnostic message being formatted. */
214 #define diagnostic_message(DC) (DC)->message
216 /* A pointer to the variable argument list used in a call
217 to a diagonstic routine. */
218 #define diagnostic_argument_list(DC) (DC)->args_ptr
220 /* The program file to which the diagnostic is referring to. */
221 #define diagnostic_file_location(DC) (DC)->file
223 /* The program source line referred to in the diagnostic message. */
224 #define diagnostic_line_location(DC) (DC)->line
226 /* Tell whether the diagnostic message is to be treated as a warning. */
227 #define diagnostic_is_warning(DC) (DC)->warn
229 /* Client supplied function to announce a diagnostic. */
230 #define diagnostic_starter(DC) (DC)->begin_diagnostic
232 /* Client supplied function called after a diagnostic message is
233 displayed. */
234 #define diagnostic_finalizer(DC) (DC)->end_diagnostic
236 /* Extension hook for client. */
237 #define diagnostic_auxiliary_data(DC) (DC)->x_data
239 /* Same as output_format_decoder. Works on 'diagnostic_context *'. */
240 #define diagnostic_format_decoder(DC) output_format_decoder (&(DC)->buffer)
242 /* Same as output_prefixing_rule. Works on 'diagnostic_context *'. */
243 #define diagnostic_prefixing_rule(DC) output_prefixing_rule (&(DC)->buffer)
245 /* Maximum characters per line in automatic line wrapping mode.
246 Zero means don't wrap lines. */
247 #define diagnostic_line_cutoff(DC) output_line_cutoff (&(DC)->buffer)
249 /* Same as output_buffer_state, but works on 'diagnostic_context *'. */
250 #define diagnostic_state(DC) output_buffer_state (&(DC)->buffer)
252 #define diagnostic_buffer (&global_dc->buffer)
254 /* This diagnostic context is used by front-ends that directly output
255 diagnostic messages without going through `error', `warning',
256 and similar functions. */
257 extern diagnostic_context *global_dc;
259 /* The total count of a KIND of diagnostics meitted so far. */
260 #define diagnostic_kind_count(DC, DK) \
261 (DC)->buffer.state.diagnostic_count[(int) (DK)]
263 /* The number of errors that have been issued so far. Ideally, these
264 would take an output_buffer as an argument. */
265 #define errorcount diagnostic_kind_count (global_dc, DK_ERROR)
266 /* Similarly, but for warnings. */
267 #define warningcount diagnostic_kind_count (global_dc, DK_WARNING)
268 /* Similarly, but for sorrys. */
269 #define sorrycount diagnostic_kind_count (global_dc, DK_SORRY)
271 /* Returns non-zero if warnings should be emitted. */
272 #define diagnostic_report_warnings_p() \
273 (!inhibit_warnings \
274 && !(in_system_header && !warn_system_headers))
277 /* Prototypes */
278 extern void set_diagnostic_context PARAMS ((diagnostic_context *,
279 const char *, va_list *,
280 const char *, int, int));
281 extern void report_diagnostic PARAMS ((diagnostic_context *));
282 extern void diagnostic_initialize PARAMS ((diagnostic_context *));
283 extern void init_output_buffer PARAMS ((output_buffer *,
284 const char *, int));
285 extern void flush_diagnostic_buffer PARAMS ((void));
286 extern void output_clear PARAMS ((output_buffer *));
287 extern const char *output_get_prefix PARAMS ((const output_buffer *));
288 extern const char *output_last_position PARAMS ((const output_buffer *));
289 extern void output_set_prefix PARAMS ((output_buffer *,
290 const char *));
291 extern void output_destroy_prefix PARAMS ((output_buffer *));
292 extern void output_set_maximum_length PARAMS ((output_buffer *, int));
293 extern void output_emit_prefix PARAMS ((output_buffer *));
294 extern void output_add_newline PARAMS ((output_buffer *));
295 extern void output_add_space PARAMS ((output_buffer *));
296 extern int output_space_left PARAMS ((const output_buffer *));
297 extern void output_append PARAMS ((output_buffer *, const char *,
298 const char *));
299 extern void output_add_character PARAMS ((output_buffer *, int));
300 extern void output_decimal PARAMS ((output_buffer *, int));
301 extern void output_add_string PARAMS ((output_buffer *,
302 const char *));
303 extern const char *output_finalize_message PARAMS ((output_buffer *));
304 extern void output_clear_message_text PARAMS ((output_buffer *));
305 extern void output_printf PARAMS ((output_buffer *, const char *,
306 ...)) ATTRIBUTE_PRINTF_2;
307 extern int output_is_line_wrapping PARAMS ((output_buffer *));
308 extern void output_verbatim PARAMS ((output_buffer *, const char *,
309 ...)) ATTRIBUTE_PRINTF_2;
310 extern void verbatim PARAMS ((const char *, ...))
311 ATTRIBUTE_PRINTF_1;
312 extern char *context_as_prefix PARAMS ((const char *, int, int));
313 extern char *file_name_as_prefix PARAMS ((const char *));
314 extern int error_module_changed PARAMS ((void));
315 extern void record_last_error_module PARAMS ((void));
316 extern int error_function_changed PARAMS ((void));
317 extern void record_last_error_function PARAMS ((void));
318 extern void report_problematic_module PARAMS ((output_buffer *));
320 #endif /* ! GCC_DIAGNOSTIC_H */