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