00db10
From dfb57bf8871503967f23f9ce4bf17479a19cf8e4 Mon Sep 17 00:00:00 2001
00db10
From: "Ryan S. Arnold" <rsa@linux.vnet.ibm.com>
00db10
Date: Fri, 28 Jun 2013 16:50:48 -0500
00db10
Subject: [PATCH 39/42] Add GLRO(dl_hwcap2) for new AT_HWCAP2 auxv_t a_type.
00db10
 (cherry picked from commit
00db10
 1ae8bfe07c1ab2444cc1d186321ff1431a1b9f96)
00db10
00db10
---
00db10
 elf/dl-support.c                                |  4 ++++
00db10
 elf/dl-sysdep.c                                 | 10 +++++++---
00db10
 misc/getauxval.c                                |  2 ++
00db10
 ports/sysdeps/alpha/dl-procinfo.h               |  2 +-
00db10
 ports/sysdeps/mips/dl-procinfo.h                |  2 +-
00db10
 ports/sysdeps/unix/sysv/linux/arm/dl-procinfo.h |  6 +++++-
00db10
 sysdeps/generic/dl-procinfo.h                   |  2 +-
00db10
 sysdeps/generic/ldsodefs.h                      |  4 ++++
00db10
 sysdeps/i386/dl-procinfo.h                      |  2 +-
00db10
 sysdeps/powerpc/dl-procinfo.h                   |  6 +++++-
00db10
 sysdeps/s390/dl-procinfo.h                      |  2 +-
00db10
 sysdeps/sparc/dl-procinfo.h                     |  6 +++++-
00db10
 sysdeps/unix/sysv/linux/i386/dl-procinfo.h      |  6 +++++-
00db10
 sysdeps/unix/sysv/linux/s390/dl-procinfo.h      |  6 +++++-
00db10
 18 files changed, 89 insertions(+), 13 deletions(-)
00db10
00db10
diff --git glibc-2.17-c758a686/elf/dl-support.c glibc-2.17-c758a686/elf/dl-support.c
00db10
index 81e7172..05f53ee 100644
00db10
--- glibc-2.17-c758a686/elf/dl-support.c
00db10
+++ glibc-2.17-c758a686/elf/dl-support.c
00db10
@@ -129,6 +129,7 @@ ElfW(auxv_t) *_dl_auxv;
00db10
 ElfW(Phdr) *_dl_phdr;
00db10
 size_t _dl_phnum;
00db10
 uint64_t _dl_hwcap __attribute__ ((nocommon));
00db10
+uint64_t _dl_hwcap2 __attribute__ ((nocommon));
00db10
 
00db10
 /* This is not initialized to HWCAP_IMPORTANT, matching the definition
00db10
    of _dl_important_hwcaps, below, where no hwcap strings are ever
00db10
@@ -212,6 +213,9 @@ _dl_aux_init (ElfW(auxv_t) *av)
00db10
       case AT_HWCAP:
00db10
 	GLRO(dl_hwcap) = (unsigned long int) av->a_un.a_val;
00db10
 	break;
00db10
+      case AT_HWCAP2:
00db10
+	GLRO(dl_hwcap2) = (unsigned long int) av->a_un.a_val;
00db10
+	break;
00db10
 #ifdef NEED_DL_SYSINFO
00db10
       case AT_SYSINFO:
00db10
 	GL(dl_sysinfo) = av->a_un.a_val;
00db10
diff --git glibc-2.17-c758a686/elf/dl-sysdep.c glibc-2.17-c758a686/elf/dl-sysdep.c
00db10
index 65a9046..a0d1d04 100644
00db10
--- glibc-2.17-c758a686/elf/dl-sysdep.c
00db10
+++ glibc-2.17-c758a686/elf/dl-sysdep.c
00db10
@@ -156,6 +156,9 @@ _dl_sysdep_start (void **start_argptr,
00db10
       case AT_HWCAP:
00db10
 	GLRO(dl_hwcap) = (unsigned long int) av->a_un.a_val;
00db10
 	break;
00db10
+      case AT_HWCAP2:
00db10
+	GLRO(dl_hwcap2) = (unsigned long int) av->a_un.a_val;
00db10
+	break;
00db10
       case AT_CLKTCK:
00db10
 	GLRO(dl_clktck) = av->a_un.a_val;
00db10
 	break;
00db10
@@ -298,6 +301,7 @@ _dl_show_auxv (void)
00db10
 	  [AT_SYSINFO - 2] =		{ "SYSINFO:      0x", hex },
00db10
 	  [AT_SYSINFO_EHDR - 2] =	{ "SYSINFO_EHDR: 0x", hex },
00db10
 	  [AT_RANDOM - 2] =		{ "RANDOM:       0x", hex },
00db10
+	  [AT_HWCAP2 - 2] =		{ "HWCAP2:       0x", hex },
00db10
 	};
00db10
       unsigned int idx = (unsigned int) (av->a_type - 2);
00db10
 
00db10
@@ -309,10 +313,10 @@ _dl_show_auxv (void)
00db10
       assert (AT_NULL == 0);
00db10
       assert (AT_IGNORE == 1);
00db10
 
00db10
-      if (av->a_type == AT_HWCAP)
00db10
+      if (av->a_type == AT_HWCAP || av->a_type == AT_HWCAP2)
00db10
 	{
00db10
-	  /* This is handled special.  */
00db10
-	  if (_dl_procinfo (av->a_un.a_val) == 0)
00db10
+	  /* These are handled in a special way per platform.  */
00db10
+	  if (_dl_procinfo (av->a_type, av->a_un.a_val) == 0)
00db10
 	    continue;
