Blame SOURCES/gdb-rhbz1187581-power8-regs-not-in-8.2-02of15.patch

7cb06c
From FEDORA_PATCHES Mon Sep 17 00:00:00 2001
7cb06c
From: Keith Seitz <keiths@redhat.com>
7cb06c
Date: Fri, 11 Jan 2019 17:02:12 -0500
7cb06c
Subject: gdb-rhbz1187581-power8-regs-not-in-8.2-02of15.patch
7cb06c
7cb06c
;; Add grok/write functions for new ppc core note sections
7cb06c
;; Edjunior Barbosa Machado, RH BZ 1187581
7cb06c
7cb06c
Add grok/write functions for new ppc core note sections
7cb06c
7cb06c
This patch adds functions for grokking and writing more register core
7cb06c
note sections (NT_PPC_TAR, NT_PPC_PPR, NT_PPC_DSCR, NT_PPC_EBB,
7cb06c
NT_PPC_PMU, NT_PPC_TM_CGPR, NT_PPC_TM_CFPR, NT_PPC_TM_CVMX,
7cb06c
NT_PPC_TM_CVSX, NT_PPC_TM_SPR, NT_PPC_TM_CTAR, NT_PPC_TM_CPPR,
7cb06c
NT_PPC_TM_CDSCR).
7cb06c
7cb06c
2018-07-16  Edjunior Barbosa Machado  <emachado@linux.vnet.ibm.com>
7cb06c
7cb06c
bfd/
7cb06c
    * elf-bfd.h (elfcore_write_ppc_tar): Add prototype.
7cb06c
    (elfcore_write_ppc_ppr): Likewise.
7cb06c
    (elfcore_write_ppc_dscr): Likewise.
7cb06c
    (elfcore_write_ppc_ebb): Likewise.
7cb06c
    (elfcore_write_ppc_pmu): Likewise.
7cb06c
    (elfcore_write_ppc_tm_cgpr): Likewise.
7cb06c
    (elfcore_write_ppc_tm_cfpr): Likewise.
7cb06c
    (elfcore_write_ppc_tm_cvmx): Likewise.
7cb06c
    (elfcore_write_ppc_tm_cvsx): Likewise.
7cb06c
    (elfcore_write_ppc_tm_spr): Likewise.
7cb06c
    (elfcore_write_ppc_tm_ctar): Likewise.
7cb06c
    (elfcore_write_ppc_tm_cppr): Likewise.
7cb06c
    (elfcore_write_ppc_tm_cdscr): Likewise.
7cb06c
    * elf.c (elfcore_write_ppc_tar): New function.
7cb06c
    (elfcore_write_ppc_ppr): Likewise.
7cb06c
    (elfcore_write_ppc_dscr): Likewise.
7cb06c
    (elfcore_write_ppc_ebb): Likewise.
7cb06c
    (elfcore_write_ppc_pmu): Likewise.
7cb06c
    (elfcore_write_ppc_tm_cgpr): Likewise.
7cb06c
    (elfcore_write_ppc_tm_cfpr): Likewise.
7cb06c
    (elfcore_write_ppc_tm_cvmx): Likewise.
7cb06c
    (elfcore_write_ppc_tm_cvsx): Likewise.
7cb06c
    (elfcore_write_ppc_tm_spr): Likewise.
7cb06c
    (elfcore_write_ppc_tm_ctar): Likewise.
7cb06c
    (elfcore_write_ppc_tm_cppr): Likewise.
7cb06c
    (elfcore_write_ppc_tm_cdscr): Likewise.
7cb06c
    (elfcore_write_register_note): Call them.
7cb06c
    (elfcore_grok_ppc_tar): New function.
7cb06c
    (elfcore_grok_ppc_ppr): Likewise.
7cb06c
    (elfcore_grok_ppc_dscr): Likewise.
7cb06c
    (elfcore_grok_ppc_ebb): Likewise.
7cb06c
    (elfcore_grok_ppc_pmu): Likewise.
