1 | ; $Id: memmove.asm 8155 2008-04-18 15:16:47Z vboxsync $
|
---|
2 | ;; @file
|
---|
3 | ; innotek Portable Runtime - No-CRT memmove - AMD64 & X86.
|
---|
4 | ;
|
---|
5 |
|
---|
6 | ;
|
---|
7 | ; Copyright (C) 2006-2008 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 |
|
---|
33 | BEGINCODE
|
---|
34 |
|
---|
35 | ;;
|
---|
36 | ; @param pvDst gcc: rdi msc: rcx x86:[esp+4]
|
---|
37 | ; @param pvSrc gcc: rsi msc: rdx x86:[esp+8]
|
---|
38 | ; @param cb gcc: rdx msc: r8 x86:[esp+0ch]
|
---|
39 | BEGINPROC RT_NOCRT(memmove)
|
---|
40 | ; Prolog.
|
---|
41 | %ifdef RT_ARCH_AMD64
|
---|
42 | %ifdef ASM_CALL64_MSC
|
---|
43 | mov r10, rdi ; save
|
---|
44 | mov r11, rsi ; save
|
---|
45 | mov rdi, rcx
|
---|
46 | mov rsi, rdx
|
---|
47 | mov rcx, r8
|
---|
48 | mov rdx, r8
|
---|
49 | %else
|
---|
50 | mov rcx, rdx
|
---|
51 | %endif
|
---|
52 | mov rax, rdi ; save the return value
|
---|
53 | %else
|
---|
54 | push edi
|
---|
55 | push esi
|
---|
56 | mov edi, [esp + 04h + 8]
|
---|
57 | mov esi, [esp + 08h + 8]
|
---|
58 | mov ecx, [esp + 0ch + 8]
|
---|
59 | mov edx, ecx
|
---|
60 | mov eax, edi ; save the return value
|
---|
61 | %endif
|
---|
62 |
|
---|
63 | ;
|
---|
64 | ; Decide which direction to perform the copy in.
|
---|
65 | ;
|
---|
66 | %if 1 ; keep it simpe for now.
|
---|
67 | cmp xDI, xSI
|
---|
68 | jnb .backward
|
---|
69 |
|
---|
70 | ;
|
---|
71 | ; Slow/simple forward copy.
|
---|
72 | ;
|
---|
73 | cld
|
---|
74 | rep movsb
|
---|
75 | jmp .epilog
|
---|
76 |
|
---|
77 | %else ; disabled - it seems to work, but play safe for now.
|
---|
78 | ;sub xAX, xSI
|
---|
79 | ;jnb .backward
|
---|
80 | cmp xDI, xSI
|
---|
81 | jnb .backward
|
---|
82 |
|
---|
83 | ;
|
---|
84 | ; Fast forward copy.
|
---|
85 | ;
|
---|
86 | .fast_forward:
|
---|
87 | cld
|
---|
88 | %ifdef RT_ARCH_AMD64
|
---|
89 | shr rcx, 3
|
---|
90 | rep movsq
|
---|
91 | %else
|
---|
92 | shr ecx, 2
|
---|
93 | rep movsd
|
---|
94 | %endif
|
---|
95 |
|
---|
96 | ; The remaining bytes.
|
---|
97 | %ifdef RT_ARCH_AMD64
|
---|
98 | test dl, 4
|
---|
99 | jz .forward_dont_move_dword
|
---|
100 | movsd
|
---|
101 | %endif
|
---|
102 | .forward_dont_move_dword:
|
---|
103 | test dl, 2
|
---|
104 | jz .forward_dont_move_word
|
---|
105 | movsw
|
---|
106 | .forward_dont_move_word:
|
---|
107 | test dl, 1
|
---|
108 | jz .forward_dont_move_byte
|
---|
109 | movsb
|
---|
110 | .forward_dont_move_byte:
|
---|
111 |
|
---|
112 | %endif ; disabled
|
---|
113 |
|
---|
114 | ;
|
---|
115 | ; The epilog.
|
---|
116 | ;
|
---|
117 | .epilog:
|
---|
118 | %ifdef RT_ARCH_AMD64
|
---|
119 | %ifdef ASM_CALL64_MSC
|
---|
120 | mov rdi, r10
|
---|
121 | mov rsi, r11
|
---|
122 | %endif
|
---|
123 | %else
|
---|
124 | pop esi
|
---|
125 | pop edi
|
---|
126 | %endif
|
---|
127 | ret
|
---|
128 |
|
---|
129 | ;
|
---|
130 | ; Slow/simple backward copy.
|
---|
131 | ;
|
---|
132 | ALIGNCODE(16)
|
---|
133 | .backward:
|
---|
134 | ;; @todo check if they overlap.
|
---|
135 | lea xDI, [xDI + xCX - 1]
|
---|
136 | lea xSI, [xSI + xCX - 1]
|
---|
137 | std
|
---|
138 | rep movsb
|
---|
139 | cld
|
---|
140 | jmp .epilog
|
---|
141 | ENDPROC RT_NOCRT(memmove)
|
---|
142 |
|
---|