]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gas/config/tc-ppc.c
PowerPC: Add support for RFC02653 - Dense Math Facility
[thirdparty/binutils-gdb.git] / gas / config / tc-ppc.c
1 /* tc-ppc.c -- Assemble for the PowerPC or POWER (RS/6000)
2 Copyright (C) 1994-2022 Free Software Foundation, Inc.
3 Written by Ian Lance Taylor, Cygnus Support.
4
5 This file is part of GAS, the GNU Assembler.
6
7 GAS is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
10 any later version.
11
12 GAS is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GAS; see the file COPYING. If not, write to the Free
19 Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
20 02110-1301, USA. */
21
22 #include "as.h"
23 #include "safe-ctype.h"
24 #include "subsegs.h"
25 #include "dw2gencfi.h"
26 #include "opcode/ppc.h"
27
28 #ifdef OBJ_ELF
29 #include "elf/ppc.h"
30 #include "elf/ppc64.h"
31 #include "dwarf2dbg.h"
32 #endif
33
34 #ifdef OBJ_XCOFF
35 #include "coff/xcoff.h"
36 #include "libxcoff.h"
37 #endif
38
39 /* This is the assembler for the PowerPC or POWER (RS/6000) chips. */
40
41 /* Tell the main code what the endianness is. */
42 extern int target_big_endian;
43
44 /* Whether or not, we've set target_big_endian. */
45 static int set_target_endian = 0;
46
47 /* Whether to use user friendly register names. */
48 #ifndef TARGET_REG_NAMES_P
49 #define TARGET_REG_NAMES_P false
50 #endif
51
52 /* Macros for calculating LO, HI, HA, HIGHER, HIGHERA, HIGHEST,
53 HIGHESTA. */
54
55 /* #lo(value) denotes the least significant 16 bits of the indicated. */
56 #define PPC_LO(v) ((v) & 0xffff)
57
58 /* #hi(value) denotes bits 16 through 31 of the indicated value. */
59 #define PPC_HI(v) (((v) >> 16) & 0xffff)
60
61 /* #ha(value) denotes the high adjusted value: bits 16 through 31 of
62 the indicated value, compensating for #lo() being treated as a
63 signed number. */
64 #define PPC_HA(v) PPC_HI ((v) + 0x8000)
65
66 /* #higher(value) denotes bits 32 through 47 of the indicated value. */
67 #define PPC_HIGHER(v) (((v) >> 16 >> 16) & 0xffff)
68
69 /* #highera(value) denotes bits 32 through 47 of the indicated value,
70 compensating for #lo() being treated as a signed number. */
71 #define PPC_HIGHERA(v) PPC_HIGHER ((v) + 0x8000)
72
73 /* #highest(value) denotes bits 48 through 63 of the indicated value. */
74 #define PPC_HIGHEST(v) (((v) >> 24 >> 24) & 0xffff)
75
76 /* #highesta(value) denotes bits 48 through 63 of the indicated value,
77 compensating for #lo being treated as a signed number. */
78 #define PPC_HIGHESTA(v) PPC_HIGHEST ((v) + 0x8000)
79
80 #define SEX16(val) (((val) ^ 0x8000) - 0x8000)
81
82 /* For the time being on ppc64, don't report overflow on @h and @ha
83 applied to constants. */
84 #define REPORT_OVERFLOW_HI 0
85
86 static bool reg_names_p = TARGET_REG_NAMES_P;
87
88 static void ppc_byte (int);
89
90 #if defined (OBJ_XCOFF) || defined (OBJ_ELF)
91 static void ppc_tc (int);
92 static void ppc_machine (int);
93 #endif
94
95 #ifdef OBJ_XCOFF
96 static void ppc_comm (int);
97 static void ppc_bb (int);
98 static void ppc_bc (int);
99 static void ppc_bf (int);
100 static void ppc_biei (int);
101 static void ppc_bs (int);
102 static void ppc_eb (int);
103 static void ppc_ec (int);
104 static void ppc_ef (int);
105 static void ppc_es (int);
106 static void ppc_csect (int);
107 static void ppc_dwsect (int);
108 static void ppc_change_csect (symbolS *, offsetT);
109 static void ppc_file (int);
110 static void ppc_function (int);
111 static void ppc_extern (int);
112 static void ppc_globl (int);
113 static void ppc_lglobl (int);
114 static void ppc_ref (int);
115 static void ppc_section (int);
116 static void ppc_named_section (int);
117 static void ppc_stabx (int);
118 static void ppc_rename (int);
119 static void ppc_toc (int);
120 static void ppc_xcoff_cons (int);
121 static void ppc_vbyte (int);
122 static void ppc_weak (int);
123 static void ppc_GNU_visibility (int);
124 #endif
125
126 #ifdef OBJ_ELF
127 static void ppc_elf_rdata (int);
128 static void ppc_elf_lcomm (int);
129 static void ppc_elf_localentry (int);
130 static void ppc_elf_abiversion (int);
131 static void ppc_elf_gnu_attribute (int);
132 #endif
133 \f
134 /* Generic assembler global variables which must be defined by all
135 targets. */
136
137 #ifdef OBJ_ELF
138 /* This string holds the chars that always start a comment. If the
139 pre-processor is disabled, these aren't very useful. The macro
140 tc_comment_chars points to this. We use this, rather than the
141 usual comment_chars, so that we can switch for Solaris conventions. */
142 static const char ppc_solaris_comment_chars[] = "#!";
143 static const char ppc_eabi_comment_chars[] = "#";
144
145 #ifdef TARGET_SOLARIS_COMMENT
146 const char *ppc_comment_chars = ppc_solaris_comment_chars;
147 #else
148 const char *ppc_comment_chars = ppc_eabi_comment_chars;
149 #endif
150 #else
151 const char comment_chars[] = "#";
152 #endif
153
154 /* Characters which start a comment at the beginning of a line. */
155 const char line_comment_chars[] = "#";
156
157 /* Characters which may be used to separate multiple commands on a
158 single line. */
159 const char line_separator_chars[] = ";";
160
161 /* Characters which are used to indicate an exponent in a floating
162 point number. */
163 const char EXP_CHARS[] = "eE";
164
165 /* Characters which mean that a number is a floating point constant,
166 as in 0d1.0. */
167 const char FLT_CHARS[] = "dD";
168
169 /* Anything that can start an operand needs to be mentioned here,
170 to stop the input scrubber eating whitespace. */
171 const char ppc_symbol_chars[] = "%[";
172
173 /* The dwarf2 data alignment, adjusted for 32 or 64 bit. */
174 int ppc_cie_data_alignment;
175
176 /* The dwarf2 minimum instruction length. */
177 int ppc_dwarf2_line_min_insn_length;
178
179 /* More than this number of nops in an alignment op gets a branch
180 instead. */
181 unsigned long nop_limit = 4;
182
183 /* The type of processor we are assembling for. This is one or more
184 of the PPC_OPCODE flags defined in opcode/ppc.h. */
185 ppc_cpu_t ppc_cpu = 0;
186 ppc_cpu_t sticky = 0;
187
188 /* Value for ELF e_flags EF_PPC64_ABI. */
189 unsigned int ppc_abiversion = 0;
190
191 #ifdef OBJ_ELF
192 /* Flags set on encountering toc relocs. */
193 static enum {
194 has_large_toc_reloc = 1,
195 has_small_toc_reloc = 2
196 } toc_reloc_types;
197 #endif
198
199 /* Warn on emitting data to code sections. */
200 int warn_476;
201 uint64_t last_insn;
202 segT last_seg;
203 subsegT last_subseg;
204 \f
205 /* The target specific pseudo-ops which we support. */
206
207 const pseudo_typeS md_pseudo_table[] =
208 {
209 /* Pseudo-ops which must be overridden. */
210 { "byte", ppc_byte, 0 },
211
212 #ifdef OBJ_XCOFF
213 /* Pseudo-ops specific to the RS/6000 XCOFF format. Some of these
214 legitimately belong in the obj-*.c file. However, XCOFF is based
215 on COFF, and is only implemented for the RS/6000. We just use
216 obj-coff.c, and add what we need here. */
217 { "comm", ppc_comm, 0 },
218 { "lcomm", ppc_comm, 1 },
219 { "bb", ppc_bb, 0 },
220 { "bc", ppc_bc, 0 },
221 { "bf", ppc_bf, 0 },
222 { "bi", ppc_biei, 0 },
223 { "bs", ppc_bs, 0 },
224 { "csect", ppc_csect, 0 },
225 { "dwsect", ppc_dwsect, 0 },
226 { "data", ppc_section, 'd' },
227 { "eb", ppc_eb, 0 },
228 { "ec", ppc_ec, 0 },
229 { "ef", ppc_ef, 0 },
230 { "ei", ppc_biei, 1 },
231 { "es", ppc_es, 0 },
232 { "extern", ppc_extern, 0 },
233 { "file", ppc_file, 0 },
234 { "function", ppc_function, 0 },
235 { "globl", ppc_globl, 0 },
236 { "lglobl", ppc_lglobl, 0 },
237 { "ref", ppc_ref, 0 },
238 { "rename", ppc_rename, 0 },
239 { "section", ppc_named_section, 0 },
240 { "stabx", ppc_stabx, 0 },
241 { "text", ppc_section, 't' },
242 { "toc", ppc_toc, 0 },
243 { "long", ppc_xcoff_cons, 2 },
244 { "llong", ppc_xcoff_cons, 3 },
245 { "word", ppc_xcoff_cons, 1 },
246 { "short", ppc_xcoff_cons, 1 },
247 { "vbyte", ppc_vbyte, 0 },
248 { "weak", ppc_weak, 0 },
249
250 /* Enable GNU syntax for symbol visibility. */
251 {"internal", ppc_GNU_visibility, SYM_V_INTERNAL},
252 {"hidden", ppc_GNU_visibility, SYM_V_HIDDEN},
253 {"protected", ppc_GNU_visibility, SYM_V_PROTECTED},
254 #endif
255
256 #ifdef OBJ_ELF
257 { "llong", cons, 8 },
258 { "rdata", ppc_elf_rdata, 0 },
259 { "rodata", ppc_elf_rdata, 0 },
260 { "lcomm", ppc_elf_lcomm, 0 },
261 { "localentry", ppc_elf_localentry, 0 },
262 { "abiversion", ppc_elf_abiversion, 0 },
263 { "gnu_attribute", ppc_elf_gnu_attribute, 0},
264 #endif
265
266 #if defined (OBJ_XCOFF) || defined (OBJ_ELF)
267 { "tc", ppc_tc, 0 },
268 { "machine", ppc_machine, 0 },
269 #endif
270
271 { NULL, NULL, 0 }
272 };
273
274 \f
275 /* Predefined register names if -mregnames (or default for Windows NT).
276 In general, there are lots of them, in an attempt to be compatible
277 with a number of other Windows NT assemblers. */
278
279 /* Structure to hold information about predefined registers. */
280 struct pd_reg
281 {
282 const char *name;
283 unsigned short value;
284 unsigned short flags;
285 };
286
287 /* List of registers that are pre-defined:
288
289 Each general register has predefined names of the form:
290 1. r<reg_num> which has the value <reg_num>.
291 2. r.<reg_num> which has the value <reg_num>.
292
293 Each floating point register has predefined names of the form:
294 1. f<reg_num> which has the value <reg_num>.
295 2. f.<reg_num> which has the value <reg_num>.
296
297 Each vector unit register has predefined names of the form:
298 1. v<reg_num> which has the value <reg_num>.
299 2. v.<reg_num> which has the value <reg_num>.
300
301 Each condition register has predefined names of the form:
302 1. cr<reg_num> which has the value <reg_num>.
303 2. cr.<reg_num> which has the value <reg_num>.
304
305 There are individual registers as well:
306 sp or r.sp has the value 1
307 rtoc or r.toc has the value 2
308 xer has the value 1
309 lr has the value 8
310 ctr has the value 9
311 dar has the value 19
312 dsisr has the value 18
313 dec has the value 22
314 sdr1 has the value 25
315 srr0 has the value 26
316 srr1 has the value 27
317
318 The table is sorted. Suitable for searching by a binary search. */
319
320 static const struct pd_reg pre_defined_registers[] =
321 {
322 /* VSX accumulators. */
323 { "a0", 0, PPC_OPERAND_ACC },
324 { "a1", 1, PPC_OPERAND_ACC },
325 { "a2", 2, PPC_OPERAND_ACC },
326 { "a3", 3, PPC_OPERAND_ACC },
327 { "a4", 4, PPC_OPERAND_ACC },
328 { "a5", 5, PPC_OPERAND_ACC },
329 { "a6", 6, PPC_OPERAND_ACC },
330 { "a7", 7, PPC_OPERAND_ACC },
331
332 /* Condition Registers */
333 { "cr.0", 0, PPC_OPERAND_CR_REG },
334 { "cr.1", 1, PPC_OPERAND_CR_REG },
335 { "cr.2", 2, PPC_OPERAND_CR_REG },
336 { "cr.3", 3, PPC_OPERAND_CR_REG },
337 { "cr.4", 4, PPC_OPERAND_CR_REG },
338 { "cr.5", 5, PPC_OPERAND_CR_REG },
339 { "cr.6", 6, PPC_OPERAND_CR_REG },
340 { "cr.7", 7, PPC_OPERAND_CR_REG },
341
342 { "cr0", 0, PPC_OPERAND_CR_REG },
343 { "cr1", 1, PPC_OPERAND_CR_REG },
344 { "cr2", 2, PPC_OPERAND_CR_REG },
345 { "cr3", 3, PPC_OPERAND_CR_REG },
346 { "cr4", 4, PPC_OPERAND_CR_REG },
347 { "cr5", 5, PPC_OPERAND_CR_REG },
348 { "cr6", 6, PPC_OPERAND_CR_REG },
349 { "cr7", 7, PPC_OPERAND_CR_REG },
350
351 { "ctr", 9, PPC_OPERAND_SPR },
352 { "dar", 19, PPC_OPERAND_SPR },
353 { "dec", 22, PPC_OPERAND_SPR },
354 { "dsisr", 18, PPC_OPERAND_SPR },
355
356 /* Dense Math Registers. */
357 { "dm0", 0, PPC_OPERAND_DMR },
358 { "dm1", 1, PPC_OPERAND_DMR },
359 { "dm2", 2, PPC_OPERAND_DMR },
360 { "dm3", 3, PPC_OPERAND_DMR },
361 { "dm4", 4, PPC_OPERAND_DMR },
362 { "dm5", 5, PPC_OPERAND_DMR },
363 { "dm6", 6, PPC_OPERAND_DMR },
364 { "dm7", 7, PPC_OPERAND_DMR },
365
366 /* Floating point registers */
367 { "f.0", 0, PPC_OPERAND_FPR },
368 { "f.1", 1, PPC_OPERAND_FPR },
369 { "f.10", 10, PPC_OPERAND_FPR },
370 { "f.11", 11, PPC_OPERAND_FPR },
371 { "f.12", 12, PPC_OPERAND_FPR },
372 { "f.13", 13, PPC_OPERAND_FPR },
373 { "f.14", 14, PPC_OPERAND_FPR },
374 { "f.15", 15, PPC_OPERAND_FPR },
375 { "f.16", 16, PPC_OPERAND_FPR },
376 { "f.17", 17, PPC_OPERAND_FPR },
377 { "f.18", 18, PPC_OPERAND_FPR },
378 { "f.19", 19, PPC_OPERAND_FPR },
379 { "f.2", 2, PPC_OPERAND_FPR },
380 { "f.20", 20, PPC_OPERAND_FPR },
381 { "f.21", 21, PPC_OPERAND_FPR },
382 { "f.22", 22, PPC_OPERAND_FPR },
383 { "f.23", 23, PPC_OPERAND_FPR },
384 { "f.24", 24, PPC_OPERAND_FPR },
385 { "f.25", 25, PPC_OPERAND_FPR },
386 { "f.26", 26, PPC_OPERAND_FPR },
387 { "f.27", 27, PPC_OPERAND_FPR },
388 { "f.28", 28, PPC_OPERAND_FPR },
389 { "f.29", 29, PPC_OPERAND_FPR },
390 { "f.3", 3, PPC_OPERAND_FPR },
391 { "f.30", 30, PPC_OPERAND_FPR },
392 { "f.31", 31, PPC_OPERAND_FPR },
393 { "f.32", 32, PPC_OPERAND_VSR },
394 { "f.33", 33, PPC_OPERAND_VSR },
395 { "f.34", 34, PPC_OPERAND_VSR },
396 { "f.35", 35, PPC_OPERAND_VSR },
397 { "f.36", 36, PPC_OPERAND_VSR },
398 { "f.37", 37, PPC_OPERAND_VSR },
399 { "f.38", 38, PPC_OPERAND_VSR },
400 { "f.39", 39, PPC_OPERAND_VSR },
401 { "f.4", 4, PPC_OPERAND_FPR },
402 { "f.40", 40, PPC_OPERAND_VSR },
403 { "f.41", 41, PPC_OPERAND_VSR },
404 { "f.42", 42, PPC_OPERAND_VSR },
405 { "f.43", 43, PPC_OPERAND_VSR },
406 { "f.44", 44, PPC_OPERAND_VSR },
407 { "f.45", 45, PPC_OPERAND_VSR },
408 { "f.46", 46, PPC_OPERAND_VSR },
409 { "f.47", 47, PPC_OPERAND_VSR },
410 { "f.48", 48, PPC_OPERAND_VSR },
411 { "f.49", 49, PPC_OPERAND_VSR },
412 { "f.5", 5, PPC_OPERAND_FPR },
413 { "f.50", 50, PPC_OPERAND_VSR },
414 { "f.51", 51, PPC_OPERAND_VSR },
415 { "f.52", 52, PPC_OPERAND_VSR },
416 { "f.53", 53, PPC_OPERAND_VSR },
417 { "f.54", 54, PPC_OPERAND_VSR },
418 { "f.55", 55, PPC_OPERAND_VSR },
419 { "f.56", 56, PPC_OPERAND_VSR },
420 { "f.57", 57, PPC_OPERAND_VSR },
421 { "f.58", 58, PPC_OPERAND_VSR },
422 { "f.59", 59, PPC_OPERAND_VSR },
423 { "f.6", 6, PPC_OPERAND_FPR },
424 { "f.60", 60, PPC_OPERAND_VSR },
425 { "f.61", 61, PPC_OPERAND_VSR },
426 { "f.62", 62, PPC_OPERAND_VSR },
427 { "f.63", 63, PPC_OPERAND_VSR },
428 { "f.7", 7, PPC_OPERAND_FPR },
429 { "f.8", 8, PPC_OPERAND_FPR },
430 { "f.9", 9, PPC_OPERAND_FPR },
431
432 { "f0", 0, PPC_OPERAND_FPR },
433 { "f1", 1, PPC_OPERAND_FPR },
434 { "f10", 10, PPC_OPERAND_FPR },
435 { "f11", 11, PPC_OPERAND_FPR },
436 { "f12", 12, PPC_OPERAND_FPR },
437 { "f13", 13, PPC_OPERAND_FPR },
438 { "f14", 14, PPC_OPERAND_FPR },
439 { "f15", 15, PPC_OPERAND_FPR },
440 { "f16", 16, PPC_OPERAND_FPR },
441 { "f17", 17, PPC_OPERAND_FPR },
442 { "f18", 18, PPC_OPERAND_FPR },
443 { "f19", 19, PPC_OPERAND_FPR },
444 { "f2", 2, PPC_OPERAND_FPR },
445 { "f20", 20, PPC_OPERAND_FPR },
446 { "f21", 21, PPC_OPERAND_FPR },
447 { "f22", 22, PPC_OPERAND_FPR },
448 { "f23", 23, PPC_OPERAND_FPR },
449 { "f24", 24, PPC_OPERAND_FPR },
450 { "f25", 25, PPC_OPERAND_FPR },
451 { "f26", 26, PPC_OPERAND_FPR },
452 { "f27", 27, PPC_OPERAND_FPR },
453 { "f28", 28, PPC_OPERAND_FPR },
454 { "f29", 29, PPC_OPERAND_FPR },
455 { "f3", 3, PPC_OPERAND_FPR },
456 { "f30", 30, PPC_OPERAND_FPR },
457 { "f31", 31, PPC_OPERAND_FPR },
458 { "f32", 32, PPC_OPERAND_VSR },
459 { "f33", 33, PPC_OPERAND_VSR },
460 { "f34", 34, PPC_OPERAND_VSR },
461 { "f35", 35, PPC_OPERAND_VSR },
462 { "f36", 36, PPC_OPERAND_VSR },
463 { "f37", 37, PPC_OPERAND_VSR },
464 { "f38", 38, PPC_OPERAND_VSR },
465 { "f39", 39, PPC_OPERAND_VSR },
466 { "f4", 4, PPC_OPERAND_FPR },
467 { "f40", 40, PPC_OPERAND_VSR },
468 { "f41", 41, PPC_OPERAND_VSR },
469 { "f42", 42, PPC_OPERAND_VSR },
470 { "f43", 43, PPC_OPERAND_VSR },
471 { "f44", 44, PPC_OPERAND_VSR },
472 { "f45", 45, PPC_OPERAND_VSR },
473 { "f46", 46, PPC_OPERAND_VSR },
474 { "f47", 47, PPC_OPERAND_VSR },
475 { "f48", 48, PPC_OPERAND_VSR },
476 { "f49", 49, PPC_OPERAND_VSR },
477 { "f5", 5, PPC_OPERAND_FPR },
478 { "f50", 50, PPC_OPERAND_VSR },
479 { "f51", 51, PPC_OPERAND_VSR },
480 { "f52", 52, PPC_OPERAND_VSR },
481 { "f53", 53, PPC_OPERAND_VSR },
482 { "f54", 54, PPC_OPERAND_VSR },
483 { "f55", 55, PPC_OPERAND_VSR },
484 { "f56", 56, PPC_OPERAND_VSR },
485 { "f57", 57, PPC_OPERAND_VSR },
486 { "f58", 58, PPC_OPERAND_VSR },
487 { "f59", 59, PPC_OPERAND_VSR },
488 { "f6", 6, PPC_OPERAND_FPR },
489 { "f60", 60, PPC_OPERAND_VSR },
490 { "f61", 61, PPC_OPERAND_VSR },
491 { "f62", 62, PPC_OPERAND_VSR },
492 { "f63", 63, PPC_OPERAND_VSR },
493 { "f7", 7, PPC_OPERAND_FPR },
494 { "f8", 8, PPC_OPERAND_FPR },
495 { "f9", 9, PPC_OPERAND_FPR },
496
497 /* Quantization registers used with pair single instructions. */
498 { "gqr.0", 0, PPC_OPERAND_GQR },
499 { "gqr.1", 1, PPC_OPERAND_GQR },
500 { "gqr.2", 2, PPC_OPERAND_GQR },
501 { "gqr.3", 3, PPC_OPERAND_GQR },
502 { "gqr.4", 4, PPC_OPERAND_GQR },
503 { "gqr.5", 5, PPC_OPERAND_GQR },
504 { "gqr.6", 6, PPC_OPERAND_GQR },
505 { "gqr.7", 7, PPC_OPERAND_GQR },
506 { "gqr0", 0, PPC_OPERAND_GQR },
507 { "gqr1", 1, PPC_OPERAND_GQR },
508 { "gqr2", 2, PPC_OPERAND_GQR },
509 { "gqr3", 3, PPC_OPERAND_GQR },
510 { "gqr4", 4, PPC_OPERAND_GQR },
511 { "gqr5", 5, PPC_OPERAND_GQR },
512 { "gqr6", 6, PPC_OPERAND_GQR },
513 { "gqr7", 7, PPC_OPERAND_GQR },
514
515 { "lr", 8, PPC_OPERAND_SPR },
516
517 /* General Purpose Registers */
518 { "r.0", 0, PPC_OPERAND_GPR },
519 { "r.1", 1, PPC_OPERAND_GPR },
520 { "r.10", 10, PPC_OPERAND_GPR },
521 { "r.11", 11, PPC_OPERAND_GPR },
522 { "r.12", 12, PPC_OPERAND_GPR },
523 { "r.13", 13, PPC_OPERAND_GPR },
524 { "r.14", 14, PPC_OPERAND_GPR },
525 { "r.15", 15, PPC_OPERAND_GPR },
526 { "r.16", 16, PPC_OPERAND_GPR },
527 { "r.17", 17, PPC_OPERAND_GPR },
528 { "r.18", 18, PPC_OPERAND_GPR },
529 { "r.19", 19, PPC_OPERAND_GPR },
530 { "r.2", 2, PPC_OPERAND_GPR },
531 { "r.20", 20, PPC_OPERAND_GPR },
532 { "r.21", 21, PPC_OPERAND_GPR },
533 { "r.22", 22, PPC_OPERAND_GPR },
534 { "r.23", 23, PPC_OPERAND_GPR },
535 { "r.24", 24, PPC_OPERAND_GPR },
536 { "r.25", 25, PPC_OPERAND_GPR },
537 { "r.26", 26, PPC_OPERAND_GPR },
538 { "r.27", 27, PPC_OPERAND_GPR },
539 { "r.28", 28, PPC_OPERAND_GPR },
540 { "r.29", 29, PPC_OPERAND_GPR },
541 { "r.3", 3, PPC_OPERAND_GPR },
542 { "r.30", 30, PPC_OPERAND_GPR },
543 { "r.31", 31, PPC_OPERAND_GPR },
544 { "r.4", 4, PPC_OPERAND_GPR },
545 { "r.5", 5, PPC_OPERAND_GPR },
546 { "r.6", 6, PPC_OPERAND_GPR },
547 { "r.7", 7, PPC_OPERAND_GPR },
548 { "r.8", 8, PPC_OPERAND_GPR },
549 { "r.9", 9, PPC_OPERAND_GPR },
550
551 { "r.sp", 1, PPC_OPERAND_GPR },
552
553 { "r.toc", 2, PPC_OPERAND_GPR },
554
555 { "r0", 0, PPC_OPERAND_GPR },
556 { "r1", 1, PPC_OPERAND_GPR },
557 { "r10", 10, PPC_OPERAND_GPR },
558 { "r11", 11, PPC_OPERAND_GPR },
559 { "r12", 12, PPC_OPERAND_GPR },
560 { "r13", 13, PPC_OPERAND_GPR },
561 { "r14", 14, PPC_OPERAND_GPR },
562 { "r15", 15, PPC_OPERAND_GPR },
563 { "r16", 16, PPC_OPERAND_GPR },
564 { "r17", 17, PPC_OPERAND_GPR },
565 { "r18", 18, PPC_OPERAND_GPR },
566 { "r19", 19, PPC_OPERAND_GPR },
567 { "r2", 2, PPC_OPERAND_GPR },
568 { "r20", 20, PPC_OPERAND_GPR },
569 { "r21", 21, PPC_OPERAND_GPR },
570 { "r22", 22, PPC_OPERAND_GPR },
571 { "r23", 23, PPC_OPERAND_GPR },
572 { "r24", 24, PPC_OPERAND_GPR },
573 { "r25", 25, PPC_OPERAND_GPR },
574 { "r26", 26, PPC_OPERAND_GPR },
575 { "r27", 27, PPC_OPERAND_GPR },
576 { "r28", 28, PPC_OPERAND_GPR },
577 { "r29", 29, PPC_OPERAND_GPR },
578 { "r3", 3, PPC_OPERAND_GPR },
579 { "r30", 30, PPC_OPERAND_GPR },
580 { "r31", 31, PPC_OPERAND_GPR },
581 { "r4", 4, PPC_OPERAND_GPR },
582 { "r5", 5, PPC_OPERAND_GPR },
583 { "r6", 6, PPC_OPERAND_GPR },
584 { "r7", 7, PPC_OPERAND_GPR },
585 { "r8", 8, PPC_OPERAND_GPR },
586 { "r9", 9, PPC_OPERAND_GPR },
587
588 { "rtoc", 2, PPC_OPERAND_GPR },
589
590 { "sdr1", 25, PPC_OPERAND_SPR },
591
592 { "sp", 1, PPC_OPERAND_GPR },
593
594 { "srr0", 26, PPC_OPERAND_SPR },
595 { "srr1", 27, PPC_OPERAND_SPR },
596
597 /* Vector (Altivec/VMX) registers */
598 { "v.0", 0, PPC_OPERAND_VR },
599 { "v.1", 1, PPC_OPERAND_VR },
600 { "v.10", 10, PPC_OPERAND_VR },
601 { "v.11", 11, PPC_OPERAND_VR },
602 { "v.12", 12, PPC_OPERAND_VR },
603 { "v.13", 13, PPC_OPERAND_VR },
604 { "v.14", 14, PPC_OPERAND_VR },
605 { "v.15", 15, PPC_OPERAND_VR },
606 { "v.16", 16, PPC_OPERAND_VR },
607 { "v.17", 17, PPC_OPERAND_VR },
608 { "v.18", 18, PPC_OPERAND_VR },
609 { "v.19", 19, PPC_OPERAND_VR },
610 { "v.2", 2, PPC_OPERAND_VR },
611 { "v.20", 20, PPC_OPERAND_VR },
612 { "v.21", 21, PPC_OPERAND_VR },
613 { "v.22", 22, PPC_OPERAND_VR },
614 { "v.23", 23, PPC_OPERAND_VR },
615 { "v.24", 24, PPC_OPERAND_VR },
616 { "v.25", 25, PPC_OPERAND_VR },
617 { "v.26", 26, PPC_OPERAND_VR },
618 { "v.27", 27, PPC_OPERAND_VR },
619 { "v.28", 28, PPC_OPERAND_VR },
620 { "v.29", 29, PPC_OPERAND_VR },
621 { "v.3", 3, PPC_OPERAND_VR },
622 { "v.30", 30, PPC_OPERAND_VR },
623 { "v.31", 31, PPC_OPERAND_VR },
624 { "v.4", 4, PPC_OPERAND_VR },
625 { "v.5", 5, PPC_OPERAND_VR },
626 { "v.6", 6, PPC_OPERAND_VR },
627 { "v.7", 7, PPC_OPERAND_VR },
628 { "v.8", 8, PPC_OPERAND_VR },
629 { "v.9", 9, PPC_OPERAND_VR },
630
631 { "v0", 0, PPC_OPERAND_VR },
632 { "v1", 1, PPC_OPERAND_VR },
633 { "v10", 10, PPC_OPERAND_VR },
634 { "v11", 11, PPC_OPERAND_VR },
635 { "v12", 12, PPC_OPERAND_VR },
636 { "v13", 13, PPC_OPERAND_VR },
637 { "v14", 14, PPC_OPERAND_VR },
638 { "v15", 15, PPC_OPERAND_VR },
639 { "v16", 16, PPC_OPERAND_VR },
640 { "v17", 17, PPC_OPERAND_VR },
641 { "v18", 18, PPC_OPERAND_VR },
642 { "v19", 19, PPC_OPERAND_VR },
643 { "v2", 2, PPC_OPERAND_VR },
644 { "v20", 20, PPC_OPERAND_VR },
645 { "v21", 21, PPC_OPERAND_VR },
646 { "v22", 22, PPC_OPERAND_VR },
647 { "v23", 23, PPC_OPERAND_VR },
648 { "v24", 24, PPC_OPERAND_VR },
649 { "v25", 25, PPC_OPERAND_VR },
650 { "v26", 26, PPC_OPERAND_VR },
651 { "v27", 27, PPC_OPERAND_VR },
652 { "v28", 28, PPC_OPERAND_VR },
653 { "v29", 29, PPC_OPERAND_VR },
654 { "v3", 3, PPC_OPERAND_VR },
655 { "v30", 30, PPC_OPERAND_VR },
656 { "v31", 31, PPC_OPERAND_VR },
657 { "v4", 4, PPC_OPERAND_VR },
658 { "v5", 5, PPC_OPERAND_VR },
659 { "v6", 6, PPC_OPERAND_VR },
660 { "v7", 7, PPC_OPERAND_VR },
661 { "v8", 8, PPC_OPERAND_VR },
662 { "v9", 9, PPC_OPERAND_VR },
663
664 /* Vector Scalar (VSX) registers (ISA 2.06). */
665 { "vs.0", 0, PPC_OPERAND_VSR },
666 { "vs.1", 1, PPC_OPERAND_VSR },
667 { "vs.10", 10, PPC_OPERAND_VSR },
668 { "vs.11", 11, PPC_OPERAND_VSR },
669 { "vs.12", 12, PPC_OPERAND_VSR },
670 { "vs.13", 13, PPC_OPERAND_VSR },
671 { "vs.14", 14, PPC_OPERAND_VSR },
672 { "vs.15", 15, PPC_OPERAND_VSR },
673 { "vs.16", 16, PPC_OPERAND_VSR },
674 { "vs.17", 17, PPC_OPERAND_VSR },
675 { "vs.18", 18, PPC_OPERAND_VSR },
676 { "vs.19", 19, PPC_OPERAND_VSR },
677 { "vs.2", 2, PPC_OPERAND_VSR },
678 { "vs.20", 20, PPC_OPERAND_VSR },
679 { "vs.21", 21, PPC_OPERAND_VSR },
680 { "vs.22", 22, PPC_OPERAND_VSR },
681 { "vs.23", 23, PPC_OPERAND_VSR },
682 { "vs.24", 24, PPC_OPERAND_VSR },
683 { "vs.25", 25, PPC_OPERAND_VSR },
684 { "vs.26", 26, PPC_OPERAND_VSR },
685 { "vs.27", 27, PPC_OPERAND_VSR },
686 { "vs.28", 28, PPC_OPERAND_VSR },
687 { "vs.29", 29, PPC_OPERAND_VSR },
688 { "vs.3", 3, PPC_OPERAND_VSR },
689 { "vs.30", 30, PPC_OPERAND_VSR },
690 { "vs.31", 31, PPC_OPERAND_VSR },
691 { "vs.32", 32, PPC_OPERAND_VSR },
692 { "vs.33", 33, PPC_OPERAND_VSR },
693 { "vs.34", 34, PPC_OPERAND_VSR },
694 { "vs.35", 35, PPC_OPERAND_VSR },
695 { "vs.36", 36, PPC_OPERAND_VSR },
696 { "vs.37", 37, PPC_OPERAND_VSR },
697 { "vs.38", 38, PPC_OPERAND_VSR },
698 { "vs.39", 39, PPC_OPERAND_VSR },
699 { "vs.4", 4, PPC_OPERAND_VSR },
700 { "vs.40", 40, PPC_OPERAND_VSR },
701 { "vs.41", 41, PPC_OPERAND_VSR },
702 { "vs.42", 42, PPC_OPERAND_VSR },
703 { "vs.43", 43, PPC_OPERAND_VSR },
704 { "vs.44", 44, PPC_OPERAND_VSR },
705 { "vs.45", 45, PPC_OPERAND_VSR },
706 { "vs.46", 46, PPC_OPERAND_VSR },
707 { "vs.47", 47, PPC_OPERAND_VSR },
708 { "vs.48", 48, PPC_OPERAND_VSR },
709 { "vs.49", 49, PPC_OPERAND_VSR },
710 { "vs.5", 5, PPC_OPERAND_VSR },
711 { "vs.50", 50, PPC_OPERAND_VSR },
712 { "vs.51", 51, PPC_OPERAND_VSR },
713 { "vs.52", 52, PPC_OPERAND_VSR },
714 { "vs.53", 53, PPC_OPERAND_VSR },
715 { "vs.54", 54, PPC_OPERAND_VSR },
716 { "vs.55", 55, PPC_OPERAND_VSR },
717 { "vs.56", 56, PPC_OPERAND_VSR },
718 { "vs.57", 57, PPC_OPERAND_VSR },
719 { "vs.58", 58, PPC_OPERAND_VSR },
720 { "vs.59", 59, PPC_OPERAND_VSR },
721 { "vs.6", 6, PPC_OPERAND_VSR },
722 { "vs.60", 60, PPC_OPERAND_VSR },
723 { "vs.61", 61, PPC_OPERAND_VSR },
724 { "vs.62", 62, PPC_OPERAND_VSR },
725 { "vs.63", 63, PPC_OPERAND_VSR },
726 { "vs.7", 7, PPC_OPERAND_VSR },
727 { "vs.8", 8, PPC_OPERAND_VSR },
728 { "vs.9", 9, PPC_OPERAND_VSR },
729
730 { "vs0", 0, PPC_OPERAND_VSR },
731 { "vs1", 1, PPC_OPERAND_VSR },
732 { "vs10", 10, PPC_OPERAND_VSR },
733 { "vs11", 11, PPC_OPERAND_VSR },
734 { "vs12", 12, PPC_OPERAND_VSR },
735 { "vs13", 13, PPC_OPERAND_VSR },
736 { "vs14", 14, PPC_OPERAND_VSR },
737 { "vs15", 15, PPC_OPERAND_VSR },
738 { "vs16", 16, PPC_OPERAND_VSR },
739 { "vs17", 17, PPC_OPERAND_VSR },
740 { "vs18", 18, PPC_OPERAND_VSR },
741 { "vs19", 19, PPC_OPERAND_VSR },
742 { "vs2", 2, PPC_OPERAND_VSR },
743 { "vs20", 20, PPC_OPERAND_VSR },
744 { "vs21", 21, PPC_OPERAND_VSR },
745 { "vs22", 22, PPC_OPERAND_VSR },
746 { "vs23", 23, PPC_OPERAND_VSR },
747 { "vs24", 24, PPC_OPERAND_VSR },
748 { "vs25", 25, PPC_OPERAND_VSR },
749 { "vs26", 26, PPC_OPERAND_VSR },
750 { "vs27", 27, PPC_OPERAND_VSR },
751 { "vs28", 28, PPC_OPERAND_VSR },
752 { "vs29", 29, PPC_OPERAND_VSR },
753 { "vs3", 3, PPC_OPERAND_VSR },
754 { "vs30", 30, PPC_OPERAND_VSR },
755 { "vs31", 31, PPC_OPERAND_VSR },
756 { "vs32", 32, PPC_OPERAND_VSR },
757 { "vs33", 33, PPC_OPERAND_VSR },
758 { "vs34", 34, PPC_OPERAND_VSR },
759 { "vs35", 35, PPC_OPERAND_VSR },
760 { "vs36", 36, PPC_OPERAND_VSR },
761 { "vs37", 37, PPC_OPERAND_VSR },
762 { "vs38", 38, PPC_OPERAND_VSR },
763 { "vs39", 39, PPC_OPERAND_VSR },
764 { "vs4", 4, PPC_OPERAND_VSR },
765 { "vs40", 40, PPC_OPERAND_VSR },
766 { "vs41", 41, PPC_OPERAND_VSR },
767 { "vs42", 42, PPC_OPERAND_VSR },
768 { "vs43", 43, PPC_OPERAND_VSR },
769 { "vs44", 44, PPC_OPERAND_VSR },
770 { "vs45", 45, PPC_OPERAND_VSR },
771 { "vs46", 46, PPC_OPERAND_VSR },
772 { "vs47", 47, PPC_OPERAND_VSR },
773 { "vs48", 48, PPC_OPERAND_VSR },
774 { "vs49", 49, PPC_OPERAND_VSR },
775 { "vs5", 5, PPC_OPERAND_VSR },
776 { "vs50", 50, PPC_OPERAND_VSR },
777 { "vs51", 51, PPC_OPERAND_VSR },
778 { "vs52", 52, PPC_OPERAND_VSR },
779 { "vs53", 53, PPC_OPERAND_VSR },
780 { "vs54", 54, PPC_OPERAND_VSR },
781 { "vs55", 55, PPC_OPERAND_VSR },
782 { "vs56", 56, PPC_OPERAND_VSR },
783 { "vs57", 57, PPC_OPERAND_VSR },
784 { "vs58", 58, PPC_OPERAND_VSR },
785 { "vs59", 59, PPC_OPERAND_VSR },
786 { "vs6", 6, PPC_OPERAND_VSR },
787 { "vs60", 60, PPC_OPERAND_VSR },
788 { "vs61", 61, PPC_OPERAND_VSR },
789 { "vs62", 62, PPC_OPERAND_VSR },
790 { "vs63", 63, PPC_OPERAND_VSR },
791 { "vs7", 7, PPC_OPERAND_VSR },
792 { "vs8", 8, PPC_OPERAND_VSR },
793 { "vs9", 9, PPC_OPERAND_VSR },
794
795 { "xer", 1, PPC_OPERAND_SPR }
796 };
797
798 /* Given NAME, find the register number associated with that name, return
799 the integer value associated with the given name or -1 on failure. */
800
801 static const struct pd_reg *
802 reg_name_search (const struct pd_reg *regs, int regcount, const char *name)
803 {
804 int middle, low, high;
805 int cmp;
806
807 low = 0;
808 high = regcount - 1;
809
810 do
811 {
812 middle = (low + high) / 2;
813 cmp = strcasecmp (name, regs[middle].name);
814 if (cmp < 0)
815 high = middle - 1;
816 else if (cmp > 0)
817 low = middle + 1;
818 else
819 return &regs[middle];
820 }
821 while (low <= high);
822
823 return NULL;
824 }
825
826 /* Called for a non-symbol, non-number operand. Handles %reg. */
827
828 void
829 md_operand (expressionS *expressionP)
830 {
831 const struct pd_reg *reg;
832 char *name;
833 char *start;
834 char c;
835
836 if (input_line_pointer[0] != '%' || !ISALPHA (input_line_pointer[1]))
837 return;
838
839 start = input_line_pointer;
840 ++input_line_pointer;
841
842 c = get_symbol_name (&name);
843 reg = reg_name_search (pre_defined_registers,
844 ARRAY_SIZE (pre_defined_registers), name);
845 *input_line_pointer = c;
846
847 if (reg != NULL)
848 {
849 expressionP->X_op = O_register;
850 expressionP->X_add_number = reg->value;
851 expressionP->X_md = reg->flags;
852 }
853 else
854 input_line_pointer = start;
855 }
856
857 /* Whether to do the special parsing. */
858 static bool cr_operand;
859
860 /* Extra names to recognise in a condition code. This table is sorted. */
861 static const struct pd_reg cr_cond[] =
862 {
863 { "eq", 2, PPC_OPERAND_CR_BIT },
864 { "gt", 1, PPC_OPERAND_CR_BIT },
865 { "lt", 0, PPC_OPERAND_CR_BIT },
866 { "so", 3, PPC_OPERAND_CR_BIT },
867 { "un", 3, PPC_OPERAND_CR_BIT }
868 };
869
870 /* This function is called for each symbol seen in an expression. It
871 handles the special parsing which PowerPC assemblers are supposed
872 to use for condition codes, and recognises other registers when
873 -mregnames. */
874
875 void
876 ppc_parse_name (const char *name, expressionS *exp, enum expr_mode mode)
877 {
878 const struct pd_reg *reg = NULL;
879
880 if (cr_operand)
881 reg = reg_name_search (cr_cond, ARRAY_SIZE (cr_cond), name);
882 if (reg == NULL && (cr_operand || reg_names_p))
883 reg = reg_name_search (pre_defined_registers,
884 ARRAY_SIZE (pre_defined_registers), name);
885 if (reg != NULL)
886 {
887 exp->X_op = O_register;
888 exp->X_add_number = reg->value;
889 exp->X_md = reg->flags;
890 return;
891 }
892
893 /* The following replaces code in expr.c operand() after the
894 md_parse_name call. There is too much difference between targets
895 in the way X_md is used to move this code into expr.c. If you
896 do, you'll get failures on x86 due to uninitialised X_md fields,
897 failures on alpha and other targets due to creating register
898 symbols as O_constant rather than O_register, and failures on arc
899 and others due to expecting expr() to leave X_md alone. */
900 symbolS *sym = symbol_find_or_make (name);
901
902 /* If we have an absolute symbol or a reg, then we know its value
903 now. Copy the symbol value expression to propagate X_md. */
904 bool done = false;
905 if (mode != expr_defer
906 && !S_FORCE_RELOC (sym, 0))
907 {
908 segT segment = S_GET_SEGMENT (sym);
909 if (segment == absolute_section || segment == reg_section)
910 {
911 resolve_symbol_value (sym);
912 *exp = *symbol_get_value_expression (sym);
913 done = true;
914 }
915 }
916 if (!done)
917 {
918 exp->X_op = O_symbol;
919 exp->X_add_symbol = sym;
920 exp->X_add_number = 0;
921 }
922 }
923
924 /* Propagate X_md and check register expressions. This is to support
925 condition codes like 4*cr5+eq. */
926
927 int
928 ppc_optimize_expr (expressionS *left, operatorT op, expressionS *right)
929 {
930 /* Accept 4*cr<n> and cr<n>*4. */
931 if (op == O_multiply
932 && ((right->X_op == O_register
933 && right->X_md == PPC_OPERAND_CR_REG
934 && left->X_op == O_constant
935 && left->X_add_number == 4)
936 || (left->X_op == O_register
937 && left->X_md == PPC_OPERAND_CR_REG
938 && right->X_op == O_constant
939 && right->X_add_number == 4)))
940 {
941 left->X_op = O_register;
942 left->X_md = PPC_OPERAND_CR_REG | PPC_OPERAND_CR_BIT;
943 left->X_add_number *= right->X_add_number;
944 return 1;
945 }
946
947 /* Accept the above plus <cr bit>, and <cr bit> plus the above. */
948 if (right->X_op == O_register
949 && left->X_op == O_register
950 && op == O_add
951 && ((right->X_md == PPC_OPERAND_CR_BIT
952 && left->X_md == (PPC_OPERAND_CR_REG | PPC_OPERAND_CR_BIT))
953 || (right->X_md == (PPC_OPERAND_CR_REG | PPC_OPERAND_CR_BIT)
954 && left->X_md == PPC_OPERAND_CR_BIT)))
955 {
956 left->X_md = PPC_OPERAND_CR_BIT;
957 right->X_op = O_constant;
958 return 0;
959 }
960
961 /* Accept reg +/- constant. */
962 if (left->X_op == O_register
963 && !((op == O_add || op == O_subtract) && right->X_op == O_constant))
964 as_warn (_("invalid register expression"));
965
966 /* Accept constant + reg. */
967 if (right->X_op == O_register)
968 {
969 if (op == O_add && left->X_op == O_constant)
970 left->X_md = right->X_md;
971 else
972 as_warn (_("invalid register expression"));
973 }
974
975 return 0;
976 }
977 \f
978 /* Local variables. */
979
980 /* Whether to target xcoff64/elf64. */
981 static unsigned int ppc_obj64 = BFD_DEFAULT_TARGET_SIZE == 64;
982
983 /* A separate obstack for use by ppc_hash, so that we can quickly
984 throw away hash table memory . */
985 struct obstack insn_obstack;
986
987 /* Opcode hash table. */
988 static htab_t ppc_hash;
989
990 #ifdef OBJ_ELF
991 /* What type of shared library support to use. */
992 static enum { SHLIB_NONE, SHLIB_PIC, SHLIB_MRELOCATABLE } shlib = SHLIB_NONE;
993
994 /* Flags to set in the elf header. */
995 static flagword ppc_flags = 0;
996
997 /* Whether this is Solaris or not. */
998 #ifdef TARGET_SOLARIS_COMMENT
999 #define SOLARIS_P true
1000 #else
1001 #define SOLARIS_P false
1002 #endif
1003
1004 static bool msolaris = SOLARIS_P;
1005 #endif
1006
1007 #ifdef OBJ_XCOFF
1008
1009 /* The RS/6000 assembler uses the .csect pseudo-op to generate code
1010 using a bunch of different sections. These assembler sections,
1011 however, are all encompassed within the .text, .data or .bss sections
1012 of the final output file. We handle this by using different
1013 subsegments within these main segments.
1014 .tdata and .tbss sections only have one type of csects for now,
1015 but it's better to follow the same construction like the others. */
1016
1017 struct ppc_xcoff_section ppc_xcoff_text_section;
1018 struct ppc_xcoff_section ppc_xcoff_data_section;
1019 struct ppc_xcoff_section ppc_xcoff_bss_section;
1020 struct ppc_xcoff_section ppc_xcoff_tdata_section;
1021 struct ppc_xcoff_section ppc_xcoff_tbss_section;
1022
1023 /* Return true if the ppc_xcoff_section structure is already
1024 initialized. */
1025 static bool
1026 ppc_xcoff_section_is_initialized (struct ppc_xcoff_section *section)
1027 {
1028 return section->segment != NULL;
1029 }
1030
1031 /* Initialize a ppc_xcoff_section.
1032 Dummy symbols are used to ensure the position of .text over .data
1033 and .tdata. Moreover, they allow all algorithms here to be sure that
1034 csects isn't NULL. These symbols won't be output. */
1035 static void
1036 ppc_init_xcoff_section (struct ppc_xcoff_section *s, segT seg)
1037 {
1038 s->segment = seg;
1039 s->next_subsegment = 2;
1040 s->csects = symbol_make ("dummy\001");
1041 symbol_get_tc (s->csects)->within = s->csects;
1042 }
1043
1044 /* The current csect. */
1045 static symbolS *ppc_current_csect;
1046
1047 /* The RS/6000 assembler uses a TOC which holds addresses of functions
1048 and variables. Symbols are put in the TOC with the .tc pseudo-op.
1049 A special relocation is used when accessing TOC entries. We handle
1050 the TOC as a subsegment within the .data segment. We set it up if
1051 we see a .toc pseudo-op, and save the csect symbol here. */
1052 static symbolS *ppc_toc_csect;
1053
1054 /* The first frag in the TOC subsegment. */
1055 static fragS *ppc_toc_frag;
1056
1057 /* The first frag in the first subsegment after the TOC in the .data
1058 segment. NULL if there are no subsegments after the TOC. */
1059 static fragS *ppc_after_toc_frag;
1060
1061 /* The current static block. */
1062 static symbolS *ppc_current_block;
1063
1064 /* The COFF debugging section; set by md_begin. This is not the
1065 .debug section, but is instead the secret BFD section which will
1066 cause BFD to set the section number of a symbol to N_DEBUG. */
1067 static asection *ppc_coff_debug_section;
1068
1069 /* Structure to set the length field of the dwarf sections. */
1070 struct dw_subsection {
1071 /* Subsections are simply linked. */
1072 struct dw_subsection *link;
1073
1074 /* The subsection number. */
1075 subsegT subseg;
1076
1077 /* Expression to compute the length of the section. */
1078 expressionS end_exp;
1079 };
1080
1081 static struct dw_section {
1082 /* Corresponding section. */
1083 segT sect;
1084
1085 /* Simply linked list of subsections with a label. */
1086 struct dw_subsection *list_subseg;
1087
1088 /* The anonymous subsection. */
1089 struct dw_subsection *anon_subseg;
1090 } dw_sections[XCOFF_DWSECT_NBR_NAMES];
1091 #endif /* OBJ_XCOFF */
1092
1093 #ifdef OBJ_ELF
1094 symbolS *GOT_symbol; /* Pre-defined "_GLOBAL_OFFSET_TABLE" */
1095 unsigned long *ppc_apuinfo_list;
1096 unsigned int ppc_apuinfo_num;
1097 unsigned int ppc_apuinfo_num_alloc;
1098 #endif /* OBJ_ELF */
1099 \f
1100 #ifdef OBJ_ELF
1101 const char *const md_shortopts = "b:l:usm:K:VQ:";
1102 #else
1103 const char *const md_shortopts = "um:";
1104 #endif
1105 #define OPTION_NOPS (OPTION_MD_BASE + 0)
1106 const struct option md_longopts[] = {
1107 {"nops", required_argument, NULL, OPTION_NOPS},
1108 {"ppc476-workaround", no_argument, &warn_476, 1},
1109 {"no-ppc476-workaround", no_argument, &warn_476, 0},
1110 {NULL, no_argument, NULL, 0}
1111 };
1112 const size_t md_longopts_size = sizeof (md_longopts);
1113
1114 int
1115 md_parse_option (int c, const char *arg)
1116 {
1117 ppc_cpu_t new_cpu;
1118
1119 switch (c)
1120 {
1121 case 'u':
1122 /* -u means that any undefined symbols should be treated as
1123 external, which is the default for gas anyhow. */
1124 break;
1125
1126 #ifdef OBJ_ELF
1127 case 'l':
1128 /* Solaris as takes -le (presumably for little endian). For completeness
1129 sake, recognize -be also. */
1130 if (strcmp (arg, "e") == 0)
1131 {
1132 target_big_endian = 0;
1133 set_target_endian = 1;
1134 if (ppc_cpu & PPC_OPCODE_VLE)
1135 as_bad (_("the use of -mvle requires big endian."));
1136 }
1137 else
1138 return 0;
1139
1140 break;
1141
1142 case 'b':
1143 if (strcmp (arg, "e") == 0)
1144 {
1145 target_big_endian = 1;
1146 set_target_endian = 1;
1147 }
1148 else
1149 return 0;
1150
1151 break;
1152
1153 case 'K':
1154 /* Recognize -K PIC. */
1155 if (strcmp (arg, "PIC") == 0 || strcmp (arg, "pic") == 0)
1156 {
1157 shlib = SHLIB_PIC;
1158 ppc_flags |= EF_PPC_RELOCATABLE_LIB;
1159 }
1160 else
1161 return 0;
1162
1163 break;
1164 #endif
1165
1166 /* a64 and a32 determine whether to use XCOFF64 or XCOFF32. */
1167 case 'a':
1168 if (strcmp (arg, "64") == 0)
1169 {
1170 #ifdef BFD64
1171 ppc_obj64 = 1;
1172 if (ppc_cpu & PPC_OPCODE_VLE)
1173 as_bad (_("the use of -mvle requires -a32."));
1174 #else
1175 as_fatal (_("%s unsupported"), "-a64");
1176 #endif
1177 }
1178 else if (strcmp (arg, "32") == 0)
1179 ppc_obj64 = 0;
1180 else
1181 return 0;
1182 break;
1183
1184 case 'm':
1185 new_cpu = ppc_parse_cpu (ppc_cpu, &sticky, arg);
1186 /* "raw" is only valid for the disassembler. */
1187 if (new_cpu != 0 && (new_cpu & PPC_OPCODE_RAW) == 0)
1188 {
1189 ppc_cpu = new_cpu;
1190 if (strcmp (arg, "vle") == 0)
1191 {
1192 if (set_target_endian && target_big_endian == 0)
1193 as_bad (_("the use of -mvle requires big endian."));
1194 if (ppc_obj64)
1195 as_bad (_("the use of -mvle requires -a32."));
1196 }
1197 }
1198
1199 else if (strcmp (arg, "no-vle") == 0)
1200 {
1201 sticky &= ~PPC_OPCODE_VLE;
1202
1203 new_cpu = ppc_parse_cpu (ppc_cpu, &sticky, "booke");
1204 new_cpu &= ~PPC_OPCODE_VLE;
1205
1206 ppc_cpu = new_cpu;
1207 }
1208
1209 else if (strcmp (arg, "regnames") == 0)
1210 reg_names_p = true;
1211
1212 else if (strcmp (arg, "no-regnames") == 0)
1213 reg_names_p = false;
1214
1215 #ifdef OBJ_ELF
1216 /* -mrelocatable/-mrelocatable-lib -- warn about initializations
1217 that require relocation. */
1218 else if (strcmp (arg, "relocatable") == 0)
1219 {
1220 shlib = SHLIB_MRELOCATABLE;
1221 ppc_flags |= EF_PPC_RELOCATABLE;
1222 }
1223
1224 else if (strcmp (arg, "relocatable-lib") == 0)
1225 {
1226 shlib = SHLIB_MRELOCATABLE;
1227 ppc_flags |= EF_PPC_RELOCATABLE_LIB;
1228 }
1229
1230 /* -memb, set embedded bit. */
1231 else if (strcmp (arg, "emb") == 0)
1232 ppc_flags |= EF_PPC_EMB;
1233
1234 /* -mlittle/-mbig set the endianness. */
1235 else if (strcmp (arg, "little") == 0
1236 || strcmp (arg, "little-endian") == 0)
1237 {
1238 target_big_endian = 0;
1239 set_target_endian = 1;
1240 if (ppc_cpu & PPC_OPCODE_VLE)
1241 as_bad (_("the use of -mvle requires big endian."));
1242 }
1243
1244 else if (strcmp (arg, "big") == 0 || strcmp (arg, "big-endian") == 0)
1245 {
1246 target_big_endian = 1;
1247 set_target_endian = 1;
1248 }
1249
1250 else if (strcmp (arg, "solaris") == 0)
1251 {
1252 msolaris = true;
1253 ppc_comment_chars = ppc_solaris_comment_chars;
1254 }
1255
1256 else if (strcmp (arg, "no-solaris") == 0)
1257 {
1258 msolaris = false;
1259 ppc_comment_chars = ppc_eabi_comment_chars;
1260 }
1261 else if (strcmp (arg, "spe2") == 0)
1262 {
1263 ppc_cpu |= PPC_OPCODE_SPE2;
1264 }
1265 #endif
1266 else
1267 {
1268 as_bad (_("invalid switch -m%s"), arg);
1269 return 0;
1270 }
1271 break;
1272
1273 #ifdef OBJ_ELF
1274 /* -V: SVR4 argument to print version ID. */
1275 case 'V':
1276 print_version_id ();
1277 break;
1278
1279 /* -Qy, -Qn: SVR4 arguments controlling whether a .comment section
1280 should be emitted or not. FIXME: Not implemented. */
1281 case 'Q':
1282 break;
1283
1284 /* Solaris takes -s to specify that .stabs go in a .stabs section,
1285 rather than .stabs.excl, which is ignored by the linker.
1286 FIXME: Not implemented. */
1287 case 's':
1288 if (arg)
1289 return 0;
1290
1291 break;
1292 #endif
1293
1294 case OPTION_NOPS:
1295 {
1296 char *end;
1297 nop_limit = strtoul (optarg, &end, 0);
1298 if (*end)
1299 as_bad (_("--nops needs a numeric argument"));
1300 }
1301 break;
1302
1303 case 0:
1304 break;
1305
1306 default:
1307 return 0;
1308 }
1309
1310 return 1;
1311 }
1312
1313 static int
1314 is_ppc64_target (const bfd_target *targ, void *data ATTRIBUTE_UNUSED)
1315 {
1316 switch (targ->flavour)
1317 {
1318 #ifdef OBJ_ELF
1319 case bfd_target_elf_flavour:
1320 return startswith (targ->name, "elf64-powerpc");
1321 #endif
1322 #ifdef OBJ_XCOFF
1323 case bfd_target_xcoff_flavour:
1324 return (strcmp (targ->name, "aixcoff64-rs6000") == 0
1325 || strcmp (targ->name, "aix5coff64-rs6000") == 0);
1326 #endif
1327 default:
1328 return 0;
1329 }
1330 }
1331
1332 void
1333 md_show_usage (FILE *stream)
1334 {
1335 fprintf (stream, _("\
1336 PowerPC options:\n"));
1337 fprintf (stream, _("\
1338 -a32 generate ELF32/XCOFF32\n"));
1339 if (bfd_iterate_over_targets (is_ppc64_target, NULL))
1340 fprintf (stream, _("\
1341 -a64 generate ELF64/XCOFF64\n"));
1342 fprintf (stream, _("\
1343 -u ignored\n"));
1344 fprintf (stream, _("\
1345 -mpwrx, -mpwr2 generate code for POWER/2 (RIOS2)\n"));
1346 fprintf (stream, _("\
1347 -mpwr generate code for POWER (RIOS1)\n"));
1348 fprintf (stream, _("\
1349 -m601 generate code for PowerPC 601\n"));
1350 fprintf (stream, _("\
1351 -mppc, -mppc32, -m603, -m604\n\
1352 generate code for PowerPC 603/604\n"));
1353 fprintf (stream, _("\
1354 -m403 generate code for PowerPC 403\n"));
1355 fprintf (stream, _("\
1356 -m405 generate code for PowerPC 405\n"));
1357 fprintf (stream, _("\
1358 -m440 generate code for PowerPC 440\n"));
1359 fprintf (stream, _("\
1360 -m464 generate code for PowerPC 464\n"));
1361 fprintf (stream, _("\
1362 -m476 generate code for PowerPC 476\n"));
1363 fprintf (stream, _("\
1364 -m7400, -m7410, -m7450, -m7455\n\
1365 generate code for PowerPC 7400/7410/7450/7455\n"));
1366 fprintf (stream, _("\
1367 -m750cl, -mgekko, -mbroadway\n\
1368 generate code for PowerPC 750cl/Gekko/Broadway\n"));
1369 fprintf (stream, _("\
1370 -m821, -m850, -m860 generate code for PowerPC 821/850/860\n"));
1371 fprintf (stream, _("\
1372 -mppc64, -m620 generate code for PowerPC 620/625/630\n"));
1373 fprintf (stream, _("\
1374 -mppc64bridge generate code for PowerPC 64, including bridge insns\n"));
1375 fprintf (stream, _("\
1376 -mbooke generate code for 32-bit PowerPC BookE\n"));
1377 fprintf (stream, _("\
1378 -ma2 generate code for A2 architecture\n"));
1379 fprintf (stream, _("\
1380 -mpower4, -mpwr4 generate code for Power4 architecture\n"));
1381 fprintf (stream, _("\
1382 -mpower5, -mpwr5, -mpwr5x\n\
1383 generate code for Power5 architecture\n"));
1384 fprintf (stream, _("\
1385 -mpower6, -mpwr6 generate code for Power6 architecture\n"));
1386 fprintf (stream, _("\
1387 -mpower7, -mpwr7 generate code for Power7 architecture\n"));
1388 fprintf (stream, _("\
1389 -mpower8, -mpwr8 generate code for Power8 architecture\n"));
1390 fprintf (stream, _("\
1391 -mpower9, -mpwr9 generate code for Power9 architecture\n"));
1392 fprintf (stream, _("\
1393 -mpower10, -mpwr10 generate code for Power10 architecture\n"));
1394 fprintf (stream, _("\
1395 -mlibresoc generate code for Libre-SOC architecture\n"));
1396 fprintf (stream, _("\
1397 -mfuture generate code for 'future' architecture\n"));
1398 fprintf (stream, _("\
1399 -mcell generate code for Cell Broadband Engine architecture\n"));
1400 fprintf (stream, _("\
1401 -mcom generate code for Power/PowerPC common instructions\n"));
1402 fprintf (stream, _("\
1403 -many generate code for any architecture (PWR/PWRX/PPC)\n"));
1404 fprintf (stream, _("\
1405 -maltivec generate code for AltiVec\n"));
1406 fprintf (stream, _("\
1407 -mvsx generate code for Vector-Scalar (VSX) instructions\n"));
1408 fprintf (stream, _("\
1409 -me300 generate code for PowerPC e300 family\n"));
1410 fprintf (stream, _("\
1411 -me500, -me500x2 generate code for Motorola e500 core complex\n"));
1412 fprintf (stream, _("\
1413 -me500mc, generate code for Freescale e500mc core complex\n"));
1414 fprintf (stream, _("\
1415 -me500mc64, generate code for Freescale e500mc64 core complex\n"));
1416 fprintf (stream, _("\
1417 -me5500, generate code for Freescale e5500 core complex\n"));
1418 fprintf (stream, _("\
1419 -me6500, generate code for Freescale e6500 core complex\n"));
1420 fprintf (stream, _("\
1421 -mspe generate code for Motorola SPE instructions\n"));
1422 fprintf (stream, _("\
1423 -mspe2 generate code for Freescale SPE2 instructions\n"));
1424 fprintf (stream, _("\
1425 -mvle generate code for Freescale VLE instructions\n"));
1426 fprintf (stream, _("\
1427 -mtitan generate code for AppliedMicro Titan core complex\n"));
1428 fprintf (stream, _("\
1429 -mregnames Allow symbolic names for registers\n"));
1430 fprintf (stream, _("\
1431 -mno-regnames Do not allow symbolic names for registers\n"));
1432 #ifdef OBJ_ELF
1433 fprintf (stream, _("\
1434 -mrelocatable support for GCC's -mrelocatble option\n"));
1435 fprintf (stream, _("\
1436 -mrelocatable-lib support for GCC's -mrelocatble-lib option\n"));
1437 fprintf (stream, _("\
1438 -memb set PPC_EMB bit in ELF flags\n"));
1439 fprintf (stream, _("\
1440 -mlittle, -mlittle-endian, -le\n\
1441 generate code for a little endian machine\n"));
1442 fprintf (stream, _("\
1443 -mbig, -mbig-endian, -be\n\
1444 generate code for a big endian machine\n"));
1445 fprintf (stream, _("\
1446 -msolaris generate code for Solaris\n"));
1447 fprintf (stream, _("\
1448 -mno-solaris do not generate code for Solaris\n"));
1449 fprintf (stream, _("\
1450 -K PIC set EF_PPC_RELOCATABLE_LIB in ELF flags\n"));
1451 fprintf (stream, _("\
1452 -V print assembler version number\n"));
1453 fprintf (stream, _("\
1454 -Qy, -Qn ignored\n"));
1455 #endif
1456 fprintf (stream, _("\
1457 -nops=count when aligning, more than COUNT nops uses a branch\n"));
1458 fprintf (stream, _("\
1459 -ppc476-workaround warn if emitting data to code sections\n"));
1460 }
1461 \f
1462 /* Set ppc_cpu if it is not already set. */
1463
1464 static void
1465 ppc_set_cpu (void)
1466 {
1467 const char *default_os = TARGET_OS;
1468 const char *default_cpu = TARGET_CPU;
1469
1470 if ((ppc_cpu & ~(ppc_cpu_t) PPC_OPCODE_ANY) == 0)
1471 {
1472 if (ppc_obj64)
1473 if (target_big_endian)
1474 ppc_cpu |= PPC_OPCODE_PPC | PPC_OPCODE_64;
1475 else
1476 /* The minimum supported cpu for 64-bit little-endian is power8. */
1477 ppc_cpu |= ppc_parse_cpu (ppc_cpu, &sticky, "power8");
1478 else if (startswith (default_os, "aix")
1479 && default_os[3] >= '4' && default_os[3] <= '9')
1480 ppc_cpu |= PPC_OPCODE_COMMON;
1481 else if (startswith (default_os, "aix3"))
1482 ppc_cpu |= PPC_OPCODE_POWER;
1483 else if (strcmp (default_cpu, "rs6000") == 0)
1484 ppc_cpu |= PPC_OPCODE_POWER;
1485 else if (startswith (default_cpu, "powerpc"))
1486 ppc_cpu |= PPC_OPCODE_PPC;
1487 else
1488 as_fatal (_("unknown default cpu = %s, os = %s"),
1489 default_cpu, default_os);
1490 }
1491 }
1492
1493 /* Figure out the BFD architecture to use. This function and ppc_mach
1494 are called well before md_begin, when the output file is opened. */
1495
1496 enum bfd_architecture
1497 ppc_arch (void)
1498 {
1499 const char *default_cpu = TARGET_CPU;
1500 ppc_set_cpu ();
1501
1502 if ((ppc_cpu & PPC_OPCODE_PPC) != 0)
1503 return bfd_arch_powerpc;
1504 if ((ppc_cpu & PPC_OPCODE_VLE) != 0)
1505 return bfd_arch_powerpc;
1506 if ((ppc_cpu & PPC_OPCODE_POWER) != 0)
1507 return bfd_arch_rs6000;
1508 if ((ppc_cpu & (PPC_OPCODE_COMMON | PPC_OPCODE_ANY)) != 0)
1509 {
1510 if (strcmp (default_cpu, "rs6000") == 0)
1511 return bfd_arch_rs6000;
1512 else if (startswith (default_cpu, "powerpc"))
1513 return bfd_arch_powerpc;
1514 }
1515
1516 as_fatal (_("neither Power nor PowerPC opcodes were selected."));
1517 return bfd_arch_unknown;
1518 }
1519
1520 unsigned long
1521 ppc_mach (void)
1522 {
1523 if (ppc_obj64)
1524 return bfd_mach_ppc64;
1525 else if (ppc_arch () == bfd_arch_rs6000)
1526 return bfd_mach_rs6k;
1527 else if (ppc_cpu & PPC_OPCODE_TITAN)
1528 return bfd_mach_ppc_titan;
1529 else if (ppc_cpu & PPC_OPCODE_VLE)
1530 return bfd_mach_ppc_vle;
1531 else
1532 return bfd_mach_ppc;
1533 }
1534
1535 extern const char*
1536 ppc_target_format (void)
1537 {
1538 #ifdef OBJ_COFF
1539 #if TE_POWERMAC
1540 return "xcoff-powermac";
1541 #else
1542 # ifdef TE_AIX5
1543 return (ppc_obj64 ? "aix5coff64-rs6000" : "aixcoff-rs6000");
1544 # else
1545 return (ppc_obj64 ? "aixcoff64-rs6000" : "aixcoff-rs6000");
1546 # endif
1547 #endif
1548 #endif
1549 #ifdef OBJ_ELF
1550 # ifdef TE_FreeBSD
1551 return (ppc_obj64 ? "elf64-powerpc-freebsd" : "elf32-powerpc-freebsd");
1552 # elif defined (TE_VXWORKS)
1553 return "elf32-powerpc-vxworks";
1554 # else
1555 return (target_big_endian
1556 ? (ppc_obj64 ? "elf64-powerpc" : "elf32-powerpc")
1557 : (ppc_obj64 ? "elf64-powerpcle" : "elf32-powerpcle"));
1558 # endif
1559 #endif
1560 }
1561
1562 /* Validate one entry in powerpc_opcodes[] or vle_opcodes[].
1563 Return TRUE if there's a problem, otherwise FALSE. */
1564
1565 static bool
1566 insn_validate (const struct powerpc_opcode *op)
1567 {
1568 const ppc_opindex_t *o;
1569 uint64_t omask = op->mask;
1570
1571 /* The mask had better not trim off opcode bits. */
1572 if ((op->opcode & omask) != op->opcode)
1573 {
1574 as_bad (_("mask trims opcode bits for %s"), op->name);
1575 return true;
1576 }
1577
1578 /* The operands must not overlap the opcode or each other. */
1579 for (o = op->operands; *o; ++o)
1580 {
1581 bool optional = false;
1582 if (*o >= num_powerpc_operands)
1583 {
1584 as_bad (_("operand index error for %s"), op->name);
1585 return true;
1586 }
1587 else
1588 {
1589 uint64_t mask;
1590 const struct powerpc_operand *operand = &powerpc_operands[*o];
1591 if (operand->shift == (int) PPC_OPSHIFT_INV)
1592 {
1593 const char *errmsg;
1594 uint64_t val;
1595
1596 errmsg = NULL;
1597 val = -1;
1598 if ((operand->flags & PPC_OPERAND_NEGATIVE) != 0)
1599 val = -val;
1600 mask = (*operand->insert) (0, val, ppc_cpu, &errmsg);
1601 }
1602 else if (operand->shift == (int) PPC_OPSHIFT_SH6)
1603 mask = (0x1f << 11) | 0x2;
1604 else if (operand->shift >= 0)
1605 mask = operand->bitm << operand->shift;
1606 else
1607 mask = operand->bitm >> -operand->shift;
1608 if (omask & mask)
1609 {
1610 as_bad (_("operand %d overlap in %s"),
1611 (int) (o - op->operands), op->name);
1612 return true;
1613 }
1614 omask |= mask;
1615 if ((operand->flags & PPC_OPERAND_OPTIONAL) != 0)
1616 optional = true;
1617 else if (optional)
1618 {
1619 as_bad (_("non-optional operand %d follows optional operand in %s"),
1620 (int) (o - op->operands), op->name);
1621 return true;
1622 }
1623 }
1624 }
1625 return false;
1626 }
1627
1628 static void *
1629 insn_calloc (size_t n, size_t size)
1630 {
1631 size_t amt = n * size;
1632 void *ret = obstack_alloc (&insn_obstack, amt);
1633 memset (ret, 0, amt);
1634 return ret;
1635 }
1636
1637 /* Insert opcodes into hash tables. Called at startup and for
1638 .machine pseudo. */
1639
1640 static void
1641 ppc_setup_opcodes (void)
1642 {
1643 const struct powerpc_opcode *op;
1644 const struct powerpc_opcode *op_end;
1645 bool bad_insn = false;
1646
1647 if (ppc_hash != NULL)
1648 {
1649 htab_delete (ppc_hash);
1650 _obstack_free (&insn_obstack, NULL);
1651 }
1652
1653 obstack_begin (&insn_obstack, chunksize);
1654
1655 /* Insert the opcodes into a hash table. */
1656 ppc_hash = htab_create_alloc (5000, hash_string_tuple, eq_string_tuple,
1657 NULL, insn_calloc, NULL);
1658
1659 if (ENABLE_CHECKING)
1660 {
1661 unsigned int i;
1662
1663 /* An index into powerpc_operands is stored in struct fix
1664 fx_pcrel_adjust which is a 16 bit field. */
1665 gas_assert (num_powerpc_operands <= PPC_OPINDEX_MAX + 1);
1666
1667 /* Check operand masks. Code here and in the disassembler assumes
1668 all the 1's in the mask are contiguous. */
1669 for (i = 0; i < num_powerpc_operands; ++i)
1670 {
1671 uint64_t mask = powerpc_operands[i].bitm;
1672 unsigned long flags = powerpc_operands[i].flags;
1673 uint64_t right_bit;
1674 unsigned int j;
1675
1676 if ((flags & PPC_OPERAND_PLUS1) != 0
1677 && (flags & PPC_OPERAND_NONZERO) != 0)
1678 as_bad ("mutually exclusive operand flags");
1679
1680 right_bit = mask & -mask;
1681 mask += right_bit;
1682 right_bit = mask & -mask;
1683 if (mask != right_bit)
1684 {
1685 as_bad (_("powerpc_operands[%d].bitm invalid"), i);
1686 bad_insn = true;
1687 }
1688 for (j = i + 1; j < num_powerpc_operands; ++j)
1689 if (memcmp (&powerpc_operands[i], &powerpc_operands[j],
1690 sizeof (powerpc_operands[0])) == 0)
1691 {
1692 as_bad (_("powerpc_operands[%d] duplicates powerpc_operands[%d]"),
1693 j, i);
1694 bad_insn = true;
1695 }
1696 }
1697 }
1698
1699 op_end = powerpc_opcodes + powerpc_num_opcodes;
1700 for (op = powerpc_opcodes; op < op_end; op++)
1701 {
1702 if (ENABLE_CHECKING)
1703 {
1704 unsigned int new_opcode = PPC_OP (op[0].opcode);
1705
1706 #ifdef PRINT_OPCODE_TABLE
1707 printf ("%-14s\t#%04u\tmajor op: 0x%x\top: 0x%llx"
1708 "\tmask: 0x%llx\tflags: 0x%llx\n",
1709 op->name, (unsigned int) (op - powerpc_opcodes),
1710 new_opcode, (unsigned long long) op->opcode,
1711 (unsigned long long) op->mask,
1712 (unsigned long long) op->flags);
1713 #endif
1714
1715 /* The major opcodes had better be sorted. Code in the disassembler
1716 assumes the insns are sorted according to major opcode. */
1717 if (op != powerpc_opcodes
1718 && new_opcode < PPC_OP (op[-1].opcode))
1719 {
1720 as_bad (_("major opcode is not sorted for %s"), op->name);
1721 bad_insn = true;
1722 }
1723
1724 if ((op->flags & PPC_OPCODE_VLE) != 0)
1725 {
1726 as_bad (_("%s is enabled by vle flag"), op->name);
1727 bad_insn = true;
1728 }
1729 if (PPC_OP (op->opcode) != 4
1730 && PPC_OP (op->opcode) != 31
1731 && (op->deprecated & PPC_OPCODE_VLE) == 0)
1732 {
1733 as_bad (_("%s not disabled by vle flag"), op->name);
1734 bad_insn = true;
1735 }
1736 bad_insn |= insn_validate (op);
1737 }
1738
1739 if ((ppc_cpu & op->flags) != 0
1740 && !(ppc_cpu & op->deprecated)
1741 && str_hash_insert (ppc_hash, op->name, op, 0) != NULL)
1742 {
1743 as_bad (_("duplicate %s"), op->name);
1744 bad_insn = true;
1745 }
1746 }
1747
1748 if ((ppc_cpu & PPC_OPCODE_ANY) != 0)
1749 for (op = powerpc_opcodes; op < op_end; op++)
1750 str_hash_insert (ppc_hash, op->name, op, 0);
1751
1752 op_end = prefix_opcodes + prefix_num_opcodes;
1753 for (op = prefix_opcodes; op < op_end; op++)
1754 {
1755 if (ENABLE_CHECKING)
1756 {
1757 unsigned int new_opcode = PPC_PREFIX_SEG (op[0].opcode);
1758
1759 #ifdef PRINT_OPCODE_TABLE
1760 printf ("%-14s\t#%04u\tmajor op/2: 0x%x\top: 0x%llx"
1761 "\tmask: 0x%llx\tflags: 0x%llx\n",
1762 op->name, (unsigned int) (op - prefix_opcodes),
1763 new_opcode, (unsigned long long) op->opcode,
1764 (unsigned long long) op->mask,
1765 (unsigned long long) op->flags);
1766 #endif
1767
1768 /* The major opcodes had better be sorted. Code in the disassembler
1769 assumes the insns are sorted according to major opcode. */
1770 if (op != prefix_opcodes
1771 && new_opcode < PPC_PREFIX_SEG (op[-1].opcode))
1772 {
1773 as_bad (_("major opcode is not sorted for %s"), op->name);
1774 bad_insn = true;
1775 }
1776 bad_insn |= insn_validate (op);
1777 }
1778
1779 if ((ppc_cpu & op->flags) != 0
1780 && !(ppc_cpu & op->deprecated)
1781 && str_hash_insert (ppc_hash, op->name, op, 0) != NULL)
1782 {
1783 as_bad (_("duplicate %s"), op->name);
1784 bad_insn = true;
1785 }
1786 }
1787
1788 if ((ppc_cpu & PPC_OPCODE_ANY) != 0)
1789 for (op = prefix_opcodes; op < op_end; op++)
1790 str_hash_insert (ppc_hash, op->name, op, 0);
1791
1792 if ((ppc_cpu & (PPC_OPCODE_VLE | PPC_OPCODE_ANY)) != 0)
1793 {
1794 unsigned int prev_seg = 0;
1795 unsigned int seg;
1796
1797 op_end = vle_opcodes + vle_num_opcodes;
1798 for (op = vle_opcodes; op < op_end; op++)
1799 {
1800 if (ENABLE_CHECKING)
1801 {
1802 seg = VLE_OP_TO_SEG (VLE_OP (op[0].opcode, op[0].mask));
1803
1804 #ifdef PRINT_OPCODE_TABLE
1805 printf ("%-14s\t#%04u\tmajor op: 0x%x\top: 0x%llx"
1806 "\tmask: 0x%llx\tflags: 0x%llx\n",
1807 op->name, (unsigned int) (op - vle_opcodes),
1808 (unsigned int) seg, (unsigned long long) op->opcode,
1809 (unsigned long long) op->mask,
1810 (unsigned long long) op->flags);
1811 #endif
1812
1813 if (seg < prev_seg)
1814 {
1815 as_bad (_("major opcode is not sorted for %s"), op->name);
1816 bad_insn = true;
1817 }
1818 prev_seg = seg;
1819 bad_insn |= insn_validate (op);
1820 }
1821
1822 str_hash_insert (ppc_hash, op->name, op, 0);
1823 }
1824 }
1825
1826 /* LSP instructions */
1827 if ((ppc_cpu & (PPC_OPCODE_LSP | PPC_OPCODE_ANY)) != 0)
1828 {
1829 unsigned int prev_seg = 0;
1830 unsigned int seg;
1831 op_end = lsp_opcodes + lsp_num_opcodes;
1832 for (op = lsp_opcodes; op < op_end; op++)
1833 {
1834 if (ENABLE_CHECKING)
1835 {
1836 seg = LSP_OP_TO_SEG (op->opcode);
1837 if (seg < prev_seg)
1838 {
1839 as_bad (_("opcode is not sorted for %s"), op->name);
1840 bad_insn = true;
1841 }
1842 prev_seg = seg;
1843 bad_insn |= insn_validate (op);
1844 }
1845
1846 str_hash_insert (ppc_hash, op->name, op, 0);
1847 }
1848 }
1849
1850 /* SPE2 instructions */
1851 if ((ppc_cpu & (PPC_OPCODE_SPE2 | PPC_OPCODE_ANY)) != 0)
1852 {
1853 unsigned int prev_seg = 0;
1854 unsigned int seg;
1855 op_end = spe2_opcodes + spe2_num_opcodes;
1856 for (op = spe2_opcodes; op < op_end; op++)
1857 {
1858 if (ENABLE_CHECKING)
1859 {
1860 seg = VLE_OP_TO_SEG (VLE_OP (op[0].opcode, op[0].mask));
1861 if (seg < prev_seg)
1862 {
1863 as_bad (_("major opcode is not sorted for %s"), op->name);
1864 bad_insn = true;
1865 }
1866 prev_seg = seg;
1867 bad_insn |= insn_validate (op);
1868 }
1869
1870 str_hash_insert (ppc_hash, op->name, op, 0);
1871 }
1872 }
1873
1874 if (bad_insn)
1875 abort ();
1876 }
1877
1878 /* This function is called when the assembler starts up. It is called
1879 after the options have been parsed and the output file has been
1880 opened. */
1881
1882 void
1883 md_begin (void)
1884 {
1885 ppc_set_cpu ();
1886
1887 ppc_cie_data_alignment = ppc_obj64 ? -8 : -4;
1888 ppc_dwarf2_line_min_insn_length = (ppc_cpu & PPC_OPCODE_VLE) ? 2 : 4;
1889
1890 #ifdef OBJ_ELF
1891 /* Set the ELF flags if desired. */
1892 if (ppc_flags && !msolaris)
1893 bfd_set_private_flags (stdoutput, ppc_flags);
1894 #endif
1895
1896 ppc_setup_opcodes ();
1897
1898 /* Tell the main code what the endianness is if it is not overridden
1899 by the user. */
1900 if (!set_target_endian)
1901 {
1902 set_target_endian = 1;
1903 target_big_endian = PPC_BIG_ENDIAN;
1904 }
1905
1906 #ifdef OBJ_XCOFF
1907 ppc_coff_debug_section = coff_section_from_bfd_index (stdoutput, N_DEBUG);
1908
1909 /* Create XCOFF sections with .text in first, as it's creating dummy symbols
1910 to serve as initial csects. This forces the text csects to precede the
1911 data csects. These symbols will not be output. */
1912 ppc_init_xcoff_section (&ppc_xcoff_text_section, text_section);
1913 ppc_init_xcoff_section (&ppc_xcoff_data_section, data_section);
1914 ppc_init_xcoff_section (&ppc_xcoff_bss_section, bss_section);
1915 #endif
1916 }
1917
1918 void
1919 ppc_md_end (void)
1920 {
1921 if (ppc_hash)
1922 {
1923 htab_delete (ppc_hash);
1924 _obstack_free (&insn_obstack, NULL);
1925 }
1926 ppc_hash = NULL;
1927 }
1928
1929 void
1930 ppc_cleanup (void)
1931 {
1932 #ifdef OBJ_ELF
1933 if (ppc_apuinfo_list == NULL)
1934 return;
1935
1936 /* Ok, so write the section info out. We have this layout:
1937
1938 byte data what
1939 ---- ---- ----
1940 0 8 length of "APUinfo\0"
1941 4 (n*4) number of APU's (4 bytes each)
1942 8 2 note type 2
1943 12 "APUinfo\0" name
1944 20 APU#1 first APU's info
1945 24 APU#2 second APU's info
1946 ... ...
1947 */
1948 {
1949 char *p;
1950 asection *seg = now_seg;
1951 subsegT subseg = now_subseg;
1952 asection *apuinfo_secp = (asection *) NULL;
1953 unsigned int i;
1954
1955 /* Create the .PPC.EMB.apuinfo section. */
1956 apuinfo_secp = subseg_new (APUINFO_SECTION_NAME, 0);
1957 bfd_set_section_flags (apuinfo_secp, SEC_HAS_CONTENTS | SEC_READONLY);
1958
1959 p = frag_more (4);
1960 md_number_to_chars (p, (valueT) 8, 4);
1961
1962 p = frag_more (4);
1963 md_number_to_chars (p, (valueT) ppc_apuinfo_num * 4, 4);
1964
1965 p = frag_more (4);
1966 md_number_to_chars (p, (valueT) 2, 4);
1967
1968 p = frag_more (8);
1969 strcpy (p, APUINFO_LABEL);
1970
1971 for (i = 0; i < ppc_apuinfo_num; i++)
1972 {
1973 p = frag_more (4);
1974 md_number_to_chars (p, (valueT) ppc_apuinfo_list[i], 4);
1975 }
1976
1977 frag_align (2, 0, 0);
1978
1979 /* We probably can't restore the current segment, for there likely
1980 isn't one yet... */
1981 if (seg && subseg)
1982 subseg_set (seg, subseg);
1983 }
1984 #endif
1985 }
1986
1987 /* Insert an operand value into an instruction. */
1988
1989 static uint64_t
1990 ppc_insert_operand (uint64_t insn,
1991 const struct powerpc_operand *operand,
1992 int64_t val,
1993 ppc_cpu_t cpu,
1994 const char *file,
1995 unsigned int line)
1996 {
1997 int64_t min, max, right;
1998
1999 max = operand->bitm;
2000 right = max & -max;
2001 min = 0;
2002
2003 if ((operand->flags & PPC_OPERAND_SIGNOPT) != 0)
2004 {
2005 /* Extend the allowed range for addis to [-32768, 65535].
2006 Similarly for cmpli and some VLE high part insns. For 64-bit
2007 it would be good to disable this for signed fields since the
2008 value is sign extended into the high 32 bits of the register.
2009 If the value is, say, an address, then we might care about
2010 the high bits. However, gcc as of 2014-06 uses unsigned
2011 values when loading the high part of 64-bit constants using
2012 lis. */
2013 min = ~(max >> 1) & -right;
2014 }
2015 else if ((operand->flags & PPC_OPERAND_SIGNED) != 0)
2016 {
2017 max = (max >> 1) & -right;
2018 min = ~max & -right;
2019 }
2020 else if ((operand->flags & PPC_OPERAND_NONZERO) != 0)
2021 {
2022 ++min;
2023 ++max;
2024 }
2025
2026 if ((operand->flags & PPC_OPERAND_PLUS1) != 0)
2027 max++;
2028
2029 if ((operand->flags & PPC_OPERAND_NEGATIVE) != 0)
2030 {
2031 int64_t tmp = min;
2032 min = -max;
2033 max = -tmp;
2034 }
2035
2036 if (min <= max)
2037 {
2038 /* Some people write constants with the sign extension done by
2039 hand but only up to 32 bits. This shouldn't really be valid,
2040 but, to permit this code to assemble on a 64-bit host, we
2041 sign extend the 32-bit value to 64 bits if so doing makes the
2042 value valid. We only do this for operands that are 32-bits or
2043 smaller. */
2044 if (val > max
2045 && (operand->bitm & ~0xffffffffULL) == 0
2046 && (val - (1LL << 32)) >= min
2047 && (val - (1LL << 32)) <= max
2048 && ((val - (1LL << 32)) & (right - 1)) == 0)
2049 val = val - (1LL << 32);
2050
2051 /* Similarly, people write expressions like ~(1<<15), and expect
2052 this to be OK for a 32-bit unsigned value. */
2053 else if (val < min
2054 && (operand->bitm & ~0xffffffffULL) == 0
2055 && (val + (1LL << 32)) >= min
2056 && (val + (1LL << 32)) <= max
2057 && ((val + (1LL << 32)) & (right - 1)) == 0)
2058 val = val + (1LL << 32);
2059
2060 else if (val < min
2061 || val > max
2062 || (val & (right - 1)) != 0)
2063 as_bad_value_out_of_range (_("operand"), val, min, max, file, line);
2064 }
2065
2066 if (operand->insert)
2067 {
2068 const char *errmsg;
2069
2070 errmsg = NULL;
2071 insn = (*operand->insert) (insn, val, cpu, &errmsg);
2072 if (errmsg != (const char *) NULL)
2073 as_bad_where (file, line, "%s", errmsg);
2074 }
2075 else
2076 {
2077 if ((operand->flags & PPC_OPERAND_NONZERO) != 0)
2078 --val;
2079 if (operand->shift >= 0)
2080 insn |= (val & operand->bitm) << operand->shift;
2081 else
2082 insn |= (val & operand->bitm) >> -operand->shift;
2083 }
2084
2085 return insn;
2086 }
2087
2088 \f
2089 #ifdef OBJ_ELF
2090 /* Parse @got, etc. and return the desired relocation. */
2091 static bfd_reloc_code_real_type
2092 ppc_elf_suffix (char **str_p, expressionS *exp_p)
2093 {
2094 struct map_bfd {
2095 const char *string;
2096 unsigned int length : 8;
2097 unsigned int valid32 : 1;
2098 unsigned int valid64 : 1;
2099 unsigned int reloc;
2100 };
2101
2102 char ident[20];
2103 char *str = *str_p;
2104 char *str2;
2105 int ch;
2106 int len;
2107 const struct map_bfd *ptr;
2108
2109 #define MAP(str, reloc) { str, sizeof (str) - 1, 1, 1, reloc }
2110 #define MAP32(str, reloc) { str, sizeof (str) - 1, 1, 0, reloc }
2111 #define MAP64(str, reloc) { str, sizeof (str) - 1, 0, 1, reloc }
2112
2113 static const struct map_bfd mapping[] = {
2114 MAP ("l", BFD_RELOC_LO16),
2115 MAP ("h", BFD_RELOC_HI16),
2116 MAP ("ha", BFD_RELOC_HI16_S),
2117 MAP ("brtaken", BFD_RELOC_PPC_B16_BRTAKEN),
2118 MAP ("brntaken", BFD_RELOC_PPC_B16_BRNTAKEN),
2119 MAP ("got", BFD_RELOC_16_GOTOFF),
2120 MAP ("got@l", BFD_RELOC_LO16_GOTOFF),
2121 MAP ("got@h", BFD_RELOC_HI16_GOTOFF),
2122 MAP ("got@ha", BFD_RELOC_HI16_S_GOTOFF),
2123 MAP ("plt@l", BFD_RELOC_LO16_PLTOFF),
2124 MAP ("plt@h", BFD_RELOC_HI16_PLTOFF),
2125 MAP ("plt@ha", BFD_RELOC_HI16_S_PLTOFF),
2126 MAP ("copy", BFD_RELOC_PPC_COPY),
2127 MAP ("globdat", BFD_RELOC_PPC_GLOB_DAT),
2128 MAP ("sectoff", BFD_RELOC_16_BASEREL),
2129 MAP ("sectoff@l", BFD_RELOC_LO16_BASEREL),
2130 MAP ("sectoff@h", BFD_RELOC_HI16_BASEREL),
2131 MAP ("sectoff@ha", BFD_RELOC_HI16_S_BASEREL),
2132 MAP ("tls", BFD_RELOC_PPC_TLS),
2133 MAP ("dtpmod", BFD_RELOC_PPC_DTPMOD),
2134 MAP ("dtprel", BFD_RELOC_PPC_DTPREL),
2135 MAP ("dtprel@l", BFD_RELOC_PPC_DTPREL16_LO),
2136 MAP ("dtprel@h", BFD_RELOC_PPC_DTPREL16_HI),
2137 MAP ("dtprel@ha", BFD_RELOC_PPC_DTPREL16_HA),
2138 MAP ("tprel", BFD_RELOC_PPC_TPREL),
2139 MAP ("tprel@l", BFD_RELOC_PPC_TPREL16_LO),
2140 MAP ("tprel@h", BFD_RELOC_PPC_TPREL16_HI),
2141 MAP ("tprel@ha", BFD_RELOC_PPC_TPREL16_HA),
2142 MAP ("got@tlsgd", BFD_RELOC_PPC_GOT_TLSGD16),
2143 MAP ("got@tlsgd@l", BFD_RELOC_PPC_GOT_TLSGD16_LO),
2144 MAP ("got@tlsgd@h", BFD_RELOC_PPC_GOT_TLSGD16_HI),
2145 MAP ("got@tlsgd@ha", BFD_RELOC_PPC_GOT_TLSGD16_HA),
2146 MAP ("got@tlsld", BFD_RELOC_PPC_GOT_TLSLD16),
2147 MAP ("got@tlsld@l", BFD_RELOC_PPC_GOT_TLSLD16_LO),
2148 MAP ("got@tlsld@h", BFD_RELOC_PPC_GOT_TLSLD16_HI),
2149 MAP ("got@tlsld@ha", BFD_RELOC_PPC_GOT_TLSLD16_HA),
2150 MAP ("got@dtprel", BFD_RELOC_PPC_GOT_DTPREL16),
2151 MAP ("got@dtprel@l", BFD_RELOC_PPC_GOT_DTPREL16_LO),
2152 MAP ("got@dtprel@h", BFD_RELOC_PPC_GOT_DTPREL16_HI),
2153 MAP ("got@dtprel@ha", BFD_RELOC_PPC_GOT_DTPREL16_HA),
2154 MAP ("got@tprel", BFD_RELOC_PPC_GOT_TPREL16),
2155 MAP ("got@tprel@l", BFD_RELOC_PPC_GOT_TPREL16_LO),
2156 MAP ("got@tprel@h", BFD_RELOC_PPC_GOT_TPREL16_HI),
2157 MAP ("got@tprel@ha", BFD_RELOC_PPC_GOT_TPREL16_HA),
2158 MAP32 ("fixup", BFD_RELOC_CTOR),
2159 MAP32 ("plt", BFD_RELOC_24_PLT_PCREL),
2160 MAP32 ("pltrel24", BFD_RELOC_24_PLT_PCREL),
2161 MAP32 ("local24pc", BFD_RELOC_PPC_LOCAL24PC),
2162 MAP32 ("local", BFD_RELOC_PPC_LOCAL24PC),
2163 MAP32 ("pltrel", BFD_RELOC_32_PLT_PCREL),
2164 MAP32 ("sdarel", BFD_RELOC_GPREL16),
2165 MAP32 ("sdarel@l", BFD_RELOC_PPC_VLE_SDAREL_LO16A),
2166 MAP32 ("sdarel@h", BFD_RELOC_PPC_VLE_SDAREL_HI16A),
2167 MAP32 ("sdarel@ha", BFD_RELOC_PPC_VLE_SDAREL_HA16A),
2168 MAP32 ("naddr", BFD_RELOC_PPC_EMB_NADDR32),
2169 MAP32 ("naddr16", BFD_RELOC_PPC_EMB_NADDR16),
2170 MAP32 ("naddr@l", BFD_RELOC_PPC_EMB_NADDR16_LO),
2171 MAP32 ("naddr@h", BFD_RELOC_PPC_EMB_NADDR16_HI),
2172 MAP32 ("naddr@ha", BFD_RELOC_PPC_EMB_NADDR16_HA),
2173 MAP32 ("sdai16", BFD_RELOC_PPC_EMB_SDAI16),
2174 MAP32 ("sda2rel", BFD_RELOC_PPC_EMB_SDA2REL),
2175 MAP32 ("sda2i16", BFD_RELOC_PPC_EMB_SDA2I16),
2176 MAP32 ("sda21", BFD_RELOC_PPC_EMB_SDA21),
2177 MAP32 ("sda21@l", BFD_RELOC_PPC_VLE_SDA21_LO),
2178 MAP32 ("mrkref", BFD_RELOC_PPC_EMB_MRKREF),
2179 MAP32 ("relsect", BFD_RELOC_PPC_EMB_RELSEC16),
2180 MAP32 ("relsect@l", BFD_RELOC_PPC_EMB_RELST_LO),
2181 MAP32 ("relsect@h", BFD_RELOC_PPC_EMB_RELST_HI),
2182 MAP32 ("relsect@ha", BFD_RELOC_PPC_EMB_RELST_HA),
2183 MAP32 ("bitfld", BFD_RELOC_PPC_EMB_BIT_FLD),
2184 MAP32 ("relsda", BFD_RELOC_PPC_EMB_RELSDA),
2185 MAP32 ("xgot", BFD_RELOC_PPC_TOC16),
2186 MAP64 ("high", BFD_RELOC_PPC64_ADDR16_HIGH),
2187 MAP64 ("higha", BFD_RELOC_PPC64_ADDR16_HIGHA),
2188 MAP64 ("higher", BFD_RELOC_PPC64_HIGHER),
2189 MAP64 ("highera", BFD_RELOC_PPC64_HIGHER_S),
2190 MAP64 ("highest", BFD_RELOC_PPC64_HIGHEST),
2191 MAP64 ("highesta", BFD_RELOC_PPC64_HIGHEST_S),
2192 MAP64 ("tocbase", BFD_RELOC_PPC64_TOC),
2193 MAP64 ("toc", BFD_RELOC_PPC_TOC16),
2194 MAP64 ("toc@l", BFD_RELOC_PPC64_TOC16_LO),
2195 MAP64 ("toc@h", BFD_RELOC_PPC64_TOC16_HI),
2196 MAP64 ("toc@ha", BFD_RELOC_PPC64_TOC16_HA),
2197 MAP64 ("dtprel@high", BFD_RELOC_PPC64_DTPREL16_HIGH),
2198 MAP64 ("dtprel@higha", BFD_RELOC_PPC64_DTPREL16_HIGHA),
2199 MAP64 ("dtprel@higher", BFD_RELOC_PPC64_DTPREL16_HIGHER),
2200 MAP64 ("dtprel@highera", BFD_RELOC_PPC64_DTPREL16_HIGHERA),
2201 MAP64 ("dtprel@highest", BFD_RELOC_PPC64_DTPREL16_HIGHEST),
2202 MAP64 ("dtprel@highesta", BFD_RELOC_PPC64_DTPREL16_HIGHESTA),
2203 MAP64 ("localentry", BFD_RELOC_PPC64_ADDR64_LOCAL),
2204 MAP64 ("tprel@high", BFD_RELOC_PPC64_TPREL16_HIGH),
2205 MAP64 ("tprel@higha", BFD_RELOC_PPC64_TPREL16_HIGHA),
2206 MAP64 ("tprel@higher", BFD_RELOC_PPC64_TPREL16_HIGHER),
2207 MAP64 ("tprel@highera", BFD_RELOC_PPC64_TPREL16_HIGHERA),
2208 MAP64 ("tprel@highest", BFD_RELOC_PPC64_TPREL16_HIGHEST),
2209 MAP64 ("tprel@highesta", BFD_RELOC_PPC64_TPREL16_HIGHESTA),
2210 MAP64 ("notoc", BFD_RELOC_PPC64_REL24_NOTOC),
2211 MAP64 ("pcrel", BFD_RELOC_PPC64_PCREL34),
2212 MAP64 ("got@pcrel", BFD_RELOC_PPC64_GOT_PCREL34),
2213 MAP64 ("plt@pcrel", BFD_RELOC_PPC64_PLT_PCREL34),
2214 MAP64 ("tls@pcrel", BFD_RELOC_PPC64_TLS_PCREL),
2215 MAP64 ("got@tlsgd@pcrel", BFD_RELOC_PPC64_GOT_TLSGD_PCREL34),
2216 MAP64 ("got@tlsld@pcrel", BFD_RELOC_PPC64_GOT_TLSLD_PCREL34),
2217 MAP64 ("got@tprel@pcrel", BFD_RELOC_PPC64_GOT_TPREL_PCREL34),
2218 MAP64 ("got@dtprel@pcrel", BFD_RELOC_PPC64_GOT_DTPREL_PCREL34),
2219 MAP64 ("higher34", BFD_RELOC_PPC64_ADDR16_HIGHER34),
2220 MAP64 ("highera34", BFD_RELOC_PPC64_ADDR16_HIGHERA34),
2221 MAP64 ("highest34", BFD_RELOC_PPC64_ADDR16_HIGHEST34),
2222 MAP64 ("highesta34", BFD_RELOC_PPC64_ADDR16_HIGHESTA34),
2223 { (char *) 0, 0, 0, 0, BFD_RELOC_NONE }
2224 };
2225
2226 if (*str++ != '@')
2227 return BFD_RELOC_NONE;
2228
2229 for (ch = *str, str2 = ident;
2230 (str2 < ident + sizeof (ident) - 1
2231 && (ISALNUM (ch) || ch == '@'));
2232 ch = *++str)
2233 {
2234 *str2++ = TOLOWER (ch);
2235 }
2236
2237 *str2 = '\0';
2238 len = str2 - ident;
2239
2240 ch = ident[0];
2241 for (ptr = &mapping[0]; ptr->length > 0; ptr++)
2242 if (ch == ptr->string[0]
2243 && len == ptr->length
2244 && memcmp (ident, ptr->string, ptr->length) == 0
2245 && (ppc_obj64 ? ptr->valid64 : ptr->valid32))
2246 {
2247 int reloc = ptr->reloc;
2248
2249 if (!ppc_obj64 && (exp_p->X_op == O_big || exp_p->X_add_number != 0))
2250 {
2251 switch (reloc)
2252 {
2253 case BFD_RELOC_16_GOTOFF:
2254 case BFD_RELOC_LO16_GOTOFF:
2255 case BFD_RELOC_HI16_GOTOFF:
2256 case BFD_RELOC_HI16_S_GOTOFF:
2257 as_warn (_("symbol+offset@%s means symbol@%s+offset"),
2258 ptr->string, ptr->string);
2259 break;
2260
2261 case BFD_RELOC_PPC_GOT_TLSGD16:
2262 case BFD_RELOC_PPC_GOT_TLSGD16_LO:
2263 case BFD_RELOC_PPC_GOT_TLSGD16_HI:
2264 case BFD_RELOC_PPC_GOT_TLSGD16_HA:
2265 case BFD_RELOC_PPC_GOT_TLSLD16:
2266 case BFD_RELOC_PPC_GOT_TLSLD16_LO:
2267 case BFD_RELOC_PPC_GOT_TLSLD16_HI:
2268 case BFD_RELOC_PPC_GOT_TLSLD16_HA:
2269 case BFD_RELOC_PPC_GOT_DTPREL16:
2270 case BFD_RELOC_PPC_GOT_DTPREL16_LO:
2271 case BFD_RELOC_PPC_GOT_DTPREL16_HI:
2272 case BFD_RELOC_PPC_GOT_DTPREL16_HA:
2273 case BFD_RELOC_PPC_GOT_TPREL16:
2274 case BFD_RELOC_PPC_GOT_TPREL16_LO:
2275 case BFD_RELOC_PPC_GOT_TPREL16_HI:
2276 case BFD_RELOC_PPC_GOT_TPREL16_HA:
2277 as_bad (_("symbol+offset@%s not supported"), ptr->string);
2278 break;
2279 }
2280 }
2281
2282 /* Now check for identifier@suffix+constant. */
2283 if (*str == '-' || *str == '+')
2284 {
2285 char *orig_line = input_line_pointer;
2286 expressionS new_exp;
2287
2288 input_line_pointer = str;
2289 expression (&new_exp);
2290 if (new_exp.X_op == O_constant && exp_p->X_op != O_big)
2291 {
2292 exp_p->X_add_number += new_exp.X_add_number;
2293 str = input_line_pointer;
2294 }
2295 input_line_pointer = orig_line;
2296 }
2297 *str_p = str;
2298
2299 if (reloc == (int) BFD_RELOC_PPC64_TOC
2300 && exp_p->X_op == O_symbol
2301 && strcmp (S_GET_NAME (exp_p->X_add_symbol), ".TOC.") == 0)
2302 {
2303 /* Change the symbol so that the dummy .TOC. symbol can be
2304 omitted from the object file. */
2305 exp_p->X_add_symbol = &abs_symbol;
2306 }
2307
2308 if (reloc == BFD_RELOC_PPC64_REL24_NOTOC
2309 && (ppc_cpu & PPC_OPCODE_POWER10) == 0)
2310 reloc = BFD_RELOC_PPC64_REL24_P9NOTOC;
2311
2312 return (bfd_reloc_code_real_type) reloc;
2313 }
2314
2315 return BFD_RELOC_NONE;
2316 }
2317
2318 /* Support @got, etc. on constants emitted via .short, .int etc. */
2319
2320 bfd_reloc_code_real_type
2321 ppc_elf_parse_cons (expressionS *exp, unsigned int nbytes)
2322 {
2323 expression (exp);
2324 if (nbytes >= 2 && *input_line_pointer == '@')
2325 return ppc_elf_suffix (&input_line_pointer, exp);
2326 return BFD_RELOC_NONE;
2327 }
2328
2329 /* Warn when emitting data to code sections, unless we are emitting
2330 a relocation that ld --ppc476-workaround uses to recognise data
2331 *and* there was an unconditional branch prior to the data. */
2332
2333 void
2334 ppc_elf_cons_fix_check (expressionS *exp ATTRIBUTE_UNUSED,
2335 unsigned int nbytes, fixS *fix)
2336 {
2337 if (warn_476
2338 && (now_seg->flags & SEC_CODE) != 0
2339 && (nbytes != 4
2340 || fix == NULL
2341 || !(fix->fx_r_type == BFD_RELOC_32
2342 || fix->fx_r_type == BFD_RELOC_CTOR
2343 || fix->fx_r_type == BFD_RELOC_32_PCREL)
2344 || !(last_seg == now_seg && last_subseg == now_subseg)
2345 || !((last_insn & (0x3f << 26)) == (18u << 26)
2346 || ((last_insn & (0x3f << 26)) == (16u << 26)
2347 && (last_insn & (0x14 << 21)) == (0x14 << 21))
2348 || ((last_insn & (0x3f << 26)) == (19u << 26)
2349 && (last_insn & (0x3ff << 1)) == (16u << 1)
2350 && (last_insn & (0x14 << 21)) == (0x14 << 21)))))
2351 {
2352 /* Flag that we've warned. */
2353 if (fix != NULL)
2354 fix->fx_tcbit = 1;
2355
2356 as_warn (_("data in executable section"));
2357 }
2358 }
2359
2360 /* Solaris pseduo op to change to the .rodata section. */
2361 static void
2362 ppc_elf_rdata (int xxx)
2363 {
2364 char *save_line = input_line_pointer;
2365 static char section[] = ".rodata\n";
2366
2367 /* Just pretend this is .section .rodata */
2368 input_line_pointer = section;
2369 obj_elf_section (xxx);
2370
2371 input_line_pointer = save_line;
2372 }
2373
2374 /* Pseudo op to make file scope bss items. */
2375 static void
2376 ppc_elf_lcomm (int xxx ATTRIBUTE_UNUSED)
2377 {
2378 char *name;
2379 char c;
2380 char *p;
2381 offsetT size;
2382 symbolS *symbolP;
2383 offsetT align;
2384 segT old_sec;
2385 int old_subsec;
2386 char *pfrag;
2387 int align2;
2388
2389 c = get_symbol_name (&name);
2390
2391 /* Just after name is now '\0'. */
2392 p = input_line_pointer;
2393 *p = c;
2394 SKIP_WHITESPACE_AFTER_NAME ();
2395 if (*input_line_pointer != ',')
2396 {
2397 as_bad (_("expected comma after symbol-name: rest of line ignored."));
2398 ignore_rest_of_line ();
2399 return;
2400 }
2401
2402 input_line_pointer++; /* skip ',' */
2403 if ((size = get_absolute_expression ()) < 0)
2404 {
2405 as_warn (_(".COMMon length (%ld.) <0! Ignored."), (long) size);
2406 ignore_rest_of_line ();
2407 return;
2408 }
2409
2410 /* The third argument to .lcomm is the alignment. */
2411 if (*input_line_pointer != ',')
2412 align = 8;
2413 else
2414 {
2415 ++input_line_pointer;
2416 align = get_absolute_expression ();
2417 if (align <= 0)
2418 {
2419 as_warn (_("ignoring bad alignment"));
2420 align = 8;
2421 }
2422 }
2423
2424 *p = 0;
2425 symbolP = symbol_find_or_make (name);
2426 *p = c;
2427
2428 if (S_IS_DEFINED (symbolP) && ! S_IS_COMMON (symbolP))
2429 {
2430 as_bad (_("ignoring attempt to re-define symbol `%s'."),
2431 S_GET_NAME (symbolP));
2432 ignore_rest_of_line ();
2433 return;
2434 }
2435
2436 if (S_GET_VALUE (symbolP) && S_GET_VALUE (symbolP) != (valueT) size)
2437 {
2438 as_bad (_("length of .lcomm \"%s\" is already %ld. Not changed to %ld."),
2439 S_GET_NAME (symbolP),
2440 (long) S_GET_VALUE (symbolP),
2441 (long) size);
2442
2443 ignore_rest_of_line ();
2444 return;
2445 }
2446
2447 /* Allocate_bss. */
2448 old_sec = now_seg;
2449 old_subsec = now_subseg;
2450 if (align)
2451 {
2452 /* Convert to a power of 2 alignment. */
2453 for (align2 = 0; (align & 1) == 0; align >>= 1, ++align2);
2454 if (align != 1)
2455 {
2456 as_bad (_("common alignment not a power of 2"));
2457 ignore_rest_of_line ();
2458 return;
2459 }
2460 }
2461 else
2462 align2 = 0;
2463
2464 record_alignment (bss_section, align2);
2465 subseg_set (bss_section, 1);
2466 if (align2)
2467 frag_align (align2, 0, 0);
2468 if (S_GET_SEGMENT (symbolP) == bss_section)
2469 symbol_get_frag (symbolP)->fr_symbol = 0;
2470 symbol_set_frag (symbolP, frag_now);
2471 pfrag = frag_var (rs_org, 1, 1, (relax_substateT) 0, symbolP, size,
2472 (char *) 0);
2473 *pfrag = 0;
2474 S_SET_SIZE (symbolP, size);
2475 S_SET_SEGMENT (symbolP, bss_section);
2476 subseg_set (old_sec, old_subsec);
2477 demand_empty_rest_of_line ();
2478 }
2479
2480 /* Pseudo op to set symbol local entry point. */
2481 static void
2482 ppc_elf_localentry (int ignore ATTRIBUTE_UNUSED)
2483 {
2484 char *name;
2485 char c = get_symbol_name (&name);
2486 char *p;
2487 expressionS exp;
2488 symbolS *sym;
2489 asymbol *bfdsym;
2490 elf_symbol_type *elfsym;
2491
2492 p = input_line_pointer;
2493 *p = c;
2494 SKIP_WHITESPACE_AFTER_NAME ();
2495 if (*input_line_pointer != ',')
2496 {
2497 *p = 0;
2498 as_bad (_("expected comma after name `%s' in .localentry directive"),
2499 name);
2500 *p = c;
2501 ignore_rest_of_line ();
2502 return;
2503 }
2504 input_line_pointer++;
2505 expression (&exp);
2506 if (exp.X_op == O_absent)
2507 {
2508 as_bad (_("missing expression in .localentry directive"));
2509 exp.X_op = O_constant;
2510 exp.X_add_number = 0;
2511 }
2512 *p = 0;
2513 sym = symbol_find_or_make (name);
2514 *p = c;
2515
2516 if (resolve_expression (&exp)
2517 && exp.X_op == O_constant)
2518 {
2519 unsigned int encoded, ok;
2520
2521 ok = 1;
2522 if (exp.X_add_number == 1 || exp.X_add_number == 7)
2523 encoded = exp.X_add_number << STO_PPC64_LOCAL_BIT;
2524 else
2525 {
2526 encoded = PPC64_SET_LOCAL_ENTRY_OFFSET (exp.X_add_number);
2527 if (exp.X_add_number != (offsetT) PPC64_LOCAL_ENTRY_OFFSET (encoded))
2528 {
2529 as_bad (_(".localentry expression for `%s' "
2530 "is not a valid power of 2"), S_GET_NAME (sym));
2531 ok = 0;
2532 }
2533 }
2534 if (ok)
2535 {
2536 bfdsym = symbol_get_bfdsym (sym);
2537 elfsym = elf_symbol_from (bfdsym);
2538 gas_assert (elfsym);
2539 elfsym->internal_elf_sym.st_other &= ~STO_PPC64_LOCAL_MASK;
2540 elfsym->internal_elf_sym.st_other |= encoded;
2541 if (ppc_abiversion == 0)
2542 ppc_abiversion = 2;
2543 }
2544 }
2545 else
2546 as_bad (_(".localentry expression for `%s' "
2547 "does not evaluate to a constant"), S_GET_NAME (sym));
2548
2549 demand_empty_rest_of_line ();
2550 }
2551
2552 /* Pseudo op to set ABI version. */
2553 static void
2554 ppc_elf_abiversion (int ignore ATTRIBUTE_UNUSED)
2555 {
2556 expressionS exp;
2557
2558 expression (&exp);
2559 if (exp.X_op == O_absent)
2560 {
2561 as_bad (_("missing expression in .abiversion directive"));
2562 exp.X_op = O_constant;
2563 exp.X_add_number = 0;
2564 }
2565
2566 if (resolve_expression (&exp)
2567 && exp.X_op == O_constant)
2568 ppc_abiversion = exp.X_add_number;
2569 else
2570 as_bad (_(".abiversion expression does not evaluate to a constant"));
2571 demand_empty_rest_of_line ();
2572 }
2573
2574 /* Parse a .gnu_attribute directive. */
2575 static void
2576 ppc_elf_gnu_attribute (int ignored ATTRIBUTE_UNUSED)
2577 {
2578 int tag = obj_elf_vendor_attribute (OBJ_ATTR_GNU);
2579
2580 /* Check validity of defined powerpc tags. */
2581 if (tag == Tag_GNU_Power_ABI_FP
2582 || tag == Tag_GNU_Power_ABI_Vector
2583 || tag == Tag_GNU_Power_ABI_Struct_Return)
2584 {
2585 unsigned int val;
2586
2587 val = bfd_elf_get_obj_attr_int (stdoutput, OBJ_ATTR_GNU, tag);
2588
2589 if ((tag == Tag_GNU_Power_ABI_FP && val > 15)
2590 || (tag == Tag_GNU_Power_ABI_Vector && val > 3)
2591 || (tag == Tag_GNU_Power_ABI_Struct_Return && val > 2))
2592 as_warn (_("unknown .gnu_attribute value"));
2593 }
2594 }
2595
2596 /* Set ABI version in output file. */
2597 void
2598 ppc_elf_md_finish (void)
2599 {
2600 if (ppc_obj64 && ppc_abiversion != 0)
2601 {
2602 elf_elfheader (stdoutput)->e_flags &= ~EF_PPC64_ABI;
2603 elf_elfheader (stdoutput)->e_flags |= ppc_abiversion & EF_PPC64_ABI;
2604 }
2605 /* Any selection of opcodes based on ppc_cpu after gas has finished
2606 parsing the file is invalid. md_apply_fix and ppc_handle_align
2607 must select opcodes based on the machine in force at the point
2608 where the fixup or alignment frag was created, not the machine in
2609 force at the end of file. */
2610 ppc_cpu = 0;
2611 }
2612
2613 /* Validate any relocations emitted for -mrelocatable, possibly adding
2614 fixups for word relocations in writable segments, so we can adjust
2615 them at runtime. */
2616 static void
2617 ppc_elf_validate_fix (fixS *fixp, segT seg)
2618 {
2619 if (fixp->fx_done || fixp->fx_pcrel)
2620 return;
2621
2622 switch (shlib)
2623 {
2624 case SHLIB_NONE:
2625 case SHLIB_PIC:
2626 return;
2627
2628 case SHLIB_MRELOCATABLE:
2629 if (fixp->fx_r_type != BFD_RELOC_16_GOTOFF
2630 && fixp->fx_r_type != BFD_RELOC_HI16_GOTOFF
2631 && fixp->fx_r_type != BFD_RELOC_LO16_GOTOFF
2632 && fixp->fx_r_type != BFD_RELOC_HI16_S_GOTOFF
2633 && fixp->fx_r_type != BFD_RELOC_16_BASEREL
2634 && fixp->fx_r_type != BFD_RELOC_LO16_BASEREL
2635 && fixp->fx_r_type != BFD_RELOC_HI16_BASEREL
2636 && fixp->fx_r_type != BFD_RELOC_HI16_S_BASEREL
2637 && (seg->flags & SEC_LOAD) != 0
2638 && strcmp (segment_name (seg), ".got2") != 0
2639 && strcmp (segment_name (seg), ".dtors") != 0
2640 && strcmp (segment_name (seg), ".ctors") != 0
2641 && strcmp (segment_name (seg), ".fixup") != 0
2642 && strcmp (segment_name (seg), ".gcc_except_table") != 0
2643 && strcmp (segment_name (seg), ".eh_frame") != 0
2644 && strcmp (segment_name (seg), ".ex_shared") != 0)
2645 {
2646 if ((seg->flags & (SEC_READONLY | SEC_CODE)) != 0
2647 || fixp->fx_r_type != BFD_RELOC_CTOR)
2648 {
2649 as_bad_where (fixp->fx_file, fixp->fx_line,
2650 _("relocation cannot be done when using -mrelocatable"));
2651 }
2652 }
2653 return;
2654 }
2655 }
2656
2657 /* Prevent elf_frob_file_before_adjust removing a weak undefined
2658 function descriptor sym if the corresponding code sym is used. */
2659
2660 void
2661 ppc_frob_file_before_adjust (void)
2662 {
2663 symbolS *symp;
2664 asection *toc;
2665
2666 if (!ppc_obj64)
2667 return;
2668
2669 for (symp = symbol_rootP; symp; symp = symbol_next (symp))
2670 {
2671 const char *name;
2672 char *dotname;
2673 symbolS *dotsym;
2674
2675 name = S_GET_NAME (symp);
2676 if (name[0] == '.')
2677 continue;
2678
2679 if (! S_IS_WEAK (symp)
2680 || S_IS_DEFINED (symp))
2681 continue;
2682
2683 dotname = concat (".", name, (char *) NULL);
2684 dotsym = symbol_find_noref (dotname, 1);
2685 free (dotname);
2686 if (dotsym != NULL && (symbol_used_p (dotsym)
2687 || symbol_used_in_reloc_p (dotsym)))
2688 symbol_mark_used (symp);
2689
2690 }
2691
2692 toc = bfd_get_section_by_name (stdoutput, ".toc");
2693 if (toc != NULL
2694 && toc_reloc_types != has_large_toc_reloc
2695 && bfd_section_size (toc) > 0x10000)
2696 as_warn (_("TOC section size exceeds 64k"));
2697 }
2698
2699 /* .TOC. used in an opd entry as .TOC.@tocbase doesn't need to be
2700 emitted. Other uses of .TOC. will cause the symbol to be marked
2701 with BSF_KEEP in md_apply_fix. */
2702
2703 void
2704 ppc_elf_adjust_symtab (void)
2705 {
2706 if (ppc_obj64)
2707 {
2708 symbolS *symp;
2709 symp = symbol_find (".TOC.");
2710 if (symp != NULL)
2711 {
2712 asymbol *bsym = symbol_get_bfdsym (symp);
2713 if ((bsym->flags & BSF_KEEP) == 0)
2714 symbol_remove (symp, &symbol_rootP, &symbol_lastP);
2715 }
2716 }
2717 }
2718 #endif /* OBJ_ELF */
2719
2720 #ifdef OBJ_XCOFF
2721 /* Parse XCOFF relocations. */
2722 static bfd_reloc_code_real_type
2723 ppc_xcoff_suffix (char **str_p)
2724 {
2725 struct map_bfd {
2726 const char *string;
2727 unsigned int length : 8;
2728 unsigned int valid32 : 1;
2729 unsigned int valid64 : 1;
2730 unsigned int reloc;
2731 };
2732
2733 char ident[20];
2734 char *str = *str_p;
2735 char *str2;
2736 int ch;
2737 int len;
2738 const struct map_bfd *ptr;
2739
2740 #define MAP(str, reloc) { str, sizeof (str) - 1, 1, 1, reloc }
2741 #define MAP32(str, reloc) { str, sizeof (str) - 1, 1, 0, reloc }
2742 #define MAP64(str, reloc) { str, sizeof (str) - 1, 0, 1, reloc }
2743
2744 static const struct map_bfd mapping[] = {
2745 MAP ("l", BFD_RELOC_PPC_TOC16_LO),
2746 MAP ("u", BFD_RELOC_PPC_TOC16_HI),
2747 MAP32 ("ie", BFD_RELOC_PPC_TLSIE),
2748 MAP32 ("ld", BFD_RELOC_PPC_TLSLD),
2749 MAP32 ("le", BFD_RELOC_PPC_TLSLE),
2750 MAP32 ("m", BFD_RELOC_PPC_TLSM),
2751 MAP32 ("ml", BFD_RELOC_PPC_TLSML),
2752 MAP64 ("ie", BFD_RELOC_PPC64_TLSIE),
2753 MAP64 ("ld", BFD_RELOC_PPC64_TLSLD),
2754 MAP64 ("le", BFD_RELOC_PPC64_TLSLE),
2755 MAP64 ("m", BFD_RELOC_PPC64_TLSM),
2756 MAP64 ("ml", BFD_RELOC_PPC64_TLSML),
2757 };
2758
2759 if (*str++ != '@')
2760 return BFD_RELOC_NONE;
2761
2762 for (ch = *str, str2 = ident;
2763 (str2 < ident + sizeof (ident) - 1
2764 && (ISALNUM (ch) || ch == '@'));
2765 ch = *++str)
2766 {
2767 *str2++ = TOLOWER (ch);
2768 }
2769
2770 *str2 = '\0';
2771 len = str2 - ident;
2772
2773 ch = ident[0];
2774 for (ptr = &mapping[0]; ptr->length > 0; ptr++)
2775 if (ch == ptr->string[0]
2776 && len == ptr->length
2777 && memcmp (ident, ptr->string, ptr->length) == 0
2778 && (ppc_obj64 ? ptr->valid64 : ptr->valid32))
2779 {
2780 *str_p = str;
2781 return (bfd_reloc_code_real_type) ptr->reloc;
2782 }
2783
2784 return BFD_RELOC_NONE;
2785 }
2786
2787 /* Restore XCOFF addis instruction to ELF format.
2788 AIX often generates addis instructions using "addis RT,D(RA)"
2789 format instead of the ELF "addis RT,RA,SI" one.
2790 On entry RT_E is at the comma after RT, D_E is at the open
2791 parenthesis after D, and RA_E is at the close parenthesis after RA. */
2792 static void
2793 ppc_xcoff_fixup_addis (char *rt_e, char *d_e, char *ra_e)
2794 {
2795 size_t ra_size = ra_e - d_e - 1;
2796 char *save_ra = xmalloc (ra_size);
2797
2798 /* Copy RA. */
2799 memcpy (save_ra, d_e + 1, ra_size);
2800 /* Shuffle D to make room for RA, copying the comma too. */
2801 memmove (rt_e + ra_size + 1, rt_e, d_e - rt_e);
2802 /* Erase the trailing ')', keeping any rubbish for potential errors. */
2803 memmove (ra_e, ra_e + 1, strlen (ra_e));
2804 /* Write RA back. */
2805 memcpy (rt_e + 1, save_ra, ra_size);
2806 free (save_ra);
2807 }
2808
2809 /* Support @ie, etc. on constants emitted via .short, .int etc. */
2810
2811 bfd_reloc_code_real_type
2812 ppc_xcoff_parse_cons (expressionS *exp, unsigned int nbytes)
2813 {
2814 expression (exp);
2815 if (nbytes >= 2 && *input_line_pointer == '@')
2816 return ppc_xcoff_suffix (&input_line_pointer);
2817
2818 /* There isn't any @ symbol for default TLS relocations (R_TLS). */
2819 if (exp->X_add_symbol != NULL
2820 && (symbol_get_tc (exp->X_add_symbol)->symbol_class == XMC_TL
2821 || symbol_get_tc (exp->X_add_symbol)->symbol_class == XMC_UL))
2822 return (ppc_obj64 ? BFD_RELOC_PPC64_TLSGD: BFD_RELOC_PPC_TLSGD);
2823
2824 return BFD_RELOC_NONE;
2825 }
2826
2827 #endif /* OBJ_XCOFF */
2828 \f
2829 #if defined (OBJ_XCOFF) || defined (OBJ_ELF)
2830 /* See whether a symbol is in the TOC section. */
2831
2832 static int
2833 ppc_is_toc_sym (symbolS *sym)
2834 {
2835 #ifdef OBJ_XCOFF
2836 return (symbol_get_tc (sym)->symbol_class == XMC_TC
2837 || symbol_get_tc (sym)->symbol_class == XMC_TE
2838 || symbol_get_tc (sym)->symbol_class == XMC_TC0);
2839 #endif
2840 #ifdef OBJ_ELF
2841 const char *sname = segment_name (S_GET_SEGMENT (sym));
2842 if (ppc_obj64)
2843 return strcmp (sname, ".toc") == 0;
2844 else
2845 return strcmp (sname, ".got") == 0;
2846 #endif
2847 }
2848 #endif /* defined (OBJ_XCOFF) || defined (OBJ_ELF) */
2849 \f
2850
2851 #ifdef OBJ_ELF
2852 #define APUID(a,v) ((((a) & 0xffff) << 16) | ((v) & 0xffff))
2853 static void
2854 ppc_apuinfo_section_add (unsigned int apu, unsigned int version)
2855 {
2856 unsigned int i;
2857
2858 /* Check we don't already exist. */
2859 for (i = 0; i < ppc_apuinfo_num; i++)
2860 if (ppc_apuinfo_list[i] == APUID (apu, version))
2861 return;
2862
2863 if (ppc_apuinfo_num == ppc_apuinfo_num_alloc)
2864 {
2865 if (ppc_apuinfo_num_alloc == 0)
2866 {
2867 ppc_apuinfo_num_alloc = 4;
2868 ppc_apuinfo_list = XNEWVEC (unsigned long, ppc_apuinfo_num_alloc);
2869 }
2870 else
2871 {
2872 ppc_apuinfo_num_alloc += 4;
2873 ppc_apuinfo_list = XRESIZEVEC (unsigned long, ppc_apuinfo_list,
2874 ppc_apuinfo_num_alloc);
2875 }
2876 }
2877 ppc_apuinfo_list[ppc_apuinfo_num++] = APUID (apu, version);
2878 }
2879 #undef APUID
2880 #endif
2881 \f
2882 /* Various frobbings of labels and their addresses. */
2883
2884 /* Symbols labelling the current insn. */
2885 struct insn_label_list
2886 {
2887 struct insn_label_list *next;
2888 symbolS *label;
2889 };
2890
2891 static struct insn_label_list *insn_labels;
2892 static struct insn_label_list *free_insn_labels;
2893
2894 static void
2895 ppc_record_label (symbolS *sym)
2896 {
2897 struct insn_label_list *l;
2898
2899 if (free_insn_labels == NULL)
2900 l = XNEW (struct insn_label_list);
2901 else
2902 {
2903 l = free_insn_labels;
2904 free_insn_labels = l->next;
2905 }
2906
2907 l->label = sym;
2908 l->next = insn_labels;
2909 insn_labels = l;
2910 }
2911
2912 static void
2913 ppc_clear_labels (void)
2914 {
2915 while (insn_labels != NULL)
2916 {
2917 struct insn_label_list *l = insn_labels;
2918 insn_labels = l->next;
2919 l->next = free_insn_labels;
2920 free_insn_labels = l;
2921 }
2922 }
2923
2924 void
2925 ppc_start_line_hook (void)
2926 {
2927 ppc_clear_labels ();
2928 }
2929
2930 void
2931 ppc_new_dot_label (symbolS *sym)
2932 {
2933 ppc_record_label (sym);
2934 #ifdef OBJ_XCOFF
2935 /* Anchor this label to the current csect for relocations. */
2936 symbol_get_tc (sym)->within = ppc_current_csect;
2937 #endif
2938 }
2939
2940 void
2941 ppc_frob_label (symbolS *sym)
2942 {
2943 ppc_record_label (sym);
2944
2945 #ifdef OBJ_XCOFF
2946 /* Set the class of a label based on where it is defined. This handles
2947 symbols without suffixes. Also, move the symbol so that it follows
2948 the csect symbol. */
2949 if (ppc_current_csect != (symbolS *) NULL)
2950 {
2951 if (symbol_get_tc (sym)->symbol_class == -1)
2952 symbol_get_tc (sym)->symbol_class = symbol_get_tc (ppc_current_csect)->symbol_class;
2953
2954 symbol_remove (sym, &symbol_rootP, &symbol_lastP);
2955 symbol_append (sym, symbol_get_tc (ppc_current_csect)->within,
2956 &symbol_rootP, &symbol_lastP);
2957 /* Update last csect symbol. */
2958 symbol_get_tc (ppc_current_csect)->within = sym;
2959
2960 /* Some labels like .bs are using within differently.
2961 So avoid changing it, if it's already set. */
2962 if (symbol_get_tc (sym)->within == NULL)
2963 symbol_get_tc (sym)->within = ppc_current_csect;
2964 }
2965 #endif
2966
2967 #ifdef OBJ_ELF
2968 dwarf2_emit_label (sym);
2969 #endif
2970 }
2971
2972 /* We need to keep a list of fixups. We can't simply generate them as
2973 we go, because that would require us to first create the frag, and
2974 that would screw up references to ``.''. */
2975
2976 struct ppc_fixup
2977 {
2978 expressionS exp;
2979 int opindex;
2980 bfd_reloc_code_real_type reloc;
2981 };
2982
2983 #define MAX_INSN_FIXUPS (5)
2984
2985 /* Return the field size operated on by RELOC, and whether it is
2986 pc-relative in PC_RELATIVE. */
2987
2988 static unsigned int
2989 fixup_size (bfd_reloc_code_real_type reloc, bool *pc_relative)
2990 {
2991 unsigned int size = 0;
2992 bool pcrel = false;
2993
2994 switch (reloc)
2995 {
2996 /* This switch statement must handle all BFD_RELOC values
2997 possible in instruction fixups. As is, it handles all
2998 BFD_RELOC values used in bfd/elf64-ppc.c, bfd/elf32-ppc.c,
2999 bfd/coff-rs6000.c and bfd/coff64-rs6000.c.
3000 Overkill since data and marker relocs need not be handled
3001 here, but this way we can be sure a needed fixup reloc isn't
3002 accidentally omitted. */
3003 case BFD_RELOC_PPC_EMB_MRKREF:
3004 case BFD_RELOC_VTABLE_ENTRY:
3005 case BFD_RELOC_VTABLE_INHERIT:
3006 break;
3007
3008 case BFD_RELOC_8:
3009 size = 1;
3010 break;
3011
3012 case BFD_RELOC_16:
3013 case BFD_RELOC_16_BASEREL:
3014 case BFD_RELOC_16_GOTOFF:
3015 case BFD_RELOC_GPREL16:
3016 case BFD_RELOC_HI16:
3017 case BFD_RELOC_HI16_BASEREL:
3018 case BFD_RELOC_HI16_GOTOFF:
3019 case BFD_RELOC_HI16_PLTOFF:
3020 case BFD_RELOC_HI16_S:
3021 case BFD_RELOC_HI16_S_BASEREL:
3022 case BFD_RELOC_HI16_S_GOTOFF:
3023 case BFD_RELOC_HI16_S_PLTOFF:
3024 case BFD_RELOC_LO16:
3025 case BFD_RELOC_LO16_BASEREL:
3026 case BFD_RELOC_LO16_GOTOFF:
3027 case BFD_RELOC_LO16_PLTOFF:
3028 case BFD_RELOC_PPC64_ADDR16_DS:
3029 case BFD_RELOC_PPC64_ADDR16_HIGH:
3030 case BFD_RELOC_PPC64_ADDR16_HIGHA:
3031 case BFD_RELOC_PPC64_ADDR16_HIGHER34:
3032 case BFD_RELOC_PPC64_ADDR16_HIGHERA34:
3033 case BFD_RELOC_PPC64_ADDR16_HIGHEST34:
3034 case BFD_RELOC_PPC64_ADDR16_HIGHESTA34:
3035 case BFD_RELOC_PPC64_ADDR16_LO_DS:
3036 case BFD_RELOC_PPC64_DTPREL16_DS:
3037 case BFD_RELOC_PPC64_DTPREL16_HIGH:
3038 case BFD_RELOC_PPC64_DTPREL16_HIGHA:
3039 case BFD_RELOC_PPC64_DTPREL16_HIGHER:
3040 case BFD_RELOC_PPC64_DTPREL16_HIGHERA:
3041 case BFD_RELOC_PPC64_DTPREL16_HIGHEST:
3042 case BFD_RELOC_PPC64_DTPREL16_HIGHESTA:
3043 case BFD_RELOC_PPC64_DTPREL16_LO_DS:
3044 case BFD_RELOC_PPC64_GOT16_DS:
3045 case BFD_RELOC_PPC64_GOT16_LO_DS:
3046 case BFD_RELOC_PPC64_HIGHER:
3047 case BFD_RELOC_PPC64_HIGHER_S:
3048 case BFD_RELOC_PPC64_HIGHEST:
3049 case BFD_RELOC_PPC64_HIGHEST_S:
3050 case BFD_RELOC_PPC64_PLT16_LO_DS:
3051 case BFD_RELOC_PPC64_PLTGOT16:
3052 case BFD_RELOC_PPC64_PLTGOT16_DS:
3053 case BFD_RELOC_PPC64_PLTGOT16_HA:
3054 case BFD_RELOC_PPC64_PLTGOT16_HI:
3055 case BFD_RELOC_PPC64_PLTGOT16_LO:
3056 case BFD_RELOC_PPC64_PLTGOT16_LO_DS:
3057 case BFD_RELOC_PPC64_SECTOFF_DS:
3058 case BFD_RELOC_PPC64_SECTOFF_LO_DS:
3059 case BFD_RELOC_PPC64_TOC16_DS:
3060 case BFD_RELOC_PPC64_TOC16_HA:
3061 case BFD_RELOC_PPC64_TOC16_HI:
3062 case BFD_RELOC_PPC64_TOC16_LO:
3063 case BFD_RELOC_PPC64_TOC16_LO_DS:
3064 case BFD_RELOC_PPC64_TPREL16_DS:
3065 case BFD_RELOC_PPC64_TPREL16_HIGH:
3066 case BFD_RELOC_PPC64_TPREL16_HIGHA:
3067 case BFD_RELOC_PPC64_TPREL16_HIGHER:
3068 case BFD_RELOC_PPC64_TPREL16_HIGHERA:
3069 case BFD_RELOC_PPC64_TPREL16_HIGHEST:
3070 case BFD_RELOC_PPC64_TPREL16_HIGHESTA:
3071 case BFD_RELOC_PPC64_TPREL16_LO_DS:
3072 #ifdef OBJ_XCOFF
3073 case BFD_RELOC_PPC_BA16:
3074 #endif
3075 case BFD_RELOC_PPC_DTPREL16:
3076 case BFD_RELOC_PPC_DTPREL16_HA:
3077 case BFD_RELOC_PPC_DTPREL16_HI:
3078 case BFD_RELOC_PPC_DTPREL16_LO:
3079 case BFD_RELOC_PPC_EMB_NADDR16:
3080 case BFD_RELOC_PPC_EMB_NADDR16_HA:
3081 case BFD_RELOC_PPC_EMB_NADDR16_HI:
3082 case BFD_RELOC_PPC_EMB_NADDR16_LO:
3083 case BFD_RELOC_PPC_EMB_RELSDA:
3084 case BFD_RELOC_PPC_EMB_RELSEC16:
3085 case BFD_RELOC_PPC_EMB_RELST_LO:
3086 case BFD_RELOC_PPC_EMB_RELST_HI:
3087 case BFD_RELOC_PPC_EMB_RELST_HA:
3088 case BFD_RELOC_PPC_EMB_SDA2I16:
3089 case BFD_RELOC_PPC_EMB_SDA2REL:
3090 case BFD_RELOC_PPC_EMB_SDAI16:
3091 case BFD_RELOC_PPC_GOT_DTPREL16:
3092 case BFD_RELOC_PPC_GOT_DTPREL16_HA:
3093 case BFD_RELOC_PPC_GOT_DTPREL16_HI:
3094 case BFD_RELOC_PPC_GOT_DTPREL16_LO:
3095 case BFD_RELOC_PPC_GOT_TLSGD16:
3096 case BFD_RELOC_PPC_GOT_TLSGD16_HA:
3097 case BFD_RELOC_PPC_GOT_TLSGD16_HI:
3098 case BFD_RELOC_PPC_GOT_TLSGD16_LO:
3099 case BFD_RELOC_PPC_GOT_TLSLD16:
3100 case BFD_RELOC_PPC_GOT_TLSLD16_HA:
3101 case BFD_RELOC_PPC_GOT_TLSLD16_HI:
3102 case BFD_RELOC_PPC_GOT_TLSLD16_LO:
3103 case BFD_RELOC_PPC_GOT_TPREL16:
3104 case BFD_RELOC_PPC_GOT_TPREL16_HA:
3105 case BFD_RELOC_PPC_GOT_TPREL16_HI:
3106 case BFD_RELOC_PPC_GOT_TPREL16_LO:
3107 case BFD_RELOC_PPC_TOC16:
3108 case BFD_RELOC_PPC_TOC16_HI:
3109 case BFD_RELOC_PPC_TOC16_LO:
3110 case BFD_RELOC_PPC_TPREL16:
3111 case BFD_RELOC_PPC_TPREL16_HA:
3112 case BFD_RELOC_PPC_TPREL16_HI:
3113 case BFD_RELOC_PPC_TPREL16_LO:
3114 size = 2;
3115 break;
3116
3117 case BFD_RELOC_16_PCREL:
3118 case BFD_RELOC_HI16_PCREL:
3119 case BFD_RELOC_HI16_S_PCREL:
3120 case BFD_RELOC_LO16_PCREL:
3121 case BFD_RELOC_PPC64_REL16_HIGH:
3122 case BFD_RELOC_PPC64_REL16_HIGHA:
3123 case BFD_RELOC_PPC64_REL16_HIGHER:
3124 case BFD_RELOC_PPC64_REL16_HIGHER34:
3125 case BFD_RELOC_PPC64_REL16_HIGHERA:
3126 case BFD_RELOC_PPC64_REL16_HIGHERA34:
3127 case BFD_RELOC_PPC64_REL16_HIGHEST:
3128 case BFD_RELOC_PPC64_REL16_HIGHEST34:
3129 case BFD_RELOC_PPC64_REL16_HIGHESTA:
3130 case BFD_RELOC_PPC64_REL16_HIGHESTA34:
3131 #ifdef OBJ_XCOFF
3132 case BFD_RELOC_PPC_B16:
3133 #endif
3134 case BFD_RELOC_PPC_VLE_REL8:
3135 size = 2;
3136 pcrel = true;
3137 break;
3138
3139 case BFD_RELOC_32:
3140 case BFD_RELOC_32_PLTOFF:
3141 #ifdef OBJ_XCOFF
3142 case BFD_RELOC_CTOR:
3143 #endif
3144 case BFD_RELOC_PPC64_ENTRY:
3145 case BFD_RELOC_PPC_16DX_HA:
3146 #ifndef OBJ_XCOFF
3147 case BFD_RELOC_PPC_BA16:
3148 #endif
3149 case BFD_RELOC_PPC_BA16_BRNTAKEN:
3150 case BFD_RELOC_PPC_BA16_BRTAKEN:
3151 case BFD_RELOC_PPC_BA26:
3152 case BFD_RELOC_PPC_EMB_BIT_FLD:
3153 case BFD_RELOC_PPC_EMB_NADDR32:
3154 case BFD_RELOC_PPC_EMB_SDA21:
3155 case BFD_RELOC_PPC_TLS:
3156 case BFD_RELOC_PPC_TLSGD:
3157 case BFD_RELOC_PPC_TLSLD:
3158 case BFD_RELOC_PPC_TLSLE:
3159 case BFD_RELOC_PPC_TLSIE:
3160 case BFD_RELOC_PPC_TLSM:
3161 case BFD_RELOC_PPC_TLSML:
3162 case BFD_RELOC_PPC_VLE_HA16A:
3163 case BFD_RELOC_PPC_VLE_HA16D:
3164 case BFD_RELOC_PPC_VLE_HI16A:
3165 case BFD_RELOC_PPC_VLE_HI16D:
3166 case BFD_RELOC_PPC_VLE_LO16A:
3167 case BFD_RELOC_PPC_VLE_LO16D:
3168 case BFD_RELOC_PPC_VLE_SDA21:
3169 case BFD_RELOC_PPC_VLE_SDA21_LO:
3170 case BFD_RELOC_PPC_VLE_SDAREL_HA16A:
3171 case BFD_RELOC_PPC_VLE_SDAREL_HA16D:
3172 case BFD_RELOC_PPC_VLE_SDAREL_HI16A:
3173 case BFD_RELOC_PPC_VLE_SDAREL_HI16D:
3174 case BFD_RELOC_PPC_VLE_SDAREL_LO16A:
3175 case BFD_RELOC_PPC_VLE_SDAREL_LO16D:
3176 case BFD_RELOC_PPC64_TLS_PCREL:
3177 case BFD_RELOC_RVA:
3178 size = 4;
3179 break;
3180
3181 case BFD_RELOC_24_PLT_PCREL:
3182 case BFD_RELOC_32_PCREL:
3183 case BFD_RELOC_32_PLT_PCREL:
3184 case BFD_RELOC_PPC64_REL24_NOTOC:
3185 case BFD_RELOC_PPC64_REL24_P9NOTOC:
3186 #ifndef OBJ_XCOFF
3187 case BFD_RELOC_PPC_B16:
3188 #endif
3189 case BFD_RELOC_PPC_B16_BRNTAKEN:
3190 case BFD_RELOC_PPC_B16_BRTAKEN:
3191 case BFD_RELOC_PPC_B26:
3192 case BFD_RELOC_PPC_LOCAL24PC:
3193 case BFD_RELOC_PPC_REL16DX_HA:
3194 case BFD_RELOC_PPC_VLE_REL15:
3195 case BFD_RELOC_PPC_VLE_REL24:
3196 size = 4;
3197 pcrel = true;
3198 break;
3199
3200 #ifndef OBJ_XCOFF
3201 case BFD_RELOC_CTOR:
3202 #endif
3203 case BFD_RELOC_PPC_COPY:
3204 case BFD_RELOC_PPC_DTPMOD:
3205 case BFD_RELOC_PPC_DTPREL:
3206 case BFD_RELOC_PPC_GLOB_DAT:
3207 case BFD_RELOC_PPC_TPREL:
3208 size = ppc_obj64 ? 8 : 4;
3209 break;
3210
3211 case BFD_RELOC_64:
3212 case BFD_RELOC_64_PLTOFF:
3213 case BFD_RELOC_PPC64_ADDR64_LOCAL:
3214 case BFD_RELOC_PPC64_D28:
3215 case BFD_RELOC_PPC64_D34:
3216 case BFD_RELOC_PPC64_D34_LO:
3217 case BFD_RELOC_PPC64_D34_HI30:
3218 case BFD_RELOC_PPC64_D34_HA30:
3219 case BFD_RELOC_PPC64_TPREL34:
3220 case BFD_RELOC_PPC64_DTPREL34:
3221 case BFD_RELOC_PPC64_TOC:
3222 case BFD_RELOC_PPC64_TLSGD:
3223 case BFD_RELOC_PPC64_TLSLD:
3224 case BFD_RELOC_PPC64_TLSLE:
3225 case BFD_RELOC_PPC64_TLSIE:
3226 case BFD_RELOC_PPC64_TLSM:
3227 case BFD_RELOC_PPC64_TLSML:
3228 size = 8;
3229 break;
3230
3231 case BFD_RELOC_64_PCREL:
3232 case BFD_RELOC_64_PLT_PCREL:
3233 case BFD_RELOC_PPC64_GOT_PCREL34:
3234 case BFD_RELOC_PPC64_GOT_TLSGD_PCREL34:
3235 case BFD_RELOC_PPC64_GOT_TLSLD_PCREL34:
3236 case BFD_RELOC_PPC64_GOT_TPREL_PCREL34:
3237 case BFD_RELOC_PPC64_GOT_DTPREL_PCREL34:
3238 case BFD_RELOC_PPC64_PCREL28:
3239 case BFD_RELOC_PPC64_PCREL34:
3240 case BFD_RELOC_PPC64_PLT_PCREL34:
3241 size = 8;
3242 pcrel = true;
3243 break;
3244
3245 default:
3246 abort ();
3247 }
3248
3249 if (ENABLE_CHECKING)
3250 {
3251 reloc_howto_type *reloc_howto = bfd_reloc_type_lookup (stdoutput, reloc);
3252 if (reloc_howto != NULL
3253 && (size != bfd_get_reloc_size (reloc_howto)
3254 || pcrel != reloc_howto->pc_relative))
3255 {
3256 as_bad (_("%s howto doesn't match size/pcrel in gas"),
3257 reloc_howto->name);
3258 abort ();
3259 }
3260 }
3261 *pc_relative = pcrel;
3262 return size;
3263 }
3264
3265 #ifdef OBJ_ELF
3266 /* If we have parsed a call to __tls_get_addr, parse an argument like
3267 (gd0@tlsgd). *STR is the leading parenthesis on entry. If an arg
3268 is successfully parsed, *STR is updated past the trailing
3269 parenthesis and trailing white space, and *TLS_FIX contains the
3270 reloc and arg expression. */
3271
3272 static int
3273 parse_tls_arg (char **str, const expressionS *exp, struct ppc_fixup *tls_fix)
3274 {
3275 const char *sym_name = S_GET_NAME (exp->X_add_symbol);
3276 if (sym_name[0] == '.')
3277 ++sym_name;
3278
3279 tls_fix->reloc = BFD_RELOC_NONE;
3280 if (strncasecmp (sym_name, "__tls_get_addr", 14) == 0
3281 && (sym_name[14] == 0
3282 || strcasecmp (sym_name + 14, "_desc") == 0
3283 || strcasecmp (sym_name + 14, "_opt") == 0))
3284 {
3285 char *hold = input_line_pointer;
3286 input_line_pointer = *str + 1;
3287 expression (&tls_fix->exp);
3288 if (tls_fix->exp.X_op == O_symbol)
3289 {
3290 if (strncasecmp (input_line_pointer, "@tlsgd)", 7) == 0)
3291 tls_fix->reloc = BFD_RELOC_PPC_TLSGD;
3292 else if (strncasecmp (input_line_pointer, "@tlsld)", 7) == 0)
3293 tls_fix->reloc = BFD_RELOC_PPC_TLSLD;
3294 if (tls_fix->reloc != BFD_RELOC_NONE)
3295 {
3296 input_line_pointer += 7;
3297 SKIP_WHITESPACE ();
3298 *str = input_line_pointer;
3299 }
3300 }
3301 input_line_pointer = hold;
3302 }
3303 return tls_fix->reloc != BFD_RELOC_NONE;
3304 }
3305 #endif
3306
3307 /* This routine is called for each instruction to be assembled. */
3308
3309 void
3310 md_assemble (char *str)
3311 {
3312 char *s;
3313 const struct powerpc_opcode *opcode;
3314 uint64_t insn;
3315 const ppc_opindex_t *opindex_ptr;
3316 int need_paren;
3317 int next_opindex;
3318 struct ppc_fixup fixups[MAX_INSN_FIXUPS];
3319 int fc;
3320 char *f;
3321 int addr_mask;
3322 int i;
3323 unsigned int insn_length;
3324
3325 /* Get the opcode. */
3326 for (s = str; *s != '\0' && ! ISSPACE (*s); s++)
3327 ;
3328 if (*s != '\0')
3329 *s++ = '\0';
3330
3331 /* Look up the opcode in the hash table. */
3332 opcode = (const struct powerpc_opcode *) str_hash_find (ppc_hash, str);
3333 if (opcode == (const struct powerpc_opcode *) NULL)
3334 {
3335 as_bad (_("unrecognized opcode: `%s'"), str);
3336 ppc_clear_labels ();
3337 return;
3338 }
3339
3340 insn = opcode->opcode;
3341 if (!target_big_endian
3342 && ((insn & ~(1 << 26)) == 46u << 26
3343 || (insn & ~(0xc0 << 1)) == (31u << 26 | 533 << 1)))
3344 {
3345 /* lmw, stmw, lswi, lswx, stswi, stswx */
3346 as_bad (_("`%s' invalid when little-endian"), str);
3347 ppc_clear_labels ();
3348 return;
3349 }
3350
3351 str = s;
3352 while (ISSPACE (*str))
3353 ++str;
3354
3355 #ifdef OBJ_XCOFF
3356 /* AIX often generates addis instructions using "addis RT, D(RA)"
3357 format instead of the classic "addis RT, RA, SI" one.
3358 Restore it to the default format as it's the one encoded
3359 in ppc opcodes. */
3360 if (!strcmp (opcode->name, "addis"))
3361 {
3362 char *rt_e = strchr (str, ',');
3363 if (rt_e != NULL
3364 && strchr (rt_e + 1, ',') == NULL)
3365 {
3366 char *d_e = strchr (rt_e + 1, '(');
3367 if (d_e != NULL && d_e != rt_e + 1)
3368 {
3369 char *ra_e = strrchr (d_e + 1, ')');
3370 if (ra_e != NULL && ra_e != d_e + 1)
3371 ppc_xcoff_fixup_addis (rt_e, d_e, ra_e);
3372 }
3373 }
3374 }
3375 #endif
3376
3377 /* PowerPC operands are just expressions. The only real issue is
3378 that a few operand types are optional. If an instruction has
3379 multiple optional operands and one is omitted, then all optional
3380 operands past the first omitted one must also be omitted. */
3381 int num_optional_operands = 0;
3382 int num_optional_provided = 0;
3383
3384 /* Gather the operands. */
3385 need_paren = 0;
3386 next_opindex = 0;
3387 fc = 0;
3388 for (opindex_ptr = opcode->operands; *opindex_ptr != 0; opindex_ptr++)
3389 {
3390 const struct powerpc_operand *operand;
3391 const char *errmsg;
3392 char *hold;
3393 expressionS ex;
3394 char endc;
3395
3396 if (next_opindex == 0)
3397 operand = &powerpc_operands[*opindex_ptr];
3398 else
3399 {
3400 operand = &powerpc_operands[next_opindex];
3401 next_opindex = 0;
3402 }
3403 errmsg = NULL;
3404
3405 /* If this is an optional operand, and we are skipping it, just
3406 insert the default value, usually a zero. */
3407 if ((operand->flags & PPC_OPERAND_OPTIONAL) != 0
3408 && !((operand->flags & PPC_OPERAND_OPTIONAL32) != 0 && ppc_obj64))
3409 {
3410 if (num_optional_operands == 0)
3411 {
3412 const ppc_opindex_t *optr;
3413 int total = 0;
3414 int provided = 0;
3415 int omitted;
3416
3417 s = str;
3418 for (optr = opindex_ptr; *optr != 0; optr++)
3419 {
3420 const struct powerpc_operand *op;
3421 op = &powerpc_operands[*optr];
3422
3423 ++total;
3424
3425 if ((op->flags & PPC_OPERAND_OPTIONAL) != 0
3426 && !((op->flags & PPC_OPERAND_OPTIONAL32) != 0
3427 && ppc_obj64))
3428 ++num_optional_operands;
3429
3430 if (s != NULL && *s != '\0')
3431 {
3432 ++provided;
3433
3434 /* Look for the start of the next operand. */
3435 if ((op->flags & PPC_OPERAND_PARENS) != 0)
3436 s = strpbrk (s, "(,");
3437 else
3438 s = strchr (s, ',');
3439
3440 if (s != NULL)
3441 ++s;
3442 }
3443 }
3444 omitted = total - provided;
3445 num_optional_provided = num_optional_operands - omitted;
3446 }
3447 if (--num_optional_provided < 0)
3448 {
3449 uint64_t val = ppc_optional_operand_value (operand, insn, ppc_cpu,
3450 num_optional_provided);
3451 if (operand->insert)
3452 {
3453 insn = (*operand->insert) (insn, val, ppc_cpu, &errmsg);
3454 if (errmsg != (const char *) NULL)
3455 as_bad ("%s", errmsg);
3456 }
3457 else if (operand->shift >= 0)
3458 insn |= (val & operand->bitm) << operand->shift;
3459 else
3460 insn |= (val & operand->bitm) >> -operand->shift;
3461
3462 if ((operand->flags & PPC_OPERAND_NEXT) != 0)
3463 next_opindex = *opindex_ptr + 1;
3464 continue;
3465 }
3466 }
3467
3468 /* Gather the operand. */
3469 hold = input_line_pointer;
3470 input_line_pointer = str;
3471 cr_operand = ((operand->flags & PPC_OPERAND_CR_BIT) != 0
3472 || (operand->flags & PPC_OPERAND_CR_REG) != 0);
3473 expression (&ex);
3474 cr_operand = false;
3475 str = input_line_pointer;
3476 input_line_pointer = hold;
3477
3478 if (ex.X_op == O_illegal)
3479 as_bad (_("illegal operand"));
3480 else if (ex.X_op == O_absent)
3481 as_bad (_("missing operand"));
3482 else if (ex.X_op == O_register)
3483 {
3484 if ((ex.X_md
3485 & ~operand->flags
3486 & (PPC_OPERAND_GPR | PPC_OPERAND_FPR | PPC_OPERAND_VR
3487 | PPC_OPERAND_VSR | PPC_OPERAND_CR_BIT | PPC_OPERAND_CR_REG
3488 | PPC_OPERAND_SPR | PPC_OPERAND_GQR | PPC_OPERAND_ACC
3489 | PPC_OPERAND_DMR)) != 0
3490 && !((ex.X_md & PPC_OPERAND_GPR) != 0
3491 && ex.X_add_number != 0
3492 && (operand->flags & PPC_OPERAND_GPR_0) != 0))
3493 as_warn (_("invalid register expression"));
3494 insn = ppc_insert_operand (insn, operand, ex.X_add_number,
3495 ppc_cpu, (char *) NULL, 0);
3496 }
3497 else if (ex.X_op == O_constant
3498 || (ex.X_op == O_big && ex.X_add_number > 0))
3499 {
3500 uint64_t val;
3501 if (ex.X_op == O_constant)
3502 {
3503 val = ex.X_add_number;
3504 if (sizeof (ex.X_add_number) < sizeof (val)
3505 && (ex.X_add_number < 0) != ex.X_extrabit)
3506 val = val ^ ((addressT) -1 ^ (uint64_t) -1);
3507 }
3508 else
3509 val = generic_bignum_to_int64 ();
3510 #ifdef OBJ_ELF
3511 /* Allow @HA, @L, @H on constants. */
3512 char *orig_str = str;
3513 bfd_reloc_code_real_type reloc = ppc_elf_suffix (&str, &ex);
3514
3515 if (ex.X_op == O_constant)
3516 {
3517 val = ex.X_add_number;
3518 if (sizeof (ex.X_add_number) < sizeof (val)
3519 && (ex.X_add_number < 0) != ex.X_extrabit)
3520 val = val ^ ((addressT) -1 ^ (uint64_t) -1);
3521 }
3522 if (reloc != BFD_RELOC_NONE)
3523 switch (reloc)
3524 {
3525 default:
3526 str = orig_str;
3527 break;
3528
3529 case BFD_RELOC_LO16:
3530 val &= 0xffff;
3531 if ((operand->flags & PPC_OPERAND_SIGNED) != 0)
3532 val = SEX16 (val);
3533 break;
3534
3535 case BFD_RELOC_HI16:
3536 if (REPORT_OVERFLOW_HI && ppc_obj64)
3537 {
3538 /* PowerPC64 @h is tested for overflow. */
3539 val = val >> 16;
3540 if ((operand->flags & PPC_OPERAND_SIGNED) != 0)
3541 {
3542 uint64_t sign = (((uint64_t) -1 >> 16) + 1) >> 1;
3543 val = (val ^ sign) - sign;
3544 }
3545 break;
3546 }
3547 /* Fallthru */
3548
3549 case BFD_RELOC_PPC64_ADDR16_HIGH:
3550 val = PPC_HI (val);
3551 if ((operand->flags & PPC_OPERAND_SIGNED) != 0)
3552 val = SEX16 (val);
3553 break;
3554
3555 case BFD_RELOC_HI16_S:
3556 if (REPORT_OVERFLOW_HI && ppc_obj64)
3557 {
3558 /* PowerPC64 @ha is tested for overflow. */
3559 val = (val + 0x8000) >> 16;
3560 if ((operand->flags & PPC_OPERAND_SIGNED) != 0)
3561 {
3562 uint64_t sign = (((uint64_t) -1 >> 16) + 1) >> 1;
3563 val = (val ^ sign) - sign;
3564 }
3565 break;
3566 }
3567 /* Fallthru */
3568
3569 case BFD_RELOC_PPC64_ADDR16_HIGHA:
3570 val = PPC_HA (val);
3571 if ((operand->flags & PPC_OPERAND_SIGNED) != 0)
3572 val = SEX16 (val);
3573 break;
3574
3575 case BFD_RELOC_PPC64_HIGHER:
3576 val = PPC_HIGHER (val);
3577 if ((operand->flags & PPC_OPERAND_SIGNED) != 0)
3578 val = SEX16 (val);
3579 break;
3580
3581 case BFD_RELOC_PPC64_HIGHER_S:
3582 val = PPC_HIGHERA (val);
3583 if ((operand->flags & PPC_OPERAND_SIGNED) != 0)
3584 val = SEX16 (val);
3585 break;
3586
3587 case BFD_RELOC_PPC64_HIGHEST:
3588 val = PPC_HIGHEST (val);
3589 if ((operand->flags & PPC_OPERAND_SIGNED) != 0)
3590 val = SEX16 (val);
3591 break;
3592
3593 case BFD_RELOC_PPC64_HIGHEST_S:
3594 val = PPC_HIGHESTA (val);
3595 if ((operand->flags & PPC_OPERAND_SIGNED) != 0)
3596 val = SEX16 (val);
3597 break;
3598 }
3599 #endif /* OBJ_ELF */
3600 insn = ppc_insert_operand (insn, operand, val, ppc_cpu, NULL, 0);
3601 }
3602 else
3603 {
3604 bfd_reloc_code_real_type reloc = BFD_RELOC_NONE;
3605 #ifdef OBJ_ELF
3606 /* Look for a __tls_get_addr arg using the insane old syntax. */
3607 if (ex.X_op == O_symbol && *str == '(' && fc < MAX_INSN_FIXUPS
3608 && parse_tls_arg (&str, &ex, &fixups[fc]))
3609 {
3610 fixups[fc].opindex = *opindex_ptr;
3611 ++fc;
3612 }
3613
3614 if ((reloc = ppc_elf_suffix (&str, &ex)) != BFD_RELOC_NONE)
3615 {
3616 /* If VLE-mode convert LO/HI/HA relocations. */
3617 if (opcode->flags & PPC_OPCODE_VLE)
3618 {
3619 uint64_t tmp_insn = insn & opcode->mask;
3620
3621 int use_a_reloc = (tmp_insn == E_OR2I_INSN
3622 || tmp_insn == E_AND2I_DOT_INSN
3623 || tmp_insn == E_OR2IS_INSN
3624 || tmp_insn == E_LI_INSN
3625 || tmp_insn == E_LIS_INSN
3626 || tmp_insn == E_AND2IS_DOT_INSN);
3627
3628
3629 int use_d_reloc = (tmp_insn == E_ADD2I_DOT_INSN
3630 || tmp_insn == E_ADD2IS_INSN
3631 || tmp_insn == E_CMP16I_INSN
3632 || tmp_insn == E_MULL2I_INSN
3633 || tmp_insn == E_CMPL16I_INSN
3634 || tmp_insn == E_CMPH16I_INSN
3635 || tmp_insn == E_CMPHL16I_INSN);
3636
3637 switch (reloc)
3638 {
3639 default:
3640 break;
3641
3642 case BFD_RELOC_PPC_EMB_SDA21:
3643 reloc = BFD_RELOC_PPC_VLE_SDA21;
3644 break;
3645
3646 case BFD_RELOC_LO16:
3647 if (use_d_reloc)
3648 reloc = BFD_RELOC_PPC_VLE_LO16D;
3649 else if (use_a_reloc)
3650 reloc = BFD_RELOC_PPC_VLE_LO16A;
3651 break;
3652
3653 case BFD_RELOC_HI16:
3654 if (use_d_reloc)
3655 reloc = BFD_RELOC_PPC_VLE_HI16D;
3656 else if (use_a_reloc)
3657 reloc = BFD_RELOC_PPC_VLE_HI16A;
3658 break;
3659
3660 case BFD_RELOC_HI16_S:
3661 if (use_d_reloc)
3662 reloc = BFD_RELOC_PPC_VLE_HA16D;
3663 else if (use_a_reloc)
3664 reloc = BFD_RELOC_PPC_VLE_HA16A;
3665 break;
3666
3667 case BFD_RELOC_PPC_VLE_SDAREL_LO16A:
3668 if (use_d_reloc)
3669 reloc = BFD_RELOC_PPC_VLE_SDAREL_LO16D;
3670 break;
3671
3672 case BFD_RELOC_PPC_VLE_SDAREL_HI16A:
3673 if (use_d_reloc)
3674 reloc = BFD_RELOC_PPC_VLE_SDAREL_HI16D;
3675 break;
3676
3677 case BFD_RELOC_PPC_VLE_SDAREL_HA16A:
3678 if (use_d_reloc)
3679 reloc = BFD_RELOC_PPC_VLE_SDAREL_HA16D;
3680 break;
3681 }
3682 }
3683
3684 /* TLS and other tweaks. */
3685 switch (reloc)
3686 {
3687 default:
3688 break;
3689
3690 case BFD_RELOC_PPC_TLS:
3691 case BFD_RELOC_PPC64_TLS_PCREL:
3692 if (!_bfd_elf_ppc_at_tls_transform (opcode->opcode, 0))
3693 as_bad (_("@tls may not be used with \"%s\" operands"),
3694 opcode->name);
3695 else if (operand->shift != 11)
3696 as_bad (_("@tls may only be used in last operand"));
3697 else
3698 insn = ppc_insert_operand (insn, operand,
3699 ppc_obj64 ? 13 : 2,
3700 ppc_cpu, (char *) NULL, 0);
3701 break;
3702
3703 /* We'll only use the 32 (or 64) bit form of these relocations
3704 in constants. Instructions get the 16 or 34 bit form. */
3705 case BFD_RELOC_PPC_DTPREL:
3706 if (operand->bitm == 0x3ffffffffULL)
3707 reloc = BFD_RELOC_PPC64_DTPREL34;
3708 else
3709 reloc = BFD_RELOC_PPC_DTPREL16;
3710 break;
3711
3712 case BFD_RELOC_PPC_TPREL:
3713 if (operand->bitm == 0x3ffffffffULL)
3714 reloc = BFD_RELOC_PPC64_TPREL34;
3715 else
3716 reloc = BFD_RELOC_PPC_TPREL16;
3717 break;
3718
3719 case BFD_RELOC_PPC64_PCREL34:
3720 if (operand->bitm == 0xfffffffULL)
3721 {
3722 reloc = BFD_RELOC_PPC64_PCREL28;
3723 break;
3724 }
3725 /* Fall through. */
3726 case BFD_RELOC_PPC64_GOT_PCREL34:
3727 case BFD_RELOC_PPC64_PLT_PCREL34:
3728 case BFD_RELOC_PPC64_GOT_TLSGD_PCREL34:
3729 case BFD_RELOC_PPC64_GOT_TLSLD_PCREL34:
3730 case BFD_RELOC_PPC64_GOT_TPREL_PCREL34:
3731 case BFD_RELOC_PPC64_GOT_DTPREL_PCREL34:
3732 if (operand->bitm != 0x3ffffffffULL
3733 || (operand->flags & PPC_OPERAND_NEGATIVE) != 0)
3734 as_warn (_("%s unsupported on this instruction"), "@pcrel");
3735 break;
3736
3737 case BFD_RELOC_LO16:
3738 if (operand->bitm == 0x3ffffffffULL
3739 && (operand->flags & PPC_OPERAND_NEGATIVE) == 0)
3740 reloc = BFD_RELOC_PPC64_D34_LO;
3741 else if ((operand->bitm | 0xf) != 0xffff
3742 || operand->shift != 0
3743 || (operand->flags & PPC_OPERAND_NEGATIVE) != 0)
3744 as_warn (_("%s unsupported on this instruction"), "@l");
3745 break;
3746
3747 case BFD_RELOC_HI16:
3748 if (operand->bitm == 0x3ffffffffULL
3749 && (operand->flags & PPC_OPERAND_NEGATIVE) == 0)
3750 reloc = BFD_RELOC_PPC64_D34_HI30;
3751 else if (operand->bitm != 0xffff
3752 || operand->shift != 0
3753 || (operand->flags & PPC_OPERAND_NEGATIVE) != 0)
3754 as_warn (_("%s unsupported on this instruction"), "@h");
3755 break;
3756
3757 case BFD_RELOC_HI16_S:
3758 if (operand->bitm == 0x3ffffffffULL
3759 && (operand->flags & PPC_OPERAND_NEGATIVE) == 0)
3760 reloc = BFD_RELOC_PPC64_D34_HA30;
3761 else if (operand->bitm == 0xffff
3762 && operand->shift == (int) PPC_OPSHIFT_INV
3763 && opcode->opcode == (19 << 26) + (2 << 1))
3764 /* addpcis. */
3765 reloc = BFD_RELOC_PPC_16DX_HA;
3766 else if (operand->bitm != 0xffff
3767 || operand->shift != 0
3768 || (operand->flags & PPC_OPERAND_NEGATIVE) != 0)
3769 as_warn (_("%s unsupported on this instruction"), "@ha");
3770 }
3771 }
3772 #endif /* OBJ_ELF */
3773 #ifdef OBJ_XCOFF
3774 reloc = ppc_xcoff_suffix (&str);
3775 #endif /* OBJ_XCOFF */
3776
3777 if (reloc != BFD_RELOC_NONE)
3778 ;
3779 /* Determine a BFD reloc value based on the operand information.
3780 We are only prepared to turn a few of the operands into
3781 relocs. */
3782 else if ((operand->flags & (PPC_OPERAND_RELATIVE
3783 | PPC_OPERAND_ABSOLUTE)) != 0
3784 && operand->bitm == 0x3fffffc
3785 && operand->shift == 0)
3786 reloc = BFD_RELOC_PPC_B26;
3787 else if ((operand->flags & (PPC_OPERAND_RELATIVE
3788 | PPC_OPERAND_ABSOLUTE)) != 0
3789 && operand->bitm == 0xfffc
3790 && operand->shift == 0)
3791 reloc = BFD_RELOC_PPC_B16;
3792 else if ((operand->flags & PPC_OPERAND_RELATIVE) != 0
3793 && operand->bitm == 0x1fe
3794 && operand->shift == -1)
3795 reloc = BFD_RELOC_PPC_VLE_REL8;
3796 else if ((operand->flags & PPC_OPERAND_RELATIVE) != 0
3797 && operand->bitm == 0xfffe
3798 && operand->shift == 0)
3799 reloc = BFD_RELOC_PPC_VLE_REL15;
3800 else if ((operand->flags & PPC_OPERAND_RELATIVE) != 0
3801 && operand->bitm == 0x1fffffe
3802 && operand->shift == 0)
3803 reloc = BFD_RELOC_PPC_VLE_REL24;
3804 else if ((operand->flags & PPC_OPERAND_NEGATIVE) == 0
3805 && (operand->bitm & 0xfff0) == 0xfff0
3806 && operand->shift == 0)
3807 {
3808 reloc = BFD_RELOC_16;
3809 #if defined OBJ_XCOFF || defined OBJ_ELF
3810 /* Note: the symbol may be not yet defined. */
3811 if ((operand->flags & PPC_OPERAND_PARENS) != 0
3812 && ppc_is_toc_sym (ex.X_add_symbol))
3813 {
3814 reloc = BFD_RELOC_PPC_TOC16;
3815 #ifdef OBJ_ELF
3816 as_warn (_("assuming %s on symbol"),
3817 ppc_obj64 ? "@toc" : "@xgot");
3818 #endif
3819 }
3820 #endif
3821 }
3822 else if (operand->bitm == 0x3ffffffffULL)
3823 reloc = BFD_RELOC_PPC64_D34;
3824 else if (operand->bitm == 0xfffffffULL)
3825 reloc = BFD_RELOC_PPC64_D28;
3826
3827 /* For the absolute forms of branches, convert the PC
3828 relative form back into the absolute. */
3829 if ((operand->flags & PPC_OPERAND_ABSOLUTE) != 0)
3830 {
3831 switch (reloc)
3832 {
3833 case BFD_RELOC_PPC_B26:
3834 reloc = BFD_RELOC_PPC_BA26;
3835 break;
3836 case BFD_RELOC_PPC_B16:
3837 reloc = BFD_RELOC_PPC_BA16;
3838 break;
3839 #ifdef OBJ_ELF
3840 case BFD_RELOC_PPC_B16_BRTAKEN:
3841 reloc = BFD_RELOC_PPC_BA16_BRTAKEN;
3842 break;
3843 case BFD_RELOC_PPC_B16_BRNTAKEN:
3844 reloc = BFD_RELOC_PPC_BA16_BRNTAKEN;
3845 break;
3846 #endif
3847 default:
3848 break;
3849 }
3850 }
3851
3852 #ifdef OBJ_ELF
3853 switch (reloc)
3854 {
3855 case BFD_RELOC_PPC_TOC16:
3856 toc_reloc_types |= has_small_toc_reloc;
3857 break;
3858 case BFD_RELOC_PPC64_TOC16_LO:
3859 case BFD_RELOC_PPC64_TOC16_HI:
3860 case BFD_RELOC_PPC64_TOC16_HA:
3861 toc_reloc_types |= has_large_toc_reloc;
3862 break;
3863 default:
3864 break;
3865 }
3866
3867 if (ppc_obj64
3868 && (operand->flags & (PPC_OPERAND_DS | PPC_OPERAND_DQ)) != 0)
3869 {
3870 switch (reloc)
3871 {
3872 case BFD_RELOC_16:
3873 reloc = BFD_RELOC_PPC64_ADDR16_DS;
3874 break;
3875
3876 case BFD_RELOC_LO16:
3877 reloc = BFD_RELOC_PPC64_ADDR16_LO_DS;
3878 break;
3879
3880 case BFD_RELOC_16_GOTOFF:
3881 reloc = BFD_RELOC_PPC64_GOT16_DS;
3882 break;
3883
3884 case BFD_RELOC_LO16_GOTOFF:
3885 reloc = BFD_RELOC_PPC64_GOT16_LO_DS;
3886 break;
3887
3888 case BFD_RELOC_LO16_PLTOFF:
3889 reloc = BFD_RELOC_PPC64_PLT16_LO_DS;
3890 break;
3891
3892 case BFD_RELOC_16_BASEREL:
3893 reloc = BFD_RELOC_PPC64_SECTOFF_DS;
3894 break;
3895
3896 case BFD_RELOC_LO16_BASEREL:
3897 reloc = BFD_RELOC_PPC64_SECTOFF_LO_DS;
3898 break;
3899
3900 case BFD_RELOC_PPC_TOC16:
3901 reloc = BFD_RELOC_PPC64_TOC16_DS;
3902 break;
3903
3904 case BFD_RELOC_PPC64_TOC16_LO:
3905 reloc = BFD_RELOC_PPC64_TOC16_LO_DS;
3906 break;
3907
3908 case BFD_RELOC_PPC64_PLTGOT16:
3909 reloc = BFD_RELOC_PPC64_PLTGOT16_DS;
3910 break;
3911
3912 case BFD_RELOC_PPC64_PLTGOT16_LO:
3913 reloc = BFD_RELOC_PPC64_PLTGOT16_LO_DS;
3914 break;
3915
3916 case BFD_RELOC_PPC_DTPREL16:
3917 reloc = BFD_RELOC_PPC64_DTPREL16_DS;
3918 break;
3919
3920 case BFD_RELOC_PPC_DTPREL16_LO:
3921 reloc = BFD_RELOC_PPC64_DTPREL16_LO_DS;
3922 break;
3923
3924 case BFD_RELOC_PPC_TPREL16:
3925 reloc = BFD_RELOC_PPC64_TPREL16_DS;
3926 break;
3927
3928 case BFD_RELOC_PPC_TPREL16_LO:
3929 reloc = BFD_RELOC_PPC64_TPREL16_LO_DS;
3930 break;
3931
3932 case BFD_RELOC_PPC_GOT_DTPREL16:
3933 case BFD_RELOC_PPC_GOT_DTPREL16_LO:
3934 case BFD_RELOC_PPC_GOT_TPREL16:
3935 case BFD_RELOC_PPC_GOT_TPREL16_LO:
3936 break;
3937
3938 default:
3939 as_bad (_("unsupported relocation for DS offset field"));
3940 break;
3941 }
3942 }
3943
3944 /* Look for a __tls_get_addr arg after any __tls_get_addr
3945 modifiers like @plt. This fixup must be emitted before
3946 the usual call fixup. */
3947 if (ex.X_op == O_symbol && *str == '(' && fc < MAX_INSN_FIXUPS
3948 && parse_tls_arg (&str, &ex, &fixups[fc]))
3949 {
3950 fixups[fc].opindex = *opindex_ptr;
3951 ++fc;
3952 }
3953 #endif
3954
3955 /* We need to generate a fixup for this expression. */
3956 if (fc >= MAX_INSN_FIXUPS)
3957 as_fatal (_("too many fixups"));
3958 fixups[fc].exp = ex;
3959 fixups[fc].opindex = *opindex_ptr;
3960 fixups[fc].reloc = reloc;
3961 ++fc;
3962 }
3963
3964 if (need_paren)
3965 {
3966 endc = ')';
3967 need_paren = 0;
3968 /* If expecting more operands, then we want to see "),". */
3969 if (*str == endc && opindex_ptr[1] != 0)
3970 {
3971 do
3972 ++str;
3973 while (ISSPACE (*str));
3974 endc = ',';
3975 }
3976 }
3977 else if ((operand->flags & PPC_OPERAND_PARENS) != 0)
3978 endc = '(';
3979 else
3980 endc = ',';
3981
3982 /* The call to expression should have advanced str past any
3983 whitespace. */
3984 if (*str == endc)
3985 {
3986 ++str;
3987 if (endc == '(')
3988 need_paren = 1;
3989 }
3990 else if (*str != '\0')
3991 {
3992 as_bad (_("syntax error; found `%c', expected `%c'"), *str, endc);
3993 break;
3994 }
3995 else if (endc == ')')
3996 {
3997 as_bad (_("syntax error; end of line, expected `%c'"), endc);
3998 break;
3999 }
4000 }
4001
4002 while (ISSPACE (*str))
4003 ++str;
4004
4005 if (*str != '\0')
4006 as_bad (_("junk at end of line: `%s'"), str);
4007
4008 #ifdef OBJ_ELF
4009 /* Do we need/want an APUinfo section? */
4010 if ((ppc_cpu & (PPC_OPCODE_E500 | PPC_OPCODE_E500MC | PPC_OPCODE_VLE)) != 0
4011 && !ppc_obj64)
4012 {
4013 /* These are all version "1". */
4014 if (opcode->flags & PPC_OPCODE_SPE)
4015 ppc_apuinfo_section_add (PPC_APUINFO_SPE, 1);
4016 if (opcode->flags & PPC_OPCODE_ISEL)
4017 ppc_apuinfo_section_add (PPC_APUINFO_ISEL, 1);
4018 if (opcode->flags & PPC_OPCODE_EFS)
4019 ppc_apuinfo_section_add (PPC_APUINFO_EFS, 1);
4020 if (opcode->flags & PPC_OPCODE_BRLOCK)
4021 ppc_apuinfo_section_add (PPC_APUINFO_BRLOCK, 1);
4022 if (opcode->flags & PPC_OPCODE_PMR)
4023 ppc_apuinfo_section_add (PPC_APUINFO_PMR, 1);
4024 if (opcode->flags & PPC_OPCODE_CACHELCK)
4025 ppc_apuinfo_section_add (PPC_APUINFO_CACHELCK, 1);
4026 if (opcode->flags & PPC_OPCODE_RFMCI)
4027 ppc_apuinfo_section_add (PPC_APUINFO_RFMCI, 1);
4028 /* Only set the VLE flag if the instruction has been pulled via
4029 the VLE instruction set. This way the flag is guaranteed to
4030 be set for VLE-only instructions or for VLE-only processors,
4031 however it'll remain clear for dual-mode instructions on
4032 dual-mode and, more importantly, standard-mode processors. */
4033 if (ppc_cpu & opcode->flags & PPC_OPCODE_VLE)
4034 {
4035 ppc_apuinfo_section_add (PPC_APUINFO_VLE, 1);
4036 if (elf_section_data (now_seg) != NULL)
4037 elf_section_data (now_seg)->this_hdr.sh_flags |= SHF_PPC_VLE;
4038 }
4039 }
4040 #endif
4041
4042 /* Write out the instruction. */
4043
4044 addr_mask = 3;
4045 if ((ppc_cpu & PPC_OPCODE_VLE) != 0)
4046 /* All instructions can start on a 2 byte boundary for VLE. */
4047 addr_mask = 1;
4048
4049 if (frag_now->insn_addr != addr_mask)
4050 {
4051 /* Don't emit instructions to a frag started for data, or for a
4052 CPU differing in VLE mode. Data is allowed to be misaligned,
4053 and it's possible to start a new frag in the middle of
4054 misaligned data. */
4055 frag_wane (frag_now);
4056 frag_new (0);
4057 }
4058
4059 /* Check that insns within the frag are aligned. ppc_frag_check
4060 will ensure that the frag start address is aligned. */
4061 if ((frag_now_fix () & addr_mask) != 0)
4062 as_bad (_("instruction address is not a multiple of %d"), addr_mask + 1);
4063
4064 /* Differentiate between two, four, and eight byte insns. */
4065 insn_length = 4;
4066 if ((ppc_cpu & PPC_OPCODE_VLE) != 0 && PPC_OP_SE_VLE (insn))
4067 insn_length = 2;
4068 else if ((opcode->flags & PPC_OPCODE_POWER10) != 0
4069 && PPC_PREFIX_P (insn))
4070 {
4071 struct insn_label_list *l;
4072
4073 insn_length = 8;
4074
4075 /* 8-byte prefix instructions are not allowed to cross 64-byte
4076 boundaries. */
4077 frag_align_code (6, 4);
4078 record_alignment (now_seg, 6);
4079 #ifdef OBJ_XCOFF
4080 /* Update alignment of the containing csect. */
4081 if (symbol_get_tc (ppc_current_csect)->align < 6)
4082 symbol_get_tc (ppc_current_csect)->align = 6;
4083 #endif
4084
4085 /* Update "dot" in any expressions used by this instruction, and
4086 a label attached to the instruction. By "attached" we mean
4087 on the same source line as the instruction and without any
4088 intervening semicolons. */
4089 dot_value = frag_now_fix ();
4090 dot_frag = frag_now;
4091 for (l = insn_labels; l != NULL; l = l->next)
4092 {
4093 symbol_set_frag (l->label, dot_frag);
4094 S_SET_VALUE (l->label, dot_value);
4095 }
4096 }
4097
4098 ppc_clear_labels ();
4099
4100 f = frag_more (insn_length);
4101 frag_now->insn_addr = addr_mask;
4102
4103 /* The prefix part of an 8-byte instruction always occupies the lower
4104 addressed word in a doubleword, regardless of endianness. */
4105 if (insn_length == 8
4106 && (sizeof (insn) > sizeof (valueT) || !target_big_endian))
4107 {
4108 md_number_to_chars (f, PPC_GET_PREFIX (insn), 4);
4109 md_number_to_chars (f + 4, PPC_GET_SUFFIX (insn), 4);
4110 }
4111 else
4112 md_number_to_chars (f, insn, insn_length);
4113
4114 last_insn = insn;
4115 last_seg = now_seg;
4116 last_subseg = now_subseg;
4117
4118 #ifdef OBJ_ELF
4119 dwarf2_emit_insn (insn_length);
4120 #endif
4121
4122 /* Create any fixups. */
4123 for (i = 0; i < fc; i++)
4124 {
4125 fixS *fixP;
4126 if (fixups[i].reloc != BFD_RELOC_NONE)
4127 {
4128 bool pcrel;
4129 unsigned int size = fixup_size (fixups[i].reloc, &pcrel);
4130 int offset = target_big_endian ? (insn_length - size) : 0;
4131
4132 fixP = fix_new_exp (frag_now,
4133 f - frag_now->fr_literal + offset,
4134 size,
4135 &fixups[i].exp,
4136 pcrel,
4137 fixups[i].reloc);
4138 }
4139 else
4140 {
4141 const struct powerpc_operand *operand;
4142
4143 operand = &powerpc_operands[fixups[i].opindex];
4144 fixP = fix_new_exp (frag_now,
4145 f - frag_now->fr_literal,
4146 insn_length,
4147 &fixups[i].exp,
4148 (operand->flags & PPC_OPERAND_RELATIVE) != 0,
4149 BFD_RELOC_NONE);
4150 }
4151 fixP->fx_pcrel_adjust = fixups[i].opindex;
4152 }
4153 }
4154 \f
4155 #ifdef OBJ_ELF
4156 /* For ELF, add support for SHT_ORDERED. */
4157
4158 int
4159 ppc_section_type (char *str, size_t len)
4160 {
4161 if (len == 7 && startswith (str, "ordered"))
4162 return SHT_ORDERED;
4163
4164 return -1;
4165 }
4166
4167 int
4168 ppc_section_flags (flagword flags, bfd_vma attr ATTRIBUTE_UNUSED, int type)
4169 {
4170 if (type == SHT_ORDERED)
4171 flags |= SEC_ALLOC | SEC_LOAD | SEC_SORT_ENTRIES;
4172
4173 return flags;
4174 }
4175
4176 bfd_vma
4177 ppc_elf_section_letter (int letter, const char **ptrmsg)
4178 {
4179 if (letter == 'v')
4180 return SHF_PPC_VLE;
4181
4182 *ptrmsg = _("bad .section directive: want a,e,v,w,x,M,S,G,T in string");
4183 return -1;
4184 }
4185 #endif /* OBJ_ELF */
4186
4187 \f
4188 /* Pseudo-op handling. */
4189
4190 /* The .byte pseudo-op. This is similar to the normal .byte
4191 pseudo-op, but it can also take a single ASCII string. */
4192
4193 static void
4194 ppc_byte (int ignore ATTRIBUTE_UNUSED)
4195 {
4196 int count = 0;
4197
4198 if (*input_line_pointer != '\"')
4199 {
4200 cons (1);
4201 return;
4202 }
4203
4204 /* Gather characters. A real double quote is doubled. Unusual
4205 characters are not permitted. */
4206 ++input_line_pointer;
4207 while (1)
4208 {
4209 char c;
4210
4211 c = *input_line_pointer++;
4212
4213 if (c == '\"')
4214 {
4215 if (*input_line_pointer != '\"')
4216 break;
4217 ++input_line_pointer;
4218 }
4219
4220 FRAG_APPEND_1_CHAR (c);
4221 ++count;
4222 }
4223
4224 if (warn_476 && count != 0 && (now_seg->flags & SEC_CODE) != 0)
4225 as_warn (_("data in executable section"));
4226 demand_empty_rest_of_line ();
4227 }
4228 \f
4229 #ifdef OBJ_XCOFF
4230
4231 /* XCOFF specific pseudo-op handling. */
4232
4233 /* This is set if we are creating a .stabx symbol, since we don't want
4234 to handle symbol suffixes for such symbols. */
4235 static bool ppc_stab_symbol;
4236
4237 /* Retrieve the visiblity input for pseudo-ops having ones. */
4238 static unsigned short
4239 ppc_xcoff_get_visibility (void) {
4240 SKIP_WHITESPACE();
4241
4242 if (startswith (input_line_pointer, "exported"))
4243 {
4244 input_line_pointer += 8;
4245 return SYM_V_EXPORTED;
4246 }
4247
4248 if (startswith (input_line_pointer, "hidden"))
4249 {
4250 input_line_pointer += 6;
4251 return SYM_V_HIDDEN;
4252 }
4253
4254 if (startswith (input_line_pointer, "internal"))
4255 {
4256 input_line_pointer += 8;
4257 return SYM_V_INTERNAL;
4258 }
4259
4260 if (startswith (input_line_pointer, "protected"))
4261 {
4262 input_line_pointer += 9;
4263 return SYM_V_PROTECTED;
4264 }
4265
4266 return 0;
4267 }
4268
4269 /* Retrieve visiblity using GNU syntax. */
4270 static void ppc_GNU_visibility (int visibility) {
4271 int c;
4272 char *name;
4273 symbolS *symbolP;
4274 coff_symbol_type *coffsym;
4275
4276 do
4277 {
4278 if ((name = read_symbol_name ()) == NULL)
4279 break;
4280 symbolP = symbol_find_or_make (name);
4281 free (name);
4282 coffsym = coffsymbol (symbol_get_bfdsym (symbolP));
4283
4284 coffsym->native->u.syment.n_type &= ~SYM_V_MASK;
4285 coffsym->native->u.syment.n_type |= visibility;
4286
4287 c = *input_line_pointer;
4288 if (c == ',')
4289 {
4290 input_line_pointer ++;
4291
4292 SKIP_WHITESPACE ();
4293
4294 if (*input_line_pointer == '\n')
4295 c = '\n';
4296 }
4297 }
4298 while (c == ',');
4299
4300 demand_empty_rest_of_line ();
4301 }
4302
4303 /* The .comm and .lcomm pseudo-ops for XCOFF. XCOFF puts common
4304 symbols in the .bss segment as though they were local common
4305 symbols, and uses a different smclas. The native Aix 4.3.3 assembler
4306 aligns .comm and .lcomm to 4 bytes.
4307 Symbols having a XMC_UL storage class are uninialized thread-local
4308 data. */
4309
4310 static void
4311 ppc_comm (int lcomm)
4312 {
4313 asection *current_seg = now_seg;
4314 subsegT current_subseg = now_subseg;
4315 char *name;
4316 char endc;
4317 char *end_name;
4318 offsetT size;
4319 offsetT align;
4320 symbolS *lcomm_sym = NULL;
4321 symbolS *sym;
4322 char *pfrag;
4323 unsigned short visibility = 0;
4324 struct ppc_xcoff_section *section;
4325
4326 endc = get_symbol_name (&name);
4327 end_name = input_line_pointer;
4328 (void) restore_line_pointer (endc);
4329
4330 if (*input_line_pointer != ',')
4331 {
4332 as_bad (_("missing size"));
4333 ignore_rest_of_line ();
4334 return;
4335 }
4336 ++input_line_pointer;
4337
4338 size = get_absolute_expression ();
4339 if (size < 0)
4340 {
4341 as_bad (_("negative size"));
4342 ignore_rest_of_line ();
4343 return;
4344 }
4345
4346 if (! lcomm)
4347 {
4348 /* The third argument to .comm is the alignment. */
4349 if (*input_line_pointer != ',')
4350 align = 2;
4351 else
4352 {
4353 ++input_line_pointer;
4354 align = get_absolute_expression ();
4355 if (align <= 0)
4356 {
4357 as_warn (_("ignoring bad alignment"));
4358 align = 2;
4359 }
4360
4361 /* The fourth argument to .comm is the visibility. */
4362 if (*input_line_pointer == ',')
4363 {
4364 input_line_pointer++;
4365 visibility = ppc_xcoff_get_visibility ();
4366 if (!visibility)
4367 {
4368 as_bad (_("Unknown visibility field in .comm"));
4369 ignore_rest_of_line ();
4370 return;
4371 }
4372 }
4373 }
4374 }
4375 else
4376 {
4377 char *lcomm_name;
4378 char lcomm_endc;
4379
4380 /* The third argument to .lcomm appears to be the real local
4381 common symbol to create. References to the symbol named in
4382 the first argument are turned into references to the third
4383 argument. */
4384 if (*input_line_pointer != ',')
4385 {
4386 as_bad (_("missing real symbol name"));
4387 ignore_rest_of_line ();
4388 return;
4389 }
4390 ++input_line_pointer;
4391
4392 lcomm_endc = get_symbol_name (&lcomm_name);
4393
4394 lcomm_sym = symbol_find_or_make (lcomm_name);
4395
4396 (void) restore_line_pointer (lcomm_endc);
4397
4398 /* The fourth argument to .lcomm is the alignment. */
4399 if (*input_line_pointer != ',')
4400 {
4401 if (size <= 4)
4402 align = 2;
4403 else
4404 align = 3;
4405 }
4406 else
4407 {
4408 ++input_line_pointer;
4409 align = get_absolute_expression ();
4410 if (align <= 0)
4411 {
4412 as_warn (_("ignoring bad alignment"));
4413 align = 2;
4414 }
4415 }
4416 }
4417
4418 *end_name = '\0';
4419 sym = symbol_find_or_make (name);
4420 *end_name = endc;
4421
4422 if (S_IS_DEFINED (sym)
4423 || S_GET_VALUE (sym) != 0)
4424 {
4425 as_bad (_("attempt to redefine symbol"));
4426 ignore_rest_of_line ();
4427 return;
4428 }
4429
4430 if (symbol_get_tc (sym)->symbol_class == XMC_UL
4431 || (lcomm && symbol_get_tc (lcomm_sym)->symbol_class == XMC_UL))
4432 {
4433 section = &ppc_xcoff_tbss_section;
4434 if (!ppc_xcoff_section_is_initialized (section))
4435 {
4436 ppc_init_xcoff_section (section, subseg_new (".tbss", 0));
4437 bfd_set_section_flags (section->segment,
4438 SEC_ALLOC | SEC_THREAD_LOCAL);
4439 seg_info (section->segment)->bss = 1;
4440 }
4441 }
4442 else
4443 section = &ppc_xcoff_bss_section;
4444
4445 record_alignment (section->segment, align);
4446
4447 if (! lcomm
4448 || ! S_IS_DEFINED (lcomm_sym))
4449 {
4450 symbolS *def_sym;
4451 offsetT def_size;
4452
4453 if (! lcomm)
4454 {
4455 def_sym = sym;
4456 def_size = size;
4457 S_SET_EXTERNAL (sym);
4458 }
4459 else
4460 {
4461 symbol_get_tc (lcomm_sym)->output = 1;
4462 def_sym = lcomm_sym;
4463 def_size = 0;
4464 }
4465
4466 subseg_set (section->segment, 1);
4467 frag_align (align, 0, 0);
4468
4469 symbol_set_frag (def_sym, frag_now);
4470 pfrag = frag_var (rs_org, 1, 1, (relax_substateT) 0, def_sym,
4471 def_size, (char *) NULL);
4472 *pfrag = 0;
4473 S_SET_SEGMENT (def_sym, section->segment);
4474 symbol_get_tc (def_sym)->align = align;
4475 }
4476 else if (lcomm)
4477 {
4478 /* Align the size of lcomm_sym. */
4479 symbol_get_frag (lcomm_sym)->fr_offset =
4480 ((symbol_get_frag (lcomm_sym)->fr_offset + (1 << align) - 1)
4481 &~ ((1 << align) - 1));
4482 if (align > symbol_get_tc (lcomm_sym)->align)
4483 symbol_get_tc (lcomm_sym)->align = align;
4484 }
4485
4486 if (lcomm)
4487 {
4488 /* Make sym an offset from lcomm_sym. */
4489 S_SET_SEGMENT (sym, section->segment);
4490 symbol_set_frag (sym, symbol_get_frag (lcomm_sym));
4491 S_SET_VALUE (sym, symbol_get_frag (lcomm_sym)->fr_offset);
4492 symbol_get_frag (lcomm_sym)->fr_offset += size;
4493 }
4494
4495 if (!lcomm && visibility)
4496 {
4497 /* Add visibility to .comm symbol. */
4498 coff_symbol_type *coffsym = coffsymbol (symbol_get_bfdsym (sym));
4499 coffsym->native->u.syment.n_type &= ~SYM_V_MASK;
4500 coffsym->native->u.syment.n_type |= visibility;
4501 }
4502
4503 subseg_set (current_seg, current_subseg);
4504
4505 demand_empty_rest_of_line ();
4506 }
4507
4508 /* The .csect pseudo-op. This switches us into a different
4509 subsegment. The first argument is a symbol whose value is the
4510 start of the .csect. In COFF, csect symbols get special aux
4511 entries defined by the x_csect field of union internal_auxent. The
4512 optional second argument is the alignment (the default is 2). */
4513
4514 static void
4515 ppc_csect (int ignore ATTRIBUTE_UNUSED)
4516 {
4517 char *name;
4518 char endc;
4519 symbolS *sym;
4520 offsetT align;
4521
4522 endc = get_symbol_name (&name);
4523
4524 sym = symbol_find_or_make (name);
4525
4526 (void) restore_line_pointer (endc);
4527
4528 if (S_GET_NAME (sym)[0] == '\0')
4529 {
4530 /* An unnamed csect is assumed to be [PR]. */
4531 symbol_get_tc (sym)->symbol_class = XMC_PR;
4532 }
4533
4534 align = 2;
4535 if (*input_line_pointer == ',')
4536 {
4537 ++input_line_pointer;
4538 align = get_absolute_expression ();
4539 }
4540
4541 ppc_change_csect (sym, align);
4542
4543 demand_empty_rest_of_line ();
4544 }
4545
4546 /* Change to a different csect. */
4547
4548 static void
4549 ppc_change_csect (symbolS *sym, offsetT align)
4550 {
4551 if (S_IS_DEFINED (sym))
4552 subseg_set (S_GET_SEGMENT (sym), symbol_get_tc (sym)->subseg);
4553 else
4554 {
4555 struct ppc_xcoff_section *section;
4556 int after_toc;
4557 int hold_chunksize;
4558 symbolS *list;
4559 int is_code;
4560 segT sec;
4561
4562 /* This is a new csect. We need to look at the symbol class to
4563 figure out whether it should go in the text section or the
4564 data section. */
4565 after_toc = 0;
4566 is_code = 0;
4567 switch (symbol_get_tc (sym)->symbol_class)
4568 {
4569 case XMC_PR:
4570 case XMC_RO:
4571 case XMC_DB:
4572 case XMC_GL:
4573 case XMC_XO:
4574 case XMC_SV:
4575 case XMC_TI:
4576 case XMC_TB:
4577 section = &ppc_xcoff_text_section;
4578 is_code = 1;
4579 break;
4580 case XMC_RW:
4581 case XMC_TC0:
4582 case XMC_TC:
4583 case XMC_TE:
4584 case XMC_DS:
4585 case XMC_UA:
4586 case XMC_UC:
4587 section = &ppc_xcoff_data_section;
4588 if (ppc_toc_csect != NULL
4589 && (symbol_get_tc (ppc_toc_csect)->subseg + 1
4590 == section->next_subsegment))
4591 after_toc = 1;
4592 break;
4593 case XMC_BS:
4594 section = &ppc_xcoff_bss_section;
4595 break;
4596 case XMC_TL:
4597 section = &ppc_xcoff_tdata_section;
4598 /* Create .tdata section if not yet done. */
4599 if (!ppc_xcoff_section_is_initialized (section))
4600 {
4601 ppc_init_xcoff_section (section, subseg_new (".tdata", 0));
4602 bfd_set_section_flags (section->segment, SEC_ALLOC
4603 | SEC_LOAD | SEC_RELOC | SEC_DATA
4604 | SEC_THREAD_LOCAL);
4605 }
4606 break;
4607 case XMC_UL:
4608 section = &ppc_xcoff_tbss_section;
4609 /* Create .tbss section if not yet done. */
4610 if (!ppc_xcoff_section_is_initialized (section))
4611 {
4612 ppc_init_xcoff_section (section, subseg_new (".tbss", 0));
4613 bfd_set_section_flags (section->segment, SEC_ALLOC |
4614 SEC_THREAD_LOCAL);
4615 seg_info (section->segment)->bss = 1;
4616 }
4617 break;
4618 default:
4619 abort ();
4620 }
4621
4622 S_SET_SEGMENT (sym, section->segment);
4623 symbol_get_tc (sym)->subseg = section->next_subsegment;
4624 ++section->next_subsegment;
4625
4626 /* We set the obstack chunk size to a small value before
4627 changing subsegments, so that we don't use a lot of memory
4628 space for what may be a small section. */
4629 hold_chunksize = chunksize;
4630 chunksize = 64;
4631
4632 sec = subseg_new (segment_name (S_GET_SEGMENT (sym)),
4633 symbol_get_tc (sym)->subseg);
4634
4635 chunksize = hold_chunksize;
4636
4637 if (after_toc)
4638 ppc_after_toc_frag = frag_now;
4639
4640 record_alignment (sec, align);
4641 if (is_code)
4642 frag_align_code (align, 0);
4643 else
4644 frag_align (align, 0, 0);
4645
4646 symbol_set_frag (sym, frag_now);
4647 S_SET_VALUE (sym, (valueT) frag_now_fix ());
4648
4649 symbol_get_tc (sym)->align = align;
4650 symbol_get_tc (sym)->output = 1;
4651 symbol_get_tc (sym)->within = sym;
4652
4653 for (list = section->csects;
4654 symbol_get_tc (list)->next != (symbolS *) NULL;
4655 list = symbol_get_tc (list)->next)
4656 ;
4657 symbol_get_tc (list)->next = sym;
4658
4659 symbol_remove (sym, &symbol_rootP, &symbol_lastP);
4660 symbol_append (sym, symbol_get_tc (list)->within, &symbol_rootP,
4661 &symbol_lastP);
4662 }
4663
4664 ppc_current_csect = sym;
4665 }
4666
4667 static void
4668 ppc_change_debug_section (unsigned int idx, subsegT subseg)
4669 {
4670 segT sec;
4671 flagword oldflags;
4672 const struct xcoff_dwsect_name *dw = &xcoff_dwsect_names[idx];
4673
4674 sec = subseg_new (dw->xcoff_name, subseg);
4675 oldflags = bfd_section_flags (sec);
4676 if (oldflags == SEC_NO_FLAGS)
4677 {
4678 /* Just created section. */
4679 gas_assert (dw_sections[idx].sect == NULL);
4680
4681 bfd_set_section_flags (sec, SEC_DEBUGGING);
4682 bfd_set_section_alignment (sec, 0);
4683 dw_sections[idx].sect = sec;
4684 }
4685
4686 /* Not anymore in a csect. */
4687 ppc_current_csect = NULL;
4688 }
4689
4690 /* The .dwsect pseudo-op. Defines a DWARF section. Syntax is:
4691 .dwsect flag [, opt-label ]
4692 */
4693
4694 static void
4695 ppc_dwsect (int ignore ATTRIBUTE_UNUSED)
4696 {
4697 valueT flag;
4698 symbolS *opt_label;
4699 const struct xcoff_dwsect_name *dw;
4700 struct dw_subsection *subseg;
4701 struct dw_section *dws;
4702 int i;
4703
4704 /* Find section. */
4705 flag = get_absolute_expression ();
4706 dw = NULL;
4707 for (i = 0; i < XCOFF_DWSECT_NBR_NAMES; i++)
4708 if (xcoff_dwsect_names[i].flag == flag)
4709 {
4710 dw = &xcoff_dwsect_names[i];
4711 break;
4712 }
4713
4714 /* Parse opt-label. */
4715 if (*input_line_pointer == ',')
4716 {
4717 char *label;
4718 char c;
4719
4720 ++input_line_pointer;
4721
4722 c = get_symbol_name (&label);
4723 opt_label = symbol_find_or_make (label);
4724 (void) restore_line_pointer (c);
4725 }
4726 else
4727 opt_label = NULL;
4728
4729 demand_empty_rest_of_line ();
4730
4731 /* Return now in case of unknown subsection. */
4732 if (dw == NULL)
4733 {
4734 as_bad (_("no known dwarf XCOFF section for flag 0x%08x\n"),
4735 (unsigned)flag);
4736 return;
4737 }
4738
4739 /* Find the subsection. */
4740 dws = &dw_sections[i];
4741 subseg = NULL;
4742 if (opt_label != NULL && S_IS_DEFINED (opt_label))
4743 {
4744 /* Sanity check (note that in theory S_GET_SEGMENT mustn't be null). */
4745 if (dws->sect == NULL || S_GET_SEGMENT (opt_label) != dws->sect)
4746 {
4747 as_bad (_("label %s was not defined in this dwarf section"),
4748 S_GET_NAME (opt_label));
4749 subseg = dws->anon_subseg;
4750 opt_label = NULL;
4751 }
4752 else
4753 subseg = symbol_get_tc (opt_label)->u.dw;
4754 }
4755
4756 if (subseg != NULL)
4757 {
4758 /* Switch to the subsection. */
4759 ppc_change_debug_section (i, subseg->subseg);
4760 }
4761 else
4762 {
4763 /* Create a new dw subsection. */
4764 subseg = XCNEW (struct dw_subsection);
4765
4766 if (opt_label == NULL)
4767 {
4768 /* The anonymous one. */
4769 subseg->subseg = 0;
4770 subseg->link = NULL;
4771 dws->anon_subseg = subseg;
4772 }
4773 else
4774 {
4775 /* A named one. */
4776 if (dws->list_subseg != NULL)
4777 subseg->subseg = dws->list_subseg->subseg + 1;
4778 else
4779 subseg->subseg = 1;
4780
4781 subseg->link = dws->list_subseg;
4782 dws->list_subseg = subseg;
4783 symbol_get_tc (opt_label)->u.dw = subseg;
4784 }
4785
4786 ppc_change_debug_section (i, subseg->subseg);
4787
4788 if (dw->def_size)
4789 {
4790 /* Add the length field. */
4791 expressionS *exp = &subseg->end_exp;
4792 int sz;
4793
4794 if (opt_label != NULL)
4795 symbol_set_value_now (opt_label);
4796
4797 /* Add the length field. Note that according to the AIX assembler
4798 manual, the size of the length field is 4 for powerpc32 but
4799 12 for powerpc64. */
4800 if (ppc_obj64)
4801 {
4802 /* Write the 64bit marker. */
4803 md_number_to_chars (frag_more (4), -1, 4);
4804 }
4805
4806 exp->X_op = O_subtract;
4807 exp->X_op_symbol = symbol_temp_new_now ();
4808 exp->X_add_symbol = symbol_temp_make ();
4809
4810 sz = ppc_obj64 ? 8 : 4;
4811 exp->X_add_number = -sz;
4812 emit_expr (exp, sz);
4813 }
4814 }
4815 }
4816
4817 /* This function handles the .text and .data pseudo-ops. These
4818 pseudo-ops aren't really used by XCOFF; we implement them for the
4819 convenience of people who aren't used to XCOFF. */
4820
4821 static void
4822 ppc_section (int type)
4823 {
4824 const char *name;
4825 symbolS *sym;
4826
4827 if (type == 't')
4828 name = ".text[PR]";
4829 else if (type == 'd')
4830 name = ".data[RW]";
4831 else
4832 abort ();
4833
4834 sym = symbol_find_or_make (name);
4835
4836 ppc_change_csect (sym, 2);
4837
4838 demand_empty_rest_of_line ();
4839 }
4840
4841 /* This function handles the .section pseudo-op. This is mostly to
4842 give an error, since XCOFF only supports .text, .data and .bss, but
4843 we do permit the user to name the text or data section. */
4844
4845 static void
4846 ppc_named_section (int ignore ATTRIBUTE_UNUSED)
4847 {
4848 char *user_name;
4849 const char *real_name;
4850 char c;
4851 symbolS *sym;
4852
4853 c = get_symbol_name (&user_name);
4854
4855 if (strcmp (user_name, ".text") == 0)
4856 real_name = ".text[PR]";
4857 else if (strcmp (user_name, ".data") == 0)
4858 real_name = ".data[RW]";
4859 else
4860 {
4861 as_bad (_("the XCOFF file format does not support arbitrary sections"));
4862 (void) restore_line_pointer (c);
4863 ignore_rest_of_line ();
4864 return;
4865 }
4866
4867 (void) restore_line_pointer (c);
4868
4869 sym = symbol_find_or_make (real_name);
4870
4871 ppc_change_csect (sym, 2);
4872
4873 demand_empty_rest_of_line ();
4874 }
4875
4876 /* The .extern pseudo-op. We create an undefined symbol. */
4877
4878 static void
4879 ppc_extern (int ignore ATTRIBUTE_UNUSED)
4880 {
4881 char *name;
4882 symbolS *sym;
4883
4884 if ((name = read_symbol_name ()) == NULL)
4885 return;
4886
4887 sym = symbol_find_or_make (name);
4888 free (name);
4889
4890 if (*input_line_pointer == ',')
4891 {
4892 unsigned short visibility;
4893 coff_symbol_type *coffsym = coffsymbol (symbol_get_bfdsym (sym));
4894
4895 input_line_pointer++;
4896 visibility = ppc_xcoff_get_visibility ();
4897 if (!visibility)
4898 {
4899 as_bad (_("Unknown visibility field in .extern"));
4900 ignore_rest_of_line ();
4901 return;
4902 }
4903
4904 coffsym->native->u.syment.n_type &= ~SYM_V_MASK;
4905 coffsym->native->u.syment.n_type |= visibility;
4906 }
4907
4908 demand_empty_rest_of_line ();
4909 }
4910
4911 /* XCOFF semantic for .globl says that the second parameter is
4912 the symbol visibility. */
4913
4914 static void
4915 ppc_globl (int ignore ATTRIBUTE_UNUSED)
4916 {
4917 char *name;
4918 symbolS *sym;
4919
4920 if ((name = read_symbol_name ()) == NULL)
4921 return;
4922
4923 sym = symbol_find_or_make (name);
4924 free (name);
4925 S_SET_EXTERNAL (sym);
4926
4927 if (*input_line_pointer == ',')
4928 {
4929 unsigned short visibility;
4930 coff_symbol_type *coffsym = coffsymbol (symbol_get_bfdsym (sym));
4931
4932 input_line_pointer++;
4933 visibility = ppc_xcoff_get_visibility ();
4934 if (!visibility)
4935 {
4936 as_bad (_("Unknown visibility field in .globl"));
4937 ignore_rest_of_line ();
4938 return;
4939 }
4940
4941 coffsym->native->u.syment.n_type &= ~SYM_V_MASK;
4942 coffsym->native->u.syment.n_type |= visibility;
4943 }
4944
4945 demand_empty_rest_of_line ();
4946 }
4947
4948 /* XCOFF semantic for .weak says that the second parameter is
4949 the symbol visibility. */
4950
4951 static void
4952 ppc_weak (int ignore ATTRIBUTE_UNUSED)
4953 {
4954 char *name;
4955 symbolS *sym;
4956
4957 if ((name = read_symbol_name ()) == NULL)
4958 return;
4959
4960 sym = symbol_find_or_make (name);
4961 free (name);
4962 S_SET_WEAK (sym);
4963
4964 if (*input_line_pointer == ',')
4965 {
4966 unsigned short visibility;
4967 coff_symbol_type *coffsym = coffsymbol (symbol_get_bfdsym (sym));
4968
4969 input_line_pointer++;
4970 visibility = ppc_xcoff_get_visibility ();
4971 if (!visibility)
4972 {
4973 as_bad (_("Unknown visibility field in .weak"));
4974 ignore_rest_of_line ();
4975 return;
4976 }
4977
4978 coffsym->native->u.syment.n_type &= ~SYM_V_MASK;
4979 coffsym->native->u.syment.n_type |= visibility;
4980 }
4981
4982 demand_empty_rest_of_line ();
4983 }
4984
4985 /* The .lglobl pseudo-op. Keep the symbol in the symbol table. */
4986
4987 static void
4988 ppc_lglobl (int ignore ATTRIBUTE_UNUSED)
4989 {
4990 char *name;
4991 char endc;
4992 symbolS *sym;
4993
4994 endc = get_symbol_name (&name);
4995
4996 sym = symbol_find_or_make (name);
4997
4998 (void) restore_line_pointer (endc);
4999
5000 symbol_get_tc (sym)->output = 1;
5001
5002 demand_empty_rest_of_line ();
5003 }
5004
5005 /* The .ref pseudo-op. It takes a list of symbol names and inserts R_REF
5006 relocations at the beginning of the current csect.
5007
5008 (In principle, there's no reason why the relocations _have_ to be at
5009 the beginning. Anywhere in the csect would do. However, inserting
5010 at the beginning is what the native assembler does, and it helps to
5011 deal with cases where the .ref statements follow the section contents.)
5012
5013 ??? .refs don't work for empty .csects. However, the native assembler
5014 doesn't report an error in this case, and neither yet do we. */
5015
5016 static void
5017 ppc_ref (int ignore ATTRIBUTE_UNUSED)
5018 {
5019 char *name;
5020 char c;
5021
5022 if (ppc_current_csect == NULL)
5023 {
5024 as_bad (_(".ref outside .csect"));
5025 ignore_rest_of_line ();
5026 return;
5027 }
5028
5029 do
5030 {
5031 c = get_symbol_name (&name);
5032
5033 fix_at_start (symbol_get_frag (ppc_current_csect), 0,
5034 symbol_find_or_make (name), 0, false, BFD_RELOC_NONE);
5035
5036 *input_line_pointer = c;
5037 SKIP_WHITESPACE_AFTER_NAME ();
5038 c = *input_line_pointer;
5039 if (c == ',')
5040 {
5041 input_line_pointer++;
5042 SKIP_WHITESPACE ();
5043 if (is_end_of_line[(unsigned char) *input_line_pointer])
5044 {
5045 as_bad (_("missing symbol name"));
5046 ignore_rest_of_line ();
5047 return;
5048 }
5049 }
5050 }
5051 while (c == ',');
5052
5053 demand_empty_rest_of_line ();
5054 }
5055
5056 /* The .rename pseudo-op. The RS/6000 assembler can rename symbols,
5057 although I don't know why it bothers. */
5058
5059 static void
5060 ppc_rename (int ignore ATTRIBUTE_UNUSED)
5061 {
5062 char *name;
5063 char endc;
5064 symbolS *sym;
5065 int len;
5066
5067 endc = get_symbol_name (&name);
5068
5069 sym = symbol_find_or_make (name);
5070
5071 (void) restore_line_pointer (endc);
5072
5073 if (*input_line_pointer != ',')
5074 {
5075 as_bad (_("missing rename string"));
5076 ignore_rest_of_line ();
5077 return;
5078 }
5079 ++input_line_pointer;
5080
5081 symbol_get_tc (sym)->real_name = demand_copy_C_string (&len);
5082
5083 demand_empty_rest_of_line ();
5084 }
5085
5086 /* The .stabx pseudo-op. This is similar to a normal .stabs
5087 pseudo-op, but slightly different. A sample is
5088 .stabx "main:F-1",.main,142,0
5089 The first argument is the symbol name to create. The second is the
5090 value, and the third is the storage class. The fourth seems to be
5091 always zero, and I am assuming it is the type. */
5092
5093 static void
5094 ppc_stabx (int ignore ATTRIBUTE_UNUSED)
5095 {
5096 char *name;
5097 int len;
5098 symbolS *sym;
5099 expressionS exp;
5100
5101 name = demand_copy_C_string (&len);
5102
5103 if (*input_line_pointer != ',')
5104 {
5105 as_bad (_("missing value"));
5106 return;
5107 }
5108 ++input_line_pointer;
5109
5110 ppc_stab_symbol = true;
5111 sym = symbol_make (name);
5112 ppc_stab_symbol = false;
5113
5114 symbol_get_tc (sym)->real_name = name;
5115
5116 (void) expression (&exp);
5117
5118 switch (exp.X_op)
5119 {
5120 case O_illegal:
5121 case O_absent:
5122 case O_big:
5123 as_bad (_("illegal .stabx expression; zero assumed"));
5124 exp.X_add_number = 0;
5125 /* Fall through. */
5126 case O_constant:
5127 S_SET_VALUE (sym, (valueT) exp.X_add_number);
5128 symbol_set_frag (sym, &zero_address_frag);
5129 break;
5130
5131 case O_symbol:
5132 if (S_GET_SEGMENT (exp.X_add_symbol) == undefined_section)
5133 symbol_set_value_expression (sym, &exp);
5134 else
5135 {
5136 S_SET_VALUE (sym,
5137 exp.X_add_number + S_GET_VALUE (exp.X_add_symbol));
5138 symbol_set_frag (sym, symbol_get_frag (exp.X_add_symbol));
5139 }
5140 break;
5141
5142 default:
5143 /* The value is some complex expression. This will probably
5144 fail at some later point, but this is probably the right
5145 thing to do here. */
5146 symbol_set_value_expression (sym, &exp);
5147 break;
5148 }
5149
5150 S_SET_SEGMENT (sym, ppc_coff_debug_section);
5151 symbol_get_bfdsym (sym)->flags |= BSF_DEBUGGING;
5152
5153 if (*input_line_pointer != ',')
5154 {
5155 as_bad (_("missing class"));
5156 return;
5157 }
5158 ++input_line_pointer;
5159
5160 S_SET_STORAGE_CLASS (sym, get_absolute_expression ());
5161
5162 if (*input_line_pointer != ',')
5163 {
5164 as_bad (_("missing type"));
5165 return;
5166 }
5167 ++input_line_pointer;
5168
5169 S_SET_DATA_TYPE (sym, get_absolute_expression ());
5170
5171 symbol_get_tc (sym)->output = 1;
5172
5173 if (S_GET_STORAGE_CLASS (sym) == C_STSYM)
5174 {
5175 /* In this case :
5176
5177 .bs name
5178 .stabx "z",arrays_,133,0
5179 .es
5180
5181 .comm arrays_,13768,3
5182
5183 resolve_symbol_value will copy the exp's "within" into sym's when the
5184 offset is 0. Since this seems to be corner case problem,
5185 only do the correction for storage class C_STSYM. A better solution
5186 would be to have the tc field updated in ppc_symbol_new_hook. */
5187
5188 if (exp.X_op == O_symbol)
5189 {
5190 if (ppc_current_block == NULL)
5191 as_bad (_(".stabx of storage class stsym must be within .bs/.es"));
5192
5193 symbol_get_tc (sym)->within = ppc_current_block;
5194 }
5195 }
5196
5197 if (exp.X_op != O_symbol
5198 || ! S_IS_EXTERNAL (exp.X_add_symbol)
5199 || S_GET_SEGMENT (exp.X_add_symbol) != bss_section)
5200 ppc_frob_label (sym);
5201 else
5202 {
5203 symbol_remove (sym, &symbol_rootP, &symbol_lastP);
5204 symbol_append (sym, exp.X_add_symbol, &symbol_rootP, &symbol_lastP);
5205 if (symbol_get_tc (ppc_current_csect)->within == exp.X_add_symbol)
5206 symbol_get_tc (ppc_current_csect)->within = sym;
5207 }
5208
5209 demand_empty_rest_of_line ();
5210 }
5211
5212 /* The .file pseudo-op. On XCOFF, .file can have several parameters
5213 which are being added to the symbol table to provide additional
5214 information. */
5215
5216 static void
5217 ppc_file (int ignore ATTRIBUTE_UNUSED)
5218 {
5219 char *sfname, *s1 = NULL, *s2 = NULL, *s3 = NULL;
5220 int length, auxnb = 1;
5221
5222 /* Some assemblers tolerate immediately following '"'. */
5223 if ((sfname = demand_copy_string (&length)) != 0)
5224 {
5225 coff_symbol_type *coffsym;
5226 if (*input_line_pointer == ',')
5227 {
5228 ++input_line_pointer;
5229 s1 = demand_copy_string (&length);
5230 auxnb++;
5231
5232 if (*input_line_pointer == ',')
5233 {
5234 ++input_line_pointer;
5235 s2 = demand_copy_string (&length);
5236 auxnb++;
5237
5238 if (*input_line_pointer == ',')
5239 {
5240 ++input_line_pointer;
5241 s3 = demand_copy_string (&length);
5242 auxnb++;
5243 }
5244 }
5245 }
5246
5247 /* Use coff dot_file creation and adjust auxiliary entries. */
5248 c_dot_file_symbol (sfname);
5249 S_SET_NUMBER_AUXILIARY (symbol_rootP, auxnb);
5250 coffsym = coffsymbol (symbol_get_bfdsym (symbol_rootP));
5251 coffsym->native[1].u.auxent.x_file.x_ftype = XFT_FN;
5252
5253 if (s1)
5254 {
5255 coffsym->native[2].u.auxent.x_file.x_ftype = XFT_CT;
5256 coffsym->native[2].extrap = s1;
5257 }
5258 if (s2)
5259 {
5260 coffsym->native[3].u.auxent.x_file.x_ftype = XFT_CV;
5261 coffsym->native[3].extrap = s2;
5262 }
5263 if (s3)
5264 {
5265 coffsym->native[4].u.auxent.x_file.x_ftype = XFT_CD;
5266 coffsym->native[4].extrap = s3;
5267 }
5268
5269 demand_empty_rest_of_line ();
5270 }
5271 }
5272
5273 /* The .function pseudo-op. This takes several arguments. The first
5274 argument seems to be the external name of the symbol. The second
5275 argument seems to be the label for the start of the function. gcc
5276 uses the same name for both. I have no idea what the third and
5277 fourth arguments are meant to be. The optional fifth argument is
5278 an expression for the size of the function. In COFF this symbol
5279 gets an aux entry like that used for a csect. */
5280
5281 static void
5282 ppc_function (int ignore ATTRIBUTE_UNUSED)
5283 {
5284 char *name;
5285 char endc;
5286 char *s;
5287 symbolS *ext_sym;
5288 symbolS *lab_sym;
5289
5290 endc = get_symbol_name (&name);
5291
5292 /* Ignore any [PR] suffix. */
5293 name = ppc_canonicalize_symbol_name (name);
5294 s = strchr (name, '[');
5295 if (s != (char *) NULL
5296 && strcmp (s + 1, "PR]") == 0)
5297 *s = '\0';
5298
5299 ext_sym = symbol_find_or_make (name);
5300
5301 (void) restore_line_pointer (endc);
5302
5303 if (*input_line_pointer != ',')
5304 {
5305 as_bad (_("missing symbol name"));
5306 ignore_rest_of_line ();
5307 return;
5308 }
5309 ++input_line_pointer;
5310
5311 endc = get_symbol_name (&name);
5312
5313 lab_sym = symbol_find_or_make (name);
5314
5315 (void) restore_line_pointer (endc);
5316
5317 if (ext_sym != lab_sym)
5318 {
5319 expressionS exp;
5320
5321 exp.X_op = O_symbol;
5322 exp.X_add_symbol = lab_sym;
5323 exp.X_op_symbol = NULL;
5324 exp.X_add_number = 0;
5325 exp.X_unsigned = 0;
5326 symbol_set_value_expression (ext_sym, &exp);
5327 }
5328
5329 if (symbol_get_tc (ext_sym)->symbol_class == -1)
5330 symbol_get_tc (ext_sym)->symbol_class = XMC_PR;
5331 symbol_get_tc (ext_sym)->output = 1;
5332
5333 if (*input_line_pointer == ',')
5334 {
5335 expressionS exp;
5336
5337 /* Ignore the third argument. */
5338 ++input_line_pointer;
5339 expression (& exp);
5340 if (*input_line_pointer == ',')
5341 {
5342 /* Ignore the fourth argument. */
5343 ++input_line_pointer;
5344 expression (& exp);
5345 if (*input_line_pointer == ',')
5346 {
5347 /* The fifth argument is the function size.
5348 If it's omitted, the size will be the containing csect.
5349 This will be donce during ppc_frob_symtab. */
5350 ++input_line_pointer;
5351 symbol_get_tc (ext_sym)->u.size
5352 = symbol_new ("L0\001", absolute_section,
5353 &zero_address_frag, 0);
5354 pseudo_set (symbol_get_tc (ext_sym)->u.size);
5355 }
5356 }
5357 }
5358
5359 S_SET_DATA_TYPE (ext_sym, DT_FCN << N_BTSHFT);
5360 SF_SET_FUNCTION (ext_sym);
5361 SF_SET_PROCESS (ext_sym);
5362 coff_add_linesym (ext_sym);
5363
5364 demand_empty_rest_of_line ();
5365 }
5366
5367 /* The .bf pseudo-op. This is just like a COFF C_FCN symbol named
5368 ".bf". If the pseudo op .bi was seen before .bf, patch the .bi sym
5369 with the correct line number */
5370
5371 static symbolS *saved_bi_sym = 0;
5372
5373 static void
5374 ppc_bf (int ignore ATTRIBUTE_UNUSED)
5375 {
5376 symbolS *sym;
5377
5378 sym = symbol_make (".bf");
5379 S_SET_SEGMENT (sym, text_section);
5380 symbol_set_frag (sym, frag_now);
5381 S_SET_VALUE (sym, frag_now_fix ());
5382 S_SET_STORAGE_CLASS (sym, C_FCN);
5383
5384 coff_line_base = get_absolute_expression ();
5385
5386 S_SET_NUMBER_AUXILIARY (sym, 1);
5387 SA_SET_SYM_LNNO (sym, coff_line_base);
5388
5389 /* Line number for bi. */
5390 if (saved_bi_sym)
5391 {
5392 S_SET_VALUE (saved_bi_sym, coff_n_line_nos);
5393 saved_bi_sym = 0;
5394 }
5395
5396
5397 symbol_get_tc (sym)->output = 1;
5398
5399 ppc_frob_label (sym);
5400
5401 demand_empty_rest_of_line ();
5402 }
5403
5404 /* The .ef pseudo-op. This is just like a COFF C_FCN symbol named
5405 ".ef", except that the line number is absolute, not relative to the
5406 most recent ".bf" symbol. */
5407
5408 static void
5409 ppc_ef (int ignore ATTRIBUTE_UNUSED)
5410 {
5411 symbolS *sym;
5412
5413 sym = symbol_make (".ef");
5414 S_SET_SEGMENT (sym, text_section);
5415 symbol_set_frag (sym, frag_now);
5416 S_SET_VALUE (sym, frag_now_fix ());
5417 S_SET_STORAGE_CLASS (sym, C_FCN);
5418 S_SET_NUMBER_AUXILIARY (sym, 1);
5419 SA_SET_SYM_LNNO (sym, get_absolute_expression ());
5420 symbol_get_tc (sym)->output = 1;
5421
5422 ppc_frob_label (sym);
5423
5424 demand_empty_rest_of_line ();
5425 }
5426
5427 /* The .bi and .ei pseudo-ops. These take a string argument and
5428 generates a C_BINCL or C_EINCL symbol, which goes at the start of
5429 the symbol list. The value of .bi will be know when the next .bf
5430 is encountered. */
5431
5432 static void
5433 ppc_biei (int ei)
5434 {
5435 static symbolS *last_biei;
5436
5437 char *name;
5438 int len;
5439 symbolS *sym;
5440 symbolS *look;
5441
5442 name = demand_copy_C_string (&len);
5443
5444 /* The value of these symbols is actually file offset. Here we set
5445 the value to the index into the line number entries. In
5446 ppc_frob_symbols we set the fix_line field, which will cause BFD
5447 to do the right thing. */
5448
5449 sym = symbol_make (name);
5450 /* obj-coff.c currently only handles line numbers correctly in the
5451 .text section. */
5452 S_SET_SEGMENT (sym, text_section);
5453 S_SET_VALUE (sym, coff_n_line_nos);
5454 symbol_get_bfdsym (sym)->flags |= BSF_DEBUGGING;
5455
5456 S_SET_STORAGE_CLASS (sym, ei ? C_EINCL : C_BINCL);
5457 symbol_get_tc (sym)->output = 1;
5458
5459 /* Save bi. */
5460 if (ei)
5461 saved_bi_sym = 0;
5462 else
5463 saved_bi_sym = sym;
5464
5465 for (look = last_biei ? last_biei : symbol_rootP;
5466 (look != (symbolS *) NULL
5467 && (S_GET_STORAGE_CLASS (look) == C_FILE
5468 || S_GET_STORAGE_CLASS (look) == C_BINCL
5469 || S_GET_STORAGE_CLASS (look) == C_EINCL));
5470 look = symbol_next (look))
5471 ;
5472 if (look != (symbolS *) NULL)
5473 {
5474 symbol_remove (sym, &symbol_rootP, &symbol_lastP);
5475 symbol_insert (sym, look, &symbol_rootP, &symbol_lastP);
5476 last_biei = sym;
5477 }
5478
5479 demand_empty_rest_of_line ();
5480 }
5481
5482 /* The .bs pseudo-op. This generates a C_BSTAT symbol named ".bs".
5483 There is one argument, which is a csect symbol. The value of the
5484 .bs symbol is the index of this csect symbol. */
5485
5486 static void
5487 ppc_bs (int ignore ATTRIBUTE_UNUSED)
5488 {
5489 char *name;
5490 char endc;
5491 symbolS *csect;
5492 symbolS *sym;
5493
5494 if (ppc_current_block != NULL)
5495 as_bad (_("nested .bs blocks"));
5496
5497 endc = get_symbol_name (&name);
5498
5499 csect = symbol_find_or_make (name);
5500
5501 (void) restore_line_pointer (endc);
5502
5503 sym = symbol_make (".bs");
5504 S_SET_SEGMENT (sym, now_seg);
5505 S_SET_STORAGE_CLASS (sym, C_BSTAT);
5506 symbol_get_bfdsym (sym)->flags |= BSF_DEBUGGING;
5507 symbol_get_tc (sym)->output = 1;
5508
5509 symbol_get_tc (sym)->within = csect;
5510
5511 ppc_frob_label (sym);
5512
5513 ppc_current_block = sym;
5514
5515 demand_empty_rest_of_line ();
5516 }
5517
5518 /* The .es pseudo-op. Generate a C_ESTART symbol named .es. */
5519
5520 static void
5521 ppc_es (int ignore ATTRIBUTE_UNUSED)
5522 {
5523 symbolS *sym;
5524
5525 if (ppc_current_block == NULL)
5526 as_bad (_(".es without preceding .bs"));
5527
5528 sym = symbol_make (".es");
5529 S_SET_SEGMENT (sym, now_seg);
5530 S_SET_STORAGE_CLASS (sym, C_ESTAT);
5531 symbol_get_bfdsym (sym)->flags |= BSF_DEBUGGING;
5532 symbol_get_tc (sym)->output = 1;
5533
5534 ppc_frob_label (sym);
5535
5536 ppc_current_block = NULL;
5537
5538 demand_empty_rest_of_line ();
5539 }
5540
5541 /* The .bb pseudo-op. Generate a C_BLOCK symbol named .bb, with a
5542 line number. */
5543
5544 static void
5545 ppc_bb (int ignore ATTRIBUTE_UNUSED)
5546 {
5547 symbolS *sym;
5548
5549 sym = symbol_make (".bb");
5550 S_SET_SEGMENT (sym, text_section);
5551 symbol_set_frag (sym, frag_now);
5552 S_SET_VALUE (sym, frag_now_fix ());
5553 S_SET_STORAGE_CLASS (sym, C_BLOCK);
5554
5555 S_SET_NUMBER_AUXILIARY (sym, 1);
5556 SA_SET_SYM_LNNO (sym, get_absolute_expression ());
5557
5558 symbol_get_tc (sym)->output = 1;
5559
5560 SF_SET_PROCESS (sym);
5561
5562 ppc_frob_label (sym);
5563
5564 demand_empty_rest_of_line ();
5565 }
5566
5567 /* The .eb pseudo-op. Generate a C_BLOCK symbol named .eb, with a
5568 line number. */
5569
5570 static void
5571 ppc_eb (int ignore ATTRIBUTE_UNUSED)
5572 {
5573 symbolS *sym;
5574
5575 sym = symbol_make (".eb");
5576 S_SET_SEGMENT (sym, text_section);
5577 symbol_set_frag (sym, frag_now);
5578 S_SET_VALUE (sym, frag_now_fix ());
5579 S_SET_STORAGE_CLASS (sym, C_BLOCK);
5580 S_SET_NUMBER_AUXILIARY (sym, 1);
5581 SA_SET_SYM_LNNO (sym, get_absolute_expression ());
5582 symbol_get_tc (sym)->output = 1;
5583
5584 SF_SET_PROCESS (sym);
5585
5586 ppc_frob_label (sym);
5587
5588 demand_empty_rest_of_line ();
5589 }
5590
5591 /* The .bc pseudo-op. This just creates a C_BCOMM symbol with a
5592 specified name. */
5593
5594 static void
5595 ppc_bc (int ignore ATTRIBUTE_UNUSED)
5596 {
5597 char *name;
5598 int len;
5599 symbolS *sym;
5600
5601 name = demand_copy_C_string (&len);
5602 sym = symbol_make (name);
5603 S_SET_SEGMENT (sym, ppc_coff_debug_section);
5604 symbol_get_bfdsym (sym)->flags |= BSF_DEBUGGING;
5605 S_SET_STORAGE_CLASS (sym, C_BCOMM);
5606 S_SET_VALUE (sym, 0);
5607 symbol_get_tc (sym)->output = 1;
5608
5609 ppc_frob_label (sym);
5610
5611 demand_empty_rest_of_line ();
5612 }
5613
5614 /* The .ec pseudo-op. This just creates a C_ECOMM symbol. */
5615
5616 static void
5617 ppc_ec (int ignore ATTRIBUTE_UNUSED)
5618 {
5619 symbolS *sym;
5620
5621 sym = symbol_make (".ec");
5622 S_SET_SEGMENT (sym, ppc_coff_debug_section);
5623 symbol_get_bfdsym (sym)->flags |= BSF_DEBUGGING;
5624 S_SET_STORAGE_CLASS (sym, C_ECOMM);
5625 S_SET_VALUE (sym, 0);
5626 symbol_get_tc (sym)->output = 1;
5627
5628 ppc_frob_label (sym);
5629
5630 demand_empty_rest_of_line ();
5631 }
5632
5633 /* The .toc pseudo-op. Switch to the .toc subsegment. */
5634
5635 static void
5636 ppc_toc (int ignore ATTRIBUTE_UNUSED)
5637 {
5638 if (ppc_toc_csect != (symbolS *) NULL)
5639 subseg_set (data_section, symbol_get_tc (ppc_toc_csect)->subseg);
5640 else
5641 {
5642 subsegT subseg;
5643 symbolS *sym;
5644 symbolS *list;
5645
5646 subseg = ppc_xcoff_data_section.next_subsegment;
5647 ++ppc_xcoff_data_section.next_subsegment;
5648
5649 subseg_new (segment_name (data_section), subseg);
5650 ppc_toc_frag = frag_now;
5651
5652 sym = symbol_find_or_make ("TOC[TC0]");
5653 symbol_set_frag (sym, frag_now);
5654 S_SET_SEGMENT (sym, data_section);
5655 S_SET_VALUE (sym, (valueT) frag_now_fix ());
5656 symbol_get_tc (sym)->subseg = subseg;
5657 symbol_get_tc (sym)->output = 1;
5658 symbol_get_tc (sym)->within = sym;
5659
5660 ppc_toc_csect = sym;
5661
5662 for (list = ppc_xcoff_data_section.csects;
5663 symbol_get_tc (list)->next != (symbolS *) NULL;
5664 list = symbol_get_tc (list)->next)
5665 ;
5666 symbol_get_tc (list)->next = sym;
5667
5668 symbol_remove (sym, &symbol_rootP, &symbol_lastP);
5669 symbol_append (sym, symbol_get_tc (list)->within, &symbol_rootP,
5670 &symbol_lastP);
5671 }
5672
5673 ppc_current_csect = ppc_toc_csect;
5674
5675 demand_empty_rest_of_line ();
5676 }
5677
5678 /* The AIX assembler automatically aligns the operands of a .long or
5679 .short pseudo-op, and we want to be compatible. */
5680
5681 static void
5682 ppc_xcoff_cons (int log_size)
5683 {
5684 frag_align (log_size, 0, 0);
5685 record_alignment (now_seg, log_size);
5686 cons (1 << log_size);
5687 }
5688
5689 static void
5690 ppc_vbyte (int dummy ATTRIBUTE_UNUSED)
5691 {
5692 expressionS exp;
5693 int byte_count;
5694
5695 (void) expression (&exp);
5696
5697 if (exp.X_op != O_constant)
5698 {
5699 as_bad (_("non-constant byte count"));
5700 return;
5701 }
5702
5703 byte_count = exp.X_add_number;
5704
5705 if (*input_line_pointer != ',')
5706 {
5707 as_bad (_("missing value"));
5708 return;
5709 }
5710
5711 ++input_line_pointer;
5712 cons (byte_count);
5713 }
5714
5715 void
5716 ppc_xcoff_md_finish (void)
5717 {
5718 int i;
5719
5720 for (i = 0; i < XCOFF_DWSECT_NBR_NAMES; i++)
5721 {
5722 struct dw_section *dws = &dw_sections[i];
5723 struct dw_subsection *dwss;
5724
5725 if (dws->anon_subseg)
5726 {
5727 dwss = dws->anon_subseg;
5728 dwss->link = dws->list_subseg;
5729 }
5730 else
5731 dwss = dws->list_subseg;
5732
5733 for (; dwss != NULL; dwss = dwss->link)
5734 if (dwss->end_exp.X_add_symbol != NULL)
5735 {
5736 subseg_set (dws->sect, dwss->subseg);
5737 symbol_set_value_now (dwss->end_exp.X_add_symbol);
5738 }
5739 }
5740 ppc_cpu = 0;
5741 }
5742
5743 #endif /* OBJ_XCOFF */
5744 #if defined (OBJ_XCOFF) || defined (OBJ_ELF)
5745 \f
5746 /* The .tc pseudo-op. This is used when generating either XCOFF or
5747 ELF. This takes two or more arguments.
5748
5749 When generating XCOFF output, the first argument is the name to
5750 give to this location in the toc; this will be a symbol with class
5751 TC. The rest of the arguments are N-byte values to actually put at
5752 this location in the TOC; often there is just one more argument, a
5753 relocatable symbol reference. The size of the value to store
5754 depends on target word size. A 32-bit target uses 4-byte values, a
5755 64-bit target uses 8-byte values.
5756
5757 When not generating XCOFF output, the arguments are the same, but
5758 the first argument is simply ignored. */
5759
5760 static void
5761 ppc_tc (int ignore ATTRIBUTE_UNUSED)
5762 {
5763 #ifdef OBJ_XCOFF
5764
5765 /* Define the TOC symbol name. */
5766 {
5767 char *name;
5768 char endc;
5769 symbolS *sym;
5770
5771 if (ppc_toc_csect == (symbolS *) NULL
5772 || ppc_toc_csect != ppc_current_csect)
5773 {
5774 as_bad (_(".tc not in .toc section"));
5775 ignore_rest_of_line ();
5776 return;
5777 }
5778
5779 endc = get_symbol_name (&name);
5780
5781 sym = symbol_find_or_make (name);
5782
5783 (void) restore_line_pointer (endc);
5784
5785 if (S_IS_DEFINED (sym))
5786 {
5787 symbolS *label;
5788
5789 label = symbol_get_tc (ppc_current_csect)->within;
5790 if (symbol_get_tc (label)->symbol_class != XMC_TC0)
5791 {
5792 as_bad (_(".tc with no label"));
5793 ignore_rest_of_line ();
5794 return;
5795 }
5796
5797 S_SET_SEGMENT (label, S_GET_SEGMENT (sym));
5798 symbol_set_frag (label, symbol_get_frag (sym));
5799 S_SET_VALUE (label, S_GET_VALUE (sym));
5800
5801 while (! is_end_of_line[(unsigned char) *input_line_pointer])
5802 ++input_line_pointer;
5803
5804 return;
5805 }
5806
5807 S_SET_SEGMENT (sym, now_seg);
5808 symbol_set_frag (sym, frag_now);
5809 S_SET_VALUE (sym, (valueT) frag_now_fix ());
5810
5811 /* AIX assembler seems to allow any storage class to be set in .tc.
5812 But for now, only XMC_TC and XMC_TE are supported by us. */
5813 switch (symbol_get_tc (sym)->symbol_class)
5814 {
5815 case XMC_TC:
5816 case XMC_TE:
5817 break;
5818
5819 default:
5820 as_bad (_(".tc with storage class %d not yet supported"),
5821 symbol_get_tc (sym)->symbol_class);
5822 ignore_rest_of_line ();
5823 return;
5824 }
5825 symbol_get_tc (sym)->output = 1;
5826
5827 ppc_frob_label (sym);
5828 }
5829
5830 #endif /* OBJ_XCOFF */
5831 #ifdef OBJ_ELF
5832 int align;
5833
5834 /* Skip the TOC symbol name. */
5835 while (is_part_of_name (*input_line_pointer)
5836 || *input_line_pointer == ' '
5837 || *input_line_pointer == '['
5838 || *input_line_pointer == ']'
5839 || *input_line_pointer == '{'
5840 || *input_line_pointer == '}')
5841 ++input_line_pointer;
5842
5843 /* Align to a four/eight byte boundary. */
5844 align = ppc_obj64 ? 3 : 2;
5845 frag_align (align, 0, 0);
5846 record_alignment (now_seg, align);
5847 #endif /* OBJ_ELF */
5848
5849 if (*input_line_pointer != ',')
5850 demand_empty_rest_of_line ();
5851 else
5852 {
5853 ++input_line_pointer;
5854 cons (ppc_obj64 ? 8 : 4);
5855 }
5856 }
5857
5858 /* Pseudo-op .machine. */
5859
5860 static void
5861 ppc_machine (int ignore ATTRIBUTE_UNUSED)
5862 {
5863 char c;
5864 char *cpu_string;
5865 #define MAX_HISTORY 100
5866 static ppc_cpu_t *cpu_history;
5867 static int curr_hist;
5868
5869 SKIP_WHITESPACE ();
5870
5871 c = get_symbol_name (&cpu_string);
5872 cpu_string = xstrdup (cpu_string);
5873 (void) restore_line_pointer (c);
5874
5875 if (cpu_string != NULL)
5876 {
5877 ppc_cpu_t old_cpu = ppc_cpu;
5878 char *p;
5879
5880 for (p = cpu_string; *p != 0; p++)
5881 *p = TOLOWER (*p);
5882
5883 if (strcmp (cpu_string, "push") == 0)
5884 {
5885 if (cpu_history == NULL)
5886 cpu_history = XNEWVEC (ppc_cpu_t, MAX_HISTORY);
5887
5888 if (curr_hist >= MAX_HISTORY)
5889 as_bad (_(".machine stack overflow"));
5890 else
5891 cpu_history[curr_hist++] = ppc_cpu;
5892 }
5893 else if (strcmp (cpu_string, "pop") == 0)
5894 {
5895 if (curr_hist <= 0)
5896 as_bad (_(".machine stack underflow"));
5897 else
5898 ppc_cpu = cpu_history[--curr_hist];
5899 }
5900 else
5901 {
5902 ppc_cpu_t new_cpu;
5903 /* Not using the global "sticky" variable here results in
5904 none of the extra functional unit command line options,
5905 -many, -maltivec, -mspe, -mspe2, -mvle, -mvsx, being in
5906 force after selecting a new cpu with .machine.
5907 ".machine altivec" and other extra functional unit
5908 options do not count as a new machine, instead they add
5909 to currently selected opcodes. */
5910 ppc_cpu_t machine_sticky = 0;
5911 /* Unfortunately, some versions of gcc emit a .machine
5912 directive very near the start of the compiler's assembly
5913 output file. This is bad because it overrides user -Wa
5914 cpu selection. Worse, there are versions of gcc that
5915 emit the *wrong* cpu, not even respecting the -mcpu given
5916 to gcc. See gcc pr101393. And to compound the problem,
5917 as of 20220222 gcc doesn't pass the correct cpu option to
5918 gas on the command line. See gcc pr59828. Hack around
5919 this by keeping sticky options for an early .machine. */
5920 asection *sec;
5921 for (sec = stdoutput->sections; sec != NULL; sec = sec->next)
5922 {
5923 segment_info_type *info = seg_info (sec);
5924 /* Are the frags for this section perturbed from their
5925 initial state? Even .align will count here. */
5926 if (info != NULL
5927 && (info->frchainP->frch_root != info->frchainP->frch_last
5928 || info->frchainP->frch_root->fr_type != rs_fill
5929 || info->frchainP->frch_root->fr_fix != 0))
5930 break;
5931 }
5932 new_cpu = ppc_parse_cpu (ppc_cpu,
5933 sec == NULL ? &sticky : &machine_sticky,
5934 cpu_string);
5935 if (new_cpu != 0)
5936 ppc_cpu = new_cpu;
5937 else
5938 as_bad (_("invalid machine `%s'"), cpu_string);
5939 }
5940
5941 if (ppc_cpu != old_cpu)
5942 ppc_setup_opcodes ();
5943 }
5944
5945 demand_empty_rest_of_line ();
5946 }
5947 #endif /* defined (OBJ_XCOFF) || defined (OBJ_ELF) */
5948 \f
5949 #ifdef OBJ_XCOFF
5950
5951 /* XCOFF specific symbol and file handling. */
5952
5953 /* Canonicalize the symbol name. We use the to force the suffix, if
5954 any, to use square brackets, and to be in upper case. */
5955
5956 char *
5957 ppc_canonicalize_symbol_name (char *name)
5958 {
5959 char *s;
5960
5961 if (ppc_stab_symbol)
5962 return name;
5963
5964 for (s = name; *s != '\0' && *s != '{' && *s != '['; s++)
5965 ;
5966 if (*s != '\0')
5967 {
5968 char brac;
5969
5970 if (*s == '[')
5971 brac = ']';
5972 else
5973 {
5974 *s = '[';
5975 brac = '}';
5976 }
5977
5978 for (s++; *s != '\0' && *s != brac; s++)
5979 *s = TOUPPER (*s);
5980
5981 if (*s == '\0' || s[1] != '\0')
5982 as_bad (_("bad symbol suffix"));
5983
5984 *s = ']';
5985 }
5986
5987 return name;
5988 }
5989
5990 /* Set the class of a symbol based on the suffix, if any. This is
5991 called whenever a new symbol is created. */
5992
5993 void
5994 ppc_symbol_new_hook (symbolS *sym)
5995 {
5996 struct ppc_tc_sy *tc;
5997 const char *s;
5998
5999 tc = symbol_get_tc (sym);
6000 tc->next = NULL;
6001 tc->output = 0;
6002 tc->symbol_class = -1;
6003 tc->real_name = NULL;
6004 tc->subseg = 0;
6005 tc->align = 0;
6006 tc->u.size = NULL;
6007 tc->u.dw = NULL;
6008 tc->within = NULL;
6009
6010 if (ppc_stab_symbol)
6011 return;
6012
6013 s = strchr (S_GET_NAME (sym), '[');
6014 if (s == (const char *) NULL)
6015 {
6016 /* There is no suffix. */
6017 return;
6018 }
6019
6020 ++s;
6021
6022 switch (s[0])
6023 {
6024 case 'B':
6025 if (strcmp (s, "BS]") == 0)
6026 tc->symbol_class = XMC_BS;
6027 break;
6028 case 'D':
6029 if (strcmp (s, "DB]") == 0)
6030 tc->symbol_class = XMC_DB;
6031 else if (strcmp (s, "DS]") == 0)
6032 tc->symbol_class = XMC_DS;
6033 break;
6034 case 'G':
6035 if (strcmp (s, "GL]") == 0)
6036 tc->symbol_class = XMC_GL;
6037 break;
6038 case 'P':
6039 if (strcmp (s, "PR]") == 0)
6040 tc->symbol_class = XMC_PR;
6041 break;
6042 case 'R':
6043 if (strcmp (s, "RO]") == 0)
6044 tc->symbol_class = XMC_RO;
6045 else if (strcmp (s, "RW]") == 0)
6046 tc->symbol_class = XMC_RW;
6047 break;
6048 case 'S':
6049 if (strcmp (s, "SV]") == 0)
6050 tc->symbol_class = XMC_SV;
6051 break;
6052 case 'T':
6053 if (strcmp (s, "TC]") == 0)
6054 tc->symbol_class = XMC_TC;
6055 else if (strcmp (s, "TI]") == 0)
6056 tc->symbol_class = XMC_TI;
6057 else if (strcmp (s, "TB]") == 0)
6058 tc->symbol_class = XMC_TB;
6059 else if (strcmp (s, "TC0]") == 0 || strcmp (s, "T0]") == 0)
6060 tc->symbol_class = XMC_TC0;
6061 else if (strcmp (s, "TE]") == 0)
6062 tc->symbol_class = XMC_TE;
6063 else if (strcmp (s, "TL]") == 0)
6064 tc->symbol_class = XMC_TL;
6065 break;
6066 case 'U':
6067 if (strcmp (s, "UA]") == 0)
6068 tc->symbol_class = XMC_UA;
6069 else if (strcmp (s, "UC]") == 0)
6070 tc->symbol_class = XMC_UC;
6071 else if (strcmp (s, "UL]") == 0)
6072 tc->symbol_class = XMC_UL;
6073 break;
6074 case 'X':
6075 if (strcmp (s, "XO]") == 0)
6076 tc->symbol_class = XMC_XO;
6077 break;
6078 }
6079
6080 if (tc->symbol_class == -1)
6081 as_bad (_("unrecognized symbol suffix"));
6082 }
6083
6084 /* This variable is set by ppc_frob_symbol if any absolute symbols are
6085 seen. It tells ppc_adjust_symtab whether it needs to look through
6086 the symbols. */
6087
6088 static bool ppc_saw_abs;
6089
6090 /* Change the name of a symbol just before writing it out. Set the
6091 real name if the .rename pseudo-op was used. Otherwise, remove any
6092 class suffix. Return 1 if the symbol should not be included in the
6093 symbol table. */
6094
6095 int
6096 ppc_frob_symbol (symbolS *sym)
6097 {
6098 static symbolS *ppc_last_function;
6099 static symbolS *set_end;
6100
6101 /* Discard symbols that should not be included in the output symbol
6102 table. */
6103 if (! symbol_used_in_reloc_p (sym)
6104 && S_GET_STORAGE_CLASS (sym) != C_DWARF
6105 && ((symbol_get_bfdsym (sym)->flags & BSF_SECTION_SYM) != 0
6106 || (! (S_IS_EXTERNAL (sym) || S_IS_WEAK (sym))
6107 && ! symbol_get_tc (sym)->output
6108 && S_GET_STORAGE_CLASS (sym) != C_FILE)))
6109 return 1;
6110
6111 /* This one will disappear anyway. Don't make a csect sym for it. */
6112 if (sym == abs_section_sym)
6113 return 1;
6114
6115 if (symbol_get_tc (sym)->real_name != (char *) NULL)
6116 S_SET_NAME (sym, symbol_get_tc (sym)->real_name);
6117 else
6118 {
6119 const char *name;
6120 const char *s;
6121
6122 name = S_GET_NAME (sym);
6123 s = strchr (name, '[');
6124 if (s != (char *) NULL)
6125 {
6126 unsigned int len;
6127 char *snew;
6128
6129 len = s - name;
6130 snew = xstrndup (name, len);
6131
6132 S_SET_NAME (sym, snew);
6133 }
6134 }
6135
6136 if (set_end != (symbolS *) NULL)
6137 {
6138 SA_SET_SYM_ENDNDX (set_end, sym);
6139 set_end = NULL;
6140 }
6141
6142 if (SF_GET_FUNCTION (sym))
6143 {
6144 /* Make sure coff_last_function is reset. Otherwise, we won't create
6145 the auxent for the next function. */
6146 coff_last_function = 0;
6147 ppc_last_function = sym;
6148 if (symbol_get_tc (sym)->u.size != (symbolS *) NULL)
6149 {
6150 resolve_symbol_value (symbol_get_tc (sym)->u.size);
6151 SA_SET_SYM_FSIZE (sym,
6152 (long) S_GET_VALUE (symbol_get_tc (sym)->u.size));
6153 }
6154 else
6155 {
6156 /* Size of containing csect. */
6157 symbolS* within = symbol_get_tc (sym)->within;
6158 union internal_auxent *csectaux;
6159 csectaux = &coffsymbol (symbol_get_bfdsym (within))
6160 ->native[S_GET_NUMBER_AUXILIARY(within)].u.auxent;
6161
6162 SA_SET_SYM_FSIZE (sym, csectaux->x_csect.x_scnlen.l);
6163 }
6164 }
6165 else if (S_GET_STORAGE_CLASS (sym) == C_FCN
6166 && strcmp (S_GET_NAME (sym), ".ef") == 0)
6167 {
6168 if (ppc_last_function == (symbolS *) NULL)
6169 as_bad (_(".ef with no preceding .function"));
6170 else
6171 {
6172 set_end = ppc_last_function;
6173 ppc_last_function = NULL;
6174
6175 /* We don't have a C_EFCN symbol, but we need to force the
6176 COFF backend to believe that it has seen one. */
6177 coff_last_function = NULL;
6178 }
6179 }
6180
6181 if (! (S_IS_EXTERNAL (sym) || S_IS_WEAK (sym))
6182 && (symbol_get_bfdsym (sym)->flags & BSF_SECTION_SYM) == 0
6183 && S_GET_STORAGE_CLASS (sym) != C_FILE
6184 && S_GET_STORAGE_CLASS (sym) != C_FCN
6185 && S_GET_STORAGE_CLASS (sym) != C_BLOCK
6186 && S_GET_STORAGE_CLASS (sym) != C_BSTAT
6187 && S_GET_STORAGE_CLASS (sym) != C_ESTAT
6188 && S_GET_STORAGE_CLASS (sym) != C_BINCL
6189 && S_GET_STORAGE_CLASS (sym) != C_EINCL
6190 && S_GET_SEGMENT (sym) != ppc_coff_debug_section)
6191 S_SET_STORAGE_CLASS (sym, C_HIDEXT);
6192
6193 if (S_GET_STORAGE_CLASS (sym) == C_EXT
6194 || S_GET_STORAGE_CLASS (sym) == C_AIX_WEAKEXT
6195 || S_GET_STORAGE_CLASS (sym) == C_HIDEXT)
6196 {
6197 int i;
6198 union internal_auxent *a;
6199
6200 /* Create a csect aux. */
6201 i = S_GET_NUMBER_AUXILIARY (sym);
6202 S_SET_NUMBER_AUXILIARY (sym, i + 1);
6203 a = &coffsymbol (symbol_get_bfdsym (sym))->native[i + 1].u.auxent;
6204 if (symbol_get_tc (sym)->symbol_class == XMC_TC0)
6205 {
6206 /* This is the TOC table. */
6207 know (strcmp (S_GET_NAME (sym), "TOC") == 0);
6208 a->x_csect.x_scnlen.l = 0;
6209 a->x_csect.x_smtyp = (2 << 3) | XTY_SD;
6210 }
6211 else if (symbol_get_tc (sym)->subseg != 0)
6212 {
6213 /* This is a csect symbol. x_scnlen is the size of the
6214 csect. */
6215 if (symbol_get_tc (sym)->next == (symbolS *) NULL)
6216 a->x_csect.x_scnlen.l = (bfd_section_size (S_GET_SEGMENT (sym))
6217 - S_GET_VALUE (sym));
6218 else
6219 {
6220 resolve_symbol_value (symbol_get_tc (sym)->next);
6221 a->x_csect.x_scnlen.l = (S_GET_VALUE (symbol_get_tc (sym)->next)
6222 - S_GET_VALUE (sym));
6223 }
6224 if (symbol_get_tc (sym)->symbol_class == XMC_BS
6225 || symbol_get_tc (sym)->symbol_class == XMC_UL)
6226 a->x_csect.x_smtyp = (symbol_get_tc (sym)->align << 3) | XTY_CM;
6227 else
6228 a->x_csect.x_smtyp = (symbol_get_tc (sym)->align << 3) | XTY_SD;
6229 }
6230 else if (S_GET_SEGMENT (sym) == bss_section
6231 || S_GET_SEGMENT (sym) == ppc_xcoff_tbss_section.segment)
6232 {
6233 /* This is a common symbol. */
6234 a->x_csect.x_scnlen.l = symbol_get_frag (sym)->fr_offset;
6235 a->x_csect.x_smtyp = (symbol_get_tc (sym)->align << 3) | XTY_CM;
6236 if (S_GET_SEGMENT (sym) == ppc_xcoff_tbss_section.segment)
6237 symbol_get_tc (sym)->symbol_class = XMC_UL;
6238 else if (S_IS_EXTERNAL (sym))
6239 symbol_get_tc (sym)->symbol_class = XMC_RW;
6240 else
6241 symbol_get_tc (sym)->symbol_class = XMC_BS;
6242 }
6243 else if (S_GET_SEGMENT (sym) == absolute_section)
6244 {
6245 /* This is an absolute symbol. The csect will be created by
6246 ppc_adjust_symtab. */
6247 ppc_saw_abs = true;
6248 a->x_csect.x_smtyp = XTY_LD;
6249 if (symbol_get_tc (sym)->symbol_class == -1)
6250 symbol_get_tc (sym)->symbol_class = XMC_XO;
6251 }
6252 else if (! S_IS_DEFINED (sym))
6253 {
6254 /* This is an external symbol. */
6255 a->x_csect.x_scnlen.l = 0;
6256 a->x_csect.x_smtyp = XTY_ER;
6257 }
6258 else if (ppc_is_toc_sym (sym))
6259 {
6260 symbolS *next;
6261
6262 /* This is a TOC definition. x_scnlen is the size of the
6263 TOC entry. */
6264 next = symbol_next (sym);
6265 while (symbol_get_tc (next)->symbol_class == XMC_TC0)
6266 next = symbol_next (next);
6267 if (next == (symbolS *) NULL
6268 || (!ppc_is_toc_sym (next)))
6269 {
6270 if (ppc_after_toc_frag == (fragS *) NULL)
6271 a->x_csect.x_scnlen.l = (bfd_section_size (data_section)
6272 - S_GET_VALUE (sym));
6273 else
6274 a->x_csect.x_scnlen.l = (ppc_after_toc_frag->fr_address
6275 - S_GET_VALUE (sym));
6276 }
6277 else
6278 {
6279 resolve_symbol_value (next);
6280 a->x_csect.x_scnlen.l = (S_GET_VALUE (next)
6281 - S_GET_VALUE (sym));
6282 }
6283 a->x_csect.x_smtyp = (2 << 3) | XTY_SD;
6284 }
6285 else
6286 {
6287 symbolS *csect;
6288
6289 /* This is a normal symbol definition. x_scnlen is the
6290 symbol index of the containing csect. */
6291 if (S_GET_SEGMENT (sym) == text_section)
6292 csect = ppc_xcoff_text_section.csects;
6293 else if (S_GET_SEGMENT (sym) == data_section)
6294 csect = ppc_xcoff_data_section.csects;
6295 else if (S_GET_SEGMENT (sym) == ppc_xcoff_tdata_section.segment)
6296 csect = ppc_xcoff_tdata_section.csects;
6297 else
6298 abort ();
6299
6300 /* Skip the initial dummy symbol. */
6301 csect = symbol_get_tc (csect)->next;
6302
6303 if (csect == (symbolS *) NULL)
6304 {
6305 as_warn (_("warning: symbol %s has no csect"), S_GET_NAME (sym));
6306 a->x_csect.x_scnlen.l = 0;
6307 }
6308 else
6309 {
6310 while (symbol_get_tc (csect)->next != (symbolS *) NULL)
6311 {
6312 resolve_symbol_value (symbol_get_tc (csect)->next);
6313 if (S_GET_VALUE (symbol_get_tc (csect)->next)
6314 > S_GET_VALUE (sym))
6315 break;
6316 csect = symbol_get_tc (csect)->next;
6317 }
6318
6319 a->x_csect.x_scnlen.p =
6320 coffsymbol (symbol_get_bfdsym (csect))->native;
6321 coffsymbol (symbol_get_bfdsym (sym))->native[i + 1].fix_scnlen =
6322 1;
6323 }
6324 a->x_csect.x_smtyp = XTY_LD;
6325 }
6326
6327 a->x_csect.x_parmhash = 0;
6328 a->x_csect.x_snhash = 0;
6329 if (symbol_get_tc (sym)->symbol_class == -1)
6330 a->x_csect.x_smclas = XMC_PR;
6331 else
6332 a->x_csect.x_smclas = symbol_get_tc (sym)->symbol_class;
6333 a->x_csect.x_stab = 0;
6334 a->x_csect.x_snstab = 0;
6335
6336 /* Don't let the COFF backend resort these symbols. */
6337 symbol_get_bfdsym (sym)->flags |= BSF_NOT_AT_END;
6338 }
6339 else if (S_GET_STORAGE_CLASS (sym) == C_BSTAT)
6340 {
6341 /* We want the value to be the symbol index of the referenced
6342 csect symbol. BFD will do that for us if we set the right
6343 flags. */
6344 asymbol *bsym = symbol_get_bfdsym (symbol_get_tc (sym)->within);
6345 combined_entry_type *c = coffsymbol (bsym)->native;
6346
6347 S_SET_VALUE (sym, (valueT) (size_t) c);
6348 coffsymbol (symbol_get_bfdsym (sym))->native->fix_value = 1;
6349 }
6350 else if (S_GET_STORAGE_CLASS (sym) == C_STSYM)
6351 {
6352 symbolS *block;
6353 valueT base;
6354
6355 block = symbol_get_tc (sym)->within;
6356 if (block)
6357 {
6358 /* The value is the offset from the enclosing csect. */
6359 symbolS *csect;
6360
6361 csect = symbol_get_tc (block)->within;
6362 resolve_symbol_value (csect);
6363 base = S_GET_VALUE (csect);
6364 }
6365 else
6366 base = 0;
6367
6368 S_SET_VALUE (sym, S_GET_VALUE (sym) - base);
6369 }
6370 else if (S_GET_STORAGE_CLASS (sym) == C_BINCL
6371 || S_GET_STORAGE_CLASS (sym) == C_EINCL)
6372 {
6373 /* We want the value to be a file offset into the line numbers.
6374 BFD will do that for us if we set the right flags. We have
6375 already set the value correctly. */
6376 coffsymbol (symbol_get_bfdsym (sym))->native->fix_line = 1;
6377 }
6378
6379 return 0;
6380 }
6381
6382 /* Adjust the symbol table. */
6383
6384 void
6385 ppc_adjust_symtab (void)
6386 {
6387 symbolS *sym;
6388 symbolS *anchorSym;
6389
6390 /* Make sure C_DWARF symbols come right after C_FILE.
6391 As the C_FILE might not be defined yet and as C_DWARF
6392 might already be ordered, we insert them before the
6393 first symbol which isn't a C_FILE or a C_DWARF. */
6394 for (anchorSym = symbol_rootP; anchorSym != NULL;
6395 anchorSym = symbol_next (anchorSym))
6396 {
6397 if (S_GET_STORAGE_CLASS (anchorSym) != C_FILE
6398 && S_GET_STORAGE_CLASS (anchorSym) != C_DWARF)
6399 break;
6400 }
6401
6402 sym = anchorSym;
6403 while (sym != NULL)
6404 {
6405 if (S_GET_STORAGE_CLASS (sym) != C_DWARF)
6406 {
6407 sym = symbol_next (sym);
6408 continue;
6409 }
6410
6411 symbolS* tsym = sym;
6412 sym = symbol_next (sym);
6413
6414 symbol_remove (tsym, &symbol_rootP, &symbol_lastP);
6415 symbol_insert (tsym, anchorSym, &symbol_rootP, &symbol_lastP);
6416 }
6417
6418 /* Create csect symbols for all absolute symbols. */
6419
6420 if (! ppc_saw_abs)
6421 return;
6422
6423 for (sym = symbol_rootP; sym != NULL; sym = symbol_next (sym))
6424 {
6425 symbolS *csect;
6426 int i;
6427 union internal_auxent *a;
6428
6429 if (S_GET_SEGMENT (sym) != absolute_section)
6430 continue;
6431
6432 csect = symbol_create (".abs[XO]", absolute_section,
6433 &zero_address_frag, S_GET_VALUE (sym));
6434 symbol_get_bfdsym (csect)->value = S_GET_VALUE (sym);
6435 S_SET_STORAGE_CLASS (csect, C_HIDEXT);
6436 i = S_GET_NUMBER_AUXILIARY (csect);
6437 S_SET_NUMBER_AUXILIARY (csect, i + 1);
6438 a = &coffsymbol (symbol_get_bfdsym (csect))->native[i + 1].u.auxent;
6439 a->x_csect.x_scnlen.l = 0;
6440 a->x_csect.x_smtyp = XTY_SD;
6441 a->x_csect.x_parmhash = 0;
6442 a->x_csect.x_snhash = 0;
6443 a->x_csect.x_smclas = XMC_XO;
6444 a->x_csect.x_stab = 0;
6445 a->x_csect.x_snstab = 0;
6446
6447 symbol_insert (csect, sym, &symbol_rootP, &symbol_lastP);
6448
6449 i = S_GET_NUMBER_AUXILIARY (sym);
6450 a = &coffsymbol (symbol_get_bfdsym (sym))->native[i].u.auxent;
6451 a->x_csect.x_scnlen.p = coffsymbol (symbol_get_bfdsym (csect))->native;
6452 coffsymbol (symbol_get_bfdsym (sym))->native[i].fix_scnlen = 1;
6453 }
6454
6455 ppc_saw_abs = false;
6456 }
6457
6458 /* Set the VMA for a section. This is called on all the sections in
6459 turn. */
6460
6461 void
6462 ppc_frob_section (asection *sec)
6463 {
6464 static bfd_vma vma = 0;
6465
6466 /* Dwarf sections start at 0. */
6467 if (bfd_section_flags (sec) & SEC_DEBUGGING)
6468 return;
6469
6470 vma = md_section_align (sec, vma);
6471 bfd_set_section_vma (sec, vma);
6472 vma += bfd_section_size (sec);
6473 }
6474
6475 #endif /* OBJ_XCOFF */
6476 \f
6477 const char *
6478 md_atof (int type, char *litp, int *sizep)
6479 {
6480 return ieee_md_atof (type, litp, sizep, target_big_endian);
6481 }
6482
6483 /* Write a value out to the object file, using the appropriate
6484 endianness. */
6485
6486 void
6487 md_number_to_chars (char *buf, valueT val, int n)
6488 {
6489 if (target_big_endian)
6490 number_to_chars_bigendian (buf, val, n);
6491 else
6492 number_to_chars_littleendian (buf, val, n);
6493 }
6494
6495 /* Align a section (I don't know why this is machine dependent). */
6496
6497 valueT
6498 md_section_align (asection *seg ATTRIBUTE_UNUSED, valueT addr)
6499 {
6500 #ifdef OBJ_ELF
6501 return addr;
6502 #else
6503 int align = bfd_section_alignment (seg);
6504
6505 return ((addr + (1 << align) - 1) & -(1 << align));
6506 #endif
6507 }
6508
6509 /* We don't have any form of relaxing. */
6510
6511 int
6512 md_estimate_size_before_relax (fragS *fragp ATTRIBUTE_UNUSED,
6513 asection *seg ATTRIBUTE_UNUSED)
6514 {
6515 abort ();
6516 return 0;
6517 }
6518
6519 /* Convert a machine dependent frag. We never generate these. */
6520
6521 void
6522 md_convert_frag (bfd *abfd ATTRIBUTE_UNUSED,
6523 asection *sec ATTRIBUTE_UNUSED,
6524 fragS *fragp ATTRIBUTE_UNUSED)
6525 {
6526 abort ();
6527 }
6528
6529 /* We have no need to default values of symbols. */
6530
6531 symbolS *
6532 md_undefined_symbol (char *name ATTRIBUTE_UNUSED)
6533 {
6534 return 0;
6535 }
6536 \f
6537 /* Functions concerning relocs. */
6538
6539 /* The location from which a PC relative jump should be calculated,
6540 given a PC relative reloc. */
6541
6542 long
6543 md_pcrel_from_section (fixS *fixp, segT sec ATTRIBUTE_UNUSED)
6544 {
6545 return fixp->fx_frag->fr_address + fixp->fx_where;
6546 }
6547
6548 #ifdef OBJ_XCOFF
6549
6550 /* Return the surrending csect for sym when possible. */
6551
6552 static symbolS*
6553 ppc_get_csect_to_adjust (symbolS *sym)
6554 {
6555 if (sym == NULL)
6556 return NULL;
6557
6558 valueT val = resolve_symbol_value (sym);
6559 TC_SYMFIELD_TYPE *tc = symbol_get_tc (sym);
6560 segT symseg = S_GET_SEGMENT (sym);
6561
6562 if (tc->subseg == 0
6563 && tc->symbol_class != XMC_TC0
6564 && tc->symbol_class != XMC_TC
6565 && tc->symbol_class != XMC_TE
6566 && symseg != bss_section
6567 && symseg != ppc_xcoff_tbss_section.segment
6568 /* Don't adjust if this is a reloc in the toc section. */
6569 && (symseg != data_section
6570 || ppc_toc_csect == NULL
6571 || val < ppc_toc_frag->fr_address
6572 || (ppc_after_toc_frag != NULL
6573 && val >= ppc_after_toc_frag->fr_address)))
6574 {
6575 symbolS* csect = tc->within;
6576
6577 /* If the symbol was not declared by a label (eg: a section symbol),
6578 use the section instead of the csect. This doesn't happen in
6579 normal AIX assembly code. */
6580 if (csect == NULL)
6581 csect = seg_info (symseg)->sym;
6582
6583 return csect;
6584 }
6585
6586 return NULL;
6587 }
6588
6589 /* This is called to see whether a fixup should be adjusted to use a
6590 section symbol. We take the opportunity to change a fixup against
6591 a symbol in the TOC subsegment into a reloc against the
6592 corresponding .tc symbol. */
6593
6594 int
6595 ppc_fix_adjustable (fixS *fix)
6596 {
6597 valueT val = resolve_symbol_value (fix->fx_addsy);
6598 segT symseg = S_GET_SEGMENT (fix->fx_addsy);
6599 symbolS* csect;
6600
6601 if (symseg == absolute_section)
6602 return 0;
6603
6604 /* Always adjust symbols in debugging sections. */
6605 if (bfd_section_flags (symseg) & SEC_DEBUGGING)
6606 return 1;
6607
6608 if (ppc_toc_csect != (symbolS *) NULL
6609 && fix->fx_addsy != ppc_toc_csect
6610 && symseg == data_section
6611 && val >= ppc_toc_frag->fr_address
6612 && (ppc_after_toc_frag == (fragS *) NULL
6613 || val < ppc_after_toc_frag->fr_address))
6614 {
6615 symbolS *sy;
6616
6617 for (sy = symbol_next (ppc_toc_csect);
6618 sy != (symbolS *) NULL;
6619 sy = symbol_next (sy))
6620 {
6621 TC_SYMFIELD_TYPE *sy_tc = symbol_get_tc (sy);
6622
6623 if (sy_tc->symbol_class == XMC_TC0)
6624 continue;
6625 if (sy_tc->symbol_class != XMC_TC
6626 && sy_tc->symbol_class != XMC_TE)
6627 break;
6628 if (val == resolve_symbol_value (sy))
6629 {
6630 fix->fx_addsy = sy;
6631 fix->fx_addnumber = val - ppc_toc_frag->fr_address;
6632 return 0;
6633 }
6634 }
6635
6636 as_bad_where (fix->fx_file, fix->fx_line,
6637 _("symbol in .toc does not match any .tc"));
6638 }
6639
6640 /* Possibly adjust the reloc to be against the csect. */
6641 if ((csect = ppc_get_csect_to_adjust (fix->fx_addsy)) != NULL)
6642 {
6643 fix->fx_offset += val - symbol_get_frag (csect)->fr_address;
6644 fix->fx_addsy = csect;
6645 }
6646
6647 if ((csect = ppc_get_csect_to_adjust (fix->fx_subsy)) != NULL)
6648 {
6649 fix->fx_offset -= resolve_symbol_value (fix->fx_subsy)
6650 - symbol_get_frag (csect)->fr_address;
6651 fix->fx_subsy = csect;
6652 }
6653
6654 /* Adjust a reloc against a .lcomm symbol to be against the base
6655 .lcomm. */
6656 if (symseg == bss_section
6657 && ! S_IS_EXTERNAL (fix->fx_addsy)
6658 && symbol_get_tc (fix->fx_addsy)->subseg == 0)
6659 {
6660 symbolS *sy = symbol_get_frag (fix->fx_addsy)->fr_symbol;
6661
6662 fix->fx_offset += val - resolve_symbol_value (sy);
6663 fix->fx_addsy = sy;
6664 }
6665
6666 return 0;
6667 }
6668
6669 /* A reloc from one csect to another must be kept. The assembler
6670 will, of course, keep relocs between sections, and it will keep
6671 absolute relocs, but we need to force it to keep PC relative relocs
6672 between two csects in the same section. */
6673
6674 int
6675 ppc_force_relocation (fixS *fix)
6676 {
6677 /* At this point fix->fx_addsy should already have been converted to
6678 a csect symbol. If the csect does not include the fragment, then
6679 we need to force the relocation. */
6680 if (fix->fx_pcrel
6681 && fix->fx_addsy != NULL
6682 && symbol_get_tc (fix->fx_addsy)->subseg != 0
6683 && ((symbol_get_frag (fix->fx_addsy)->fr_address
6684 > fix->fx_frag->fr_address)
6685 || (symbol_get_tc (fix->fx_addsy)->next != NULL
6686 && (symbol_get_frag (symbol_get_tc (fix->fx_addsy)->next)->fr_address
6687 <= fix->fx_frag->fr_address))))
6688 return 1;
6689
6690 return generic_force_reloc (fix);
6691 }
6692 #endif /* OBJ_XCOFF */
6693
6694 #ifdef OBJ_ELF
6695 /* If this function returns non-zero, it guarantees that a relocation
6696 will be emitted for a fixup. */
6697
6698 int
6699 ppc_force_relocation (fixS *fix)
6700 {
6701 switch (fix->fx_r_type)
6702 {
6703 case BFD_RELOC_PPC_B16_BRTAKEN:
6704 case BFD_RELOC_PPC_B16_BRNTAKEN:
6705 case BFD_RELOC_PPC_BA16_BRTAKEN:
6706 case BFD_RELOC_PPC_BA16_BRNTAKEN:
6707 case BFD_RELOC_24_PLT_PCREL:
6708 case BFD_RELOC_PPC64_TOC:
6709 case BFD_RELOC_16_GOTOFF:
6710 case BFD_RELOC_LO16_GOTOFF:
6711 case BFD_RELOC_HI16_GOTOFF:
6712 case BFD_RELOC_HI16_S_GOTOFF:
6713 case BFD_RELOC_LO16_PLTOFF:
6714 case BFD_RELOC_HI16_PLTOFF:
6715 case BFD_RELOC_HI16_S_PLTOFF:
6716 case BFD_RELOC_GPREL16:
6717 case BFD_RELOC_16_BASEREL:
6718 case BFD_RELOC_LO16_BASEREL:
6719 case BFD_RELOC_HI16_BASEREL:
6720 case BFD_RELOC_HI16_S_BASEREL:
6721 case BFD_RELOC_PPC_TOC16:
6722 case BFD_RELOC_PPC64_TOC16_LO:
6723 case BFD_RELOC_PPC64_TOC16_HI:
6724 case BFD_RELOC_PPC64_TOC16_HA:
6725 case BFD_RELOC_PPC64_PLTGOT16:
6726 case BFD_RELOC_PPC64_PLTGOT16_LO:
6727 case BFD_RELOC_PPC64_PLTGOT16_HI:
6728 case BFD_RELOC_PPC64_PLTGOT16_HA:
6729 case BFD_RELOC_PPC64_GOT16_DS:
6730 case BFD_RELOC_PPC64_GOT16_LO_DS:
6731 case BFD_RELOC_PPC64_PLT16_LO_DS:
6732 case BFD_RELOC_PPC64_SECTOFF_DS:
6733 case BFD_RELOC_PPC64_SECTOFF_LO_DS:
6734 case BFD_RELOC_PPC64_TOC16_DS:
6735 case BFD_RELOC_PPC64_TOC16_LO_DS:
6736 case BFD_RELOC_PPC64_PLTGOT16_DS:
6737 case BFD_RELOC_PPC64_PLTGOT16_LO_DS:
6738 case BFD_RELOC_PPC_EMB_NADDR16:
6739 case BFD_RELOC_PPC_EMB_NADDR16_LO:
6740 case BFD_RELOC_PPC_EMB_NADDR16_HI:
6741 case BFD_RELOC_PPC_EMB_NADDR16_HA:
6742 case BFD_RELOC_PPC_EMB_SDAI16:
6743 case BFD_RELOC_PPC_EMB_SDA2I16:
6744 case BFD_RELOC_PPC_EMB_SDA2REL:
6745 case BFD_RELOC_PPC_EMB_SDA21:
6746 case BFD_RELOC_PPC_EMB_MRKREF:
6747 case BFD_RELOC_PPC_EMB_RELSEC16:
6748 case BFD_RELOC_PPC_EMB_RELST_LO:
6749 case BFD_RELOC_PPC_EMB_RELST_HI:
6750 case BFD_RELOC_PPC_EMB_RELST_HA:
6751 case BFD_RELOC_PPC_EMB_BIT_FLD:
6752 case BFD_RELOC_PPC_EMB_RELSDA:
6753 case BFD_RELOC_PPC_VLE_SDA21:
6754 case BFD_RELOC_PPC_VLE_SDA21_LO:
6755 case BFD_RELOC_PPC_VLE_SDAREL_LO16A:
6756 case BFD_RELOC_PPC_VLE_SDAREL_LO16D:
6757 case BFD_RELOC_PPC_VLE_SDAREL_HI16A:
6758 case BFD_RELOC_PPC_VLE_SDAREL_HI16D:
6759 case BFD_RELOC_PPC_VLE_SDAREL_HA16A:
6760 case BFD_RELOC_PPC_VLE_SDAREL_HA16D:
6761 case BFD_RELOC_PPC64_PLT_PCREL34:
6762 case BFD_RELOC_PPC64_GOT_PCREL34:
6763 return 1;
6764 case BFD_RELOC_PPC_B26:
6765 case BFD_RELOC_PPC_BA26:
6766 case BFD_RELOC_PPC_B16:
6767 case BFD_RELOC_PPC_BA16:
6768 case BFD_RELOC_PPC64_REL24_NOTOC:
6769 case BFD_RELOC_PPC64_REL24_P9NOTOC:
6770 /* All branch fixups targeting a localentry symbol must
6771 force a relocation. */
6772 if (fix->fx_addsy)
6773 {
6774 asymbol *bfdsym = symbol_get_bfdsym (fix->fx_addsy);
6775 elf_symbol_type *elfsym = elf_symbol_from (bfdsym);
6776 gas_assert (elfsym);
6777 if ((STO_PPC64_LOCAL_MASK & elfsym->internal_elf_sym.st_other) != 0)
6778 return 1;
6779 }
6780 break;
6781 default:
6782 break;
6783 }
6784
6785 if (fix->fx_r_type >= BFD_RELOC_PPC_TLS
6786 && fix->fx_r_type <= BFD_RELOC_PPC64_TLS_PCREL)
6787 return 1;
6788
6789 return generic_force_reloc (fix);
6790 }
6791
6792 int
6793 ppc_fix_adjustable (fixS *fix)
6794 {
6795 switch (fix->fx_r_type)
6796 {
6797 /* All branch fixups targeting a localentry symbol must
6798 continue using the symbol. */
6799 case BFD_RELOC_PPC_B26:
6800 case BFD_RELOC_PPC_BA26:
6801 case BFD_RELOC_PPC_B16:
6802 case BFD_RELOC_PPC_BA16:
6803 case BFD_RELOC_PPC_B16_BRTAKEN:
6804 case BFD_RELOC_PPC_B16_BRNTAKEN:
6805 case BFD_RELOC_PPC_BA16_BRTAKEN:
6806 case BFD_RELOC_PPC_BA16_BRNTAKEN:
6807 case BFD_RELOC_PPC64_REL24_NOTOC:
6808 case BFD_RELOC_PPC64_REL24_P9NOTOC:
6809 if (fix->fx_addsy)
6810 {
6811 asymbol *bfdsym = symbol_get_bfdsym (fix->fx_addsy);
6812 elf_symbol_type *elfsym = elf_symbol_from (bfdsym);
6813 gas_assert (elfsym);
6814 if ((STO_PPC64_LOCAL_MASK & elfsym->internal_elf_sym.st_other) != 0)
6815 return 0;
6816 }
6817 break;
6818 default:
6819 break;
6820 }
6821
6822 return (fix->fx_r_type != BFD_RELOC_16_GOTOFF
6823 && fix->fx_r_type != BFD_RELOC_LO16_GOTOFF
6824 && fix->fx_r_type != BFD_RELOC_HI16_GOTOFF
6825 && fix->fx_r_type != BFD_RELOC_HI16_S_GOTOFF
6826 && fix->fx_r_type != BFD_RELOC_PPC64_GOT16_DS
6827 && fix->fx_r_type != BFD_RELOC_PPC64_GOT16_LO_DS
6828 && fix->fx_r_type != BFD_RELOC_PPC64_GOT_PCREL34
6829 && fix->fx_r_type != BFD_RELOC_24_PLT_PCREL
6830 && fix->fx_r_type != BFD_RELOC_32_PLTOFF
6831 && fix->fx_r_type != BFD_RELOC_32_PLT_PCREL
6832 && fix->fx_r_type != BFD_RELOC_LO16_PLTOFF
6833 && fix->fx_r_type != BFD_RELOC_HI16_PLTOFF
6834 && fix->fx_r_type != BFD_RELOC_HI16_S_PLTOFF
6835 && fix->fx_r_type != BFD_RELOC_64_PLTOFF
6836 && fix->fx_r_type != BFD_RELOC_64_PLT_PCREL
6837 && fix->fx_r_type != BFD_RELOC_PPC64_PLT16_LO_DS
6838 && fix->fx_r_type != BFD_RELOC_PPC64_PLT_PCREL34
6839 && fix->fx_r_type != BFD_RELOC_PPC64_PLTGOT16
6840 && fix->fx_r_type != BFD_RELOC_PPC64_PLTGOT16_LO
6841 && fix->fx_r_type != BFD_RELOC_PPC64_PLTGOT16_HI
6842 && fix->fx_r_type != BFD_RELOC_PPC64_PLTGOT16_HA
6843 && fix->fx_r_type != BFD_RELOC_PPC64_PLTGOT16_DS
6844 && fix->fx_r_type != BFD_RELOC_PPC64_PLTGOT16_LO_DS
6845 && fix->fx_r_type != BFD_RELOC_GPREL16
6846 && fix->fx_r_type != BFD_RELOC_PPC_VLE_SDAREL_LO16A
6847 && fix->fx_r_type != BFD_RELOC_PPC_VLE_SDAREL_HI16A
6848 && fix->fx_r_type != BFD_RELOC_PPC_VLE_SDAREL_HA16A
6849 && fix->fx_r_type != BFD_RELOC_VTABLE_INHERIT
6850 && fix->fx_r_type != BFD_RELOC_VTABLE_ENTRY
6851 && !(fix->fx_r_type >= BFD_RELOC_PPC_TLS
6852 && fix->fx_r_type <= BFD_RELOC_PPC64_TLS_PCREL));
6853 }
6854 #endif
6855
6856 void
6857 ppc_frag_check (struct frag *fragP)
6858 {
6859 if ((fragP->fr_address & fragP->insn_addr) != 0)
6860 as_bad_where (fragP->fr_file, fragP->fr_line,
6861 _("instruction address is not a multiple of %d"),
6862 fragP->insn_addr + 1);
6863 }
6864
6865 /* rs_align_code frag handling. */
6866
6867 enum ppc_nop_encoding_for_rs_align_code
6868 {
6869 PPC_NOP_VANILLA,
6870 PPC_NOP_VLE,
6871 PPC_NOP_GROUP_P6,
6872 PPC_NOP_GROUP_P7
6873 };
6874
6875 unsigned int
6876 ppc_nop_select (void)
6877 {
6878 if ((ppc_cpu & PPC_OPCODE_VLE) != 0)
6879 return PPC_NOP_VLE;
6880 if ((ppc_cpu & (PPC_OPCODE_POWER9 | PPC_OPCODE_E500MC)) == 0)
6881 {
6882 if ((ppc_cpu & PPC_OPCODE_POWER7) != 0)
6883 return PPC_NOP_GROUP_P7;
6884 if ((ppc_cpu & PPC_OPCODE_POWER6) != 0)
6885 return PPC_NOP_GROUP_P6;
6886 }
6887 return PPC_NOP_VANILLA;
6888 }
6889
6890 void
6891 ppc_handle_align (struct frag *fragP)
6892 {
6893 valueT count = (fragP->fr_next->fr_address
6894 - (fragP->fr_address + fragP->fr_fix));
6895 char *dest = fragP->fr_literal + fragP->fr_fix;
6896 enum ppc_nop_encoding_for_rs_align_code nop_select = *dest & 0xff;
6897
6898 /* Pad with zeros if not inserting a whole number of instructions.
6899 We could pad with zeros up to an instruction boundary then follow
6900 with nops but odd counts indicate data in an executable section
6901 so padding with zeros is most appropriate. */
6902 if (count == 0
6903 || (nop_select == PPC_NOP_VLE ? (count & 1) != 0 : (count & 3) != 0))
6904 {
6905 *dest = 0;
6906 return;
6907 }
6908
6909 if (nop_select == PPC_NOP_VLE)
6910 {
6911
6912 fragP->fr_var = 2;
6913 md_number_to_chars (dest, 0x4400, 2);
6914 }
6915 else
6916 {
6917 fragP->fr_var = 4;
6918
6919 if (count > 4 * nop_limit && count < 0x2000000)
6920 {
6921 struct frag *rest;
6922
6923 /* Make a branch, then follow with nops. Insert another
6924 frag to handle the nops. */
6925 md_number_to_chars (dest, 0x48000000 + count, 4);
6926 count -= 4;
6927 if (count == 0)
6928 return;
6929
6930 rest = xmalloc (SIZEOF_STRUCT_FRAG + 4);
6931 memcpy (rest, fragP, SIZEOF_STRUCT_FRAG);
6932 fragP->fr_next = rest;
6933 fragP = rest;
6934 rest->fr_address += rest->fr_fix + 4;
6935 rest->fr_fix = 0;
6936 /* If we leave the next frag as rs_align_code we'll come here
6937 again, resulting in a bunch of branches rather than a
6938 branch followed by nops. */
6939 rest->fr_type = rs_align;
6940 dest = rest->fr_literal;
6941 }
6942
6943 md_number_to_chars (dest, 0x60000000, 4);
6944
6945 if (nop_select >= PPC_NOP_GROUP_P6)
6946 {
6947 /* For power6, power7, and power8, we want the last nop to
6948 be a group terminating one. Do this by inserting an
6949 rs_fill frag immediately after this one, with its address
6950 set to the last nop location. This will automatically
6951 reduce the number of nops in the current frag by one. */
6952 if (count > 4)
6953 {
6954 struct frag *group_nop = xmalloc (SIZEOF_STRUCT_FRAG + 4);
6955
6956 memcpy (group_nop, fragP, SIZEOF_STRUCT_FRAG);
6957 group_nop->fr_address = group_nop->fr_next->fr_address - 4;
6958 group_nop->fr_fix = 0;
6959 group_nop->fr_offset = 1;
6960 group_nop->fr_type = rs_fill;
6961 fragP->fr_next = group_nop;
6962 dest = group_nop->fr_literal;
6963 }
6964
6965 if (nop_select == PPC_NOP_GROUP_P6)
6966 /* power6 group terminating nop: "ori 1,1,0". */
6967 md_number_to_chars (dest, 0x60210000, 4);
6968 else
6969 /* power7/power8 group terminating nop: "ori 2,2,0". */
6970 md_number_to_chars (dest, 0x60420000, 4);
6971 }
6972 }
6973 }
6974
6975 /* Apply a fixup to the object code. This is called for all the
6976 fixups we generated by the calls to fix_new_exp, above. */
6977
6978 void
6979 md_apply_fix (fixS *fixP, valueT *valP, segT seg)
6980 {
6981 valueT value = * valP;
6982 offsetT fieldval;
6983 const struct powerpc_operand *operand;
6984
6985 #ifdef OBJ_ELF
6986 if (fixP->fx_addsy != NULL)
6987 {
6988 /* Hack around bfd_install_relocation brain damage. */
6989 if (fixP->fx_pcrel)
6990 value += fixP->fx_frag->fr_address + fixP->fx_where;
6991
6992 if (fixP->fx_addsy == abs_section_sym)
6993 fixP->fx_done = 1;
6994 }
6995 else
6996 fixP->fx_done = 1;
6997 #else
6998 /* FIXME FIXME FIXME: The value we are passed in *valP includes
6999 the symbol values. If we are doing this relocation the code in
7000 write.c is going to call bfd_install_relocation, which is also
7001 going to use the symbol value. That means that if the reloc is
7002 fully resolved we want to use *valP since bfd_install_relocation is
7003 not being used.
7004 However, if the reloc is not fully resolved we do not want to
7005 use *valP, and must use fx_offset instead. If the relocation
7006 is PC-relative, we then need to re-apply md_pcrel_from_section
7007 to this new relocation value. */
7008 if (fixP->fx_addsy == (symbolS *) NULL)
7009 fixP->fx_done = 1;
7010
7011 else
7012 {
7013 value = fixP->fx_offset;
7014 if (fixP->fx_pcrel)
7015 value -= md_pcrel_from_section (fixP, seg);
7016 }
7017 #endif
7018
7019 /* We are only able to convert some relocs to pc-relative. */
7020 if (fixP->fx_pcrel)
7021 {
7022 switch (fixP->fx_r_type)
7023 {
7024 case BFD_RELOC_64:
7025 fixP->fx_r_type = BFD_RELOC_64_PCREL;
7026 break;
7027
7028 case BFD_RELOC_32:
7029 fixP->fx_r_type = BFD_RELOC_32_PCREL;
7030 break;
7031
7032 case BFD_RELOC_16:
7033 fixP->fx_r_type = BFD_RELOC_16_PCREL;
7034 break;
7035
7036 case BFD_RELOC_LO16:
7037 fixP->fx_r_type = BFD_RELOC_LO16_PCREL;
7038 break;
7039
7040 case BFD_RELOC_HI16:
7041 fixP->fx_r_type = BFD_RELOC_HI16_PCREL;
7042 break;
7043
7044 case BFD_RELOC_HI16_S:
7045 fixP->fx_r_type = BFD_RELOC_HI16_S_PCREL;
7046 break;
7047
7048 case BFD_RELOC_PPC64_ADDR16_HIGH:
7049 fixP->fx_r_type = BFD_RELOC_PPC64_REL16_HIGH;
7050 break;
7051
7052 case BFD_RELOC_PPC64_ADDR16_HIGHA:
7053 fixP->fx_r_type = BFD_RELOC_PPC64_REL16_HIGHA;
7054 break;
7055
7056 case BFD_RELOC_PPC64_HIGHER:
7057 fixP->fx_r_type = BFD_RELOC_PPC64_REL16_HIGHER;
7058 break;
7059
7060 case BFD_RELOC_PPC64_HIGHER_S:
7061 fixP->fx_r_type = BFD_RELOC_PPC64_REL16_HIGHERA;
7062 break;
7063
7064 case BFD_RELOC_PPC64_HIGHEST:
7065 fixP->fx_r_type = BFD_RELOC_PPC64_REL16_HIGHEST;
7066 break;
7067
7068 case BFD_RELOC_PPC64_HIGHEST_S:
7069 fixP->fx_r_type = BFD_RELOC_PPC64_REL16_HIGHESTA;
7070 break;
7071
7072 case BFD_RELOC_PPC64_ADDR16_HIGHER34:
7073 fixP->fx_r_type = BFD_RELOC_PPC64_REL16_HIGHER34;
7074 break;
7075
7076 case BFD_RELOC_PPC64_ADDR16_HIGHERA34:
7077 fixP->fx_r_type = BFD_RELOC_PPC64_REL16_HIGHERA34;
7078 break;
7079
7080 case BFD_RELOC_PPC64_ADDR16_HIGHEST34:
7081 fixP->fx_r_type = BFD_RELOC_PPC64_REL16_HIGHEST34;
7082 break;
7083
7084 case BFD_RELOC_PPC64_ADDR16_HIGHESTA34:
7085 fixP->fx_r_type = BFD_RELOC_PPC64_REL16_HIGHESTA34;
7086 break;
7087
7088 case BFD_RELOC_PPC_16DX_HA:
7089 fixP->fx_r_type = BFD_RELOC_PPC_REL16DX_HA;
7090 break;
7091
7092 case BFD_RELOC_PPC64_D34:
7093 fixP->fx_r_type = BFD_RELOC_PPC64_PCREL34;
7094 break;
7095
7096 case BFD_RELOC_PPC64_D28:
7097 fixP->fx_r_type = BFD_RELOC_PPC64_PCREL28;
7098 break;
7099
7100 default:
7101 break;
7102 }
7103 }
7104 else if (!fixP->fx_done
7105 && fixP->fx_r_type == BFD_RELOC_PPC_16DX_HA)
7106 {
7107 /* addpcis is relative to next insn address. */
7108 value -= 4;
7109 fixP->fx_r_type = BFD_RELOC_PPC_REL16DX_HA;
7110 fixP->fx_pcrel = 1;
7111 }
7112
7113 operand = NULL;
7114 if (fixP->fx_pcrel_adjust != 0)
7115 {
7116 /* This is a fixup on an instruction. */
7117 ppc_opindex_t opindex = fixP->fx_pcrel_adjust & PPC_OPINDEX_MAX;
7118
7119 operand = &powerpc_operands[opindex];
7120 #ifdef OBJ_XCOFF
7121 /* An instruction like `lwz 9,sym(30)' when `sym' is not a TOC symbol
7122 does not generate a reloc. It uses the offset of `sym' within its
7123 csect. Other usages, such as `.long sym', generate relocs. This
7124 is the documented behaviour of non-TOC symbols. */
7125 if ((operand->flags & PPC_OPERAND_PARENS) != 0
7126 && (operand->bitm & 0xfff0) == 0xfff0
7127 && operand->shift == 0
7128 && (operand->insert == NULL || ppc_obj64)
7129 && fixP->fx_addsy != NULL
7130 && symbol_get_tc (fixP->fx_addsy)->subseg != 0
7131 && !ppc_is_toc_sym (fixP->fx_addsy)
7132 && S_GET_SEGMENT (fixP->fx_addsy) != bss_section)
7133 {
7134 value = fixP->fx_offset;
7135 fixP->fx_done = 1;
7136 }
7137
7138 /* During parsing of instructions, a TOC16 reloc is generated for
7139 instructions such as 'lwz RT,SYM(RB)' if SYM is a symbol defined
7140 in the toc. But at parse time, SYM may be not yet defined, so
7141 check again here. */
7142 if (fixP->fx_r_type == BFD_RELOC_16
7143 && fixP->fx_addsy != NULL
7144 && ppc_is_toc_sym (fixP->fx_addsy))
7145 fixP->fx_r_type = BFD_RELOC_PPC_TOC16;
7146 #endif
7147 }
7148
7149 /* Calculate value to be stored in field. */
7150 fieldval = value;
7151 switch (fixP->fx_r_type)
7152 {
7153 #ifdef OBJ_ELF
7154 case BFD_RELOC_PPC64_ADDR16_LO_DS:
7155 case BFD_RELOC_PPC_VLE_LO16A:
7156 case BFD_RELOC_PPC_VLE_LO16D:
7157 #endif
7158 case BFD_RELOC_LO16:
7159 case BFD_RELOC_LO16_PCREL:
7160 fieldval = value & 0xffff;
7161 sign_extend_16:
7162 if (operand != NULL && (operand->flags & PPC_OPERAND_SIGNED) != 0)
7163 fieldval = SEX16 (fieldval);
7164 fixP->fx_no_overflow = 1;
7165 break;
7166
7167 case BFD_RELOC_HI16:
7168 case BFD_RELOC_HI16_PCREL:
7169 #ifdef OBJ_ELF
7170 if (REPORT_OVERFLOW_HI && ppc_obj64)
7171 {
7172 fieldval = value >> 16;
7173 if (operand != NULL && (operand->flags & PPC_OPERAND_SIGNED) != 0)
7174 {
7175 valueT sign = (((valueT) -1 >> 16) + 1) >> 1;
7176 fieldval = ((valueT) fieldval ^ sign) - sign;
7177 }
7178 break;
7179 }
7180 /* Fallthru */
7181
7182 case BFD_RELOC_PPC_VLE_HI16A:
7183 case BFD_RELOC_PPC_VLE_HI16D:
7184 case BFD_RELOC_PPC64_ADDR16_HIGH:
7185 #endif
7186 fieldval = PPC_HI (value);
7187 goto sign_extend_16;
7188
7189 case BFD_RELOC_HI16_S:
7190 case BFD_RELOC_HI16_S_PCREL:
7191 case BFD_RELOC_PPC_16DX_HA:
7192 case BFD_RELOC_PPC_REL16DX_HA:
7193 #ifdef OBJ_ELF
7194 if (REPORT_OVERFLOW_HI && ppc_obj64)
7195 {
7196 fieldval = (value + 0x8000) >> 16;
7197 if (operand != NULL && (operand->flags & PPC_OPERAND_SIGNED) != 0)
7198 {
7199 valueT sign = (((valueT) -1 >> 16) + 1) >> 1;
7200 fieldval = ((valueT) fieldval ^ sign) - sign;
7201 }
7202 break;
7203 }
7204 /* Fallthru */
7205
7206 case BFD_RELOC_PPC_VLE_HA16A:
7207 case BFD_RELOC_PPC_VLE_HA16D:
7208 case BFD_RELOC_PPC64_ADDR16_HIGHA:
7209 #endif
7210 fieldval = PPC_HA (value);
7211 goto sign_extend_16;
7212
7213 #ifdef OBJ_ELF
7214 case BFD_RELOC_PPC64_HIGHER:
7215 fieldval = PPC_HIGHER (value);
7216 goto sign_extend_16;
7217
7218 case BFD_RELOC_PPC64_HIGHER_S:
7219 fieldval = PPC_HIGHERA (value);
7220 goto sign_extend_16;
7221
7222 case BFD_RELOC_PPC64_HIGHEST:
7223 fieldval = PPC_HIGHEST (value);
7224 goto sign_extend_16;
7225
7226 case BFD_RELOC_PPC64_HIGHEST_S:
7227 fieldval = PPC_HIGHESTA (value);
7228 goto sign_extend_16;
7229 #endif
7230
7231 default:
7232 break;
7233 }
7234
7235 if (operand != NULL)
7236 {
7237 /* Handle relocs in an insn. */
7238 switch (fixP->fx_r_type)
7239 {
7240 #ifdef OBJ_ELF
7241 /* The following relocs can't be calculated by the assembler.
7242 Leave the field zero. */
7243 case BFD_RELOC_PPC_TPREL16:
7244 case BFD_RELOC_PPC_TPREL16_LO:
7245 case BFD_RELOC_PPC_TPREL16_HI:
7246 case BFD_RELOC_PPC_TPREL16_HA:
7247 case BFD_RELOC_PPC_DTPREL16:
7248 case BFD_RELOC_PPC_DTPREL16_LO:
7249 case BFD_RELOC_PPC_DTPREL16_HI:
7250 case BFD_RELOC_PPC_DTPREL16_HA:
7251 case BFD_RELOC_PPC_GOT_TLSGD16:
7252 case BFD_RELOC_PPC_GOT_TLSGD16_LO:
7253 case BFD_RELOC_PPC_GOT_TLSGD16_HI:
7254 case BFD_RELOC_PPC_GOT_TLSGD16_HA:
7255 case BFD_RELOC_PPC_GOT_TLSLD16:
7256 case BFD_RELOC_PPC_GOT_TLSLD16_LO:
7257 case BFD_RELOC_PPC_GOT_TLSLD16_HI:
7258 case BFD_RELOC_PPC_GOT_TLSLD16_HA:
7259 case BFD_RELOC_PPC_GOT_TPREL16:
7260 case BFD_RELOC_PPC_GOT_TPREL16_LO:
7261 case BFD_RELOC_PPC_GOT_TPREL16_HI:
7262 case BFD_RELOC_PPC_GOT_TPREL16_HA:
7263 case BFD_RELOC_PPC_GOT_DTPREL16:
7264 case BFD_RELOC_PPC_GOT_DTPREL16_LO:
7265 case BFD_RELOC_PPC_GOT_DTPREL16_HI:
7266 case BFD_RELOC_PPC_GOT_DTPREL16_HA:
7267 case BFD_RELOC_PPC64_TPREL16_DS:
7268 case BFD_RELOC_PPC64_TPREL16_LO_DS:
7269 case BFD_RELOC_PPC64_TPREL16_HIGH:
7270 case BFD_RELOC_PPC64_TPREL16_HIGHA:
7271 case BFD_RELOC_PPC64_TPREL16_HIGHER:
7272 case BFD_RELOC_PPC64_TPREL16_HIGHERA:
7273 case BFD_RELOC_PPC64_TPREL16_HIGHEST:
7274 case BFD_RELOC_PPC64_TPREL16_HIGHESTA:
7275 case BFD_RELOC_PPC64_DTPREL16_HIGH:
7276 case BFD_RELOC_PPC64_DTPREL16_HIGHA:
7277 case BFD_RELOC_PPC64_DTPREL16_DS:
7278 case BFD_RELOC_PPC64_DTPREL16_LO_DS:
7279 case BFD_RELOC_PPC64_DTPREL16_HIGHER:
7280 case BFD_RELOC_PPC64_DTPREL16_HIGHERA:
7281 case BFD_RELOC_PPC64_DTPREL16_HIGHEST:
7282 case BFD_RELOC_PPC64_DTPREL16_HIGHESTA:
7283 case BFD_RELOC_PPC64_TPREL34:
7284 case BFD_RELOC_PPC64_DTPREL34:
7285 case BFD_RELOC_PPC64_GOT_TLSGD_PCREL34:
7286 case BFD_RELOC_PPC64_GOT_TLSLD_PCREL34:
7287 case BFD_RELOC_PPC64_GOT_TPREL_PCREL34:
7288 case BFD_RELOC_PPC64_GOT_DTPREL_PCREL34:
7289 gas_assert (fixP->fx_addsy != NULL);
7290 S_SET_THREAD_LOCAL (fixP->fx_addsy);
7291 fieldval = 0;
7292 break;
7293
7294 /* These also should leave the field zero for the same
7295 reason. Note that older versions of gas wrote values
7296 here. If we want to go back to the old behaviour, then
7297 all _LO and _LO_DS cases will need to be treated like
7298 BFD_RELOC_LO16_PCREL above. Similarly for _HI etc. */
7299 case BFD_RELOC_16_GOTOFF:
7300 case BFD_RELOC_LO16_GOTOFF:
7301 case BFD_RELOC_HI16_GOTOFF:
7302 case BFD_RELOC_HI16_S_GOTOFF:
7303 case BFD_RELOC_LO16_PLTOFF:
7304 case BFD_RELOC_HI16_PLTOFF:
7305 case BFD_RELOC_HI16_S_PLTOFF:
7306 case BFD_RELOC_GPREL16:
7307 case BFD_RELOC_16_BASEREL:
7308 case BFD_RELOC_LO16_BASEREL:
7309 case BFD_RELOC_HI16_BASEREL:
7310 case BFD_RELOC_HI16_S_BASEREL:
7311 case BFD_RELOC_PPC_TOC16:
7312 case BFD_RELOC_PPC64_TOC16_LO:
7313 case BFD_RELOC_PPC64_TOC16_HI:
7314 case BFD_RELOC_PPC64_TOC16_HA:
7315 case BFD_RELOC_PPC64_PLTGOT16:
7316 case BFD_RELOC_PPC64_PLTGOT16_LO:
7317 case BFD_RELOC_PPC64_PLTGOT16_HI:
7318 case BFD_RELOC_PPC64_PLTGOT16_HA:
7319 case BFD_RELOC_PPC64_GOT16_DS:
7320 case BFD_RELOC_PPC64_GOT16_LO_DS:
7321 case BFD_RELOC_PPC64_PLT16_LO_DS:
7322 case BFD_RELOC_PPC64_SECTOFF_DS:
7323 case BFD_RELOC_PPC64_SECTOFF_LO_DS:
7324 case BFD_RELOC_PPC64_TOC16_DS:
7325 case BFD_RELOC_PPC64_TOC16_LO_DS:
7326 case BFD_RELOC_PPC64_PLTGOT16_DS:
7327 case BFD_RELOC_PPC64_PLTGOT16_LO_DS:
7328 case BFD_RELOC_PPC_EMB_NADDR16:
7329 case BFD_RELOC_PPC_EMB_NADDR16_LO:
7330 case BFD_RELOC_PPC_EMB_NADDR16_HI:
7331 case BFD_RELOC_PPC_EMB_NADDR16_HA:
7332 case BFD_RELOC_PPC_EMB_SDAI16:
7333 case BFD_RELOC_PPC_EMB_SDA2I16:
7334 case BFD_RELOC_PPC_EMB_SDA2REL:
7335 case BFD_RELOC_PPC_EMB_SDA21:
7336 case BFD_RELOC_PPC_EMB_MRKREF:
7337 case BFD_RELOC_PPC_EMB_RELSEC16:
7338 case BFD_RELOC_PPC_EMB_RELST_LO:
7339 case BFD_RELOC_PPC_EMB_RELST_HI:
7340 case BFD_RELOC_PPC_EMB_RELST_HA:
7341 case BFD_RELOC_PPC_EMB_BIT_FLD:
7342 case BFD_RELOC_PPC_EMB_RELSDA:
7343 case BFD_RELOC_PPC_VLE_SDA21:
7344 case BFD_RELOC_PPC_VLE_SDA21_LO:
7345 case BFD_RELOC_PPC_VLE_SDAREL_LO16A:
7346 case BFD_RELOC_PPC_VLE_SDAREL_LO16D:
7347 case BFD_RELOC_PPC_VLE_SDAREL_HI16A:
7348 case BFD_RELOC_PPC_VLE_SDAREL_HI16D:
7349 case BFD_RELOC_PPC_VLE_SDAREL_HA16A:
7350 case BFD_RELOC_PPC_VLE_SDAREL_HA16D:
7351 case BFD_RELOC_PPC64_GOT_PCREL34:
7352 case BFD_RELOC_PPC64_PLT_PCREL34:
7353 gas_assert (fixP->fx_addsy != NULL);
7354 /* Fallthru */
7355
7356 case BFD_RELOC_PPC_TLS:
7357 case BFD_RELOC_PPC_TLSGD:
7358 case BFD_RELOC_PPC_TLSLD:
7359 case BFD_RELOC_PPC64_TLS_PCREL:
7360 fieldval = 0;
7361 break;
7362 #endif
7363
7364 #ifdef OBJ_XCOFF
7365 case BFD_RELOC_PPC_B16:
7366 /* Adjust the offset to the instruction boundary. */
7367 fieldval += 2;
7368 break;
7369 #endif
7370
7371 case BFD_RELOC_VTABLE_INHERIT:
7372 case BFD_RELOC_VTABLE_ENTRY:
7373 case BFD_RELOC_PPC_DTPMOD:
7374 case BFD_RELOC_PPC_TPREL:
7375 case BFD_RELOC_PPC_DTPREL:
7376 case BFD_RELOC_PPC_COPY:
7377 case BFD_RELOC_PPC_GLOB_DAT:
7378 case BFD_RELOC_32_PLT_PCREL:
7379 case BFD_RELOC_PPC_EMB_NADDR32:
7380 case BFD_RELOC_PPC64_TOC:
7381 case BFD_RELOC_CTOR:
7382 case BFD_RELOC_32:
7383 case BFD_RELOC_32_PCREL:
7384 case BFD_RELOC_RVA:
7385 case BFD_RELOC_64:
7386 case BFD_RELOC_64_PCREL:
7387 case BFD_RELOC_PPC64_ADDR64_LOCAL:
7388 as_bad_where (fixP->fx_file, fixP->fx_line,
7389 _("%s unsupported as instruction fixup"),
7390 bfd_get_reloc_code_name (fixP->fx_r_type));
7391 fixP->fx_done = 1;
7392 return;
7393
7394 default:
7395 break;
7396 }
7397
7398 #ifdef OBJ_ELF
7399 /* powerpc uses RELA style relocs, so if emitting a reloc the field
7400 contents can stay at zero. */
7401 #define APPLY_RELOC fixP->fx_done
7402 #else
7403 #define APPLY_RELOC 1
7404 #endif
7405 /* We need to call the insert function even when fieldval is
7406 zero if the insert function would translate that zero to a
7407 bit pattern other than all zeros. */
7408 if ((fieldval != 0 && APPLY_RELOC) || operand->insert != NULL)
7409 {
7410 uint64_t insn;
7411 unsigned char *where;
7412
7413 /* Fetch the instruction, insert the fully resolved operand
7414 value, and stuff the instruction back again. */
7415 where = (unsigned char *) fixP->fx_frag->fr_literal + fixP->fx_where;
7416 if (target_big_endian)
7417 {
7418 if (fixP->fx_size < 4)
7419 insn = bfd_getb16 (where);
7420 else
7421 {
7422 insn = bfd_getb32 (where);
7423 if (fixP->fx_size > 4)
7424 insn = insn << 32 | bfd_getb32 (where + 4);
7425 }
7426 }
7427 else
7428 {
7429 if (fixP->fx_size < 4)
7430 insn = bfd_getl16 (where);
7431 else
7432 {
7433 insn = bfd_getl32 (where);
7434 if (fixP->fx_size > 4)
7435 insn = insn << 32 | bfd_getl32 (where + 4);
7436 }
7437 }
7438 insn = ppc_insert_operand (insn, operand, fieldval,
7439 fixP->tc_fix_data.ppc_cpu,
7440 fixP->fx_file, fixP->fx_line);
7441 if (target_big_endian)
7442 {
7443 if (fixP->fx_size < 4)
7444 bfd_putb16 (insn, where);
7445 else
7446 {
7447 if (fixP->fx_size > 4)
7448 {
7449 bfd_putb32 (insn, where + 4);
7450 insn >>= 32;
7451 }
7452 bfd_putb32 (insn, where);
7453 }
7454 }
7455 else
7456 {
7457 if (fixP->fx_size < 4)
7458 bfd_putl16 (insn, where);
7459 else
7460 {
7461 if (fixP->fx_size > 4)
7462 {
7463 bfd_putl32 (insn, where + 4);
7464 insn >>= 32;
7465 }
7466 bfd_putl32 (insn, where);
7467 }
7468 }
7469 }
7470
7471 if (fixP->fx_done)
7472 /* Nothing else to do here. */
7473 return;
7474
7475 gas_assert (fixP->fx_addsy != NULL);
7476 if (fixP->fx_r_type == BFD_RELOC_NONE)
7477 {
7478 const char *sfile;
7479 unsigned int sline;
7480
7481 /* Use expr_symbol_where to see if this is an expression
7482 symbol. */
7483 if (expr_symbol_where (fixP->fx_addsy, &sfile, &sline))
7484 as_bad_where (fixP->fx_file, fixP->fx_line,
7485 _("unresolved expression that must be resolved"));
7486 else
7487 as_bad_where (fixP->fx_file, fixP->fx_line,
7488 _("unsupported relocation against %s"),
7489 S_GET_NAME (fixP->fx_addsy));
7490 fixP->fx_done = 1;
7491 return;
7492 }
7493 }
7494 else
7495 {
7496 /* Handle relocs in data. */
7497 switch (fixP->fx_r_type)
7498 {
7499 case BFD_RELOC_VTABLE_INHERIT:
7500 if (fixP->fx_addsy
7501 && !S_IS_DEFINED (fixP->fx_addsy)
7502 && !S_IS_WEAK (fixP->fx_addsy))
7503 S_SET_WEAK (fixP->fx_addsy);
7504 /* Fallthru */
7505
7506 case BFD_RELOC_VTABLE_ENTRY:
7507 fixP->fx_done = 0;
7508 break;
7509
7510 #ifdef OBJ_ELF
7511 /* These can appear with @l etc. in data. */
7512 case BFD_RELOC_LO16:
7513 case BFD_RELOC_LO16_PCREL:
7514 case BFD_RELOC_HI16:
7515 case BFD_RELOC_HI16_PCREL:
7516 case BFD_RELOC_HI16_S:
7517 case BFD_RELOC_HI16_S_PCREL:
7518 case BFD_RELOC_PPC64_HIGHER:
7519 case BFD_RELOC_PPC64_HIGHER_S:
7520 case BFD_RELOC_PPC64_HIGHEST:
7521 case BFD_RELOC_PPC64_HIGHEST_S:
7522 case BFD_RELOC_PPC64_ADDR16_HIGH:
7523 case BFD_RELOC_PPC64_ADDR16_HIGHA:
7524 case BFD_RELOC_PPC64_ADDR64_LOCAL:
7525 break;
7526
7527 case BFD_RELOC_PPC_DTPMOD:
7528 case BFD_RELOC_PPC_TPREL:
7529 case BFD_RELOC_PPC_DTPREL:
7530 S_SET_THREAD_LOCAL (fixP->fx_addsy);
7531 break;
7532
7533 /* Just punt all of these to the linker. */
7534 case BFD_RELOC_PPC_B16_BRTAKEN:
7535 case BFD_RELOC_PPC_B16_BRNTAKEN:
7536 case BFD_RELOC_16_GOTOFF:
7537 case BFD_RELOC_LO16_GOTOFF:
7538 case BFD_RELOC_HI16_GOTOFF:
7539 case BFD_RELOC_HI16_S_GOTOFF:
7540 case BFD_RELOC_LO16_PLTOFF:
7541 case BFD_RELOC_HI16_PLTOFF:
7542 case BFD_RELOC_HI16_S_PLTOFF:
7543 case BFD_RELOC_PPC_COPY:
7544 case BFD_RELOC_PPC_GLOB_DAT:
7545 case BFD_RELOC_16_BASEREL:
7546 case BFD_RELOC_LO16_BASEREL:
7547 case BFD_RELOC_HI16_BASEREL:
7548 case BFD_RELOC_HI16_S_BASEREL:
7549 case BFD_RELOC_PPC_TLS:
7550 case BFD_RELOC_PPC_DTPREL16_LO:
7551 case BFD_RELOC_PPC_DTPREL16_HI:
7552 case BFD_RELOC_PPC_DTPREL16_HA:
7553 case BFD_RELOC_PPC_TPREL16_LO:
7554 case BFD_RELOC_PPC_TPREL16_HI:
7555 case BFD_RELOC_PPC_TPREL16_HA:
7556 case BFD_RELOC_PPC_GOT_TLSGD16:
7557 case BFD_RELOC_PPC_GOT_TLSGD16_LO:
7558 case BFD_RELOC_PPC_GOT_TLSGD16_HI:
7559 case BFD_RELOC_PPC_GOT_TLSGD16_HA:
7560 case BFD_RELOC_PPC_GOT_TLSLD16:
7561 case BFD_RELOC_PPC_GOT_TLSLD16_LO:
7562 case BFD_RELOC_PPC_GOT_TLSLD16_HI:
7563 case BFD_RELOC_PPC_GOT_TLSLD16_HA:
7564 case BFD_RELOC_PPC_GOT_DTPREL16:
7565 case BFD_RELOC_PPC_GOT_DTPREL16_LO:
7566 case BFD_RELOC_PPC_GOT_DTPREL16_HI:
7567 case BFD_RELOC_PPC_GOT_DTPREL16_HA:
7568 case BFD_RELOC_PPC_GOT_TPREL16:
7569 case BFD_RELOC_PPC_GOT_TPREL16_LO:
7570 case BFD_RELOC_PPC_GOT_TPREL16_HI:
7571 case BFD_RELOC_PPC_GOT_TPREL16_HA:
7572 case BFD_RELOC_24_PLT_PCREL:
7573 case BFD_RELOC_PPC_LOCAL24PC:
7574 case BFD_RELOC_32_PLT_PCREL:
7575 case BFD_RELOC_GPREL16:
7576 case BFD_RELOC_PPC_VLE_SDAREL_LO16A:
7577 case BFD_RELOC_PPC_VLE_SDAREL_HI16A:
7578 case BFD_RELOC_PPC_VLE_SDAREL_HA16A:
7579 case BFD_RELOC_PPC_EMB_NADDR32:
7580 case BFD_RELOC_PPC_EMB_NADDR16:
7581 case BFD_RELOC_PPC_EMB_NADDR16_LO:
7582 case BFD_RELOC_PPC_EMB_NADDR16_HI:
7583 case BFD_RELOC_PPC_EMB_NADDR16_HA:
7584 case BFD_RELOC_PPC_EMB_SDAI16:
7585 case BFD_RELOC_PPC_EMB_SDA2REL:
7586 case BFD_RELOC_PPC_EMB_SDA2I16:
7587 case BFD_RELOC_PPC_EMB_SDA21:
7588 case BFD_RELOC_PPC_VLE_SDA21_LO:
7589 case BFD_RELOC_PPC_EMB_MRKREF:
7590 case BFD_RELOC_PPC_EMB_RELSEC16:
7591 case BFD_RELOC_PPC_EMB_RELST_LO:
7592 case BFD_RELOC_PPC_EMB_RELST_HI:
7593 case BFD_RELOC_PPC_EMB_RELST_HA:
7594 case BFD_RELOC_PPC_EMB_BIT_FLD:
7595 case BFD_RELOC_PPC_EMB_RELSDA:
7596 case BFD_RELOC_PPC64_TOC:
7597 case BFD_RELOC_PPC_TOC16:
7598 case BFD_RELOC_PPC_TOC16_LO:
7599 case BFD_RELOC_PPC_TOC16_HI:
7600 case BFD_RELOC_PPC64_TOC16_LO:
7601 case BFD_RELOC_PPC64_TOC16_HI:
7602 case BFD_RELOC_PPC64_TOC16_HA:
7603 case BFD_RELOC_PPC64_DTPREL16_HIGH:
7604 case BFD_RELOC_PPC64_DTPREL16_HIGHA:
7605 case BFD_RELOC_PPC64_DTPREL16_HIGHER:
7606 case BFD_RELOC_PPC64_DTPREL16_HIGHERA:
7607 case BFD_RELOC_PPC64_DTPREL16_HIGHEST:
7608 case BFD_RELOC_PPC64_DTPREL16_HIGHESTA:
7609 case BFD_RELOC_PPC64_TPREL16_HIGH:
7610 case BFD_RELOC_PPC64_TPREL16_HIGHA:
7611 case BFD_RELOC_PPC64_TPREL16_HIGHER:
7612 case BFD_RELOC_PPC64_TPREL16_HIGHERA:
7613 case BFD_RELOC_PPC64_TPREL16_HIGHEST:
7614 case BFD_RELOC_PPC64_TPREL16_HIGHESTA:
7615 case BFD_RELOC_PPC64_TLS_PCREL:
7616 fixP->fx_done = 0;
7617 break;
7618 #endif
7619
7620 #ifdef OBJ_XCOFF
7621 case BFD_RELOC_PPC_TLSGD:
7622 case BFD_RELOC_PPC_TLSLD:
7623 case BFD_RELOC_PPC_TLSLE:
7624 case BFD_RELOC_PPC_TLSIE:
7625 case BFD_RELOC_PPC_TLSM:
7626 case BFD_RELOC_PPC64_TLSGD:
7627 case BFD_RELOC_PPC64_TLSLD:
7628 case BFD_RELOC_PPC64_TLSLE:
7629 case BFD_RELOC_PPC64_TLSIE:
7630 case BFD_RELOC_PPC64_TLSM:
7631 gas_assert (fixP->fx_addsy != NULL);
7632 S_SET_THREAD_LOCAL (fixP->fx_addsy);
7633 break;
7634
7635 /* Officially, R_TLSML relocations must be from a TOC entry
7636 targeting itself. In practice, this TOC entry is always
7637 named (or .rename) "_$TLSML".
7638 Thus, as it doesn't seem possible to retrieve the symbol
7639 being relocated here, we simply check that the symbol
7640 targeted by R_TLSML is indeed a TOC entry named "_$TLSML".
7641 FIXME: Find a way to correctly check R_TLSML relocations
7642 as described above. */
7643 case BFD_RELOC_PPC_TLSML:
7644 case BFD_RELOC_PPC64_TLSML:
7645 gas_assert (fixP->fx_addsy != NULL);
7646 if ((symbol_get_tc (fixP->fx_addsy)->symbol_class != XMC_TC
7647 || symbol_get_tc (fixP->fx_addsy)->symbol_class != XMC_TE)
7648 && strcmp (symbol_get_tc (fixP->fx_addsy)->real_name, "_$TLSML") != 0)
7649 as_bad_where (fixP->fx_file, fixP->fx_line,
7650 _("R_TLSML relocation doesn't target a "
7651 "TOC entry named \"_$TLSML\": %s"), S_GET_NAME(fixP->fx_addsy));
7652 fieldval = 0;
7653 break;
7654
7655 case BFD_RELOC_NONE:
7656 #endif
7657 case BFD_RELOC_CTOR:
7658 case BFD_RELOC_32:
7659 case BFD_RELOC_32_PCREL:
7660 case BFD_RELOC_RVA:
7661 case BFD_RELOC_64:
7662 case BFD_RELOC_64_PCREL:
7663 case BFD_RELOC_16:
7664 case BFD_RELOC_16_PCREL:
7665 case BFD_RELOC_8:
7666 break;
7667
7668 default:
7669 fprintf (stderr,
7670 _("Gas failure, reloc value %d\n"), fixP->fx_r_type);
7671 fflush (stderr);
7672 abort ();
7673 }
7674
7675 if (fixP->fx_size && APPLY_RELOC)
7676 md_number_to_chars (fixP->fx_frag->fr_literal + fixP->fx_where,
7677 fieldval, fixP->fx_size);
7678 if (warn_476
7679 && (seg->flags & SEC_CODE) != 0
7680 && fixP->fx_size == 4
7681 && fixP->fx_done
7682 && !fixP->fx_tcbit
7683 && (fixP->fx_r_type == BFD_RELOC_32
7684 || fixP->fx_r_type == BFD_RELOC_CTOR
7685 || fixP->fx_r_type == BFD_RELOC_32_PCREL))
7686 as_warn_where (fixP->fx_file, fixP->fx_line,
7687 _("data in executable section"));
7688 }
7689
7690 #ifdef OBJ_ELF
7691 ppc_elf_validate_fix (fixP, seg);
7692 fixP->fx_addnumber = value;
7693
7694 /* PowerPC uses RELA relocs, ie. the reloc addend is stored separately
7695 from the section contents. If we are going to be emitting a reloc
7696 then the section contents are immaterial, so don't warn if they
7697 happen to overflow. Leave such warnings to ld. */
7698 if (!fixP->fx_done)
7699 {
7700 fixP->fx_no_overflow = 1;
7701
7702 /* Arrange to emit .TOC. as a normal symbol if used in anything
7703 but .TOC.@tocbase. */
7704 if (ppc_obj64
7705 && fixP->fx_r_type != BFD_RELOC_PPC64_TOC
7706 && fixP->fx_addsy != NULL
7707 && strcmp (S_GET_NAME (fixP->fx_addsy), ".TOC.") == 0)
7708 symbol_get_bfdsym (fixP->fx_addsy)->flags |= BSF_KEEP;
7709 }
7710 #else
7711 if (fixP->fx_r_type == BFD_RELOC_PPC_TOC16
7712 || fixP->fx_r_type == BFD_RELOC_PPC_TOC16_HI
7713 || fixP->fx_r_type == BFD_RELOC_PPC_TOC16_LO)
7714 {
7715 /* We want to use the offset within the toc, not the actual VMA
7716 of the symbol. */
7717 fixP->fx_addnumber = (- bfd_section_vma (S_GET_SEGMENT (fixP->fx_addsy))
7718 - S_GET_VALUE (ppc_toc_csect));
7719
7720 /* The high bits must be adjusted for the low bits being signed. */
7721 if (fixP->fx_r_type == BFD_RELOC_PPC_TOC16_HI) {
7722 fixP->fx_addnumber += 0x8000;
7723 }
7724
7725 /* Set *valP to avoid errors. */
7726 *valP = value;
7727 }
7728 else if (fixP->fx_r_type == BFD_RELOC_PPC_TLSM
7729 || fixP->fx_r_type == BFD_RELOC_PPC64_TLSM
7730 || fixP->fx_r_type == BFD_RELOC_PPC_TLSML
7731 || fixP->fx_r_type == BFD_RELOC_PPC64_TLSML)
7732 /* AIX ld expects the section contents for these relocations
7733 to be zero. Arrange for that to occur when
7734 bfd_install_relocation is called. */
7735 fixP->fx_addnumber = (- bfd_section_vma (S_GET_SEGMENT (fixP->fx_addsy))
7736 - S_GET_VALUE (fixP->fx_addsy)
7737 - fieldval);
7738 else
7739 fixP->fx_addnumber = 0;
7740 #endif
7741 }
7742
7743 /* Generate a reloc for a fixup. */
7744
7745 arelent **
7746 tc_gen_reloc (asection *seg ATTRIBUTE_UNUSED, fixS *fixp)
7747 {
7748 static arelent *relocs[3];
7749 arelent *reloc;
7750
7751 relocs[0] = reloc = XNEW (arelent);
7752 relocs[1] = NULL;
7753
7754 reloc->sym_ptr_ptr = XNEW (asymbol *);
7755 *reloc->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
7756 reloc->address = fixp->fx_frag->fr_address + fixp->fx_where;
7757 /* BFD_RELOC_PPC64_TLS_PCREL generates R_PPC64_TLS with an odd r_offset. */
7758 if (fixp->fx_r_type == BFD_RELOC_PPC64_TLS_PCREL)
7759 reloc->address++;
7760 reloc->howto = bfd_reloc_type_lookup (stdoutput, fixp->fx_r_type);
7761 if (reloc->howto == (reloc_howto_type *) NULL)
7762 {
7763 as_bad_where (fixp->fx_file, fixp->fx_line,
7764 _("reloc %d not supported by object file format"),
7765 (int) fixp->fx_r_type);
7766 relocs[0] = NULL;
7767 }
7768 reloc->addend = fixp->fx_addnumber;
7769
7770 if (fixp->fx_subsy != NULL)
7771 {
7772 relocs[1] = reloc = XNEW (arelent);
7773 relocs[2] = NULL;
7774
7775 reloc->sym_ptr_ptr = XNEW (asymbol *);
7776 *reloc->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_subsy);
7777 reloc->address = fixp->fx_frag->fr_address + fixp->fx_where;
7778
7779 reloc->howto = bfd_reloc_type_lookup (stdoutput, BFD_RELOC_PPC_NEG);
7780 reloc->addend = fixp->fx_addnumber;
7781
7782 if (reloc->howto == (reloc_howto_type *) NULL)
7783 {
7784 as_bad_subtract (fixp);
7785 free (relocs[1]->sym_ptr_ptr);
7786 free (relocs[1]);
7787 free (relocs[0]->sym_ptr_ptr);
7788 free (relocs[0]);
7789 relocs[0] = NULL;
7790 }
7791 }
7792
7793
7794 return relocs;
7795 }
7796
7797 void
7798 ppc_cfi_frame_initial_instructions (void)
7799 {
7800 cfi_add_CFA_def_cfa (1, 0);
7801 }
7802
7803 int
7804 tc_ppc_regname_to_dw2regnum (char *regname)
7805 {
7806 unsigned int regnum = -1;
7807 unsigned int i;
7808 const char *p;
7809 char *q;
7810 static struct { const char *name; int dw2regnum; } regnames[] =
7811 {
7812 { "sp", 1 }, { "r.sp", 1 }, { "rtoc", 2 }, { "r.toc", 2 },
7813 { "mq", 64 }, { "lr", 65 }, { "ctr", 66 }, { "ap", 67 },
7814 { "cr", 70 }, { "xer", 76 }, { "vrsave", 109 }, { "vscr", 110 },
7815 { "spe_acc", 111 }, { "spefscr", 112 }
7816 };
7817
7818 for (i = 0; i < ARRAY_SIZE (regnames); ++i)
7819 if (strcmp (regnames[i].name, regname) == 0)
7820 return regnames[i].dw2regnum;
7821
7822 if (regname[0] == 'r' || regname[0] == 'f' || regname[0] == 'v')
7823 {
7824 p = regname + 1 + (regname[1] == '.');
7825 regnum = strtoul (p, &q, 10);
7826 if (p == q || *q || regnum >= 32)
7827 return -1;
7828 if (regname[0] == 'f')
7829 regnum += 32;
7830 else if (regname[0] == 'v')
7831 regnum += 77;
7832 }
7833 else if (regname[0] == 'c' && regname[1] == 'r')
7834 {
7835 p = regname + 2 + (regname[2] == '.');
7836 if (p[0] < '0' || p[0] > '7' || p[1])
7837 return -1;
7838 regnum = p[0] - '0' + 68;
7839 }
7840 return regnum;
7841 }