Rename r16 files to rce, and fix some more .Sanitize typos.

This commit is contained in:
Michael Tiemann 1994-11-25 00:01:26 +00:00
parent 5fa6096860
commit 03c4ce2fcc
20 changed files with 128 additions and 88 deletions

View file

@ -207,24 +207,24 @@ else
done done
fi fi
r16_files = "config.sub" rce_files="config.sub"
if ( echo $* | grep keep\-r16 > /dev/null ) ; then if ( echo $* | grep keep\-rce > /dev/null ) ; then
for i in $r16_files ; do for i in $rce_files ; do
if test ! -d $i && (grep sanitize-r16 $i > /dev/null) ; then if test ! -d $i && (grep sanitize-rce $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then if [ -n "${verbose}" ] ; then
echo Keeping r16 stuff in $i echo Keeping rce stuff in $i
fi fi
fi fi
done done
else else
for i in $r16_files ; do for i in $rce_files ; do
if test ! -d $i && (grep sanitize-r16 $i > /dev/null) ; then if test ! -d $i && (grep sanitize-rce $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then if [ -n "${verbose}" ] ; then
echo Removing traces of \"r16\" from $i... echo Removing traces of \"rce\" from $i...
fi fi
cp $i new cp $i new
sed '/start\-sanitize\-r16/,/end-\sanitize\-r16/d' < $i > new sed '/start\-sanitize\-rce/,/end-\sanitize\-rce/d' < $i > new
if [ -n "${safe}" -a ! -f .Recover/$i ] ; then if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
if [ -n "${verbose}" ] ; then if [ -n "${verbose}" ] ; then
echo Caching $i in .Recover... echo Caching $i in .Recover...

View file

@ -23,12 +23,12 @@ else
lose_these_too="${mpw_files} ${lose_these_too}" lose_these_too="${mpw_files} ${lose_these_too}"
fi fi
r16_files="cpu-r16.c aout-r16.c" rce_files="cpu-rce.c aout-rce.c"
if ( echo $* | grep keep\-r16 > /dev/null ) ; then if ( echo $* | grep keep\-rce > /dev/null ) ; then
keep_these_too="${r16_files} ${keep_these_too}" keep_these_too="${rce_files} ${keep_these_too}"
else else
lose_these_too="${r16_files} ${lose_these_too}" lose_these_too="${rce_files} ${lose_these_too}"
fi fi
# All files listed between the "Things-to-keep:" line and the # All files listed between the "Things-to-keep:" line and the
@ -263,23 +263,23 @@ else
done done
fi fi
r16_files = "ChangeLog archures.c config.bfd configure.in targets.c" rce_files="ChangeLog archures.c config.bfd configure.in targets.c"
if ( echo $* | grep keep\-r16 > /dev/null ) ; then if ( echo $* | grep keep\-rce > /dev/null ) ; then
for i in $r16_files ; do for i in $rce_files ; do
if test ! -d $i && (grep sanitize-r16 $i > /dev/null) ; then if test ! -d $i && (grep sanitize-rce $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then if [ -n "${verbose}" ] ; then
echo Keeping r16 stuff in $i echo Keeping rce stuff in $i
fi fi
fi fi
done done
else else
for i in $r16_files ; do for i in $rce_files ; do
if test ! -d $i && (grep sanitize-r16 $i > /dev/null) ; then if test ! -d $i && (grep sanitize-rce $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then if [ -n "${verbose}" ] ; then
echo Removing traces of \"r16\" from $i... echo Removing traces of \"rce\" from $i...
fi fi
cp $i new cp $i new
sed '/start\-sanitize\-r16/,/end-\sanitize\-r16/d' < $i > new sed '/start\-sanitize\-rce/,/end-\sanitize\-rce/d' < $i > new
if [ -n "${safe}" -a ! -f .Recover/$i ] ; then if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
if [ -n "${verbose}" ] ; then if [ -n "${verbose}" ] ; then
echo Caching $i in .Recover... echo Caching $i in .Recover...

View file

@ -435,9 +435,9 @@ extern void bfd_mips_arch PARAMS ((void));
extern void bfd_powerpc_arch PARAMS ((void)); extern void bfd_powerpc_arch PARAMS ((void));
extern void bfd_rs6000_arch PARAMS ((void)); extern void bfd_rs6000_arch PARAMS ((void));
extern void bfd_sh_arch PARAMS ((void)); extern void bfd_sh_arch PARAMS ((void));
/* start-sanitize-r16 */ /* start-sanitize-rce */
extern void bfd_r16_arch PARAMS ((void)); extern void bfd_rce_arch PARAMS ((void));
/* end-sanitize-r16 */ /* end-sanitize-rce */
extern void bfd_sparc_arch PARAMS ((void)); extern void bfd_sparc_arch PARAMS ((void));
extern void bfd_vax_arch PARAMS ((void)); extern void bfd_vax_arch PARAMS ((void));
extern void bfd_we32k_arch PARAMS ((void)); extern void bfd_we32k_arch PARAMS ((void));
@ -463,9 +463,9 @@ static void (*archures_init_table[]) PARAMS ((void)) =
bfd_powerpc_arch, bfd_powerpc_arch,
bfd_rs6000_arch, bfd_rs6000_arch,
bfd_sh_arch, bfd_sh_arch,
/* start-sanitize-r16 */ /* start-sanitize-rce */
bfd_r16_arch, bfd_rce_arch,
/* end-sanitize-r16 */ /* end-sanitize-rce */
bfd_sparc_arch, bfd_sparc_arch,
bfd_vax_arch, bfd_vax_arch,
bfd_we32k_arch, bfd_we32k_arch,

View file

@ -34,9 +34,9 @@ case "${canon}" in
h8300*-*-*) bfd_name=h8300-coff strip_underscore=yes ;; h8300*-*-*) bfd_name=h8300-coff strip_underscore=yes ;;
h8500-*-*) bfd_name=h8500-coff strip_underscore=yes ;; h8500-*-*) bfd_name=h8500-coff strip_underscore=yes ;;
sh-*-*) bfd_name=sh-coff strip_underscore=yes ;; sh-*-*) bfd_name=sh-coff strip_underscore=yes ;;
# start-sanitize-r16 # start-sanitize-rce
r16-*-aout) bfd_name=r16-aout ;; rce-*-aout) bfd_name=rce-aout ;;
# end-sanitize-r16 # end-sanitize-rce
hppa*-*-*elf*) bfd_name=hppa-elf ;; hppa*-*-*elf*) bfd_name=hppa-elf ;;
hppa*-*-bsd*) bfd_name=hppabsd ;; hppa*-*-bsd*) bfd_name=hppabsd ;;
hppa*-*-hpux*) bfd_name=hppahpux ;; hppa*-*-hpux*) bfd_name=hppahpux ;;

