]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Library/BaseMemoryLibSse2/Ia32/SetMem32.asm
a7f1f0e127fc9d5ac6865a246c78cbca4d52b4ad
[mirror_edk2.git] / MdePkg / Library / BaseMemoryLibSse2 / Ia32 / SetMem32.asm
1 ;------------------------------------------------------------------------------
2 ;
3 ; Copyright (c) 2006, Intel Corporation
4 ; All rights reserved. This program and the accompanying materials
5 ; are licensed and made available under the terms and conditions of the BSD License
6 ; which accompanies this distribution. The full text of the license may be found at
7 ; http://opensource.org/licenses/bsd-license.php
8 ;
9 ; THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
10 ; WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
11 ;
12 ; Module Name:
13 ;
14 ; SetMem32.asm
15 ;
16 ; Abstract:
17 ;
18 ; SetMem32 function
19 ;
20 ; Notes:
21 ;
22 ;------------------------------------------------------------------------------
23
24 .686
25 .model flat,C
26 .xmm
27 .code
28
29 ;------------------------------------------------------------------------------
30 ; VOID *
31 ; _mem_SetMem32 (
32 ; IN VOID *Buffer,
33 ; IN UINTN Count,
34 ; IN UINT32 Value
35 ; )
36 ;------------------------------------------------------------------------------
37 InternalMemSetMem32 PROC USES edi
38 mov edx, [esp + 12]
39 mov edi, [esp + 8]
40 xor ecx, ecx
41 sub ecx, edi
42 and ecx, 15 ; ecx + edi aligns on 16-byte boundary
43 mov eax, [esp + 16]
44 jz @F
45 shr ecx, 2
46 cmp ecx, edx
47 cmova ecx, edx
48 sub edx, ecx
49 rep stosd
50 @@:
51 mov ecx, edx
52 and edx, 3
53 shr ecx, 2
54 jz @SetDwords
55 movd xmm0, eax
56 pshufd xmm0, xmm0, 0
57 @@:
58 movntdq [edi], xmm0
59 add edi, 16
60 loop @B
61 mfence
62 @SetDwords:
63 mov ecx, edx
64 rep stosd
65 mov eax, [esp + 8]
66 ret
67 InternalMemSetMem32 ENDP
68
69 END