Last change
on this file since 4071 was 4071, checked in by vboxsync, 17 years ago |
Biggest check-in ever. New source code headers for all (C) innotek files.
|
-
Property svn:eol-style
set to
native
-
Property svn:keywords
set to
Id
|
File size:
2.6 KB
|
Line | |
---|
1 | ; $Id: strchr.asm 4071 2007-08-07 17:07:59Z vboxsync $
|
---|
2 | ;; @file
|
---|
3 | ; innotek Portable Runtime - No-CRT strchr - AMD64 & X86.
|
---|
4 | ;
|
---|
5 |
|
---|
6 | ;
|
---|
7 | ; Copyright (C) 2006-2007 innotek GmbH
|
---|
8 | ;
|
---|
9 | ; This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | ; available from http://www.virtualbox.org. This file is free software;
|
---|
11 | ; you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | ; General Public License as published by the Free Software Foundation,
|
---|
13 | ; in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
|
---|
14 | ; distribution. VirtualBox OSE is distributed in the hope that it will
|
---|
15 | ; be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 |
|
---|
17 | %include "iprt/asmdefs.mac"
|
---|
18 |
|
---|
19 | BEGINCODE
|
---|
20 |
|
---|
21 | ;;
|
---|
22 | ; @param psz gcc: rdi msc: rcx x86:[esp+4]
|
---|
23 | ; @param ch gcc: esi msc: edx x86:[esp+8]
|
---|
24 | BEGINPROC RT_NOCRT(strchr)
|
---|
25 | cld
|
---|
26 |
|
---|
27 | ; check for ch == 0 and setup normal strchr.
|
---|
28 | %ifdef RT_ARCH_AMD64
|
---|
29 | %ifdef ASM_CALL64_MSC
|
---|
30 | or dl, dl
|
---|
31 | jz near .strlen
|
---|
32 | mov r9, rsi ; save rsi
|
---|
33 | mov rsi, rcx
|
---|
34 | %else
|
---|
35 | or sil, sil
|
---|
36 | jz near .strlen
|
---|
37 | mov edx, esi
|
---|
38 | mov rsi, rdi
|
---|
39 | %endif
|
---|
40 | %else
|
---|
41 | mov edx, [esp + 8]
|
---|
42 | or dl, dl
|
---|
43 | jz near .strlen
|
---|
44 | mov ecx, esi ; save esi
|
---|
45 | mov esi, [esp + 4]
|
---|
46 | %endif
|
---|
47 |
|
---|
48 | ; do the search
|
---|
49 | .next:
|
---|
50 | lodsb
|
---|
51 | cmp al, dl
|
---|
52 | je .found
|
---|
53 | test al, al
|
---|
54 | jz .not_found
|
---|
55 |
|
---|
56 | lodsb
|
---|
57 | cmp al, dl
|
---|
58 | je .found
|
---|
59 | test al, al
|
---|
60 | jz .not_found
|
---|
61 |
|
---|
62 | lodsb
|
---|
63 | cmp al, dl
|
---|
64 | je .found
|
---|
65 | test al, al
|
---|
66 | jz .not_found
|
---|
67 |
|
---|
68 | lodsb
|
---|
69 | cmp al, dl
|
---|
70 | je .found
|
---|
71 | test al, al
|
---|
72 | jz .not_found
|
---|
73 | jmp .next
|
---|
74 |
|
---|
75 | .found:
|
---|
76 | lea xAX, [xSI - 1]
|
---|
77 | %ifdef ASM_CALL64_MSC
|
---|
78 | mov rsi, r9
|
---|
79 | %endif
|
---|
80 | %ifdef RT_ARCH_X86
|
---|
81 | mov esi, ecx
|
---|
82 | %endif
|
---|
83 | ret
|
---|
84 |
|
---|
85 | .not_found:
|
---|
86 | %ifdef ASM_CALL64_MSC
|
---|
87 | mov rsi, r9
|
---|
88 | %endif
|
---|
89 | %ifdef RT_ARCH_X86
|
---|
90 | mov esi, ecx
|
---|
91 | %endif
|
---|
92 | xor eax, eax
|
---|
93 | ret
|
---|
94 |
|
---|
95 | ;
|
---|
96 | ; Special case: strchr(str, '\0');
|
---|
97 | ;
|
---|
98 | align 16
|
---|
99 | .strlen:
|
---|
100 | %ifdef RT_ARCH_AMD64
|
---|
101 | %ifdef ASM_CALL64_MSC
|
---|
102 | mov r9, rdi ; save rdi
|
---|
103 | mov rdi, rcx
|
---|
104 | %endif
|
---|
105 | %else
|
---|
106 | mov edx, edi ; save edi
|
---|
107 | mov edi, [esp + 4]
|
---|
108 | %endif
|
---|
109 | mov xCX, -1
|
---|
110 | xor eax, eax
|
---|
111 | repne scasb
|
---|
112 |
|
---|
113 | lea xAX, [xDI - 1]
|
---|
114 | %ifdef ASM_CALL64_MSC
|
---|
115 | mov rdi, r9
|
---|
116 | %endif
|
---|
117 | %ifdef RT_ARCH_X86
|
---|
118 | mov edi, edx
|
---|
119 | %endif
|
---|
120 | ret
|
---|
121 | ENDPROC RT_NOCRT(strchr)
|
---|
122 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.