tiny.simd.flushCacheline
Defined in cache.
Source
Source: lib/simd/src/cache.zig:36
zig
pub inline fn flushCacheline(pointer: *const anyopaque) void { switch (comptime builtin.target.cpu.arch) { .x86_64 => asm volatile ("clflush (%%rax)" : : [address] "{rax}" (pointer), : .{ .memory = true }), .x86 => asm volatile ("clflush (%%eax)" : : [address] "{eax}" (pointer), : .{ .memory = true }), else => {}, }}Source: lib/simd/src/root.zig:263
zig
pub const flushCacheline = cache.flushCacheline;Audit
| Definitions | 1 |
|---|---|
| Public names | 2 |
| Members | 0 |
| Version | 26.7.0 |
| Revision | daab053ee433 |