]> Cypherpunks.ru repositories - gostls13.git/blob - src/runtime/internal/atomic/atomic_arm64.go
[dev.boringcrypto] all: merge master into dev.boringcrypto
[gostls13.git] / src / runtime / internal / atomic / atomic_arm64.go
1 // Copyright 2015 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
4
5 // +build arm64
6
7 package atomic
8
9 import "unsafe"
10
11 //go:noescape
12 func Xadd(ptr *uint32, delta int32) uint32
13
14 //go:noescape
15 func Xadd64(ptr *uint64, delta int64) uint64
16
17 //go:noescape
18 func Xadduintptr(ptr *uintptr, delta uintptr) uintptr
19
20 //go:noescape
21 func Xchg(ptr *uint32, new uint32) uint32
22
23 //go:noescape
24 func Xchg64(ptr *uint64, new uint64) uint64
25
26 //go:noescape
27 func Xchguintptr(ptr *uintptr, new uintptr) uintptr
28
29 //go:noescape
30 func Load(ptr *uint32) uint32
31
32 //go:noescape
33 func Load8(ptr *uint8) uint8
34
35 //go:noescape
36 func Load64(ptr *uint64) uint64
37
38 // NO go:noescape annotation; *ptr escapes if result escapes (#31525)
39 func Loadp(ptr unsafe.Pointer) unsafe.Pointer
40
41 //go:noescape
42 func LoadAcq(addr *uint32) uint32
43
44 //go:noescape
45 func Or8(ptr *uint8, val uint8)
46
47 //go:noescape
48 func And8(ptr *uint8, val uint8)
49
50 //go:noescape
51 func Cas64(ptr *uint64, old, new uint64) bool
52
53 //go:noescape
54 func CasRel(ptr *uint32, old, new uint32) bool
55
56 //go:noescape
57 func Store(ptr *uint32, val uint32)
58
59 //go:noescape
60 func Store8(ptr *uint8, val uint8)
61
62 //go:noescape
63 func Store64(ptr *uint64, val uint64)
64
65 // NO go:noescape annotation; see atomic_pointer.go.
66 func StorepNoWB(ptr unsafe.Pointer, val unsafe.Pointer)
67
68 //go:noescape
69 func StoreRel(ptr *uint32, val uint32)