summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJordan Justen <jordan.l.justen@intel.com>2016-05-30 18:52:06 -0700
committerLiming Gao <liming.gao@intel.com>2016-06-28 09:50:23 +0800
commit9e3a12a1629b9a1e52df361498ab7456fdacae90 (patch)
tree97c7f98aed7e2f25115b44baff8073d1d4a6f822
parent761ff5711621e880b9aebbcfe5fe0a19ae41fc56 (diff)
downloadedk2-9e3a12a1629b9a1e52df361498ab7456fdacae90.tar.gz
edk2-9e3a12a1629b9a1e52df361498ab7456fdacae90.tar.bz2
edk2-9e3a12a1629b9a1e52df361498ab7456fdacae90.zip
MdePkg BaseMemoryLibMmx: Convert Ia32/SetMem64.asm to NASM
The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert Ia32/SetMem64.asm to Ia32/SetMem64.nasm Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
-rw-r--r--MdePkg/Library/BaseMemoryLibMmx/BaseMemoryLibMmx.inf2
-rw-r--r--MdePkg/Library/BaseMemoryLibMmx/Ia32/SetMem64.nasm46
2 files changed, 48 insertions, 0 deletions
diff --git a/MdePkg/Library/BaseMemoryLibMmx/BaseMemoryLibMmx.inf b/MdePkg/Library/BaseMemoryLibMmx/BaseMemoryLibMmx.inf
index 5d31b5db14..13cef610c2 100644
--- a/MdePkg/Library/BaseMemoryLibMmx/BaseMemoryLibMmx.inf
+++ b/MdePkg/Library/BaseMemoryLibMmx/BaseMemoryLibMmx.inf
@@ -60,6 +60,7 @@
Ia32/ScanMem8.S
Ia32/CompareMem.nasm
Ia32/CompareMem.S
+ Ia32/SetMem64.nasm
Ia32/SetMem64.S
Ia32/SetMem32.S
Ia32/SetMem16.S
@@ -76,6 +77,7 @@
Ia32/ScanMem8.asm
Ia32/CompareMem.nasm
Ia32/CompareMem.asm
+ Ia32/SetMem64.nasm
Ia32/SetMem64.asm
Ia32/SetMem32.asm
Ia32/SetMem16.asm
diff --git a/MdePkg/Library/BaseMemoryLibMmx/Ia32/SetMem64.nasm b/MdePkg/Library/BaseMemoryLibMmx/Ia32/SetMem64.nasm
new file mode 100644
index 0000000000..6dff64feac
--- /dev/null
+++ b/MdePkg/Library/BaseMemoryLibMmx/Ia32/SetMem64.nasm
@@ -0,0 +1,46 @@
+;------------------------------------------------------------------------------
+;
+; Copyright (c) 2006, Intel Corporation. All rights reserved.<BR>
+; 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:
+;
+; SetMem64.nasm
+;
+; Abstract:
+;
+; SetMem64 function
+;
+; Notes:
+;
+;------------------------------------------------------------------------------
+
+ SECTION .text
+
+;------------------------------------------------------------------------------
+; VOID *
+; EFIAPI
+; InternalMemSetMem64 (
+; IN VOID *Buffer,
+; IN UINTN Count,
+; IN UINT64 Value
+; )
+;------------------------------------------------------------------------------
+global ASM_PFX(InternalMemSetMem64)
+ASM_PFX(InternalMemSetMem64):
+ mov eax, [esp + 4]
+ mov ecx, [esp + 8]
+ movq mm0, [esp + 12]
+ mov edx, eax
+.0:
+ movq [edx], mm0
+ add edx, 8
+ loop .0
+ ret
+