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