View file

@ -202,9 +202,9 @@ do
pc532machaout_vec) tb="$tb pc532-mach.o aout-ns32k.o stab-syms.o" ;; pc532machaout_vec) tb="$tb pc532-mach.o aout-ns32k.o stab-syms.o" ;;
rs6000coff_vec) tb="$tb coff-rs6000.o" ;; rs6000coff_vec) tb="$tb coff-rs6000.o" ;;
shcoff_vec) tb="$tb coff-sh.o cofflink.o" ;; shcoff_vec) tb="$tb coff-sh.o cofflink.o" ;;
# start-sanitize-r16 # start-sanitize-rce
r16_aout_vec) tb="$tb aout32.o reloc16.o" ;; rce_aout_vec) tb="$tb aout32.o reloc16.o" ;;
# end-sanitize-r16 # end-sanitize-rce
shlcoff_vec) tb="$tb coff-sh.o cofflink.o" ;; shlcoff_vec) tb="$tb coff-sh.o cofflink.o" ;;
som_vec) tb="$tb som.o" ;; som_vec) tb="$tb som.o" ;;
sparclynx_aout_vec) tb="$tb sparclynx.o lynx-core.o aout32.o stab-syms.o" ;; sparclynx_aout_vec) tb="$tb sparclynx.o lynx-core.o aout32.o stab-syms.o" ;;

View file

@ -56,7 +56,7 @@ static bfd_arch_info_type arch_info_struct[] =
32, /* 32 bits in a word */ 32, /* 32 bits in a word */
32, /* 32 bits in an address */ 32, /* 32 bits in an address */
8, /* 8 bits in a byte */ 8, /* 8 bits in a byte */
bfd_arch_r16, bfd_arch_rce,
0, /* only 1 machine */ 0, /* only 1 machine */
"SOP", /* arch_name */ "SOP", /* arch_name */
"SOP", /* printable name */ "SOP", /* printable name */

View file

