-
Notifications
You must be signed in to change notification settings - Fork 446
/
simd.c
234 lines (201 loc) · 8.88 KB
/
simd.c
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
/* simd.c -- SIMD optimised versions of various internal functions.
Copyright (C) 2024 Genome Research Ltd.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE. */
#define HTS_BUILDING_LIBRARY // Enables HTSLIB_EXPORT, see htslib/hts_defs.h
#include <config.h>
// These must be defined before the first system include to ensure that legacy
// BSD types needed by <sys/sysctl.h> remain defined when _XOPEN_SOURCE is set.
#if defined __APPLE__
#define _DARWIN_C_SOURCE
#elif defined __NetBSD__
#define _NETBSD_SOURCE
#endif
#include "htslib/sam.h"
#include "sam_internal.h"
#if defined __x86_64__
#include <immintrin.h>
#elif defined __ARM_NEON
#include <arm_neon.h>
#endif
#if defined __arm__ || defined __aarch64__
#ifdef HAVE_OPENBSD
/*
* Extra check for elf_aux_info() on configure-less OpenBSD builds. Once
* version 7.5 has dropped off support, this can be changed to an assumption
* that the function exists in the Makefile-generated config.h.
*/
#include <sys/param.h>
#if OpenBSD >= 202409
#define HAVE_ELF_AUX_INFO
#endif
#endif
#if defined HAVE_GETAUXVAL || defined HAVE_ELF_AUX_INFO
#include <sys/auxv.h>
#elif defined __APPLE__
#include <sys/types.h>
#include <sys/sysctl.h>
#elif defined __NetBSD__
#include <stddef.h>
#include <sys/param.h>
#include <sys/sysctl.h>
#ifdef __aarch64__
#include <aarch64/armreg.h>
#else
#include <arm/armreg.h>
#endif
#elif defined _WIN32
#include <processthreadsapi.h>
#endif
static inline int cpu_supports_neon(void) {
#if defined HAVE_GETAUXVAL && defined __arm__ && defined HWCAP_NEON
return (getauxval(AT_HWCAP) & HWCAP_NEON) != 0;
#elif defined HAVE_GETAUXVAL && defined __arm__ && defined HWCAP_ARM_NEON
return (getauxval(AT_HWCAP) & HWCAP_ARM_NEON) != 0;
#elif defined HAVE_GETAUXVAL && defined __aarch64__ && defined HWCAP_ASIMD
return (getauxval(AT_HWCAP) & HWCAP_ASIMD) != 0;
#elif defined __APPLE__ && defined __aarch64__
int32_t ctl;
size_t ctlsize = sizeof ctl;
if (sysctlbyname("hw.optional.AdvSIMD", &ctl, &ctlsize, NULL, 0) != 0) return 0;
if (ctlsize != sizeof ctl) return 0;
return ctl;
#elif defined HAVE_ELF_AUX_INFO && defined __arm__ && defined HWCAP_NEON
unsigned long cap;
if (elf_aux_info(AT_HWCAP, &cap, sizeof cap) != 0) return 0;
return (cap & HWCAP_NEON) != 0;
#elif defined HAVE_ELF_AUX_INFO && defined __aarch64__ && defined HWCAP_ASIMD
unsigned long cap;
if (elf_aux_info(AT_HWCAP, &cap, sizeof cap) != 0) return 0;
return (cap & HWCAP_ASIMD) != 0;
#elif defined __NetBSD__ && defined __arm__ && defined ARM_MVFR0_ASIMD_MASK
uint32_t buf[16];
size_t buflen = sizeof buf;
if (sysctlbyname("machdep.id_mvfr", buf, &buflen, NULL, 0) != 0) return 0;
if (buflen < sizeof(uint32_t)) return 0;
return (buf[0] & ARM_MVFR0_ASIMD_MASK) == 0x00000002;
#elif defined __NetBSD__ && defined __aarch64__ && defined ID_AA64PFR0_EL1_ADVSIMD
struct aarch64_sysctl_cpu_id buf;
size_t buflen = sizeof buf;
if (sysctlbyname("machdep.cpu0.cpu_id", &buf, &buflen, NULL, 0) != 0) return 0;
if (buflen < offsetof(struct aarch64_sysctl_cpu_id, ac_aa64pfr0) + sizeof(uint64_t)) return 0;
return (buf.ac_aa64pfr0 & ID_AA64PFR0_EL1_ADVSIMD & 0x00e00000) == 0;
#elif defined _WIN32
return IsProcessorFeaturePresent(PF_ARM_V8_INSTRUCTIONS_AVAILABLE) != 0;
#else
return 0;
#endif
}
#endif
#ifdef BUILDING_SIMD_NIBBLE2BASE
void (*htslib_nibble2base)(uint8_t *nib, char *seq, int len) = nibble2base_default;
#if defined __x86_64__
/*
* Convert a nibble encoded BAM sequence to a string of bases.
*
* Using SSSE3 instructions, 16 codepoints that hold 2 bases each can be
* unpacked into 32 indexes from 0-15. Using the pshufb instruction these can
* be converted to the IUPAC characters.
* It falls back on the nibble2base_default function for the remainder.
*/
__attribute__((target("ssse3")))
static void nibble2base_ssse3(uint8_t *nib, char *seq, int len) {
const char *seq_end_ptr = seq + len;
char *seq_cursor = seq;
uint8_t *nibble_cursor = nib;
const char *seq_vec_end_ptr = seq_end_ptr - (2 * sizeof(__m128i) - 1);
__m128i nuc_lookup_vec = _mm_lddqu_si128((__m128i *)seq_nt16_str);
/* Nucleotides are encoded 4-bits per nucleotide and stored in 8-bit bytes
as follows: |AB|CD|EF|GH|. The 4-bit codes (going from 0-15) can be used
together with the pshufb instruction as a lookup table. The most efficient
way is to use bitwise AND and shift to create two vectors. One with all
the upper codes (|A|C|E|G|) and one with the lower codes (|B|D|F|H|).
The lookup can then be performed and the resulting vectors can be
interleaved again using the unpack instructions. */
while (seq_cursor < seq_vec_end_ptr) {
__m128i encoded = _mm_lddqu_si128((__m128i *)nibble_cursor);
__m128i encoded_upper = _mm_srli_epi64(encoded, 4);
encoded_upper = _mm_and_si128(encoded_upper, _mm_set1_epi8(15));
__m128i encoded_lower = _mm_and_si128(encoded, _mm_set1_epi8(15));
__m128i nucs_upper = _mm_shuffle_epi8(nuc_lookup_vec, encoded_upper);
__m128i nucs_lower = _mm_shuffle_epi8(nuc_lookup_vec, encoded_lower);
__m128i first_nucleotides = _mm_unpacklo_epi8(nucs_upper, nucs_lower);
__m128i second_nucleotides = _mm_unpackhi_epi8(nucs_upper, nucs_lower);
_mm_storeu_si128((__m128i *)seq_cursor, first_nucleotides);
_mm_storeu_si128((__m128i *)(seq_cursor + sizeof(__m128i)),
second_nucleotides);
nibble_cursor += sizeof(__m128i);
seq_cursor += 2 * sizeof(__m128i);
}
nibble2base_default(nibble_cursor, seq_cursor, seq_end_ptr - seq_cursor);
}
__attribute__((constructor))
static void nibble2base_resolve(void) {
if (__builtin_cpu_supports("ssse3")) {
htslib_nibble2base = nibble2base_ssse3;
}
}
#elif defined __ARM_NEON
static void nibble2base_neon(uint8_t *nib, char *seq0, int len) {
uint8x16_t low_nibbles_mask = vdupq_n_u8(0x0f);
uint8x16_t nuc_lookup_vec = vld1q_u8((const uint8_t *) seq_nt16_str);
#ifndef __aarch64__
uint8x8x2_t nuc_lookup_vec2 = {{ vget_low_u8(nuc_lookup_vec), vget_high_u8(nuc_lookup_vec) }};
#endif
uint8_t *seq = (uint8_t *) seq0;
int blocks;
for (blocks = len / 32; blocks > 0; --blocks) {
uint8x16_t encoded = vld1q_u8(nib);
nib += 16;
/* Translate the high and low nibbles to nucleotide letters separately,
then interleave them back together via vzipq for writing. */
uint8x16_t high_nibbles = vshrq_n_u8(encoded, 4);
uint8x16_t low_nibbles = vandq_u8(encoded, low_nibbles_mask);
#ifdef __aarch64__
uint8x16_t high_nucleotides = vqtbl1q_u8(nuc_lookup_vec, high_nibbles);
uint8x16_t low_nucleotides = vqtbl1q_u8(nuc_lookup_vec, low_nibbles);
#else
uint8x8_t high_low = vtbl2_u8(nuc_lookup_vec2, vget_low_u8(high_nibbles));
uint8x8_t high_high = vtbl2_u8(nuc_lookup_vec2, vget_high_u8(high_nibbles));
uint8x16_t high_nucleotides = vcombine_u8(high_low, high_high);
uint8x8_t low_low = vtbl2_u8(nuc_lookup_vec2, vget_low_u8(low_nibbles));
uint8x8_t low_high = vtbl2_u8(nuc_lookup_vec2, vget_high_u8(low_nibbles));
uint8x16_t low_nucleotides = vcombine_u8(low_low, low_high);
#endif
#ifdef __aarch64__
vst1q_u8_x2(seq, vzipq_u8(high_nucleotides, low_nucleotides));
#else
// Avoid vst1q_u8_x2 as GCC erroneously omits it on 32-bit ARM
uint8x16x2_t nucleotides = {{ high_nucleotides, low_nucleotides }};
vst2q_u8(seq, nucleotides);
#endif
seq += 32;
}
if (len % 32 != 0)
nibble2base_default(nib, (char *) seq, len % 32);
}
static __attribute__((constructor)) void nibble2base_resolve(void) {
if (cpu_supports_neon()) htslib_nibble2base = nibble2base_neon;
}
#endif
#endif // BUILDING_SIMD_NIBBLE2BASE
// Potentially useful diagnostic, and prevents "empty translation unit" errors
const char htslib_simd[] =
"SIMD functions present:"
#ifdef BUILDING_SIMD_NIBBLE2BASE
" nibble2base"
#endif
".";