diagnostic.c 22.2 KB
Newer Older
1
/* Language-independent diagnostic subroutines for the GNU Compiler Collection
2 3
   Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008,
   2009 Free Software Foundation, Inc.
4
   Contributed by Gabriel Dos Reis <gdr@codesourcery.com>
5

6
This file is part of GCC.
7

8 9
GCC is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free
10
Software Foundation; either version 3, or (at your option) any later
11
version.
12

13 14 15 16
GCC is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
for more details.
17 18

You should have received a copy of the GNU General Public License
19 20
along with GCC; see the file COPYING3.  If not see
<http://www.gnu.org/licenses/>.  */
21 22


23
/* This file implements the language independent aspect of diagnostic
24 25 26 27 28 29
   message module.  */

#include "config.h"
#undef FLOAT /* This is for hpux. They should change hpux.  */
#undef FFS  /* Some systems define this in param.h.  */
#include "system.h"
30 31
#include "coretypes.h"
#include "tm.h"
32
#include "tree.h"
33
#include "version.h"
34 35 36 37 38
#include "tm_p.h"
#include "flags.h"
#include "input.h"
#include "toplev.h"
#include "intl.h"
39
#include "diagnostic.h"
Neil Booth committed
40
#include "langhooks.h"
41
#include "langhooks-def.h"
42
#include "opts.h"
Diego Novillo committed
43
#include "plugin.h"
44

45 46
#define pedantic_warning_kind() (flag_pedantic_errors ? DK_ERROR : DK_WARNING)
#define permissive_error_kind() (flag_permissive ? DK_WARNING : DK_ERROR)
47

48
/* Prototypes.  */
49
static char *build_message_string (const char *, ...) ATTRIBUTE_PRINTF_1;
50 51

static void error_recursion (diagnostic_context *) ATTRIBUTE_NORETURN;
52

53 54 55
static void diagnostic_action_after_output (diagnostic_context *,
					    diagnostic_info *);
static void real_abort (void) ATTRIBUTE_NORETURN;
56

57 58 59
/* A diagnostic_context surrogate for stderr.  */
static diagnostic_context global_diagnostic_context;
diagnostic_context *global_dc = &global_diagnostic_context;
60

61

62 63
/* Return a malloc'd string containing MSG formatted a la printf.  The
   caller is responsible for freeing the memory.  */
64
static char *
65
build_message_string (const char *msg, ...)
66
{
67
  char *str;
68
  va_list ap;
69

70
  va_start (ap, msg);
71
  vasprintf (&str, msg, ap);
72
  va_end (ap);
73 74 75 76

  return str;
}

77
/* Same as diagnostic_build_prefix, but only the source FILE is given.  */
78
char *
79
file_name_as_prefix (const char *f)
80 81 82 83
{
  return build_message_string ("%s: ", f);
}

84

85

86 87
/* Initialize the diagnostic message outputting machinery.  */
void
88
diagnostic_initialize (diagnostic_context *context)
89
{
90 91
  /* Allocate a basic pretty-printer.  Clients will replace this a
     much more elaborated pretty-printer if they wish.  */
92
  context->printer = XNEW (pretty_printer);
93
  pp_construct (context->printer, NULL, 0);
94
  /* By default, diagnostics are sent to stderr.  */
95
  context->printer->buffer->stream = stderr;
96
  /* By default, we emit prefixes once per message.  */
97
  context->printer->wrapping.rule = DIAGNOSTICS_SHOW_PREFIX_ONCE;
98

99
  memset (context->diagnostic_count, 0, sizeof context->diagnostic_count);
100 101
  context->issue_warnings_are_errors_message = true;
  context->warning_as_error_requested = false;
102 103
  memset (context->classify_diagnostic, DK_UNSPECIFIED,
	  sizeof context->classify_diagnostic);
104
  context->show_option_requested = false;
105 106
  context->abort_on_error = false;
  context->internal_error = NULL;
107 108
  diagnostic_starter (context) = default_diagnostic_starter;
  diagnostic_finalizer (context) = default_diagnostic_finalizer;
109 110 111
  context->last_module = 0;
  context->last_function = NULL;
  context->lock = 0;
112 113
}

