Visible to Intel only — GUID: GUID-E0E6E463-C7BC-48E6-A001-5416A8396913
Visible to Intel only — GUID: GUID-E0E6E463-C7BC-48E6-A001-5416A8396913
<span class='option'>_xend</span>
Specifies the end of a restricted transactional memory (RTM) code region. The corresponding Intel® AVX2 instruction is XEND.
void _xend(void); |
None.
Specifies the end of restricted transactional memory code region. If this is the outermost transaction (including this xend instruction, the number of xbegin matches the number of xend instructions) then the processor will attempt to commit processor state automatically.
If the commit fails, the processor will rollback all register and memory updates performed during the RTM execution.
The logical processor will resume execution at the fallback address computed from the outermost xbegin instruction. The EAX register is updated to reflect RTM abort information. When xend is executed outside a transaction will cause a general protection fault (#GP).
The model instruction sequence for xend support is:
__inline void _xend() { __asm { xend } }
Result of the query.