-
Notifications
You must be signed in to change notification settings - Fork 0
/
152_Maracine_ConstantinRazvan_1.s
511 lines (395 loc) · 9.18 KB
/
152_Maracine_ConstantinRazvan_1.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
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
.data
# @@ Input
n: .space 4
m: .space 4
p: .space 4
k: .space 4
opr: .space 4
str: .space 50
# 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 2500
# temp variables to read coordinates
x: .space 4
y: .space 4
xor: .space 4
c: .space 4
num1: .space 4
num2: .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
# @@ Loops
i: .space 4
j: .space 4
d: .space 4
gen: .space 4
bit_id: .space 4
mod: .space 4
# @@ Formats / Strings
scanf_format: .asciz "%ld"
scanf_format_str: .asciz "%s"
printf_hex: .asciz "0x"
printf_elm_hex: .asciz "%02X"
printf_elm: .asciz "%c"
printf_nl: .asciz "\n"
dbg_int: .asciz "Have int: %ld\n"
dbg_char: .asciz "Have char: %c\n"
dbg_str: .asciz "Have str: %s\n"
.text
.global main
main:
# @@ Read the input
# n - scanf("%ld", &n);
scanf_n:
pushl $n
pushl $scanf_format
call scanf
popl %ebx
popl %ebx
# for the border
incl n
# m - scanf("%ld", &m);
scanf_m:
pushl $m
pushl $scanf_format
call scanf
popl %ebx
popl %ebx
# for the border
incl m
# p - scanf("%ld", &p);
scanf_p:
pushl $p
pushl $scanf_format
call scanf
popl %ebx
popl %ebx
# pos - scanf;
movl $0, i
scanf_pos:
# while i < p
movl i, %eax
cmpl %eax, p
jle scanf_k
# scanf("%ld", &x)
pushl $x
pushl $scanf_format
call scanf
popl %ebx
popl %ebx
# scanf("%ld", &y)
pushl $y
pushl $scanf_format
call scanf
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 + y
lea matrix, %edi
movl $1, (%edi, %eax, 4)
# i++
incl i
jmp scanf_pos
# k - scanf("%ld", &k);
scanf_k:
pushl $k
pushl $scanf_format
call scanf
popl %ebx
popl %ebx
# opr - scanf("%ld", &opr);
scanf_opr:
pushl $opr
pushl $scanf_format
call scanf
popl %ebx
popl %ebx
# str - scanf("%s", &str);
scanf_str:
pushl $str
pushl $scanf_format_str
call scanf
popl %ebx
popl %ebx
# mod is (n + 1) * (m + 1) after our increment
# so actually it is (n + 2) * (m + 2)
movl $0, %edx
movl n, %eax
incl %eax
movl m, %ebx
incl %ebx
mull %ebx
movl %eax, mod
# @@ Main logic
movl $0, gen
while_gen:
# while (gen < k)
movl gen, %eax
cmpl %eax, k
jle print_ans
# 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 + 1) + 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 + 1) + (j + dj[d])
movl i, %eax
addl x, %eax
movl $0, %edx
mull m
addl i, %eax
addl x, %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 + 1) + 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 + 1) + 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_ans:
# if opr == 1 then make j = 3
movl $3, j
movl $1, %eax
cmp opr, %eax
je conversion
# else make j = 0 and print("0x")
movl $0, j
# printf("0x");
pushl $printf_hex
call printf
popl %ebx
# 0 = encoding / 1 = decoding
conversion:
# while (s[j] != \0)
lea str, %edi
movl j, %ecx
movl $0, %eax
movzbl (%edi, %ecx, 1), %eax
movl %eax, num1
movl $0, %ebx
cmp %eax, %ebx
je print_endl
# num1 = s[j]
# so if opr == 0 we don't need to change num1
movl $0, %ecx
cmp opr, %ecx
je get_num2
# else (opr == 1)
lea str, %edi
movl j, %ecx
decl %ecx
movzbl (%edi, %ecx, 1), %eax
movl %eax, num1
subl $48, num1 # convert 0-9 chars into digit
# if it is a upper case letter we need to substract 7
movl $9, %eax
cmp num1, %eax
jge second_char # this means that in %eax there is digit
subl $7, num1
second_char:
movl num1, %eax
shl $4, %eax # shift 4 times to make space for the second letter
movl %eax, num1
lea str, %edi
movl j, %ecx
movzbl (%edi, %ecx, 1), %ebx
subl $48, %ebx # convert 0-9 chars into digit
movl $9, %ecx
cmp %ebx, %ecx
jge get_num2 # in ebx ther is a digit
subl $7, %ebx
get_num2:
addl %ebx, num1 # append the second char to the first
movl $0, num2
# for (int i = 7; i >= 0; --i) {
movl $7, i
for_i_bit:
movl $0, %ecx
cmp i, %ecx
jg print_the_conversion
# num2 |= (1 << i) * matrix[bit_id];
lea matrix, %edi
movl bit_id, %ecx
movl (%edi, %ecx, 4), %eax # = matrix[bit_id]
# ebx = (1 << i)
movl $1, %ebx
movl i, %ecx
shl %ecx, %ebx
movl $0, %edx
mull %ebx
movl num2, %ebx
orl %eax, %ebx
movl %ebx, num2
incl bit_id
movl mod, %ebx
cmp bit_id, %ebx
jg incr_for_i_bit
movl $0, bit_id
incr_for_i_bit:
decl i
jmp for_i_bit
print_the_conversion:
movl num1, %eax
movl num2, %ebx
xorl %ebx, %eax # res
movl %eax, xor
# if opr == 1 print a char
movl $0, %ecx
cmp opr, %ecx
je print_a_hex_val
# print a char
pushl xor
pushl $printf_elm
call printf
popl %ebx
popl %ebx
# flush
pushl $0
call fflush
popl %ebx
jmp incr
# else print a hex
print_a_hex_val:
pushl xor
pushl $printf_elm_hex
call printf
popl %ebx
popl %ebx
# flush
pushl $0
call fflush
popl %ebx
incr:
incl j
movl opr, %eax
addl %eax, j
jmp conversion
# print a new line
print_endl:
pushl $printf_nl
call printf
popl %ebx
# flush
pushl $0
call fflush
popl %ebx
# (exit)
movl $1, %eax
xorl %ebx, %ebx
int $0x80