mirror of
https://github.com/opnsense/src.git
synced 2026-03-27 05:03:09 -04:00
The goal of this change is to make the atomic_load_acq_{8,16},
atomic_testandset{,_acq}_long, and atomic_testandclear_long primitives
available in MI-namespace.
The second goal is to get this draft out of my local tree, as anything that
requires a full tinderbox is a big burden out of tree. MD specifics can be
refined individually afterwards.
The generic implementations may not be ideal for your architecture; feel
free to implement better versions. If no subword_atomic definitions are
needed, the include can be removed from your arch's machine/atomic.h.
Generic definitions are guarded by defined macros of the same name. To
avoid picking up conflicting generic definitions, some macro defines are
added to various MD machine/atomic.h to register an existing implementation.
Include _atomic_subword.h in arm and arm64 machine/atomic.h.
For some odd reason, KCSAN only generates some versions of primitives.
Generate the _acq variants of atomic_load.*_8, atomic_load.*_16, and
atomic_testandset.*_long. There are other questionably disabled primitives,
but I didn't run into them, so I left them alone. KCSAN is only built for
amd64 in tinderbox for now.
Add atomic_subword implementations of atomic_load_acq_{8,16} implemented
using masking and atomic_load_acq_32.
Add generic atomic_subword implementations of atomic_testandset_long(),
atomic_testandclear_long(), and atomic_testandset_acq_long(), using
atomic_fcmpset_long() and atomic_fcmpset_acq_long().
On x86, add atomic_testandset_acq_long as an alias for
atomic_testandset_long.
Reviewed by: kevans, rlibby (previous versions both)
Differential Revision: https://reviews.freebsd.org/D22963
|
||
|---|---|---|
| .. | ||
| pc | ||
| xen | ||
| _align.h | ||
| _bus.h | ||
| _inttypes.h | ||
| _limits.h | ||
| _stdint.h | ||
| _types.h | ||
| acpica_machdep.h | ||
| apm_bios.h | ||
| asm.h | ||
| asmacros.h | ||
| atomic.h | ||
| bus.h | ||
| bus_dma.h | ||
| clock.h | ||
| counter.h | ||
| cpu.h | ||
| cpufunc.h | ||
| cputypes.h | ||
| csan.h | ||
| db_machdep.h | ||
| dump.h | ||
| efi.h | ||
| elf.h | ||
| endian.h | ||
| exec.h | ||
| fdt.h | ||
| float.h | ||
| floatingpoint.h | ||
| fpu.h | ||
| frame.h | ||
| gdb_machdep.h | ||
| ieeefp.h | ||
| in_cksum.h | ||
| intr_machdep.h | ||
| iodev.h | ||
| kdb.h | ||
| limits.h | ||
| md_var.h | ||
| memdev.h | ||
| metadata.h | ||
| minidump.h | ||
| mp_watchdog.h | ||
| nexusvar.h | ||
| npx.h | ||
| ofw_machdep.h | ||
| param.h | ||
| pcb.h | ||
| pci_cfgreg.h | ||
| pcpu.h | ||
| pcpu_aux.h | ||
| pmap.h | ||
| pmc_mdep.h | ||
| ppireg.h | ||
| proc.h | ||
| procctl.h | ||
| profile.h | ||
| psl.h | ||
| ptrace.h | ||
| pvclock.h | ||
| reg.h | ||
| reloc.h | ||
| resource.h | ||
| runq.h | ||
| segments.h | ||
| setjmp.h | ||
| sf_buf.h | ||
| sgx.h | ||
| sgxreg.h | ||
| sigframe.h | ||
| signal.h | ||
| smp.h | ||
| specialreg.h | ||
| stack.h | ||
| stdarg.h | ||
| sysarch.h | ||
| timerreg.h | ||
| trap.h | ||
| tss.h | ||
| ucontext.h | ||
| vdso.h | ||
| vm.h | ||
| vmm.h | ||
| vmm_dev.h | ||
| vmm_instruction_emul.h | ||
| vmparam.h | ||