1 /* Implement Input/Output runtime actions for CHILL.
2 Copyright (C) 1992,1993 Free Software Foundation, Inc.
3 Author: Wilfried Moser, et al
5 This file is part of GNU CC.
7 GNU CC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
12 GNU CC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU CC; see the file COPYING. If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
22 /* As a special exception, if you link this library with other files,
23 some of which are compiled with GCC, to produce an executable,
24 this library does not by itself cause the resulting executable
25 to be covered by the GNU General Public License.
26 This exception does not however invalidate any other reasons why
27 the executable file might be covered by the GNU General Public License. */
34 /* Note: numbers must be in the same order as
35 strings in ioerror.c */
52 #ifndef FIRST_IO_ERROR_NUMBER
53 #define FIRST_IO_ERROR_NUMBER 0
57 FIRST_AND_UNUSED
= FIRST_IO_ERROR_NUMBER
,
61 CLAUSE_WIDTH_OVERFLOW
,
62 UNMATCHED_CLOSING_PAREN
,
63 UNMATCHED_OPENING_PAREN
,
70 FRACTION_WIDTH_OVERFLOW
,
71 EXPONENT_WIDTH_OVERFLOW
,
79 BOOL_CONVERSION_ERROR
,
81 EXCESS_IOLIST_ELEMENTS
,
102 /* end of formatting errors */
109 INVALID_ASSOCIATION_MODE
,
128 NO_ACCESS_SUBLOCATION
,
146 char* io_info_text
[];
152 jmp_buf __io_exception
;
155 jmp_buf __rw_exception
;
157 void __cause_exception (char *ex
, char* f
, int line
, int info
);
158 extern char * __IO_exception_names
[];
160 #define IOEXCEPTION(EXC,INFO) \
161 longjmp( __io_exception, (EXC<<16) + INFO )
163 #define RWEXCEPTION(EXC,INFO) \
164 longjmp( __rw_exception, (EXC<<16) + INFO )
166 #define CHILLEXCEPTION(FILE,LINE,EXC,INFO) \
167 __cause_exception (__IO_exception_names[EXC], FILE, LINE, INFO);