]> git.proxmox.com Git - mirror_edk2.git/log
mirror_edk2.git
7 years agoUefiCpuPkg PiSmmCpuDxeSmm: Convert X64/SmiEntry.asm to NASM
Liming Gao [Tue, 14 Jun 2016 08:35:57 +0000 (16:35 +0800)]
UefiCpuPkg PiSmmCpuDxeSmm: Convert X64/SmiEntry.asm to NASM

Manually convert X64/SmiEntry.asm to X64/SmiEntry.nasm

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Liming Gao <liming.gao@intel.com>
7 years agoUefiCpuPkg PiSmmCpuDxeSmm: Update X64/MpFuncs.nasm
Liming Gao [Tue, 14 Jun 2016 08:35:08 +0000 (16:35 +0800)]
UefiCpuPkg PiSmmCpuDxeSmm: Update X64/MpFuncs.nasm

Use 16bit and 32bit assembly code to replace hard code db.

In V2: add 0x67 prefixes to far jumps

Without the a32 modifier under FLAT32_JUMP, and the a16 modifier under
LONG_JUMP, nasm doesn't generate the 0x67 prefixes, and the far jumps
don't work. (For the former, KVM returns an emulation failure. For the
latter, KVM performs a triple fault (guest reboot).) By forcing the 0x67
prefixes we end up with the same machine code as the one open-coded in
"MpFuncs.asm".

This bug breaks S3 resume in the Ia32X64 + SMM_REQUIRE build of OVMF.

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Liming Gao <liming.gao@intel.com>
Signed-off-by: Laszlo Ersek <lersek@redhat.com>
7 years agoUefiCpuPkg PiSmmCpuDxeSmm: Convert X64/MpFuncs.asm to NASM
Liming Gao [Tue, 14 Jun 2016 08:31:13 +0000 (16:31 +0800)]
UefiCpuPkg PiSmmCpuDxeSmm: Convert X64/MpFuncs.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
X64/MpFuncs.asm to X64/MpFuncs.nasm
And, manually update it to pass build.

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Liming Gao <liming.gao@intel.com>
7 years agoUefiCpuPkg PiSmmCpuDxeSmm: Convert Ia32/SmmInit.asm to NASM
Liming Gao [Tue, 14 Jun 2016 08:29:40 +0000 (16:29 +0800)]
UefiCpuPkg PiSmmCpuDxeSmm: Convert Ia32/SmmInit.asm to NASM

Manually convert Ia32/SmmInit.asm to Ia32/SmmInit.nasm

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Liming Gao <liming.gao@intel.com>
7 years agoUefiCpuPkg PiSmmCpuDxeSmm: Convert Ia32/SmiException.asm to NASM
Liming Gao [Tue, 14 Jun 2016 08:29:11 +0000 (16:29 +0800)]
UefiCpuPkg PiSmmCpuDxeSmm: Convert Ia32/SmiException.asm to NASM

Manually convert Ia32/SmiException.asm to Ia32/SmiException.nasm

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Liming Gao <liming.gao@intel.com>
7 years agoUefiCpuPkg PiSmmCpuDxeSmm: Convert Ia32/SmiEntry.asm to NASM
Liming Gao [Tue, 14 Jun 2016 08:28:14 +0000 (16:28 +0800)]
UefiCpuPkg PiSmmCpuDxeSmm: Convert Ia32/SmiEntry.asm to NASM

Manually convert Ia32/SmiEntry.asm to Ia32/SmiEntry.nasm

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Liming Gao <liming.gao@intel.com>
7 years agoUefiCpuPkg PiSmmCpuDxeSmm: Update Ia32/MpFuncs.nasm
Liming Gao [Tue, 14 Jun 2016 08:26:46 +0000 (16:26 +0800)]
UefiCpuPkg PiSmmCpuDxeSmm: Update Ia32/MpFuncs.nasm

Use 16bit assembly code to replace hard code db.

In V2:
Add 0x67 prefix to far jump

When we enter protected mode, with the far jump still in big real mode,
the JMP instruction not only needs the 0x66 prefix (for 32-bit operand
size), but also the 0x67 prefix (for 32-bit address size). Use the a32
nasm modifier to enforce this.

