1 /* Subroutines for the gcc driver.
2 Copyright (C) 2006-2017 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3, or (at your option)
11 GCC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
22 #include "coretypes.h"
25 const char *host_detect_local_cpu (int argc
, const char **argv
);
27 #if defined(__GNUC__) && (__GNUC__ >= 5 || !defined(__PIC__))
37 /* Returns command line parameters that describe size and
38 cache line size of the processor caches. */
41 describe_cache (struct cache_desc level1
, struct cache_desc level2
)
43 char size
[100], line
[100], size2
[100];
45 /* At the moment, gcc does not use the information
46 about the associativity of the cache. */
48 snprintf (size
, sizeof (size
),
49 "--param l1-cache-size=%u ", level1
.sizekb
);
50 snprintf (line
, sizeof (line
),
51 "--param l1-cache-line-size=%u ", level1
.line
);
53 snprintf (size2
, sizeof (size2
),
54 "--param l2-cache-size=%u ", level2
.sizekb
);
56 return concat (size
, line
, size2
, NULL
);
59 /* Detect L2 cache parameters using CPUID extended function 0x80000006. */
62 detect_l2_cache (struct cache_desc
*level2
)
64 unsigned eax
, ebx
, ecx
, edx
;
67 __cpuid (0x80000006, eax
, ebx
, ecx
, edx
);
69 level2
->sizekb
= (ecx
>> 16) & 0xffff;
70 level2
->line
= ecx
& 0xff;
72 assoc
= (ecx
>> 12) & 0xf;
77 else if (assoc
>= 0xa && assoc
<= 0xc)
78 assoc
= 32 + (assoc
- 0xa) * 16;
79 else if (assoc
>= 0xd && assoc
<= 0xe)
80 assoc
= 96 + (assoc
- 0xd) * 32;
82 level2
->assoc
= assoc
;
85 /* Returns the description of caches for an AMD processor. */
88 detect_caches_amd (unsigned max_ext_level
)
90 unsigned eax
, ebx
, ecx
, edx
;
92 struct cache_desc level1
, level2
= {0, 0, 0};
94 if (max_ext_level
< 0x80000005)
97 __cpuid (0x80000005, eax
, ebx
, ecx
, edx
);
99 level1
.sizekb
= (ecx
>> 24) & 0xff;
100 level1
.assoc
= (ecx
>> 16) & 0xff;
101 level1
.line
= ecx
& 0xff;
103 if (max_ext_level
>= 0x80000006)
104 detect_l2_cache (&level2
);
106 return describe_cache (level1
, level2
);
109 /* Decodes the size, the associativity and the cache line size of
110 L1/L2 caches of an Intel processor. Values are based on
111 "Intel Processor Identification and the CPUID Instruction"
112 [Application Note 485], revision -032, December 2007. */
115 decode_caches_intel (unsigned reg
, bool xeon_mp
,
116 struct cache_desc
*level1
, struct cache_desc
*level2
)
120 for (i
= 24; i
>= 0; i
-= 8)
121 switch ((reg
>> i
) & 0xff)
124 level1
->sizekb
= 8; level1
->assoc
= 2; level1
->line
= 32;
127 level1
->sizekb
= 16; level1
->assoc
= 4; level1
->line
= 32;
130 level1
->sizekb
= 16; level1
->assoc
= 4; level1
->line
= 64;
133 level1
->sizekb
= 24; level1
->assoc
= 6; level1
->line
= 64;
136 level2
->sizekb
= 256; level2
->assoc
= 8; level2
->line
= 64;
139 level2
->sizekb
= 1024; level2
->assoc
= 16; level2
->line
= 64;
142 level1
->sizekb
= 32; level1
->assoc
= 8; level1
->line
= 64;
145 level2
->sizekb
= 128; level2
->assoc
= 4; level2
->line
= 64;
148 level2
->sizekb
= 192; level2
->assoc
= 6; level2
->line
= 64;
151 level2
->sizekb
= 128; level2
->assoc
= 2; level2
->line
= 64;
154 level2
->sizekb
= 256; level2
->assoc
= 4; level2
->line
= 64;
157 level2
->sizekb
= 384; level2
->assoc
= 6; level2
->line
= 64;
160 level2
->sizekb
= 512; level2
->assoc
= 4; level2
->line
= 64;
163 level2
->sizekb
= 128; level2
->assoc
= 4; level2
->line
= 32;
166 level2
->sizekb
= 256; level2
->assoc
= 4; level2
->line
= 32;
169 level2
->sizekb
= 512; level2
->assoc
= 4; level2
->line
= 32;
172 level2
->sizekb
= 1024; level2
->assoc
= 4; level2
->line
= 32;
175 level2
->sizekb
= 2048; level2
->assoc
= 4; level2
->line
= 32;
178 level2
->sizekb
= 3072; level2
->assoc
= 12; level2
->line
= 64;
183 level2
->sizekb
= 4096; level2
->assoc
= 16; level2
->line
= 64;
186 level2
->sizekb
= 6144; level2
->assoc
= 24; level2
->line
= 64;
189 level1
->sizekb
= 16; level1
->assoc
= 8; level1
->line
= 64;
192 level1
->sizekb
= 8; level1
->assoc
= 4; level1
->line
= 64;
195 level1
->sizekb
= 16; level1
->assoc
= 4; level1
->line
= 64;
198 level1
->sizekb
= 32; level1
->assoc
= 4; level1
->line
= 64;
201 level2
->sizekb
= 1024; level2
->assoc
= 4; level2
->line
= 64;
204 level2
->sizekb
= 128; level2
->assoc
= 8; level2
->line
= 64;
207 level2
->sizekb
= 256; level2
->assoc
= 8; level2
->line
= 64;
210 level2
->sizekb
= 512; level2
->assoc
= 8; level2
->line
= 64;
213 level2
->sizekb
= 1024; level2
->assoc
= 8; level2
->line
= 64;
216 level2
->sizekb
= 2048; level2
->assoc
= 8; level2
->line
= 64;
219 level2
->sizekb
= 512; level2
->assoc
= 2; level2
->line
= 64;
222 level2
->sizekb
= 512; level2
->assoc
= 8; level2
->line
= 64;
225 level2
->sizekb
= 256; level2
->assoc
= 8; level2
->line
= 32;
228 level2
->sizekb
= 512; level2
->assoc
= 8; level2
->line
= 32;
231 level2
->sizekb
= 1024; level2
->assoc
= 8; level2
->line
= 32;
234 level2
->sizekb
= 2048; level2
->assoc
= 8; level2
->line
= 32;
237 level2
->sizekb
= 512; level2
->assoc
= 4; level2
->line
= 64;
240 level2
->sizekb
= 1024; level2
->assoc
= 8; level2
->line
= 64;
247 /* Detect cache parameters using CPUID function 2. */
250 detect_caches_cpuid2 (bool xeon_mp
,
251 struct cache_desc
*level1
, struct cache_desc
*level2
)
256 __cpuid (2, regs
[0], regs
[1], regs
[2], regs
[3]);
258 nreps
= regs
[0] & 0x0f;
263 for (i
= 0; i
< 4; i
++)
264 if (regs
[i
] && !((regs
[i
] >> 31) & 1))
265 decode_caches_intel (regs
[i
], xeon_mp
, level1
, level2
);
268 __cpuid (2, regs
[0], regs
[1], regs
[2], regs
[3]);
272 /* Detect cache parameters using CPUID function 4. This
273 method doesn't require hardcoded tables. */
284 detect_caches_cpuid4 (struct cache_desc
*level1
, struct cache_desc
*level2
,
285 struct cache_desc
*level3
)
287 struct cache_desc
*cache
;
289 unsigned eax
, ebx
, ecx
, edx
;
292 for (count
= 0;; count
++)
294 __cpuid_count(4, count
, eax
, ebx
, ecx
, edx
);
302 switch ((eax
>> 5) & 0x07)
319 unsigned sets
= ecx
+ 1;
320 unsigned part
= ((ebx
>> 12) & 0x03ff) + 1;
322 cache
->assoc
= ((ebx
>> 22) & 0x03ff) + 1;
323 cache
->line
= (ebx
& 0x0fff) + 1;
325 cache
->sizekb
= (cache
->assoc
* part
326 * cache
->line
* sets
) / 1024;
335 /* Returns the description of caches for an Intel processor. */
338 detect_caches_intel (bool xeon_mp
, unsigned max_level
,
339 unsigned max_ext_level
, unsigned *l2sizekb
)
341 struct cache_desc level1
= {0, 0, 0}, level2
= {0, 0, 0}, level3
= {0, 0, 0};
344 detect_caches_cpuid4 (&level1
, &level2
, &level3
);
345 else if (max_level
>= 2)
346 detect_caches_cpuid2 (xeon_mp
, &level1
, &level2
);
350 if (level1
.sizekb
== 0)
353 /* Let the L3 replace the L2. This assumes inclusive caches
354 and single threaded program for now. */
358 /* Intel CPUs are equipped with AMD style L2 cache info. Try this
359 method if other methods fail to provide L2 cache parameters. */
360 if (level2
.sizekb
== 0 && max_ext_level
>= 0x80000006)
361 detect_l2_cache (&level2
);
363 *l2sizekb
= level2
.sizekb
;
365 return describe_cache (level1
, level2
);
368 /* This will be called by the spec parser in gcc.c when it sees
369 a %:local_cpu_detect(args) construct. Currently it will be called
370 with either "arch" or "tune" as argument depending on if -march=native
371 or -mtune=native is to be substituted.
373 It returns a string containing new command line parameters to be
374 put at the place of the above two options, depending on what CPU
375 this is executed. E.g. "-march=k8" on an AMD64 machine
378 ARGC and ARGV are set depending on the actual arguments given
381 const char *host_detect_local_cpu (int argc
, const char **argv
)
383 enum processor_type processor
= PROCESSOR_I386
;
384 const char *cpu
= "i386";
386 const char *cache
= "";
387 const char *options
= "";
389 unsigned int eax
, ebx
, ecx
, edx
;
391 unsigned int max_level
, ext_level
;
394 unsigned int model
, family
;
396 unsigned int has_sse3
, has_ssse3
, has_cmpxchg16b
;
397 unsigned int has_cmpxchg8b
, has_cmov
, has_mmx
, has_sse
, has_sse2
;
399 /* Extended features */
400 unsigned int has_lahf_lm
= 0, has_sse4a
= 0;
401 unsigned int has_longmode
= 0, has_3dnowp
= 0, has_3dnow
= 0;
402 unsigned int has_movbe
= 0, has_sse4_1
= 0, has_sse4_2
= 0;
403 unsigned int has_popcnt
= 0, has_aes
= 0, has_avx
= 0, has_avx2
= 0;
404 unsigned int has_pclmul
= 0, has_abm
= 0, has_lwp
= 0;
405 unsigned int has_fma
= 0, has_fma4
= 0, has_xop
= 0;
406 unsigned int has_bmi
= 0, has_bmi2
= 0, has_tbm
= 0, has_lzcnt
= 0;
407 unsigned int has_hle
= 0, has_rtm
= 0, has_sgx
= 0;
408 unsigned int has_rdrnd
= 0, has_f16c
= 0, has_fsgsbase
= 0;
409 unsigned int has_rdseed
= 0, has_prfchw
= 0, has_adx
= 0;
410 unsigned int has_osxsave
= 0, has_fxsr
= 0, has_xsave
= 0, has_xsaveopt
= 0;
411 unsigned int has_avx512er
= 0, has_avx512pf
= 0, has_avx512cd
= 0;
412 unsigned int has_avx512f
= 0, has_sha
= 0, has_prefetchwt1
= 0;
413 unsigned int has_clflushopt
= 0, has_xsavec
= 0, has_xsaves
= 0;
414 unsigned int has_avx512dq
= 0, has_avx512bw
= 0, has_avx512vl
= 0;
415 unsigned int has_avx512vbmi
= 0, has_avx512ifma
= 0, has_clwb
= 0;
416 unsigned int has_mwaitx
= 0, has_clzero
= 0, has_pku
= 0, has_rdpid
= 0;
417 unsigned int has_avx5124fmaps
= 0, has_avx5124vnniw
= 0;
418 unsigned int has_gfni
= 0;
419 unsigned int has_ibt
= 0, has_shstk
= 0;
423 unsigned int l2sizekb
= 0;
428 arch
= !strcmp (argv
[0], "arch");
430 if (!arch
&& strcmp (argv
[0], "tune"))
433 max_level
= __get_cpuid_max (0, &vendor
);
437 __cpuid (1, eax
, ebx
, ecx
, edx
);
439 model
= (eax
>> 4) & 0x0f;
440 family
= (eax
>> 8) & 0x0f;
441 if (vendor
== signature_INTEL_ebx
442 || vendor
== signature_AMD_ebx
)
444 unsigned int extended_model
, extended_family
;
446 extended_model
= (eax
>> 12) & 0xf0;
447 extended_family
= (eax
>> 20) & 0xff;
450 family
+= extended_family
;
451 model
+= extended_model
;
453 else if (family
== 0x06)
454 model
+= extended_model
;
457 has_sse3
= ecx
& bit_SSE3
;
458 has_ssse3
= ecx
& bit_SSSE3
;
459 has_sse4_1
= ecx
& bit_SSE4_1
;
460 has_sse4_2
= ecx
& bit_SSE4_2
;
461 has_avx
= ecx
& bit_AVX
;
462 has_osxsave
= ecx
& bit_OSXSAVE
;
463 has_cmpxchg16b
= ecx
& bit_CMPXCHG16B
;
464 has_movbe
= ecx
& bit_MOVBE
;
465 has_popcnt
= ecx
& bit_POPCNT
;
466 has_aes
= ecx
& bit_AES
;
467 has_pclmul
= ecx
& bit_PCLMUL
;
468 has_fma
= ecx
& bit_FMA
;
469 has_f16c
= ecx
& bit_F16C
;
470 has_rdrnd
= ecx
& bit_RDRND
;
471 has_xsave
= ecx
& bit_XSAVE
;
473 has_cmpxchg8b
= edx
& bit_CMPXCHG8B
;
474 has_cmov
= edx
& bit_CMOV
;
475 has_mmx
= edx
& bit_MMX
;
476 has_fxsr
= edx
& bit_FXSAVE
;
477 has_sse
= edx
& bit_SSE
;
478 has_sse2
= edx
& bit_SSE2
;
482 __cpuid_count (7, 0, eax
, ebx
, ecx
, edx
);
484 has_bmi
= ebx
& bit_BMI
;
485 has_sgx
= ebx
& bit_SGX
;
486 has_hle
= ebx
& bit_HLE
;
487 has_rtm
= ebx
& bit_RTM
;
488 has_avx2
= ebx
& bit_AVX2
;
489 has_bmi2
= ebx
& bit_BMI2
;
490 has_fsgsbase
= ebx
& bit_FSGSBASE
;
491 has_rdseed
= ebx
& bit_RDSEED
;
492 has_adx
= ebx
& bit_ADX
;
493 has_avx512f
= ebx
& bit_AVX512F
;
494 has_avx512er
= ebx
& bit_AVX512ER
;
495 has_avx512pf
= ebx
& bit_AVX512PF
;
496 has_avx512cd
= ebx
& bit_AVX512CD
;
497 has_sha
= ebx
& bit_SHA
;
498 has_clflushopt
= ebx
& bit_CLFLUSHOPT
;
499 has_clwb
= ebx
& bit_CLWB
;
500 has_avx512dq
= ebx
& bit_AVX512DQ
;
501 has_avx512bw
= ebx
& bit_AVX512BW
;
502 has_avx512vl
= ebx
& bit_AVX512VL
;
503 has_avx512ifma
= ebx
& bit_AVX512IFMA
;
505 has_prefetchwt1
= ecx
& bit_PREFETCHWT1
;
506 has_avx512vbmi
= ecx
& bit_AVX512VBMI
;
507 has_pku
= ecx
& bit_OSPKE
;
508 has_rdpid
= ecx
& bit_RDPID
;
509 has_gfni
= ecx
& bit_GFNI
;
511 has_avx5124vnniw
= edx
& bit_AVX5124VNNIW
;
512 has_avx5124fmaps
= edx
& bit_AVX5124FMAPS
;
514 has_shstk
= ecx
& bit_SHSTK
;
515 has_ibt
= edx
& bit_IBT
;
520 __cpuid_count (13, 1, eax
, ebx
, ecx
, edx
);
522 has_xsaveopt
= eax
& bit_XSAVEOPT
;
523 has_xsavec
= eax
& bit_XSAVEC
;
524 has_xsaves
= eax
& bit_XSAVES
;
527 /* Check cpuid level of extended features. */
528 __cpuid (0x80000000, ext_level
, ebx
, ecx
, edx
);
530 if (ext_level
>= 0x80000001)
532 __cpuid (0x80000001, eax
, ebx
, ecx
, edx
);
534 has_lahf_lm
= ecx
& bit_LAHF_LM
;
535 has_sse4a
= ecx
& bit_SSE4a
;
536 has_abm
= ecx
& bit_ABM
;
537 has_lwp
= ecx
& bit_LWP
;
538 has_fma4
= ecx
& bit_FMA4
;
539 has_xop
= ecx
& bit_XOP
;
540 has_tbm
= ecx
& bit_TBM
;
541 has_lzcnt
= ecx
& bit_LZCNT
;
542 has_prfchw
= ecx
& bit_PRFCHW
;
544 has_longmode
= edx
& bit_LM
;
545 has_3dnowp
= edx
& bit_3DNOWP
;
546 has_3dnow
= edx
& bit_3DNOW
;
547 has_mwaitx
= ecx
& bit_MWAITX
;
550 if (ext_level
>= 0x80000008)
552 __cpuid (0x80000008, eax
, ebx
, ecx
, edx
);
553 has_clzero
= ebx
& bit_CLZERO
;
556 /* Get XCR_XFEATURE_ENABLED_MASK register with xgetbv. */
557 #define XCR_XFEATURE_ENABLED_MASK 0x0
558 #define XSTATE_FP 0x1
559 #define XSTATE_SSE 0x2
560 #define XSTATE_YMM 0x4
561 #define XSTATE_OPMASK 0x20
562 #define XSTATE_ZMM 0x40
563 #define XSTATE_HI_ZMM 0x80
565 #define XCR_AVX_ENABLED_MASK \
566 (XSTATE_SSE | XSTATE_YMM)
567 #define XCR_AVX512F_ENABLED_MASK \
568 (XSTATE_SSE | XSTATE_YMM | XSTATE_OPMASK | XSTATE_ZMM | XSTATE_HI_ZMM)
571 asm (".byte 0x0f; .byte 0x01; .byte 0xd0"
572 : "=a" (eax
), "=d" (edx
)
573 : "c" (XCR_XFEATURE_ENABLED_MASK
));
577 /* Check if AVX registers are supported. */
578 if ((eax
& XCR_AVX_ENABLED_MASK
) != XCR_AVX_ENABLED_MASK
)
592 /* Check if AVX512F registers are supported. */
593 if ((eax
& XCR_AVX512F_ENABLED_MASK
) != XCR_AVX512F_ENABLED_MASK
)
606 if (vendor
== signature_AMD_ebx
607 || vendor
== signature_CENTAUR_ebx
608 || vendor
== signature_CYRIX_ebx
609 || vendor
== signature_NSC_ebx
)
610 cache
= detect_caches_amd (ext_level
);
611 else if (vendor
== signature_INTEL_ebx
)
613 bool xeon_mp
= (family
== 15 && model
== 6);
614 cache
= detect_caches_intel (xeon_mp
, max_level
,
615 ext_level
, &l2sizekb
);
619 if (vendor
== signature_AMD_ebx
)
623 /* Detect geode processor by its processor signature. */
624 if (ext_level
>= 0x80000002)
625 __cpuid (0x80000002, name
, ebx
, ecx
, edx
);
629 if (name
== signature_NSC_ebx
)
630 processor
= PROCESSOR_GEODE
;
631 else if (has_movbe
&& family
== 22)
632 processor
= PROCESSOR_BTVER2
;
634 processor
= PROCESSOR_ZNVER1
;
636 processor
= PROCESSOR_BDVER4
;
637 else if (has_xsaveopt
)
638 processor
= PROCESSOR_BDVER3
;
640 processor
= PROCESSOR_BDVER2
;
642 processor
= PROCESSOR_BDVER1
;
643 else if (has_sse4a
&& has_ssse3
)
644 processor
= PROCESSOR_BTVER1
;
646 processor
= PROCESSOR_AMDFAM10
;
647 else if (has_sse2
|| has_longmode
)
648 processor
= PROCESSOR_K8
;
649 else if (has_3dnowp
&& family
== 6)
650 processor
= PROCESSOR_ATHLON
;
652 processor
= PROCESSOR_K6
;
654 processor
= PROCESSOR_PENTIUM
;
656 else if (vendor
== signature_CENTAUR_ebx
)
658 processor
= PROCESSOR_GENERIC
;
663 /* We have no idea. */
667 if (has_3dnow
|| has_mmx
)
668 processor
= PROCESSOR_I486
;
673 processor
= PROCESSOR_K8
;
675 processor
= PROCESSOR_PENTIUMPRO
;
677 processor
= PROCESSOR_I486
;
685 processor
= PROCESSOR_I486
;
688 processor
= PROCESSOR_PENTIUM
;
691 processor
= PROCESSOR_PENTIUMPRO
;
694 processor
= PROCESSOR_PENTIUM4
;
697 /* We have no idea. */
698 processor
= PROCESSOR_GENERIC
;
708 if (arch
&& vendor
== signature_CENTAUR_ebx
)
715 /* Assume WinChip C6. */
721 case PROCESSOR_PENTIUM
:
727 case PROCESSOR_PENTIUMPRO
:
796 /* Knights Landing. */
806 /* This is unknown family 0x6 CPU. */
807 /* Assume Knights Landing. */
810 /* Assume Knights Mill */
811 else if (has_avx5124vnniw
)
813 /* Assume Skylake. */
814 else if (has_clflushopt
)
816 /* Assume Broadwell. */
820 /* Assume Haswell. */
823 /* Assume Sandy Bridge. */
828 /* Assume Silvermont. */
831 /* Assume Nehalem. */
837 /* Assume Bonnell. */
843 else if (has_longmode
)
844 /* Perhaps some emulator? Assume x86-64, otherwise gcc
845 -march=native would be unusable for 64-bit compilations,
846 as all the CPUs below are 32-bit only. */
850 if (vendor
== signature_CENTAUR_ebx
)
851 /* C7 / Eden "Esther" */
854 /* It is Core Duo. */
858 /* It is Pentium M. */
862 if (vendor
== signature_CENTAUR_ebx
)
865 /* Eden "Nehemiah" */
871 /* It is Pentium III. */
875 /* It is Pentium II. */
878 /* Default to Pentium Pro. */
882 /* For -mtune, we default to -mtune=generic. */
887 case PROCESSOR_PENTIUM4
:
898 case PROCESSOR_GEODE
:
902 if (arch
&& has_3dnow
)
907 case PROCESSOR_ATHLON
:
916 if (vendor
== signature_CENTAUR_ebx
)
919 /* Nano 3000 | Nano dual / quad core | Eden X4 */
922 /* Nano 1000 | Nano 2000 */
937 /* For -mtune, we default to -mtune=k8 */
940 case PROCESSOR_AMDFAM10
:
943 case PROCESSOR_BDVER1
:
946 case PROCESSOR_BDVER2
:
949 case PROCESSOR_BDVER3
:
952 case PROCESSOR_BDVER4
:
955 case PROCESSOR_ZNVER1
:
958 case PROCESSOR_BTVER1
:
961 case PROCESSOR_BTVER2
:
966 /* Use something reasonable. */
978 else if (has_longmode
)
979 /* Perhaps some emulator? Assume x86-64, otherwise gcc
980 -march=native would be unusable for 64-bit compilations,
981 as all the CPUs below are 32-bit only. */
989 else if (has_cmpxchg8b
)
998 const char *mmx
= has_mmx
? " -mmmx" : " -mno-mmx";
999 const char *mmx3dnow
= has_3dnow
? " -m3dnow" : " -mno-3dnow";
1000 const char *sse
= has_sse
? " -msse" : " -mno-sse";
1001 const char *sse2
= has_sse2
? " -msse2" : " -mno-sse2";
1002 const char *sse3
= has_sse3
? " -msse3" : " -mno-sse3";
1003 const char *ssse3
= has_ssse3
? " -mssse3" : " -mno-ssse3";
1004 const char *sse4a
= has_sse4a
? " -msse4a" : " -mno-sse4a";
1005 const char *cx16
= has_cmpxchg16b
? " -mcx16" : " -mno-cx16";
1006 const char *sahf
= has_lahf_lm
? " -msahf" : " -mno-sahf";
1007 const char *movbe
= has_movbe
? " -mmovbe" : " -mno-movbe";
1008 const char *aes
= has_aes
? " -maes" : " -mno-aes";
1009 const char *sha
= has_sha
? " -msha" : " -mno-sha";
1010 const char *pclmul
= has_pclmul
? " -mpclmul" : " -mno-pclmul";
1011 const char *popcnt
= has_popcnt
? " -mpopcnt" : " -mno-popcnt";
1012 const char *abm
= has_abm
? " -mabm" : " -mno-abm";
1013 const char *lwp
= has_lwp
? " -mlwp" : " -mno-lwp";
1014 const char *fma
= has_fma
? " -mfma" : " -mno-fma";
1015 const char *fma4
= has_fma4
? " -mfma4" : " -mno-fma4";
1016 const char *xop
= has_xop
? " -mxop" : " -mno-xop";
1017 const char *bmi
= has_bmi
? " -mbmi" : " -mno-bmi";
1018 const char *sgx
= has_sgx
? " -msgx" : " -mno-sgx";
1019 const char *bmi2
= has_bmi2
? " -mbmi2" : " -mno-bmi2";
1020 const char *tbm
= has_tbm
? " -mtbm" : " -mno-tbm";
1021 const char *avx
= has_avx
? " -mavx" : " -mno-avx";
1022 const char *avx2
= has_avx2
? " -mavx2" : " -mno-avx2";
1023 const char *sse4_2
= has_sse4_2
? " -msse4.2" : " -mno-sse4.2";
1024 const char *sse4_1
= has_sse4_1
? " -msse4.1" : " -mno-sse4.1";
1025 const char *lzcnt
= has_lzcnt
? " -mlzcnt" : " -mno-lzcnt";
1026 const char *hle
= has_hle
? " -mhle" : " -mno-hle";
1027 const char *rtm
= has_rtm
? " -mrtm" : " -mno-rtm";
1028 const char *rdrnd
= has_rdrnd
? " -mrdrnd" : " -mno-rdrnd";
1029 const char *f16c
= has_f16c
? " -mf16c" : " -mno-f16c";
1030 const char *fsgsbase
= has_fsgsbase
? " -mfsgsbase" : " -mno-fsgsbase";
1031 const char *rdseed
= has_rdseed
? " -mrdseed" : " -mno-rdseed";
1032 const char *prfchw
= has_prfchw
? " -mprfchw" : " -mno-prfchw";
1033 const char *adx
= has_adx
? " -madx" : " -mno-adx";
1034 const char *fxsr
= has_fxsr
? " -mfxsr" : " -mno-fxsr";
1035 const char *xsave
= has_xsave
? " -mxsave" : " -mno-xsave";
1036 const char *xsaveopt
= has_xsaveopt
? " -mxsaveopt" : " -mno-xsaveopt";
1037 const char *avx512f
= has_avx512f
? " -mavx512f" : " -mno-avx512f";
1038 const char *avx512er
= has_avx512er
? " -mavx512er" : " -mno-avx512er";
1039 const char *avx512cd
= has_avx512cd
? " -mavx512cd" : " -mno-avx512cd";
1040 const char *avx512pf
= has_avx512pf
? " -mavx512pf" : " -mno-avx512pf";
1041 const char *prefetchwt1
= has_prefetchwt1
? " -mprefetchwt1" : " -mno-prefetchwt1";
1042 const char *clflushopt
= has_clflushopt
? " -mclflushopt" : " -mno-clflushopt";
1043 const char *xsavec
= has_xsavec
? " -mxsavec" : " -mno-xsavec";
1044 const char *xsaves
= has_xsaves
? " -mxsaves" : " -mno-xsaves";
1045 const char *avx512dq
= has_avx512dq
? " -mavx512dq" : " -mno-avx512dq";
1046 const char *avx512bw
= has_avx512bw
? " -mavx512bw" : " -mno-avx512bw";
1047 const char *avx512vl
= has_avx512vl
? " -mavx512vl" : " -mno-avx512vl";
1048 const char *avx512ifma
= has_avx512ifma
? " -mavx512ifma" : " -mno-avx512ifma";
1049 const char *avx512vbmi
= has_avx512vbmi
? " -mavx512vbmi" : " -mno-avx512vbmi";
1050 const char *avx5124vnniw
= has_avx5124vnniw
? " -mavx5124vnniw" : " -mno-avx5124vnniw";
1051 const char *avx5124fmaps
= has_avx5124fmaps
? " -mavx5124fmaps" : " -mno-avx5124fmaps";
1052 const char *clwb
= has_clwb
? " -mclwb" : " -mno-clwb";
1053 const char *mwaitx
= has_mwaitx
? " -mmwaitx" : " -mno-mwaitx";
1054 const char *clzero
= has_clzero
? " -mclzero" : " -mno-clzero";
1055 const char *pku
= has_pku
? " -mpku" : " -mno-pku";
1056 const char *rdpid
= has_rdpid
? " -mrdpid" : " -mno-rdpid";
1057 const char *gfni
= has_gfni
? " -mgfni" : " -mno-gfni";
1058 const char *ibt
= has_ibt
? " -mibt" : " -mno-ibt";
1059 const char *shstk
= has_shstk
? " -mshstk" : " -mno-shstk";
1060 options
= concat (options
, mmx
, mmx3dnow
, sse
, sse2
, sse3
, ssse3
,
1061 sse4a
, cx16
, sahf
, movbe
, aes
, sha
, pclmul
,
1062 popcnt
, abm
, lwp
, fma
, fma4
, xop
, bmi
, sgx
, bmi2
,
1063 tbm
, avx
, avx2
, sse4_2
, sse4_1
, lzcnt
, rtm
,
1064 hle
, rdrnd
, f16c
, fsgsbase
, rdseed
, prfchw
, adx
,
1065 fxsr
, xsave
, xsaveopt
, avx512f
, avx512er
,
1066 avx512cd
, avx512pf
, prefetchwt1
, clflushopt
,
1067 xsavec
, xsaves
, avx512dq
, avx512bw
, avx512vl
,
1068 avx512ifma
, avx512vbmi
, avx5124fmaps
, avx5124vnniw
,
1069 clwb
, mwaitx
, clzero
, pku
, rdpid
, gfni
, ibt
, shstk
, NULL
);
1073 return concat (cache
, "-m", argv
[0], "=", cpu
, options
, NULL
);
1077 /* If we are compiling with GCC where %EBX register is fixed, then the
1078 driver will just ignore -march and -mtune "native" target and will leave
1079 to the newly built compiler to generate code for its default target. */
1081 const char *host_detect_local_cpu (int, const char **)
1085 #endif /* __GNUC__ */