This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch master updated. glibc-2.22-656-gd2de9ef


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  d2de9ef7ad35341fd6f098f7e84a1128f2027d0c (commit)
      from  48025aa9ed3b9a5f5f3b1310eec79b66fb645c17 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=d2de9ef7ad35341fd6f098f7e84a1128f2027d0c

commit d2de9ef7ad35341fd6f098f7e84a1128f2027d0c
Author: Carlos Eduardo Seo <cseo@linux.vnet.ibm.com>
Date:   Tue Jan 5 15:13:18 2016 -0200

    powerpc: Add hwcap2 bits for POWER9.
    
    Added hwcap2 bit masks for Power ISA 3.0 and VSX IEEE binary float 128-bit
    features.

diff --git a/ChangeLog b/ChangeLog
index 56298db..df4d15a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2016-01-08  Carlos Eduardo Seo  <cseo@linux.vnet.ibm.com>
+
+	* sysdeps/powerpc/bits/hwcap.h: Add PPC_FEATURE2_ARCH_3_00 and
+	PPC_FEATURE2_HAS_IEEE128.
+	* sysdeps/powerpc/dl-procinfo.c:
+	(_dl_powerpc_cap_flags): Add corresponding names to new capabilities.
+
 2016-01-08  John David Anglin  <danglin@gcc.gnu.org>
 
 	[BZ #19415]
diff --git a/sysdeps/powerpc/bits/hwcap.h b/sysdeps/powerpc/bits/hwcap.h
index e05c308..40572d0 100644
--- a/sysdeps/powerpc/bits/hwcap.h
+++ b/sysdeps/powerpc/bits/hwcap.h
@@ -66,3 +66,6 @@
 						    instruction.  */
 #define PPC_FEATURE2_HTM_NOSC	   0x01000000 /* Kernel aborts transaction
 						 when a syscall is made.  */
+#define PPC_FEATURE2_ARCH_3_00	   0x00800000 /* ISA 3.0 */
+#define PPC_FEATURE2_HAS_IEEE128   0x00400000 /* VSX IEEE Binary Float
+						 128-bit */
diff --git a/sysdeps/powerpc/dl-procinfo.c b/sysdeps/powerpc/dl-procinfo.c
index 66d01ab..6e7850e 100644
--- a/sysdeps/powerpc/dl-procinfo.c
+++ b/sysdeps/powerpc/dl-procinfo.c
@@ -61,7 +61,7 @@ PROCINFO_CLASS const char _dl_powerpc_cap_flags[60][10]
     "", "", "", "",
     "", "", "", "",
     "", "", "", "",
-    "", "", "", "",
+    "", "", "ieee128", "arch_3_00",
     "htm-nosc", "vcrypto", "tar", "isel",
     "ebb", "dscr", "htm", "arch_2_07",
   }

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog                     |    7 +++++++
 sysdeps/powerpc/bits/hwcap.h  |    3 +++
 sysdeps/powerpc/dl-procinfo.c |    2 +-
 3 files changed, 11 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]