diff options
author | Jordan Justen <jordan.l.justen@intel.com> | 2016-05-30 18:52:01 -0700 |
---|---|---|
committer | Liming Gao <liming.gao@intel.com> | 2016-06-28 09:49:38 +0800 |
commit | 3dbb4a7002a3fd4df7d5198600ebf8a2834cda5d (patch) | |
tree | fad94cca82c2b8bb3a9d9754f76f2c1b6054755d | |
parent | 4a9ae7893e022bfb99a69008462bf11c9fc1760e (diff) | |
download | edk2-platforms-3dbb4a7002a3fd4df7d5198600ebf8a2834cda5d.tar.xz |
MdePkg BaseLib: Convert X64/ReadPmc.asm to NASM
The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
X64/ReadPmc.asm to X64/ReadPmc.nasm
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
-rw-r--r-- | MdePkg/Library/BaseLib/BaseLib.inf | 2 | ||||
-rw-r--r-- | MdePkg/Library/BaseLib/X64/ReadPmc.nasm | 40 |
2 files changed, 42 insertions, 0 deletions
diff --git a/MdePkg/Library/BaseLib/BaseLib.inf b/MdePkg/Library/BaseLib/BaseLib.inf index ca88b0c95c..3dc5cd4d0a 100644 --- a/MdePkg/Library/BaseLib/BaseLib.inf +++ b/MdePkg/Library/BaseLib/BaseLib.inf @@ -469,6 +469,7 @@ X64/Mwait.asm | MSFT
X64/Monitor.nasm| MSFT
X64/Monitor.asm | MSFT
+ X64/ReadPmc.nasm| MSFT
X64/ReadPmc.asm | MSFT
X64/ReadTsc.asm | MSFT
X64/WriteMm7.asm | MSFT
@@ -553,6 +554,7 @@ X64/Mwait.asm | INTEL
X64/Monitor.nasm| INTEL
X64/Monitor.asm | INTEL
+ X64/ReadPmc.nasm| INTEL
X64/ReadPmc.asm | INTEL
X64/ReadTsc.asm | INTEL
X64/WriteMm7.asm | INTEL
diff --git a/MdePkg/Library/BaseLib/X64/ReadPmc.nasm b/MdePkg/Library/BaseLib/X64/ReadPmc.nasm new file mode 100644 index 0000000000..0877eb0fb7 --- /dev/null +++ b/MdePkg/Library/BaseLib/X64/ReadPmc.nasm @@ -0,0 +1,40 @@ +;------------------------------------------------------------------------------
+;
+; 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:
+;
+; ReadPmc.Asm
+;
+; Abstract:
+;
+; AsmReadPmc function
+;
+; Notes:
+;
+;------------------------------------------------------------------------------
+
+ DEFAULT REL
+ SECTION .text
+
+;------------------------------------------------------------------------------
+; UINT64
+; EFIAPI
+; AsmReadPmc (
+; IN UINT32 PmcIndex
+; );
+;------------------------------------------------------------------------------
+global ASM_PFX(AsmReadPmc)
+ASM_PFX(AsmReadPmc):
+ rdpmc
+ shl rdx, 0x20
+ or rax, rdx
+ ret
+
|