-
Notifications
You must be signed in to change notification settings - Fork 0
/
comb.s
120 lines (86 loc) · 2.27 KB
/
comb.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
.section .data
gap_value: .int 10
shrink_factor: .double 1.3
fpu_control: .word 0
.section .text
// TODO: Adicionar teste para parar se não trocou nenhum elemento
bubble_sort:
pushl %ebp
movl %esp, %ebp
movl 8(%ebp), %edx # Tamanho do vetor
movl 12(%ebp), %esi # Endereço do vetor
xorl %ebx, %ebx
// Enquanto %ebx < %edx
bubble_outer:
movl %edx, %ecx
bubble_inner:
// Enquanto %ecx > %ebx
decl %ecx
cmpl %ebx, %ecx
jle bubble_outer_continue
// Comparar elemento j com elemento j - 1
movl -4(%esi, %ecx, 4), %eax
cmpl (%esi, %ecx, 4), %eax
jle bubble_inner
// Trocar elementos
xchgl (%esi, %ecx, 4), %eax
movl %eax, -4(%esi, %ecx, 4)
jmp bubble_inner
bubble_outer_continue:
incl %ebx
cmpl %edx, %ebx
jl bubble_outer
bubble_end:
popl %ebp
ret
comb_sort:
pushl %ebp
movl %esp, %ebp
movl 8(%ebp), %edx # Tamanho do vetor
movl 12(%ebp), %esi # Endereço do vetor
movl %edx, gap_value
call update_gap
// Enquanto gap_value > 0
comb_outer:
movl gap_value, %ecx
cmpl $0, %ecx
jle comb_end
xorl %ebx, %ebx
// Enquanto %ecx < %edx
comb_inner:
// Comparar elemento i com elemento j
movl (%esi, %ecx, 4), %eax
cmpl (%esi, %ebx, 4), %eax
jge comb_inner_continue
// Trocar elementos
xchgl (%esi, %ebx, 4), %eax
movl %eax, (%esi, %ecx, 4)
comb_inner_continue:
incl %ecx
incl %ebx
cmpl %edx, %ecx
jl comb_inner
call update_gap
jmp comb_outer
comb_end:
popl %ebp
ret
update_gap:
// Fator de encolhimento
movl $shrink_factor, %ebx
fldl (%ebx)
// Valor atual
movl $gap_value, %eax
filds (%eax)
// Divisão
fdiv %st(1), %st(0)
// Atualizar modo de arredondamento
// Arredondar pra baixo
movl $fpu_control, %eax
fstcw (%eax)
orw $0xfdf, fpu_control
fldcw (%eax)
// Atualiza valor
movl $gap_value, %eax
fistpl (%eax)
ret