System
WRMSRNS
A model-specific register write that, unlike WRMSR, is not serializing.
- CPUID
- WRMSRNS
CPUID.(EAX=07H,ECX=1):EAX[19] - Instructions
- 1 mnemonic
- Processors
- Panther Lake, Nova Lake, Diamond Rapids, Sierra Forest, Clearwater Forest
WRMSR is a serializing instruction: it waits until all earlier instructions are done and all buffered writes are drained. Most MSR writes do not need that. WRMSRNS writes an MSR the same way but without serializing, while still guaranteeing that instructions before it see the old value and instructions after it the new one. Code that used WRMSR as a serializing point can use SERIALIZE instead. The immediate form of WRMSRNS belongs to MSR_IMM.
Instructions
| Mnemonic | Summary | Forms |
|---|---|---|
| WRMSRNS | Writes a model-specific register like WRMSR but without serializing the processor; the MSR_IMM form takes the MSR number as an immediate. | 1 |
CPUID and processors
XED splits WRMSRNS into 1 ISA set. Software can use a form when the processor reports every CPUID bit of one alternative of the form's ISA set.
| ISA set | CPUID | Processors in XED |
|---|---|---|
WRMSRNS | WRMSRNS | Panther Lake, Nova Lake, Diamond Rapids, Sierra Forest, Clearwater Forest |
Sources
- Intel XED v2026.08.23 (commit
0bcb6237345c): forms, encodings, ISA sets, CPUID bits and chip model. - Intel 64 and IA-32 Architectures Software Developer's Manual, Volume 2 (325383-092, June 2026)
The tables are derived from Intel XED, Copyright Intel Corporation, licensed under the Apache License 2.0; x86-64.net converted and reformatted them. The text is our own.