114 115
/* Initialize DIAGNOSTIC, where the message MSG has already been
   translated.  */
116
void
117 118 119
diagnostic_set_info_translated (diagnostic_info *diagnostic, const char *msg,
				va_list *args, location_t location,
				diagnostic_t kind)
120
{
121
  diagnostic->message.err_no = errno;
122
  diagnostic->message.args_ptr = args;
123
  diagnostic->message.format_spec = msg;
124
  diagnostic->location = location;
125
  diagnostic->override_column = 0;
126
  diagnostic->kind = kind;
127
  diagnostic->option_index = 0;
128 129
}

130 131 132 133 134 135 136 137 138 139
/* Initialize DIAGNOSTIC, where the message GMSGID has not yet been
   translated.  */
void
diagnostic_set_info (diagnostic_info *diagnostic, const char *gmsgid,
		     va_list *args, location_t location,
		     diagnostic_t kind)
{
  diagnostic_set_info_translated (diagnostic, _(gmsgid), args, location, kind);
}

140 141 142
/* Return a malloc'd string describing a location.  The caller is
   responsible for freeing the memory.  */
char *
143
diagnostic_build_prefix (diagnostic_info *diagnostic)
144
{
145
  static const char *const diagnostic_kind_text[] = {
146
#define DEFINE_DIAGNOSTIC_KIND(K, T) (T),
147 148 149 150
#include "diagnostic.def"
#undef DEFINE_DIAGNOSTIC_KIND
    "must-not-happen"
  };
151
  const char *text = _(diagnostic_kind_text[diagnostic->kind]);
152
  expanded_location s = expand_location (diagnostic->location);
153 154
  if (diagnostic->override_column)
    s.column = diagnostic->override_column;
155
  gcc_assert (diagnostic->kind < DK_LAST_DIAGNOSTIC_KIND);
156

157 158 159
  return
    (s.file == NULL
     ? build_message_string ("%s: %s", progname, text)
160
     : flag_show_column
161 162
     ? build_message_string ("%s:%d:%d: %s", s.file, s.line, s.column, text)
     : build_message_string ("%s:%d: %s", s.file, s.line, text));
163 164
}

165 166 167
/* Take any action which is expected to happen after the diagnostic
   is written out.  This function does not always return.  */
static void
168 169
diagnostic_action_after_output (diagnostic_context *context,
				diagnostic_info *diagnostic)
170 171 172 173 174 175 176 177 178 179 180 181 182
{
  switch (diagnostic->kind)
    {
    case DK_DEBUG:
    case DK_NOTE:
    case DK_ANACHRONISM:
    case DK_WARNING:
      break;

    case DK_ERROR:
    case DK_SORRY:
      if (context->abort_on_error)
	real_abort ();
183 184 185 186 187
      if (flag_fatal_errors)
	{
	  fnotice (stderr, "compilation terminated due to -Wfatal-errors.\n");
	  exit (FATAL_EXIT_CODE);
	}
188 189 190 191 192 193
      break;

    case DK_ICE:
      if (context->abort_on_error)
	real_abort ();

194 195 196
      fnotice (stderr, "Please submit a full bug report,\n"
	       "with preprocessed source if appropriate.\n"
	       "See %s for instructions.\n", bug_report_url);
197
      exit (ICE_EXIT_CODE);
198 199 200 201 202 203 204 205 206

    case DK_FATAL:
      if (context->abort_on_error)
	real_abort ();

      fnotice (stderr, "compilation terminated.\n");
      exit (FATAL_EXIT_CODE);

    default:
207
      gcc_unreachable ();
208 209 210
    }
}

211
/* Prints out, if necessary, the name of the current function
212
   that caused an error.  Called from all error and warning functions.  */
213
void
214 215
diagnostic_report_current_function (diagnostic_context *context,
				    diagnostic_info *diagnostic)
