File: error.c

package info (click to toggle)
perl-byacc 2.0-10
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 716 kB
  • sloc: ansic: 7,136; yacc: 2,035; perl: 1,779; makefile: 206; sh: 9
file content (445 lines) | stat: -rw-r--r-- 8,284 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
/* routines for printing error messages	 */

#include "defs.h"


#if __STDC__
void fatal(char *msg)
#else
void fatal(msg)
char *msg;
#endif
{
    fprintf(stderr, "%s: f - %s\n", myname, msg);
    done(2);
}


#if __STDC__
void no_space(void)
#else
void no_space()
#endif
{
    fprintf(stderr, "%s: f - out of space\n", myname);
    done(2);
}


#if __STDC__
void open_error(char *filename)
#else
void open_error(filename)
char *filename;
#endif
{
    fprintf(stderr, "%s: f - cannot open \"%s\"\n", myname, filename);
    done(2);
}


#if __STDC__
void unexpected_EOF(void)
#else
void unexpected_EOF()
#endif
{
    fprintf(stderr, "%s: e - line %d of \"%s\", unexpected end-of-file\n",
	    myname, lineno, input_file_name);
    done(1);
}


#if __STDC__
void print_pos(char *st_line, char *st_cptr)
#else
void print_pos(st_line, st_cptr)
char *st_line;
char *st_cptr;
#endif
{
    register char *s;

    if (st_line == 0) return;
    for (s = st_line; *s != '\n'; ++s)
    {
	if (isprint(*s) || *s == '\t')
	    putc(*s, stderr);
	else
	    putc('?', stderr);
    }
    putc('\n', stderr);
    for (s = st_line; s < st_cptr; ++s)
    {
	if (*s == '\t')
	    putc('\t', stderr);
	else
	    putc(' ', stderr);
    }
    putc('^', stderr);
    putc('\n', stderr);
}


#if __STDC__
void syntax_error(int st_lineno, char *st_line, char *st_cptr)
#else
void syntax_error(st_lineno, st_line, st_cptr)
int st_lineno;
char *st_line;
char *st_cptr;
#endif
{
    fprintf(stderr, "%s: e - line %d of \"%s\", syntax error\n",
	    myname, st_lineno, input_file_name);
    print_pos(st_line, st_cptr);
    done(1);
}


#if __STDC__
void unterminated_comment(int c_lineno, char *c_line, char *c_cptr)
#else
void unterminated_comment(c_lineno, c_line, c_cptr)
int c_lineno;
char *c_line;
char *c_cptr;
#endif
{
    fprintf(stderr, "%s: e - line %d of \"%s\", unmatched /*\n",
	    myname, c_lineno, input_file_name);
    print_pos(c_line, c_cptr);
    done(1);
}


#if __STDC__
void unterminated_string(int s_lineno, char *s_line, char *s_cptr)
#else
void unterminated_string(s_lineno, s_line, s_cptr)
int s_lineno;
char *s_line;
char *s_cptr;
#endif
{
    fprintf(stderr, "%s: e - line %d of \"%s\", unterminated string\n",
	    myname, s_lineno, input_file_name);
    print_pos(s_line, s_cptr);
    done(1);
}


#if __STDC__
void unterminated_text(int t_lineno, char *t_line, char *t_cptr)
#else
void unterminated_text(t_lineno, t_line, t_cptr)
int t_lineno;
char *t_line;
char *t_cptr;
#endif
{
    fprintf(stderr, "%s: e - line %d of \"%s\", unmatched %%{\n",
	    myname, t_lineno, input_file_name);
    print_pos(t_line, t_cptr);
    done(1);
}


#if __STDC__
void unterminated_union(int u_lineno, char *u_line, char *u_cptr)
#else
void unterminated_union(u_lineno, u_line, u_cptr)
int u_lineno;
char *u_line;
char *u_cptr;
#endif
{
    fprintf(stderr, "%s: e - line %d of \"%s\", unterminated %%union \
declaration\n", myname, u_lineno, input_file_name);
    print_pos(u_line, u_cptr);
    done(1);
}


#if __STDC__
void over_unionized(char *u_cptr)
#else
void over_unionized(u_cptr)
char *u_cptr;
#endif
{
    fprintf(stderr, "%s: e - line %d of \"%s\", too many %%union \
declarations\n", myname, lineno, input_file_name);
    print_pos(line, u_cptr);
    done(1);
}


#if __STDC__
void illegal_tag(int t_lineno, char *t_line, char *t_cptr)
#else
void illegal_tag(t_lineno, t_line, t_cptr)
int t_lineno;
char *t_line;
char *t_cptr;
#endif
{
    fprintf(stderr, "%s: e - line %d of \"%s\", illegal tag\n",
	    myname, t_lineno, input_file_name);
    print_pos(t_line, t_cptr);
    done(1);
}


#if __STDC__
void illegal_character(char *c_cptr)
#else
void illegal_character(c_cptr)
char *c_cptr;
#endif
{
    fprintf(stderr, "%s: e - line %d of \"%s\", illegal character\n",
	    myname, lineno, input_file_name);
    print_pos(line, c_cptr);
    done(1);
}


#if __STDC__
void used_reserved(char *s)
#else
void used_reserved(s)
char *s;
#endif
{
    fprintf(stderr, "%s: e - line %d of \"%s\", illegal use of reserved symbol \
%s\n", myname, lineno, input_file_name, s);
    done(1);
}


