OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [insight/] [bfd/] [cpu-sh.c] - Diff between revs 578 and 1765

Only display areas with differences | Details | Blame | View Log

Rev 578 Rev 1765
/* BFD library support routines for the Hitachi-SH architecture.
/* BFD library support routines for the Hitachi-SH architecture.
   Copyright 1993, 1994, 1997, 1998, 2000 Free Software Foundation, Inc.
   Copyright 1993, 1994, 1997, 1998, 2000 Free Software Foundation, Inc.
   Hacked by Steve Chamberlain of Cygnus Support.
   Hacked by Steve Chamberlain of Cygnus Support.
 
 
This file is part of BFD, the Binary File Descriptor library.
This file is part of BFD, the Binary File Descriptor library.
 
 
This program is free software; you can redistribute it and/or modify
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
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
(at your option) any later version.
 
 
This program is distributed in the hope that it will be useful,
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.
GNU General Public License for more details.
 
 
You should have received a copy of the GNU General Public License
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
 
 
#include "bfd.h"
#include "bfd.h"
#include "sysdep.h"
#include "sysdep.h"
#include "libbfd.h"
#include "libbfd.h"
 
 
static boolean
static boolean
scan_mach (info, string)
scan_mach (info, string)
     const struct bfd_arch_info *info;
     const struct bfd_arch_info *info;
     const char *string;
     const char *string;
{
{
  if (strcasecmp (info->printable_name, string) == 0)
  if (strcasecmp (info->printable_name, string) == 0)
    return true;
    return true;
  return false;
  return false;
}
}
 
 
#if 0
#if 0
/* This routine is provided two arch_infos and returns whether
/* This routine is provided two arch_infos and returns whether
   they'd be compatible */
   they'd be compatible */
 
 