216
{
217
  diagnostic_report_current_module (context);
218
  lang_hooks.print_error_function (context, input_filename, diagnostic);
219 220 221
}

void
222
diagnostic_report_current_module (diagnostic_context *context)
223
{
224
  const struct line_map *map;
225

226
  if (pp_needs_newline (context->printer))
227
    {
228 229
      pp_newline (context->printer);
      pp_needs_newline (context->printer) = false;
230
    }
231

232 233 234 235 236
  if (input_location <= BUILTINS_LOCATION)
    return;

  map = linemap_lookup (line_table, input_location);
  if (map && diagnostic_last_module_changed (context, map))
237
    {
238 239
      diagnostic_set_last_module (context, map);
      if (! MAIN_FILE_P (map))
240
	{
241
	  map = INCLUDED_FROM (line_table, map);
242 243 244 245 246 247 248 249 250
	  if (flag_show_column)
	    pp_verbatim (context->printer,
			 "In file included from %s:%d:%d",
			 map->to_file,
			 LAST_SOURCE_LINE (map), LAST_SOURCE_COLUMN (map));
	  else
	    pp_verbatim (context->printer,
			 "In file included from %s:%d",
			 map->to_file, LAST_SOURCE_LINE (map));
251 252 253 254 255 256 257 258 259
	  while (! MAIN_FILE_P (map))
	    {
	      map = INCLUDED_FROM (line_table, map);
	      pp_verbatim (context->printer,
			   ",\n                 from %s:%d",
			   map->to_file, LAST_SOURCE_LINE (map));
	    }
	  pp_verbatim (context->printer, ":");
	  pp_newline (context->printer);
260
	}
261 262
    }
}
263

Diego Novillo committed
264
void
265 266
default_diagnostic_starter (diagnostic_context *context,
			    diagnostic_info *diagnostic)
267
{
268
  diagnostic_report_current_function (context, diagnostic);
269
  pp_set_prefix (context->printer, diagnostic_build_prefix (diagnostic));
270
}
271

Diego Novillo committed
272
void
273
default_diagnostic_finalizer (diagnostic_context *context,
274
			      diagnostic_info *diagnostic ATTRIBUTE_UNUSED)
275
{
276
  pp_destroy_prefix (context->printer);
277 278
}

279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298
/* Interface to specify diagnostic kind overrides.  Returns the
   previous setting, or DK_UNSPECIFIED if the parameters are out of
   range.  */
diagnostic_t
diagnostic_classify_diagnostic (diagnostic_context *context,
				int option_index,
				diagnostic_t new_kind)
{
  diagnostic_t old_kind;

  if (option_index <= 0
      || option_index >= N_OPTS
      || new_kind >= DK_LAST_DIAGNOSTIC_KIND)
    return DK_UNSPECIFIED;

  old_kind = context->classify_diagnostic[option_index];
  context->classify_diagnostic[option_index] = new_kind;
  return old_kind;
}

299 300 301 302
/* Report a diagnostic message (an error or a warning) as specified by
   DC.  This function is *the* subroutine in terms of which front-ends
   should implement their specific diagnostic handling modules.  The
   front-end independent format specifiers are exactly those described
H.J. Lu committed
303
   in the documentation of output_format.
304
   Return true if a diagnostic was printed, false otherwise.  */
305

306
bool
307 308
diagnostic_report_diagnostic (diagnostic_context *context,
			      diagnostic_info *diagnostic)