00db10
 	}
00db10
 
00db10
diff --git glibc-2.17-c758a686/misc/getauxval.c glibc-2.17-c758a686/misc/getauxval.c
00db10
index bff4560..1c1882b 100644
00db10
--- glibc-2.17-c758a686/misc/getauxval.c
00db10
+++ glibc-2.17-c758a686/misc/getauxval.c
00db10
@@ -26,6 +26,8 @@ __getauxval (unsigned long int type)
00db10
 
00db10
   if (type == AT_HWCAP)
00db10
     return GLRO(dl_hwcap);
00db10
+  else if (type == AT_HWCAP2)
00db10
+    return GLRO(dl_hwcap2);
00db10
 
00db10
   for (p = GLRO(dl_auxv); p->a_type != AT_NULL; p++)
00db10
     if (p->a_type == type)
00db10
diff --git glibc-2.17-c758a686/ports/sysdeps/alpha/dl-procinfo.h glibc-2.17-c758a686/ports/sysdeps/alpha/dl-procinfo.h
00db10
index 3db0efb..c3b27b4 100644
00db10
--- glibc-2.17-c758a686/ports/sysdeps/alpha/dl-procinfo.h
00db10
+++ glibc-2.17-c758a686/ports/sysdeps/alpha/dl-procinfo.h
00db10
@@ -51,7 +51,7 @@ _dl_string_platform (const char *str)
00db10
 };
00db10
 
00db10
 /* We cannot provide a general printing function.  */
00db10
-#define _dl_procinfo(word) -1
00db10
+#define _dl_procinfo(type, word) -1
00db10
 
00db10
 /* There are no hardware capabilities defined.  */
00db10
 #define _dl_hwcap_string(idx) ""
00db10
diff --git glibc-2.17-c758a686/ports/sysdeps/mips/dl-procinfo.h glibc-2.17-c758a686/ports/sysdeps/mips/dl-procinfo.h
00db10
index d42aea7..8c9f5c2 100644
00db10
--- glibc-2.17-c758a686/ports/sysdeps/mips/dl-procinfo.h
00db10
+++ glibc-2.17-c758a686/ports/sysdeps/mips/dl-procinfo.h
00db10
@@ -51,7 +51,7 @@ _dl_string_platform (const char *str)
00db10
 };
00db10
 
00db10
 /* We cannot provide a general printing function.  */
00db10
-#define _dl_procinfo(word) -1
00db10
+#define _dl_procinfo(type, word) -1
00db10
 
00db10
 /* There are no hardware capabilities defined.  */
00db10
 #define _dl_hwcap_string(idx) ""
00db10
diff --git glibc-2.17-c758a686/ports/sysdeps/unix/sysv/linux/arm/dl-procinfo.h glibc-2.17-c758a686/ports/sysdeps/unix/sysv/linux/arm/dl-procinfo.h
00db10
index bea7100..c96297b 100644
00db10
--- glibc-2.17-c758a686/ports/sysdeps/unix/sysv/linux/arm/dl-procinfo.h
00db10
+++ glibc-2.17-c758a686/ports/sysdeps/unix/sysv/linux/arm/dl-procinfo.h
00db10
@@ -31,10 +31,14 @@
00db10
 
