diff options
author | Doug Evans <dje@google.com> | 1998-01-28 18:42:55 +0000 |
---|---|---|
committer | Doug Evans <dje@google.com> | 1998-01-28 18:42:55 +0000 |
commit | 36df40e0bfd939c01dd47e977853a7e67ce65976 (patch) | |
tree | e9e3a34bdf52d7c58f8860d89a6b274694a8068b /bfd/archures.c | |
parent | e6e3d4bdf4c9d28848bb19e51d4a949a8b12087c (diff) | |
download | gdb-36df40e0bfd939c01dd47e977853a7e67ce65976.zip gdb-36df40e0bfd939c01dd47e977853a7e67ce65976.tar.gz gdb-36df40e0bfd939c01dd47e977853a7e67ce65976.tar.bz2 |
* config.bfd, configure.in: Add dvp support.
* configure: Regenerate.
* aclocal.m4: Regenerate.
* archures.c, reloc.c, cpu-mips.c: Add dvp support.
* bfd-in2.h, libbfd.h, libcoff.h: Regenerate.
plus delete old txvu stuff, dvp generates mips files now
Diffstat (limited to 'bfd/archures.c')
-rw-r--r-- | bfd/archures.c | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/bfd/archures.c b/bfd/archures.c index f508cfd..95ed1c4 100644 --- a/bfd/archures.c +++ b/bfd/archures.c @@ -1,5 +1,5 @@ /* BFD library support routines for architectures. - Copyright (C) 1990, 91, 92, 93, 94, 95, 96, 1997 Free Software Foundation, Inc. + Copyright (C) 1990, 91-97, 1998 Free Software Foundation, Inc. Hacked by John Gilmore and Steve Chamberlain of Cygnus Support. This file is part of BFD, the Binary File Descriptor library. @@ -102,6 +102,7 @@ DESCRIPTION .{* Nonzero if MACH has the v9 instruction set. *} .#define bfd_mach_sparc_v9_p(mach) \ . ((mach) >= bfd_mach_sparc_v8plus && (mach) <= bfd_mach_sparc_v9a) +. bfd_arch_mips, {* MIPS Rxxxx *} . {* start-sanitize-tx19 *} .#define bfd_mach_mips1900 1900 . {* end-sanitize-tx19 *} @@ -128,7 +129,14 @@ DESCRIPTION .#define bfd_mach_mips8000 8000 .#define bfd_mach_mips10000 10000 .#define bfd_mach_mips16 16 -. bfd_arch_mips, {* MIPS Rxxxx *} +. {* start-sanitize-sky *} +. {* The DVP is a machine within the mips architecture. *} +.#define bfd_mach_dvp_dma 42000 +.#define bfd_mach_dvp_pke 42001 +.#define bfd_mach_dvp_vu 42002 +.#define bfd_mach_dvp_gpuif 42003 +.#define bfd_mach_dvp_p(mach) ((mach) >= 42000 && (mach) <= 42003) +. {* end-sanitize-sky *} . bfd_arch_i386, {* Intel 386 *} .#define bfd_mach_i386_i386 0 .#define bfd_mach_i386_i8086 1 @@ -175,10 +183,6 @@ DESCRIPTION . {* start-sanitize-tic80 *} . bfd_arch_tic80, {* TI TMS320c80 (MVP) *} . {* end-sanitize-tic80 *} -. {* start-sanitize-sky *} -. bfd_arch_txvu, {* TX VU *} -.#define bfd_mach_txvu 0 -. {* end-sanitize-sky *} . bfd_arch_v850, {* NEC V850 *} .#define bfd_mach_v850 0 . {* start-sanitize-v850e *} |