7cb06c
    (elfcore_grok_ppc_tm_cgpr): Likewise.
7cb06c
    (elfcore_grok_ppc_tm_cfpr): Likewise.
7cb06c
    (elfcore_grok_ppc_tm_cvmx): Likewise.
7cb06c
    (elfcore_grok_ppc_tm_cvsx): Likewise.
7cb06c
    (elfcore_grok_ppc_tm_spr): Likewise.
7cb06c
    (elfcore_grok_ppc_tm_ctar): Likewise.
7cb06c
    (elfcore_grok_ppc_tm_cppr): Likewise.
7cb06c
    (elfcore_grok_ppc_tm_cdscr): Likewise.
7cb06c
    (elfcore_grok_note): Call them.
7cb06c
7cb06c
diff --git a/bfd/elf-bfd.h b/bfd/elf-bfd.h
7cb06c
--- a/bfd/elf-bfd.h
7cb06c
+++ b/bfd/elf-bfd.h
7cb06c
@@ -2569,6 +2569,32 @@ extern char *elfcore_write_ppc_vmx
7cb06c
   (bfd *, char *, int *, const void *, int);
7cb06c
 extern char *elfcore_write_ppc_vsx
7cb06c
   (bfd *, char *, int *, const void *, int);
7cb06c
+extern char *elfcore_write_ppc_tar
7cb06c
+  (bfd *, char *, int *, const void *, int);
7cb06c
+extern char *elfcore_write_ppc_ppr
7cb06c
+  (bfd *, char *, int *, const void *, int);
7cb06c
+extern char *elfcore_write_ppc_dscr
7cb06c
+  (bfd *, char *, int *, const void *, int);
7cb06c
+extern char *elfcore_write_ppc_ebb
7cb06c
+  (bfd *, char *, int *, const void *, int);
7cb06c
+extern char *elfcore_write_ppc_pmu
7cb06c
+  (bfd *, char *, int *, const void *, int);
7cb06c
+extern char *elfcore_write_ppc_tm_cgpr
7cb06c
+  (bfd *, char *, int *, const void *, int);
7cb06c
+extern char *elfcore_write_ppc_tm_cfpr
7cb06c
+  (bfd *, char *, int *, const void *, int);
7cb06c
+extern char *elfcore_write_ppc_tm_cvmx
7cb06c
+  (bfd *, char *, int *, const void *, int);
7cb06c
+extern char *elfcore_write_ppc_tm_cvsx
7cb06c
+  (bfd *, char *, int *, const void *, int);
7cb06c
+extern char *elfcore_write_ppc_tm_spr
7cb06c
+  (bfd *, char *, int *, const void *, int);
7cb06c
+extern char *elfcore_write_ppc_tm_ctar
7cb06c
+  (bfd *, char *, int *, const void *, int);
7cb06c
+extern char *elfcore_write_ppc_tm_cppr
7cb06c
+  (bfd *, char *, int *, const void *, int);
7cb06c
+extern char *elfcore_write_ppc_tm_cdscr
7cb06c
+  (bfd *, char *, int *, const void *, int);
7cb06c
 extern char *elfcore_write_s390_timer
7cb06c
   (bfd *, char *, int *, const void *, int);
7cb06c
 extern char *elfcore_write_s390_todcmp
7cb06c
diff --git a/bfd/elf.c b/bfd/elf.c
7cb06c
--- a/bfd/elf.c
7cb06c
+++ b/bfd/elf.c
7cb06c
@@ -9238,6 +9238,84 @@ elfcore_grok_ppc_vsx (bfd *abfd, Elf_Internal_Note *note)
7cb06c
   return elfcore_make_note_pseudosection (abfd, ".reg-ppc-vsx", note);
7cb06c
 }
7cb06c
 
