Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

atomics: update llvmcall to use opaque pointers #53

Draft
wants to merge 4 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 12 additions & 27 deletions .github/workflows/ci-julia-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,67 +2,52 @@ name: CI (Julia nightly)
on:
pull_request:
branches:
- master
- main
paths-ignore:
- 'LICENSE.md'
- 'README.md'
- '.github/workflows/TagBot.yml'
push:
tags: '*'
branches:
- master
- main
paths-ignore:
- 'LICENSE.md'
- 'README.md'
- '.github/workflows/TagBot.yml'
jobs:
test-julia-nightly:
timeout-minutes: 30
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ github.event_name }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
arch:
- x64
- x86
# use default arch
exclusive:
- '0'
os:
- ubuntu-latest
- macOS-latest
- macOS-latest # arm
- windows-latest
threads:
- '5'
version:
- '1.5'
- '1'
# Runs on Julia nightly only.
- 'nightly'
exclude:
- os: macOS-latest
arch: x86 # 32-bit Julia binaries are not available on macOS
include:
- exclusive: '1'
threads: '2'
arch: x64
# (exclusive=1, threads=2)
- arch: x64
exclusive: '1'
os: ubuntu-latest
version: '1'
threads: '2'
version: '1.11'
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: actions/cache@v4
env:
cache-name: cache-artifacts
with:
path: ~/.julia/artifacts
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
restore-keys: |
${{ runner.os }}-test-${{ env.cache-name }}-
${{ runner.os }}-test-
${{ runner.os }}-
- uses: julia-actions/cache@v2
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
env:
Expand Down
38 changes: 17 additions & 21 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@ name: CI
on:
pull_request:
branches:
- master
- main
paths-ignore:
- 'LICENSE.md'
- 'README.md'
- '.github/workflows/TagBot.yml'
push:
tags: '*'
branches:
- master
- main
paths-ignore:
- 'LICENSE.md'
- 'README.md'
Expand All @@ -30,39 +30,35 @@ jobs:
- '0'
os:
- ubuntu-latest
- macOS-latest
- windows-latest
- macos-13 # Intel
threads:
- '5'
version:
- '1.5'
- '1'
- 'nightly'
- '1.11'
# - '1' # Use this when julia +1 > 1.11
exclude:
- os: macOS-latest
- os: macos-13
arch: x86 # 32-bit Julia binaries are not available on macOS
include:
- exclusive: '1'
threads: '2'
arch: x64
- arch: aarch64
exclusive: '0'
os: macOS-latest # Arm
threads: '5'
version: '1.11'
# (exclusive=1, threads=2)
- arch: x64
exclusive: '1'
os: ubuntu-latest
version: '1'
threads: '2'
version: '1.11'
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: actions/cache@v4
env:
cache-name: cache-artifacts
with:
path: ~/.julia/artifacts
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
restore-keys: |
${{ runner.os }}-test-${{ env.cache-name }}-
${{ runner.os }}-test-
${{ runner.os }}-
- uses: julia-actions/cache@v2
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
env:
Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ ManualMemory = "d125e4d3-2237-4719-b19c-fa641b8a4667"
[compat]
Aqua = "0.5"
ManualMemory = "0.1.1"
julia = "1.5"
julia = "1.11"

[extras]
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
Expand Down
32 changes: 22 additions & 10 deletions src/atomics.jl
Original file line number Diff line number Diff line change
@@ -1,38 +1,50 @@