@ -486,9 +486,9 @@ extern const bfd_target pc532machaout_vec;
extern const bfd_target riscix_vec; extern const bfd_target riscix_vec;
extern const bfd_target rs6000coff_vec; extern const bfd_target rs6000coff_vec;
extern const bfd_target shcoff_vec; extern const bfd_target shcoff_vec;
/* start-sanitize-r16 */ /* start-sanitize-rce */
extern bfd_target r16_aout_vec; extern bfd_target rce_aout_vec;
/* end-sanitize-r16 */ /* end-sanitize-rce */
extern const bfd_target shlcoff_vec; extern const bfd_target shlcoff_vec;
extern const bfd_target sparclynx_aout_vec; extern const bfd_target sparclynx_aout_vec;
extern const bfd_target sparclynx_coff_vec; extern const bfd_target sparclynx_coff_vec;
@ -640,9 +640,9 @@ const bfd_target * const bfd_target_vector[] = {
&rs6000coff_vec, &rs6000coff_vec,
&shcoff_vec, &shcoff_vec,
&shlcoff_vec, &shlcoff_vec,
/* start-sanitize-r16 */ /* start-sanitize-rce */
&r16_aout_vec, &rce_aout_vec,
/* end-sanitize-r16 */ /* end-sanitize-rce */
&sparclynx_aout_vec, &sparclynx_aout_vec,
&sparclynx_coff_vec, &sparclynx_coff_vec,
&sparcnetbsd_vec, &sparcnetbsd_vec,

View file

@ -125,24 +125,24 @@ else
done done
fi fi
r16_files = "configure.in" rce_files="configure.in"
if ( echo $* | grep keep\-r16 > /dev/null ) ; then if ( echo $* | grep keep\-rce > /dev/null ) ; then
for i in $r16_files ; do for i in $rce_files ; do
if test ! -d $i && (grep sanitize-r16 $i > /dev/null) ; then if test ! -d $i && (grep sanitize-rce $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then if [ -n "${verbose}" ] ; then
echo Keeping r16 stuff in $i echo Keeping rce stuff in $i
fi fi
fi fi
done done
else else
for i in $r16_files ; do for i in $rce_files ; do
if test ! -d $i && (grep sanitize-r16 $i > /dev/null) ; then if test ! -d $i && (grep sanitize-rce $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then if [ -n "${verbose}" ] ; then
echo Removing traces of \"r16\" from $i... echo Removing traces of \"rce\" from $i...
fi fi
cp $i new cp $i new
sed '/start\-sanitize\-r16/,/end-\sanitize\-r16/d' < $i > new sed '/start\-sanitize\-rce/,/end-\sanitize\-rce/d' < $i > new
if [ -n "${safe}" -a ! -f .Recover/$i ] ; then if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
if [ -n "${verbose}" ] ; then if [ -n "${verbose}" ] ; then
echo Caching $i in .Recover... echo Caching $i in .Recover...

View file

@ -1,4 +1,4 @@
/* tc-r16.c -- Assemble code for the Experimental R16 /* tc-rce.c -- Assemble code for the Experimental R16
Copyright (C) 1993 Free Software Foundation. Copyright (C) 1993 Free Software Foundation.
@ -28,7 +28,7 @@
#include "bfd.h" #include "bfd.h"
#include "subsegs.h" #include "subsegs.h"
#define DEFINE_TABLE #define DEFINE_TABLE
#include "../opcodes/r16-opc.h" #include "../opcodes/rce-opc.h"
#include <ctype.h> #include <ctype.h>
#if 1 /**** TEMP ****/ #if 1 /**** TEMP ****/
@ -116,13 +116,13 @@ static struct hash_control *opcode_hash_control; /* Opcode mnemonics */
void void
md_begin () md_begin ()
{ {
r16_opcode_info *opcode; rce_opcode_info *opcode;
char *prev_name = ""; char *prev_name = "";
opcode_hash_control = hash_new (); opcode_hash_control = hash_new ();
/* Insert unique names into hash table */ /* Insert unique names into hash table */
for (opcode = r16_table; opcode->name; opcode++) for (opcode = rce_table; opcode->name; opcode++)
{ {
if (strcmp (prev_name, opcode->name)) if (strcmp (prev_name, opcode->name))
{ {
@ -272,7 +272,7 @@ char *str;
{ {
char *op_start; char *op_start;
char *op_end; char *op_end;
r16_opcode_info *opcode; rce_opcode_info *opcode;
char *output; char *output;
int nlen = 0; int nlen = 0;
unsigned short inst; unsigned short inst;
@ -298,7 +298,7 @@ char *str;
return; return;
} }
opcode = (r16_opcode_info *) hash_find (opcode_hash_control, name); opcode = (rce_opcode_info *) hash_find (opcode_hash_control, name);
if (opcode == NULL) if (opcode == NULL)
{ {
as_bad ("unknown opcode \"%s\"", name); as_bad ("unknown opcode \"%s\"", name);

View file

@ -1,4 +1,4 @@
/* This file is tc-r16.h /* This file is tc-rce.h
Copyright (C) 1993 Free Software Foundation, Inc. Copyright (C) 1993 Free Software Foundation, Inc.
@ -23,15 +23,15 @@
#ifdef BFD_ASSEMBLER #ifdef BFD_ASSEMBLER
#define TARGET_ARCH bfd_arch_r16 #define TARGET_ARCH bfd_arch_rce
#define TARGET_BYTES_BIG_ENDIAN 1 #define TARGET_BYTES_BIG_ENDIAN 1
#ifdef OBJ_AOUT #ifdef OBJ_AOUT
#define TARGET_FORMAT "a.out-r16" #define TARGET_FORMAT "a.out-rce"
#endif #endif
#else /* ! BFD_ASSEMBLER */ #else /* ! BFD_ASSEMBLER */
#define BFD_ARCH bfd_arch_r16 #define BFD_ARCH bfd_arch_rce
#define NO_RELOC 0 #define NO_RELOC 0
#define RELOC_32 1234 #define RELOC_32 1234

View file

@ -150,9 +150,9 @@ case ${generic_target} in
sh-*-coff) obj_format=coff ;; sh-*-coff) obj_format=coff ;;
# start-sanitize-r16 # start-sanitize-rce
r16-*-aout) obj_format=aout ;; rce-*-aout) obj_format=aout ;;
# end-sanitize-r16 # end-sanitize-rce
ns32k-pc532-mach*) obj_format=aout emulation=pc532 ;; ns32k-pc532-mach*) obj_format=aout emulation=pc532 ;;
ns32k-pc532-netbsd*) obj_format=aout emulation=nbsd532 ;; ns32k-pc532-netbsd*) obj_format=aout emulation=nbsd532 ;;

View file

@ -404,4 +404,40 @@ else
fi fi
r16_files = "configure.in"
if ( echo $* | grep keep\-r16 > /dev/null ) ; then
for i in $r16_files ; do
if test ! -d $i && (grep sanitize-r16 $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Keeping r16 stuff in $i
fi
fi
done
else
for i in $r16_files ; do
if test ! -d $i && (grep sanitize-r16 $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Removing traces of \"r16\" from $i...
fi
cp $i new
sed '/start\-sanitize\-r16/,/end-\sanitize\-r16/d' < $i > new
if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
if [ -n "${verbose}" ] ; then
echo Caching $i in .Recover...
fi
mv $i .Recover
fi
mv new $i
fi
done
fi
for i in * ; do
if test ! -d $i && (grep sanitize $i > /dev/null) ; then
echo '***' Some mentions of Sanitize are still left in $i! 1>&2
fi
done
#
# End of file. # End of file.

View file

@ -198,6 +198,10 @@ h8500-*-*) gdb_target=h8500hms ;;
sh-*-*) gdb_target=sh ;; sh-*-*) gdb_target=sh ;;
# start-sanitize-r16
r16-*-*) gdb_target=r16 ;;
# end-sanitize-r16
hppa*-*-bsd*) gdb_target=hppabsd ;; hppa*-*-bsd*) gdb_target=hppabsd ;;
hppa*-*-pro*) gdb_target=hppapro ;; hppa*-*-pro*) gdb_target=hppapro ;;
hppa*-*-hpux*) gdb_target=hppahpux ;; hppa*-*-hpux*) gdb_target=hppahpux ;;

