1 /* Language-independent diagnostic subroutines for the GNU Compiler Collection
2 Copyright (C) 1999, 2000, 2001, 2002, 2003 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
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
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
23 /* This file implements the language independent aspect of diagnostic
27 #undef FLOAT /* This is for hpux. They should change hpux. */
28 #undef FFS /* Some systems define this in param.h. */
30 #include "coretypes.h"
38 #include "diagnostic.h"
39 #include "langhooks.h"
40 #include "langhooks-def.h"
44 static char *build_message_string (const char *, ...) ATTRIBUTE_PRINTF_1
;
46 static void default_diagnostic_starter (diagnostic_context
*,
48 static void default_diagnostic_finalizer (diagnostic_context
*,
51 static void error_recursion (diagnostic_context
*) ATTRIBUTE_NORETURN
;
52 static bool text_specifies_location (text_info
*, location_t
*);
53 static bool diagnostic_count_diagnostic (diagnostic_context
*,
55 static void diagnostic_action_after_output (diagnostic_context
*,
57 static void real_abort (void) ATTRIBUTE_NORETURN
;
59 extern int rtl_dump_and_exit
;
61 /* A diagnostic_context surrogate for stderr. */
62 static diagnostic_context global_diagnostic_context
;
63 diagnostic_context
*global_dc
= &global_diagnostic_context
;
65 /* Boilerplate text used in two locations. */
66 #define bug_report_request \
67 "Please submit a full bug report,\n\
68 with preprocessed source if appropriate.\n\
69 See %s for instructions.\n"
72 /* Return a malloc'd string containing MSG formatted a la printf. The
73 caller is responsible for freeing the memory. */
75 build_message_string (const char *msg
, ...)
81 vasprintf (&str
, msg
, ap
);
87 /* Same as diagnostic_build_prefix, but only the source FILE is given. */
89 file_name_as_prefix (const char *f
)
91 return build_message_string ("%s: ", f
);
96 /* Initialize the diagnostic message outputting machinery. */
98 diagnostic_initialize (diagnostic_context
*context
)
100 /* Allocate a basic pretty-printer. Clients will replace this a
101 much more elaborated pretty-printer if they wish. */
102 context
->printer
= xmalloc (sizeof (pretty_printer
));
103 pp_construct (context
->printer
, NULL
, 0);
104 /* By default, diagnostics are sent to stderr. */
105 context
->printer
->buffer
->stream
= stderr
;
106 /* By default, we emit prefixes once per message. */
107 context
->printer
->prefixing_rule
= DIAGNOSTICS_SHOW_PREFIX_ONCE
;
109 memset (context
->diagnostic_count
, 0, sizeof context
->diagnostic_count
);
110 context
->warnings_are_errors_message
= warnings_are_errors
;
111 context
->abort_on_error
= false;
112 context
->internal_error
= NULL
;
113 diagnostic_starter (context
) = default_diagnostic_starter
;
114 diagnostic_finalizer (context
) = default_diagnostic_finalizer
;
115 context
->last_module
= 0;
116 context
->last_function
= NULL
;
118 context
->x_data
= NULL
;
121 /* Returns true if the next format specifier in TEXT is a format specifier
122 for a location_t. If so, update the object pointed by LOCUS to reflect
123 the specified location in *TEXT->args_ptr. */
125 text_specifies_location (text_info
*text
, location_t
*locus
)
128 /* Skip any leading text. */
129 for (p
= text
->format_spec
; *p
&& *p
!= '%'; ++p
)
132 /* Extract the location information if any. */
133 if (*p
== '%' && *++p
== 'H')
135 *locus
= *va_arg (*text
->args_ptr
, location_t
*);
136 text
->format_spec
= p
+ 1;
144 diagnostic_set_info (diagnostic_info
*diagnostic
, const char *msgid
,
145 va_list *args
, location_t location
,
148 diagnostic
->message
.err_no
= errno
;
149 diagnostic
->message
.args_ptr
= args
;
150 diagnostic
->message
.format_spec
= _(msgid
);
151 /* If the diagnostic message doesn't specify a location,
153 if (!text_specifies_location (&diagnostic
->message
, &diagnostic
->location
))
154 diagnostic
->location
= location
;
155 diagnostic
->kind
= kind
;
158 /* Return a malloc'd string describing a location. The caller is
159 responsible for freeing the memory. */
161 diagnostic_build_prefix (diagnostic_info
*diagnostic
)
163 static const char *const diagnostic_kind_text
[] = {
164 #define DEFINE_DIAGNOSTIC_KIND(K, T) (T),
165 #include "diagnostic.def"
166 #undef DEFINE_DIAGNOSTIC_KIND
169 if (diagnostic
->kind
>= DK_LAST_DIAGNOSTIC_KIND
)
172 return diagnostic
->location
.file
173 ? build_message_string ("%s:%d: %s",
174 diagnostic
->location
.file
,
175 diagnostic
->location
.line
,
176 _(diagnostic_kind_text
[diagnostic
->kind
]))
177 : build_message_string ("%s: %s", progname
,
178 _(diagnostic_kind_text
[diagnostic
->kind
]));
181 /* Count a diagnostic. Return true if the message should be printed. */
183 diagnostic_count_diagnostic (diagnostic_context
*context
,
184 diagnostic_info
*diagnostic
)
186 diagnostic_t kind
= diagnostic
->kind
;
194 #ifndef ENABLE_CHECKING
195 /* When not checking, ICEs are converted to fatal errors when an
196 error has already occurred. This is counteracted by
198 if ((diagnostic_kind_count (context
, DK_ERROR
) > 0
199 || diagnostic_kind_count (context
, DK_SORRY
) > 0)
200 && !context
->abort_on_error
)
202 fnotice (stderr
, "%s:%d: confused by earlier errors, bailing out\n",
203 diagnostic
->location
.file
, diagnostic
->location
.line
);
204 exit (FATAL_EXIT_CODE
);
207 if (context
->internal_error
)
208 (*context
->internal_error
) (diagnostic
->message
.format_spec
,
209 diagnostic
->message
.args_ptr
);
212 case DK_FATAL
: case DK_SORRY
:
213 case DK_ANACHRONISM
: case DK_NOTE
:
214 ++diagnostic_kind_count (context
, kind
);
218 if (!diagnostic_report_warnings_p ())
221 if (!warnings_are_errors
)
223 ++diagnostic_kind_count (context
, DK_WARNING
);
227 if (context
->warnings_are_errors_message
)
229 pp_verbatim (context
->printer
,
230 "%s: warnings being treated as errors\n", progname
);
231 context
->warnings_are_errors_message
= false;
234 /* And fall through. */
236 ++diagnostic_kind_count (context
, DK_ERROR
);
243 /* Take any action which is expected to happen after the diagnostic
244 is written out. This function does not always return. */
246 diagnostic_action_after_output (diagnostic_context
*context
,
247 diagnostic_info
*diagnostic
)
249 switch (diagnostic
->kind
)
259 if (context
->abort_on_error
)
264 if (context
->abort_on_error
)
267 fnotice (stderr
, bug_report_request
, bug_report_url
);
268 exit (FATAL_EXIT_CODE
);
271 if (context
->abort_on_error
)
274 fnotice (stderr
, "compilation terminated.\n");
275 exit (FATAL_EXIT_CODE
);
282 /* Prints out, if necessary, the name of the current function
283 that caused an error. Called from all error and warning functions.
284 We ignore the FILE parameter, as it cannot be relied upon. */
287 diagnostic_report_current_function (diagnostic_context
*context
)
289 diagnostic_report_current_module (context
);
290 (*lang_hooks
.print_error_function
) (context
, input_filename
);
294 diagnostic_report_current_module (diagnostic_context
*context
)
296 struct file_stack
*p
;
298 if (pp_needs_newline (context
->printer
))
300 pp_newline (context
->printer
);
301 pp_needs_newline (context
->printer
) = false;
304 if (input_file_stack
&& diagnostic_last_module_changed (context
))
306 p
= input_file_stack
;
307 pp_verbatim (context
->printer
,
308 "In file included from %s:%d",
309 p
->location
.file
, p
->location
.line
);
310 while ((p
= p
->next
) != NULL
)
311 pp_verbatim (context
->printer
,
313 p
->location
.file
, p
->location
.line
);
314 pp_verbatim (context
->printer
, ":\n");
315 diagnostic_set_last_module (context
);
320 default_diagnostic_starter (diagnostic_context
*context
,
321 diagnostic_info
*diagnostic
)
323 diagnostic_report_current_function (context
);
324 pp_set_prefix (context
->printer
, diagnostic_build_prefix (diagnostic
));
328 default_diagnostic_finalizer (diagnostic_context
*context
,
329 diagnostic_info
*diagnostic
__attribute__((unused
)))
331 pp_destroy_prefix (context
->printer
);
334 /* Report a diagnostic message (an error or a warning) as specified by
335 DC. This function is *the* subroutine in terms of which front-ends
336 should implement their specific diagnostic handling modules. The
337 front-end independent format specifiers are exactly those described
338 in the documentation of output_format. */
341 diagnostic_report_diagnostic (diagnostic_context
*context
,
342 diagnostic_info
*diagnostic
)
344 if (context
->lock
++ && diagnostic
->kind
< DK_SORRY
)
345 error_recursion (context
);
347 if (diagnostic_count_diagnostic (context
, diagnostic
))
349 (*diagnostic_starter (context
)) (context
, diagnostic
);
350 pp_format_text (context
->printer
, &diagnostic
->message
);
351 (*diagnostic_finalizer (context
)) (context
, diagnostic
);
352 pp_flush (context
->printer
);
353 diagnostic_action_after_output (context
, diagnostic
);
359 /* Given a partial pathname as input, return another pathname that
360 shares no directory elements with the pathname of __FILE__. This
361 is used by fancy_abort() to print `Internal compiler error in expr.c'
362 instead of `Internal compiler error in ../../GCC/gcc/expr.c'. */
365 trim_filename (const char *name
)
367 static const char this_file
[] = __FILE__
;
368 const char *p
= name
, *q
= this_file
;
370 /* First skip any "../" in each filename. This allows us to give a proper
371 reference to a file in a subdirectory. */
372 while (p
[0] == '.' && p
[1] == '.'
373 && (p
[2] == DIR_SEPARATOR
374 #ifdef DIR_SEPARATOR_2
375 || p
[2] == DIR_SEPARATOR_2
380 while (q
[0] == '.' && q
[1] == '.'
381 && (q
[2] == DIR_SEPARATOR
382 #ifdef DIR_SEPARATOR_2
383 || p
[2] == DIR_SEPARATOR_2
388 /* Now skip any parts the two filenames have in common. */
389 while (*p
== *q
&& *p
!= 0 && *q
!= 0)
392 /* Now go backwards until the previous directory separator. */
393 while (p
> name
&& p
[-1] != DIR_SEPARATOR
394 #ifdef DIR_SEPARATOR_2
395 && p
[-1] != DIR_SEPARATOR_2
403 /* Standard error reporting routines in increasing order of severity.
404 All of these take arguments like printf. */
406 /* Text to be emitted verbatim to the error message stream; this
407 produces no prefix and disables line-wrapping. Use rarely. */
409 verbatim (const char *msgid
, ...)
414 va_start (ap
, msgid
);
417 text
.format_spec
= _(msgid
);
418 pp_format_verbatim (global_dc
->printer
, &text
);
419 pp_flush (global_dc
->printer
);
423 /* An informative note. Use this for additional details on an error
426 inform (const char *msgid
, ...)
428 diagnostic_info diagnostic
;
431 va_start (ap
, msgid
);
432 diagnostic_set_info (&diagnostic
, msgid
, &ap
, input_location
, DK_NOTE
);
433 report_diagnostic (&diagnostic
);
437 /* A warning. Use this for code which is correct according to the
438 relevant language specification but is likely to be buggy anyway. */
440 warning (const char *msgid
, ...)
442 diagnostic_info diagnostic
;
445 va_start (ap
, msgid
);
446 diagnostic_set_info (&diagnostic
, msgid
, &ap
, input_location
, DK_WARNING
);
447 report_diagnostic (&diagnostic
);
451 /* A "pedantic" warning: issues a warning unless -pedantic-errors was
452 given on the command line, in which case it issues an error. Use
453 this for diagnostics required by the relevant language standard,
454 if you have chosen not to make them errors.
456 Note that these diagnostics are issued independent of the setting
457 of the -pedantic command-line switch. To get a warning enabled
458 only with that switch, write "if (pedantic) pedwarn (...);" */
460 pedwarn (const char *msgid
, ...)
462 diagnostic_info diagnostic
;
465 va_start (ap
, msgid
);
466 diagnostic_set_info (&diagnostic
, msgid
, &ap
, input_location
,
467 pedantic_error_kind ());
468 report_diagnostic (&diagnostic
);
472 /* A hard error: the code is definitely ill-formed, and an object file
473 will not be produced. */
475 error (const char *msgid
, ...)
477 diagnostic_info diagnostic
;
480 va_start (ap
, msgid
);
481 diagnostic_set_info (&diagnostic
, msgid
, &ap
, input_location
, DK_ERROR
);
482 report_diagnostic (&diagnostic
);
486 /* "Sorry, not implemented." Use for a language feature which is
487 required by the relevant specification but not implemented by GCC.
488 An object file will not be produced. */
490 sorry (const char *msgid
, ...)
492 diagnostic_info diagnostic
;
495 va_start (ap
, msgid
);
496 diagnostic_set_info (&diagnostic
, msgid
, &ap
, input_location
, DK_SORRY
);
497 report_diagnostic (&diagnostic
);
501 /* An error which is severe enough that we make no attempt to
502 continue. Do not use this for internal consistency checks; that's
503 internal_error. Use of this function should be rare. */
505 fatal_error (const char *msgid
, ...)
507 diagnostic_info diagnostic
;
510 va_start (ap
, msgid
);
511 diagnostic_set_info (&diagnostic
, msgid
, &ap
, input_location
, DK_FATAL
);
512 report_diagnostic (&diagnostic
);
519 /* An internal consistency check has failed. We make no attempt to
520 continue. Note that unless there is debugging value to be had from
521 a more specific message, or some other good reason, you should use
522 abort () instead of calling this function directly. */
524 internal_error (const char *msgid
, ...)
526 diagnostic_info diagnostic
;
529 va_start (ap
, msgid
);
530 diagnostic_set_info (&diagnostic
, msgid
, &ap
, input_location
, DK_ICE
);
531 report_diagnostic (&diagnostic
);
538 /* Special case error functions. Most are implemented in terms of the
539 above, or should be. */
541 /* Print a diagnostic MSGID on FILE. This is just fprintf, except it
542 runs its second argument through gettext. */
544 fnotice (FILE *file
, const char *msgid
, ...)
548 va_start (ap
, msgid
);
549 vfprintf (file
, _(msgid
), ap
);
553 /* Inform the user that an error occurred while trying to report some
554 other error. This indicates catastrophic internal inconsistencies,
555 so give up now. But do try to flush out the previous error.
556 This mustn't use internal_error, that will cause infinite recursion. */
559 error_recursion (diagnostic_context
*context
)
561 if (context
->lock
< 3)
562 pp_flush (context
->printer
);
565 "Internal compiler error: Error reporting routines re-entered.\n");
566 fnotice (stderr
, bug_report_request
, bug_report_url
);
567 exit (FATAL_EXIT_CODE
);
570 /* Report an internal compiler error in a friendly manner. This is
571 the function that gets called upon use of abort() in the source
572 code generally, thanks to a special macro. */
575 fancy_abort (const char *file
, int line
, const char *function
)
577 internal_error ("in %s, at %s:%d", function
, trim_filename (file
), line
);
580 /* Really call the system 'abort'. This has to go right at the end of
581 this file, so that there are no functions after it that call abort
582 and get the system abort instead of our macro. */