Home | History | Annotate | Line # | Download | only in bfd
elf32-spu.c revision 1.1.1.1
      1  1.1  christos /* SPU specific support for 32-bit ELF
      2  1.1  christos 
      3  1.1  christos    Copyright 2006, 2007, 2008, 2009, 2010 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 along
     18  1.1  christos    with this program; if not, write to the Free Software Foundation, Inc.,
     19  1.1  christos    51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
     20  1.1  christos 
     21  1.1  christos #include "sysdep.h"
     22  1.1  christos #include "libiberty.h"
     23  1.1  christos #include "bfd.h"
     24  1.1  christos #include "bfdlink.h"
     25  1.1  christos #include "libbfd.h"
     26  1.1  christos #include "elf-bfd.h"
     27  1.1  christos #include "elf/spu.h"
     28  1.1  christos #include "elf32-spu.h"
     29  1.1  christos 
     30  1.1  christos /* We use RELA style relocs.  Don't define USE_REL.  */
     31  1.1  christos 
     32  1.1  christos static bfd_reloc_status_type spu_elf_rel9 (bfd *, arelent *, asymbol *,
     33  1.1  christos 					   void *, asection *,
     34  1.1  christos 					   bfd *, char **);
     35  1.1  christos 
     36  1.1  christos /* Values of type 'enum elf_spu_reloc_type' are used to index this
     37  1.1  christos    array, so it must be declared in the order of that type.  */
     38  1.1  christos 
     39  1.1  christos static reloc_howto_type elf_howto_table[] = {
     40  1.1  christos   HOWTO (R_SPU_NONE,       0, 0,  0, FALSE,  0, complain_overflow_dont,
     41  1.1  christos 	 bfd_elf_generic_reloc, "SPU_NONE",
     42  1.1  christos 	 FALSE, 0, 0x00000000, FALSE),
     43  1.1  christos   HOWTO (R_SPU_ADDR10,     4, 2, 10, FALSE, 14, complain_overflow_bitfield,
     44  1.1  christos 	 bfd_elf_generic_reloc, "SPU_ADDR10",
     45  1.1  christos 	 FALSE, 0, 0x00ffc000, FALSE),
     46  1.1  christos   HOWTO (R_SPU_ADDR16,     2, 2, 16, FALSE,  7, complain_overflow_bitfield,
     47  1.1  christos 	 bfd_elf_generic_reloc, "SPU_ADDR16",
     48  1.1  christos 	 FALSE, 0, 0x007fff80, FALSE),
     49  1.1  christos   HOWTO (R_SPU_ADDR16_HI, 16, 2, 16, FALSE,  7, complain_overflow_bitfield,
     50  1.1  christos 	 bfd_elf_generic_reloc, "SPU_ADDR16_HI",
     51  1.1  christos 	 FALSE, 0, 0x007fff80, FALSE),
     52  1.1  christos   HOWTO (R_SPU_ADDR16_LO,  0, 2, 16, FALSE,  7, complain_overflow_dont,
     53  1.1  christos 	 bfd_elf_generic_reloc, "SPU_ADDR16_LO",
     54  1.1  christos 	 FALSE, 0, 0x007fff80, FALSE),
     55  1.1  christos   HOWTO (R_SPU_ADDR18,     0, 2, 18, FALSE,  7, complain_overflow_bitfield,
     56  1.1  christos 	 bfd_elf_generic_reloc, "SPU_ADDR18",
     57  1.1  christos 	 FALSE, 0, 0x01ffff80, FALSE),
     58  1.1  christos   HOWTO (R_SPU_ADDR32,     0, 2, 32, FALSE,  0, complain_overflow_dont,
     59  1.1  christos 	 bfd_elf_generic_reloc, "SPU_ADDR32",
     60  1.1  christos 	 FALSE, 0, 0xffffffff, FALSE),
     61  1.1  christos   HOWTO (R_SPU_REL16,      2, 2, 16,  TRUE,  7, complain_overflow_bitfield,
     62  1.1  christos 	 bfd_elf_generic_reloc, "SPU_REL16",
     63  1.1  christos 	 FALSE, 0, 0x007fff80, TRUE),
     64  1.1  christos   HOWTO (R_SPU_ADDR7,      0, 2,  7, FALSE, 14, complain_overflow_dont,
     65  1.1  christos 	 bfd_elf_generic_reloc, "SPU_ADDR7",
     66  1.1  christos 	 FALSE, 0, 0x001fc000, FALSE),
     67  1.1  christos   HOWTO (R_SPU_REL9,       2, 2,  9,  TRUE,  0, complain_overflow_signed,
     68  1.1  christos 	 spu_elf_rel9,          "SPU_REL9",
     69  1.1  christos 	 FALSE, 0, 0x0180007f, TRUE),
     70  1.1  christos   HOWTO (R_SPU_REL9I,      2, 2,  9,  TRUE,  0, complain_overflow_signed,
     71  1.1  christos 	 spu_elf_rel9,          "SPU_REL9I",
     72  1.1  christos 	 FALSE, 0, 0x0000c07f, TRUE),
     73  1.1  christos   HOWTO (R_SPU_ADDR10I,    0, 2, 10, FALSE, 14, complain_overflow_signed,
     74  1.1  christos 	 bfd_elf_generic_reloc, "SPU_ADDR10I",
     75  1.1  christos 	 FALSE, 0, 0x00ffc000, FALSE),
     76  1.1  christos   HOWTO (R_SPU_ADDR16I,    0, 2, 16, FALSE,  7, complain_overflow_signed,
     77  1.1  christos 	 bfd_elf_generic_reloc, "SPU_ADDR16I",
     78  1.1  christos 	 FALSE, 0, 0x007fff80, FALSE),
     79  1.1  christos   HOWTO (R_SPU_REL32,      0, 2, 32, TRUE,  0, complain_overflow_dont,
     80  1.1  christos 	 bfd_elf_generic_reloc, "SPU_REL32",
     81  1.1  christos 	 FALSE, 0, 0xffffffff, TRUE),
     82  1.1  christos   HOWTO (R_SPU_ADDR16X,    0, 2, 16, FALSE,  7, complain_overflow_bitfield,
     83  1.1  christos 	 bfd_elf_generic_reloc, "SPU_ADDR16X",
     84  1.1  christos 	 FALSE, 0, 0x007fff80, FALSE),
     85  1.1  christos   HOWTO (R_SPU_PPU32,      0, 2, 32, FALSE,  0, complain_overflow_dont,
     86  1.1  christos 	 bfd_elf_generic_reloc, "SPU_PPU32",
     87  1.1  christos 	 FALSE, 0, 0xffffffff, FALSE),
     88  1.1  christos   HOWTO (R_SPU_PPU64,      0, 4, 64, FALSE,  0, complain_overflow_dont,
     89  1.1  christos 	 bfd_elf_generic_reloc, "SPU_PPU64",
     90  1.1  christos 	 FALSE, 0, -1, FALSE),
     91  1.1  christos   HOWTO (R_SPU_ADD_PIC,      0, 0, 0, FALSE,  0, complain_overflow_dont,
     92  1.1  christos 	 bfd_elf_generic_reloc, "SPU_ADD_PIC",
     93  1.1  christos 	 FALSE, 0, 0x00000000, FALSE),
     94  1.1  christos };
     95  1.1  christos 
     96  1.1  christos static struct bfd_elf_special_section const spu_elf_special_sections[] = {
     97  1.1  christos   { "._ea", 4, 0, SHT_PROGBITS, SHF_WRITE },
     98  1.1  christos   { ".toe", 4, 0, SHT_NOBITS, SHF_ALLOC },
     99  1.1  christos   { NULL, 0, 0, 0, 0 }
    100  1.1  christos };
    101  1.1  christos 
    102  1.1  christos static enum elf_spu_reloc_type
    103  1.1  christos spu_elf_bfd_to_reloc_type (bfd_reloc_code_real_type code)
    104  1.1  christos {
    105  1.1  christos   switch (code)
    106  1.1  christos     {
    107  1.1  christos     default:
    108  1.1  christos       return R_SPU_NONE;
    109  1.1  christos     case BFD_RELOC_SPU_IMM10W:
    110  1.1  christos       return R_SPU_ADDR10;
    111  1.1  christos     case BFD_RELOC_SPU_IMM16W:
    112  1.1  christos       return R_SPU_ADDR16;
    113  1.1  christos     case BFD_RELOC_SPU_LO16:
    114  1.1  christos       return R_SPU_ADDR16_LO;
    115  1.1  christos     case BFD_RELOC_SPU_HI16:
    116  1.1  christos       return R_SPU_ADDR16_HI;
    117  1.1  christos     case BFD_RELOC_SPU_IMM18:
    118  1.1  christos       return R_SPU_ADDR18;
    119  1.1  christos     case BFD_RELOC_SPU_PCREL16:
    120  1.1  christos       return R_SPU_REL16;
    121  1.1  christos     case BFD_RELOC_SPU_IMM7:
    122  1.1  christos       return R_SPU_ADDR7;
    123  1.1  christos     case BFD_RELOC_SPU_IMM8:
    124  1.1  christos       return R_SPU_NONE;
    125  1.1  christos     case BFD_RELOC_SPU_PCREL9a:
    126  1.1  christos       return R_SPU_REL9;
    127  1.1  christos     case BFD_RELOC_SPU_PCREL9b:
    128  1.1  christos       return R_SPU_REL9I;
    129  1.1  christos     case BFD_RELOC_SPU_IMM10:
    130  1.1  christos       return R_SPU_ADDR10I;
    131  1.1  christos     case BFD_RELOC_SPU_IMM16:
    132  1.1  christos       return R_SPU_ADDR16I;
    133  1.1  christos     case BFD_RELOC_32:
    134  1.1  christos       return R_SPU_ADDR32;
    135  1.1  christos     case BFD_RELOC_32_PCREL:
    136  1.1  christos       return R_SPU_REL32;
    137  1.1  christos     case BFD_RELOC_SPU_PPU32:
    138  1.1  christos       return R_SPU_PPU32;
    139  1.1  christos     case BFD_RELOC_SPU_PPU64:
    140  1.1  christos       return R_SPU_PPU64;
    141  1.1  christos     case BFD_RELOC_SPU_ADD_PIC:
    142  1.1  christos       return R_SPU_ADD_PIC;
    143  1.1  christos     }
    144  1.1  christos }
    145  1.1  christos 
    146  1.1  christos static void
    147  1.1  christos spu_elf_info_to_howto (bfd *abfd ATTRIBUTE_UNUSED,
    148  1.1  christos 		       arelent *cache_ptr,
    149  1.1  christos 		       Elf_Internal_Rela *dst)
    150  1.1  christos {
    151  1.1  christos   enum elf_spu_reloc_type r_type;
    152  1.1  christos 
    153  1.1  christos   r_type = (enum elf_spu_reloc_type) ELF32_R_TYPE (dst->r_info);
    154  1.1  christos   BFD_ASSERT (r_type < R_SPU_max);
    155  1.1  christos   cache_ptr->howto = &elf_howto_table[(int) r_type];
    156  1.1  christos }
    157  1.1  christos 
    158  1.1  christos static reloc_howto_type *
    159  1.1  christos spu_elf_reloc_type_lookup (bfd *abfd ATTRIBUTE_UNUSED,
    160  1.1  christos 			   bfd_reloc_code_real_type code)
    161  1.1  christos {
    162  1.1  christos   enum elf_spu_reloc_type r_type = spu_elf_bfd_to_reloc_type (code);
    163  1.1  christos 
    164  1.1  christos   if (r_type == R_SPU_NONE)
    165  1.1  christos     return NULL;
    166  1.1  christos 
    167  1.1  christos   return elf_howto_table + r_type;
    168  1.1  christos }
    169  1.1  christos 
    170  1.1  christos static reloc_howto_type *
    171  1.1  christos spu_elf_reloc_name_lookup (bfd *abfd ATTRIBUTE_UNUSED,
    172  1.1  christos 			   const char *r_name)
    173  1.1  christos {
    174  1.1  christos   unsigned int i;
    175  1.1  christos 
    176  1.1  christos   for (i = 0; i < sizeof (elf_howto_table) / sizeof (elf_howto_table[0]); i++)
    177  1.1  christos     if (elf_howto_table[i].name != NULL
    178  1.1  christos 	&& strcasecmp (elf_howto_table[i].name, r_name) == 0)
    179  1.1  christos       return &elf_howto_table[i];
    180  1.1  christos 
    181  1.1  christos   return NULL;
    182  1.1  christos }
    183  1.1  christos 
    184  1.1  christos /* Apply R_SPU_REL9 and R_SPU_REL9I relocs.  */
    185  1.1  christos 
    186  1.1  christos static bfd_reloc_status_type
    187  1.1  christos spu_elf_rel9 (bfd *abfd, arelent *reloc_entry, asymbol *symbol,
    188  1.1  christos 	      void *data, asection *input_section,
    189  1.1  christos 	      bfd *output_bfd, char **error_message)
    190  1.1  christos {
    191  1.1  christos   bfd_size_type octets;
    192  1.1  christos   bfd_vma val;
    193  1.1  christos   long insn;
    194  1.1  christos 
    195  1.1  christos   /* If this is a relocatable link (output_bfd test tells us), just
    196  1.1  christos      call the generic function.  Any adjustment will be done at final
    197  1.1  christos      link time.  */
    198  1.1  christos   if (output_bfd != NULL)
    199  1.1  christos     return bfd_elf_generic_reloc (abfd, reloc_entry, symbol, data,
    200  1.1  christos 				  input_section, output_bfd, error_message);
    201  1.1  christos 
    202  1.1  christos   if (reloc_entry->address > bfd_get_section_limit (abfd, input_section))
    203  1.1  christos     return bfd_reloc_outofrange;
    204  1.1  christos   octets = reloc_entry->address * bfd_octets_per_byte (abfd);
    205  1.1  christos 
    206  1.1  christos   /* Get symbol value.  */
    207  1.1  christos   val = 0;
    208  1.1  christos   if (!bfd_is_com_section (symbol->section))
    209  1.1  christos     val = symbol->value;
    210  1.1  christos   if (symbol->section->output_section)
    211  1.1  christos     val += symbol->section->output_section->vma;
    212  1.1  christos 
    213  1.1  christos   val += reloc_entry->addend;
    214  1.1  christos 
    215  1.1  christos   /* Make it pc-relative.  */
    216  1.1  christos   val -= input_section->output_section->vma + input_section->output_offset;
    217  1.1  christos 
    218  1.1  christos   val >>= 2;
    219  1.1  christos   if (val + 256 >= 512)
    220  1.1  christos     return bfd_reloc_overflow;
    221  1.1  christos 
    222  1.1  christos   insn = bfd_get_32 (abfd, (bfd_byte *) data + octets);
    223  1.1  christos 
    224  1.1  christos   /* Move two high bits of value to REL9I and REL9 position.
    225  1.1  christos      The mask will take care of selecting the right field.  */
    226  1.1  christos   val = (val & 0x7f) | ((val & 0x180) << 7) | ((val & 0x180) << 16);
    227  1.1  christos   insn &= ~reloc_entry->howto->dst_mask;
    228  1.1  christos   insn |= val & reloc_entry->howto->dst_mask;
    229  1.1  christos   bfd_put_32 (abfd, insn, (bfd_byte *) data + octets);
    230  1.1  christos   return bfd_reloc_ok;
    231  1.1  christos }
    232  1.1  christos 
    233  1.1  christos static bfd_boolean
    234  1.1  christos spu_elf_new_section_hook (bfd *abfd, asection *sec)
    235  1.1  christos {
    236  1.1  christos   if (!sec->used_by_bfd)
    237  1.1  christos     {
    238  1.1  christos       struct _spu_elf_section_data *sdata;
    239  1.1  christos 
    240  1.1  christos       sdata = bfd_zalloc (abfd, sizeof (*sdata));
    241  1.1  christos       if (sdata == NULL)
    242  1.1  christos 	return FALSE;
    243  1.1  christos       sec->used_by_bfd = sdata;
    244  1.1  christos     }
    245  1.1  christos 
    246  1.1  christos   return _bfd_elf_new_section_hook (abfd, sec);
    247  1.1  christos }
    248  1.1  christos 
    249  1.1  christos /* Set up overlay info for executables.  */
    250  1.1  christos 
    251  1.1  christos static bfd_boolean
    252  1.1  christos spu_elf_object_p (bfd *abfd)
    253  1.1  christos {
    254  1.1  christos   if ((abfd->flags & (EXEC_P | DYNAMIC)) != 0)
    255  1.1  christos     {
    256  1.1  christos       unsigned int i, num_ovl, num_buf;
    257  1.1  christos       Elf_Internal_Phdr *phdr = elf_tdata (abfd)->phdr;
    258  1.1  christos       Elf_Internal_Ehdr *ehdr = elf_elfheader (abfd);
    259  1.1  christos       Elf_Internal_Phdr *last_phdr = NULL;
    260  1.1  christos 
    261  1.1  christos       for (num_buf = 0, num_ovl = 0, i = 0; i < ehdr->e_phnum; i++, phdr++)
    262  1.1  christos 	if (phdr->p_type == PT_LOAD && (phdr->p_flags & PF_OVERLAY) != 0)
    263  1.1  christos 	  {
    264  1.1  christos 	    unsigned int j;
    265  1.1  christos 
    266  1.1  christos 	    ++num_ovl;
    267  1.1  christos 	    if (last_phdr == NULL
    268  1.1  christos 		|| ((last_phdr->p_vaddr ^ phdr->p_vaddr) & 0x3ffff) != 0)
    269  1.1  christos 	      ++num_buf;
    270  1.1  christos 	    last_phdr = phdr;
    271  1.1  christos 	    for (j = 1; j < elf_numsections (abfd); j++)
    272  1.1  christos 	      {
    273  1.1  christos 		Elf_Internal_Shdr *shdr = elf_elfsections (abfd)[j];
    274  1.1  christos 
    275  1.1  christos 		if (ELF_SECTION_SIZE (shdr, phdr) != 0
    276  1.1  christos 		    && ELF_SECTION_IN_SEGMENT (shdr, phdr))
    277  1.1  christos 		  {
    278  1.1  christos 		    asection *sec = shdr->bfd_section;
    279  1.1  christos 		    spu_elf_section_data (sec)->u.o.ovl_index = num_ovl;
    280  1.1  christos 		    spu_elf_section_data (sec)->u.o.ovl_buf = num_buf;
    281  1.1  christos 		  }
    282  1.1  christos 	      }
    283  1.1  christos 	  }
    284  1.1  christos     }
    285  1.1  christos   return TRUE;
    286  1.1  christos }
    287  1.1  christos 
    288  1.1  christos /* Specially mark defined symbols named _EAR_* with BSF_KEEP so that
    289  1.1  christos    strip --strip-unneeded will not remove them.  */
    290  1.1  christos 
    291  1.1  christos static void
    292  1.1  christos spu_elf_backend_symbol_processing (bfd *abfd ATTRIBUTE_UNUSED, asymbol *sym)
    293  1.1  christos {
    294  1.1  christos   if (sym->name != NULL
    295  1.1  christos       && sym->section != bfd_abs_section_ptr
    296  1.1  christos       && strncmp (sym->name, "_EAR_", 5) == 0)
    297  1.1  christos     sym->flags |= BSF_KEEP;
    298  1.1  christos }
    299  1.1  christos 
    300  1.1  christos /* SPU ELF linker hash table.  */
    301  1.1  christos 
    302  1.1  christos struct spu_link_hash_table
    303  1.1  christos {
    304  1.1  christos   struct elf_link_hash_table elf;
    305  1.1  christos 
    306  1.1  christos   struct spu_elf_params *params;
    307  1.1  christos 
    308  1.1  christos   /* Shortcuts to overlay sections.  */
    309  1.1  christos   asection *ovtab;
    310  1.1  christos   asection *init;
    311  1.1  christos   asection *toe;
    312  1.1  christos   asection **ovl_sec;
    313  1.1  christos 
    314  1.1  christos   /* Count of stubs in each overlay section.  */
    315  1.1  christos   unsigned int *stub_count;
    316  1.1  christos 
    317  1.1  christos   /* The stub section for each overlay section.  */
    318  1.1  christos   asection **stub_sec;
    319  1.1  christos 
    320  1.1  christos   struct elf_link_hash_entry *ovly_entry[2];
    321  1.1  christos 
    322  1.1  christos   /* Number of overlay buffers.  */
    323  1.1  christos   unsigned int num_buf;
    324  1.1  christos 
    325  1.1  christos   /* Total number of overlays.  */
    326  1.1  christos   unsigned int num_overlays;
    327  1.1  christos 
    328  1.1  christos   /* For soft icache.  */
    329  1.1  christos   unsigned int line_size_log2;
    330  1.1  christos   unsigned int num_lines_log2;
    331  1.1  christos   unsigned int fromelem_size_log2;
    332  1.1  christos 
    333  1.1  christos   /* How much memory we have.  */
    334  1.1  christos   unsigned int local_store;
    335  1.1  christos 
    336  1.1  christos   /* Count of overlay stubs needed in non-overlay area.  */
    337  1.1  christos   unsigned int non_ovly_stub;
    338  1.1  christos 
    339  1.1  christos   /* Pointer to the fixup section */
    340  1.1  christos   asection *sfixup;
    341  1.1  christos 
    342  1.1  christos   /* Set on error.  */
    343  1.1  christos   unsigned int stub_err : 1;
    344  1.1  christos };
    345  1.1  christos 
    346  1.1  christos /* Hijack the generic got fields for overlay stub accounting.  */
    347  1.1  christos 
    348  1.1  christos struct got_entry
    349  1.1  christos {
    350  1.1  christos   struct got_entry *next;
    351  1.1  christos   unsigned int ovl;
    352  1.1  christos   union {
    353  1.1  christos     bfd_vma addend;
    354  1.1  christos     bfd_vma br_addr;
    355  1.1  christos   };
    356  1.1  christos   bfd_vma stub_addr;
    357  1.1  christos };
    358  1.1  christos 
    359  1.1  christos #define spu_hash_table(p) \
    360  1.1  christos   (elf_hash_table_id ((struct elf_link_hash_table *) ((p)->hash)) \
    361  1.1  christos   == SPU_ELF_DATA ? ((struct spu_link_hash_table *) ((p)->hash)) : NULL)
    362  1.1  christos 
    363  1.1  christos struct call_info
    364  1.1  christos {
    365  1.1  christos   struct function_info *fun;
    366  1.1  christos   struct call_info *next;
    367  1.1  christos   unsigned int count;
    368  1.1  christos   unsigned int max_depth;
    369  1.1  christos   unsigned int is_tail : 1;
    370  1.1  christos   unsigned int is_pasted : 1;
    371  1.1  christos   unsigned int broken_cycle : 1;
    372  1.1  christos   unsigned int priority : 13;
    373  1.1  christos };
    374  1.1  christos 
    375  1.1  christos struct function_info
    376  1.1  christos {
    377  1.1  christos   /* List of functions called.  Also branches to hot/cold part of
    378  1.1  christos      function.  */
    379  1.1  christos   struct call_info *call_list;
    380  1.1  christos   /* For hot/cold part of function, point to owner.  */
    381  1.1  christos   struct function_info *start;
    382  1.1  christos   /* Symbol at start of function.  */
    383  1.1  christos   union {
    384  1.1  christos     Elf_Internal_Sym *sym;
    385  1.1  christos     struct elf_link_hash_entry *h;
    386  1.1  christos   } u;
    387  1.1  christos   /* Function section.  */
    388  1.1  christos   asection *sec;
    389  1.1  christos   asection *rodata;
    390  1.1  christos   /* Where last called from, and number of sections called from.  */
    391  1.1  christos   asection *last_caller;
    392  1.1  christos   unsigned int call_count;
    393  1.1  christos   /* Address range of (this part of) function.  */
    394  1.1  christos   bfd_vma lo, hi;
    395  1.1  christos   /* Offset where we found a store of lr, or -1 if none found.  */
    396  1.1  christos   bfd_vma lr_store;
    397  1.1  christos   /* Offset where we found the stack adjustment insn.  */
    398  1.1  christos   bfd_vma sp_adjust;
    399  1.1  christos   /* Stack usage.  */
    400  1.1  christos   int stack;
    401  1.1  christos   /* Distance from root of call tree.  Tail and hot/cold branches
    402  1.1  christos      count as one deeper.  We aren't counting stack frames here.  */
    403  1.1  christos   unsigned int depth;
    404  1.1  christos   /* Set if global symbol.  */
    405  1.1  christos   unsigned int global : 1;
    406  1.1  christos   /* Set if known to be start of function (as distinct from a hunk
    407  1.1  christos      in hot/cold section.  */
    408  1.1  christos   unsigned int is_func : 1;
    409  1.1  christos   /* Set if not a root node.  */
    410  1.1  christos   unsigned int non_root : 1;
    411  1.1  christos   /* Flags used during call tree traversal.  It's cheaper to replicate
    412  1.1  christos      the visit flags than have one which needs clearing after a traversal.  */
    413  1.1  christos   unsigned int visit1 : 1;
    414  1.1  christos   unsigned int visit2 : 1;
    415  1.1  christos   unsigned int marking : 1;
    416  1.1  christos   unsigned int visit3 : 1;
    417  1.1  christos   unsigned int visit4 : 1;
    418  1.1  christos   unsigned int visit5 : 1;
    419  1.1  christos   unsigned int visit6 : 1;
    420  1.1  christos   unsigned int visit7 : 1;
    421  1.1  christos };
    422  1.1  christos 
    423  1.1  christos struct spu_elf_stack_info
    424  1.1  christos {
    425  1.1  christos   int num_fun;
    426  1.1  christos   int max_fun;
    427  1.1  christos   /* Variable size array describing functions, one per contiguous
    428  1.1  christos      address range belonging to a function.  */
    429  1.1  christos   struct function_info fun[1];
    430  1.1  christos };
    431  1.1  christos 
    432  1.1  christos static struct function_info *find_function (asection *, bfd_vma,
    433  1.1  christos 					    struct bfd_link_info *);
    434  1.1  christos 
    435  1.1  christos /* Create a spu ELF linker hash table.  */
    436  1.1  christos 
    437  1.1  christos static struct bfd_link_hash_table *
    438  1.1  christos spu_elf_link_hash_table_create (bfd *abfd)
    439  1.1  christos {
    440  1.1  christos   struct spu_link_hash_table *htab;
    441  1.1  christos 
    442  1.1  christos   htab = bfd_malloc (sizeof (*htab));
    443  1.1  christos   if (htab == NULL)
    444  1.1  christos     return NULL;
    445  1.1  christos 
    446  1.1  christos   if (!_bfd_elf_link_hash_table_init (&htab->elf, abfd,
    447  1.1  christos 				      _bfd_elf_link_hash_newfunc,
    448  1.1  christos 				      sizeof (struct elf_link_hash_entry),
    449  1.1  christos 				      SPU_ELF_DATA))
    450  1.1  christos     {
    451  1.1  christos       free (htab);
    452  1.1  christos       return NULL;
    453  1.1  christos     }
    454  1.1  christos 
    455  1.1  christos   memset (&htab->ovtab, 0,
    456  1.1  christos 	  sizeof (*htab) - offsetof (struct spu_link_hash_table, ovtab));
    457  1.1  christos 
    458  1.1  christos   htab->elf.init_got_refcount.refcount = 0;
    459  1.1  christos   htab->elf.init_got_refcount.glist = NULL;
    460  1.1  christos   htab->elf.init_got_offset.offset = 0;
    461  1.1  christos   htab->elf.init_got_offset.glist = NULL;
    462  1.1  christos   return &htab->elf.root;
    463  1.1  christos }
    464  1.1  christos 
    465  1.1  christos void
    466  1.1  christos spu_elf_setup (struct bfd_link_info *info, struct spu_elf_params *params)
    467  1.1  christos {
    468  1.1  christos   bfd_vma max_branch_log2;
    469  1.1  christos 
    470  1.1  christos   struct spu_link_hash_table *htab = spu_hash_table (info);
    471  1.1  christos   htab->params = params;
    472  1.1  christos   htab->line_size_log2 = bfd_log2 (htab->params->line_size);
    473  1.1  christos   htab->num_lines_log2 = bfd_log2 (htab->params->num_lines);
    474  1.1  christos 
    475  1.1  christos   /* For the software i-cache, we provide a "from" list whose size
    476  1.1  christos      is a power-of-two number of quadwords, big enough to hold one
    477  1.1  christos      byte per outgoing branch.  Compute this number here.  */
    478  1.1  christos   max_branch_log2 = bfd_log2 (htab->params->max_branch);
    479  1.1  christos   htab->fromelem_size_log2 = max_branch_log2 > 4 ? max_branch_log2 - 4 : 0;
    480  1.1  christos }
    481  1.1  christos 
    482  1.1  christos /* Find the symbol for the given R_SYMNDX in IBFD and set *HP and *SYMP
    483  1.1  christos    to (hash, NULL) for global symbols, and (NULL, sym) for locals.  Set
    484  1.1  christos    *SYMSECP to the symbol's section.  *LOCSYMSP caches local syms.  */
    485  1.1  christos 
    486  1.1  christos static bfd_boolean
    487  1.1  christos get_sym_h (struct elf_link_hash_entry **hp,
    488  1.1  christos 	   Elf_Internal_Sym **symp,
    489  1.1  christos 	   asection **symsecp,
    490  1.1  christos 	   Elf_Internal_Sym **locsymsp,
    491  1.1  christos 	   unsigned long r_symndx,
    492  1.1  christos 	   bfd *ibfd)
    493  1.1  christos {
    494  1.1  christos   Elf_Internal_Shdr *symtab_hdr = &elf_tdata (ibfd)->symtab_hdr;
    495  1.1  christos 
    496  1.1  christos   if (r_symndx >= symtab_hdr->sh_info)
    497  1.1  christos     {
    498  1.1  christos       struct elf_link_hash_entry **sym_hashes = elf_sym_hashes (ibfd);
    499  1.1  christos       struct elf_link_hash_entry *h;
    500  1.1  christos 
    501  1.1  christos       h = sym_hashes[r_symndx - symtab_hdr->sh_info];
    502  1.1  christos       while (h->root.type == bfd_link_hash_indirect
    503  1.1  christos 	     || h->root.type == bfd_link_hash_warning)
    504  1.1  christos 	h = (struct elf_link_hash_entry *) h->root.u.i.link;
    505  1.1  christos 
    506  1.1  christos       if (hp != NULL)
    507  1.1  christos 	*hp = h;
    508  1.1  christos 
    509  1.1  christos       if (symp != NULL)
    510  1.1  christos 	*symp = NULL;
    511  1.1  christos 
    512  1.1  christos       if (symsecp != NULL)
    513  1.1  christos 	{
    514  1.1  christos 	  asection *symsec = NULL;
    515  1.1  christos 	  if (h->root.type == bfd_link_hash_defined
    516  1.1  christos 	      || h->root.type == bfd_link_hash_defweak)
    517  1.1  christos 	    symsec = h->root.u.def.section;
    518  1.1  christos 	  *symsecp = symsec;
    519  1.1  christos 	}
    520  1.1  christos     }
    521  1.1  christos   else
    522  1.1  christos     {
    523  1.1  christos       Elf_Internal_Sym *sym;
    524  1.1  christos       Elf_Internal_Sym *locsyms = *locsymsp;
    525  1.1  christos 
    526  1.1  christos       if (locsyms == NULL)
    527  1.1  christos 	{
    528  1.1  christos 	  locsyms = (Elf_Internal_Sym *) symtab_hdr->contents;
    529  1.1  christos 	  if (locsyms == NULL)
    530  1.1  christos 	    locsyms = bfd_elf_get_elf_syms (ibfd, symtab_hdr,
    531  1.1  christos 					    symtab_hdr->sh_info,
    532  1.1  christos 					    0, NULL, NULL, NULL);
    533  1.1  christos 	  if (locsyms == NULL)
    534  1.1  christos 	    return FALSE;
    535  1.1  christos 	  *locsymsp = locsyms;
    536  1.1  christos 	}
    537  1.1  christos       sym = locsyms + r_symndx;
    538  1.1  christos 
    539  1.1  christos       if (hp != NULL)
    540  1.1  christos 	*hp = NULL;
    541  1.1  christos 
    542  1.1  christos       if (symp != NULL)
    543  1.1  christos 	*symp = sym;
    544  1.1  christos 
    545  1.1  christos       if (symsecp != NULL)
    546  1.1  christos 	*symsecp = bfd_section_from_elf_index (ibfd, sym->st_shndx);
    547  1.1  christos     }
    548  1.1  christos 
    549  1.1  christos   return TRUE;
    550  1.1  christos }
    551  1.1  christos 
    552  1.1  christos /* Create the note section if not already present.  This is done early so
    553  1.1  christos    that the linker maps the sections to the right place in the output.  */
    554  1.1  christos 
    555  1.1  christos bfd_boolean
    556  1.1  christos spu_elf_create_sections (struct bfd_link_info *info)
    557  1.1  christos {
    558  1.1  christos   struct spu_link_hash_table *htab = spu_hash_table (info);
    559  1.1  christos   bfd *ibfd;
    560  1.1  christos 
    561  1.1  christos   for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link_next)
    562  1.1  christos     if (bfd_get_section_by_name (ibfd, SPU_PTNOTE_SPUNAME) != NULL)
    563  1.1  christos       break;
    564  1.1  christos 
    565  1.1  christos   if (ibfd == NULL)
    566  1.1  christos     {
    567  1.1  christos       /* Make SPU_PTNOTE_SPUNAME section.  */
    568  1.1  christos       asection *s;
    569  1.1  christos       size_t name_len;
    570  1.1  christos       size_t size;
    571  1.1  christos       bfd_byte *data;
    572  1.1  christos       flagword flags;
    573  1.1  christos 
    574  1.1  christos       ibfd = info->input_bfds;
    575  1.1  christos       flags = SEC_LOAD | SEC_READONLY | SEC_HAS_CONTENTS | SEC_IN_MEMORY;
    576  1.1  christos       s = bfd_make_section_anyway_with_flags (ibfd, SPU_PTNOTE_SPUNAME, flags);
    577  1.1  christos       if (s == NULL
    578  1.1  christos 	  || !bfd_set_section_alignment (ibfd, s, 4))
    579  1.1  christos 	return FALSE;
    580  1.1  christos 
    581  1.1  christos       name_len = strlen (bfd_get_filename (info->output_bfd)) + 1;
    582  1.1  christos       size = 12 + ((sizeof (SPU_PLUGIN_NAME) + 3) & -4);
    583  1.1  christos       size += (name_len + 3) & -4;
    584  1.1  christos 
    585  1.1  christos       if (!bfd_set_section_size (ibfd, s, size))
    586  1.1  christos 	return FALSE;
    587  1.1  christos 
    588  1.1  christos       data = bfd_zalloc (ibfd, size);
    589  1.1  christos       if (data == NULL)
    590  1.1  christos 	return FALSE;
    591  1.1  christos 
    592  1.1  christos       bfd_put_32 (ibfd, sizeof (SPU_PLUGIN_NAME), data + 0);
    593  1.1  christos       bfd_put_32 (ibfd, name_len, data + 4);
    594  1.1  christos       bfd_put_32 (ibfd, 1, data + 8);
    595  1.1  christos       memcpy (data + 12, SPU_PLUGIN_NAME, sizeof (SPU_PLUGIN_NAME));
    596  1.1  christos       memcpy (data + 12 + ((sizeof (SPU_PLUGIN_NAME) + 3) & -4),
    597  1.1  christos 	      bfd_get_filename (info->output_bfd), name_len);
    598  1.1  christos       s->contents = data;
    599  1.1  christos     }
    600  1.1  christos 
    601  1.1  christos   if (htab->params->emit_fixups)
    602  1.1  christos     {
    603  1.1  christos       asection *s;
    604  1.1  christos       flagword flags;
    605  1.1  christos 
    606  1.1  christos       if (htab->elf.dynobj == NULL)
    607  1.1  christos 	htab->elf.dynobj = ibfd;
    608  1.1  christos       ibfd = htab->elf.dynobj;
    609  1.1  christos       flags = (SEC_LOAD | SEC_ALLOC | SEC_READONLY | SEC_HAS_CONTENTS
    610  1.1  christos 	       | SEC_IN_MEMORY | SEC_LINKER_CREATED);
    611  1.1  christos       s = bfd_make_section_anyway_with_flags (ibfd, ".fixup", flags);
    612  1.1  christos       if (s == NULL || !bfd_set_section_alignment (ibfd, s, 2))
    613  1.1  christos 	return FALSE;
    614  1.1  christos       htab->sfixup = s;
    615  1.1  christos     }
    616  1.1  christos 
    617  1.1  christos   return TRUE;
    618  1.1  christos }
    619  1.1  christos 
    620  1.1  christos /* qsort predicate to sort sections by vma.  */
    621  1.1  christos 
    622  1.1  christos static int
    623  1.1  christos sort_sections (const void *a, const void *b)
    624  1.1  christos {
    625  1.1  christos   const asection *const *s1 = a;
    626  1.1  christos   const asection *const *s2 = b;
    627  1.1  christos   bfd_signed_vma delta = (*s1)->vma - (*s2)->vma;
    628  1.1  christos 
    629  1.1  christos   if (delta != 0)
    630  1.1  christos     return delta < 0 ? -1 : 1;
    631  1.1  christos 
    632  1.1  christos   return (*s1)->index - (*s2)->index;
    633  1.1  christos }
    634  1.1  christos 
    635  1.1  christos /* Identify overlays in the output bfd, and number them.
    636  1.1  christos    Returns 0 on error, 1 if no overlays, 2 if overlays.  */
    637  1.1  christos 
    638  1.1  christos int
    639  1.1  christos spu_elf_find_overlays (struct bfd_link_info *info)
    640  1.1  christos {
    641  1.1  christos   struct spu_link_hash_table *htab = spu_hash_table (info);
    642  1.1  christos   asection **alloc_sec;
    643  1.1  christos   unsigned int i, n, ovl_index, num_buf;
    644  1.1  christos   asection *s;
    645  1.1  christos   bfd_vma ovl_end;
    646  1.1  christos   static const char *const entry_names[2][2] = {
    647  1.1  christos     { "__ovly_load", "__icache_br_handler" },
    648  1.1  christos     { "__ovly_return", "__icache_call_handler" }
    649  1.1  christos   };
    650  1.1  christos 
    651  1.1  christos   if (info->output_bfd->section_count < 2)
    652  1.1  christos     return 1;
    653  1.1  christos 
    654  1.1  christos   alloc_sec
    655  1.1  christos     = bfd_malloc (info->output_bfd->section_count * sizeof (*alloc_sec));
    656  1.1  christos   if (alloc_sec == NULL)
    657  1.1  christos     return 0;
    658  1.1  christos 
    659  1.1  christos   /* Pick out all the alloced sections.  */
    660  1.1  christos   for (n = 0, s = info->output_bfd->sections; s != NULL; s = s->next)
    661  1.1  christos     if ((s->flags & SEC_ALLOC) != 0
    662  1.1  christos 	&& (s->flags & (SEC_LOAD | SEC_THREAD_LOCAL)) != SEC_THREAD_LOCAL
    663  1.1  christos 	&& s->size != 0)
    664  1.1  christos       alloc_sec[n++] = s;
    665  1.1  christos 
    666  1.1  christos   if (n == 0)
    667  1.1  christos     {
    668  1.1  christos       free (alloc_sec);
    669  1.1  christos       return 1;
    670  1.1  christos     }
    671  1.1  christos 
    672  1.1  christos   /* Sort them by vma.  */
    673  1.1  christos   qsort (alloc_sec, n, sizeof (*alloc_sec), sort_sections);
    674  1.1  christos 
    675  1.1  christos   ovl_end = alloc_sec[0]->vma + alloc_sec[0]->size;
    676  1.1  christos   if (htab->params->ovly_flavour == ovly_soft_icache)
    677  1.1  christos     {
    678  1.1  christos       unsigned int prev_buf = 0, set_id = 0;
    679  1.1  christos 
    680  1.1  christos       /* Look for an overlapping vma to find the first overlay section.  */
    681  1.1  christos       bfd_vma vma_start = 0;
    682  1.1  christos 
    683  1.1  christos       for (i = 1; i < n; i++)
    684  1.1  christos 	{
    685  1.1  christos 	  s = alloc_sec[i];
    686  1.1  christos 	  if (s->vma < ovl_end)
    687  1.1  christos 	    {
    688  1.1  christos 	      asection *s0 = alloc_sec[i - 1];
    689  1.1  christos 	      vma_start = s0->vma;
    690  1.1  christos 	      ovl_end = (s0->vma
    691  1.1  christos 			 + ((bfd_vma) 1
    692  1.1  christos 			    << (htab->num_lines_log2 + htab->line_size_log2)));
    693  1.1  christos 	      --i;
    694  1.1  christos 	      break;
    695  1.1  christos 	    }
    696  1.1  christos 	  else
    697  1.1  christos 	    ovl_end = s->vma + s->size;
    698  1.1  christos 	}
    699  1.1  christos 
    700  1.1  christos       /* Now find any sections within the cache area.  */
    701  1.1  christos       for (ovl_index = 0, num_buf = 0; i < n; i++)
    702  1.1  christos 	{
    703  1.1  christos 	  s = alloc_sec[i];
    704  1.1  christos 	  if (s->vma >= ovl_end)
    705  1.1  christos 	    break;
    706  1.1  christos 
    707  1.1  christos 	  /* A section in an overlay area called .ovl.init is not
    708  1.1  christos 	     an overlay, in the sense that it might be loaded in
    709  1.1  christos 	     by the overlay manager, but rather the initial
    710  1.1  christos 	     section contents for the overlay buffer.  */
    711  1.1  christos 	  if (strncmp (s->name, ".ovl.init", 9) != 0)
    712  1.1  christos 	    {
    713  1.1  christos 	      num_buf = ((s->vma - vma_start) >> htab->line_size_log2) + 1;
    714  1.1  christos 	      set_id = (num_buf == prev_buf)? set_id + 1 : 0;
    715  1.1  christos 	      prev_buf = num_buf;
    716  1.1  christos 
    717  1.1  christos 	      if ((s->vma - vma_start) & (htab->params->line_size - 1))
    718  1.1  christos 		{
    719  1.1  christos 		  info->callbacks->einfo (_("%X%P: overlay section %A "
    720  1.1  christos 					    "does not start on a cache line.\n"),
    721  1.1  christos 					  s);
    722  1.1  christos 		  bfd_set_error (bfd_error_bad_value);
    723  1.1  christos 		  return 0;
    724  1.1  christos 		}
    725  1.1  christos 	      else if (s->size > htab->params->line_size)
    726  1.1  christos 		{
    727  1.1  christos 		  info->callbacks->einfo (_("%X%P: overlay section %A "
    728  1.1  christos 					    "is larger than a cache line.\n"),
    729  1.1  christos 					  s);
    730  1.1  christos 		  bfd_set_error (bfd_error_bad_value);
    731  1.1  christos 		  return 0;
    732  1.1  christos 		}
    733  1.1  christos 
    734  1.1  christos 	      alloc_sec[ovl_index++] = s;
    735  1.1  christos 	      spu_elf_section_data (s)->u.o.ovl_index
    736  1.1  christos 		= (set_id << htab->num_lines_log2) + num_buf;
    737  1.1  christos 	      spu_elf_section_data (s)->u.o.ovl_buf = num_buf;
    738  1.1  christos 	    }
    739  1.1  christos 	}
    740  1.1  christos 
    741  1.1  christos       /* Ensure there are no more overlay sections.  */
    742  1.1  christos       for ( ; i < n; i++)
    743  1.1  christos 	{
    744  1.1  christos 	  s = alloc_sec[i];
    745  1.1  christos 	  if (s->vma < ovl_end)
    746  1.1  christos 	    {
    747  1.1  christos 	      info->callbacks->einfo (_("%X%P: overlay section %A "
    748  1.1  christos 					"is not in cache area.\n"),
    749  1.1  christos 				      alloc_sec[i-1]);
    750  1.1  christos 	      bfd_set_error (bfd_error_bad_value);
    751  1.1  christos 	      return 0;
    752  1.1  christos 	    }
    753  1.1  christos 	  else
    754  1.1  christos 	    ovl_end = s->vma + s->size;
    755  1.1  christos 	}
    756  1.1  christos     }
    757  1.1  christos   else
    758  1.1  christos     {
    759  1.1  christos       /* Look for overlapping vmas.  Any with overlap must be overlays.
    760  1.1  christos 	 Count them.  Also count the number of overlay regions.  */
    761  1.1  christos       for (ovl_index = 0, num_buf = 0, i = 1; i < n; i++)
    762  1.1  christos 	{
    763  1.1  christos 	  s = alloc_sec[i];
    764  1.1  christos 	  if (s->vma < ovl_end)
    765  1.1  christos 	    {
    766  1.1  christos 	      asection *s0 = alloc_sec[i - 1];
    767  1.1  christos 
    768  1.1  christos 	      if (spu_elf_section_data (s0)->u.o.ovl_index == 0)
    769  1.1  christos 		{
    770  1.1  christos 		  ++num_buf;
    771  1.1  christos 		  if (strncmp (s0->name, ".ovl.init", 9) != 0)
    772  1.1  christos 		    {
    773  1.1  christos 		      alloc_sec[ovl_index] = s0;
    774  1.1  christos 		      spu_elf_section_data (s0)->u.o.ovl_index = ++ovl_index;
    775  1.1  christos 		      spu_elf_section_data (s0)->u.o.ovl_buf = num_buf;
    776  1.1  christos 		    }
    777  1.1  christos 		  else
    778  1.1  christos 		    ovl_end = s->vma + s->size;
    779  1.1  christos 		}
    780  1.1  christos 	      if (strncmp (s->name, ".ovl.init", 9) != 0)
    781  1.1  christos 		{
    782  1.1  christos 		  alloc_sec[ovl_index] = s;
    783  1.1  christos 		  spu_elf_section_data (s)->u.o.ovl_index = ++ovl_index;
    784  1.1  christos 		  spu_elf_section_data (s)->u.o.ovl_buf = num_buf;
    785  1.1  christos 		  if (s0->vma != s->vma)
    786  1.1  christos 		    {
    787  1.1  christos 		      info->callbacks->einfo (_("%X%P: overlay sections %A "
    788  1.1  christos 						"and %A do not start at the "
    789  1.1  christos 						"same address.\n"),
    790  1.1  christos 					      s0, s);
    791  1.1  christos 		      bfd_set_error (bfd_error_bad_value);
    792  1.1  christos 		      return 0;
    793  1.1  christos 		    }
    794  1.1  christos 		  if (ovl_end < s->vma + s->size)
    795  1.1  christos 		    ovl_end = s->vma + s->size;
    796  1.1  christos 		}
    797  1.1  christos 	    }
    798  1.1  christos 	  else
    799  1.1  christos 	    ovl_end = s->vma + s->size;
    800  1.1  christos 	}
    801  1.1  christos     }
    802  1.1  christos 
    803  1.1  christos   htab->num_overlays = ovl_index;
    804  1.1  christos   htab->num_buf = num_buf;
    805  1.1  christos   htab->ovl_sec = alloc_sec;
    806  1.1  christos 
    807  1.1  christos   if (ovl_index == 0)
    808  1.1  christos     return 1;
    809  1.1  christos 
    810  1.1  christos   for (i = 0; i < 2; i++)
    811  1.1  christos     {
    812  1.1  christos       const char *name;
    813  1.1  christos       struct elf_link_hash_entry *h;
    814  1.1  christos 
    815  1.1  christos       name = entry_names[i][htab->params->ovly_flavour];
    816  1.1  christos       h = elf_link_hash_lookup (&htab->elf, name, TRUE, FALSE, FALSE);
    817  1.1  christos       if (h == NULL)
    818  1.1  christos 	return 0;
    819  1.1  christos 
    820  1.1  christos       if (h->root.type == bfd_link_hash_new)
    821  1.1  christos 	{
    822  1.1  christos 	  h->root.type = bfd_link_hash_undefined;
    823  1.1  christos 	  h->ref_regular = 1;
    824  1.1  christos 	  h->ref_regular_nonweak = 1;
    825  1.1  christos 	  h->non_elf = 0;
    826  1.1  christos 	}
    827  1.1  christos       htab->ovly_entry[i] = h;
    828  1.1  christos     }
    829  1.1  christos 
    830  1.1  christos   return 2;
    831  1.1  christos }
    832  1.1  christos 
    833  1.1  christos /* Non-zero to use bra in overlay stubs rather than br.  */
    834  1.1  christos #define BRA_STUBS 0
    835  1.1  christos 
    836  1.1  christos #define BRA	0x30000000
    837  1.1  christos #define BRASL	0x31000000
    838  1.1  christos #define BR	0x32000000
    839  1.1  christos #define BRSL	0x33000000
    840  1.1  christos #define NOP	0x40200000
    841  1.1  christos #define LNOP	0x00200000
    842  1.1  christos #define ILA	0x42000000
    843  1.1  christos 
    844  1.1  christos /* Return true for all relative and absolute branch instructions.
    845  1.1  christos    bra   00110000 0..
    846  1.1  christos    brasl 00110001 0..
    847  1.1  christos    br    00110010 0..
    848  1.1  christos    brsl  00110011 0..
    849  1.1  christos    brz   00100000 0..
    850  1.1  christos    brnz  00100001 0..
    851  1.1  christos    brhz  00100010 0..
    852  1.1  christos    brhnz 00100011 0..  */
    853  1.1  christos 
    854  1.1  christos static bfd_boolean
    855  1.1  christos is_branch (const unsigned char *insn)
    856  1.1  christos {
    857  1.1  christos   return (insn[0] & 0xec) == 0x20 && (insn[1] & 0x80) == 0;
    858  1.1  christos }
    859  1.1  christos 
    860  1.1  christos /* Return true for all indirect branch instructions.
    861  1.1  christos    bi     00110101 000
    862  1.1  christos    bisl   00110101 001
    863  1.1  christos    iret   00110101 010
    864  1.1  christos    bisled 00110101 011
    865  1.1  christos    biz    00100101 000
    866  1.1  christos    binz   00100101 001
    867  1.1  christos    bihz   00100101 010
    868  1.1  christos    bihnz  00100101 011  */
    869  1.1  christos 
    870  1.1  christos static bfd_boolean
    871  1.1  christos is_indirect_branch (const unsigned char *insn)
    872  1.1  christos {
    873  1.1  christos   return (insn[0] & 0xef) == 0x25 && (insn[1] & 0x80) == 0;
    874  1.1  christos }
    875  1.1  christos 
    876  1.1  christos /* Return true for branch hint instructions.
    877  1.1  christos    hbra  0001000..
    878  1.1  christos    hbrr  0001001..  */
    879  1.1  christos 
    880  1.1  christos static bfd_boolean
    881  1.1  christos is_hint (const unsigned char *insn)
    882  1.1  christos {
    883  1.1  christos   return (insn[0] & 0xfc) == 0x10;
    884  1.1  christos }
    885  1.1  christos 
    886  1.1  christos /* True if INPUT_SECTION might need overlay stubs.  */
    887  1.1  christos 
    888  1.1  christos static bfd_boolean
    889  1.1  christos maybe_needs_stubs (asection *input_section)
    890  1.1  christos {
    891  1.1  christos   /* No stubs for debug sections and suchlike.  */
    892  1.1  christos   if ((input_section->flags & SEC_ALLOC) == 0)
    893  1.1  christos     return FALSE;
    894  1.1  christos 
    895  1.1  christos   /* No stubs for link-once sections that will be discarded.  */
    896  1.1  christos   if (input_section->output_section == bfd_abs_section_ptr)
    897  1.1  christos     return FALSE;
    898  1.1  christos 
    899  1.1  christos   /* Don't create stubs for .eh_frame references.  */
    900  1.1  christos   if (strcmp (input_section->name, ".eh_frame") == 0)
    901  1.1  christos     return FALSE;
    902  1.1  christos 
    903  1.1  christos   return TRUE;
    904  1.1  christos }
    905  1.1  christos 
    906  1.1  christos enum _stub_type
    907  1.1  christos {
    908  1.1  christos   no_stub,
    909  1.1  christos   call_ovl_stub,
    910  1.1  christos   br000_ovl_stub,
    911  1.1  christos   br001_ovl_stub,
    912  1.1  christos   br010_ovl_stub,
    913  1.1  christos   br011_ovl_stub,
    914  1.1  christos   br100_ovl_stub,
    915  1.1  christos   br101_ovl_stub,
    916  1.1  christos   br110_ovl_stub,
    917  1.1  christos   br111_ovl_stub,
    918  1.1  christos   nonovl_stub,
    919  1.1  christos   stub_error
    920  1.1  christos };
    921  1.1  christos 
    922  1.1  christos /* Return non-zero if this reloc symbol should go via an overlay stub.
    923  1.1  christos    Return 2 if the stub must be in non-overlay area.  */
    924  1.1  christos 
    925  1.1  christos static enum _stub_type
    926  1.1  christos needs_ovl_stub (struct elf_link_hash_entry *h,
    927  1.1  christos 		Elf_Internal_Sym *sym,
    928  1.1  christos 		asection *sym_sec,
    929  1.1  christos 		asection *input_section,
    930  1.1  christos 		Elf_Internal_Rela *irela,
    931  1.1  christos 		bfd_byte *contents,
    932  1.1  christos 		struct bfd_link_info *info)
    933  1.1  christos {
    934  1.1  christos   struct spu_link_hash_table *htab = spu_hash_table (info);
    935  1.1  christos   enum elf_spu_reloc_type r_type;
    936  1.1  christos   unsigned int sym_type;
    937  1.1  christos   bfd_boolean branch, hint, call;
    938  1.1  christos   enum _stub_type ret = no_stub;
    939  1.1  christos   bfd_byte insn[4];
    940  1.1  christos 
    941  1.1  christos   if (sym_sec == NULL
    942  1.1  christos       || sym_sec->output_section == bfd_abs_section_ptr
    943  1.1  christos       || spu_elf_section_data (sym_sec->output_section) == NULL)
    944  1.1  christos     return ret;
    945  1.1  christos 
    946  1.1  christos   if (h != NULL)
    947  1.1  christos     {
    948  1.1  christos       /* Ensure no stubs for user supplied overlay manager syms.  */
    949  1.1  christos       if (h == htab->ovly_entry[0] || h == htab->ovly_entry[1])
    950  1.1  christos 	return ret;
    951  1.1  christos 
    952  1.1  christos       /* setjmp always goes via an overlay stub, because then the return
    953  1.1  christos 	 and hence the longjmp goes via __ovly_return.  That magically
    954  1.1  christos 	 makes setjmp/longjmp between overlays work.  */
    955  1.1  christos       if (strncmp (h->root.root.string, "setjmp", 6) == 0
    956  1.1  christos 	  && (h->root.root.string[6] == '\0' || h->root.root.string[6] == '@'))
    957  1.1  christos 	ret = call_ovl_stub;
    958  1.1  christos     }
    959  1.1  christos 
    960  1.1  christos   if (h != NULL)
    961  1.1  christos     sym_type = h->type;
    962  1.1  christos   else
    963  1.1  christos     sym_type = ELF_ST_TYPE (sym->st_info);
    964  1.1  christos 
    965  1.1  christos   r_type = ELF32_R_TYPE (irela->r_info);
    966  1.1  christos   branch = FALSE;
    967  1.1  christos   hint = FALSE;
    968  1.1  christos   call = FALSE;
    969  1.1  christos   if (r_type == R_SPU_REL16 || r_type == R_SPU_ADDR16)
    970  1.1  christos     {
    971  1.1  christos       if (contents == NULL)
    972  1.1  christos 	{
    973  1.1  christos 	  contents = insn;
    974  1.1  christos 	  if (!bfd_get_section_contents (input_section->owner,
    975  1.1  christos 					 input_section,
    976  1.1  christos 					 contents,
    977  1.1  christos 					 irela->r_offset, 4))
    978  1.1  christos 	    return stub_error;
    979  1.1  christos 	}
    980  1.1  christos       else
    981  1.1  christos 	contents += irela->r_offset;
    982  1.1  christos 
    983  1.1  christos       branch = is_branch (contents);
    984  1.1  christos       hint = is_hint (contents);
    985  1.1  christos       if (branch || hint)
    986  1.1  christos 	{
    987  1.1  christos 	  call = (contents[0] & 0xfd) == 0x31;
    988  1.1  christos 	  if (call
    989  1.1  christos 	      && sym_type != STT_FUNC
    990  1.1  christos 	      && contents != insn)
    991  1.1  christos 	    {
    992  1.1  christos 	      /* It's common for people to write assembly and forget
    993  1.1  christos 		 to give function symbols the right type.  Handle
    994  1.1  christos 		 calls to such symbols, but warn so that (hopefully)
    995  1.1  christos 		 people will fix their code.  We need the symbol
    996  1.1  christos 		 type to be correct to distinguish function pointer
    997  1.1  christos 		 initialisation from other pointer initialisations.  */
    998  1.1  christos 	      const char *sym_name;
    999  1.1  christos 
   1000  1.1  christos 	      if (h != NULL)
   1001  1.1  christos 		sym_name = h->root.root.string;
   1002  1.1  christos 	      else
   1003  1.1  christos 		{
   1004  1.1  christos 		  Elf_Internal_Shdr *symtab_hdr;
   1005  1.1  christos 		  symtab_hdr = &elf_tdata (input_section->owner)->symtab_hdr;
   1006  1.1  christos 		  sym_name = bfd_elf_sym_name (input_section->owner,
   1007  1.1  christos 					       symtab_hdr,
   1008  1.1  christos 					       sym,
   1009  1.1  christos 					       sym_sec);
   1010  1.1  christos 		}
   1011  1.1  christos 	      (*_bfd_error_handler) (_("warning: call to non-function"
   1012  1.1  christos 				       " symbol %s defined in %B"),
   1013  1.1  christos 				     sym_sec->owner, sym_name);
   1014  1.1  christos 
   1015  1.1  christos 	    }
   1016  1.1  christos 	}
   1017  1.1  christos     }
   1018  1.1  christos 
   1019  1.1  christos   if ((!branch && htab->params->ovly_flavour == ovly_soft_icache)
   1020  1.1  christos       || (sym_type != STT_FUNC
   1021  1.1  christos 	  && !(branch || hint)
   1022  1.1  christos 	  && (sym_sec->flags & SEC_CODE) == 0))
   1023  1.1  christos     return no_stub;
   1024  1.1  christos 
   1025  1.1  christos   /* Usually, symbols in non-overlay sections don't need stubs.  */
   1026  1.1  christos   if (spu_elf_section_data (sym_sec->output_section)->u.o.ovl_index == 0
   1027  1.1  christos       && !htab->params->non_overlay_stubs)
   1028  1.1  christos     return ret;
   1029  1.1  christos 
   1030  1.1  christos   /* A reference from some other section to a symbol in an overlay
   1031  1.1  christos      section needs a stub.  */
   1032  1.1  christos   if (spu_elf_section_data (sym_sec->output_section)->u.o.ovl_index
   1033  1.1  christos        != spu_elf_section_data (input_section->output_section)->u.o.ovl_index)
   1034  1.1  christos     {
   1035  1.1  christos       unsigned int lrlive = 0;
   1036  1.1  christos       if (branch)
   1037  1.1  christos 	lrlive = (contents[1] & 0x70) >> 4;
   1038  1.1  christos 
   1039  1.1  christos       if (!lrlive && (call || sym_type == STT_FUNC))
   1040  1.1  christos 	ret = call_ovl_stub;
   1041  1.1  christos       else
   1042  1.1  christos 	ret = br000_ovl_stub + lrlive;
   1043  1.1  christos     }
   1044  1.1  christos 
   1045  1.1  christos   /* If this insn isn't a branch then we are possibly taking the
   1046  1.1  christos      address of a function and passing it out somehow.  Soft-icache code
   1047  1.1  christos      always generates inline code to do indirect branches.  */
   1048  1.1  christos   if (!(branch || hint)
   1049  1.1  christos       && sym_type == STT_FUNC
   1050  1.1  christos       && htab->params->ovly_flavour != ovly_soft_icache)
   1051  1.1  christos     ret = nonovl_stub;
   1052  1.1  christos 
   1053  1.1  christos   return ret;
   1054  1.1  christos }
   1055  1.1  christos 
   1056  1.1  christos static bfd_boolean
   1057  1.1  christos count_stub (struct spu_link_hash_table *htab,
   1058  1.1  christos 	    bfd *ibfd,
   1059  1.1  christos 	    asection *isec,
   1060  1.1  christos 	    enum _stub_type stub_type,
   1061  1.1  christos 	    struct elf_link_hash_entry *h,
   1062  1.1  christos 	    const Elf_Internal_Rela *irela)
   1063  1.1  christos {
   1064  1.1  christos   unsigned int ovl = 0;
   1065  1.1  christos   struct got_entry *g, **head;
   1066  1.1  christos   bfd_vma addend;
   1067  1.1  christos 
   1068  1.1  christos   /* If this instruction is a branch or call, we need a stub
   1069  1.1  christos      for it.  One stub per function per overlay.
   1070  1.1  christos      If it isn't a branch, then we are taking the address of
   1071  1.1  christos      this function so need a stub in the non-overlay area
   1072  1.1  christos      for it.  One stub per function.  */
   1073  1.1  christos   if (stub_type != nonovl_stub)
   1074  1.1  christos     ovl = spu_elf_section_data (isec->output_section)->u.o.ovl_index;
   1075  1.1  christos 
   1076  1.1  christos   if (h != NULL)
   1077  1.1  christos     head = &h->got.glist;
   1078  1.1  christos   else
   1079  1.1  christos     {
   1080  1.1  christos       if (elf_local_got_ents (ibfd) == NULL)
   1081  1.1  christos 	{
   1082  1.1  christos 	  bfd_size_type amt = (elf_tdata (ibfd)->symtab_hdr.sh_info
   1083  1.1  christos 			       * sizeof (*elf_local_got_ents (ibfd)));
   1084  1.1  christos 	  elf_local_got_ents (ibfd) = bfd_zmalloc (amt);
   1085  1.1  christos 	  if (elf_local_got_ents (ibfd) == NULL)
   1086  1.1  christos 	    return FALSE;
   1087  1.1  christos 	}
   1088  1.1  christos       head = elf_local_got_ents (ibfd) + ELF32_R_SYM (irela->r_info);
   1089  1.1  christos     }
   1090  1.1  christos 
   1091  1.1  christos   if (htab->params->ovly_flavour == ovly_soft_icache)
   1092  1.1  christos     {
   1093  1.1  christos       htab->stub_count[ovl] += 1;
   1094  1.1  christos       return TRUE;
   1095  1.1  christos     }
   1096  1.1  christos 
   1097  1.1  christos   addend = 0;
   1098  1.1  christos   if (irela != NULL)
   1099  1.1  christos     addend = irela->r_addend;
   1100  1.1  christos 
   1101  1.1  christos   if (ovl == 0)
   1102  1.1  christos     {
   1103  1.1  christos       struct got_entry *gnext;
   1104  1.1  christos 
   1105  1.1  christos       for (g = *head; g != NULL; g = g->next)
   1106  1.1  christos 	if (g->addend == addend && g->ovl == 0)
   1107  1.1  christos 	  break;
   1108  1.1  christos 
   1109  1.1  christos       if (g == NULL)
   1110  1.1  christos 	{
   1111  1.1  christos 	  /* Need a new non-overlay area stub.  Zap other stubs.  */
   1112  1.1  christos 	  for (g = *head; g != NULL; g = gnext)
   1113  1.1  christos 	    {
   1114  1.1  christos 	      gnext = g->next;
   1115  1.1  christos 	      if (g->addend == addend)
   1116  1.1  christos 		{
   1117  1.1  christos 		  htab->stub_count[g->ovl] -= 1;
   1118  1.1  christos 		  free (g);
   1119  1.1  christos 		}
   1120  1.1  christos 	    }
   1121  1.1  christos 	}
   1122  1.1  christos     }
   1123  1.1  christos   else
   1124  1.1  christos     {
   1125  1.1  christos       for (g = *head; g != NULL; g = g->next)
   1126  1.1  christos 	if (g->addend == addend && (g->ovl == ovl || g->ovl == 0))
   1127  1.1  christos 	  break;
   1128  1.1  christos     }
   1129  1.1  christos 
   1130  1.1  christos   if (g == NULL)
   1131  1.1  christos     {
   1132  1.1  christos       g = bfd_malloc (sizeof *g);
   1133  1.1  christos       if (g == NULL)
   1134  1.1  christos 	return FALSE;
   1135  1.1  christos       g->ovl = ovl;
   1136  1.1  christos       g->addend = addend;
   1137  1.1  christos       g->stub_addr = (bfd_vma) -1;
   1138  1.1  christos       g->next = *head;
   1139  1.1  christos       *head = g;
   1140  1.1  christos 
   1141  1.1  christos       htab->stub_count[ovl] += 1;
   1142  1.1  christos     }
   1143  1.1  christos 
   1144  1.1  christos   return TRUE;
   1145  1.1  christos }
   1146  1.1  christos 
   1147  1.1  christos /* Support two sizes of overlay stubs, a slower more compact stub of two
   1148  1.1  christos    intructions, and a faster stub of four instructions.
   1149  1.1  christos    Soft-icache stubs are four or eight words.  */
   1150  1.1  christos 
   1151  1.1  christos static unsigned int
   1152  1.1  christos ovl_stub_size (struct spu_elf_params *params)
   1153  1.1  christos {
   1154  1.1  christos   return 16 << params->ovly_flavour >> params->compact_stub;
   1155  1.1  christos }
   1156  1.1  christos 
   1157  1.1  christos static unsigned int
   1158  1.1  christos ovl_stub_size_log2 (struct spu_elf_params *params)
   1159  1.1  christos {
   1160  1.1  christos   return 4 + params->ovly_flavour - params->compact_stub;
   1161  1.1  christos }
   1162  1.1  christos 
   1163  1.1  christos /* Two instruction overlay stubs look like:
   1164  1.1  christos 
   1165  1.1  christos    brsl $75,__ovly_load
   1166  1.1  christos    .word target_ovl_and_address
   1167  1.1  christos 
   1168  1.1  christos    ovl_and_address is a word with the overlay number in the top 14 bits
   1169  1.1  christos    and local store address in the bottom 18 bits.
   1170  1.1  christos 
   1171  1.1  christos    Four instruction overlay stubs look like:
   1172  1.1  christos 
   1173  1.1  christos    ila $78,ovl_number
   1174  1.1  christos    lnop
   1175  1.1  christos    ila $79,target_address
   1176  1.1  christos    br __ovly_load
   1177  1.1  christos 
   1178  1.1  christos    Software icache stubs are:
   1179  1.1  christos 
   1180  1.1  christos    .word target_index
   1181  1.1  christos    .word target_ia;
   1182  1.1  christos    .word lrlive_branchlocalstoreaddr;
   1183  1.1  christos    brasl $75,__icache_br_handler
   1184  1.1  christos    .quad xor_pattern
   1185  1.1  christos */
   1186  1.1  christos 
   1187  1.1  christos static bfd_boolean
   1188  1.1  christos build_stub (struct bfd_link_info *info,
   1189  1.1  christos 	    bfd *ibfd,
   1190  1.1  christos 	    asection *isec,
   1191  1.1  christos 	    enum _stub_type stub_type,
   1192  1.1  christos 	    struct elf_link_hash_entry *h,
   1193  1.1  christos 	    const Elf_Internal_Rela *irela,
   1194  1.1  christos 	    bfd_vma dest,
   1195  1.1  christos 	    asection *dest_sec)
   1196  1.1  christos {
   1197  1.1  christos   struct spu_link_hash_table *htab = spu_hash_table (info);
   1198  1.1  christos   unsigned int ovl, dest_ovl, set_id;
   1199  1.1  christos   struct got_entry *g, **head;
   1200  1.1  christos   asection *sec;
   1201  1.1  christos   bfd_vma addend, from, to, br_dest, patt;
   1202  1.1  christos   unsigned int lrlive;
   1203  1.1  christos 
   1204  1.1  christos   ovl = 0;
   1205  1.1  christos   if (stub_type != nonovl_stub)
   1206  1.1  christos     ovl = spu_elf_section_data (isec->output_section)->u.o.ovl_index;
   1207  1.1  christos 
   1208  1.1  christos   if (h != NULL)
   1209  1.1  christos     head = &h->got.glist;
   1210  1.1  christos   else
   1211  1.1  christos     head = elf_local_got_ents (ibfd) + ELF32_R_SYM (irela->r_info);
   1212  1.1  christos 
   1213  1.1  christos   addend = 0;
   1214  1.1  christos   if (irela != NULL)
   1215  1.1  christos     addend = irela->r_addend;
   1216  1.1  christos 
   1217  1.1  christos   if (htab->params->ovly_flavour == ovly_soft_icache)
   1218  1.1  christos     {
   1219  1.1  christos       g = bfd_malloc (sizeof *g);
   1220  1.1  christos       if (g == NULL)
   1221  1.1  christos 	return FALSE;
   1222  1.1  christos       g->ovl = ovl;
   1223  1.1  christos       g->br_addr = 0;
   1224  1.1  christos       if (irela != NULL)
   1225  1.1  christos 	g->br_addr = (irela->r_offset
   1226  1.1  christos 		      + isec->output_offset
   1227  1.1  christos 		      + isec->output_section->vma);
   1228  1.1  christos       g->next = *head;
   1229  1.1  christos       *head = g;
   1230  1.1  christos     }
   1231  1.1  christos   else
   1232  1.1  christos     {
   1233  1.1  christos       for (g = *head; g != NULL; g = g->next)
   1234  1.1  christos 	if (g->addend == addend && (g->ovl == ovl || g->ovl == 0))
   1235  1.1  christos 	  break;
   1236  1.1  christos       if (g == NULL)
   1237  1.1  christos 	abort ();
   1238  1.1  christos 
   1239  1.1  christos       if (g->ovl == 0 && ovl != 0)
   1240  1.1  christos 	return TRUE;
   1241  1.1  christos 
   1242  1.1  christos       if (g->stub_addr != (bfd_vma) -1)
   1243  1.1  christos 	return TRUE;
   1244  1.1  christos     }
   1245  1.1  christos 
   1246  1.1  christos   sec = htab->stub_sec[ovl];
   1247  1.1  christos   dest += dest_sec->output_offset + dest_sec->output_section->vma;
   1248  1.1  christos   from = sec->size + sec->output_offset + sec->output_section->vma;
   1249  1.1  christos   g->stub_addr = from;
   1250  1.1  christos   to = (htab->ovly_entry[0]->root.u.def.value
   1251  1.1  christos 	+ htab->ovly_entry[0]->root.u.def.section->output_offset
   1252  1.1  christos 	+ htab->ovly_entry[0]->root.u.def.section->output_section->vma);
   1253  1.1  christos 
   1254  1.1  christos   if (((dest | to | from) & 3) != 0)
   1255  1.1  christos     {
   1256  1.1  christos       htab->stub_err = 1;
   1257  1.1  christos       return FALSE;
   1258  1.1  christos     }
   1259  1.1  christos   dest_ovl = spu_elf_section_data (dest_sec->output_section)->u.o.ovl_index;
   1260  1.1  christos 
   1261  1.1  christos   if (htab->params->ovly_flavour == ovly_normal
   1262  1.1  christos       && !htab->params->compact_stub)
   1263  1.1  christos     {
   1264  1.1  christos       bfd_put_32 (sec->owner, ILA + ((dest_ovl << 7) & 0x01ffff80) + 78,
   1265  1.1  christos 		  sec->contents + sec->size);
   1266  1.1  christos       bfd_put_32 (sec->owner, LNOP,
   1267  1.1  christos 		  sec->contents + sec->size + 4);
   1268  1.1  christos       bfd_put_32 (sec->owner, ILA + ((dest << 7) & 0x01ffff80) + 79,
   1269  1.1  christos 		  sec->contents + sec->size + 8);
   1270  1.1  christos       if (!BRA_STUBS)
   1271  1.1  christos 	bfd_put_32 (sec->owner, BR + (((to - (from + 12)) << 5) & 0x007fff80),
   1272  1.1  christos 		    sec->contents + sec->size + 12);
   1273  1.1  christos       else
   1274  1.1  christos 	bfd_put_32 (sec->owner, BRA + ((to << 5) & 0x007fff80),
   1275  1.1  christos 		    sec->contents + sec->size + 12);
   1276  1.1  christos     }
   1277  1.1  christos   else if (htab->params->ovly_flavour == ovly_normal
   1278  1.1  christos 	   && htab->params->compact_stub)
   1279  1.1  christos     {
   1280  1.1  christos       if (!BRA_STUBS)
   1281  1.1  christos 	bfd_put_32 (sec->owner, BRSL + (((to - from) << 5) & 0x007fff80) + 75,
   1282  1.1  christos 		    sec->contents + sec->size);
   1283  1.1  christos       else
   1284  1.1  christos 	bfd_put_32 (sec->owner, BRASL + ((to << 5) & 0x007fff80) + 75,
   1285  1.1  christos 		    sec->contents + sec->size);
   1286  1.1  christos       bfd_put_32 (sec->owner, (dest & 0x3ffff) | (dest_ovl << 18),
   1287  1.1  christos 		  sec->contents + sec->size + 4);
   1288  1.1  christos     }
   1289  1.1  christos   else if (htab->params->ovly_flavour == ovly_soft_icache
   1290  1.1  christos 	   && htab->params->compact_stub)
   1291  1.1  christos     {
   1292  1.1  christos       lrlive = 0;
   1293  1.1  christos       if (stub_type == nonovl_stub)
   1294  1.1  christos 	;
   1295  1.1  christos       else if (stub_type == call_ovl_stub)
   1296  1.1  christos 	/* A brsl makes lr live and *(*sp+16) is live.
   1297  1.1  christos 	   Tail calls have the same liveness.  */
   1298  1.1  christos 	lrlive = 5;
   1299  1.1  christos       else if (!htab->params->lrlive_analysis)
   1300  1.1  christos 	/* Assume stack frame and lr save.  */
   1301  1.1  christos 	lrlive = 1;
   1302  1.1  christos       else if (irela != NULL)
   1303  1.1  christos 	{
   1304  1.1  christos 	  /* Analyse branch instructions.  */
   1305  1.1  christos 	  struct function_info *caller;
   1306  1.1  christos 	  bfd_vma off;
   1307  1.1  christos 
   1308  1.1  christos 	  caller = find_function (isec, irela->r_offset, info);
   1309  1.1  christos 	  if (caller->start == NULL)
   1310  1.1  christos 	    off = irela->r_offset;
   1311  1.1  christos 	  else
   1312  1.1  christos 	    {
   1313  1.1  christos 	      struct function_info *found = NULL;
   1314  1.1  christos 
   1315  1.1  christos 	      /* Find the earliest piece of this function that
   1316  1.1  christos 		 has frame adjusting instructions.  We might
   1317  1.1  christos 		 see dynamic frame adjustment (eg. for alloca)
   1318  1.1  christos 		 in some later piece, but functions using
   1319  1.1  christos 		 alloca always set up a frame earlier.  Frame
   1320  1.1  christos 		 setup instructions are always in one piece.  */
   1321  1.1  christos 	      if (caller->lr_store != (bfd_vma) -1
   1322  1.1  christos 		  || caller->sp_adjust != (bfd_vma) -1)
   1323  1.1  christos 		found = caller;
   1324  1.1  christos 	      while (caller->start != NULL)
   1325  1.1  christos 		{
   1326  1.1  christos 		  caller = caller->start;
   1327  1.1  christos 		  if (caller->lr_store != (bfd_vma) -1
   1328  1.1  christos 		      || caller->sp_adjust != (bfd_vma) -1)
   1329  1.1  christos 		    found = caller;
   1330  1.1  christos 		}
   1331  1.1  christos 	      if (found != NULL)
   1332  1.1  christos 		caller = found;
   1333  1.1  christos 	      off = (bfd_vma) -1;
   1334  1.1  christos 	    }
   1335  1.1  christos 
   1336  1.1  christos 	  if (off > caller->sp_adjust)
   1337  1.1  christos 	    {
   1338  1.1  christos 	      if (off > caller->lr_store)
   1339  1.1  christos 		/* Only *(*sp+16) is live.  */
   1340  1.1  christos 		lrlive = 1;
   1341  1.1  christos 	      else
   1342  1.1  christos 		/* If no lr save, then we must be in a
   1343  1.1  christos 		   leaf function with a frame.
   1344  1.1  christos 		   lr is still live.  */
   1345  1.1  christos 		lrlive = 4;
   1346  1.1  christos 	    }
   1347  1.1  christos 	  else if (off > caller->lr_store)
   1348  1.1  christos 	    {
   1349  1.1  christos 	      /* Between lr save and stack adjust.  */
   1350  1.1  christos 	      lrlive = 3;
   1351  1.1  christos 	      /* This should never happen since prologues won't
   1352  1.1  christos 		 be split here.  */
   1353  1.1  christos 	      BFD_ASSERT (0);
   1354  1.1  christos 	    }
   1355  1.1  christos 	  else
   1356  1.1  christos 	    /* On entry to function.  */
   1357  1.1  christos 	    lrlive = 5;
   1358  1.1  christos 
   1359  1.1  christos 	  if (stub_type != br000_ovl_stub
   1360  1.1  christos 	      && lrlive != stub_type - br000_ovl_stub)
   1361  1.1  christos 	    info->callbacks->einfo (_("%A:0x%v lrlive .brinfo (%u) differs "
   1362  1.1  christos 				      "from analysis (%u)\n"),
   1363  1.1  christos 				    isec, irela->r_offset, lrlive,
   1364  1.1  christos 				    stub_type - br000_ovl_stub);
   1365  1.1  christos 	}
   1366  1.1  christos 
   1367  1.1  christos       /* If given lrlive info via .brinfo, use it.  */
   1368  1.1  christos       if (stub_type > br000_ovl_stub)
   1369  1.1  christos 	lrlive = stub_type - br000_ovl_stub;
   1370  1.1  christos 
   1371  1.1  christos       if (ovl == 0)
   1372  1.1  christos 	to = (htab->ovly_entry[1]->root.u.def.value
   1373  1.1  christos 	      + htab->ovly_entry[1]->root.u.def.section->output_offset
   1374  1.1  christos 	      + htab->ovly_entry[1]->root.u.def.section->output_section->vma);
   1375  1.1  christos 
   1376  1.1  christos       /* The branch that uses this stub goes to stub_addr + 4.  We'll
   1377  1.1  christos 	 set up an xor pattern that can be used by the icache manager
   1378  1.1  christos 	 to modify this branch to go directly to its destination.  */
   1379  1.1  christos       g->stub_addr += 4;
   1380  1.1  christos       br_dest = g->stub_addr;
   1381  1.1  christos       if (irela == NULL)
   1382  1.1  christos 	{
   1383  1.1  christos 	  /* Except in the case of _SPUEAR_ stubs, the branch in
   1384  1.1  christos 	     question is the one in the stub itself.  */
   1385  1.1  christos 	  BFD_ASSERT (stub_type == nonovl_stub);
   1386  1.1  christos 	  g->br_addr = g->stub_addr;
   1387  1.1  christos 	  br_dest = to;
   1388  1.1  christos 	}
   1389  1.1  christos 
   1390  1.1  christos       set_id = ((dest_ovl - 1) >> htab->num_lines_log2) + 1;
   1391  1.1  christos       bfd_put_32 (sec->owner, (set_id << 18) | (dest & 0x3ffff),
   1392  1.1  christos 		  sec->contents + sec->size);
   1393  1.1  christos       bfd_put_32 (sec->owner, BRASL + ((to << 5) & 0x007fff80) + 75,
   1394  1.1  christos 		  sec->contents + sec->size + 4);
   1395  1.1  christos       bfd_put_32 (sec->owner, (lrlive << 29) | (g->br_addr & 0x3ffff),
   1396  1.1  christos 		  sec->contents + sec->size + 8);
   1397  1.1  christos       patt = dest ^ br_dest;
   1398  1.1  christos       if (irela != NULL && ELF32_R_TYPE (irela->r_info) == R_SPU_REL16)
   1399  1.1  christos 	patt = (dest - g->br_addr) ^ (br_dest - g->br_addr);
   1400  1.1  christos       bfd_put_32 (sec->owner, (patt << 5) & 0x007fff80,
   1401  1.1  christos 		  sec->contents + sec->size + 12);
   1402  1.1  christos 
   1403  1.1  christos       if (ovl == 0)
   1404  1.1  christos 	/* Extra space for linked list entries.  */
   1405  1.1  christos 	sec->size += 16;
   1406  1.1  christos     }
   1407  1.1  christos   else
   1408  1.1  christos     abort ();
   1409  1.1  christos 
   1410  1.1  christos   sec->size += ovl_stub_size (htab->params);
   1411  1.1  christos 
   1412  1.1  christos   if (htab->params->emit_stub_syms)
   1413  1.1  christos     {
   1414  1.1  christos       size_t len;
   1415  1.1  christos       char *name;
   1416  1.1  christos       int add;
   1417  1.1  christos 
   1418  1.1  christos       len = 8 + sizeof (".ovl_call.") - 1;
   1419  1.1  christos       if (h != NULL)
   1420  1.1  christos 	len += strlen (h->root.root.string);
   1421  1.1  christos       else
   1422  1.1  christos 	len += 8 + 1 + 8;
   1423  1.1  christos       add = 0;
   1424  1.1  christos       if (irela != NULL)
   1425  1.1  christos 	add = (int) irela->r_addend & 0xffffffff;
   1426  1.1  christos       if (add != 0)
   1427  1.1  christos 	len += 1 + 8;
   1428  1.1  christos       name = bfd_malloc (len);
   1429  1.1  christos       if (name == NULL)
   1430  1.1  christos 	return FALSE;
   1431  1.1  christos 
   1432  1.1  christos       sprintf (name, "%08x.ovl_call.", g->ovl);
   1433  1.1  christos       if (h != NULL)
   1434  1.1  christos 	strcpy (name + 8 + sizeof (".ovl_call.") - 1, h->root.root.string);
   1435  1.1  christos       else
   1436  1.1  christos 	sprintf (name + 8 + sizeof (".ovl_call.") - 1, "%x:%x",
   1437  1.1  christos 		 dest_sec->id & 0xffffffff,
   1438  1.1  christos 		 (int) ELF32_R_SYM (irela->r_info) & 0xffffffff);
   1439  1.1  christos       if (add != 0)
   1440  1.1  christos 	sprintf (name + len - 9, "+%x", add);
   1441  1.1  christos 
   1442  1.1  christos       h = elf_link_hash_lookup (&htab->elf, name, TRUE, TRUE, FALSE);
   1443  1.1  christos       free (name);
   1444  1.1  christos       if (h == NULL)
   1445  1.1  christos 	return FALSE;
   1446  1.1  christos       if (h->root.type == bfd_link_hash_new)
   1447  1.1  christos 	{
   1448  1.1  christos 	  h->root.type = bfd_link_hash_defined;
   1449  1.1  christos 	  h->root.u.def.section = sec;
   1450  1.1  christos 	  h->size = ovl_stub_size (htab->params);
   1451  1.1  christos 	  h->root.u.def.value = sec->size - h->size;
   1452  1.1  christos 	  h->type = STT_FUNC;
   1453  1.1  christos 	  h->ref_regular = 1;
   1454  1.1  christos 	  h->def_regular = 1;
   1455  1.1  christos 	  h->ref_regular_nonweak = 1;
   1456  1.1  christos 	  h->forced_local = 1;
   1457  1.1  christos 	  h->non_elf = 0;
   1458  1.1  christos 	}
   1459  1.1  christos     }
   1460  1.1  christos 
   1461  1.1  christos   return TRUE;
   1462  1.1  christos }
   1463  1.1  christos 
   1464  1.1  christos /* Called via elf_link_hash_traverse to allocate stubs for any _SPUEAR_
   1465  1.1  christos    symbols.  */
   1466  1.1  christos 
   1467  1.1  christos static bfd_boolean
   1468  1.1  christos allocate_spuear_stubs (struct elf_link_hash_entry *h, void *inf)
   1469  1.1  christos {
   1470  1.1  christos   /* Symbols starting with _SPUEAR_ need a stub because they may be
   1471  1.1  christos      invoked by the PPU.  */
   1472  1.1  christos   struct bfd_link_info *info = inf;
   1473  1.1  christos   struct spu_link_hash_table *htab = spu_hash_table (info);
   1474  1.1  christos   asection *sym_sec;
   1475  1.1  christos 
   1476  1.1  christos   if ((h->root.type == bfd_link_hash_defined
   1477  1.1  christos        || h->root.type == bfd_link_hash_defweak)
   1478  1.1  christos       && h->def_regular
   1479  1.1  christos       && strncmp (h->root.root.string, "_SPUEAR_", 8) == 0
   1480  1.1  christos       && (sym_sec = h->root.u.def.section) != NULL
   1481  1.1  christos       && sym_sec->output_section != bfd_abs_section_ptr
   1482  1.1  christos       && spu_elf_section_data (sym_sec->output_section) != NULL
   1483  1.1  christos       && (spu_elf_section_data (sym_sec->output_section)->u.o.ovl_index != 0
   1484  1.1  christos 	  || htab->params->non_overlay_stubs))
   1485  1.1  christos     {
   1486  1.1  christos       return count_stub (htab, NULL, NULL, nonovl_stub, h, NULL);
   1487  1.1  christos     }
   1488  1.1  christos 
   1489  1.1  christos   return TRUE;
   1490  1.1  christos }
   1491  1.1  christos 
   1492  1.1  christos static bfd_boolean
   1493  1.1  christos build_spuear_stubs (struct elf_link_hash_entry *h, void *inf)
   1494  1.1  christos {
   1495  1.1  christos   /* Symbols starting with _SPUEAR_ need a stub because they may be
   1496  1.1  christos      invoked by the PPU.  */
   1497  1.1  christos   struct bfd_link_info *info = inf;
   1498  1.1  christos   struct spu_link_hash_table *htab = spu_hash_table (info);
   1499  1.1  christos   asection *sym_sec;
   1500  1.1  christos 
   1501  1.1  christos   if ((h->root.type == bfd_link_hash_defined
   1502  1.1  christos        || h->root.type == bfd_link_hash_defweak)
   1503  1.1  christos       && h->def_regular
   1504  1.1  christos       && strncmp (h->root.root.string, "_SPUEAR_", 8) == 0
   1505  1.1  christos       && (sym_sec = h->root.u.def.section) != NULL
   1506  1.1  christos       && sym_sec->output_section != bfd_abs_section_ptr
   1507  1.1  christos       && spu_elf_section_data (sym_sec->output_section) != NULL
   1508  1.1  christos       && (spu_elf_section_data (sym_sec->output_section)->u.o.ovl_index != 0
   1509  1.1  christos 	  || htab->params->non_overlay_stubs))
   1510  1.1  christos     {
   1511  1.1  christos       return build_stub (info, NULL, NULL, nonovl_stub, h, NULL,
   1512  1.1  christos 			 h->root.u.def.value, sym_sec);
   1513  1.1  christos     }
   1514  1.1  christos 
   1515  1.1  christos   return TRUE;
   1516  1.1  christos }
   1517  1.1  christos 
   1518  1.1  christos /* Size or build stubs.  */
   1519  1.1  christos 
   1520  1.1  christos static bfd_boolean
   1521  1.1  christos process_stubs (struct bfd_link_info *info, bfd_boolean build)
   1522  1.1  christos {
   1523  1.1  christos   struct spu_link_hash_table *htab = spu_hash_table (info);
   1524  1.1  christos   bfd *ibfd;
   1525  1.1  christos 
   1526  1.1  christos   for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link_next)
   1527  1.1  christos     {
   1528  1.1  christos       extern const bfd_target bfd_elf32_spu_vec;
   1529  1.1  christos       Elf_Internal_Shdr *symtab_hdr;
   1530  1.1  christos       asection *isec;
   1531  1.1  christos       Elf_Internal_Sym *local_syms = NULL;
   1532  1.1  christos 
   1533  1.1  christos       if (ibfd->xvec != &bfd_elf32_spu_vec)
   1534  1.1  christos 	continue;
   1535  1.1  christos 
   1536  1.1  christos       /* We'll need the symbol table in a second.  */
   1537  1.1  christos       symtab_hdr = &elf_tdata (ibfd)->symtab_hdr;
   1538  1.1  christos       if (symtab_hdr->sh_info == 0)
   1539  1.1  christos 	continue;
   1540  1.1  christos 
   1541  1.1  christos       /* Walk over each section attached to the input bfd.  */
   1542  1.1  christos       for (isec = ibfd->sections; isec != NULL; isec = isec->next)
   1543  1.1  christos 	{
   1544  1.1  christos 	  Elf_Internal_Rela *internal_relocs, *irelaend, *irela;
   1545  1.1  christos 
   1546  1.1  christos 	  /* If there aren't any relocs, then there's nothing more to do.  */
   1547  1.1  christos 	  if ((isec->flags & SEC_RELOC) == 0
   1548  1.1  christos 	      || isec->reloc_count == 0)
   1549  1.1  christos 	    continue;
   1550  1.1  christos 
   1551  1.1  christos 	  if (!maybe_needs_stubs (isec))
   1552  1.1  christos 	    continue;
   1553  1.1  christos 
   1554  1.1  christos 	  /* Get the relocs.  */
   1555  1.1  christos 	  internal_relocs = _bfd_elf_link_read_relocs (ibfd, isec, NULL, NULL,
   1556  1.1  christos 						       info->keep_memory);
   1557  1.1  christos 	  if (internal_relocs == NULL)
   1558  1.1  christos 	    goto error_ret_free_local;
   1559  1.1  christos 
   1560  1.1  christos 	  /* Now examine each relocation.  */
   1561  1.1  christos 	  irela = internal_relocs;
   1562  1.1  christos 	  irelaend = irela + isec->reloc_count;
   1563  1.1  christos 	  for (; irela < irelaend; irela++)
   1564  1.1  christos 	    {
   1565  1.1  christos 	      enum elf_spu_reloc_type r_type;
   1566  1.1  christos 	      unsigned int r_indx;
   1567  1.1  christos 	      asection *sym_sec;
   1568  1.1  christos 	      Elf_Internal_Sym *sym;
   1569  1.1  christos 	      struct elf_link_hash_entry *h;
   1570  1.1  christos 	      enum _stub_type stub_type;
   1571  1.1  christos 
   1572  1.1  christos 	      r_type = ELF32_R_TYPE (irela->r_info);
   1573  1.1  christos 	      r_indx = ELF32_R_SYM (irela->r_info);
   1574  1.1  christos 
   1575  1.1  christos 	      if (r_type >= R_SPU_max)
   1576  1.1  christos 		{
   1577  1.1  christos 		  bfd_set_error (bfd_error_bad_value);
   1578  1.1  christos 		error_ret_free_internal:
   1579  1.1  christos 		  if (elf_section_data (isec)->relocs != internal_relocs)
   1580  1.1  christos 		    free (internal_relocs);
   1581  1.1  christos 		error_ret_free_local:
   1582  1.1  christos 		  if (local_syms != NULL
   1583  1.1  christos 		      && (symtab_hdr->contents
   1584  1.1  christos 			  != (unsigned char *) local_syms))
   1585  1.1  christos 		    free (local_syms);
   1586  1.1  christos 		  return FALSE;
   1587  1.1  christos 		}
   1588  1.1  christos 
   1589  1.1  christos 	      /* Determine the reloc target section.  */
   1590  1.1  christos 	      if (!get_sym_h (&h, &sym, &sym_sec, &local_syms, r_indx, ibfd))
   1591  1.1  christos 		goto error_ret_free_internal;
   1592  1.1  christos 
   1593  1.1  christos 	      stub_type = needs_ovl_stub (h, sym, sym_sec, isec, irela,
   1594  1.1  christos 					  NULL, info);
   1595  1.1  christos 	      if (stub_type == no_stub)
   1596  1.1  christos 		continue;
   1597  1.1  christos 	      else if (stub_type == stub_error)
   1598  1.1  christos 		goto error_ret_free_internal;
   1599  1.1  christos 
   1600  1.1  christos 	      if (htab->stub_count == NULL)
   1601  1.1  christos 		{
   1602  1.1  christos 		  bfd_size_type amt;
   1603  1.1  christos 		  amt = (htab->num_overlays + 1) * sizeof (*htab->stub_count);
   1604  1.1  christos 		  htab->stub_count = bfd_zmalloc (amt);
   1605  1.1  christos 		  if (htab->stub_count == NULL)
   1606  1.1  christos 		    goto error_ret_free_internal;
   1607  1.1  christos 		}
   1608  1.1  christos 
   1609  1.1  christos 	      if (!build)
   1610  1.1  christos 		{
   1611  1.1  christos 		  if (!count_stub (htab, ibfd, isec, stub_type, h, irela))
   1612  1.1  christos 		    goto error_ret_free_internal;
   1613  1.1  christos 		}
   1614  1.1  christos 	      else
   1615  1.1  christos 		{
   1616  1.1  christos 		  bfd_vma dest;
   1617  1.1  christos 
   1618  1.1  christos 		  if (h != NULL)
   1619  1.1  christos 		    dest = h->root.u.def.value;
   1620  1.1  christos 		  else
   1621  1.1  christos 		    dest = sym->st_value;
   1622  1.1  christos 		  dest += irela->r_addend;
   1623  1.1  christos 		  if (!build_stub (info, ibfd, isec, stub_type, h, irela,
   1624  1.1  christos 				   dest, sym_sec))
   1625  1.1  christos 		    goto error_ret_free_internal;
   1626  1.1  christos 		}
   1627  1.1  christos 	    }
   1628  1.1  christos 
   1629  1.1  christos 	  /* We're done with the internal relocs, free them.  */
   1630  1.1  christos 	  if (elf_section_data (isec)->relocs != internal_relocs)
   1631  1.1  christos 	    free (internal_relocs);
   1632  1.1  christos 	}
   1633  1.1  christos 
   1634  1.1  christos       if (local_syms != NULL
   1635  1.1  christos 	  && symtab_hdr->contents != (unsigned char *) local_syms)
   1636  1.1  christos 	{
   1637  1.1  christos 	  if (!info->keep_memory)
   1638  1.1  christos 	    free (local_syms);
   1639  1.1  christos 	  else
   1640  1.1  christos 	    symtab_hdr->contents = (unsigned char *) local_syms;
   1641  1.1  christos 	}
   1642  1.1  christos     }
   1643  1.1  christos 
   1644  1.1  christos   return TRUE;
   1645  1.1  christos }
   1646  1.1  christos 
   1647  1.1  christos /* Allocate space for overlay call and return stubs.
   1648  1.1  christos    Return 0 on error, 1 if no overlays, 2 otherwise.  */
   1649  1.1  christos 
   1650  1.1  christos int
   1651  1.1  christos spu_elf_size_stubs (struct bfd_link_info *info)
   1652  1.1  christos {
   1653  1.1  christos   struct spu_link_hash_table *htab;
   1654  1.1  christos   bfd *ibfd;
   1655  1.1  christos   bfd_size_type amt;
   1656  1.1  christos   flagword flags;
   1657  1.1  christos   unsigned int i;
   1658  1.1  christos   asection *stub;
   1659  1.1  christos 
   1660  1.1  christos   if (!process_stubs (info, FALSE))
   1661  1.1  christos     return 0;
   1662  1.1  christos 
   1663  1.1  christos   htab = spu_hash_table (info);
   1664  1.1  christos   elf_link_hash_traverse (&htab->elf, allocate_spuear_stubs, info);
   1665  1.1  christos   if (htab->stub_err)
   1666  1.1  christos     return 0;
   1667  1.1  christos 
   1668  1.1  christos   ibfd = info->input_bfds;
   1669  1.1  christos   if (htab->stub_count != NULL)
   1670  1.1  christos     {
   1671  1.1  christos       amt = (htab->num_overlays + 1) * sizeof (*htab->stub_sec);
   1672  1.1  christos       htab->stub_sec = bfd_zmalloc (amt);
   1673  1.1  christos       if (htab->stub_sec == NULL)
   1674  1.1  christos 	return 0;
   1675  1.1  christos 
   1676  1.1  christos       flags = (SEC_ALLOC | SEC_LOAD | SEC_CODE | SEC_READONLY
   1677  1.1  christos 	       | SEC_HAS_CONTENTS | SEC_IN_MEMORY);
   1678  1.1  christos       stub = bfd_make_section_anyway_with_flags (ibfd, ".stub", flags);
   1679  1.1  christos       htab->stub_sec[0] = stub;
   1680  1.1  christos       if (stub == NULL
   1681  1.1  christos 	  || !bfd_set_section_alignment (ibfd, stub,
   1682  1.1  christos 					 ovl_stub_size_log2 (htab->params)))
   1683  1.1  christos 	return 0;
   1684  1.1  christos       stub->size = htab->stub_count[0] * ovl_stub_size (htab->params);
   1685  1.1  christos       if (htab->params->ovly_flavour == ovly_soft_icache)
   1686  1.1  christos 	/* Extra space for linked list entries.  */
   1687  1.1  christos 	stub->size += htab->stub_count[0] * 16;
   1688  1.1  christos 
   1689  1.1  christos       for (i = 0; i < htab->num_overlays; ++i)
   1690  1.1  christos 	{
   1691  1.1  christos 	  asection *osec = htab->ovl_sec[i];
   1692  1.1  christos 	  unsigned int ovl = spu_elf_section_data (osec)->u.o.ovl_index;
   1693  1.1  christos 	  stub = bfd_make_section_anyway_with_flags (ibfd, ".stub", flags);
   1694  1.1  christos 	  htab->stub_sec[ovl] = stub;
   1695  1.1  christos 	  if (stub == NULL
   1696  1.1  christos 	      || !bfd_set_section_alignment (ibfd, stub,
   1697  1.1  christos 					     ovl_stub_size_log2 (htab->params)))
   1698  1.1  christos 	    return 0;
   1699  1.1  christos 	  stub->size = htab->stub_count[ovl] * ovl_stub_size (htab->params);
   1700  1.1  christos 	}
   1701  1.1  christos     }
   1702  1.1  christos 
   1703  1.1  christos   if (htab->params->ovly_flavour == ovly_soft_icache)
   1704  1.1  christos     {
   1705  1.1  christos       /* Space for icache manager tables.
   1706  1.1  christos 	 a) Tag array, one quadword per cache line.
   1707  1.1  christos 	 b) Rewrite "to" list, one quadword per cache line.
   1708  1.1  christos 	 c) Rewrite "from" list, one byte per outgoing branch (rounded up to
   1709  1.1  christos 	    a power-of-two number of full quadwords) per cache line.  */
   1710  1.1  christos 
   1711  1.1  christos       flags = SEC_ALLOC;
   1712  1.1  christos       htab->ovtab = bfd_make_section_anyway_with_flags (ibfd, ".ovtab", flags);
   1713  1.1  christos       if (htab->ovtab == NULL
   1714  1.1  christos 	  || !bfd_set_section_alignment (ibfd, htab->ovtab, 4))
   1715  1.1  christos 	return 0;
   1716  1.1  christos 
   1717  1.1  christos       htab->ovtab->size = (16 + 16 + (16 << htab->fromelem_size_log2))
   1718  1.1  christos 			  << htab->num_lines_log2;
   1719  1.1  christos 
   1720  1.1  christos       flags = SEC_ALLOC | SEC_LOAD | SEC_HAS_CONTENTS | SEC_IN_MEMORY;
   1721  1.1  christos       htab->init = bfd_make_section_anyway_with_flags (ibfd, ".ovini", flags);
   1722  1.1  christos       if (htab->init == NULL
   1723  1.1  christos 	  || !bfd_set_section_alignment (ibfd, htab->init, 4))
   1724  1.1  christos 	return 0;
   1725  1.1  christos 
   1726  1.1  christos       htab->init->size = 16;
   1727  1.1  christos     }
   1728  1.1  christos   else if (htab->stub_count == NULL)
   1729  1.1  christos     return 1;
   1730  1.1  christos   else
   1731  1.1  christos     {
   1732  1.1  christos       /* htab->ovtab consists of two arrays.
   1733  1.1  christos 	 .	struct {
   1734  1.1  christos 	 .	  u32 vma;
   1735  1.1  christos 	 .	  u32 size;
   1736  1.1  christos 	 .	  u32 file_off;
   1737  1.1  christos 	 .	  u32 buf;
   1738  1.1  christos 	 .	} _ovly_table[];
   1739  1.1  christos 	 .
   1740  1.1  christos 	 .	struct {
   1741  1.1  christos 	 .	  u32 mapped;
   1742  1.1  christos 	 .	} _ovly_buf_table[];
   1743  1.1  christos 	 .  */
   1744  1.1  christos 
   1745  1.1  christos       flags = SEC_ALLOC | SEC_LOAD | SEC_HAS_CONTENTS | SEC_IN_MEMORY;
   1746  1.1  christos       htab->ovtab = bfd_make_section_anyway_with_flags (ibfd, ".ovtab", flags);
   1747  1.1  christos       if (htab->ovtab == NULL
   1748  1.1  christos 	  || !bfd_set_section_alignment (ibfd, htab->ovtab, 4))
   1749  1.1  christos 	return 0;
   1750  1.1  christos 
   1751  1.1  christos       htab->ovtab->size = htab->num_overlays * 16 + 16 + htab->num_buf * 4;
   1752  1.1  christos     }
   1753  1.1  christos 
   1754  1.1  christos   htab->toe = bfd_make_section_anyway_with_flags (ibfd, ".toe", SEC_ALLOC);
   1755  1.1  christos   if (htab->toe == NULL
   1756  1.1  christos       || !bfd_set_section_alignment (ibfd, htab->toe, 4))
   1757  1.1  christos     return 0;
   1758  1.1  christos   htab->toe->size = 16;
   1759  1.1  christos 
   1760  1.1  christos   return 2;
   1761  1.1  christos }
   1762  1.1  christos 
   1763  1.1  christos /* Called from ld to place overlay manager data sections.  This is done
   1764  1.1  christos    after the overlay manager itself is loaded, mainly so that the
   1765  1.1  christos    linker's htab->init section is placed after any other .ovl.init
   1766  1.1  christos    sections.  */
   1767  1.1  christos 
   1768  1.1  christos void
   1769  1.1  christos spu_elf_place_overlay_data (struct bfd_link_info *info)
   1770  1.1  christos {
   1771  1.1  christos   struct spu_link_hash_table *htab = spu_hash_table (info);
   1772  1.1  christos   unsigned int i;
   1773  1.1  christos 
   1774  1.1  christos   if (htab->stub_sec != NULL)
   1775  1.1  christos     {
   1776  1.1  christos       (*htab->params->place_spu_section) (htab->stub_sec[0], NULL, ".text");
   1777  1.1  christos 
   1778  1.1  christos       for (i = 0; i < htab->num_overlays; ++i)
   1779  1.1  christos 	{
   1780  1.1  christos 	  asection *osec = htab->ovl_sec[i];
   1781  1.1  christos 	  unsigned int ovl = spu_elf_section_data (osec)->u.o.ovl_index;
   1782  1.1  christos 	  (*htab->params->place_spu_section) (htab->stub_sec[ovl], osec, NULL);
   1783  1.1  christos 	}
   1784  1.1  christos     }
   1785  1.1  christos 
   1786  1.1  christos   if (htab->params->ovly_flavour == ovly_soft_icache)
   1787  1.1  christos     (*htab->params->place_spu_section) (htab->init, NULL, ".ovl.init");
   1788  1.1  christos 
   1789  1.1  christos   if (htab->ovtab != NULL)
   1790  1.1  christos     {
   1791  1.1  christos       const char *ovout = ".data";
   1792  1.1  christos       if (htab->params->ovly_flavour == ovly_soft_icache)
   1793  1.1  christos 	ovout = ".bss";
   1794  1.1  christos       (*htab->params->place_spu_section) (htab->ovtab, NULL, ovout);
   1795  1.1  christos     }
   1796  1.1  christos 
   1797  1.1  christos   if (htab->toe != NULL)
   1798  1.1  christos     (*htab->params->place_spu_section) (htab->toe, NULL, ".toe");
   1799  1.1  christos }
   1800  1.1  christos 
   1801  1.1  christos /* Functions to handle embedded spu_ovl.o object.  */
   1802  1.1  christos 
   1803  1.1  christos static void *
   1804  1.1  christos ovl_mgr_open (struct bfd *nbfd ATTRIBUTE_UNUSED, void *stream)
   1805  1.1  christos {
   1806  1.1  christos   return stream;
   1807  1.1  christos }
   1808  1.1  christos 
   1809  1.1  christos static file_ptr
   1810  1.1  christos ovl_mgr_pread (struct bfd *abfd ATTRIBUTE_UNUSED,
   1811  1.1  christos 	       void *stream,
   1812  1.1  christos 	       void *buf,
   1813  1.1  christos 	       file_ptr nbytes,
   1814  1.1  christos 	       file_ptr offset)
   1815  1.1  christos {
   1816  1.1  christos   struct _ovl_stream *os;
   1817  1.1  christos   size_t count;
   1818  1.1  christos   size_t max;
   1819  1.1  christos 
   1820  1.1  christos   os = (struct _ovl_stream *) stream;
   1821  1.1  christos   max = (const char *) os->end - (const char *) os->start;
   1822  1.1  christos 
   1823  1.1  christos   if ((ufile_ptr) offset >= max)
   1824  1.1  christos     return 0;
   1825  1.1  christos 
   1826  1.1  christos   count = nbytes;
   1827  1.1  christos   if (count > max - offset)
   1828  1.1  christos     count = max - offset;
   1829  1.1  christos 
   1830  1.1  christos   memcpy (buf, (const char *) os->start + offset, count);
   1831  1.1  christos   return count;
   1832  1.1  christos }
   1833  1.1  christos 
   1834  1.1  christos bfd_boolean
   1835  1.1  christos spu_elf_open_builtin_lib (bfd **ovl_bfd, const struct _ovl_stream *stream)
   1836  1.1  christos {
   1837  1.1  christos   *ovl_bfd = bfd_openr_iovec ("builtin ovl_mgr",
   1838  1.1  christos 			      "elf32-spu",
   1839  1.1  christos 			      ovl_mgr_open,
   1840  1.1  christos 			      (void *) stream,
   1841  1.1  christos 			      ovl_mgr_pread,
   1842  1.1  christos 			      NULL,
   1843  1.1  christos 			      NULL);
   1844  1.1  christos   return *ovl_bfd != NULL;
   1845  1.1  christos }
   1846  1.1  christos 
   1847  1.1  christos static unsigned int
   1848  1.1  christos overlay_index (asection *sec)
   1849  1.1  christos {
   1850  1.1  christos   if (sec == NULL
   1851  1.1  christos       || sec->output_section == bfd_abs_section_ptr)
   1852  1.1  christos     return 0;
   1853  1.1  christos   return spu_elf_section_data (sec->output_section)->u.o.ovl_index;
   1854  1.1  christos }
   1855  1.1  christos 
   1856  1.1  christos /* Define an STT_OBJECT symbol.  */
   1857  1.1  christos 
   1858  1.1  christos static struct elf_link_hash_entry *
   1859  1.1  christos define_ovtab_symbol (struct spu_link_hash_table *htab, const char *name)
   1860  1.1  christos {
   1861  1.1  christos   struct elf_link_hash_entry *h;
   1862  1.1  christos 
   1863  1.1  christos   h = elf_link_hash_lookup (&htab->elf, name, TRUE, FALSE, FALSE);
   1864  1.1  christos   if (h == NULL)
   1865  1.1  christos     return NULL;
   1866  1.1  christos 
   1867  1.1  christos   if (h->root.type != bfd_link_hash_defined
   1868  1.1  christos       || !h->def_regular)
   1869  1.1  christos     {
   1870  1.1  christos       h->root.type = bfd_link_hash_defined;
   1871  1.1  christos       h->root.u.def.section = htab->ovtab;
   1872  1.1  christos       h->type = STT_OBJECT;
   1873  1.1  christos       h->ref_regular = 1;
   1874  1.1  christos       h->def_regular = 1;
   1875  1.1  christos       h->ref_regular_nonweak = 1;
   1876  1.1  christos       h->non_elf = 0;
   1877  1.1  christos     }
   1878  1.1  christos   else if (h->root.u.def.section->owner != NULL)
   1879  1.1  christos     {
   1880  1.1  christos       (*_bfd_error_handler) (_("%B is not allowed to define %s"),
   1881  1.1  christos 			     h->root.u.def.section->owner,
   1882  1.1  christos 			     h->root.root.string);
   1883  1.1  christos       bfd_set_error (bfd_error_bad_value);
   1884  1.1  christos       return NULL;
   1885  1.1  christos     }
   1886  1.1  christos   else
   1887  1.1  christos     {
   1888  1.1  christos       (*_bfd_error_handler) (_("you are not allowed to define %s in a script"),
   1889  1.1  christos 			     h->root.root.string);
   1890  1.1  christos       bfd_set_error (bfd_error_bad_value);
   1891  1.1  christos       return NULL;
   1892  1.1  christos     }
   1893  1.1  christos 
   1894  1.1  christos   return h;
   1895  1.1  christos }
   1896  1.1  christos 
   1897  1.1  christos /* Fill in all stubs and the overlay tables.  */
   1898  1.1  christos 
   1899  1.1  christos static bfd_boolean
   1900  1.1  christos spu_elf_build_stubs (struct bfd_link_info *info)
   1901  1.1  christos {
   1902  1.1  christos   struct spu_link_hash_table *htab = spu_hash_table (info);
   1903  1.1  christos   struct elf_link_hash_entry *h;
   1904  1.1  christos   bfd_byte *p;
   1905  1.1  christos   asection *s;
   1906  1.1  christos   bfd *obfd;
   1907  1.1  christos   unsigned int i;
   1908  1.1  christos 
   1909  1.1  christos   if (htab->num_overlays != 0)
   1910  1.1  christos     {
   1911  1.1  christos       for (i = 0; i < 2; i++)
   1912  1.1  christos 	{
   1913  1.1  christos 	  h = htab->ovly_entry[i];
   1914  1.1  christos 	  if (h != NULL
   1915  1.1  christos 	      && (h->root.type == bfd_link_hash_defined
   1916  1.1  christos 		  || h->root.type == bfd_link_hash_defweak)
   1917  1.1  christos 	      && h->def_regular)
   1918  1.1  christos 	    {
   1919  1.1  christos 	      s = h->root.u.def.section->output_section;
   1920  1.1  christos 	      if (spu_elf_section_data (s)->u.o.ovl_index)
   1921  1.1  christos 		{
   1922  1.1  christos 		  (*_bfd_error_handler) (_("%s in overlay section"),
   1923  1.1  christos 					 h->root.root.string);
   1924  1.1  christos 		  bfd_set_error (bfd_error_bad_value);
   1925  1.1  christos 		  return FALSE;
   1926  1.1  christos 		}
   1927  1.1  christos 	    }
   1928  1.1  christos 	}
   1929  1.1  christos     }
   1930  1.1  christos 
   1931  1.1  christos   if (htab->stub_sec != NULL)
   1932  1.1  christos     {
   1933  1.1  christos       for (i = 0; i <= htab->num_overlays; i++)
   1934  1.1  christos 	if (htab->stub_sec[i]->size != 0)
   1935  1.1  christos 	  {
   1936  1.1  christos 	    htab->stub_sec[i]->contents = bfd_zalloc (htab->stub_sec[i]->owner,
   1937  1.1  christos 						      htab->stub_sec[i]->size);
   1938  1.1  christos 	    if (htab->stub_sec[i]->contents == NULL)
   1939  1.1  christos 	      return FALSE;
   1940  1.1  christos 	    htab->stub_sec[i]->rawsize = htab->stub_sec[i]->size;
   1941  1.1  christos 	    htab->stub_sec[i]->size = 0;
   1942  1.1  christos 	  }
   1943  1.1  christos 
   1944  1.1  christos       /* Fill in all the stubs.  */
   1945  1.1  christos       process_stubs (info, TRUE);
   1946  1.1  christos       if (!htab->stub_err)
   1947  1.1  christos 	elf_link_hash_traverse (&htab->elf, build_spuear_stubs, info);
   1948  1.1  christos 
   1949  1.1  christos       if (htab->stub_err)
   1950  1.1  christos 	{
   1951  1.1  christos 	  (*_bfd_error_handler) (_("overlay stub relocation overflow"));
   1952  1.1  christos 	  bfd_set_error (bfd_error_bad_value);
   1953  1.1  christos 	  return FALSE;
   1954  1.1  christos 	}
   1955  1.1  christos 
   1956  1.1  christos       for (i = 0; i <= htab->num_overlays; i++)
   1957  1.1  christos 	{
   1958  1.1  christos 	  if (htab->stub_sec[i]->size != htab->stub_sec[i]->rawsize)
   1959  1.1  christos 	    {
   1960  1.1  christos 	      (*_bfd_error_handler)  (_("stubs don't match calculated size"));
   1961  1.1  christos 	      bfd_set_error (bfd_error_bad_value);
   1962  1.1  christos 	      return FALSE;
   1963  1.1  christos 	    }
   1964  1.1  christos 	  htab->stub_sec[i]->rawsize = 0;
   1965  1.1  christos 	}
   1966  1.1  christos     }
   1967  1.1  christos 
   1968  1.1  christos   if (htab->ovtab == NULL || htab->ovtab->size == 0)
   1969  1.1  christos     return TRUE;
   1970  1.1  christos 
   1971  1.1  christos   htab->ovtab->contents = bfd_zalloc (htab->ovtab->owner, htab->ovtab->size);
   1972  1.1  christos   if (htab->ovtab->contents == NULL)
   1973  1.1  christos     return FALSE;
   1974  1.1  christos 
   1975  1.1  christos   p = htab->ovtab->contents;
   1976  1.1  christos   if (htab->params->ovly_flavour == ovly_soft_icache)
   1977  1.1  christos     {
   1978  1.1  christos       bfd_vma off;
   1979  1.1  christos 
   1980  1.1  christos       h = define_ovtab_symbol (htab, "__icache_tag_array");
   1981  1.1  christos       if (h == NULL)
   1982  1.1  christos 	return FALSE;
   1983  1.1  christos       h->root.u.def.value = 0;
   1984  1.1  christos       h->size = 16 << htab->num_lines_log2;
   1985  1.1  christos       off = h->size;
   1986  1.1  christos 
   1987  1.1  christos       h = define_ovtab_symbol (htab, "__icache_tag_array_size");
   1988  1.1  christos       if (h == NULL)
   1989  1.1  christos 	return FALSE;
   1990  1.1  christos       h->root.u.def.value = 16 << htab->num_lines_log2;
   1991  1.1  christos       h->root.u.def.section = bfd_abs_section_ptr;
   1992  1.1  christos 
   1993  1.1  christos       h = define_ovtab_symbol (htab, "__icache_rewrite_to");
   1994  1.1  christos       if (h == NULL)
   1995  1.1  christos 	return FALSE;
   1996  1.1  christos       h->root.u.def.value = off;
   1997  1.1  christos       h->size = 16 << htab->num_lines_log2;
   1998  1.1  christos       off += h->size;
   1999  1.1  christos 
   2000  1.1  christos       h = define_ovtab_symbol (htab, "__icache_rewrite_to_size");
   2001  1.1  christos       if (h == NULL)
   2002  1.1  christos 	return FALSE;
   2003  1.1  christos       h->root.u.def.value = 16 << htab->num_lines_log2;
   2004  1.1  christos       h->root.u.def.section = bfd_abs_section_ptr;
   2005  1.1  christos 
   2006  1.1  christos       h = define_ovtab_symbol (htab, "__icache_rewrite_from");
   2007  1.1  christos       if (h == NULL)
   2008  1.1  christos 	return FALSE;
   2009  1.1  christos       h->root.u.def.value = off;
   2010  1.1  christos       h->size = 16 << (htab->fromelem_size_log2 + htab->num_lines_log2);
   2011  1.1  christos       off += h->size;
   2012  1.1  christos 
   2013  1.1  christos       h = define_ovtab_symbol (htab, "__icache_rewrite_from_size");
   2014  1.1  christos       if (h == NULL)
   2015  1.1  christos 	return FALSE;
   2016  1.1  christos       h->root.u.def.value = 16 << (htab->fromelem_size_log2
   2017  1.1  christos 				   + htab->num_lines_log2);
   2018  1.1  christos       h->root.u.def.section = bfd_abs_section_ptr;
   2019  1.1  christos 
   2020  1.1  christos       h = define_ovtab_symbol (htab, "__icache_log2_fromelemsize");
   2021  1.1  christos       if (h == NULL)
   2022  1.1  christos 	return FALSE;
   2023  1.1  christos       h->root.u.def.value = htab->fromelem_size_log2;
   2024  1.1  christos       h->root.u.def.section = bfd_abs_section_ptr;
   2025  1.1  christos 
   2026  1.1  christos       h = define_ovtab_symbol (htab, "__icache_base");
   2027  1.1  christos       if (h == NULL)
   2028  1.1  christos 	return FALSE;
   2029  1.1  christos       h->root.u.def.value = htab->ovl_sec[0]->vma;
   2030  1.1  christos       h->root.u.def.section = bfd_abs_section_ptr;
   2031  1.1  christos       h->size = htab->num_buf << htab->line_size_log2;
   2032  1.1  christos 
   2033  1.1  christos       h = define_ovtab_symbol (htab, "__icache_linesize");
   2034  1.1  christos       if (h == NULL)
   2035  1.1  christos 	return FALSE;
   2036  1.1  christos       h->root.u.def.value = 1 << htab->line_size_log2;
   2037  1.1  christos       h->root.u.def.section = bfd_abs_section_ptr;
   2038  1.1  christos 
   2039  1.1  christos       h = define_ovtab_symbol (htab, "__icache_log2_linesize");
   2040  1.1  christos       if (h == NULL)
   2041  1.1  christos 	return FALSE;
   2042  1.1  christos       h->root.u.def.value = htab->line_size_log2;
   2043  1.1  christos       h->root.u.def.section = bfd_abs_section_ptr;
   2044  1.1  christos 
   2045  1.1  christos       h = define_ovtab_symbol (htab, "__icache_neg_log2_linesize");
   2046  1.1  christos       if (h == NULL)
   2047  1.1  christos 	return FALSE;
   2048  1.1  christos       h->root.u.def.value = -htab->line_size_log2;
   2049  1.1  christos       h->root.u.def.section = bfd_abs_section_ptr;
   2050  1.1  christos 
   2051  1.1  christos       h = define_ovtab_symbol (htab, "__icache_cachesize");
   2052  1.1  christos       if (h == NULL)
   2053  1.1  christos 	return FALSE;
   2054  1.1  christos       h->root.u.def.value = 1 << (htab->num_lines_log2 + htab->line_size_log2);
   2055  1.1  christos       h->root.u.def.section = bfd_abs_section_ptr;
   2056  1.1  christos 
   2057  1.1  christos       h = define_ovtab_symbol (htab, "__icache_log2_cachesize");
   2058  1.1  christos       if (h == NULL)
   2059  1.1  christos 	return FALSE;
   2060  1.1  christos       h->root.u.def.value = htab->num_lines_log2 + htab->line_size_log2;
   2061  1.1  christos       h->root.u.def.section = bfd_abs_section_ptr;
   2062  1.1  christos 
   2063  1.1  christos       h = define_ovtab_symbol (htab, "__icache_neg_log2_cachesize");
   2064  1.1  christos       if (h == NULL)
   2065  1.1  christos 	return FALSE;
   2066  1.1  christos       h->root.u.def.value = -(htab->num_lines_log2 + htab->line_size_log2);
   2067  1.1  christos       h->root.u.def.section = bfd_abs_section_ptr;
   2068  1.1  christos 
   2069  1.1  christos       if (htab->init != NULL && htab->init->size != 0)
   2070  1.1  christos 	{
   2071  1.1  christos 	  htab->init->contents = bfd_zalloc (htab->init->owner,
   2072  1.1  christos 					     htab->init->size);
   2073  1.1  christos 	  if (htab->init->contents == NULL)
   2074  1.1  christos 	    return FALSE;
   2075  1.1  christos 
   2076  1.1  christos 	  h = define_ovtab_symbol (htab, "__icache_fileoff");
   2077  1.1  christos 	  if (h == NULL)
   2078  1.1  christos 	    return FALSE;
   2079  1.1  christos 	  h->root.u.def.value = 0;
   2080  1.1  christos 	  h->root.u.def.section = htab->init;
   2081  1.1  christos 	  h->size = 8;
   2082  1.1  christos 	}
   2083  1.1  christos     }
   2084  1.1  christos   else
   2085  1.1  christos     {
   2086  1.1  christos       /* Write out _ovly_table.  */
   2087  1.1  christos       /* set low bit of .size to mark non-overlay area as present.  */
   2088  1.1  christos       p[7] = 1;
   2089  1.1  christos       obfd = htab->ovtab->output_section->owner;
   2090  1.1  christos       for (s = obfd->sections; s != NULL; s = s->next)
   2091  1.1  christos 	{
   2092  1.1  christos 	  unsigned int ovl_index = spu_elf_section_data (s)->u.o.ovl_index;
   2093  1.1  christos 
   2094  1.1  christos 	  if (ovl_index != 0)
   2095  1.1  christos 	    {
   2096  1.1  christos 	      unsigned long off = ovl_index * 16;
   2097  1.1  christos 	      unsigned int ovl_buf = spu_elf_section_data (s)->u.o.ovl_buf;
   2098  1.1  christos 
   2099  1.1  christos 	      bfd_put_32 (htab->ovtab->owner, s->vma, p + off);
   2100  1.1  christos 	      bfd_put_32 (htab->ovtab->owner, (s->size + 15) & -16,
   2101  1.1  christos 			  p + off + 4);
   2102  1.1  christos 	      /* file_off written later in spu_elf_modify_program_headers.  */
   2103  1.1  christos 	      bfd_put_32 (htab->ovtab->owner, ovl_buf, p + off + 12);
   2104  1.1  christos 	    }
   2105  1.1  christos 	}
   2106  1.1  christos 
   2107  1.1  christos       h = define_ovtab_symbol (htab, "_ovly_table");
   2108  1.1  christos       if (h == NULL)
   2109  1.1  christos 	return FALSE;
   2110  1.1  christos       h->root.u.def.value = 16;
   2111  1.1  christos       h->size = htab->num_overlays * 16;
   2112  1.1  christos 
   2113  1.1  christos       h = define_ovtab_symbol (htab, "_ovly_table_end");
   2114  1.1  christos       if (h == NULL)
   2115  1.1  christos 	return FALSE;
   2116  1.1  christos       h->root.u.def.value = htab->num_overlays * 16 + 16;
   2117  1.1  christos       h->size = 0;
   2118  1.1  christos 
   2119  1.1  christos       h = define_ovtab_symbol (htab, "_ovly_buf_table");
   2120  1.1  christos       if (h == NULL)
   2121  1.1  christos 	return FALSE;
   2122  1.1  christos       h->root.u.def.value = htab->num_overlays * 16 + 16;
   2123  1.1  christos       h->size = htab->num_buf * 4;
   2124  1.1  christos 
   2125  1.1  christos       h = define_ovtab_symbol (htab, "_ovly_buf_table_end");
   2126  1.1  christos       if (h == NULL)
   2127  1.1  christos 	return FALSE;
   2128  1.1  christos       h->root.u.def.value = htab->num_overlays * 16 + 16 + htab->num_buf * 4;
   2129  1.1  christos       h->size = 0;
   2130  1.1  christos     }
   2131  1.1  christos 
   2132  1.1  christos   h = define_ovtab_symbol (htab, "_EAR_");
   2133  1.1  christos   if (h == NULL)
   2134  1.1  christos     return FALSE;
   2135  1.1  christos   h->root.u.def.section = htab->toe;
   2136  1.1  christos   h->root.u.def.value = 0;
   2137  1.1  christos   h->size = 16;
   2138  1.1  christos 
   2139  1.1  christos   return TRUE;
   2140  1.1  christos }
   2141  1.1  christos 
   2142  1.1  christos /* Check that all loadable section VMAs lie in the range
   2143  1.1  christos    LO .. HI inclusive, and stash some parameters for --auto-overlay.  */
   2144  1.1  christos 
   2145  1.1  christos asection *
   2146  1.1  christos spu_elf_check_vma (struct bfd_link_info *info)
   2147  1.1  christos {
   2148  1.1  christos   struct elf_segment_map *m;
   2149  1.1  christos   unsigned int i;
   2150  1.1  christos   struct spu_link_hash_table *htab = spu_hash_table (info);
   2151  1.1  christos   bfd *abfd = info->output_bfd;
   2152  1.1  christos   bfd_vma hi = htab->params->local_store_hi;
   2153  1.1  christos   bfd_vma lo = htab->params->local_store_lo;
   2154  1.1  christos 
   2155  1.1  christos   htab->local_store = hi + 1 - lo;
   2156  1.1  christos 
   2157  1.1  christos   for (m = elf_tdata (abfd)->segment_map; m != NULL; m = m->next)
   2158  1.1  christos     if (m->p_type == PT_LOAD)
   2159  1.1  christos       for (i = 0; i < m->count; i++)
   2160  1.1  christos 	if (m->sections[i]->size != 0
   2161  1.1  christos 	    && (m->sections[i]->vma < lo
   2162  1.1  christos 		|| m->sections[i]->vma > hi
   2163  1.1  christos 		|| m->sections[i]->vma + m->sections[i]->size - 1 > hi))
   2164  1.1  christos 	  return m->sections[i];
   2165  1.1  christos 
   2166  1.1  christos   return NULL;
   2167  1.1  christos }
   2168  1.1  christos 
   2169  1.1  christos /* OFFSET in SEC (presumably) is the beginning of a function prologue.
   2170  1.1  christos    Search for stack adjusting insns, and return the sp delta.
   2171  1.1  christos    If a store of lr is found save the instruction offset to *LR_STORE.
   2172  1.1  christos    If a stack adjusting instruction is found, save that offset to
   2173  1.1  christos    *SP_ADJUST.  */
   2174  1.1  christos 
   2175  1.1  christos static int
   2176  1.1  christos find_function_stack_adjust (asection *sec,
   2177  1.1  christos 			    bfd_vma offset,
   2178  1.1  christos 			    bfd_vma *lr_store,
   2179  1.1  christos 			    bfd_vma *sp_adjust)
   2180  1.1  christos {
   2181  1.1  christos   int reg[128];
   2182  1.1  christos 
   2183  1.1  christos   memset (reg, 0, sizeof (reg));
   2184  1.1  christos   for ( ; offset + 4 <= sec->size; offset += 4)
   2185  1.1  christos     {
   2186  1.1  christos       unsigned char buf[4];
   2187  1.1  christos       int rt, ra;
   2188  1.1  christos       int imm;
   2189  1.1  christos 
   2190  1.1  christos       /* Assume no relocs on stack adjusing insns.  */
   2191  1.1  christos       if (!bfd_get_section_contents (sec->owner, sec, buf, offset, 4))
   2192  1.1  christos 	break;
   2193  1.1  christos 
   2194  1.1  christos       rt = buf[3] & 0x7f;
   2195  1.1  christos       ra = ((buf[2] & 0x3f) << 1) | (buf[3] >> 7);
   2196  1.1  christos 
   2197  1.1  christos       if (buf[0] == 0x24 /* stqd */)
   2198  1.1  christos 	{
   2199  1.1  christos 	  if (rt == 0 /* lr */ && ra == 1 /* sp */)
   2200  1.1  christos 	    *lr_store = offset;
   2201  1.1  christos 	  continue;
   2202  1.1  christos 	}
   2203  1.1  christos 
   2204  1.1  christos       /* Partly decoded immediate field.  */
   2205  1.1  christos       imm = (buf[1] << 9) | (buf[2] << 1) | (buf[3] >> 7);
   2206  1.1  christos 
   2207  1.1  christos       if (buf[0] == 0x1c /* ai */)
   2208  1.1  christos 	{
   2209  1.1  christos 	  imm >>= 7;
   2210  1.1  christos 	  imm = (imm ^ 0x200) - 0x200;
   2211  1.1  christos 	  reg[rt] = reg[ra] + imm;
   2212  1.1  christos 
   2213  1.1  christos 	  if (rt == 1 /* sp */)
   2214  1.1  christos 	    {
   2215  1.1  christos 	      if (reg[rt] > 0)
   2216  1.1  christos 		break;
   2217  1.1  christos 	      *sp_adjust = offset;
   2218  1.1  christos 	      return reg[rt];
   2219  1.1  christos 	    }
   2220  1.1  christos 	}
   2221  1.1  christos       else if (buf[0] == 0x18 && (buf[1] & 0xe0) == 0 /* a */)
   2222  1.1  christos 	{
   2223  1.1  christos 	  int rb = ((buf[1] & 0x1f) << 2) | ((buf[2] & 0xc0) >> 6);
   2224  1.1  christos 
   2225  1.1  christos 	  reg[rt] = reg[ra] + reg[rb];
   2226  1.1  christos 	  if (rt == 1)
   2227  1.1  christos 	    {
   2228  1.1  christos 	      if (reg[rt] > 0)
   2229  1.1  christos 		break;
   2230  1.1  christos 	      *sp_adjust = offset;
   2231  1.1  christos 	      return reg[rt];
   2232  1.1  christos 	    }
   2233  1.1  christos 	}
   2234  1.1  christos       else if (buf[0] == 0x08 && (buf[1] & 0xe0) == 0 /* sf */)
   2235  1.1  christos 	{
   2236  1.1  christos 	  int rb = ((buf[1] & 0x1f) << 2) | ((buf[2] & 0xc0) >> 6);
   2237  1.1  christos 
   2238  1.1  christos 	  reg[rt] = reg[rb] - reg[ra];
   2239  1.1  christos 	  if (rt == 1)
   2240  1.1  christos 	    {
   2241  1.1  christos 	      if (reg[rt] > 0)
   2242  1.1  christos 		break;
   2243  1.1  christos 	      *sp_adjust = offset;
   2244  1.1  christos 	      return reg[rt];
   2245  1.1  christos 	    }
   2246  1.1  christos 	}
   2247  1.1  christos       else if ((buf[0] & 0xfc) == 0x40 /* il, ilh, ilhu, ila */)
   2248  1.1  christos 	{
   2249  1.1  christos 	  if (buf[0] >= 0x42 /* ila */)
   2250  1.1  christos 	    imm |= (buf[0] & 1) << 17;
   2251  1.1  christos 	  else
   2252  1.1  christos 	    {
   2253  1.1  christos 	      imm &= 0xffff;
   2254  1.1  christos 
   2255  1.1  christos 	      if (buf[0] == 0x40 /* il */)
   2256  1.1  christos 		{
   2257  1.1  christos 		  if ((buf[1] & 0x80) == 0)
   2258  1.1  christos 		    continue;
   2259  1.1  christos 		  imm = (imm ^ 0x8000) - 0x8000;
   2260  1.1  christos 		}
   2261  1.1  christos 	      else if ((buf[1] & 0x80) == 0 /* ilhu */)
   2262  1.1  christos 		imm <<= 16;
   2263  1.1  christos 	    }
   2264  1.1  christos 	  reg[rt] = imm;
   2265  1.1  christos 	  continue;
   2266  1.1  christos 	}
   2267  1.1  christos       else if (buf[0] == 0x60 && (buf[1] & 0x80) != 0 /* iohl */)
   2268  1.1  christos 	{
   2269  1.1  christos 	  reg[rt] |= imm & 0xffff;
   2270  1.1  christos 	  continue;
   2271  1.1  christos 	}
   2272  1.1  christos       else if (buf[0] == 0x04 /* ori */)
   2273  1.1  christos 	{
   2274  1.1  christos 	  imm >>= 7;
   2275  1.1  christos 	  imm = (imm ^ 0x200) - 0x200;
   2276  1.1  christos 	  reg[rt] = reg[ra] | imm;
   2277  1.1  christos 	  continue;
   2278  1.1  christos 	}
   2279  1.1  christos       else if (buf[0] == 0x32 && (buf[1] & 0x80) != 0 /* fsmbi */)
   2280  1.1  christos 	{
   2281  1.1  christos 	  reg[rt] = (  ((imm & 0x8000) ? 0xff000000 : 0)
   2282  1.1  christos 		     | ((imm & 0x4000) ? 0x00ff0000 : 0)
   2283  1.1  christos 		     | ((imm & 0x2000) ? 0x0000ff00 : 0)
   2284  1.1  christos 		     | ((imm & 0x1000) ? 0x000000ff : 0));
   2285  1.1  christos 	  continue;
   2286  1.1  christos 	}
   2287  1.1  christos       else if (buf[0] == 0x16 /* andbi */)
   2288  1.1  christos 	{
   2289  1.1  christos 	  imm >>= 7;
   2290  1.1  christos 	  imm &= 0xff;
   2291  1.1  christos 	  imm |= imm << 8;
   2292  1.1  christos 	  imm |= imm << 16;
   2293  1.1  christos 	  reg[rt] = reg[ra] & imm;
   2294  1.1  christos 	  continue;
   2295  1.1  christos 	}
   2296  1.1  christos       else if (buf[0] == 0x33 && imm == 1 /* brsl .+4 */)
   2297  1.1  christos 	{
   2298  1.1  christos 	  /* Used in pic reg load.  Say rt is trashed.  Won't be used
   2299  1.1  christos 	     in stack adjust, but we need to continue past this branch.  */
   2300  1.1  christos 	  reg[rt] = 0;
   2301  1.1  christos 	  continue;
   2302  1.1  christos 	}
   2303  1.1  christos       else if (is_branch (buf) || is_indirect_branch (buf))
   2304  1.1  christos 	/* If we hit a branch then we must be out of the prologue.  */
   2305  1.1  christos 	break;
   2306  1.1  christos     }
   2307  1.1  christos 
   2308  1.1  christos   return 0;
   2309  1.1  christos }
   2310  1.1  christos 
   2311  1.1  christos /* qsort predicate to sort symbols by section and value.  */
   2312  1.1  christos 
   2313  1.1  christos static Elf_Internal_Sym *sort_syms_syms;
   2314  1.1  christos static asection **sort_syms_psecs;
   2315  1.1  christos 
   2316  1.1  christos static int
   2317  1.1  christos sort_syms (const void *a, const void *b)
   2318  1.1  christos {
   2319  1.1  christos   Elf_Internal_Sym *const *s1 = a;
   2320  1.1  christos   Elf_Internal_Sym *const *s2 = b;
   2321  1.1  christos   asection *sec1,*sec2;
   2322  1.1  christos   bfd_signed_vma delta;
   2323  1.1  christos 
   2324  1.1  christos   sec1 = sort_syms_psecs[*s1 - sort_syms_syms];
   2325  1.1  christos   sec2 = sort_syms_psecs[*s2 - sort_syms_syms];
   2326  1.1  christos 
   2327  1.1  christos   if (sec1 != sec2)
   2328  1.1  christos     return sec1->index - sec2->index;
   2329  1.1  christos 
   2330  1.1  christos   delta = (*s1)->st_value - (*s2)->st_value;
   2331  1.1  christos   if (delta != 0)
   2332  1.1  christos     return delta < 0 ? -1 : 1;
   2333  1.1  christos 
   2334  1.1  christos   delta = (*s2)->st_size - (*s1)->st_size;
   2335  1.1  christos   if (delta != 0)
   2336  1.1  christos     return delta < 0 ? -1 : 1;
   2337  1.1  christos 
   2338  1.1  christos   return *s1 < *s2 ? -1 : 1;
   2339  1.1  christos }
   2340  1.1  christos 
   2341  1.1  christos /* Allocate a struct spu_elf_stack_info with MAX_FUN struct function_info
   2342  1.1  christos    entries for section SEC.  */
   2343  1.1  christos 
   2344  1.1  christos static struct spu_elf_stack_info *
   2345  1.1  christos alloc_stack_info (asection *sec, int max_fun)
   2346  1.1  christos {
   2347  1.1  christos   struct _spu_elf_section_data *sec_data = spu_elf_section_data (sec);
   2348  1.1  christos   bfd_size_type amt;
   2349  1.1  christos 
   2350  1.1  christos   amt = sizeof (struct spu_elf_stack_info);
   2351  1.1  christos   amt += (max_fun - 1) * sizeof (struct function_info);
   2352  1.1  christos   sec_data->u.i.stack_info = bfd_zmalloc (amt);
   2353  1.1  christos   if (sec_data->u.i.stack_info != NULL)
   2354  1.1  christos     sec_data->u.i.stack_info->max_fun = max_fun;
   2355  1.1  christos   return sec_data->u.i.stack_info;
   2356  1.1  christos }
   2357  1.1  christos 
   2358  1.1  christos /* Add a new struct function_info describing a (part of a) function
   2359  1.1  christos    starting at SYM_H.  Keep the array sorted by address.  */
   2360  1.1  christos 
   2361  1.1  christos static struct function_info *
   2362  1.1  christos maybe_insert_function (asection *sec,
   2363  1.1  christos 		       void *sym_h,
   2364  1.1  christos 		       bfd_boolean global,
   2365  1.1  christos 		       bfd_boolean is_func)
   2366  1.1  christos {
   2367  1.1  christos   struct _spu_elf_section_data *sec_data = spu_elf_section_data (sec);
   2368  1.1  christos   struct spu_elf_stack_info *sinfo = sec_data->u.i.stack_info;
   2369  1.1  christos   int i;
   2370  1.1  christos   bfd_vma off, size;
   2371  1.1  christos 
   2372  1.1  christos   if (sinfo == NULL)
   2373  1.1  christos     {
   2374  1.1  christos       sinfo = alloc_stack_info (sec, 20);
   2375  1.1  christos       if (sinfo == NULL)
   2376  1.1  christos 	return NULL;
   2377  1.1  christos     }
   2378  1.1  christos 
   2379  1.1  christos   if (!global)
   2380  1.1  christos     {
   2381  1.1  christos       Elf_Internal_Sym *sym = sym_h;
   2382  1.1  christos       off = sym->st_value;
   2383  1.1  christos       size = sym->st_size;
   2384  1.1  christos     }
   2385  1.1  christos   else
   2386  1.1  christos     {
   2387  1.1  christos       struct elf_link_hash_entry *h = sym_h;
   2388  1.1  christos       off = h->root.u.def.value;
   2389  1.1  christos       size = h->size;
   2390  1.1  christos     }
   2391  1.1  christos 
   2392  1.1  christos   for (i = sinfo->num_fun; --i >= 0; )
   2393  1.1  christos     if (sinfo->fun[i].lo <= off)
   2394  1.1  christos       break;
   2395  1.1  christos 
   2396  1.1  christos   if (i >= 0)
   2397  1.1  christos     {
   2398  1.1  christos       /* Don't add another entry for an alias, but do update some
   2399  1.1  christos 	 info.  */
   2400  1.1  christos       if (sinfo->fun[i].lo == off)
   2401  1.1  christos 	{
   2402  1.1  christos 	  /* Prefer globals over local syms.  */
   2403  1.1  christos 	  if (global && !sinfo->fun[i].global)
   2404  1.1  christos 	    {
   2405  1.1  christos 	      sinfo->fun[i].global = TRUE;
   2406  1.1  christos 	      sinfo->fun[i].u.h = sym_h;
   2407  1.1  christos 	    }
   2408  1.1  christos 	  if (is_func)
   2409  1.1  christos 	    sinfo->fun[i].is_func = TRUE;
   2410  1.1  christos 	  return &sinfo->fun[i];
   2411  1.1  christos 	}
   2412  1.1  christos       /* Ignore a zero-size symbol inside an existing function.  */
   2413  1.1  christos       else if (sinfo->fun[i].hi > off && size == 0)
   2414  1.1  christos 	return &sinfo->fun[i];
   2415  1.1  christos     }
   2416  1.1  christos 
   2417  1.1  christos   if (sinfo->num_fun >= sinfo->max_fun)
   2418  1.1  christos     {
   2419  1.1  christos       bfd_size_type amt = sizeof (struct spu_elf_stack_info);
   2420  1.1  christos       bfd_size_type old = amt;
   2421  1.1  christos 
   2422  1.1  christos       old += (sinfo->max_fun - 1) * sizeof (struct function_info);
   2423  1.1  christos       sinfo->max_fun += 20 + (sinfo->max_fun >> 1);
   2424  1.1  christos       amt += (sinfo->max_fun - 1) * sizeof (struct function_info);
   2425  1.1  christos       sinfo = bfd_realloc (sinfo, amt);
   2426  1.1  christos       if (sinfo == NULL)
   2427  1.1  christos 	return NULL;
   2428  1.1  christos       memset ((char *) sinfo + old, 0, amt - old);
   2429  1.1  christos       sec_data->u.i.stack_info = sinfo;
   2430  1.1  christos     }
   2431  1.1  christos 
   2432  1.1  christos   if (++i < sinfo->num_fun)
   2433  1.1  christos     memmove (&sinfo->fun[i + 1], &sinfo->fun[i],
   2434  1.1  christos 	     (sinfo->num_fun - i) * sizeof (sinfo->fun[i]));
   2435  1.1  christos   sinfo->fun[i].is_func = is_func;
   2436  1.1  christos   sinfo->fun[i].global = global;
   2437  1.1  christos   sinfo->fun[i].sec = sec;
   2438  1.1  christos   if (global)
   2439  1.1  christos     sinfo->fun[i].u.h = sym_h;
   2440  1.1  christos   else
   2441  1.1  christos     sinfo->fun[i].u.sym = sym_h;
   2442  1.1  christos   sinfo->fun[i].lo = off;
   2443  1.1  christos   sinfo->fun[i].hi = off + size;
   2444  1.1  christos   sinfo->fun[i].lr_store = -1;
   2445  1.1  christos   sinfo->fun[i].sp_adjust = -1;
   2446  1.1  christos   sinfo->fun[i].stack = -find_function_stack_adjust (sec, off,
   2447  1.1  christos 						     &sinfo->fun[i].lr_store,
   2448  1.1  christos 						     &sinfo->fun[i].sp_adjust);
   2449  1.1  christos   sinfo->num_fun += 1;
   2450  1.1  christos   return &sinfo->fun[i];
   2451  1.1  christos }
   2452  1.1  christos 
   2453  1.1  christos /* Return the name of FUN.  */
   2454  1.1  christos 
   2455  1.1  christos static const char *
   2456  1.1  christos func_name (struct function_info *fun)
   2457  1.1  christos {
   2458  1.1  christos   asection *sec;
   2459  1.1  christos   bfd *ibfd;
   2460  1.1  christos   Elf_Internal_Shdr *symtab_hdr;
   2461  1.1  christos 
   2462  1.1  christos   while (fun->start != NULL)
   2463  1.1  christos     fun = fun->start;
   2464  1.1  christos 
   2465  1.1  christos   if (fun->global)
   2466  1.1  christos     return fun->u.h->root.root.string;
   2467  1.1  christos 
   2468  1.1  christos   sec = fun->sec;
   2469  1.1  christos   if (fun->u.sym->st_name == 0)
   2470  1.1  christos     {
   2471  1.1  christos       size_t len = strlen (sec->name);
   2472  1.1  christos       char *name = bfd_malloc (len + 10);
   2473  1.1  christos       if (name == NULL)
   2474  1.1  christos 	return "(null)";
   2475  1.1  christos       sprintf (name, "%s+%lx", sec->name,
   2476  1.1  christos 	       (unsigned long) fun->u.sym->st_value & 0xffffffff);
   2477  1.1  christos       return name;
   2478  1.1  christos     }
   2479  1.1  christos   ibfd = sec->owner;
   2480  1.1  christos   symtab_hdr = &elf_tdata (ibfd)->symtab_hdr;
   2481  1.1  christos   return bfd_elf_sym_name (ibfd, symtab_hdr, fun->u.sym, sec);
   2482  1.1  christos }
   2483  1.1  christos 
   2484  1.1  christos /* Read the instruction at OFF in SEC.  Return true iff the instruction
   2485  1.1  christos    is a nop, lnop, or stop 0 (all zero insn).  */
   2486  1.1  christos 
   2487  1.1  christos static bfd_boolean
   2488  1.1  christos is_nop (asection *sec, bfd_vma off)
   2489  1.1  christos {
   2490  1.1  christos   unsigned char insn[4];
   2491  1.1  christos 
   2492  1.1  christos   if (off + 4 > sec->size
   2493  1.1  christos       || !bfd_get_section_contents (sec->owner, sec, insn, off, 4))
   2494  1.1  christos     return FALSE;
   2495  1.1  christos   if ((insn[0] & 0xbf) == 0 && (insn[1] & 0xe0) == 0x20)
   2496  1.1  christos     return TRUE;
   2497  1.1  christos   if (insn[0] == 0 && insn[1] == 0 && insn[2] == 0 && insn[3] == 0)
   2498  1.1  christos     return TRUE;
   2499  1.1  christos   return FALSE;
   2500  1.1  christos }
   2501  1.1  christos 
   2502  1.1  christos /* Extend the range of FUN to cover nop padding up to LIMIT.
   2503  1.1  christos    Return TRUE iff some instruction other than a NOP was found.  */
   2504  1.1  christos 
   2505  1.1  christos static bfd_boolean
   2506  1.1  christos insns_at_end (struct function_info *fun, bfd_vma limit)
   2507  1.1  christos {
   2508  1.1  christos   bfd_vma off = (fun->hi + 3) & -4;
   2509  1.1  christos 
   2510  1.1  christos   while (off < limit && is_nop (fun->sec, off))
   2511  1.1  christos     off += 4;
   2512  1.1  christos   if (off < limit)
   2513  1.1  christos     {
   2514  1.1  christos       fun->hi = off;
   2515  1.1  christos       return TRUE;
   2516  1.1  christos     }
   2517  1.1  christos   fun->hi = limit;
   2518  1.1  christos   return FALSE;
   2519  1.1  christos }
   2520  1.1  christos 
   2521  1.1  christos /* Check and fix overlapping function ranges.  Return TRUE iff there
   2522  1.1  christos    are gaps in the current info we have about functions in SEC.  */
   2523  1.1  christos 
   2524  1.1  christos static bfd_boolean
   2525  1.1  christos check_function_ranges (asection *sec, struct bfd_link_info *info)
   2526  1.1  christos {
   2527  1.1  christos   struct _spu_elf_section_data *sec_data = spu_elf_section_data (sec);
   2528  1.1  christos   struct spu_elf_stack_info *sinfo = sec_data->u.i.stack_info;
   2529  1.1  christos   int i;
   2530  1.1  christos   bfd_boolean gaps = FALSE;
   2531  1.1  christos 
   2532  1.1  christos   if (sinfo == NULL)
   2533  1.1  christos     return FALSE;
   2534  1.1  christos 
   2535  1.1  christos   for (i = 1; i < sinfo->num_fun; i++)
   2536  1.1  christos     if (sinfo->fun[i - 1].hi > sinfo->fun[i].lo)
   2537  1.1  christos       {
   2538  1.1  christos 	/* Fix overlapping symbols.  */
   2539  1.1  christos 	const char *f1 = func_name (&sinfo->fun[i - 1]);
   2540  1.1  christos 	const char *f2 = func_name (&sinfo->fun[i]);
   2541  1.1  christos 
   2542  1.1  christos 	info->callbacks->einfo (_("warning: %s overlaps %s\n"), f1, f2);
   2543  1.1  christos 	sinfo->fun[i - 1].hi = sinfo->fun[i].lo;
   2544  1.1  christos       }
   2545  1.1  christos     else if (insns_at_end (&sinfo->fun[i - 1], sinfo->fun[i].lo))
   2546  1.1  christos       gaps = TRUE;
   2547  1.1  christos 
   2548  1.1  christos   if (sinfo->num_fun == 0)
   2549  1.1  christos     gaps = TRUE;
   2550  1.1  christos   else
   2551  1.1  christos     {
   2552  1.1  christos       if (sinfo->fun[0].lo != 0)
   2553  1.1  christos 	gaps = TRUE;
   2554  1.1  christos       if (sinfo->fun[sinfo->num_fun - 1].hi > sec->size)
   2555  1.1  christos 	{
   2556  1.1  christos 	  const char *f1 = func_name (&sinfo->fun[sinfo->num_fun - 1]);
   2557  1.1  christos 
   2558  1.1  christos 	  info->callbacks->einfo (_("warning: %s exceeds section size\n"), f1);
   2559  1.1  christos 	  sinfo->fun[sinfo->num_fun - 1].hi = sec->size;
   2560  1.1  christos 	}
   2561  1.1  christos       else if (insns_at_end (&sinfo->fun[sinfo->num_fun - 1], sec->size))
   2562  1.1  christos 	gaps = TRUE;
   2563  1.1  christos     }
   2564  1.1  christos   return gaps;
   2565  1.1  christos }
   2566  1.1  christos 
   2567  1.1  christos /* Search current function info for a function that contains address
   2568  1.1  christos    OFFSET in section SEC.  */
   2569  1.1  christos 
   2570  1.1  christos static struct function_info *
   2571  1.1  christos find_function (asection *sec, bfd_vma offset, struct bfd_link_info *info)
   2572  1.1  christos {
   2573  1.1  christos   struct _spu_elf_section_data *sec_data = spu_elf_section_data (sec);
   2574  1.1  christos   struct spu_elf_stack_info *sinfo = sec_data->u.i.stack_info;
   2575  1.1  christos   int lo, hi, mid;
   2576  1.1  christos 
   2577  1.1  christos   lo = 0;
   2578  1.1  christos   hi = sinfo->num_fun;
   2579  1.1  christos   while (lo < hi)
   2580  1.1  christos     {
   2581  1.1  christos       mid = (lo + hi) / 2;
   2582  1.1  christos       if (offset < sinfo->fun[mid].lo)
   2583  1.1  christos 	hi = mid;
   2584  1.1  christos       else if (offset >= sinfo->fun[mid].hi)
   2585  1.1  christos 	lo = mid + 1;
   2586  1.1  christos       else
   2587  1.1  christos 	return &sinfo->fun[mid];
   2588  1.1  christos     }
   2589  1.1  christos   info->callbacks->einfo (_("%A:0x%v not found in function table\n"),
   2590  1.1  christos 			  sec, offset);
   2591  1.1  christos   bfd_set_error (bfd_error_bad_value);
   2592  1.1  christos   return NULL;
   2593  1.1  christos }
   2594  1.1  christos 
   2595  1.1  christos /* Add CALLEE to CALLER call list if not already present.  Return TRUE
   2596  1.1  christos    if CALLEE was new.  If this function return FALSE, CALLEE should
   2597  1.1  christos    be freed.  */
   2598  1.1  christos 
   2599  1.1  christos static bfd_boolean
   2600  1.1  christos insert_callee (struct function_info *caller, struct call_info *callee)
   2601  1.1  christos {
   2602  1.1  christos   struct call_info **pp, *p;
   2603  1.1  christos 
   2604  1.1  christos   for (pp = &caller->call_list; (p = *pp) != NULL; pp = &p->next)
   2605  1.1  christos     if (p->fun == callee->fun)
   2606  1.1  christos       {
   2607  1.1  christos 	/* Tail calls use less stack than normal calls.  Retain entry
   2608  1.1  christos 	   for normal call over one for tail call.  */
   2609  1.1  christos 	p->is_tail &= callee->is_tail;
   2610  1.1  christos 	if (!p->is_tail)
   2611  1.1  christos 	  {
   2612  1.1  christos 	    p->fun->start = NULL;
   2613  1.1  christos 	    p->fun->is_func = TRUE;
   2614  1.1  christos 	  }
   2615  1.1  christos 	p->count += callee->count;
   2616  1.1  christos 	/* Reorder list so most recent call is first.  */
   2617  1.1  christos 	*pp = p->next;
   2618  1.1  christos 	p->next = caller->call_list;
   2619  1.1  christos 	caller->call_list = p;
   2620  1.1  christos 	return FALSE;
   2621  1.1  christos       }
   2622  1.1  christos   callee->next = caller->call_list;
   2623  1.1  christos   caller->call_list = callee;
   2624  1.1  christos   return TRUE;
   2625  1.1  christos }
   2626  1.1  christos 
   2627  1.1  christos /* Copy CALL and insert the copy into CALLER.  */
   2628  1.1  christos 
   2629  1.1  christos static bfd_boolean
   2630  1.1  christos copy_callee (struct function_info *caller, const struct call_info *call)
   2631  1.1  christos {
   2632  1.1  christos   struct call_info *callee;
   2633  1.1  christos   callee = bfd_malloc (sizeof (*callee));
   2634  1.1  christos   if (callee == NULL)
   2635  1.1  christos     return FALSE;
   2636  1.1  christos   *callee = *call;
   2637  1.1  christos   if (!insert_callee (caller, callee))
   2638  1.1  christos     free (callee);
   2639  1.1  christos   return TRUE;
   2640  1.1  christos }
   2641  1.1  christos 
   2642  1.1  christos /* We're only interested in code sections.  Testing SEC_IN_MEMORY excludes
   2643  1.1  christos    overlay stub sections.  */
   2644  1.1  christos 
   2645  1.1  christos static bfd_boolean
   2646  1.1  christos interesting_section (asection *s)
   2647  1.1  christos {
   2648  1.1  christos   return (s->output_section != bfd_abs_section_ptr
   2649  1.1  christos 	  && ((s->flags & (SEC_ALLOC | SEC_LOAD | SEC_CODE | SEC_IN_MEMORY))
   2650  1.1  christos 	      == (SEC_ALLOC | SEC_LOAD | SEC_CODE))
   2651  1.1  christos 	  && s->size != 0);
   2652  1.1  christos }
   2653  1.1  christos 
   2654  1.1  christos /* Rummage through the relocs for SEC, looking for function calls.
   2655  1.1  christos    If CALL_TREE is true, fill in call graph.  If CALL_TREE is false,
   2656  1.1  christos    mark destination symbols on calls as being functions.  Also
   2657  1.1  christos    look at branches, which may be tail calls or go to hot/cold
   2658  1.1  christos    section part of same function.  */
   2659  1.1  christos 
   2660  1.1  christos static bfd_boolean
   2661  1.1  christos mark_functions_via_relocs (asection *sec,
   2662  1.1  christos 			   struct bfd_link_info *info,
   2663  1.1  christos 			   int call_tree)
   2664  1.1  christos {
   2665  1.1  christos   Elf_Internal_Rela *internal_relocs, *irelaend, *irela;
   2666  1.1  christos   Elf_Internal_Shdr *symtab_hdr;
   2667  1.1  christos   void *psyms;
   2668  1.1  christos   unsigned int priority = 0;
   2669  1.1  christos   static bfd_boolean warned;
   2670  1.1  christos 
   2671  1.1  christos   if (!interesting_section (sec)
   2672  1.1  christos       || sec->reloc_count == 0)
   2673  1.1  christos     return TRUE;
   2674  1.1  christos 
   2675  1.1  christos   internal_relocs = _bfd_elf_link_read_relocs (sec->owner, sec, NULL, NULL,
   2676  1.1  christos 					       info->keep_memory);
   2677  1.1  christos   if (internal_relocs == NULL)
   2678  1.1  christos     return FALSE;
   2679  1.1  christos 
   2680  1.1  christos   symtab_hdr = &elf_tdata (sec->owner)->symtab_hdr;
   2681  1.1  christos   psyms = &symtab_hdr->contents;
   2682  1.1  christos   irela = internal_relocs;
   2683  1.1  christos   irelaend = irela + sec->reloc_count;
   2684  1.1  christos   for (; irela < irelaend; irela++)
   2685  1.1  christos     {
   2686  1.1  christos       enum elf_spu_reloc_type r_type;
   2687  1.1  christos       unsigned int r_indx;
   2688  1.1  christos       asection *sym_sec;
   2689  1.1  christos       Elf_Internal_Sym *sym;
   2690  1.1  christos       struct elf_link_hash_entry *h;
   2691  1.1  christos       bfd_vma val;
   2692  1.1  christos       bfd_boolean nonbranch, is_call;
   2693  1.1  christos       struct function_info *caller;
   2694  1.1  christos       struct call_info *callee;
   2695  1.1  christos 
   2696  1.1  christos       r_type = ELF32_R_TYPE (irela->r_info);
   2697  1.1  christos       nonbranch = r_type != R_SPU_REL16 && r_type != R_SPU_ADDR16;
   2698  1.1  christos 
   2699  1.1  christos       r_indx = ELF32_R_SYM (irela->r_info);
   2700  1.1  christos       if (!get_sym_h (&h, &sym, &sym_sec, psyms, r_indx, sec->owner))
   2701  1.1  christos 	return FALSE;
   2702  1.1  christos 
   2703  1.1  christos       if (sym_sec == NULL
   2704  1.1  christos 	  || sym_sec->output_section == bfd_abs_section_ptr)
   2705  1.1  christos 	continue;
   2706  1.1  christos 
   2707  1.1  christos       is_call = FALSE;
   2708  1.1  christos       if (!nonbranch)
   2709  1.1  christos 	{
   2710  1.1  christos 	  unsigned char insn[4];
   2711  1.1  christos 
   2712  1.1  christos 	  if (!bfd_get_section_contents (sec->owner, sec, insn,
   2713  1.1  christos 					 irela->r_offset, 4))
   2714  1.1  christos 	    return FALSE;
   2715  1.1  christos 	  if (is_branch (insn))
   2716  1.1  christos 	    {
   2717  1.1  christos 	      is_call = (insn[0] & 0xfd) == 0x31;
   2718  1.1  christos 	      priority = insn[1] & 0x0f;
   2719  1.1  christos 	      priority <<= 8;
   2720  1.1  christos 	      priority |= insn[2];
   2721  1.1  christos 	      priority <<= 8;
   2722  1.1  christos 	      priority |= insn[3];
   2723  1.1  christos 	      priority >>= 7;
   2724  1.1  christos 	      if ((sym_sec->flags & (SEC_ALLOC | SEC_LOAD | SEC_CODE))
   2725  1.1  christos 		  != (SEC_ALLOC | SEC_LOAD | SEC_CODE))
   2726  1.1  christos 		{
   2727  1.1  christos 		  if (!warned)
   2728  1.1  christos 		    info->callbacks->einfo
   2729  1.1  christos 		      (_("%B(%A+0x%v): call to non-code section"
   2730  1.1  christos 			 " %B(%A), analysis incomplete\n"),
   2731  1.1  christos 		       sec->owner, sec, irela->r_offset,
   2732  1.1  christos 		       sym_sec->owner, sym_sec);
   2733  1.1  christos 		  warned = TRUE;
   2734  1.1  christos 		  continue;
   2735  1.1  christos 		}
   2736  1.1  christos 	    }
   2737  1.1  christos 	  else
   2738  1.1  christos 	    {
   2739  1.1  christos 	      nonbranch = TRUE;
   2740  1.1  christos 	      if (is_hint (insn))
   2741  1.1  christos 		continue;
   2742  1.1  christos 	    }
   2743  1.1  christos 	}
   2744  1.1  christos 
   2745  1.1  christos       if (nonbranch)
   2746  1.1  christos 	{
   2747  1.1  christos 	  /* For --auto-overlay, count possible stubs we need for
   2748  1.1  christos 	     function pointer references.  */
   2749  1.1  christos 	  unsigned int sym_type;
   2750  1.1  christos 	  if (h)
   2751  1.1  christos 	    sym_type = h->type;
   2752  1.1  christos 	  else
   2753  1.1  christos 	    sym_type = ELF_ST_TYPE (sym->st_info);
   2754  1.1  christos 	  if (sym_type == STT_FUNC)
   2755  1.1  christos 	    {
   2756  1.1  christos 	      if (call_tree && spu_hash_table (info)->params->auto_overlay)
   2757  1.1  christos 		spu_hash_table (info)->non_ovly_stub += 1;
   2758  1.1  christos 	      /* If the symbol type is STT_FUNC then this must be a
   2759  1.1  christos 		 function pointer initialisation.  */
   2760  1.1  christos 	      continue;
   2761  1.1  christos 	    }
   2762  1.1  christos 	  /* Ignore data references.  */
   2763  1.1  christos 	  if ((sym_sec->flags & (SEC_ALLOC | SEC_LOAD | SEC_CODE))
   2764  1.1  christos 	      != (SEC_ALLOC | SEC_LOAD | SEC_CODE))
   2765  1.1  christos 	    continue;
   2766  1.1  christos 	  /* Otherwise we probably have a jump table reloc for
   2767  1.1  christos 	     a switch statement or some other reference to a
   2768  1.1  christos 	     code label.  */
   2769  1.1  christos 	}
   2770  1.1  christos 
   2771  1.1  christos       if (h)
   2772  1.1  christos 	val = h->root.u.def.value;
   2773  1.1  christos       else
   2774  1.1  christos 	val = sym->st_value;
   2775  1.1  christos       val += irela->r_addend;
   2776  1.1  christos 
   2777  1.1  christos       if (!call_tree)
   2778  1.1  christos 	{
   2779  1.1  christos 	  struct function_info *fun;
   2780  1.1  christos 
   2781  1.1  christos 	  if (irela->r_addend != 0)
   2782  1.1  christos 	    {
   2783  1.1  christos 	      Elf_Internal_Sym *fake = bfd_zmalloc (sizeof (*fake));
   2784  1.1  christos 	      if (fake == NULL)
   2785  1.1  christos 		return FALSE;
   2786  1.1  christos 	      fake->st_value = val;
   2787  1.1  christos 	      fake->st_shndx
   2788  1.1  christos 		= _bfd_elf_section_from_bfd_section (sym_sec->owner, sym_sec);
   2789  1.1  christos 	      sym = fake;
   2790  1.1  christos 	    }
   2791  1.1  christos 	  if (sym)
   2792  1.1  christos 	    fun = maybe_insert_function (sym_sec, sym, FALSE, is_call);
   2793  1.1  christos 	  else
   2794  1.1  christos 	    fun = maybe_insert_function (sym_sec, h, TRUE, is_call);
   2795  1.1  christos 	  if (fun == NULL)
   2796  1.1  christos 	    return FALSE;
   2797  1.1  christos 	  if (irela->r_addend != 0
   2798  1.1  christos 	      && fun->u.sym != sym)
   2799  1.1  christos 	    free (sym);
   2800  1.1  christos 	  continue;
   2801  1.1  christos 	}
   2802  1.1  christos 
   2803  1.1  christos       caller = find_function (sec, irela->r_offset, info);
   2804  1.1  christos       if (caller == NULL)
   2805  1.1  christos 	return FALSE;
   2806  1.1  christos       callee = bfd_malloc (sizeof *callee);
   2807  1.1  christos       if (callee == NULL)
   2808  1.1  christos 	return FALSE;
   2809  1.1  christos 
   2810  1.1  christos       callee->fun = find_function (sym_sec, val, info);
   2811  1.1  christos       if (callee->fun == NULL)
   2812  1.1  christos 	return FALSE;
   2813  1.1  christos       callee->is_tail = !is_call;
   2814  1.1  christos       callee->is_pasted = FALSE;
   2815  1.1  christos       callee->broken_cycle = FALSE;
   2816  1.1  christos       callee->priority = priority;
   2817  1.1  christos       callee->count = nonbranch? 0 : 1;
   2818  1.1  christos       if (callee->fun->last_caller != sec)
   2819  1.1  christos 	{
   2820  1.1  christos 	  callee->fun->last_caller = sec;
   2821  1.1  christos 	  callee->fun->call_count += 1;
   2822  1.1  christos 	}
   2823  1.1  christos       if (!insert_callee (caller, callee))
   2824  1.1  christos 	free (callee);
   2825  1.1  christos       else if (!is_call
   2826  1.1  christos 	       && !callee->fun->is_func
   2827  1.1  christos 	       && callee->fun->stack == 0)
   2828  1.1  christos 	{
   2829  1.1  christos 	  /* This is either a tail call or a branch from one part of
   2830  1.1  christos 	     the function to another, ie. hot/cold section.  If the
   2831  1.1  christos 	     destination has been called by some other function then
   2832  1.1  christos 	     it is a separate function.  We also assume that functions
   2833  1.1  christos 	     are not split across input files.  */
   2834  1.1  christos 	  if (sec->owner != sym_sec->owner)
   2835  1.1  christos 	    {
   2836  1.1  christos 	      callee->fun->start = NULL;
   2837  1.1  christos 	      callee->fun->is_func = TRUE;
   2838  1.1  christos 	    }
   2839  1.1  christos 	  else if (callee->fun->start == NULL)
   2840  1.1  christos 	    {
   2841  1.1  christos 	      struct function_info *caller_start = caller;
   2842  1.1  christos 	      while (caller_start->start)
   2843  1.1  christos 		caller_start = caller_start->start;
   2844  1.1  christos 
   2845  1.1  christos 	      if (caller_start != callee->fun)
   2846  1.1  christos 		callee->fun->start = caller_start;
   2847  1.1  christos 	    }
   2848  1.1  christos 	  else
   2849  1.1  christos 	    {
   2850  1.1  christos 	      struct function_info *callee_start;
   2851  1.1  christos 	      struct function_info *caller_start;
   2852  1.1  christos 	      callee_start = callee->fun;
   2853  1.1  christos 	      while (callee_start->start)
   2854  1.1  christos 		callee_start = callee_start->start;
   2855  1.1  christos 	      caller_start = caller;
   2856  1.1  christos 	      while (caller_start->start)
   2857  1.1  christos 		caller_start = caller_start->start;
   2858  1.1  christos 	      if (caller_start != callee_start)
   2859  1.1  christos 		{
   2860  1.1  christos 		  callee->fun->start = NULL;
   2861  1.1  christos 		  callee->fun->is_func = TRUE;
   2862  1.1  christos 		}
   2863  1.1  christos 	    }
   2864  1.1  christos 	}
   2865  1.1  christos     }
   2866  1.1  christos 
   2867  1.1  christos   return TRUE;
   2868  1.1  christos }
   2869  1.1  christos 
   2870  1.1  christos /* Handle something like .init or .fini, which has a piece of a function.
   2871  1.1  christos    These sections are pasted together to form a single function.  */
   2872  1.1  christos 
   2873  1.1  christos static bfd_boolean
   2874  1.1  christos pasted_function (asection *sec)
   2875  1.1  christos {
   2876  1.1  christos   struct bfd_link_order *l;
   2877  1.1  christos   struct _spu_elf_section_data *sec_data;
   2878  1.1  christos   struct spu_elf_stack_info *sinfo;
   2879  1.1  christos   Elf_Internal_Sym *fake;
   2880  1.1  christos   struct function_info *fun, *fun_start;
   2881  1.1  christos 
   2882  1.1  christos   fake = bfd_zmalloc (sizeof (*fake));
   2883  1.1  christos   if (fake == NULL)
   2884  1.1  christos     return FALSE;
   2885  1.1  christos   fake->st_value = 0;
   2886  1.1  christos   fake->st_size = sec->size;
   2887  1.1  christos   fake->st_shndx
   2888  1.1  christos     = _bfd_elf_section_from_bfd_section (sec->owner, sec);
   2889  1.1  christos   fun = maybe_insert_function (sec, fake, FALSE, FALSE);
   2890  1.1  christos   if (!fun)
   2891  1.1  christos     return FALSE;
   2892  1.1  christos 
   2893  1.1  christos   /* Find a function immediately preceding this section.  */
   2894  1.1  christos   fun_start = NULL;
   2895  1.1  christos   for (l = sec->output_section->map_head.link_order; l != NULL; l = l->next)
   2896  1.1  christos     {
   2897  1.1  christos       if (l->u.indirect.section == sec)
   2898  1.1  christos 	{
   2899  1.1  christos 	  if (fun_start != NULL)
   2900  1.1  christos 	    {
   2901  1.1  christos 	      struct call_info *callee = bfd_malloc (sizeof *callee);
   2902  1.1  christos 	      if (callee == NULL)
   2903  1.1  christos 		return FALSE;
   2904  1.1  christos 
   2905  1.1  christos 	      fun->start = fun_start;
   2906  1.1  christos 	      callee->fun = fun;
   2907  1.1  christos 	      callee->is_tail = TRUE;
   2908  1.1  christos 	      callee->is_pasted = TRUE;
   2909  1.1  christos 	      callee->broken_cycle = FALSE;
   2910  1.1  christos 	      callee->priority = 0;
   2911  1.1  christos 	      callee->count = 1;
   2912  1.1  christos 	      if (!insert_callee (fun_start, callee))
   2913  1.1  christos 		free (callee);
   2914  1.1  christos 	      return TRUE;
   2915  1.1  christos 	    }
   2916  1.1  christos 	  break;
   2917  1.1  christos 	}
   2918  1.1  christos       if (l->type == bfd_indirect_link_order
   2919  1.1  christos 	  && (sec_data = spu_elf_section_data (l->u.indirect.section)) != NULL
   2920  1.1  christos 	  && (sinfo = sec_data->u.i.stack_info) != NULL
   2921  1.1  christos 	  && sinfo->num_fun != 0)
   2922  1.1  christos 	fun_start = &sinfo->fun[sinfo->num_fun - 1];
   2923  1.1  christos     }
   2924  1.1  christos 
   2925  1.1  christos   /* Don't return an error if we did not find a function preceding this
   2926  1.1  christos      section.  The section may have incorrect flags.  */
   2927  1.1  christos   return TRUE;
   2928  1.1  christos }
   2929  1.1  christos 
   2930  1.1  christos /* Map address ranges in code sections to functions.  */
   2931  1.1  christos 
   2932  1.1  christos static bfd_boolean
   2933  1.1  christos discover_functions (struct bfd_link_info *info)
   2934  1.1  christos {
   2935  1.1  christos   bfd *ibfd;
   2936  1.1  christos   int bfd_idx;
   2937  1.1  christos   Elf_Internal_Sym ***psym_arr;
   2938  1.1  christos   asection ***sec_arr;
   2939  1.1  christos   bfd_boolean gaps = FALSE;
   2940  1.1  christos 
   2941  1.1  christos   bfd_idx = 0;
   2942  1.1  christos   for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link_next)
   2943  1.1  christos     bfd_idx++;
   2944  1.1  christos 
   2945  1.1  christos   psym_arr = bfd_zmalloc (bfd_idx * sizeof (*psym_arr));
   2946  1.1  christos   if (psym_arr == NULL)
   2947  1.1  christos     return FALSE;
   2948  1.1  christos   sec_arr = bfd_zmalloc (bfd_idx * sizeof (*sec_arr));
   2949  1.1  christos   if (sec_arr == NULL)
   2950  1.1  christos     return FALSE;
   2951  1.1  christos 
   2952  1.1  christos   for (ibfd = info->input_bfds, bfd_idx = 0;
   2953  1.1  christos        ibfd != NULL;
   2954  1.1  christos        ibfd = ibfd->link_next, bfd_idx++)
   2955  1.1  christos     {
   2956  1.1  christos       extern const bfd_target bfd_elf32_spu_vec;
   2957  1.1  christos       Elf_Internal_Shdr *symtab_hdr;
   2958  1.1  christos       asection *sec;
   2959  1.1  christos       size_t symcount;
   2960  1.1  christos       Elf_Internal_Sym *syms, *sy, **psyms, **psy;
   2961  1.1  christos       asection **psecs, **p;
   2962  1.1  christos 
   2963  1.1  christos       if (ibfd->xvec != &bfd_elf32_spu_vec)
   2964  1.1  christos 	continue;
   2965  1.1  christos 
   2966  1.1  christos       /* Read all the symbols.  */
   2967  1.1  christos       symtab_hdr = &elf_tdata (ibfd)->symtab_hdr;
   2968  1.1  christos       symcount = symtab_hdr->sh_size / symtab_hdr->sh_entsize;
   2969  1.1  christos       if (symcount == 0)
   2970  1.1  christos 	{
   2971  1.1  christos 	  if (!gaps)
   2972  1.1  christos 	    for (sec = ibfd->sections; sec != NULL && !gaps; sec = sec->next)
   2973  1.1  christos 	      if (interesting_section (sec))
   2974  1.1  christos 		{
   2975  1.1  christos 		  gaps = TRUE;
   2976  1.1  christos 		  break;
   2977  1.1  christos 		}
   2978  1.1  christos 	  continue;
   2979  1.1  christos 	}
   2980  1.1  christos 
   2981  1.1  christos       if (symtab_hdr->contents != NULL)
   2982  1.1  christos 	{
   2983  1.1  christos 	  /* Don't use cached symbols since the generic ELF linker
   2984  1.1  christos 	     code only reads local symbols, and we need globals too.  */
   2985  1.1  christos 	  free (symtab_hdr->contents);
   2986  1.1  christos 	  symtab_hdr->contents = NULL;
   2987  1.1  christos 	}
   2988  1.1  christos       syms = bfd_elf_get_elf_syms (ibfd, symtab_hdr, symcount, 0,
   2989  1.1  christos 				   NULL, NULL, NULL);
   2990  1.1  christos       symtab_hdr->contents = (void *) syms;
   2991  1.1  christos       if (syms == NULL)
   2992  1.1  christos 	return FALSE;
   2993  1.1  christos 
   2994  1.1  christos       /* Select defined function symbols that are going to be output.  */
   2995  1.1  christos       psyms = bfd_malloc ((symcount + 1) * sizeof (*psyms));
   2996  1.1  christos       if (psyms == NULL)
   2997  1.1  christos 	return FALSE;
   2998  1.1  christos       psym_arr[bfd_idx] = psyms;
   2999  1.1  christos       psecs = bfd_malloc (symcount * sizeof (*psecs));
   3000  1.1  christos       if (psecs == NULL)
   3001  1.1  christos 	return FALSE;
   3002  1.1  christos       sec_arr[bfd_idx] = psecs;
   3003  1.1  christos       for (psy = psyms, p = psecs, sy = syms; sy < syms + symcount; ++p, ++sy)
   3004  1.1  christos 	if (ELF_ST_TYPE (sy->st_info) == STT_NOTYPE
   3005  1.1  christos 	    || ELF_ST_TYPE (sy->st_info) == STT_FUNC)
   3006  1.1  christos 	  {
   3007  1.1  christos 	    asection *s;
   3008  1.1  christos 
   3009  1.1  christos 	    *p = s = bfd_section_from_elf_index (ibfd, sy->st_shndx);
   3010  1.1  christos 	    if (s != NULL && interesting_section (s))
   3011  1.1  christos 	      *psy++ = sy;
   3012  1.1  christos 	  }
   3013  1.1  christos       symcount = psy - psyms;
   3014  1.1  christos       *psy = NULL;
   3015  1.1  christos 
   3016  1.1  christos       /* Sort them by section and offset within section.  */
   3017  1.1  christos       sort_syms_syms = syms;
   3018  1.1  christos       sort_syms_psecs = psecs;
   3019  1.1  christos       qsort (psyms, symcount, sizeof (*psyms), sort_syms);
   3020  1.1  christos 
   3021  1.1  christos       /* Now inspect the function symbols.  */
   3022  1.1  christos       for (psy = psyms; psy < psyms + symcount; )
   3023  1.1  christos 	{
   3024  1.1  christos 	  asection *s = psecs[*psy - syms];
   3025  1.1  christos 	  Elf_Internal_Sym **psy2;
   3026  1.1  christos 
   3027  1.1  christos 	  for (psy2 = psy; ++psy2 < psyms + symcount; )
   3028  1.1  christos 	    if (psecs[*psy2 - syms] != s)
   3029  1.1  christos 	      break;
   3030  1.1  christos 
   3031  1.1  christos 	  if (!alloc_stack_info (s, psy2 - psy))
   3032  1.1  christos 	    return FALSE;
   3033  1.1  christos 	  psy = psy2;
   3034  1.1  christos 	}
   3035  1.1  christos 
   3036  1.1  christos       /* First install info about properly typed and sized functions.
   3037  1.1  christos 	 In an ideal world this will cover all code sections, except
   3038  1.1  christos 	 when partitioning functions into hot and cold sections,
   3039  1.1  christos 	 and the horrible pasted together .init and .fini functions.  */
   3040  1.1  christos       for (psy = psyms; psy < psyms + symcount; ++psy)
   3041  1.1  christos 	{
   3042  1.1  christos 	  sy = *psy;
   3043  1.1  christos 	  if (ELF_ST_TYPE (sy->st_info) == STT_FUNC)
   3044  1.1  christos 	    {
   3045  1.1  christos 	      asection *s = psecs[sy - syms];
   3046  1.1  christos 	      if (!maybe_insert_function (s, sy, FALSE, TRUE))
   3047  1.1  christos 		return FALSE;
   3048  1.1  christos 	    }
   3049  1.1  christos 	}
   3050  1.1  christos 
   3051  1.1  christos       for (sec = ibfd->sections; sec != NULL && !gaps; sec = sec->next)
   3052  1.1  christos 	if (interesting_section (sec))
   3053  1.1  christos 	  gaps |= check_function_ranges (sec, info);
   3054  1.1  christos     }
   3055  1.1  christos 
   3056  1.1  christos   if (gaps)
   3057  1.1  christos     {
   3058  1.1  christos       /* See if we can discover more function symbols by looking at
   3059  1.1  christos 	 relocations.  */
   3060  1.1  christos       for (ibfd = info->input_bfds, bfd_idx = 0;
   3061  1.1  christos 	   ibfd != NULL;
   3062  1.1  christos 	   ibfd = ibfd->link_next, bfd_idx++)
   3063  1.1  christos 	{
   3064  1.1  christos 	  asection *sec;
   3065  1.1  christos 
   3066  1.1  christos 	  if (psym_arr[bfd_idx] == NULL)
   3067  1.1  christos 	    continue;
   3068  1.1  christos 
   3069  1.1  christos 	  for (sec = ibfd->sections; sec != NULL; sec = sec->next)
   3070  1.1  christos 	    if (!mark_functions_via_relocs (sec, info, FALSE))
   3071  1.1  christos 	      return FALSE;
   3072  1.1  christos 	}
   3073  1.1  christos 
   3074  1.1  christos       for (ibfd = info->input_bfds, bfd_idx = 0;
   3075  1.1  christos 	   ibfd != NULL;
   3076  1.1  christos 	   ibfd = ibfd->link_next, bfd_idx++)
   3077  1.1  christos 	{
   3078  1.1  christos 	  Elf_Internal_Shdr *symtab_hdr;
   3079  1.1  christos 	  asection *sec;
   3080  1.1  christos 	  Elf_Internal_Sym *syms, *sy, **psyms, **psy;
   3081  1.1  christos 	  asection **psecs;
   3082  1.1  christos 
   3083  1.1  christos 	  if ((psyms = psym_arr[bfd_idx]) == NULL)
   3084  1.1  christos 	    continue;
   3085  1.1  christos 
   3086  1.1  christos 	  psecs = sec_arr[bfd_idx];
   3087  1.1  christos 
   3088  1.1  christos 	  symtab_hdr = &elf_tdata (ibfd)->symtab_hdr;
   3089  1.1  christos 	  syms = (Elf_Internal_Sym *) symtab_hdr->contents;
   3090  1.1  christos 
   3091  1.1  christos 	  gaps = FALSE;
   3092  1.1  christos 	  for (sec = ibfd->sections; sec != NULL && !gaps; sec = sec->next)
   3093  1.1  christos 	    if (interesting_section (sec))
   3094  1.1  christos 	      gaps |= check_function_ranges (sec, info);
   3095  1.1  christos 	  if (!gaps)
   3096  1.1  christos 	    continue;
   3097  1.1  christos 
   3098  1.1  christos 	  /* Finally, install all globals.  */
   3099  1.1  christos 	  for (psy = psyms; (sy = *psy) != NULL; ++psy)
   3100  1.1  christos 	    {
   3101  1.1  christos 	      asection *s;
   3102  1.1  christos 
   3103  1.1  christos 	      s = psecs[sy - syms];
   3104  1.1  christos 
   3105  1.1  christos 	      /* Global syms might be improperly typed functions.  */
   3106  1.1  christos 	      if (ELF_ST_TYPE (sy->st_info) != STT_FUNC
   3107  1.1  christos 		  && ELF_ST_BIND (sy->st_info) == STB_GLOBAL)
   3108  1.1  christos 		{
   3109  1.1  christos 		  if (!maybe_insert_function (s, sy, FALSE, FALSE))
   3110  1.1  christos 		    return FALSE;
   3111  1.1  christos 		}
   3112  1.1  christos 	    }
   3113  1.1  christos 	}
   3114  1.1  christos 
   3115  1.1  christos       for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link_next)
   3116  1.1  christos 	{
   3117  1.1  christos 	  extern const bfd_target bfd_elf32_spu_vec;
   3118  1.1  christos 	  asection *sec;
   3119  1.1  christos 
   3120  1.1  christos 	  if (ibfd->xvec != &bfd_elf32_spu_vec)
   3121  1.1  christos 	    continue;
   3122  1.1  christos 
   3123  1.1  christos 	  /* Some of the symbols we've installed as marking the
   3124  1.1  christos 	     beginning of functions may have a size of zero.  Extend
   3125  1.1  christos 	     the range of such functions to the beginning of the
   3126  1.1  christos 	     next symbol of interest.  */
   3127  1.1  christos 	  for (sec = ibfd->sections; sec != NULL; sec = sec->next)
   3128  1.1  christos 	    if (interesting_section (sec))
   3129  1.1  christos 	      {
   3130  1.1  christos 		struct _spu_elf_section_data *sec_data;
   3131  1.1  christos 		struct spu_elf_stack_info *sinfo;
   3132  1.1  christos 
   3133  1.1  christos 		sec_data = spu_elf_section_data (sec);
   3134  1.1  christos 		sinfo = sec_data->u.i.stack_info;
   3135  1.1  christos 		if (sinfo != NULL && sinfo->num_fun != 0)
   3136  1.1  christos 		  {
   3137  1.1  christos 		    int fun_idx;
   3138  1.1  christos 		    bfd_vma hi = sec->size;
   3139  1.1  christos 
   3140  1.1  christos 		    for (fun_idx = sinfo->num_fun; --fun_idx >= 0; )
   3141  1.1  christos 		      {
   3142  1.1  christos 			sinfo->fun[fun_idx].hi = hi;
   3143  1.1  christos 			hi = sinfo->fun[fun_idx].lo;
   3144  1.1  christos 		      }
   3145  1.1  christos 
   3146  1.1  christos 		    sinfo->fun[0].lo = 0;
   3147  1.1  christos 		  }
   3148  1.1  christos 		/* No symbols in this section.  Must be .init or .fini
   3149  1.1  christos 		   or something similar.  */
   3150  1.1  christos 		else if (!pasted_function (sec))
   3151  1.1  christos 		  return FALSE;
   3152  1.1  christos 	      }
   3153  1.1  christos 	}
   3154  1.1  christos     }
   3155  1.1  christos 
   3156  1.1  christos   for (ibfd = info->input_bfds, bfd_idx = 0;
   3157  1.1  christos        ibfd != NULL;
   3158  1.1  christos        ibfd = ibfd->link_next, bfd_idx++)
   3159  1.1  christos     {
   3160  1.1  christos       if (psym_arr[bfd_idx] == NULL)
   3161  1.1  christos 	continue;
   3162  1.1  christos 
   3163  1.1  christos       free (psym_arr[bfd_idx]);
   3164  1.1  christos       free (sec_arr[bfd_idx]);
   3165  1.1  christos     }
   3166  1.1  christos 
   3167  1.1  christos   free (psym_arr);
   3168  1.1  christos   free (sec_arr);
   3169  1.1  christos 
   3170  1.1  christos   return TRUE;
   3171  1.1  christos }
   3172  1.1  christos 
   3173  1.1  christos /* Iterate over all function_info we have collected, calling DOIT on
   3174  1.1  christos    each node if ROOT_ONLY is false.  Only call DOIT on root nodes
   3175  1.1  christos    if ROOT_ONLY.  */
   3176  1.1  christos 
   3177  1.1  christos static bfd_boolean
   3178  1.1  christos for_each_node (bfd_boolean (*doit) (struct function_info *,
   3179  1.1  christos 				    struct bfd_link_info *,
   3180  1.1  christos 				    void *),
   3181  1.1  christos 	       struct bfd_link_info *info,
   3182  1.1  christos 	       void *param,
   3183  1.1  christos 	       int root_only)
   3184  1.1  christos {
   3185  1.1  christos   bfd *ibfd;
   3186  1.1  christos 
   3187  1.1  christos   for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link_next)
   3188  1.1  christos     {
   3189  1.1  christos       extern const bfd_target bfd_elf32_spu_vec;
   3190  1.1  christos       asection *sec;
   3191  1.1  christos 
   3192  1.1  christos       if (ibfd->xvec != &bfd_elf32_spu_vec)
   3193  1.1  christos 	continue;
   3194  1.1  christos 
   3195  1.1  christos       for (sec = ibfd->sections; sec != NULL; sec = sec->next)
   3196  1.1  christos 	{
   3197  1.1  christos 	  struct _spu_elf_section_data *sec_data;
   3198  1.1  christos 	  struct spu_elf_stack_info *sinfo;
   3199  1.1  christos 
   3200  1.1  christos 	  if ((sec_data = spu_elf_section_data (sec)) != NULL
   3201  1.1  christos 	      && (sinfo = sec_data->u.i.stack_info) != NULL)
   3202  1.1  christos 	    {
   3203  1.1  christos 	      int i;
   3204  1.1  christos 	      for (i = 0; i < sinfo->num_fun; ++i)
   3205  1.1  christos 		if (!root_only || !sinfo->fun[i].non_root)
   3206  1.1  christos 		  if (!doit (&sinfo->fun[i], info, param))
   3207  1.1  christos 		    return FALSE;
   3208  1.1  christos 	    }
   3209  1.1  christos 	}
   3210  1.1  christos     }
   3211  1.1  christos   return TRUE;
   3212  1.1  christos }
   3213  1.1  christos 
   3214  1.1  christos /* Transfer call info attached to struct function_info entries for
   3215  1.1  christos    all of a given function's sections to the first entry.  */
   3216  1.1  christos 
   3217  1.1  christos static bfd_boolean
   3218  1.1  christos transfer_calls (struct function_info *fun,
   3219  1.1  christos 		struct bfd_link_info *info ATTRIBUTE_UNUSED,
   3220  1.1  christos 		void *param ATTRIBUTE_UNUSED)
   3221  1.1  christos {
   3222  1.1  christos   struct function_info *start = fun->start;
   3223  1.1  christos 
   3224  1.1  christos   if (start != NULL)
   3225  1.1  christos     {
   3226  1.1  christos       struct call_info *call, *call_next;
   3227  1.1  christos 
   3228  1.1  christos       while (start->start != NULL)
   3229  1.1  christos 	start = start->start;
   3230  1.1  christos       for (call = fun->call_list; call != NULL; call = call_next)
   3231  1.1  christos 	{
   3232  1.1  christos 	  call_next = call->next;
   3233  1.1  christos 	  if (!insert_callee (start, call))
   3234  1.1  christos 	    free (call);
   3235  1.1  christos 	}
   3236  1.1  christos       fun->call_list = NULL;
   3237  1.1  christos     }
   3238  1.1  christos   return TRUE;
   3239  1.1  christos }
   3240  1.1  christos 
   3241  1.1  christos /* Mark nodes in the call graph that are called by some other node.  */
   3242  1.1  christos 
   3243  1.1  christos static bfd_boolean
   3244  1.1  christos mark_non_root (struct function_info *fun,
   3245  1.1  christos 	       struct bfd_link_info *info ATTRIBUTE_UNUSED,
   3246  1.1  christos 	       void *param ATTRIBUTE_UNUSED)
   3247  1.1  christos {
   3248  1.1  christos   struct call_info *call;
   3249  1.1  christos 
   3250  1.1  christos   if (fun->visit1)
   3251  1.1  christos     return TRUE;
   3252  1.1  christos   fun->visit1 = TRUE;
   3253  1.1  christos   for (call = fun->call_list; call; call = call->next)
   3254  1.1  christos     {
   3255  1.1  christos       call->fun->non_root = TRUE;
   3256  1.1  christos       mark_non_root (call->fun, 0, 0);
   3257  1.1  christos     }
   3258  1.1  christos   return TRUE;
   3259  1.1  christos }
   3260  1.1  christos 
   3261  1.1  christos /* Remove cycles from the call graph.  Set depth of nodes.  */
   3262  1.1  christos 
   3263  1.1  christos static bfd_boolean
   3264  1.1  christos remove_cycles (struct function_info *fun,
   3265  1.1  christos 	       struct bfd_link_info *info,
   3266  1.1  christos 	       void *param)
   3267  1.1  christos {
   3268  1.1  christos   struct call_info **callp, *call;
   3269  1.1  christos   unsigned int depth = *(unsigned int *) param;
   3270  1.1  christos   unsigned int max_depth = depth;
   3271  1.1  christos 
   3272  1.1  christos   fun->depth = depth;
   3273  1.1  christos   fun->visit2 = TRUE;
   3274  1.1  christos   fun->marking = TRUE;
   3275  1.1  christos 
   3276  1.1  christos   callp = &fun->call_list;
   3277  1.1  christos   while ((call = *callp) != NULL)
   3278  1.1  christos     {
   3279  1.1  christos       call->max_depth = depth + !call->is_pasted;
   3280  1.1  christos       if (!call->fun->visit2)
   3281  1.1  christos 	{
   3282  1.1  christos 	  if (!remove_cycles (call->fun, info, &call->max_depth))
   3283  1.1  christos 	    return FALSE;
   3284  1.1  christos 	  if (max_depth < call->max_depth)
   3285  1.1  christos 	    max_depth = call->max_depth;
   3286  1.1  christos 	}
   3287  1.1  christos       else if (call->fun->marking)
   3288  1.1  christos 	{
   3289  1.1  christos 	  struct spu_link_hash_table *htab = spu_hash_table (info);
   3290  1.1  christos 
   3291  1.1  christos 	  if (!htab->params->auto_overlay
   3292  1.1  christos 	      && htab->params->stack_analysis)
   3293  1.1  christos 	    {
   3294  1.1  christos 	      const char *f1 = func_name (fun);
   3295  1.1  christos 	      const char *f2 = func_name (call->fun);
   3296  1.1  christos 
   3297  1.1  christos 	      info->callbacks->info (_("Stack analysis will ignore the call "
   3298  1.1  christos 				       "from %s to %s\n"),
   3299  1.1  christos 				     f1, f2);
   3300  1.1  christos 	    }
   3301  1.1  christos 
   3302  1.1  christos 	  call->broken_cycle = TRUE;
   3303  1.1  christos 	}
   3304  1.1  christos       callp = &call->next;
   3305  1.1  christos     }
   3306  1.1  christos   fun->marking = FALSE;
   3307  1.1  christos   *(unsigned int *) param = max_depth;
   3308  1.1  christos   return TRUE;
   3309  1.1  christos }
   3310  1.1  christos 
   3311  1.1  christos /* Check that we actually visited all nodes in remove_cycles.  If we
   3312  1.1  christos    didn't, then there is some cycle in the call graph not attached to
   3313  1.1  christos    any root node.  Arbitrarily choose a node in the cycle as a new
   3314  1.1  christos    root and break the cycle.  */
   3315  1.1  christos 
   3316  1.1  christos static bfd_boolean
   3317  1.1  christos mark_detached_root (struct function_info *fun,
   3318  1.1  christos 		    struct bfd_link_info *info,
   3319  1.1  christos 		    void *param)
   3320  1.1  christos {
   3321  1.1  christos   if (fun->visit2)
   3322  1.1  christos     return TRUE;
   3323  1.1  christos   fun->non_root = FALSE;
   3324  1.1  christos   *(unsigned int *) param = 0;
   3325  1.1  christos   return remove_cycles (fun, info, param);
   3326  1.1  christos }
   3327  1.1  christos 
   3328  1.1  christos /* Populate call_list for each function.  */
   3329  1.1  christos 
   3330  1.1  christos static bfd_boolean
   3331  1.1  christos build_call_tree (struct bfd_link_info *info)
   3332  1.1  christos {
   3333  1.1  christos   bfd *ibfd;
   3334  1.1  christos   unsigned int depth;
   3335  1.1  christos 
   3336  1.1  christos   for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link_next)
   3337  1.1  christos     {
   3338  1.1  christos       extern const bfd_target bfd_elf32_spu_vec;
   3339  1.1  christos       asection *sec;
   3340  1.1  christos 
   3341  1.1  christos       if (ibfd->xvec != &bfd_elf32_spu_vec)
   3342  1.1  christos 	continue;
   3343  1.1  christos 
   3344  1.1  christos       for (sec = ibfd->sections; sec != NULL; sec = sec->next)
   3345  1.1  christos 	if (!mark_functions_via_relocs (sec, info, TRUE))
   3346  1.1  christos 	  return FALSE;
   3347  1.1  christos     }
   3348  1.1  christos 
   3349  1.1  christos   /* Transfer call info from hot/cold section part of function
   3350  1.1  christos      to main entry.  */
   3351  1.1  christos   if (!spu_hash_table (info)->params->auto_overlay
   3352  1.1  christos       && !for_each_node (transfer_calls, info, 0, FALSE))
   3353  1.1  christos     return FALSE;
   3354  1.1  christos 
   3355  1.1  christos   /* Find the call graph root(s).  */
   3356  1.1  christos   if (!for_each_node (mark_non_root, info, 0, FALSE))
   3357  1.1  christos     return FALSE;
   3358  1.1  christos 
   3359  1.1  christos   /* Remove cycles from the call graph.  We start from the root node(s)
   3360  1.1  christos      so that we break cycles in a reasonable place.  */
   3361  1.1  christos   depth = 0;
   3362  1.1  christos   if (!for_each_node (remove_cycles, info, &depth, TRUE))
   3363  1.1  christos     return FALSE;
   3364  1.1  christos 
   3365  1.1  christos   return for_each_node (mark_detached_root, info, &depth, FALSE);
   3366  1.1  christos }
   3367  1.1  christos 
   3368  1.1  christos /* qsort predicate to sort calls by priority, max_depth then count.  */
   3369  1.1  christos 
   3370  1.1  christos static int
   3371  1.1  christos sort_calls (const void *a, const void *b)
   3372  1.1  christos {
   3373  1.1  christos   struct call_info *const *c1 = a;
   3374  1.1  christos   struct call_info *const *c2 = b;
   3375  1.1  christos   int delta;
   3376  1.1  christos 
   3377  1.1  christos   delta = (*c2)->priority - (*c1)->priority;
   3378  1.1  christos   if (delta != 0)
   3379  1.1  christos     return delta;
   3380  1.1  christos 
   3381  1.1  christos   delta = (*c2)->max_depth - (*c1)->max_depth;
   3382  1.1  christos   if (delta != 0)
   3383  1.1  christos     return delta;
   3384  1.1  christos 
   3385  1.1  christos   delta = (*c2)->count - (*c1)->count;
   3386  1.1  christos   if (delta != 0)
   3387  1.1  christos     return delta;
   3388  1.1  christos 
   3389  1.1  christos   return (char *) c1 - (char *) c2;
   3390  1.1  christos }
   3391  1.1  christos 
   3392  1.1  christos struct _mos_param {
   3393  1.1  christos   unsigned int max_overlay_size;
   3394  1.1  christos };
   3395  1.1  christos 
   3396  1.1  christos /* Set linker_mark and gc_mark on any sections that we will put in
   3397  1.1  christos    overlays.  These flags are used by the generic ELF linker, but we
   3398  1.1  christos    won't be continuing on to bfd_elf_final_link so it is OK to use
   3399  1.1  christos    them.  linker_mark is clear before we get here.  Set segment_mark
   3400  1.1  christos    on sections that are part of a pasted function (excluding the last
   3401  1.1  christos    section).
   3402  1.1  christos 
   3403  1.1  christos    Set up function rodata section if --overlay-rodata.  We don't
   3404  1.1  christos    currently include merged string constant rodata sections since
   3405  1.1  christos 
   3406  1.1  christos    Sort the call graph so that the deepest nodes will be visited
   3407  1.1  christos    first.  */
   3408  1.1  christos 
   3409  1.1  christos static bfd_boolean
   3410  1.1  christos mark_overlay_section (struct function_info *fun,
   3411  1.1  christos 		      struct bfd_link_info *info,
   3412  1.1  christos 		      void *param)
   3413  1.1  christos {
   3414  1.1  christos   struct call_info *call;
   3415  1.1  christos   unsigned int count;
   3416  1.1  christos   struct _mos_param *mos_param = param;
   3417  1.1  christos   struct spu_link_hash_table *htab = spu_hash_table (info);
   3418  1.1  christos 
   3419  1.1  christos   if (fun->visit4)
   3420  1.1  christos     return TRUE;
   3421  1.1  christos 
   3422  1.1  christos   fun->visit4 = TRUE;
   3423  1.1  christos   if (!fun->sec->linker_mark
   3424  1.1  christos       && (htab->params->ovly_flavour != ovly_soft_icache
   3425  1.1  christos 	  || htab->params->non_ia_text
   3426  1.1  christos 	  || strncmp (fun->sec->name, ".text.ia.", 9) == 0
   3427  1.1  christos 	  || strcmp (fun->sec->name, ".init") == 0
   3428  1.1  christos 	  || strcmp (fun->sec->name, ".fini") == 0))
   3429  1.1  christos     {
   3430  1.1  christos       unsigned int size;
   3431  1.1  christos 
   3432  1.1  christos       fun->sec->linker_mark = 1;
   3433  1.1  christos       fun->sec->gc_mark = 1;
   3434  1.1  christos       fun->sec->segment_mark = 0;
   3435  1.1  christos       /* Ensure SEC_CODE is set on this text section (it ought to
   3436  1.1  christos 	 be!), and SEC_CODE is clear on rodata sections.  We use
   3437  1.1  christos 	 this flag to differentiate the two overlay section types.  */
   3438  1.1  christos       fun->sec->flags |= SEC_CODE;
   3439  1.1  christos 
   3440  1.1  christos       size = fun->sec->size;
   3441  1.1  christos       if (htab->params->auto_overlay & OVERLAY_RODATA)
   3442  1.1  christos 	{
   3443  1.1  christos 	  char *name = NULL;
   3444  1.1  christos 
   3445  1.1  christos 	  /* Find the rodata section corresponding to this function's
   3446  1.1  christos 	     text section.  */
   3447  1.1  christos 	  if (strcmp (fun->sec->name, ".text") == 0)
   3448  1.1  christos 	    {
   3449  1.1  christos 	      name = bfd_malloc (sizeof (".rodata"));
   3450  1.1  christos 	      if (name == NULL)
   3451  1.1  christos 		return FALSE;
   3452  1.1  christos 	      memcpy (name, ".rodata", sizeof (".rodata"));
   3453  1.1  christos 	    }
   3454  1.1  christos 	  else if (strncmp (fun->sec->name, ".text.", 6) == 0)
   3455  1.1  christos 	    {
   3456  1.1  christos 	      size_t len = strlen (fun->sec->name);
   3457  1.1  christos 	      name = bfd_malloc (len + 3);
   3458  1.1  christos 	      if (name == NULL)
   3459  1.1  christos 		return FALSE;
   3460  1.1  christos 	      memcpy (name, ".rodata", sizeof (".rodata"));
   3461  1.1  christos 	      memcpy (name + 7, fun->sec->name + 5, len - 4);
   3462  1.1  christos 	    }
   3463  1.1  christos 	  else if (strncmp (fun->sec->name, ".gnu.linkonce.t.", 16) == 0)
   3464  1.1  christos 	    {
   3465  1.1  christos 	      size_t len = strlen (fun->sec->name) + 1;
   3466  1.1  christos 	      name = bfd_malloc (len);
   3467  1.1  christos 	      if (name == NULL)
   3468  1.1  christos 		return FALSE;
   3469  1.1  christos 	      memcpy (name, fun->sec->name, len);
   3470  1.1  christos 	      name[14] = 'r';
   3471  1.1  christos 	    }
   3472  1.1  christos 
   3473  1.1  christos 	  if (name != NULL)
   3474  1.1  christos 	    {
   3475  1.1  christos 	      asection *rodata = NULL;
   3476  1.1  christos 	      asection *group_sec = elf_section_data (fun->sec)->next_in_group;
   3477  1.1  christos 	      if (group_sec == NULL)
   3478  1.1  christos 		rodata = bfd_get_section_by_name (fun->sec->owner, name);
   3479  1.1  christos 	      else
   3480  1.1  christos 		while (group_sec != NULL && group_sec != fun->sec)
   3481  1.1  christos 		  {
   3482  1.1  christos 		    if (strcmp (group_sec->name, name) == 0)
   3483  1.1  christos 		      {
   3484  1.1  christos 			rodata = group_sec;
   3485  1.1  christos 			break;
   3486  1.1  christos 		      }
   3487  1.1  christos 		    group_sec = elf_section_data (group_sec)->next_in_group;
   3488  1.1  christos 		  }
   3489  1.1  christos 	      fun->rodata = rodata;
   3490  1.1  christos 	      if (fun->rodata)
   3491  1.1  christos 		{
   3492  1.1  christos 		  size += fun->rodata->size;
   3493  1.1  christos 		  if (htab->params->line_size != 0
   3494  1.1  christos 		      && size > htab->params->line_size)
   3495  1.1  christos 		    {
   3496  1.1  christos 		      size -= fun->rodata->size;
   3497  1.1  christos 		      fun->rodata = NULL;
   3498  1.1  christos 		    }
   3499  1.1  christos 		  else
   3500  1.1  christos 		    {
   3501  1.1  christos 		      fun->rodata->linker_mark = 1;
   3502  1.1  christos 		      fun->rodata->gc_mark = 1;
   3503  1.1  christos 		      fun->rodata->flags &= ~SEC_CODE;
   3504  1.1  christos 		    }
   3505  1.1  christos 		}
   3506  1.1  christos 	      free (name);
   3507  1.1  christos 	    }
   3508  1.1  christos 	}
   3509  1.1  christos       if (mos_param->max_overlay_size < size)
   3510  1.1  christos 	mos_param->max_overlay_size = size;
   3511  1.1  christos     }
   3512  1.1  christos 
   3513  1.1  christos   for (count = 0, call = fun->call_list; call != NULL; call = call->next)
   3514  1.1  christos     count += 1;
   3515  1.1  christos 
   3516  1.1  christos   if (count > 1)
   3517  1.1  christos     {
   3518  1.1  christos       struct call_info **calls = bfd_malloc (count * sizeof (*calls));
   3519  1.1  christos       if (calls == NULL)
   3520  1.1  christos 	return FALSE;
   3521  1.1  christos 
   3522  1.1  christos       for (count = 0, call = fun->call_list; call != NULL; call = call->next)
   3523  1.1  christos 	calls[count++] = call;
   3524  1.1  christos 
   3525  1.1  christos       qsort (calls, count, sizeof (*calls), sort_calls);
   3526  1.1  christos 
   3527  1.1  christos       fun->call_list = NULL;
   3528  1.1  christos       while (count != 0)
   3529  1.1  christos 	{
   3530  1.1  christos 	  --count;
   3531  1.1  christos 	  calls[count]->next = fun->call_list;
   3532  1.1  christos 	  fun->call_list = calls[count];
   3533  1.1  christos 	}
   3534  1.1  christos       free (calls);
   3535  1.1  christos     }
   3536  1.1  christos 
   3537  1.1  christos   for (call = fun->call_list; call != NULL; call = call->next)
   3538  1.1  christos     {
   3539  1.1  christos       if (call->is_pasted)
   3540  1.1  christos 	{
   3541  1.1  christos 	  /* There can only be one is_pasted call per function_info.  */
   3542  1.1  christos 	  BFD_ASSERT (!fun->sec->segment_mark);
   3543  1.1  christos 	  fun->sec->segment_mark = 1;
   3544  1.1  christos 	}
   3545  1.1  christos       if (!call->broken_cycle
   3546  1.1  christos 	  && !mark_overlay_section (call->fun, info, param))
   3547  1.1  christos 	return FALSE;
   3548  1.1  christos     }
   3549  1.1  christos 
   3550  1.1  christos   /* Don't put entry code into an overlay.  The overlay manager needs
   3551  1.1  christos      a stack!  Also, don't mark .ovl.init as an overlay.  */
   3552  1.1  christos   if (fun->lo + fun->sec->output_offset + fun->sec->output_section->vma
   3553  1.1  christos       == info->output_bfd->start_address
   3554  1.1  christos       || strncmp (fun->sec->output_section->name, ".ovl.init", 9) == 0)
   3555  1.1  christos     {
   3556  1.1  christos       fun->sec->linker_mark = 0;
   3557  1.1  christos       if (fun->rodata != NULL)
   3558  1.1  christos 	fun->rodata->linker_mark = 0;
   3559  1.1  christos     }
   3560  1.1  christos   return TRUE;
   3561  1.1  christos }
   3562  1.1  christos 
   3563  1.1  christos /* If non-zero then unmark functions called from those within sections
   3564  1.1  christos    that we need to unmark.  Unfortunately this isn't reliable since the
   3565  1.1  christos    call graph cannot know the destination of function pointer calls.  */
   3566  1.1  christos #define RECURSE_UNMARK 0
   3567  1.1  christos 
   3568  1.1  christos struct _uos_param {
   3569  1.1  christos   asection *exclude_input_section;
   3570  1.1  christos   asection *exclude_output_section;
   3571  1.1  christos   unsigned long clearing;
   3572  1.1  christos };
   3573  1.1  christos 
   3574  1.1  christos /* Undo some of mark_overlay_section's work.  */
   3575  1.1  christos 
   3576  1.1  christos static bfd_boolean
   3577  1.1  christos unmark_overlay_section (struct function_info *fun,
   3578  1.1  christos 			struct bfd_link_info *info,
   3579  1.1  christos 			void *param)
   3580  1.1  christos {
   3581  1.1  christos   struct call_info *call;
   3582  1.1  christos   struct _uos_param *uos_param = param;
   3583  1.1  christos   unsigned int excluded = 0;
   3584  1.1  christos 
   3585  1.1  christos   if (fun->visit5)
   3586  1.1  christos     return TRUE;
   3587  1.1  christos 
   3588  1.1  christos   fun->visit5 = TRUE;
   3589  1.1  christos 
   3590  1.1  christos   excluded = 0;
   3591  1.1  christos   if (fun->sec == uos_param->exclude_input_section
   3592  1.1  christos       || fun->sec->output_section == uos_param->exclude_output_section)
   3593  1.1  christos     excluded = 1;
   3594  1.1  christos 
   3595  1.1  christos   if (RECURSE_UNMARK)
   3596  1.1  christos     uos_param->clearing += excluded;
   3597  1.1  christos 
   3598  1.1  christos   if (RECURSE_UNMARK ? uos_param->clearing : excluded)
   3599  1.1  christos     {
   3600  1.1  christos       fun->sec->linker_mark = 0;
   3601  1.1  christos       if (fun->rodata)
   3602  1.1  christos 	fun->rodata->linker_mark = 0;
   3603  1.1  christos     }
   3604  1.1  christos 
   3605  1.1  christos   for (call = fun->call_list; call != NULL; call = call->next)
   3606  1.1  christos     if (!call->broken_cycle
   3607  1.1  christos 	&& !unmark_overlay_section (call->fun, info, param))
   3608  1.1  christos       return FALSE;
   3609  1.1  christos 
   3610  1.1  christos   if (RECURSE_UNMARK)
   3611  1.1  christos     uos_param->clearing -= excluded;
   3612  1.1  christos   return TRUE;
   3613  1.1  christos }
   3614  1.1  christos 
   3615  1.1  christos struct _cl_param {
   3616  1.1  christos   unsigned int lib_size;
   3617  1.1  christos   asection **lib_sections;
   3618  1.1  christos };
   3619  1.1  christos 
   3620  1.1  christos /* Add sections we have marked as belonging to overlays to an array
   3621  1.1  christos    for consideration as non-overlay sections.  The array consist of
   3622  1.1  christos    pairs of sections, (text,rodata), for functions in the call graph.  */
   3623  1.1  christos 
   3624  1.1  christos static bfd_boolean
   3625  1.1  christos collect_lib_sections (struct function_info *fun,
   3626  1.1  christos 		      struct bfd_link_info *info,
   3627  1.1  christos 		      void *param)
   3628  1.1  christos {
   3629  1.1  christos   struct _cl_param *lib_param = param;
   3630  1.1  christos   struct call_info *call;
   3631  1.1  christos   unsigned int size;
   3632  1.1  christos 
   3633  1.1  christos   if (fun->visit6)
   3634  1.1  christos     return TRUE;
   3635  1.1  christos 
   3636  1.1  christos   fun->visit6 = TRUE;
   3637  1.1  christos   if (!fun->sec->linker_mark || !fun->sec->gc_mark || fun->sec->segment_mark)
   3638  1.1  christos     return TRUE;
   3639  1.1  christos 
   3640  1.1  christos   size = fun->sec->size;
   3641  1.1  christos   if (fun->rodata)
   3642  1.1  christos     size += fun->rodata->size;
   3643  1.1  christos 
   3644  1.1  christos   if (size <= lib_param->lib_size)
   3645  1.1  christos     {
   3646  1.1  christos       *lib_param->lib_sections++ = fun->sec;
   3647  1.1  christos       fun->sec->gc_mark = 0;
   3648  1.1  christos       if (fun->rodata && fun->rodata->linker_mark && fun->rodata->gc_mark)
   3649  1.1  christos 	{
   3650  1.1  christos 	  *lib_param->lib_sections++ = fun->rodata;
   3651  1.1  christos 	  fun->rodata->gc_mark = 0;
   3652  1.1  christos 	}
   3653  1.1  christos       else
   3654  1.1  christos 	*lib_param->lib_sections++ = NULL;
   3655  1.1  christos     }
   3656  1.1  christos 
   3657  1.1  christos   for (call = fun->call_list; call != NULL; call = call->next)
   3658  1.1  christos     if (!call->broken_cycle)
   3659  1.1  christos       collect_lib_sections (call->fun, info, param);
   3660  1.1  christos 
   3661  1.1  christos   return TRUE;
   3662  1.1  christos }
   3663  1.1  christos 
   3664  1.1  christos /* qsort predicate to sort sections by call count.  */
   3665  1.1  christos 
   3666  1.1  christos static int
   3667  1.1  christos sort_lib (const void *a, const void *b)
   3668  1.1  christos {
   3669  1.1  christos   asection *const *s1 = a;
   3670  1.1  christos   asection *const *s2 = b;
   3671  1.1  christos   struct _spu_elf_section_data *sec_data;
   3672  1.1  christos   struct spu_elf_stack_info *sinfo;
   3673  1.1  christos   int delta;
   3674  1.1  christos 
   3675  1.1  christos   delta = 0;
   3676  1.1  christos   if ((sec_data = spu_elf_section_data (*s1)) != NULL
   3677  1.1  christos       && (sinfo = sec_data->u.i.stack_info) != NULL)
   3678  1.1  christos     {
   3679  1.1  christos       int i;
   3680  1.1  christos       for (i = 0; i < sinfo->num_fun; ++i)
   3681  1.1  christos 	delta -= sinfo->fun[i].call_count;
   3682  1.1  christos     }
   3683  1.1  christos 
   3684  1.1  christos   if ((sec_data = spu_elf_section_data (*s2)) != NULL
   3685  1.1  christos       && (sinfo = sec_data->u.i.stack_info) != NULL)
   3686  1.1  christos     {
   3687  1.1  christos       int i;
   3688  1.1  christos       for (i = 0; i < sinfo->num_fun; ++i)
   3689  1.1  christos 	delta += sinfo->fun[i].call_count;
   3690  1.1  christos     }
   3691  1.1  christos 
   3692  1.1  christos   if (delta != 0)
   3693  1.1  christos     return delta;
   3694  1.1  christos 
   3695  1.1  christos   return s1 - s2;
   3696  1.1  christos }
   3697  1.1  christos 
   3698  1.1  christos /* Remove some sections from those marked to be in overlays.  Choose
   3699  1.1  christos    those that are called from many places, likely library functions.  */
   3700  1.1  christos 
   3701  1.1  christos static unsigned int
   3702  1.1  christos auto_ovl_lib_functions (struct bfd_link_info *info, unsigned int lib_size)
   3703  1.1  christos {
   3704  1.1  christos   bfd *ibfd;
   3705  1.1  christos   asection **lib_sections;
   3706  1.1  christos   unsigned int i, lib_count;
   3707  1.1  christos   struct _cl_param collect_lib_param;
   3708  1.1  christos   struct function_info dummy_caller;
   3709  1.1  christos   struct spu_link_hash_table *htab;
   3710  1.1  christos 
   3711  1.1  christos   memset (&dummy_caller, 0, sizeof (dummy_caller));
   3712  1.1  christos   lib_count = 0;
   3713  1.1  christos   for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link_next)
   3714  1.1  christos     {
   3715  1.1  christos       extern const bfd_target bfd_elf32_spu_vec;
   3716  1.1  christos       asection *sec;
   3717  1.1  christos 
   3718  1.1  christos       if (ibfd->xvec != &bfd_elf32_spu_vec)
   3719  1.1  christos 	continue;
   3720  1.1  christos 
   3721  1.1  christos       for (sec = ibfd->sections; sec != NULL; sec = sec->next)
   3722  1.1  christos 	if (sec->linker_mark
   3723  1.1  christos 	    && sec->size < lib_size
   3724  1.1  christos 	    && (sec->flags & SEC_CODE) != 0)
   3725  1.1  christos 	  lib_count += 1;
   3726  1.1  christos     }
   3727  1.1  christos   lib_sections = bfd_malloc (lib_count * 2 * sizeof (*lib_sections));
   3728  1.1  christos   if (lib_sections == NULL)
   3729  1.1  christos     return (unsigned int) -1;
   3730  1.1  christos   collect_lib_param.lib_size = lib_size;
   3731  1.1  christos   collect_lib_param.lib_sections = lib_sections;
   3732  1.1  christos   if (!for_each_node (collect_lib_sections, info, &collect_lib_param,
   3733  1.1  christos 		      TRUE))
   3734  1.1  christos     return (unsigned int) -1;
   3735  1.1  christos   lib_count = (collect_lib_param.lib_sections - lib_sections) / 2;
   3736  1.1  christos 
   3737  1.1  christos   /* Sort sections so that those with the most calls are first.  */
   3738  1.1  christos   if (lib_count > 1)
   3739  1.1  christos     qsort (lib_sections, lib_count, 2 * sizeof (*lib_sections), sort_lib);
   3740  1.1  christos 
   3741  1.1  christos   htab = spu_hash_table (info);
   3742  1.1  christos   for (i = 0; i < lib_count; i++)
   3743  1.1  christos     {
   3744  1.1  christos       unsigned int tmp, stub_size;
   3745  1.1  christos       asection *sec;
   3746  1.1  christos       struct _spu_elf_section_data *sec_data;
   3747  1.1  christos       struct spu_elf_stack_info *sinfo;
   3748  1.1  christos 
   3749  1.1  christos       sec = lib_sections[2 * i];
   3750  1.1  christos       /* If this section is OK, its size must be less than lib_size.  */
   3751  1.1  christos       tmp = sec->size;
   3752  1.1  christos       /* If it has a rodata section, then add that too.  */
   3753  1.1  christos       if (lib_sections[2 * i + 1])
   3754  1.1  christos 	tmp += lib_sections[2 * i + 1]->size;
   3755  1.1  christos       /* Add any new overlay call stubs needed by the section.  */
   3756  1.1  christos       stub_size = 0;
   3757  1.1  christos       if (tmp < lib_size
   3758  1.1  christos 	  && (sec_data = spu_elf_section_data (sec)) != NULL
   3759  1.1  christos 	  && (sinfo = sec_data->u.i.stack_info) != NULL)
   3760  1.1  christos 	{
   3761  1.1  christos 	  int k;
   3762  1.1  christos 	  struct call_info *call;
   3763  1.1  christos 
   3764  1.1  christos 	  for (k = 0; k < sinfo->num_fun; ++k)
   3765  1.1  christos 	    for (call = sinfo->fun[k].call_list; call; call = call->next)
   3766  1.1  christos 	      if (call->fun->sec->linker_mark)
   3767  1.1  christos 		{
   3768  1.1  christos 		  struct call_info *p;
   3769  1.1  christos 		  for (p = dummy_caller.call_list; p; p = p->next)
   3770  1.1  christos 		    if (p->fun == call->fun)
   3771  1.1  christos 		      break;
   3772  1.1  christos 		  if (!p)
   3773  1.1  christos 		    stub_size += ovl_stub_size (htab->params);
   3774  1.1  christos 		}
   3775  1.1  christos 	}
   3776  1.1  christos       if (tmp + stub_size < lib_size)
   3777  1.1  christos 	{
   3778  1.1  christos 	  struct call_info **pp, *p;
   3779  1.1  christos 
   3780  1.1  christos 	  /* This section fits.  Mark it as non-overlay.  */
   3781  1.1  christos 	  lib_sections[2 * i]->linker_mark = 0;
   3782  1.1  christos 	  if (lib_sections[2 * i + 1])
   3783  1.1  christos 	    lib_sections[2 * i + 1]->linker_mark = 0;
   3784  1.1  christos 	  lib_size -= tmp + stub_size;
   3785  1.1  christos 	  /* Call stubs to the section we just added are no longer
   3786  1.1  christos 	     needed.  */
   3787  1.1  christos 	  pp = &dummy_caller.call_list;
   3788  1.1  christos 	  while ((p = *pp) != NULL)
   3789  1.1  christos 	    if (!p->fun->sec->linker_mark)
   3790  1.1  christos 	      {
   3791  1.1  christos 		lib_size += ovl_stub_size (htab->params);
   3792  1.1  christos 		*pp = p->next;
   3793  1.1  christos 		free (p);
   3794  1.1  christos 	      }
   3795  1.1  christos 	    else
   3796  1.1  christos 	      pp = &p->next;
   3797  1.1  christos 	  /* Add new call stubs to dummy_caller.  */
   3798  1.1  christos 	  if ((sec_data = spu_elf_section_data (sec)) != NULL
   3799  1.1  christos 	      && (sinfo = sec_data->u.i.stack_info) != NULL)
   3800  1.1  christos 	    {
   3801  1.1  christos 	      int k;
   3802  1.1  christos 	      struct call_info *call;
   3803  1.1  christos 
   3804  1.1  christos 	      for (k = 0; k < sinfo->num_fun; ++k)
   3805  1.1  christos 		for (call = sinfo->fun[k].call_list;
   3806  1.1  christos 		     call;
   3807  1.1  christos 		     call = call->next)
   3808  1.1  christos 		  if (call->fun->sec->linker_mark)
   3809  1.1  christos 		    {
   3810  1.1  christos 		      struct call_info *callee;
   3811  1.1  christos 		      callee = bfd_malloc (sizeof (*callee));
   3812  1.1  christos 		      if (callee == NULL)
   3813  1.1  christos 			return (unsigned int) -1;
   3814  1.1  christos 		      *callee = *call;
   3815  1.1  christos 		      if (!insert_callee (&dummy_caller, callee))
   3816  1.1  christos 			free (callee);
   3817  1.1  christos 		    }
   3818  1.1  christos 	    }
   3819  1.1  christos 	}
   3820  1.1  christos     }
   3821  1.1  christos   while (dummy_caller.call_list != NULL)
   3822  1.1  christos     {
   3823  1.1  christos       struct call_info *call = dummy_caller.call_list;
   3824  1.1  christos       dummy_caller.call_list = call->next;
   3825  1.1  christos       free (call);
   3826  1.1  christos     }
   3827  1.1  christos   for (i = 0; i < 2 * lib_count; i++)
   3828  1.1  christos     if (lib_sections[i])
   3829  1.1  christos       lib_sections[i]->gc_mark = 1;
   3830  1.1  christos   free (lib_sections);
   3831  1.1  christos   return lib_size;
   3832  1.1  christos }
   3833  1.1  christos 
   3834  1.1  christos /* Build an array of overlay sections.  The deepest node's section is
   3835  1.1  christos    added first, then its parent node's section, then everything called
   3836  1.1  christos    from the parent section.  The idea being to group sections to
   3837  1.1  christos    minimise calls between different overlays.  */
   3838  1.1  christos 
   3839  1.1  christos static bfd_boolean
   3840  1.1  christos collect_overlays (struct function_info *fun,
   3841  1.1  christos 		  struct bfd_link_info *info,
   3842  1.1  christos 		  void *param)
   3843  1.1  christos {
   3844  1.1  christos   struct call_info *call;
   3845  1.1  christos   bfd_boolean added_fun;
   3846  1.1  christos   asection ***ovly_sections = param;
   3847  1.1  christos 
   3848  1.1  christos   if (fun->visit7)
   3849  1.1  christos     return TRUE;
   3850  1.1  christos 
   3851  1.1  christos   fun->visit7 = TRUE;
   3852  1.1  christos   for (call = fun->call_list; call != NULL; call = call->next)
   3853  1.1  christos     if (!call->is_pasted && !call->broken_cycle)
   3854  1.1  christos       {
   3855  1.1  christos 	if (!collect_overlays (call->fun, info, ovly_sections))
   3856  1.1  christos 	  return FALSE;
   3857  1.1  christos 	break;
   3858  1.1  christos       }
   3859  1.1  christos 
   3860  1.1  christos   added_fun = FALSE;
   3861  1.1  christos   if (fun->sec->linker_mark && fun->sec->gc_mark)
   3862  1.1  christos     {
   3863  1.1  christos       fun->sec->gc_mark = 0;
   3864  1.1  christos       *(*ovly_sections)++ = fun->sec;
   3865  1.1  christos       if (fun->rodata && fun->rodata->linker_mark && fun->rodata->gc_mark)
   3866  1.1  christos 	{
   3867  1.1  christos 	  fun->rodata->gc_mark = 0;
   3868  1.1  christos 	  *(*ovly_sections)++ = fun->rodata;
   3869  1.1  christos 	}
   3870  1.1  christos       else
   3871  1.1  christos 	*(*ovly_sections)++ = NULL;
   3872  1.1  christos       added_fun = TRUE;
   3873  1.1  christos 
   3874  1.1  christos       /* Pasted sections must stay with the first section.  We don't
   3875  1.1  christos 	 put pasted sections in the array, just the first section.
   3876  1.1  christos 	 Mark subsequent sections as already considered.  */
   3877  1.1  christos       if (fun->sec->segment_mark)
   3878  1.1  christos 	{
   3879  1.1  christos 	  struct function_info *call_fun = fun;
   3880  1.1  christos 	  do
   3881  1.1  christos 	    {
   3882  1.1  christos 	      for (call = call_fun->call_list; call != NULL; call = call->next)
   3883  1.1  christos 		if (call->is_pasted)
   3884  1.1  christos 		  {
   3885  1.1  christos 		    call_fun = call->fun;
   3886  1.1  christos 		    call_fun->sec->gc_mark = 0;
   3887  1.1  christos 		    if (call_fun->rodata)
   3888  1.1  christos 		      call_fun->rodata->gc_mark = 0;
   3889  1.1  christos 		    break;
   3890  1.1  christos 		  }
   3891  1.1  christos 	      if (call == NULL)
   3892  1.1  christos 		abort ();
   3893  1.1  christos 	    }
   3894  1.1  christos 	  while (call_fun->sec->segment_mark);
   3895  1.1  christos 	}
   3896  1.1  christos     }
   3897  1.1  christos 
   3898  1.1  christos   for (call = fun->call_list; call != NULL; call = call->next)
   3899  1.1  christos     if (!call->broken_cycle
   3900  1.1  christos 	&& !collect_overlays (call->fun, info, ovly_sections))
   3901  1.1  christos       return FALSE;
   3902  1.1  christos 
   3903  1.1  christos   if (added_fun)
   3904  1.1  christos     {
   3905  1.1  christos       struct _spu_elf_section_data *sec_data;
   3906  1.1  christos       struct spu_elf_stack_info *sinfo;
   3907  1.1  christos 
   3908  1.1  christos       if ((sec_data = spu_elf_section_data (fun->sec)) != NULL
   3909  1.1  christos 	  && (sinfo = sec_data->u.i.stack_info) != NULL)
   3910  1.1  christos 	{
   3911  1.1  christos 	  int i;
   3912  1.1  christos 	  for (i = 0; i < sinfo->num_fun; ++i)
   3913  1.1  christos 	    if (!collect_overlays (&sinfo->fun[i], info, ovly_sections))
   3914  1.1  christos 	      return FALSE;
   3915  1.1  christos 	}
   3916  1.1  christos     }
   3917  1.1  christos 
   3918  1.1  christos   return TRUE;
   3919  1.1  christos }
   3920  1.1  christos 
   3921  1.1  christos struct _sum_stack_param {
   3922  1.1  christos   size_t cum_stack;
   3923  1.1  christos   size_t overall_stack;
   3924  1.1  christos   bfd_boolean emit_stack_syms;
   3925  1.1  christos };
   3926  1.1  christos 
   3927  1.1  christos /* Descend the call graph for FUN, accumulating total stack required.  */
   3928  1.1  christos 
   3929  1.1  christos static bfd_boolean
   3930  1.1  christos sum_stack (struct function_info *fun,
   3931  1.1  christos 	   struct bfd_link_info *info,
   3932  1.1  christos 	   void *param)
   3933  1.1  christos {
   3934  1.1  christos   struct call_info *call;
   3935  1.1  christos   struct function_info *max;
   3936  1.1  christos   size_t stack, cum_stack;
   3937  1.1  christos   const char *f1;
   3938  1.1  christos   bfd_boolean has_call;
   3939  1.1  christos   struct _sum_stack_param *sum_stack_param = param;
   3940  1.1  christos   struct spu_link_hash_table *htab;
   3941  1.1  christos 
   3942  1.1  christos   cum_stack = fun->stack;
   3943  1.1  christos   sum_stack_param->cum_stack = cum_stack;
   3944  1.1  christos   if (fun->visit3)
   3945  1.1  christos     return TRUE;
   3946  1.1  christos 
   3947  1.1  christos   has_call = FALSE;
   3948  1.1  christos   max = NULL;
   3949  1.1  christos   for (call = fun->call_list; call; call = call->next)
   3950  1.1  christos     {
   3951  1.1  christos       if (call->broken_cycle)
   3952  1.1  christos 	continue;
   3953  1.1  christos       if (!call->is_pasted)
   3954  1.1  christos 	has_call = TRUE;
   3955  1.1  christos       if (!sum_stack (call->fun, info, sum_stack_param))
   3956  1.1  christos 	return FALSE;
   3957  1.1  christos       stack = sum_stack_param->cum_stack;
   3958  1.1  christos       /* Include caller stack for normal calls, don't do so for
   3959  1.1  christos 	 tail calls.  fun->stack here is local stack usage for
   3960  1.1  christos 	 this function.  */
   3961  1.1  christos       if (!call->is_tail || call->is_pasted || call->fun->start != NULL)
   3962  1.1  christos 	stack += fun->stack;
   3963  1.1  christos       if (cum_stack < stack)
   3964  1.1  christos 	{
   3965  1.1  christos 	  cum_stack = stack;
   3966  1.1  christos 	  max = call->fun;
   3967  1.1  christos 	}
   3968  1.1  christos     }
   3969  1.1  christos 
   3970  1.1  christos   sum_stack_param->cum_stack = cum_stack;
   3971  1.1  christos   stack = fun->stack;
   3972  1.1  christos   /* Now fun->stack holds cumulative stack.  */
   3973  1.1  christos   fun->stack = cum_stack;
   3974  1.1  christos   fun->visit3 = TRUE;
   3975  1.1  christos 
   3976  1.1  christos   if (!fun->non_root
   3977  1.1  christos       && sum_stack_param->overall_stack < cum_stack)
   3978  1.1  christos     sum_stack_param->overall_stack = cum_stack;
   3979  1.1  christos 
   3980  1.1  christos   htab = spu_hash_table (info);
   3981  1.1  christos   if (htab->params->auto_overlay)
   3982  1.1  christos     return TRUE;
   3983  1.1  christos 
   3984  1.1  christos   f1 = func_name (fun);
   3985  1.1  christos   if (htab->params->stack_analysis)
   3986  1.1  christos     {
   3987  1.1  christos       if (!fun->non_root)
   3988  1.1  christos 	info->callbacks->info (_("  %s: 0x%v\n"), f1, (bfd_vma) cum_stack);
   3989  1.1  christos       info->callbacks->minfo (_("%s: 0x%v 0x%v\n"),
   3990  1.1  christos 			      f1, (bfd_vma) stack, (bfd_vma) cum_stack);
   3991  1.1  christos 
   3992  1.1  christos       if (has_call)
   3993  1.1  christos 	{
   3994  1.1  christos 	  info->callbacks->minfo (_("  calls:\n"));
   3995  1.1  christos 	  for (call = fun->call_list; call; call = call->next)
   3996  1.1  christos 	    if (!call->is_pasted && !call->broken_cycle)
   3997  1.1  christos 	      {
   3998  1.1  christos 		const char *f2 = func_name (call->fun);
   3999  1.1  christos 		const char *ann1 = call->fun == max ? "*" : " ";
   4000  1.1  christos 		const char *ann2 = call->is_tail ? "t" : " ";
   4001  1.1  christos 
   4002  1.1  christos 		info->callbacks->minfo (_("   %s%s %s\n"), ann1, ann2, f2);
   4003  1.1  christos 	      }
   4004  1.1  christos 	}
   4005  1.1  christos     }
   4006  1.1  christos 
   4007  1.1  christos   if (sum_stack_param->emit_stack_syms)
   4008  1.1  christos     {
   4009  1.1  christos       char *name = bfd_malloc (18 + strlen (f1));
   4010  1.1  christos       struct elf_link_hash_entry *h;
   4011  1.1  christos 
   4012  1.1  christos       if (name == NULL)
   4013  1.1  christos 	return FALSE;
   4014  1.1  christos 
   4015  1.1  christos       if (fun->global || ELF_ST_BIND (fun->u.sym->st_info) == STB_GLOBAL)
   4016  1.1  christos 	sprintf (name, "__stack_%s", f1);
   4017  1.1  christos       else
   4018  1.1  christos 	sprintf (name, "__stack_%x_%s", fun->sec->id & 0xffffffff, f1);
   4019  1.1  christos 
   4020  1.1  christos       h = elf_link_hash_lookup (&htab->elf, name, TRUE, TRUE, FALSE);
   4021  1.1  christos       free (name);
   4022  1.1  christos       if (h != NULL
   4023  1.1  christos 	  && (h->root.type == bfd_link_hash_new
   4024  1.1  christos 	      || h->root.type == bfd_link_hash_undefined
   4025  1.1  christos 	      || h->root.type == bfd_link_hash_undefweak))
   4026  1.1  christos 	{
   4027  1.1  christos 	  h->root.type = bfd_link_hash_defined;
   4028  1.1  christos 	  h->root.u.def.section = bfd_abs_section_ptr;
   4029  1.1  christos 	  h->root.u.def.value = cum_stack;
   4030  1.1  christos 	  h->size = 0;
   4031  1.1  christos 	  h->type = 0;
   4032  1.1  christos 	  h->ref_regular = 1;
   4033  1.1  christos 	  h->def_regular = 1;
   4034  1.1  christos 	  h->ref_regular_nonweak = 1;
   4035  1.1  christos 	  h->forced_local = 1;
   4036  1.1  christos 	  h->non_elf = 0;
   4037  1.1  christos 	}
   4038  1.1  christos     }
   4039  1.1  christos 
   4040  1.1  christos   return TRUE;
   4041  1.1  christos }
   4042  1.1  christos 
   4043  1.1  christos /* SEC is part of a pasted function.  Return the call_info for the
   4044  1.1  christos    next section of this function.  */
   4045  1.1  christos 
   4046  1.1  christos static struct call_info *
   4047  1.1  christos find_pasted_call (asection *sec)
   4048  1.1  christos {
   4049  1.1  christos   struct _spu_elf_section_data *sec_data = spu_elf_section_data (sec);
   4050  1.1  christos   struct spu_elf_stack_info *sinfo = sec_data->u.i.stack_info;
   4051  1.1  christos   struct call_info *call;
   4052  1.1  christos   int k;
   4053  1.1  christos 
   4054  1.1  christos   for (k = 0; k < sinfo->num_fun; ++k)
   4055  1.1  christos     for (call = sinfo->fun[k].call_list; call != NULL; call = call->next)
   4056  1.1  christos       if (call->is_pasted)
   4057  1.1  christos 	return call;
   4058  1.1  christos   abort ();
   4059  1.1  christos   return 0;
   4060  1.1  christos }
   4061  1.1  christos 
   4062  1.1  christos /* qsort predicate to sort bfds by file name.  */
   4063  1.1  christos 
   4064  1.1  christos static int
   4065  1.1  christos sort_bfds (const void *a, const void *b)
   4066  1.1  christos {
   4067  1.1  christos   bfd *const *abfd1 = a;
   4068  1.1  christos   bfd *const *abfd2 = b;
   4069  1.1  christos 
   4070  1.1  christos   return filename_cmp ((*abfd1)->filename, (*abfd2)->filename);
   4071  1.1  christos }
   4072  1.1  christos 
   4073  1.1  christos static unsigned int
   4074  1.1  christos print_one_overlay_section (FILE *script,
   4075  1.1  christos 			   unsigned int base,
   4076  1.1  christos 			   unsigned int count,
   4077  1.1  christos 			   unsigned int ovlynum,
   4078  1.1  christos 			   unsigned int *ovly_map,
   4079  1.1  christos 			   asection **ovly_sections,
   4080  1.1  christos 			   struct bfd_link_info *info)
   4081  1.1  christos {
   4082  1.1  christos   unsigned int j;
   4083  1.1  christos 
   4084  1.1  christos   for (j = base; j < count && ovly_map[j] == ovlynum; j++)
   4085  1.1  christos     {
   4086  1.1  christos       asection *sec = ovly_sections[2 * j];
   4087  1.1  christos 
   4088  1.1  christos       if (fprintf (script, "   %s%c%s (%s)\n",
   4089  1.1  christos 		   (sec->owner->my_archive != NULL
   4090  1.1  christos 		    ? sec->owner->my_archive->filename : ""),
   4091  1.1  christos 		   info->path_separator,
   4092  1.1  christos 		   sec->owner->filename,
   4093  1.1  christos 		   sec->name) <= 0)
   4094  1.1  christos 	return -1;
   4095  1.1  christos       if (sec->segment_mark)
   4096  1.1  christos 	{
   4097  1.1  christos 	  struct call_info *call = find_pasted_call (sec);
   4098  1.1  christos 	  while (call != NULL)
   4099  1.1  christos 	    {
   4100  1.1  christos 	      struct function_info *call_fun = call->fun;
   4101  1.1  christos 	      sec = call_fun->sec;
   4102  1.1  christos 	      if (fprintf (script, "   %s%c%s (%s)\n",
   4103  1.1  christos 			   (sec->owner->my_archive != NULL
   4104  1.1  christos 			    ? sec->owner->my_archive->filename : ""),
   4105  1.1  christos 			   info->path_separator,
   4106  1.1  christos 			   sec->owner->filename,
   4107  1.1  christos 			   sec->name) <= 0)
   4108  1.1  christos 		return -1;
   4109  1.1  christos 	      for (call = call_fun->call_list; call; call = call->next)
   4110  1.1  christos 		if (call->is_pasted)
   4111  1.1  christos 		  break;
   4112  1.1  christos 	    }
   4113  1.1  christos 	}
   4114  1.1  christos     }
   4115  1.1  christos 
   4116  1.1  christos   for (j = base; j < count && ovly_map[j] == ovlynum; j++)
   4117  1.1  christos     {
   4118  1.1  christos       asection *sec = ovly_sections[2 * j + 1];
   4119  1.1  christos       if (sec != NULL
   4120  1.1  christos 	  && fprintf (script, "   %s%c%s (%s)\n",
   4121  1.1  christos 		      (sec->owner->my_archive != NULL
   4122  1.1  christos 		       ? sec->owner->my_archive->filename : ""),
   4123  1.1  christos 		      info->path_separator,
   4124  1.1  christos 		      sec->owner->filename,
   4125  1.1  christos 		      sec->name) <= 0)
   4126  1.1  christos 	return -1;
   4127  1.1  christos 
   4128  1.1  christos       sec = ovly_sections[2 * j];
   4129  1.1  christos       if (sec->segment_mark)
   4130  1.1  christos 	{
   4131  1.1  christos 	  struct call_info *call = find_pasted_call (sec);
   4132  1.1  christos 	  while (call != NULL)
   4133  1.1  christos 	    {
   4134  1.1  christos 	      struct function_info *call_fun = call->fun;
   4135  1.1  christos 	      sec = call_fun->rodata;
   4136  1.1  christos 	      if (sec != NULL
   4137  1.1  christos 		  && fprintf (script, "   %s%c%s (%s)\n",
   4138  1.1  christos 			      (sec->owner->my_archive != NULL
   4139  1.1  christos 			       ? sec->owner->my_archive->filename : ""),
   4140  1.1  christos 			      info->path_separator,
   4141  1.1  christos 			      sec->owner->filename,
   4142  1.1  christos 			      sec->name) <= 0)
   4143  1.1  christos 		return -1;
   4144  1.1  christos 	      for (call = call_fun->call_list; call; call = call->next)
   4145  1.1  christos 		if (call->is_pasted)
   4146  1.1  christos 		  break;
   4147  1.1  christos 	    }
   4148  1.1  christos 	}
   4149  1.1  christos     }
   4150  1.1  christos 
   4151  1.1  christos   return j;
   4152  1.1  christos }
   4153  1.1  christos 
   4154  1.1  christos /* Handle --auto-overlay.  */
   4155  1.1  christos 
   4156  1.1  christos static void
   4157  1.1  christos spu_elf_auto_overlay (struct bfd_link_info *info)
   4158  1.1  christos {
   4159  1.1  christos   bfd *ibfd;
   4160  1.1  christos   bfd **bfd_arr;
   4161  1.1  christos   struct elf_segment_map *m;
   4162  1.1  christos   unsigned int fixed_size, lo, hi;
   4163  1.1  christos   unsigned int reserved;
   4164  1.1  christos   struct spu_link_hash_table *htab;
   4165  1.1  christos   unsigned int base, i, count, bfd_count;
   4166  1.1  christos   unsigned int region, ovlynum;
   4167  1.1  christos   asection **ovly_sections, **ovly_p;
   4168  1.1  christos   unsigned int *ovly_map;
   4169  1.1  christos   FILE *script;
   4170  1.1  christos   unsigned int total_overlay_size, overlay_size;
   4171  1.1  christos   const char *ovly_mgr_entry;
   4172  1.1  christos   struct elf_link_hash_entry *h;
   4173  1.1  christos   struct _mos_param mos_param;
   4174  1.1  christos   struct _uos_param uos_param;
   4175  1.1  christos   struct function_info dummy_caller;
   4176  1.1  christos 
   4177  1.1  christos   /* Find the extents of our loadable image.  */
   4178  1.1  christos   lo = (unsigned int) -1;
   4179  1.1  christos   hi = 0;
   4180  1.1  christos   for (m = elf_tdata (info->output_bfd)->segment_map; m != NULL; m = m->next)
   4181  1.1  christos     if (m->p_type == PT_LOAD)
   4182  1.1  christos       for (i = 0; i < m->count; i++)
   4183  1.1  christos 	if (m->sections[i]->size != 0)
   4184  1.1  christos 	  {
   4185  1.1  christos 	    if (m->sections[i]->vma < lo)
   4186  1.1  christos 	      lo = m->sections[i]->vma;
   4187  1.1  christos 	    if (m->sections[i]->vma + m->sections[i]->size - 1 > hi)
   4188  1.1  christos 	      hi = m->sections[i]->vma + m->sections[i]->size - 1;
   4189  1.1  christos 	  }
   4190  1.1  christos   fixed_size = hi + 1 - lo;
   4191  1.1  christos 
   4192  1.1  christos   if (!discover_functions (info))
   4193  1.1  christos     goto err_exit;
   4194  1.1  christos 
   4195  1.1  christos   if (!build_call_tree (info))
   4196  1.1  christos     goto err_exit;
   4197  1.1  christos 
   4198  1.1  christos   htab = spu_hash_table (info);
   4199  1.1  christos   reserved = htab->params->auto_overlay_reserved;
   4200  1.1  christos   if (reserved == 0)
   4201  1.1  christos     {
   4202  1.1  christos       struct _sum_stack_param sum_stack_param;
   4203  1.1  christos 
   4204  1.1  christos       sum_stack_param.emit_stack_syms = 0;
   4205  1.1  christos       sum_stack_param.overall_stack = 0;
   4206  1.1  christos       if (!for_each_node (sum_stack, info, &sum_stack_param, TRUE))
   4207  1.1  christos 	goto err_exit;
   4208  1.1  christos       reserved = (sum_stack_param.overall_stack
   4209  1.1  christos 		  + htab->params->extra_stack_space);
   4210  1.1  christos     }
   4211  1.1  christos 
   4212  1.1  christos   /* No need for overlays if everything already fits.  */
   4213  1.1  christos   if (fixed_size + reserved <= htab->local_store
   4214  1.1  christos       && htab->params->ovly_flavour != ovly_soft_icache)
   4215  1.1  christos     {
   4216  1.1  christos       htab->params->auto_overlay = 0;
   4217  1.1  christos       return;
   4218  1.1  christos     }
   4219  1.1  christos 
   4220  1.1  christos   uos_param.exclude_input_section = 0;
   4221  1.1  christos   uos_param.exclude_output_section
   4222  1.1  christos     = bfd_get_section_by_name (info->output_bfd, ".interrupt");
   4223  1.1  christos 
   4224  1.1  christos   ovly_mgr_entry = "__ovly_load";
   4225  1.1  christos   if (htab->params->ovly_flavour == ovly_soft_icache)
   4226  1.1  christos     ovly_mgr_entry = "__icache_br_handler";
   4227  1.1  christos   h = elf_link_hash_lookup (&htab->elf, ovly_mgr_entry,
   4228  1.1  christos 			    FALSE, FALSE, FALSE);
   4229  1.1  christos   if (h != NULL
   4230  1.1  christos       && (h->root.type == bfd_link_hash_defined
   4231  1.1  christos 	  || h->root.type == bfd_link_hash_defweak)
   4232  1.1  christos       && h->def_regular)
   4233  1.1  christos     {
   4234  1.1  christos       /* We have a user supplied overlay manager.  */
   4235  1.1  christos       uos_param.exclude_input_section = h->root.u.def.section;
   4236  1.1  christos     }
   4237  1.1  christos   else
   4238  1.1  christos     {
   4239  1.1  christos       /* If no user overlay manager, spu_elf_load_ovl_mgr will add our
   4240  1.1  christos 	 builtin version to .text, and will adjust .text size.  */
   4241  1.1  christos       fixed_size += (*htab->params->spu_elf_load_ovl_mgr) ();
   4242  1.1  christos     }
   4243  1.1  christos 
   4244  1.1  christos   /* Mark overlay sections, and find max overlay section size.  */
   4245  1.1  christos   mos_param.max_overlay_size = 0;
   4246  1.1  christos   if (!for_each_node (mark_overlay_section, info, &mos_param, TRUE))
   4247  1.1  christos     goto err_exit;
   4248  1.1  christos 
   4249  1.1  christos   /* We can't put the overlay manager or interrupt routines in
   4250  1.1  christos      overlays.  */
   4251  1.1  christos   uos_param.clearing = 0;
   4252  1.1  christos   if ((uos_param.exclude_input_section
   4253  1.1  christos        || uos_param.exclude_output_section)
   4254  1.1  christos       && !for_each_node (unmark_overlay_section, info, &uos_param, TRUE))
   4255  1.1  christos     goto err_exit;
   4256  1.1  christos 
   4257  1.1  christos   bfd_count = 0;
   4258  1.1  christos   for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link_next)
   4259  1.1  christos     ++bfd_count;
   4260  1.1  christos   bfd_arr = bfd_malloc (bfd_count * sizeof (*bfd_arr));
   4261  1.1  christos   if (bfd_arr == NULL)
   4262  1.1  christos     goto err_exit;
   4263  1.1  christos 
   4264  1.1  christos   /* Count overlay sections, and subtract their sizes from "fixed_size".  */
   4265  1.1  christos   count = 0;
   4266  1.1  christos   bfd_count = 0;
   4267  1.1  christos   total_overlay_size = 0;
   4268  1.1  christos   for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link_next)
   4269  1.1  christos     {
   4270  1.1  christos       extern const bfd_target bfd_elf32_spu_vec;
   4271  1.1  christos       asection *sec;
   4272  1.1  christos       unsigned int old_count;
   4273  1.1  christos 
   4274  1.1  christos       if (ibfd->xvec != &bfd_elf32_spu_vec)
   4275  1.1  christos 	continue;
   4276  1.1  christos 
   4277  1.1  christos       old_count = count;
   4278  1.1  christos       for (sec = ibfd->sections; sec != NULL; sec = sec->next)
   4279  1.1  christos 	if (sec->linker_mark)
   4280  1.1  christos 	  {
   4281  1.1  christos 	    if ((sec->flags & SEC_CODE) != 0)
   4282  1.1  christos 	      count += 1;
   4283  1.1  christos 	    fixed_size -= sec->size;
   4284  1.1  christos 	    total_overlay_size += sec->size;
   4285  1.1  christos 	  }
   4286  1.1  christos 	else if ((sec->flags & (SEC_ALLOC | SEC_LOAD)) == (SEC_ALLOC | SEC_LOAD)
   4287  1.1  christos 		 && sec->output_section->owner == info->output_bfd
   4288  1.1  christos 		 && strncmp (sec->output_section->name, ".ovl.init", 9) == 0)
   4289  1.1  christos 	  fixed_size -= sec->size;
   4290  1.1  christos       if (count != old_count)
   4291  1.1  christos 	bfd_arr[bfd_count++] = ibfd;
   4292  1.1  christos     }
   4293  1.1  christos 
   4294  1.1  christos   /* Since the overlay link script selects sections by file name and
   4295  1.1  christos      section name, ensure that file names are unique.  */
   4296  1.1  christos   if (bfd_count > 1)
   4297  1.1  christos     {
   4298  1.1  christos       bfd_boolean ok = TRUE;
   4299  1.1  christos 
   4300  1.1  christos       qsort (bfd_arr, bfd_count, sizeof (*bfd_arr), sort_bfds);
   4301  1.1  christos       for (i = 1; i < bfd_count; ++i)
   4302  1.1  christos 	if (filename_cmp (bfd_arr[i - 1]->filename, bfd_arr[i]->filename) == 0)
   4303  1.1  christos 	  {
   4304  1.1  christos 	    if (bfd_arr[i - 1]->my_archive == bfd_arr[i]->my_archive)
   4305  1.1  christos 	      {
   4306  1.1  christos 		if (bfd_arr[i - 1]->my_archive && bfd_arr[i]->my_archive)
   4307  1.1  christos 		  info->callbacks->einfo (_("%s duplicated in %s\n"),
   4308  1.1  christos 					  bfd_arr[i]->filename,
   4309  1.1  christos 					  bfd_arr[i]->my_archive->filename);
   4310  1.1  christos 		else
   4311  1.1  christos 		  info->callbacks->einfo (_("%s duplicated\n"),
   4312  1.1  christos 					  bfd_arr[i]->filename);
   4313  1.1  christos 		ok = FALSE;
   4314  1.1  christos 	      }
   4315  1.1  christos 	  }
   4316  1.1  christos       if (!ok)
   4317  1.1  christos 	{
   4318  1.1  christos 	  info->callbacks->einfo (_("sorry, no support for duplicate "
   4319  1.1  christos 				    "object files in auto-overlay script\n"));
   4320  1.1  christos 	  bfd_set_error (bfd_error_bad_value);
   4321  1.1  christos 	  goto err_exit;
   4322  1.1  christos 	}
   4323  1.1  christos     }
   4324  1.1  christos   free (bfd_arr);
   4325  1.1  christos 
   4326  1.1  christos   fixed_size += reserved;
   4327  1.1  christos   fixed_size += htab->non_ovly_stub * ovl_stub_size (htab->params);
   4328  1.1  christos   if (fixed_size + mos_param.max_overlay_size <= htab->local_store)
   4329  1.1  christos     {
   4330  1.1  christos       if (htab->params->ovly_flavour == ovly_soft_icache)
   4331  1.1  christos 	{
   4332  1.1  christos 	  /* Stubs in the non-icache area are bigger.  */
   4333  1.1  christos 	  fixed_size += htab->non_ovly_stub * 16;
   4334  1.1  christos 	  /* Space for icache manager tables.
   4335  1.1  christos 	     a) Tag array, one quadword per cache line.
   4336  1.1  christos 	     - word 0: ia address of present line, init to zero.  */
   4337  1.1  christos 	  fixed_size += 16 << htab->num_lines_log2;
   4338  1.1  christos 	  /* b) Rewrite "to" list, one quadword per cache line.  */
   4339  1.1  christos 	  fixed_size += 16 << htab->num_lines_log2;
   4340  1.1  christos 	  /* c) Rewrite "from" list, one byte per outgoing branch (rounded up
   4341  1.1  christos 		to a power-of-two number of full quadwords) per cache line.  */
   4342  1.1  christos 	  fixed_size += 16 << (htab->fromelem_size_log2
   4343  1.1  christos 			       + htab->num_lines_log2);
   4344  1.1  christos 	  /* d) Pointer to __ea backing store (toe), 1 quadword.  */
   4345  1.1  christos 	  fixed_size += 16;
   4346  1.1  christos 	}
   4347  1.1  christos       else
   4348  1.1  christos 	{
   4349  1.1  christos 	  /* Guess number of overlays.  Assuming overlay buffer is on
   4350  1.1  christos 	     average only half full should be conservative.  */
   4351  1.1  christos 	  ovlynum = (total_overlay_size * 2 * htab->params->num_lines
   4352  1.1  christos 		     / (htab->local_store - fixed_size));
   4353  1.1  christos 	  /* Space for _ovly_table[], _ovly_buf_table[] and toe.  */
   4354  1.1  christos 	  fixed_size += ovlynum * 16 + 16 + 4 + 16;
   4355  1.1  christos 	}
   4356  1.1  christos     }
   4357  1.1  christos 
   4358  1.1  christos   if (fixed_size + mos_param.max_overlay_size > htab->local_store)
   4359  1.1  christos     info->callbacks->einfo (_("non-overlay size of 0x%v plus maximum overlay "
   4360  1.1  christos 			      "size of 0x%v exceeds local store\n"),
   4361  1.1  christos 			    (bfd_vma) fixed_size,
   4362  1.1  christos 			    (bfd_vma) mos_param.max_overlay_size);
   4363  1.1  christos 
   4364  1.1  christos   /* Now see if we should put some functions in the non-overlay area.  */
   4365  1.1  christos   else if (fixed_size < htab->params->auto_overlay_fixed)
   4366  1.1  christos     {
   4367  1.1  christos       unsigned int max_fixed, lib_size;
   4368  1.1  christos 
   4369  1.1  christos       max_fixed = htab->local_store - mos_param.max_overlay_size;
   4370  1.1  christos       if (max_fixed > htab->params->auto_overlay_fixed)
   4371  1.1  christos 	max_fixed = htab->params->auto_overlay_fixed;
   4372  1.1  christos       lib_size = max_fixed - fixed_size;
   4373  1.1  christos       lib_size = auto_ovl_lib_functions (info, lib_size);
   4374  1.1  christos       if (lib_size == (unsigned int) -1)
   4375  1.1  christos 	goto err_exit;
   4376  1.1  christos       fixed_size = max_fixed - lib_size;
   4377  1.1  christos     }
   4378  1.1  christos 
   4379  1.1  christos   /* Build an array of sections, suitably sorted to place into
   4380  1.1  christos      overlays.  */
   4381  1.1  christos   ovly_sections = bfd_malloc (2 * count * sizeof (*ovly_sections));
   4382  1.1  christos   if (ovly_sections == NULL)
   4383  1.1  christos     goto err_exit;
   4384  1.1  christos   ovly_p = ovly_sections;
   4385  1.1  christos   if (!for_each_node (collect_overlays, info, &ovly_p, TRUE))
   4386  1.1  christos     goto err_exit;
   4387  1.1  christos   count = (size_t) (ovly_p - ovly_sections) / 2;
   4388  1.1  christos   ovly_map = bfd_malloc (count * sizeof (*ovly_map));
   4389  1.1  christos   if (ovly_map == NULL)
   4390  1.1  christos     goto err_exit;
   4391  1.1  christos 
   4392  1.1  christos   memset (&dummy_caller, 0, sizeof (dummy_caller));
   4393  1.1  christos   overlay_size = (htab->local_store - fixed_size) / htab->params->num_lines;
   4394  1.1  christos   if (htab->params->line_size != 0)
   4395  1.1  christos     overlay_size = htab->params->line_size;
   4396  1.1  christos   base = 0;
   4397  1.1  christos   ovlynum = 0;
   4398  1.1  christos   while (base < count)
   4399  1.1  christos     {
   4400  1.1  christos       unsigned int size = 0, rosize = 0, roalign = 0;
   4401  1.1  christos 
   4402  1.1  christos       for (i = base; i < count; i++)
   4403  1.1  christos 	{
   4404  1.1  christos 	  asection *sec, *rosec;
   4405  1.1  christos 	  unsigned int tmp, rotmp;
   4406  1.1  christos 	  unsigned int num_stubs;
   4407  1.1  christos 	  struct call_info *call, *pasty;
   4408  1.1  christos 	  struct _spu_elf_section_data *sec_data;
   4409  1.1  christos 	  struct spu_elf_stack_info *sinfo;
   4410  1.1  christos 	  unsigned int k;
   4411  1.1  christos 
   4412  1.1  christos 	  /* See whether we can add this section to the current
   4413  1.1  christos 	     overlay without overflowing our overlay buffer.  */
   4414  1.1  christos 	  sec = ovly_sections[2 * i];
   4415  1.1  christos 	  tmp = align_power (size, sec->alignment_power) + sec->size;
   4416  1.1  christos 	  rotmp = rosize;
   4417  1.1  christos 	  rosec = ovly_sections[2 * i + 1];
   4418  1.1  christos 	  if (rosec != NULL)
   4419  1.1  christos 	    {
   4420  1.1  christos 	      rotmp = align_power (rotmp, rosec->alignment_power) + rosec->size;
   4421  1.1  christos 	      if (roalign < rosec->alignment_power)
   4422  1.1  christos 		roalign = rosec->alignment_power;
   4423  1.1  christos 	    }
   4424  1.1  christos 	  if (align_power (tmp, roalign) + rotmp > overlay_size)
   4425  1.1  christos 	    break;
   4426  1.1  christos 	  if (sec->segment_mark)
   4427  1.1  christos 	    {
   4428  1.1  christos 	      /* Pasted sections must stay together, so add their
   4429  1.1  christos 		 sizes too.  */
   4430  1.1  christos 	      pasty = find_pasted_call (sec);
   4431  1.1  christos 	      while (pasty != NULL)
   4432  1.1  christos 		{
   4433  1.1  christos 		  struct function_info *call_fun = pasty->fun;
   4434  1.1  christos 		  tmp = (align_power (tmp, call_fun->sec->alignment_power)
   4435  1.1  christos 			 + call_fun->sec->size);
   4436  1.1  christos 		  if (call_fun->rodata)
   4437  1.1  christos 		    {
   4438  1.1  christos 		      rotmp = (align_power (rotmp,
   4439  1.1  christos 					    call_fun->rodata->alignment_power)
   4440  1.1  christos 			       + call_fun->rodata->size);
   4441  1.1  christos 		      if (roalign < rosec->alignment_power)
   4442  1.1  christos 			roalign = rosec->alignment_power;
   4443  1.1  christos 		    }
   4444  1.1  christos 		  for (pasty = call_fun->call_list; pasty; pasty = pasty->next)
   4445  1.1  christos 		    if (pasty->is_pasted)
   4446  1.1  christos 		      break;
   4447  1.1  christos 		}
   4448  1.1  christos 	    }
   4449  1.1  christos 	  if (align_power (tmp, roalign) + rotmp > overlay_size)
   4450  1.1  christos 	    break;
   4451  1.1  christos 
   4452  1.1  christos 	  /* If we add this section, we might need new overlay call
   4453  1.1  christos 	     stubs.  Add any overlay section calls to dummy_call.  */
   4454  1.1  christos 	  pasty = NULL;
   4455  1.1  christos 	  sec_data = spu_elf_section_data (sec);
   4456  1.1  christos 	  sinfo = sec_data->u.i.stack_info;
   4457  1.1  christos 	  for (k = 0; k < (unsigned) sinfo->num_fun; ++k)
   4458  1.1  christos 	    for (call = sinfo->fun[k].call_list; call; call = call->next)
   4459  1.1  christos 	      if (call->is_pasted)
   4460  1.1  christos 		{
   4461  1.1  christos 		  BFD_ASSERT (pasty == NULL);
   4462  1.1  christos 		  pasty = call;
   4463  1.1  christos 		}
   4464  1.1  christos 	      else if (call->fun->sec->linker_mark)
   4465  1.1  christos 		{
   4466  1.1  christos 		  if (!copy_callee (&dummy_caller, call))
   4467  1.1  christos 		    goto err_exit;
   4468  1.1  christos 		}
   4469  1.1  christos 	  while (pasty != NULL)
   4470  1.1  christos 	    {
   4471  1.1  christos 	      struct function_info *call_fun = pasty->fun;
   4472  1.1  christos 	      pasty = NULL;
   4473  1.1  christos 	      for (call = call_fun->call_list; call; call = call->next)
   4474  1.1  christos 		if (call->is_pasted)
   4475  1.1  christos 		  {
   4476  1.1  christos 		    BFD_ASSERT (pasty == NULL);
   4477  1.1  christos 		    pasty = call;
   4478  1.1  christos 		  }
   4479  1.1  christos 		else if (!copy_callee (&dummy_caller, call))
   4480  1.1  christos 		  goto err_exit;
   4481  1.1  christos 	    }
   4482  1.1  christos 
   4483  1.1  christos 	  /* Calculate call stub size.  */
   4484  1.1  christos 	  num_stubs = 0;
   4485  1.1  christos 	  for (call = dummy_caller.call_list; call; call = call->next)
   4486  1.1  christos 	    {
   4487  1.1  christos 	      unsigned int stub_delta = 1;
   4488  1.1  christos 
   4489  1.1  christos 	      if (htab->params->ovly_flavour == ovly_soft_icache)
   4490  1.1  christos 		stub_delta = call->count;
   4491  1.1  christos 	      num_stubs += stub_delta;
   4492  1.1  christos 
   4493  1.1  christos 	      /* If the call is within this overlay, we won't need a
   4494  1.1  christos 		 stub.  */
   4495  1.1  christos 	      for (k = base; k < i + 1; k++)
   4496  1.1  christos 		if (call->fun->sec == ovly_sections[2 * k])
   4497  1.1  christos 		  {
   4498  1.1  christos 		    num_stubs -= stub_delta;
   4499  1.1  christos 		    break;
   4500  1.1  christos 		  }
   4501  1.1  christos 	    }
   4502  1.1  christos 	  if (htab->params->ovly_flavour == ovly_soft_icache
   4503  1.1  christos 	      && num_stubs > htab->params->max_branch)
   4504  1.1  christos 	    break;
   4505  1.1  christos 	  if (align_power (tmp, roalign) + rotmp
   4506  1.1  christos 	      + num_stubs * ovl_stub_size (htab->params) > overlay_size)
   4507  1.1  christos 	    break;
   4508  1.1  christos 	  size = tmp;
   4509  1.1  christos 	  rosize = rotmp;
   4510  1.1  christos 	}
   4511  1.1  christos 
   4512  1.1  christos       if (i == base)
   4513  1.1  christos 	{
   4514  1.1  christos 	  info->callbacks->einfo (_("%B:%A%s exceeds overlay size\n"),
   4515  1.1  christos 				  ovly_sections[2 * i]->owner,
   4516  1.1  christos 				  ovly_sections[2 * i],
   4517  1.1  christos 				  ovly_sections[2 * i + 1] ? " + rodata" : "");
   4518  1.1  christos 	  bfd_set_error (bfd_error_bad_value);
   4519  1.1  christos 	  goto err_exit;
   4520  1.1  christos 	}
   4521  1.1  christos 
   4522  1.1  christos       while (dummy_caller.call_list != NULL)
   4523  1.1  christos 	{
   4524  1.1  christos 	  struct call_info *call = dummy_caller.call_list;
   4525  1.1  christos 	  dummy_caller.call_list = call->next;
   4526  1.1  christos 	  free (call);
   4527  1.1  christos 	}
   4528  1.1  christos 
   4529  1.1  christos       ++ovlynum;
   4530  1.1  christos       while (base < i)
   4531  1.1  christos 	ovly_map[base++] = ovlynum;
   4532  1.1  christos     }
   4533  1.1  christos 
   4534  1.1  christos   script = htab->params->spu_elf_open_overlay_script ();
   4535  1.1  christos 
   4536  1.1  christos   if (htab->params->ovly_flavour == ovly_soft_icache)
   4537  1.1  christos     {
   4538  1.1  christos       if (fprintf (script, "SECTIONS\n{\n") <= 0)
   4539  1.1  christos 	goto file_err;
   4540  1.1  christos 
   4541  1.1  christos       if (fprintf (script,
   4542  1.1  christos 		   " . = ALIGN (%u);\n"
   4543  1.1  christos 		   " .ovl.init : { *(.ovl.init) }\n"
   4544  1.1  christos 		   " . = ABSOLUTE (ADDR (.ovl.init));\n",
   4545  1.1  christos 		   htab->params->line_size) <= 0)
   4546  1.1  christos 	goto file_err;
   4547  1.1  christos 
   4548  1.1  christos       base = 0;
   4549  1.1  christos       ovlynum = 1;
   4550  1.1  christos       while (base < count)
   4551  1.1  christos 	{
   4552  1.1  christos 	  unsigned int indx = ovlynum - 1;
   4553  1.1  christos 	  unsigned int vma, lma;
   4554  1.1  christos 
   4555  1.1  christos 	  vma = (indx & (htab->params->num_lines - 1)) << htab->line_size_log2;
   4556  1.1  christos 	  lma = vma + (((indx >> htab->num_lines_log2) + 1) << 18);
   4557  1.1  christos 
   4558  1.1  christos 	  if (fprintf (script, " .ovly%u ABSOLUTE (ADDR (.ovl.init)) + %u "
   4559  1.1  christos 			       ": AT (LOADADDR (.ovl.init) + %u) {\n",
   4560  1.1  christos 		       ovlynum, vma, lma) <= 0)
   4561  1.1  christos 	    goto file_err;
   4562  1.1  christos 
   4563  1.1  christos 	  base = print_one_overlay_section (script, base, count, ovlynum,
   4564  1.1  christos 					    ovly_map, ovly_sections, info);
   4565  1.1  christos 	  if (base == (unsigned) -1)
   4566  1.1  christos 	    goto file_err;
   4567  1.1  christos 
   4568  1.1  christos 	  if (fprintf (script, "  }\n") <= 0)
   4569  1.1  christos 	    goto file_err;
   4570  1.1  christos 
   4571  1.1  christos 	  ovlynum++;
   4572  1.1  christos 	}
   4573  1.1  christos 
   4574  1.1  christos       if (fprintf (script, " . = ABSOLUTE (ADDR (.ovl.init)) + %u;\n",
   4575  1.1  christos 		   1 << (htab->num_lines_log2 + htab->line_size_log2)) <= 0)
   4576  1.1  christos 	goto file_err;
   4577  1.1  christos 
   4578  1.1  christos       if (fprintf (script, "}\nINSERT AFTER .toe;\n") <= 0)
   4579  1.1  christos 	goto file_err;
   4580  1.1  christos     }
   4581  1.1  christos   else
   4582  1.1  christos     {
   4583  1.1  christos       if (fprintf (script, "SECTIONS\n{\n") <= 0)
   4584  1.1  christos 	goto file_err;
   4585  1.1  christos 
   4586  1.1  christos       if (fprintf (script,
   4587  1.1  christos 		   " . = ALIGN (16);\n"
   4588  1.1  christos 		   " .ovl.init : { *(.ovl.init) }\n"
   4589  1.1  christos 		   " . = ABSOLUTE (ADDR (.ovl.init));\n") <= 0)
   4590  1.1  christos 	goto file_err;
   4591  1.1  christos 
   4592  1.1  christos       for (region = 1; region <= htab->params->num_lines; region++)
   4593  1.1  christos 	{
   4594  1.1  christos 	  ovlynum = region;
   4595  1.1  christos 	  base = 0;
   4596  1.1  christos 	  while (base < count && ovly_map[base] < ovlynum)
   4597  1.1  christos 	    base++;
   4598  1.1  christos 
   4599  1.1  christos 	  if (base == count)
   4600  1.1  christos 	    break;
   4601  1.1  christos 
   4602  1.1  christos 	  if (region == 1)
   4603  1.1  christos 	    {
   4604  1.1  christos 	      /* We need to set lma since we are overlaying .ovl.init.  */
   4605  1.1  christos 	      if (fprintf (script,
   4606  1.1  christos 			   " OVERLAY : AT (ALIGN (LOADADDR (.ovl.init) + SIZEOF (.ovl.init), 16))\n {\n") <= 0)
   4607  1.1  christos 		goto file_err;
   4608  1.1  christos 	    }
   4609  1.1  christos 	  else
   4610  1.1  christos 	    {
   4611  1.1  christos 	      if (fprintf (script, " OVERLAY :\n {\n") <= 0)
   4612  1.1  christos 		goto file_err;
   4613  1.1  christos 	    }
   4614  1.1  christos 
   4615  1.1  christos 	  while (base < count)
   4616  1.1  christos 	    {
   4617  1.1  christos 	      if (fprintf (script, "  .ovly%u {\n", ovlynum) <= 0)
   4618  1.1  christos 		goto file_err;
   4619  1.1  christos 
   4620  1.1  christos 	      base = print_one_overlay_section (script, base, count, ovlynum,
   4621  1.1  christos 						ovly_map, ovly_sections, info);
   4622  1.1  christos 	      if (base == (unsigned) -1)
   4623  1.1  christos 		goto file_err;
   4624  1.1  christos 
   4625  1.1  christos 	      if (fprintf (script, "  }\n") <= 0)
   4626  1.1  christos 		goto file_err;
   4627  1.1  christos 
   4628  1.1  christos 	      ovlynum += htab->params->num_lines;
   4629  1.1  christos 	      while (base < count && ovly_map[base] < ovlynum)
   4630  1.1  christos 		base++;
   4631  1.1  christos 	    }
   4632  1.1  christos 
   4633  1.1  christos 	  if (fprintf (script, " }\n") <= 0)
   4634  1.1  christos 	    goto file_err;
   4635  1.1  christos 	}
   4636  1.1  christos 
   4637  1.1  christos       if (fprintf (script, "}\nINSERT BEFORE .text;\n") <= 0)
   4638  1.1  christos 	goto file_err;
   4639  1.1  christos     }
   4640  1.1  christos 
   4641  1.1  christos   free (ovly_map);
   4642  1.1  christos   free (ovly_sections);
   4643  1.1  christos 
   4644  1.1  christos   if (fclose (script) != 0)
   4645  1.1  christos     goto file_err;
   4646  1.1  christos 
   4647  1.1  christos   if (htab->params->auto_overlay & AUTO_RELINK)
   4648  1.1  christos     (*htab->params->spu_elf_relink) ();
   4649  1.1  christos 
   4650  1.1  christos   xexit (0);
   4651  1.1  christos 
   4652  1.1  christos  file_err:
   4653  1.1  christos   bfd_set_error (bfd_error_system_call);
   4654  1.1  christos  err_exit:
   4655  1.1  christos   info->callbacks->einfo ("%F%P: auto overlay error: %E\n");
   4656  1.1  christos   xexit (1);
   4657  1.1  christos }
   4658  1.1  christos 
   4659  1.1  christos /* Provide an estimate of total stack required.  */
   4660  1.1  christos 
   4661  1.1  christos static bfd_boolean
   4662  1.1  christos spu_elf_stack_analysis (struct bfd_link_info *info)
   4663  1.1  christos {
   4664  1.1  christos   struct spu_link_hash_table *htab;
   4665  1.1  christos   struct _sum_stack_param sum_stack_param;
   4666  1.1  christos 
   4667  1.1  christos   if (!discover_functions (info))
   4668  1.1  christos     return FALSE;
   4669  1.1  christos 
   4670  1.1  christos   if (!build_call_tree (info))
   4671  1.1  christos     return FALSE;
   4672  1.1  christos 
   4673  1.1  christos   htab = spu_hash_table (info);
   4674  1.1  christos   if (htab->params->stack_analysis)
   4675  1.1  christos     {
   4676  1.1  christos       info->callbacks->info (_("Stack size for call graph root nodes.\n"));
   4677  1.1  christos       info->callbacks->minfo (_("\nStack size for functions.  "
   4678  1.1  christos 				"Annotations: '*' max stack, 't' tail call\n"));
   4679  1.1  christos     }
   4680  1.1  christos 
   4681  1.1  christos   sum_stack_param.emit_stack_syms = htab->params->emit_stack_syms;
   4682  1.1  christos   sum_stack_param.overall_stack = 0;
   4683  1.1  christos   if (!for_each_node (sum_stack, info, &sum_stack_param, TRUE))
   4684  1.1  christos     return FALSE;
   4685  1.1  christos 
   4686  1.1  christos   if (htab->params->stack_analysis)
   4687  1.1  christos     info->callbacks->info (_("Maximum stack required is 0x%v\n"),
   4688  1.1  christos 			   (bfd_vma) sum_stack_param.overall_stack);
   4689  1.1  christos   return TRUE;
   4690  1.1  christos }
   4691  1.1  christos 
   4692  1.1  christos /* Perform a final link.  */
   4693  1.1  christos 
   4694  1.1  christos static bfd_boolean
   4695  1.1  christos spu_elf_final_link (bfd *output_bfd, struct bfd_link_info *info)
   4696  1.1  christos {
   4697  1.1  christos   struct spu_link_hash_table *htab = spu_hash_table (info);
   4698  1.1  christos 
   4699  1.1  christos   if (htab->params->auto_overlay)
   4700  1.1  christos     spu_elf_auto_overlay (info);
   4701  1.1  christos 
   4702  1.1  christos   if ((htab->params->stack_analysis
   4703  1.1  christos        || (htab->params->ovly_flavour == ovly_soft_icache
   4704  1.1  christos 	   && htab->params->lrlive_analysis))
   4705  1.1  christos       && !spu_elf_stack_analysis (info))
   4706  1.1  christos     info->callbacks->einfo ("%X%P: stack/lrlive analysis error: %E\n");
   4707  1.1  christos 
   4708  1.1  christos   if (!spu_elf_build_stubs (info))
   4709  1.1  christos     info->callbacks->einfo ("%F%P: can not build overlay stubs: %E\n");
   4710  1.1  christos 
   4711  1.1  christos   return bfd_elf_final_link (output_bfd, info);
   4712  1.1  christos }
   4713  1.1  christos 
   4714  1.1  christos /* Called when not normally emitting relocs, ie. !info->relocatable
   4715  1.1  christos    and !info->emitrelocations.  Returns a count of special relocs
   4716  1.1  christos    that need to be emitted.  */
   4717  1.1  christos 
   4718  1.1  christos static unsigned int
   4719  1.1  christos spu_elf_count_relocs (struct bfd_link_info *info, asection *sec)
   4720  1.1  christos {
   4721  1.1  christos   Elf_Internal_Rela *relocs;
   4722  1.1  christos   unsigned int count = 0;
   4723  1.1  christos 
   4724  1.1  christos   relocs = _bfd_elf_link_read_relocs (sec->owner, sec, NULL, NULL,
   4725  1.1  christos 				      info->keep_memory);
   4726  1.1  christos   if (relocs != NULL)
   4727  1.1  christos     {
   4728  1.1  christos       Elf_Internal_Rela *rel;
   4729  1.1  christos       Elf_Internal_Rela *relend = relocs + sec->reloc_count;
   4730  1.1  christos 
   4731  1.1  christos       for (rel = relocs; rel < relend; rel++)
   4732  1.1  christos 	{
   4733  1.1  christos 	  int r_type = ELF32_R_TYPE (rel->r_info);
   4734  1.1  christos 	  if (r_type == R_SPU_PPU32 || r_type == R_SPU_PPU64)
   4735  1.1  christos 	    ++count;
   4736  1.1  christos 	}
   4737  1.1  christos 
   4738  1.1  christos       if (elf_section_data (sec)->relocs != relocs)
   4739  1.1  christos 	free (relocs);
   4740  1.1  christos     }
   4741  1.1  christos 
   4742  1.1  christos   return count;
   4743  1.1  christos }
   4744  1.1  christos 
   4745  1.1  christos /* Functions for adding fixup records to .fixup */
   4746  1.1  christos 
   4747  1.1  christos #define FIXUP_RECORD_SIZE 4
   4748  1.1  christos 
   4749  1.1  christos #define FIXUP_PUT(output_bfd,htab,index,addr) \
   4750  1.1  christos 	  bfd_put_32 (output_bfd, addr, \
   4751  1.1  christos 		      htab->sfixup->contents + FIXUP_RECORD_SIZE * (index))
   4752  1.1  christos #define FIXUP_GET(output_bfd,htab,index) \
   4753  1.1  christos 	  bfd_get_32 (output_bfd, \
   4754  1.1  christos 		      htab->sfixup->contents + FIXUP_RECORD_SIZE * (index))
   4755  1.1  christos 
   4756  1.1  christos /* Store OFFSET in .fixup.  This assumes it will be called with an
   4757  1.1  christos    increasing OFFSET.  When this OFFSET fits with the last base offset,
   4758  1.1  christos    it just sets a bit, otherwise it adds a new fixup record.  */
   4759  1.1  christos static void
   4760  1.1  christos spu_elf_emit_fixup (bfd * output_bfd, struct bfd_link_info *info,
   4761  1.1  christos 		    bfd_vma offset)
   4762  1.1  christos {
   4763  1.1  christos   struct spu_link_hash_table *htab = spu_hash_table (info);
   4764  1.1  christos   asection *sfixup = htab->sfixup;
   4765  1.1  christos   bfd_vma qaddr = offset & ~(bfd_vma) 15;
   4766  1.1  christos   bfd_vma bit = ((bfd_vma) 8) >> ((offset & 15) >> 2);
   4767  1.1  christos   if (sfixup->reloc_count == 0)
   4768  1.1  christos     {
   4769  1.1  christos       FIXUP_PUT (output_bfd, htab, 0, qaddr | bit);
   4770  1.1  christos       sfixup->reloc_count++;
   4771  1.1  christos     }
   4772  1.1  christos   else
   4773  1.1  christos     {
   4774  1.1  christos       bfd_vma base = FIXUP_GET (output_bfd, htab, sfixup->reloc_count - 1);
   4775  1.1  christos       if (qaddr != (base & ~(bfd_vma) 15))
   4776  1.1  christos 	{
   4777  1.1  christos 	  if ((sfixup->reloc_count + 1) * FIXUP_RECORD_SIZE > sfixup->size)
   4778  1.1  christos 	    (*_bfd_error_handler) (_("fatal error while creating .fixup"));
   4779  1.1  christos 	  FIXUP_PUT (output_bfd, htab, sfixup->reloc_count, qaddr | bit);
   4780  1.1  christos 	  sfixup->reloc_count++;
   4781  1.1  christos 	}
   4782  1.1  christos       else
   4783  1.1  christos 	FIXUP_PUT (output_bfd, htab, sfixup->reloc_count - 1, base | bit);
   4784  1.1  christos     }
   4785  1.1  christos }
   4786  1.1  christos 
   4787  1.1  christos /* Apply RELOCS to CONTENTS of INPUT_SECTION from INPUT_BFD.  */
   4788  1.1  christos 
   4789  1.1  christos static int
   4790  1.1  christos spu_elf_relocate_section (bfd *output_bfd,
   4791  1.1  christos 			  struct bfd_link_info *info,
   4792  1.1  christos 			  bfd *input_bfd,
   4793  1.1  christos 			  asection *input_section,
   4794  1.1  christos 			  bfd_byte *contents,
   4795  1.1  christos 			  Elf_Internal_Rela *relocs,
   4796  1.1  christos 			  Elf_Internal_Sym *local_syms,
   4797  1.1  christos 			  asection **local_sections)
   4798  1.1  christos {
   4799  1.1  christos   Elf_Internal_Shdr *symtab_hdr;
   4800  1.1  christos   struct elf_link_hash_entry **sym_hashes;
   4801  1.1  christos   Elf_Internal_Rela *rel, *relend;
   4802  1.1  christos   struct spu_link_hash_table *htab;
   4803  1.1  christos   asection *ea;
   4804  1.1  christos   int ret = TRUE;
   4805  1.1  christos   bfd_boolean emit_these_relocs = FALSE;
   4806  1.1  christos   bfd_boolean is_ea_sym;
   4807  1.1  christos   bfd_boolean stubs;
   4808  1.1  christos   unsigned int iovl = 0;
   4809  1.1  christos 
   4810  1.1  christos   htab = spu_hash_table (info);
   4811  1.1  christos   stubs = (htab->stub_sec != NULL
   4812  1.1  christos 	   && maybe_needs_stubs (input_section));
   4813  1.1  christos   iovl = overlay_index (input_section);
   4814  1.1  christos   ea = bfd_get_section_by_name (output_bfd, "._ea");
   4815  1.1  christos   symtab_hdr = &elf_tdata (input_bfd)->symtab_hdr;
   4816  1.1  christos   sym_hashes = (struct elf_link_hash_entry **) (elf_sym_hashes (input_bfd));
   4817  1.1  christos 
   4818  1.1  christos   rel = relocs;
   4819  1.1  christos   relend = relocs + input_section->reloc_count;
   4820  1.1  christos   for (; rel < relend; rel++)
   4821  1.1  christos     {
   4822  1.1  christos       int r_type;
   4823  1.1  christos       reloc_howto_type *howto;
   4824  1.1  christos       unsigned int r_symndx;
   4825  1.1  christos       Elf_Internal_Sym *sym;
   4826  1.1  christos       asection *sec;
   4827  1.1  christos       struct elf_link_hash_entry *h;
   4828  1.1  christos       const char *sym_name;
   4829  1.1  christos       bfd_vma relocation;
   4830  1.1  christos       bfd_vma addend;
   4831  1.1  christos       bfd_reloc_status_type r;
   4832  1.1  christos       bfd_boolean unresolved_reloc;
   4833  1.1  christos       enum _stub_type stub_type;
   4834  1.1  christos 
   4835  1.1  christos       r_symndx = ELF32_R_SYM (rel->r_info);
   4836  1.1  christos       r_type = ELF32_R_TYPE (rel->r_info);
   4837  1.1  christos       howto = elf_howto_table + r_type;
   4838  1.1  christos       unresolved_reloc = FALSE;
   4839  1.1  christos       h = NULL;
   4840  1.1  christos       sym = NULL;
   4841  1.1  christos       sec = NULL;
   4842  1.1  christos       if (r_symndx < symtab_hdr->sh_info)
   4843  1.1  christos 	{
   4844  1.1  christos 	  sym = local_syms + r_symndx;
   4845  1.1  christos 	  sec = local_sections[r_symndx];
   4846  1.1  christos 	  sym_name = bfd_elf_sym_name (input_bfd, symtab_hdr, sym, sec);
   4847  1.1  christos 	  relocation = _bfd_elf_rela_local_sym (output_bfd, sym, &sec, rel);
   4848  1.1  christos 	}
   4849  1.1  christos       else
   4850  1.1  christos 	{
   4851  1.1  christos 	  if (sym_hashes == NULL)
   4852  1.1  christos 	    return FALSE;
   4853  1.1  christos 
   4854  1.1  christos 	  h = sym_hashes[r_symndx - symtab_hdr->sh_info];
   4855  1.1  christos 
   4856  1.1  christos 	  while (h->root.type == bfd_link_hash_indirect
   4857  1.1  christos 		 || h->root.type == bfd_link_hash_warning)
   4858  1.1  christos 	    h = (struct elf_link_hash_entry *) h->root.u.i.link;
   4859  1.1  christos 
   4860  1.1  christos 	  relocation = 0;
   4861  1.1  christos 	  if (h->root.type == bfd_link_hash_defined
   4862  1.1  christos 	      || h->root.type == bfd_link_hash_defweak)
   4863  1.1  christos 	    {
   4864  1.1  christos 	      sec = h->root.u.def.section;
   4865  1.1  christos 	      if (sec == NULL
   4866  1.1  christos 		  || sec->output_section == NULL)
   4867  1.1  christos 		/* Set a flag that will be cleared later if we find a
   4868  1.1  christos 		   relocation value for this symbol.  output_section
   4869  1.1  christos 		   is typically NULL for symbols satisfied by a shared
   4870  1.1  christos 		   library.  */
   4871  1.1  christos 		unresolved_reloc = TRUE;
   4872  1.1  christos 	      else
   4873  1.1  christos 		relocation = (h->root.u.def.value
   4874  1.1  christos 			      + sec->output_section->vma
   4875  1.1  christos 			      + sec->output_offset);
   4876  1.1  christos 	    }
   4877  1.1  christos 	  else if (h->root.type == bfd_link_hash_undefweak)
   4878  1.1  christos 	    ;
   4879  1.1  christos 	  else if (info->unresolved_syms_in_objects == RM_IGNORE
   4880  1.1  christos 		   && ELF_ST_VISIBILITY (h->other) == STV_DEFAULT)
   4881  1.1  christos 	    ;
   4882  1.1  christos 	  else if (!info->relocatable
   4883  1.1  christos 		   && !(r_type == R_SPU_PPU32 || r_type == R_SPU_PPU64))
   4884  1.1  christos 	    {
   4885  1.1  christos 	      bfd_boolean err;
   4886  1.1  christos 	      err = (info->unresolved_syms_in_objects == RM_GENERATE_ERROR
   4887  1.1  christos 		     || ELF_ST_VISIBILITY (h->other) != STV_DEFAULT);
   4888  1.1  christos 	      if (!info->callbacks->undefined_symbol (info,
   4889  1.1  christos 						      h->root.root.string,
   4890  1.1  christos 						      input_bfd,
   4891  1.1  christos 						      input_section,
   4892  1.1  christos 						      rel->r_offset, err))
   4893  1.1  christos 		return FALSE;
   4894  1.1  christos 	    }
   4895  1.1  christos 	  sym_name = h->root.root.string;
   4896  1.1  christos 	}
   4897  1.1  christos 
   4898  1.1  christos       if (sec != NULL && elf_discarded_section (sec))
   4899  1.1  christos 	RELOC_AGAINST_DISCARDED_SECTION (info, input_bfd, input_section,
   4900  1.1  christos 					 rel, relend, howto, contents);
   4901  1.1  christos 
   4902  1.1  christos       if (info->relocatable)
   4903  1.1  christos 	continue;
   4904  1.1  christos 
   4905  1.1  christos       /* Change "a rt,ra,rb" to "ai rt,ra,0". */
   4906  1.1  christos       if (r_type == R_SPU_ADD_PIC
   4907  1.1  christos 	  && h != NULL
   4908  1.1  christos 	  && !(h->def_regular || ELF_COMMON_DEF_P (h)))
   4909  1.1  christos 	{
   4910  1.1  christos 	  bfd_byte *loc = contents + rel->r_offset;
   4911  1.1  christos 	  loc[0] = 0x1c;
   4912  1.1  christos 	  loc[1] = 0x00;
   4913  1.1  christos 	  loc[2] &= 0x3f;
   4914  1.1  christos 	}
   4915  1.1  christos 
   4916  1.1  christos       is_ea_sym = (ea != NULL
   4917  1.1  christos 		   && sec != NULL
   4918  1.1  christos 		   && sec->output_section == ea);
   4919  1.1  christos 
   4920  1.1  christos       /* If this symbol is in an overlay area, we may need to relocate
   4921  1.1  christos 	 to the overlay stub.  */
   4922  1.1  christos       addend = rel->r_addend;
   4923  1.1  christos       if (stubs
   4924  1.1  christos 	  && !is_ea_sym
   4925  1.1  christos 	  && (stub_type = needs_ovl_stub (h, sym, sec, input_section, rel,
   4926  1.1  christos 					  contents, info)) != no_stub)
   4927  1.1  christos 	{
   4928  1.1  christos 	  unsigned int ovl = 0;
   4929  1.1  christos 	  struct got_entry *g, **head;
   4930  1.1  christos 
   4931  1.1  christos 	  if (stub_type != nonovl_stub)
   4932  1.1  christos 	    ovl = iovl;
   4933  1.1  christos 
   4934  1.1  christos 	  if (h != NULL)
   4935  1.1  christos 	    head = &h->got.glist;
   4936  1.1  christos 	  else
   4937  1.1  christos 	    head = elf_local_got_ents (input_bfd) + r_symndx;
   4938  1.1  christos 
   4939  1.1  christos 	  for (g = *head; g != NULL; g = g->next)
   4940  1.1  christos 	    if (htab->params->ovly_flavour == ovly_soft_icache
   4941  1.1  christos 		? (g->ovl == ovl
   4942  1.1  christos 		   && g->br_addr == (rel->r_offset
   4943  1.1  christos 				     + input_section->output_offset
   4944  1.1  christos 				     + input_section->output_section->vma))
   4945  1.1  christos 		: g->addend == addend && (g->ovl == ovl || g->ovl == 0))
   4946  1.1  christos 	      break;
   4947  1.1  christos 	  if (g == NULL)
   4948  1.1  christos 	    abort ();
   4949  1.1  christos 
   4950  1.1  christos 	  relocation = g->stub_addr;
   4951  1.1  christos 	  addend = 0;
   4952  1.1  christos 	}
   4953  1.1  christos       else
   4954  1.1  christos 	{
   4955  1.1  christos 	  /* For soft icache, encode the overlay index into addresses.  */
   4956  1.1  christos 	  if (htab->params->ovly_flavour == ovly_soft_icache
   4957  1.1  christos 	      && (r_type == R_SPU_ADDR16_HI
   4958  1.1  christos 		  || r_type == R_SPU_ADDR32 || r_type == R_SPU_REL32)
   4959  1.1  christos 	      && !is_ea_sym)
   4960  1.1  christos 	    {
   4961  1.1  christos 	      unsigned int ovl = overlay_index (sec);
   4962  1.1  christos 	      if (ovl != 0)
   4963  1.1  christos 		{
   4964  1.1  christos 		  unsigned int set_id = ((ovl - 1) >> htab->num_lines_log2) + 1;
   4965  1.1  christos 		  relocation += set_id << 18;
   4966  1.1  christos 		}
   4967  1.1  christos 	    }
   4968  1.1  christos 	}
   4969  1.1  christos 
   4970  1.1  christos       if (htab->params->emit_fixups && !info->relocatable
   4971  1.1  christos 	  && (input_section->flags & SEC_ALLOC) != 0
   4972  1.1  christos 	  && r_type == R_SPU_ADDR32)
   4973  1.1  christos 	{
   4974  1.1  christos 	  bfd_vma offset;
   4975  1.1  christos 	  offset = rel->r_offset + input_section->output_section->vma
   4976  1.1  christos 		   + input_section->output_offset;
   4977  1.1  christos 	  spu_elf_emit_fixup (output_bfd, info, offset);
   4978  1.1  christos 	}
   4979  1.1  christos 
   4980  1.1  christos       if (unresolved_reloc)
   4981  1.1  christos 	;
   4982  1.1  christos       else if (r_type == R_SPU_PPU32 || r_type == R_SPU_PPU64)
   4983  1.1  christos 	{
   4984  1.1  christos 	  if (is_ea_sym)
   4985  1.1  christos 	    {
   4986  1.1  christos 	      /* ._ea is a special section that isn't allocated in SPU
   4987  1.1  christos 		 memory, but rather occupies space in PPU memory as
   4988  1.1  christos 		 part of an embedded ELF image.  If this reloc is
   4989  1.1  christos 		 against a symbol defined in ._ea, then transform the
   4990  1.1  christos 		 reloc into an equivalent one without a symbol
   4991  1.1  christos 		 relative to the start of the ELF image.  */
   4992  1.1  christos 	      rel->r_addend += (relocation
   4993  1.1  christos 				- ea->vma
   4994  1.1  christos 				+ elf_section_data (ea)->this_hdr.sh_offset);
   4995  1.1  christos 	      rel->r_info = ELF32_R_INFO (0, r_type);
   4996  1.1  christos 	    }
   4997  1.1  christos 	  emit_these_relocs = TRUE;
   4998  1.1  christos 	  continue;
   4999  1.1  christos 	}
   5000  1.1  christos       else if (is_ea_sym)
   5001  1.1  christos 	unresolved_reloc = TRUE;
   5002  1.1  christos 
   5003  1.1  christos       if (unresolved_reloc)
   5004  1.1  christos 	{
   5005  1.1  christos 	  (*_bfd_error_handler)
   5006  1.1  christos 	    (_("%B(%s+0x%lx): unresolvable %s relocation against symbol `%s'"),
   5007  1.1  christos 	     input_bfd,
   5008  1.1  christos 	     bfd_get_section_name (input_bfd, input_section),
   5009  1.1  christos 	     (long) rel->r_offset,
   5010  1.1  christos 	     howto->name,
   5011  1.1  christos 	     sym_name);
   5012  1.1  christos 	  ret = FALSE;
   5013  1.1  christos 	}
   5014  1.1  christos 
   5015  1.1  christos       r = _bfd_final_link_relocate (howto,
   5016  1.1  christos 				    input_bfd,
   5017  1.1  christos 				    input_section,
   5018  1.1  christos 				    contents,
   5019  1.1  christos 				    rel->r_offset, relocation, addend);
   5020  1.1  christos 
   5021  1.1  christos       if (r != bfd_reloc_ok)
   5022  1.1  christos 	{
   5023  1.1  christos 	  const char *msg = (const char *) 0;
   5024  1.1  christos 
   5025  1.1  christos 	  switch (r)
   5026  1.1  christos 	    {
   5027  1.1  christos 	    case bfd_reloc_overflow:
   5028  1.1  christos 	      if (!((*info->callbacks->reloc_overflow)
   5029  1.1  christos 		    (info, (h ? &h->root : NULL), sym_name, howto->name,
   5030  1.1  christos 		     (bfd_vma) 0, input_bfd, input_section, rel->r_offset)))
   5031  1.1  christos 		return FALSE;
   5032  1.1  christos 	      break;
   5033  1.1  christos 
   5034  1.1  christos 	    case bfd_reloc_undefined:
   5035  1.1  christos 	      if (!((*info->callbacks->undefined_symbol)
   5036  1.1  christos 		    (info, sym_name, input_bfd, input_section,
   5037  1.1  christos 		     rel->r_offset, TRUE)))
   5038  1.1  christos 		return FALSE;
   5039  1.1  christos 	      break;
   5040  1.1  christos 
   5041  1.1  christos 	    case bfd_reloc_outofrange:
   5042  1.1  christos 	      msg = _("internal error: out of range error");
   5043  1.1  christos 	      goto common_error;
   5044  1.1  christos 
   5045  1.1  christos 	    case bfd_reloc_notsupported:
   5046  1.1  christos 	      msg = _("internal error: unsupported relocation error");
   5047  1.1  christos 	      goto common_error;
   5048  1.1  christos 
   5049  1.1  christos 	    case bfd_reloc_dangerous:
   5050  1.1  christos 	      msg = _("internal error: dangerous error");
   5051  1.1  christos 	      goto common_error;
   5052  1.1  christos 
   5053  1.1  christos 	    default:
   5054  1.1  christos 	      msg = _("internal error: unknown error");
   5055  1.1  christos 	      /* fall through */
   5056  1.1  christos 
   5057  1.1  christos 	    common_error:
   5058  1.1  christos 	      ret = FALSE;
   5059  1.1  christos 	      if (!((*info->callbacks->warning)
   5060  1.1  christos 		    (info, msg, sym_name, input_bfd, input_section,
   5061  1.1  christos 		     rel->r_offset)))
   5062  1.1  christos 		return FALSE;
   5063  1.1  christos 	      break;
   5064  1.1  christos 	    }
   5065  1.1  christos 	}
   5066  1.1  christos     }
   5067  1.1  christos 
   5068  1.1  christos   if (ret
   5069  1.1  christos       && emit_these_relocs
   5070  1.1  christos       && !info->emitrelocations)
   5071  1.1  christos     {
   5072  1.1  christos       Elf_Internal_Rela *wrel;
   5073  1.1  christos       Elf_Internal_Shdr *rel_hdr;
   5074  1.1  christos 
   5075  1.1  christos       wrel = rel = relocs;
   5076  1.1  christos       relend = relocs + input_section->reloc_count;
   5077  1.1  christos       for (; rel < relend; rel++)
   5078  1.1  christos 	{
   5079  1.1  christos 	  int r_type;
   5080  1.1  christos 
   5081  1.1  christos 	  r_type = ELF32_R_TYPE (rel->r_info);
   5082  1.1  christos 	  if (r_type == R_SPU_PPU32 || r_type == R_SPU_PPU64)
   5083  1.1  christos 	    *wrel++ = *rel;
   5084  1.1  christos 	}
   5085  1.1  christos       input_section->reloc_count = wrel - relocs;
   5086  1.1  christos       /* Backflips for _bfd_elf_link_output_relocs.  */
   5087  1.1  christos       rel_hdr = _bfd_elf_single_rel_hdr (input_section);
   5088  1.1  christos       rel_hdr->sh_size = input_section->reloc_count * rel_hdr->sh_entsize;
   5089  1.1  christos       ret = 2;
   5090  1.1  christos     }
   5091  1.1  christos 
   5092  1.1  christos   return ret;
   5093  1.1  christos }
   5094  1.1  christos 
   5095  1.1  christos static bfd_boolean
   5096  1.1  christos spu_elf_finish_dynamic_sections (bfd *output_bfd ATTRIBUTE_UNUSED,
   5097  1.1  christos 				 struct bfd_link_info *info ATTRIBUTE_UNUSED)
   5098  1.1  christos {
   5099  1.1  christos   return TRUE;
   5100  1.1  christos }
   5101  1.1  christos 
   5102  1.1  christos /* Adjust _SPUEAR_ syms to point at their overlay stubs.  */
   5103  1.1  christos 
   5104  1.1  christos static int
   5105  1.1  christos spu_elf_output_symbol_hook (struct bfd_link_info *info,
   5106  1.1  christos 			    const char *sym_name ATTRIBUTE_UNUSED,
   5107  1.1  christos 			    Elf_Internal_Sym *sym,
   5108  1.1  christos 			    asection *sym_sec ATTRIBUTE_UNUSED,
   5109  1.1  christos 			    struct elf_link_hash_entry *h)
   5110  1.1  christos {
   5111  1.1  christos   struct spu_link_hash_table *htab = spu_hash_table (info);
   5112  1.1  christos 
   5113  1.1  christos   if (!info->relocatable
   5114  1.1  christos       && htab->stub_sec != NULL
   5115  1.1  christos       && h != NULL
   5116  1.1  christos       && (h->root.type == bfd_link_hash_defined
   5117  1.1  christos 	  || h->root.type == bfd_link_hash_defweak)
   5118  1.1  christos       && h->def_regular
   5119  1.1  christos       && strncmp (h->root.root.string, "_SPUEAR_", 8) == 0)
   5120  1.1  christos     {
   5121  1.1  christos       struct got_entry *g;
   5122  1.1  christos 
   5123  1.1  christos       for (g = h->got.glist; g != NULL; g = g->next)
   5124  1.1  christos 	if (htab->params->ovly_flavour == ovly_soft_icache
   5125  1.1  christos 	    ? g->br_addr == g->stub_addr
   5126  1.1  christos 	    : g->addend == 0 && g->ovl == 0)
   5127  1.1  christos 	  {
   5128  1.1  christos 	    sym->st_shndx = (_bfd_elf_section_from_bfd_section
   5129  1.1  christos 			     (htab->stub_sec[0]->output_section->owner,
   5130  1.1  christos 			      htab->stub_sec[0]->output_section));
   5131  1.1  christos 	    sym->st_value = g->stub_addr;
   5132  1.1  christos 	    break;
   5133  1.1  christos 	  }
   5134  1.1  christos     }
   5135  1.1  christos 
   5136  1.1  christos   return 1;
   5137  1.1  christos }
   5138  1.1  christos 
   5139  1.1  christos static int spu_plugin = 0;
   5140  1.1  christos 
   5141  1.1  christos void
   5142  1.1  christos spu_elf_plugin (int val)
   5143  1.1  christos {
   5144  1.1  christos   spu_plugin = val;
   5145  1.1  christos }
   5146  1.1  christos 
   5147  1.1  christos /* Set ELF header e_type for plugins.  */
   5148  1.1  christos 
   5149  1.1  christos static void
   5150  1.1  christos spu_elf_post_process_headers (bfd *abfd,
   5151  1.1  christos 			      struct bfd_link_info *info ATTRIBUTE_UNUSED)
   5152  1.1  christos {
   5153  1.1  christos   if (spu_plugin)
   5154  1.1  christos     {
   5155  1.1  christos       Elf_Internal_Ehdr *i_ehdrp = elf_elfheader (abfd);
   5156  1.1  christos 
   5157  1.1  christos       i_ehdrp->e_type = ET_DYN;
   5158  1.1  christos     }
   5159  1.1  christos }
   5160  1.1  christos 
   5161  1.1  christos /* We may add an extra PT_LOAD segment for .toe.  We also need extra
   5162  1.1  christos    segments for overlays.  */
   5163  1.1  christos 
   5164  1.1  christos static int
   5165  1.1  christos spu_elf_additional_program_headers (bfd *abfd, struct bfd_link_info *info)
   5166  1.1  christos {
   5167  1.1  christos   int extra = 0;
   5168  1.1  christos   asection *sec;
   5169  1.1  christos 
   5170  1.1  christos   if (info != NULL)
   5171  1.1  christos     {
   5172  1.1  christos       struct spu_link_hash_table *htab = spu_hash_table (info);
   5173  1.1  christos       extra = htab->num_overlays;
   5174  1.1  christos     }
   5175  1.1  christos 
   5176  1.1  christos   if (extra)
   5177  1.1  christos     ++extra;
   5178  1.1  christos 
   5179  1.1  christos   sec = bfd_get_section_by_name (abfd, ".toe");
   5180  1.1  christos   if (sec != NULL && (sec->flags & SEC_LOAD) != 0)
   5181  1.1  christos     ++extra;
   5182  1.1  christos 
   5183  1.1  christos   return extra;
   5184  1.1  christos }
   5185  1.1  christos 
   5186  1.1  christos /* Remove .toe section from other PT_LOAD segments and put it in
   5187  1.1  christos    a segment of its own.  Put overlays in separate segments too.  */
   5188  1.1  christos 
   5189  1.1  christos static bfd_boolean
   5190  1.1  christos spu_elf_modify_segment_map (bfd *abfd, struct bfd_link_info *info)
   5191  1.1  christos {
   5192  1.1  christos   asection *toe, *s;
   5193  1.1  christos   struct elf_segment_map *m, *m_overlay;
   5194  1.1  christos   struct elf_segment_map **p, **p_overlay;
   5195  1.1  christos   unsigned int i;
   5196  1.1  christos 
   5197  1.1  christos   if (info == NULL)
   5198  1.1  christos     return TRUE;
   5199  1.1  christos 
   5200  1.1  christos   toe = bfd_get_section_by_name (abfd, ".toe");
   5201  1.1  christos   for (m = elf_tdata (abfd)->segment_map; m != NULL; m = m->next)
   5202  1.1  christos     if (m->p_type == PT_LOAD && m->count > 1)
   5203  1.1  christos       for (i = 0; i < m->count; i++)
   5204  1.1  christos 	if ((s = m->sections[i]) == toe
   5205  1.1  christos 	    || spu_elf_section_data (s)->u.o.ovl_index != 0)
   5206  1.1  christos 	  {
   5207  1.1  christos 	    struct elf_segment_map *m2;
   5208  1.1  christos 	    bfd_vma amt;
   5209  1.1  christos 
   5210  1.1  christos 	    if (i + 1 < m->count)
   5211  1.1  christos 	      {
   5212  1.1  christos 		amt = sizeof (struct elf_segment_map);
   5213  1.1  christos 		amt += (m->count - (i + 2)) * sizeof (m->sections[0]);
   5214  1.1  christos 		m2 = bfd_zalloc (abfd, amt);
   5215  1.1  christos 		if (m2 == NULL)
   5216  1.1  christos 		  return FALSE;
   5217  1.1  christos 		m2->count = m->count - (i + 1);
   5218  1.1  christos 		memcpy (m2->sections, m->sections + i + 1,
   5219  1.1  christos 			m2->count * sizeof (m->sections[0]));
   5220  1.1  christos 		m2->p_type = PT_LOAD;
   5221  1.1  christos 		m2->next = m->next;
   5222  1.1  christos 		m->next = m2;
   5223  1.1  christos 	      }
   5224  1.1  christos 	    m->count = 1;
   5225  1.1  christos 	    if (i != 0)
   5226  1.1  christos 	      {
   5227  1.1  christos 		m->count = i;
   5228  1.1  christos 		amt = sizeof (struct elf_segment_map);
   5229  1.1  christos 		m2 = bfd_zalloc (abfd, amt);
   5230  1.1  christos 		if (m2 == NULL)
   5231  1.1  christos 		  return FALSE;
   5232  1.1  christos 		m2->p_type = PT_LOAD;
   5233  1.1  christos 		m2->count = 1;
   5234  1.1  christos 		m2->sections[0] = s;
   5235  1.1  christos 		m2->next = m->next;
   5236  1.1  christos 		m->next = m2;
   5237  1.1  christos 	      }
   5238  1.1  christos 	    break;
   5239  1.1  christos 	  }
   5240  1.1  christos 
   5241  1.1  christos 
   5242  1.1  christos   /* Some SPU ELF loaders ignore the PF_OVERLAY flag and just load all
   5243  1.1  christos      PT_LOAD segments.  This can cause the .ovl.init section to be
   5244  1.1  christos      overwritten with the contents of some overlay segment.  To work
   5245  1.1  christos      around this issue, we ensure that all PF_OVERLAY segments are
   5246  1.1  christos      sorted first amongst the program headers; this ensures that even
   5247  1.1  christos      with a broken loader, the .ovl.init section (which is not marked
   5248  1.1  christos      as PF_OVERLAY) will be placed into SPU local store on startup.  */
   5249  1.1  christos 
   5250  1.1  christos   /* Move all overlay segments onto a separate list.  */
   5251  1.1  christos   p = &elf_tdata (abfd)->segment_map;
   5252  1.1  christos   p_overlay = &m_overlay;
   5253  1.1  christos   while (*p != NULL)
   5254  1.1  christos     {
   5255  1.1  christos       if ((*p)->p_type == PT_LOAD && (*p)->count == 1
   5256  1.1  christos 	  && spu_elf_section_data ((*p)->sections[0])->u.o.ovl_index != 0)
   5257  1.1  christos 	{
   5258  1.1  christos 	  m = *p;
   5259  1.1  christos 	  *p = m->next;
   5260  1.1  christos 	  *p_overlay = m;
   5261  1.1  christos 	  p_overlay = &m->next;
   5262  1.1  christos 	  continue;
   5263  1.1  christos 	}
   5264  1.1  christos 
   5265  1.1  christos       p = &((*p)->next);
   5266  1.1  christos     }
   5267  1.1  christos 
   5268  1.1  christos   /* Re-insert overlay segments at the head of the segment map.  */
   5269  1.1  christos   *p_overlay = elf_tdata (abfd)->segment_map;
   5270  1.1  christos   elf_tdata (abfd)->segment_map = m_overlay;
   5271  1.1  christos 
   5272  1.1  christos   return TRUE;
   5273  1.1  christos }
   5274  1.1  christos 
   5275  1.1  christos /* Tweak the section type of .note.spu_name.  */
   5276  1.1  christos 
   5277  1.1  christos static bfd_boolean
   5278  1.1  christos spu_elf_fake_sections (bfd *obfd ATTRIBUTE_UNUSED,
   5279  1.1  christos 		       Elf_Internal_Shdr *hdr,
   5280  1.1  christos 		       asection *sec)
   5281  1.1  christos {
   5282  1.1  christos   if (strcmp (sec->name, SPU_PTNOTE_SPUNAME) == 0)
   5283  1.1  christos     hdr->sh_type = SHT_NOTE;
   5284  1.1  christos   return TRUE;
   5285  1.1  christos }
   5286  1.1  christos 
   5287  1.1  christos /* Tweak phdrs before writing them out.  */
   5288  1.1  christos 
   5289  1.1  christos static int
   5290  1.1  christos spu_elf_modify_program_headers (bfd *abfd, struct bfd_link_info *info)
   5291  1.1  christos {
   5292  1.1  christos   const struct elf_backend_data *bed;
   5293  1.1  christos   struct elf_obj_tdata *tdata;
   5294  1.1  christos   Elf_Internal_Phdr *phdr, *last;
   5295  1.1  christos   struct spu_link_hash_table *htab;
   5296  1.1  christos   unsigned int count;
   5297  1.1  christos   unsigned int i;
   5298  1.1  christos 
   5299  1.1  christos   if (info == NULL)
   5300  1.1  christos     return TRUE;
   5301  1.1  christos 
   5302  1.1  christos   bed = get_elf_backend_data (abfd);
   5303  1.1  christos   tdata = elf_tdata (abfd);
   5304  1.1  christos   phdr = tdata->phdr;
   5305  1.1  christos   count = tdata->program_header_size / bed->s->sizeof_phdr;
   5306  1.1  christos   htab = spu_hash_table (info);
   5307  1.1  christos   if (htab->num_overlays != 0)
   5308  1.1  christos     {
   5309  1.1  christos       struct elf_segment_map *m;
   5310  1.1  christos       unsigned int o;
   5311  1.1  christos 
   5312  1.1  christos       for (i = 0, m = elf_tdata (abfd)->segment_map; m; ++i, m = m->next)
   5313  1.1  christos 	if (m->count != 0
   5314  1.1  christos 	    && (o = spu_elf_section_data (m->sections[0])->u.o.ovl_index) != 0)
   5315  1.1  christos 	  {
   5316  1.1  christos 	    /* Mark this as an overlay header.  */
   5317  1.1  christos 	    phdr[i].p_flags |= PF_OVERLAY;
   5318  1.1  christos 
   5319  1.1  christos 	    if (htab->ovtab != NULL && htab->ovtab->size != 0
   5320  1.1  christos 		&& htab->params->ovly_flavour != ovly_soft_icache)
   5321  1.1  christos 	      {
   5322  1.1  christos 		bfd_byte *p = htab->ovtab->contents;
   5323  1.1  christos 		unsigned int off = o * 16 + 8;
   5324  1.1  christos 
   5325  1.1  christos 		/* Write file_off into _ovly_table.  */
   5326  1.1  christos 		bfd_put_32 (htab->ovtab->owner, phdr[i].p_offset, p + off);
   5327  1.1  christos 	      }
   5328  1.1  christos 	  }
   5329  1.1  christos       /* Soft-icache has its file offset put in .ovl.init.  */
   5330  1.1  christos       if (htab->init != NULL && htab->init->size != 0)
   5331  1.1  christos 	{
   5332  1.1  christos 	  bfd_vma val = elf_section_data (htab->ovl_sec[0])->this_hdr.sh_offset;
   5333  1.1  christos 
   5334  1.1  christos 	  bfd_put_32 (htab->init->owner, val, htab->init->contents + 4);
   5335  1.1  christos 	}
   5336  1.1  christos     }
   5337  1.1  christos 
   5338  1.1  christos   /* Round up p_filesz and p_memsz of PT_LOAD segments to multiples
   5339  1.1  christos      of 16.  This should always be possible when using the standard
   5340  1.1  christos      linker scripts, but don't create overlapping segments if
   5341  1.1  christos      someone is playing games with linker scripts.  */
   5342  1.1  christos   last = NULL;
   5343  1.1  christos   for (i = count; i-- != 0; )
   5344  1.1  christos     if (phdr[i].p_type == PT_LOAD)
   5345  1.1  christos       {
   5346  1.1  christos 	unsigned adjust;
   5347  1.1  christos 
   5348  1.1  christos 	adjust = -phdr[i].p_filesz & 15;
   5349  1.1  christos 	if (adjust != 0
   5350  1.1  christos 	    && last != NULL
   5351  1.1  christos 	    && phdr[i].p_offset + phdr[i].p_filesz > last->p_offset - adjust)
   5352  1.1  christos 	  break;
   5353  1.1  christos 
   5354  1.1  christos 	adjust = -phdr[i].p_memsz & 15;
   5355  1.1  christos 	if (adjust != 0
   5356  1.1  christos 	    && last != NULL
   5357  1.1  christos 	    && phdr[i].p_filesz != 0
   5358  1.1  christos 	    && phdr[i].p_vaddr + phdr[i].p_memsz > last->p_vaddr - adjust
   5359  1.1  christos 	    && phdr[i].p_vaddr + phdr[i].p_memsz <= last->p_vaddr)
   5360  1.1  christos 	  break;
   5361  1.1  christos 
   5362  1.1  christos 	if (phdr[i].p_filesz != 0)
   5363  1.1  christos 	  last = &phdr[i];
   5364  1.1  christos       }
   5365  1.1  christos 
   5366  1.1  christos   if (i == (unsigned int) -1)
   5367  1.1  christos     for (i = count; i-- != 0; )
   5368  1.1  christos       if (phdr[i].p_type == PT_LOAD)
   5369  1.1  christos 	{
   5370  1.1  christos 	unsigned adjust;
   5371  1.1  christos 
   5372  1.1  christos 	adjust = -phdr[i].p_filesz & 15;
   5373  1.1  christos 	phdr[i].p_filesz += adjust;
   5374  1.1  christos 
   5375  1.1  christos 	adjust = -phdr[i].p_memsz & 15;
   5376  1.1  christos 	phdr[i].p_memsz += adjust;
   5377  1.1  christos       }
   5378  1.1  christos 
   5379  1.1  christos   return TRUE;
   5380  1.1  christos }
   5381  1.1  christos 
   5382  1.1  christos bfd_boolean
   5383  1.1  christos spu_elf_size_sections (bfd * output_bfd, struct bfd_link_info *info)
   5384  1.1  christos {
   5385  1.1  christos   struct spu_link_hash_table *htab = spu_hash_table (info);
   5386  1.1  christos   if (htab->params->emit_fixups)
   5387  1.1  christos     {
   5388  1.1  christos       asection *sfixup = htab->sfixup;
   5389  1.1  christos       int fixup_count = 0;
   5390  1.1  christos       bfd *ibfd;
   5391  1.1  christos       size_t size;
   5392  1.1  christos 
   5393  1.1  christos       for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link_next)
   5394  1.1  christos 	{
   5395  1.1  christos 	  asection *isec;
   5396  1.1  christos 
   5397  1.1  christos 	  if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour)
   5398  1.1  christos 	    continue;
   5399  1.1  christos 
   5400  1.1  christos 	  /* Walk over each section attached to the input bfd.  */
   5401  1.1  christos 	  for (isec = ibfd->sections; isec != NULL; isec = isec->next)
   5402  1.1  christos 	    {
   5403  1.1  christos 	      Elf_Internal_Rela *internal_relocs, *irelaend, *irela;
   5404  1.1  christos 	      bfd_vma base_end;
   5405  1.1  christos 
   5406  1.1  christos 	      /* If there aren't any relocs, then there's nothing more
   5407  1.1  christos 	         to do.  */
   5408  1.1  christos 	      if ((isec->flags & SEC_ALLOC) == 0
   5409  1.1  christos 		  || (isec->flags & SEC_RELOC) == 0
   5410  1.1  christos 		  || isec->reloc_count == 0)
   5411  1.1  christos 		continue;
   5412  1.1  christos 
   5413  1.1  christos 	      /* Get the relocs.  */
   5414  1.1  christos 	      internal_relocs =
   5415  1.1  christos 		_bfd_elf_link_read_relocs (ibfd, isec, NULL, NULL,
   5416  1.1  christos 					   info->keep_memory);
   5417  1.1  christos 	      if (internal_relocs == NULL)
   5418  1.1  christos 		return FALSE;
   5419  1.1  christos 
   5420  1.1  christos 	      /* 1 quadword can contain up to 4 R_SPU_ADDR32
   5421  1.1  christos 	         relocations.  They are stored in a single word by
   5422  1.1  christos 	         saving the upper 28 bits of the address and setting the
   5423  1.1  christos 	         lower 4 bits to a bit mask of the words that have the
   5424  1.1  christos 	         relocation.  BASE_END keeps track of the next quadword. */
   5425  1.1  christos 	      irela = internal_relocs;
   5426  1.1  christos 	      irelaend = irela + isec->reloc_count;
   5427  1.1  christos 	      base_end = 0;
   5428  1.1  christos 	      for (; irela < irelaend; irela++)
   5429  1.1  christos 		if (ELF32_R_TYPE (irela->r_info) == R_SPU_ADDR32
   5430  1.1  christos 		    && irela->r_offset >= base_end)
   5431  1.1  christos 		  {
   5432  1.1  christos 		    base_end = (irela->r_offset & ~(bfd_vma) 15) + 16;
   5433  1.1  christos 		    fixup_count++;
   5434  1.1  christos 		  }
   5435  1.1  christos 	    }
   5436  1.1  christos 	}
   5437  1.1  christos 
   5438  1.1  christos       /* We always have a NULL fixup as a sentinel */
   5439  1.1  christos       size = (fixup_count + 1) * FIXUP_RECORD_SIZE;
   5440  1.1  christos       if (!bfd_set_section_size (output_bfd, sfixup, size))
   5441  1.1  christos 	return FALSE;
   5442  1.1  christos       sfixup->contents = (bfd_byte *) bfd_zalloc (info->input_bfds, size);
   5443  1.1  christos       if (sfixup->contents == NULL)
   5444  1.1  christos 	return FALSE;
   5445  1.1  christos     }
   5446  1.1  christos   return TRUE;
   5447  1.1  christos }
   5448  1.1  christos 
   5449  1.1  christos #define TARGET_BIG_SYM		bfd_elf32_spu_vec
   5450  1.1  christos #define TARGET_BIG_NAME		"elf32-spu"
   5451  1.1  christos #define ELF_ARCH		bfd_arch_spu
   5452  1.1  christos #define ELF_TARGET_ID		SPU_ELF_DATA
   5453  1.1  christos #define ELF_MACHINE_CODE	EM_SPU
   5454  1.1  christos /* This matches the alignment need for DMA.  */
   5455  1.1  christos #define ELF_MAXPAGESIZE		0x80
   5456  1.1  christos #define elf_backend_rela_normal         1
   5457  1.1  christos #define elf_backend_can_gc_sections	1
   5458  1.1  christos 
   5459  1.1  christos #define bfd_elf32_bfd_reloc_type_lookup		spu_elf_reloc_type_lookup
   5460  1.1  christos #define bfd_elf32_bfd_reloc_name_lookup		spu_elf_reloc_name_lookup
   5461  1.1  christos #define elf_info_to_howto			spu_elf_info_to_howto
   5462  1.1  christos #define elf_backend_count_relocs		spu_elf_count_relocs
   5463  1.1  christos #define elf_backend_relocate_section		spu_elf_relocate_section
   5464  1.1  christos #define elf_backend_finish_dynamic_sections	spu_elf_finish_dynamic_sections
   5465  1.1  christos #define elf_backend_symbol_processing		spu_elf_backend_symbol_processing
   5466  1.1  christos #define elf_backend_link_output_symbol_hook	spu_elf_output_symbol_hook
   5467  1.1  christos #define elf_backend_object_p			spu_elf_object_p
   5468  1.1  christos #define bfd_elf32_new_section_hook		spu_elf_new_section_hook
   5469  1.1  christos #define bfd_elf32_bfd_link_hash_table_create	spu_elf_link_hash_table_create
   5470  1.1  christos 
   5471  1.1  christos #define elf_backend_additional_program_headers	spu_elf_additional_program_headers
   5472  1.1  christos #define elf_backend_modify_segment_map		spu_elf_modify_segment_map
   5473  1.1  christos #define elf_backend_modify_program_headers	spu_elf_modify_program_headers
   5474  1.1  christos #define elf_backend_post_process_headers        spu_elf_post_process_headers
   5475  1.1  christos #define elf_backend_fake_sections		spu_elf_fake_sections
   5476  1.1  christos #define elf_backend_special_sections		spu_elf_special_sections
   5477  1.1  christos #define bfd_elf32_bfd_final_link		spu_elf_final_link
   5478  1.1  christos 
   5479  1.1  christos #include "elf32-target.h"
   5480