View file

@ -15,12 +15,12 @@
Do-first: Do-first:
r16_files="r16-aout.mt" rce_files="rce-aout.mt"
if ( echo $* | grep keep\-r16 > /dev/null ) ; then if ( echo $* | grep keep\-rce > /dev/null ) ; then
keep_these_too="${r16_files} ${keep_these_too}" keep_these_too="${rce_files} ${keep_these_too}"
else else
lose_these_too="${r16_files} ${lose_these_too}" lose_these_too="${rce_files} ${lose_these_too}"
fi fi
# All files listed between the "Things-to-keep:" line and the # All files listed between the "Things-to-keep:" line and the

View file

@ -23,12 +23,12 @@ else
lose_these_too="${mpw_files} ${lose_these_too}" lose_these_too="${mpw_files} ${lose_these_too}"
fi fi
r16_files="r16-dis.c r16-opc.h" rce_files="rce-dis.c rce-opc.h"
if ( echo $* | grep keep\-r16 > /dev/null ) ; then if ( echo $* | grep keep\-rce > /dev/null ) ; then
keep_these_too="${r16_files} ${keep_these_too}" keep_these_too="${rce_files} ${keep_these_too}"
else else
lose_these_too="${r16_files} ${lose_these_too}" lose_these_too="${rce_files} ${lose_these_too}"
fi fi
# All files listed between the "Things-to-keep:" line and the # All files listed between the "Things-to-keep:" line and the
@ -96,23 +96,23 @@ else
done done
fi fi
r16_files = "configure.in" rce_files="configure.in"
if ( echo $* | grep keep\-r16 > /dev/null ) ; then if ( echo $* | grep keep\-rce > /dev/null ) ; then
for i in $r16_files ; do for i in $rce_files ; do
if test ! -d $i && (grep sanitize-r16 $i > /dev/null) ; then if test ! -d $i && (grep sanitize-rce $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then if [ -n "${verbose}" ] ; then
echo Keeping r16 stuff in $i echo Keeping rce stuff in $i
fi fi
fi fi
done done
else else
for i in $r16_files ; do for i in $rce_files ; do
if test ! -d $i && (grep sanitize-r16 $i > /dev/null) ; then if test ! -d $i && (grep sanitize-rce $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then if [ -n "${verbose}" ] ; then
echo Removing traces of \"r16\" from $i... echo Removing traces of \"rce\" from $i...
fi fi
cp $i new cp $i new
sed '/start\-sanitize\-r16/,/end-\sanitize\-r16/d' < $i > new sed '/start\-sanitize\-rce/,/end-\sanitize\-rce/d' < $i > new
if [ -n "${safe}" -a ! -f .Recover/$i ] ; then if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
if [ -n "${verbose}" ] ; then if [ -n "${verbose}" ] ; then
echo Caching $i in .Recover... echo Caching $i in .Recover...

View file

@ -103,9 +103,9 @@ if [ x${all_targets} = xfalse ]; then
bfd_powerpc_arch) ta="$ta ppc-dis.o ppc-opc.o" ;; bfd_powerpc_arch) ta="$ta ppc-dis.o ppc-opc.o" ;;
bfd_rs6000_arch) ta="$ta ppc-dis.o ppc-opc.o" ;; bfd_rs6000_arch) ta="$ta ppc-dis.o ppc-opc.o" ;;
bfd_sh_arch) ta="$ta sh-dis.o" ;; bfd_sh_arch) ta="$ta sh-dis.o" ;;
# start-sanitize-r16 # start-sanitize-rce
bfd_r16_arch) ta="$ta r16-dis.o" ;; bfd_rce_arch) ta="$ta rce-dis.o" ;;
# end-sanitize-r16 # end-sanitize-rce
bfd_sparc_arch) ta="$ta sparc-dis.o sparc-opc.o" ;; bfd_sparc_arch) ta="$ta sparc-dis.o sparc-opc.o" ;;
bfd_vax_arch) ;; bfd_vax_arch) ;;
bfd_we32k_arch) ;; bfd_we32k_arch) ;;

