VirtualBox

source: vbox/trunk/src/VBox/Runtime/common/string/memcpy.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.1 KB
Line 
1; $Id: memcpy.asm 98103 2023-01-17 14:15:46Z vboxsync $
2;; @file
3; IPRT - No-CRT memcpy - 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%include "iprt/asmdefs.mac"
38
39BEGINCODE
40
41;;
42; @param pvDst gcc: rdi msc: rcx x86:[esp+4] wcall: eax
43; @param pvSrc gcc: rsi msc: rdx x86:[esp+8] wcall: edx
44; @param cb gcc: rdx msc: r8 x86:[esp+0ch] wcall: ebx
45%ifdef IN_RING0_DRV_ON_DARWIN
46global NAME(memcpy):private_extern
47NAME(memcpy):
48%else
49RT_NOCRT_BEGINPROC memcpy
50%endif
51 cld
52
53 ; Do the bulk of the work.
54%ifdef RT_ARCH_AMD64
55 %ifdef DEBUG
56 push rbp
57 mov rbp, rsp
58 %endif
59 %ifdef ASM_CALL64_MSC
60 mov r10, rdi ; save
61 mov r11, rsi ; save
62 mov rdi, rcx
63 mov rsi, rdx
64 mov rcx, r8
65 mov rdx, r8
66 %else
67 mov rcx, rdx
68 %endif
69 mov rax, rdi ; save the return value
70 shr rcx, 3
71 rep movsq
72%else
73 push edi
74 push esi
75
76 %ifdef ASM_CALL32_WATCOM
77 mov edi, eax
78 mov esi, edx
79 mov ecx, ebx
80 mov edx, ebx
81 %else
82 mov ecx, [esp + 0ch + 8]
83 mov edi, [esp + 04h + 8]
84 mov esi, [esp + 08h + 8]
85 mov edx, ecx
86 mov eax, edi ; save the return value
87 %endif
88 shr ecx, 2
89 rep movsd
90%endif
91
92 ; The remaining bytes.
93%ifdef RT_ARCH_AMD64
94 test dl, 4
95 jz .dont_move_dword
96 movsd
97%endif
98.dont_move_dword:
99 test dl, 2
100 jz .dont_move_word
101 movsw
102.dont_move_word:
103 test dl, 1
104 jz .dont_move_byte
105 movsb
106.dont_move_byte:
107
108%ifdef RT_ARCH_AMD64
109 %ifdef ASM_CALL64_MSC
110 mov rdi, r10
111 mov rsi, r11
112 %endif
113 %ifdef DEBUG
114 leave
115 %endif
116%else
117 pop esi
118 pop edi
119%endif
120 ret
121ENDPROC RT_NOCRT(memcpy)
122
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use