]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Add support for AT_HWCAP2.
authorRyan S. Arnold <rsa@linux.vnet.ibm.com>
Fri, 3 May 2013 19:14:40 +0000 (14:14 -0500)
committerRyan S. Arnold <rsa@linux.vnet.ibm.com>
Fri, 3 May 2013 19:14:40 +0000 (14:14 -0500)
20 files changed:
ChangeLog
elf/dl-support.c
elf/dl-sysdep.c
elf/elf.h
misc/getauxval.c
ports/ChangeLog.alpha
ports/ChangeLog.arm
ports/ChangeLog.mips
ports/ChangeLog.powerpc
ports/sysdeps/alpha/dl-procinfo.h
ports/sysdeps/mips/dl-procinfo.h
ports/sysdeps/powerpc/dl-procinfo.h
ports/sysdeps/unix/sysv/linux/arm/dl-procinfo.h
sysdeps/generic/dl-procinfo.h
sysdeps/i386/dl-procinfo.h
sysdeps/powerpc/dl-procinfo.h
sysdeps/s390/dl-procinfo.h
sysdeps/sparc/dl-procinfo.h
sysdeps/unix/sysv/linux/i386/dl-procinfo.h
sysdeps/unix/sysv/linux/s390/dl-procinfo.h

index cd846f94ea6edea41529456bec9daa1044585fca..02904aa62960ef25faae1154162f00dec270fb3c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,20 @@
+2013-05-03  Ryan S. Arnold  <rsa@linux.vnet.ibm.com>
+
+       * elf/dl-support.c (_dl_aux_init): Add support for AT_HWCAP2.
+       * elf/dl-sysdep.c (_dl_sysdep_start, _dl_show_auxv): Likewise.
+       * misc/getauxval.c (__getauxval): Likewise.
+       * sysdeps/powerpc/dl-procinfo.h (_dl_procinfo): Add support for
+       displaying AT_HWCAP2 strings.
+       * elf/elf.h [AT_HWCAP2]: Add a new a_type entry.
+       * sysdeps/s390/dl-procinfo.h (_dl_procinfo): Add 'type' parameter for
+       AT_HWCAP2 support.
+       * sysdeps/i386/dl-procinfo.h: Likewise.
+       * sysdeps/generic/dl-procinfo.h: Likewise.
+       * sysdeps/unix/sysv/linux/s390/dl-procinfo.h: (_dl_procinfo): Add
+       nop support for AT_HWCAP2.
+       * sysdeps/unix/sysv/linux/i386/dl-procinfo.h: Likewise.
+       * sysdeps/sparc/dl-procinfo.h: Likewise.
+
 2013-05-01  Roland McGrath  <roland@hack.frob.com>
 
        * sysdeps/posix/opendir.c: Include <sys/param.h> to get MIN/MAX macros.
index 7a55b82e34042f82660dcb7160a1dc5b047f4ca3..a8cebc24f394a70896586487f4c2e5aa9d5705fd 100644 (file)
@@ -193,6 +193,10 @@ _dl_aux_init (ElfW(auxv_t) *av)
   uid_t uid = 0;
   gid_t gid = 0;
 
+  /* Don't rely on a specific order of AT_HWCAP and AT_HWCAP2.  Collate into a
+     zeroed temp and assign to _dl_hwcap after the auxv has been parsed.  */
+  uint64_t hwcap = 0;
+
   _dl_auxv = av;
   for (; av->a_type != AT_NULL; ++av)
     switch (av->a_type)
@@ -211,8 +215,12 @@ _dl_aux_init (ElfW(auxv_t) *av)
        GL(dl_phnum) = av->a_un.a_val;
        break;
       case AT_HWCAP:
-       GLRO(dl_hwcap) = (unsigned long int) av->a_un.a_val;
+       hwcap |= (unsigned long int) av->a_un.a_val;
+       break;
+      case AT_HWCAP2:
+       hwcap |= ((uint64_t) av->a_un.a_val) << 32;
        break;
