Added upstream from http://ftp.icm.edu.pl/pub/loglan/
[loglan.git] / sources / f2c / error.c
1 /****************************************************************
2 Copyright 1990 by AT&T Bell Laboratories and Bellcore.
3
4 Permission to use, copy, modify, and distribute this software
5 and its documentation for any purpose and without fee is hereby
6 granted, provided that the above copyright notice appear in all
7 copies and that both that the copyright notice and this
8 permission notice and warranty disclaimer appear in supporting
9 documentation, and that the names of AT&T Bell Laboratories or
10 Bellcore or any of their entities not be used in advertising or
11 publicity pertaining to distribution of the software without
12 specific, written prior permission.
13
14 AT&T and Bellcore disclaim all warranties with regard to this
15 software, including all implied warranties of merchantability
16 and fitness.  In no event shall AT&T or Bellcore be liable for
17 any special, indirect or consequential damages or any damages
18 whatsoever resulting from loss of use, data or profits, whether
19 in an action of contract, negligence or other tortious action,
20 arising out of or in connection with the use or performance of
21 this software.
22 ****************************************************************/
23
24 #include "defs.h"
25
26 warni(s,t)
27  char *s;
28  int t;
29 {
30         char buf[100];
31         sprintf(buf,s,t);
32         warn(buf);
33         }
34
35 warn1(s,t)
36 char *s, *t;
37 {
38         char buff[100];
39         sprintf(buff, s, t);
40         warn(buff);
41 }
42
43
44 warn(s)
45 char *s;
46 {
47         if(nowarnflag)
48                 return;
49         if (infname && *infname)
50                 fprintf(diagfile, "Warning on line %ld of %s: %s\n",
51                         lineno, infname, s);
52         else
53                 fprintf(diagfile, "Warning on line %ld: %s\n", lineno, s);
54         fflush(diagfile);
55         ++nwarn;
56 }
57
58
59 errstr(s, t)
60 char *s, *t;
61 {
62         char buff[100];
63         sprintf(buff, s, t);
64         err(buff);
65 }
66
67
68
69 erri(s,t)
70 char *s;
71 int t;
72 {
73         char buff[100];
74         sprintf(buff, s, t);
75         err(buff);
76 }
77
78 errl(s,t)
79 char *s;
80 long t;
81 {
82         char buff[100];
83         sprintf(buff, s, t);
84         err(buff);
85 }
86
87
88
89 err(s)
90 char *s;
91 {
92         if (infname && *infname)
93                 fprintf(diagfile, "Error on line %ld of %s: %s\n",
94                         lineno, infname, s);
95         else
96                 fprintf(diagfile, "Error on line %ld: %s\n", lineno, s);
97         fflush(diagfile);
98         ++nerr;
99 }
100
101
102 yyerror(s)
103 char *s;
104 {
105         err(s);
106 }
107
108
109
110 dclerr(s, v)
111 char *s;
112 Namep v;
113 {
114         char buff[100];
115
116         if(v)
117         {
118                 sprintf(buff, "Declaration error for %s: %s", v->fvarname, s);
119                 err(buff);
120         }
121         else
122                 errstr("Declaration error %s", s);
123 }
124
125
126
127 execerr(s, n)
128 char *s, *n;
129 {
130         char buf1[100], buf2[100];
131
132         sprintf(buf1, "Execution error %s", s);
133         sprintf(buf2, buf1, n);
134         err(buf2);
135 }
136
137
138 Fatal(t)
139 char *t;
140 {
141         fprintf(diagfile, "Compiler error line %ld of %s: %s\n", lineno, infname, t);
142         done(3);
143 }
144
145
146
147
148 fatalstr(t,s)
149 char *t, *s;
150 {
151         char buff[100];
152         sprintf(buff, t, s);
153         Fatal(buff);
154 }
155
156
157
158 fatali(t,d)
159 char *t;
160 int d;
161 {
162         char buff[100];
163         sprintf(buff, t, d);
164         Fatal(buff);
165 }
166
167
168
169 badthing(thing, r, t)
170 char *thing, *r;
171 int t;
172 {
173         char buff[50];
174         sprintf(buff, "Impossible %s %d in routine %s", thing, t, r);
175         Fatal(buff);
176 }
177
178
179
180 badop(r, t)
181 char *r;
182 int t;
183 {
184         badthing("opcode", r, t);
185 }
186
187
188
189 badtag(r, t)
190 char *r;
191 int t;
192 {
193         badthing("tag", r, t);
194 }
195
196
197
198
199
200 badstg(r, t)
201 char *r;
202 int t;
203 {
204         badthing("storage class", r, t);
205 }
206
207
208
209
210 badtype(r, t)
211 char *r;
212 int t;
213 {
214         badthing("type", r, t);
215 }
216
217
218 many(s, c, n)
219 char *s, c;
220 int n;
221 {
222         char buff[250];
223
224         sprintf(buff,
225             "Too many %s.\nTable limit now %d.\nTry recompiling using the -N%c%d option\n",
226             s, n, c, 2*n);
227         Fatal(buff);
228 }
229
230
231 err66(s)
232 char *s;
233 {
234         errstr("Fortran 77 feature used: %s", s);
235         --nerr;
236 }
237
238
239
240 errext(s)
241 char *s;
242 {
243         errstr("F77 compiler extension used: %s", s);
244         --nerr;
245 }