View file

@ -19,7 +19,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
#define STATIC_TABLE #define STATIC_TABLE
#define DEFINE_TABLE #define DEFINE_TABLE
#include "r16-opc.h" #include "rce-opc.h"
#include "dis-asm.h" #include "dis-asm.h"
int int
@ -33,7 +33,7 @@ print_insn_sop(memaddr, info)
unsigned char nibs[4]; unsigned char nibs[4];
int status; int status;
int relmask = ~0; int relmask = ~0;
r16_opcode_info *op; rce_opcode_info *op;
int dslot = 0; int dslot = 0;
status = info->read_memory_func(memaddr, insn, 2, info); status = info->read_memory_func(memaddr, insn, 2, info);

View file

@ -1,15 +1,15 @@
typedef enum { typedef enum {
O0, OT, O1, OC, O2, OI, OB, LS, BR, LI, LR, LJ, OM O0, OT, O1, OC, O2, OI, OB, LS, BR, LI, LR, LJ, OM
} r16_opclass; } rce_opclass;
typedef struct inst typedef struct inst
{ char *name; { char *name;
unsigned short opclass; unsigned short opclass;
unsigned short inst; unsigned short inst;
} r16_opcode_info; } rce_opcode_info;
#ifdef DEFINE_TABLE #ifdef DEFINE_TABLE
r16_opcode_info r16_table[]={ rce_opcode_info rce_table[]={
{ "bkpt", O0, 0x0000 }, { "bkpt", O0, 0x0000 },
{ "sync", O0, 0x0001 }, { "sync", O0, 0x0001 },
{ "rte", O0, 0x0002 }, { "rte", O0, 0x0002 },