From 355b81d94960ef44b9773b9fe2b6646af2ddd5a2 Mon Sep 17 00:00:00 2001 From: Ulrich Weigand Date: Tue, 6 Dec 2011 14:09:12 +0000 Subject: [PATCH] include/elf/ChangeLog: * common.h (NT_S390_LAST_BREAK): Define. (NT_S390_SYSTEM_CALL): Likewise. bfd/ChangeLog: * elf-bfd.h (elfcore_write_s390_last_break): Add prototype. (elfcore_write_s390_system_call): Likewise. * elf.c (elfcore_write_s390_last_break): New function. (elfcore_write_s390_system_call): Likewise. (elfcore_write_register_note): Call them. (elfcore_grok_s390_last_break): New function. (elfcore_grok_s390_system_call): Likewise. (elfcore_grok_note): Call them. --- bfd/ChangeLog | 11 +++++++++ bfd/elf-bfd.h | 4 ++++ bfd/elf.c | 56 +++++++++++++++++++++++++++++++++++++++++++ include/elf/ChangeLog | 5 ++++ include/elf/common.h | 4 ++++ 5 files changed, 80 insertions(+) diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 2f7f59a4f98..00b09af82e0 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,14 @@ +2011-12-06 Ulrich Weigand + + * elf-bfd.h (elfcore_write_s390_last_break): Add prototype. + (elfcore_write_s390_system_call): Likewise. + * elf.c (elfcore_write_s390_last_break): New function. + (elfcore_write_s390_system_call): Likewise. + (elfcore_write_register_note): Call them. + (elfcore_grok_s390_last_break): New function. + (elfcore_grok_s390_system_call): Likewise. + (elfcore_grok_note): Call them. + 2011-12-05 Tristan Gingold * mach-o.c (bfd_mach_o_read_symtab_symbol): Accept indirect symbols. diff --git a/bfd/elf-bfd.h b/bfd/elf-bfd.h index d6e2ab29ce4..486b76eecf1 100644 --- a/bfd/elf-bfd.h +++ b/bfd/elf-bfd.h @@ -2237,6 +2237,10 @@ extern char *elfcore_write_s390_ctrs (bfd *, char *, int *, const void *, int); extern char *elfcore_write_s390_prefix (bfd *, char *, int *, const void *, int); +extern char *elfcore_write_s390_last_break + (bfd *, char *, int *, const void *, int); +extern char *elfcore_write_s390_system_call + (bfd *, char *, int *, const void *, int); extern char *elfcore_write_arm_vfp (bfd *, char *, int *, const void *, int); extern char *elfcore_write_lwpstatus diff --git a/bfd/elf.c b/bfd/elf.c index dc6a9bb7213..f1e4882530d 100644 --- a/bfd/elf.c +++ b/bfd/elf.c @@ -7982,6 +7982,18 @@ elfcore_grok_s390_prefix (bfd *abfd, Elf_Internal_Note *note) return elfcore_make_note_pseudosection (abfd, ".reg-s390-prefix", note); } +static bfd_boolean +elfcore_grok_s390_last_break (bfd *abfd, Elf_Internal_Note *note) +{ + return elfcore_make_note_pseudosection (abfd, ".reg-s390-last-break", note); +} + +static bfd_boolean +elfcore_grok_s390_system_call (bfd *abfd, Elf_Internal_Note *note) +{ + return elfcore_make_note_pseudosection (abfd, ".reg-s390-system-call", note); +} + static bfd_boolean elfcore_grok_arm_vfp (bfd *abfd, Elf_Internal_Note *note) { @@ -8407,6 +8419,20 @@ elfcore_grok_note (bfd *abfd, Elf_Internal_Note *note) else return TRUE; + case NT_S390_LAST_BREAK: + if (note->namesz == 6 + && strcmp (note->namedata, "LINUX") == 0) + return elfcore_grok_s390_last_break (abfd, note); + else + return TRUE; + + case NT_S390_SYSTEM_CALL: + if (note->namesz == 6 + && strcmp (note->namedata, "LINUX") == 0) + return elfcore_grok_s390_system_call (abfd, note); + else + return TRUE; + case NT_ARM_VFP: if (note->namesz == 6 && strcmp (note->namedata, "LINUX") == 0) @@ -9167,6 +9193,32 @@ elfcore_write_s390_prefix (bfd *abfd, note_name, NT_S390_PREFIX, s390_prefix, size); } +char * +elfcore_write_s390_last_break (bfd *abfd, + char *buf, + int *bufsiz, + const void *s390_last_break, + int size) +{ + char *note_name = "LINUX"; + return elfcore_write_note (abfd, buf, bufsiz, + note_name, NT_S390_LAST_BREAK, + s390_last_break, size); +} + +char * +elfcore_write_s390_system_call (bfd *abfd, + char *buf, + int *bufsiz, + const void *s390_system_call, + int size) +{ + char *note_name = "LINUX"; + return elfcore_write_note (abfd, buf, bufsiz, + note_name, NT_S390_SYSTEM_CALL, + s390_system_call, size); +} + char * elfcore_write_arm_vfp (bfd *abfd, char *buf, @@ -9209,6 +9261,10 @@ elfcore_write_register_note (bfd *abfd, return elfcore_write_s390_ctrs (abfd, buf, bufsiz, data, size); if (strcmp (section, ".reg-s390-prefix") == 0) return elfcore_write_s390_prefix (abfd, buf, bufsiz, data, size); + if (strcmp (section, ".reg-s390-last-break") == 0) + return elfcore_write_s390_last_break (abfd, buf, bufsiz, data, size); + if (strcmp (section, ".reg-s390-system-call") == 0) + return elfcore_write_s390_system_call (abfd, buf, bufsiz, data, size); if (strcmp (section, ".reg-arm-vfp") == 0) return elfcore_write_arm_vfp (abfd, buf, bufsiz, data, size); return NULL; diff --git a/include/elf/ChangeLog b/include/elf/ChangeLog index c0d38b38e12..4da18207db3 100644 --- a/include/elf/ChangeLog +++ b/include/elf/ChangeLog @@ -1,3 +1,8 @@ +2011-12-06 Ulrich Weigand + + * common.h (NT_S390_LAST_BREAK): Define. + (NT_S390_SYSTEM_CALL): Likewise. + 2011-11-01 DJ Delorie * common.h (EM_RL78, EM_78K0R): New. diff --git a/include/elf/common.h b/include/elf/common.h index 4f20569ec02..5cddc0bef30 100644 --- a/include/elf/common.h +++ b/include/elf/common.h @@ -543,6 +543,10 @@ /* note name must be "LINUX". */ #define NT_S390_PREFIX 0x305 /* S390 prefix register */ /* note name must be "LINUX". */ +#define NT_S390_LAST_BREAK 0x306 /* S390 breaking event address */ + /* note name must be "LINUX". */ +#define NT_S390_SYSTEM_CALL 0x307 /* S390 system call restart data */ + /* note name must be "LINUX". */ #define NT_ARM_VFP 0x400 /* ARM VFP registers */ /* note name must be "LINUX". */ -- 2.39.5