This bug breaks S3 resume in the Ia32 + SMM_REQUIRE build of OVMF.

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Liming Gao <liming.gao@intel.com>
Signed-off-by: Laszlo Ersek <lersek@redhat.com>
7 years agoUefiCpuPkg PiSmmCpuDxeSmm: Convert Ia32/MpFuncs.asm to NASM
Liming Gao [Tue, 14 Jun 2016 08:24:02 +0000 (16:24 +0800)]
UefiCpuPkg PiSmmCpuDxeSmm: Convert Ia32/MpFuncs.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
Ia32/MpFuncs.asm to Ia32/MpFuncs.nasm.
And, manually update it to pass build.

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Liming Gao <liming.gao@intel.com>
7 years agoUefiCpuPkg S3Resume2Pei: Add nasm source file into INF file.
Liming Gao [Tue, 14 Jun 2016 08:21:44 +0000 (16:21 +0800)]
UefiCpuPkg S3Resume2Pei: Add nasm source file into INF file.

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Liming Gao <liming.gao@intel.com>
7 years agoUefiCpuPkg S3Resume2Pei: Convert X64/AsmFuncs.asm to NASM
Liming Gao [Tue, 14 Jun 2016 08:21:08 +0000 (16:21 +0800)]
UefiCpuPkg S3Resume2Pei: Convert X64/AsmFuncs.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
X64/AsmFuncs.asm to X64/AsmFuncs.nasm.
And, manually add o16 prefix to specify 16bit operation.

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Liming Gao <liming.gao@intel.com>
7 years agoUefiCpuPkg S3Resume2Pei: Convert Ia32/AsmFuncs.asm to NASM
Liming Gao [Tue, 14 Jun 2016 08:20:18 +0000 (16:20 +0800)]
UefiCpuPkg S3Resume2Pei: Convert Ia32/AsmFuncs.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
Ia32/AsmFuncs.asm to Ia32/AsmFuncs.nasm.
And, manually add o16 prefix to specify 16bit operation.

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Liming Gao <liming.gao@intel.com>
7 years agoUefiCpuPkg CpuExceptionHandlerLib: Add nasm source files into INF files.
Liming Gao [Tue, 14 Jun 2016 08:15:13 +0000 (16:15 +0800)]
UefiCpuPkg CpuExceptionHandlerLib: Add nasm source files into INF files.

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Liming Gao <liming.gao@intel.com>
7 years agoUefiCpuPkg CpuExceptionHandlerLib:Convert X64/ExceptionHandlerAsm.asm to NASM
Liming Gao [Tue, 14 Jun 2016 08:12:10 +0000 (16:12 +0800)]
UefiCpuPkg CpuExceptionHandlerLib:Convert X64/ExceptionHandlerAsm.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
X64/ExceptionHandlerAsm.asm to X64/ExceptionHandlerAsm.nasm.
Then, manually update nasm to pass build.

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Liming Gao <liming.gao@intel.com>
7 years agoUefiCpuPkg CpuExceptionHandlerLib:Convert Ia32/ExceptionHandlerAsm.asm to NASM
Liming Gao [Tue, 14 Jun 2016 08:11:24 +0000 (16:11 +0800)]
UefiCpuPkg CpuExceptionHandlerLib:Convert Ia32/ExceptionHandlerAsm.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
Ia32/ExceptionHandlerAsm.asm to Ia32/ExceptionHandlerAsm.nasm.
Then, manually update nasm to pass build.

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Liming Gao <liming.gao@intel.com>
7 years agoUefiCpuPkg BaseUefiCpuLib: Add nasm source file in BaseUefiCpuLib.inf
Liming Gao [Tue, 14 Jun 2016 08:08:46 +0000 (16:08 +0800)]
UefiCpuPkg BaseUefiCpuLib: Add nasm source file in BaseUefiCpuLib.inf

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Liming Gao <liming.gao@intel.com>
7 years agoUefiCpuPkg BaseUefiCpuLib: Convert X64/InitializeFpu.asm to NASM
Liming Gao [Tue, 14 Jun 2016 07:59:02 +0000 (15:59 +0800)]
UefiCpuPkg BaseUefiCpuLib: Convert X64/InitializeFpu.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
X64/InitializeFpu.asm to X64/InitializeFpu.nasm.
And, manually add .rdata section.

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Liming Gao <liming.gao@intel.com>
7 years agoUefiCpuPkg BaseUefiCpuLib: Convert Ia32/InitializeFpu.asm to NASM
Liming Gao [Tue, 14 Jun 2016 07:58:31 +0000 (15:58 +0800)]
UefiCpuPkg BaseUefiCpuLib: Convert Ia32/InitializeFpu.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
Ia32/InitializeFpu.asm to Ia32/InitializeFpu.nasm.
And, manually add .rdata section.

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Liming Gao <liming.gao@intel.com>
7 years agoUefiCpuPkg CpuDxe: Add nasm source file in CpuDxe.inf
Liming Gao [Tue, 14 Jun 2016 07:43:44 +0000 (15:43 +0800)]
UefiCpuPkg CpuDxe: Add nasm source file in CpuDxe.inf

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Liming Gao <liming.gao@intel.com>
7 years agoUefiCpuPkg CpuDxe: Convert Ia32/CpuAsm.asm to NASM
Liming Gao [Tue, 14 Jun 2016 07:42:46 +0000 (15:42 +0800)]
UefiCpuPkg CpuDxe: Convert Ia32/CpuAsm.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
Ia32/CpuAsm.asm to Ia32/CpuAsm.nasm

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Liming Gao <liming.gao@intel.com>
7 years agoIntelFsp2WrapperPkg SecFspWrapperPlatformSecLibSample: Convert ASM to NASM
Liming Gao [Wed, 8 Jun 2016 09:54:45 +0000 (17:54 +0800)]
IntelFsp2WrapperPkg SecFspWrapperPlatformSecLibSample: Convert ASM to NASM

Manually converts Ia32/PeiCoreEntry.asm, Ia32/SecEntry.asm and Ia32/Stack.asm
to Ia32/PeiCoreEntry.nasm, Ia32/SecEntry.nasm and Ia32/Stack.nasm.

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Liming Gao <liming.gao@intel.com>
7 years agoIntelFsp2WrapperPkg BaseFspWrapperApiLib: Convert X64/Thunk64To32.asm to NASM
Liming Gao [Wed, 8 Jun 2016 09:51:15 +0000 (17:51 +0800)]
IntelFsp2WrapperPkg BaseFspWrapperApiLib: Convert X64/Thunk64To32.asm to NASM

