-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path152_Maracine_ConstantinRazvan_2.s
436 lines (330 loc) · 7.09 KB
/
152_Maracine_ConstantinRazvan_2.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
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
.data
# @@ Input
n: .space 4
m: .space 4
d: .space 4
p: .space 4
k: .space 4
# The matrix can have at most 4 * 18 * 18 elements
# but we will also add a border to each side
# we will round up to 4 * 25 * 25 just to be safe
matrix: .space 2500
matrix_aux: .space 1600
# temp variables to read coordinates
x: .space 4
y: .space 4
# N NE E SE S SW W NW
di: .long -1, -1, 0, 1, 1, 1, 0, -1
dj: .long 0, 1, 1, 1, 0, -1, -1, -1;
alive_ngb: .space 4
# file pointer
fp: .long 0
fp2: .long 0
# loops
i: .space 4
j: .space 4
gen: .space 4
# formats
fscanf_format: .asciz "%ld"
print_elm: .asciz "%ld "
print_nl: .asciz "\n"
# files
in_file: .asciz "in.txt"
out_file: .asciz "out.txt"
w_mode: .asciz "w"
r_mode: .asciz "r"
.text
.global main
main:
open_input:
pushl $r_mode
pushl $in_file
call fopen
popl %ebx
popl %ebx
movl %eax, fp
open_output:
pushl $w_mode
pushl $out_file
call fopen
popl %ebx
popl %ebx
movl %eax, fp2
# n - fscanf(file_pointer, "%ld", &n);
fscanf_n:
pushl $n
pushl $fscanf_format
pushl fp
call fscanf
popl %ebx
popl %ebx
popl %ebx
# for the border
incl n
# m - fscanf(file_pointer, "%ld", &m);
fscanf_m:
pushl $m
pushl $fscanf_format
pushl fp
call fscanf
popl %ebx
popl %ebx
popl %ebx
# for the border
incl m
# p - fscanf(file_pointer, "%ld", &p);
fscanf_p:
pushl $p
pushl $fscanf_format
pushl fp
call fscanf
popl %ebx
popl %ebx
popl %ebx
# pos - fscanf;
movl $0, i
fscanf_pos:
# while i < p
movl i, %eax
cmpl %eax, p
jle fscanf_k
# x - fscanf(file_pointer, "%ld", &x);
fscanf_x:
pushl $x
pushl $fscanf_format
pushl fp
call fscanf
popl %ebx
popl %ebx
popl %ebx
# y - fscanf(file_pointer, "%ld", &y);
fscanf_y:
pushl $y
pushl $fscanf_format
pushl fp
call fscanf
popl %ebx
popl %ebx
popl %ebx
# to compensate for borders
incl y
incl x
# matrix[x][y] = 1
movl x, %eax
movl $0, %edx
mull m
addl x, %eax
addl y, %eax
# now eax = x * (m + 1) + y
lea matrix, %edi
movl $1, (%edi, %eax, 4)
# i++
incl i
jmp fscanf_pos
# k - fscanf(file_pointer, "%ld", &k);
fscanf_k:
pushl $k
pushl $fscanf_format
pushl fp
call fscanf
popl %ebx
popl %ebx
popl %ebx
# Main
movl $0, gen
while_gen:
# while (gen < k)
movl gen, %eax
cmpl %eax, k
jle print_matrix
# copy curr matrix to aux matrix
movl $0, i
# while (i <= n)
while_cp_i:
movl i, %eax
cmpl %eax, n
jl continue_cp_exit
movl $0, j
# while (j <= m)
while_cp_j:
movl j, %eax
cmpl %eax, m
jl continue_cp
# idx(eax) = i * m + j
movl i, %eax
movl $0, %edx
mull m
addl i, %eax
addl j, %eax
# curr(ebx) = v[idx]
lea matrix, %edi
movl (%edi, %eax, 4), %ebx
# v_aux[idx] = curr
lea matrix_aux, %edi
movl %ebx, (%edi, %eax, 4)
# j++
incl j
jmp while_cp_j
continue_cp:
# i++
incl i
jmp while_cp_i
continue_cp_exit:
movl $1, i
# while (i < n)
while_gen_i:
movl i, %eax
cmpl %eax, n
jle continue_gen_exit
movl $1, j
# while (j < m)
while_gen_j:
movl j, %eax
cmpl %eax, m
jle continue_gen
movl $0, alive_ngb
# while(d < 8)
movl $0, d
while_gen_d:
movl $8, %eax
cmpl d, %eax
jle continue_gen_d
movl d, %eax
# x = di[d]
lea di, %edi
movl (%edi, %eax, 4), %ebx
movl %ebx, x
# y = dj[d]
lea dj, %edi
movl (%edi, %eax, 4), %ebx
movl %ebx, y
# idx(eax) = (i + di[d]) * m + (j + dj[d])
movl i, %eax
addl x, %eax
movl $0, %edx
mull m
addl x, %eax
addl i, %eax
addl j, %eax
addl y, %eax
# load the aux matrix
lea matrix_aux, %edi
# curr(ebx) = v_aux[idx]
movl (%edi, %eax, 4), %ebx
addl %ebx, alive_ngb
# d++
incl d
jmp while_gen_d
continue_gen_d:
# now we got the alive neighbouring cells
# we just also need to keep track of the current cell state for future checks
lea matrix_aux, %edi
# idx(eax) = i * m + j
movl i, %eax
movl $0, %edx
mull m
addl i, %eax
addl j, %eax
# curr(ebx) = v_aux[idx]
movl (%edi, %eax, 4), %ebx
# now let's make changes in our matrix
# load the matrix
lea matrix, %edi
# idx(eax) = i * m + j
movl i, %eax
movl $0, %edx
mull m
addl i, %eax
addl j, %eax
# matrix[i][j] = 0
movl $0, (%edi, %eax, 4)
movl alive_ngb, %ecx
# if (alive_ngb(ecx) == 3) then make 1
cmpl $3, %ecx
jne alive_ngb_3_false
movl $1, (%edi, %eax, 4)
alive_ngb_3_false:
# if (alive_ngb(ecx) == 2) then make as prev
cmpl $2, %ecx
jne alive_ngb_2_false
movl %ebx, (%edi, %eax, 4)
alive_ngb_2_false:
# j++
incl j
jmp while_gen_j
continue_gen:
# i++
incl i
jge while_gen_i
continue_gen_exit:
incl gen
jmp while_gen
# @@ Answer
print_matrix:
movl $1, i
# while (i < n)
while_i:
movl i, %eax
cmp %eax, n
jle continue_print
movl $1, j
# while (j < m)
while_j:
movl j, %eax
cmp %eax, m
jle continue_print_j
# eax = i * m + j
movl i, %eax
movl $0, %edx
mull m
addl i, %eax
addl j, %eax
# the cell at [i][j]
lea matrix, %edi
movl (%edi, %eax, 4), %ecx
# print cell
# fprintf(fp, format, var)
pushl %ecx
pushl $print_elm
pushl fp2
call fprintf
popl %ebx
popl %ebx
popl %ebx
# flush the output
pushl $0
call fflush
popl %ebx
incl j
jmp while_j
continue_print_j:
#print a new line
# fprintf(fp, format)
pushl $print_nl
pushl fp2
call fprintf
popl %ebx
popl %ebx
# flush the output
pushl $0
call fflush
popl %ebx
incl i
jmp while_i
continue_print:
# flush the file
pushl fp2
pushl fflush
popl %ebx
fclose_input:
pushl fp
call fclose
popl %ebx
fclose_output:
pushl fp2
call fclose
popl %ebx
# (exit)
movl $1, %eax
xorl %ebx, %ebx
int $0x80