]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
gprofng: Use __x86_64__ instead of __x86_64
authorAndrew Pinski <quic_apinski@quicinc.com>
Fri, 30 May 2025 18:37:09 +0000 (11:37 -0700)
committerAndrew Pinski <quic_apinski@quicinc.com>
Fri, 30 May 2025 21:57:23 +0000 (14:57 -0700)
With some compilers, only __x86_64__ is defined so use that
instead of __x86_64.

gprofng/ChangeLog
2025-05-30  Andrew Pinski  <quic_apinski@quicinc.com>
* common/core_pcbe.c: s/__x86_64/__x86_64__/.
* common/cpu_frequency.h: Likewise.
* common/cpuid.c: Likewise.
* common/gp-defs.h: Likewise.
* common/hwctable.c: Likewise.
* libcollector/libcol-i386-dis.c: Likewise.
* libcollector/libcol_util.h: Likewise.

Signed-off-by: Andrew Pinski <quic_apinski@quicinc.com>
gprofng/common/core_pcbe.c
gprofng/common/cpu_frequency.h
gprofng/common/cpuid.c
gprofng/common/gp-defs.h
gprofng/common/hwctable.c
gprofng/libcollector/libcol-i386-dis.c
gprofng/libcollector/libcol_util.h

index 107a99416020abb0aa3134c626547100921b9d75..14080abbba8d19c9f6ab2388d1dca2e3b2fec434 100644 (file)
@@ -2759,7 +2759,7 @@ core_pcbe_init (void)
       return -1;
     }
 
-#if defined(__i386__) || defined(__x86_64)
+#if defined(__i386__) || defined(__x86_64__)
   /* No Architectural Performance Monitoring Leaf returned by CPUID */
   if (get_cpuid_info ()->cpi_maxeax < 0xa)
     return (-1);