#if __STDC__
void tokenized_start(char *s)
#else
void tokenized_start(s)
char *s;
#endif
{
     fprintf(stderr, "%s: e - line %d of \"%s\", the start symbol %s cannot be \
declared to be a token\n", myname, lineno, input_file_name, s);
     done(1);
}


#if __STDC__
void retyped_warning(char *s)
#else
void retyped_warning(s)
char *s;
#endif
{
    fprintf(stderr, "%s: w - line %d of \"%s\", the type of %s has been \
redeclared\n", myname, lineno, input_file_name, s);
}


#if __STDC__
void reprec_warning(char *s)
#else
void reprec_warning(s)
char *s;
#endif
{
    fprintf(stderr, "%s: w - line %d of \"%s\", the precedence of %s has been \
redeclared\n", myname, lineno, input_file_name, s);
}


#if __STDC__
void revalued_warning(char *s)
#else
void revalued_warning(s)
char *s;
#endif
{
    fprintf(stderr, "%s: w - line %d of \"%s\", the value of %s has been \
redeclared\n", myname, lineno, input_file_name, s);
}


#if __STDC__
void terminal_start(char *s)
#else
void terminal_start(s)
char *s;
#endif
{
    fprintf(stderr, "%s: e - line %d of \"%s\", the start symbol %s is a \
token\n", myname, lineno, input_file_name, s);
    done(1);
}


#if __STDC__
void restarted_warning(void)
#else
void restarted_warning()
#endif
{
    fprintf(stderr, "%s: w - line %d of \"%s\", the start symbol has been \
redeclared\n", myname, lineno, input_file_name);
}


#if __STDC__
void no_grammar(void)
#else
void no_grammar()
#endif
{
    fprintf(stderr, "%s: e - line %d of \"%s\", no grammar has been \
specified\n", myname, lineno, input_file_name);
    done(1);
}


#if __STDC__
void terminal_lhs(int s_lineno)
#else
void terminal_lhs(s_lineno)
int s_lineno;
#endif
{
    fprintf(stderr, "%s: e - line %d of \"%s\", a token appears on the lhs \
of a production\n", myname, s_lineno, input_file_name);
    done(1);
}


#if __STDC__
void prec_redeclared(void)
#else
void prec_redeclared()
#endif
{
    fprintf(stderr, "%s: w - line %d of  \"%s\", conflicting %%prec \
specifiers\n", myname, lineno, input_file_name);
}


#if __STDC__
void unterminated_action(int a_lineno, char *a_line, char *a_cptr)
#else
void unterminated_action(a_lineno, a_line, a_cptr)
int a_lineno;
char *a_line;
char *a_cptr;
#endif
{
    fprintf(stderr, "%s: e - line %d of \"%s\", unterminated action\n",
	    myname, a_lineno, input_file_name);
    print_pos(a_line, a_cptr);
    done(1);
}


#if __STDC__
void dollar_warning(int a_lineno, int i)
#else
void dollar_warning(a_lineno, i)
int a_lineno;
int i;
#endif
{
    fprintf(stderr, "%s: w - line %d of \"%s\", $%d references beyond the \
end of the current rule\n", myname, a_lineno, input_file_name, i);
}


#if __STDC__
void dollar_error(int a_lineno, char *a_line, char *a_cptr)
#else
void dollar_error(a_lineno, a_line, a_cptr)
int a_lineno;
char *a_line;
char *a_cptr;
#endif
{
    fprintf(stderr, "%s: e - line %d of \"%s\", illegal $-name\n",
	    myname, a_lineno, input_file_name);
    print_pos(a_line, a_cptr);
    done(1);
}


#if __STDC__
void untyped_lhs(void)
#else
void untyped_lhs()
#endif
{
    fprintf(stderr, "%s: e - line %d of \"%s\", $$ is untyped\n",
	    myname, lineno, input_file_name);
    done(1);
}


#if __STDC__
void untyped_rhs(int i, char *s)
#else
void untyped_rhs(i, s)
int i;
char *s;
#endif
{
    fprintf(stderr, "%s: e - line %d of \"%s\", $%d (%s) is untyped\n",
	    myname, lineno, input_file_name, i, s);
    done(1);
}


#if __STDC__
void unknown_rhs(int i)
#else
void unknown_rhs(i)
int i;
#endif
{
    fprintf(stderr, "%s: e - line %d of \"%s\", $%d is untyped\n",
	    myname, lineno, input_file_name, i);
    done(1);
}


#if __STDC__
void default_action_warning(void)
#else
void default_action_warning()
#endif
{
    fprintf(stderr, "%s: w - line %d of \"%s\", the default action assigns an \
undefined value to $$\n", myname, lineno, input_file_name);
}


#if __STDC__
void undefined_goal(char *s)
#else
void undefined_goal(s)
char *s;
#endif
{
    fprintf(stderr, "%s: e - the start symbol %s is undefined\n", myname, s);
    done(1);
}


#if __STDC__
void undefined_symbol_warning(char *s)
#else
void undefined_symbol_warning(s)
char *s;
#endif
{
    fprintf(stderr, "%s: w - the symbol %s is undefined\n", myname, s);
}