Changelog entry:
[official-gcc.git] / gcc / config / i386 / driver-i386.c
blob1529810c78fc42f8dd4ebc1ac41e74fcaabfca33
1 /* Subroutines for the gcc driver.
2 Copyright (C) 2006, 2007, 2008, 2010 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 0x2c:
130 level1->sizekb = 32; level1->assoc = 8; level1->line = 64;
131 break;
132 case 0x39:
133 level2->sizekb = 128; level2->assoc = 4; level2->line = 64;
134 break;
135 case 0x3a:
136 level2->sizekb = 192; level2->assoc = 6; level2->line = 64;
137 break;
138 case 0x3b:
139 level2->sizekb = 128; level2->assoc = 2; level2->line = 64;
140 break;
141 case 0x3c:
142 level2->sizekb = 256; level2->assoc = 4; level2->line = 64;
143 break;
144 case 0x3d:
145 level2->sizekb = 384; level2->assoc = 6; level2->line = 64;
146 break;
147 case 0x3e:
148 level2->sizekb = 512; level2->assoc = 4; level2->line = 64;
149 break;
150 case 0x41:
151 level2->sizekb = 128; level2->assoc = 4; level2->line = 32;
152 break;
153 case 0x42:
154 level2->sizekb = 256; level2->assoc = 4; level2->line = 32;
155 break;
156 case 0x43:
157 level2->sizekb = 512; level2->assoc = 4; level2->line = 32;
158 break;
159 case 0x44:
160 level2->sizekb = 1024; level2->assoc = 4; level2->line = 32;
161 break;
162 case 0x45:
163 level2->sizekb = 2048; level2->assoc = 4; level2->line = 32;
164 break;
165 case 0x49:
166 if (xeon_mp)
167 break;
168 level2->sizekb = 4096; level2->assoc = 16; level2->line = 64;
169 break;
170 case 0x4e:
171 level2->sizekb = 6144; level2->assoc = 24; level2->line = 64;
172 break;
173 case 0x60:
174 level1->sizekb = 16; level1->assoc = 8; level1->line = 64;
175 break;
176 case 0x66:
177 level1->sizekb = 8; level1->assoc = 4; level1->line = 64;
178 break;
179 case 0x67:
180 level1->sizekb = 16; level1->assoc = 4; level1->line = 64;
181 break;
182 case 0x68:
183 level1->sizekb = 32; level1->assoc = 4; level1->line = 64;
184 break;
185 case 0x78:
186 level2->sizekb = 1024; level2->assoc = 4; level2->line = 64;
187 break;
188 case 0x79:
189 level2->sizekb = 128; level2->assoc = 8; level2->line = 64;
190 break;
191 case 0x7a:
192 level2->sizekb = 256; level2->assoc = 8; level2->line = 64;
193 break;
194 case 0x7b:
195 level2->sizekb = 512; level2->assoc = 8; level2->line = 64;
196 break;
197 case 0x7c:
198 level2->sizekb = 1024; level2->assoc = 8; level2->line = 64;
199 break;
200 case 0x7d:
201 level2->sizekb = 2048; level2->assoc = 8; level2->line = 64;
202 break;
203 case 0x7f:
204 level2->sizekb = 512; level2->assoc = 2; level2->line = 64;
205 break;
206 case 0x82:
207 level2->sizekb = 256; level2->assoc = 8; level2->line = 32;
208 break;
209 case 0x83:
210 level2->sizekb = 512; level2->assoc = 8; level2->line = 32;
211 break;
212 case 0x84:
213 level2->sizekb = 1024; level2->assoc = 8; level2->line = 32;
214 break;
215 case 0x85:
216 level2->sizekb = 2048; level2->assoc = 8; level2->line = 32;
217 break;
218 case 0x86:
219 level2->sizekb = 512; level2->assoc = 4; level2->line = 64;
220 break;
221 case 0x87:
222 level2->sizekb = 1024; level2->assoc = 8; level2->line = 64;
224 default:
225 break;
229 /* Detect cache parameters using CPUID function 2. */
231 static void
232 detect_caches_cpuid2 (bool xeon_mp,
233 struct cache_desc *level1, struct cache_desc *level2)
235 unsigned regs[4];
236 int nreps, i;
238 __cpuid (2, regs[0], regs[1], regs[2], regs[3]);
240 nreps = regs[0] & 0x0f;
241 regs[0] &= ~0x0f;
243 while (--nreps >= 0)
245 for (i = 0; i < 4; i++)
246 if (regs[i] && !((regs[i] >> 31) & 1))
247 decode_caches_intel (regs[i], xeon_mp, level1, level2);
249 if (nreps)
250 __cpuid (2, regs[0], regs[1], regs[2], regs[3]);
254 /* Detect cache parameters using CPUID function 4. This
255 method doesn't require hardcoded tables. */
257 enum cache_type
259 CACHE_END = 0,
260 CACHE_DATA = 1,
261 CACHE_INST = 2,
262 CACHE_UNIFIED = 3
265 static void
266 detect_caches_cpuid4 (struct cache_desc *level1, struct cache_desc *level2,
267 struct cache_desc *level3)
269 struct cache_desc *cache;
271 unsigned eax, ebx, ecx, edx;
272 int count;
274 for (count = 0;; count++)
276 __cpuid_count(4, count, eax, ebx, ecx, edx);
277 switch (eax & 0x1f)
279 case CACHE_END:
280 return;
281 case CACHE_DATA:
282 case CACHE_UNIFIED:
284 switch ((eax >> 5) & 0x07)
286 case 1:
287 cache = level1;
288 break;
289 case 2:
290 cache = level2;
291 break;
292 case 3:
293 cache = level3;
294 break;
295 default:
296 cache = NULL;
299 if (cache)
301 unsigned sets = ecx + 1;
302 unsigned part = ((ebx >> 12) & 0x03ff) + 1;
304 cache->assoc = ((ebx >> 22) & 0x03ff) + 1;
305 cache->line = (ebx & 0x0fff) + 1;
307 cache->sizekb = (cache->assoc * part
308 * cache->line * sets) / 1024;
311 default:
312 break;
317 /* Returns the description of caches for an Intel processor. */
319 static const char *
320 detect_caches_intel (bool xeon_mp, unsigned max_level,
321 unsigned max_ext_level, unsigned *l2sizekb)
323 struct cache_desc level1 = {0, 0, 0}, level2 = {0, 0, 0}, level3 = {0, 0, 0};
325 if (max_level >= 4)
326 detect_caches_cpuid4 (&level1, &level2, &level3);
327 else if (max_level >= 2)
328 detect_caches_cpuid2 (xeon_mp, &level1, &level2);
329 else
330 return "";
332 if (level1.sizekb == 0)
333 return "";
335 /* Let the L3 replace the L2. This assumes inclusive caches
336 and single threaded program for now. */
337 if (level3.sizekb)
338 level2 = level3;
340 /* Intel CPUs are equipped with AMD style L2 cache info. Try this
341 method if other methods fail to provide L2 cache parameters. */
342 if (level2.sizekb == 0 && max_ext_level >= 0x80000006)
343 detect_l2_cache (&level2);
345 *l2sizekb = level2.sizekb;
347 return describe_cache (level1, level2);
350 enum vendor_signatures
352 SIG_INTEL = 0x756e6547 /* Genu */,
353 SIG_AMD = 0x68747541 /* Auth */
356 enum processor_signatures
358 SIG_GEODE = 0x646f6547 /* Geod */
361 /* This will be called by the spec parser in gcc.c when it sees
362 a %:local_cpu_detect(args) construct. Currently it will be called
363 with either "arch" or "tune" as argument depending on if -march=native
364 or -mtune=native is to be substituted.
366 It returns a string containing new command line parameters to be
367 put at the place of the above two options, depending on what CPU
368 this is executed. E.g. "-march=k8" on an AMD64 machine
369 for -march=native.
371 ARGC and ARGV are set depending on the actual arguments given
372 in the spec. */
374 const char *host_detect_local_cpu (int argc, const char **argv)
376 enum processor_type processor = PROCESSOR_I386;
377 const char *cpu = "i386";
379 const char *cache = "";
380 const char *options = "";
382 unsigned int eax, ebx, ecx, edx;
384 unsigned int max_level, ext_level;
386 unsigned int vendor;
387 unsigned int model, family;
389 unsigned int has_sse3, has_ssse3, has_cmpxchg16b;
390 unsigned int has_cmpxchg8b, has_cmov, has_mmx, has_sse, has_sse2;
392 /* Extended features */
393 unsigned int has_lahf_lm = 0, has_sse4a = 0;
394 unsigned int has_longmode = 0, has_3dnowp = 0, has_3dnow = 0;
395 unsigned int has_movbe = 0, has_sse4_1 = 0, has_sse4_2 = 0;
396 unsigned int has_popcnt = 0, has_aes = 0, has_avx = 0, has_avx2 = 0;
397 unsigned int has_pclmul = 0, has_abm = 0, has_lwp = 0;
398 unsigned int has_fma = 0, has_fma4 = 0, has_xop = 0;
399 unsigned int has_bmi = 0, has_bmi2 = 0, has_tbm = 0, has_lzcnt = 0;
400 unsigned int has_hle = 0, has_rtm = 0;
401 unsigned int has_rdrnd = 0, has_f16c = 0, has_fsgsbase = 0;
402 unsigned int has_prfchw = 0;
404 bool arch;
406 unsigned int l2sizekb = 0;
408 if (argc < 1)
409 return NULL;
411 arch = !strcmp (argv[0], "arch");
413 if (!arch && strcmp (argv[0], "tune"))
414 return NULL;
416 max_level = __get_cpuid_max (0, &vendor);
417 if (max_level < 1)
418 goto done;
420 __cpuid (1, eax, ebx, ecx, edx);
422 model = (eax >> 4) & 0x0f;
423 family = (eax >> 8) & 0x0f;
424 if (vendor == SIG_INTEL)
426 unsigned int extended_model, extended_family;
428 extended_model = (eax >> 12) & 0xf0;
429 extended_family = (eax >> 20) & 0xff;
430 if (family == 0x0f)
432 family += extended_family;
433 model += extended_model;
435 else if (family == 0x06)
436 model += extended_model;
439 has_sse3 = ecx & bit_SSE3;
440 has_ssse3 = ecx & bit_SSSE3;
441 has_sse4_1 = ecx & bit_SSE4_1;
442 has_sse4_2 = ecx & bit_SSE4_2;
443 has_avx = ecx & bit_AVX;
444 has_cmpxchg16b = ecx & bit_CMPXCHG16B;
445 has_movbe = ecx & bit_MOVBE;
446 has_popcnt = ecx & bit_POPCNT;
447 has_aes = ecx & bit_AES;
448 has_pclmul = ecx & bit_PCLMUL;
449 has_fma = ecx & bit_FMA;
450 has_f16c = ecx & bit_F16C;
451 has_rdrnd = ecx & bit_RDRND;
453 has_cmpxchg8b = edx & bit_CMPXCHG8B;
454 has_cmov = edx & bit_CMOV;
455 has_mmx = edx & bit_MMX;
456 has_sse = edx & bit_SSE;
457 has_sse2 = edx & bit_SSE2;
459 if (max_level >= 7)
461 __cpuid_count (7, 0, eax, ebx, ecx, edx);
463 has_bmi = ebx & bit_BMI;
464 has_hle = ebx & bit_HLE;
465 has_rtm = ebx & bit_RTM;
466 has_avx2 = ebx & bit_AVX2;
467 has_bmi2 = ebx & bit_BMI2;
468 has_fsgsbase = ebx & bit_FSGSBASE;
469 has_prfchw = ecx & bit_PRFCHW;
472 /* Check cpuid level of extended features. */
473 __cpuid (0x80000000, ext_level, ebx, ecx, edx);
475 if (ext_level > 0x80000000)
477 __cpuid (0x80000001, eax, ebx, ecx, edx);
479 has_lahf_lm = ecx & bit_LAHF_LM;
480 has_sse4a = ecx & bit_SSE4a;
481 has_abm = ecx & bit_ABM;
482 has_lwp = ecx & bit_LWP;
483 has_fma4 = ecx & bit_FMA4;
484 if (vendor == SIG_AMD && has_fma4 && has_fma)
485 has_fma4 = 0;
486 has_xop = ecx & bit_XOP;
487 has_tbm = ecx & bit_TBM;
488 has_lzcnt = ecx & bit_LZCNT;
490 has_longmode = edx & bit_LM;
491 has_3dnowp = edx & bit_3DNOWP;
492 has_3dnow = edx & bit_3DNOW;
495 if (!arch)
497 if (vendor == SIG_AMD)
498 cache = detect_caches_amd (ext_level);
499 else if (vendor == SIG_INTEL)
501 bool xeon_mp = (family == 15 && model == 6);
502 cache = detect_caches_intel (xeon_mp, max_level,
503 ext_level, &l2sizekb);
507 if (vendor == SIG_AMD)
509 unsigned int name;
511 /* Detect geode processor by its processor signature. */
512 if (ext_level > 0x80000001)
513 __cpuid (0x80000002, name, ebx, ecx, edx);
514 else
515 name = 0;
517 if (name == SIG_GEODE)
518 processor = PROCESSOR_GEODE;
519 else if (has_movbe)
520 processor = PROCESSOR_BTVER2;
521 else if (has_bmi)
522 processor = PROCESSOR_BDVER2;
523 else if (has_xop)
524 processor = PROCESSOR_BDVER1;
525 else if (has_sse4a && has_ssse3)
526 processor = PROCESSOR_BTVER1;
527 else if (has_sse4a)
528 processor = PROCESSOR_AMDFAM10;
529 else if (has_sse2 || has_longmode)
530 processor = PROCESSOR_K8;
531 else if (has_3dnowp && family == 6)
532 processor = PROCESSOR_ATHLON;
533 else if (has_mmx)
534 processor = PROCESSOR_K6;
535 else
536 processor = PROCESSOR_PENTIUM;
538 else
540 switch (family)
542 case 4:
543 processor = PROCESSOR_I486;
544 break;
545 case 5:
546 processor = PROCESSOR_PENTIUM;
547 break;
548 case 6:
549 processor = PROCESSOR_PENTIUMPRO;
550 break;
551 case 15:
552 processor = PROCESSOR_PENTIUM4;
553 break;
554 default:
555 /* We have no idea. */
556 processor = PROCESSOR_GENERIC32;
560 switch (processor)
562 case PROCESSOR_I386:
563 /* Default. */
564 break;
565 case PROCESSOR_I486:
566 cpu = "i486";
567 break;
568 case PROCESSOR_PENTIUM:
569 if (arch && has_mmx)
570 cpu = "pentium-mmx";
571 else
572 cpu = "pentium";
573 break;
574 case PROCESSOR_PENTIUMPRO:
575 switch (model)
577 case 0x1c:
578 case 0x26:
579 /* Atom. */
580 cpu = "atom";
581 break;
582 case 0x1a:
583 case 0x1e:
584 case 0x1f:
585 case 0x2e:
586 /* Nehalem. */
587 cpu = "corei7";
588 break;
589 case 0x25:
590 case 0x2c:
591 case 0x2f:
592 /* Westmere. */
593 cpu = "corei7";
594 break;
595 case 0x2a:
596 case 0x2d:
597 /* Sandy Bridge. */
598 cpu = "corei7-avx";
599 break;
600 case 0x17:
601 case 0x1d:
602 /* Penryn. */
603 cpu = "core2";
604 break;
605 case 0x0f:
606 /* Merom. */
607 cpu = "core2";
608 break;
609 default:
610 if (arch)
612 /* This is unknown family 0x6 CPU. */
613 if (has_avx)
614 /* Assume Sandy Bridge. */
615 cpu = "corei7-avx";
616 else if (has_sse4_2)
617 /* Assume Core i7. */
618 cpu = "corei7";
619 else if (has_ssse3)
621 if (has_movbe)
622 /* Assume Atom. */
623 cpu = "atom";
624 else
625 /* Assume Core 2. */
626 cpu = "core2";
628 else if (has_sse3)
629 /* It is Core Duo. */
630 cpu = "pentium-m";
631 else if (has_sse2)
632 /* It is Pentium M. */
633 cpu = "pentium-m";
634 else if (has_sse)
635 /* It is Pentium III. */
636 cpu = "pentium3";
637 else if (has_mmx)
638 /* It is Pentium II. */
639 cpu = "pentium2";
640 else
641 /* Default to Pentium Pro. */
642 cpu = "pentiumpro";
644 else
645 /* For -mtune, we default to -mtune=generic. */
646 cpu = "generic";
647 break;
649 break;
650 case PROCESSOR_PENTIUM4:
651 if (has_sse3)
653 if (has_longmode)
654 cpu = "nocona";
655 else
656 cpu = "prescott";
658 else
659 cpu = "pentium4";
660 break;
661 case PROCESSOR_GEODE:
662 cpu = "geode";
663 break;
664 case PROCESSOR_K6:
665 if (arch && has_3dnow)
666 cpu = "k6-3";
667 else
668 cpu = "k6";
669 break;
670 case PROCESSOR_ATHLON:
671 if (arch && has_sse)
672 cpu = "athlon-4";
673 else
674 cpu = "athlon";
675 break;
676 case PROCESSOR_K8:
677 if (arch && has_sse3)
678 cpu = "k8-sse3";
679 else
680 cpu = "k8";
681 break;
682 case PROCESSOR_AMDFAM10:
683 cpu = "amdfam10";
684 break;
685 case PROCESSOR_BDVER1:
686 cpu = "bdver1";
687 break;
688 case PROCESSOR_BDVER2:
689 cpu = "bdver2";
690 break;
691 case PROCESSOR_BTVER1:
692 cpu = "btver1";
693 break;
694 case PROCESSOR_BTVER2:
695 cpu = "btver2";
696 break;
698 default:
699 /* Use something reasonable. */
700 if (arch)
702 if (has_ssse3)
703 cpu = "core2";
704 else if (has_sse3)
706 if (has_longmode)
707 cpu = "nocona";
708 else
709 cpu = "prescott";
711 else if (has_sse2)
712 cpu = "pentium4";
713 else if (has_cmov)
714 cpu = "pentiumpro";
715 else if (has_mmx)
716 cpu = "pentium-mmx";
717 else if (has_cmpxchg8b)
718 cpu = "pentium";
720 else
721 cpu = "generic";
724 if (arch)
726 const char *cx16 = has_cmpxchg16b ? " -mcx16" : " -mno-cx16";
727 const char *sahf = has_lahf_lm ? " -msahf" : " -mno-sahf";
728 const char *movbe = has_movbe ? " -mmovbe" : " -mno-movbe";
729 const char *ase = has_aes ? " -maes" : " -mno-aes";
730 const char *pclmul = has_pclmul ? " -mpclmul" : " -mno-pclmul";
731 const char *popcnt = has_popcnt ? " -mpopcnt" : " -mno-popcnt";
732 const char *abm = has_abm ? " -mabm" : " -mno-abm";
733 const char *lwp = has_lwp ? " -mlwp" : " -mno-lwp";
734 const char *fma = has_fma ? " -mfma" : " -mno-fma";
735 const char *fma4 = has_fma4 ? " -mfma4" : " -mno-fma4";
736 const char *xop = has_xop ? " -mxop" : " -mno-xop";
737 const char *bmi = has_bmi ? " -mbmi" : " -mno-bmi";
738 const char *bmi2 = has_bmi2 ? " -mbmi2" : " -mno-bmi2";
739 const char *tbm = has_tbm ? " -mtbm" : " -mno-tbm";
740 const char *avx = has_avx ? " -mavx" : " -mno-avx";
741 const char *avx2 = has_avx2 ? " -mavx2" : " -mno-avx2";
742 const char *sse4_2 = has_sse4_2 ? " -msse4.2" : " -mno-sse4.2";
743 const char *sse4_1 = has_sse4_1 ? " -msse4.1" : " -mno-sse4.1";
744 const char *lzcnt = has_lzcnt ? " -mlzcnt" : " -mno-lzcnt";
745 const char *hle = has_hle ? " -mhle" : " -mno-hle";
746 const char *rtm = has_rtm ? " -mrtm" : " -mno-rtm";
747 const char *rdrnd = has_rdrnd ? " -mrdrnd" : " -mno-rdrnd";
748 const char *f16c = has_f16c ? " -mf16c" : " -mno-f16c";
749 const char *fsgsbase = has_fsgsbase ? " -mfsgsbase" : " -mno-fsgsbase";
750 const char *prfchw = has_prfchw ? " -mprfchw" : " -mno-prfchw";
752 options = concat (options, cx16, sahf, movbe, ase, pclmul,
753 popcnt, abm, lwp, fma, fma4, xop, bmi, bmi2,
754 tbm, avx, avx2, sse4_2, sse4_1, lzcnt, rtm,
755 hle, rdrnd, f16c, fsgsbase, prfchw, NULL);
758 done:
759 return concat (cache, "-m", argv[0], "=", cpu, options, NULL);
761 #else
763 /* If we aren't compiling with GCC then the driver will just ignore
764 -march and -mtune "native" target and will leave to the newly
765 built compiler to generate code for its default target. */
767 const char *host_detect_local_cpu (int argc ATTRIBUTE_UNUSED,
768 const char **argv ATTRIBUTE_UNUSED)
770 return NULL;
772 #endif /* __GNUC__ */