Is this correct that Hardware Lock Elision is disabled for all current CPUs due to Spectre mitigation, and any attempt to have a mutex using HLE intrinsics/instructions would result in usual mutex?
Is this likely that there will not be anything like HLE mutexes in future to avoid vulnerabilities like Spectre?
So, TSX may be disabled not to mitigate Spectre, but as a part of another vulnerability mitigation, TSX Asynchronous Abort (TAA).
Here's relevant article on Intel website:
Which links to two more detailed articles:
Links contain the following information:
IA32_ARCH_CAPABILITIES[TAA_NO]=1
.IA32_ARCH_CAPABILITIES[MDS_NO]=0
), software mitigation for MDS will also mitigate TAAIA32_ARCH_CAPABILITIES[TAA_NO]=0
andIA32_ARCH_CAPABILITIES[MDS_NO]=1
, TAA should be mitigated by one of following:Ability for above mentioned selectively disabling TSX arrives with microcode update. After such microcode update, ability to control TSX is controlled by
IA32_ARCH_CAPABILITIES[TSX_CTRL] (bit 7)=1
.Now, about HLE. TAA article says:
The HLE feature is also marked as removed in Intel® 64 and IA-32 Architectures Software Developer’s Manual:
I believe that I have answers to my questions:
Yes. It is deprecated. Unless Intel undeprecates it.
No. There is still RTM, which may be not disabled, and it can be used to create mutexes like HLE mutexes. There may also may be future processors not susceptible to TAA, RTM may work for them.