모두의 코드
XSETBV (Intel x86/64 assembly instruction)

작성일 : 2020-09-01 이 글은 676 번 읽혔습니다.

XSETBV

Set Extended Control Register

참고 사항

아래 표를 해석하는 방법은 x86-64 명령어 레퍼런스 읽는 법 글을 참조하시기 바랍니다.

Opcode

Instruction

Op/
En

64-Bit
Mode

Compat/
Leg Mode

Description

0F 01 D1

XSETBV

NP

Valid

Valid

Write the value in EDX:EAX to the XCR specified by ECX.

Instruction Operand Encoding

Op/En

Operand 1

Operand 2

Operand 3

Operand 4

NP

NA

NA

NA

NA

Description

Writes the contents of registers EDX:EAX into the 64-bit extended control register (XCR) specified in the ECX register. (On processors that support the Intel 64 architecture, the high-order 32 bits of RCX are ignored.) The contents of the EDX register are copied to high-order 32 bits of the selected XCR and the contents of the EAX register are copied to low-order 32 bits of the XCR. (On processors that support the Intel 64 architecture, the high-order 32 bits of each of RAX and RDX are ignored.) Undefined or reserved bits in an XCR should be set to values previously read.

This instruction must be executed at privilege level 0 or in real-address mode; otherwise, a general protection exception #GP(0) is generated. Specifying a reserved or unimplemented XCR in ECX will also cause a general protection exception. The processor will also generate a general protection exception if software attempts to write to reserved bits in an XCR.

Currently, only XCR0 is supported. Thus, all other values of ECX are reserved and will cause a #GP(0). Note that bit 0 of XCR0 (corresponding to x87 state) must be set to 1; the instruction will cause a #GP(0) if an attempt is made to clear this bit. In addition, the instruction causes a #GP(0) if an attempt is made to set XCR0[2] (AVX state) while clearing XCR0[1] (SSE state); it is necessary to set both bits to use AVX instructions; Section 13.3, "Enabling the XSAVE Feature Set and XSAVE-Enabled Features," of Intel(R) 64 and IA-32 Architectures Software Developer's Manual, Volume 1.

Operation

XCR[ECX] <- EDX:EAX;

Flags Affected

None.

Intel C/C++ Compiler Intrinsic Equivalent

XSETBV : void _xsetbv(unsigned int, unsigned __int64);

Protected Mode Exceptions

#GP(0)

  • If the current privilege level is not 0.

  • If an invalid XCR is specified in ECX.

  • If the value in EDX:EAX sets bits that are reserved in the XCR specified by ECX.

  • If an attempt is made to clear bit 0 of XCR0.

  • If an attempt is made to set XCR0[2:1] to 10b.

#UD

  • If CPUID.01H:ECX.XSAVE[bit 26] = 0.

  • If CR4.OSXSAVE[bit 18] = 0.

  • If the LOCK prefix is used.

  • If 66H, F3H or F2H prefix is used.

Real-Address Mode Exceptions

#GP

  • If an invalid XCR is specified in ECX.

  • If the value in EDX:EAX sets bits that are reserved in the XCR specified by ECX.

  • If an attempt is made to clear bit 0 of XCR0.

  • If an attempt is made to set XCR0[2:1] to 10b.

#UD

  • If CPUID.01H:ECX.XSAVE[bit 26] = 0.

  • If CR4.OSXSAVE[bit 18] = 0.

  • If the LOCK prefix is used.

  • If 66H, F3H or F2H prefix is used.

Virtual-8086 Mode Exceptions

#GP(0)

  • The XSETBV instruction is not recognized in virtual-8086 mode.

Compatibility Mode Exceptions

Same exceptions as in protected mode.

64-Bit Mode Exceptions

Same exceptions as in protected mode.

첫 댓글을 달아주세요!
프로필 사진 없음
강좌에 관련 없이 궁금한 내용은 여기를 사용해주세요

    댓글을 불러오는 중입니다..