std_detect/detect/
cache.rs1#![allow(dead_code)] use core::sync::atomic::{AtomicUsize, Ordering};
7
8#[inline]
10const fn set_bit(x: u128, bit: u32) -> u128 {
11 x | 1 << bit
12}
13
14#[inline]
16const fn test_bit(x: u128, bit: u32) -> bool {
17 x & (1 << bit) != 0
18}
19
20#[inline]
22const fn unset_bit(x: u128, bit: u32) -> u128 {
23 x & !(1 << bit)
24}
25
26const CACHE_CAPACITY: u32 = 93;
28
29#[derive(Copy, Clone, Default, PartialEq, Eq)]
33pub(crate) struct Initializer(u128);
34
35impl Initializer {
38 #[inline]
40 pub(crate) fn test(self, bit: u32) -> bool {
41 debug_assert!(bit < CACHE_CAPACITY, "too many features, time to increase the cache size!");
42 test_bit(self.0, bit)
43 }
44
45 #[inline]
47 pub(crate) fn set(&mut self, bit: u32) {
48 debug_assert!(bit < CACHE_CAPACITY, "too many features, time to increase the cache size!");
49 let v = self.0;
50 self.0 = set_bit(v, bit);
51 }
52
53 #[inline]
55 pub(crate) fn unset(&mut self, bit: u32) {
56 debug_assert!(bit < CACHE_CAPACITY, "too many features, time to increase the cache size!");
57 let v = self.0;
58 self.0 = unset_bit(v, bit);
59 }
60}
61
62static CACHE: [Cache; 3] = [Cache::uninitialized(), Cache::uninitialized(), Cache::uninitialized()];
66
67struct Cache(AtomicUsize);
76
77impl Cache {
78 const CAPACITY: u32 = (core::mem::size_of::<usize>() * 8 - 1) as u32;
79 const MASK: usize = (1 << Cache::CAPACITY) - 1;
80 const INITIALIZED_BIT: usize = 1usize << Cache::CAPACITY;
81
82 #[allow(clippy::declare_interior_mutable_const)]
84 const fn uninitialized() -> Self {
85 Cache(AtomicUsize::new(0))
86 }
87
88 #[inline]
90 pub(crate) fn test(&self, bit: u32) -> Option<bool> {
91 let cached = self.0.load(Ordering::Relaxed);
92 if cached == 0 { None } else { Some(test_bit(cached as u128, bit)) }
93 }
94
95 #[inline]
97 fn initialize(&self, value: usize) -> usize {
98 debug_assert_eq!((value & !Cache::MASK), 0);
99 self.0.store(value | Cache::INITIALIZED_BIT, Ordering::Relaxed);
100 value
101 }
102}
103
104cfg_if::cfg_if! {
105 if #[cfg(feature = "std_detect_env_override")] {
106 #[inline]
107 fn disable_features(disable: &[u8], value: &mut Initializer) {
108 if let Ok(disable) = core::str::from_utf8(disable) {
109 for v in disable.split(" ") {
110 let _ = super::Feature::from_str(v).map(|v| value.unset(v as u32));
111 }
112 }
113 }
114
115 #[inline]
116 fn initialize(mut value: Initializer) -> Initializer {
117 use core::ffi::CStr;
118 const RUST_STD_DETECT_UNSTABLE: &CStr = c"RUST_STD_DETECT_UNSTABLE";
119 cfg_if::cfg_if! {
120 if #[cfg(windows)] {
121 use alloc::vec;
122 #[link(name = "kernel32")]
123 unsafe extern "system" {
124 fn GetEnvironmentVariableA(name: *const u8, buffer: *mut u8, size: u32) -> u32;
125 }
126 let len = unsafe { GetEnvironmentVariableA(RUST_STD_DETECT_UNSTABLE.as_ptr().cast::<u8>(), core::ptr::null_mut(), 0) };
127 if len > 0 {
128 let mut env = vec![0; len as usize + 1];
130 let len = unsafe { GetEnvironmentVariableA(RUST_STD_DETECT_UNSTABLE.as_ptr().cast::<u8>(), env.as_mut_ptr(), len + 1) };
131 if len > 0 {
132 disable_features(&env[..len as usize], &mut value);
133 }
134 }
135 } else {
136 let env = unsafe {
137 libc::getenv(RUST_STD_DETECT_UNSTABLE.as_ptr())
138 };
139 if !env.is_null() {
140 let len = unsafe { libc::strlen(env) };
141 let env = unsafe { core::slice::from_raw_parts(env as *const u8, len) };
142 disable_features(env, &mut value);
143 }
144 }
145 }
146 do_initialize(value);
147 value
148 }
149 } else {
150 #[inline]
151 fn initialize(value: Initializer) -> Initializer {
152 do_initialize(value);
153 value
154 }
155 }
156}
157
158#[inline]
159fn do_initialize(value: Initializer) {
160 CACHE[0].initialize((value.0) as usize & Cache::MASK);
161 CACHE[1].initialize((value.0 >> Cache::CAPACITY) as usize & Cache::MASK);
162 CACHE[2].initialize((value.0 >> (2 * Cache::CAPACITY)) as usize & Cache::MASK);
163}
164
165#[cold]
175fn detect_and_initialize() -> Initializer {
176 initialize(super::os::detect_features())
177}
178
179#[inline]
192pub(crate) fn test(bit: u32) -> bool {
193 let (relative_bit, idx) = if bit < Cache::CAPACITY {
194 (bit, 0)
195 } else if bit < 2 * Cache::CAPACITY {
196 (bit - Cache::CAPACITY, 1)
197 } else {
198 (bit - 2 * Cache::CAPACITY, 2)
199 };
200 CACHE[idx].test(relative_bit).unwrap_or_else(|| detect_and_initialize().test(bit))
201}