@@ -2918,7 +2918,7 @@ core_pcbe_cpuref (void)
 {
 #if defined(__aarch64__) || defined(__riscv)
   return "";
-#elif defined(__i386__) || defined(__x86_64)
+#elif defined(__i386__) || defined(__x86_64__)
   switch (cpuid_getmodel ())
     {
     case 60: /* Haswell */
index 2371863307c3ccb10355efe95adc5ed47f999e63..c6979c45e1f03cf8afe26ebf78143b37ff011aca 100644 (file)
@@ -41,7 +41,7 @@ extern "C"
 #define COL_CPUFREQ_SCALING     0x0001
 #define COL_CPUFREQ_TURBO       0x0002
 
-#if defined(__i386__) || defined(__x86_64)
+#if defined(__i386__) || defined(__x86_64__)
   // XXXX This is a rough table to estimate frequency increment due to intel turbo boost.
   // CPU with different stepping and different core number have different turbo increment.
   //  It is used internally here, and is not implemented on SPARC
@@ -129,7 +129,7 @@ extern "C"
       {
        char temp[1024];
        int cpu = -1;
-#if defined(__i386__) || defined(__x86_64)
+#if defined(__i386__) || defined(__x86_64__)
        int model = -1;
        int family = -1;
 #endif
@@ -140,7 +140,7 @@ extern "C"
                char *val = strchr (temp, ':');
                cpu = val ? atoi (val + 1) : -1;
              }
-#if defined(__i386__) || defined(__x86_64)
+#if defined(__i386__) || defined(__x86_64__)
            else if (strncmp (temp, "model", strlen ("model")) == 0
                     && strstr (temp, "name") == 0)
              {
@@ -241,7 +241,7 @@ extern "C"
                                                          frequency_scaling = 1;
                                                        if (tmpmhz > 1000)
                                                          {
-#if defined(__i386__) || defined(__x86_64)
+#if defined(__i386__) || defined(__x86_64__)
                                                            if (family == 6)
                                                              {
                                                                // test turbo mode
index 9e45233a4124d276f09af6045aaf3db3efc4b534..e40404c645a5f97e62cc37d8f964879f05da3ea9 100644 (file)
@@ -18,7 +18,7 @@
    Foundation, 51 Franklin Street - Fifth Floor, Boston,
    MA 02110-1301, USA.  */
 
-#if defined(__i386__) || defined(__x86_64)
+#if defined(__i386__) || defined(__x86_64__)
 #include <cpuid.h>  /* GCC-provided */
 #elif defined(__aarch64__)
 #if !defined(ATTRIBUTE_UNUSED)
@@ -91,7 +91,7 @@ typedef struct
 } cpuid_info_t;
 
 
-#if defined(__i386__) || defined(__x86_64)
+#if defined(__i386__) || defined(__x86_64__)
 static uint_t
 cpuid_vendorstr_to_vendorcode (char *vendorstr)
 {
@@ -151,7 +151,7 @@ get_cpuid_info ()
   Tprintf (DBG_LT0, "cpuid.c:%d read_cpuid_id() MIDR_EL1==0x%016x cpi_vendor=%d cpi_model=%d\n",
           __LINE__, (unsigned int) reg, cpi->cpi_vendor, cpi->cpi_model);
 
-#elif defined(__i386__) || defined(__x86_64)
+#elif defined(__i386__) || defined(__x86_64__)
   cpuid_regs_t regs;
   my_cpuid (0, &regs);
   cpi->cpi_maxeax = regs.eax;
index d6c94457fb9cf77dfdbd193f5c8d020f216fe984..4b5d6fa334f69a432fc4c5ca4962f7a3cb03f919 100644 (file)
@@ -42,7 +42,7 @@
 
 #if defined(sparc) || defined(__sparcv9)
 #define ARCH_SPARC          1
-#elif defined(__i386__) || defined(__x86_64)
+#elif defined(__i386__) || defined(__x86_64__)
 #define ARCH_Intel          1
 #elif defined(__aarch64__)
 #define ARCH_Aarch64        1
@@ -52,7 +52,7 @@
 #error "Undefined platform"
 #endif
 
-#if defined(__sparcv9) || defined(__x86_64) || defined(__aarch64__) || defined(__riscv)
+#if defined(__sparcv9) || defined(__x86_64__) || defined(__aarch64__) || defined(__riscv)
 #define WSIZE_64            1
 #else
 #define WSIZE_32            1
index 4b6f2a9e574d8e82d4d59cbb08329bed19fa175b..1ce365a59040cfcdcef9b7032567f4464885dcc3 100644 (file)
@@ -243,7 +243,7 @@ static Hwcentry papi_generic_list[] = {
   {NULL, NULL, 0, NULL, 0, 0, 0, 0, ABST_NONE}
 };
 
-#if defined(__i386__) || defined(__x86_64)
+#if defined(__i386__) || defined(__x86_64__)
 /* Kernel profiling pseudo-chip, OBSOLETE (To support 12.3 and earlier, TBR) */
 static Hwcentry kproflist[] = {
   {"kcycles", "kcycles", 0, STXT ("KCPU Cycles"), PRELOADS_5, 1, ABST_NONE},
@@ -1216,7 +1216,7 @@ static Hwcentry amd_15h[] = {
   {"insts1", "EX_retired_instr_w_excp_intr", 1, NULL, PRELOADS_8, 0, ABST_NONE},
   {NULL, NULL, 0, NULL, 0, 0, 0, 0, ABST_NONE}
 };
-#endif  /* __i386__ or __x86_64 */
+#endif  /* __i386__ or __x86_64__ */
 
 #define INIT_HWC(nm, mtr, cfg, ty) .name = (nm), .metric = (mtr), \
     .config = (cfg), .type = ty, .use_perf_event_type = 1, \
@@ -1303,7 +1303,7 @@ static Hwcentry   generic_list[] = {
   {NULL, NULL, 0, NULL, 0, 0, 0, 0, ABST_NONE}
 };
 
-#if defined(__i386__) || defined(__x86_64)
+#if defined(__i386__) || defined(__x86_64__)
  #include "hwc_amd_zen3.h"
  #include "hwc_amd_zen4.h"
  #include "hwc_intel_icelake.h"
@@ -1332,7 +1332,7 @@ typedef struct
  *  If the string is not formatted that way, -h hi and -h lo will fail
  */
 static cpu_list_t cputabs[] = {
-#if defined(__i386__) || defined(__x86_64)
+#if defined(__i386__) || defined(__x86_64__)
   {CPC_PENTIUM_PRO_MMX, pentiumIIlist, {"insts", 0}},
   {CPC_PENTIUM_PRO, pentiumIIIlist, {"insts", 0}},
   {CPC_PENTIUM_4, pentium4, {"insts", 0}},
index 81ca3667c50a6c64b96d964a870dc1fdf994f4b7..15c91f7ac5d1240f91578e8f5bc0e86322d943d2 100644 (file)
@@ -18,7 +18,7 @@
    Foundation, 51 Franklin Street - Fifth Floor, Boston,
    MA 02110-1301, USA.  */
 
-#if defined(__i386__) || defined(__x86_64)
+#if defined(__i386__) || defined(__x86_64__)
 #include "opcodes/i386-dis.c"
 
 #undef _
index afe75f8199a311b947296d8fd918d74b41f4511b..08e34a180a93200338d4a0a40188223739c4e7af 100644 (file)
@@ -183,7 +183,7 @@ static __attribute__ ((always_inline)) inline void *
 __collector_getpc ()
 {
   void *r;
-#if defined(__x86_64)
+#if defined(__x86_64__)
   __asm__ __volatile__("lea (%%rip), %0" : "=r" (r));
 #else
   __asm__ __volatile__("call  1f \n"