[ARC] Rename "class" named attributes.
[deliverable/binutils-gdb.git] / opcodes / arc-dis.c
index 8102b363cda4dab4f1f10a8c105e8cc6c725b31a..96fd092e8db2acbc6dec0f4abb1ff2d725735731 100644 (file)
 /* Instruction printing code for the ARC.
-   Copyright (C) 1994, 1995 Free Software Foundation, Inc. 
-   Contributed by Doug Evans (dje@cygnus.com).
+   Copyright (C) 1994-2016 Free Software Foundation, Inc.
 
-This program is free software; you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 2 of the License, or
-(at your option) any later version.
+   Contributed by Claudiu Zissulescu (claziss@synopsys.com)
 
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-GNU General Public License for more details.
+   This file is part of libopcodes.
 
-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.  */
+   This library is free software; you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3, or (at your option)
+   any later version.
 
+   It is distributed in the hope that it will be useful, but WITHOUT
+   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+   or FITNESS FOR A PARTICULAR PURPOSE.  See the 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., 51 Franklin Street - Fifth Floor, Boston,
+   MA 02110-1301, USA.  */
+
+#include "sysdep.h"
+#include <stdio.h>
+#include <assert.h>
 #include "dis-asm.h"
 #include "opcode/arc.h"
-#include "libelf.h"
-#include "elf/arc.h"
+#include "arc-dis.h"
+#include "arc-ext.h"
+
+
+/* Globals variables.  */
+
+static const char * const regnames[64] =
+{
+  "r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7",
+  "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15",
+  "r16", "r17", "r18", "r19", "r20", "r21", "r22", "r23",
+  "r24", "r25", "gp", "fp", "sp", "ilink", "r30", "blink",
+
+  "r32", "r33", "r34", "r35", "r36", "r37", "r38", "r39",
+  "r40", "r41", "r42", "r43", "r44", "r45", "r46", "r47",
+  "r48", "r49", "r50", "r51", "r52", "r53", "r54", "r55",
+  "r56", "r57", "ACCL", "ACCH", "lp_count", "rezerved", "LIMM", "pcl"
+};
+
+/* Macros section.  */
+
+#ifdef DEBUG
+# define pr_debug(fmt, args...) fprintf (stderr, fmt, ##args)
+#else
+# define pr_debug(fmt, args...)
+#endif
+
+#define ARRANGE_ENDIAN(info, buf)                                      \
+  (info->endian == BFD_ENDIAN_LITTLE ? bfd_getm32 (bfd_getl32 (buf))   \
+   : bfd_getb32 (buf))
+
+#define BITS(word,s,e)  (((word) << (sizeof (word) * 8 - 1 - e)) >>    \
+                        (s + (sizeof (word) * 8 - 1 - e)))
+#define OPCODE(word)   (BITS ((word), 27, 31))
+
+#define OPCODE_AC(word)   (BITS ((word), 11, 15))
+
+/* Functions implementation.  */
+
+static bfd_vma
+bfd_getm32 (unsigned int data)
+{
+  bfd_vma value = 0;
+
+  value = ((data & 0xff00) | (data & 0xff)) << 16;
+  value |= ((data & 0xff0000) | (data & 0xff000000)) >> 16;
+  return value;
+}
+
+static int
+special_flag_p (const char *opname,
+               const char *flgname)
+{
+  const struct arc_flag_special *flg_spec;
+  unsigned i, j, flgidx;
+
+  for (i = 0; i < arc_num_flag_special; i++)
+    {
+      flg_spec = &arc_flag_special_cases[i];
+
+      if (strcmp (opname, flg_spec->name))
+       continue;
+
+      /* Found potential special case instruction.  */
+      for (j=0;; ++j)
+       {
+         flgidx = flg_spec->flags[j];
+         if (flgidx == 0)
+           break; /* End of the array.  */
+
+         if (strcmp (flgname, arc_flag_operands[flgidx].name) == 0)
+           return 1;
+       }
+    }
+  return 0;
+}
+
+/* Find proper format for the given opcode.  */
+static const struct arc_opcode *
+find_format (const struct arc_opcode *arc_table,
+            unsigned *insn, unsigned int insnLen,
+            unsigned isa_mask)
+{
+  unsigned int i = 0;
+  const struct arc_opcode *opcode = NULL;
+  const unsigned char *opidx;
+  const unsigned char *flgidx;
+
+  do {
+    bfd_boolean invalid = FALSE;
+
+    opcode = &arc_table[i++];
+
+    if (ARC_SHORT (opcode->mask) && (insnLen == 2))
+      {
+       if (OPCODE_AC (opcode->opcode) != OPCODE_AC (insn[0]))
+         continue;
+      }
+    else if (!ARC_SHORT (opcode->mask) && (insnLen == 4))
+      {
+       if (OPCODE (opcode->opcode) != OPCODE (insn[0]))
+         continue;
+      }
+    else
+      continue;
+
+    if ((insn[0] ^ opcode->opcode) & opcode->mask)
+      continue;
+
+    if (!(opcode->cpu & isa_mask))
+      continue;
+
+    /* Possible candidate, check the operands.  */
+    for (opidx = opcode->operands; *opidx; opidx++)
+      {
+       int value;
+       const struct arc_operand *operand = &arc_operands[*opidx];
+
+       if (operand->flags & ARC_OPERAND_FAKE)
+         continue;
+
+       if (operand->extract)
+         value = (*operand->extract) (insn[0], &invalid);
+       else
+         value = (insn[0] >> operand->shift) & ((1 << operand->bits) - 1);
+
+       /* Check for LIMM indicator.  If it is there, then make sure
+          we pick the right format.  */
+       if (operand->flags & ARC_OPERAND_IR
+           && !(operand->flags & ARC_OPERAND_LIMM))
+         {
+           if ((value == 0x3E && insnLen == 4)
+               || (value == 0x1E && insnLen == 2))
+             {
+               invalid = TRUE;
+               break;
+             }
+         }
+      }
+
+    /* Check the flags.  */
+    for (flgidx = opcode->flags; *flgidx; flgidx++)
+      {
+       /* Get a valid flag class.  */
+       const struct arc_flag_class *cl_flags = &arc_flag_classes[*flgidx];
+       const unsigned *flgopridx;
+       int foundA = 0, foundB = 0;
+       unsigned int value;
+
+       /* Check first the extensions.  */
+       if (cl_flags->flag_class & F_CLASS_EXTEND)
+         {
+           value = (insn[0] & 0x1F);
+           if (arcExtMap_condCodeName (value))
+             continue;
+         }
+       for (flgopridx = cl_flags->flags; *flgopridx; ++flgopridx)
+         {
+           const struct arc_flag_operand *flg_operand =
+             &arc_flag_operands[*flgopridx];
+
+           value = (insn[0] >> flg_operand->shift)
+             & ((1 << flg_operand->bits) - 1);
+           if (value == flg_operand->code)
+             foundA = 1;
+           if (value)
+             foundB = 1;
+         }
+       if (!foundA && foundB)
+         {
+           invalid = TRUE;
+           break;
+         }
+      }
+
+    if (invalid)
+      continue;
+
+    /* The instruction is valid.  */
+    return opcode;
+  } while (opcode->mask);
+
+  return NULL;
+}
+
+static void
+print_flags (const struct arc_opcode *opcode,
+            unsigned *insn,
+            struct disassemble_info *info)
+{
+  const unsigned char *flgidx;
+  unsigned int value;
+
+  /* Now extract and print the flags.  */
+  for (flgidx = opcode->flags; *flgidx; flgidx++)
+    {
+      /* Get a valid flag class.  */
+      const struct arc_flag_class *cl_flags = &arc_flag_classes[*flgidx];
+      const unsigned *flgopridx;
+
+      /* Check first the extensions.  */
+      if (cl_flags->flag_class & F_CLASS_EXTEND)
+       {
+         const char *name;
+         value = (insn[0] & 0x1F);
+
+         name = arcExtMap_condCodeName (value);
+         if (name)
+           {
+             (*info->fprintf_func) (info->stream, ".%s", name);
+             continue;
+           }
+       }
+
+      for (flgopridx = cl_flags->flags; *flgopridx; ++flgopridx)
+       {
+         const struct arc_flag_operand *flg_operand =
+           &arc_flag_operands[*flgopridx];
+
+         if (!flg_operand->favail)
+           continue;
+
+         value = (insn[0] >> flg_operand->shift)
+           & ((1 << flg_operand->bits) - 1);
+         if (value == flg_operand->code)
+           {
+              /* FIXME!: print correctly nt/t flag.  */
+             if (!special_flag_p (opcode->name, flg_operand->name))
+               (*info->fprintf_func) (info->stream, ".");
+             else if (info->insn_type == dis_dref)
+               {
+                 switch (flg_operand->name[0])
+                   {
+                   case 'b':
+                     info->data_size = 1;
+                     break;
+                   case 'h':
+                   case 'w':
+                     info->data_size = 2;
+                     break;
+                   default:
+                     info->data_size = 4;
+                     break;
+                   }
+               }
+             (*info->fprintf_func) (info->stream, "%s", flg_operand->name);
+           }
+
+         if (flg_operand->name[0] == 'd'
+             && flg_operand->name[1] == 0)
+           info->branch_delay_insns = 1;
+       }
+    }
+}
+
+static const char *
+get_auxreg (const struct arc_opcode *opcode,
+           int value,
+           unsigned isa_mask)
+{
+  const char *name;
+  unsigned int i;
+  const struct arc_aux_reg *auxr = &arc_aux_regs[0];
+
+  if (opcode->insn_class != AUXREG)
+    return NULL;
+
+  name = arcExtMap_auxRegName (value);
+  if (name)
+    return name;
+
+  for (i = 0; i < arc_num_aux_regs; i++, auxr++)
+    {
+      if (!(auxr->cpu & isa_mask))
+       continue;
+
+      if (auxr->subclass != NONE)
+       return NULL;
 
-static int print_insn_arc_base PARAMS ((bfd_vma, disassemble_info *));
-static int print_insn_arc_host PARAMS ((bfd_vma, disassemble_info *));
-static int print_insn_arc_graphics PARAMS ((bfd_vma, disassemble_info *));
-static int print_insn_arc_audio PARAMS ((bfd_vma, disassemble_info *));
+      if (auxr->address == value)
+       return auxr->name;
+    }
+  return NULL;
+}
+
+/* Calculate the instruction length for an instruction starting with MSB
+   and LSB, the most and least significant byte.  The ISA_MASK is used to
+   filter the instructions considered to only those that are part of the
+   current architecture.
 
-/* Print one instruction from PC on INFO->STREAM.
-   Return the size of the instruction (4 or 8 for the ARC). */
+   The instruction lengths are calculated from the ARC_OPCODE table, and
+   cached for later use.  */
+
+static unsigned int
+arc_insn_length (bfd_byte msb, struct disassemble_info *info)
+{
+  bfd_byte major_opcode = msb >> 3;
+
+  switch (info->mach)
+    {
+    case bfd_mach_arc_nps400:
+    case bfd_mach_arc_arc700:
+    case bfd_mach_arc_arc600:
+      return (major_opcode > 0xb) ? 2 : 4;
+      break;
+
+    case bfd_mach_arc_arcv2:
+      return (major_opcode > 0x7) ? 2 : 4;
+      break;
+
+    default:
+      abort ();
+    }
+}
+
+/* Disassemble ARC instructions.  */
 
 static int
