]> git.ipfire.org Git - thirdparty/gcc.git/blobdiff - gcc/config/i386/driver-i386.c
Update copyright years.
[thirdparty/gcc.git] / gcc / config / i386 / driver-i386.c
index 013107ae72206b6b6bd17cca3be6b4e42bd02338..130e12c8868382b214a2e3efc6702b8fbee6de23 100644 (file)
@@ -1,5 +1,5 @@
 /* Subroutines for the gcc driver.
-   Copyright (C) 2006-2017 Free Software Foundation, Inc.
+   Copyright (C) 2006-2020 Free Software Foundation, Inc.
 
 This file is part of GCC.
 
@@ -407,6 +407,7 @@ const char *host_detect_local_cpu (int argc, const char **argv)
   unsigned int has_fma = 0, has_fma4 = 0, has_xop = 0;
   unsigned int has_bmi = 0, has_bmi2 = 0, has_tbm = 0, has_lzcnt = 0;
   unsigned int has_hle = 0, has_rtm = 0, has_sgx = 0;
+  unsigned int has_pconfig = 0, has_wbnoinvd = 0;
   unsigned int has_rdrnd = 0, has_f16c = 0, has_fsgsbase = 0;
   unsigned int has_rdseed = 0, has_prfchw = 0, has_adx = 0;
   unsigned int has_osxsave = 0, has_fxsr = 0, has_xsave = 0, has_xsaveopt = 0;
@@ -418,8 +419,18 @@ const char *host_detect_local_cpu (int argc, const char **argv)
   unsigned int has_mwaitx = 0, has_clzero = 0, has_pku = 0, has_rdpid = 0;
   unsigned int has_avx5124fmaps = 0, has_avx5124vnniw = 0;
   unsigned int has_gfni = 0, has_avx512vbmi2 = 0;
-  unsigned int has_ibt = 0, has_shstk = 0;
+  unsigned int has_avx512bitalg = 0;
+  unsigned int has_shstk = 0;
   unsigned int has_avx512vnni = 0, has_vaes = 0;
+  unsigned int has_vpclmulqdq = 0;
+  unsigned int has_avx512vp2intersect = 0;
+  unsigned int has_movdiri = 0, has_movdir64b = 0;
+  unsigned int has_enqcmd = 0;
+  unsigned int has_waitpkg = 0;
+  unsigned int has_cldemote = 0;
+  unsigned int has_avx512bf16 = 0;
+
+  unsigned int has_ptwrite = 0;
 
   bool arch;
 
@@ -513,12 +524,23 @@ const char *host_detect_local_cpu (int argc, const char **argv)
       has_rdpid = ecx & bit_RDPID;
       has_gfni = ecx & bit_GFNI;
       has_vaes = ecx & bit_VAES;
+      has_vpclmulqdq = ecx & bit_VPCLMULQDQ;
+      has_avx512bitalg = ecx & bit_AVX512BITALG;
+      has_movdiri = ecx & bit_MOVDIRI;
+      has_movdir64b = ecx & bit_MOVDIR64B;
+      has_enqcmd = ecx & bit_ENQCMD;
+      has_cldemote = ecx & bit_CLDEMOTE;
 
       has_avx5124vnniw = edx & bit_AVX5124VNNIW;
       has_avx5124fmaps = edx & bit_AVX5124FMAPS;
+      has_avx512vp2intersect = edx & bit_AVX512VP2INTERSECT;
 
       has_shstk = ecx & bit_SHSTK;
-      has_ibt = edx & bit_IBT;
+      has_pconfig = edx & bit_PCONFIG;
+      has_waitpkg = ecx & bit_WAITPKG;
+
+      __cpuid_count (7, 1, eax, ebx, ecx, edx);
+      has_avx512bf16 = eax & bit_AVX512BF16;
     }
 
   if (max_level >= 13)
@@ -530,6 +552,13 @@ const char *host_detect_local_cpu (int argc, const char **argv)
       has_xsaves = eax & bit_XSAVES;
     }
 
+  if (max_level >= 0x14)
+    {
+      __cpuid_count (0x14, 0, eax, ebx, ecx, edx);
+
+      has_ptwrite = ebx & bit_PTWRITE;
+    }
+
   /* Check cpuid level of extended features.  */
   __cpuid (0x80000000, ext_level, ebx, ecx, edx);
 
