config.guess
上传用户:qaz666999
上传日期:2022-08-06
资源大小:2570k
文件大小:25k
源码类别:

数学计算

开发平台:

Unix_Linux

  1. #! /bin/sh
  2. #
  3. # GMP config.guess wrapper.
  4. # Copyright 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2008 Free Software
  5. # Foundation, Inc.
  6. #
  7. # This file is part of the GNU MP Library.
  8. #
  9. # The GNU MP Library is free software; you can redistribute it and/or modify
  10. # it under the terms of the GNU Lesser General Public License as published
  11. # by the Free Software Foundation; either version 3 of the License, or (at
  12. # your option) any later version.
  13. #
  14. # The GNU MP Library is distributed in the hope that it will be useful, but
  15. # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  16. # or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  17. # License for more details.
  18. #
  19. # You should have received a copy of the GNU Lesser General Public License
  20. # along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.
  21. # Usage: config.guess
  22. #
  23. # Print the host system CPU-VENDOR-OS.
  24. #
  25. # configfsf.guess is run and its guess then sharpened up to take advantage
  26. # of the finer grained CPU types that GMP knows.
  27. # Expect to find configfsf.guess in the same directory as this config.guess
  28. configfsf_guess="`echo "$0" | sed 's/config.guess$/configfsf.guess/'`"
  29. if test "$configfsf_guess" = "$0"; then
  30.   echo "Cannot derive configfsf.guess from $0" 1>&2
  31.   exit 1
  32. fi
  33. if test -f "$configfsf_guess"; then
  34.   :
  35. else
  36.   echo "$configfsf_guess not found" 1>&2
  37.   exit 1
  38. fi
  39. # Setup a $SHELL with which to run configfsf.guess, using the same
  40. # $CONFIG_SHELL or /bin/sh as autoconf does when running config.guess
  41. SHELL=${CONFIG_SHELL-/bin/sh}
  42. # Identify ourselves on --version, --help or errors
  43. if test $# != 0; then
  44.   echo "(GNU MP wrapped config.guess)"
  45.   $SHELL $configfsf_guess "$@"
  46.   exit 1
  47. fi
  48. guess_full=`$SHELL $configfsf_guess`
  49. if test $? != 0; then
  50.   exit 1
  51. fi
  52. guess_cpu=`echo "$guess_full" | sed 's/-.*$//'`
  53. guess_rest=`echo "$guess_full" | sed 's/^[^-]*//'`
  54. exact_cpu=
  55. # -------------------------------------------------------------------------
  56. # The following should look at the current guess and probe the system to
  57. # establish a better guess in exact_cpu.  Leave exact_cpu empty if probes
  58. # can't be done, or don't work.
  59. #
  60. # When a number of probes are done, test -z "$exact_cpu" can be used instead
  61. # of putting each probe under an "else" of the preceeding.  That can stop
  62. # the code getting horribly nested and marching off the right side of the
  63. # screen.
  64. # Note that when a compile-and-link is done in one step we need to remove .o
  65. # files, since lame C compilers generate these even when not asked.
  66. #
  67. dummy=dummy-$$
  68. trap 'rm -f $dummy.c $dummy.o $dummy.core $dummy ${dummy}1.s ${dummy}2.c ; exit 1' 1 2 15
  69. # Use $HOST_CC if defined. $CC may point to a cross-compiler
  70. if test x"$CC_FOR_BUILD" = x; then
  71.   if test x"$HOST_CC" != x; then
  72.     CC_FOR_BUILD="$HOST_CC"
  73.   else
  74.     if test x"$CC" != x; then
  75.       CC_FOR_BUILD="$CC"
  76.     else
  77.       echo 'dummy(){}' >$dummy.c
  78.       for c in cc gcc c89 c99; do
  79.   ($c $dummy.c -c) >/dev/null 2>&1
  80.   if test $? = 0; then
  81.       CC_FOR_BUILD="$c"; break
  82.   fi
  83.       done
  84.       rm -f $dummy.c $dummy.o
  85.       if test x"$CC_FOR_BUILD" = x; then
  86. CC_FOR_BUILD=no_compiler_found
  87.       fi
  88.     fi
  89.   fi
  90. fi
  91. case "$guess_full" in
  92. alpha-*-*)
  93.   # configfsf.guess detects exact alpha cpu types for OSF and GNU/Linux, but
  94.   # not for *BSD and other systems.  We try to get an exact type for any
  95.   # plain "alpha" it leaves.
  96.   #
  97.   # configfsf.guess used to have a block of code not unlike this, but these
  98.   # days does its thing with Linux kernel /proc/cpuinfo or OSF psrinfo.
  99.   #
  100.   cat <<EOF >$dummy.s
  101. .data
  102. Lformat:
  103. .byte 37,100,45,37,120,10,0 # "%d-%xn"
  104. .text
  105. .globl main
  106. .align 4
  107. .ent main
  108. main:
  109. .frame $30,16,$26,0
  110. ldgp $29,0($27)
  111. .prologue 1
  112. .long 0x47e03d91 # implver $17
  113. lda $2,-1
  114. .long 0x47e20c21 # amask $2,$1
  115. lda $16,Lformat
  116. not $1,$18
  117. jsr $26,printf
  118. ldgp $29,0($26)
  119. mov 0,$16
  120. jsr $26,exit
  121. .end main
  122. EOF
  123.   $CC_FOR_BUILD $dummy.s -o $dummy 2>/dev/null
  124.   if test "$?" = 0 ; then
  125.     case `./$dummy` in
  126.     0-0) exact_cpu=alpha      ;;
  127.     1-0) exact_cpu=alphaev5   ;;
  128.     1-1) exact_cpu=alphaev56  ;;
  129.     1-101) exact_cpu=alphapca56 ;;
  130.     2-303) exact_cpu=alphaev6   ;;
  131.     2-307) exact_cpu=alphaev67  ;;
  132.     2-1307) exact_cpu=alphaev68  ;;
  133.     esac
  134.   fi
  135.   rm -f $dummy.s $dummy.o $dummy
  136.   ;;
  137. ia64*-*-*)
  138.   # CPUID[3] bits 24 to 31 is the processor family.  itanium2 is documented
  139.   # as 0x1f, plain itanium has been seen returning 0x07 on two systems, but
  140.   # haven't found any documentation on it as such.
  141.   #
  142.   # Defining both getcpuid and _getcpuid lets us ignore whether the system
  143.   # expects underscores or not.
  144.   #
  145.   # "unsigned long long" is always 64 bits, in fact on hpux in ilp32 mode
  146.   # (which is the default there), it's the only 64-bit type.
  147.   #
  148.   cat >${dummy}a.s <<EOF
  149. .text
  150. .global _getcpuid
  151. .proc _getcpuid
  152. _getcpuid:
  153. mov r8 = CPUID[r32] ;;
  154. br.ret.sptk.many rp ;;
  155. .endp _getcpuid
  156. .global getcpuid
  157. .proc getcpuid
  158. getcpuid:
  159. mov r8 = CPUID[r32] ;;
  160. br.ret.sptk.many rp ;;
  161. .endp getcpuid
  162. EOF
  163.   cat >${dummy}b.c <<EOF
  164. #include <stdio.h>
  165. unsigned long long getcpuid ();
  166. int
  167. main ()
  168. {
  169.   if (getcpuid(0LL) == 0x49656E69756E6547LL && getcpuid(1LL) == 0x6C65746ELL)
  170.     {
  171.       /* "GenuineIntel" */
  172.       switch ((getcpuid(3LL) >> 24) & 0xFF) {
  173.       case 0x07: puts ("itanium");  break;
  174.       case 0x1F: puts ("itanium2"); break; /* McKinley, Madison */
  175.       case 0x20: puts ("itanium2"); break; /* Montecito */
  176.       }
  177.     }
  178.   return 0;
  179. }
  180. EOF
  181.   if $CC_FOR_BUILD ${dummy}a.s ${dummy}b.c -o $dummy >/dev/null 2>&1; then
  182.     exact_cpu=`./$dummy`
  183.   fi
  184.   rm -f ${dummy}a.s ${dummy}a.o ${dummy}b.c ${dummy}b.o $dummy $dummy.core core
  185.   ;;
  186. mips-*-irix[6789]*)
  187.   # IRIX 6 and up always has a 64-bit mips cpu
  188.   exact_cpu=mips64
  189.   ;;
  190. m68k-*-*)
  191.   # NetBSD (and presumably other *BSD) "sysctl hw.model" gives for example
  192.   #   hw.model = Apple Macintosh Quadra 610  (68040)
  193.   exact_cpu=`(sysctl hw.model) 2>/dev/null | sed -n 's/^.*(680[012346]0).*$/m1/p'`
  194.   if test -z "$exact_cpu"; then
  195.     # Linux kernel 2.2 gives for example "CPU: 68020" (tabs in between).
  196.     exact_cpu=`sed -n 's/^CPU:.*(680[012346]0).*$/m1/p' /proc/cpuinfo 2>/dev/null`
  197.   fi
  198.   if test -z "$exact_cpu"; then
  199.     # Try: movel #0,%d0; rts
  200.     # This is to check the compiler and our asm code works etc, before
  201.     # assuming failures below indicate cpu characteristics.
  202.     # .byte is used to avoid problems with assembler syntax variations.
  203.     # For testing, provoke failures by adding "illegal" possibly as
  204.     # ".byte 0x4A, 0xFC"
  205.     cat >$dummy.s <<EOF
  206. .text
  207. .globl main
  208. .globl _main
  209. main:
  210. _main:
  211. .byte 0x70, 0x00
  212. .byte 0x4e, 0x75
  213. EOF
  214.     if ($CC_FOR_BUILD $dummy.s -o $dummy && ./$dummy) >/dev/null 2>&1; then
  215.       # $SHELL -c is used to execute ./$dummy below, since (./$dummy)
  216.       # 2>/dev/null still prints the SIGILL message on some shells.
  217.       #
  218.         # Try: movel #0,%d0
  219.         #      rtd #0
  220.         cat >$dummy.s <<EOF
  221. .text
  222. .globl main
  223. .globl _main
  224. main:
  225. _main:
  226. .byte 0x70, 0x00
  227. .byte 0x4e, 0x74, 0x00, 0x00
  228. EOF
  229.         if $CC_FOR_BUILD $dummy.s -o $dummy >/dev/null 2>&1; then
  230.           $SHELL -c ./$dummy >/dev/null 2>&1
  231.   if test $? != 0; then
  232.             exact_cpu=m68000    # because rtd didn't work
  233.           fi
  234.         fi
  235.       #
  236.       if test -z "$exact_cpu"; then
  237.         # Try: trapf
  238.         #      movel #0,%d0
  239.         #      rts
  240.         # Another possibility for identifying 68000 and 68010 is the
  241.         # different value stored by "movem a0,(a0)+"
  242.         cat >$dummy.s <<EOF
  243. .text
  244. .globl main
  245. .globl _main
  246. main:
  247. _main:
  248. .byte 0x51, 0xFC
  249. .byte 0x70, 0x00
  250. .byte 0x4e, 0x75
  251. EOF
  252.         if $CC_FOR_BUILD $dummy.s -o $dummy >/dev/null 2>&1; then
  253.           $SHELL -c ./$dummy >/dev/null 2>&1
  254.   if test $? != 0; then
  255.             exact_cpu=m68010    # because trapf didn't work
  256.           fi
  257.         fi
  258.       fi
  259.       if test -z "$exact_cpu"; then
  260.         # Try: bfffo %d1{0:31},%d0
  261.         #      movel #0,%d0
  262.         #      rts
  263.         cat >$dummy.s <<EOF
  264. .text
  265. .globl main
  266. .globl _main
  267. main:
  268. _main:
  269. .byte 0xED, 0xC1, 0x00, 0x1F
  270. .byte 0x70, 0x00
  271. .byte 0x4e, 0x75
  272. EOF
  273.         if $CC_FOR_BUILD $dummy.s -o $dummy >/dev/null 2>&1; then
  274.           $SHELL -c ./$dummy >/dev/null 2>&1
  275.   if test $? != 0; then
  276.             exact_cpu=m68360  # cpu32, because bfffo didn't work
  277.           fi
  278.         fi
  279.       fi
  280.       if test -z "$exact_cpu"; then
  281.         # FIXME: Now we know 68020 or up, but how to detect 030, 040 and 060?
  282.         exact_cpu=m68020
  283.       fi
  284.     fi
  285.     rm -f $dummy.s $dummy.o $dummy $dummy.core core
  286.   fi
  287.   if test -z "$exact_cpu"; then
  288.     case "$guess_full" in
  289.       *-*-next* | *-*-openstep*)  # NeXTs are 68020 or better
  290.         exact_cpu=m68020 ;;
  291.     esac
  292.   fi
  293.   ;;
  294. rs6000-*-* | powerpc*-*-*)
  295.   # Enhancement: On MacOS the "machine" command prints for instance
  296.   # "ppc750".  Interestingly on powerpc970-apple-darwin6.8.5 it prints
  297.   # "ppc970" where there's no actual #define for 970 from NXGetLocalArchInfo
  298.   # (as noted below).  But the man page says the command is still "under
  299.   # development", so it doesn't seem wise to use it just yet, not while
  300.   # there's an alternative.
  301.   #
  302.   # Try to read the PVR.  mfpvr is a protected instruction, NetBSD, MacOS
  303.   # and AIX don't allow it in user mode, but the Linux kernel does.
  304.   #
  305.   # Using explicit bytes for mfpvr avoids worrying about assembler syntax
  306.   # and underscores.  "char"s are used instead of "int"s to avoid worrying
  307.   # whether sizeof(int)==4 or if it's the right endianness.
  308.   #
  309.   # Note this is no good on AIX, since a C function there is the address of
  310.   # a function descriptor, not actual code.  But this doesn't matter since
  311.   # AIX doesn't allow mfpvr anyway.
  312.   #
  313.   cat >$dummy.c <<EOF
  314. #include <stdio.h>
  315. struct {
  316.   int   n;  /* force 4-byte alignment */
  317.   char  a[8];
  318. } getpvr = {
  319.   0,
  320.   {
  321.     0x7c, 0x7f, 0x42, 0xa6,  /* mfpvr r3 */
  322.     0x4e, 0x80, 0x00, 0x20,  /* blr      */
  323.   }
  324. };
  325. int
  326. main ()
  327. {
  328.   unsigned  (*fun)();
  329.   unsigned  pvr;
  330.   /* a separate "fun" variable is necessary for gcc 2.95.2 on MacOS,
  331.      it gets a compiler error on a combined cast and call */
  332.   fun = (unsigned (*)()) getpvr.a;
  333.   pvr = (*fun) ();
  334.   switch (pvr >> 16) {
  335.   case 0x0001: puts ("powerpc601");  break;
  336.   case 0x0003: puts ("powerpc603");  break;
  337.   case 0x0004: puts ("powerpc604");  break;
  338.   case 0x0006: puts ("powerpc603e"); break;
  339.   case 0x0007: puts ("powerpc603e"); break;  /* 603ev */
  340.   case 0x0008: puts ("powerpc750");  break;
  341.   case 0x0009: puts ("powerpc604e"); break;
  342.   case 0x000a: puts ("powerpc604e"); break;  /* 604ev5 */
  343.   case 0x000c: puts ("powerpc7400"); break;
  344.   case 0x0041: puts ("powerpc630");  break;
  345.   case 0x0050: puts ("powerpc860");  break;
  346.   case 0x8000: puts ("powerpc7450"); break;
  347.   case 0x8001: puts ("powerpc7455"); break;
  348.   case 0x8002: puts ("powerpc7457"); break;
  349.   case 0x8003: puts ("powerpc7447"); break; /* really 7447A */
  350.   case 0x800c: puts ("powerpc7410"); break;
  351.   }
  352.   return 0;
  353. }
  354. EOF
  355.   if ($CC_FOR_BUILD $dummy.c -o $dummy) >/dev/null 2>&1; then
  356.     # This style construct is needed on AIX 4.3 to suppress the SIGILL error
  357.     # from (*fun)().  Using $SHELL -c ./$dummy 2>/dev/null doesn't work.
  358.     { x=`./$dummy`; } 2>/dev/null
  359.     if test -n "$x"; then
  360.       exact_cpu=$x
  361.     fi
  362.   fi
  363.   rm -f $dummy.c $dummy.o $dummy $dummy.core
  364.   # Grep the linux kernel /proc/cpuinfo pseudo-file.
  365.   # Anything unrecognised is ignored, since of course we mustn't spit out
  366.   # a cpu type config.sub doesn't know.
  367.   if test -z "$exact_cpu" && test -f /proc/cpuinfo; then
  368.     x=`grep "^cpu[  ]" /proc/cpuinfo | head -n 1`
  369.     x=`echo $x | sed -n 's/^cpu[  ]*:[  ]*([A-Za-z0-9]*).*/1/p'`
  370.     x=`echo $x | sed 's/PPC//'`
  371.     case $x in
  372.       601)     exact_cpu="power" ;;
  373.       603ev)   exact_cpu="powerpc603e" ;;
  374.       604ev5)  exact_cpu="powerpc604e" ;;
  375.       603 | 603e | 604 | 604e | 750 | 821 | 860 | 970)
  376.         exact_cpu="powerpc$x" ;;
  377.       POWER[4-9])
  378.         exact_cpu=`echo $x | sed "s;POWER;power;"` ;;
  379.     esac
  380.   fi
  381.   if test -z "$exact_cpu"; then
  382.     # On AIX, try looking at _system_configuration.  This is present in
  383.     # version 4 at least.
  384.     cat >$dummy.c <<EOF
  385. #include <stdio.h>
  386. #include <sys/systemcfg.h>
  387. int
  388. main ()
  389. {
  390.   switch (_system_configuration.implementation) {
  391.   /* Old versions of AIX don't have all these constants,
  392.      use ifdef for safety. */
  393. #ifdef POWER_RS2
  394.   case POWER_RS2:    puts ("power2");     break;
  395. #endif
  396. #ifdef POWER_601
  397.   case POWER_601:    puts ("power");      break;
  398. #endif
  399. #ifdef POWER_603
  400.   case POWER_603:    puts ("powerpc603"); break;
  401. #endif
  402. #ifdef POWER_604
  403.   case POWER_604:    puts ("powerpc604"); break;
  404. #endif
  405. #ifdef POWER_620
  406.   case POWER_620:    puts ("powerpc620"); break;
  407. #endif
  408. #ifdef POWER_630
  409.   case POWER_630:    puts ("powerpc630"); break;
  410. #endif
  411.   /* Dunno what this is, leave it out for now.
  412.   case POWER_A35:    puts ("powerpca35"); break;
  413.   */
  414.   /* This is waiting for a bit more info.
  415.   case POWER_RS64II: puts ("powerpcrs64ii"); break;
  416.   */
  417. #ifdef POWER_4
  418.   case POWER_4:    puts ("power4"); break;
  419. #endif
  420. #ifdef POWER_5
  421.   case POWER_5:    puts ("power5"); break;
  422. #endif
  423. #ifdef POWER_6
  424.   case POWER_6:    puts ("power6"); break;
  425. #endif
  426.   default:
  427.     if (_system_configuration.architecture == POWER_RS)
  428.       puts ("power");
  429.     else if (_system_configuration.width == 64)
  430.       puts ("powerpc64");
  431.   }
  432.   return 0;
  433. }
  434. EOF
  435.     if ($CC_FOR_BUILD $dummy.c -o $dummy) >/dev/null 2>&1; then
  436.       x=`./$dummy`
  437.       if test -n "$x"; then
  438.         exact_cpu=$x
  439.       fi
  440.     fi
  441.     rm -f $dummy.c $dummy.o $dummy
  442.   fi
  443.   if test -z "$exact_cpu"; then
  444.     # On MacOS X (or any Mach-O presumably), NXGetLocalArchInfo cpusubtype
  445.     # can tell us the exact cpu.
  446.     cat >$dummy.c <<EOF
  447. #include <stdio.h>
  448. #include <mach-o/arch.h>
  449. int
  450. main (void)
  451. {
  452.   const NXArchInfo *a = NXGetLocalArchInfo();
  453.   if (a->cputype == CPU_TYPE_POWERPC)
  454.     {
  455.       switch (a->cpusubtype) {
  456.       /* The following known to Darwin 1.3. */
  457.       case CPU_SUBTYPE_POWERPC_601:   puts ("powerpc601");  break;
  458.       case CPU_SUBTYPE_POWERPC_602:   puts ("powerpc602");  break;
  459.       case CPU_SUBTYPE_POWERPC_603:   puts ("powerpc603");  break;
  460.       case CPU_SUBTYPE_POWERPC_603e:  puts ("powerpc603e"); break;
  461.       case CPU_SUBTYPE_POWERPC_603ev: puts ("powerpc603e"); break;
  462.       case CPU_SUBTYPE_POWERPC_604:   puts ("powerpc604");  break;
  463.       case CPU_SUBTYPE_POWERPC_604e:  puts ("powerpc604e"); break;
  464.       case CPU_SUBTYPE_POWERPC_620:   puts ("powerpc620");  break;
  465.       case CPU_SUBTYPE_POWERPC_750:   puts ("powerpc750");  break;
  466.       case CPU_SUBTYPE_POWERPC_7400:  puts ("powerpc7400"); break;
  467.       case CPU_SUBTYPE_POWERPC_7450:  puts ("powerpc7450"); break;
  468.       /* Darwin 6.8.5 doesn't define the following */
  469.       case 0x8001:                    puts ("powerpc7455"); break;
  470.       case 0x8002:                    puts ("powerpc7457"); break;
  471.       case 0x8003:                    puts ("powerpc7447"); break;
  472.       case 100:                       puts ("powerpc970");  break;
  473.       }
  474.     }
  475.   return 0;
  476. }
  477. EOF
  478.     if ($CC_FOR_BUILD $dummy.c -o $dummy) >/dev/null 2>&1; then
  479.       x=`./$dummy`
  480.       if test -n "$x"; then
  481.         exact_cpu=$x
  482.       fi
  483.     fi
  484.     rm -f $dummy.c $dummy.o $dummy
  485.   fi
  486.   ;;
  487. sparc-*-* | sparc64-*-*)
  488.   # If we can recognise an actual v7 then $exact_cpu is set to "sparc" so as
  489.   # to short-circuit subsequent tests.
  490.   # Grep the linux kernel /proc/cpuinfo pseudo-file.
  491.   # A typical line is "cputt: TI UltraSparc II  (BlackBird)"
  492.   # See arch/sparc/kernel/cpu.c and arch/sparc64/kernel/cpu.c.
  493.   #
  494.   if test -f /proc/cpuinfo; then
  495.     if grep 'cpu.*Cypress' /proc/cpuinfo >/dev/null; then
  496.       exact_cpu="sparc"   # ie. v7
  497.     elif grep 'cpu.*Power-UP' /proc/cpuinfo >/dev/null; then
  498.       exact_cpu="sparc"   # ie. v7
  499.     elif grep 'cpu.*HyperSparc' /proc/cpuinfo >/dev/null; then
  500.       exact_cpu="sparcv8"
  501.     elif grep 'cpu.*SuperSparc' /proc/cpuinfo >/dev/null; then
  502.       exact_cpu="supersparc"
  503.     elif grep 'cpu.*MicroSparc' /proc/cpuinfo >/dev/null; then
  504.       exact_cpu="microsparc"
  505.     elif grep 'cpu.*MB86904' /proc/cpuinfo >/dev/null; then
  506.       # actually MicroSPARC-II
  507.       exact_cpu=microsparc
  508.     elif grep 'cpu.*UltraSparc T1' /proc/cpuinfo >/dev/null; then
  509.       # this grep pattern has not been tested against any Linux
  510.       exact_cpu="ultrasparct1"
  511.     elif grep 'cpu.*UltraSparc III' /proc/cpuinfo >/dev/null; then
  512.       exact_cpu="ultrasparc3"
  513.     elif grep 'cpu.*UltraSparc IIi' /proc/cpuinfo >/dev/null; then
  514.       exact_cpu="ultrasparc2i"
  515.     elif grep 'cpu.*UltraSparc II' /proc/cpuinfo >/dev/null; then
  516.       exact_cpu="ultrasparc2"
  517.     elif grep 'cpu.*UltraSparc' /proc/cpuinfo >/dev/null; then
  518.       exact_cpu="ultrasparc"
  519.     fi
  520.   fi
  521.   # Grep the output from sysinfo on SunOS.
  522.   # sysinfo has been seen living in /bin or in /usr/kvm
  523.   # cpu0 is a "SuperSPARC Model 41 SPARCmodule" CPU
  524.   # cpu0 is a "75 MHz TI,TMS390Z55" CPU
  525.   #
  526.   if test -z "$exact_cpu"; then
  527.     for i in sysinfo /usr/kvm/sysinfo; do
  528.       if $SHELL -c $i 2>/dev/null >conftest.dat; then
  529.         if grep 'cpu0 is a "SuperSPARC' conftest.dat >/dev/null; then
  530.           exact_cpu=supersparc
  531.           break
  532.         elif grep 'cpu0 is a .*TMS390Z5.' conftest.dat >/dev/null; then
  533.           # TMS390Z50 and TMS390Z55
  534.           exact_cpu=supersparc
  535.           break
  536.         fi
  537.       fi
  538.     done
  539.     rm -f conftest.dat
  540.   fi
  541.   # Grep the output from prtconf on Solaris.
  542.   # Use an explicit /usr/sbin, since that directory might not be in a normal
  543.   # user's path.
  544.   #
  545.   #     SUNW,UltraSPARC (driver not attached)
  546.   #     SUNW,UltraSPARC-II (driver not attached)
  547.   #     SUNW,UltraSPARC-IIi (driver not attached)
  548.   #     SUNW,UltraSPARC-III+ (driver not attached)
  549.   #     Ross,RT625 (driver not attached)
  550.   #     TI,TMS390Z50 (driver not attached)
  551.   #
  552.   # /usr/sbin/sysdef prints similar information, but includes all loadable
  553.   # cpu modules, not just the real cpu.
  554.   #
  555.   # We first try a plain prtconf, since that is known to work on older systems.
  556.   # But for newer T1 systems, that doesn't produce any useful output, we need
  557.   # "prtconf -vp" there.
  558.   #
  559.   for prtconfopt in "" "-vp"; do
  560.     if test -z "$exact_cpu"; then
  561.       if $SHELL -c "/usr/sbin/prtconf $prtconfopt" 2>/dev/null >conftest.dat; then
  562. if grep 'SUNW,UltraSPARC-T1' conftest.dat >/dev/null; then
  563.   exact_cpu=ultrasparct1
  564. elif grep 'SUNW,UltraSPARC-III' conftest.dat >/dev/null; then
  565.   exact_cpu=ultrasparc3
  566. elif grep 'SUNW,UltraSPARC-IIi' conftest.dat >/dev/null; then
  567.   exact_cpu=ultrasparc2i
  568. elif grep 'SUNW,UltraSPARC-II' conftest.dat >/dev/null; then
  569.   exact_cpu=ultrasparc2
  570. elif grep 'SUNW,UltraSPARC' conftest.dat >/dev/null; then
  571.   exact_cpu=ultrasparc
  572. elif grep 'Ross,RT62.' conftest.dat >/dev/null; then
  573.   # RT620, RT625, RT626 hypersparcs (v8).
  574.   exact_cpu=sparcv8
  575. elif grep 'TI,TMS390Z5.' conftest.dat >/dev/null; then
  576.   # TMS390Z50 and TMS390Z55
  577.   exact_cpu=supersparc
  578. elif grep 'TI,TMS390S10' conftest.dat >/dev/null; then
  579.   exact_cpu=microsparc
  580. elif grep 'FMI,MB86904' conftest.dat >/dev/null; then
  581.   # actually MicroSPARC-II
  582.   exact_cpu=microsparc
  583. fi
  584.       fi
  585.       rm -f conftest.dat
  586.     fi
  587.   done
  588.   # Grep the output from sysctl hw.model on sparc or sparc64 *BSD.
  589.   # Use an explicit /sbin, since that directory might not be in a normal
  590.   # user's path.  Example outputs,
  591.   #
  592.   #     hw.model: Sun Microsystems UltraSparc-IIi
  593.   #
  594.   if test -z "$exact_cpu"; then
  595.     if $SHELL -c "/sbin/sysctl hw.model" 2>/dev/null >conftest.dat; then
  596.       if grep 'UltraSparc-T1' conftest.dat >/dev/null; then
  597. # this grep pattern has not been tested against any BSD
  598.         exact_cpu=ultrasparct1
  599.       elif grep 'UltraSparc-III' conftest.dat >/dev/null; then
  600.         exact_cpu=ultrasparc3
  601.       elif grep 'UltraSparc-IIi' conftest.dat >/dev/null; then
  602.         exact_cpu=ultrasparc2i
  603.       elif grep 'UltraSparc-II' conftest.dat >/dev/null; then
  604.         exact_cpu=ultrasparc2
  605.       elif grep 'UltraSparc' conftest.dat >/dev/null; then
  606.         exact_cpu=ultrasparc
  607.       elif grep 'TMS390Z5.' conftest.dat >/dev/null; then
  608.         # TMS390Z50 and TMS390Z55
  609.         exact_cpu=supersparc
  610.       elif grep 'TMS390S10' conftest.dat >/dev/null; then
  611.         exact_cpu=microsparc
  612.       elif grep 'MB86904' conftest.dat >/dev/null; then
  613.         # actually MicroSPARC-II
  614.         exact_cpu=microsparc
  615.       elif grep 'MB86907' conftest.dat >/dev/null; then
  616.         exact_cpu=turbosparc
  617.       fi
  618.     fi
  619.     rm -f conftest.dat
  620.   fi
  621.   # sun4m and sun4d are v8s of some sort, sun4u is a v9 of some sort
  622.   #
  623.   if test -z "$exact_cpu"; then
  624.     case `uname -m` in
  625.       sun4[md]) exact_cpu=sparcv8 ;;
  626.       sun4u)    exact_cpu=sparcv9 ;;
  627.     esac
  628.   fi
  629.   ;;
  630. i?86-*-* | amd64-*-* | x86_64-*-*)
  631.   cat <<EOF >${dummy}0.s
  632. .globl cpuid
  633. .globl _cpuid
  634. cpuid:
  635. _cpuid:
  636. pushl %esi
  637. pushl %ebx
  638. movl 16(%esp),%eax
  639. .byte 0x0f
  640. .byte 0xa2
  641. movl 12(%esp),%esi
  642. movl %ebx,(%esi)
  643. movl %edx,4(%esi)
  644. movl %ecx,8(%esi)
  645. popl %ebx
  646. popl %esi
  647. ret
  648. EOF
  649.   cat <<EOF >${dummy}1.s
  650. .globl cpuid
  651. .globl _cpuid
  652. cpuid:
  653. _cpuid:
  654. push %rbx
  655. mov %esi,%eax
  656. .byte 0x0f
  657. .byte 0xa2
  658. mov %ebx,(%rdi)
  659. mov %edx,4(%rdi)
  660. mov %ecx,8(%rdi)
  661. pop %rbx
  662. ret
  663. EOF
  664.   cat <<EOF >${dummy}2.c
  665. main ()
  666. {
  667.   char vendor_string[13];
  668.   char dummy_string[12];
  669.   long fms;
  670.   int family, model, stepping;
  671.   char *modelstr;
  672.   cpuid (vendor_string, 0);
  673.   vendor_string[12] = 0;
  674.   fms = cpuid (dummy_string, 1);
  675.   family = ((fms >> 8) & 0xf) + ((fms >> 20) & 0xff);
  676.   model = ((fms >> 4) & 0xf) + ((fms >> 12) & 0xf0);
  677.   stepping = fms & 0xf;
  678.   modelstr = "$guess_cpu";
  679.   if (strcmp (vendor_string, "GenuineIntel") == 0)
  680.     {
  681.       switch (family)
  682. {
  683. case 5:
  684.   if (model <= 2) modelstr = "pentium";
  685.   else if (model >= 4) modelstr = "pentiummmx";
  686.   break;
  687. case 6:
  688.   if (model <= 1) modelstr = "pentiumpro";
  689.   else if (model <= 6) modelstr = "pentium2";
  690.   else if (model <= 8) modelstr = "pentium3";
  691.   else if (model <= 9) modelstr = "pentiumm";
  692.   else if (model <= 0x0c) modelstr = "pentium3";
  693.   else if (model <= 0x0e) modelstr = "pentiumm";
  694.   else if (model <= 0x19) modelstr = "core2";
  695.   else if (model == 0x1a) modelstr = "corei"; /* NHM Gainestown */
  696.   else if (model == 0x1c) modelstr = "atom";  /* Silverthorne */
  697.   else if (model == 0x1d) modelstr = "core2"; /* PNR Dunnington */
  698.   else if (model == 0x1e) modelstr = "corei"; /* NHM Lynnfield/Jasper */
  699.   else if (model == 0x25) modelstr = "corei"; /* WSM Clarkdale/Arrandale */
  700.   else if (model == 0x26) modelstr = "atom";  /* Lincroft */
  701.   else if (model == 0x27) modelstr = "atom";  /* Saltwell */
  702.   else if (model == 0x2c) modelstr = "corei"; /* WSM Gulftown */
  703.   else if (model == 0x2e) modelstr = "corei"; /* NHM Beckton */
  704.   break;
  705. case 15:
  706.   modelstr = "pentium4";
  707.   break;
  708. }
  709.     }
  710.   else if (strcmp (vendor_string, "AuthenticAMD") == 0)
  711.     {
  712.       switch (family)
  713. {
  714. case 5:
  715.   if (model <= 3) modelstr = "k5";
  716.   else if (model <= 7) modelstr = "k6";
  717.   else if (model == 8) modelstr = "k62";
  718.   else if (model == 9) modelstr = "k63";
  719.   else if (model == 10) modelstr = "geode";
  720.   else if (model == 13) modelstr = "k63";
  721.   break;
  722. case 6:
  723.   modelstr = "athlon";
  724.   break;
  725. case 15:
  726. case 16:
  727.   modelstr = "athlon64";
  728.   break;
  729. }
  730.     }
  731.   else if (strcmp (vendor_string, "CyrixInstead") == 0)
  732.     {
  733.       /* Should recognize Cyrix' processors too.  */
  734.     }
  735.   else if (strcmp (vendor_string, "CentaurHauls") == 0)
  736.     {
  737.       switch (family)
  738. {
  739. case 6:
  740.   if (model < 9) modelstr = "viac3";
  741.   else if (model < 15) modelstr = "viac32";
  742.   else modelstr = "nano";
  743.   break;
  744. }
  745.     }
  746.   printf ("%sn", modelstr);
  747.   return 0;
  748. }
  749. EOF
  750.   if ($CC_FOR_BUILD ${dummy}1.s ${dummy}2.c -o $dummy) >/dev/null 2>&1; then
  751.     # On 80386 and early 80486 cpuid is not available and will result in a
  752.     # SIGILL message, hence 2>/dev/null.
  753.     #
  754.     # On i386-unknown-freebsd4.9, "/bin/sh -c ./dummy" seems to send an
  755.     # "Illegal instruction (core dumped)" message to stdout, so we test $?
  756.     # to check if the program run was successful.
  757.     #
  758.     x=`$SHELL -c ./$dummy 2>/dev/null`
  759.     if test $? = 0 && test -n "$x"; then
  760.       exact_cpu=$x
  761.     fi
  762.   fi
  763.   if test -z "$exact_cpu"; then
  764.   if ($CC_FOR_BUILD ${dummy}0.s ${dummy}2.c -o $dummy) >/dev/null 2>&1; then
  765.     # On 80386 and early 80486 cpuid is not available and will result in a
  766.     # SIGILL message, hence 2>/dev/null.
  767.     #
  768.     # On i386-unknown-freebsd4.9, "/bin/sh -c ./dummy" seems to send an
  769.     # "Illegal instruction (core dumped)" message to stdout, so we test $?
  770.     # to check if the program run was successful.
  771.     #
  772.     x=`$SHELL -c ./$dummy 2>/dev/null`
  773.     if test $? = 0 && test -n "$x"; then
  774.       exact_cpu=$x
  775.     fi
  776.   fi
  777.   fi
  778.   # We need to remove some .o files here since lame C compilers
  779.   # generate these even when not asked.
  780.   rm -f ${dummy}0.s ${dummy}0.o ${dummy}1.s ${dummy}1.o ${dummy}2.c ${dummy}2.o $dummy
  781.   ;;
  782. esac
  783. # -------------------------------------------------------------------------
  784. # Use an exact cpu, if possible
  785. if test -n "$exact_cpu"; then
  786.   echo "$exact_cpu$guess_rest"
  787. else
  788.   echo "$guess_full"
  789. fi
  790. exit 0
  791. # Local variables:
  792. # fill-column: 76
  793. # End: