-
Notifications
You must be signed in to change notification settings - Fork 100
WRPKRU
WRPKRU — Write Data to User Page Key Register
| Opcode/ Instruction | Op/ En | 64/32bit Mode Support | CPUID Feature Flag | Description |
| NP 0F 01 EF WRPKRU | ZO | V/V | OSPKE | Writes EAX into PKRU. |
| Op/En | Operand 1 | Operand 2 | Operand 3 | Operand 4 |
| ZO | N/A | N/A | N/A | N/A |
Writes the value of EAX into PKRU. ECX and EDX must be 0 when WRPKRU is executed; otherwise, a general-protection exception (#GP) occurs.
WRPKRU can be executed only if CR4.PKE = 1; otherwise, an invalid-opcode exception (#UD) occurs. Software can discover the value of CR4.PKE by examining CPUID.07H.00H:ECX.OSPKE[4].
On processors that support the Intel 64 Architecture, the high-order 32-bits of RCX, RDX, and RAX are ignored.
WRPKRU will never execute speculatively. Memory accesses affected by PKRU register will not execute (even speculatively) until all prior executions of WRPKRU have completed execution and updated the PKRU register.
IF (ECX = 0 AND EDX = 0)
THEN PKRU ← EAX;
ELSE #GP(0);
FI;None.
WRPKRU void _wrpkru(uint32_t);#GP(0) If ECX ≠ 0. If EDX ≠ 0.
#UD If the LOCK prefix is used. If CR4.PKE = 0.
Same exceptions as in protected mode.
Same exceptions as in protected mode.
Same exceptions as in protected mode.
Same exceptions as in protected mode.
Source: Intel® 64 and IA-32 Architectures Software Developer's Manual, Combined Volumes (Order Number 325462-091US, March 2026)
Generated: 7-6-2026