#![cfg_attr(portable_atomic_sanitize_thread, allow(dead_code))]
#[cfg(any(target_env = "sgx", miri))]
compile_error!("internal error: this module is not supported on this environment");
include!("common.rs");
#[cfg(not(portable_atomic_no_asm))]
use core::arch::asm;
use core::arch::x86_64::CpuidResult;
#[cfg(not(target_env = "sgx"))]
fn __cpuid(leaf: u32) -> CpuidResult {
let eax;
let mut ebx;
let ecx;
let edx;
unsafe {
asm!(
"mov {ebx_tmp:r}, rbx", "cpuid",
"xchg {ebx_tmp:r}, rbx", ebx_tmp = out(reg) ebx,
inout("eax") leaf => eax,
inout("ecx") 0 => ecx,
out("edx") edx,
options(nostack, preserves_flags),
);
}
CpuidResult { eax, ebx, ecx, edx }
}
const _VENDOR_ID_INTEL: [u8; 12] = *b"GenuineIntel"; const _VENDOR_ID_INTEL2: [u8; 12] = *b"GenuineIotel"; const _VENDOR_ID_AMD: [u8; 12] = *b"AuthenticAMD"; const _VENDOR_ID_ZHAOXIN: [u8; 12] = *b" Shanghai "; fn _vendor_id() -> [u8; 12] {
let CpuidResult { ebx, ecx, edx, .. } = __cpuid(0);
let vendor_id: [[u8; 4]; 3] = [ebx.to_ne_bytes(), edx.to_ne_bytes(), ecx.to_ne_bytes()];
unsafe { core::mem::transmute(vendor_id) }
}
fn _vendor_has_vmovdqa_atomic(vendor_id: [u8; 12]) -> bool {
vendor_id == _VENDOR_ID_INTEL
|| vendor_id == _VENDOR_ID_INTEL2
|| vendor_id == _VENDOR_ID_AMD
|| vendor_id == _VENDOR_ID_ZHAOXIN
}
#[cold]
fn _detect(info: &mut CpuInfo) {
let proc_info_ecx = __cpuid(0x0000_0001_u32).ecx;
if test(proc_info_ecx, 13) {
info.set(CpuInfo::HAS_CMPXCHG16B);
}
#[cfg(target_feature = "sse")]
{
use core::arch::x86_64::_xgetbv;
let cpu_xsave = test(proc_info_ecx, 26);
if cpu_xsave {
let cpu_osxsave = test(proc_info_ecx, 27);
if cpu_osxsave {
let xcr0 = unsafe { _xgetbv(0) };
let os_avx_support = xcr0 & 6 == 6;
if os_avx_support && test(proc_info_ecx, 28) {
let vendor_id = _vendor_id();
if _vendor_has_vmovdqa_atomic(vendor_id) {
info.set(CpuInfo::HAS_VMOVDQA_ATOMIC);
}
}
}
}
}
}
#[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 {
use std::io::{self, Write};
use super::*;
#[test]
#[cfg_attr(portable_atomic_test_outline_atomics_detect_false, ignore)]
fn test_cpuid() {
assert_eq!(std::is_x86_feature_detected!("cmpxchg16b"), detect().has_cmpxchg16b());
let vendor_id = _vendor_id();
{
let stdout = io::stderr();
let mut stdout = stdout.lock();
let _ = writeln!(stdout, "\n vendor_id: {}", std::str::from_utf8(&vendor_id).unwrap());
}
if _vendor_has_vmovdqa_atomic(vendor_id) {
assert_eq!(std::is_x86_feature_detected!("avx"), detect().has_vmovdqa_atomic());
} else {
assert!(!detect().has_vmovdqa_atomic());
}
}
}