00db10
 static inline int
00db10
 __attribute__ ((unused))
00db10
-_dl_procinfo (int word)
00db10
+_dl_procinfo (unsigned int type, unsigned long int word)
00db10
 {
00db10
   int i;
00db10
 
00db10
+  /* Fallback to unknown output mechanism.  */
00db10
+  if (type == AT_HWCAP2)
00db10
+    return -1;
00db10
+
00db10
   _dl_printf ("AT_HWCAP:   ");
00db10
 
00db10
   for (i = 0; i < _DL_HWCAP_COUNT; ++i)
00db10
diff --git glibc-2.17-c758a686/sysdeps/generic/dl-procinfo.h glibc-2.17-c758a686/sysdeps/generic/dl-procinfo.h
00db10
index c2bf914..0345717 100644
00db10
--- glibc-2.17-c758a686/sysdeps/generic/dl-procinfo.h
00db10
+++ glibc-2.17-c758a686/sysdeps/generic/dl-procinfo.h
00db10
@@ -21,7 +21,7 @@
00db10
 #define _DL_PROCINFO_H	1
00db10
 
00db10
 /* We cannot provide a general printing function.  */
00db10
-#define _dl_procinfo(word) -1
00db10
+#define _dl_procinfo(type, word) -1
00db10
 
00db10
 /* There are no hardware capabilities defined.  */
00db10
 #define _dl_hwcap_string(idx) ""
00db10
diff --git glibc-2.17-c758a686/sysdeps/generic/ldsodefs.h glibc-2.17-c758a686/sysdeps/generic/ldsodefs.h
00db10
index c667e34..5635d72 100644
00db10
--- glibc-2.17-c758a686/sysdeps/generic/ldsodefs.h
00db10
+++ glibc-2.17-c758a686/sysdeps/generic/ldsodefs.h
00db10
@@ -548,6 +548,10 @@ struct rtld_global_ro
00db10
   EXTERN struct link_map *_dl_sysinfo_map;
00db10
 #endif
00db10
 
00db10
+  /* Mask for more hardware capabilities that are available on some
00db10
+     platforms.  */
00db10
+  EXTERN uint64_t _dl_hwcap2;
00db10
+
00db10
 #ifdef SHARED
00db10
   /* We add a function table to _rtld_global which is then used to
00db10
      call the function instead of going through the PLT.  The result
00db10
diff --git glibc-2.17-c758a686/sysdeps/i386/dl-procinfo.h glibc-2.17-c758a686/sysdeps/i386/dl-procinfo.h
00db10
index 6ecaac2..38e902d 100644
00db10
--- glibc-2.17-c758a686/sysdeps/i386/dl-procinfo.h
00db10
+++ glibc-2.17-c758a686/sysdeps/i386/dl-procinfo.h
00db10
@@ -61,7 +61,7 @@ enum
00db10
 };
00db10
 
00db10
 /* We cannot provide a general printing function.  */
00db10
-#define _dl_procinfo(word) -1
00db10
+#define _dl_procinfo(type, word) -1
00db10
 
00db10
 static inline const char *
00db10
 __attribute__ ((unused))
00db10
diff --git glibc-2.17-c758a686/sysdeps/powerpc/dl-procinfo.h glibc-2.17-c758a686/sysdeps/powerpc/dl-procinfo.h
00db10
index 0939dcf..7732ed2 100644
00db10
--- glibc-2.17-c758a686/sysdeps/powerpc/dl-procinfo.h
00db10
+++ glibc-2.17-c758a686/sysdeps/powerpc/dl-procinfo.h
00db10
@@ -159,8 +159,12 @@ _dl_string_platform (const char *str)
00db10
 #ifdef IS_IN_rtld
00db10
 static inline int
00db10
 __attribute__ ((unused))
00db10
-_dl_procinfo (int word)
00db10
+_dl_procinfo (unsigned int type, unsigned long int word)
00db10
 {
00db10
+  /* Fallback to unknown output mechanism.  */
00db10
+  if (type == AT_HWCAP2)
00db10
+    return -1;
00db10
+
00db10
   _dl_printf ("AT_HWCAP:       ");
00db10
 
00db10
   for (int i = _DL_HWCAP_FIRST; i < _DL_HWCAP_COUNT; ++i)
00db10
diff --git glibc-2.17-c758a686/sysdeps/s390/dl-procinfo.h glibc-2.17-c758a686/sysdeps/s390/dl-procinfo.h
00db10
index 97dcf07..26de043 100644
00db10
--- glibc-2.17-c758a686/sysdeps/s390/dl-procinfo.h
00db10
+++ glibc-2.17-c758a686/sysdeps/s390/dl-procinfo.h
00db10
@@ -56,7 +56,7 @@ enum
00db10
 			  | HWCAP_S390_EIMM | HWCAP_S390_DFP)
00db10
 
00db10
 /* We cannot provide a general printing function.  */
00db10
-#define _dl_procinfo(word) -1
00db10
+#define _dl_procinfo(type, word) -1
00db10
 
00db10
 static inline const char *
00db10
 __attribute__ ((unused))
00db10
diff --git glibc-2.17-c758a686/sysdeps/sparc/dl-procinfo.h glibc-2.17-c758a686/sysdeps/sparc/dl-procinfo.h
00db10
index 6ae8768..a05d458 100644
00db10
--- glibc-2.17-c758a686/sysdeps/sparc/dl-procinfo.h
00db10
+++ glibc-2.17-c758a686/sysdeps/sparc/dl-procinfo.h
00db10
@@ -28,10 +28,14 @@
00db10
 
00db10
 static inline int
00db10
 __attribute__ ((unused))
00db10
-_dl_procinfo (int word)
00db10
+_dl_procinfo (unsigned int type, unsigned long int word)
00db10
 {
00db10
   int i;
00db10
 
00db10
+  /* Fallback to unknown output mechanism.  */
00db10
+  if (type == AT_HWCAP2)
00db10
+    return -1;
00db10
+
00db10
   _dl_printf ("AT_HWCAP:   ");
00db10
 
00db10
   for (i = 0; i < _DL_HWCAP_COUNT; ++i)
00db10
diff --git glibc-2.17-c758a686/sysdeps/unix/sysv/linux/i386/dl-procinfo.h glibc-2.17-c758a686/sysdeps/unix/sysv/linux/i386/dl-procinfo.h
00db10
index 4c61357..23f4501 100644
00db10
--- glibc-2.17-c758a686/sysdeps/unix/sysv/linux/i386/dl-procinfo.h
00db10
+++ glibc-2.17-c758a686/sysdeps/unix/sysv/linux/i386/dl-procinfo.h
00db10
@@ -24,12 +24,16 @@
00db10
 #undef _dl_procinfo
00db10
 static inline int
00db10
 __attribute__ ((unused))
00db10
-_dl_procinfo (int word)
00db10
+_dl_procinfo (unsigned int type, unsigned long int word)
00db10
 {
00db10
   /* This table should match the information from arch/i386/kernel/setup.c
00db10
      in the kernel sources.  */
00db10
   int i;
00db10
 
00db10
+  /* Fallback to unknown output mechanism.  */
00db10
+  if (type == AT_HWCAP2)
00db10
+    return -1;
00db10
+
00db10
   _dl_printf ("AT_HWCAP:   ");
00db10
 
00db10
   for (i = 0; i < _DL_HWCAP_COUNT; ++i)
00db10
diff --git glibc-2.17-c758a686/sysdeps/unix/sysv/linux/s390/dl-procinfo.h glibc-2.17-c758a686/sysdeps/unix/sysv/linux/s390/dl-procinfo.h
00db10
index f36ba55..759738e 100644
00db10
--- glibc-2.17-c758a686/sysdeps/unix/sysv/linux/s390/dl-procinfo.h
00db10
+++ glibc-2.17-c758a686/sysdeps/unix/sysv/linux/s390/dl-procinfo.h
00db10
@@ -24,12 +24,16 @@
00db10
 #undef _dl_procinfo
00db10
 static inline int
00db10
 __attribute__ ((unused))
00db10
-_dl_procinfo (int word)
00db10
+_dl_procinfo (unsigned int type, unsigned long int word)
00db10
 {
00db10
   /* This table should match the information from arch/s390/kernel/setup.c
00db10
      in the kernel sources.  */
00db10
   int i;
00db10
 
00db10
+  /* Fallback to unknown output mechanism.  */
00db10
+  if (type == AT_HWCAP2)
00db10
+    return -1;
00db10
+
00db10
   _dl_printf ("AT_HWCAP:   ");
00db10
 
00db10
   for (i = 0; i < _DL_HWCAP_COUNT; ++i)
00db10
-- 
00db10
1.7.11.7
00db10