forked from 8l/qbe
-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.c
171 lines (156 loc) · 3.15 KB
/
main.c
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
#include "all.h"
#include "config.h"
#include <ctype.h>
#include <getopt.h>
char debug['Z'+1] = {
['P'] = 0, /* parsing */
['A'] = 0, /* abi lowering */
['I'] = 0, /* instruction selection */
['L'] = 0, /* liveness */
['M'] = 0, /* memory optimization */
['N'] = 0, /* ssa construction */
['C'] = 0, /* copy elimination */
['F'] = 0, /* constant folding */
['S'] = 0, /* spilling */
['R'] = 0, /* reg. allocation */
};
int stackprotection=1;
int diversify=0;
static FILE *outf;
static int dbg;
static void
data(Dat *d)
{
if (dbg)
return;
if (d->type == DEnd) {
fputs("/* end data */\n\n", outf);
freeall();
}
emitdat(d, outf);
}
static void
func(Fn *fn)
{
int n;
if (dbg)
fprintf(stderr, "**** Function %s ****", fn->name);
if (debug['P']) {
fprintf(stderr, "\n> After parsing:\n");
printfn(fn, stderr);
}
fillrpo(fn);
fillpreds(fn);
filluse(fn);
memopt(fn);
ssa(fn);
filluse(fn);
ssacheck(fn);
copy(fn);
filluse(fn);
fold(fn);
abi(fn);
filluse(fn);
isel(fn);
fillrpo(fn);
filllive(fn);
fillcost(fn);
spill(fn);
rega(fn);
fillrpo(fn);
assert(fn->rpo[0] == fn->start);
for (n=0;; n++)
if (n == fn->nblk-1) {
fn->rpo[n]->link = 0;
break;
} else
fn->rpo[n]->link = fn->rpo[n+1];
if (!dbg) {
emitfn(fn, outf);
fprintf(outf, "/* end function %s */\n\n", fn->name);
} else
fprintf(stderr, "\n");
freeall();
}
int
main(int ac, char *av[])
{
FILE *inf;
char *f;
int c, asm;
asm = Defaultasm;
outf = stdout;
while ((c = getopt(ac, av, "huDd:o:G:")) != -1)
switch (c) {
case 'd':
for (; *optarg; optarg++)
if (isalpha(*optarg)) {
debug[toupper(*optarg)] = 1;
dbg = 1;
}
break;
case 'o':
if (strcmp(optarg, "-") != 0)
outf = fopen(optarg, "w");
break;
case 'G':
if (strcmp(optarg, "e") == 0)
asm = Gaself;
else if (strcmp(optarg, "m") == 0)
asm = Gasmacho;
else {
fprintf(stderr, "unknown gas flavor '%s'\n", optarg);
exit(1);
}
break;
case 'u':
stackprotection = 0;
break;
case 'D':
diversify=1;
break;
case 'h':
default:
fprintf(stderr, "%s [OPTIONS] {file.ssa, -}\n", av[0]);
fprintf(stderr, "\t%-10s prints this help\n", "-h");
fprintf(stderr, "\t%-10s output to file\n", "-o file");
fprintf(stderr, "\t%-10s generate gas (e) or osx (m) asm\n", "-G {e,m}");
fprintf(stderr, "\t%-10s dump debug information\n", "-d <flags>");
fprintf(stderr, "\t%-10s Unprotected - don't emit stack canary code\n", "-u");
fprintf(stderr, "\t%-10s Diversify - add NOPs to binary\n", "-D");
exit(c != 'h');
}
switch (asm) {
case Gaself:
locprefix = ".L";
symprefix = "";
break;
case Gasmacho:
locprefix = "L";
symprefix = "_";
break;
}
if (diversify && openrnd() < 0)
die("Failed to open /dev/urandom");
do {
f = av[optind];
if (!f || strcmp(f, "-") == 0) {
inf = stdin;
f = "-";
} else {
inf = fopen(f, "r");
if (!inf) {
fprintf(stderr, "cannot open '%s'\n", f);
exit(1);
}
}
parse(inf, f, data, func);
} while (++optind < ac);
if (diversify && closernd() < 0)
die("Failed to close /dev/urandom");
if (!dbg)
emitfin(outf);
if (stackprotection)
emitinit(outf);
exit(0);
}