__vmx_vmwrite

 

The new home for Visual Studio documentation is Visual Studio 2017 Documentation on docs.microsoft.com.

The latest version of this topic can be found at __vmx_vmwrite.

Microsoft Specific**

Writes the specified value to the specified field in the current virtual machine control structure (VMCS).

Syntax

unsigned char __vmx_vmwrite(   
   size_t Field,  
   size_t FieldValue  
);  

Parameters

Parameter Description
[in] Field The VMCS field to write.
[in] FieldValue The value to write to the VMCS field.

Return Value

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_vmwrite function is equivalent to the VMWRITE machine instruction. The value of the Field parameter is an encoded field index that is described in Intel documentation. For more information, search for the document, "Intel Virtualization Technical Specification for the IA-32 Intel Architecture," document number C97063-002, at the Intel Corporation site, and then consult Appendix C of that document.

Requirements

Intrinsic Architecture
__vmx_vmwrite x64

Header file <intrin.h>

END Microsoft Specific

See Also

Compiler Intrinsics
__vmx_vmread