errors.c (internal_error, [...]): New functions.
authorRichard Kenner <kenner@vlsi1.ultra.nyu.edu>
Sat, 24 Feb 2001 11:45:36 +0000 (11:45 +0000)
committerRichard Kenner <kenner@gcc.gnu.org>
Sat, 24 Feb 2001 11:45:36 +0000 (06:45 -0500)
* errors.c (internal_error, trim_filename): New functions.
(fancy_abort): Call internal_error.
* errors.h (internal_error, trim_filename): New declarations.

From-SVN: r40037

gcc/ChangeLog
gcc/errors.c
gcc/errors.h

index a5177cee7e8734583083cc5adab90842208dc1e9..eb5f49f294cf316b81872b04dfcb19a90fabf78d 100644 (file)
@@ -1,3 +1,9 @@
+Sat Feb 24 06:45:21 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
+
+       * errors.c (internal_error, trim_filename): New functions.
+       (fancy_abort): Call internal_error.
+       * errors.h (internal_error, trim_filename): New declarations.
+
 2001-02-24  Alexandre Oliva  <aoliva@redhat.com>
 
        * config/mn10300/mn10300.h (DBX_REGISTER_NUMBER): Reverted
index 8ccd7d0b2e0b5cbbf27e6e5862efcf6dd950ef2c..e1a3f13a8fd4c912f9b22fe22828cc6113666d37 100644 (file)
@@ -1,5 +1,5 @@
 /* Basic error reporting routines.
-   Copyright (C) 1999, 2000 Free Software Foundation, Inc.
+   Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc.
 
 This file is part of GNU CC.
 
@@ -105,6 +105,57 @@ fatal VPARAMS ((const char *format, ...))
   exit (FATAL_EXIT_CODE);
 }
 
+/* Similar, but say we got an internal error.  */
+
+void
+internal_error VPARAMS ((const char *format, ...))
+{
+#ifndef ANSI_PROTOTYPES
+  const char *format;
+#endif
+  va_list ap;
+
+  VA_START (ap, format);
+
+#ifndef ANSI_PROTOTYPES
+  format = va_arg (ap, const char *);
+#endif
+
+  fprintf (stderr, "%s: Internal error", progname);
+  vfprintf (stderr, format, ap);
+  va_end (ap);
+  fputc ('\n', stderr);
+  exit (FATAL_EXIT_CODE);
+}
+
+/* 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'.  This
+   version if for the gen* programs and so neededn't handle subdirectories.  */
+
+const char *
+trim_filename (name)
+     const char *name;
+{
+  static const char this_file[] = __FILE__;
+  const char *p = name, *q = this_file;
+
+  /* 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.  */
+  while (p > name && p[-1] != DIR_SEPARATOR
+#ifdef DIR_SEPARATOR_2
+        && p[-1] != DIR_SEPARATOR_2
+#endif
+        )
+    p--;
+
+  return p;
+}
+
 /* "Fancy" abort.  Reports where in the compiler someone gave up.
    This file is used only by build programs, so we're not as polite as
    the version in diagnostic.c.  */
@@ -114,5 +165,5 @@ fancy_abort (file, line, func)
      int line;
      const char *func;
 {
-  fatal ("ICE in %s, at %s:%d", func, file, line);
+  internal_error ("abort in %s, at %s:%d", func, file, line);
 }
index e782d2012afc205658f5d220ef2259d4f5e979d4..d9988f6525645fc2c03bb6fea41b4f4916c04561 100644 (file)
@@ -1,5 +1,5 @@
 /* Basic error reporting routines.
-   Copyright (C) 1999, 2000 Free Software Foundation, Inc.
+   Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc.
 
 This file is part of GNU CC.
 
@@ -25,11 +25,14 @@ Boston, MA 02111-1307, USA.  */
 #ifndef __GCC_ERRORS_H__
 #define __GCC_ERRORS_H__
 
-extern void warning PARAMS ((const char *format, ...)) ATTRIBUTE_PRINTF_1;
-extern void error   PARAMS ((const char *format, ...)) ATTRIBUTE_PRINTF_1;
-extern void fatal   PARAMS ((const char *format, ...))
+extern void warning PARAMS ((const char *, ...)) ATTRIBUTE_PRINTF_1;
+extern void error   PARAMS ((const char *, ...)) ATTRIBUTE_PRINTF_1;
+extern void fatal   PARAMS ((const char *, ...))
     ATTRIBUTE_PRINTF_1 ATTRIBUTE_NORETURN;
-extern void fancy_abort PARAMS ((const char *file, int line, const char *func))
+extern void internal_error   PARAMS ((const char *, ...))
+    ATTRIBUTE_PRINTF_1 ATTRIBUTE_NORETURN;
+extern const char *trim_filename   PARAMS ((const char *));
+extern void fancy_abort PARAMS ((const char *, int, const char *))
     ATTRIBUTE_NORETURN;
 
 extern int have_error;