1 | ; $Id: strcmp.asm 8155 2008-04-18 15:16:47Z vboxsync $
|
---|
2 | ;; @file
|
---|
3 | ; innotek Portable Runtime - No-CRT strcmp - AMD64 & X86.
|
---|
4 | ;
|
---|
5 |
|
---|
6 | ;
|
---|
7 | ; Copyright (C) 2006-2007 Sun Microsystems, Inc.
|
---|
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 (GPL) as published by the Free Software
|
---|
13 | ; Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | ; VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | ; hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | ;
|
---|
17 | ; The contents of this file may alternatively be used under the terms
|
---|
18 | ; of the Common Development and Distribution License Version 1.0
|
---|
19 | ; (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
20 | ; VirtualBox OSE distribution, in which case the provisions of the
|
---|
21 | ; CDDL are applicable instead of those of the GPL.
|
---|
22 | ;
|
---|
23 | ; You may elect to license modified versions of this file under the
|
---|
24 | ; terms and conditions of either the GPL or the CDDL or both.
|
---|
25 | ;
|
---|
26 | ; Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
|
---|
27 | ; Clara, CA 95054 USA or visit http://www.sun.com if you need
|
---|
28 | ; additional information or have any questions.
|
---|
29 | ;
|
---|
30 |
|
---|
31 | %include "iprt/asmdefs.mac"
|
---|
32 |
|
---|
33 | BEGINCODE
|
---|
34 |
|
---|
35 | ;;
|
---|
36 | ; @param psz1 gcc: rdi msc: rcx x86:[esp+4]
|
---|
37 | ; @param psz2 gcc: rsi msc: rdx x86:[esp+8]
|
---|
38 | BEGINPROC RT_NOCRT(strcmp)
|
---|
39 | ; input
|
---|
40 | %ifdef RT_ARCH_AMD64
|
---|
41 | %ifdef ASM_CALL64_MSC
|
---|
42 | %define psz1 rcx
|
---|
43 | %define psz2 rdx
|
---|
44 | %else
|
---|
45 | %define psz1 rdi
|
---|
46 | %define psz2 rsi
|
---|
47 | %endif
|
---|
48 | %else
|
---|
49 | mov ecx, [esp + 4]
|
---|
50 | mov edx, [esp + 8]
|
---|
51 | %define psz1 ecx
|
---|
52 | %define psz2 edx
|
---|
53 | %endif
|
---|
54 |
|
---|
55 | ;
|
---|
56 | ; The loop.
|
---|
57 | ;
|
---|
58 | .next:
|
---|
59 | mov al, [psz1]
|
---|
60 | mov ah, [psz2]
|
---|
61 | cmp al, ah
|
---|
62 | jne .not_equal
|
---|
63 | test al, al
|
---|
64 | jz .equal
|
---|
65 |
|
---|
66 | mov al, [psz1 + 1]
|
---|
67 | mov ah, [psz2 + 1]
|
---|
68 | cmp al, ah
|
---|
69 | jne .not_equal
|
---|
70 | test al, al
|
---|
71 | jz .equal
|
---|
72 | inc psz1
|
---|
73 | inc psz2
|
---|
74 |
|
---|
75 | mov al, [psz1 + 2]
|
---|
76 | mov ah, [psz2 + 2]
|
---|
77 | cmp al, ah
|
---|
78 | jne .not_equal
|
---|
79 | test al, al
|
---|
80 | jz .equal
|
---|
81 | inc psz1
|
---|
82 | inc psz2
|
---|
83 |
|
---|
84 | mov al, [psz1 + 3]
|
---|
85 | mov ah, [psz2 + 3]
|
---|
86 | cmp al, ah
|
---|
87 | jne .not_equal
|
---|
88 | test al, al
|
---|
89 | jz .equal
|
---|
90 |
|
---|
91 | add psz1, 4
|
---|
92 | add psz2, 4
|
---|
93 | jmp .next
|
---|
94 |
|
---|
95 | .equal:
|
---|
96 | xor eax, eax
|
---|
97 | ret
|
---|
98 |
|
---|
99 | .not_equal:
|
---|
100 | movzx ecx, ah
|
---|
101 | and eax, 0ffh
|
---|
102 | sub eax, ecx
|
---|
103 | ret
|
---|
104 | ENDPROC RT_NOCRT(strcmp)
|
---|
105 |
|
---|