-print_insn (pc, info, cpu)
-     bfd_vma pc;
-     disassemble_info *info;
-     int cpu;
+print_insn_arc (bfd_vma memaddr,
+               struct disassemble_info *info)
 {
-  const struct arc_opcode *opcode,*opcode_end;
   bfd_byte buffer[4];
-  void *stream = info->stream;
-  fprintf_ftype func = info->fprintf_func;
+  unsigned int lowbyte, highbyte;
   int status;
-  /* First element is insn, second element is limm (if present).  */
-  arc_insn insn[2];
-  int got_limm_p = 0;
-  static int initialized = 0;
-  static int current_cpu = 0;
-  /* Not used yet.  Here to record byte order dependencies.  */
-  int bigendian_p = 0;
-
-  if (!initialized || cpu != current_cpu)
+  unsigned int insnLen;
+  unsigned insn[2] = { 0, 0 };
+  unsigned isa_mask;
+  const unsigned char *opidx;
+  const struct arc_opcode *opcode;
+  const extInstruction_t *einsn;
+  bfd_boolean need_comma;
+  bfd_boolean open_braket;
+  int size;
+
+  lowbyte  = ((info->endian == BFD_ENDIAN_LITTLE) ? 1 : 0);
+  highbyte = ((info->endian == BFD_ENDIAN_LITTLE) ? 0 : 1);
+
+  switch (info->mach)
     {
-      arc_opcode_init_tables (cpu);
-      initialized = 1;
-      current_cpu = cpu;
+    case bfd_mach_arc_nps400:
+      isa_mask = ARC_OPCODE_ARC700 | ARC_OPCODE_NPS400;
+      break;
+
+    case bfd_mach_arc_arc700:
+      isa_mask = ARC_OPCODE_ARC700;
+      break;
+
+    case bfd_mach_arc_arc600:
+      isa_mask = ARC_OPCODE_ARC600;
+      break;
+
+    case bfd_mach_arc_arcv2:
+    default:
+      isa_mask = ARC_OPCODE_ARCv2HS | ARC_OPCODE_ARCv2EM;
+      break;
     }
 
-  status = (*info->read_memory_func) (pc, buffer, 4, info);
-  if (status != 0)
+  /* This variable may be set by the instruction decoder.  It suggests
+     the number of bytes objdump should display on a single line.  If
+     the instruction decoder sets this, it should always set it to
+     the same value in order to get reasonable looking output.  */
+
+  info->bytes_per_line  = 8;
+
+  /* In the next lines, we set two info variables control the way
+     objdump displays the raw data.  For example, if bytes_per_line is
+     8 and bytes_per_chunk is 4, the output will look like this:
+     00:   00000000 00000000
+     with the chunks displayed according to "display_endian".  */
+
+  if (info->section
+      && !(info->section->flags & SEC_CODE))
     {
-      (*info->memory_error_func) (status, pc, info);
-      return -1;
+      /* This is not a CODE section.  */
+      switch (info->section->size)
+       {
+       case 1:
+       case 2:
+       case 4:
+         size = info->section->size;
+         break;
+       default:
+         size = (info->section->size & 0x01) ? 1 : 4;
+         break;
+       }
+      info->bytes_per_chunk = 1;
+      info->display_endian = info->endian;
     }
-  if (bigendian_p)
-    insn[0] = bfd_getb32 (buffer);
   else
-    insn[0] = bfd_getl32 (buffer);
+    {
+      size = 2;
+      info->bytes_per_chunk = 2;
+      info->display_endian = info->endian;
+    }
 
-  func (stream, "%08lx\t", insn[0]);
+  /* Read the insn into a host word.  */
+  status = (*info->read_memory_func) (memaddr, buffer, size, info);
+  if (status != 0)
+    {
+      (*info->memory_error_func) (status, memaddr, info);
+      return -1;
+    }
 
-  opcode_end = arc_opcodes + arc_opcodes_count;
-  for (opcode = arc_opcodes; opcode < opcode_end; opcode++)
+  if (info->section
+      && !(info->section->flags & SEC_CODE))
     {
-      char *syn;
-      int mods,invalid;
-      long value;
-      const struct arc_operand *operand;
-      const struct arc_operand_value *opval;
-
-      /* Basic bit mask must be correct.  */
-      if ((insn[0] & opcode->mask) != opcode->value)
-       continue;
+      /* Data section.  */
+      unsigned long data;
 
-      /* Supported by this cpu?  */
-      if (! arc_opcode_supported (opcode))
-       continue;
+      data = bfd_get_bits (buffer, size * 8,
+                          info->display_endian == BFD_ENDIAN_BIG);
+      switch (size)
+       {
+       case 1:
+         (*info->fprintf_func) (info->stream, ".byte\t0x%02lx", data);
+         break;
+       case 2:
+         (*info->fprintf_func) (info->stream, ".short\t0x%04lx", data);
+         break;
+       case 4:
+         (*info->fprintf_func) (info->stream, ".word\t0x%08lx", data);
+         break;
+       default:
+         abort ();
+       }
+      return size;
+    }
+
+  insnLen = arc_insn_length (buffer[lowbyte], info);
+  switch (insnLen)
+    {
+    case 2:
+      insn[0] = (buffer[lowbyte] << 8) | buffer[highbyte];
+      break;
+
+    default:
+      /* An unknown instruction is treated as being length 4.  This is
+         possibly not the best solution, but matches the behaviour that was
+         in place before the table based instruction length look-up was
+         introduced.  */
+    case 4:
+      /* This is a long instruction: Read the remaning 2 bytes.  */
+      status = (*info->read_memory_func) (memaddr + 2, &buffer[2], 2, info);
+      if (status != 0)
+       {
+         (*info->memory_error_func) (status, memaddr + 2, info);
+         return -1;
+       }
+      insn[0] = ARRANGE_ENDIAN (info, buffer);
+      break;
+    }
 
-      /* Make two passes over the operands.  First see if any of them
-        have extraction functions, and, if they do, make sure the
-        instruction is valid.  */
+  /* Set some defaults for the insn info.  */
+  info->insn_info_valid    = 1;
+  info->branch_delay_insns = 0;
+  info->data_size         = 0;
+  info->insn_type         = dis_nonbranch;
+  info->target            = 0;
+  info->target2                   = 0;
 
-      arc_opcode_init_extract ();
-      invalid = 0;
+  /* FIXME to be moved in dissasemble_init_for_target.  */
+  info->disassembler_needs_relocs = TRUE;
 
-      /* ??? Granted, this is slower than the `ppc' way.  Maybe when this is
-        done it'll be clear what the right way to do this is.  */
-      /* Instructions like "add.f r0,r1,1" are tricky because the ".f" gets
-        printed first, but we don't know how to print it until we've processed
-        the regs.  Since we're scanning all the args before printing the insn
-        anyways, it's actually quite easy.  */
+  /* Find the first match in the opcode table.  */
+  opcode = find_format (arc_opcodes, insn, insnLen, isa_mask);
 
-      for (syn = opcode->syntax; *syn; ++syn)
+  if (!opcode)
+    {
+      /* No instruction found.  Try the extensions.  */
+      einsn = arcExtMap_insn (OPCODE (insn[0]), insn[0]);
+      if (einsn)
        {
-         if (*syn != '%' || *++syn == '%')
-           continue;
-         mods = 0;
-         while (ARC_MOD_P (arc_operands[arc_operand_map[*syn]].flags))
+         const char *errmsg = NULL;
+         opcode = arcExtMap_genOpcode (einsn, isa_mask, &errmsg);
+         if (opcode == NULL)
            {
-             mods |= arc_operands[arc_operand_map[*syn]].flags & ARC_MOD_BITS;
-             ++syn;
+             (*info->fprintf_func) (info->stream,
+                                    "An error occured while "
+                                    "generating the extension instruction "
+                                    "operations");
+             return -1;
            }
-         operand = arc_operands + arc_operand_map[*syn];
-         if (operand->extract)
-           (*operand->extract) (insn, operand, mods,
-                                (const struct arc_operand_value **) NULL,
-                                &invalid);
+
+         opcode = find_format (opcode, insn, insnLen, isa_mask);
+         assert (opcode != NULL);
        }
-      if (invalid)
-       continue;
+      else
+       {
+         if (insnLen == 2)
+           (*info->fprintf_func) (info->stream, ".long %#04x", insn[0]);
+         else
+           (*info->fprintf_func) (info->stream, ".long %#08x", insn[0]);
+
+         info->insn_type = dis_noninsn;
+         return insnLen;
+       }
+    }
+
+  /* Print the mnemonic.  */
+  (*info->fprintf_func) (info->stream, "%s", opcode->name);
 
-      /* The instruction is valid.  */
+  /* Preselect the insn class.  */
+  switch (opcode->insn_class)
+    {
+    case BRANCH:
+    case JUMP:
+      if (!strncmp (opcode->name, "bl", 2)
+         || !strncmp (opcode->name, "jl", 2))
+       info->insn_type = dis_jsr;
+      else
+       info->insn_type = dis_branch;
+      break;
+    case MEMORY:
+      info->insn_type = dis_dref; /* FIXME! DB indicates mov as memory! */
+      break;
+    default:
+      info->insn_type = dis_nonbranch;
+      break;
+    }
+
+  pr_debug ("%s: 0x%08x\n", opcode->name, opcode->opcode);
+
+  print_flags (opcode, insn, info);
+
+  if (opcode->operands[0] != 0)
+    (*info->fprintf_func) (info->stream, "\t");
+
+  need_comma = FALSE;
+  open_braket = FALSE;
 
-      /* If we have an insn with a limm, fetch it now.  Scanning the insns
-        twice lets us do this.  */
-      if (arc_opcode_limm_p (NULL))
+  /* Now extract and print the operands.  */
+  for (opidx = opcode->operands; *opidx; opidx++)
+    {
+      const struct arc_operand *operand = &arc_operands[*opidx];
+      int value;
+
+      if (open_braket && (operand->flags & ARC_OPERAND_BRAKET))
        {
-         status = (*info->read_memory_func) (pc + 4, buffer, 4, info);
-         if (status != 0)
+         (*info->fprintf_func) (info->stream, "]");
+         open_braket = FALSE;
+         continue;
+       }
+
+      /* Only take input from real operands.  */
+      if ((operand->flags & ARC_OPERAND_FAKE)
+         && !(operand->flags & ARC_OPERAND_BRAKET))
+       continue;
+
+      if (operand->extract)
+       value = (*operand->extract) (insn[0], (int *) NULL);
+      else
+       {
+         if (operand->flags & ARC_OPERAND_ALIGNED32)
            {
-             (*info->memory_error_func) (status, pc, info);
-             return -1;
+             value = (insn[0] >> operand->shift)
+               & ((1 << (operand->bits - 2)) - 1);
+             value = value << 2;
            }
-         if (bigendian_p)
-           insn[1] = bfd_getb32 (buffer);
          else
-           insn[1] = bfd_getl32 (buffer);
-         got_limm_p = 1;
+           {
+             value = (insn[0] >> operand->shift) & ((1 << operand->bits) - 1);
+           }
+         if (operand->flags & ARC_OPERAND_SIGNED)
+           {
+             int signbit = 1 << (operand->bits - 1);
+             value = (value ^ signbit) - signbit;
+           }
        }
 
-      for (syn = opcode->syntax; *syn; ++syn)
+      if (operand->flags & ARC_OPERAND_IGNORE
+         && (operand->flags & ARC_OPERAND_IR
+             && value == -1))
+       continue;
+
+      if (need_comma)
+       (*info->fprintf_func) (info->stream, ",");
+
+      if (!open_braket && (operand->flags & ARC_OPERAND_BRAKET))
        {
-         if (*syn != '%' || *++syn == '%')
-           {
-             func (stream, "%c", *syn);
-             continue;
-           }
+         (*info->fprintf_func) (info->stream, "[");
+         open_braket = TRUE;
+         need_comma = FALSE;
+         continue;
+       }
 
-         /* We have an operand.  Fetch any special modifiers.  */
-         mods = 0;
-         while (ARC_MOD_P (arc_operands[arc_operand_map[*syn]].flags))
+      /* Read the limm operand, if required.  */
+      if (operand->flags & ARC_OPERAND_LIMM
+         && !(operand->flags & ARC_OPERAND_DUPLICATE))
+       {
+         status = (*info->read_memory_func) (memaddr + insnLen, buffer,
+                                             4, info);
+         if (status != 0)
            {
-             mods |= arc_operands[arc_operand_map[*syn]].flags & ARC_MOD_BITS;
-             ++syn;
+             (*info->memory_error_func) (status, memaddr + insnLen, info);
+             return -1;
            }
-         operand = arc_operands + arc_operand_map[*syn];
+         insn[1] = ARRANGE_ENDIAN (info, buffer);
+       }
 
-         /* Extract the value from the instruction.  */
-         opval = NULL;
-         if (operand->extract)
+      /* Print the operand as directed by the flags.  */
+      if (operand->flags & ARC_OPERAND_IR)
+       {
+         const char *rname;
+
+         assert (value >=0 && value < 64);
+         rname = arcExtMap_coreRegName (value);
+         if (!rname)
+           rname = regnames[value];
+         (*info->fprintf_func) (info->stream, "%s", rname);
+         if (operand->flags & ARC_OPERAND_TRUNCATE)
            {
-             value = (*operand->extract) (insn, operand, mods,
-                                          &opval, (int *) NULL);
+             rname = arcExtMap_coreRegName (value + 1);
+             if (!rname)
+               rname = regnames[value + 1];
+             (*info->fprintf_func) (info->stream, "%s", rname);
            }
+       }
+      else if (operand->flags & ARC_OPERAND_LIMM)
+       {
+         const char *rname = get_auxreg (opcode, insn[1], isa_mask);
+         if (rname && open_braket)
+           (*info->fprintf_func) (info->stream, "%s", rname);
          else
            {
-             value = (insn[0] >> operand->shift) & ((1 << operand->bits) - 1);
-             if ((operand->flags & ARC_OPERAND_SIGNED)
-                 && (value & (1 << (operand->bits - 1))))
-               value -= 1 << operand->bits;
-
-             /* If this is a suffix operand, set `opval'.  */
-             if (operand->flags & ARC_OPERAND_SUFFIX)
-               opval = arc_opcode_lookup_suffix (operand, value);
+             (*info->fprintf_func) (info->stream, "%#x", insn[1]);
+             if (info->insn_type == dis_branch
+                 || info->insn_type == dis_jsr)
+               info->target = (bfd_vma) insn[1];
            }
+       }
+      else if (operand->flags & ARC_OPERAND_PCREL)
+       {
+          /* PCL relative.  */
+         if (info->flags & INSN_HAS_RELOC)
+           memaddr = 0;
+         (*info->print_address_func) ((memaddr & ~3) + value, info);
 
-         /* Print the operand as directed by the flags.  */
-         if (operand->flags & ARC_OPERAND_FAKE)
-           ; /* nothing to do (??? at least not yet) */
-         else if (operand->flags & ARC_OPERAND_SUFFIX)
+         info->target = (bfd_vma) (memaddr & ~3) + value;
+       }
+      else if (operand->flags & ARC_OPERAND_SIGNED)
+       {
+         const char *rname = get_auxreg (opcode, value, isa_mask);
+         if (rname && open_braket)
+           (*info->fprintf_func) (info->stream, "%s", rname);
+         else
+           (*info->fprintf_func) (info->stream, "%d", value);
+       }
+      else
+       {
+         if (operand->flags & ARC_OPERAND_TRUNCATE
+             && !(operand->flags & ARC_OPERAND_ALIGNED32)
+             && !(operand->flags & ARC_OPERAND_ALIGNED16)
+             && value > 0 && value <= 14)
+           (*info->fprintf_func) (info->stream, "r13-%s",
+                                  regnames[13 + value - 1]);
+         else
            {
-             /* Default suffixes aren't printed.  Fortunately, they all have
-                zero values.  Also, zero values for boolean suffixes are
-                represented by the absence of text.  */
-
-             if (value != 0)
-               {
-                 /* ??? OPVAL should have a value.  If it doesn't just cope
-                    as we want disassembly to be reasonably robust.
-                    Also remember that several condition code values (16-31)
-                    aren't defined yet.  For these cases just print the
-                    number suitably decorated.  */
-                 if (opval)
-                   func (stream, "%s%s",
-                         mods & ARC_MOD_DOT ? "." : "",
-                         opval->name);
-                 else
-                   func (stream, "%s%c%d",
-                         mods & ARC_MOD_DOT ? "." : "",
-                         operand->fmt, value);
-               }
+             const char *rname = get_auxreg (opcode, value, isa_mask);
+             if (rname && open_braket)
+               (*info->fprintf_func) (info->stream, "%s", rname);
+             else
+               (*info->fprintf_func) (info->stream, "%#x", value);
            }
-         else if (operand->flags & ARC_OPERAND_RELATIVE)
-           (*info->print_address_func) (pc + 4 + value, info);
-         /* ??? Not all cases of this are currently caught.  */
-         else if (operand->flags & ARC_OPERAND_ABSOLUTE)
-           (*info->print_address_func) ((bfd_vma) value & 0xffffffff, info);
-         else if (opval)
-           /* Note that this case catches both normal and auxiliary regs.  */
-           func (stream, "%s", opval->name);
-         else
-           func (stream, "%ld", value);
        }
 
-      /* We have found and printed an instruction; return.  */
-      return got_limm_p ? 8 : 4;
+      need_comma = TRUE;
+
+      /* Adjust insn len.  */
+      if (operand->flags & ARC_OPERAND_LIMM
+         && !(operand->flags & ARC_OPERAND_DUPLICATE))
+       insnLen += 4;
     }
 
-  func (stream, "*unknown*");
-  return 4;
+  return insnLen;
 }
 
