Lines Matching refs:boot_cpu_has
338 #define boot_cpu_has(bit) cpu_has(&boot_cpu_data, bit) macro
351 #define cpu_has_fpu boot_cpu_has(X86_FEATURE_FPU)
352 #define cpu_has_de boot_cpu_has(X86_FEATURE_DE)
353 #define cpu_has_pse boot_cpu_has(X86_FEATURE_PSE)
354 #define cpu_has_tsc boot_cpu_has(X86_FEATURE_TSC)
355 #define cpu_has_pge boot_cpu_has(X86_FEATURE_PGE)
356 #define cpu_has_apic boot_cpu_has(X86_FEATURE_APIC)
357 #define cpu_has_sep boot_cpu_has(X86_FEATURE_SEP)
358 #define cpu_has_mtrr boot_cpu_has(X86_FEATURE_MTRR)
359 #define cpu_has_mmx boot_cpu_has(X86_FEATURE_MMX)
360 #define cpu_has_fxsr boot_cpu_has(X86_FEATURE_FXSR)
361 #define cpu_has_xmm boot_cpu_has(X86_FEATURE_XMM)
362 #define cpu_has_xmm2 boot_cpu_has(X86_FEATURE_XMM2)
363 #define cpu_has_xmm3 boot_cpu_has(X86_FEATURE_XMM3)
364 #define cpu_has_ssse3 boot_cpu_has(X86_FEATURE_SSSE3)
365 #define cpu_has_aes boot_cpu_has(X86_FEATURE_AES)
366 #define cpu_has_avx boot_cpu_has(X86_FEATURE_AVX)
367 #define cpu_has_avx2 boot_cpu_has(X86_FEATURE_AVX2)
368 #define cpu_has_ht boot_cpu_has(X86_FEATURE_HT)
369 #define cpu_has_nx boot_cpu_has(X86_FEATURE_NX)
370 #define cpu_has_xstore boot_cpu_has(X86_FEATURE_XSTORE)
371 #define cpu_has_xstore_enabled boot_cpu_has(X86_FEATURE_XSTORE_EN)
372 #define cpu_has_xcrypt boot_cpu_has(X86_FEATURE_XCRYPT)
373 #define cpu_has_xcrypt_enabled boot_cpu_has(X86_FEATURE_XCRYPT_EN)
374 #define cpu_has_ace2 boot_cpu_has(X86_FEATURE_ACE2)
375 #define cpu_has_ace2_enabled boot_cpu_has(X86_FEATURE_ACE2_EN)
376 #define cpu_has_phe boot_cpu_has(X86_FEATURE_PHE)
377 #define cpu_has_phe_enabled boot_cpu_has(X86_FEATURE_PHE_EN)
378 #define cpu_has_pmm boot_cpu_has(X86_FEATURE_PMM)
379 #define cpu_has_pmm_enabled boot_cpu_has(X86_FEATURE_PMM_EN)
380 #define cpu_has_ds boot_cpu_has(X86_FEATURE_DS)
381 #define cpu_has_pebs boot_cpu_has(X86_FEATURE_PEBS)
382 #define cpu_has_clflush boot_cpu_has(X86_FEATURE_CLFLUSH)
383 #define cpu_has_bts boot_cpu_has(X86_FEATURE_BTS)
384 #define cpu_has_gbpages boot_cpu_has(X86_FEATURE_GBPAGES)
385 #define cpu_has_arch_perfmon boot_cpu_has(X86_FEATURE_ARCH_PERFMON)
386 #define cpu_has_pat boot_cpu_has(X86_FEATURE_PAT)
387 #define cpu_has_xmm4_1 boot_cpu_has(X86_FEATURE_XMM4_1)
388 #define cpu_has_xmm4_2 boot_cpu_has(X86_FEATURE_XMM4_2)
389 #define cpu_has_x2apic boot_cpu_has(X86_FEATURE_X2APIC)
390 #define cpu_has_xsave boot_cpu_has(X86_FEATURE_XSAVE)
391 #define cpu_has_xsaveopt boot_cpu_has(X86_FEATURE_XSAVEOPT)
392 #define cpu_has_xsaves boot_cpu_has(X86_FEATURE_XSAVES)
393 #define cpu_has_osxsave boot_cpu_has(X86_FEATURE_OSXSAVE)
394 #define cpu_has_hypervisor boot_cpu_has(X86_FEATURE_HYPERVISOR)
395 #define cpu_has_pclmulqdq boot_cpu_has(X86_FEATURE_PCLMULQDQ)
396 #define cpu_has_perfctr_core boot_cpu_has(X86_FEATURE_PERFCTR_CORE)
397 #define cpu_has_perfctr_nb boot_cpu_has(X86_FEATURE_PERFCTR_NB)
398 #define cpu_has_perfctr_l2 boot_cpu_has(X86_FEATURE_PERFCTR_L2)
399 #define cpu_has_cx8 boot_cpu_has(X86_FEATURE_CX8)
400 #define cpu_has_cx16 boot_cpu_has(X86_FEATURE_CX16)
401 #define cpu_has_eager_fpu boot_cpu_has(X86_FEATURE_EAGER_FPU)
402 #define cpu_has_topoext boot_cpu_has(X86_FEATURE_TOPOEXT)
403 #define cpu_has_bpext boot_cpu_has(X86_FEATURE_BPEXT)
490 __builtin_constant_p(boot_cpu_has(bit)) ? \
491 boot_cpu_has(bit) : \
494 boot_cpu_has(bit) \
575 __builtin_constant_p(boot_cpu_has(bit)) ? \
576 boot_cpu_has(bit) : \
583 #define static_cpu_has(bit) boot_cpu_has(bit)
584 #define static_cpu_has_safe(bit) boot_cpu_has(bit)
596 #define cpu_have_feature boot_cpu_has