Changeset 1973 for binutils/trunk/bfd/elf32-m68hc1x.c
- Timestamp:
- Feb 6, 2017, 1:00:00 PM (8 years ago)
- Location:
- binutils/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
binutils/trunk ¶
-
Property svn:mergeinfo
set to
/binutils/vendor/current merged eligible
-
Property svn:mergeinfo
set to
-
TabularUnified binutils/trunk/bfd/elf32-m68hc1x.c ¶
r970 r1973 1 1 /* Motorola 68HC11/HC12-specific support for 32-bit ELF 2 Copyright (C) 1999-201 4Free Software Foundation, Inc.2 Copyright (C) 1999-2016 Free Software Foundation, Inc. 3 3 Contributed by Stephane Carrez (stcarrez@nerim.fr) 4 4 … … 29 29 #include "elf/m68hc11.h" 30 30 #include "opcode/m68hc11.h" 31 31 #include "libiberty.h" 32 32 33 33 #define m68hc12_stub_hash_lookup(table, string, create, copy) \ … … 238 238 bfd *input_bfd; 239 239 unsigned int bfd_count; 240 int top_id, top_index;240 unsigned int top_id, top_index; 241 241 asection *section; 242 242 asection **input_list, **list; … … 593 593 594 594 /* 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); 597 596 598 597 /* Export the symbol for debugging/disassembling. */ … … 600 599 stub_entry->stub_offset, 601 600 stub_entry->stub_sec); 601 free (name); 602 602 return result; 603 603 } … … 854 854 const Elf_Internal_Rela * rel_end; 855 855 856 if ( info->relocatable)856 if (bfd_link_relocatable (info)) 857 857 return TRUE; 858 858 … … 957 957 struct elf_link_hash_entry *h; 958 958 bfd_vma val; 959 const char * msg; 960 char * buf; 959 961 960 962 r_symndx = ELF32_R_SYM (rel->r_info); … … 999 1001 rel, 1, relend, howto, 0, contents); 1000 1002 1001 if ( info->relocatable)1003 if (bfd_link_relocatable (info)) 1002 1004 { 1003 1005 /* This is a relocatable link. We don't have to change … … 1114 1116 if (is_far) 1115 1117 { 1116 const char* msg;1117 char* buf;1118 1118 msg = _("Reference to the far symbol `%s' using a wrong " 1119 1119 "relocation may result in incorrect execution"); 1120 buf = alloca(strlen (msg) + strlen (name) + 10);1120 buf = xmalloc (strlen (msg) + strlen (name) + 10); 1121 1121 sprintf (buf, msg, name); 1122 1122 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); 1125 1126 } 1126 1127 … … 1149 1150 else 1150 1151 { 1151 const char * msg;1152 char * buf;1153 1154 1152 msg = _("XGATE address (%lx) is not within shared RAM" 1155 1153 "(0xE000-0xFFFF), therefore you must manually offset " 1156 1154 "the address, and possibly manage the page, in your " 1157 1155 "code."); 1158 buf = alloca(strlen (msg) + 128);1156 buf = xmalloc (strlen (msg) + 128); 1159 1157 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); 1163 1161 break; 1164 1162 } … … 1169 1167 && phys_page != insn_page && !(e_flags & E_M68HC11_NO_BANK_WARNING)) 1170 1168 { 1171 const char * msg;1172 char * buf;1173 1174 1169 msg = _("banked address [%lx:%04lx] (%lx) is not in the same bank " 1175 1170 "as current banked address [%lx:%04lx] (%lx)"); 1176 1177 buf = alloca (strlen (msg) + 128); 1171 buf = xmalloc (strlen (msg) + 128); 1178 1172 sprintf (buf, msg, phys_page, phys_addr, 1179 1173 (long) (relocation + rel->r_addend), 1180 1174 insn_page, m68hc11_phys_addr (pinfo, insn_addr), 1181 1175 (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); 1186 1179 break; 1187 1180 } … … 1189 1182 if (phys_page != 0 && insn_page == 0) 1190 1183 { 1191 const char * msg;1192 char * buf;1193 1194 1184 msg = _("reference to a banked address [%lx:%04lx] in the " 1195 1185 "normal address space at %04lx"); 1196 1197 buf = alloca (strlen (msg) + 128); 1186 buf = xmalloc (strlen (msg) + 128); 1198 1187 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); 1204 1191 relocation = phys_addr; 1205 1192 break; … … 1232 1219 else 1233 1220 { 1234 const char * msg;1235 char * buf;1236 1237 1221 /* Get virtual address of instruction having the relocation. */ 1238 1222 insn_addr = input_section->output_section->vma … … 1242 1226 "(0x2000-0x4000), therefore you must manually " 1243 1227 "offset the address in your code"); 1244 buf = alloca(strlen (msg) + 128);1228 buf = xmalloc (strlen (msg) + 128); 1245 1229 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); 1249 1233 break; 1250 1234 } … … 1266 1250 if (r != bfd_reloc_ok) 1267 1251 { 1268 const char * msg = (const char *) 0;1269 1270 1252 switch (r) 1271 1253 { 1272 1254 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); 1277 1258 break; 1278 1259 1279 1260 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); 1284 1263 break; 1285 1264 … … 1301 1280 1302 1281 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); 1307 1284 break; 1308 1285 }
Note:
See TracChangeset
for help on using the changeset viewer.