Ignore:
Timestamp:
Feb 6, 2017, 1:00:00 PM (8 years ago)
Author:
Silvan Scherrer
Message:

binutils: update trunk to version 2.27

Location:
binutils/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • binutils/trunk

  • TabularUnified binutils/trunk/bfd/elf32-m68hc1x.c

    r970 r1973  
    11/* Motorola 68HC11/HC12-specific support for 32-bit ELF
    2    Copyright (C) 1999-2014 Free Software Foundation, Inc.
     2   Copyright (C) 1999-2016 Free Software Foundation, Inc.
    33   Contributed by Stephane Carrez (stcarrez@nerim.fr)
    44
     
    2929#include "elf/m68hc11.h"
    3030#include "opcode/m68hc11.h"
    31 
     31#include "libiberty.h"
    3232
    3333#define m68hc12_stub_hash_lookup(table, string, create, copy) \
     
    238238  bfd *input_bfd;
    239239  unsigned int bfd_count;
    240   int top_id, top_index;
     240  unsigned int top_id, top_index;
    241241  asection *section;
    242242  asection **input_list, **list;
     
    593593
    594594  /* Make a printable name that does not conflict with the real function.  */
    595   name = alloca (strlen (stub_entry->root.string) + 16);
    596   sprintf (name, "tramp.%s", stub_entry->root.string);
     595  name = concat ("tramp.", stub_entry->root.string, NULL);
    597596
    598597  /* Export the symbol for debugging/disassembling.  */
     
    600599                          stub_entry->stub_offset,
    601600                          stub_entry->stub_sec);
     601  free (name);
    602602  return result;
    603603}
     
    854854  const Elf_Internal_Rela *     rel_end;
    855855
    856   if (info->relocatable)
     856  if (bfd_link_relocatable (info))
    857857    return TRUE;
    858858
     
    957957      struct elf_link_hash_entry *h;
    958958      bfd_vma val;
     959      const char * msg;
     960      char * buf;
    959961
    960962      r_symndx = ELF32_R_SYM (rel->r_info);
     
    9991001                                         rel, 1, relend, howto, 0, contents);
    10001002
    1001       if (info->relocatable)
     1003      if (bfd_link_relocatable (info))
    10021004        {
    10031005          /* This is a relocatable link.  We don't have to change
     
    11141116          if (is_far)
    11151117            {
    1116               const char* msg;
    1117               char* buf;
    11181118              msg = _("Reference to the far symbol `%s' using a wrong "
    11191119                      "relocation may result in incorrect execution");
    1120               buf = alloca (strlen (msg) + strlen (name) + 10);
     1120              buf = xmalloc (strlen (msg) + strlen (name) + 10);
    11211121              sprintf (buf, msg, name);
    11221122
    1123               (* info->callbacks->warning)
    1124                 (info, buf, name, input_bfd, NULL, rel->r_offset);
     1123              (*info->callbacks->warning)
     1124                (info, buf, name, input_bfd, NULL, rel->r_offset);
     1125              free (buf);
    11251126            }
    11261127
     
    11491150              else
    11501151                {
    1151                   const char * msg;
    1152                   char * buf;
    1153 
    11541152                  msg = _("XGATE address (%lx) is not within shared RAM"
    11551153                          "(0xE000-0xFFFF), therefore you must manually offset "
    11561154                          "the address, and possibly manage the page, in your "
    11571155                          "code.");
    1158                   buf = alloca (strlen (msg) + 128);
     1156                  buf = xmalloc (strlen (msg) + 128);
    11591157                  sprintf (buf, msg, phys_addr);
    1160                   if (!((*info->callbacks->warning) (info, buf, name, input_bfd,
    1161                                                      input_section, insn_addr)))
    1162                     return FALSE;
     1158                  (*info->callbacks->warning) (info, buf, name, input_bfd,
     1159                                               input_section, insn_addr);
     1160                  free (buf);
    11631161                  break;
    11641162                }
     
    11691167              && phys_page != insn_page && !(e_flags & E_M68HC11_NO_BANK_WARNING))
    11701168            {
    1171               const char * msg;
    1172               char * buf;
    1173 
    11741169              msg = _("banked address [%lx:%04lx] (%lx) is not in the same bank "
    11751170                      "as current banked address [%lx:%04lx] (%lx)");
    1176 
    1177               buf = alloca (strlen (msg) + 128);
     1171              buf = xmalloc (strlen (msg) + 128);
    11781172              sprintf (buf, msg, phys_page, phys_addr,
    11791173                       (long) (relocation + rel->r_addend),
    11801174                       insn_page, m68hc11_phys_addr (pinfo, insn_addr),
    11811175                       (long) (insn_addr));
    1182               if (!((*info->callbacks->warning)
    1183                     (info, buf, name, input_bfd, input_section,
    1184                      rel->r_offset)))
    1185                 return FALSE;
     1176              (*info->callbacks->warning) (info, buf, name, input_bfd,
     1177                                           input_section, rel->r_offset);
     1178              free (buf);
    11861179              break;
    11871180            }
     
    11891182          if (phys_page != 0 && insn_page == 0)
    11901183            {
    1191               const char * msg;
    1192               char * buf;
    1193 
    11941184              msg = _("reference to a banked address [%lx:%04lx] in the "
    11951185                      "normal address space at %04lx");
    1196 
    1197               buf = alloca (strlen (msg) + 128);
     1186              buf = xmalloc (strlen (msg) + 128);
    11981187              sprintf (buf, msg, phys_page, phys_addr, insn_addr);
    1199               if (!((*info->callbacks->warning)
    1200                     (info, buf, name, input_bfd, input_section,
    1201                      insn_addr)))
    1202                 return FALSE;
    1203 
     1188              (*info->callbacks->warning) (info, buf, name, input_bfd,
     1189                                           input_section, insn_addr);
     1190              free (buf);
    12041191              relocation = phys_addr;
    12051192              break;
     
    12321219              else
    12331220                {
    1234                   const char * msg;
    1235                   char * buf;
    1236 
    12371221                  /* Get virtual address of instruction having the relocation.  */
    12381222                  insn_addr = input_section->output_section->vma
     
    12421226                      "(0x2000-0x4000), therefore you must manually "
    12431227                      "offset the address in your code");
    1244                   buf = alloca (strlen (msg) + 128);
     1228                  buf = xmalloc (strlen (msg) + 128);
    12451229                  sprintf (buf, msg, phys_addr);
    1246                   if (!((*info->callbacks->warning) (info, buf, name, input_bfd,
    1247                                                      input_section, insn_addr)))
    1248                     return FALSE;
     1230                  (*info->callbacks->warning) (info, buf, name, input_bfd,
     1231                                               input_section, insn_addr);
     1232                  free (buf);
    12491233                  break;
    12501234                }
     
    12661250      if (r != bfd_reloc_ok)
    12671251        {
    1268           const char * msg = (const char *) 0;
    1269 
    12701252          switch (r)
    12711253            {
    12721254            case bfd_reloc_overflow:
    1273               if (!((*info->callbacks->reloc_overflow)
    1274                     (info, NULL, name, howto->name, (bfd_vma) 0,
    1275                      input_bfd, input_section, rel->r_offset)))
    1276                 return FALSE;
     1255              (*info->callbacks->reloc_overflow)
     1256                (info, NULL, name, howto->name, (bfd_vma) 0,
     1257                 input_bfd, input_section, rel->r_offset);
    12771258              break;
    12781259
    12791260            case bfd_reloc_undefined:
    1280               if (!((*info->callbacks->undefined_symbol)
    1281                     (info, name, input_bfd, input_section,
    1282                      rel->r_offset, TRUE)))
    1283                 return FALSE;
     1261              (*info->callbacks->undefined_symbol)
     1262                (info, name, input_bfd, input_section, rel->r_offset, TRUE);
    12841263              break;
    12851264
     
    13011280
    13021281            common_error:
    1303               if (!((*info->callbacks->warning)
    1304                     (info, msg, name, input_bfd, input_section,
    1305                      rel->r_offset)))
    1306                 return FALSE;
     1282              (*info->callbacks->warning) (info, msg, name, input_bfd,
     1283                                           input_section, rel->r_offset);
    13071284              break;
    13081285            }
Note: See TracChangeset for help on using the changeset viewer.