2007-10-30 01:06:27 +01:00
|
|
|
#
|
|
|
|
# ConvertAsm.py: Automatically generated from ScanMem32.asm
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Copyright (c) 2006, Intel Corporation
|
|
|
|
# All rights reserved. This program and the accompanying materials
|
|
|
|
# are licensed and made available under the terms and conditions of the BSD License
|
|
|
|
# which accompanies this distribution. The full text of the license may be found at
|
|
|
|
# http://opensource.org/licenses/bsd-license.php
|
|
|
|
#
|
|
|
|
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
|
|
#
|
|
|
|
# Module Name:
|
|
|
|
#
|
|
|
|
# ScanMem32.S
|
|
|
|
#
|
|
|
|
# Abstract:
|
|
|
|
#
|
|
|
|
# ScanMem32 function
|
|
|
|
#
|
|
|
|
# Notes:
|
|
|
|
#
|
2008-09-18 16:27:39 +02:00
|
|
|
# The following BaseMemoryLib instances contain the same copy of this file:
|
2007-10-30 01:06:27 +01:00
|
|
|
#
|
|
|
|
# BaseMemoryLibRepStr
|
|
|
|
# BaseMemoryLibMmx
|
|
|
|
# BaseMemoryLibSse2
|
2008-09-18 16:27:39 +02:00
|
|
|
# BaseMemoryLibOptDxe
|
|
|
|
# BaseMemoryLibOptPei
|
2007-10-30 01:06:27 +01:00
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------------
|
|
|
|
# CONST VOID *
|
|
|
|
# EFIAPI
|
|
|
|
# InternalMemScanMem32 (
|
|
|
|
# IN CONST VOID *Buffer,
|
|
|
|
# IN UINTN Length,
|
|
|
|
# IN UINT32 Value
|
|
|
|
# );
|
|
|
|
#------------------------------------------------------------------------------
|
2008-10-22 10:36:39 +02:00
|
|
|
.intel_syntax noprefix
|
|
|
|
.globl ASM_PFX(InternalMemScanMem32)
|
|
|
|
ASM_PFX(InternalMemScanMem32):
|
2007-10-30 01:06:27 +01:00
|
|
|
push rdi
|
|
|
|
mov rdi, rcx
|
|
|
|
mov rax, r8
|
|
|
|
mov rcx, rdx
|
|
|
|
repne scasd
|
|
|
|
lea rax, [rdi - 4]
|
|
|
|
cmovnz rax, rcx
|
|
|
|
pop rdi
|
|
|
|
ret
|
|
|
|
|