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>
|
2019-04-04 01:06:00 +02:00
|
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
2007-07-02 11:34:25 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|