Manually convert X64/Thunk64To32.asm to X64/Thunk64To32.nasm

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Liming Gao <liming.gao@intel.com>
7 years agoIntelFsp2Pkg SecFspSecPlatformLibNull: Convert Ia32/Flat32.asm to NASM
Liming Gao [Wed, 8 Jun 2016 09:02:21 +0000 (17:02 +0800)]
IntelFsp2Pkg SecFspSecPlatformLibNull: Convert Ia32/Flat32.asm to NASM

Manually convert Ia32/Flat32.asm to Ia32/Flat32.nasm

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Liming Gao <liming.gao@intel.com>
7 years agoIntelFsp2Pkg SecFspSecPlatformLibNull: Convert Ia32/SecCarInit.asm to NASM
Liming Gao [Wed, 8 Jun 2016 09:01:33 +0000 (17:01 +0800)]
IntelFsp2Pkg SecFspSecPlatformLibNull: Convert Ia32/SecCarInit.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
Ia32/SecCarInit.asm to Ia32/SecCarInit.nasm

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Liming Gao <liming.gao@intel.com>
7 years agoIntelFsp2Pkg BaseFspSwitchStackLib: Convert Ia32/Stack.asm to NASM
Liming Gao [Wed, 8 Jun 2016 09:00:25 +0000 (17:00 +0800)]
IntelFsp2Pkg BaseFspSwitchStackLib: Convert Ia32/Stack.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
Ia32/Stack.asm to Ia32/Stack.nasm

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Liming Gao <liming.gao@intel.com>
7 years agoIntelFsp2Pkg BaseFspDebugLibSerialPort: Convert Ia32/FspDebug.asm to NASM
Liming Gao [Wed, 8 Jun 2016 08:58:47 +0000 (16:58 +0800)]
IntelFsp2Pkg BaseFspDebugLibSerialPort: Convert Ia32/FspDebug.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
Ia32/FspDebug.asm to Ia32/FspDebug.nasm

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Liming Gao <liming.gao@intel.com>
7 years agoMdeModulePkg BootScriptExecutorDxe: Convert X64/S3Asm.asm to NASM
Liming Gao [Sun, 12 Jun 2016 08:25:27 +0000 (16:25 +0800)]
MdeModulePkg BootScriptExecutorDxe: Convert X64/S3Asm.asm to NASM

Use real nasm instruction to replace DB bytes.

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Liming Gao <liming.gao@intel.com>
7 years agoMdeModulePkg BootScriptExecutorDxe: Convert X64/S3Asm.asm to NASM
Jordan Justen [Tue, 31 May 2016 01:52:18 +0000 (18:52 -0700)]
MdeModulePkg BootScriptExecutorDxe: Convert X64/S3Asm.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
X64/S3Asm.asm to X64/S3Asm.nasm

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
7 years agoMdeModulePkg BootScriptExecutorDxe: Convert IA32/S3Asm.asm to NASM
Liming Gao [Sun, 12 Jun 2016 08:25:20 +0000 (16:25 +0800)]
MdeModulePkg BootScriptExecutorDxe: Convert IA32/S3Asm.asm to NASM

Use real nasm instruction to replace DB bytes.

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Liming Gao <liming.gao@intel.com>
7 years agoMdeModulePkg BootScriptExecutorDxe: Convert IA32/S3Asm.asm to NASM
Jordan Justen [Tue, 31 May 2016 01:52:18 +0000 (18:52 -0700)]
MdeModulePkg BootScriptExecutorDxe: Convert IA32/S3Asm.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
IA32/S3Asm.asm to IA32/S3Asm.nasm

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
7 years agoMdeModulePkg EbcDxe: Convert X64/EbcLowLevel.asm to NASM
Jordan Justen [Tue, 31 May 2016 01:52:18 +0000 (18:52 -0700)]
MdeModulePkg EbcDxe: Convert X64/EbcLowLevel.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
X64/EbcLowLevel.asm to X64/EbcLowLevel.nasm

And, manually update nasm code to use mov rcx, dword value and generate
the same assembly code with rcx register to asm code.

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
7 years agoMdeModulePkg EbcDxe: Convert Ia32/EbcLowLevel.asm to NASM
Jordan Justen [Tue, 31 May 2016 01:52:18 +0000 (18:52 -0700)]
MdeModulePkg EbcDxe: Convert Ia32/EbcLowLevel.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
Ia32/EbcLowLevel.asm to Ia32/EbcLowLevel.nasm

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
7 years agoMdeModulePkg DebugSupportDxe: Convert X64/AsmFuncs.asm to NASM
Jordan Justen [Sat, 25 Oct 2014 21:48:26 +0000 (14:48 -0700)]
MdeModulePkg DebugSupportDxe: Convert X64/AsmFuncs.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
X64/AsmFuncs.asm to X64/AsmFuncs.nasm

