VirtualBox

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

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

Copyright year updates by scm.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id Revision
File size: 2.5 KB
RevLine 
[3]1; $Id: strcpy.asm 98103 2023-01-17 14:15:46Z vboxsync $
2;; @file
[14021]3; IPRT - No-CRT strcpy - AMD64 & X86.
[3]4;
5
6;
[98103]7; Copyright (C) 2006-2023 Oracle and/or its affiliates.
[5999]8;
[96407]9; This file is part of VirtualBox base platform packages, as
10; available from https://www.virtualbox.org.
[5999]11;
[96407]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;
[5999]25; The contents of this file may alternatively be used under the terms
26; of the Common Development and Distribution License Version 1.0
[96407]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
[5999]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;
[96407]34; SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
35;
[3]36
37%include "iprt/asmdefs.mac"
38
[1174]39BEGINCODE
40
[3]41;;
[75129]42; @param pszDst gcc: rdi msc: rcx x86:[esp+4] wcall:eax
43; @param pszSrc gcc: rsi msc: rdx x86:[esp+8] wcall:edx
[14021]44RT_NOCRT_BEGINPROC strcpy
[1174]45 ; input
[3672]46%ifdef RT_ARCH_AMD64
[3]47 %ifdef ASM_CALL64_MSC
[14024]48 %define pszDst rcx
49 %define pszSrc rdx
[3]50 %else
[14024]51 %define pszDst rdi
52 %define pszSrc rsi
[3]53 %endif
[14024]54 mov r8, pszDst
[3]55%else
[75129]56 %ifdef ASM_CALL32_WATCOM
57 mov ecx, eax
58 %else
[1174]59 mov ecx, [esp + 4]
60 mov edx, [esp + 8]
[75129]61 %endif
62 %define pszDst ecx
63 %define pszSrc edx
[14024]64 push pszDst
[3]65%endif
66
[1174]67 ;
68 ; The loop.
69 ;
70.next:
[14024]71 mov al, [pszSrc]
72 mov [pszDst], al
[1174]73 test al, al
[14021]74 jz .done
[3]75
[14024]76 mov al, [pszSrc + 1]
77 mov [pszDst + 1], al
[1174]78 test al, al
[14021]79 jz .done
[1174]80
[14024]81 mov al, [pszSrc + 2]
82 mov [pszDst + 2], al
[1174]83 test al, al
[14021]84 jz .done
[1174]85
[14024]86 mov al, [pszSrc + 3]
87 mov [pszDst + 3], al
[1174]88 test al, al
[14021]89 jz .done
[1174]90
[14024]91 add pszDst, 4
92 add pszSrc, 4
[1174]93 jmp .next
94
[14021]95.done:
96%ifdef RT_ARCH_AMD64
97 mov rax, r8
98%else
99 pop eax
100%endif
[3]101 ret
[14021]102ENDPROC RT_NOCRT(strcpy)
[3]103
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use