On ARM Cortex M, I'm aware of only two ways to achieve atomicity:
- LDREX/STREX
- Disable interrupts
Both can be used in a very similar way: For example, define volatile bool is_locked
, and check / set it either with one of those two methods.
What are the costs in performance for each? I imagine we need to think of two things;
- Throughput: How many cycles are spent on each, assuming no conflicts
- Latency: For how long are interrupts delayed
Are there any other tradeoffs between the two?