__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

Field
[in] The VMCS field to write.

FieldValue
[in] 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 Appendix C of "Intel Virtualization Technical Specification for the IA-32 Intel Architecture," at the Intel Corporation site.

Requirements

Intrinsic Architecture
__vmx_vmwrite x64

Header file <intrin.h>

END Microsoft Specific

See also

Compiler intrinsics
__vmx_vmread