Last change
on this file since 4968 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.8 KB
|
Line | |
---|
1 | ; $Id: memcmp.asm 4071 2007-08-07 17:07:59Z vboxsync $
|
---|
2 | ;; @file
|
---|
3 | ; innotek Portable Runtime - No-CRT memcmp - 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 pv1 gcc: rdi msc: rcx x86:[esp+4]
|
---|
23 | ; @param pv2 gcc: rsi msc: rdx x86:[esp+8]
|
---|
24 | ; @param cb gcc: rdx msc: r8 x86:[esp+0ch]
|
---|
25 | BEGINPROC RT_NOCRT(memcmp)
|
---|
26 | cld
|
---|
27 |
|
---|
28 | ; Do the bulk of the work.
|
---|
29 | %ifdef RT_ARCH_AMD64
|
---|
30 | %ifdef ASM_CALL64_MSC
|
---|
31 | mov r10, rdi ; save
|
---|
32 | mov r11, rsi ; save
|
---|
33 | mov rdi, rcx
|
---|
34 | mov rsi, rdx
|
---|
35 | mov rcx, r8
|
---|
36 | mov rdx, r8
|
---|
37 | %else
|
---|
38 | mov rcx, rdx
|
---|
39 | %endif
|
---|
40 | mov rax, rdi ; save the return value
|
---|
41 | shr rcx, 3
|
---|
42 | repe cmpsq
|
---|
43 | jne .not_equal_qword
|
---|
44 | %else
|
---|
45 | push edi
|
---|
46 | push esi
|
---|
47 |
|
---|
48 | mov ecx, [esp + 0ch + 8]
|
---|
49 | mov edi, [esp + 04h + 8]
|
---|
50 | mov esi, [esp + 08h + 8]
|
---|
51 | mov edx, ecx
|
---|
52 | xor eax, eax
|
---|
53 | jecxz .done
|
---|
54 | shr ecx, 2
|
---|
55 | repe cmpsd
|
---|
56 | jne .not_equal_dword
|
---|
57 | %endif
|
---|
58 |
|
---|
59 | ; The remaining bytes.
|
---|
60 | %ifdef RT_ARCH_AMD64
|
---|
61 | test dl, 4
|
---|
62 | jz .dont_cmp_dword
|
---|
63 | cmpsd
|
---|
64 | jne .not_equal_dword
|
---|
65 | %endif
|
---|
66 | .dont_cmp_dword:
|
---|
67 | test dl, 2
|
---|
68 | jz .dont_cmp_word
|
---|
69 | cmpsw
|
---|
70 | jne .not_equal_word
|
---|
71 | .dont_cmp_word:
|
---|
72 | test dl, 1
|
---|
73 | jz .dont_cmp_byte
|
---|
74 | cmpsb
|
---|
75 | jne .not_equal_byte
|
---|
76 | .dont_cmp_byte:
|
---|
77 |
|
---|
78 | .done:
|
---|
79 | %ifdef RT_ARCH_AMD64
|
---|
80 | %ifdef ASM_CALL64_MSC
|
---|
81 | mov rdi, r10
|
---|
82 | mov rsi, r11
|
---|
83 | %endif
|
---|
84 | %else
|
---|
85 | pop esi
|
---|
86 | pop edi
|
---|
87 | %endif
|
---|
88 | ret
|
---|
89 |
|
---|
90 | ;
|
---|
91 | ; Mismatches.
|
---|
92 | ;
|
---|
93 | %ifdef RT_ARCH_AMD64
|
---|
94 | .not_equal_qword:
|
---|
95 | mov ecx, 8
|
---|
96 | sub rsi, 8
|
---|
97 | sub rdi, 8
|
---|
98 | .not_equal_byte:
|
---|
99 | repe cmpsb
|
---|
100 | mov al, [xDI-1]
|
---|
101 | movzx ecx, byte [xSI-1]
|
---|
102 | sub eax, ecx
|
---|
103 | jmp .done
|
---|
104 | %endif
|
---|
105 |
|
---|
106 | .not_equal_dword:
|
---|
107 | mov ecx, 4
|
---|
108 | sub xSI, 4
|
---|
109 | sub xDI, 4
|
---|
110 | repe cmpsb
|
---|
111 | %ifdef RT_ARCH_AMD64
|
---|
112 | jmp .not_equal_byte
|
---|
113 | %else
|
---|
114 | .not_equal_byte:
|
---|
115 | mov al, [xDI-1]
|
---|
116 | movzx ecx, byte [xSI-1]
|
---|
117 | sub eax, ecx
|
---|
118 | jmp .done
|
---|
119 | %endif
|
---|
120 |
|
---|
121 | .not_equal_word:
|
---|
122 | mov ecx, 2
|
---|
123 | sub xSI, 2
|
---|
124 | sub xDI, 2
|
---|
125 | repe cmpsb
|
---|
126 | jmp .not_equal_byte
|
---|
127 | ENDPROC RT_NOCRT(memcmp)
|
---|
128 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.