-/* Given ABFD, return the print_insn function to use.
-   This does things a non-standard way (the "standard" way would be to copy
-   this code into disassemble.c).  Since there are more than a couple of
-   variants, hiding all this crud here seems cleaner.  */
 
 disassembler_ftype
-arc_disassembler (bfd *abfd)
+arc_get_disassembler (bfd *abfd)
 {
-  int mach = bfd_get_mach (abfd);
+  /* Read the extenssion insns and registers, if any.  */
+  build_ARC_extmap (abfd);
+#ifdef DEBUG
+  dump_ARC_extmap ();
+#endif
 
-  switch (mach)
-    {
-    case bfd_mach_arc_base:
-      return print_insn_arc_base;
-    case bfd_mach_arc_host:
-      return print_insn_arc_host;
-    case bfd_mach_arc_graphics:
-      return print_insn_arc_graphics;
-    case bfd_mach_arc_audio:
-      return print_insn_arc_audio;
-    }
-  return print_insn_arc_base;
-}
-
-static int
-print_insn_arc_base (pc, info)
-     bfd_vma pc;
-     disassemble_info *info;
-{
-  return print_insn (pc, info, ARC_MACH_BASE);
+  return print_insn_arc;
 }
 
-/* Host CPU.  */
+/* Disassemble ARC instructions.  Used by debugger.  */
 