+
 #ifdef NEED_DL_SYSINFO
       case AT_SYSINFO:
        GL(dl_sysinfo) = av->a_un.a_val;
@@ -251,6 +259,9 @@ _dl_aux_init (ElfW(auxv_t) *av)
       DL_PLATFORM_AUXV
 # endif
       }
+
+  GLRO(dl_hwcap) = hwcap;
+
   if (seen == 0xf)
     {
       __libc_enable_secure = uid != 0 || gid != 0;
index d8f3dd2fb9f80de26fdc17c3e375bf4ad6917991..832a57b6d6086cea3101d8425da0918249c3875f 100644 (file)
@@ -107,6 +107,10 @@ _dl_sysdep_start (void **start_argptr,
   uintptr_t new_sysinfo = 0;
 #endif
 
+  /* Don't rely on a specific order of AT_HWCAP and AT_HWCAP2.  Collate into a
+     zeroed temp and assign to _dl_hwcap after the auxv has been parsed.  */
+  uint64_t hwcap = 0;
+
   __libc_stack_end = DL_STACK_END (start_argptr);
   DL_FIND_ARG_COMPONENTS (start_argptr, _dl_argc, INTUSE(_dl_argv), _environ,
                          GLRO(dl_auxv));
@@ -154,7 +158,10 @@ _dl_sysdep_start (void **start_argptr,
        GLRO(dl_platform) = (void *) av->a_un.a_val;
        break;
       case AT_HWCAP:
-       GLRO(dl_hwcap) = (unsigned long int) av->a_un.a_val;
+       hwcap |= (unsigned long int) av->a_un.a_val;
+       break;
+      case AT_HWCAP2:
+       hwcap |= ((uint64_t) av->a_un.a_val) << 32;
        break;
       case AT_CLKTCK:
        GLRO(dl_clktck) = av->a_un.a_val;
@@ -180,6 +187,8 @@ _dl_sysdep_start (void **start_argptr,
 #endif
       }
 
+  GLRO(dl_hwcap) = hwcap;
+
 #ifndef HAVE_AUX_SECURE
   if (seen != -1)
     {
@@ -298,6 +307,7 @@ _dl_show_auxv (void)
          [AT_SYSINFO - 2] =            { "SYSINFO:      0x", hex },
          [AT_SYSINFO_EHDR - 2] =       { "SYSINFO_EHDR: 0x", hex },
          [AT_RANDOM - 2] =             { "RANDOM:       0x", hex },
+         [AT_HWCAP2 - 2] =             { "HWCAP2:       ", hex },
        };
       unsigned int idx = (unsigned int) (av->a_type - 2);
 
@@ -309,10 +319,12 @@ _dl_show_auxv (void)
       assert (AT_NULL == 0);
       assert (AT_IGNORE == 1);
 
-      if (av->a_type == AT_HWCAP)
+      if (av->a_type == AT_HWCAP || av->a_type == AT_HWCAP2)
        {
-         /* This is handled special.  */
-         if (_dl_procinfo (av->a_un.a_val) == 0)
+         /* HWCAP bits are translated into representative strings, per
+            platform.  */
+         if (_dl_procinfo (av->a_type, av->a_un.a_val) == 0)
+
            continue;
        }
 
index 4ad4f3999991362e3077a4fd162a9c889d17364b..b473a0ebd547cd4624db40bef0fb0411589345b7 100644 (file)
--- a/elf/elf.h
+++ b/elf/elf.h
@@ -1015,6 +1015,9 @@ typedef struct
 
 #define AT_RANDOM      25              /* Address of 16 random bytes.  */
 
+#define AT_HWCAP2      26              /* Extended machine dependent hints
+                                          about processor capabilities.  */
+
 #define AT_EXECFN      31              /* Filename of executable.  */
 
 /* Pointer to the global system page used for system calls and other
index 4321e3718a8492214ebd9cfa2cfc359b815b293b..0d699229f66a91661c5feba4fa32fe38640b93b4 100644 (file)
@@ -26,6 +26,8 @@ __getauxval (unsigned long int type)
 
   if (type == AT_HWCAP)
     return GLRO(dl_hwcap);
+  else if (type == AT_HWCAP2)
+    return GLRO(dl_hwcap) >> 32;
 
   for (p = GLRO(dl_auxv); p->a_type != AT_NULL; p++)
     if (p->a_type == type)
index 9a77d276abf3d359bb2ddec1725c136317eac912..91ec847e686f65388e0b8308bc9bd3dddc88d74d 100644 (file)
@@ -1,3 +1,8 @@
+2013-05-03  Ryan S. Arnold  <rsa@linux.vnet.ibm.com>
+
+       * sysdeps/alpha/dl-procinfo.h (_dl_procinfo): Add 'type' parameter for
+       AT_HWCAP2 support.
+
 2013-03-06  Andreas Jaeger  <aj@suse.de>
 
        * sysdeps/unix/sysv/linux/alpha/bits/mman.h (MAP_HUGE_MASK)
index 9bd3aad07e459ad6e299fb64e1cbe9d1fafe75e1..fb434866614c22a20a43398dc3f184a1d97e455f 100644 (file)
@@ -1,3 +1,8 @@
+2013-05-03  Ryan S. Arnold  <rsa@linux.vnet.ibm.com>
+
+       * sysdeps/unix/sysv/linux/arm/dl-procinfo.h (_dl_procinfo): Add
+       nop support for AT_HWCAP2.
+
 2013-04-19  Roland McGrath  <roland@hack.frob.com>
 
        * sysdeps/arm/sysdep.h
index b221512655711735d236780036b858772d9822ac..2c96a3d795c0e12e358e2e5db59f49da18b6b045 100644 (file)
@@ -1,3 +1,8 @@
+2013-05-03  Ryan S. Arnold  <rsa@linux.vnet.ibm.com>
+
+       * sysdeps/mips/dl-procinfo.h (_dl_procinfo): Add 'type' parameter for
+       AT_HWCAP2 support.
+
 2013-04-02  Thomas Schwinge  <thomas@codesourcery.com>
 
        * sysdeps/mips/math_private.h: New file.
index 2ba8e3754fd2e8aeb5680da51162fbfbeb4b69e4..c787da6df0bd7663aa8505c6d74a97b06d7a0aa2 100644 (file)
@@ -1,3 +1,8 @@
+2013-05-03  Ryan S. Arnold  <rsa@linux.vnet.ibm.com>
+
+       * sysdeps/powerpc/dl-procinfo.h (_dl_procinfo): Add support for
+       displaying AT_HWCAP2 strings.
+
 2013-02-28  Joseph Myers  <joseph@codesourcery.com>
 
        [BZ #13550]
index 523d9667613b156bd2901c9f1fa82d9a80f32923..0344dbc968f294dcce382519e8588fd9c20e60d3 100644 (file)
@@ -51,7 +51,7 @@ _dl_string_platform (const char *str)
 };
 
 /* We cannot provide a general printing function.  */
-#define _dl_procinfo(word) -1
+#define _dl_procinfo(type, word) -1
 
 /* There are no hardware capabilities defined.  */
 #define _dl_hwcap_string(idx) ""
index 5cc9a44446eb12f0eb504e13f2b16674fb450eb5..e96550c402f5955ec6f2aa9847c11cc2b84e9854 100644 (file)
@@ -51,7 +51,7 @@ _dl_string_platform (const char *str)
 };
 
 /* We cannot provide a general printing function.  */
-#define _dl_procinfo(word) -1
+#define _dl_procinfo(type, word) -1
 
 /* There are no hardware capabilities defined.  */
 #define _dl_hwcap_string(idx) ""
index b45465c3dd3d29f4db287987a68609965ea35b74..a9d98d34eff612766a12722bf44035894c1f063a 100644 (file)
@@ -19,6 +19,7 @@
 #ifndef _DL_PROCINFO_H
 #define _DL_PROCINFO_H 1
 
+#include <stdint.h>
 #include <ldsodefs.h>
 #include <sysdep.h>            /* This defines the PPC_FEATURE_* macros.  */
 
@@ -153,19 +154,40 @@ _dl_string_platform (const char *str)
 }
 
 #ifdef IS_IN_rtld
+
 static inline int
 __attribute__ ((unused))
-_dl_procinfo (int word)
+_dl_procinfo (unsigned int type, int word)
 {
-  _dl_printf ("AT_HWCAP:       ");
+  unsigned int first, count, str_offset;
 
-  for (int i = _DL_HWCAP_FIRST; i < _DL_HWCAP_COUNT; ++i)
+  switch(type)
+    {
+    case AT_HWCAP:
+      _dl_printf ("AT_HWCAP:       ");
+      first = _DL_HWCAP_FIRST;
+      count = MIN(_DL_HWCAP_COUNT,_DL_HWCAP2_FIRST);
+      str_offset = 0;
+      break;
+    case AT_HWCAP2:
+      _dl_printf ("AT_HWCAP2:      ");
+      first = 0;
+      count = _DL_HWCAP_COUNT - _DL_HWCAP2_FIRST;
+      str_offset = _DL_HWCAP2_FIRST;
+      break;
+    default:
+      /* This should not happen.  */
+      return -1;
+    }
+
+  for (int i = first; i < count; ++i)
     if (word & (1 << i))
-      _dl_printf (" %s", _dl_hwcap_string (i));
+      _dl_printf (" %s", _dl_hwcap_string (str_offset + i));
 
   _dl_printf ("\n");
 
   return 0;
+
 }
 #endif
 
index 161e86c796462cce4cc592c3b8039bbf65eb2bfb..1f3a8ceb50f98bb2af2ba256b85e3850546a406e 100644 (file)
 
 static inline int
 __attribute__ ((unused))
-_dl_procinfo (int word)
+_dl_procinfo (unsigned int type, int word)
 {
   int i;
 
+  /* Unused for now.  */
+  if (type == AT_HWCAP2)
+    return 0;
+
   _dl_printf ("AT_HWCAP:   ");
 
   for (i = 0; i < _DL_HWCAP_COUNT; ++i)
index 90c87d942a26975dd390a806cae14db21cfa6f94..a184a5918a34fc741b38b62df0d8af462cc997dd 100644 (file)
@@ -21,7 +21,7 @@
 #define _DL_PROCINFO_H 1
 
 /* We cannot provide a general printing function.  */
-#define _dl_procinfo(word) -1
+#define _dl_procinfo(type, word) -1
 
 /* There are no hardware capabilities defined.  */
 #define _dl_hwcap_string(idx) ""
index 883fa7f0abc8ff6f285de2a2220e3233379cb9f5..233a3257e3a93d493e29b19ad9f53f131a9e3e3c 100644 (file)
@@ -61,7 +61,7 @@ enum
 };
 
 /* We cannot provide a general printing function.  */
-#define _dl_procinfo(word) -1
+#define _dl_procinfo(type, word) -1
 
 static inline const char *
 __attribute__ ((unused))
index 19aa93b185b0f6a665f84b23d0e7fdfdef1f2a9d..ca207325712ace6bc85a791a88f64472fec6daa5 100644 (file)
@@ -22,8 +22,9 @@
 #include <ldsodefs.h>
 #include <sysdep.h>            /* This defines the PPC_FEATURE_* macros.  */
 
-/* There are 25 bits used, but they are bits 7..31.  */
+/* There are 25 bits used in AT_HWCAP, but they are bits 7..31.  */
 #define _DL_HWCAP_FIRST                7
+#define _DL_HWCAP2_FIRST       32
 #define _DL_HWCAP_COUNT                32
 
 /* These bits influence library search.  */
@@ -133,15 +134,35 @@ _dl_string_platform (const char *str)
 }
 
 #ifdef IS_IN_rtld
