aboutsummaryrefslogtreecommitdiff
path: root/lib/std/atomic.zig
diff options
context:
space:
mode:
authorAlex Rønne Petersen <alex@alexrp.com>2024-07-29 20:26:39 +0200
committerAndrew Kelley <andrew@ziglang.org>2024-08-01 01:07:56 -0700
commitf03d54f0692967872f6d5664597d3e349d79c2a3 (patch)
treea53cf0543f7a310f05e29d49c9abd252e1b24293 /lib/std/atomic.zig
parent604e87a95868094bdddbcc6a4579f8535ae5e2a9 (diff)
downloadzig-f03d54f0692967872f6d5664597d3e349d79c2a3.tar.gz
zig-f03d54f0692967872f6d5664597d3e349d79c2a3.zip
std.atomic: Don't lie to the compiler about memory clobbers in spinLoopHint().
Diffstat (limited to 'lib/std/atomic.zig')
-rw-r--r--lib/std/atomic.zig24
1 files changed, 8 insertions, 16 deletions
diff --git a/lib/std/atomic.zig b/lib/std/atomic.zig
index be7203c0cf..084d44b3e6 100644
--- a/lib/std/atomic.zig
+++ b/lib/std/atomic.zig
@@ -380,7 +380,7 @@ pub inline fn spinLoopHint() void {
// https://software.intel.com/content/www/us/en/develop/articles/benefitting-power-and-performance-sleep-loops.html
.x86,
.x86_64,
- => asm volatile ("pause" ::: "memory"),
+ => asm volatile ("pause"),
// No-op instruction that serves as a hardware-thread resource yield hint.
// https://stackoverflow.com/a/7588941
@@ -388,7 +388,7 @@ pub inline fn spinLoopHint() void {
.powerpcle,
.powerpc64,
.powerpc64le,
- => asm volatile ("or 27, 27, 27" ::: "memory"),
+ => asm volatile ("or 27, 27, 27"),
// `isb` appears more reliable for releasing execution resources than `yield`
// on common aarch64 CPUs.
@@ -396,7 +396,7 @@ pub inline fn spinLoopHint() void {
// https://bugs.mysql.com/bug.php?id=100664
.aarch64,
.aarch64_be,
- => asm volatile ("isb" ::: "memory"),
+ => asm volatile ("isb"),
// `yield` was introduced in v6k but is also available on v6m.
// https://www.keil.com/support/man/docs/armasm/armasm_dom1361289926796.htm
@@ -409,30 +409,22 @@ pub inline fn spinLoopHint() void {
.has_v6k, .has_v6m,
});
if (can_yield) {
- asm volatile ("yield" ::: "memory");
- } else {
- asm volatile ("" ::: "memory");
+ asm volatile ("yield");
}
},
// The 8-bit immediate specifies the amount of cycles to pause for. We can't really be too
// opinionated here.
.hexagon,
- => asm volatile ("pause(#1)" ::: "memory"),
+ => asm volatile ("pause(#1)"),
.riscv32,
.riscv64,
- => {
- if (comptime std.Target.riscv.featureSetHas(builtin.target.cpu.features, .zihintpause)) {
- asm volatile ("pause" ::: "memory");
- } else {
- asm volatile ("" ::: "memory");
- }
+ => if (comptime std.Target.riscv.featureSetHas(builtin.target.cpu.features, .zihintpause)) {
+ asm volatile ("pause");
},
- // Memory barrier to prevent the compiler from optimizing away the spin-loop
- // even if no hint_instruction was provided.
- else => asm volatile ("" ::: "memory"),
+ else => {},
}
}