Initial support for AVX-512{VL,BW,DQ}
[official-gcc.git] / gcc / config / i386 / driver-i386.c
blob4935dc63bf0d173d04a6e6eada5d5f396f8a92f8
1 /* Subroutines for the gcc driver.
2 Copyright (C) 2006-2014 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)
9 any later version.
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/>. */
20 #include "config.h"
21 #include "system.h"
22 #include "coretypes.h"
23 #include "tm.h"
25 const char *host_detect_local_cpu (int argc, const char **argv);
27 #ifdef __GNUC__
28 #include "cpuid.h"
30 struct cache_desc
32 unsigned sizekb;
33 unsigned assoc;
34 unsigned line;
37 /* Returns command line parameters that describe size and
38 cache line size of the processor caches. */
40 static char *
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. */
61 static void
62 detect_l2_cache (struct cache_desc *level2)
64 unsigned eax, ebx, ecx, edx;
65 unsigned assoc;
67 __cpuid (0x80000006, eax, ebx, ecx, edx);
69 level2->sizekb = (ecx >> 16) & 0xffff;
70 level2->line = ecx & 0xff;
72 assoc = (ecx >> 12) & 0xf;
73 if (assoc == 6)
74 assoc = 8;
75 else if (assoc == 8)
76 assoc = 16;
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. */
87 static const char *
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)
95 return "";
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. */
114 static void
115 decode_caches_intel (unsigned reg, bool xeon_mp,
116 struct cache_desc *level1, struct cache_desc *level2)
118 int i;
120 for (i = 24; i >= 0; i -= 8)
121 switch ((reg >> i) & 0xff)
123 case 0x0a:
124 level1->sizekb = 8; level1->assoc = 2; level1->line = 32;
125 break;
126 case 0x0c:
127 level1->sizekb = 16; level1->assoc = 4; level1->line = 32;
128 break;
129 case 0x0d:
130 level1->sizekb = 16; level1->assoc = 4; level1->line = 64;
131 break;
132 case 0x0e:
133 level1->sizekb = 24; level1->assoc = 6; level1->line = 64;
134 break;
135 case 0x21:
136 level2->sizekb = 256; level2->assoc = 8; level2->line = 64;
137 break;
138 case 0x24:
139 level2->sizekb = 1024; level2->assoc = 16; level2->line = 64;
140 break;
141 case 0x2c:
142 level1->sizekb = 32; level1->assoc = 8; level1->line = 64;
143 break;
144 case 0x39:
145 level2->sizekb = 128; level2->assoc = 4; level2->line = 64;
146 break;
147 case 0x3a:
148 level2->sizekb = 192; level2->assoc = 6; level2->line = 64;
149 break;
150 case 0x3b:
151 level2->sizekb = 128; level2->assoc = 2; level2->line = 64;
152 break;
153 case 0x3c:
154 level2->sizekb = 256; level2->assoc = 4; level2->line = 64;
155 break;
156 case 0x3d:
157 level2->sizekb = 384; level2->assoc = 6; level2->line = 64;
158 break;
159 case 0x3e:
160 level2->sizekb = 512; level2->assoc = 4; level2->line = 64;
161 break;
162 case 0x41:
163 level2->sizekb = 128; level2->assoc = 4; level2->line = 32;
164 break;
165 case 0x42:
166 level2->sizekb = 256; level2->assoc = 4; level2->line = 32;
167 break;
168 case 0x43:
169 level2->sizekb = 512; level2->assoc = 4; level2->line = 32;
170 break;
171 case 0x44:
172 level2->sizekb = 1024; level2->assoc = 4; level2->line = 32;
173 break;
174 case 0x45:
175 level2->sizekb = 2048; level2->assoc = 4; level2->line = 32;
176 break;
177 case 0x48:
178 level2->sizekb = 3072; level2->assoc = 12; level2->line = 64;
179 break;
180 case 0x49:
181 if (xeon_mp)
182 break;
183 level2->sizekb = 4096; level2->assoc = 16; level2->line = 64;
184 break;
185 case 0x4e:
186 level2->sizekb = 6144; level2->assoc = 24; level2->line = 64;
187 break;
188 case 0x60:
189 level1->sizekb = 16; level1->assoc = 8; level1->line = 64;
190 break;
191 case 0x66:
192 level1->sizekb = 8; level1->assoc = 4; level1->line = 64;
193 break;
194 case 0x67:
195 level1->sizekb = 16; level1->assoc = 4; level1->line = 64;
196 break;
197 case 0x68:
198 level1->sizekb = 32; level1->assoc = 4; level1->line = 64;
199 break;
200 case 0x78:
201 level2->sizekb = 1024; level2->assoc = 4; level2->line = 64;
202 break;
203 case 0x79:
204 level2->sizekb = 128; level2->assoc = 8; level2->line = 64;
205 break;
206 case 0x7a:
207 level2->sizekb = 256; level2->assoc = 8; level2->line = 64;
208 break;
209 case 0x7b:
210 level2->sizekb = 512; level2->assoc = 8; level2->line = 64;
211 break;
212 case 0x7c:
213 level2->sizekb = 1024; level2->assoc = 8; level2->line = 64;
214 break;
215 case 0x7d:
216 level2->sizekb = 2048; level2->assoc = 8; level2->line = 64;
217 break;
218 case 0x7f:
219 level2->sizekb = 512; level2->assoc = 2; level2->line = 64;
220 break;
221 case 0x80:
222 level2->sizekb = 512; level2->assoc = 8; level2->line = 64;
223 break;
224 case 0x82:
225 level2->sizekb = 256; level2->assoc = 8; level2->line = 32;
226 break;
227 case 0x83:
228 level2->sizekb = 512; level2->assoc = 8; level2->line = 32;
229 break;
230 case 0x84:
231 level2->sizekb = 1024; level2->assoc = 8; level2->line = 32;
232 break;
233 case 0x85:
234 level2->sizekb = 2048; level2->assoc = 8; level2->line = 32;
235 break;
236 case 0x86:
237 level2->sizekb = 512; level2->assoc = 4; level2->line = 64;
238 break;
239 case 0x87:
240 level2->sizekb = 1024; level2->assoc = 8; level2->line = 64;
242 default:
243 break;
247 /* Detect cache parameters using CPUID function 2. */
249 static void
250 detect_caches_cpuid2 (bool xeon_mp,
251 struct cache_desc *level1, struct cache_desc *level2)
253 unsigned regs[4];
254 int nreps, i;
256 __cpuid (2, regs[0], regs[1], regs[2], regs[3]);
258 nreps = regs[0] & 0x0f;
259 regs[0] &= ~0x0f;
261 while (--nreps >= 0)
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);
267 if (nreps)
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. */
275 enum cache_type
277 CACHE_END = 0,
278 CACHE_DATA = 1,
279 CACHE_INST = 2,
280 CACHE_UNIFIED = 3
283 static void
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;
290 int count;
292 for (count = 0;; count++)
294 __cpuid_count(4, count, eax, ebx, ecx, edx);
295 switch (eax & 0x1f)
297 case CACHE_END:
298 return;
299 case CACHE_DATA:
300 case CACHE_UNIFIED:
302 switch ((eax >> 5) & 0x07)
304 case 1:
305 cache = level1;
306 break;
307 case 2:
308 cache = level2;
309 break;
310 case 3:
311 cache = level3;
312 break;
313 default:
314 cache = NULL;
317 if (cache)
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;
329 default:
330 break;
335 /* Returns the description of caches for an Intel processor. */
337 static const char *
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};
343 if (max_level >= 4)
344 detect_caches_cpuid4 (&level1, &level2, &level3);
345 else if (max_level >= 2)
346 detect_caches_cpuid2 (xeon_mp, &level1, &level2);
347 else
348 return "";
350 if (level1.sizekb == 0)
351 return "";
353 /* Let the L3 replace the L2. This assumes inclusive caches
354 and single threaded program for now. */
355 if (level3.sizekb)
356 level2 = level3;
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
376 for -march=native.
378 ARGC and ARGV are set depending on the actual arguments given
379 in the spec. */
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;
393 unsigned int vendor;
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;
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;
416 bool arch;
418 unsigned int l2sizekb = 0;
420 if (argc < 1)
421 return NULL;
423 arch = !strcmp (argv[0], "arch");
425 if (!arch && strcmp (argv[0], "tune"))
426 return NULL;
428 max_level = __get_cpuid_max (0, &vendor);
429 if (max_level < 1)
430 goto done;
432 __cpuid (1, eax, ebx, ecx, edx);
434 model = (eax >> 4) & 0x0f;
435 family = (eax >> 8) & 0x0f;
436 if (vendor == signature_INTEL_ebx)
438 unsigned int extended_model, extended_family;
440 extended_model = (eax >> 12) & 0xf0;
441 extended_family = (eax >> 20) & 0xff;
442 if (family == 0x0f)
444 family += extended_family;
445 model += extended_model;
447 else if (family == 0x06)
448 model += extended_model;
451 has_sse3 = ecx & bit_SSE3;
452 has_ssse3 = ecx & bit_SSSE3;
453 has_sse4_1 = ecx & bit_SSE4_1;
454 has_sse4_2 = ecx & bit_SSE4_2;
455 has_avx = ecx & bit_AVX;
456 has_osxsave = ecx & bit_OSXSAVE;
457 has_cmpxchg16b = ecx & bit_CMPXCHG16B;
458 has_movbe = ecx & bit_MOVBE;
459 has_popcnt = ecx & bit_POPCNT;
460 has_aes = ecx & bit_AES;
461 has_pclmul = ecx & bit_PCLMUL;
462 has_fma = ecx & bit_FMA;
463 has_f16c = ecx & bit_F16C;
464 has_rdrnd = ecx & bit_RDRND;
465 has_xsave = ecx & bit_XSAVE;
467 has_cmpxchg8b = edx & bit_CMPXCHG8B;
468 has_cmov = edx & bit_CMOV;
469 has_mmx = edx & bit_MMX;
470 has_fxsr = edx & bit_FXSAVE;
471 has_sse = edx & bit_SSE;
472 has_sse2 = edx & bit_SSE2;
474 if (max_level >= 7)
476 __cpuid_count (7, 0, eax, ebx, ecx, edx);
478 has_bmi = ebx & bit_BMI;
479 has_hle = ebx & bit_HLE;
480 has_rtm = ebx & bit_RTM;
481 has_avx2 = ebx & bit_AVX2;
482 has_bmi2 = ebx & bit_BMI2;
483 has_fsgsbase = ebx & bit_FSGSBASE;
484 has_rdseed = ebx & bit_RDSEED;
485 has_adx = ebx & bit_ADX;
486 has_avx512f = ebx & bit_AVX512F;
487 has_avx512er = ebx & bit_AVX512ER;
488 has_avx512pf = ebx & bit_AVX512PF;
489 has_avx512cd = ebx & bit_AVX512CD;
490 has_sha = ebx & bit_SHA;
491 has_clflushopt = ebx & bit_CLFLUSHOPT;
492 has_avx512dq = ebx & bit_AVX512DQ;
493 has_avx512bw = ebx & bit_AVX512BW;
494 has_avx512vl = ebx & bit_AVX512VL;
496 has_prefetchwt1 = ecx & bit_PREFETCHWT1;
499 if (max_level >= 13)
501 __cpuid_count (13, 1, eax, ebx, ecx, edx);
503 has_xsaveopt = eax & bit_XSAVEOPT;
504 has_xsavec = eax & bit_XSAVEC;
505 has_xsaves = eax & bit_XSAVES;
508 /* Check cpuid level of extended features. */
509 __cpuid (0x80000000, ext_level, ebx, ecx, edx);
511 if (ext_level > 0x80000000)
513 __cpuid (0x80000001, eax, ebx, ecx, edx);
515 has_lahf_lm = ecx & bit_LAHF_LM;
516 has_sse4a = ecx & bit_SSE4a;
517 has_abm = ecx & bit_ABM;
518 has_lwp = ecx & bit_LWP;
519 has_fma4 = ecx & bit_FMA4;
520 has_xop = ecx & bit_XOP;
521 has_tbm = ecx & bit_TBM;
522 has_lzcnt = ecx & bit_LZCNT;
523 has_prfchw = ecx & bit_PRFCHW;
525 has_longmode = edx & bit_LM;
526 has_3dnowp = edx & bit_3DNOWP;
527 has_3dnow = edx & bit_3DNOW;
530 /* Get XCR_XFEATURE_ENABLED_MASK register with xgetbv. */
531 #define XCR_XFEATURE_ENABLED_MASK 0x0
532 #define XSTATE_FP 0x1
533 #define XSTATE_SSE 0x2
534 #define XSTATE_YMM 0x4
535 if (has_osxsave)
536 asm (".byte 0x0f; .byte 0x01; .byte 0xd0"
537 : "=a" (eax), "=d" (edx)
538 : "c" (XCR_XFEATURE_ENABLED_MASK));
540 /* Check if SSE and YMM states are supported. */
541 if (!has_osxsave
542 || (eax & (XSTATE_SSE | XSTATE_YMM)) != (XSTATE_SSE | XSTATE_YMM))
544 has_avx = 0;
545 has_avx2 = 0;
546 has_fma = 0;
547 has_fma4 = 0;
548 has_f16c = 0;
549 has_xop = 0;
550 has_xsave = 0;
551 has_xsaveopt = 0;
552 has_xsaves = 0;
553 has_xsavec = 0;
556 if (!arch)
558 if (vendor == signature_AMD_ebx
559 || vendor == signature_CENTAUR_ebx
560 || vendor == signature_CYRIX_ebx
561 || vendor == signature_NSC_ebx)
562 cache = detect_caches_amd (ext_level);
563 else if (vendor == signature_INTEL_ebx)
565 bool xeon_mp = (family == 15 && model == 6);
566 cache = detect_caches_intel (xeon_mp, max_level,
567 ext_level, &l2sizekb);
571 if (vendor == signature_AMD_ebx)
573 unsigned int name;
575 /* Detect geode processor by its processor signature. */
576 if (ext_level > 0x80000001)
577 __cpuid (0x80000002, name, ebx, ecx, edx);
578 else
579 name = 0;
581 if (name == signature_NSC_ebx)
582 processor = PROCESSOR_GEODE;
583 else if (has_movbe)
584 processor = PROCESSOR_BTVER2;
585 else if (has_avx2)
586 processor = PROCESSOR_BDVER4;
587 else if (has_xsaveopt)
588 processor = PROCESSOR_BDVER3;
589 else if (has_bmi)
590 processor = PROCESSOR_BDVER2;
591 else if (has_xop)
592 processor = PROCESSOR_BDVER1;
593 else if (has_sse4a && has_ssse3)
594 processor = PROCESSOR_BTVER1;
595 else if (has_sse4a)
596 processor = PROCESSOR_AMDFAM10;
597 else if (has_sse2 || has_longmode)
598 processor = PROCESSOR_K8;
599 else if (has_3dnowp && family == 6)
600 processor = PROCESSOR_ATHLON;
601 else if (has_mmx)
602 processor = PROCESSOR_K6;
603 else
604 processor = PROCESSOR_PENTIUM;
606 else if (vendor == signature_CENTAUR_ebx)
608 if (arch)
610 switch (family)
612 case 6:
613 if (model > 9)
614 /* Use the default detection procedure. */
615 processor = PROCESSOR_GENERIC;
616 else if (model == 9)
617 cpu = "c3-2";
618 else if (model >= 6)
619 cpu = "c3";
620 else
621 processor = PROCESSOR_GENERIC;
622 break;
623 case 5:
624 if (has_3dnow)
625 cpu = "winchip2";
626 else if (has_mmx)
627 cpu = "winchip2-c6";
628 else
629 processor = PROCESSOR_GENERIC;
630 break;
631 default:
632 /* We have no idea. */
633 processor = PROCESSOR_GENERIC;
637 else
639 switch (family)
641 case 4:
642 processor = PROCESSOR_I486;
643 break;
644 case 5:
645 processor = PROCESSOR_PENTIUM;
646 break;
647 case 6:
648 processor = PROCESSOR_PENTIUMPRO;
649 break;
650 case 15:
651 processor = PROCESSOR_PENTIUM4;
652 break;
653 default:
654 /* We have no idea. */
655 processor = PROCESSOR_GENERIC;
659 switch (processor)
661 case PROCESSOR_I386:
662 /* Default. */
663 break;
664 case PROCESSOR_I486:
665 cpu = "i486";
666 break;
667 case PROCESSOR_PENTIUM:
668 if (arch && has_mmx)
669 cpu = "pentium-mmx";
670 else
671 cpu = "pentium";
672 break;
673 case PROCESSOR_PENTIUMPRO:
674 switch (model)
676 case 0x1c:
677 case 0x26:
678 /* Bonnell. */
679 cpu = "bonnell";
680 break;
681 case 0x37:
682 case 0x4d:
683 /* Silvermont. */
684 cpu = "silvermont";
685 break;
686 case 0x0f:
687 /* Merom. */
688 case 0x17:
689 case 0x1d:
690 /* Penryn. */
691 cpu = "core2";
692 break;
693 case 0x1a:
694 case 0x1e:
695 case 0x1f:
696 case 0x2e:
697 /* Nehalem. */
698 cpu = "nehalem";
699 break;
700 case 0x25:
701 case 0x2c:
702 case 0x2f:
703 /* Westmere. */
704 cpu = "westmere";
705 break;
706 case 0x2a:
707 case 0x2d:
708 /* Sandy Bridge. */
709 cpu = "sandybridge";
710 break;
711 case 0x3a:
712 case 0x3e:
713 /* Ivy Bridge. */
714 cpu = "ivybridge";
715 break;
716 case 0x3c:
717 case 0x45:
718 case 0x46:
719 /* Haswell. */
720 cpu = "haswell";
721 break;
722 default:
723 if (arch)
725 /* This is unknown family 0x6 CPU. */
726 if (has_adx)
727 cpu = "broadwell";
728 else if (has_avx2)
729 /* Assume Haswell. */
730 cpu = "haswell";
731 else if (has_avx)
732 /* Assume Sandy Bridge. */
733 cpu = "sandybridge";
734 else if (has_sse4_2)
736 if (has_movbe)
737 /* Assume Silvermont. */
738 cpu = "silvermont";
739 else
740 /* Assume Nehalem. */
741 cpu = "nehalem";
743 else if (has_ssse3)
745 if (has_movbe)
746 /* Assume Bonnell. */
747 cpu = "bonnell";
748 else
749 /* Assume Core 2. */
750 cpu = "core2";
752 else if (has_longmode)
753 /* Perhaps some emulator? Assume x86-64, otherwise gcc
754 -march=native would be unusable for 64-bit compilations,
755 as all the CPUs below are 32-bit only. */
756 cpu = "x86-64";
757 else if (has_sse3)
758 /* It is Core Duo. */
759 cpu = "pentium-m";
760 else if (has_sse2)
761 /* It is Pentium M. */
762 cpu = "pentium-m";
763 else if (has_sse)
764 /* It is Pentium III. */
765 cpu = "pentium3";
766 else if (has_mmx)
767 /* It is Pentium II. */
768 cpu = "pentium2";
769 else
770 /* Default to Pentium Pro. */
771 cpu = "pentiumpro";
773 else
774 /* For -mtune, we default to -mtune=generic. */
775 cpu = "generic";
776 break;
778 break;
779 case PROCESSOR_PENTIUM4:
780 if (has_sse3)
782 if (has_longmode)
783 cpu = "nocona";
784 else
785 cpu = "prescott";
787 else
788 cpu = "pentium4";
789 break;
790 case PROCESSOR_GEODE:
791 cpu = "geode";
792 break;
793 case PROCESSOR_K6:
794 if (arch && has_3dnow)
795 cpu = "k6-3";
796 else
797 cpu = "k6";
798 break;
799 case PROCESSOR_ATHLON:
800 if (arch && has_sse)
801 cpu = "athlon-4";
802 else
803 cpu = "athlon";
804 break;
805 case PROCESSOR_K8:
806 if (arch && has_sse3)
807 cpu = "k8-sse3";
808 else
809 cpu = "k8";
810 break;
811 case PROCESSOR_AMDFAM10:
812 cpu = "amdfam10";
813 break;
814 case PROCESSOR_BDVER1:
815 cpu = "bdver1";
816 break;
817 case PROCESSOR_BDVER2:
818 cpu = "bdver2";
819 break;
820 case PROCESSOR_BDVER3:
821 cpu = "bdver3";
822 break;
823 case PROCESSOR_BDVER4:
824 cpu = "bdver4";
825 break;
826 case PROCESSOR_BTVER1:
827 cpu = "btver1";
828 break;
829 case PROCESSOR_BTVER2:
830 cpu = "btver2";
831 break;
833 default:
834 /* Use something reasonable. */
835 if (arch)
837 if (has_ssse3)
838 cpu = "core2";
839 else if (has_sse3)
841 if (has_longmode)
842 cpu = "nocona";
843 else
844 cpu = "prescott";
846 else if (has_sse2)
847 cpu = "pentium4";
848 else if (has_cmov)
849 cpu = "pentiumpro";
850 else if (has_mmx)
851 cpu = "pentium-mmx";
852 else if (has_cmpxchg8b)
853 cpu = "pentium";
855 else
856 cpu = "generic";
859 if (arch)
861 const char *mmx = has_mmx ? " -mmmx" : " -mno-mmx";
862 const char *mmx3dnow = has_3dnow ? " -m3dnow" : " -mno-3dnow";
863 const char *sse = has_sse ? " -msse" : " -mno-sse";
864 const char *sse2 = has_sse2 ? " -msse2" : " -mno-sse2";
865 const char *sse3 = has_sse3 ? " -msse3" : " -mno-sse3";
866 const char *ssse3 = has_ssse3 ? " -mssse3" : " -mno-ssse3";
867 const char *sse4a = has_sse4a ? " -msse4a" : " -mno-sse4a";
868 const char *cx16 = has_cmpxchg16b ? " -mcx16" : " -mno-cx16";
869 const char *sahf = has_lahf_lm ? " -msahf" : " -mno-sahf";
870 const char *movbe = has_movbe ? " -mmovbe" : " -mno-movbe";
871 const char *aes = has_aes ? " -maes" : " -mno-aes";
872 const char *sha = has_sha ? " -msha" : " -mno-sha";
873 const char *pclmul = has_pclmul ? " -mpclmul" : " -mno-pclmul";
874 const char *popcnt = has_popcnt ? " -mpopcnt" : " -mno-popcnt";
875 const char *abm = has_abm ? " -mabm" : " -mno-abm";
876 const char *lwp = has_lwp ? " -mlwp" : " -mno-lwp";
877 const char *fma = has_fma ? " -mfma" : " -mno-fma";
878 const char *fma4 = has_fma4 ? " -mfma4" : " -mno-fma4";
879 const char *xop = has_xop ? " -mxop" : " -mno-xop";
880 const char *bmi = has_bmi ? " -mbmi" : " -mno-bmi";
881 const char *bmi2 = has_bmi2 ? " -mbmi2" : " -mno-bmi2";
882 const char *tbm = has_tbm ? " -mtbm" : " -mno-tbm";
883 const char *avx = has_avx ? " -mavx" : " -mno-avx";
884 const char *avx2 = has_avx2 ? " -mavx2" : " -mno-avx2";
885 const char *sse4_2 = has_sse4_2 ? " -msse4.2" : " -mno-sse4.2";
886 const char *sse4_1 = has_sse4_1 ? " -msse4.1" : " -mno-sse4.1";
887 const char *lzcnt = has_lzcnt ? " -mlzcnt" : " -mno-lzcnt";
888 const char *hle = has_hle ? " -mhle" : " -mno-hle";
889 const char *rtm = has_rtm ? " -mrtm" : " -mno-rtm";
890 const char *rdrnd = has_rdrnd ? " -mrdrnd" : " -mno-rdrnd";
891 const char *f16c = has_f16c ? " -mf16c" : " -mno-f16c";
892 const char *fsgsbase = has_fsgsbase ? " -mfsgsbase" : " -mno-fsgsbase";
893 const char *rdseed = has_rdseed ? " -mrdseed" : " -mno-rdseed";
894 const char *prfchw = has_prfchw ? " -mprfchw" : " -mno-prfchw";
895 const char *adx = has_adx ? " -madx" : " -mno-adx";
896 const char *fxsr = has_fxsr ? " -mfxsr" : " -mno-fxsr";
897 const char *xsave = has_xsave ? " -mxsave" : " -mno-xsave";
898 const char *xsaveopt = has_xsaveopt ? " -mxsaveopt" : " -mno-xsaveopt";
899 const char *avx512f = has_avx512f ? " -mavx512f" : " -mno-avx512f";
900 const char *avx512er = has_avx512er ? " -mavx512er" : " -mno-avx512er";
901 const char *avx512cd = has_avx512cd ? " -mavx512cd" : " -mno-avx512cd";
902 const char *avx512pf = has_avx512pf ? " -mavx512pf" : " -mno-avx512pf";
903 const char *prefetchwt1 = has_prefetchwt1 ? " -mprefetchwt1" : " -mno-prefetchwt1";
904 const char *clflushopt = has_clflushopt ? " -mclflushopt" : " -mno-clflushopt";
905 const char *xsavec = has_xsavec ? " -mxsavec" : " -mno-xsavec";
906 const char *xsaves = has_xsaves ? " -mxsaves" : " -mno-xsaves";
907 const char *avx512dq = has_avx512dq ? " -mavx512dq" : " -mno-avx512dq";
908 const char *avx512bw = has_avx512bw ? " -mavx512bw" : " -mno-avx512bw";
909 const char *avx512vl = has_avx512vl ? " -mavx512vl" : " -mno-avx512vl";
911 options = concat (options, mmx, mmx3dnow, sse, sse2, sse3, ssse3,
912 sse4a, cx16, sahf, movbe, aes, sha, pclmul,
913 popcnt, abm, lwp, fma, fma4, xop, bmi, bmi2,
914 tbm, avx, avx2, sse4_2, sse4_1, lzcnt, rtm,
915 hle, rdrnd, f16c, fsgsbase, rdseed, prfchw, adx,
916 fxsr, xsave, xsaveopt, avx512f, avx512er,
917 avx512cd, avx512pf, prefetchwt1, clflushopt,
918 xsavec, xsaves, avx512dq, avx512bw, avx512vl,
919 NULL);
922 done:
923 return concat (cache, "-m", argv[0], "=", cpu, options, NULL);
925 #else
927 /* If we aren't compiling with GCC then the driver will just ignore
928 -march and -mtune "native" target and will leave to the newly
929 built compiler to generate code for its default target. */
931 const char *host_detect_local_cpu (int argc ATTRIBUTE_UNUSED,
932 const char **argv ATTRIBUTE_UNUSED)
934 return NULL;
936 #endif /* __GNUC__ */