OSDN Git Service

gcc/
[pf3gnuchains/gcc-fork.git] / gcc / config / i386 / driver-i386.c
1 /* Subroutines for the gcc driver.
2    Copyright (C) 2006, 2007, 2008 Free Software Foundation, Inc.
3
4 This file is part of GCC.
5
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.
10
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.
15
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/>.  */
19
20 #include "config.h"
21 #include "system.h"
22 #include "coretypes.h"
23 #include "tm.h"
24 #include <stdlib.h>
25
26 const char *host_detect_local_cpu (int argc, const char **argv);
27
28 #ifdef __GNUC__
29 #include "cpuid.h"
30
31 struct cache_desc
32 {
33   unsigned sizekb;
34   unsigned assoc;
35   unsigned line;
36 };
37
38 /* Returns command line parameters that describe size and
39    cache line size of the processor caches.  */
40
41 static char *
42 describe_cache (struct cache_desc level1, struct cache_desc level2)
43 {
44   char size[100], line[100], size2[100];
45
46   /* At the moment, gcc does not use the information
47      about the associativity of the cache.  */
48
49   sprintf (size, "--param l1-cache-size=%u", level1.sizekb);
50   sprintf (line, "--param l1-cache-line-size=%u", level1.line);
51
52   sprintf (size2, "--param l2-cache-size=%u", level2.sizekb);
53
54   return concat (size, " ", line, " ", size2, " ", NULL);
55 }
56
57 /* Detect L2 cache parameters using CPUID extended function 0x80000006.  */
58
59 static void
60 detect_l2_cache (struct cache_desc *level2)
61 {
62   unsigned eax, ebx, ecx, edx;
63   unsigned assoc;
64
65   __cpuid (0x80000006, eax, ebx, ecx, edx);
66
67   level2->sizekb = (ecx >> 16) & 0xffff;
68   level2->line = ecx & 0xff;
69
70   assoc = (ecx >> 12) & 0xf;
71   if (assoc == 6)
72     assoc = 8;
73   else if (assoc == 8)
74     assoc = 16;
75   else if (assoc >= 0xa && assoc <= 0xc)
76     assoc = 32 + (assoc - 0xa) * 16;
77   else if (assoc >= 0xd && assoc <= 0xe)
78     assoc = 96 + (assoc - 0xd) * 32;
79
80   level2->assoc = assoc;
81 }
82
83 /* Returns the description of caches for an AMD processor.  */
84
85 static const char *
86 detect_caches_amd (unsigned max_ext_level)
87 {
88   unsigned eax, ebx, ecx, edx;
89
90   struct cache_desc level1, level2 = {0, 0, 0};
91
92   if (max_ext_level < 0x80000005)
93     return "";
94
95   __cpuid (0x80000005, eax, ebx, ecx, edx);
96
97   level1.sizekb = (ecx >> 24) & 0xff;
98   level1.assoc = (ecx >> 16) & 0xff;
99   level1.line = ecx & 0xff;
100
101   if (max_ext_level >= 0x80000006)
102     detect_l2_cache (&level2);
103
104   return describe_cache (level1, level2);
105 }
106
107 /* Decodes the size, the associativity and the cache line size of
108    L1/L2 caches of an Intel processor.  Values are based on
109    "Intel Processor Identification and the CPUID Instruction"
110    [Application Note 485], revision -032, December 2007.  */
111
112 static void
113 decode_caches_intel (unsigned reg, bool xeon_mp,
114                      struct cache_desc *level1, struct cache_desc *level2)
115 {
116   int i;
117
118   for (i = 24; i >= 0; i -= 8)
119     switch ((reg >> i) & 0xff)
120       {
121       case 0x0a:
122         level1->sizekb = 8; level1->assoc = 2; level1->line = 32;
123         break;
124       case 0x0c:
125         level1->sizekb = 16; level1->assoc = 4; level1->line = 32;
126         break;
127       case 0x2c:
128         level1->sizekb = 32; level1->assoc = 8; level1->line = 64;
129         break;
130       case 0x39:
131         level2->sizekb = 128; level2->assoc = 4; level2->line = 64;
132         break;
133       case 0x3a:
134         level2->sizekb = 192; level2->assoc = 6; level2->line = 64;
135         break;
136       case 0x3b:
137         level2->sizekb = 128; level2->assoc = 2; level2->line = 64;
138         break;
139       case 0x3c:
140         level2->sizekb = 256; level2->assoc = 4; level2->line = 64;
141         break;
142       case 0x3d:
143         level2->sizekb = 384; level2->assoc = 6; level2->line = 64;
144         break;
145       case 0x3e:
146         level2->sizekb = 512; level2->assoc = 4; level2->line = 64;
147         break;
148       case 0x41:
149         level2->sizekb = 128; level2->assoc = 4; level2->line = 32;
150         break;
151       case 0x42:
152         level2->sizekb = 256; level2->assoc = 4; level2->line = 32;
153         break;
154       case 0x43:
155         level2->sizekb = 512; level2->assoc = 4; level2->line = 32;
156         break;
157       case 0x44:
158         level2->sizekb = 1024; level2->assoc = 4; level2->line = 32;
159         break;
160       case 0x45:
161         level2->sizekb = 2048; level2->assoc = 4; level2->line = 32;
162         break;
163       case 0x49:
164         if (xeon_mp)
165           break;
166         level2->sizekb = 4096; level2->assoc = 16; level2->line = 64;
167         break;
168       case 0x4e:
169         level2->sizekb = 6144; level2->assoc = 24; level2->line = 64;
170         break;
171       case 0x60:
172         level1->sizekb = 16; level1->assoc = 8; level1->line = 64;
173         break;
174       case 0x66:
175         level1->sizekb = 8; level1->assoc = 4; level1->line = 64;
176         break;
177       case 0x67:
178         level1->sizekb = 16; level1->assoc = 4; level1->line = 64;
179         break;
180       case 0x68:
181         level1->sizekb = 32; level1->assoc = 4; level1->line = 64;
182         break;
183       case 0x78:
184         level2->sizekb = 1024; level2->assoc = 4; level2->line = 64;
185         break;
186       case 0x79:
187         level2->sizekb = 128; level2->assoc = 8; level2->line = 64;
188         break;
189       case 0x7a:
190         level2->sizekb = 256; level2->assoc = 8; level2->line = 64;
191         break;
192       case 0x7b:
193         level2->sizekb = 512; level2->assoc = 8; level2->line = 64;
194         break;
195       case 0x7c:
196         level2->sizekb = 1024; level2->assoc = 8; level2->line = 64;
197         break;
198       case 0x7d:
199         level2->sizekb = 2048; level2->assoc = 8; level2->line = 64;
200         break;
201       case 0x7f:
202         level2->sizekb = 512; level2->assoc = 2; level2->line = 64;
203         break;
204       case 0x82:
205         level2->sizekb = 256; level2->assoc = 8; level2->line = 32;
206         break;
207       case 0x83:
208         level2->sizekb = 512; level2->assoc = 8; level2->line = 32;
209         break;
210       case 0x84:
211         level2->sizekb = 1024; level2->assoc = 8; level2->line = 32;
212         break;
213       case 0x85:
214         level2->sizekb = 2048; level2->assoc = 8; level2->line = 32;
215         break;
216       case 0x86:
217         level2->sizekb = 512; level2->assoc = 4; level2->line = 64;
218         break;
219       case 0x87:
220         level2->sizekb = 1024; level2->assoc = 8; level2->line = 64;
221
222       default:
223         break;
224       }
225 }
226
227 /* Detect cache parameters using CPUID function 2.  */
228
229 static void
230 detect_caches_cpuid2 (bool xeon_mp, 
231                       struct cache_desc *level1, struct cache_desc *level2)
232 {
233   unsigned regs[4];
234   int nreps, i;
235
236   __cpuid (2, regs[0], regs[1], regs[2], regs[3]);
237
238   nreps = regs[0] & 0x0f;
239   regs[0] &= ~0x0f;
240
241   while (--nreps >= 0)
242     {
243       for (i = 0; i < 4; i++)
244         if (regs[i] && !((regs[i] >> 31) & 1))
245           decode_caches_intel (regs[i], xeon_mp, level1, level2);
246
247       if (nreps)
248         __cpuid (2, regs[0], regs[1], regs[2], regs[3]);
249     }
250 }
251
252 /* Detect cache parameters using CPUID function 4. This
253    method doesn't require hardcoded tables.  */
254
255 enum cache_type
256 {
257   CACHE_END = 0,
258   CACHE_DATA = 1,
259   CACHE_INST = 2,
260   CACHE_UNIFIED = 3
261 };
262
263 static void
264 detect_caches_cpuid4 (struct cache_desc *level1, struct cache_desc *level2)
265 {
266   struct cache_desc *cache;
267
268   unsigned eax, ebx, ecx, edx;
269   int count;
270
271   for (count = 0;; count++)
272     { 
273       __cpuid_count(4, count, eax, ebx, ecx, edx);
274       switch (eax & 0x1f)
275         {
276         case CACHE_END:
277           return;
278         case CACHE_DATA:
279         case CACHE_UNIFIED:
280           {
281             switch ((eax >> 5) & 0x07)
282               {
283               case 1:
284                 cache = level1;
285                 break;
286               case 2:
287                 cache = level2;
288                 break;
289               default:
290                 cache = NULL;
291               }
292
293             if (cache)
294               {
295                 unsigned sets = ecx + 1;
296                 unsigned part = ((ebx >> 12) & 0x03ff) + 1;
297
298                 cache->assoc = ((ebx >> 22) & 0x03ff) + 1;
299                 cache->line = (ebx & 0x0fff) + 1;
300
301                 cache->sizekb = (cache->assoc * part
302                                  * cache->line * sets) / 1024;
303               }        
304           }
305         default:
306           break;
307         }
308     }
309 }
310
311 /* Returns the description of caches for an Intel processor.  */
312
313 static const char *
314 detect_caches_intel (bool xeon_mp, unsigned max_level, unsigned max_ext_level)
315 {
316   struct cache_desc level1 = {0, 0, 0}, level2 = {0, 0, 0};
317
318   if (max_level >= 4)
319     detect_caches_cpuid4 (&level1, &level2);
320   else if (max_level >= 2)
321     detect_caches_cpuid2 (xeon_mp, &level1, &level2);
322   else
323     return "";
324
325   if (level1.sizekb == 0)
326     return "";
327
328   /* Intel CPUs are equipped with AMD style L2 cache info.  Try this
329      method if other methods fail to provide L2 cache parameters.  */
330   if (level2.sizekb == 0 && max_ext_level >= 0x80000006)
331     detect_l2_cache (&level2);
332
333   return describe_cache (level1, level2);
334 }
335
336 enum vendor_signatures
337 {
338   SIG_INTEL =   0x756e6547 /* Genu */,
339   SIG_AMD =     0x68747541 /* Auth */
340 };
341
342 enum processor_signatures
343 {
344   SIG_GEODE =   0x646f6547 /* Geod */
345 };
346
347 /* This will be called by the spec parser in gcc.c when it sees
348    a %:local_cpu_detect(args) construct.  Currently it will be called
349    with either "arch" or "tune" as argument depending on if -march=native
350    or -mtune=native is to be substituted.
351
352    It returns a string containing new command line parameters to be
353    put at the place of the above two options, depending on what CPU
354    this is executed.  E.g. "-march=k8" on an AMD64 machine
355    for -march=native.
356
357    ARGC and ARGV are set depending on the actual arguments given
358    in the spec.  */
359
360 const char *host_detect_local_cpu (int argc, const char **argv)
361 {
362   enum processor_type processor = PROCESSOR_I386;
363   const char *cpu = "i386";
364
365   const char *cache = "";
366   const char *options = "";
367
368   unsigned int eax, ebx, ecx, edx;
369
370   unsigned int max_level, ext_level;
371
372   unsigned int vendor;
373   unsigned int model, family;
374
375   unsigned int has_sse3, has_ssse3, has_cmpxchg16b;
376   unsigned int has_cmpxchg8b, has_cmov, has_mmx, has_sse, has_sse2;
377
378   /* Extended features */
379   unsigned int has_lahf_lm = 0, has_sse4a = 0;
380   unsigned int has_longmode = 0, has_3dnowp = 0, has_3dnow = 0;
381   unsigned int has_movbe = 0;
382
383   bool arch;
384
385   if (argc < 1)
386     return NULL;
387
388   arch = !strcmp (argv[0], "arch");
389
390   if (!arch && strcmp (argv[0], "tune"))
391     return NULL;
392
393   max_level = __get_cpuid_max (0, &vendor);
394   if (max_level < 1)
395     goto done;
396
397   __cpuid (1, eax, ebx, ecx, edx);
398
399   model = (eax >> 4) & 0x0f;
400   family = (eax >> 8) & 0x0f;
401   if (vendor == SIG_INTEL)
402     {
403       unsigned int extended_model, extended_family;
404
405       extended_model = (eax >> 12) & 0xf0;
406       extended_family = (eax >> 20) & 0xff;
407       if (family == 0x0f)
408         {
409           family += extended_family;
410           model += extended_model;
411         }
412       else if (family == 0x06)
413         model += extended_model;
414     }
415
416   has_sse3 = ecx & bit_SSE3;
417   has_ssse3 = ecx & bit_SSSE3;
418   has_cmpxchg16b = ecx & bit_CMPXCHG16B;
419   has_movbe = ecx & bit_MOVBE;
420
421   has_cmpxchg8b = edx & bit_CMPXCHG8B;
422   has_cmov = edx & bit_CMOV;
423   has_mmx = edx & bit_MMX;
424   has_sse = edx & bit_SSE;
425   has_sse2 = edx & bit_SSE2;
426
427   /* Check cpuid level of extended features.  */
428   __cpuid (0x80000000, ext_level, ebx, ecx, edx);
429
430   if (ext_level > 0x80000000)
431     {
432       __cpuid (0x80000001, eax, ebx, ecx, edx);
433
434       has_lahf_lm = ecx & bit_LAHF_LM;
435       has_sse4a = ecx & bit_SSE4a;
436
437       has_longmode = edx & bit_LM;
438       has_3dnowp = edx & bit_3DNOWP;
439       has_3dnow = edx & bit_3DNOW;
440     }
441
442   if (!arch)
443     {
444       if (vendor == SIG_AMD)
445         cache = detect_caches_amd (ext_level);
446       else if (vendor == SIG_INTEL)
447         {
448           bool xeon_mp = (family == 15 && model == 6);
449           cache = detect_caches_intel (xeon_mp, max_level, ext_level);
450         }
451     }
452
453   if (vendor == SIG_AMD)
454     {
455       unsigned int name;
456
457       /* Detect geode processor by its processor signature.  */
458       if (ext_level > 0x80000001)
459         __cpuid (0x80000002, name, ebx, ecx, edx);
460       else
461         name = 0;
462
463       if (name == SIG_GEODE)
464         processor = PROCESSOR_GEODE;
465       else if (has_sse4a)
466         processor = PROCESSOR_AMDFAM10;
467       else if (has_sse2 || has_longmode)
468         processor = PROCESSOR_K8;
469       else if (has_3dnowp)
470         processor = PROCESSOR_ATHLON;
471       else if (has_mmx)
472         processor = PROCESSOR_K6;
473       else
474         processor = PROCESSOR_PENTIUM;
475     }
476   else
477     {
478       switch (family)
479         {
480         case 4:
481           processor = PROCESSOR_I486;
482           break;
483         case 5:
484           processor = PROCESSOR_PENTIUM;
485           break;
486         case 6:
487           processor = PROCESSOR_PENTIUMPRO;
488           break;
489         case 15:
490           processor = PROCESSOR_PENTIUM4;
491           break;
492         default:
493           /* We have no idea.  */
494           processor = PROCESSOR_GENERIC32;
495         }
496     }
497
498   switch (processor)
499     {
500     case PROCESSOR_I386:
501       /* Default.  */
502       break;
503     case PROCESSOR_I486:
504       cpu = "i486";
505       break;
506     case PROCESSOR_PENTIUM:
507       if (arch && has_mmx)
508         cpu = "pentium-mmx";
509       else
510         cpu = "pentium";
511       break;
512     case PROCESSOR_PENTIUMPRO:
513       if (has_longmode)
514         /* It is Core 2 or Atom.  */
515         cpu = (model == 28) ? "atom" : "core2";
516       else if (arch)
517         {
518           if (has_sse3)
519             /* It is Core Duo.  */
520             cpu = "prescott";
521           else if (has_sse2)
522             /* It is Pentium M.  */
523             cpu = "pentium-m";
524           else if (has_sse)
525             /* It is Pentium III.  */
526             cpu = "pentium3";
527           else if (has_mmx)
528             /* It is Pentium II.  */
529             cpu = "pentium2";
530           else
531             /* Default to Pentium Pro.  */
532             cpu = "pentiumpro";
533         }
534       else
535         /* For -mtune, we default to -mtune=generic.  */
536         cpu = "generic";
537       break;
538     case PROCESSOR_PENTIUM4:
539       if (has_sse3)
540         {
541           if (has_longmode)
542             cpu = "nocona";
543           else
544             cpu = "prescott";
545         }
546       else
547         cpu = "pentium4";
548       break;
549     case PROCESSOR_GEODE:
550       cpu = "geode";
551       break;
552     case PROCESSOR_K6:
553       if (arch && has_3dnow)
554         cpu = "k6-3";
555       else
556         cpu = "k6";
557       break;
558     case PROCESSOR_ATHLON:
559       if (arch && has_sse)
560         cpu = "athlon-4";
561       else
562         cpu = "athlon";
563       break;
564     case PROCESSOR_K8:
565       if (arch && has_sse3)
566         cpu = "k8-sse3";
567       else
568         cpu = "k8";
569       break;
570     case PROCESSOR_AMDFAM10:
571       cpu = "amdfam10";
572       break;
573
574     default:
575       /* Use something reasonable.  */
576       if (arch)
577         {
578           if (has_ssse3)
579             cpu = "core2";
580           else if (has_sse3)
581             {
582               if (has_longmode)
583                 cpu = "nocona";
584               else
585                 cpu = "prescott";
586             }
587           else if (has_sse2)
588             cpu = "pentium4";
589           else if (has_cmov)
590             cpu = "pentiumpro";
591           else if (has_mmx)
592             cpu = "pentium-mmx";
593           else if (has_cmpxchg8b)
594             cpu = "pentium";
595         }
596       else
597         cpu = "generic";
598     }
599
600   if (arch)
601     {
602       if (has_cmpxchg16b)
603         options = concat (options, "-mcx16 ", NULL);
604       if (has_lahf_lm)
605         options = concat (options, "-msahf ", NULL);
606       if (has_movbe)
607         options = concat (options, "-mmovbe", NULL);
608     }
609
610 done:
611   return concat (cache, "-m", argv[0], "=", cpu, " ", options, NULL);
612 }
613 #else
614
615 /* If we aren't compiling with GCC we just provide a minimal
616    default value.  */
617
618 const char *host_detect_local_cpu (int argc, const char **argv)
619 {
620   const char *cpu;
621   bool arch;
622
623   if (argc < 1)
624     return NULL;
625
626   arch = !strcmp (argv[0], "arch");
627
628   if (!arch && strcmp (argv[0], "tune"))
629     return NULL;
630   
631   if (arch)
632     {
633       /* FIXME: i386 is wrong for 64bit compiler.  How can we tell if
634          we are generating 64bit or 32bit code?  */
635       cpu = "i386";
636     }
637   else
638     cpu = "generic";
639
640   return concat ("-m", argv[0], "=", cpu, NULL);
641 }
642 #endif /* __GNUC__ */