309
{
310
  location_t location = diagnostic->location;
311
  bool maybe_print_warnings_as_errors_message = false;
312
  const char *saved_format_spec;
313 314 315

  /* Give preference to being able to inhibit warnings, before they
     get reclassified to something else.  */
316
  if ((diagnostic->kind == DK_WARNING || diagnostic->kind == DK_PEDWARN)
317
      && !diagnostic_report_warnings_p (location))
318 319
    return false;

320 321 322
  if (diagnostic->kind == DK_NOTE && flag_compare_debug)
    return false;

H.J. Lu committed
323
  if (diagnostic->kind == DK_PEDWARN)
324
    diagnostic->kind = pedantic_warning_kind ();
H.J. Lu committed
325

326 327 328 329 330 331 332 333 334 335 336
  if (context->lock > 0)
    {
      /* If we're reporting an ICE in the middle of some other error,
	 try to flush out the previous error, then let this one
	 through.  Don't do this more than once.  */
      if (diagnostic->kind == DK_ICE && context->lock == 1)
	pp_flush (context->printer);
      else
	error_recursion (context);
    }

337 338 339 340 341 342 343 344 345 346
  /* If the user requested that warnings be treated as errors, so be
     it.  Note that we do this before the next block so that
     individual warnings can be overridden back to warnings with
     -Wno-error=*.  */
  if (context->warning_as_error_requested
      && diagnostic->kind == DK_WARNING)
    {
      diagnostic->kind = DK_ERROR;
      maybe_print_warnings_as_errors_message = true;
    }
H.J. Lu committed
347

348 349 350 351 352
  if (diagnostic->option_index)
    {
      /* This tests if the user provided the appropriate -Wfoo or
	 -Wno-foo option.  */
      if (! option_enabled (diagnostic->option_index))
353
	return false;
354 355 356
      /* This tests if the user provided the appropriate -Werror=foo
	 option.  */
      if (context->classify_diagnostic[diagnostic->option_index] != DK_UNSPECIFIED)
357 358 359 360
	{
	  diagnostic->kind = context->classify_diagnostic[diagnostic->option_index];
	  maybe_print_warnings_as_errors_message = false;
	}
361
      /* This allows for future extensions, like temporarily disabling
362 363
	 warnings for ranges of source code.  */
      if (diagnostic->kind == DK_IGNORED)
364
	return false;
365
    }
366

367 368 369 370 371 372 373 374 375 376
  /* If we changed the kind due to -Werror, and didn't override it, we
     need to print this message.  */
  if (context->issue_warnings_are_errors_message
      && maybe_print_warnings_as_errors_message)
    {
      pp_verbatim (context->printer,
		   "%s: warnings being treated as errors\n", progname);
      context->issue_warnings_are_errors_message = false;
    }

377
  context->lock++;
378

379
  if (diagnostic->kind == DK_ICE && plugins_active_p ())
Diego Novillo committed
380 381 382 383 384 385 386
    {
      fnotice (stderr, "*** WARNING *** there are active plugins, do not report"
	       " this as a bug unless you can reproduce it without enabling"
	       " any plugins.\n");
      dump_active_plugins (stderr);
    }

H.J. Lu committed
387
  if (diagnostic->kind == DK_ICE)
388
    {
389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405
#ifndef ENABLE_CHECKING
      /* When not checking, ICEs are converted to fatal errors when an
	 error has already occurred.  This is counteracted by
	 abort_on_error.  */
      if ((diagnostic_kind_count (context, DK_ERROR) > 0
	   || diagnostic_kind_count (context, DK_SORRY) > 0)
	  && !context->abort_on_error)
	{
	  expanded_location s = expand_location (diagnostic->location);
	  fnotice (stderr, "%s:%d: confused by earlier errors, bailing out\n",
		   s.file, s.line);
	  exit (ICE_EXIT_CODE);
	}
#endif
      if (context->internal_error)
	(*context->internal_error) (diagnostic->message.format_spec,
				    diagnostic->message.args_ptr);
406
    }
407
  ++diagnostic_kind_count (context, diagnostic->kind);
H.J. Lu committed
408

409 410 411 412 413
  saved_format_spec = diagnostic->message.format_spec;
  if (context->show_option_requested && diagnostic->option_index)
    diagnostic->message.format_spec
      = ACONCAT ((diagnostic->message.format_spec,
                  " [", cl_options[diagnostic->option_index].opt_text, "]", NULL));
H.J. Lu committed
414

415 416 417 418 419 420 421 422 423 424 425
  diagnostic->message.locus = &diagnostic->location;
  diagnostic->message.abstract_origin = &diagnostic->abstract_origin;
  diagnostic->abstract_origin = NULL;
  pp_format (context->printer, &diagnostic->message);
  (*diagnostic_starter (context)) (context, diagnostic);
  pp_output_formatted_text (context->printer);
  (*diagnostic_finalizer (context)) (context, diagnostic);
  pp_flush (context->printer);
  diagnostic_action_after_output (context, diagnostic);
  diagnostic->message.format_spec = saved_format_spec;
  diagnostic->abstract_origin = NULL;
426 427

  context->lock--;
428 429

  return true;
430
}
431

