ppc-dis.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:5k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * BK Id: SCCS/s.ppc-dis.c 1.5 05/17/01 18:14:23 cort
  3.  */
  4. /* ppc-dis.c -- Disassemble PowerPC instructions
  5.    Copyright 1994 Free Software Foundation, Inc.
  6.    Written by Ian Lance Taylor, Cygnus Support
  7. This file is part of GDB, GAS, and the GNU binutils.
  8. GDB, GAS, and the GNU binutils are free software; you can redistribute
  9. them and/or modify them under the terms of the GNU General Public
  10. License as published by the Free Software Foundation; either version
  11. 2, or (at your option) any later version.
  12. GDB, GAS, and the GNU binutils are distributed in the hope that they
  13. will be useful, but WITHOUT ANY WARRANTY; without even the implied
  14. warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See
  15. the GNU General Public License for more details.
  16. You should have received a copy of the GNU General Public License
  17. along with this file; see the file COPYING.  If not, write to the Free
  18. Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
  19. #include "nonstdio.h"
  20. #include "ansidecl.h"
  21. #include "ppc.h"
  22. static int print_insn_powerpc PARAMS ((FILE *, unsigned long insn,
  23.        unsigned memaddr, int dialect));
  24. extern void print_address PARAMS((unsigned memaddr));
  25. /* Print a big endian PowerPC instruction.  For convenience, also
  26.    disassemble instructions supported by the Motorola PowerPC 601.  */
  27. int
  28. print_insn_big_powerpc (FILE *out, unsigned long insn, unsigned memaddr)
  29. {
  30.   return print_insn_powerpc (out, insn, memaddr,
  31.      PPC_OPCODE_PPC | PPC_OPCODE_601);
  32. }
  33. /* Print a PowerPC or POWER instruction.  */
  34. static int
  35. print_insn_powerpc (FILE *out, unsigned long insn, unsigned memaddr,
  36.     int dialect)
  37. {
  38.   const struct powerpc_opcode *opcode;
  39.   const struct powerpc_opcode *opcode_end;
  40.   unsigned long op;
  41.   /* Get the major opcode of the instruction.  */
  42.   op = PPC_OP (insn);
  43.   /* Find the first match in the opcode table.  We could speed this up
  44.      a bit by doing a binary search on the major opcode.  */
  45.   opcode_end = powerpc_opcodes + powerpc_num_opcodes;
  46.   for (opcode = powerpc_opcodes; opcode < opcode_end; opcode++)
  47.     {
  48.       unsigned long table_op;
  49.       const unsigned char *opindex;
  50.       const struct powerpc_operand *operand;
  51.       int invalid;
  52.       int need_comma;
  53.       int need_paren;
  54.       table_op = PPC_OP (opcode->opcode);
  55.       if (op < table_op)
  56. break;
  57.       if (op > table_op)
  58. continue;
  59.       if ((insn & opcode->mask) != opcode->opcode
  60.   || (opcode->flags & dialect) == 0)
  61. continue;
  62.       /* Make two passes over the operands.  First see if any of them
  63.  have extraction functions, and, if they do, make sure the
  64.  instruction is valid.  */
  65.       invalid = 0;
  66.       for (opindex = opcode->operands; *opindex != 0; opindex++)
  67. {
  68.   operand = powerpc_operands + *opindex;
  69.   if (operand->extract)
  70.     (*operand->extract) (insn, &invalid);
  71. }
  72.       if (invalid)
  73. continue;
  74.       /* The instruction is valid.  */
  75.       fprintf(out, "%s", opcode->name);
  76.       if (opcode->operands[0] != 0)
  77. fprintf(out, "t");
  78.       /* Now extract and print the operands.  */
  79.       need_comma = 0;
  80.       need_paren = 0;
  81.       for (opindex = opcode->operands; *opindex != 0; opindex++)
  82. {
  83.   long value;
  84.   operand = powerpc_operands + *opindex;
  85.   /* Operands that are marked FAKE are simply ignored.  We
  86.      already made sure that the extract function considered
  87.      the instruction to be valid.  */
  88.   if ((operand->flags & PPC_OPERAND_FAKE) != 0)
  89.     continue;
  90.   /* Extract the value from the instruction.  */
  91.   if (operand->extract)
  92.     value = (*operand->extract) (insn, (int *) 0);
  93.   else
  94.     {
  95.       value = (insn >> operand->shift) & ((1 << operand->bits) - 1);
  96.       if ((operand->flags & PPC_OPERAND_SIGNED) != 0
  97.   && (value & (1 << (operand->bits - 1))) != 0)
  98. value -= 1 << operand->bits;
  99.     }
  100.   /* If the operand is optional, and the value is zero, don't
  101.      print anything.  */
  102.   if ((operand->flags & PPC_OPERAND_OPTIONAL) != 0
  103.       && (operand->flags & PPC_OPERAND_NEXT) == 0
  104.       && value == 0)
  105.     continue;
  106.   if (need_comma)
  107.     {
  108.       fprintf(out, ",");
  109.       need_comma = 0;
  110.     }
  111.   /* Print the operand as directed by the flags.  */
  112.   if ((operand->flags & PPC_OPERAND_GPR) != 0)
  113.     fprintf(out, "r%ld", value);
  114.   else if ((operand->flags & PPC_OPERAND_FPR) != 0)
  115.     fprintf(out, "f%ld", value);
  116.   else if ((operand->flags & PPC_OPERAND_RELATIVE) != 0)
  117.     print_address (memaddr + value);
  118.   else if ((operand->flags & PPC_OPERAND_ABSOLUTE) != 0)
  119.     print_address (value & 0xffffffff);
  120.   else if ((operand->flags & PPC_OPERAND_CR) == 0
  121.    || (dialect & PPC_OPCODE_PPC) == 0)
  122.     fprintf(out, "%ld", value);
  123.   else
  124.     {
  125.       if (operand->bits == 3)
  126. fprintf(out, "cr%d", value);
  127.       else
  128. {
  129.   static const char *cbnames[4] = { "lt", "gt", "eq", "so" };
  130.   int cr;
  131.   int cc;
  132.   cr = value >> 2;
  133.   if (cr != 0)
  134.     fprintf(out, "4*cr%d", cr);
  135.   cc = value & 3;
  136.   if (cc != 0)
  137.     {
  138.       if (cr != 0)
  139. fprintf(out, "+");
  140.       fprintf(out, "%s", cbnames[cc]);
  141.     }
  142. }
  143.     }
  144.   if (need_paren)
  145.     {
  146.       fprintf(out, ")");
  147.       need_paren = 0;
  148.     }
  149.   if ((operand->flags & PPC_OPERAND_PARENS) == 0)
  150.     need_comma = 1;
  151.   else
  152.     {
  153.       fprintf(out, "(");
  154.       need_paren = 1;
  155.     }
  156. }
  157.       /* We have found and printed an instruction; return.  */
  158.       return 4;
  159.     }
  160.   /* We could not find a match.  */
  161.   fprintf(out, ".long 0x%lx", insn);
  162.   return 4;
  163. }