7cb06c
+static bfd_boolean
7cb06c
+elfcore_grok_ppc_tar (bfd *abfd, Elf_Internal_Note *note)
7cb06c
+{
7cb06c
+  return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tar", note);
7cb06c
+}
7cb06c
+
7cb06c
+static bfd_boolean
7cb06c
+elfcore_grok_ppc_ppr (bfd *abfd, Elf_Internal_Note *note)
7cb06c
+{
7cb06c
+  return elfcore_make_note_pseudosection (abfd, ".reg-ppc-ppr", note);
7cb06c
+}
7cb06c
+
7cb06c
+static bfd_boolean
7cb06c
+elfcore_grok_ppc_dscr (bfd *abfd, Elf_Internal_Note *note)
7cb06c
+{
7cb06c
+  return elfcore_make_note_pseudosection (abfd, ".reg-ppc-dscr", note);
7cb06c
+}
7cb06c
+
7cb06c
+static bfd_boolean
7cb06c
+elfcore_grok_ppc_ebb (bfd *abfd, Elf_Internal_Note *note)
7cb06c
+{
7cb06c
+  return elfcore_make_note_pseudosection (abfd, ".reg-ppc-ebb", note);
7cb06c
+}
7cb06c
+
7cb06c
+static bfd_boolean
7cb06c
+elfcore_grok_ppc_pmu (bfd *abfd, Elf_Internal_Note *note)
7cb06c
+{
7cb06c
+  return elfcore_make_note_pseudosection (abfd, ".reg-ppc-pmu", note);
7cb06c
+}
7cb06c
+
7cb06c
+static bfd_boolean
7cb06c
+elfcore_grok_ppc_tm_cgpr (bfd *abfd, Elf_Internal_Note *note)
7cb06c
+{
7cb06c
+  return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tm-cgpr", note);
7cb06c
+}
7cb06c
+
7cb06c
+static bfd_boolean
7cb06c
+elfcore_grok_ppc_tm_cfpr (bfd *abfd, Elf_Internal_Note *note)
7cb06c
+{
7cb06c
+  return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tm-cfpr", note);
7cb06c
+}
7cb06c
+
7cb06c
+static bfd_boolean
7cb06c
+elfcore_grok_ppc_tm_cvmx (bfd *abfd, Elf_Internal_Note *note)
7cb06c
+{
7cb06c
+  return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tm-cvmx", note);
7cb06c
+}
7cb06c
+
7cb06c
+static bfd_boolean
7cb06c
+elfcore_grok_ppc_tm_cvsx (bfd *abfd, Elf_Internal_Note *note)
7cb06c
+{
7cb06c
+  return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tm-cvsx", note);
7cb06c
+}
7cb06c
+
7cb06c
+static bfd_boolean
7cb06c
+elfcore_grok_ppc_tm_spr (bfd *abfd, Elf_Internal_Note *note)
7cb06c
+{
7cb06c
+  return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tm-spr", note);
7cb06c
+}
7cb06c
+
7cb06c
+static bfd_boolean
7cb06c
+elfcore_grok_ppc_tm_ctar (bfd *abfd, Elf_Internal_Note *note)
7cb06c
+{
7cb06c
+  return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tm-ctar", note);
7cb06c
+}
7cb06c
+
7cb06c
+static bfd_boolean
7cb06c
+elfcore_grok_ppc_tm_cppr (bfd *abfd, Elf_Internal_Note *note)
7cb06c
+{
7cb06c
+  return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tm-cppr", note);
7cb06c
+}
7cb06c
+
7cb06c
+static bfd_boolean
7cb06c
+elfcore_grok_ppc_tm_cdscr (bfd *abfd, Elf_Internal_Note *note)
7cb06c
+{
7cb06c
+  return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tm-cdscr", note);
7cb06c
+}
7cb06c
+
7cb06c
 static bfd_boolean
7cb06c
 elfcore_grok_s390_high_gprs (bfd *abfd, Elf_Internal_Note *note)
