-
Notifications
You must be signed in to change notification settings - Fork 1
/
and_arm64.go
76 lines (63 loc) · 1.27 KB
/
and_arm64.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
//go:build !purego
package and
//go:noescape
func andNEON(dst, a, b *byte, l uint64)
//go:noescape
func orNEON(dst, a, b *byte, l uint64)
//go:noescape
func xorNEON(dst, a, b *byte, l uint64)
//go:noescape
func andNotNEON(dst, a, b *byte, l uint64)
//go:noescape
func popcntNEON(a *byte, l uint64) uint64
//go:noescape
func memsetNEON(dst *byte, l uint64, b byte)
func and(dst, a, b []byte) {
l := uint64(len(a)) >> 8
if l != 0 {
andNEON(&dst[0], &a[0], &b[0], l)
}
l <<= 8
andGeneric(dst[l:], a[l:], b[l:])
}
func or(dst, a, b []byte) {
l := uint64(len(a)) >> 8
if l != 0 {
orNEON(&dst[0], &a[0], &b[0], l)
}
l <<= 8
orGeneric(dst[l:], a[l:], b[l:])
}
func xor(dst, a, b []byte) {
l := uint64(len(a)) >> 8
if l != 0 {
xorNEON(&dst[0], &a[0], &b[0], l)
}
l <<= 8
xorGeneric(dst[l:], a[l:], b[l:])
}
func andNot(dst, a, b []byte) {
l := uint64(len(a)) >> 8
if l != 0 {
andNotNEON(&dst[0], &a[0], &b[0], l)
}
l <<= 8
andNotGeneric(dst[l:], a[l:], b[l:])
}
func popcnt(a []byte) int {
ret := 0
l := uint64(len(a)) >> 8
if l != 0 {
ret = int(popcntNEON(&a[0], l))
l <<= 8
}
return ret + popcntGeneric(a[l:])
}
func memset(dst []byte, b byte) {
l := uint64(len(dst)) >> 8
if l != 0 {
memsetNEON(&dst[0], l, b)
}
l <<= 8
memsetGeneric(dst[l:], b)
}