VirtualBox

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

Last change on this file since 14021 was 14021, checked in by vboxsync, 16 years ago

The VMMR0 template now uses the IPRT No-CRT stuff, as does RuntimeR0. Added nocrt strcpy and fixed completely busted aliases.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 2.3 KB
Line 
1; $Id: strcpy.asm 14021 2008-11-10 16:31:22Z vboxsync $
2;; @file
3; IPRT - No-CRT strcpy - AMD64 & X86.
4;
5
6;
7; Copyright (C) 2006-2007 Sun Microsystems, Inc.
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; Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
27; Clara, CA 95054 USA or visit http://www.sun.com if you need
28; additional information or have any questions.
29;
30
31%include "iprt/asmdefs.mac"
32
33BEGINCODE
34
35;;
36; @param psz1 gcc: rdi msc: rcx x86:[esp+4]
37; @param psz2 gcc: rsi msc: rdx x86:[esp+8]
38RT_NOCRT_BEGINPROC strcpy
39 ; input
40%ifdef RT_ARCH_AMD64
41 %ifdef ASM_CALL64_MSC
42 %define psz1 rcx
43 %define psz2 rdx
44 %else
45 %define psz1 rdi
46 %define psz2 rsi
47 %endif
48 mov r8, psz1
49%else
50 mov ecx, [esp + 4]
51 mov edx, [esp + 8]
52 %define psz1 ecx
53 %define psz2 edx
54 push psz1
55%endif
56
57 ;
58 ; The loop.
59 ;
60.next:
61 mov al, [psz1]
62 mov [psz2], al
63 test al, al
64 jz .done
65
66 mov al, [psz1 + 1]
67 mov [psz2 + 1], al
68 test al, al
69 jz .done
70
71 mov al, [psz1 + 2]
72 mov [psz2 + 2], al
73 test al, al
74 jz .done
75
76 mov al, [psz1 + 3]
77 mov [psz2 + 3], al
78 test al, al
79 jz .done
80
81 add psz1, 4
82 add psz2, 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
92ENDPROC RT_NOCRT(strcpy)
93
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette