On Thu, May 23, 2024 at 12:43:34PM -0700, Christoph Lameter (Ampere) wrote:
On Thu, 23 May 2024, Catalin Marinas wrote:Yeah, check the atomic class first and then go into the finer-grained
Hmmm. We could consult an exception table once the pattern matches to reduceYes, it may be easier to exclude those patterns. See the Arm ARM K.aWhile this class includes all atomics that currently require writeCan you tell us which bits or pattern is not allocated? Maybe we can exclude
permission, there's some unallocated space in this range and we don't
know what future architecture versions may introduce. Unfortunately we
need to check each individual atomic op in this class (not sure what the
overhead will be).
that from the pattern.
section C4.1.94.29 (page 791).
the overhead.
details. I think this would reduce the overhead for non-atomic
instructions.
However, the harm done I think is acceptable even if we leave things as is.I'm thinking of some conditional instruction that states no write if
In the worst case we create unnecesssary write fault processing for an
"atomic op" that does not need write access. Also: Why would it need to be
atomic if it does not write???
condition fails. But it could be even worse if the architects decide to
reuse that unallocated space for some instructions that have nothing to
do with the atomic accesses.
It's something we need to clarify with them but I'm about to go on
holiday for a week, so I won't be able to check.
The ultimate solution would be to change the spec so that arm processors canI raised this already, waiting for feedback from the architects.
skip useless read faults.