-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbfx86.c
253 lines (232 loc) · 4.8 KB
/
bfx86.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
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
//Brainfuck Compiler.
#include <stdio.h>
#include <string.h>
#define FILENAME 1024
#ifndef STACKSIZE
#define STACKSIZE 262144 //shaves 256KB off stack
#endif
static int labeln;
static int emit_loop_start;
static int emit_loop_end;
void process_command (int c, FILE * finput, FILE * foutput);
void
process_x86_command (int c, FILE * finput, FILE * foutput)
{
while (1)
{
if (c == '>' || c == '<')
{
int levels = 0;
do
{
if (c == '<')
--levels;
else if (c == '>')
++levels;
c = fgetc (finput);
}
while (c == '>' || c == '<');
if (c == ']')
ungetc (c, finput);
if (levels)
{
emit_loop_start = 0;
emit_loop_end = 0;
fprintf (foutput, "leal %d(%%ebx),%%ebx\n", levels);
}
}
else if (c == '+' || c == '-')
{
char count = 0;
do
{
if (c == '-')
--count;
else if (c == '+')
++count;
c = fgetc (finput);
}
while (c == '+' || c == '-');
if (c == ']')
ungetc (c, finput);
if (count)
{
emit_loop_start = 0;
emit_loop_end = 0;
fprintf (foutput, "addb $%d,(%%ebx)\n", count);
}
}
else if (c == '.')
{
emit_loop_start = 0;
emit_loop_end = 0;
fputs ("movsbl (%ebx),%eax\nmovl %eax,(%esp)\n", foutput);
do
{
#ifdef _WIN32
fputs ("call _putchar\n", foutput);
#else
fputs ("call putchar\n", foutput);
#endif
c = fgetc (finput);
}
while (c == '.');
if (c == ']')
ungetc (c, finput);
}
else if (c == ',')
{
emit_loop_start = 0;
emit_loop_end = 0;
do
{
#ifdef _WIN32
fputs ("call _getchar\n", foutput);
#else
fputs ("call getchar\n", foutput);
#endif
c = fgetc (finput);
}
while (c == ',');
if (c == ']')
ungetc (c, finput);
fputs ("movb %al,(%ebx)\n", foutput);
}
else
break;
}
if (c == '[')
{
int uniq_label = labeln++;
if (!emit_loop_start)
{
fputs ("cmpb $0,(%ebx)\n", foutput);
fprintf (foutput, "je bflp_%d_end\n", uniq_label);
emit_loop_start = 1;
}
fprintf (foutput, "bflp_%d_start:\n", uniq_label);
//Recurse.
c = fgetc (finput);
while (c != ']' && c != EOF)
{
process_command (c, finput, foutput);
c = fgetc (finput);
}
if (!emit_loop_end)
{
fputs ("cmpb $0,(%ebx)\n", foutput);
fprintf (foutput, "jne bflp_%d_start\n", uniq_label);
emit_loop_end = 1;
}
fprintf (foutput, "bflp_%d_end:\n", uniq_label);
}
}
void
process_command (int c, FILE * finput, FILE * foutput)
{
process_x86_command (c, finput, foutput);
}
void
compile_stream (FILE * finput, FILE * foutput)
{
int c = fgetc (finput);
while (c != EOF)
{
process_command (c, finput, foutput);
c = fgetc (finput);
}
}
void
generate_x86_prolog (FILE * foutput)
{
fputs ("pushl %ebx\n", foutput);
fputs ("leal -4(%esp),%esp\n", foutput); //Pre-allocate putchar space.
fputs ("movl $bfs,%ebx\n", foutput);
}
void
generate_prolog (FILE * foutput)
{
#ifdef _WIN32
fputs (".extern _putchar\n", foutput);
fputs (".extern _getchar\n", foutput);
fputs (".globl _main\n", foutput);
#else
fputs (".extern putchar\n", foutput);
fputs (".extern getchar\n", foutput);
fputs (".globl main\n", foutput);
#endif
fputs (".data\n", foutput);
fputs ("bfs:\n", foutput);
fprintf (foutput, ".zero %d\n", STACKSIZE);
fputs (".text\n", foutput);
#ifdef _WIN32
fputs ("_main:\n", foutput);
#else
fputs ("main:\n", foutput);
#endif
generate_x86_prolog (foutput);
}
void
generate_x86_epilog (FILE * foutput)
{
fputs ("leal 4(%esp),%esp\n", foutput); //De-allocate putchar space.
fputs ("popl %ebx\n", foutput); //Real EBX
fputs ("xorl %eax,%eax\n", foutput);
fputs ("ret\n", foutput);
}
void
generate_epilog (FILE * foutput)
{
generate_x86_epilog (foutput);
fputs (".ident \"brainfuck\"\n", foutput);
}
void
compile (char *filename)
{
char targfilename[FILENAME];
FILE *finput = NULL, *foutput = NULL;
if (strcmp (filename, "-"))
{
finput = fopen (filename, "r");
snprintf (targfilename, FILENAME, "%s.s", filename);
}
else
{
finput = stdin;
foutput = stdout;
}
if (!finput)
{
fprintf (stderr, "Unable to open program: %s\n", filename);
return;
}
if (!foutput)
foutput = fopen (targfilename, "w");
if (!foutput)
{
fprintf (stderr, "Unable to open target program: %s\n", filename);
return;
}
labeln = 0;
emit_loop_start = 0;
emit_loop_end = 0;
generate_prolog (foutput);
compile_stream (finput, foutput);
generate_epilog (foutput);
fclose (foutput);
fclose (finput);
}
int
main (int argc, char *argv[])
{
if (argc < 2)
{
fprintf (stderr, "Usage: %s file.b\n", *argv);
return -1;
}
while (argc > 1)
{
compile (argv[(argc--) - 1]);
}
return 0;
}