for (ityp,jtyp) ∈ [("i8", UInt8), ("i16", UInt16), ("i32", UInt32), ("i64", UInt64), ("i128", UInt128)]
@eval begin
@inline function _atomic_load(ptr::Ptr{$jtyp})
Base.llvmcall($("""
%p = inttoptr i$(8sizeof(Int)) %0 to $(ityp)*
%v = load atomic $(ityp), $(ityp)* %p acquire, align $(Base.gc_alignment(jtyp))
%v = load atomic $(ityp), ptr %0 acquire, align $(Base.gc_alignment(jtyp))
ret $(ityp) %v
"""), $jtyp, Tuple{Ptr{$jtyp}}, ptr)
end
@inline function _atomic_store!(ptr::Ptr{$jtyp}, x::$jtyp)
Base.llvmcall($("""
%p = inttoptr i$(8sizeof(Int)) %0 to $(ityp)*
store atomic $(ityp) %1, $(ityp)* %p release, align $(Base.gc_alignment(jtyp))
store atomic $(ityp) %1, ptr %0 release, align $(Base.gc_alignment(jtyp))
ret void
"""), Cvoid, Tuple{Ptr{$jtyp}, $jtyp}, ptr, x)
end
@inline function _atomic_cas_cmp!(ptr::Ptr{$jtyp}, cmp::$jtyp, newval::$jtyp)
Base.llvmcall($("""
%p = inttoptr i$(8sizeof(Int)) %0 to $(ityp)*
%c = cmpxchg $(ityp)* %p, $(ityp) %1, $(ityp) %2 acq_rel acquire
%c = cmpxchg ptr %0, $(ityp) %1, $(ityp) %2 acq_rel acquire
%bit = extractvalue { $ityp, i1 } %c, 1
%bool = zext i1 %bit to i8
ret i8 %bool
"""), Bool, Tuple{Ptr{$jtyp}, $jtyp, $jtyp}, ptr, cmp, newval)
end
end
end
for op ∈ ["xchg", "add", "sub", "and", "nand", "or", "xor", "max", "min", "umax", "umin"] # "fadd", "fsub"

"""
Operations supported by `atomicrmw`.

- Julia v1.11 use [libLLVM-16](https://releases.llvm.org/16.0.0/docs/LangRef.html#atomicrmw-instruction)
"""
const atomicrmw_ops = [
"xchg", "add", "sub",
"and", "nand", "or", "xor",
"max", "min", "umax", "umin",
# "fadd", "fsub",
# "fmax", "fmin",
# "uinc_wrap", "udec_wrap", # Need LLVM 16: VERSION >= v"1.11"
]
for op ∈ atomicrmw_ops
f = Symbol("_atomic_", op, '!')
for (ityp,jtyp) ∈ [("i8", UInt8), ("i16", UInt16), ("i32", UInt32), ("i64", UInt64), ("i128", UInt128)]
@eval begin
# Do inplace `$(op)` for `*ptr` and `x` atomically, return the old value of `*ptr`.
@inline function $f(ptr::Ptr{$jtyp}, x::$jtyp)
Base.llvmcall($("""
%p = inttoptr i$(8sizeof(Int)) %0 to $(ityp)*
%v = atomicrmw $op $(ityp)* %p, $(ityp) %1 acq_rel
%v = atomicrmw $(op) ptr %0, $(ityp) %1 acq_rel
ret $(ityp) %v
"""), $jtyp, Tuple{Ptr{$jtyp}, $jtyp}, ptr, x)
end
Expand All @@ -44,9 +56,9 @@ for op ∈ ["xchg", "add", "sub", "and", "nand", "or", "xor", "max", "min", "uma
end
end
end

@inline _atomic_state(ptr::Ptr{UInt}) = reinterpret(ThreadState, _atomic_load(reinterpret(Ptr{UInt32}, ptr)))
@inline _atomic_store!(ptr::Ptr{UInt}, x::ThreadState) = _atomic_store!(reinterpret(Ptr{UInt32}, ptr), reinterpret(UInt32, x))
@inline function _atomic_cas_cmp!(ptr::Ptr{UInt}, cmp::ThreadState, newval::ThreadState)
_atomic_cas_cmp!(reinterpret(Ptr{UInt32}, ptr), reinterpret(UInt32, cmp), reinterpret(UInt32, newval))
end