2007-07-02 11:34:25 +02:00
|
|
|
/** @file
|
|
|
|
CpuBreakpoint function.
|
|
|
|
|
2010-04-23 18:00:47 +02:00
|
|
|
Copyright (c) 2006 - 2008, Intel Corporation. All rights reserved.<BR>
|
|
|
|
This program and the accompanying materials
|
2007-07-02 11:34:25 +02:00
|
|
|
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
|
2010-06-24 02:20:35 +02:00
|
|
|
http://opensource.org/licenses/bsd-license.php.
|
2007-07-02 11:34:25 +02:00
|
|
|
|
|
|
|
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
|
|
|
|
|
|
**/
|
|
|
|
|
2008-07-25 14:21:57 +02:00
|
|
|
/**
|
|
|
|
Microsoft Visual Studio 7.1 Function Prototypes for I/O Intrinsics.
|
|
|
|
**/
|
2008-10-24 10:18:36 +02:00
|
|
|
|
2007-07-02 11:34:25 +02:00
|
|
|
unsigned __int64 __readmsr (int register);
|
|
|
|
|
|
|
|
#pragma intrinsic(__readmsr)
|
|
|
|
|
2008-07-25 14:21:57 +02:00
|
|
|
/**
|
|
|
|
Read data to MSR.
|
|
|
|
|
|
|
|
@param Index Register index of MSR.
|
|
|
|
|
|
|
|
@return Value read from MSR.
|
|
|
|
|
|
|
|
**/
|
2007-07-02 11:34:25 +02:00
|
|
|
UINT64
|
|
|
|
EFIAPI
|
|
|
|
AsmReadMsr64 (
|
|
|
|
IN UINT32 Index
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return __readmsr (Index);
|
|
|
|
}
|
|
|
|
|