-static int
-print_insn_arc_host (pc, info)
-     bfd_vma pc;
-     disassemble_info *info;
-{
-  return print_insn (pc, info, ARC_MACH_HOST);
-}
-
-/* Graphics CPU.  */
-
-static int
-print_insn_arc_graphics (pc, info)
-     bfd_vma pc;
-     disassemble_info *info;
+struct arcDisState
+arcAnalyzeInstr (bfd_vma memaddr,
+                struct disassemble_info *info)
 {
-  return print_insn (pc, info, ARC_MACH_GRAPHICS);
+  struct arcDisState ret;
+  memset (&ret, 0, sizeof (struct arcDisState));
+
+  ret.instructionLen = print_insn_arc (memaddr, info);
+
+#if 0
+  ret.words[0] = insn[0];
+  ret.words[1] = insn[1];
+  ret._this = &ret;
+  ret.coreRegName = _coreRegName;
+  ret.auxRegName = _auxRegName;
+  ret.condCodeName = _condCodeName;
+  ret.instName = _instName;
+#endif
+
+  return ret;
 }
 
-/* Audio CPU.  */
-
-static int
-print_insn_arc_audio (pc, info)
-     bfd_vma pc;
-     disassemble_info *info;
-{
-  return print_insn (pc, info, ARC_MACH_AUDIO);
-}
+/* Local variables:
+   eval: (c-set-style "gnu")
+   indent-tabs-mode: t
+   End:  */
This page took 0.03291 seconds and 4 git commands to generate.