1 /* Copyright (C) 2002-2003 Free Software Foundation, Inc.
2 Contributed by Andy Vaught
4 This file is part of the GNU Fortran 95 runtime library (libgfortran).
6 Libgfortran is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
11 In addition to the permissions in the GNU General Public License, the
12 Free Software Foundation gives you unlimited permission to link the
13 compiled version of this file into combinations with other programs,
14 and to distribute those combinations without any restriction coming
15 from the use of this file. (The General Public License restrictions
16 do apply in other respects; for example, they cover modification of
17 the file, and distribution when not linked into a combine
20 Libgfortran is distributed in the hope that it will be useful,
21 but WITHOUT ANY WARRANTY; without even the implied warranty of
22 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 GNU General Public License for more details.
25 You should have received a copy of the GNU General Public License
26 along with libgfortran; see the file COPYING. If not, write to
27 the Free Software Foundation, 59 Temple Place - Suite 330,
28 Boston, MA 02111-1307, USA. */
37 #include "libgfortran.h"
40 /* Error conditions. The tricky part here is printing a message when
41 * it is the I/O subsystem that is severely wounded. Our goal is to
42 * try and print something making the fewest assumptions possible,
43 * then try to clean up before actually exiting.
45 * The following exit conditions are defined:
46 * 0 Normal program exit.
47 * 1 Terminated because of operating system error.
48 * 2 Error in the runtime library
49 * 3 Internal error in runtime library
50 * 4 Error during error processing (very bad)
52 * Other error returns are reserved for the STOP statement with a numeric code.
55 /* locus variables. These are optionally set by a caller before a
56 * library subroutine is called. They are always cleared on exit so
57 * that files that report loci and those that do not can be linked
58 * together without reporting an erroneous position. */
61 iexport_data(filename
);
66 static char buffer
[32]; /* buffer for integer/ascii conversions */
69 /* Returns a pointer to a static buffer. */
90 t
= -n
; /*must use unsigned to protect from overflow*/
93 p
= buffer
+ sizeof (buffer
) - 1;
98 *p
-- = '0' + (t
% 10);
108 /* xtoa()-- Integer to hexadecimal conversion. Returns a pointer to a
124 p
= buffer
+ sizeof (buffer
) - 1;
131 digit
+= 'A' - '0' - 10;
141 /* st_printf()-- simple printf() function for streams that handles the
142 * formats %d, %s and %c. This function handles printing of error
143 * messages that originate within the library itself, not from a user
147 st_printf (const char *format
, ...)
155 s
= init_error_stream ();
156 va_start (arg
, format
);
162 while (format
[count
] != '%' && format
[count
] != '\0')
167 p
= salloc_w (s
, &count
);
168 memmove (p
, format
, count
);
174 if (*format
++ == '\0')
182 p
= salloc_w (s
, &count
);
183 *p
= (char) va_arg (arg
, int);
189 q
= gfc_itoa (va_arg (arg
, int));
192 p
= salloc_w (s
, &count
);
193 memmove (p
, q
, count
);
198 q
= xtoa (va_arg (arg
, unsigned));
201 p
= salloc_w (s
, &count
);
202 memmove (p
, q
, count
);
207 q
= va_arg (arg
, char *);
210 p
= salloc_w (s
, &count
);
211 memmove (p
, q
, count
);
220 p
= salloc_w (s
, &count
);
236 /* st_sprintf()-- Simple sprintf() for formatting memory buffers. */
239 st_sprintf (char *buffer
, const char *format
, ...)
245 va_start (arg
, format
);
262 *buffer
++ = (char) va_arg (arg
, int);
266 p
= gfc_itoa (va_arg (arg
, int));
269 memcpy (buffer
, p
, count
);
274 p
= va_arg (arg
, char *);
277 memcpy (buffer
, p
, count
);
290 /* show_locus()-- Print a line number and filename describing where
291 * something went wrong */
296 if (!options
.locus
|| filename
== NULL
)
299 st_printf ("At line %d of file %s\n", line
, filename
);
303 /* recursion_check()-- It's possible for additional errors to occur
304 * during fatal error processing. We detect this condition here and
305 * exit with code 4 immediately. */
307 #define MAGIC 0x20DE8101
310 recursion_check (void)
312 static int magic
= 0;
314 /* Don't even try to print something at this point */
322 /* os_error()-- Operating system error. We get a message from the
323 * operating system, show it and leave. Some operating system errors
324 * are caught and processed by the library. If not, we come here. */
327 os_error (const char *message
)
331 st_printf ("Operating system error: %s\n%s\n", get_oserror (), message
);
336 /* void runtime_error()-- These are errors associated with an
337 * invalid fortran program. */
340 runtime_error (const char *message
)
344 st_printf ("Fortran runtime error: %s\n", message
);
347 iexport(runtime_error
);
350 /* void internal_error()-- These are this-can't-happen errors
351 * that indicate something deeply wrong. */
354 internal_error (const char *message
)
358 st_printf ("Internal Error: %s\n", message
);
363 /* translate_error()-- Given an integer error code, return a string
364 * describing the error. */
367 translate_error (int code
)
382 p
= "Successful return";
386 p
= "Operating system error";
389 case ERROR_BAD_OPTION
:
390 p
= "Bad statement option";
393 case ERROR_MISSING_OPTION
:
394 p
= "Missing statement option";
397 case ERROR_OPTION_CONFLICT
:
398 p
= "Conflicting statement options";
401 case ERROR_ALREADY_OPEN
:
402 p
= "File already opened in another unit";
406 p
= "Unattached unit";
413 case ERROR_BAD_ACTION
:
414 p
= "Incorrect ACTION specified";
418 p
= "Read past ENDFILE record";
422 p
= "Corrupt unformatted sequential file";
425 case ERROR_READ_VALUE
:
426 p
= "Bad value during read";
429 case ERROR_READ_OVERFLOW
:
430 p
= "Numeric overflow on read";
434 p
= "Unknown error code";
442 /* generate_error()-- Come here when an error happens. This
443 * subroutine is called if it is possible to continue on after the
444 * error. If an IOSTAT variable exists, we set it. If the IOSTAT or
445 * ERR label is present, we return, otherwise we terminate the program
446 * after print a message. The error code is always required but the
447 * message parameter can be NULL, in which case a string describing
448 * the most recent operating system error is used. */
451 generate_error (int family
, const char *message
)
453 /* Set the error status. */
454 if (ioparm
.iostat
!= NULL
)
455 *ioparm
.iostat
= family
;
457 /* Report status back to the compiler. */
461 ioparm
.library_return
= LIBRARY_EOR
;
467 ioparm
.library_return
= LIBRARY_END
;
473 ioparm
.library_return
= LIBRARY_ERROR
;
479 /* Return if the user supplied an iostat variable. */
480 if (ioparm
.iostat
!= NULL
)
483 /* Terminate the program */
487 (family
== ERROR_OS
) ? get_oserror () : translate_error (family
);
489 runtime_error (message
);