+
 static inline int
 __attribute__ ((unused))
-_dl_procinfo (int word)
+_dl_procinfo (unsigned int type, int word)
 {
-  _dl_printf ("AT_HWCAP:       ");
+  unsigned int first, count, str_offset;
 
-  for (int i = _DL_HWCAP_FIRST; i < _DL_HWCAP_COUNT; ++i)
+  switch(type)
+    {
+    case AT_HWCAP:
+      _dl_printf ("AT_HWCAP:       ");
+      first = _DL_HWCAP_FIRST;
+      count = MIN(_DL_HWCAP_COUNT,_DL_HWCAP2_FIRST);
+      str_offset = 0;
+      break;
+    case AT_HWCAP2:
+      _dl_printf ("AT_HWCAP2:      ");
+      first = 0;
+      count = _DL_HWCAP_COUNT - _DL_HWCAP2_FIRST;
+      str_offset = _DL_HWCAP2_FIRST;
+      break;
+    default:
+      /* This should not happen.  */
+      return -1;
+    }
+
+  for (int i = first; i < count; ++i)
     if (word & (1 << i))
-      _dl_printf (" %s", _dl_hwcap_string (i));
+      _dl_printf (" %s", _dl_hwcap_string (str_offset + i));
 
   _dl_printf ("\n");
 
index 717f6f9a50807c612e58201a037155af14f3b9bb..45e27f1023d1e9088ea225436a669ed6f411eba1 100644 (file)
@@ -56,7 +56,7 @@ enum
                          | HWCAP_S390_EIMM | HWCAP_S390_DFP)
 
 /* We cannot provide a general printing function.  */
