]> git.proxmox.com Git - mirror_edk2.git/blame - MdePkg/Library/BaseMemoryLibSse2/ia32/SetMem16.s
Fix capitalization issues
[mirror_edk2.git] / MdePkg / Library / BaseMemoryLibSse2 / ia32 / SetMem16.s
CommitLineData
3bc2b3af 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# SetMem16.asm
15#
16# Abstract:
17#
18# SetMem16 function
19#
20# Notes:
21#
22#------------------------------------------------------------------------------
23
24 .686:
25 #.MODEL flat,C
26 .xmm:
27 .code:
28
29#------------------------------------------------------------------------------
30# VOID *
31# _mem_SetMem16 (
32# IN VOID *Buffer,
33# IN UINTN Count,
34# IN UINT16 Value
35# )
36#------------------------------------------------------------------------------
37.global _InternalMemSetMem16
38_InternalMemSetMem16:
39 push %edi
40 movl 12(%esp), %edx
41 movl 8(%esp), %edi
42 xorl %ecx, %ecx
43 subl %edi, %ecx
44 andl $15, %ecx # ecx + edi aligns on 16-byte boundary
45 movl 16(%esp), %eax
46 jz L0
47 shrl %ecx
48 cmpl %edx, %ecx
49 cmova %edx, %ecx
50 subl %ecx, %edx
51 rep
52 stosw
53L0:
54 movl %edx, %ecx
55 andl $7, %edx
56 shrl $3, %ecx
57 jz @SetWords
58 movd %eax, %xmm0
59 pshuflw $0, %xmm0, %xmm0
60 movlhps %xmm0, %xmm0
61L1:
62 movntdq %xmm0, (%edi)
63 addl $16, %edi
64 loop L1
65 mfence
66@SetWords:
67 movl %edx, %ecx
68 rep
69 stosw
70 movl 8(%esp), %eax
71 pop %edi
72 ret