summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/target/cfg_if/detect/os/freebsd/arm.rs
blob: 7aa040075e04ab8ba999bfdf79fe0d3a0beefc8d (plain)
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
//! Run-time feature detection for ARM on FreeBSD

use super::auxvec;
use crate::detect::{cache, Feature};

/// Performs run-time feature detection.
#[inline]
pub fn check_for(x: Feature) -> bool {
    cache::test(x as u32, detect_features)
}

/// Try to read the features from the auxiliary vector
fn detect_features() -> cache::Initializer {
    let mut value = cache::Initializer::default();
    let enable_feature = |value: &mut cache::Initializer, f, enable| {
        if enable {
            value.set(f as u32);
        }
    };

    if let Ok(auxv) = auxvec::auxv() {
        enable_feature(&mut value, Feature::neon, auxv.hwcap & 0x00001000 != 0);
        enable_feature(&mut value, Feature::pmull, auxv.hwcap2 & 0x00000002 != 0);
        return value;
    }
    value
}