diff options
author | Joern Rennecke <joern.rennecke@embecosm.com> | 1997-08-29 19:03:06 +0000 |
---|---|---|
committer | Joern Rennecke <joern.rennecke@embecosm.com> | 1997-08-29 19:03:06 +0000 |
commit | bf5ac1b8edb34601e1cb43238d690a6d6c00457e (patch) | |
tree | 915aa332ec38f314d43e80e2bff2768c6c9515bc /opcodes | |
parent | 24d2330e75b2edc9a37fe5edd1b5ff282be6f29c (diff) | |
download | fsf-binutils-gdb-bf5ac1b8edb34601e1cb43238d690a6d6c00457e.zip fsf-binutils-gdb-bf5ac1b8edb34601e1cb43238d690a6d6c00457e.tar.gz fsf-binutils-gdb-bf5ac1b8edb34601e1cb43238d690a6d6c00457e.tar.bz2 |
SH4 assembler extensions.
Diffstat (limited to 'opcodes')
-rw-r--r-- | opcodes/.Sanitize | 32 | ||||
-rw-r--r-- | opcodes/ChangeLog | 10 |
2 files changed, 42 insertions, 0 deletions
diff --git a/opcodes/.Sanitize b/opcodes/.Sanitize index 47f1590..071f919 100644 --- a/opcodes/.Sanitize +++ b/opcodes/.Sanitize @@ -321,6 +321,38 @@ else done fi +if [ -n "${verbose}" ] ; then + echo Processing \"sh4\"... +fi + +sh4_files="ChangeLog sh-opc.h sh-dis.c" +if ( echo $* | grep keep\-sh4 > /dev/null ) ; then + for i in $sh4_files ; do + if test ! -d $i && (grep sanitize-sh4 $i > /dev/null) ; then + if [ -n "${verbose}" ] ; then + echo Keeping sh4 stuff in $i + fi + fi + done +else + for i in $sh4_files ; do + if test ! -d $i && (grep sanitize-sh4 $i > /dev/null) ; then + if [ -n "${verbose}" ] ; then + echo Removing traces of \"sh4\" from $i... + fi + cp $i new + sed -e '/start\-sanitize\-sh4/,/end-\sanitize\-sh4/d' -e 's/.*restore\-sanitize\-sh4//' < $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 diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index 6db0428..8da62f9 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -22,6 +22,16 @@ Thu Aug 21 11:09:09 1997 Nick Clifton <nickc@cygnus.com> * v850-opc.c (v850_opcodes[]): Move divh opcodes next to each other. end-sanitize-v850e +start-sanitize-sh4 +Wed Aug 20 00:43:11 1997 J"orn Rennecke <amylaar@cygnus.co.uk> + + * sh-opc.h (sh_arg_type): Add A_SGR and A_DBR. + (sh_nibble_type, sh_arg_type): Add SH4 floating point extensions. + (sh_table): Likewise. Add movca.l, ocbi, ocbp, ocbwb. + Add insns to access SGR and DBR. + * sh-dis.c (print_insn_shx): Add SH4 floating point extensions. + +end-sanitize-sh4 Tue Aug 19 10:59:59 1997 Richard Henderson <rth@cygnus.com> * alpha-opc.c (alpha_opcodes): Fix hw_rei_stall mungage. |