432 433 434 435
/* Given a partial pathname as input, return another pathname that
   shares no directory elements with the pathname of __FILE__.  This
   is used by fancy_abort() to print `Internal compiler error in expr.c'
   instead of `Internal compiler error in ../../GCC/gcc/expr.c'.  */
Kazu Hirata committed
436

437
const char *
438
trim_filename (const char *name)
439 440 441
{
  static const char this_file[] = __FILE__;
  const char *p = name, *q = this_file;
442

443 444
  /* First skip any "../" in each filename.  This allows us to give a proper
     reference to a file in a subdirectory.  */
445
  while (p[0] == '.' && p[1] == '.' && IS_DIR_SEPARATOR (p[2]))
446 447
    p += 3;

448
  while (q[0] == '.' && q[1] == '.' && IS_DIR_SEPARATOR (q[2]))
449 450 451 452 453 454 455
    q += 3;

  /* Now skip any parts the two filenames have in common.  */
  while (*p == *q && *p != 0 && *q != 0)
    p++, q++;

  /* Now go backwards until the previous directory separator.  */
456
  while (p > name && !IS_DIR_SEPARATOR (p[-1]))
457 458 459
    p--;

  return p;
460
}
461 462 463

/* Standard error reporting routines in increasing order of severity.
   All of these take arguments like printf.  */
464

465 466
/* Text to be emitted verbatim to the error message stream; this
   produces no prefix and disables line-wrapping.  Use rarely.  */
467
void
468
verbatim (const char *gmsgid, ...)
469 470
{
  text_info text;
471
  va_list ap;
472

473
  va_start (ap, gmsgid);
474
  text.err_no = errno;
475
  text.args_ptr = &ap;
476
  text.format_spec = _(gmsgid);
477
  text.locus = NULL;
478
  text.abstract_origin = NULL;
479 480
  pp_format_verbatim (global_dc->printer, &text);
  pp_flush (global_dc->printer);
481
  va_end (ap);
482 483
}

484
bool
H.J. Lu committed
485
emit_diagnostic (diagnostic_t kind, location_t location, int opt,
486
		 const char *gmsgid, ...)
487
{
488
  diagnostic_info diagnostic;
489
  va_list ap;
490

491
  va_start (ap, gmsgid);
492 493 494 495 496 497 498 499 500 501 502
  if (kind == DK_PERMERROR)
    {
      diagnostic_set_info (&diagnostic, gmsgid, &ap, location,
			   permissive_error_kind ());
      diagnostic.option_index = OPT_fpermissive;
    }
  else {
      diagnostic_set_info (&diagnostic, gmsgid, &ap, location, kind);
      if (kind == DK_WARNING || kind == DK_PEDWARN)
	diagnostic.option_index = opt;
  }
503
  va_end (ap);
504 505

  return report_diagnostic (&diagnostic);
506 507
}

508
/* An informative note at LOCATION.  Use this for additional details on an error
509
   message.  */
510
void
511
inform (location_t location, const char *gmsgid, ...)
512 513 514 515
{
  diagnostic_info diagnostic;
  va_list ap;

516
  va_start (ap, gmsgid);
517
  diagnostic_set_info (&diagnostic, gmsgid, &ap, location, DK_NOTE);
518 519 520 521
  report_diagnostic (&diagnostic);
  va_end (ap);
}