@@ -557,6 +586,7 @@ const char *host_detect_local_cpu (int argc, const char **argv)
     {
       __cpuid (0x80000008, eax, ebx, ecx, edx);
       has_clzero = ebx & bit_CLZERO;
+      has_wbnoinvd = ebx & bit_WBNOINVD;
     }
 
   /* Get XCR_XFEATURE_ENABLED_MASK register with xgetbv.  */
@@ -636,6 +666,8 @@ const char *host_detect_local_cpu (int argc, const char **argv)
        processor = PROCESSOR_GEODE;
       else if (has_movbe && family == 22)
        processor = PROCESSOR_BTVER2;
+      else if (has_clwb)
+       processor = PROCESSOR_ZNVER2;
       else if (has_clzero)
        processor = PROCESSOR_ZNVER1;
       else if (has_avx2)
@@ -746,6 +778,15 @@ const char *host_detect_local_cpu (int argc, const char **argv)
          /* Silvermont.  */
          cpu = "silvermont";
          break;
+       case 0x5c:
+       case 0x5f:
+         /* Goldmont.  */
+         cpu = "goldmont";
+         break;
+       case 0x7a:
+         /* Goldmont Plus.  */
+         cpu = "goldmont-plus";
+         break;
        case 0x0f:
          /* Merom.  */
        case 0x17:
@@ -799,8 +840,12 @@ const char *host_detect_local_cpu (int argc, const char **argv)
          cpu = "skylake";
          break;
        case 0x55:
-         /* Skylake with AVX-512.  */
-         cpu = "skylake-avx512";
+         if (has_avx512vnni)
+           /* Cascade Lake.  */
+           cpu = "cascadelake";
+         else
+           /* Skylake with AVX-512.  */
+           cpu = "skylake-avx512";
          break;
        case 0x57:
          /* Knights Landing.  */
