]> git.proxmox.com Git - mirror_edk2.git/blob - EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseMemoryLib/X64/ScanMem16.S
edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseMemoryLib/*:
[mirror_edk2.git] / EdkCompatibilityPkg / Foundation / Library / EdkIIGlueLib / Library / BaseMemoryLib / X64 / ScanMem16.S
1 #
2 # ConvertAsm.py: Automatically generated from ScanMem16.asm
3 #
4 #------------------------------------------------------------------------------
5 #
6 # Copyright (c) 2006, Intel Corporation
7 # All rights reserved. This program and the accompanying materials
8 # are licensed and made available under the terms and conditions of the BSD License
9 # which accompanies this distribution. The full text of the license may be found at
10 # http://opensource.org/licenses/bsd-license.php
11 #
12 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
14 #
15 # Module Name:
16 #
17 # ScanMem16.S
18 #
19 # Abstract:
20 #
21 # ScanMem16 function
22 #
23 # Notes:
24 #
25 # The following BaseMemoryLib instances share the same version of this file:
26 #
27 # BaseMemoryLibRepStr
28 # BaseMemoryLibMmx
29 # BaseMemoryLibSse2
30 #
31 #------------------------------------------------------------------------------
32
33
34 #------------------------------------------------------------------------------
35 # CONST VOID *
36 # EFIAPI
37 # InternalMemScanMem16 (
38 # IN CONST VOID *Buffer,
39 # IN UINTN Length,
40 # IN UINT16 Value
41 # );
42 #------------------------------------------------------------------------------
43 .intel_syntax
44 .globl _InternalMemScanMem16
45 _InternalMemScanMem16:
46 push rdi
47 mov rdi, rcx
48 mov rax, r8
49 mov rcx, rdx
50 repne scasw
51 lea rax, [rdi - 2]
52 cmovnz rax, rcx
53 pop rdi
54 ret
55