-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.s
354 lines (354 loc) · 5.27 KB
/
test.s
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
.data
##AST_DECL##
.comm x, 4, 4
##AST_DECL##
.comm y, 4, 4
##AST_DECL##
.comm arr, 20, 32
.section .rodata
.LC0:
.string "a = %d\n"
.LC1:
.string "local=%d\n"
.LC2:
.string "if works!\n"
.LC3:
.string "else works!\n"
.LC4:
.string "if works!\n"
.LC5:
.string "else works!\n"
.LC6:
.string "Test test"
.LC7:
.string "goodbye"
.LC8:
.string "third arg"
.LC9:
.string "goodbye %s %d\n"
.LC10:
.string "second"
.LC11:
.string "Hello World!\n"
.LC12:
.string "Test 1"
.LC13:
.string "Test 2"
.LC14:
.string "Test 3"
.LC15:
.string "Test 4"
.text
##AST_FUNCTION##
##AST_DECL##
.comm a, 4, 4
##AST_DECL##
b: .word 0
##AST_DECL##
s: .word 0
##AST_DECL##
.comm local, 4, 4
.globl func
.type func,@function
func:
pushq %rbp
movq %rsp, %rbp
subq $64, %rsp
##AST_ASSIGNMENT##
##AST_CONSTANT##
movq $10, %rdx
push %rdx
##AST_ASSIGNMENT##
##AST_EXPRESSION##
##AST_CONSTANT##
movq $2, %rdx
pushq %rdx
##AST_CONSTANT##
movq $3, %rdx
popq %rcx
addq %rcx, %rdx
push %rdx
##AST_CONSTANT##
movq $1, %rdx
pop %rcx
movq %rcx, arr(,%rdx,4)
##AST_ASSIGNMENT##
##AST_EXPRESSION##
##AST_CONSTANT##
movq $8, %rdx
pushq %rdx
##AST_CONSTANT##
movq $10, %rdx
popq %rcx
addq %rcx, %rdx
push %rdx
##AST_CONSTANT##
movq $2, %rdx
pop %rcx
movq %rcx, arr(,%rdx,4)
##AST_ASSIGNMENT##
##AST_CONSTANT##
movq $1, %rdx
push %rdx
##AST_CONSTANT##
movq $3, %rdx
pop %rcx
movq %rcx, arr(,%rdx,4)
##AST_ASSIGNMENT##
##AST_CONSTANT##
movq $4, %rdx
push %rdx
##AST_CONSTANT##
movq $4, %rdx
pop %rcx
movq %rcx, arr(,%rdx,4)
##AST_ASSIGNMENT##
##AST_CONSTANT##
movq $5, %rdx
push %rdx
##AST_CONSTANT##
movq $5, %rdx
pop %rcx
movq %rcx, arr(,%rdx,4)
##AST_FUNCALL##
##AST_ARGUMENT##
##AST_CONSTANT##
movq $.LC0, %rdx
movq %rdx, %rdi
##AST_ARGUMENT##
##AST_VARREF##
movq -4(%rbp), %rdx
movq %rdx, %rsi
movl $0, %eax
call printf
##AST_ASSIGNMENT##
##AST_EXPRESSION##
##AST_CONSTANT##
movq $42, %rdx
pushq %rdx
##AST_CONSTANT##
movq $12, %rdx
popq %rcx
addq %rcx, %rdx
push %rdx
##AST_FUNCALL##
##AST_ARGUMENT##
##AST_CONSTANT##
movq $.LC1, %rdx
movq %rdx, %rdi
##AST_ARGUMENT##
##AST_VARREF##
movq -4(%rbp), %rdx
movq %rdx, %rsi
movl $0, %eax
call printf
##AST_IFTHEN##
##AST_RELEXPR##
##AST_CONSTANT##
movq $20, %rdx
pushq %rdx
##AST_CONSTANT##
movq $10, %rdx
popq %rcx
cmp %rdx,%rcx
jg LL101
##AST_FUNCALL##
##AST_ARGUMENT##
##AST_CONSTANT##
movq $.LC2, %rdx
movq %rdx, %rdi
movl $0, %eax
call puts
jmp LL102
LL101:
##AST_FUNCALL##
##AST_ARGUMENT##
##AST_CONSTANT##
movq $.LC3, %rdx
movq %rdx, %rdi
movl $0, %eax
call puts
LL102:##AST_IFTHEN##
##AST_RELEXPR##
##AST_CONSTANT##
movq $20, %rdx
pushq %rdx
##AST_CONSTANT##
movq $10, %rdx
popq %rcx
cmp %rdx,%rcx
jl LL103
##AST_FUNCALL##
##AST_ARGUMENT##
##AST_CONSTANT##
movq $.LC4, %rdx
movq %rdx, %rdi
movl $0, %eax
call puts
jmp LL104
LL103:
##AST_FUNCALL##
##AST_ARGUMENT##
##AST_CONSTANT##
movq $.LC5, %rdx
movq %rdx, %rdi
movl $0, %eax
call puts
LL104: movl $0, %eax
leave
ret
##AST_FUNCTION##
##AST_DECL##
.comm argc, 4, 4
##AST_DECL##
argv: .word 0
.globl main
.type main,@function
main:
pushq %rbp
movq %rsp, %rbp
subq $64, %rsp
##AST_ASSIGNMENT##
##AST_CONSTANT##
movq $0, %rdx
push %rdx
##AST_WHILE##
jmp LL105
LL106:
##AST_FUNCALL##
##AST_ARGUMENT##
##AST_CONSTANT##
movq $.LC6, %rdx
movq %rdx, %rdi
movl $0, %eax
call puts
##AST_ASSIGNMENT##
##AST_EXPRESSION##
##AST_VARREF##
movq -4(%rbp), %rdx
pushq %rdx
##AST_CONSTANT##
movq $1, %rdx
popq %rcx
addq %rcx, %rdx
push %rdx
LL105:
##AST_RELEXPR##
##AST_VARREF##
movq -4(%rbp), %rdx
pushq %rdx
##AST_CONSTANT##
movq $5, %rdx
popq %rcx
cmp %rdx,%rcx
jl LL106
##AST_FUNCALL##
##AST_ARGUMENT##
##AST_CONSTANT##
movq $42, %rdx
movq %rdx, %rdi
##AST_ARGUMENT##
##AST_CONSTANT##
movq $.LC7, %rdx
movq %rdx, %rsi
##AST_ARGUMENT##
##AST_CONSTANT##
movq $.LC8, %rdx
movq %rdx, %rdx
movl $0, %eax
call func
##AST_FUNCALL##
##AST_ARGUMENT##
##AST_CONSTANT##
movq $.LC9, %rdx
movq %rdx, %rdi
##AST_ARGUMENT##
##AST_CONSTANT##
movq $.LC10, %rdx
movq %rdx, %rsi
##AST_ARGUMENT##
##AST_EXPRESSION##
##AST_CONSTANT##
movq $42, %rdx
pushq %rdx
##AST_EXPRESSION##
##AST_CONSTANT##
movq $4, %rdx
pushq %rdx
##AST_EXPRESSION##
##AST_VARREF##
movq -4(%rbp), %rdx
pushq %rdx
##AST_CONSTANT##
movq $2, %rdx
popq %rcx
addq %rcx, %rdx
popq %rcx
addq %rcx, %rdx
popq %rcx
addq %rcx, %rdx
movq %rdx, %rdx
movl $0, %eax
call printf
##AST_FUNCALL##
##AST_ARGUMENT##
##AST_CONSTANT##
movq $.LC11, %rdx
movq %rdx, %rdi
movl $0, %eax
call puts
##AST_FUNCALL##
##AST_ARGUMENT##
##AST_CONSTANT##
movq $.LC12, %rdx
movq %rdx, %rdi
movl $0, %eax
call puts
##AST_FUNCALL##
##AST_ARGUMENT##
##AST_CONSTANT##
movq $.LC13, %rdx
movq %rdx, %rdi
movl $0, %eax
call puts
##AST_FUNCALL##
##AST_ARGUMENT##
##AST_CONSTANT##
movq $.LC14, %rdx
movq %rdx, %rdi
movl $0, %eax
call puts
##AST_FUNCALL##
##AST_ARGUMENT##
##AST_CONSTANT##
movq $.LC15, %rdx
movq %rdx, %rdi
movl $0, %eax
call puts
movl $0, %eax
leave
ret
##AST_FUNCTION##
##AST_DECL##
.comm one, 4, 4
##AST_DECL##
.comm two, 4, 4
##AST_DECL##
.comm three, 4, 4
##AST_DECL##
.comm four, 4, 4
##AST_DECL##
.comm hey, 4, 4
##AST_DECL##
.comm look, 4, 4
##AST_DECL##
.comm variables, 4, 4
.globl localTest
.type localTest,@function
localTest:
pushq %rbp
movq %rsp, %rbp
subq $64, %rsp
movl $0, %eax
leave
ret