@@ -818,33 +863,57 @@ const char *host_detect_local_cpu (int argc, const char **argv)
          if (arch)
            {
              /* This is unknown family 0x6 CPU.  */
-             /* Assume Cannon Lake.  */
-             if (has_avx512vbmi)
-               cpu = "cannonlake";
-             /* Assume Knights Mill.  */
-             else if (has_avx5124vnniw)
-               cpu = "knm";
-             /* Assume Knights Landing.  */
-             else if (has_avx512er)
-               cpu = "knl";
-             /* Assume Skylake with AVX-512.  */
-             else if (has_avx512f)
-               cpu = "skylake-avx512";
-             /* Assume Skylake.  */
-             else if (has_clflushopt)
-               cpu = "skylake";
-             /* Assume Broadwell.  */
-             else if (has_adx)
-               cpu = "broadwell";
-             else if (has_avx2)
+             if (has_avx)
+             {
+               /* Assume Tiger Lake */
+               if (has_avx512vp2intersect)
+                 cpu = "tigerlake";
+               /* Assume Cooper Lake */
+               else if (has_avx512bf16)
+                 cpu = "cooperlake";
+               /* Assume Ice Lake Server.  */
+               else if (has_wbnoinvd)
+                 cpu = "icelake-server";
+               /* Assume Ice Lake.  */
+               else if (has_avx512bitalg)
+                 cpu = "icelake-client";
+               /* Assume Cannon Lake.  */
+               else if (has_avx512vbmi)
+                 cpu = "cannonlake";
+               /* Assume Knights Mill.  */
+               else if (has_avx5124vnniw)
+                 cpu = "knm";
+               /* Assume Knights Landing.  */
+               else if (has_avx512er)
+                 cpu = "knl";
+               /* Assume Skylake with AVX-512.  */
+               else if (has_avx512f)
+                 cpu = "skylake-avx512";
+               /* Assume Skylake.  */
+               else if (has_clflushopt)
+                 cpu = "skylake";
+               /* Assume Broadwell.  */
+               else if (has_adx)
+                 cpu = "broadwell";
+               else if (has_avx2)
                /* Assume Haswell.  */
-               cpu = "haswell";
-             else if (has_avx)
+                 cpu = "haswell";
+               else
                /* Assume Sandy Bridge.  */
-               cpu = "sandybridge";
+                 cpu = "sandybridge";        
+             }
              else if (has_sse4_2)
                {
-                 if (has_movbe)
+                 if (has_gfni)
+                   /* Assume Tremont.  */
+                   cpu = "tremont";
+                 else if (has_sgx)
+                   /* Assume Goldmont Plus.  */
+                   cpu = "goldmont-plus";
+                 else if (has_xsave)
+                   /* Assume Goldmont.  */
+                   cpu = "goldmont";
+                 else if (has_movbe)
                    /* Assume Silvermont.  */
                    cpu = "silvermont";
                  else
@@ -975,6 +1044,9 @@ const char *host_detect_local_cpu (int argc, const char **argv)
     case PROCESSOR_ZNVER1:
       cpu = "znver1";
       break;
+    case PROCESSOR_ZNVER2:
+      cpu = "znver2";
+      break;
     case PROCESSOR_BTVER1:
       cpu = "btver1";
       break;
@@ -1035,6 +1107,8 @@ const char *host_detect_local_cpu (int argc, const char **argv)
       const char *fma4 = has_fma4 ? " -mfma4" : " -mno-fma4";
       const char *xop = has_xop ? " -mxop" : " -mno-xop";
       const char *bmi = has_bmi ? " -mbmi" : " -mno-bmi";
+      const char *pconfig = has_pconfig ? " -mpconfig" : " -mno-pconfig";
+      const char *wbnoinvd = has_wbnoinvd ? " -mwbnoinvd" : " -mno-wbnoinvd";
       const char *sgx = has_sgx ? " -msgx" : " -mno-sgx";
       const char *bmi2 = has_bmi2 ? " -mbmi2" : " -mno-bmi2";
       const char *tbm = has_tbm ? " -mtbm" : " -mno-tbm";
@@ -1077,20 +1151,34 @@ const char *host_detect_local_cpu (int argc, const char **argv)
       const char *pku = has_pku ? " -mpku" : " -mno-pku";
       const char *rdpid = has_rdpid ? " -mrdpid" : " -mno-rdpid";
       const char *gfni = has_gfni ? " -mgfni" : " -mno-gfni";
-      const char *ibt = has_ibt ? " -mibt" : " -mno-ibt";
       const char *shstk = has_shstk ? " -mshstk" : " -mno-shstk";
       const char *vaes = has_vaes ? " -mvaes" : " -mno-vaes";
+      const char *vpclmulqdq = has_vpclmulqdq ? " -mvpclmulqdq" : " -mno-vpclmulqdq";
+      const char *avx512vp2intersect = has_avx512vp2intersect ? " -mavx512vp2intersect" : " -mno-avx512vp2intersect";
+      const char *avx512bitalg = has_avx512bitalg ? " -mavx512bitalg" : " -mno-avx512bitalg";
+      const char *movdiri = has_movdiri ? " -mmovdiri" : " -mno-movdiri";
+      const char *movdir64b = has_movdir64b ? " -mmovdir64b" : " -mno-movdir64b";
+      const char *enqcmd = has_enqcmd ? " -menqcmd" : " -mno-enqcmd";
+      const char *waitpkg = has_waitpkg ? " -mwaitpkg" : " -mno-waitpkg";
+      const char *cldemote = has_cldemote ? " -mcldemote" : " -mno-cldemote";
+      const char *ptwrite = has_ptwrite ? " -mptwrite" : " -mno-ptwrite";
+      const char *avx512bf16 = has_avx512bf16 ? " -mavx512bf16" : " -mno-avx512bf16";
+
       options = concat (options, mmx, mmx3dnow, sse, sse2, sse3, ssse3,
                        sse4a, cx16, sahf, movbe, aes, sha, pclmul,
                        popcnt, abm, lwp, fma, fma4, xop, bmi, sgx, bmi2,
+                       pconfig, wbnoinvd,
                        tbm, avx, avx2, sse4_2, sse4_1, lzcnt, rtm,
                        hle, rdrnd, f16c, fsgsbase, rdseed, prfchw, adx,
                        fxsr, xsave, xsaveopt, avx512f, avx512er,
                        avx512cd, avx512pf, prefetchwt1, clflushopt,
                        xsavec, xsaves, avx512dq, avx512bw, avx512vl,
                        avx512ifma, avx512vbmi, avx5124fmaps, avx5124vnniw,
-                       clwb, mwaitx, clzero, pku, rdpid, gfni, ibt, shstk,
-                       avx512vbmi2, avx512vnni, vaes, NULL);
+                       clwb, mwaitx, clzero, pku, rdpid, gfni, shstk,
+                       avx512vbmi2, avx512vnni, vaes, vpclmulqdq,
+                       avx512bitalg, movdiri, movdir64b, waitpkg, cldemote,
+                       ptwrite, avx512bf16, enqcmd, avx512vp2intersect,
+                       NULL);
     }
 
 done: