-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path141_Craciun_FlorinCristian_1.s
414 lines (352 loc) · 8.61 KB
/
141_Craciun_FlorinCristian_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
.data
N: .space 4
i: .space 4
a: .space 4
b: .space 4
k: .space 4
nr: .space 4
nr_cerinta: .space 4
legaturi: .space 400
m1: .space 4
m2: .space 4
mres: .space 4
citire: .asciz "%d"
afisare: .asciz "%d "
rezult: .asciz "%d"
endl: .asciz "\n"
test: .asciz "%d %d %d\n"
trash: .space 4
.text
matrix_mult:
pushl %ebp
movl %esp, %ebp
movl 8(%ebp), %edi
movl 12(%ebp), %esi
pushl %ebx
pushl %edi
pushl %esi
xorl %ecx, %ecx
loopk:
cmp 20(%ebp), %ecx
je final
xorl %ebx, %ebx
loopi:
cmp 20(%ebp), %ebx
je gatai
xorl %edx, %edx
loopj:
cmp 20(%ebp), %edx
je gataj
movl %ecx, %eax
pushl %edx
xorl %edx, %edx
mull 20(%ebp)
popl %edx
addl %edx, %eax
pushl %edx
pushl %ecx
movl (%edi, %eax, 4), %ecx
movl %edx, %eax
xorl %edx, %edx
mull 20(%ebp)
addl %ebx, %eax
movl (%esi, %eax, 4), %edx
movl %edx, %eax
xorl %edx, %edx
mull %ecx
movl %eax, %edx
popl %ecx
movl 16(%ebp), %edi
pushl %edx
movl %ecx, %eax
mull 20(%ebp)
addl %ebx, %eax
popl %edx
addl %edx, (%edi, %eax, 4)
movl 8(%ebp), %edi
popl %edx
incl %edx
jmp loopj
gataj:
incl %ebx
jmp loopi
gatai:
incl %ecx
jmp loopk
final:
popl %esi
popl %edi
popl %ebx
popl %ebp
ret
.globl main
main:
pushl $nr_cerinta
pushl $citire
call scanf
popl trash
popl trash
movl nr_cerinta, %ecx
cmp $3, %ecx
jne et_exit
pushl $N
pushl $citire
call scanf
popl trash
popl trash
alocare_matrice:
aloc_m1:
pushl $0
pushl $0
call calloc
addl $8, %esp
pushl %eax
movl N, %eax
xorl %edx, %edx
mull N # N*N elemente
xorl %edx, %edx
movl $4, %ebx
mull %ebx # numarul de Bytes de alocat pentru matrice N*N*4B
movl %eax, %ecx # length va fi N * N * 4, unde N*N este nr de elemente in matrice si 4 este lungimea unui singur element de tip long
movl $192, %eax # sys call-ul pentru mmap2
xorl %ebx, %ebx # addr este null astfel incat kernel-ul sa aleaga adresa
movl $3, %edx # am folosit PROT_READ si PROT_WRITE, care au valoarea 1, respectiv 2 si le-am adunat ca sa le pot pune in edx
movl $0x22, %esi
# valoarea 22 pentru este pentru flag-ul MAP_SHARED si flag-ul MAP_ANONYMOUS, am folosit aceste flag-uri ca sa nu creeze un fisier si ca zona de memorie alocata sa fie vizibila celorlalte apeluri
popl %edi
pushl %ebp
xorl %ebp, %ebp # offset-ul este 0 ca sa scrie de la inceputul fisierului
int $0x80
popl %ebp
# pushl %eax
movl %eax, m1
aloc_m2:
pushl $0
pushl $0
call calloc
addl $8, %esp
pushl %eax
movl N, %eax
xorl %edx, %edx
mull N # N*N elemente
xorl %edx, %edx
movl $4, %ebx
mull %ebx # numarul de Bytes de alocat pentru matrice N*N*4B
movl %eax, %ecx # length va fi N * N * 4, unde N*N este nr de elemente in matrice si 4 este lungimea unui singur element de tip long
movl $192, %eax # sys call-ul pentru mmap2
xorl %ebx, %ebx # addr este null astfel incat kernel-ul sa aleaga adresa
movl $3, %edx # am folosit PROT_READ si PROT_WRITE, care au valoarea 1, respectiv 2 si le-am adunat ca sa le pot pune in edx
movl $0x22, %esi
# valoarea 22 pentru este pentru flag-ul MAP_SHARED si flag-ul MAP_ANONYMOUS, am folosit aceste flag-uri ca sa nu creeze un fisier si ca zona de memorie alocata sa fie vizibila celorlalte apeluri
popl %edi
pushl %ebp
xorl %ebp, %ebp # offset-ul este 0 ca sa scrie de la inceputul fisierului
int $0x80
popl %ebp
# pushl %eax
movl %eax, m2
aloc_mres:
pushl $0 # size 0
pushl $0 # 0 elemente
call calloc # aloc un spatiu de 0 bytes * 0 elemente si folosesc adresa pentru parametrul fd din malloc
addl $8, %esp
pushl %eax
movl N, %eax
xorl %edx, %edx
mull N # N*N elemente
xorl %edx, %edx
movl $4, %ebx
mull %ebx # numarul de Bytes de alocat pentru matrice N*N*4B
movl %eax, %ecx # length va fi N * N * 4, unde N*N este nr de elemente in matrice si 4 este lungimea unui singur element de tip long
movl $192, %eax # sys call-ul pentru mmap2
xorl %ebx, %ebx # addr este null astfel incat kernel-ul sa aleaga adresa
movl $3, %edx # am folosit PROT_READ si PROT_WRITE, care au valoarea 1, respectiv 2 si le-am adunat ca sa le pot pune in edx
movl $0x22, %esi
# valoarea 22 pentru este pentru flag-ul MAP_SHARED si flag-ul MAP_ANONYMOUS, am folosit aceste flag-uri ca sa nu creeze un fisier si ca zona de memorie alocata sa fie vizibila celorlalte apeluri
popl %edi
pushl %ebp
xorl %ebp, %ebp # offset-ul este 0 ca sa scrie de la inceputul fisierului
int $0x80
popl %ebp
# pushl %eax
movl %eax, mres
# pushl mres
# pushl m2
# pushl m1
# pushl $test
# call printf
# addl $16, %esp
# pushl $0
# call fflush
# addl $4, %esp
xorl %ecx, %ecx
lea legaturi, %esi
citire_legaturi:
cmp N, %ecx
je gata_citire_legaturi
pushl %ecx
pushl $nr
pushl $citire
call scanf
popl trash
popl trash
popl %ecx
movl nr, %ebx
movl %ebx, (%esi, %ecx, 4)
incl %ecx
jmp citire_legaturi
gata_citire_legaturi:
xorl %ecx, %ecx
movl m1, %edi
citire_matrice:
cmp N, %ecx
je continuare
movl N, %eax
xorl %edx, %edx
mull %ecx # i * N pentru matrice
movl %eax, i
lea legaturi, %esi
movl (%esi, %ecx, 4), %ebx
pushl %ecx
xorl %ecx, %ecx
movl m2, %esi
initializare_linie:
cmp N, %ecx
je citire_noduri
pushl %ecx
addl i, %ecx
movl $0, (%edi, %ecx, 4)
movl $0, (%esi, %ecx, 4)
popl %ecx
incl %ecx
jmp initializare_linie
citire_noduri:
cmp $0, %ebx
je gata
pushl $nr
pushl $citire
call scanf
popl trash
popl trash
movl nr, %ecx
addl i, %ecx
movl $1, (%edi, %ecx, 4)
movl $1, (%esi, %ecx, 4)
decl %ebx
jmp citire_noduri
gata:
popl %ecx
incl %ecx
jmp citire_matrice
continuare:
pushl $k
pushl $citire
call scanf
popl trash
popl trash
pushl $a
pushl $citire
call scanf
popl trash
popl trash
pushl $b
pushl $citire
call scanf
popl trash
popl trash
movl $1, %ebx
inmultire:
cmp k, %ebx
je rezultat
cmp $1, %ebx
jg reset_mat
apelare:
pushl N
pushl mres
pushl m2
pushl m1
call matrix_mult
popl trash
popl trash
popl trash
popl trash
jmp pas_urmator
reset_mat:
movl m1, %edi
movl mres, %esi
movl N, %eax
xorl %edx, %edx
mull N
xorl %edx, %edx
movl $4, %ecx
mull %ecx
xorl %ecx, %ecx
resetare_matrice:
cmp %eax, %ecx
je apelare
movl (%esi, %ecx, 1), %edx
movl %edx, (%edi, %ecx, 1)
movl $0, (%esi, %ecx, 1)
addl $4, %ecx
jmp resetare_matrice
pas_urmator:
incl %ebx
jmp inmultire
rezultat:
movl a, %eax
xorl %edx, %edx
mull N
movl b, %edx
addl %edx, %eax
movl mres, %edi
movl (%edi, %eax, 4), %ecx
pushl %ecx
pushl $rezult
call printf
popl trash
popl trash
pushl $0
call fflush
popl trash
jmp et_exit
afisare_matrice:
xorl %ecx, %ecx
mov m1, %edi
loop:
cmp N, %ecx
je et_exit
movl N, %eax
mull %ecx # i * N pentru matrice
movl %eax, i
movl (%edi, %ecx, 4), %ebx
pushl %ecx
xorl %ecx, %ecx
afisare_linie:
cmp N, %ecx
je linie_noua
pushl %ecx
addl i, %ecx
movl (%edi, %ecx, 4), %eax
movl %eax, nr
pushl nr
pushl $afisare
call printf
popl trash
popl trash
pushl $0
call fflush
popl trash
popl %ecx
incl %ecx
jmp afisare_linie
linie_noua:
pushl $endl
call printf
popl trash
popl %ecx
incl %ecx
jmp loop
et_exit:
movl $1, %eax
xorl %ebx, %ebx
int $0x80