pub fn check_host_hybrid_support(
    cpuid: &CpuIdCall
) -> Result<(), HybridSupportError>
Expand description

Check if host supports hybrid CPU feature. The check include: 1. Check if CPUID.1AH exists. CPUID.1AH is hybrid information enumeration leaf. 2. Check if CPUID.07H.00H:EDX[bit 15] sets. This bit means the processor is identified as a hybrid part. 3. Check if CPUID.1AH:EAX sets. The hybrid core type is set in EAX.

Arguments

    • cpuid the wrapped cpuid functions used to get CPUID info.