7cb06c
 {
7cb06c
@@ -9723,6 +9801,97 @@ elfcore_grok_note (bfd *abfd, Elf_Internal_Note *note)
7cb06c
       else
7cb06c
 	return TRUE;
7cb06c
 
7cb06c
+    case NT_PPC_TAR:
7cb06c
+      if (note->namesz == 6
7cb06c
+          && strcmp (note->namedata, "LINUX") == 0)
7cb06c
+        return elfcore_grok_ppc_tar (abfd, note);
7cb06c
+      else
7cb06c
+        return TRUE;
7cb06c
+
7cb06c
+    case NT_PPC_PPR:
7cb06c
+      if (note->namesz == 6
7cb06c
+          && strcmp (note->namedata, "LINUX") == 0)
7cb06c
+        return elfcore_grok_ppc_ppr (abfd, note);
7cb06c
+      else
7cb06c
+        return TRUE;
7cb06c
+
7cb06c
+    case NT_PPC_DSCR:
7cb06c
+      if (note->namesz == 6
7cb06c
+          && strcmp (note->namedata, "LINUX") == 0)
7cb06c
+        return elfcore_grok_ppc_dscr (abfd, note);
7cb06c
+      else
7cb06c
+        return TRUE;
7cb06c
+
7cb06c
+    case NT_PPC_EBB:
7cb06c
+      if (note->namesz == 6
7cb06c
+          && strcmp (note->namedata, "LINUX") == 0)
7cb06c
+        return elfcore_grok_ppc_ebb (abfd, note);
7cb06c
+      else
7cb06c
+        return TRUE;
7cb06c
+
7cb06c
+    case NT_PPC_PMU:
7cb06c
+      if (note->namesz == 6
7cb06c
+          && strcmp (note->namedata, "LINUX") == 0)
7cb06c
+        return elfcore_grok_ppc_pmu (abfd, note);
7cb06c
+      else
7cb06c
+        return TRUE;
7cb06c
+
7cb06c
+    case NT_PPC_TM_CGPR:
7cb06c
+      if (note->namesz == 6
7cb06c
+          && strcmp (note->namedata, "LINUX") == 0)
7cb06c
+        return elfcore_grok_ppc_tm_cgpr (abfd, note);
7cb06c
+      else
7cb06c
+        return TRUE;
7cb06c
+
7cb06c
+    case NT_PPC_TM_CFPR:
7cb06c
+      if (note->namesz == 6
7cb06c
+          && strcmp (note->namedata, "LINUX") == 0)
7cb06c
+        return elfcore_grok_ppc_tm_cfpr (abfd, note);
7cb06c
+      else
7cb06c
+        return TRUE;
7cb06c
+
7cb06c
+    case NT_PPC_TM_CVMX:
7cb06c
+      if (note->namesz == 6
7cb06c
+          && strcmp (note->namedata, "LINUX") == 0)
7cb06c
+        return elfcore_grok_ppc_tm_cvmx (abfd, note);
7cb06c
+      else
7cb06c
+        return TRUE;
7cb06c
+
7cb06c
+    case NT_PPC_TM_CVSX:
7cb06c
+      if (note->namesz == 6
7cb06c
+          && strcmp (note->namedata, "LINUX") == 0)
7cb06c
+        return elfcore_grok_ppc_tm_cvsx (abfd, note);
7cb06c
+      else
7cb06c
+        return TRUE;
7cb06c
+
7cb06c
+    case NT_PPC_TM_SPR:
7cb06c
+      if (note->namesz == 6
7cb06c
+          && strcmp (note->namedata, "LINUX") == 0)
7cb06c
+        return elfcore_grok_ppc_tm_spr (abfd, note);
7cb06c
+      else
7cb06c
+        return TRUE;
7cb06c
+
7cb06c
+    case NT_PPC_TM_CTAR:
7cb06c
+      if (note->namesz == 6
7cb06c
+          && strcmp (note->namedata, "LINUX") == 0)
7cb06c
+        return elfcore_grok_ppc_tm_ctar (abfd, note);
7cb06c
+      else
7cb06c
+        return TRUE;
7cb06c
+
7cb06c
+    case NT_PPC_TM_CPPR:
7cb06c
+      if (note->namesz == 6
7cb06c
+          && strcmp (note->namedata, "LINUX") == 0)
7cb06c
+        return elfcore_grok_ppc_tm_cppr (abfd, note);
7cb06c
+      else
7cb06c
+        return TRUE;
7cb06c
+
7cb06c
+    case NT_PPC_TM_CDSCR:
7cb06c
+      if (note->namesz == 6
7cb06c
+          && strcmp (note->namedata, "LINUX") == 0)
7cb06c
+        return elfcore_grok_ppc_tm_cdscr (abfd, note);
7cb06c
+      else
7cb06c
+        return TRUE;
7cb06c
+
7cb06c
     case NT_S390_HIGH_GPRS:
7cb06c
       if (note->namesz == 6
7cb06c
 	  && strcmp (note->namedata, "LINUX") == 0)
7cb06c
@@ -10830,6 +10999,162 @@ elfcore_write_ppc_vsx (bfd *abfd,
7cb06c
 			     note_name, NT_PPC_VSX, ppc_vsx, size);
7cb06c
 }
