Skip to content

Latest commit

 

History

History
35 lines (24 loc) · 3.28 KB

README.md

File metadata and controls

35 lines (24 loc) · 3.28 KB

Implementation of disabling interrupts

This module is used to provide atomic CAS for targets where atomic CAS is not available in the standard library.

  • On MSP430 and AVR, they are always single-core and has no unprivileged mode, so this module is always used.
  • On Armv6-M (thumbv6m), pre-v6 Arm (e.g., thumbv4t, thumbv5te), RISC-V without A-extension, and Xtensa, they could be multi-core, so this module is used when the unsafe-assume-single-core feature (or portable_atomic_unsafe_assume_single_core cfg) is enabled.

The unsafe-assume-single-core implementation uses privileged instructions to disable interrupts, so it usually doesn't work on unprivileged mode. Enabling this feature in an environment where privileged instructions are not available, or if the instructions used are not sufficient to disable interrupts in the system, it is also usually considered unsound, although the details are system-dependent.

Consider using the critical-section feature for systems that cannot use the unsafe-assume-single-core feature (or portable_atomic_unsafe_assume_single_core cfg).

For some targets, the implementation can be changed by explicitly enabling features.

  • On Armv6-M, this disables interrupts by modifying the PRIMASK register.
  • On pre-v6 Arm, this disables interrupts by modifying the I (IRQ mask) bit of the CPSR.
  • On pre-v6 Arm with the disable-fiq feature (or portable_atomic_disable_fiq cfg), this disables interrupts by modifying the I (IRQ mask) bit and F (FIQ mask) bit of the CPSR.
  • On RISC-V (without A-extension), this disables interrupts by modifying the MIE (Machine Interrupt Enable) bit of the mstatus register.
  • On RISC-V (without A-extension) with the s-mode feature (or portable_atomic_s_mode cfg), this disables interrupts by modifying the SIE (Supervisor Interrupt Enable) bit of the sstatus register.
  • On RISC-V (without A-extension) with the zaamo target feature (or force-amo feature or portable_atomic_force_amo cfg), this uses AMO instructions for RMWs that have corresponding AMO instructions even if A-extension is disabled. For other RMWs, this disables interrupts as usual.
  • On MSP430, this disables interrupts by modifying the GIE (Global Interrupt Enable) bit of the status register (SR).
  • On AVR, this disables interrupts by modifying the I (Global Interrupt Enable) bit of the status register (SREG).
  • On Xtensa, this disables interrupts by modifying the PS special register.

Some operations don't require disabling interrupts:

  • On architectures except for AVR: loads and stores with pointer size or smaller
  • On MSP430 additionally: {8,16}-bit add,sub,and,or,xor,not
  • On RISC-V with the zaamo target feature (or portable_atomic_target_feature="zaamo" cfg or force-amo feature or portable_atomic_force_amo cfg) additionally: 32-bit(RV32)/{32,64}-bit(RV64) swap,fetch_{add,sub,and,or,xor,not,max,min},add,sub,and,or,xor,not, {8,16}-bit fetch_{and,or,xor,not},and,or,xor,not1, and all operations of AtomicBool

However, when the critical-section feature is enabled, critical sections are taken for all atomic operations.

Feel free to submit an issue if your target is not supported yet.

Footnotes

  1. With the zabha target feature, {8,16}-bit swap,fetch_{add,sub,max,min},add,sub too.