-
Notifications
You must be signed in to change notification settings - Fork 0
/
string.asm
285 lines (240 loc) · 3.44 KB
/
string.asm
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
; vim: set syntax=z80:
#local
#data _DATA
sp_store:
ds 2
dest_store:
ds 2
src_store:
ds 2
#code _CODE
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; void *memset(void *s, int c, size_t n) ;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
_memset::
#local
; store initial sp
ld (sp_store), sp
; critical section
di
; hl = $s
; de = $c
; bc = $n
pop af
pop hl
pop de
pop bc
; rest of function assumes even number
bit 0, c
jr z, odd_skip
ld (hl), e
inc hl
dec bc
odd_skip:
; handle 0 case
xor a
cp c
jr nz, zero_skip
cp b
jr z, end
zero_skip:
; sp = $s + n
add hl, bc
ld sp, hl
; de contains word to write
ld d, e
; store $n/32*32 for main loop counter
ld a, 11100000b
and c
ld l, a
ld h, b
push hl
; bc = $n%32/2
ld a, 00011111b
and c
rra
ld c, a
xor a
ld b, a
; iy = write_loop + 16 - $n%32/2
ld hl, write_loop+16
sbc hl, bc
ex de, hl
ld iyl, e
ld iyh, d
ex de, hl
; restore hl as main counter
pop hl
; set bc as decrement
ld bc, -32
; goto (iy)
jp (iy)
write_loop:
.rept 16
push de
.endm
; decrement and loop check
add hl, bc
jp c, write_loop
end:
; restore stack
ld sp, (sp_store)
; end critical section
ei
; return s
pop af
pop hl
push hl
push af
ret
#endlocal
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; void *memmove(void *dest, const void *src, size_t n) ;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
_memmove::
#local
; de = $dest
; hl = $src
; bc = $n
pop af
pop de
pop hl
pop bc
push bc
push hl
push de
push af
push hl
xor a
sbc hl, de
pop hl
jr nc, memcpy_asc_fastcall
jp memcpy_des_fastcall
#endlocal
; Copies 32 bytes quickly
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; void *memcpy32(void *dest, const void *src) ;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
#code _CODE
#local
_memcpy32::
pop af
pop de
pop hl
push hl
push de
push af
memcpy32_fastcall::
; return value
push de
.rept 32
ldi
.endm
pop hl
ret
#endlocal
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; void *memcpy(void *dest, const void *src, size_t n) ;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
#code _CODE
#local
_memcpy::
memcpy_asc::
pop af
pop de
pop hl
pop bc
push bc
push hl
push de
push af
memcpy_fastcall::
memcpy_asc_fastcall::
; store return value
push de
; iy = loop + (256-2*n)%256
xor a
sub a, c
add a, a
ld iyh, loop >> 8
ld iyl, a
ld a, 0
; if (256-2*n)%256 == 0, jump to end first
jp z, ldi_skip
jp (iy)
.align 256
loop:
; perform copies
.rept 128
ldi
.endm
ldi_skip:
; loop check
cp b
jp nz, loop
cp c
jp nz, loop
; return $dest
pop hl
ret
#endlocal
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; void *memcpy_des(void *dest, const void *src, size_t n) ;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
_memcpy_des::
; de = $dest
; hl = $src
; bc = $n
pop af
pop de
pop hl
pop bc
push bc
push hl
push de
push af
memcpy_des_fastcall::
#local
; add $n-1 to hl and de
add hl, bc
dec hl
ex de, hl
add hl, bc
dec hl
ex de, hl
; store n
push bc
; iy = write_loop + 32*2 - (n%32)*2
push hl
ld hl, write_loop+64
ld a, 00011111b
and c
add a, a
ld c, a
xor a
ld b, a
sbc hl, bc
ex de, hl
ld iy, de
ex de, hl
pop hl
; retrieve n
pop bc
; goto (iy)
jp (iy)
write_loop:
.rept 32
ldd
.endm
; loop check
cp c
jr nz, write_loop
cp b
jr nz, write_loop
end:
; return s
inc de
ex de, hl
ret
#endlocal
#endlocal