Page MenuHomeFreeBSD

Rework the atomic code to reduce the repetition
ClosedPublic

Authored by andrew on Nov 30 2015, 1:20 PM.
Tags
None
Referenced Files
Unknown Object (File)
Nov 8 2024, 4:51 PM
Unknown Object (File)
Sep 19 2024, 5:37 PM
Unknown Object (File)
Sep 19 2024, 3:49 AM
Unknown Object (File)
Sep 18 2024, 12:18 AM
Unknown Object (File)
Sep 16 2024, 5:44 AM
Unknown Object (File)
Sep 8 2024, 9:53 AM
Unknown Object (File)
Sep 7 2024, 5:03 PM
Unknown Object (File)
Sep 5 2024, 8:25 PM
Subscribers

Details

Summary

This merges some of the atomic functions where they are almost identical,
or have acquire/release semantics.

While here clean them up, the cbnz instruction doesn't change the condition
flags so drop cc, however they should have memory added to the clobber list.

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Passed
Unit
No Test Coverage
Build Status
Buildable 1342
Build 1347: arc lint + arc unit

Event Timeline

andrew retitled this revision from to Rework the atomic code to reduce the repetition.
andrew updated this object.
andrew edited the test plan for this revision. (Show Details)
andrew added a reviewer: kib.
andrew added a subscriber: emaste.
sys/arm64/include/atomic.h
119

cmp instruction does change condition codes, you need "cc" constraint for cmpsets.

Add the missing cc clobber

kib edited edge metadata.
This revision is now accepted and ready to land.Dec 1 2015, 11:11 AM
This revision was automatically updated to reflect the committed changes.