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
|
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include "util.h"
#include "arg.h"
#include "cc.h"
static void
usage(void)
{
fprintf(stderr, "usage: %s [input]\n", argv0);
exit(2);
}
int
main(int argc, char *argv[])
{
bool pponly = false;
char *output = NULL, *target = NULL;
argv0 = progname(argv[0], "cproc-qbe");
ARGBEGIN {
case 'E':
pponly = true;
break;
case 't':
target = EARGF(usage());
break;
case 'o':
output = EARGF(usage());
break;
default:
usage();
} ARGEND
targinit(target);
if (output && !freopen(output, "w", stdout))
fatal("open %s:", output);
if (argc) {
while (argc--)
scanfrom(argv[argc], NULL);
scanopen();
} else {
scanfrom("<stdin>", stdin);
}
ppinit();
if (pponly) {
ppflags |= PPNEWLINE;
while (tok.kind != TEOF) {
tokenprint(&tok);
next();
}
} else {
scopeinit();
while (tok.kind != TEOF) {
if (!decl(&filescope, NULL)) {
if (tok.kind == TSEMICOLON)
error(&tok.loc, "unexpected ';' at top-level");
error(&tok.loc, "expected declaration or function definition");
}
}
emittentativedefns();
}
fflush(stdout);
if (ferror(stdout))
fatal("write failed");
return 0;
}
|