Home | History | Annotate | Line # | Download | only in bfd
mach-o-i386.c revision 1.1.1.2
      1      1.1  christos /* Intel i386 Mach-O support for BFD.
      2      1.1  christos    Copyright 2009
      3      1.1  christos    Free Software Foundation, Inc.
      4      1.1  christos 
      5      1.1  christos    This file is part of BFD, the Binary File Descriptor library.
      6      1.1  christos 
      7      1.1  christos    This program is free software; you can redistribute it and/or modify
      8      1.1  christos    it under the terms of the GNU General Public License as published by
      9      1.1  christos    the Free Software Foundation; either version 3 of the License, or
     10      1.1  christos    (at your option) any later version.
     11      1.1  christos 
     12      1.1  christos    This program is distributed in the hope that it will be useful,
     13      1.1  christos    but WITHOUT ANY WARRANTY; without even the implied warranty of
     14      1.1  christos    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     15      1.1  christos    GNU General Public License for more details.
     16      1.1  christos 
     17      1.1  christos    You should have received a copy of the GNU General Public License
     18      1.1  christos    along with this program; if not, write to the Free Software
     19      1.1  christos    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
     20      1.1  christos    MA 02110-1301, USA.  */
     21      1.1  christos 
     22      1.1  christos #include "sysdep.h"
     23      1.1  christos #include "mach-o.h"
     24      1.1  christos #include "bfd.h"
     25      1.1  christos #include "libbfd.h"
     26      1.1  christos #include "libiberty.h"
     27  1.1.1.2  christos #include "mach-o/reloc.h"
     28      1.1  christos 
     29      1.1  christos #define bfd_mach_o_object_p bfd_mach_o_i386_object_p
     30      1.1  christos #define bfd_mach_o_core_p bfd_mach_o_i386_core_p
     31      1.1  christos #define bfd_mach_o_mkobject bfd_mach_o_i386_mkobject
     32      1.1  christos 
     33      1.1  christos static const bfd_target *
     34      1.1  christos bfd_mach_o_i386_object_p (bfd *abfd)
     35      1.1  christos {
     36      1.1  christos   return bfd_mach_o_header_p (abfd, 0, BFD_MACH_O_CPU_TYPE_I386);
     37      1.1  christos }
     38      1.1  christos 
     39      1.1  christos static const bfd_target *
     40      1.1  christos bfd_mach_o_i386_core_p (bfd *abfd)
     41      1.1  christos {
     42      1.1  christos   return bfd_mach_o_header_p (abfd,
     43      1.1  christos                               BFD_MACH_O_MH_CORE, BFD_MACH_O_CPU_TYPE_I386);
     44      1.1  christos }
     45      1.1  christos 
     46      1.1  christos static bfd_boolean
     47      1.1  christos bfd_mach_o_i386_mkobject (bfd *abfd)
     48      1.1  christos {
     49      1.1  christos   bfd_mach_o_data_struct *mdata;
     50      1.1  christos 
     51      1.1  christos   if (!bfd_mach_o_mkobject_init (abfd))
     52      1.1  christos     return FALSE;
     53      1.1  christos 
     54      1.1  christos   mdata = bfd_mach_o_get_data (abfd);
     55      1.1  christos   mdata->header.magic = BFD_MACH_O_MH_MAGIC;
     56      1.1  christos   mdata->header.cputype = BFD_MACH_O_CPU_TYPE_I386;
     57      1.1  christos   mdata->header.cpusubtype = BFD_MACH_O_CPU_SUBTYPE_X86_ALL;
     58      1.1  christos   mdata->header.byteorder = BFD_ENDIAN_LITTLE;
     59      1.1  christos   mdata->header.version = 1;
     60      1.1  christos 
     61      1.1  christos   return TRUE;
     62      1.1  christos }
     63      1.1  christos 
     64      1.1  christos static reloc_howto_type i386_howto_table[]=
     65      1.1  christos {
     66  1.1.1.2  christos   /* 0 */
     67      1.1  christos   HOWTO(BFD_RELOC_32, 0, 2, 32, FALSE, 0,
     68      1.1  christos 	complain_overflow_bitfield,
     69      1.1  christos 	NULL, "32",
     70      1.1  christos 	FALSE, 0xffffffff, 0xffffffff, FALSE),
     71      1.1  christos   HOWTO(BFD_RELOC_16, 0, 1, 16, FALSE, 0,
     72      1.1  christos 	complain_overflow_bitfield,
     73      1.1  christos 	NULL, "16",
     74      1.1  christos 	FALSE, 0xffff, 0xffff, FALSE),
     75      1.1  christos   HOWTO(BFD_RELOC_8, 0, 0, 8, FALSE, 0,
     76      1.1  christos 	complain_overflow_bitfield,
     77      1.1  christos 	NULL, "8",
     78      1.1  christos 	FALSE, 0xff, 0xff, FALSE),
     79      1.1  christos   HOWTO(BFD_RELOC_32_PCREL, 0, 2, 32, TRUE, 0,
     80      1.1  christos 	complain_overflow_bitfield,
     81      1.1  christos 	NULL, "DISP32",
     82      1.1  christos 	FALSE, 0xffffffff, 0xffffffff, TRUE),
     83  1.1.1.2  christos   /* 4 */
     84      1.1  christos   HOWTO(BFD_RELOC_16_PCREL, 0, 1, 16, TRUE, 0,
     85      1.1  christos 	complain_overflow_bitfield,
     86      1.1  christos 	NULL, "DISP16",
     87      1.1  christos 	FALSE, 0xffff, 0xffff, TRUE),
     88      1.1  christos   HOWTO(BFD_RELOC_MACH_O_SECTDIFF, 0, 2, 32, FALSE, 0,
     89      1.1  christos 	complain_overflow_bitfield,
     90      1.1  christos 	NULL, "SECTDIFF_32",
     91      1.1  christos 	FALSE, 0xffffffff, 0xffffffff, FALSE),
     92  1.1.1.2  christos   HOWTO(BFD_RELOC_MACH_O_LOCAL_SECTDIFF, 0, 2, 32, FALSE, 0,
     93  1.1.1.2  christos 	complain_overflow_bitfield,
     94  1.1.1.2  christos 	NULL, "LSECTDIFF_32",
     95  1.1.1.2  christos 	FALSE, 0xffffffff, 0xffffffff, FALSE),
     96      1.1  christos   HOWTO(BFD_RELOC_MACH_O_PAIR, 0, 2, 32, FALSE, 0,
     97      1.1  christos 	complain_overflow_bitfield,
     98      1.1  christos 	NULL, "PAIR_32",
     99      1.1  christos 	FALSE, 0xffffffff, 0xffffffff, FALSE),
    100  1.1.1.2  christos   /* 8 */
    101  1.1.1.2  christos   HOWTO(BFD_RELOC_MACH_O_SECTDIFF, 0, 1, 16, FALSE, 0,
    102  1.1.1.2  christos 	complain_overflow_bitfield,
    103  1.1.1.2  christos 	NULL, "SECTDIFF_16",
    104  1.1.1.2  christos 	FALSE, 0xffff, 0xffff, FALSE),
    105  1.1.1.2  christos   HOWTO(BFD_RELOC_MACH_O_LOCAL_SECTDIFF, 0, 1, 16, FALSE, 0,
    106  1.1.1.2  christos 	complain_overflow_bitfield,
    107  1.1.1.2  christos 	NULL, "LSECTDIFF_16",
    108  1.1.1.2  christos 	FALSE, 0xffff, 0xffff, FALSE),
    109  1.1.1.2  christos   HOWTO(BFD_RELOC_MACH_O_PAIR, 0, 1, 16, FALSE, 0,
    110  1.1.1.2  christos 	complain_overflow_bitfield,
    111  1.1.1.2  christos 	NULL, "PAIR_16",
    112  1.1.1.2  christos 	FALSE, 0xffff, 0xffff, FALSE),
    113      1.1  christos };
    114      1.1  christos 
    115      1.1  christos static bfd_boolean
    116      1.1  christos bfd_mach_o_i386_swap_reloc_in (arelent *res, bfd_mach_o_reloc_info *reloc)
    117      1.1  christos {
    118      1.1  christos   if (reloc->r_scattered)
    119      1.1  christos     {
    120      1.1  christos       switch (reloc->r_type)
    121      1.1  christos         {
    122      1.1  christos         case BFD_MACH_O_GENERIC_RELOC_PAIR:
    123  1.1.1.2  christos           if (reloc->r_length == 2)
    124  1.1.1.2  christos             {
    125  1.1.1.2  christos 	      res->howto = &i386_howto_table[7];
    126  1.1.1.2  christos 	      res->address = res[-1].address;
    127  1.1.1.2  christos 	      return TRUE;
    128  1.1.1.2  christos             }
    129  1.1.1.2  christos           else if (reloc->r_length == 1)
    130  1.1.1.2  christos 	    {
    131  1.1.1.2  christos 	      res->howto = &i386_howto_table[10];
    132  1.1.1.2  christos 	      res->address = res[-1].address;
    133  1.1.1.2  christos 	      return TRUE;
    134  1.1.1.2  christos 	    }
    135  1.1.1.2  christos           return FALSE;
    136      1.1  christos         case BFD_MACH_O_GENERIC_RELOC_SECTDIFF:
    137  1.1.1.2  christos           if (reloc->r_length == 2)
    138  1.1.1.2  christos             {
    139  1.1.1.2  christos 	      res->howto = &i386_howto_table[5];
    140  1.1.1.2  christos 	      return TRUE;
    141  1.1.1.2  christos             }
    142  1.1.1.2  christos           else if (reloc->r_length == 1)
    143  1.1.1.2  christos             {
    144  1.1.1.2  christos 	      res->howto = &i386_howto_table[8];
    145  1.1.1.2  christos 	      return TRUE;
    146  1.1.1.2  christos             }
    147  1.1.1.2  christos           return FALSE;
    148      1.1  christos         case BFD_MACH_O_GENERIC_RELOC_LOCAL_SECTDIFF:
    149  1.1.1.2  christos           if (reloc->r_length == 2)
    150  1.1.1.2  christos             {
    151  1.1.1.2  christos 	      res->howto = &i386_howto_table[6];
    152  1.1.1.2  christos 	      return TRUE;
    153  1.1.1.2  christos             }
    154  1.1.1.2  christos           else if (reloc->r_length == 1)
    155  1.1.1.2  christos             {
    156  1.1.1.2  christos 	      res->howto = &i386_howto_table[9];
    157  1.1.1.2  christos 	      return TRUE;
    158  1.1.1.2  christos             }
    159  1.1.1.2  christos           return FALSE;
    160      1.1  christos         default:
    161      1.1  christos           return FALSE;
    162      1.1  christos         }
    163      1.1  christos     }
    164      1.1  christos   else
    165      1.1  christos     {
    166      1.1  christos       switch (reloc->r_type)
    167      1.1  christos         {
    168      1.1  christos         case BFD_MACH_O_GENERIC_RELOC_VANILLA:
    169      1.1  christos           switch ((reloc->r_length << 1) | reloc->r_pcrel)
    170      1.1  christos             {
    171      1.1  christos             case 0: /* len = 0, pcrel = 0  */
    172      1.1  christos               res->howto = &i386_howto_table[2];
    173      1.1  christos               return TRUE;
    174      1.1  christos             case 2: /* len = 1, pcrel = 0  */
    175      1.1  christos               res->howto = &i386_howto_table[1];
    176      1.1  christos               return TRUE;
    177      1.1  christos             case 3: /* len = 1, pcrel = 1  */
    178      1.1  christos               res->howto = &i386_howto_table[4];
    179      1.1  christos               return TRUE;
    180      1.1  christos             case 4: /* len = 2, pcrel = 0  */
    181      1.1  christos               res->howto = &i386_howto_table[0];
    182      1.1  christos               return TRUE;
    183      1.1  christos             case 5: /* len = 2, pcrel = 1  */
    184      1.1  christos               res->howto = &i386_howto_table[3];
    185      1.1  christos               return TRUE;
    186      1.1  christos             default:
    187      1.1  christos               return FALSE;
    188      1.1  christos             }
    189      1.1  christos           break;
    190      1.1  christos         default:
    191      1.1  christos           return FALSE;
    192      1.1  christos         }
    193      1.1  christos     }
    194      1.1  christos }
    195      1.1  christos 
    196      1.1  christos static bfd_boolean
    197      1.1  christos bfd_mach_o_i386_swap_reloc_out (arelent *rel, bfd_mach_o_reloc_info *rinfo)
    198      1.1  christos {
    199      1.1  christos   rinfo->r_address = rel->address;
    200      1.1  christos   switch (rel->howto->type)
    201      1.1  christos     {
    202      1.1  christos     case BFD_RELOC_32:
    203      1.1  christos     case BFD_RELOC_32_PCREL:
    204      1.1  christos     case BFD_RELOC_16:
    205      1.1  christos     case BFD_RELOC_16_PCREL:
    206      1.1  christos     case BFD_RELOC_8:
    207      1.1  christos       rinfo->r_scattered = 0;
    208      1.1  christos       rinfo->r_type = BFD_MACH_O_GENERIC_RELOC_VANILLA;
    209      1.1  christos       rinfo->r_pcrel = rel->howto->pc_relative;
    210      1.1  christos       rinfo->r_length = rel->howto->size; /* Correct in practice.  */
    211      1.1  christos       if ((*rel->sym_ptr_ptr)->flags & BSF_SECTION_SYM)
    212      1.1  christos         {
    213      1.1  christos           rinfo->r_extern = 0;
    214      1.1  christos           rinfo->r_value = (*rel->sym_ptr_ptr)->section->target_index;
    215      1.1  christos         }
    216      1.1  christos       else
    217      1.1  christos         {
    218      1.1  christos           rinfo->r_extern = 1;
    219      1.1  christos           rinfo->r_value = (*rel->sym_ptr_ptr)->udata.i;
    220      1.1  christos         }
    221      1.1  christos       break;
    222      1.1  christos     case BFD_RELOC_MACH_O_SECTDIFF:
    223      1.1  christos       rinfo->r_scattered = 1;
    224      1.1  christos       rinfo->r_type = BFD_MACH_O_GENERIC_RELOC_SECTDIFF;
    225      1.1  christos       rinfo->r_pcrel = 0;
    226  1.1.1.2  christos       rinfo->r_length = rel->howto->size;
    227      1.1  christos       rinfo->r_extern = 0;
    228  1.1.1.2  christos       rinfo->r_value = rel->addend;
    229  1.1.1.2  christos       break;
    230  1.1.1.2  christos     case BFD_RELOC_MACH_O_LOCAL_SECTDIFF:
    231  1.1.1.2  christos       rinfo->r_scattered = 1;
    232  1.1.1.2  christos       rinfo->r_type = BFD_MACH_O_GENERIC_RELOC_LOCAL_SECTDIFF;
    233  1.1.1.2  christos       rinfo->r_pcrel = 0;
    234  1.1.1.2  christos       rinfo->r_length = rel->howto->size;
    235  1.1.1.2  christos       rinfo->r_extern = 0;
    236  1.1.1.2  christos       rinfo->r_value = rel->addend;
    237      1.1  christos       break;
    238      1.1  christos     case BFD_RELOC_MACH_O_PAIR:
    239      1.1  christos       rinfo->r_address = 0;
    240      1.1  christos       rinfo->r_scattered = 1;
    241      1.1  christos       rinfo->r_type = BFD_MACH_O_GENERIC_RELOC_PAIR;
    242      1.1  christos       rinfo->r_pcrel = 0;
    243  1.1.1.2  christos       rinfo->r_length = rel->howto->size;
    244      1.1  christos       rinfo->r_extern = 0;
    245  1.1.1.2  christos       rinfo->r_value = rel->addend;
    246      1.1  christos       break;
    247      1.1  christos     default:
    248      1.1  christos       return FALSE;
    249      1.1  christos     }
    250      1.1  christos   return TRUE;
    251      1.1  christos }
    252      1.1  christos 
    253      1.1  christos static reloc_howto_type *
    254      1.1  christos bfd_mach_o_i386_bfd_reloc_type_lookup (bfd *abfd ATTRIBUTE_UNUSED,
    255      1.1  christos                                        bfd_reloc_code_real_type code)
    256      1.1  christos {
    257      1.1  christos   unsigned int i;
    258      1.1  christos 
    259      1.1  christos   for (i = 0; i < sizeof (i386_howto_table) / sizeof (*i386_howto_table); i++)
    260      1.1  christos     if (code == i386_howto_table[i].type)
    261      1.1  christos       return &i386_howto_table[i];
    262      1.1  christos   return NULL;
    263      1.1  christos }
    264      1.1  christos 
    265      1.1  christos static reloc_howto_type *
    266      1.1  christos bfd_mach_o_i386_bfd_reloc_name_lookup (bfd *abfd ATTRIBUTE_UNUSED,
    267      1.1  christos                                        const char *name ATTRIBUTE_UNUSED)
    268      1.1  christos {
    269      1.1  christos   return NULL;
    270      1.1  christos }
    271      1.1  christos 
    272      1.1  christos static bfd_boolean
    273      1.1  christos bfd_mach_o_i386_print_thread (bfd *abfd, bfd_mach_o_thread_flavour *thread,
    274      1.1  christos                               void *vfile, char *buf)
    275      1.1  christos {
    276      1.1  christos   FILE *file = (FILE *)vfile;
    277      1.1  christos 
    278      1.1  christos   switch (thread->flavour)
    279      1.1  christos     {
    280      1.1  christos     case BFD_MACH_O_x86_THREAD_STATE:
    281      1.1  christos       if (thread->size < (8 + 16 * 4))
    282      1.1  christos         return FALSE;
    283      1.1  christos       fprintf (file, "   x86_THREAD_STATE:\n");
    284      1.1  christos       fprintf (file, "    flavor: 0x%08lx  count: 0x%08lx\n",
    285      1.1  christos                (unsigned long)bfd_get_32 (abfd, buf + 0),
    286      1.1  christos                (unsigned long)bfd_get_32 (abfd, buf + 4));
    287      1.1  christos       fprintf (file, "     eax: %08lx  ebx: %08lx  ecx: %08lx  edx: %08lx\n",
    288      1.1  christos                (unsigned long)bfd_get_32 (abfd, buf + 8),
    289      1.1  christos                (unsigned long)bfd_get_32 (abfd, buf + 12),
    290      1.1  christos                (unsigned long)bfd_get_32 (abfd, buf + 16),
    291      1.1  christos                (unsigned long)bfd_get_32 (abfd, buf + 20));
    292      1.1  christos       fprintf (file, "     edi: %08lx  esi: %08lx  ebp: %08lx  esp: %08lx\n",
    293      1.1  christos                (unsigned long)bfd_get_32 (abfd, buf + 24),
    294      1.1  christos                (unsigned long)bfd_get_32 (abfd, buf + 28),
    295      1.1  christos                (unsigned long)bfd_get_32 (abfd, buf + 32),
    296      1.1  christos                (unsigned long)bfd_get_32 (abfd, buf + 36));
    297      1.1  christos       fprintf (file, "      ss: %08lx  flg: %08lx  eip: %08lx   cs: %08lx\n",
    298      1.1  christos                (unsigned long)bfd_get_32 (abfd, buf + 40),
    299      1.1  christos                (unsigned long)bfd_get_32 (abfd, buf + 44),
    300      1.1  christos                (unsigned long)bfd_get_32 (abfd, buf + 48),
    301      1.1  christos                (unsigned long)bfd_get_32 (abfd, buf + 52));
    302      1.1  christos       fprintf (file, "      ds: %08lx   es: %08lx   fs: %08lx   gs: %08lx\n",
    303      1.1  christos                (unsigned long)bfd_get_32 (abfd, buf + 56),
    304      1.1  christos                (unsigned long)bfd_get_32 (abfd, buf + 60),
    305      1.1  christos                (unsigned long)bfd_get_32 (abfd, buf + 64),
    306      1.1  christos                (unsigned long)bfd_get_32 (abfd, buf + 68));
    307      1.1  christos       return TRUE;
    308      1.1  christos     case BFD_MACH_O_x86_FLOAT_STATE:
    309      1.1  christos       if (thread->size < 8)
    310      1.1  christos         return FALSE;
    311      1.1  christos       fprintf (file, "   x86_FLOAT_STATE:\n");
    312      1.1  christos       fprintf (file, "    flavor: 0x%08lx  count: 0x%08lx\n",
    313      1.1  christos                (unsigned long)bfd_get_32 (abfd, buf + 0),
    314      1.1  christos                (unsigned long)bfd_get_32 (abfd, buf + 4));
    315      1.1  christos       return TRUE;
    316      1.1  christos     case BFD_MACH_O_x86_EXCEPTION_STATE:
    317      1.1  christos       if (thread->size < 8 + 3 * 4)
    318      1.1  christos         return FALSE;
    319      1.1  christos       fprintf (file, "   x86_EXCEPTION_STATE:\n");
    320      1.1  christos       fprintf (file, "    flavor: 0x%08lx  count: 0x%08lx\n",
    321      1.1  christos                (unsigned long)bfd_get_32 (abfd, buf + 0),
    322      1.1  christos                (unsigned long)bfd_get_32 (abfd, buf + 4));
    323      1.1  christos       fprintf (file, "    trapno: %08lx  err: %08lx  faultaddr: %08lx\n",
    324      1.1  christos                (unsigned long)bfd_get_32 (abfd, buf + 8),
    325      1.1  christos                (unsigned long)bfd_get_32 (abfd, buf + 12),
    326      1.1  christos                (unsigned long)bfd_get_32 (abfd, buf + 16));
    327      1.1  christos       return TRUE;
    328      1.1  christos     default:
    329      1.1  christos       break;
    330      1.1  christos     }
    331      1.1  christos   return FALSE;
    332      1.1  christos }
    333      1.1  christos 
    334  1.1.1.2  christos static const mach_o_section_name_xlat text_section_names_xlat[] =
    335  1.1.1.2  christos   {
    336  1.1.1.2  christos     {	".symbol_stub",			"__symbol_stub",
    337  1.1.1.2  christos 	SEC_CODE | SEC_LOAD,		BFD_MACH_O_S_SYMBOL_STUBS,
    338  1.1.1.2  christos 	BFD_MACH_O_S_ATTR_PURE_INSTRUCTIONS,
    339  1.1.1.2  christos 					0},
    340  1.1.1.2  christos     {	".picsymbol_stub",		"__picsymbol_stub",
    341  1.1.1.2  christos 	SEC_CODE | SEC_LOAD,		BFD_MACH_O_S_SYMBOL_STUBS,
    342  1.1.1.2  christos 	BFD_MACH_O_S_ATTR_PURE_INSTRUCTIONS,
    343  1.1.1.2  christos 					0},
    344  1.1.1.2  christos     { NULL, NULL, 0, 0, 0, 0}
    345  1.1.1.2  christos   };
    346  1.1.1.2  christos 
    347  1.1.1.2  christos static const mach_o_section_name_xlat data_section_names_xlat[] =
    348  1.1.1.2  christos   {
    349  1.1.1.2  christos     /* The first two are recognized by i386, but not emitted for x86 by
    350  1.1.1.2  christos        modern GCC.  */
    351  1.1.1.2  christos     {	".non_lazy_symbol_pointer",	"__nl_symbol_ptr",
    352  1.1.1.2  christos 	SEC_DATA | SEC_LOAD,		BFD_MACH_O_S_NON_LAZY_SYMBOL_POINTERS,
    353  1.1.1.2  christos 	BFD_MACH_O_S_ATTR_NONE,		2},
    354  1.1.1.2  christos     {	".lazy_symbol_pointer",		"__la_symbol_ptr",
    355  1.1.1.2  christos 	SEC_DATA | SEC_LOAD,		BFD_MACH_O_S_LAZY_SYMBOL_POINTERS,
    356  1.1.1.2  christos 	BFD_MACH_O_S_ATTR_NONE,		2},
    357  1.1.1.2  christos     {	".lazy_symbol_pointer2",	"__la_sym_ptr2",
    358  1.1.1.2  christos 	SEC_DATA | SEC_LOAD,		BFD_MACH_O_S_LAZY_SYMBOL_POINTERS,
    359  1.1.1.2  christos 	BFD_MACH_O_S_ATTR_NONE,		2},
    360  1.1.1.2  christos     {	".lazy_symbol_pointer3",	"__la_sym_ptr3",
    361  1.1.1.2  christos 	SEC_DATA | SEC_LOAD,		BFD_MACH_O_S_LAZY_SYMBOL_POINTERS,
    362  1.1.1.2  christos 	BFD_MACH_O_S_ATTR_NONE,		2},
    363  1.1.1.2  christos     { NULL, NULL, 0, 0, 0, 0}
    364  1.1.1.2  christos   };
    365  1.1.1.2  christos 
    366  1.1.1.2  christos static const mach_o_section_name_xlat import_section_names_xlat[] =
    367  1.1.1.2  christos   {
    368  1.1.1.2  christos     {	".picsymbol_stub3",		"__jump_table",
    369  1.1.1.2  christos 	SEC_CODE | SEC_LOAD,		BFD_MACH_O_S_SYMBOL_STUBS,
    370  1.1.1.2  christos 	BFD_MACH_O_S_ATTR_PURE_INSTRUCTIONS
    371  1.1.1.2  christos 	| BFD_MACH_O_S_SELF_MODIFYING_CODE,
    372  1.1.1.2  christos 					6},
    373  1.1.1.2  christos     {	".non_lazy_symbol_pointer_x86",	"__pointers",
    374  1.1.1.2  christos 	SEC_DATA | SEC_LOAD,		BFD_MACH_O_S_NON_LAZY_SYMBOL_POINTERS,
    375  1.1.1.2  christos 	BFD_MACH_O_S_ATTR_NONE,		2},
    376  1.1.1.2  christos     { NULL, NULL, 0, 0, 0, 0}
    377  1.1.1.2  christos   };
    378  1.1.1.2  christos 
    379  1.1.1.2  christos const mach_o_segment_name_xlat mach_o_i386_segsec_names_xlat[] =
    380  1.1.1.2  christos   {
    381  1.1.1.2  christos     { "__TEXT", text_section_names_xlat },
    382  1.1.1.2  christos     { "__DATA", data_section_names_xlat },
    383  1.1.1.2  christos     { "__IMPORT", import_section_names_xlat },
    384  1.1.1.2  christos     { NULL, NULL }
    385  1.1.1.2  christos   };
    386  1.1.1.2  christos 
    387      1.1  christos #define bfd_mach_o_swap_reloc_in bfd_mach_o_i386_swap_reloc_in
    388      1.1  christos #define bfd_mach_o_swap_reloc_out bfd_mach_o_i386_swap_reloc_out
    389      1.1  christos #define bfd_mach_o_print_thread bfd_mach_o_i386_print_thread
    390      1.1  christos 
    391  1.1.1.2  christos #define bfd_mach_o_tgt_seg_table mach_o_i386_segsec_names_xlat
    392  1.1.1.2  christos #define bfd_mach_o_section_type_valid_for_tgt NULL
    393  1.1.1.2  christos 
    394      1.1  christos #define bfd_mach_o_bfd_reloc_type_lookup bfd_mach_o_i386_bfd_reloc_type_lookup
    395      1.1  christos #define bfd_mach_o_bfd_reloc_name_lookup bfd_mach_o_i386_bfd_reloc_name_lookup
    396      1.1  christos 
    397      1.1  christos #define TARGET_NAME 		mach_o_i386_vec
    398      1.1  christos #define TARGET_STRING 		"mach-o-i386"
    399      1.1  christos #define TARGET_ARCHITECTURE	bfd_arch_i386
    400      1.1  christos #define TARGET_BIG_ENDIAN 	0
    401      1.1  christos #define TARGET_ARCHIVE 		0
    402  1.1.1.2  christos #define TARGET_PRIORITY		0
    403      1.1  christos #include "mach-o-target.c"
    404