diff options
author | Ian Lance Taylor <ian@airs.com> | 1999-09-04 17:40:18 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1999-09-04 17:40:18 +0000 |
commit | 7d466069821491f2983d51eda9d4c62461483884 (patch) | |
tree | 933dc9f2ecbca0ec7bf138b76612d75e55801f10 | |
parent | 6a0aef968beba5ff9fd88a97da445f931bb11044 (diff) | |
download | gdb-7d466069821491f2983d51eda9d4c62461483884.zip gdb-7d466069821491f2983d51eda9d4c62461483884.tar.gz gdb-7d466069821491f2983d51eda9d4c62461483884.tar.bz2 |
1999-09-04 Steve Chamberlain <sac@pobox.com>
* readelf.c: Include "elf/pj.h".
(dump_relocations): Handle EM_PJ.
(get_machine_name): Likewise.
(get_machine_flags): Likewise.
-rw-r--r-- | binutils/ChangeLog | 7 | ||||
-rw-r--r-- | binutils/readelf.c | 15 |
2 files changed, 21 insertions, 1 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 1c3c94d..97f1806 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,10 @@ +1999-09-04 Steve Chamberlain <sac@pobox.com> + + * readelf.c: Include "elf/pj.h". + (dump_relocations): Handle EM_PJ. + (get_machine_name): Likewise. + (get_machine_flags): Likewise. + 1999-08-31 Scott Bambrough <scottb@netwinder.org> * readelf.c (get_note_type): New function: Decode the e_type diff --git a/binutils/readelf.c b/binutils/readelf.c index ef33ea2..9a85549 100644 --- a/binutils/readelf.c +++ b/binutils/readelf.c @@ -67,6 +67,7 @@ #include "elf/fr30.h" #include "elf/mcore.h" #include "elf/i960.h" +#include "elf/pj.h" #include "bucomm.h" #include "getopt.h" @@ -740,6 +741,10 @@ dump_relocations (file, rel_offset, rel_size, symtab, nsyms, strtab, is_rela) case EM_PARISC: rtype = elf_hppa_reloc_type (type); break; + + case EM_PJ: + rtype = elf_pj_reloc_type (type); + break; } if (rtype == NULL) @@ -1032,7 +1037,7 @@ get_machine_name (e_machine) case EM_CYGNUS_MN10300: return "mn10300"; case EM_CYGNUS_MN10200: return "mn10200"; case EM_CYGNUS_FR30: return "Fujitsu FR30"; - + case EM_PJ: return "picoJava"; default: sprintf (buff, _("<unknown>: %x"), e_machine); return buff; @@ -1146,6 +1151,14 @@ get_machine_flags (e_flags, e_machine) if ((e_flags & EF_SPARCV9_MM) == EF_SPARCV9_RMO) strcat (buf, ", rmo"); break; + + case EM_PJ: + if ((e_flags & EF_PICOJAVA_NEWCALLS) == EF_PICOJAVA_NEWCALLS) + strcat (buf, ", new calling convention"); + + if ((e_flags & EF_PICOJAVA_GNUCALLS) == EF_PICOJAVA_GNUCALLS) + strcat (buf, ", gnu calling convention"); + break; } } |