Lines Matching refs:boot_cpu_has

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