Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Microsoft Specific
Reads a specified field from the current virtual machine control structure (VMCS) and places it in the specified ___location.
Syntax
unsigned char __vmx_vmread(
size_t Field,
size_t *FieldValue
);
Parameters
Field
[in] The VMCS field to read.
FieldValue
[in] A pointer to the ___location to store the value read from the VMCS field specified by the Field parameter.
Return value
| Value | Meaning |
|---|---|
| 0 | The operation succeeded. |
| 1 | The operation failed with extended status available in the VM-instruction error field of the current VMCS. |
| 2 | The operation failed without status available. |
Remarks
The __vmx_vmread function is equivalent to the VMREAD machine instruction. The value of the Field parameter is an encoded field index that is described in Intel documentation. For more information, search for Appendix C of "Intel Virtualization Technical Specification for the IA-32 Intel Architecture," at the Intel Corporation site.
Requirements
| Intrinsic | Architecture |
|---|---|
__vmx_vmread |
x64 |
Header file <intrin.h>
END Microsoft Specific