* ppc-opc.c (icbt): Order correctly.
[deliverable/binutils-gdb.git] / opcodes / ppc-dis.c
index 19b16ef01e0f6c59a76b3bb14209bb89a9b04623..c59a9201f673ad6e50cf111a2ba2ed3945631510 100644 (file)
@@ -1,5 +1,5 @@
 /* ppc-dis.c -- Disassemble PowerPC instructions
-   Copyright 1994 Free Software Foundation, Inc.
+   Copyright 1994, 1995, 2000 Free Software Foundation, Inc.
    Written by Ian Lance Taylor, Cygnus Support
 
 This file is part of GDB, GAS, and the GNU binutils.
@@ -16,10 +16,9 @@ the GNU General Public License for more details.
 
 You should have received a copy of the GNU General Public License
 along with this file; see the file COPYING.  If not, write to the Free
-Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
+Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
 
 #include <stdio.h>
-#include "ansidecl.h"
 #include "sysdep.h"
 #include "dis-asm.h"
 #include "opcode/ppc.h"
@@ -33,24 +32,32 @@ Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
 static int print_insn_powerpc PARAMS ((bfd_vma, struct disassemble_info *,
                                       int bigendian, int dialect));
 
-/* Print a big endian PowerPC instruction.  */
+/* Print a big endian PowerPC instruction.  For convenience, also
+   disassemble instructions supported by the Motorola PowerPC 601
+   and the Altivec vector unit.  */
 
 int
 print_insn_big_powerpc (memaddr, info)
      bfd_vma memaddr;
      struct disassemble_info *info;
 {
-  return print_insn_powerpc (memaddr, info, 1, PPC_OPCODE_PPC);
+  return print_insn_powerpc (memaddr, info, 1,
+                            PPC_OPCODE_PPC | PPC_OPCODE_601 |
+                            PPC_OPCODE_ALTIVEC);
 }
 
-/* Print a little endian PowerPC instruction.  */
+/* Print a little endian PowerPC instruction.  For convenience, also
+   disassemble instructions supported by the Motorola PowerPC 601
+   and the Altivec vector unit.  */
 
 int
 print_insn_little_powerpc (memaddr, info)
      bfd_vma memaddr;
      struct disassemble_info *info;
 {
-  return print_insn_powerpc (memaddr, info, 0, PPC_OPCODE_PPC);
+  return print_insn_powerpc (memaddr, info, 0,
+                            PPC_OPCODE_PPC | PPC_OPCODE_601 |
+                            PPC_OPCODE_ALTIVEC);
 }
 
 /* Print a POWER (RS/6000) instruction.  */
@@ -155,7 +162,7 @@ print_insn_powerpc (memaddr, info, bigendian, dialect)
          else
            {
              value = (insn >> operand->shift) & ((1 << operand->bits) - 1);
-             if (operand->signedp
+             if ((operand->flags & PPC_OPERAND_SIGNED) != 0
                  && (value & (1 << (operand->bits - 1))) != 0)
                value -= 1 << operand->bits;
            }
@@ -178,6 +185,8 @@ print_insn_powerpc (memaddr, info, bigendian, dialect)
            (*info->fprintf_func) (info->stream, "r%ld", value);
          else if ((operand->flags & PPC_OPERAND_FPR) != 0)
            (*info->fprintf_func) (info->stream, "f%ld", value);
+         else if ((operand->flags & PPC_OPERAND_VR) != 0)
+           (*info->fprintf_func) (info->stream, "v%ld", value);
          else if ((operand->flags & PPC_OPERAND_RELATIVE) != 0)
            (*info->print_address_func) (memaddr + value, info);
          else if ((operand->flags & PPC_OPERAND_ABSOLUTE) != 0)
@@ -228,7 +237,7 @@ print_insn_powerpc (memaddr, info, bigendian, dialect)
     }
 
   /* We could not find a match.  */
-  (*info->fprintf_func) (info->stream, "0x%lx", insn);
+  (*info->fprintf_func) (info->stream, ".long 0x%lx", insn);
 
   return 4;
 }
This page took 0.025411 seconds and 4 git commands to generate.