Note: Also applied many manual cleanups where conversion script failed

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
Cc: Feng Tian <feng.tian@intel.com>
Cc: Star Zeng <star.zeng@intel.com>
7 years agoMdeModulePkg DebugSupportDxe: Convert Ia32/AsmFuncs.asm to NASM
Jordan Justen [Sat, 25 Oct 2014 21:48:26 +0000 (14:48 -0700)]
MdeModulePkg DebugSupportDxe: Convert Ia32/AsmFuncs.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
Ia32/AsmFuncs.asm to Ia32/AsmFuncs.nasm

Note: Also applied many manual cleanups where conversion script failed
And, update Vect2Desc() to be same to original logic

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
Cc: Feng Tian <feng.tian@intel.com>
Cc: Star Zeng <star.zeng@intel.com>
7 years agoMdeModulePkg CapsulePei: Convert X64/PageFaultHandler.asm to NASM
Jordan Justen [Tue, 31 May 2016 01:52:18 +0000 (18:52 -0700)]
MdeModulePkg CapsulePei: Convert X64/PageFaultHandler.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
X64/PageFaultHandler.asm to X64/PageFaultHandler.nasm

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
7 years agoMdeModulePkg DxeIplPeim: Convert Ia32/IdtVectorAsm.asm to NASM
Jordan Justen [Fri, 31 Oct 2014 08:18:48 +0000 (01:18 -0700)]
MdeModulePkg DxeIplPeim: Convert Ia32/IdtVectorAsm.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
Ia32/IdtVectorAsm.asm to Ia32/IdtVectorAsm.nasm

Note: Manually updated code storing @VectorTemplateBase address

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
Cc: Feng Tian <feng.tian@intel.com>
Cc: Star Zeng <star.zeng@intel.com>
7 years agoMdeModulePkg EbcDxe: Use NASM compatible syntax
Jordan Justen [Thu, 16 Oct 2014 14:57:03 +0000 (07:57 -0700)]
MdeModulePkg EbcDxe: Use NASM compatible syntax

Without this change, after converting this code to NASM, this error
will be reported:
error: comma or end of line expected

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
Cc: Feng Tian <feng.tian@intel.com>
Cc: Star Zeng <star.zeng@intel.com>
7 years agoMdeModulePkg BootScriptExecutorDxe: EXTERNDEF=>PUBLIC in S3Asm
Jordan Justen [Thu, 16 Oct 2014 05:55:36 +0000 (22:55 -0700)]
MdeModulePkg BootScriptExecutorDxe: EXTERNDEF=>PUBLIC in S3Asm

NASM doesn't support EXTERNDEF, so convert this to PUBLIC.

This will make it easier to convert this code to NASM using an
automated script.

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
Cc: Feng Tian <feng.tian@intel.com>
Cc: Star Zeng <star.zeng@intel.com>
7 years agoMdeModulePkg BootScriptExecutorDxe: Use NASM compatible syntax
Jordan Justen [Thu, 16 Oct 2014 14:57:03 +0000 (07:57 -0700)]
MdeModulePkg BootScriptExecutorDxe: Use NASM compatible syntax

