]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
Tidied up sanitization.
authorNick Clifton <nickc@redhat.com>
Thu, 14 Aug 1997 19:45:14 +0000 (19:45 +0000)
committerNick Clifton <nickc@redhat.com>
Thu, 14 Aug 1997 19:45:14 +0000 (19:45 +0000)
include/opcode/ChangeLog
sim/v850/.Sanitize
sim/v850/ChangeLog

index 41da01381c9a17c2a9416ad2285e85aa428ee4b3..b4a44768125f5f99f3b9a7437b9b1ecfa56e74c7 100644 (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>
 
index 66aa35322e718235fa062b471b2463fc4cd72733..2dc770b590865ffb9aec17656f7c1af6e359320e 100644 (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
index 812cfb6c912091626822dee4ce8fbb3efd5dd4d2..a4d4fbd360f7c3a2f287b00ce1578b4b10f1ccab 100644 (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.