From 25b344a4a21fc31cf8b4e5fe12d787c25e30f8d1 Mon Sep 17 00:00:00 2001 From: Jeff Law Date: Fri, 5 Jul 1996 18:59:31 +0000 Subject: No longer need to sanitize away h8s stuff. --- opcodes/.Sanitize | 28 --------------------------- opcodes/ChangeLog | 5 +++-- opcodes/disassemble.c | 8 +++----- opcodes/h8300-dis.c | 52 ++++++++++++++++++++++++++++++++++++++------------- 4 files changed, 45 insertions(+), 48 deletions(-) (limited to 'opcodes') diff --git a/opcodes/.Sanitize b/opcodes/.Sanitize index 50bd4db..e769094 100644 --- a/opcodes/.Sanitize +++ b/opcodes/.Sanitize @@ -105,34 +105,6 @@ else done fi -h8s_files="ChangeLog disassemble.c h8300-dis.c" -if ( echo $* | grep keep\-h8s > /dev/null ) ; then - for i in $h8s_files ; do - if test ! -d $i && (grep sanitize-h8s $i > /dev/null) ; then - if [ -n "${verbose}" ] ; then - echo Keeping h8s stuff in $i - fi - fi - done -else - for i in $h8s_files ; do - if test ! -d $i && (grep sanitize-h8s $i > /dev/null) ; then - if [ -n "${verbose}" ] ; then - echo Removing traces of \"h8s\" from $i... - fi - cp $i new - sed '/start\-sanitize\-h8s/,/end-\sanitize\-h8s/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 diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index 4bd991b..da89e27 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,5 +1,7 @@ Thu Jul 4 11:42:51 1996 Ian Lance Taylor + * Released binutils 2.7. + * alpha-opc.c: Correct second case of "mov" to use OPRL. Wed Jul 3 16:03:47 1996 Stu Grossman (grossman@critters.cygnus.com) @@ -49,10 +51,9 @@ Tue Jun 18 15:58:27 1996 Jeffrey A. Law * h8300-dis.c (bfd_h8_disassemble): Rename "hmode" argument to just "mode". -start-sanitize-h8s * disassemble.c (disassembler): Handle H8/S. * h8300-dis.c (print_insn_h8300s): New function for H8/S. -end-sanitize-h8s + Tue Jun 18 18:06:50 1996 Ian Lance Taylor * sparc-opc.c: Add beq/teq as aliases for be/te. diff --git a/opcodes/disassemble.c b/opcodes/disassemble.c index 8abfbd8..26c54ca 100644 --- a/opcodes/disassemble.c +++ b/opcodes/disassemble.c @@ -86,6 +86,8 @@ disassembler (abfd) case bfd_arch_h8300: if (bfd_get_mach(abfd) == bfd_mach_h8300h) disassemble = print_insn_h8300h; + else if (bfd_get_mach(abfd) == bfd_mach_h8300s) + disassemble = print_insn_h8300s; else disassemble = print_insn_h8300; break; @@ -156,11 +158,7 @@ disassembler (abfd) #endif #ifdef ARCH_sparc case bfd_arch_sparc: - if (bfd_get_mach (abfd) == bfd_mach_sparc_v9 - || bfd_get_mach (abfd) == bfd_mach_sparc_v9a) - disassemble = print_insn_sparc64; - else - disassemble = print_insn_sparc; + disassemble = print_insn_sparc; break; #endif #ifdef ARCH_w65 diff --git a/opcodes/h8300-dis.c b/opcodes/h8300-dis.c index 4064158..2cf880e 100644 --- a/opcodes/h8300-dis.c +++ b/opcodes/h8300-dis.c @@ -13,7 +13,7 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software -Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ +Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #define DEFINE_TABLE @@ -64,10 +64,10 @@ bfd_h8_disassemble_init () unsigned int -bfd_h8_disassemble (addr, info, hmode) +bfd_h8_disassemble (addr, info, mode) bfd_vma addr; disassemble_info *info; - int hmode; + int mode; { /* Find the first entry in the table for this opcode */ static CONST char *regnames[] = @@ -92,10 +92,11 @@ bfd_h8_disassemble (addr, info, hmode) int rd = 0; int rdisp = 0; int abs = 0; + int bit = 0; int plen = 0; static boolean init = 0; struct h8_opcode *q = h8_opcodes; - char CONST **pregnames = hmode ? lregnames : wregnames; + char CONST **pregnames = mode != 0 ? lregnames : wregnames; int status; int l; @@ -243,7 +244,11 @@ bfd_h8_disassemble (addr, info, hmode) else if (looking_for & L_3) { plen = 3; - + bit = thisnib; + } + else if (looking_for & L_2) + { + plen = 2; abs = thisnib; } else if (looking_for == E) @@ -275,9 +280,12 @@ bfd_h8_disassemble (addr, info, hmode) fprintf (stream, ","); - if (x & (IMM|KBIT|DBIT)) + if (x & L_3) + { + fprintf (stream, "#0x%x", (unsigned) bit); + } + else if (x & (IMM|KBIT|DBIT)) { - fprintf (stream, "#0x%x", (unsigned) abs); } else if (x & REG) @@ -314,7 +322,12 @@ bfd_h8_disassemble (addr, info, hmode) fprintf (stream, "@%s", pregnames[rn]); } - else if (x & (ABS|ABSJMP|ABSMOV)) + else if (x & ABS8MEM) + { + fprintf (stream, "@0x%x:8", (unsigned) abs); + } + + else if (x & (ABS|ABSJMP)) { fprintf (stream, "@0x%x:%d", (unsigned) abs, plen); } @@ -326,10 +339,16 @@ bfd_h8_disassemble (addr, info, hmode) else if (x & PCREL) { - if (x & L_16) - abs +=2; - fprintf (stream, ".%s%d (%x)", (char) abs > 0 ? "+" : "", (char) abs, - addr + (char) abs + 2); + if (x & L_16) + { + abs +=2; + fprintf (stream, ".%s%d (%x)", (short) abs > 0 ? "+" : "", (short) abs, + addr + (short) abs + 2); + } + else { + fprintf (stream, ".%s%d (%x)", (char) abs > 0 ? "+" : "", (char) abs, + addr + (char) abs + 2); + } } else if (x & DISP) { @@ -381,7 +400,7 @@ disassemble_info *info; return bfd_h8_disassemble (addr, info , 0); } - int +int print_insn_h8300h (addr, info) bfd_vma addr; disassemble_info *info; @@ -389,3 +408,10 @@ disassemble_info *info; return bfd_h8_disassemble (addr, info , 1); } +int +print_insn_h8300s (addr, info) +bfd_vma addr; +disassemble_info *info; +{ + return bfd_h8_disassemble (addr, info , 2); +} -- cgit v1.1