-#define _dl_procinfo(word) -1
+#define _dl_procinfo(type, word) -1
 
 static inline const char *
 __attribute__ ((unused))
index a18b099586f8d9fdf615f17fe11f3adaf9126f89..57a250f7f354e81b40c01d5bfafd266d2fae65f4 100644 (file)
 
 static inline int
 __attribute__ ((unused))
-_dl_procinfo (int word)
+_dl_procinfo (unsigned int type, int word)
 {
   int i;
 
+  /* Unused for now.  */
+  if (type == AT_HWCAP2)
+    return 0;
+
   _dl_printf ("AT_HWCAP:   ");
 
   for (i = 0; i < _DL_HWCAP_COUNT; ++i)
index a82f8f5b8d45c8d2e17de86cad5c1e5c796c270d..745b556f24e1eaee85117d74ef4f4006122fab1f 100644 (file)
 #undef _dl_procinfo
 static inline int
 __attribute__ ((unused))
-_dl_procinfo (int word)
+_dl_procinfo (unsigned int type, int word)
 {
   /* This table should match the information from arch/i386/kernel/setup.c
      in the kernel sources.  */
   int i;
 
+  /* Unused for now.  */
+  if (type == AT_HWCAP2)
+    return 0;
+
   _dl_printf ("AT_HWCAP:   ");
 
   for (i = 0; i < _DL_HWCAP_COUNT; ++i)
index 5ca4b76ca72527cf57412b8acdf8fac7f1e31840..9e9e3dc4f11fc8c21e3822831df45b4d859e074a 100644 (file)
 #undef _dl_procinfo
 static inline int
 __attribute__ ((unused))
-_dl_procinfo (int word)
+_dl_procinfo (unsigned int type, int word)
 {
   /* This table should match the information from arch/s390/kernel/setup.c
      in the kernel sources.  */
   int i;
 
+  /* Unused for now.  */
+  if (type == AT_HWCAP2)
+    return 0;
+
   _dl_printf ("AT_HWCAP:   ");
 
   for (i = 0; i < _DL_HWCAP_COUNT; ++i)