aboutsummaryrefslogtreecommitdiff
path: root/binutils/readelf.c
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@airs.com>1999-09-04 17:40:18 +0000
committerIan Lance Taylor <ian@airs.com>1999-09-04 17:40:18 +0000
commit7d466069821491f2983d51eda9d4c62461483884 (patch)
tree933dc9f2ecbca0ec7bf138b76612d75e55801f10 /binutils/readelf.c
parent6a0aef968beba5ff9fd88a97da445f931bb11044 (diff)
downloadfsf-binutils-gdb-7d466069821491f2983d51eda9d4c62461483884.zip
fsf-binutils-gdb-7d466069821491f2983d51eda9d4c62461483884.tar.gz
fsf-binutils-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.
Diffstat (limited to 'binutils/readelf.c')
-rw-r--r--binutils/readelf.c15
1 files changed, 14 insertions, 1 deletions
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;
}
}