-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
common.rs
397 lines (378 loc) · 14.3 KB
/
common.rs
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
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
// SPDX-License-Identifier: Apache-2.0 OR MIT
#[derive(Clone, Copy)]
pub(crate) struct CpuInfo(u32);
impl CpuInfo {
const INIT: u32 = 0;
#[inline]
fn set(&mut self, bit: u32) {
self.0 = set(self.0, bit);
}
#[inline]
fn test(self, bit: u32) -> bool {
test(self.0, bit)
}
}
#[inline]
fn set(x: u32, bit: u32) -> u32 {
x | 1 << bit
}
#[inline]
fn test(x: u32, bit: u32) -> bool {
x & (1 << bit) != 0
}
#[inline]
pub(crate) fn detect() -> CpuInfo {
use core::sync::atomic::{AtomicU32, Ordering};
static CACHE: AtomicU32 = AtomicU32::new(0);
let mut info = CpuInfo(CACHE.load(Ordering::Relaxed));
if info.0 != 0 {
return info;
}
info.set(CpuInfo::INIT);
// Note: detect_false cfg is intended to make it easy for portable-atomic developers to
// test cases such as has_cmpxchg16b == false, has_lse == false,
// __kuser_helper_version < 5, etc., and is not a public API.
if !cfg!(portable_atomic_test_outline_atomics_detect_false) {
_detect(&mut info);
}
CACHE.store(info.0, Ordering::Relaxed);
info
}
#[cfg(target_arch = "aarch64")]
impl CpuInfo {
/// Whether FEAT_LSE is available
const HAS_LSE: u32 = 1;
/// Whether FEAT_LSE2 is available
#[cfg_attr(not(test), allow(dead_code))]
const HAS_LSE2: u32 = 2;
/// Whether FEAT_LSE128 is available
// This is currently only used in tests.
#[cfg(test)]
const HAS_LSE128: u32 = 3;
/// Whether FEAT_LRCPC3 is available
// This is currently only used in tests.
#[cfg(test)]
const HAS_RCPC3: u32 = 4;
#[cfg(any(test, not(any(target_feature = "lse", portable_atomic_target_feature = "lse"))))]
#[inline]
pub(crate) fn has_lse(self) -> bool {
self.test(CpuInfo::HAS_LSE)
}
#[cfg_attr(not(test), allow(dead_code))]
#[cfg(any(test, not(any(target_feature = "lse2", portable_atomic_target_feature = "lse2"))))]
#[inline]
pub(crate) fn has_lse2(self) -> bool {
self.test(CpuInfo::HAS_LSE2)
}
#[cfg(test)]
#[inline]
pub(crate) fn has_lse128(self) -> bool {
self.test(CpuInfo::HAS_LSE128)
}
#[cfg(test)]
#[inline]
pub(crate) fn has_rcpc3(self) -> bool {
self.test(CpuInfo::HAS_RCPC3)
}
}
#[cfg(target_arch = "x86_64")]
impl CpuInfo {
/// Whether CMPXCHG16B is available
const HAS_CMPXCHG16B: u32 = 1;
/// Whether VMOVDQA is atomic
#[cfg(target_feature = "sse")]
const HAS_VMOVDQA_ATOMIC: u32 = 2;
#[cfg(any(
test,
not(any(target_feature = "cmpxchg16b", portable_atomic_target_feature = "cmpxchg16b")),
))]
#[inline]
pub(crate) fn has_cmpxchg16b(self) -> bool {
self.test(CpuInfo::HAS_CMPXCHG16B)
}
#[cfg(target_feature = "sse")]
#[inline]
pub(crate) fn has_vmovdqa_atomic(self) -> bool {
self.test(CpuInfo::HAS_VMOVDQA_ATOMIC)
}
}
#[cfg(target_arch = "powerpc64")]
impl CpuInfo {
/// Whether lqarx and stqcx. instructions are available
const HAS_QUADWORD_ATOMICS: u32 = 1;
#[cfg(any(
test,
not(any(
target_feature = "quadword-atomics",
portable_atomic_target_feature = "quadword-atomics",
)),
))]
#[inline]
pub(crate) fn has_quadword_atomics(self) -> bool {
self.test(CpuInfo::HAS_QUADWORD_ATOMICS)
}
}
// core::ffi::c_* (except c_void) requires Rust 1.64, libc will soon require Rust 1.47
#[cfg(any(target_arch = "aarch64", target_arch = "powerpc64"))]
#[cfg(not(windows))]
#[allow(dead_code, non_camel_case_types)]
mod c_types {
pub(crate) type c_void = core::ffi::c_void;
// c_{,u}int is {i,u}32 on non-16-bit architectures
// https://github.com/rust-lang/rust/blob/1.70.0/library/core/src/ffi/mod.rs#L160
// (16-bit architectures currently don't use this module)
pub(crate) type c_int = i32;
pub(crate) type c_uint = u32;
// c_{,u}long is {i,u}64 on non-Windows 64-bit targets, otherwise is {i,u}32
// https://github.com/rust-lang/rust/blob/1.70.0/library/core/src/ffi/mod.rs#L176
// (Windows currently doesn't use this module - this module is cfg(not(windows)))
#[cfg(target_pointer_width = "64")]
pub(crate) type c_long = i64;
#[cfg(not(target_pointer_width = "64"))]
pub(crate) type c_long = i32;
#[cfg(target_pointer_width = "64")]
pub(crate) type c_ulong = u64;
#[cfg(not(target_pointer_width = "64"))]
pub(crate) type c_ulong = u32;
// c_size_t is currently always usize
// https://github.com/rust-lang/rust/blob/1.70.0/library/core/src/ffi/mod.rs#L88
pub(crate) type c_size_t = usize;
// c_char is u8 by default on most non-Apple/non-Windows ARM/PowerPC/RISC-V/s390x/Hexagon targets
// (Linux/Android/FreeBSD/NetBSD/OpenBSD/VxWorks/Fuchsia/QNX Neutrino/Horizon/AIX/z/OS)
// https://github.com/rust-lang/rust/blob/1.70.0/library/core/src/ffi/mod.rs#L104
// https://github.com/llvm/llvm-project/blob/llvmorg-18.1.2/lldb/source/Utility/ArchSpec.cpp#L712
// RISC-V https://github.com/riscv-non-isa/riscv-elf-psabi-doc/blob/HEAD/riscv-cc.adoc#cc-type-representations
// Hexagon https://lists.llvm.org/pipermail/llvm-dev/attachments/20190916/21516a52/attachment-0001.pdf
// AIX https://www.ibm.com/docs/en/xl-c-aix/13.1.2?topic=descriptions-qchars
// z/OS https://www.ibm.com/docs/en/zos/2.5.0?topic=specifiers-character-types
// (macOS is currently the only Apple target that uses this module, and Windows currently doesn't use this module)
#[cfg(not(target_os = "macos"))]
pub(crate) type c_char = u8;
// c_char is i8 on all Apple targets
#[cfg(target_os = "macos")]
pub(crate) type c_char = i8;
// Static assertions for C type definitions.
#[cfg(test)]
const _: fn() = || {
use test_helper::{libc, sys};
let _: c_int = 0 as std::os::raw::c_int;
let _: c_uint = 0 as std::os::raw::c_uint;
let _: c_long = 0 as std::os::raw::c_long;
let _: c_ulong = 0 as std::os::raw::c_ulong;
let _: c_size_t = 0 as libc::size_t; // std::os::raw::c_size_t is unstable
let _: c_char = 0 as std::os::raw::c_char;
let _: c_char = 0 as sys::c_char;
};
}
#[allow(
clippy::alloc_instead_of_core,
clippy::std_instead_of_alloc,
clippy::std_instead_of_core,
clippy::undocumented_unsafe_blocks,
clippy::wildcard_imports
)]
#[cfg(test)]
mod tests_common {
use super::*;
#[test]
fn test_bit_flags() {
let mut x = CpuInfo(0);
#[cfg(target_arch = "aarch64")]
{
assert!(!x.test(CpuInfo::INIT));
assert!(!x.test(CpuInfo::HAS_LSE));
assert!(!x.test(CpuInfo::HAS_LSE2));
assert!(!x.test(CpuInfo::HAS_LSE128));
assert!(!x.test(CpuInfo::HAS_RCPC3));
x.set(CpuInfo::INIT);
assert!(x.test(CpuInfo::INIT));
assert!(!x.test(CpuInfo::HAS_LSE));
assert!(!x.test(CpuInfo::HAS_LSE2));
assert!(!x.test(CpuInfo::HAS_LSE128));
assert!(!x.test(CpuInfo::HAS_RCPC3));
x.set(CpuInfo::HAS_LSE);
assert!(x.test(CpuInfo::INIT));
assert!(x.test(CpuInfo::HAS_LSE));
assert!(!x.test(CpuInfo::HAS_LSE2));
assert!(!x.test(CpuInfo::HAS_LSE128));
assert!(!x.test(CpuInfo::HAS_RCPC3));
x.set(CpuInfo::HAS_LSE2);
assert!(x.test(CpuInfo::INIT));
assert!(x.test(CpuInfo::HAS_LSE));
assert!(x.test(CpuInfo::HAS_LSE2));
assert!(!x.test(CpuInfo::HAS_LSE128));
assert!(!x.test(CpuInfo::HAS_RCPC3));
x.set(CpuInfo::HAS_LSE128);
assert!(x.test(CpuInfo::INIT));
assert!(x.test(CpuInfo::HAS_LSE));
assert!(x.test(CpuInfo::HAS_LSE2));
assert!(x.test(CpuInfo::HAS_LSE128));
assert!(!x.test(CpuInfo::HAS_RCPC3));
x.set(CpuInfo::HAS_RCPC3);
assert!(x.test(CpuInfo::INIT));
assert!(x.test(CpuInfo::HAS_LSE));
assert!(x.test(CpuInfo::HAS_LSE2));
assert!(x.test(CpuInfo::HAS_LSE128));
assert!(x.test(CpuInfo::HAS_RCPC3));
}
#[cfg(target_arch = "x86_64")]
{
assert!(!x.test(CpuInfo::INIT));
assert!(!x.test(CpuInfo::HAS_CMPXCHG16B));
assert!(!x.test(CpuInfo::HAS_VMOVDQA_ATOMIC));
x.set(CpuInfo::INIT);
assert!(x.test(CpuInfo::INIT));
assert!(!x.test(CpuInfo::HAS_CMPXCHG16B));
assert!(!x.test(CpuInfo::HAS_VMOVDQA_ATOMIC));
x.set(CpuInfo::HAS_CMPXCHG16B);
assert!(x.test(CpuInfo::INIT));
assert!(x.test(CpuInfo::HAS_CMPXCHG16B));
assert!(!x.test(CpuInfo::HAS_VMOVDQA_ATOMIC));
x.set(CpuInfo::HAS_VMOVDQA_ATOMIC);
assert!(x.test(CpuInfo::INIT));
assert!(x.test(CpuInfo::HAS_CMPXCHG16B));
assert!(x.test(CpuInfo::HAS_VMOVDQA_ATOMIC));
}
#[cfg(target_arch = "powerpc64")]
{
assert!(!x.test(CpuInfo::INIT));
assert!(!x.test(CpuInfo::HAS_QUADWORD_ATOMICS));
x.set(CpuInfo::INIT);
assert!(x.test(CpuInfo::INIT));
assert!(!x.test(CpuInfo::HAS_QUADWORD_ATOMICS));
x.set(CpuInfo::HAS_QUADWORD_ATOMICS);
assert!(x.test(CpuInfo::INIT));
assert!(x.test(CpuInfo::HAS_QUADWORD_ATOMICS));
}
}
#[test]
fn print_features() {
use std::{fmt::Write as _, io::Write, string::String};
let mut features = String::new();
macro_rules! print_feature {
($name:expr, $enabled:expr $(,)?) => {{
let _ = writeln!(features, " {}: {}", $name, $enabled);
}};
}
#[cfg(target_arch = "aarch64")]
{
features.push_str("run-time:\n");
print_feature!("lse", detect().test(CpuInfo::HAS_LSE));
print_feature!("lse2", detect().test(CpuInfo::HAS_LSE2));
print_feature!("lse128", detect().test(CpuInfo::HAS_LSE128));
print_feature!("rcpc3", detect().test(CpuInfo::HAS_RCPC3));
features.push_str("compile-time:\n");
print_feature!(
"lse",
cfg!(any(target_feature = "lse", portable_atomic_target_feature = "lse")),
);
print_feature!(
"lse2",
cfg!(any(target_feature = "lse2", portable_atomic_target_feature = "lse2")),
);
}
#[cfg(target_arch = "x86_64")]
{
features.push_str("run-time:\n");
print_feature!("cmpxchg16b", detect().test(CpuInfo::HAS_CMPXCHG16B));
print_feature!("vmovdqa-atomic", detect().test(CpuInfo::HAS_VMOVDQA_ATOMIC));
features.push_str("compile-time:\n");
print_feature!(
"cmpxchg16b",
cfg!(any(
target_feature = "cmpxchg16b",
portable_atomic_target_feature = "cmpxchg16b",
)),
);
}
#[cfg(target_arch = "powerpc64")]
{
features.push_str("run-time:\n");
print_feature!("quadword-atomics", detect().test(CpuInfo::HAS_QUADWORD_ATOMICS));
features.push_str("compile-time:\n");
print_feature!(
"quadword-atomics",
cfg!(any(
target_feature = "quadword-atomics",
portable_atomic_target_feature = "quadword-atomics",
)),
);
}
let stdout = std::io::stderr();
let mut stdout = stdout.lock();
let _ = stdout.write_all(features.as_bytes());
}
#[cfg(target_arch = "x86_64")]
#[test]
#[cfg_attr(portable_atomic_test_outline_atomics_detect_false, ignore)]
fn test_detect() {
if detect().has_cmpxchg16b() {
assert!(detect().test(CpuInfo::HAS_CMPXCHG16B));
} else {
assert!(!detect().test(CpuInfo::HAS_CMPXCHG16B));
}
if detect().has_vmovdqa_atomic() {
assert!(detect().test(CpuInfo::HAS_VMOVDQA_ATOMIC));
} else {
assert!(!detect().test(CpuInfo::HAS_VMOVDQA_ATOMIC));
}
}
#[cfg(target_arch = "aarch64")]
#[test]
#[cfg_attr(portable_atomic_test_outline_atomics_detect_false, ignore)]
fn test_detect() {
let proc_cpuinfo = test_helper::cpuinfo::ProcCpuinfo::new();
if detect().has_lse() {
assert!(detect().test(CpuInfo::HAS_LSE));
if let Ok(proc_cpuinfo) = proc_cpuinfo {
assert!(proc_cpuinfo.lse);
}
} else {
assert!(!detect().test(CpuInfo::HAS_LSE));
if let Ok(proc_cpuinfo) = proc_cpuinfo {
assert!(!proc_cpuinfo.lse);
}
}
if detect().has_lse2() {
assert!(detect().test(CpuInfo::HAS_LSE));
assert!(detect().test(CpuInfo::HAS_LSE2));
if let Ok(test_helper::cpuinfo::ProcCpuinfo { lse2: Some(lse2), .. }) = proc_cpuinfo {
assert!(lse2);
}
} else {
assert!(!detect().test(CpuInfo::HAS_LSE2));
if let Ok(test_helper::cpuinfo::ProcCpuinfo { lse2: Some(lse2), .. }) = proc_cpuinfo {
assert!(!lse2);
}
}
if detect().has_lse128() {
assert!(detect().test(CpuInfo::HAS_LSE));
assert!(detect().test(CpuInfo::HAS_LSE2));
assert!(detect().test(CpuInfo::HAS_LSE128));
} else {
assert!(!detect().test(CpuInfo::HAS_LSE128));
}
if detect().has_rcpc3() {
assert!(detect().test(CpuInfo::HAS_RCPC3));
} else {
assert!(!detect().test(CpuInfo::HAS_RCPC3));
}
}
#[cfg(target_arch = "powerpc64")]
#[test]
#[cfg_attr(portable_atomic_test_outline_atomics_detect_false, ignore)]
fn test_detect() {
let proc_cpuinfo = test_helper::cpuinfo::ProcCpuinfo::new();
if detect().has_quadword_atomics() {
assert!(detect().test(CpuInfo::HAS_QUADWORD_ATOMICS));
if let Ok(proc_cpuinfo) = proc_cpuinfo {
assert!(proc_cpuinfo.power8);
}
} else {
assert!(!detect().test(CpuInfo::HAS_QUADWORD_ATOMICS));
if let Ok(proc_cpuinfo) = proc_cpuinfo {
assert!(!proc_cpuinfo.power8);
}
}
}
}