7cb06c
 
7cb06c
+char *
7cb06c
+elfcore_write_ppc_tar (bfd *abfd,
7cb06c
+                       char *buf,
7cb06c
+                       int *bufsiz,
7cb06c
+                       const void *ppc_tar,
7cb06c
+                       int size)
7cb06c
+{
7cb06c
+  char *note_name = "LINUX";
7cb06c
+  return elfcore_write_note (abfd, buf, bufsiz,
7cb06c
+                             note_name, NT_PPC_TAR, ppc_tar, size);
7cb06c
+}
7cb06c
+
7cb06c
+char *
7cb06c
+elfcore_write_ppc_ppr (bfd *abfd,
7cb06c
+                       char *buf,
7cb06c
+                       int *bufsiz,
7cb06c
+                       const void *ppc_ppr,
7cb06c
+                       int size)
7cb06c
+{
7cb06c
+  char *note_name = "LINUX";
7cb06c
+  return elfcore_write_note (abfd, buf, bufsiz,
7cb06c
+                             note_name, NT_PPC_PPR, ppc_ppr, size);
7cb06c
+}
7cb06c
+
7cb06c
+char *
7cb06c
+elfcore_write_ppc_dscr (bfd *abfd,
7cb06c
+                        char *buf,
7cb06c
+                        int *bufsiz,
7cb06c
+                        const void *ppc_dscr,
7cb06c
+                        int size)
7cb06c
+{
7cb06c
+  char *note_name = "LINUX";
7cb06c
+  return elfcore_write_note (abfd, buf, bufsiz,
7cb06c
+                             note_name, NT_PPC_DSCR, ppc_dscr, size);
7cb06c
+}
7cb06c
+
7cb06c
+char *
7cb06c
+elfcore_write_ppc_ebb (bfd *abfd,
7cb06c
+                       char *buf,
7cb06c
+                       int *bufsiz,
7cb06c
+                       const void *ppc_ebb,
7cb06c
+                       int size)
7cb06c
+{
7cb06c
+  char *note_name = "LINUX";
7cb06c
+  return elfcore_write_note (abfd, buf, bufsiz,
7cb06c
+                             note_name, NT_PPC_EBB, ppc_ebb, size);
7cb06c
+}
7cb06c
+
7cb06c
+char *
7cb06c
+elfcore_write_ppc_pmu (bfd *abfd,
7cb06c
+                       char *buf,
7cb06c
+                       int *bufsiz,
7cb06c
+                       const void *ppc_pmu,
7cb06c
+                       int size)
7cb06c
+{
7cb06c
+  char *note_name = "LINUX";
7cb06c
+  return elfcore_write_note (abfd, buf, bufsiz,
7cb06c
+                             note_name, NT_PPC_PMU, ppc_pmu, size);
7cb06c
+}
7cb06c
+
7cb06c
+char *
7cb06c
+elfcore_write_ppc_tm_cgpr (bfd *abfd,
7cb06c
+                           char *buf,
7cb06c
+                           int *bufsiz,
7cb06c
+                           const void *ppc_tm_cgpr,
7cb06c
+                           int size)
7cb06c
+{
7cb06c
+  char *note_name = "LINUX";
7cb06c
+  return elfcore_write_note (abfd, buf, bufsiz,
7cb06c
+                             note_name, NT_PPC_TM_CGPR, ppc_tm_cgpr, size);
7cb06c
+}
7cb06c
+
7cb06c
+char *
7cb06c
+elfcore_write_ppc_tm_cfpr (bfd *abfd,
7cb06c
+                           char *buf,
7cb06c
+                           int *bufsiz,
7cb06c
+                           const void *ppc_tm_cfpr,
7cb06c
+                           int size)
7cb06c
+{
7cb06c
+  char *note_name = "LINUX";
7cb06c
+  return elfcore_write_note (abfd, buf, bufsiz,
7cb06c
+                             note_name, NT_PPC_TM_CFPR, ppc_tm_cfpr, size);
7cb06c
+}
7cb06c
+
7cb06c
+char *
7cb06c
+elfcore_write_ppc_tm_cvmx (bfd *abfd,
7cb06c
+                           char *buf,
7cb06c
+                           int *bufsiz,
7cb06c
+                           const void *ppc_tm_cvmx,
7cb06c
+                           int size)
7cb06c
+{
7cb06c
+  char *note_name = "LINUX";
7cb06c
+  return elfcore_write_note (abfd, buf, bufsiz,
7cb06c
+                             note_name, NT_PPC_TM_CVMX, ppc_tm_cvmx, size);
7cb06c
+}
7cb06c
+
7cb06c
+char *
7cb06c
+elfcore_write_ppc_tm_cvsx (bfd *abfd,
7cb06c
+                           char *buf,
7cb06c
+                           int *bufsiz,
7cb06c
+                           const void *ppc_tm_cvsx,
7cb06c
+                           int size)
7cb06c
+{
7cb06c
+  char *note_name = "LINUX";
7cb06c
+  return elfcore_write_note (abfd, buf, bufsiz,
7cb06c
+                             note_name, NT_PPC_TM_CVSX, ppc_tm_cvsx, size);
7cb06c
+}
7cb06c
+
7cb06c
+char *
7cb06c
+elfcore_write_ppc_tm_spr (bfd *abfd,
7cb06c
+                          char *buf,
7cb06c
+                          int *bufsiz,
7cb06c
+                          const void *ppc_tm_spr,
7cb06c
+                          int size)
7cb06c
+{
7cb06c
+  char *note_name = "LINUX";
7cb06c
+  return elfcore_write_note (abfd, buf, bufsiz,
7cb06c
+                             note_name, NT_PPC_TM_SPR, ppc_tm_spr, size);
7cb06c
+}
7cb06c
+
7cb06c
+char *
7cb06c
+elfcore_write_ppc_tm_ctar (bfd *abfd,
7cb06c
+                           char *buf,
7cb06c
+                           int *bufsiz,
7cb06c
+                           const void *ppc_tm_ctar,
7cb06c
+                           int size)
7cb06c
+{
7cb06c
+  char *note_name = "LINUX";
7cb06c
+  return elfcore_write_note (abfd, buf, bufsiz,
7cb06c
+                             note_name, NT_PPC_TM_CTAR, ppc_tm_ctar, size);
7cb06c
+}
7cb06c
+
7cb06c
+char *
7cb06c
+elfcore_write_ppc_tm_cppr (bfd *abfd,
7cb06c
+                           char *buf,
7cb06c
+                           int *bufsiz,
7cb06c
+                           const void *ppc_tm_cppr,
7cb06c
+                           int size)
7cb06c
+{
7cb06c
+  char *note_name = "LINUX";
7cb06c
+  return elfcore_write_note (abfd, buf, bufsiz,
7cb06c
+                             note_name, NT_PPC_TM_CPPR, ppc_tm_cppr, size);
7cb06c
+}
7cb06c
+
7cb06c
+char *
7cb06c
+elfcore_write_ppc_tm_cdscr (bfd *abfd,
7cb06c
+                            char *buf,
7cb06c
+                            int *bufsiz,
7cb06c
+                            const void *ppc_tm_cdscr,
7cb06c
+                            int size)
7cb06c
+{
7cb06c
+  char *note_name = "LINUX";
7cb06c
+  return elfcore_write_note (abfd, buf, bufsiz,
7cb06c
+                             note_name, NT_PPC_TM_CDSCR, ppc_tm_cdscr, size);
7cb06c
+}
7cb06c
+
7cb06c
 static char *