Without this change, after converting this code to NASM, this error
will be reported:
error: invalid combination of opcode and operands

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
Cc: Feng Tian <feng.tian@intel.com>
Cc: Star Zeng <star.zeng@intel.com>
7 years agoMdePkg BaseLib: Convert Ia32/DisablePaging32.asm to NASM
Liming Gao [Sun, 12 Jun 2016 08:13:28 +0000 (16:13 +0800)]
MdePkg BaseLib: Convert Ia32/DisablePaging32.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
Ia32/DisablePaging32.asm to Ia32/DisablePaging32.nasm

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
7 years agoMdePkg BaseSynchronizationLib: Convert X64/InterlockedIncrement.asm to NASM
Jordan Justen [Tue, 31 May 2016 01:52:14 +0000 (18:52 -0700)]
MdePkg BaseSynchronizationLib: Convert X64/InterlockedIncrement.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
X64/InterlockedIncrement.asm to X64/InterlockedIncrement.nasm

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
7 years agoMdePkg BaseSynchronizationLib: Convert X64/InterlockedDecrement.asm to NASM
Jordan Justen [Tue, 31 May 2016 01:52:14 +0000 (18:52 -0700)]
MdePkg BaseSynchronizationLib: Convert X64/InterlockedDecrement.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
X64/InterlockedDecrement.asm to X64/InterlockedDecrement.nasm

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
7 years agoMdePkg BaseSynchronizationLib: Convert X64/InterlockedCompareExchange16.asm to NASM
Jordan Justen [Tue, 31 May 2016 01:52:14 +0000 (18:52 -0700)]
MdePkg BaseSynchronizationLib: Convert X64/InterlockedCompareExchange16.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
X64/InterlockedCompareExchange16.asm to X64/InterlockedCompareExchange16.nasm

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
7 years agoMdePkg BaseSynchronizationLib: Convert X64/InterlockedCompareExchange32.asm to NASM
Jordan Justen [Tue, 31 May 2016 01:52:14 +0000 (18:52 -0700)]
MdePkg BaseSynchronizationLib: Convert X64/InterlockedCompareExchange32.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
X64/InterlockedCompareExchange32.asm to X64/InterlockedCompareExchange32.nasm

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
7 years agoMdePkg BaseSynchronizationLib: Convert X64/InterlockedCompareExchange64.asm to NASM
Jordan Justen [Tue, 31 May 2016 01:52:14 +0000 (18:52 -0700)]
MdePkg BaseSynchronizationLib: Convert X64/InterlockedCompareExchange64.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
X64/InterlockedCompareExchange64.asm to X64/InterlockedCompareExchange64.nasm

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
7 years agoMdePkg BaseSynchronizationLib: Convert Ia32/InterlockedIncrement.asm to NASM
Jordan Justen [Tue, 31 May 2016 01:52:14 +0000 (18:52 -0700)]
MdePkg BaseSynchronizationLib: Convert Ia32/InterlockedIncrement.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
Ia32/InterlockedIncrement.asm to Ia32/InterlockedIncrement.nasm

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
7 years agoMdePkg BaseSynchronizationLib: Convert Ia32/InterlockedDecrement.asm to NASM
Jordan Justen [Tue, 31 May 2016 01:52:13 +0000 (18:52 -0700)]
MdePkg BaseSynchronizationLib: Convert Ia32/InterlockedDecrement.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
Ia32/InterlockedDecrement.asm to Ia32/InterlockedDecrement.nasm

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
7 years agoMdePkg BaseSynchronizationLib: Convert Ia32/InterlockedCompareExchange16.asm to NASM
Jordan Justen [Tue, 31 May 2016 01:52:13 +0000 (18:52 -0700)]
MdePkg BaseSynchronizationLib: Convert Ia32/InterlockedCompareExchange16.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
Ia32/InterlockedCompareExchange16.asm to Ia32/InterlockedCompareExchange16.nasm

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
7 years agoMdePkg BaseSynchronizationLib: Convert Ia32/InterlockedCompareExchange32.asm to NASM
Jordan Justen [Tue, 31 May 2016 01:52:13 +0000 (18:52 -0700)]
MdePkg BaseSynchronizationLib: Convert Ia32/InterlockedCompareExchange32.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
Ia32/InterlockedCompareExchange32.asm to Ia32/InterlockedCompareExchange32.nasm

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
7 years agoMdePkg BaseSynchronizationLib: Convert Ia32/InterlockedCompareExchange64.asm to NASM
Jordan Justen [Tue, 31 May 2016 01:52:13 +0000 (18:52 -0700)]
MdePkg BaseSynchronizationLib: Convert Ia32/InterlockedCompareExchange64.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
Ia32/InterlockedCompareExchange64.asm to Ia32/InterlockedCompareExchange64.nasm

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
7 years agoMdePkg BaseCpuLib: Convert X64/CpuSleep.asm to NASM
Jordan Justen [Tue, 31 May 2016 01:52:13 +0000 (18:52 -0700)]
MdePkg BaseCpuLib: Convert X64/CpuSleep.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
X64/CpuSleep.asm to X64/CpuSleep.nasm

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
7 years agoMdePkg BaseCpuLib: Convert X64/CpuFlushTlb.asm to NASM
Jordan Justen [Tue, 31 May 2016 01:52:13 +0000 (18:52 -0700)]
MdePkg BaseCpuLib: Convert X64/CpuFlushTlb.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
X64/CpuFlushTlb.asm to X64/CpuFlushTlb.nasm

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
7 years agoMdePkg BaseCpuLib: Convert Ia32/CpuFlushTlb.asm to NASM
Jordan Justen [Tue, 31 May 2016 01:52:13 +0000 (18:52 -0700)]
MdePkg BaseCpuLib: Convert Ia32/CpuFlushTlb.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
Ia32/CpuFlushTlb.asm to Ia32/CpuFlushTlb.nasm

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
7 years agoMdePkg BaseCpuLib: Convert Ia32/CpuSleep.asm to NASM
Jordan Justen [Tue, 31 May 2016 01:52:13 +0000 (18:52 -0700)]
MdePkg BaseCpuLib: Convert Ia32/CpuSleep.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
Ia32/CpuSleep.asm to Ia32/CpuSleep.nasm

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
7 years agoMdePkg BaseMemoryLibSse2: Convert X64/CopyMem.asm to NASM
Jordan Justen [Tue, 31 May 2016 01:52:13 +0000 (18:52 -0700)]
MdePkg BaseMemoryLibSse2: Convert X64/CopyMem.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
X64/CopyMem.asm to X64/CopyMem.nasm

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
7 years agoMdePkg BaseMemoryLibSse2: Convert X64/SetMem.asm to NASM
Jordan Justen [Tue, 31 May 2016 01:52:13 +0000 (18:52 -0700)]
MdePkg BaseMemoryLibSse2: Convert X64/SetMem.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
X64/SetMem.asm to X64/SetMem.nasm

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
7 years agoMdePkg BaseMemoryLibSse2: Convert X64/SetMem16.asm to NASM
Jordan Justen [Tue, 31 May 2016 01:52:13 +0000 (18:52 -0700)]
MdePkg BaseMemoryLibSse2: Convert X64/SetMem16.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
X64/SetMem16.asm to X64/SetMem16.nasm

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
7 years agoMdePkg BaseMemoryLibSse2: Convert X64/SetMem32.asm to NASM
Jordan Justen [Tue, 31 May 2016 01:52:13 +0000 (18:52 -0700)]
MdePkg BaseMemoryLibSse2: Convert X64/SetMem32.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
X64/SetMem32.asm to X64/SetMem32.nasm

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
7 years agoMdePkg BaseMemoryLibSse2: Convert X64/SetMem64.asm to NASM
Jordan Justen [Tue, 31 May 2016 01:52:13 +0000 (18:52 -0700)]
MdePkg BaseMemoryLibSse2: Convert X64/SetMem64.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
X64/SetMem64.asm to X64/SetMem64.nasm

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
7 years agoMdePkg BaseMemoryLibSse2: Convert X64/ZeroMem.asm to NASM
Jordan Justen [Tue, 31 May 2016 01:52:13 +0000 (18:52 -0700)]
MdePkg BaseMemoryLibSse2: Convert X64/ZeroMem.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
X64/ZeroMem.asm to X64/ZeroMem.nasm

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
7 years agoMdePkg BaseMemoryLibSse2: Convert X64/CompareMem.asm to NASM
Jordan Justen [Tue, 31 May 2016 01:52:12 +0000 (18:52 -0700)]
MdePkg BaseMemoryLibSse2: Convert X64/CompareMem.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
X64/CompareMem.asm to X64/CompareMem.nasm

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
7 years agoMdePkg BaseMemoryLibSse2: Convert X64/ScanMem8.asm to NASM
Jordan Justen [Tue, 31 May 2016 01:52:12 +0000 (18:52 -0700)]
MdePkg BaseMemoryLibSse2: Convert X64/ScanMem8.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
X64/ScanMem8.asm to X64/ScanMem8.nasm

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
7 years agoMdePkg BaseMemoryLibSse2: Convert X64/ScanMem16.asm to NASM
Jordan Justen [Tue, 31 May 2016 01:52:12 +0000 (18:52 -0700)]
MdePkg BaseMemoryLibSse2: Convert X64/ScanMem16.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
X64/ScanMem16.asm to X64/ScanMem16.nasm

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
7 years agoMdePkg BaseMemoryLibSse2: Convert X64/ScanMem32.asm to NASM
Jordan Justen [Tue, 31 May 2016 01:52:12 +0000 (18:52 -0700)]
MdePkg BaseMemoryLibSse2: Convert X64/ScanMem32.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
X64/ScanMem32.asm to X64/ScanMem32.nasm

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
7 years agoMdePkg BaseMemoryLibSse2: Convert X64/ScanMem64.asm to NASM
Jordan Justen [Tue, 31 May 2016 01:52:12 +0000 (18:52 -0700)]
MdePkg BaseMemoryLibSse2: 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 <jordan.l.justen@intel.com>
7 years agoMdePkg BaseMemoryLibSse2: Convert Ia32/CopyMem.asm to NASM
Jordan Justen [Tue, 31 May 2016 01:52:12 +0000 (18:52 -0700)]
MdePkg BaseMemoryLibSse2: Convert Ia32/CopyMem.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
Ia32/CopyMem.asm to Ia32/CopyMem.nasm

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
7 years agoMdePkg BaseMemoryLibSse2: Convert Ia32/SetMem.asm to NASM
Jordan Justen [Tue, 31 May 2016 01:52:12 +0000 (18:52 -0700)]
MdePkg BaseMemoryLibSse2: Convert Ia32/SetMem.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
Ia32/SetMem.asm to Ia32/SetMem.nasm

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
7 years agoMdePkg BaseMemoryLibSse2: Convert Ia32/SetMem16.asm to NASM
Jordan Justen [Tue, 31 May 2016 01:52:12 +0000 (18:52 -0700)]
MdePkg BaseMemoryLibSse2: Convert Ia32/SetMem16.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
Ia32/SetMem16.asm to Ia32/SetMem16.nasm

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
7 years agoMdePkg BaseMemoryLibSse2: Convert Ia32/SetMem32.asm to NASM
Jordan Justen [Tue, 31 May 2016 01:52:12 +0000 (18:52 -0700)]
MdePkg BaseMemoryLibSse2: Convert Ia32/SetMem32.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
Ia32/SetMem32.asm to Ia32/SetMem32.nasm

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
7 years agoMdePkg BaseMemoryLibSse2: Convert Ia32/SetMem64.asm to NASM
Jordan Justen [Tue, 31 May 2016 01:52:12 +0000 (18:52 -0700)]
MdePkg BaseMemoryLibSse2: 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>
7 years agoMdePkg BaseMemoryLibSse2: Convert Ia32/ZeroMem.asm to NASM
Jordan Justen [Tue, 31 May 2016 01:52:12 +0000 (18:52 -0700)]
MdePkg BaseMemoryLibSse2: Convert Ia32/ZeroMem.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
Ia32/ZeroMem.asm to Ia32/ZeroMem.nasm

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
7 years agoMdePkg BaseMemoryLibSse2: Convert Ia32/CompareMem.asm to NASM
Jordan Justen [Tue, 31 May 2016 01:52:12 +0000 (18:52 -0700)]
MdePkg BaseMemoryLibSse2: Convert Ia32/CompareMem.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
Ia32/CompareMem.asm to Ia32/CompareMem.nasm

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
7 years agoMdePkg BaseMemoryLibSse2: Convert Ia32/ScanMem8.asm to NASM
Jordan Justen [Tue, 31 May 2016 01:52:12 +0000 (18:52 -0700)]
MdePkg BaseMemoryLibSse2: Convert Ia32/ScanMem8.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
Ia32/ScanMem8.asm to Ia32/ScanMem8.nasm

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
7 years agoMdePkg BaseMemoryLibSse2: Convert Ia32/ScanMem16.asm to NASM
Jordan Justen [Tue, 31 May 2016 01:52:12 +0000 (18:52 -0700)]
MdePkg BaseMemoryLibSse2: Convert Ia32/ScanMem16.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
Ia32/ScanMem16.asm to Ia32/ScanMem16.nasm

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
7 years agoMdePkg BaseMemoryLibSse2: Convert Ia32/ScanMem32.asm to NASM
Jordan Justen [Tue, 31 May 2016 01:52:11 +0000 (18:52 -0700)]
MdePkg BaseMemoryLibSse2: Convert Ia32/ScanMem32.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
Ia32/ScanMem32.asm to Ia32/ScanMem32.nasm

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
7 years agoMdePkg BaseMemoryLibSse2: Convert Ia32/ScanMem64.asm to NASM
Jordan Justen [Tue, 31 May 2016 01:52:11 +0000 (18:52 -0700)]
MdePkg BaseMemoryLibSse2: Convert Ia32/ScanMem64.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
Ia32/ScanMem64.asm to Ia32/ScanMem64.nasm

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
7 years agoMdePkg BaseMemoryLibRepStr: Convert X64/CopyMem.asm to NASM
Jordan Justen [Tue, 31 May 2016 01:52:11 +0000 (18:52 -0700)]
MdePkg BaseMemoryLibRepStr: Convert X64/CopyMem.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
X64/CopyMem.asm to X64/CopyMem.nasm

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
7 years agoMdePkg BaseMemoryLibRepStr: Convert X64/SetMem.asm to NASM
Jordan Justen [Tue, 31 May 2016 01:52:11 +0000 (18:52 -0700)]
MdePkg BaseMemoryLibRepStr: Convert X64/SetMem.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
X64/SetMem.asm to X64/SetMem.nasm

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
7 years agoMdePkg BaseMemoryLibRepStr: Convert X64/SetMem16.asm to NASM
Jordan Justen [Tue, 31 May 2016 01:52:11 +0000 (18:52 -0700)]
MdePkg BaseMemoryLibRepStr: Convert X64/SetMem16.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
X64/SetMem16.asm to X64/SetMem16.nasm

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
7 years agoMdePkg BaseMemoryLibRepStr: Convert X64/SetMem32.asm to NASM
Jordan Justen [Tue, 31 May 2016 01:52:11 +0000 (18:52 -0700)]
MdePkg BaseMemoryLibRepStr: Convert X64/SetMem32.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
X64/SetMem32.asm to X64/SetMem32.nasm

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
7 years agoMdePkg BaseMemoryLibRepStr: Convert X64/SetMem64.asm to NASM
Jordan Justen [Tue, 31 May 2016 01:52:11 +0000 (18:52 -0700)]
MdePkg BaseMemoryLibRepStr: Convert X64/SetMem64.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
X64/SetMem64.asm to X64/SetMem64.nasm

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
7 years agoMdePkg BaseMemoryLibRepStr: Convert X64/ZeroMem.asm to NASM
Jordan Justen [Tue, 31 May 2016 01:52:11 +0000 (18:52 -0700)]
MdePkg BaseMemoryLibRepStr: Convert X64/ZeroMem.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
X64/ZeroMem.asm to X64/ZeroMem.nasm

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
7 years agoMdePkg BaseMemoryLibRepStr: Convert X64/CompareMem.asm to NASM
Jordan Justen [Tue, 31 May 2016 01:52:11 +0000 (18:52 -0700)]
MdePkg BaseMemoryLibRepStr: Convert X64/CompareMem.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
X64/CompareMem.asm to X64/CompareMem.nasm

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
7 years agoMdePkg BaseMemoryLibRepStr: Convert X64/ScanMem8.asm to NASM
Jordan Justen [Tue, 31 May 2016 01:52:11 +0000 (18:52 -0700)]
MdePkg BaseMemoryLibRepStr: Convert X64/ScanMem8.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
X64/ScanMem8.asm to X64/ScanMem8.nasm

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
7 years agoMdePkg BaseMemoryLibRepStr: Convert X64/ScanMem16.asm to NASM
Jordan Justen [Tue, 31 May 2016 01:52:11 +0000 (18:52 -0700)]
MdePkg BaseMemoryLibRepStr: Convert X64/ScanMem16.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
X64/ScanMem16.asm to X64/ScanMem16.nasm

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
7 years agoMdePkg BaseMemoryLibRepStr: Convert X64/ScanMem32.asm to NASM
Jordan Justen [Tue, 31 May 2016 01:52:11 +0000 (18:52 -0700)]
MdePkg BaseMemoryLibRepStr: Convert X64/ScanMem32.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
X64/ScanMem32.asm to X64/ScanMem32.nasm

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
7 years agoMdePkg BaseMemoryLibRepStr: Convert X64/ScanMem64.asm to NASM
Jordan Justen [Tue, 31 May 2016 01:52:11 +0000 (18:52 -0700)]
MdePkg BaseMemoryLibRepStr: 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 <jordan.l.justen@intel.com>
7 years agoMdePkg BaseMemoryLibRepStr: Convert Ia32/CopyMem.asm to NASM
Jordan Justen [Tue, 31 May 2016 01:52:11 +0000 (18:52 -0700)]
MdePkg BaseMemoryLibRepStr: Convert Ia32/CopyMem.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
Ia32/CopyMem.asm to Ia32/CopyMem.nasm

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
7 years agoMdePkg BaseMemoryLibRepStr: Convert Ia32/SetMem.asm to NASM
Jordan Justen [Tue, 31 May 2016 01:52:10 +0000 (18:52 -0700)]
MdePkg BaseMemoryLibRepStr: Convert Ia32/SetMem.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
Ia32/SetMem.asm to Ia32/SetMem.nasm

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
7 years agoMdePkg BaseMemoryLibRepStr: Convert Ia32/SetMem16.asm to NASM
Jordan Justen [Tue, 31 May 2016 01:52:10 +0000 (18:52 -0700)]
MdePkg BaseMemoryLibRepStr: Convert Ia32/SetMem16.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
Ia32/SetMem16.asm to Ia32/SetMem16.nasm

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
7 years agoMdePkg BaseMemoryLibRepStr: Convert Ia32/SetMem32.asm to NASM
Jordan Justen [Tue, 31 May 2016 01:52:10 +0000 (18:52 -0700)]
MdePkg BaseMemoryLibRepStr: Convert Ia32/SetMem32.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
Ia32/SetMem32.asm to Ia32/SetMem32.nasm

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
7 years agoMdePkg BaseMemoryLibRepStr: Convert Ia32/SetMem64.asm to NASM
Jordan Justen [Tue, 31 May 2016 01:52:10 +0000 (18:52 -0700)]
MdePkg BaseMemoryLibRepStr: 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>
7 years agoMdePkg BaseMemoryLibRepStr: Convert Ia32/ZeroMem.asm to NASM
Jordan Justen [Tue, 31 May 2016 01:52:10 +0000 (18:52 -0700)]
MdePkg BaseMemoryLibRepStr: Convert Ia32/ZeroMem.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
Ia32/ZeroMem.asm to Ia32/ZeroMem.nasm

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
7 years agoMdePkg BaseMemoryLibRepStr: Convert Ia32/CompareMem.asm to NASM
Jordan Justen [Tue, 31 May 2016 01:52:10 +0000 (18:52 -0700)]
MdePkg BaseMemoryLibRepStr: Convert Ia32/CompareMem.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
Ia32/CompareMem.asm to Ia32/CompareMem.nasm

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
7 years agoMdePkg BaseMemoryLibRepStr: Convert Ia32/ScanMem8.asm to NASM
Jordan Justen [Tue, 31 May 2016 01:52:10 +0000 (18:52 -0700)]
MdePkg BaseMemoryLibRepStr: Convert Ia32/ScanMem8.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
Ia32/ScanMem8.asm to Ia32/ScanMem8.nasm

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
7 years agoMdePkg BaseMemoryLibRepStr: Convert Ia32/ScanMem16.asm to NASM
Jordan Justen [Tue, 31 May 2016 01:52:10 +0000 (18:52 -0700)]
MdePkg BaseMemoryLibRepStr: Convert Ia32/ScanMem16.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
Ia32/ScanMem16.asm to Ia32/ScanMem16.nasm

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
7 years agoMdePkg BaseMemoryLibRepStr: Convert Ia32/ScanMem32.asm to NASM
Jordan Justen [Tue, 31 May 2016 01:52:10 +0000 (18:52 -0700)]
MdePkg BaseMemoryLibRepStr: Convert Ia32/ScanMem32.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
Ia32/ScanMem32.asm to Ia32/ScanMem32.nasm

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
7 years agoMdePkg BaseMemoryLibRepStr: Convert Ia32/ScanMem64.asm to NASM
Jordan Justen [Tue, 31 May 2016 01:52:10 +0000 (18:52 -0700)]
MdePkg BaseMemoryLibRepStr: Convert Ia32/ScanMem64.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
Ia32/ScanMem64.asm to Ia32/ScanMem64.nasm

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
7 years agoMdePkg BaseMemoryLibOptPei: Convert X64/CopyMem.asm to NASM
Jordan Justen [Tue, 31 May 2016 01:52:10 +0000 (18:52 -0700)]
MdePkg BaseMemoryLibOptPei: Convert X64/CopyMem.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
X64/CopyMem.asm to X64/CopyMem.nasm

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
7 years agoMdePkg BaseMemoryLibOptPei: Convert X64/SetMem.asm to NASM
Jordan Justen [Tue, 31 May 2016 01:52:10 +0000 (18:52 -0700)]
MdePkg BaseMemoryLibOptPei: Convert X64/SetMem.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
X64/SetMem.asm to X64/SetMem.nasm

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
7 years agoMdePkg BaseMemoryLibOptPei: Convert X64/SetMem16.asm to NASM
Jordan Justen [Tue, 31 May 2016 01:52:10 +0000 (18:52 -0700)]
MdePkg BaseMemoryLibOptPei: Convert X64/SetMem16.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
X64/SetMem16.asm to X64/SetMem16.nasm

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>