From cfe7789f6d8ccbfacf33327cca90a2da1bf0c69c Mon Sep 17 00:00:00 2001 From: Jordan Justen Date: Mon, 30 May 2016 18:52:06 -0700 Subject: [PATCH] MdePkg BaseMemoryLibMmx: Convert X64/ScanMem64.asm to NASM The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert X64/ScanMem64.asm to X64/ScanMem64.nasm Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Jordan Justen --- .../BaseMemoryLibMmx/BaseMemoryLibMmx.inf | 2 + .../BaseMemoryLibMmx/X64/ScanMem64.nasm | 55 +++++++++++++++++++ 2 files changed, 57 insertions(+) create mode 100644 MdePkg/Library/BaseMemoryLibMmx/X64/ScanMem64.nasm diff --git a/MdePkg/Library/BaseMemoryLibMmx/BaseMemoryLibMmx.inf b/MdePkg/Library/BaseMemoryLibMmx/BaseMemoryLibMmx.inf index fee9cae168..9471db3c84 100644 --- a/MdePkg/Library/BaseMemoryLibMmx/BaseMemoryLibMmx.inf +++ b/MdePkg/Library/BaseMemoryLibMmx/BaseMemoryLibMmx.inf @@ -98,6 +98,7 @@ [Sources.X64] X64/ZeroMem.nasm X64/ZeroMem.asm + X64/ScanMem64.nasm X64/ScanMem64.asm X64/ScanMem32.asm X64/ScanMem16.asm @@ -108,6 +109,7 @@ X64/SetMem16.asm X64/SetMem.asm X64/CopyMem.asm + X64/ScanMem64.nasm X64/ScanMem64.S X64/ScanMem32.S X64/ScanMem16.S diff --git a/MdePkg/Library/BaseMemoryLibMmx/X64/ScanMem64.nasm b/MdePkg/Library/BaseMemoryLibMmx/X64/ScanMem64.nasm new file mode 100644 index 0000000000..7efcf6a7bd --- /dev/null +++ b/MdePkg/Library/BaseMemoryLibMmx/X64/ScanMem64.nasm @@ -0,0 +1,55 @@ +;------------------------------------------------------------------------------ +; +; Copyright (c) 2006 - 2008, 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: +; +; ScanMem64.Asm +; +; Abstract: +; +; ScanMem64 function +; +; Notes: +; +; The following BaseMemoryLib instances contain the same copy of this file: +; +; BaseMemoryLibRepStr +; BaseMemoryLibMmx +; BaseMemoryLibSse2 +; BaseMemoryLibOptDxe +; BaseMemoryLibOptPei +; +;------------------------------------------------------------------------------ + + DEFAULT REL + SECTION .text + +;------------------------------------------------------------------------------ +; CONST VOID * +; EFIAPI +; InternalMemScanMem64 ( +; IN CONST VOID *Buffer, +; IN UINTN Length, +; IN UINT64 Value +; ); +;------------------------------------------------------------------------------ +global ASM_PFX(InternalMemScanMem64) +ASM_PFX(InternalMemScanMem64): + push rdi + mov rdi, rcx + mov rax, r8 + mov rcx, rdx + repne scasq + lea rax, [rdi - 8] + cmovnz rax, rcx + pop rdi + ret +