You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
128-bit accesses to the floating point registers are not atomic - they are treated as two separate atomic 64-bit accesses.
In ASL, this is handled within Mem.set and Mem.read and splits the accesses into two separate MemSingle calls, which are each an atomic access. This is not visible to the partial evaluation since Mem.set and Mem.read are not inlined.
A related issue that is less practically relevant is endianness, which is also handled within Mem.set and Mem.read, meaning that it is not visible to the partial evaluation.
The text was updated successfully, but these errors were encountered:
128-bit accesses to the floating point registers are not atomic - they are treated as two separate atomic 64-bit accesses.
In ASL, this is handled within Mem.set and Mem.read and splits the accesses into two separate MemSingle calls, which are each an atomic access. This is not visible to the partial evaluation since Mem.set and Mem.read are not inlined.
A related issue that is less practically relevant is endianness, which is also handled within Mem.set and Mem.read, meaning that it is not visible to the partial evaluation.
The text was updated successfully, but these errors were encountered: