Last change
on this file since 82968 was 82968, checked in by vboxsync, 5 years ago |
Copyright year updates by scm.
|
-
Property svn:eol-style
set to
native
-
Property svn:keywords
set to
Id Revision
|
File size:
2.3 KB
|
Line | |
---|
1 | ; $Id: strcpy.asm 82968 2020-02-04 10:35:17Z vboxsync $
|
---|
2 | ;; @file
|
---|
3 | ; IPRT - No-CRT strcpy - AMD64 & X86.
|
---|
4 | ;
|
---|
5 |
|
---|
6 | ;
|
---|
7 | ; Copyright (C) 2006-2020 Oracle Corporation
|
---|
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 (GPL) as published by the Free Software
|
---|
13 | ; Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | ; VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | ; hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | ;
|
---|
17 | ; The contents of this file may alternatively be used under the terms
|
---|
18 | ; of the Common Development and Distribution License Version 1.0
|
---|
19 | ; (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
20 | ; VirtualBox OSE distribution, in which case the provisions of the
|
---|
21 | ; CDDL are applicable instead of those of the GPL.
|
---|
22 | ;
|
---|
23 | ; You may elect to license modified versions of this file under the
|
---|
24 | ; terms and conditions of either the GPL or the CDDL or both.
|
---|
25 | ;
|
---|
26 |
|
---|
27 | %include "iprt/asmdefs.mac"
|
---|
28 |
|
---|
29 | BEGINCODE
|
---|
30 |
|
---|
31 | ;;
|
---|
32 | ; @param pszDst gcc: rdi msc: rcx x86:[esp+4] wcall:eax
|
---|
33 | ; @param pszSrc gcc: rsi msc: rdx x86:[esp+8] wcall:edx
|
---|
34 | RT_NOCRT_BEGINPROC strcpy
|
---|
35 | ; input
|
---|
36 | %ifdef RT_ARCH_AMD64
|
---|
37 | %ifdef ASM_CALL64_MSC
|
---|
38 | %define pszDst rcx
|
---|
39 | %define pszSrc rdx
|
---|
40 | %else
|
---|
41 | %define pszDst rdi
|
---|
42 | %define pszSrc rsi
|
---|
43 | %endif
|
---|
44 | mov r8, pszDst
|
---|
45 | %else
|
---|
46 | %ifdef ASM_CALL32_WATCOM
|
---|
47 | mov ecx, eax
|
---|
48 | %else
|
---|
49 | mov ecx, [esp + 4]
|
---|
50 | mov edx, [esp + 8]
|
---|
51 | %endif
|
---|
52 | %define pszDst ecx
|
---|
53 | %define pszSrc edx
|
---|
54 | push pszDst
|
---|
55 | %endif
|
---|
56 |
|
---|
57 | ;
|
---|
58 | ; The loop.
|
---|
59 | ;
|
---|
60 | .next:
|
---|
61 | mov al, [pszSrc]
|
---|
62 | mov [pszDst], al
|
---|
63 | test al, al
|
---|
64 | jz .done
|
---|
65 |
|
---|
66 | mov al, [pszSrc + 1]
|
---|
67 | mov [pszDst + 1], al
|
---|
68 | test al, al
|
---|
69 | jz .done
|
---|
70 |
|
---|
71 | mov al, [pszSrc + 2]
|
---|
72 | mov [pszDst + 2], al
|
---|
73 | test al, al
|
---|
74 | jz .done
|
---|
75 |
|
---|
76 | mov al, [pszSrc + 3]
|
---|
77 | mov [pszDst + 3], al
|
---|
78 | test al, al
|
---|
79 | jz .done
|
---|
80 |
|
---|
81 | add pszDst, 4
|
---|
82 | add pszSrc, 4
|
---|
83 | jmp .next
|
---|
84 |
|
---|
85 | .done:
|
---|
86 | %ifdef RT_ARCH_AMD64
|
---|
87 | mov rax, r8
|
---|
88 | %else
|
---|
89 | pop eax
|
---|
90 | %endif
|
---|
91 | ret
|
---|
92 | ENDPROC RT_NOCRT(strcpy)
|
---|
93 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.