static const bfd_arch_info_type *
static const bfd_arch_info_type *
compatible (a,b)
compatible (a,b)
     const bfd_arch_info_type *a;
     const bfd_arch_info_type *a;
     const bfd_arch_info_type *b;
     const bfd_arch_info_type *b;
{
{
  if (a->arch != b->arch || a->mach != b->mach)
  if (a->arch != b->arch || a->mach != b->mach)
   return NULL;
   return NULL;
  return a;
  return a;
}
}
#endif
#endif
 
 
#define SH_NEXT      &arch_info_struct[0]
#define SH_NEXT      &arch_info_struct[0]
#define SH2_NEXT     &arch_info_struct[1]
#define SH2_NEXT     &arch_info_struct[1]
#define SH_DSP_NEXT  &arch_info_struct[2]
#define SH_DSP_NEXT  &arch_info_struct[2]
#define SH3_NEXT     &arch_info_struct[3]
#define SH3_NEXT     &arch_info_struct[3]
#define SH3_DSP_NEXT &arch_info_struct[4]
#define SH3_DSP_NEXT &arch_info_struct[4]
#define SH3E_NEXT    &arch_info_struct[5]
#define SH3E_NEXT    &arch_info_struct[5]
#define SH4_NEXT     NULL
#define SH4_NEXT     NULL
 
 
static const bfd_arch_info_type arch_info_struct[] =
static const bfd_arch_info_type arch_info_struct[] =
{
{
  {
  {
    32,                         /* 32 bits in a word */
    32,                         /* 32 bits in a word */
    32,                         /* 32 bits in an address */
    32,                         /* 32 bits in an address */
    8,                          /* 8 bits in a byte */
    8,                          /* 8 bits in a byte */
    bfd_arch_sh,
    bfd_arch_sh,
    bfd_mach_sh2,
    bfd_mach_sh2,
    "sh",                       /* arch_name  */
    "sh",                       /* arch_name  */
    "sh2",                      /* printable name */
    "sh2",                      /* printable name */
    1,
    1,
    false,                      /* not the default */
    false,                      /* not the default */
    bfd_default_compatible,
    bfd_default_compatible,
    scan_mach,
    scan_mach,
    SH2_NEXT
    SH2_NEXT
  },
  },
  {
  {
    32,                         /* 32 bits in a word */
    32,                         /* 32 bits in a word */
    32,                         /* 32 bits in an address */
    32,                         /* 32 bits in an address */
    8,                          /* 8 bits in a byte */
    8,                          /* 8 bits in a byte */
    bfd_arch_sh,
    bfd_arch_sh,
    bfd_mach_sh_dsp,
    bfd_mach_sh_dsp,
    "sh",                       /* arch_name  */
    "sh",                       /* arch_name  */
    "sh-dsp",                   /* printable name */
    "sh-dsp",                   /* printable name */
    1,
    1,
    false,                      /* not the default */
    false,                      /* not the default */
    bfd_default_compatible,
    bfd_default_compatible,
    scan_mach,
    scan_mach,
    SH_DSP_NEXT
    SH_DSP_NEXT
  },
  },
  {
  {
    32,                         /* 32 bits in a word */
    32,                         /* 32 bits in a word */
    32,                         /* 32 bits in an address */
    32,                         /* 32 bits in an address */
    8,                          /* 8 bits in a byte */
    8,                          /* 8 bits in a byte */
    bfd_arch_sh,
    bfd_arch_sh,
    bfd_mach_sh3,
    bfd_mach_sh3,
    "sh",                       /* arch_name  */
    "sh",                       /* arch_name  */
    "sh3",                      /* printable name */
    "sh3",                      /* printable name */
    1,
    1,
    false,                      /* not the default */
    false,                      /* not the default */
    bfd_default_compatible,
    bfd_default_compatible,
    scan_mach,
    scan_mach,
    SH3_NEXT
    SH3_NEXT
  },
  },
  {
  {
    32,                         /* 32 bits in a word */
    32,                         /* 32 bits in a word */
    32,                         /* 32 bits in an address */
    32,                         /* 32 bits in an address */
    8,                          /* 8 bits in a byte */
    8,                          /* 8 bits in a byte */
    bfd_arch_sh,
    bfd_arch_sh,
    bfd_mach_sh3_dsp,
    bfd_mach_sh3_dsp,
    "sh",                       /* arch_name  */
    "sh",                       /* arch_name  */
    "sh3-dsp",                  /* printable name */
    "sh3-dsp",                  /* printable name */
    1,
    1,
    false,                      /* not the default */
    false,                      /* not the default */
    bfd_default_compatible,
    bfd_default_compatible,
    scan_mach,
    scan_mach,
    SH3_DSP_NEXT
    SH3_DSP_NEXT
  },
  },
  {
  {
    32,                         /* 32 bits in a word */
    32,                         /* 32 bits in a word */
    32,                         /* 32 bits in an address */
    32,                         /* 32 bits in an address */
    8,                          /* 8 bits in a byte */
    8,                          /* 8 bits in a byte */
    bfd_arch_sh,
    bfd_arch_sh,
    bfd_mach_sh3e,
    bfd_mach_sh3e,
    "sh",                       /* arch_name  */
    "sh",                       /* arch_name  */
    "sh3e",                     /* printable name */
    "sh3e",                     /* printable name */
    1,
    1,
    false,                      /* not the default */
    false,                      /* not the default */
    bfd_default_compatible,
    bfd_default_compatible,
    scan_mach,
    scan_mach,
    SH3E_NEXT
    SH3E_NEXT
  },
  },
  {
  {
    32,                         /* 32 bits in a word */
    32,                         /* 32 bits in a word */
    32,                         /* 32 bits in an address */
    32,                         /* 32 bits in an address */
    8,                          /* 8 bits in a byte */
    8,                          /* 8 bits in a byte */
    bfd_arch_sh,
    bfd_arch_sh,
    bfd_mach_sh4,
    bfd_mach_sh4,
    "sh",                       /* arch_name  */
    "sh",                       /* arch_name  */
    "sh4",                      /* printable name */
    "sh4",                      /* printable name */
    1,
    1,
    false,                      /* not the default */
    false,                      /* not the default */
    bfd_default_compatible,
    bfd_default_compatible,
    scan_mach,
    scan_mach,
    SH4_NEXT
    SH4_NEXT
  },
  },
};
};
 
 
const bfd_arch_info_type bfd_sh_arch =
const bfd_arch_info_type bfd_sh_arch =
{
{
  32,                           /* 32 bits in a word */
  32,                           /* 32 bits in a word */
  32,                           /* 32 bits in an address */
  32,                           /* 32 bits in an address */
  8,                            /* 8 bits in a byte */
  8,                            /* 8 bits in a byte */
  bfd_arch_sh,
  bfd_arch_sh,
  bfd_mach_sh,
  bfd_mach_sh,
  "sh",                         /* arch_name  */
  "sh",                         /* arch_name  */
  "sh",                         /* printable name */
  "sh",                         /* printable name */
  1,
  1,
  true,                         /* the default machine */
  true,                         /* the default machine */
  bfd_default_compatible,
  bfd_default_compatible,
  scan_mach,
  scan_mach,
  SH_NEXT
  SH_NEXT
};
};
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.