1 | ; $Id: bs3-cmn-MemCmp.asm 106061 2024-09-16 14:03:52Z vboxsync $
|
---|
2 | ;; @file
|
---|
3 | ; BS3Kit - Bs3MemCmp.
|
---|
4 | ;
|
---|
5 |
|
---|
6 | ;
|
---|
7 | ; Copyright (C) 2007-2024 Oracle and/or its affiliates.
|
---|
8 | ;
|
---|
9 | ; This file is part of VirtualBox base platform packages, as
|
---|
10 | ; available from https://www.virtualbox.org.
|
---|
11 | ;
|
---|
12 | ; This program is free software; you can redistribute it and/or
|
---|
13 | ; modify it under the terms of the GNU General Public License
|
---|
14 | ; as published by the Free Software Foundation, in version 3 of the
|
---|
15 | ; License.
|
---|
16 | ;
|
---|
17 | ; This program is distributed in the hope that it will be useful, but
|
---|
18 | ; WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
19 | ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
20 | ; General Public License for more details.
|
---|
21 | ;
|
---|
22 | ; You should have received a copy of the GNU General Public License
|
---|
23 | ; along with this program; if not, see <https://www.gnu.org/licenses>.
|
---|
24 | ;
|
---|
25 | ; The contents of this file may alternatively be used under the terms
|
---|
26 | ; of the Common Development and Distribution License Version 1.0
|
---|
27 | ; (CDDL), a copy of it is provided in the "COPYING.CDDL" file included
|
---|
28 | ; in the VirtualBox distribution, in which case the provisions of the
|
---|
29 | ; CDDL are applicable instead of those of the GPL.
|
---|
30 | ;
|
---|
31 | ; You may elect to license modified versions of this file under the
|
---|
32 | ; terms and conditions of either the GPL or the CDDL or both.
|
---|
33 | ;
|
---|
34 | ; SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
|
---|
35 | ;
|
---|
36 |
|
---|
37 | %include "bs3kit-template-header.mac"
|
---|
38 |
|
---|
39 | ;;
|
---|
40 | ; @cproto BS3_CMN_PROTO_NOSB(int, Bs3MemCmp,(void const BS3_FAR *pv1, void const BS3_FAR *pv2, size_t cb));
|
---|
41 | ;
|
---|
42 | BS3_PROC_BEGIN_CMN Bs3MemCmp, BS3_PBC_HYBRID
|
---|
43 | TONLY16 CPU 8086
|
---|
44 | push xBP
|
---|
45 | mov xBP, xSP
|
---|
46 | push xDI
|
---|
47 | push xSI
|
---|
48 | TNOT64 push es
|
---|
49 | TONLY16 push ds
|
---|
50 | cld
|
---|
51 |
|
---|
52 | ;
|
---|
53 | ; To save complexity and space, do straight forward byte compares.
|
---|
54 | ;
|
---|
55 | %if TMPL_BITS == 16
|
---|
56 | mov di, [bp + 2 + cbCurRetAddr] ; pv1.off
|
---|
57 | mov es, [bp + 2 + cbCurRetAddr + 2] ; pv1.sel
|
---|
58 | mov si, [bp + 2 + cbCurRetAddr + 4] ; pv2.off
|
---|
59 | mov ds, [bp + 2 + cbCurRetAddr + 6] ; pv2.sel
|
---|
60 | mov cx, [bp + 2 + cbCurRetAddr + 8] ; cbDst
|
---|
61 | xor ax, ax
|
---|
62 | repe cmpsb
|
---|
63 | je .return
|
---|
64 |
|
---|
65 | mov al, [es:di - 1]
|
---|
66 | xor dx, dx
|
---|
67 | mov dl, [esi - 1]
|
---|
68 | sub ax, dx
|
---|
69 |
|
---|
70 | %else
|
---|
71 | %if TMPL_BITS == 64
|
---|
72 | mov rdi, rcx ; rdi = pv1
|
---|
73 | mov rsi, rdx ; rdi = pv2
|
---|
74 | mov rcx, r8 ; rcx = cbDst
|
---|
75 | %else
|
---|
76 | mov ax, ds
|
---|
77 | mov es, ax ; paranoia
|
---|
78 | mov edi, [ebp + 4 + cbCurRetAddr] ; pv1
|
---|
79 | mov esi, [ebp + 4 + cbCurRetAddr + 4] ; pv2
|
---|
80 | mov ecx, [ebp + 4 + cbCurRetAddr + 8] ; cbDst
|
---|
81 | %endif
|
---|
82 | xor eax, eax
|
---|
83 | repe cmpsb
|
---|
84 | je .return
|
---|
85 |
|
---|
86 | mov al, [xDI - 1]
|
---|
87 | movzx edx, byte [xSI - 1]
|
---|
88 | sub eax, edx
|
---|
89 | %endif
|
---|
90 |
|
---|
91 | .return:
|
---|
92 | TONLY16 pop ds
|
---|
93 | TNOT64 pop es
|
---|
94 | pop xSI
|
---|
95 | pop xDI
|
---|
96 | pop xBP
|
---|
97 | BS3_HYBRID_RET
|
---|
98 | BS3_PROC_END_CMN Bs3MemCmp
|
---|
99 |
|
---|