Tidied up sanitization.

This commit is contained in:
Nick Clifton 1997-08-14 19:45:14 +00:00
parent d2657e3e44
commit a0a6db4bfa
3 changed files with 50 additions and 4 deletions

View File

@ -1,3 +1,4 @@
start-santizie-v850
Wed Aug 13 18:45:48 1997 Nick Clifton <nickc@cygnus.com>
start-sanitize-v850e
@ -10,15 +11,19 @@ start-sanitize-v850eq
command line options.
end-sanitize-v850eq
start-sanitize-v850
* v850.h (struct v850_opcode): Add flags field.
(struct v850_operand): Extend meaning of 'bits' and 'shift'
fields.
start-sanitize-v850
start-sanitize-v850e
start-sanitize-v850eq
(V850E_INSTRUCTION, V850EQ_INSTRUCTION): New flags.
(V850E_PUSH_POP, V850E_IMMEDIATE16, V850E_IMMEDIATE32): New flags.
end-sanitize-v850eq
end-sanitize-v850e
end-santizie-v850
Fri Aug 8 16:58:42 1997 Doug Evans <dje@canuck.cygnus.com>

View File

@ -40,7 +40,7 @@ Do-last:
v850e_files="interp.c simops.c v850_sim.h"
if ( echo $* | grep keep\-v850e > /dev/null ) ; then
for i in $v850e_files ; do
if test ! -d $i && (grep sanitize-v850e $i > /dev/null) ; then
if test -r $i && (grep sanitize-v850e $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Keeping v850e stuff in $i
fi
@ -48,7 +48,7 @@ if ( echo $* | grep keep\-v850e > /dev/null ) ; then
done
else
for i in $v850e_files ; do
if test ! -d $i && (grep sanitize-v850e $i > /dev/null) ; then
if test -r $i && (grep sanitize-v850e $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Removing traces of \"v850e\" from $i...
fi
@ -66,7 +66,7 @@ else
fi
if ( echo $* | grep keep\-v850eq > /dev/null ) ; then
for i in $v850e_files ; do
if test ! -d $i && (grep sanitize-v850eq $i > /dev/null) ; then
if test -r $i && (grep sanitize-v850eq $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Keeping v850eq stuff in $i
fi
@ -74,7 +74,7 @@ if ( echo $* | grep keep\-v850eq > /dev/null ) ; then
done
else
for i in $v850e_files ; do
if test ! -d $i && (grep sanitize-v850eq $i > /dev/null) ; then
if test -r $i && (grep sanitize-v850eq $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Removing traces of \"v850eq\" from $i...
fi

View File

@ -1,3 +1,44 @@
Wed Aug 13 19:06:55 1997 Nick Clifton <nickc@cygnus.com>
* interp.c (sim_resume): Opcode functions return amount to be
added to PC and all opcodes take a standard format in the OP[]
array.
(do_format_*): Functions removed.
* v850_sim.h (SP, EP): New register mnemonics.
* gencode.c (write_header): Functions prototypes return an
integer.
* simops.c: Opcode functions return amount to be added to PC.
start-sanitize-v850e
* v850_sim.h (CTPC, CTPSW, CTBP): New register mnemonics.
* simops.c: Add support for v850e instructions.
* .Sanitize (Do-first, Do-last): Add support for keep-v850e
command line option.
end-sanitize-v850e
start-sanitize-v850eq
* .Sanitize (Do-first, Do-last): Add support for keep-v850eq
command line option.
* simops.c: Add support for v850eq instructions.
end-sanitize-v850eq
Tue May 20 10:24:14 1997 Andrew Cagney <cagney@b1.cygnus.com>
* interp.c (sim_open): Add callback argument.
(sim_set_callbacks): Delete SIM_DESC argument.
Thu Apr 24 00:39:51 1997 Doug Evans <dje@canuck.cygnus.com>
* configure: Regenerated to track ../common/aclocal.m4 changes.
Wed Apr 23 17:20:16 1997 Doug Evans <dje@canuck.cygnus.com>
* interp.c (prog_bfd_was_opened_p): New static local.