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
|
{
This file is part of the Free Pascal run time library.
Copyright (c) 2000 by Jonas Maebe, member of the
Free Pascal development team
Processor dependent part of strings.pp, that can be shared with
sysutils unit.
See the file COPYING.FPC, included in this distribution,
for details about the copyright.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
**********************************************************************}
{ Note: the implementation of these routines is for BIG ENDIAN only!! (JM) }
{$ifndef FPC_UNIT_HAS_STRCOPY}
{$define FPC_UNIT_HAS_STRCOPY}
function strcopy(dest,source : pchar) : pchar;assembler;
{ in: dest in r3, source in r4 }
{ out: result (dest) in r3 }
asm
{ in: dest in r3, source in r4 }
{ out: result (dest) in r3 }
{ load the begin of the source string in the data cache }
dcbt 0,r4
{ get # of misaligned bytes }
rlwinm. r10,r4,0,31-2+1,31
subfic r10,r10,4
mtctr r10
{ since we have to return dest intact, use another register for }
{ dest in the copy loop }
subi r9,r3,1
subi r4,r4,1
beq .LStrCopyAligned
.LStrCopyAlignLoop:
{ load next byte }
lbzu r0,1(r4)
{ end of string? }
cmplwi cr0,r0,0
{ store byte }
stbu r0,1(r9)
{ loop if misaligned bytes left and not end of string found }
bdnzf cr0*4+eq,.LStrCopyAlignLoop
beq .LStrCopyDone
.LStrCopyAligned:
subi r4,r4,3
subi r9,r9,3
{ setup magic constants }
{$if defined(macos) or defined(aix)}
{ load constant 0xfefefeff }
lis r8,0xfefe
ori r8,r8,0xfeff
{ load constant 0x80808080}
lis r7,0x8080
ori r7,r7,0x8080
{$else}
lis r8,(0xfefefeff)@ha
addi r8,r8,(0xfefefeff)@l
lis r7,(0x80808080)@ha
addi r7,r7,(0x80808080)@l
{$endif}
{ load first 4 bytes }
lwzu r0,4(r4)
.LStrCopyAlignedLoop:
{ test for zero byte }
add r10,r0,r8
andc r10,r10,r0
and. r10,r10,r7
bne .LStrCopyEndFound
stwu r0,4(r9)
{ load next 4 bytes (do it here so the load can begin while the }
{ the branch is processed) }
lwzu r0,4(r4)
b .LStrCopyAlignedLoop
.LStrCopyEndFound:
{ adjust for possible $01 bytes coming before the terminating 0 byte }
rlwinm r8,r0,7,0,31
andc r10,r10,r8
{ result is either 0, 8, 16 or 24 depending on which byte is zero }
cntlzw r10,r10
addi r9,r9,3
.LStrCopyWrapUpLoop:
subic. r10,r10,8
rlwinm r0,r0,8,0,31
stbu r0,1(r9)
bge .LStrCopyWrapUpLoop
.LStrCopyDone:
{ r3 still contains dest here }
end;
{$endif FPC_UNIT_HAS_STRCOPY}
{$ifndef FPC_UNIT_HAS_STRECOPY}
{$define FPC_UNIT_HAS_STRECOPY}
function strecopy(dest,source : pchar) : pchar;assembler;
{ in: dest in r3, source in r4 }
{ out: result (end of new dest) in r3 }
asm
{ load the begin of the source string in the data cache }
dcbt 0,r4
{ get # of misaligned bytes }
rlwinm. r10,r4,0,31-2+1,31
subfic r10,r10,4
mtctr r10
subi r3,r3,1
subi r4,r4,1
beq .LStrECopyAligned
.LStrECopyAlignLoop:
{ load next byte }
lbzu r0,1(r4)
{ end of string? }
cmplwi cr0,r0,0
{ store byte }
stbu r0,1(r3)
{ loop if misaligned bytes left and not end of string found }
bdnzf cr0*4+eq,.LStrECopyAlignLoop
beq .LStrECopyDone
.LStrECopyAligned:
subi r4,r4,3
subi r3,r3,3
{ setup magic constants }
{$if defined(macos) or defined(aix)}
{ load constant 0xfefefeff }
lis r8,0xfefe
ori r8,r8,0xfeff
{ load constant 0x80808080}
lis r7,0x8080
ori r7,r7,0x8080
{$else}
lis r8,(0xfefefeff)@ha
addi r8,r8,(0xfefefeff)@l
lis r7,(0x80808080)@ha
addi r7,r7,(0x80808080)@l
{$endif}
.LStrECopyAlignedLoop:
{ load next 4 bytes }
lwzu r0,4(r4)
{ test for zero byte }
add r10,r0,r8
andc r10,r10,r0
and. r10,r10,r7
bne .LStrECopyEndFound
stwu r0,4(r3)
b .LStrECopyAlignedLoop
.LStrECopyEndFound:
{ adjust for possible $01 bytes coming before the terminating 0 byte }
rlwinm r8,r0,7,0,31
andc r10,r10,r8
{ result is either 0, 8, 16 or 24 depending on which byte is zero }
cntlzw r10,r10
addi r3,r3,3
.LStrECopyWrapUpLoop:
subic. r10,r10,8
rlwinm r0,r0,8,0,31
stbu r0,1(r3)
bge .LStrECopyWrapUpLoop
.LStrECopyDone:
{ r3 contains new dest here }
end;
{$endif FPC_UNIT_HAS_STRECOPY}
{$ifndef FPC_UNIT_HAS_STRLCOPY}
{$define FPC_UNIT_HAS_STRLCOPY}
function strlcopy(dest,source : pchar;maxlen : longint) : pchar;assembler;
{ in: dest in r3, source in r4, maxlen in r5 }
{ out: result (dest) in r3 }
asm
{ load the begin of the source string in the data cache }
dcbt 0,r4
mtctr r5
subi r4,r4,1
subi r10,r3,1
.LStrlCopyLoop:
lbzu r0,1(r4)
cmplwi r0,0
stbu r0,1(r10)
bdnzf cr0*4+eq, .LStrlCopyLoop
{ if we stopped because we copied a #0, we're done }
beq .LStrlCopyDone
{ otherwise add the #0 }
li r0,0
stb r0,1(r10)
.LStrlCopyDone:
end;
{$endif FPC_UNIT_HAS_STRLCOPY}
{$ifndef FPC_UNIT_HAS_STREND}
{$define FPC_UNIT_HAS_STREND}
function strend(p : pchar) : pchar;assembler;
{ in: p in r3 }
{ out: result (end of p) in r3 }
asm
{ load the begin of the string in the data cache }
dcbt 0,r3
{ empty/invalid string? }
cmplwi r3,0
{ if yes, do nothing }
beq .LStrEndDone
subi r3,r3,1
.LStrEndLoop:
lbzu r0,1(r3)
cmplwi r0,0
bne .LStrEndLoop
.LStrEndDone:
end;
{$endif FPC_UNIT_HAS_STREND}
{$ifndef FPC_UNIT_HAS_STRCOMP}
{$define FPC_UNIT_HAS_STRCOMP}
function strcomp(str1,str2 : pchar) : longint;assembler;
{ in: str1 in r3, str2 in r4 }
{ out: result (= 0 if strings equal, < 0 if str1 < str2, > 0 if str1 > str2 }
{ in r3 }
asm
{ use r0 instead of r3 for str1 since r3 contains result }
subi r9,r3,1
subi r4,r4,1
.LStrCompLoop:
{ load next chars }
lbzu r0,1(r9)
{ check if one is zero }
cmplwi cr1,r0,0
lbzu r10,1(r4)
{ calculate difference }
sub. r3,r0,r10
{ if chars not equal, we're ready }
bne .LStrCompDone
{ if they are equal and one is zero, then the other one is zero too }
{ and we're done as well (r3 also contains 0 then) }
{ otherwise loop }
bne cr1,.LStrCompLoop
.LStrCompDone:
end;
{$endif FPC_UNIT_HAS_STRCOMP}
{$ifndef FPC_UNIT_HAS_STRLCOMP}
{$define FPC_UNIT_HAS_STRLCOMP}
function strlcomp(str1,str2 : pchar;l : longint) : longint;assembler;
{ (same as strcomp, but maximally compare until l'th character) }
{ in: str1 in r3, str2 in r4, l in r5 }
{ out: result (= 0 if strings equal, < 0 if str1 < str2, > 0 if str1 > str2 }
{ in r3 }
asm
{ load the begin of one of the strings in the data cache }
dcbt 0,r3
{ use r0 instead of r3 for str1 since r3 contains result }
cmplwi r5,0
subi r9,r3,1
li r3,0
beq .LStrlCompDone
mtctr r5
subi r4,r4,1
.LStrlCompLoop:
{ load next chars }
lbzu r0,1(r9)
{ check if one is zero }
cmplwi cr1,r0,0
lbzu r10,1(r4)
{ calculate difference }
sub. r3,r0,r10
{ if chars not equal, we're ready }
bne .LStrlCompDone
{ if they are equal and one is zero, then the other one is zero too }
{ and we're done as well (r3 also contains 0 then) }
{ otherwise loop (if ctr <> 0) }
bdnzf cr1*4+eq,.LStrlCompLoop
.LStrlCompDone:
end;
{$endif FPC_UNIT_HAS_STRLCOMP}
{$ifndef FPC_UNIT_HAS_STRICOMP}
{$define FPC_UNIT_HAS_STRICOMP}
function stricomp(str1,str2 : pchar) : longint;assembler;
{ in: str1 in r3, str2 in r4 }
{ out: result of case insensitive comparison (< 0, = 0, > 0) }
asm
{ use r5 instead of r3 for str1 since r3 contains result }
subi r5,r3,1
subi r4,r4,1
.LStriCompLoop:
{ load next chars }
lbzu r6,1(r5)
{ check if one is zero }
cmplwi cr1,r6,0
lbzu r7,1(r4)
{ calculate difference }
sub. r3,r6,r7
{ if chars are equal, no further test is necessary }
beq+ .LStriCompEqual
{ make both lowercase, no branches }
{ r3 := pred('A') - r6 }
subfic r3,r6,64
{ if r6 < 'A' then r8 := 0 else r8 := $ffffffff }
subfe r8,r8,r8
{ same for r7 }
subfic r3,r7,64
subfe r9,r9,r9
{ r3 := r6 - succ('Z') }
subic r3,r6,91
{ if r6 < 'A' then r8 := 0 else r8 := $20 }
andi. r8,r8,0x020
{ if r6 > Z then r10 := 0 else r10 := $ffffffff }
subfe r10,r10,r10
{ same for r7 }
subic r3,r7,91
andi. r9,r9,0x020
subfe r11,r11,r11
{ if (r6 in ['A'..'Z'] then r8 := $20 else r8 := 0 }
and r8,r8,r10
{ same for r7 }
and r9,r9,r11
{ make lowercase }
add r6,r6,r8
{ same for r7 }
add r7,r7,r9
{ compare again }
sub. r3,r6,r7
bne- .LStriCompDone
.LStriCompEqual:
{ if they are equal and one is zero, then the other one is zero too }
{ and we're done as well (r3 also contains 0 then) }
{ otherwise loop }
bne cr1,.LStriCompLoop
.LStriCompDone:
end;
{$endif FPC_UNIT_HAS_STRICOMP}
{$ifndef FPC_UNIT_HAS_STRLICOMP}
{$define FPC_UNIT_HAS_STRLICOMP}
function strlicomp(str1,str2 : pchar;l : longint) : longint;assembler;
{ (same as stricomp, but maximally compare until l'th character) }
{ in: str1 in r3, str2 in r4, l in r5 }
{ out: result of case insensitive comparison (< 0, = 0, > 0) }
asm
{ load the begin of one of the string in the data cache }
dcbt 0,r3
{ use r0 instead of r3 for str1 since r3 contains result }
cmplwi r5,0
subi r9,r3,1
li r3,0
beq- .LStrliCompDone
mtctr r5
subi r4,r4,1
.LStrliCompLoop:
{ load next chars }
lbzu r0,1(r9)
{ check if one is zero }
cmplwi cr1,r0,0
lbzu r10,1(r4)
{ calculate difference }
sub. r3,r0,r10
{ if chars are equal, no further test is necessary }
beq .LStrliCompEqual
{ see stricomp for explanation }
subfic r3,r0,64
subfe r8,r8,r8
subfic r3,r10,64
subfe r5,r5,r5
subic r3,r0,91
andi. r8,r8,0x020
subfe r7,r7,r7
subic r3,r10,91
andi. r5,r5,0x020
subfe r11,r11,r11
and r8,r8,r7
and r5,r5,r11
add r0,r0,r8
add r10,r10,r5
{ compare again }
sub. r3,r0,r10
bne .LStrliCompDone
.LStrliCompEqual:
{ if they are equal and one is zero, then the other one is zero too }
{ and we're done as well (r3 also contains 0 then) }
{ otherwise loop (if ctr <> 0) }
bdnzf cr1*4+eq,.LStrliCompLoop
.LStrliCompDone:
end;
{$endif FPC_UNIT_HAS_STRLICOMP}
{$ifndef FPC_UNIT_HAS_STRSCAN}
{$define FPC_UNIT_HAS_STRSCAN}
function strscan(p : pchar;c : char) : pchar;assembler;
asm
{ empty/invalid string? }
cmplwi r3,0
{ if yes, do nothing }
beq .LStrScanDone
subi r3,r3,1
.LStrScanLoop:
lbzu r0,1(r3)
cmplw cr1,r0,r4
cmplwi r0,0
beq cr1,.LStrScanDone
bne .LStrScanLoop
li r3, 0
.LStrScanDone:
end;
{$endif FPC_UNIT_HAS_STRSCAN}
{$ifndef FPC_UNIT_HAS_STRRSCAN}
{$define FPC_UNIT_HAS_STRRSCAN}
function strrscan(p : pchar;c : char) : pchar;assembler;
asm
{ empty/invalid string? }
cmplwi r3,0
{ if yes, do nothing }
beq .LStrrScanDone
{ make r5 will be walking through the string }
subi r5,r3,1
{ assume not found }
li r3,0
.LStrrScanLoop:
lbzu r10,1(r5)
cmplw cr1,r10,r4
cmplwi cr0,r10,0
bne+ cr1,.LStrrScanNotFound
{ store address of found position }
mr r3,r5
.LStrrScanNotFound:
bne .LStrrScanLoop
.LStrrScanDone:
end;
{$endif FPC_UNIT_HAS_STRRSCAN}
{$ifndef FPC_UNIT_HAS_STRUPPER}
{$define FPC_UNIT_HAS_STRUPPER}
function strupper(p : pchar) : pchar;assembler;
asm
cmplwi r3,0
beq .LStrUpperNil
subi r9,r3,1
.LStrUpperLoop:
lbzu r10,1(r9)
{ a <= x <= b <=> cardinal(x-a) <= cardinal(b-a) }
subi r0,r10,97
cmplwi r0,122-97
cmplwi cr1,r10,0
subi r10,r10,0x20
bgt .LStrUpper1
stb r10,0(r9)
.LStrUpper1:
bne cr1,.LStrUpperLoop
.LStrUpperNil:
end;
{$endif FPC_UNIT_HAS_STRUPPER}
{$ifndef FPC_UNIT_HAS_STRLOWER}
{$define FPC_UNIT_HAS_STRLOWER}
function strlower(p : pchar) : pchar;assembler;
asm
cmplwi r3,0
beq .LStrLowerNil
subi r9,r3,1
.LStrLowerLoop:
lbzu r10,1(r9)
{ a <= x <= b <=> cardinal(x-a) <= cardinal(b-a) }
subi r0,r10,65
cmplwi r0,90-65
cmplwi cr1,r10,0
addi r10,r10,0x20
bgt .LStrLower1
stb r10,0(r9)
.LStrLower1:
bne cr1,.LStrLowerLoop
.LStrLowerNil:
end;
{$endif FPC_UNIT_HAS_STRLOWER}
|