522
/* A warning at INPUT_LOCATION.  Use this for code which is correct according
H.J. Lu committed
523
   to the relevant language specification but is likely to be buggy anyway.
524 525 526
   Returns true if the warning was printed, false if it was inhibited.  */
bool
warning (int opt, const char *gmsgid, ...)
527
{
528
  diagnostic_info diagnostic;
529
  va_list ap;
530

531 532
  va_start (ap, gmsgid);
  diagnostic_set_info (&diagnostic, gmsgid, &ap, input_location, DK_WARNING);
533 534
  diagnostic.option_index = opt;

535
  va_end (ap);
536
  return report_diagnostic (&diagnostic);
537 538
}

539
/* A warning at LOCATION.  Use this for code which is correct according to the
540 541 542 543
   relevant language specification but is likely to be buggy anyway.
   Returns true if the warning was printed, false if it was inhibited.  */

bool
544 545 546 547 548 549 550 551 552
warning_at (location_t location, int opt, const char *gmsgid, ...)
{
  diagnostic_info diagnostic;
  va_list ap;

  va_start (ap, gmsgid);
  diagnostic_set_info (&diagnostic, gmsgid, &ap, location, DK_WARNING);
  diagnostic.option_index = opt;
  va_end (ap);
553
  return report_diagnostic (&diagnostic);
554 555
}

556 557 558 559
/* A "pedantic" warning at LOCATION: issues a warning unless
   -pedantic-errors was given on the command line, in which case it
   issues an error.  Use this for diagnostics required by the relevant
   language standard, if you have chosen not to make them errors.
560 561 562

   Note that these diagnostics are issued independent of the setting
   of the -pedantic command-line switch.  To get a warning enabled
563 564
   only with that switch, use either "if (pedantic) pedwarn
   (OPT_pedantic,...)" or just "pedwarn (OPT_pedantic,..)".  To get a
565
   pedwarn independently of the -pedantic switch use "pedwarn (0,...)".
566

567 568 569
   Returns true if the warning was printed, false if it was inhibited.  */

bool
570
pedwarn (location_t location, int opt, const char *gmsgid, ...)
571 572 573 574 575 576 577 578 579 580 581
{
  diagnostic_info diagnostic;
  va_list ap;

  va_start (ap, gmsgid);
  diagnostic_set_info (&diagnostic, gmsgid, &ap, location,  DK_PEDWARN);
  diagnostic.option_index = opt;
  va_end (ap);
  return report_diagnostic (&diagnostic);
}

582 583 584
/* A "permissive" error at LOCATION: issues an error unless
   -fpermissive was given on the command line, in which case it issues
   a warning.  Use this for things that really should be errors but we
585
   want to support legacy code.
586

587 588 589
   Returns true if the warning was printed, false if it was inhibited.  */

bool
590
permerror (location_t location, const char *gmsgid, ...)
591 592 593 594 595 596
{
  diagnostic_info diagnostic;
  va_list ap;

  va_start (ap, gmsgid);
  diagnostic_set_info (&diagnostic, gmsgid, &ap, location,
597
                       permissive_error_kind ());
598 599
  diagnostic.option_index = OPT_fpermissive;
  va_end (ap);
600
  return report_diagnostic (&diagnostic);
601 602
}

603 604
/* A hard error: the code is definitely ill-formed, and an object file
   will not be produced.  */
605
void
606
error (const char *gmsgid, ...)
607
{
608
  diagnostic_info diagnostic;
609
  va_list ap;
610

611 612
  va_start (ap, gmsgid);
  diagnostic_set_info (&diagnostic, gmsgid, &ap, input_location, DK_ERROR);
613
  report_diagnostic (&diagnostic);
614
  va_end (ap);
615 616
}

617 618 619 620 621 622 623 624 625 626 627 628 629
/* Same as ebove, but use location LOC instead of input_location.  */
void
error_at (location_t loc, const char *gmsgid, ...)
{
  diagnostic_info diagnostic;
  va_list ap;

  va_start (ap, gmsgid);
  diagnostic_set_info (&diagnostic, gmsgid, &ap, loc, DK_ERROR);
  report_diagnostic (&diagnostic);
  va_end (ap);
}

