1 | ; $Id: strncpy.asm 106061 2024-09-16 14:03:52Z vboxsync $
|
---|
2 | ;; @file
|
---|
3 | ; IPRT - No-CRT strncpy - AMD64 & X86.
|
---|
4 | ;
|
---|
5 |
|
---|
6 | ;
|
---|
7 | ; Copyright (C) 2006-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 "iprt/asmdefs.mac"
|
---|
38 |
|
---|
39 | BEGINCODE
|
---|
40 |
|
---|
41 | ;;
|
---|
42 | ; @param pszDst gcc: rdi msc: rcx x86:[esp+4] wcall: eax
|
---|
43 | ; @param pszSrc gcc: rsi msc: rdx x86:[esp+8] wcall: edx
|
---|
44 | ; @param cbMax gcc: rdx msc: r8 x86:[esp+12] wcall: ebx
|
---|
45 | RT_NOCRT_BEGINPROC strncpy
|
---|
46 | ; input
|
---|
47 | %ifdef RT_ARCH_AMD64
|
---|
48 | %ifdef ASM_CALL64_MSC
|
---|
49 | %define pszDst rcx
|
---|
50 | %define pszSrc rdx
|
---|
51 | %define cbMax r8
|
---|
52 | %else
|
---|
53 | %define pszDst rdi
|
---|
54 | %define pszSrc rsi
|
---|
55 | %define cbMax rdx
|
---|
56 | %endif
|
---|
57 | mov r9, pszDst
|
---|
58 | %else
|
---|
59 | %ifdef ASM_CALL32_WATCOM
|
---|
60 | mov ecx, eax
|
---|
61 | %define pszDst ecx
|
---|
62 | %define pszSrc edx
|
---|
63 | %define cbMax ebx
|
---|
64 | %else
|
---|
65 | mov ecx, [esp + 4]
|
---|
66 | mov edx, [esp + 8]
|
---|
67 | push ebx
|
---|
68 | mov ebx, [esp + 12 + 4]
|
---|
69 | %define pszDst ecx
|
---|
70 | %define pszSrc edx
|
---|
71 | %define cbMax ebx
|
---|
72 | %endif
|
---|
73 | push pszDst
|
---|
74 | %endif
|
---|
75 |
|
---|
76 | ;
|
---|
77 | ; The rolled out loop.
|
---|
78 | ;
|
---|
79 | .next:
|
---|
80 | cmp cbMax, 4
|
---|
81 | jb .simple_intro
|
---|
82 |
|
---|
83 | mov al, [pszSrc]
|
---|
84 | mov [pszDst], al
|
---|
85 | test al, al
|
---|
86 | jz .done
|
---|
87 |
|
---|
88 | mov al, [pszSrc + 1]
|
---|
89 | mov [pszDst + 1], al
|
---|
90 | test al, al
|
---|
91 | jz .done
|
---|
92 |
|
---|
93 | mov al, [pszSrc + 2]
|
---|
94 | mov [pszDst + 2], al
|
---|
95 | test al, al
|
---|
96 | jz .done
|
---|
97 |
|
---|
98 | mov al, [pszSrc + 3]
|
---|
99 | mov [pszDst + 3], al
|
---|
100 | test al, al
|
---|
101 | jz .done
|
---|
102 |
|
---|
103 | add pszDst, 4
|
---|
104 | add pszSrc, 4
|
---|
105 | sub cbMax, 4
|
---|
106 | jmp .next
|
---|
107 |
|
---|
108 | ;
|
---|
109 | ; Char by char.
|
---|
110 | ;
|
---|
111 | .simple_intro:
|
---|
112 | test cbMax, cbMax
|
---|
113 | jz .done
|
---|
114 |
|
---|
115 | .simple_next:
|
---|
116 | mov al, [pszSrc]
|
---|
117 | mov [pszDst], al
|
---|
118 | test al, al
|
---|
119 | jz .done
|
---|
120 |
|
---|
121 | dec cbMax
|
---|
122 | jz .done
|
---|
123 |
|
---|
124 | inc pszSrc
|
---|
125 | inc pszDst
|
---|
126 | jmp .simple_next
|
---|
127 |
|
---|
128 | .done:
|
---|
129 | %ifdef RT_ARCH_AMD64
|
---|
130 | mov rax, r9
|
---|
131 | %else
|
---|
132 | %ifndef ASM_CALL32_WATCOM
|
---|
133 | pop ebx
|
---|
134 | %endif
|
---|
135 | pop eax
|
---|
136 | %endif
|
---|
137 | ret
|
---|
138 | ENDPROC RT_NOCRT(strncpy)
|
---|
139 |
|
---|