VirtualBox

source: vbox/trunk/src/VBox/Runtime/common/string/memmove.asm

Last change on this file was 98103, checked in by vboxsync, 16 months ago

Copyright year updates by scm.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id Revision
File size: 3.8 KB
Line 
1; $Id: memmove.asm 98103 2023-01-17 14:15:46Z vboxsync $
2;; @file
3; IPRT - No-CRT memmove - AMD64 & X86.
4;
5
6;
7; Copyright (C) 2006-2023 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%define RT_ASM_WITH_SEH64
38%include "iprt/asmdefs.mac"
39
40
41BEGINCODE
42
43;;
44; @param pvDst gcc: rdi msc: rcx x86:[esp+4] wcall: eax
45; @param pvSrc gcc: rsi msc: rdx x86:[esp+8] wcall: edx
46; @param cb gcc: rdx msc: r8 x86:[esp+0ch] wcall: ebx
47RT_NOCRT_BEGINPROC memmove
48 ; Prolog.
49%ifdef RT_ARCH_AMD64
50 %ifdef ASM_CALL64_MSC
51 mov r10, rdi ; save
52 mov r11, rsi ; save
53 mov rdi, rcx
54 mov rsi, rdx
55 mov rcx, r8
56 mov rdx, r8
57 %else
58 mov rcx, rdx
59 %endif
60 mov rax, rdi ; save the return value
61%else
62 push edi
63 push esi
64 %ifdef ASM_CALL32_WATCOM
65 mov edi, eax
66 mov esi, edx
67 mov ecx, ebx
68 mov edx, ebx
69 %else
70 mov edi, [esp + 04h + 8]
71 mov esi, [esp + 08h + 8]
72 mov ecx, [esp + 0ch + 8]
73 mov edx, ecx
74 mov eax, edi ; save the return value
75 %endif
76%endif
77 SEH64_END_PROLOGUE
78
79 ;
80 ; Decide which direction to perform the copy in.
81 ;
82%if 1 ; keep it simple for now.
83 cmp xDI, xSI
84 jnb .backward
85
86 ;
87 ; Slow/simple forward copy.
88 ;
89 cld
90 rep movsb
91 jmp .epilog
92
93%else ; disabled - it seems to work, but play safe for now.
94 ;sub xAX, xSI
95 ;jnb .backward
96 cmp xDI, xSI
97 jnb .backward
98
99 ;
100 ; Fast forward copy.
101 ;
102.fast_forward:
103 cld
104%ifdef RT_ARCH_AMD64
105 shr rcx, 3
106 rep movsq
107%else
108 shr ecx, 2
109 rep movsd
110%endif
111
112 ; The remaining bytes.
113%ifdef RT_ARCH_AMD64
114 test dl, 4
115 jz .forward_dont_move_dword
116 movsd
117%endif
118.forward_dont_move_dword:
119 test dl, 2
120 jz .forward_dont_move_word
121 movsw
122.forward_dont_move_word:
123 test dl, 1
124 jz .forward_dont_move_byte
125 movsb
126.forward_dont_move_byte:
127
128%endif ; disabled
129
130 ;
131 ; The epilog.
132 ;
133.epilog:
134%ifdef RT_ARCH_AMD64
135 %ifdef ASM_CALL64_MSC
136 mov rdi, r10
137 mov rsi, r11
138 %endif
139%else
140 pop esi
141 pop edi
142%endif
143 ret
144
145 ;
146 ; Slow/simple backward copy.
147 ;
148ALIGNCODE(16)
149.backward:
150 ;; @todo check if they overlap.
151 lea xDI, [xDI + xCX - 1]
152 lea xSI, [xSI + xCX - 1]
153 std
154 rep movsb
155 cld
156 jmp .epilog
157ENDPROC RT_NOCRT(memmove)
158
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use