]> git.proxmox.com Git - mirror_edk2.git/blame - MdePkg/Library/BaseMemoryLibRepStr/x64/ScanMem32.S
1. Change 0 == Length style to Length == 0
[mirror_edk2.git] / MdePkg / Library / BaseMemoryLibRepStr / x64 / ScanMem32.S
CommitLineData
bdfb1261 1#
2# ConvertAsm.py: Automatically generated from ScanMem32.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# ScanMem32.S
18#
19# Abstract:
20#
21# ScanMem32 function
22#
23# Notes:
24#
2bfb6009 25# The following BaseMemoryLib instances contain the same copy of this file:
bdfb1261 26#
27# BaseMemoryLibRepStr
28# BaseMemoryLibMmx
29# BaseMemoryLibSse2
2bfb6009
LG
30# BaseMemoryLibOptDxe
31# BaseMemoryLibOptPei
bdfb1261 32#
33#------------------------------------------------------------------------------
34
35
36#------------------------------------------------------------------------------
37# CONST VOID *
38# EFIAPI
39# InternalMemScanMem32 (
40# IN CONST VOID *Buffer,
41# IN UINTN Length,
42# IN UINT32 Value
43# );
44#------------------------------------------------------------------------------
45.intel_syntax
46.globl _InternalMemScanMem32
47_InternalMemScanMem32:
48 push rdi
49 mov rdi, rcx
50 mov rax, r8
51 mov rcx, rdx
52 repne scasd
53 lea rax, [rdi - 4]
54 cmovnz rax, rcx
55 pop rdi
56 ret
57