7cb06c
 elfcore_write_s390_high_gprs (bfd *abfd,
7cb06c
 			      char *buf,
7cb06c
@@ -11070,6 +11395,32 @@ elfcore_write_register_note (bfd *abfd,
7cb06c
     return elfcore_write_ppc_vmx (abfd, buf, bufsiz, data, size);
7cb06c
   if (strcmp (section, ".reg-ppc-vsx") == 0)
7cb06c
     return elfcore_write_ppc_vsx (abfd, buf, bufsiz, data, size);
7cb06c
+  if (strcmp (section, ".reg-ppc-tar") == 0)
7cb06c
+    return elfcore_write_ppc_tar (abfd, buf, bufsiz, data, size);
7cb06c
+  if (strcmp (section, ".reg-ppc-ppr") == 0)
7cb06c
+    return elfcore_write_ppc_ppr (abfd, buf, bufsiz, data, size);
7cb06c
+  if (strcmp (section, ".reg-ppc-dscr") == 0)
7cb06c
+    return elfcore_write_ppc_dscr (abfd, buf, bufsiz, data, size);
7cb06c
+  if (strcmp (section, ".reg-ppc-ebb") == 0)
7cb06c
+    return elfcore_write_ppc_ebb (abfd, buf, bufsiz, data, size);
7cb06c
+  if (strcmp (section, ".reg-ppc-pmu") == 0)
7cb06c
+    return elfcore_write_ppc_pmu (abfd, buf, bufsiz, data, size);
7cb06c
+  if (strcmp (section, ".reg-ppc-tm-cgpr") == 0)
7cb06c
+    return elfcore_write_ppc_tm_cgpr (abfd, buf, bufsiz, data, size);
7cb06c
+  if (strcmp (section, ".reg-ppc-tm-cfpr") == 0)
7cb06c
+    return elfcore_write_ppc_tm_cfpr (abfd, buf, bufsiz, data, size);
7cb06c
+  if (strcmp (section, ".reg-ppc-tm-cvmx") == 0)
7cb06c
+    return elfcore_write_ppc_tm_cvmx (abfd, buf, bufsiz, data, size);
7cb06c
+  if (strcmp (section, ".reg-ppc-tm-cvsx") == 0)
7cb06c
+    return elfcore_write_ppc_tm_cvsx (abfd, buf, bufsiz, data, size);
7cb06c
+  if (strcmp (section, ".reg-ppc-tm-spr") == 0)
7cb06c
+    return elfcore_write_ppc_tm_spr (abfd, buf, bufsiz, data, size);
7cb06c
+  if (strcmp (section, ".reg-ppc-tm-ctar") == 0)
7cb06c
+    return elfcore_write_ppc_tm_ctar (abfd, buf, bufsiz, data, size);
7cb06c
+  if (strcmp (section, ".reg-ppc-tm-cppr") == 0)
7cb06c
+    return elfcore_write_ppc_tm_cppr (abfd, buf, bufsiz, data, size);
7cb06c
+  if (strcmp (section, ".reg-ppc-tm-cdscr") == 0)
7cb06c
+    return elfcore_write_ppc_tm_cdscr (abfd, buf, bufsiz, data, size);
7cb06c
   if (strcmp (section, ".reg-s390-high-gprs") == 0)
7cb06c
     return elfcore_write_s390_high_gprs (abfd, buf, bufsiz, data, size);
7cb06c
   if (strcmp (section, ".reg-s390-timer") == 0)