630 631 632
/* "Sorry, not implemented."  Use for a language feature which is
   required by the relevant specification but not implemented by GCC.
   An object file will not be produced.  */
633
void
634
sorry (const char *gmsgid, ...)
635
{
636
  diagnostic_info diagnostic;
637
  va_list ap;
638

639 640
  va_start (ap, gmsgid);
  diagnostic_set_info (&diagnostic, gmsgid, &ap, input_location, DK_SORRY);
641
  report_diagnostic (&diagnostic);
642
  va_end (ap);
643
}
644

645 646 647 648
/* An error which is severe enough that we make no attempt to
   continue.  Do not use this for internal consistency checks; that's
   internal_error.  Use of this function should be rare.  */
void
649
fatal_error (const char *gmsgid, ...)
650
{
651
  diagnostic_info diagnostic;
652
  va_list ap;
653

654 655
  va_start (ap, gmsgid);
  diagnostic_set_info (&diagnostic, gmsgid, &ap, input_location, DK_FATAL);
656
  report_diagnostic (&diagnostic);
657
  va_end (ap);
658

659
  gcc_unreachable ();
660 661
}

662 663 664 665 666
/* An internal consistency check has failed.  We make no attempt to
   continue.  Note that unless there is debugging value to be had from
   a more specific message, or some other good reason, you should use
   abort () instead of calling this function directly.  */
void
667
internal_error (const char *gmsgid, ...)
668
{
669
  diagnostic_info diagnostic;
670
  va_list ap;
671

672 673
  va_start (ap, gmsgid);
  diagnostic_set_info (&diagnostic, gmsgid, &ap, input_location, DK_ICE);
674
  report_diagnostic (&diagnostic);
675
  va_end (ap);
676

677
  gcc_unreachable ();
678
}
679 680 681

/* Special case error functions.  Most are implemented in terms of the
   above, or should be.  */
682

683 684
/* Print a diagnostic MSGID on FILE.  This is just fprintf, except it
   runs its second argument through gettext.  */
Kazu Hirata committed
685
void
686
fnotice (FILE *file, const char *cmsgid, ...)
687
{
688
  va_list ap;
689

690 691
  va_start (ap, cmsgid);
  vfprintf (file, _(cmsgid), ap);
692
  va_end (ap);
693 694
}

695 696 697 698 699 700
/* Inform the user that an error occurred while trying to report some
   other error.  This indicates catastrophic internal inconsistencies,
   so give up now.  But do try to flush out the previous error.
   This mustn't use internal_error, that will cause infinite recursion.  */

static void
701
error_recursion (diagnostic_context *context)
702
{
703 704
  diagnostic_info diagnostic;

705
  if (context->lock < 3)
706
    pp_flush (context->printer);
707 708 709

  fnotice (stderr,
	   "Internal compiler error: Error reporting routines re-entered.\n");
710 711 712 713 714 715 716 717 718

  /* Call diagnostic_action_after_output to get the "please submit a bug
     report" message.  It only looks at the kind field of diagnostic_info.  */
  diagnostic.kind = DK_ICE;
  diagnostic_action_after_output (context, &diagnostic);

  /* Do not use gcc_unreachable here; that goes through internal_error
     and therefore would cause infinite recursion.  */
  real_abort ();
719 720 721 722 723 724 725
}

/* Report an internal compiler error in a friendly manner.  This is
   the function that gets called upon use of abort() in the source
   code generally, thanks to a special macro.  */

void
726
fancy_abort (const char *file, int line, const char *function)
727 728 729 730
{
  internal_error ("in %s, at %s:%d", function, trim_filename (file), line);
}

731 732 733 734
/* Really call the system 'abort'.  This has to go right at the end of
   this file, so that there are no functions after it that call abort
   and get the system abort instead of our macro.  */
#undef abort
735 736
static void
real_abort (void)
737 738 739
{
  abort ();
}