]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gas/config/tc-ppc.c
Frame static link: Handle null pointer.
[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 {
a255f00a
AM
1790 /* Extend the allowed range for addis to [-32768, 65535].
1791 Similarly for cmpli and some VLE high part insns. For 64-bit
1792 it would be good to disable this for signed fields since the
a47622ac
AM
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
a255f00a
AM
1797 lis. */
1798 min = ~(max >> 1) & -right;
a47622ac
AM
1799 }
1800 else if ((operand->flags & PPC_OPERAND_SIGNED) != 0)
1801 {
1802 max = (max >> 1) & -right;
931774a9 1803 min = ~max & -right;
b84bf58a 1804 }
252b5132 1805
b84bf58a 1806 if ((operand->flags & PPC_OPERAND_PLUS1) != 0)
3896c469 1807 max++;
252b5132 1808
b84bf58a 1809 if ((operand->flags & PPC_OPERAND_NEGATIVE) != 0)
a1867a27
AM
1810 {
1811 long tmp = min;
1812 min = -max;
1813 max = -tmp;
1814 }
b84bf58a 1815
a1867a27
AM
1816 if (min <= max)
1817 {
1818 /* Some people write constants with the sign extension done by
1819 hand but only up to 32 bits. This shouldn't really be valid,
1820 but, to permit this code to assemble on a 64-bit host, we
1821 sign extend the 32-bit value to 64 bits if so doing makes the
1822 value valid. */
1823 if (val > max
1824 && (offsetT) (val - 0x80000000 - 0x80000000) >= min
1825 && (offsetT) (val - 0x80000000 - 0x80000000) <= max
1826 && ((val - 0x80000000 - 0x80000000) & (right - 1)) == 0)
1827 val = val - 0x80000000 - 0x80000000;
1828
1829 /* Similarly, people write expressions like ~(1<<15), and expect
1830 this to be OK for a 32-bit unsigned value. */
1831 else if (val < min
1832 && (offsetT) (val + 0x80000000 + 0x80000000) >= min
1833 && (offsetT) (val + 0x80000000 + 0x80000000) <= max
1834 && ((val + 0x80000000 + 0x80000000) & (right - 1)) == 0)
1835 val = val + 0x80000000 + 0x80000000;
1836
1837 else if (val < min
1838 || val > max
1839 || (val & (right - 1)) != 0)
1840 as_bad_value_out_of_range (_("operand"), val, min, max, file, line);
1841 }
b84bf58a 1842
252b5132
RH
1843 if (operand->insert)
1844 {
1845 const char *errmsg;
1846
1847 errmsg = NULL;
91d6fa6a 1848 insn = (*operand->insert) (insn, (long) val, cpu, &errmsg);
252b5132 1849 if (errmsg != (const char *) NULL)
ee2c9aa9 1850 as_bad_where (file, line, "%s", errmsg);
252b5132 1851 }
b9c361e0 1852 else if (operand->shift >= 0)
b84bf58a 1853 insn |= ((long) val & operand->bitm) << operand->shift;
b9c361e0
JL
1854 else
1855 insn |= ((long) val & operand->bitm) >> -operand->shift;
252b5132
RH
1856
1857 return insn;
1858}
1859
1860\f
1861#ifdef OBJ_ELF
1862/* Parse @got, etc. and return the desired relocation. */
1863static bfd_reloc_code_real_type
98027b10 1864ppc_elf_suffix (char **str_p, expressionS *exp_p)
252b5132
RH
1865{
1866 struct map_bfd {
e0471c16 1867 const char *string;
b7d7dc63
AM
1868 unsigned int length : 8;
1869 unsigned int valid32 : 1;
1870 unsigned int valid64 : 1;
1871 unsigned int reloc;
252b5132
RH
1872 };
1873
1874 char ident[20];
1875 char *str = *str_p;
1876 char *str2;
1877 int ch;
1878 int len;
15c1449b 1879 const struct map_bfd *ptr;
252b5132 1880
b7d7dc63
AM
1881#define MAP(str, reloc) { str, sizeof (str) - 1, 1, 1, reloc }
1882#define MAP32(str, reloc) { str, sizeof (str) - 1, 1, 0, reloc }
1883#define MAP64(str, reloc) { str, sizeof (str) - 1, 0, 1, reloc }
252b5132 1884
15c1449b 1885 static const struct map_bfd mapping[] = {
b7d7dc63
AM
1886 MAP ("l", BFD_RELOC_LO16),
1887 MAP ("h", BFD_RELOC_HI16),
1888 MAP ("ha", BFD_RELOC_HI16_S),
1889 MAP ("brtaken", BFD_RELOC_PPC_B16_BRTAKEN),
1890 MAP ("brntaken", BFD_RELOC_PPC_B16_BRNTAKEN),
1891 MAP ("got", BFD_RELOC_16_GOTOFF),
1892 MAP ("got@l", BFD_RELOC_LO16_GOTOFF),
1893 MAP ("got@h", BFD_RELOC_HI16_GOTOFF),
1894 MAP ("got@ha", BFD_RELOC_HI16_S_GOTOFF),
1895 MAP ("plt@l", BFD_RELOC_LO16_PLTOFF),
1896 MAP ("plt@h", BFD_RELOC_HI16_PLTOFF),
1897 MAP ("plt@ha", BFD_RELOC_HI16_S_PLTOFF),
1898 MAP ("copy", BFD_RELOC_PPC_COPY),
1899 MAP ("globdat", BFD_RELOC_PPC_GLOB_DAT),
1900 MAP ("sectoff", BFD_RELOC_16_BASEREL),
1901 MAP ("sectoff@l", BFD_RELOC_LO16_BASEREL),
1902 MAP ("sectoff@h", BFD_RELOC_HI16_BASEREL),
1903 MAP ("sectoff@ha", BFD_RELOC_HI16_S_BASEREL),
1904 MAP ("tls", BFD_RELOC_PPC_TLS),
1905 MAP ("dtpmod", BFD_RELOC_PPC_DTPMOD),
1906 MAP ("dtprel", BFD_RELOC_PPC_DTPREL),
1907 MAP ("dtprel@l", BFD_RELOC_PPC_DTPREL16_LO),
1908 MAP ("dtprel@h", BFD_RELOC_PPC_DTPREL16_HI),
1909 MAP ("dtprel@ha", BFD_RELOC_PPC_DTPREL16_HA),
1910 MAP ("tprel", BFD_RELOC_PPC_TPREL),
1911 MAP ("tprel@l", BFD_RELOC_PPC_TPREL16_LO),
1912 MAP ("tprel@h", BFD_RELOC_PPC_TPREL16_HI),
1913 MAP ("tprel@ha", BFD_RELOC_PPC_TPREL16_HA),
1914 MAP ("got@tlsgd", BFD_RELOC_PPC_GOT_TLSGD16),
1915 MAP ("got@tlsgd@l", BFD_RELOC_PPC_GOT_TLSGD16_LO),
1916 MAP ("got@tlsgd@h", BFD_RELOC_PPC_GOT_TLSGD16_HI),
1917 MAP ("got@tlsgd@ha", BFD_RELOC_PPC_GOT_TLSGD16_HA),
1918 MAP ("got@tlsld", BFD_RELOC_PPC_GOT_TLSLD16),
1919 MAP ("got@tlsld@l", BFD_RELOC_PPC_GOT_TLSLD16_LO),
1920 MAP ("got@tlsld@h", BFD_RELOC_PPC_GOT_TLSLD16_HI),
1921 MAP ("got@tlsld@ha", BFD_RELOC_PPC_GOT_TLSLD16_HA),
1922 MAP ("got@dtprel", BFD_RELOC_PPC_GOT_DTPREL16),
1923 MAP ("got@dtprel@l", BFD_RELOC_PPC_GOT_DTPREL16_LO),
1924 MAP ("got@dtprel@h", BFD_RELOC_PPC_GOT_DTPREL16_HI),
1925 MAP ("got@dtprel@ha", BFD_RELOC_PPC_GOT_DTPREL16_HA),
1926 MAP ("got@tprel", BFD_RELOC_PPC_GOT_TPREL16),
1927 MAP ("got@tprel@l", BFD_RELOC_PPC_GOT_TPREL16_LO),
1928 MAP ("got@tprel@h", BFD_RELOC_PPC_GOT_TPREL16_HI),
1929 MAP ("got@tprel@ha", BFD_RELOC_PPC_GOT_TPREL16_HA),
1930 MAP32 ("fixup", BFD_RELOC_CTOR),
1931 MAP32 ("plt", BFD_RELOC_24_PLT_PCREL),
1932 MAP32 ("pltrel24", BFD_RELOC_24_PLT_PCREL),
1933 MAP32 ("local24pc", BFD_RELOC_PPC_LOCAL24PC),
1934 MAP32 ("local", BFD_RELOC_PPC_LOCAL24PC),
1935 MAP32 ("pltrel", BFD_RELOC_32_PLT_PCREL),
1936 MAP32 ("sdarel", BFD_RELOC_GPREL16),
b9c361e0
JL
1937 MAP32 ("sdarel@l", BFD_RELOC_PPC_VLE_SDAREL_LO16A),
1938 MAP32 ("sdarel@h", BFD_RELOC_PPC_VLE_SDAREL_HI16A),
1939 MAP32 ("sdarel@ha", BFD_RELOC_PPC_VLE_SDAREL_HA16A),
b7d7dc63
AM
1940 MAP32 ("naddr", BFD_RELOC_PPC_EMB_NADDR32),
1941 MAP32 ("naddr16", BFD_RELOC_PPC_EMB_NADDR16),
1942 MAP32 ("naddr@l", BFD_RELOC_PPC_EMB_NADDR16_LO),
1943 MAP32 ("naddr@h", BFD_RELOC_PPC_EMB_NADDR16_HI),
1944 MAP32 ("naddr@ha", BFD_RELOC_PPC_EMB_NADDR16_HA),
1945 MAP32 ("sdai16", BFD_RELOC_PPC_EMB_SDAI16),
1946 MAP32 ("sda2rel", BFD_RELOC_PPC_EMB_SDA2REL),
1947 MAP32 ("sda2i16", BFD_RELOC_PPC_EMB_SDA2I16),
1948 MAP32 ("sda21", BFD_RELOC_PPC_EMB_SDA21),
b9c361e0 1949 MAP32 ("sda21@l", BFD_RELOC_PPC_VLE_SDA21_LO),
b7d7dc63
AM
1950 MAP32 ("mrkref", BFD_RELOC_PPC_EMB_MRKREF),
1951 MAP32 ("relsect", BFD_RELOC_PPC_EMB_RELSEC16),
1952 MAP32 ("relsect@l", BFD_RELOC_PPC_EMB_RELST_LO),
1953 MAP32 ("relsect@h", BFD_RELOC_PPC_EMB_RELST_HI),
1954 MAP32 ("relsect@ha", BFD_RELOC_PPC_EMB_RELST_HA),
1955 MAP32 ("bitfld", BFD_RELOC_PPC_EMB_BIT_FLD),
1956 MAP32 ("relsda", BFD_RELOC_PPC_EMB_RELSDA),
1957 MAP32 ("xgot", BFD_RELOC_PPC_TOC16),
f9c6b907
AM
1958 MAP64 ("high", BFD_RELOC_PPC64_ADDR16_HIGH),
1959 MAP64 ("higha", BFD_RELOC_PPC64_ADDR16_HIGHA),
b7d7dc63
AM
1960 MAP64 ("higher", BFD_RELOC_PPC64_HIGHER),
1961 MAP64 ("highera", BFD_RELOC_PPC64_HIGHER_S),
1962 MAP64 ("highest", BFD_RELOC_PPC64_HIGHEST),
1963 MAP64 ("highesta", BFD_RELOC_PPC64_HIGHEST_S),
1964 MAP64 ("tocbase", BFD_RELOC_PPC64_TOC),
1965 MAP64 ("toc", BFD_RELOC_PPC_TOC16),
1966 MAP64 ("toc@l", BFD_RELOC_PPC64_TOC16_LO),
1967 MAP64 ("toc@h", BFD_RELOC_PPC64_TOC16_HI),
1968 MAP64 ("toc@ha", BFD_RELOC_PPC64_TOC16_HA),
f9c6b907
AM
1969 MAP64 ("dtprel@high", BFD_RELOC_PPC64_DTPREL16_HIGH),
1970 MAP64 ("dtprel@higha", BFD_RELOC_PPC64_DTPREL16_HIGHA),
b7d7dc63
AM
1971 MAP64 ("dtprel@higher", BFD_RELOC_PPC64_DTPREL16_HIGHER),
1972 MAP64 ("dtprel@highera", BFD_RELOC_PPC64_DTPREL16_HIGHERA),
1973 MAP64 ("dtprel@highest", BFD_RELOC_PPC64_DTPREL16_HIGHEST),
1974 MAP64 ("dtprel@highesta", BFD_RELOC_PPC64_DTPREL16_HIGHESTA),
45965137 1975 MAP64 ("localentry", BFD_RELOC_PPC64_ADDR64_LOCAL),
f9c6b907
AM
1976 MAP64 ("tprel@high", BFD_RELOC_PPC64_TPREL16_HIGH),
1977 MAP64 ("tprel@higha", BFD_RELOC_PPC64_TPREL16_HIGHA),
b7d7dc63
AM
1978 MAP64 ("tprel@higher", BFD_RELOC_PPC64_TPREL16_HIGHER),
1979 MAP64 ("tprel@highera", BFD_RELOC_PPC64_TPREL16_HIGHERA),
1980 MAP64 ("tprel@highest", BFD_RELOC_PPC64_TPREL16_HIGHEST),
1981 MAP64 ("tprel@highesta", BFD_RELOC_PPC64_TPREL16_HIGHESTA),
62ebcb5c 1982 { (char *) 0, 0, 0, 0, BFD_RELOC_NONE }
252b5132
RH
1983 };
1984
1985 if (*str++ != '@')
62ebcb5c 1986 return BFD_RELOC_NONE;
252b5132
RH
1987
1988 for (ch = *str, str2 = ident;
1989 (str2 < ident + sizeof (ident) - 1
3882b010 1990 && (ISALNUM (ch) || ch == '@'));
252b5132
RH
1991 ch = *++str)
1992 {
3882b010 1993 *str2++ = TOLOWER (ch);
252b5132
RH
1994 }
1995
1996 *str2 = '\0';
1997 len = str2 - ident;
1998
1999 ch = ident[0];
2000 for (ptr = &mapping[0]; ptr->length > 0; ptr++)
2001 if (ch == ptr->string[0]
2002 && len == ptr->length
b7d7dc63
AM
2003 && memcmp (ident, ptr->string, ptr->length) == 0
2004 && (ppc_obj64 ? ptr->valid64 : ptr->valid32))
252b5132 2005 {
15c1449b
AM
2006 int reloc = ptr->reloc;
2007
727fc41e
AM
2008 if (!ppc_obj64 && exp_p->X_add_number != 0)
2009 {
2010 switch (reloc)
2011 {
2012 case BFD_RELOC_16_GOTOFF:
2013 case BFD_RELOC_LO16_GOTOFF:
2014 case BFD_RELOC_HI16_GOTOFF:
2015 case BFD_RELOC_HI16_S_GOTOFF:
2016 as_warn (_("identifier+constant@got means "
2017 "identifier@got+constant"));
2018 break;
2019
2020 case BFD_RELOC_PPC_GOT_TLSGD16:
2021 case BFD_RELOC_PPC_GOT_TLSGD16_LO:
2022 case BFD_RELOC_PPC_GOT_TLSGD16_HI:
2023 case BFD_RELOC_PPC_GOT_TLSGD16_HA:
2024 case BFD_RELOC_PPC_GOT_TLSLD16:
2025 case BFD_RELOC_PPC_GOT_TLSLD16_LO:
2026 case BFD_RELOC_PPC_GOT_TLSLD16_HI:
2027 case BFD_RELOC_PPC_GOT_TLSLD16_HA:
2028 case BFD_RELOC_PPC_GOT_DTPREL16:
2029 case BFD_RELOC_PPC_GOT_DTPREL16_LO:
2030 case BFD_RELOC_PPC_GOT_DTPREL16_HI:
2031 case BFD_RELOC_PPC_GOT_DTPREL16_HA:
2032 case BFD_RELOC_PPC_GOT_TPREL16:
2033 case BFD_RELOC_PPC_GOT_TPREL16_LO:
2034 case BFD_RELOC_PPC_GOT_TPREL16_HI:
2035 case BFD_RELOC_PPC_GOT_TPREL16_HA:
2036 as_bad (_("symbol+offset not supported for got tls"));
2037 break;
2038 }
2039 }
5f6db75a
AM
2040
2041 /* Now check for identifier@suffix+constant. */
2042 if (*str == '-' || *str == '+')
252b5132 2043 {
5f6db75a
AM
2044 char *orig_line = input_line_pointer;
2045 expressionS new_exp;
2046
2047 input_line_pointer = str;
2048 expression (&new_exp);
2049 if (new_exp.X_op == O_constant)
252b5132 2050 {
5f6db75a
AM
2051 exp_p->X_add_number += new_exp.X_add_number;
2052 str = input_line_pointer;
252b5132 2053 }
5f6db75a
AM
2054
2055 if (&input_line_pointer != str_p)
2056 input_line_pointer = orig_line;
252b5132 2057 }
252b5132 2058 *str_p = str;
0baf16f2 2059
2b3c4602 2060 if (reloc == (int) BFD_RELOC_PPC64_TOC
9f2b53d7
AM
2061 && exp_p->X_op == O_symbol
2062 && strcmp (S_GET_NAME (exp_p->X_add_symbol), ".TOC.") == 0)
0baf16f2 2063 {
9f2b53d7
AM
2064 /* Change the symbol so that the dummy .TOC. symbol can be
2065 omitted from the object file. */
0baf16f2
AM
2066 exp_p->X_add_symbol = &abs_symbol;
2067 }
2068
15c1449b 2069 return (bfd_reloc_code_real_type) reloc;
252b5132
RH
2070 }
2071
62ebcb5c 2072 return BFD_RELOC_NONE;
252b5132
RH
2073}
2074
62ebcb5c 2075/* Support @got, etc. on constants emitted via .short, .int etc. */
99a814a1 2076
62ebcb5c
AM
2077bfd_reloc_code_real_type
2078ppc_elf_parse_cons (expressionS *exp, unsigned int nbytes)
2079{
2080 expression (exp);
2081 if (nbytes >= 2 && *input_line_pointer == '@')
2082 return ppc_elf_suffix (&input_line_pointer, exp);
2083 return BFD_RELOC_NONE;
252b5132
RH
2084}
2085
bf7279d5
AM
2086/* Warn when emitting data to code sections, unless we are emitting
2087 a relocation that ld --ppc476-workaround uses to recognise data
2088 *and* there was an unconditional branch prior to the data. */
2089
2090void
2091ppc_elf_cons_fix_check (expressionS *exp ATTRIBUTE_UNUSED,
2092 unsigned int nbytes, fixS *fix)
2093{
2094 if (warn_476
2095 && (now_seg->flags & SEC_CODE) != 0
2096 && (nbytes != 4
2097 || fix == NULL
2098 || !(fix->fx_r_type == BFD_RELOC_32
2099 || fix->fx_r_type == BFD_RELOC_CTOR
2100 || fix->fx_r_type == BFD_RELOC_32_PCREL)
2101 || !(last_seg == now_seg && last_subseg == now_subseg)
2102 || !((last_insn & (0x3f << 26)) == (18u << 26)
2103 || ((last_insn & (0x3f << 26)) == (16u << 26)
2104 && (last_insn & (0x14 << 21)) == (0x14 << 21))
2105 || ((last_insn & (0x3f << 26)) == (19u << 26)
2106 && (last_insn & (0x3ff << 1)) == (16u << 1)
2107 && (last_insn & (0x14 << 21)) == (0x14 << 21)))))
2108 {
2109 /* Flag that we've warned. */
2110 if (fix != NULL)
2111 fix->fx_tcbit = 1;
2112
2113 as_warn (_("data in executable section"));
2114 }
2115}
2116
252b5132
RH
2117/* Solaris pseduo op to change to the .rodata section. */
2118static void
98027b10 2119ppc_elf_rdata (int xxx)
252b5132
RH
2120{
2121 char *save_line = input_line_pointer;
2122 static char section[] = ".rodata\n";
2123
99a814a1 2124 /* Just pretend this is .section .rodata */
252b5132
RH
2125 input_line_pointer = section;
2126 obj_elf_section (xxx);
2127
2128 input_line_pointer = save_line;
2129}
2130
99a814a1 2131/* Pseudo op to make file scope bss items. */
252b5132 2132static void
98027b10 2133ppc_elf_lcomm (int xxx ATTRIBUTE_UNUSED)
252b5132 2134{
98027b10
AM
2135 char *name;
2136 char c;
2137 char *p;
252b5132 2138 offsetT size;
98027b10 2139 symbolS *symbolP;
252b5132
RH
2140 offsetT align;
2141 segT old_sec;
2142 int old_subsec;
2143 char *pfrag;
2144 int align2;
2145
d02603dc 2146 c = get_symbol_name (&name);
252b5132 2147
d02603dc 2148 /* Just after name is now '\0'. */
252b5132
RH
2149 p = input_line_pointer;
2150 *p = c;
d02603dc 2151 SKIP_WHITESPACE_AFTER_NAME ();
252b5132
RH
2152 if (*input_line_pointer != ',')
2153 {
d6ed37ed 2154 as_bad (_("expected comma after symbol-name: rest of line ignored."));
252b5132
RH
2155 ignore_rest_of_line ();
2156 return;
2157 }
2158
2159 input_line_pointer++; /* skip ',' */
2160 if ((size = get_absolute_expression ()) < 0)
2161 {
2162 as_warn (_(".COMMon length (%ld.) <0! Ignored."), (long) size);
2163 ignore_rest_of_line ();
2164 return;
2165 }
2166
2167 /* The third argument to .lcomm is the alignment. */
2168 if (*input_line_pointer != ',')
2169 align = 8;
2170 else
2171 {
2172 ++input_line_pointer;
2173 align = get_absolute_expression ();
2174 if (align <= 0)
2175 {
2176 as_warn (_("ignoring bad alignment"));
2177 align = 8;
2178 }
2179 }
2180
2181 *p = 0;
2182 symbolP = symbol_find_or_make (name);
2183 *p = c;
2184
2185 if (S_IS_DEFINED (symbolP) && ! S_IS_COMMON (symbolP))
2186 {
d6ed37ed 2187 as_bad (_("ignoring attempt to re-define symbol `%s'."),
252b5132
RH
2188 S_GET_NAME (symbolP));
2189 ignore_rest_of_line ();
2190 return;
2191 }
2192
2193 if (S_GET_VALUE (symbolP) && S_GET_VALUE (symbolP) != (valueT) size)
2194 {
d6ed37ed 2195 as_bad (_("length of .lcomm \"%s\" is already %ld. Not changed to %ld."),
252b5132
RH
2196 S_GET_NAME (symbolP),
2197 (long) S_GET_VALUE (symbolP),
2198 (long) size);
2199
2200 ignore_rest_of_line ();
2201 return;
2202 }
2203
99a814a1 2204 /* Allocate_bss. */
252b5132
RH
2205 old_sec = now_seg;
2206 old_subsec = now_subseg;
2207 if (align)
2208 {
99a814a1 2209 /* Convert to a power of 2 alignment. */
252b5132
RH
2210 for (align2 = 0; (align & 1) == 0; align >>= 1, ++align2);
2211 if (align != 1)
2212 {
d6ed37ed 2213 as_bad (_("common alignment not a power of 2"));
252b5132
RH
2214 ignore_rest_of_line ();
2215 return;
2216 }
2217 }
2218 else
2219 align2 = 0;
2220
2221 record_alignment (bss_section, align2);
cbe02d4f 2222 subseg_set (bss_section, 1);
252b5132
RH
2223 if (align2)
2224 frag_align (align2, 0, 0);
2225 if (S_GET_SEGMENT (symbolP) == bss_section)
49309057
ILT
2226 symbol_get_frag (symbolP)->fr_symbol = 0;
2227 symbol_set_frag (symbolP, frag_now);
252b5132
RH
2228 pfrag = frag_var (rs_org, 1, 1, (relax_substateT) 0, symbolP, size,
2229 (char *) 0);
2230 *pfrag = 0;
2231 S_SET_SIZE (symbolP, size);
2232 S_SET_SEGMENT (symbolP, bss_section);
2233 subseg_set (old_sec, old_subsec);
2234 demand_empty_rest_of_line ();
2235}
2236
6911b7dc
AM
2237/* Pseudo op to set symbol local entry point. */
2238static void
2239ppc_elf_localentry (int ignore ATTRIBUTE_UNUSED)
2240{
d02603dc
NC
2241 char *name;
2242 char c = get_symbol_name (&name);
6911b7dc
AM
2243 char *p;
2244 expressionS exp;
2245 symbolS *sym;
2246 asymbol *bfdsym;
2247 elf_symbol_type *elfsym;
2248
2249 p = input_line_pointer;
2250 *p = c;
d02603dc 2251 SKIP_WHITESPACE_AFTER_NAME ();
6911b7dc
AM
2252 if (*input_line_pointer != ',')
2253 {
2254 *p = 0;
2255 as_bad (_("expected comma after name `%s' in .localentry directive"),
2256 name);
2257 *p = c;
2258 ignore_rest_of_line ();
2259 return;
2260 }
2261 input_line_pointer++;
2262 expression (&exp);
2263 if (exp.X_op == O_absent)
2264 {
2265 as_bad (_("missing expression in .localentry directive"));
2266 exp.X_op = O_constant;
2267 exp.X_add_number = 0;
2268 }
2269 *p = 0;
2270 sym = symbol_find_or_make (name);
2271 *p = c;
2272
2273 if (resolve_expression (&exp)
2274 && exp.X_op == O_constant)
2275 {
2276 unsigned char encoded = PPC64_SET_LOCAL_ENTRY_OFFSET (exp.X_add_number);
2277
e2b5892e 2278 if (exp.X_add_number != (offsetT) PPC64_LOCAL_ENTRY_OFFSET (encoded))
6911b7dc
AM
2279 as_bad (_(".localentry expression for `%s' "
2280 "is not a valid power of 2"), S_GET_NAME (sym));
2281 else
2282 {
2283 bfdsym = symbol_get_bfdsym (sym);
2284 elfsym = elf_symbol_from (bfd_asymbol_bfd (bfdsym), bfdsym);
2285 gas_assert (elfsym);
2286 elfsym->internal_elf_sym.st_other &= ~STO_PPC64_LOCAL_MASK;
2287 elfsym->internal_elf_sym.st_other |= encoded;
2288 if (ppc_abiversion == 0)
2289 ppc_abiversion = 2;
2290 }
2291 }
2292 else
2293 as_bad (_(".localentry expression for `%s' "
2294 "does not evaluate to a constant"), S_GET_NAME (sym));
2295
2296 demand_empty_rest_of_line ();
2297}
2298
ee67d69a
AM
2299/* Pseudo op to set ABI version. */
2300static void
2301ppc_elf_abiversion (int ignore ATTRIBUTE_UNUSED)
2302{
2303 expressionS exp;
2304
2305 expression (&exp);
2306 if (exp.X_op == O_absent)
2307 {
2308 as_bad (_("missing expression in .abiversion directive"));
2309 exp.X_op = O_constant;
2310 exp.X_add_number = 0;
2311 }
2312
2313 if (resolve_expression (&exp)
2314 && exp.X_op == O_constant)
2315 ppc_abiversion = exp.X_add_number;
2316 else
2317 as_bad (_(".abiversion expression does not evaluate to a constant"));
2318 demand_empty_rest_of_line ();
2319}
2320
2321/* Set ABI version in output file. */
2322void
2323ppc_elf_end (void)
2324{
2325 if (ppc_obj64 && ppc_abiversion != 0)
2326 {
2327 elf_elfheader (stdoutput)->e_flags &= ~EF_PPC64_ABI;
2328 elf_elfheader (stdoutput)->e_flags |= ppc_abiversion & EF_PPC64_ABI;
2329 }
2330}
2331
252b5132
RH
2332/* Validate any relocations emitted for -mrelocatable, possibly adding
2333 fixups for word relocations in writable segments, so we can adjust
2334 them at runtime. */
2335static void
98027b10 2336ppc_elf_validate_fix (fixS *fixp, segT seg)
252b5132
RH
2337{
2338 if (fixp->fx_done || fixp->fx_pcrel)
2339 return;
2340
2341 switch (shlib)
2342 {
2343 case SHLIB_NONE:
2344 case SHLIB_PIC:
2345 return;
2346
5d6f4f16 2347 case SHLIB_MRELOCATABLE:
62ebcb5c 2348 if (fixp->fx_r_type != BFD_RELOC_16_GOTOFF
252b5132
RH
2349 && fixp->fx_r_type != BFD_RELOC_HI16_GOTOFF
2350 && fixp->fx_r_type != BFD_RELOC_LO16_GOTOFF
2351 && fixp->fx_r_type != BFD_RELOC_HI16_S_GOTOFF
1cfc59d5 2352 && fixp->fx_r_type != BFD_RELOC_16_BASEREL
252b5132
RH
2353 && fixp->fx_r_type != BFD_RELOC_LO16_BASEREL
2354 && fixp->fx_r_type != BFD_RELOC_HI16_BASEREL
2355 && fixp->fx_r_type != BFD_RELOC_HI16_S_BASEREL
e138127a 2356 && (seg->flags & SEC_LOAD) != 0
252b5132
RH
2357 && strcmp (segment_name (seg), ".got2") != 0
2358 && strcmp (segment_name (seg), ".dtors") != 0
2359 && strcmp (segment_name (seg), ".ctors") != 0
2360 && strcmp (segment_name (seg), ".fixup") != 0
252b5132
RH
2361 && strcmp (segment_name (seg), ".gcc_except_table") != 0
2362 && strcmp (segment_name (seg), ".eh_frame") != 0
2363 && strcmp (segment_name (seg), ".ex_shared") != 0)
2364 {
2365 if ((seg->flags & (SEC_READONLY | SEC_CODE)) != 0
2366 || fixp->fx_r_type != BFD_RELOC_CTOR)
2367 {
2368 as_bad_where (fixp->fx_file, fixp->fx_line,
d6ed37ed 2369 _("relocation cannot be done when using -mrelocatable"));
252b5132
RH
2370 }
2371 }
2372 return;
2373 }
2374}
0baf16f2 2375
7e8d4ab4
AM
2376/* Prevent elf_frob_file_before_adjust removing a weak undefined
2377 function descriptor sym if the corresponding code sym is used. */
2378
2379void
98027b10 2380ppc_frob_file_before_adjust (void)
0baf16f2 2381{
7e8d4ab4 2382 symbolS *symp;
9232bbb0 2383 asection *toc;
0baf16f2 2384
7e8d4ab4
AM
2385 if (!ppc_obj64)
2386 return;
2387
2388 for (symp = symbol_rootP; symp; symp = symbol_next (symp))
0baf16f2 2389 {
7e8d4ab4
AM
2390 const char *name;
2391 char *dotname;
2392 symbolS *dotsym;
7e8d4ab4
AM
2393
2394 name = S_GET_NAME (symp);
2395 if (name[0] == '.')
2396 continue;
2397
2398 if (! S_IS_WEAK (symp)
2399 || S_IS_DEFINED (symp))
2400 continue;
2401
a44e2901 2402 dotname = concat (".", name, (char *) NULL);
461b725f 2403 dotsym = symbol_find_noref (dotname, 1);
7e8d4ab4
AM
2404 free (dotname);
2405 if (dotsym != NULL && (symbol_used_p (dotsym)
2406 || symbol_used_in_reloc_p (dotsym)))
670ec21d
NC
2407 symbol_mark_used (symp);
2408
0baf16f2
AM
2409 }
2410
9232bbb0
AM
2411 toc = bfd_get_section_by_name (stdoutput, ".toc");
2412 if (toc != NULL
01efc3af 2413 && toc_reloc_types != has_large_toc_reloc
9232bbb0
AM
2414 && bfd_section_size (stdoutput, toc) > 0x10000)
2415 as_warn (_("TOC section size exceeds 64k"));
a38a07e0
AM
2416}
2417
2418/* .TOC. used in an opd entry as .TOC.@tocbase doesn't need to be
2419 emitted. Other uses of .TOC. will cause the symbol to be marked
2420 with BSF_KEEP in md_apply_fix. */
9232bbb0 2421
a38a07e0
AM
2422void
2423ppc_elf_adjust_symtab (void)
2424{
2425 if (ppc_obj64)
2426 {
2427 symbolS *symp;
2428 symp = symbol_find (".TOC.");
2429 if (symp != NULL)
2430 {
2431 asymbol *bsym = symbol_get_bfdsym (symp);
2432 if ((bsym->flags & BSF_KEEP) == 0)
2433 symbol_remove (symp, &symbol_rootP, &symbol_lastP);
a38a07e0
AM
2434 }
2435 }
0baf16f2 2436}
252b5132
RH
2437#endif /* OBJ_ELF */
2438\f
2439#ifdef TE_PE
2440
2441/*
99a814a1 2442 * Summary of parse_toc_entry.
252b5132
RH
2443 *
2444 * in: Input_line_pointer points to the '[' in one of:
2445 *
2446 * [toc] [tocv] [toc32] [toc64]
2447 *
2448 * Anything else is an error of one kind or another.
2449 *
81d4177b 2450 * out:
252b5132
RH
2451 * return value: success or failure
2452 * toc_kind: kind of toc reference
2453 * input_line_pointer:
2454 * success: first char after the ']'
2455 * failure: unchanged
2456 *
2457 * settings:
2458 *
2459 * [toc] - rv == success, toc_kind = default_toc
2460 * [tocv] - rv == success, toc_kind = data_in_toc
2461 * [toc32] - rv == success, toc_kind = must_be_32
2462 * [toc64] - rv == success, toc_kind = must_be_64
2463 *
2464 */
2465
81d4177b
KH
2466enum toc_size_qualifier
2467{
252b5132
RH
2468 default_toc, /* The toc cell constructed should be the system default size */
2469 data_in_toc, /* This is a direct reference to a toc cell */
2470 must_be_32, /* The toc cell constructed must be 32 bits wide */
2471 must_be_64 /* The toc cell constructed must be 64 bits wide */
2472};
2473
2474static int
98027b10 2475parse_toc_entry (enum toc_size_qualifier *toc_kind)
252b5132
RH
2476{
2477 char *start;
2478 char *toc_spec;
2479 char c;
2480 enum toc_size_qualifier t;
2481
99a814a1 2482 /* Save the input_line_pointer. */
252b5132
RH
2483 start = input_line_pointer;
2484
99a814a1 2485 /* Skip over the '[' , and whitespace. */
252b5132
RH
2486 ++input_line_pointer;
2487 SKIP_WHITESPACE ();
81d4177b 2488
99a814a1 2489 /* Find the spelling of the operand. */
d02603dc 2490 c = get_symbol_name (&toc_spec);
252b5132 2491
99a814a1 2492 if (strcmp (toc_spec, "toc") == 0)
252b5132
RH
2493 {
2494 t = default_toc;
2495 }
99a814a1 2496 else if (strcmp (toc_spec, "tocv") == 0)
252b5132
RH
2497 {
2498 t = data_in_toc;
2499 }
99a814a1 2500 else if (strcmp (toc_spec, "toc32") == 0)
252b5132
RH
2501 {
2502 t = must_be_32;
2503 }
99a814a1 2504 else if (strcmp (toc_spec, "toc64") == 0)
252b5132
RH
2505 {
2506 t = must_be_64;
2507 }
2508 else
2509 {
2510 as_bad (_("syntax error: invalid toc specifier `%s'"), toc_spec);
99a814a1
AM
2511 *input_line_pointer = c;
2512 input_line_pointer = start;
252b5132
RH
2513 return 0;
2514 }
2515
99a814a1
AM
2516 /* Now find the ']'. */
2517 *input_line_pointer = c;
252b5132 2518
d02603dc 2519 SKIP_WHITESPACE_AFTER_NAME (); /* leading whitespace could be there. */
81d4177b 2520 c = *input_line_pointer++; /* input_line_pointer->past char in c. */
252b5132
RH
2521
2522 if (c != ']')
2523 {
2524 as_bad (_("syntax error: expected `]', found `%c'"), c);
99a814a1 2525 input_line_pointer = start;
252b5132
RH
2526 return 0;
2527 }
2528
99a814a1 2529 *toc_kind = t;
252b5132
RH
2530 return 1;
2531}
2532#endif
3b8b57a9 2533
3e60bf4d 2534#if defined (OBJ_XCOFF) || defined (OBJ_ELF)
3b8b57a9
AM
2535/* See whether a symbol is in the TOC section. */
2536
2537static int
2538ppc_is_toc_sym (symbolS *sym)
2539{
3e60bf4d 2540#ifdef OBJ_XCOFF
9f6e76f4
TG
2541 return (symbol_get_tc (sym)->symbol_class == XMC_TC
2542 || symbol_get_tc (sym)->symbol_class == XMC_TC0);
f50c47f1 2543#endif
3e60bf4d
AM
2544#ifdef OBJ_ELF
2545 const char *sname = segment_name (S_GET_SEGMENT (sym));
2546 if (ppc_obj64)
2547 return strcmp (sname, ".toc") == 0;
2548 else
2549 return strcmp (sname, ".got") == 0;
2550#endif
2551}
2552#endif /* defined (OBJ_XCOFF) || defined (OBJ_ELF) */
252b5132
RH
2553\f
2554
dc1d03fc 2555#ifdef OBJ_ELF
6a0c61b7
EZ
2556#define APUID(a,v) ((((a) & 0xffff) << 16) | ((v) & 0xffff))
2557static void
98027b10 2558ppc_apuinfo_section_add (unsigned int apu, unsigned int version)
6a0c61b7
EZ
2559{
2560 unsigned int i;
2561
2562 /* Check we don't already exist. */
2563 for (i = 0; i < ppc_apuinfo_num; i++)
dc1d03fc 2564 if (ppc_apuinfo_list[i] == APUID (apu, version))
6a0c61b7 2565 return;
b34976b6 2566
6a0c61b7
EZ
2567 if (ppc_apuinfo_num == ppc_apuinfo_num_alloc)
2568 {
2569 if (ppc_apuinfo_num_alloc == 0)
2570 {
2571 ppc_apuinfo_num_alloc = 4;
325801bd 2572 ppc_apuinfo_list = XNEWVEC (unsigned long, ppc_apuinfo_num_alloc);
6a0c61b7
EZ
2573 }
2574 else
2575 {
2576 ppc_apuinfo_num_alloc += 4;
325801bd
TS
2577 ppc_apuinfo_list = XRESIZEVEC (unsigned long, ppc_apuinfo_list,
2578 ppc_apuinfo_num_alloc);
6a0c61b7
EZ
2579 }
2580 }
dc1d03fc 2581 ppc_apuinfo_list[ppc_apuinfo_num++] = APUID (apu, version);
6a0c61b7
EZ
2582}
2583#undef APUID
dc1d03fc 2584#endif
6a0c61b7
EZ
2585\f
2586
252b5132
RH
2587/* We need to keep a list of fixups. We can't simply generate them as
2588 we go, because that would require us to first create the frag, and
2589 that would screw up references to ``.''. */
2590
2591struct ppc_fixup
2592{
2593 expressionS exp;
2594 int opindex;
2595 bfd_reloc_code_real_type reloc;
2596};
2597
2598#define MAX_INSN_FIXUPS (5)
2599
b9c361e0
JL
2600/* Form I16L. */
2601#define E_OR2I_INSN 0x7000C000
2602#define E_AND2I_DOT_INSN 0x7000C800
2603#define E_OR2IS_INSN 0x7000D000
2604#define E_LIS_INSN 0x7000E000
2605#define E_AND2IS_DOT_INSN 0x7000E800
2606
2607/* Form I16A. */
2608#define E_ADD2I_DOT_INSN 0x70008800
2609#define E_ADD2IS_INSN 0x70009000
2610#define E_CMP16I_INSN 0x70009800
2611#define E_MULL2I_INSN 0x7000A000
2612#define E_CMPL16I_INSN 0x7000A800
2613#define E_CMPH16I_INSN 0x7000B000
2614#define E_CMPHL16I_INSN 0x7000B800
2615
252b5132
RH
2616/* This routine is called for each instruction to be assembled. */
2617
2618void
98027b10 2619md_assemble (char *str)
252b5132
RH
2620{
2621 char *s;
2622 const struct powerpc_opcode *opcode;
2623 unsigned long insn;
2624 const unsigned char *opindex_ptr;
2625 int skip_optional;
2626 int need_paren;
2627 int next_opindex;
2628 struct ppc_fixup fixups[MAX_INSN_FIXUPS];
2629 int fc;
2630 char *f;
09b935ac 2631 int addr_mod;
252b5132 2632 int i;
b9c361e0 2633 unsigned int insn_length;
252b5132
RH
2634
2635 /* Get the opcode. */
3882b010 2636 for (s = str; *s != '\0' && ! ISSPACE (*s); s++)
252b5132
RH
2637 ;
2638 if (*s != '\0')
2639 *s++ = '\0';
2640
2641 /* Look up the opcode in the hash table. */
2642 opcode = (const struct powerpc_opcode *) hash_find (ppc_hash, str);
2643 if (opcode == (const struct powerpc_opcode *) NULL)
2644 {
2645 const struct powerpc_macro *macro;
2646
2647 macro = (const struct powerpc_macro *) hash_find (ppc_macro_hash, str);
2648 if (macro == (const struct powerpc_macro *) NULL)
d6ed37ed 2649 as_bad (_("unrecognized opcode: `%s'"), str);
252b5132
RH
2650 else
2651 ppc_macro (s, macro);
2652
2653 return;
2654 }
2655
2656 insn = opcode->opcode;
2657
2658 str = s;
3882b010 2659 while (ISSPACE (*str))
252b5132
RH
2660 ++str;
2661
2662 /* PowerPC operands are just expressions. The only real issue is
2663 that a few operand types are optional. All cases which might use
1f6c9eb0
ZW
2664 an optional operand separate the operands only with commas (in some
2665 cases parentheses are used, as in ``lwz 1,0(1)'' but such cases never
2666 have optional operands). Most instructions with optional operands
2667 have only one. Those that have more than one optional operand can
2668 take either all their operands or none. So, before we start seriously
2669 parsing the operands, we check to see if we have optional operands,
2670 and if we do, we count the number of commas to see which operands
2671 have been omitted. */
252b5132
RH
2672 skip_optional = 0;
2673 for (opindex_ptr = opcode->operands; *opindex_ptr != 0; opindex_ptr++)
2674 {
2675 const struct powerpc_operand *operand;
2676
2677 operand = &powerpc_operands[*opindex_ptr];
2678 if ((operand->flags & PPC_OPERAND_OPTIONAL) != 0)
2679 {
2680 unsigned int opcount;
7fe9cf6b 2681 unsigned int num_operands_expected;
252b5132
RH
2682
2683 /* There is an optional operand. Count the number of
2684 commas in the input line. */
2685 if (*str == '\0')
2686 opcount = 0;
2687 else
2688 {
2689 opcount = 1;
2690 s = str;
2691 while ((s = strchr (s, ',')) != (char *) NULL)
2692 {
2693 ++opcount;
2694 ++s;
2695 }
2696 }
2697
7fe9cf6b
NC
2698 /* Compute the number of expected operands.
2699 Do not count fake operands. */
2700 for (num_operands_expected = 0, i = 0; opcode->operands[i]; i ++)
2701 if ((powerpc_operands [opcode->operands[i]].flags & PPC_OPERAND_FAKE) == 0)
2702 ++ num_operands_expected;
2703
252b5132
RH
2704 /* If there are fewer operands in the line then are called
2705 for by the instruction, we want to skip the optional
1f6c9eb0 2706 operands. */
7fe9cf6b 2707 if (opcount < num_operands_expected)
252b5132
RH
2708 skip_optional = 1;
2709
2710 break;
2711 }
2712 }
2713
2714 /* Gather the operands. */
2715 need_paren = 0;
2716 next_opindex = 0;
2717 fc = 0;
2718 for (opindex_ptr = opcode->operands; *opindex_ptr != 0; opindex_ptr++)
2719 {
2720 const struct powerpc_operand *operand;
2721 const char *errmsg;
2722 char *hold;
2723 expressionS ex;
2724 char endc;
2725
2726 if (next_opindex == 0)
2727 operand = &powerpc_operands[*opindex_ptr];
2728 else
2729 {
2730 operand = &powerpc_operands[next_opindex];
2731 next_opindex = 0;
2732 }
252b5132
RH
2733 errmsg = NULL;
2734
2735 /* If this is a fake operand, then we do not expect anything
2736 from the input. */
2737 if ((operand->flags & PPC_OPERAND_FAKE) != 0)
2738 {
2b3c4602 2739 insn = (*operand->insert) (insn, 0L, ppc_cpu, &errmsg);
252b5132 2740 if (errmsg != (const char *) NULL)
ee2c9aa9 2741 as_bad ("%s", errmsg);
252b5132
RH
2742 continue;
2743 }
2744
2745 /* If this is an optional operand, and we are skipping it, just
2746 insert a zero. */
2747 if ((operand->flags & PPC_OPERAND_OPTIONAL) != 0
2748 && skip_optional)
2749 {
11a0cf2e 2750 long val = ppc_optional_operand_value (operand);
252b5132
RH
2751 if (operand->insert)
2752 {
11a0cf2e 2753 insn = (*operand->insert) (insn, val, ppc_cpu, &errmsg);
252b5132 2754 if (errmsg != (const char *) NULL)
ee2c9aa9 2755 as_bad ("%s", errmsg);
252b5132 2756 }
11a0cf2e
PB
2757 else if (operand->shift >= 0)
2758 insn |= ((long) val & operand->bitm) << operand->shift;
2759 else
2760 insn |= ((long) val & operand->bitm) >> -operand->shift;
2761
252b5132
RH
2762 if ((operand->flags & PPC_OPERAND_NEXT) != 0)
2763 next_opindex = *opindex_ptr + 1;
2764 continue;
2765 }
2766
2767 /* Gather the operand. */
2768 hold = input_line_pointer;
2769 input_line_pointer = str;
2770
2771#ifdef TE_PE
81d4177b 2772 if (*input_line_pointer == '[')
252b5132
RH
2773 {
2774 /* We are expecting something like the second argument here:
99a814a1
AM
2775 *
2776 * lwz r4,[toc].GS.0.static_int(rtoc)
2777 * ^^^^^^^^^^^^^^^^^^^^^^^^^^^
2778 * The argument following the `]' must be a symbol name, and the
2779 * register must be the toc register: 'rtoc' or '2'
2780 *
2781 * The effect is to 0 as the displacement field
2782 * in the instruction, and issue an IMAGE_REL_PPC_TOCREL16 (or
2783 * the appropriate variation) reloc against it based on the symbol.
2784 * The linker will build the toc, and insert the resolved toc offset.
2785 *
2786 * Note:
2787 * o The size of the toc entry is currently assumed to be
2788 * 32 bits. This should not be assumed to be a hard coded
2789 * number.
2790 * o In an effort to cope with a change from 32 to 64 bits,
2791 * there are also toc entries that are specified to be
2792 * either 32 or 64 bits:
2793 * lwz r4,[toc32].GS.0.static_int(rtoc)
2794 * lwz r4,[toc64].GS.0.static_int(rtoc)
2795 * These demand toc entries of the specified size, and the
2796 * instruction probably requires it.
2797 */
252b5132
RH
2798
2799 int valid_toc;
2800 enum toc_size_qualifier toc_kind;
2801 bfd_reloc_code_real_type toc_reloc;
2802
99a814a1
AM
2803 /* Go parse off the [tocXX] part. */
2804 valid_toc = parse_toc_entry (&toc_kind);
252b5132 2805
81d4177b 2806 if (!valid_toc)
252b5132 2807 {
a5840dce
AM
2808 ignore_rest_of_line ();
2809 break;
252b5132
RH
2810 }
2811
99a814a1
AM
2812 /* Now get the symbol following the ']'. */
2813 expression (&ex);
252b5132
RH
2814
2815 switch (toc_kind)
2816 {
2817 case default_toc:
99a814a1
AM
2818 /* In this case, we may not have seen the symbol yet,
2819 since it is allowed to appear on a .extern or .globl
2820 or just be a label in the .data section. */
252b5132
RH
2821 toc_reloc = BFD_RELOC_PPC_TOC16;
2822 break;
2823 case data_in_toc:
99a814a1
AM
2824 /* 1. The symbol must be defined and either in the toc
2825 section, or a global.
2826 2. The reloc generated must have the TOCDEFN flag set
2827 in upper bit mess of the reloc type.
2828 FIXME: It's a little confusing what the tocv
2829 qualifier can be used for. At the very least, I've
2830 seen three uses, only one of which I'm sure I can
2831 explain. */
81d4177b
KH
2832 if (ex.X_op == O_symbol)
2833 {
9c2799c2 2834 gas_assert (ex.X_add_symbol != NULL);
fed9b18a
ILT
2835 if (symbol_get_bfdsym (ex.X_add_symbol)->section
2836 != tocdata_section)
252b5132 2837 {
99a814a1 2838 as_bad (_("[tocv] symbol is not a toc symbol"));
252b5132
RH
2839 }
2840 }
2841
2842 toc_reloc = BFD_RELOC_PPC_TOC16;
2843 break;
2844 case must_be_32:
99a814a1
AM
2845 /* FIXME: these next two specifically specify 32/64 bit
2846 toc entries. We don't support them today. Is this
2847 the right way to say that? */
62ebcb5c 2848 toc_reloc = BFD_RELOC_NONE;
d6ed37ed 2849 as_bad (_("unimplemented toc32 expression modifier"));
252b5132
RH
2850 break;
2851 case must_be_64:
99a814a1 2852 /* FIXME: see above. */
62ebcb5c 2853 toc_reloc = BFD_RELOC_NONE;
d6ed37ed 2854 as_bad (_("unimplemented toc64 expression modifier"));
252b5132
RH
2855 break;
2856 default:
bc805888 2857 fprintf (stderr,
99a814a1
AM
2858 _("Unexpected return value [%d] from parse_toc_entry!\n"),
2859 toc_kind);
bc805888 2860 abort ();
252b5132
RH
2861 break;
2862 }
2863
2864 /* We need to generate a fixup for this expression. */
2865 if (fc >= MAX_INSN_FIXUPS)
2866 as_fatal (_("too many fixups"));
2867
2868 fixups[fc].reloc = toc_reloc;
2869 fixups[fc].exp = ex;
2870 fixups[fc].opindex = *opindex_ptr;
2871 ++fc;
2872
99a814a1
AM
2873 /* Ok. We've set up the fixup for the instruction. Now make it
2874 look like the constant 0 was found here. */
252b5132
RH
2875 ex.X_unsigned = 1;
2876 ex.X_op = O_constant;
2877 ex.X_add_number = 0;
2878 ex.X_add_symbol = NULL;
2879 ex.X_op_symbol = NULL;
2880 }
2881
2882 else
2883#endif /* TE_PE */
2884 {
b9c361e0
JL
2885 if ((reg_names_p
2886 && (((operand->flags & PPC_OPERAND_CR_BIT) != 0)
2887 || ((operand->flags & PPC_OPERAND_CR_REG) != 0)))
2ad068be 2888 || !register_name (&ex))
252b5132 2889 {
13abbae3
AM
2890 char save_lex = lex_type['%'];
2891
b9c361e0
JL
2892 if (((operand->flags & PPC_OPERAND_CR_REG) != 0)
2893 || (operand->flags & PPC_OPERAND_CR_BIT) != 0)
13abbae3
AM
2894 {
2895 cr_operand = TRUE;
2896 lex_type['%'] |= LEX_BEGIN_NAME;
2897 }
252b5132 2898 expression (&ex);
b34976b6 2899 cr_operand = FALSE;
13abbae3 2900 lex_type['%'] = save_lex;
252b5132
RH
2901 }
2902 }
2903
2904 str = input_line_pointer;
2905 input_line_pointer = hold;
2906
2907 if (ex.X_op == O_illegal)
2908 as_bad (_("illegal operand"));
2909 else if (ex.X_op == O_absent)
2910 as_bad (_("missing operand"));
2911 else if (ex.X_op == O_register)
2912 {
2913 insn = ppc_insert_operand (insn, operand, ex.X_add_number,
783de163 2914 ppc_cpu, (char *) NULL, 0);
252b5132
RH
2915 }
2916 else if (ex.X_op == O_constant)
2917 {
2918#ifdef OBJ_ELF
81d4177b 2919 /* Allow @HA, @L, @H on constants. */
3b8b57a9 2920 bfd_reloc_code_real_type reloc;
252b5132
RH
2921 char *orig_str = str;
2922
62ebcb5c 2923 if ((reloc = ppc_elf_suffix (&str, &ex)) != BFD_RELOC_NONE)
252b5132
RH
2924 switch (reloc)
2925 {
2926 default:
2927 str = orig_str;
2928 break;
2929
2930 case BFD_RELOC_LO16:
f9c6b907
AM
2931 ex.X_add_number &= 0xffff;
2932 if ((operand->flags & PPC_OPERAND_SIGNED) != 0)
0baf16f2 2933 ex.X_add_number = SEX16 (ex.X_add_number);
252b5132
RH
2934 break;
2935
2936 case BFD_RELOC_HI16:
f9c6b907
AM
2937 if (REPORT_OVERFLOW_HI && ppc_obj64)
2938 {
2939 /* PowerPC64 @h is tested for overflow. */
2940 ex.X_add_number = (addressT) ex.X_add_number >> 16;
2941 if ((operand->flags & PPC_OPERAND_SIGNED) != 0)
2942 {
2943 addressT sign = (((addressT) -1 >> 16) + 1) >> 1;
2944 ex.X_add_number
2945 = ((addressT) ex.X_add_number ^ sign) - sign;
2946 }
2947 break;
2948 }
2949 /* Fall thru */
2950
2951 case BFD_RELOC_PPC64_ADDR16_HIGH:
2952 ex.X_add_number = PPC_HI (ex.X_add_number);
2953 if ((operand->flags & PPC_OPERAND_SIGNED) != 0)
2954 ex.X_add_number = SEX16 (ex.X_add_number);
252b5132
RH
2955 break;
2956
2957 case BFD_RELOC_HI16_S:
f9c6b907
AM
2958 if (REPORT_OVERFLOW_HI && ppc_obj64)
2959 {
2960 /* PowerPC64 @ha is tested for overflow. */
2961 ex.X_add_number
2962 = ((addressT) ex.X_add_number + 0x8000) >> 16;
2963 if ((operand->flags & PPC_OPERAND_SIGNED) != 0)
2964 {
2965 addressT sign = (((addressT) -1 >> 16) + 1) >> 1;
2966 ex.X_add_number
2967 = ((addressT) ex.X_add_number ^ sign) - sign;
2968 }
2969 break;
2970 }
2971 /* Fall thru */
2972
2973 case BFD_RELOC_PPC64_ADDR16_HIGHA:
2974 ex.X_add_number = PPC_HA (ex.X_add_number);
2975 if ((operand->flags & PPC_OPERAND_SIGNED) != 0)
2976 ex.X_add_number = SEX16 (ex.X_add_number);
0baf16f2
AM
2977 break;
2978
0baf16f2 2979 case BFD_RELOC_PPC64_HIGHER:
f9c6b907
AM
2980 ex.X_add_number = PPC_HIGHER (ex.X_add_number);
2981 if ((operand->flags & PPC_OPERAND_SIGNED) != 0)
2982 ex.X_add_number = SEX16 (ex.X_add_number);
0baf16f2
AM
2983 break;
2984
2985 case BFD_RELOC_PPC64_HIGHER_S:
f9c6b907
AM
2986 ex.X_add_number = PPC_HIGHERA (ex.X_add_number);
2987 if ((operand->flags & PPC_OPERAND_SIGNED) != 0)
2988 ex.X_add_number = SEX16 (ex.X_add_number);
252b5132 2989 break;
0baf16f2
AM
2990
2991 case BFD_RELOC_PPC64_HIGHEST:
f9c6b907
AM
2992 ex.X_add_number = PPC_HIGHEST (ex.X_add_number);
2993 if ((operand->flags & PPC_OPERAND_SIGNED) != 0)
2994 ex.X_add_number = SEX16 (ex.X_add_number);
0baf16f2
AM
2995 break;
2996
2997 case BFD_RELOC_PPC64_HIGHEST_S:
f9c6b907
AM
2998 ex.X_add_number = PPC_HIGHESTA (ex.X_add_number);
2999 if ((operand->flags & PPC_OPERAND_SIGNED) != 0)
3000 ex.X_add_number = SEX16 (ex.X_add_number);
0baf16f2 3001 break;
252b5132 3002 }
0baf16f2 3003#endif /* OBJ_ELF */
252b5132 3004 insn = ppc_insert_operand (insn, operand, ex.X_add_number,
783de163 3005 ppc_cpu, (char *) NULL, 0);
252b5132 3006 }
727fc41e 3007 else
252b5132 3008 {
62ebcb5c 3009 bfd_reloc_code_real_type reloc = BFD_RELOC_NONE;
3b8b57a9 3010#ifdef OBJ_ELF
727fc41e 3011 if (ex.X_op == O_symbol && str[0] == '(')
cdba85ec 3012 {
727fc41e
AM
3013 const char *sym_name = S_GET_NAME (ex.X_add_symbol);
3014 if (sym_name[0] == '.')
3015 ++sym_name;
cdba85ec 3016
727fc41e 3017 if (strcasecmp (sym_name, "__tls_get_addr") == 0)
252b5132 3018 {
727fc41e
AM
3019 expressionS tls_exp;
3020
3021 hold = input_line_pointer;
3022 input_line_pointer = str + 1;
3023 expression (&tls_exp);
3024 if (tls_exp.X_op == O_symbol)
3025 {
62ebcb5c 3026 reloc = BFD_RELOC_NONE;
727fc41e
AM
3027 if (strncasecmp (input_line_pointer, "@tlsgd)", 7) == 0)
3028 {
3029 reloc = BFD_RELOC_PPC_TLSGD;
3030 input_line_pointer += 7;
3031 }
3032 else if (strncasecmp (input_line_pointer, "@tlsld)", 7) == 0)
3033 {
3034 reloc = BFD_RELOC_PPC_TLSLD;
3035 input_line_pointer += 7;
3036 }
62ebcb5c 3037 if (reloc != BFD_RELOC_NONE)
727fc41e
AM
3038 {
3039 SKIP_WHITESPACE ();
3040 str = input_line_pointer;
3041
3042 if (fc >= MAX_INSN_FIXUPS)
3043 as_fatal (_("too many fixups"));
3044 fixups[fc].exp = tls_exp;
3045 fixups[fc].opindex = *opindex_ptr;
3046 fixups[fc].reloc = reloc;
3047 ++fc;
3048 }
3049 }
3050 input_line_pointer = hold;
252b5132
RH
3051 }
3052 }
3053
62ebcb5c 3054 if ((reloc = ppc_elf_suffix (&str, &ex)) != BFD_RELOC_NONE)
0baf16f2 3055 {
727fc41e 3056 /* Some TLS tweaks. */
0baf16f2
AM
3057 switch (reloc)
3058 {
727fc41e 3059 default:
cdba85ec 3060 break;
727fc41e
AM
3061
3062 case BFD_RELOC_PPC_TLS:
2d0f3896
AM
3063 if (!_bfd_elf_ppc_at_tls_transform (opcode->opcode, 0))
3064 as_bad (_("@tls may not be used with \"%s\" operands"),
3065 opcode->name);
3066 else if (operand->shift != 11)
3067 as_bad (_("@tls may only be used in last operand"));
3068 else
3069 insn = ppc_insert_operand (insn, operand,
3070 ppc_obj64 ? 13 : 2,
3071 ppc_cpu, (char *) NULL, 0);
cdba85ec 3072 break;
727fc41e
AM
3073
3074 /* We'll only use the 32 (or 64) bit form of these relocations
3075 in constants. Instructions get the 16 bit form. */
3076 case BFD_RELOC_PPC_DTPREL:
3077 reloc = BFD_RELOC_PPC_DTPREL16;
cdba85ec 3078 break;
727fc41e
AM
3079 case BFD_RELOC_PPC_TPREL:
3080 reloc = BFD_RELOC_PPC_TPREL16;
0baf16f2
AM
3081 break;
3082 }
727fc41e 3083
a680de9a
PB
3084 /* addpcis. */
3085 if (opcode->opcode == (19 << 26) + (2 << 1)
3086 && reloc == BFD_RELOC_HI16_S)
3087 reloc = BFD_RELOC_PPC_REL16DX_HA;
3088
b9c361e0
JL
3089 /* If VLE-mode convert LO/HI/HA relocations. */
3090 if (opcode->flags & PPC_OPCODE_VLE)
3091 {
3092 int tmp_insn = insn & opcode->mask;
3739860c 3093
b9c361e0
JL
3094 int use_d_reloc = (tmp_insn == E_OR2I_INSN
3095 || tmp_insn == E_AND2I_DOT_INSN
3096 || tmp_insn == E_OR2IS_INSN
3097 || tmp_insn == E_LIS_INSN
3098 || tmp_insn == E_AND2IS_DOT_INSN);
3099
3100
3101 int use_a_reloc = (tmp_insn == E_ADD2I_DOT_INSN
3102 || tmp_insn == E_ADD2IS_INSN
3103 || tmp_insn == E_CMP16I_INSN
3104 || tmp_insn == E_MULL2I_INSN
3105 || tmp_insn == E_CMPL16I_INSN
3106 || tmp_insn == E_CMPH16I_INSN
3107 || tmp_insn == E_CMPHL16I_INSN);
3108
3109 switch (reloc)
3110 {
3111 default:
3112 break;
3113
3114 case BFD_RELOC_PPC_EMB_SDA21:
3115 reloc = BFD_RELOC_PPC_VLE_SDA21;
3116 break;
3117
3118 case BFD_RELOC_LO16:
3119 if (use_d_reloc)
3120 reloc = BFD_RELOC_PPC_VLE_LO16D;
3121 else if (use_a_reloc)
3122 reloc = BFD_RELOC_PPC_VLE_LO16A;
3123 break;
3124
3125 case BFD_RELOC_HI16:
3126 if (use_d_reloc)
3127 reloc = BFD_RELOC_PPC_VLE_HI16D;
3128 else if (use_a_reloc)
3129 reloc = BFD_RELOC_PPC_VLE_HI16A;
3130 break;
3739860c 3131
b9c361e0
JL
3132 case BFD_RELOC_HI16_S:
3133 if (use_d_reloc)
3134 reloc = BFD_RELOC_PPC_VLE_HA16D;
3135 else if (use_a_reloc)
3136 reloc = BFD_RELOC_PPC_VLE_HA16A;
3137 break;
3138
3139 case BFD_RELOC_PPC_VLE_SDAREL_LO16A:
3140 if (use_d_reloc)
3141 reloc = BFD_RELOC_PPC_VLE_SDAREL_LO16D;
3142 break;
3143
3144 case BFD_RELOC_PPC_VLE_SDAREL_HI16A:
3145 if (use_d_reloc)
3146 reloc = BFD_RELOC_PPC_VLE_SDAREL_HI16D;
3147 break;
3148
3149 case BFD_RELOC_PPC_VLE_SDAREL_HA16A:
3150 if (use_d_reloc)
3151 reloc = BFD_RELOC_PPC_VLE_SDAREL_HA16D;
3152 break;
3153 }
3154 }
0baf16f2 3155 }
3b8b57a9
AM
3156#endif /* OBJ_ELF */
3157
62ebcb5c 3158 if (reloc != BFD_RELOC_NONE)
3b8b57a9
AM
3159 ;
3160 /* Determine a BFD reloc value based on the operand information.
3161 We are only prepared to turn a few of the operands into
3162 relocs. */
a0593ad9
AM
3163 else if ((operand->flags & (PPC_OPERAND_RELATIVE
3164 | PPC_OPERAND_ABSOLUTE)) != 0
3b8b57a9
AM
3165 && operand->bitm == 0x3fffffc
3166 && operand->shift == 0)
3167 reloc = BFD_RELOC_PPC_B26;
a0593ad9
AM
3168 else if ((operand->flags & (PPC_OPERAND_RELATIVE
3169 | PPC_OPERAND_ABSOLUTE)) != 0
3b8b57a9
AM
3170 && operand->bitm == 0xfffc
3171 && operand->shift == 0)
3172 reloc = BFD_RELOC_PPC_B16;
3173 else if ((operand->flags & PPC_OPERAND_RELATIVE) != 0
3174 && operand->bitm == 0x1fe
3175 && operand->shift == -1)
3176 reloc = BFD_RELOC_PPC_VLE_REL8;
3177 else if ((operand->flags & PPC_OPERAND_RELATIVE) != 0
3178 && operand->bitm == 0xfffe
3179 && operand->shift == 0)
3180 reloc = BFD_RELOC_PPC_VLE_REL15;
3181 else if ((operand->flags & PPC_OPERAND_RELATIVE) != 0
3182 && operand->bitm == 0x1fffffe
3183 && operand->shift == 0)
3184 reloc = BFD_RELOC_PPC_VLE_REL24;
a0593ad9 3185 else if ((operand->flags & PPC_OPERAND_NEGATIVE) == 0
3b8b57a9
AM
3186 && (operand->bitm & 0xfff0) == 0xfff0
3187 && operand->shift == 0)
3188 {
f50c47f1 3189 reloc = BFD_RELOC_16;
3e60bf4d 3190#if defined OBJ_XCOFF || defined OBJ_ELF
f50c47f1 3191 /* Note: the symbol may be not yet defined. */
a0593ad9
AM
3192 if ((operand->flags & PPC_OPERAND_PARENS) != 0
3193 && ppc_is_toc_sym (ex.X_add_symbol))
3e60bf4d
AM
3194 {
3195 reloc = BFD_RELOC_PPC_TOC16;
3196#ifdef OBJ_ELF
3197 as_warn (_("assuming %s on symbol"),
3198 ppc_obj64 ? "@toc" : "@xgot");
3199#endif
3200 }
3b8b57a9 3201#endif
3b8b57a9 3202 }
a0593ad9
AM
3203
3204 /* For the absolute forms of branches, convert the PC
3205 relative form back into the absolute. */
3206 if ((operand->flags & PPC_OPERAND_ABSOLUTE) != 0)
3207 {
3208 switch (reloc)
3209 {
3210 case BFD_RELOC_PPC_B26:
3211 reloc = BFD_RELOC_PPC_BA26;
3212 break;
3213 case BFD_RELOC_PPC_B16:
3214 reloc = BFD_RELOC_PPC_BA16;
3215 break;
3216#ifdef OBJ_ELF
3217 case BFD_RELOC_PPC_B16_BRTAKEN:
3218 reloc = BFD_RELOC_PPC_BA16_BRTAKEN;
3219 break;
3220 case BFD_RELOC_PPC_B16_BRNTAKEN:
3221 reloc = BFD_RELOC_PPC_BA16_BRNTAKEN;
3222 break;
3223#endif
3224 default:
3225 break;
3226 }
3227 }
3228
3229#ifdef OBJ_ELF
3230 switch (reloc)
3231 {
3232 case BFD_RELOC_PPC_TOC16:
3233 toc_reloc_types |= has_small_toc_reloc;
3234 break;
3235 case BFD_RELOC_PPC64_TOC16_LO:
3236 case BFD_RELOC_PPC64_TOC16_HI:
3237 case BFD_RELOC_PPC64_TOC16_HA:
3238 toc_reloc_types |= has_large_toc_reloc;
3239 break;
3240 default:
3241 break;
3242 }
3243
3244 if (ppc_obj64
3245 && (operand->flags & (PPC_OPERAND_DS | PPC_OPERAND_DQ)) != 0)
3246 {
3247 switch (reloc)
3248 {
3249 case BFD_RELOC_16:
3250 reloc = BFD_RELOC_PPC64_ADDR16_DS;
3251 break;
3252 case BFD_RELOC_LO16:
3253 reloc = BFD_RELOC_PPC64_ADDR16_LO_DS;
3254 break;
3255 case BFD_RELOC_16_GOTOFF:
3256 reloc = BFD_RELOC_PPC64_GOT16_DS;
3257 break;
3258 case BFD_RELOC_LO16_GOTOFF:
3259 reloc = BFD_RELOC_PPC64_GOT16_LO_DS;
3260 break;
3261 case BFD_RELOC_LO16_PLTOFF:
3262 reloc = BFD_RELOC_PPC64_PLT16_LO_DS;
3263 break;
3264 case BFD_RELOC_16_BASEREL:
3265 reloc = BFD_RELOC_PPC64_SECTOFF_DS;
3266 break;
3267 case BFD_RELOC_LO16_BASEREL:
3268 reloc = BFD_RELOC_PPC64_SECTOFF_LO_DS;
3269 break;
3270 case BFD_RELOC_PPC_TOC16:
3271 reloc = BFD_RELOC_PPC64_TOC16_DS;
3272 break;
3273 case BFD_RELOC_PPC64_TOC16_LO:
3274 reloc = BFD_RELOC_PPC64_TOC16_LO_DS;
3275 break;
3276 case BFD_RELOC_PPC64_PLTGOT16:
3277 reloc = BFD_RELOC_PPC64_PLTGOT16_DS;
3278 break;
3279 case BFD_RELOC_PPC64_PLTGOT16_LO:
3280 reloc = BFD_RELOC_PPC64_PLTGOT16_LO_DS;
3281 break;
3282 case BFD_RELOC_PPC_DTPREL16:
3283 reloc = BFD_RELOC_PPC64_DTPREL16_DS;
3284 break;
3285 case BFD_RELOC_PPC_DTPREL16_LO:
3286 reloc = BFD_RELOC_PPC64_DTPREL16_LO_DS;
3287 break;
3288 case BFD_RELOC_PPC_TPREL16:
3289 reloc = BFD_RELOC_PPC64_TPREL16_DS;
3290 break;
3291 case BFD_RELOC_PPC_TPREL16_LO:
3292 reloc = BFD_RELOC_PPC64_TPREL16_LO_DS;
3293 break;
3294 case BFD_RELOC_PPC_GOT_DTPREL16:
3295 case BFD_RELOC_PPC_GOT_DTPREL16_LO:
3296 case BFD_RELOC_PPC_GOT_TPREL16:
3297 case BFD_RELOC_PPC_GOT_TPREL16_LO:
3298 break;
3299 default:
3300 as_bad (_("unsupported relocation for DS offset field"));
3301 break;
3302 }
3303 }
3304#endif
0baf16f2 3305
252b5132
RH
3306 /* We need to generate a fixup for this expression. */
3307 if (fc >= MAX_INSN_FIXUPS)
3308 as_fatal (_("too many fixups"));
3309 fixups[fc].exp = ex;
727fc41e 3310 fixups[fc].opindex = *opindex_ptr;
252b5132
RH
3311 fixups[fc].reloc = reloc;
3312 ++fc;
3313 }
252b5132
RH
3314
3315 if (need_paren)
3316 {
3317 endc = ')';
3318 need_paren = 0;
c3d65c1c
BE
3319 /* If expecting more operands, then we want to see "),". */
3320 if (*str == endc && opindex_ptr[1] != 0)
3321 {
3322 do
3323 ++str;
3324 while (ISSPACE (*str));
3325 endc = ',';
3326 }
252b5132
RH
3327 }
3328 else if ((operand->flags & PPC_OPERAND_PARENS) != 0)
3329 {
3330 endc = '(';
3331 need_paren = 1;
3332 }
3333 else
3334 endc = ',';
3335
3336 /* The call to expression should have advanced str past any
3337 whitespace. */
3338 if (*str != endc
3339 && (endc != ',' || *str != '\0'))
3340 {
5a938047
AM
3341 if (*str == '\0')
3342 as_bad (_("syntax error; end of line, expected `%c'"), endc);
3343 else
3344 as_bad (_("syntax error; found `%c', expected `%c'"), *str, endc);
252b5132
RH
3345 break;
3346 }
3347
3348 if (*str != '\0')
3349 ++str;
3350 }
3351
3882b010 3352 while (ISSPACE (*str))
252b5132
RH
3353 ++str;
3354
3355 if (*str != '\0')
3356 as_bad (_("junk at end of line: `%s'"), str);
3357
dc1d03fc 3358#ifdef OBJ_ELF
b9c361e0 3359 /* Do we need/want an APUinfo section? */
4faf939a
JM
3360 if ((ppc_cpu & (PPC_OPCODE_E500 | PPC_OPCODE_E500MC | PPC_OPCODE_VLE)) != 0
3361 && !ppc_obj64)
6a0c61b7
EZ
3362 {
3363 /* These are all version "1". */
3364 if (opcode->flags & PPC_OPCODE_SPE)
b34976b6 3365 ppc_apuinfo_section_add (PPC_APUINFO_SPE, 1);
6a0c61b7 3366 if (opcode->flags & PPC_OPCODE_ISEL)
b34976b6 3367 ppc_apuinfo_section_add (PPC_APUINFO_ISEL, 1);
6a0c61b7 3368 if (opcode->flags & PPC_OPCODE_EFS)
b34976b6 3369 ppc_apuinfo_section_add (PPC_APUINFO_EFS, 1);
6a0c61b7 3370 if (opcode->flags & PPC_OPCODE_BRLOCK)
b34976b6 3371 ppc_apuinfo_section_add (PPC_APUINFO_BRLOCK, 1);
6a0c61b7 3372 if (opcode->flags & PPC_OPCODE_PMR)
b34976b6 3373 ppc_apuinfo_section_add (PPC_APUINFO_PMR, 1);
6a0c61b7 3374 if (opcode->flags & PPC_OPCODE_CACHELCK)
b34976b6 3375 ppc_apuinfo_section_add (PPC_APUINFO_CACHELCK, 1);
6a0c61b7 3376 if (opcode->flags & PPC_OPCODE_RFMCI)
b34976b6 3377 ppc_apuinfo_section_add (PPC_APUINFO_RFMCI, 1);
fbd94057
MR
3378 /* Only set the VLE flag if the instruction has been pulled via
3379 the VLE instruction set. This way the flag is guaranteed to
3380 be set for VLE-only instructions or for VLE-only processors,
3381 however it'll remain clear for dual-mode instructions on
3382 dual-mode and, more importantly, standard-mode processors. */
3383 if ((ppc_cpu & opcode->flags) == PPC_OPCODE_VLE)
b9c361e0 3384 ppc_apuinfo_section_add (PPC_APUINFO_VLE, 1);
6a0c61b7 3385 }
dc1d03fc 3386#endif
6a0c61b7 3387
252b5132 3388 /* Write out the instruction. */
b9c361e0
JL
3389 /* Differentiate between two and four byte insns. */
3390 if (ppc_mach () == bfd_mach_ppc_vle)
3391 {
3392 if (PPC_OP_SE_VLE (insn))
3393 insn_length = 2;
3394 else
3395 insn_length = 4;
3396 addr_mod = frag_now_fix () & 1;
3397 }
3398 else
3399 {
3400 insn_length = 4;
3401 addr_mod = frag_now_fix () & 3;
3402 }
3403 /* All instructions can start on a 2 byte boundary for VLE. */
3404 f = frag_more (insn_length);
09b935ac 3405 if (frag_now->has_code && frag_now->insn_addr != addr_mod)
b9c361e0
JL
3406 {
3407 if (ppc_mach() == bfd_mach_ppc_vle)
3408 as_bad (_("instruction address is not a multiple of 2"));
3409 else
3410 as_bad (_("instruction address is not a multiple of 4"));
3411 }
09b935ac
AM
3412 frag_now->insn_addr = addr_mod;
3413 frag_now->has_code = 1;
b9c361e0 3414 md_number_to_chars (f, insn, insn_length);
bf7279d5
AM
3415 last_insn = insn;
3416 last_seg = now_seg;
3417 last_subseg = now_subseg;
252b5132 3418
5d6f4f16 3419#ifdef OBJ_ELF
b9c361e0 3420 dwarf2_emit_insn (insn_length);
5d6f4f16
GK
3421#endif
3422
3b8b57a9 3423 /* Create any fixups. */
252b5132
RH
3424 for (i = 0; i < fc; i++)
3425 {
3b8b57a9 3426 fixS *fixP;
62ebcb5c 3427 if (fixups[i].reloc != BFD_RELOC_NONE)
252b5132 3428 {
99a814a1 3429 reloc_howto_type *reloc_howto;
252b5132
RH
3430 int size;
3431 int offset;
252b5132 3432
99a814a1 3433 reloc_howto = bfd_reloc_type_lookup (stdoutput, fixups[i].reloc);
252b5132
RH
3434 if (!reloc_howto)
3435 abort ();
3436
3437 size = bfd_get_reloc_size (reloc_howto);
3b8b57a9 3438 offset = target_big_endian ? (insn_length - size) : 0;
252b5132 3439
99a814a1
AM
3440 fixP = fix_new_exp (frag_now,
3441 f - frag_now->fr_literal + offset,
3442 size,
3443 &fixups[i].exp,
3444 reloc_howto->pc_relative,
252b5132 3445 fixups[i].reloc);
252b5132
RH
3446 }
3447 else
727fc41e
AM
3448 {
3449 const struct powerpc_operand *operand;
3450
3451 operand = &powerpc_operands[fixups[i].opindex];
3b8b57a9
AM
3452 fixP = fix_new_exp (frag_now,
3453 f - frag_now->fr_literal,
3454 insn_length,
3455 &fixups[i].exp,
3456 (operand->flags & PPC_OPERAND_RELATIVE) != 0,
62ebcb5c 3457 BFD_RELOC_NONE);
727fc41e 3458 }
3b8b57a9 3459 fixP->fx_pcrel_adjust = fixups[i].opindex;
252b5132
RH
3460 }
3461}
3462
3463/* Handle a macro. Gather all the operands, transform them as
3464 described by the macro, and call md_assemble recursively. All the
3465 operands are separated by commas; we don't accept parentheses
3466 around operands here. */
3467
3468static void
98027b10 3469ppc_macro (char *str, const struct powerpc_macro *macro)
252b5132
RH
3470{
3471 char *operands[10];
3472 unsigned int count;
3473 char *s;
3474 unsigned int len;
3475 const char *format;
db557034 3476 unsigned int arg;
252b5132
RH
3477 char *send;
3478 char *complete;
3479
3480 /* Gather the users operands into the operands array. */
3481 count = 0;
3482 s = str;
3483 while (1)
3484 {
3485 if (count >= sizeof operands / sizeof operands[0])
3486 break;
3487 operands[count++] = s;
3488 s = strchr (s, ',');
3489 if (s == (char *) NULL)
3490 break;
3491 *s++ = '\0';
81d4177b 3492 }
252b5132
RH
3493
3494 if (count != macro->operands)
3495 {
3496 as_bad (_("wrong number of operands"));
3497 return;
3498 }
3499
3500 /* Work out how large the string must be (the size is unbounded
3501 because it includes user input). */
3502 len = 0;
3503 format = macro->format;
3504 while (*format != '\0')
3505 {
3506 if (*format != '%')
3507 {
3508 ++len;
3509 ++format;
3510 }
3511 else
3512 {
3513 arg = strtol (format + 1, &send, 10);
db557034 3514 know (send != format && arg < count);
252b5132
RH
3515 len += strlen (operands[arg]);
3516 format = send;
3517 }
3518 }
3519
3520 /* Put the string together. */
325801bd 3521 complete = s = XNEWVEC (char, len + 1);
252b5132
RH
3522 format = macro->format;
3523 while (*format != '\0')
3524 {
3525 if (*format != '%')
3526 *s++ = *format++;
3527 else
3528 {
3529 arg = strtol (format + 1, &send, 10);
3530 strcpy (s, operands[arg]);
3531 s += strlen (s);
3532 format = send;
3533 }
3534 }
3535 *s = '\0';
3536
3537 /* Assemble the constructed instruction. */
3538 md_assemble (complete);
e1fa0163 3539 free (complete);
81d4177b 3540}
252b5132
RH
3541\f
3542#ifdef OBJ_ELF
18ae9cc1 3543/* For ELF, add support for SHT_ORDERED. */
252b5132
RH
3544
3545int
98027b10 3546ppc_section_type (char *str, size_t len)
252b5132 3547{
9de8d8f1
RH
3548 if (len == 7 && strncmp (str, "ordered", 7) == 0)
3549 return SHT_ORDERED;
252b5132 3550
9de8d8f1 3551 return -1;
252b5132
RH
3552}
3553
3554int
1239de13 3555ppc_section_flags (flagword flags, bfd_vma attr ATTRIBUTE_UNUSED, int type)
252b5132
RH
3556{
3557 if (type == SHT_ORDERED)
3558 flags |= SEC_ALLOC | SEC_LOAD | SEC_SORT_ENTRIES;
3559
252b5132
RH
3560 return flags;
3561}
3562#endif /* OBJ_ELF */
3563
3564\f
3565/* Pseudo-op handling. */
3566
3567/* The .byte pseudo-op. This is similar to the normal .byte
3568 pseudo-op, but it can also take a single ASCII string. */
3569
3570static void
98027b10 3571ppc_byte (int ignore ATTRIBUTE_UNUSED)
252b5132 3572{
bf7279d5
AM
3573 int count = 0;
3574
252b5132
RH
3575 if (*input_line_pointer != '\"')
3576 {
3577 cons (1);
3578 return;
3579 }
3580
3581 /* Gather characters. A real double quote is doubled. Unusual
3582 characters are not permitted. */
3583 ++input_line_pointer;
3584 while (1)
3585 {
3586 char c;
3587
3588 c = *input_line_pointer++;
3589
3590 if (c == '\"')
3591 {
3592 if (*input_line_pointer != '\"')
3593 break;
3594 ++input_line_pointer;
3595 }
3596
3597 FRAG_APPEND_1_CHAR (c);
bf7279d5 3598 ++count;
252b5132
RH
3599 }
3600
bf7279d5
AM
3601 if (warn_476 && count != 0 && (now_seg->flags & SEC_CODE) != 0)
3602 as_warn (_("data in executable section"));
252b5132
RH
3603 demand_empty_rest_of_line ();
3604}
3605\f
3606#ifdef OBJ_XCOFF
3607
3608/* XCOFF specific pseudo-op handling. */
3609
3610/* This is set if we are creating a .stabx symbol, since we don't want
3611 to handle symbol suffixes for such symbols. */
b34976b6 3612static bfd_boolean ppc_stab_symbol;
252b5132
RH
3613
3614/* The .comm and .lcomm pseudo-ops for XCOFF. XCOFF puts common
3615 symbols in the .bss segment as though they were local common
67c1ffbe 3616 symbols, and uses a different smclas. The native Aix 4.3.3 assembler
1ad63b2f 3617 aligns .comm and .lcomm to 4 bytes. */
252b5132
RH
3618
3619static void
98027b10 3620ppc_comm (int lcomm)
252b5132
RH
3621{
3622 asection *current_seg = now_seg;
3623 subsegT current_subseg = now_subseg;
3624 char *name;
3625 char endc;
3626 char *end_name;
3627 offsetT size;
3628 offsetT align;
3629 symbolS *lcomm_sym = NULL;
3630 symbolS *sym;
3631 char *pfrag;
3632
d02603dc 3633 endc = get_symbol_name (&name);
252b5132 3634 end_name = input_line_pointer;
d02603dc 3635 (void) restore_line_pointer (endc);
252b5132
RH
3636
3637 if (*input_line_pointer != ',')
3638 {
3639 as_bad (_("missing size"));
3640 ignore_rest_of_line ();
3641 return;
3642 }
3643 ++input_line_pointer;
3644
3645 size = get_absolute_expression ();
3646 if (size < 0)
3647 {
3648 as_bad (_("negative size"));
3649 ignore_rest_of_line ();
3650 return;
3651 }
3652
3653 if (! lcomm)
3654 {
3655 /* The third argument to .comm is the alignment. */
3656 if (*input_line_pointer != ',')
1ad63b2f 3657 align = 2;
252b5132
RH
3658 else
3659 {
3660 ++input_line_pointer;
3661 align = get_absolute_expression ();
3662 if (align <= 0)
3663 {
3664 as_warn (_("ignoring bad alignment"));
1ad63b2f 3665 align = 2;
252b5132
RH
3666 }
3667 }
3668 }
3669 else
3670 {
3671 char *lcomm_name;
3672 char lcomm_endc;
3673
252b5132
RH
3674 /* The third argument to .lcomm appears to be the real local
3675 common symbol to create. References to the symbol named in
3676 the first argument are turned into references to the third
3677 argument. */
3678 if (*input_line_pointer != ',')
3679 {
3680 as_bad (_("missing real symbol name"));
3681 ignore_rest_of_line ();
3682 return;
3683 }
3684 ++input_line_pointer;
3685
d02603dc 3686 lcomm_endc = get_symbol_name (&lcomm_name);
81d4177b 3687
252b5132
RH
3688 lcomm_sym = symbol_find_or_make (lcomm_name);
3689
d02603dc 3690 (void) restore_line_pointer (lcomm_endc);
3c02c47f
DE
3691
3692 /* The fourth argument to .lcomm is the alignment. */
3693 if (*input_line_pointer != ',')
3694 {
3695 if (size <= 4)
3696 align = 2;
3697 else
3698 align = 3;
3699 }
3700 else
3701 {
3702 ++input_line_pointer;
3703 align = get_absolute_expression ();
3704 if (align <= 0)
3705 {
3706 as_warn (_("ignoring bad alignment"));
3707 align = 2;
3708 }
3709 }
252b5132
RH
3710 }
3711
3712 *end_name = '\0';
3713 sym = symbol_find_or_make (name);
3714 *end_name = endc;
3715
3716 if (S_IS_DEFINED (sym)
3717 || S_GET_VALUE (sym) != 0)
3718 {
3719 as_bad (_("attempt to redefine symbol"));
3720 ignore_rest_of_line ();
3721 return;
3722 }
81d4177b 3723
252b5132 3724 record_alignment (bss_section, align);
81d4177b 3725
252b5132
RH
3726 if (! lcomm
3727 || ! S_IS_DEFINED (lcomm_sym))
3728 {
3729 symbolS *def_sym;
3730 offsetT def_size;
3731
3732 if (! lcomm)
3733 {
3734 def_sym = sym;
3735 def_size = size;
3736 S_SET_EXTERNAL (sym);
3737 }
3738 else
3739 {
809ffe0d 3740 symbol_get_tc (lcomm_sym)->output = 1;
252b5132
RH
3741 def_sym = lcomm_sym;
3742 def_size = 0;
3743 }
3744
3745 subseg_set (bss_section, 1);
3746 frag_align (align, 0, 0);
81d4177b 3747
809ffe0d 3748 symbol_set_frag (def_sym, frag_now);
252b5132
RH
3749 pfrag = frag_var (rs_org, 1, 1, (relax_substateT) 0, def_sym,
3750 def_size, (char *) NULL);
3751 *pfrag = 0;
3752 S_SET_SEGMENT (def_sym, bss_section);
809ffe0d 3753 symbol_get_tc (def_sym)->align = align;
252b5132
RH
3754 }
3755 else if (lcomm)
3756 {
3757 /* Align the size of lcomm_sym. */
809ffe0d
ILT
3758 symbol_get_frag (lcomm_sym)->fr_offset =
3759 ((symbol_get_frag (lcomm_sym)->fr_offset + (1 << align) - 1)
252b5132 3760 &~ ((1 << align) - 1));
809ffe0d
ILT
3761 if (align > symbol_get_tc (lcomm_sym)->align)
3762 symbol_get_tc (lcomm_sym)->align = align;
252b5132
RH
3763 }
3764
3765 if (lcomm)
3766 {
3767 /* Make sym an offset from lcomm_sym. */
3768 S_SET_SEGMENT (sym, bss_section);
809ffe0d
ILT
3769 symbol_set_frag (sym, symbol_get_frag (lcomm_sym));
3770 S_SET_VALUE (sym, symbol_get_frag (lcomm_sym)->fr_offset);
3771 symbol_get_frag (lcomm_sym)->fr_offset += size;
252b5132
RH
3772 }
3773
3774 subseg_set (current_seg, current_subseg);
3775
3776 demand_empty_rest_of_line ();
3777}
3778
3779/* The .csect pseudo-op. This switches us into a different
3780 subsegment. The first argument is a symbol whose value is the
3781 start of the .csect. In COFF, csect symbols get special aux
3782 entries defined by the x_csect field of union internal_auxent. The
3783 optional second argument is the alignment (the default is 2). */
3784
3785static void
98027b10 3786ppc_csect (int ignore ATTRIBUTE_UNUSED)
252b5132
RH
3787{
3788 char *name;
3789 char endc;
3790 symbolS *sym;
931e13a6 3791 offsetT align;
252b5132 3792
d02603dc 3793 endc = get_symbol_name (&name);
81d4177b 3794
252b5132
RH
3795 sym = symbol_find_or_make (name);
3796
d02603dc 3797 (void) restore_line_pointer (endc);
252b5132
RH
3798
3799 if (S_GET_NAME (sym)[0] == '\0')
3800 {
3801 /* An unnamed csect is assumed to be [PR]. */
96d56e9f 3802 symbol_get_tc (sym)->symbol_class = XMC_PR;
252b5132
RH
3803 }
3804
931e13a6 3805 align = 2;
252b5132
RH
3806 if (*input_line_pointer == ',')
3807 {
3808 ++input_line_pointer;
931e13a6 3809 align = get_absolute_expression ();
252b5132
RH
3810 }
3811
931e13a6
AM
3812 ppc_change_csect (sym, align);
3813
252b5132
RH
3814 demand_empty_rest_of_line ();
3815}
3816
3817/* Change to a different csect. */
3818
3819static void
98027b10 3820ppc_change_csect (symbolS *sym, offsetT align)
252b5132
RH
3821{
3822 if (S_IS_DEFINED (sym))
809ffe0d 3823 subseg_set (S_GET_SEGMENT (sym), symbol_get_tc (sym)->subseg);
252b5132
RH
3824 else
3825 {
3826 symbolS **list_ptr;
3827 int after_toc;
3828 int hold_chunksize;
3829 symbolS *list;
931e13a6
AM
3830 int is_code;
3831 segT sec;
252b5132
RH
3832
3833 /* This is a new csect. We need to look at the symbol class to
3834 figure out whether it should go in the text section or the
3835 data section. */
3836 after_toc = 0;
931e13a6 3837 is_code = 0;
96d56e9f 3838 switch (symbol_get_tc (sym)->symbol_class)
252b5132
RH
3839 {
3840 case XMC_PR:
3841 case XMC_RO:
3842 case XMC_DB:
3843 case XMC_GL:
3844 case XMC_XO:
3845 case XMC_SV:
3846 case XMC_TI:
3847 case XMC_TB:
3848 S_SET_SEGMENT (sym, text_section);
809ffe0d 3849 symbol_get_tc (sym)->subseg = ppc_text_subsegment;
252b5132
RH
3850 ++ppc_text_subsegment;
3851 list_ptr = &ppc_text_csects;
931e13a6 3852 is_code = 1;
252b5132
RH
3853 break;
3854 case XMC_RW:
3855 case XMC_TC0:
3856 case XMC_TC:
3857 case XMC_DS:
3858 case XMC_UA:
3859 case XMC_BS:
3860 case XMC_UC:
3861 if (ppc_toc_csect != NULL
809ffe0d
ILT
3862 && (symbol_get_tc (ppc_toc_csect)->subseg + 1
3863 == ppc_data_subsegment))
252b5132
RH
3864 after_toc = 1;
3865 S_SET_SEGMENT (sym, data_section);
809ffe0d 3866 symbol_get_tc (sym)->subseg = ppc_data_subsegment;
252b5132
RH
3867 ++ppc_data_subsegment;
3868 list_ptr = &ppc_data_csects;
3869 break;
3870 default:
3871 abort ();
3872 }
3873
3874 /* We set the obstack chunk size to a small value before
99a814a1
AM
3875 changing subsegments, so that we don't use a lot of memory
3876 space for what may be a small section. */
252b5132
RH
3877 hold_chunksize = chunksize;
3878 chunksize = 64;
3879
931e13a6
AM
3880 sec = subseg_new (segment_name (S_GET_SEGMENT (sym)),
3881 symbol_get_tc (sym)->subseg);
252b5132
RH
3882
3883 chunksize = hold_chunksize;
3884
3885 if (after_toc)
3886 ppc_after_toc_frag = frag_now;
3887
931e13a6
AM
3888 record_alignment (sec, align);
3889 if (is_code)
3890 frag_align_code (align, 0);
3891 else
3892 frag_align (align, 0, 0);
3893
809ffe0d 3894 symbol_set_frag (sym, frag_now);
252b5132
RH
3895 S_SET_VALUE (sym, (valueT) frag_now_fix ());
3896
931e13a6 3897 symbol_get_tc (sym)->align = align;
809ffe0d
ILT
3898 symbol_get_tc (sym)->output = 1;
3899 symbol_get_tc (sym)->within = sym;
81d4177b 3900
252b5132 3901 for (list = *list_ptr;
809ffe0d
ILT
3902 symbol_get_tc (list)->next != (symbolS *) NULL;
3903 list = symbol_get_tc (list)->next)
252b5132 3904 ;
809ffe0d 3905 symbol_get_tc (list)->next = sym;
81d4177b 3906
252b5132 3907 symbol_remove (sym, &symbol_rootP, &symbol_lastP);
809ffe0d
ILT
3908 symbol_append (sym, symbol_get_tc (list)->within, &symbol_rootP,
3909 &symbol_lastP);
252b5132
RH
3910 }
3911
3912 ppc_current_csect = sym;
3913}
3914
85645aed
TG
3915static void
3916ppc_change_debug_section (unsigned int idx, subsegT subseg)
3917{
3918 segT sec;
3919 flagword oldflags;
3920 const struct xcoff_dwsect_name *dw = &xcoff_dwsect_names[idx];
3921
3922 sec = subseg_new (dw->name, subseg);
3923 oldflags = bfd_get_section_flags (stdoutput, sec);
3924 if (oldflags == SEC_NO_FLAGS)
3925 {
3926 /* Just created section. */
3927 gas_assert (dw_sections[idx].sect == NULL);
3928
3929 bfd_set_section_flags (stdoutput, sec, SEC_DEBUGGING);
3930 bfd_set_section_alignment (stdoutput, sec, 0);
3931 dw_sections[idx].sect = sec;
3932 }
3933
3934 /* Not anymore in a csect. */
3935 ppc_current_csect = NULL;
3936}
3937
3938/* The .dwsect pseudo-op. Defines a DWARF section. Syntax is:
3939 .dwsect flag [, opt-label ]
3940*/
3941
3942static void
3943ppc_dwsect (int ignore ATTRIBUTE_UNUSED)
3944{
3945 offsetT flag;
3946 symbolS *opt_label;
3947 const struct xcoff_dwsect_name *dw;
3948 struct dw_subsection *subseg;
3949 struct dw_section *dws;
3950 int i;
3951
3952 /* Find section. */
3953 flag = get_absolute_expression ();
3954 dw = NULL;
3955 for (i = 0; i < XCOFF_DWSECT_NBR_NAMES; i++)
3956 if (xcoff_dwsect_names[i].flag == flag)
3957 {
3958 dw = &xcoff_dwsect_names[i];
3959 break;
3960 }
3961
3962 /* Parse opt-label. */
3963 if (*input_line_pointer == ',')
3964 {
d02603dc 3965 char *label;
85645aed
TG
3966 char c;
3967
3968 ++input_line_pointer;
3969
d02603dc 3970 c = get_symbol_name (&label);
85645aed 3971 opt_label = symbol_find_or_make (label);
d02603dc 3972 (void) restore_line_pointer (c);
85645aed
TG
3973 }
3974 else
3975 opt_label = NULL;
3976
3977 demand_empty_rest_of_line ();
3978
3979 /* Return now in case of unknown subsection. */
3980 if (dw == NULL)
3981 {
d6ed37ed 3982 as_bad (_("no known dwarf XCOFF section for flag 0x%08x\n"),
85645aed
TG
3983 (unsigned)flag);
3984 return;
3985 }
3986
3987 /* Find the subsection. */
3988 dws = &dw_sections[i];
3989 subseg = NULL;
3990 if (opt_label != NULL && S_IS_DEFINED (opt_label))
3991 {
3992 /* Sanity check (note that in theory S_GET_SEGMENT mustn't be null). */
3993 if (dws->sect == NULL || S_GET_SEGMENT (opt_label) != dws->sect)
3994 {
3995 as_bad (_("label %s was not defined in this dwarf section"),
3996 S_GET_NAME (opt_label));
3997 subseg = dws->anon_subseg;
3998 opt_label = NULL;
3999 }
4000 else
4001 subseg = symbol_get_tc (opt_label)->u.dw;
4002 }
4003
4004 if (subseg != NULL)
4005 {
4006 /* Switch to the subsection. */
4007 ppc_change_debug_section (i, subseg->subseg);
4008 }
4009 else
4010 {
4011 /* Create a new dw subsection. */
325801bd 4012 subseg = XNEW (struct dw_subsection);
85645aed
TG
4013
4014 if (opt_label == NULL)
4015 {
4016 /* The anonymous one. */
4017 subseg->subseg = 0;
4018 subseg->link = NULL;
4019 dws->anon_subseg = subseg;
4020 }
4021 else
4022 {
4023 /* A named one. */
4024 if (dws->list_subseg != NULL)
4025 subseg->subseg = dws->list_subseg->subseg + 1;
4026 else
4027 subseg->subseg = 1;
4028
4029 subseg->link = dws->list_subseg;
4030 dws->list_subseg = subseg;
4031 symbol_get_tc (opt_label)->u.dw = subseg;
4032 }
4033
4034 ppc_change_debug_section (i, subseg->subseg);
4035
4036 if (dw->def_size)
4037 {
4038 /* Add the length field. */
4039 expressionS *exp = &subseg->end_exp;
4040 int sz;
4041
4042 if (opt_label != NULL)
4043 symbol_set_value_now (opt_label);
4044
4045 /* Add the length field. Note that according to the AIX assembler
4046 manual, the size of the length field is 4 for powerpc32 but
4047 12 for powerpc64. */
4048 if (ppc_obj64)
4049 {
4050 /* Write the 64bit marker. */
4051 md_number_to_chars (frag_more (4), -1, 4);
4052 }
4053
4054 exp->X_op = O_subtract;
4055 exp->X_op_symbol = symbol_temp_new_now ();
4056 exp->X_add_symbol = symbol_temp_make ();
4057
4058 sz = ppc_obj64 ? 8 : 4;
4059 exp->X_add_number = -sz;
4060 emit_expr (exp, sz);
4061 }
4062 }
4063}
4064
252b5132
RH
4065/* This function handles the .text and .data pseudo-ops. These
4066 pseudo-ops aren't really used by XCOFF; we implement them for the
4067 convenience of people who aren't used to XCOFF. */
4068
4069static void
98027b10 4070ppc_section (int type)
252b5132
RH
4071{
4072 const char *name;
4073 symbolS *sym;
4074
4075 if (type == 't')
4076 name = ".text[PR]";
4077 else if (type == 'd')
4078 name = ".data[RW]";
4079 else
4080 abort ();
4081
4082 sym = symbol_find_or_make (name);
4083
931e13a6 4084 ppc_change_csect (sym, 2);
252b5132
RH
4085
4086 demand_empty_rest_of_line ();
4087}
4088
4089/* This function handles the .section pseudo-op. This is mostly to
4090 give an error, since XCOFF only supports .text, .data and .bss, but
4091 we do permit the user to name the text or data section. */
4092
4093static void
98027b10 4094ppc_named_section (int ignore ATTRIBUTE_UNUSED)
252b5132
RH
4095{
4096 char *user_name;
4097 const char *real_name;
4098 char c;
4099 symbolS *sym;
4100
d02603dc 4101 c = get_symbol_name (&user_name);
252b5132
RH
4102
4103 if (strcmp (user_name, ".text") == 0)
4104 real_name = ".text[PR]";
4105 else if (strcmp (user_name, ".data") == 0)
4106 real_name = ".data[RW]";
4107 else
4108 {
d6ed37ed 4109 as_bad (_("the XCOFF file format does not support arbitrary sections"));
d02603dc 4110 (void) restore_line_pointer (c);
252b5132
RH
4111 ignore_rest_of_line ();
4112 return;
4113 }
4114
d02603dc 4115 (void) restore_line_pointer (c);
252b5132
RH
4116
4117 sym = symbol_find_or_make (real_name);
4118
931e13a6 4119 ppc_change_csect (sym, 2);
252b5132
RH
4120
4121 demand_empty_rest_of_line ();
4122}
4123
4124/* The .extern pseudo-op. We create an undefined symbol. */
4125
4126static void
98027b10 4127ppc_extern (int ignore ATTRIBUTE_UNUSED)
252b5132
RH
4128{
4129 char *name;
4130 char endc;
4131
d02603dc 4132 endc = get_symbol_name (&name);
252b5132
RH
4133
4134 (void) symbol_find_or_make (name);
4135
d02603dc 4136 (void) restore_line_pointer (endc);
252b5132
RH
4137
4138 demand_empty_rest_of_line ();
4139}
4140
4141/* The .lglobl pseudo-op. Keep the symbol in the symbol table. */
4142
4143static void
98027b10 4144ppc_lglobl (int ignore ATTRIBUTE_UNUSED)
252b5132
RH
4145{
4146 char *name;
4147 char endc;
4148 symbolS *sym;
4149
d02603dc 4150 endc = get_symbol_name (&name);
252b5132
RH
4151
4152 sym = symbol_find_or_make (name);
4153
d02603dc 4154 (void) restore_line_pointer (endc);
252b5132 4155
809ffe0d 4156 symbol_get_tc (sym)->output = 1;
252b5132
RH
4157
4158 demand_empty_rest_of_line ();
4159}
4160
c865e45b
RS
4161/* The .ref pseudo-op. It takes a list of symbol names and inserts R_REF
4162 relocations at the beginning of the current csect.
4163
4164 (In principle, there's no reason why the relocations _have_ to be at
4165 the beginning. Anywhere in the csect would do. However, inserting
4166 at the beginning is what the native assmebler does, and it helps to
4167 deal with cases where the .ref statements follow the section contents.)
4168
4169 ??? .refs don't work for empty .csects. However, the native assembler
4170 doesn't report an error in this case, and neither yet do we. */
4171
4172static void
4173ppc_ref (int ignore ATTRIBUTE_UNUSED)
4174{
4175 char *name;
4176 char c;
4177
4178 if (ppc_current_csect == NULL)
4179 {
4180 as_bad (_(".ref outside .csect"));
4181 ignore_rest_of_line ();
4182 return;
4183 }
4184
4185 do
4186 {
d02603dc 4187 c = get_symbol_name (&name);
c865e45b
RS
4188
4189 fix_at_start (symbol_get_frag (ppc_current_csect), 0,
4190 symbol_find_or_make (name), 0, FALSE, BFD_RELOC_NONE);
4191
4192 *input_line_pointer = c;
d02603dc 4193 SKIP_WHITESPACE_AFTER_NAME ();
c865e45b
RS
4194 c = *input_line_pointer;
4195 if (c == ',')
4196 {
4197 input_line_pointer++;
4198 SKIP_WHITESPACE ();
4199 if (is_end_of_line[(unsigned char) *input_line_pointer])
4200 {
4201 as_bad (_("missing symbol name"));
4202 ignore_rest_of_line ();
4203 return;
4204 }
4205 }
4206 }
4207 while (c == ',');
4208
4209 demand_empty_rest_of_line ();
4210}
4211
252b5132
RH
4212/* The .rename pseudo-op. The RS/6000 assembler can rename symbols,
4213 although I don't know why it bothers. */
4214
4215static void
98027b10 4216ppc_rename (int ignore ATTRIBUTE_UNUSED)
252b5132
RH
4217{
4218 char *name;
4219 char endc;
4220 symbolS *sym;
4221 int len;
4222
d02603dc 4223 endc = get_symbol_name (&name);
252b5132
RH
4224
4225 sym = symbol_find_or_make (name);
4226
d02603dc 4227 (void) restore_line_pointer (endc);
252b5132
RH
4228
4229 if (*input_line_pointer != ',')
4230 {
4231 as_bad (_("missing rename string"));
4232 ignore_rest_of_line ();
4233 return;
4234 }
4235 ++input_line_pointer;
4236
809ffe0d 4237 symbol_get_tc (sym)->real_name = demand_copy_C_string (&len);
252b5132
RH
4238
4239 demand_empty_rest_of_line ();
4240}
4241
4242/* The .stabx pseudo-op. This is similar to a normal .stabs
4243 pseudo-op, but slightly different. A sample is
4244 .stabx "main:F-1",.main,142,0
4245 The first argument is the symbol name to create. The second is the
4246 value, and the third is the storage class. The fourth seems to be
4247 always zero, and I am assuming it is the type. */
4248
4249static void
98027b10 4250ppc_stabx (int ignore ATTRIBUTE_UNUSED)
252b5132
RH
4251{
4252 char *name;
4253 int len;
4254 symbolS *sym;
4255 expressionS exp;
4256
4257 name = demand_copy_C_string (&len);
4258
4259 if (*input_line_pointer != ',')
4260 {
4261 as_bad (_("missing value"));
4262 return;
4263 }
4264 ++input_line_pointer;
4265
b34976b6 4266 ppc_stab_symbol = TRUE;
252b5132 4267 sym = symbol_make (name);
b34976b6 4268 ppc_stab_symbol = FALSE;
252b5132 4269
809ffe0d 4270 symbol_get_tc (sym)->real_name = name;
252b5132
RH
4271
4272 (void) expression (&exp);
4273
4274 switch (exp.X_op)
4275 {
4276 case O_illegal:
4277 case O_absent:
4278 case O_big:
4279 as_bad (_("illegal .stabx expression; zero assumed"));
4280 exp.X_add_number = 0;
4281 /* Fall through. */
4282 case O_constant:
4283 S_SET_VALUE (sym, (valueT) exp.X_add_number);
809ffe0d 4284 symbol_set_frag (sym, &zero_address_frag);
252b5132
RH
4285 break;
4286
4287 case O_symbol:
4288 if (S_GET_SEGMENT (exp.X_add_symbol) == undefined_section)
809ffe0d 4289 symbol_set_value_expression (sym, &exp);
252b5132
RH
4290 else
4291 {
4292 S_SET_VALUE (sym,
4293 exp.X_add_number + S_GET_VALUE (exp.X_add_symbol));
809ffe0d 4294 symbol_set_frag (sym, symbol_get_frag (exp.X_add_symbol));
252b5132
RH
4295 }
4296 break;
4297
4298 default:
4299 /* The value is some complex expression. This will probably
99a814a1
AM
4300 fail at some later point, but this is probably the right
4301 thing to do here. */
809ffe0d 4302 symbol_set_value_expression (sym, &exp);
252b5132
RH
4303 break;
4304 }
4305
4306 S_SET_SEGMENT (sym, ppc_coff_debug_section);
809ffe0d 4307 symbol_get_bfdsym (sym)->flags |= BSF_DEBUGGING;
252b5132
RH
4308
4309 if (*input_line_pointer != ',')
4310 {
4311 as_bad (_("missing class"));
4312 return;
4313 }
4314 ++input_line_pointer;
4315
4316 S_SET_STORAGE_CLASS (sym, get_absolute_expression ());
4317
4318 if (*input_line_pointer != ',')
4319 {
4320 as_bad (_("missing type"));
4321 return;
4322 }
4323 ++input_line_pointer;
4324
4325 S_SET_DATA_TYPE (sym, get_absolute_expression ());
4326
809ffe0d 4327 symbol_get_tc (sym)->output = 1;
252b5132 4328
c734e7e3
TG
4329 if (S_GET_STORAGE_CLASS (sym) == C_STSYM)
4330 {
4331 /* In this case :
252b5132 4332
c734e7e3
TG
4333 .bs name
4334 .stabx "z",arrays_,133,0
4335 .es
99a814a1 4336
c734e7e3 4337 .comm arrays_,13768,3
99a814a1 4338
c734e7e3
TG
4339 resolve_symbol_value will copy the exp's "within" into sym's when the
4340 offset is 0. Since this seems to be corner case problem,
4341 only do the correction for storage class C_STSYM. A better solution
4342 would be to have the tc field updated in ppc_symbol_new_hook. */
99a814a1 4343
c734e7e3
TG
4344 if (exp.X_op == O_symbol)
4345 {
4346 if (ppc_current_block == NULL)
4347 as_bad (_(".stabx of storage class stsym must be within .bs/.es"));
99a814a1 4348
c734e7e3
TG
4349 symbol_get_tc (sym)->within = ppc_current_block;
4350 symbol_get_tc (exp.X_add_symbol)->within = ppc_current_block;
4351 }
4352 }
99a814a1 4353
252b5132
RH
4354 if (exp.X_op != O_symbol
4355 || ! S_IS_EXTERNAL (exp.X_add_symbol)
4356 || S_GET_SEGMENT (exp.X_add_symbol) != bss_section)
4357 ppc_frob_label (sym);
4358 else
4359 {
4360 symbol_remove (sym, &symbol_rootP, &symbol_lastP);
4361 symbol_append (sym, exp.X_add_symbol, &symbol_rootP, &symbol_lastP);
809ffe0d
ILT
4362 if (symbol_get_tc (ppc_current_csect)->within == exp.X_add_symbol)
4363 symbol_get_tc (ppc_current_csect)->within = sym;
252b5132
RH
4364 }
4365
4366 demand_empty_rest_of_line ();
4367}
4368
4369/* The .function pseudo-op. This takes several arguments. The first
4370 argument seems to be the external name of the symbol. The second
67c1ffbe 4371 argument seems to be the label for the start of the function. gcc
252b5132
RH
4372 uses the same name for both. I have no idea what the third and
4373 fourth arguments are meant to be. The optional fifth argument is
4374 an expression for the size of the function. In COFF this symbol
4375 gets an aux entry like that used for a csect. */
4376
4377static void
98027b10 4378ppc_function (int ignore ATTRIBUTE_UNUSED)
252b5132
RH
4379{
4380 char *name;
4381 char endc;
4382 char *s;
4383 symbolS *ext_sym;
4384 symbolS *lab_sym;
4385
d02603dc 4386 endc = get_symbol_name (&name);
252b5132
RH
4387
4388 /* Ignore any [PR] suffix. */
4389 name = ppc_canonicalize_symbol_name (name);
4390 s = strchr (name, '[');
4391 if (s != (char *) NULL
4392 && strcmp (s + 1, "PR]") == 0)
4393 *s = '\0';
4394
4395 ext_sym = symbol_find_or_make (name);
4396
d02603dc 4397 (void) restore_line_pointer (endc);
252b5132
RH
4398
4399 if (*input_line_pointer != ',')
4400 {
4401 as_bad (_("missing symbol name"));
4402 ignore_rest_of_line ();
4403 return;
4404 }
4405 ++input_line_pointer;
4406
d02603dc 4407 endc = get_symbol_name (&name);
252b5132
RH
4408
4409 lab_sym = symbol_find_or_make (name);
4410
d02603dc 4411 (void) restore_line_pointer (endc);
252b5132
RH
4412
4413 if (ext_sym != lab_sym)
4414 {
809ffe0d
ILT
4415 expressionS exp;
4416
4417 exp.X_op = O_symbol;
4418 exp.X_add_symbol = lab_sym;
4419 exp.X_op_symbol = NULL;
4420 exp.X_add_number = 0;
4421 exp.X_unsigned = 0;
4422 symbol_set_value_expression (ext_sym, &exp);
252b5132
RH
4423 }
4424
96d56e9f
NC
4425 if (symbol_get_tc (ext_sym)->symbol_class == -1)
4426 symbol_get_tc (ext_sym)->symbol_class = XMC_PR;
809ffe0d 4427 symbol_get_tc (ext_sym)->output = 1;
252b5132
RH
4428
4429 if (*input_line_pointer == ',')
4430 {
91d6fa6a 4431 expressionS exp;
252b5132
RH
4432
4433 /* Ignore the third argument. */
4434 ++input_line_pointer;
91d6fa6a 4435 expression (& exp);
252b5132
RH
4436 if (*input_line_pointer == ',')
4437 {
4438 /* Ignore the fourth argument. */
4439 ++input_line_pointer;
91d6fa6a 4440 expression (& exp);
252b5132
RH
4441 if (*input_line_pointer == ',')
4442 {
4443 /* The fifth argument is the function size. */
4444 ++input_line_pointer;
85645aed
TG
4445 symbol_get_tc (ext_sym)->u.size = symbol_new
4446 ("L0\001", absolute_section,(valueT) 0, &zero_address_frag);
4447 pseudo_set (symbol_get_tc (ext_sym)->u.size);
252b5132
RH
4448 }
4449 }
4450 }
4451
4452 S_SET_DATA_TYPE (ext_sym, DT_FCN << N_BTSHFT);
4453 SF_SET_FUNCTION (ext_sym);
4454 SF_SET_PROCESS (ext_sym);
4455 coff_add_linesym (ext_sym);
4456
4457 demand_empty_rest_of_line ();
4458}
4459
4460/* The .bf pseudo-op. This is just like a COFF C_FCN symbol named
8642cce8
TR
4461 ".bf". If the pseudo op .bi was seen before .bf, patch the .bi sym
4462 with the correct line number */
5d6255fe 4463
8642cce8 4464static symbolS *saved_bi_sym = 0;
252b5132
RH
4465
4466static void
98027b10 4467ppc_bf (int ignore ATTRIBUTE_UNUSED)
252b5132
RH
4468{
4469 symbolS *sym;
4470
4471 sym = symbol_make (".bf");
4472 S_SET_SEGMENT (sym, text_section);
809ffe0d 4473 symbol_set_frag (sym, frag_now);
252b5132
RH
4474 S_SET_VALUE (sym, frag_now_fix ());
4475 S_SET_STORAGE_CLASS (sym, C_FCN);
4476
4477 coff_line_base = get_absolute_expression ();
4478
4479 S_SET_NUMBER_AUXILIARY (sym, 1);
4480 SA_SET_SYM_LNNO (sym, coff_line_base);
4481
8642cce8 4482 /* Line number for bi. */
5d6255fe 4483 if (saved_bi_sym)
8642cce8
TR
4484 {
4485 S_SET_VALUE (saved_bi_sym, coff_n_line_nos);
4486 saved_bi_sym = 0;
4487 }
5d6255fe 4488
8642cce8 4489
809ffe0d 4490 symbol_get_tc (sym)->output = 1;
252b5132
RH
4491
4492 ppc_frob_label (sym);
4493
4494 demand_empty_rest_of_line ();
4495}
4496
4497/* The .ef pseudo-op. This is just like a COFF C_FCN symbol named
4498 ".ef", except that the line number is absolute, not relative to the
4499 most recent ".bf" symbol. */
4500
4501static void
98027b10 4502ppc_ef (int ignore ATTRIBUTE_UNUSED)
252b5132
RH
4503{
4504 symbolS *sym;
4505
4506 sym = symbol_make (".ef");
4507 S_SET_SEGMENT (sym, text_section);
809ffe0d 4508 symbol_set_frag (sym, frag_now);
252b5132
RH
4509 S_SET_VALUE (sym, frag_now_fix ());
4510 S_SET_STORAGE_CLASS (sym, C_FCN);
4511 S_SET_NUMBER_AUXILIARY (sym, 1);
4512 SA_SET_SYM_LNNO (sym, get_absolute_expression ());
809ffe0d 4513 symbol_get_tc (sym)->output = 1;
252b5132
RH
4514
4515 ppc_frob_label (sym);
4516
4517 demand_empty_rest_of_line ();
4518}
4519
4520/* The .bi and .ei pseudo-ops. These take a string argument and
4521 generates a C_BINCL or C_EINCL symbol, which goes at the start of
8642cce8
TR
4522 the symbol list. The value of .bi will be know when the next .bf
4523 is encountered. */
252b5132
RH
4524
4525static void
98027b10 4526ppc_biei (int ei)
252b5132
RH
4527{
4528 static symbolS *last_biei;
4529
4530 char *name;
4531 int len;
4532 symbolS *sym;
4533 symbolS *look;
4534
4535 name = demand_copy_C_string (&len);
4536
4537 /* The value of these symbols is actually file offset. Here we set
4538 the value to the index into the line number entries. In
4539 ppc_frob_symbols we set the fix_line field, which will cause BFD
4540 to do the right thing. */
4541
4542 sym = symbol_make (name);
4543 /* obj-coff.c currently only handles line numbers correctly in the
4544 .text section. */
4545 S_SET_SEGMENT (sym, text_section);
4546 S_SET_VALUE (sym, coff_n_line_nos);
809ffe0d 4547 symbol_get_bfdsym (sym)->flags |= BSF_DEBUGGING;
252b5132
RH
4548
4549 S_SET_STORAGE_CLASS (sym, ei ? C_EINCL : C_BINCL);
809ffe0d 4550 symbol_get_tc (sym)->output = 1;
81d4177b 4551
8642cce8 4552 /* Save bi. */
5d6255fe 4553 if (ei)
8642cce8
TR
4554 saved_bi_sym = 0;
4555 else
4556 saved_bi_sym = sym;
4557
252b5132
RH
4558 for (look = last_biei ? last_biei : symbol_rootP;
4559 (look != (symbolS *) NULL
4560 && (S_GET_STORAGE_CLASS (look) == C_FILE
4561 || S_GET_STORAGE_CLASS (look) == C_BINCL
4562 || S_GET_STORAGE_CLASS (look) == C_EINCL));
4563 look = symbol_next (look))
4564 ;
4565 if (look != (symbolS *) NULL)
4566 {
4567 symbol_remove (sym, &symbol_rootP, &symbol_lastP);
4568 symbol_insert (sym, look, &symbol_rootP, &symbol_lastP);
4569 last_biei = sym;
4570 }
4571
4572 demand_empty_rest_of_line ();
4573}
4574
4575/* The .bs pseudo-op. This generates a C_BSTAT symbol named ".bs".
4576 There is one argument, which is a csect symbol. The value of the
4577 .bs symbol is the index of this csect symbol. */
4578
4579static void
98027b10 4580ppc_bs (int ignore ATTRIBUTE_UNUSED)
252b5132
RH
4581{
4582 char *name;
4583 char endc;
4584 symbolS *csect;
4585 symbolS *sym;
4586
4587 if (ppc_current_block != NULL)
4588 as_bad (_("nested .bs blocks"));
4589
d02603dc 4590 endc = get_symbol_name (&name);
252b5132
RH
4591
4592 csect = symbol_find_or_make (name);
4593
d02603dc 4594 (void) restore_line_pointer (endc);
252b5132
RH
4595
4596 sym = symbol_make (".bs");
4597 S_SET_SEGMENT (sym, now_seg);
4598 S_SET_STORAGE_CLASS (sym, C_BSTAT);
809ffe0d
ILT
4599 symbol_get_bfdsym (sym)->flags |= BSF_DEBUGGING;
4600 symbol_get_tc (sym)->output = 1;
252b5132 4601
809ffe0d 4602 symbol_get_tc (sym)->within = csect;
252b5132
RH
4603
4604 ppc_frob_label (sym);
4605
4606 ppc_current_block = sym;
4607
4608 demand_empty_rest_of_line ();
4609}
4610
4611/* The .es pseudo-op. Generate a C_ESTART symbol named .es. */
4612
4613static void
98027b10 4614ppc_es (int ignore ATTRIBUTE_UNUSED)
252b5132
RH
4615{
4616 symbolS *sym;
4617
4618 if (ppc_current_block == NULL)
4619 as_bad (_(".es without preceding .bs"));
4620
4621 sym = symbol_make (".es");
4622 S_SET_SEGMENT (sym, now_seg);
4623 S_SET_STORAGE_CLASS (sym, C_ESTAT);
809ffe0d
ILT
4624 symbol_get_bfdsym (sym)->flags |= BSF_DEBUGGING;
4625 symbol_get_tc (sym)->output = 1;
252b5132
RH
4626
4627 ppc_frob_label (sym);
4628
4629 ppc_current_block = NULL;
4630
4631 demand_empty_rest_of_line ();
4632}
4633
4634/* The .bb pseudo-op. Generate a C_BLOCK symbol named .bb, with a
4635 line number. */
4636
4637static void
98027b10 4638ppc_bb (int ignore ATTRIBUTE_UNUSED)
252b5132
RH
4639{
4640 symbolS *sym;
4641
4642 sym = symbol_make (".bb");
4643 S_SET_SEGMENT (sym, text_section);
809ffe0d 4644 symbol_set_frag (sym, frag_now);
252b5132
RH
4645 S_SET_VALUE (sym, frag_now_fix ());
4646 S_SET_STORAGE_CLASS (sym, C_BLOCK);
4647
4648 S_SET_NUMBER_AUXILIARY (sym, 1);
4649 SA_SET_SYM_LNNO (sym, get_absolute_expression ());
4650
809ffe0d 4651 symbol_get_tc (sym)->output = 1;
252b5132
RH
4652
4653 SF_SET_PROCESS (sym);
4654
4655 ppc_frob_label (sym);
4656
4657 demand_empty_rest_of_line ();
4658}
4659
4660/* The .eb pseudo-op. Generate a C_BLOCK symbol named .eb, with a
4661 line number. */
4662
4663static void
98027b10 4664ppc_eb (int ignore ATTRIBUTE_UNUSED)
252b5132
RH
4665{
4666 symbolS *sym;
4667
4668 sym = symbol_make (".eb");
4669 S_SET_SEGMENT (sym, text_section);
809ffe0d 4670 symbol_set_frag (sym, frag_now);
252b5132
RH
4671 S_SET_VALUE (sym, frag_now_fix ());
4672 S_SET_STORAGE_CLASS (sym, C_BLOCK);
4673 S_SET_NUMBER_AUXILIARY (sym, 1);
4674 SA_SET_SYM_LNNO (sym, get_absolute_expression ());
809ffe0d 4675 symbol_get_tc (sym)->output = 1;
252b5132
RH
4676
4677 SF_SET_PROCESS (sym);
4678
4679 ppc_frob_label (sym);
4680
4681 demand_empty_rest_of_line ();
4682}
4683
4684/* The .bc pseudo-op. This just creates a C_BCOMM symbol with a
4685 specified name. */
4686
4687static void
98027b10 4688ppc_bc (int ignore ATTRIBUTE_UNUSED)
252b5132
RH
4689{
4690 char *name;
4691 int len;
4692 symbolS *sym;
4693
4694 name = demand_copy_C_string (&len);
4695 sym = symbol_make (name);
4696 S_SET_SEGMENT (sym, ppc_coff_debug_section);
809ffe0d 4697 symbol_get_bfdsym (sym)->flags |= BSF_DEBUGGING;
252b5132
RH
4698 S_SET_STORAGE_CLASS (sym, C_BCOMM);
4699 S_SET_VALUE (sym, 0);
809ffe0d 4700 symbol_get_tc (sym)->output = 1;
252b5132
RH
4701
4702 ppc_frob_label (sym);
4703
4704 demand_empty_rest_of_line ();
4705}
4706
4707/* The .ec pseudo-op. This just creates a C_ECOMM symbol. */
4708
4709static void
98027b10 4710ppc_ec (int ignore ATTRIBUTE_UNUSED)
252b5132
RH
4711{
4712 symbolS *sym;
4713
4714 sym = symbol_make (".ec");
4715 S_SET_SEGMENT (sym, ppc_coff_debug_section);
809ffe0d 4716 symbol_get_bfdsym (sym)->flags |= BSF_DEBUGGING;
252b5132
RH
4717 S_SET_STORAGE_CLASS (sym, C_ECOMM);
4718 S_SET_VALUE (sym, 0);
809ffe0d 4719 symbol_get_tc (sym)->output = 1;
252b5132
RH
4720
4721 ppc_frob_label (sym);
4722
4723 demand_empty_rest_of_line ();
4724}
4725
4726/* The .toc pseudo-op. Switch to the .toc subsegment. */
4727
4728static void
98027b10 4729ppc_toc (int ignore ATTRIBUTE_UNUSED)
252b5132
RH
4730{
4731 if (ppc_toc_csect != (symbolS *) NULL)
809ffe0d 4732 subseg_set (data_section, symbol_get_tc (ppc_toc_csect)->subseg);
252b5132
RH
4733 else
4734 {
4735 subsegT subseg;
4736 symbolS *sym;
4737 symbolS *list;
81d4177b 4738
252b5132
RH
4739 subseg = ppc_data_subsegment;
4740 ++ppc_data_subsegment;
4741
4742 subseg_new (segment_name (data_section), subseg);
4743 ppc_toc_frag = frag_now;
4744
4745 sym = symbol_find_or_make ("TOC[TC0]");
809ffe0d 4746 symbol_set_frag (sym, frag_now);
252b5132
RH
4747 S_SET_SEGMENT (sym, data_section);
4748 S_SET_VALUE (sym, (valueT) frag_now_fix ());
809ffe0d
ILT
4749 symbol_get_tc (sym)->subseg = subseg;
4750 symbol_get_tc (sym)->output = 1;
4751 symbol_get_tc (sym)->within = sym;
252b5132
RH
4752
4753 ppc_toc_csect = sym;
81d4177b 4754
252b5132 4755 for (list = ppc_data_csects;
809ffe0d
ILT
4756 symbol_get_tc (list)->next != (symbolS *) NULL;
4757 list = symbol_get_tc (list)->next)
252b5132 4758 ;
809ffe0d 4759 symbol_get_tc (list)->next = sym;
252b5132
RH
4760
4761 symbol_remove (sym, &symbol_rootP, &symbol_lastP);
809ffe0d
ILT
4762 symbol_append (sym, symbol_get_tc (list)->within, &symbol_rootP,
4763 &symbol_lastP);
252b5132
RH
4764 }
4765
4766 ppc_current_csect = ppc_toc_csect;
4767
4768 demand_empty_rest_of_line ();
4769}
4770
4771/* The AIX assembler automatically aligns the operands of a .long or
4772 .short pseudo-op, and we want to be compatible. */
4773
4774static void
98027b10 4775ppc_xcoff_cons (int log_size)
252b5132
RH
4776{
4777 frag_align (log_size, 0, 0);
4778 record_alignment (now_seg, log_size);
4779 cons (1 << log_size);
4780}
4781
4782static void
98027b10 4783ppc_vbyte (int dummy ATTRIBUTE_UNUSED)
252b5132
RH
4784{
4785 expressionS exp;
4786 int byte_count;
4787
4788 (void) expression (&exp);
4789
4790 if (exp.X_op != O_constant)
4791 {
4792 as_bad (_("non-constant byte count"));
4793 return;
4794 }
4795
4796 byte_count = exp.X_add_number;
4797
4798 if (*input_line_pointer != ',')
4799 {
4800 as_bad (_("missing value"));
4801 return;
4802 }
4803
4804 ++input_line_pointer;
4805 cons (byte_count);
4806}
4807
85645aed
TG
4808void
4809ppc_xcoff_end (void)
4810{
4811 int i;
4812
4813 for (i = 0; i < XCOFF_DWSECT_NBR_NAMES; i++)
4814 {
4815 struct dw_section *dws = &dw_sections[i];
4816 struct dw_subsection *dwss;
4817
4818 if (dws->anon_subseg)
4819 {
4820 dwss = dws->anon_subseg;
4821 dwss->link = dws->list_subseg;
4822 }
4823 else
4824 dwss = dws->list_subseg;
4825
4826 for (; dwss != NULL; dwss = dwss->link)
4827 if (dwss->end_exp.X_add_symbol != NULL)
4828 {
4829 subseg_set (dws->sect, dwss->subseg);
4830 symbol_set_value_now (dwss->end_exp.X_add_symbol);
4831 }
4832 }
4833}
4834
252b5132 4835#endif /* OBJ_XCOFF */
0baf16f2 4836#if defined (OBJ_XCOFF) || defined (OBJ_ELF)
252b5132
RH
4837\f
4838/* The .tc pseudo-op. This is used when generating either XCOFF or
4839 ELF. This takes two or more arguments.
4840
4841 When generating XCOFF output, the first argument is the name to
4842 give to this location in the toc; this will be a symbol with class
0baf16f2 4843 TC. The rest of the arguments are N-byte values to actually put at
252b5132 4844 this location in the TOC; often there is just one more argument, a
1049f94e 4845 relocatable symbol reference. The size of the value to store
0baf16f2
AM
4846 depends on target word size. A 32-bit target uses 4-byte values, a
4847 64-bit target uses 8-byte values.
252b5132
RH
4848
4849 When not generating XCOFF output, the arguments are the same, but
4850 the first argument is simply ignored. */
4851
4852static void
98027b10 4853ppc_tc (int ignore ATTRIBUTE_UNUSED)
252b5132
RH
4854{
4855#ifdef OBJ_XCOFF
4856
4857 /* Define the TOC symbol name. */
4858 {
4859 char *name;
4860 char endc;
4861 symbolS *sym;
4862
4863 if (ppc_toc_csect == (symbolS *) NULL
4864 || ppc_toc_csect != ppc_current_csect)
4865 {
4866 as_bad (_(".tc not in .toc section"));
4867 ignore_rest_of_line ();
4868 return;
4869 }
4870
d02603dc 4871 endc = get_symbol_name (&name);
252b5132
RH
4872
4873 sym = symbol_find_or_make (name);
4874
d02603dc 4875 (void) restore_line_pointer (endc);
252b5132
RH
4876
4877 if (S_IS_DEFINED (sym))
4878 {
4879 symbolS *label;
4880
809ffe0d 4881 label = symbol_get_tc (ppc_current_csect)->within;
96d56e9f 4882 if (symbol_get_tc (label)->symbol_class != XMC_TC0)
252b5132
RH
4883 {
4884 as_bad (_(".tc with no label"));
4885 ignore_rest_of_line ();
4886 return;
4887 }
4888
4889 S_SET_SEGMENT (label, S_GET_SEGMENT (sym));
809ffe0d 4890 symbol_set_frag (label, symbol_get_frag (sym));
252b5132
RH
4891 S_SET_VALUE (label, S_GET_VALUE (sym));
4892
4893 while (! is_end_of_line[(unsigned char) *input_line_pointer])
4894 ++input_line_pointer;
4895
4896 return;
4897 }
4898
4899 S_SET_SEGMENT (sym, now_seg);
809ffe0d 4900 symbol_set_frag (sym, frag_now);
252b5132 4901 S_SET_VALUE (sym, (valueT) frag_now_fix ());
96d56e9f 4902 symbol_get_tc (sym)->symbol_class = XMC_TC;
809ffe0d 4903 symbol_get_tc (sym)->output = 1;
252b5132
RH
4904
4905 ppc_frob_label (sym);
4906 }
4907
0baf16f2
AM
4908#endif /* OBJ_XCOFF */
4909#ifdef OBJ_ELF
9c7977b3 4910 int align;
252b5132
RH
4911
4912 /* Skip the TOC symbol name. */
4913 while (is_part_of_name (*input_line_pointer)
d13d4015 4914 || *input_line_pointer == ' '
252b5132
RH
4915 || *input_line_pointer == '['
4916 || *input_line_pointer == ']'
4917 || *input_line_pointer == '{'
4918 || *input_line_pointer == '}')
4919 ++input_line_pointer;
4920
0baf16f2 4921 /* Align to a four/eight byte boundary. */
2b3c4602 4922 align = ppc_obj64 ? 3 : 2;
9c7977b3
AM
4923 frag_align (align, 0, 0);
4924 record_alignment (now_seg, align);
0baf16f2 4925#endif /* OBJ_ELF */
252b5132
RH
4926
4927 if (*input_line_pointer != ',')
4928 demand_empty_rest_of_line ();
4929 else
4930 {
4931 ++input_line_pointer;
2b3c4602 4932 cons (ppc_obj64 ? 8 : 4);
252b5132
RH
4933 }
4934}
0baf16f2
AM
4935
4936/* Pseudo-op .machine. */
0baf16f2
AM
4937
4938static void
98027b10 4939ppc_machine (int ignore ATTRIBUTE_UNUSED)
0baf16f2 4940{
d02603dc 4941 char c;
69c040df
AM
4942 char *cpu_string;
4943#define MAX_HISTORY 100
fa452fa6 4944 static ppc_cpu_t *cpu_history;
69c040df
AM
4945 static int curr_hist;
4946
4947 SKIP_WHITESPACE ();
4948
d02603dc
NC
4949 c = get_symbol_name (&cpu_string);
4950 cpu_string = xstrdup (cpu_string);
4951 (void) restore_line_pointer (c);
69c040df
AM
4952
4953 if (cpu_string != NULL)
4954 {
fa452fa6 4955 ppc_cpu_t old_cpu = ppc_cpu;
69fe9ce5 4956 ppc_cpu_t new_cpu;
69c040df
AM
4957 char *p;
4958
4959 for (p = cpu_string; *p != 0; p++)
4960 *p = TOLOWER (*p);
4961
4962 if (strcmp (cpu_string, "push") == 0)
4963 {
4964 if (cpu_history == NULL)
325801bd 4965 cpu_history = XNEWVEC (ppc_cpu_t, MAX_HISTORY);
69c040df
AM
4966
4967 if (curr_hist >= MAX_HISTORY)
4968 as_bad (_(".machine stack overflow"));
4969 else
4970 cpu_history[curr_hist++] = ppc_cpu;
4971 }
4972 else if (strcmp (cpu_string, "pop") == 0)
4973 {
4974 if (curr_hist <= 0)
4975 as_bad (_(".machine stack underflow"));
4976 else
4977 ppc_cpu = cpu_history[--curr_hist];
4978 }
776fc418 4979 else if ((new_cpu = ppc_parse_cpu (ppc_cpu, &sticky, cpu_string)) != 0)
69fe9ce5 4980 ppc_cpu = new_cpu;
69c040df
AM
4981 else
4982 as_bad (_("invalid machine `%s'"), cpu_string);
4983
4984 if (ppc_cpu != old_cpu)
4985 ppc_setup_opcodes ();
4986 }
4987
4988 demand_empty_rest_of_line ();
0baf16f2 4989}
0baf16f2 4990#endif /* defined (OBJ_XCOFF) || defined (OBJ_ELF) */
252b5132
RH
4991\f
4992#ifdef TE_PE
4993
99a814a1 4994/* Pseudo-ops specific to the Windows NT PowerPC PE (coff) format. */
252b5132
RH
4995
4996/* Set the current section. */
4997static void
98027b10 4998ppc_set_current_section (segT new)
252b5132
RH
4999{
5000 ppc_previous_section = ppc_current_section;
5001 ppc_current_section = new;
5002}
5003
5004/* pseudo-op: .previous
5005 behaviour: toggles the current section with the previous section.
5006 errors: None
99a814a1
AM
5007 warnings: "No previous section" */
5008
252b5132 5009static void
98027b10 5010ppc_previous (int ignore ATTRIBUTE_UNUSED)
252b5132 5011{
81d4177b 5012 if (ppc_previous_section == NULL)
252b5132 5013 {
d6ed37ed 5014 as_warn (_("no previous section to return to, ignored."));
252b5132
RH
5015 return;
5016 }
5017
99a814a1 5018 subseg_set (ppc_previous_section, 0);
252b5132 5019
99a814a1 5020 ppc_set_current_section (ppc_previous_section);
252b5132
RH
5021}
5022
5023/* pseudo-op: .pdata
5024 behaviour: predefined read only data section
b34976b6 5025 double word aligned
252b5132
RH
5026 errors: None
5027 warnings: None
5028 initial: .section .pdata "adr3"
b34976b6 5029 a - don't know -- maybe a misprint
252b5132
RH
5030 d - initialized data
5031 r - readable
5032 3 - double word aligned (that would be 4 byte boundary)
5033
5034 commentary:
5035 Tag index tables (also known as the function table) for exception
99a814a1 5036 handling, debugging, etc. */
252b5132 5037
252b5132 5038static void
98027b10 5039ppc_pdata (int ignore ATTRIBUTE_UNUSED)
252b5132 5040{
81d4177b 5041 if (pdata_section == 0)
252b5132
RH
5042 {
5043 pdata_section = subseg_new (".pdata", 0);
81d4177b 5044
252b5132
RH
5045 bfd_set_section_flags (stdoutput, pdata_section,
5046 (SEC_ALLOC | SEC_LOAD | SEC_RELOC
5047 | SEC_READONLY | SEC_DATA ));
81d4177b 5048
252b5132
RH
5049 bfd_set_section_alignment (stdoutput, pdata_section, 2);
5050 }
5051 else
5052 {
99a814a1 5053 pdata_section = subseg_new (".pdata", 0);
252b5132 5054 }
99a814a1 5055 ppc_set_current_section (pdata_section);
252b5132
RH
5056}
5057
5058/* pseudo-op: .ydata
5059 behaviour: predefined read only data section
b34976b6 5060 double word aligned
252b5132
RH
5061 errors: None
5062 warnings: None
5063 initial: .section .ydata "drw3"
b34976b6 5064 a - don't know -- maybe a misprint
252b5132
RH
5065 d - initialized data
5066 r - readable
5067 3 - double word aligned (that would be 4 byte boundary)
5068 commentary:
5069 Tag tables (also known as the scope table) for exception handling,
99a814a1
AM
5070 debugging, etc. */
5071
252b5132 5072static void
98027b10 5073ppc_ydata (int ignore ATTRIBUTE_UNUSED)
252b5132 5074{
81d4177b 5075 if (ydata_section == 0)
252b5132
RH
5076 {
5077 ydata_section = subseg_new (".ydata", 0);
5078 bfd_set_section_flags (stdoutput, ydata_section,
99a814a1
AM
5079 (SEC_ALLOC | SEC_LOAD | SEC_RELOC
5080 | SEC_READONLY | SEC_DATA ));
252b5132
RH
5081
5082 bfd_set_section_alignment (stdoutput, ydata_section, 3);
5083 }
5084 else
5085 {
5086 ydata_section = subseg_new (".ydata", 0);
5087 }
99a814a1 5088 ppc_set_current_section (ydata_section);
252b5132
RH
5089}
5090
5091/* pseudo-op: .reldata
5092 behaviour: predefined read write data section
b34976b6 5093 double word aligned (4-byte)
252b5132
RH
5094 FIXME: relocation is applied to it
5095 FIXME: what's the difference between this and .data?
5096 errors: None
5097 warnings: None
5098 initial: .section .reldata "drw3"
5099 d - initialized data
5100 r - readable
5101 w - writeable
5102 3 - double word aligned (that would be 8 byte boundary)
5103
5104 commentary:
5105 Like .data, but intended to hold data subject to relocation, such as
99a814a1
AM
5106 function descriptors, etc. */
5107
252b5132 5108static void
98027b10 5109ppc_reldata (int ignore ATTRIBUTE_UNUSED)
252b5132
RH
5110{
5111 if (reldata_section == 0)
5112 {
5113 reldata_section = subseg_new (".reldata", 0);
5114
5115 bfd_set_section_flags (stdoutput, reldata_section,
99a814a1
AM
5116 (SEC_ALLOC | SEC_LOAD | SEC_RELOC
5117 | SEC_DATA));
252b5132
RH
5118
5119 bfd_set_section_alignment (stdoutput, reldata_section, 2);
5120 }
5121 else
5122 {
5123 reldata_section = subseg_new (".reldata", 0);
5124 }
99a814a1 5125 ppc_set_current_section (reldata_section);
252b5132
RH
5126}
5127
5128/* pseudo-op: .rdata
5129 behaviour: predefined read only data section
b34976b6 5130 double word aligned
252b5132
RH
5131 errors: None
5132 warnings: None
5133 initial: .section .rdata "dr3"
5134 d - initialized data
5135 r - readable
99a814a1
AM
5136 3 - double word aligned (that would be 4 byte boundary) */
5137
252b5132 5138static void
98027b10 5139ppc_rdata (int ignore ATTRIBUTE_UNUSED)
252b5132
RH
5140{
5141 if (rdata_section == 0)
5142 {
5143 rdata_section = subseg_new (".rdata", 0);
5144 bfd_set_section_flags (stdoutput, rdata_section,
5145 (SEC_ALLOC | SEC_LOAD | SEC_RELOC
5146 | SEC_READONLY | SEC_DATA ));
5147
5148 bfd_set_section_alignment (stdoutput, rdata_section, 2);
5149 }
5150 else
5151 {
5152 rdata_section = subseg_new (".rdata", 0);
5153 }
99a814a1 5154 ppc_set_current_section (rdata_section);
252b5132
RH
5155}
5156
5157/* pseudo-op: .ualong
81d4177b 5158 behaviour: much like .int, with the exception that no alignment is
b34976b6 5159 performed.
252b5132
RH
5160 FIXME: test the alignment statement
5161 errors: None
99a814a1
AM
5162 warnings: None */
5163
252b5132 5164static void
98027b10 5165ppc_ualong (int ignore ATTRIBUTE_UNUSED)
252b5132 5166{
99a814a1
AM
5167 /* Try for long. */
5168 cons (4);
252b5132
RH
5169}
5170
5171/* pseudo-op: .znop <symbol name>
5172 behaviour: Issue a nop instruction
b34976b6 5173 Issue a IMAGE_REL_PPC_IFGLUE relocation against it, using
252b5132
RH
5174 the supplied symbol name.
5175 errors: None
99a814a1
AM
5176 warnings: Missing symbol name */
5177
252b5132 5178static void
98027b10 5179ppc_znop (int ignore ATTRIBUTE_UNUSED)
252b5132
RH
5180{
5181 unsigned long insn;
5182 const struct powerpc_opcode *opcode;
252b5132 5183 char *f;
252b5132 5184 symbolS *sym;
252b5132
RH
5185 char *symbol_name;
5186 char c;
5187 char *name;
252b5132 5188
99a814a1 5189 /* Strip out the symbol name. */
d02603dc 5190 c = get_symbol_name (&symbol_name);
252b5132 5191
a44e2901 5192 name = xstrdup (symbol_name);
252b5132
RH
5193
5194 sym = symbol_find_or_make (name);
5195
5196 *input_line_pointer = c;
5197
d02603dc 5198 SKIP_WHITESPACE_AFTER_NAME ();
252b5132
RH
5199
5200 /* Look up the opcode in the hash table. */
5201 opcode = (const struct powerpc_opcode *) hash_find (ppc_hash, "nop");
5202
99a814a1 5203 /* Stick in the nop. */
252b5132
RH
5204 insn = opcode->opcode;
5205
5206 /* Write out the instruction. */
5207 f = frag_more (4);
5208 md_number_to_chars (f, insn, 4);
5209 fix_new (frag_now,
5210 f - frag_now->fr_literal,
5211 4,
5212 sym,
5213 0,
5214 0,
5215 BFD_RELOC_16_GOT_PCREL);
5216
5217}
5218
81d4177b
KH
5219/* pseudo-op:
5220 behaviour:
5221 errors:
99a814a1
AM
5222 warnings: */
5223
252b5132 5224static void
98027b10 5225ppc_pe_comm (int lcomm)
252b5132 5226{
98027b10
AM
5227 char *name;
5228 char c;
5229 char *p;
252b5132 5230 offsetT temp;
98027b10 5231 symbolS *symbolP;
252b5132
RH
5232 offsetT align;
5233
d02603dc 5234 c = get_symbol_name (&name);
252b5132 5235
99a814a1 5236 /* just after name is now '\0'. */
252b5132
RH
5237 p = input_line_pointer;
5238 *p = c;
d02603dc 5239 SKIP_WHITESPACE_AFTER_NAME ();
252b5132
RH
5240 if (*input_line_pointer != ',')
5241 {
d6ed37ed 5242 as_bad (_("expected comma after symbol-name: rest of line ignored."));
252b5132
RH
5243 ignore_rest_of_line ();
5244 return;
5245 }
5246
5247 input_line_pointer++; /* skip ',' */
5248 if ((temp = get_absolute_expression ()) < 0)
5249 {
5250 as_warn (_(".COMMon length (%ld.) <0! Ignored."), (long) temp);
5251 ignore_rest_of_line ();
5252 return;
5253 }
5254
5255 if (! lcomm)
5256 {
5257 /* The third argument to .comm is the alignment. */
5258 if (*input_line_pointer != ',')
5259 align = 3;
5260 else
5261 {
5262 ++input_line_pointer;
5263 align = get_absolute_expression ();
5264 if (align <= 0)
5265 {
5266 as_warn (_("ignoring bad alignment"));
5267 align = 3;
5268 }
5269 }
5270 }
5271
5272 *p = 0;
5273 symbolP = symbol_find_or_make (name);
5274
5275 *p = c;
5276 if (S_IS_DEFINED (symbolP) && ! S_IS_COMMON (symbolP))
5277 {
d6ed37ed 5278 as_bad (_("ignoring attempt to re-define symbol `%s'."),
252b5132
RH
5279 S_GET_NAME (symbolP));
5280 ignore_rest_of_line ();
5281 return;
5282 }
5283
5284 if (S_GET_VALUE (symbolP))
5285 {
5286 if (S_GET_VALUE (symbolP) != (valueT) temp)
d6ed37ed 5287 as_bad (_("length of .comm \"%s\" is already %ld. Not changed to %ld."),
252b5132
RH
5288 S_GET_NAME (symbolP),
5289 (long) S_GET_VALUE (symbolP),
5290 (long) temp);
5291 }
5292 else
5293 {
5294 S_SET_VALUE (symbolP, (valueT) temp);
5295 S_SET_EXTERNAL (symbolP);
86ebace2 5296 S_SET_SEGMENT (symbolP, bfd_com_section_ptr);
252b5132
RH
5297 }
5298
5299 demand_empty_rest_of_line ();
5300}
5301
5302/*
5303 * implement the .section pseudo op:
5304 * .section name {, "flags"}
5305 * ^ ^
5306 * | +--- optional flags: 'b' for bss
5307 * | 'i' for info
5308 * +-- section name 'l' for lib
5309 * 'n' for noload
5310 * 'o' for over
5311 * 'w' for data
5312 * 'd' (apparently m88k for data)
5313 * 'x' for text
5314 * But if the argument is not a quoted string, treat it as a
5315 * subsegment number.
5316 *
5317 * FIXME: this is a copy of the section processing from obj-coff.c, with
5318 * additions/changes for the moto-pas assembler support. There are three
5319 * categories:
5320 *
81d4177b 5321 * FIXME: I just noticed this. This doesn't work at all really. It it
252b5132
RH
5322 * setting bits that bfd probably neither understands or uses. The
5323 * correct approach (?) will have to incorporate extra fields attached
5324 * to the section to hold the system specific stuff. (krk)
5325 *
5326 * Section Contents:
5327 * 'a' - unknown - referred to in documentation, but no definition supplied
5328 * 'c' - section has code
5329 * 'd' - section has initialized data
5330 * 'u' - section has uninitialized data
5331 * 'i' - section contains directives (info)
5332 * 'n' - section can be discarded
5333 * 'R' - remove section at link time
5334 *
5335 * Section Protection:
5336 * 'r' - section is readable
5337 * 'w' - section is writeable
5338 * 'x' - section is executable
5339 * 's' - section is sharable
5340 *
5341 * Section Alignment:
5342 * '0' - align to byte boundary
5343 * '1' - align to halfword undary
5344 * '2' - align to word boundary
5345 * '3' - align to doubleword boundary
5346 * '4' - align to quadword boundary
5347 * '5' - align to 32 byte boundary
5348 * '6' - align to 64 byte boundary
5349 *
5350 */
5351
5352void
98027b10 5353ppc_pe_section (int ignore ATTRIBUTE_UNUSED)
252b5132 5354{
99a814a1 5355 /* Strip out the section name. */
252b5132
RH
5356 char *section_name;
5357 char c;
5358 char *name;
5359 unsigned int exp;
5360 flagword flags;
5361 segT sec;
5362 int align;
5363
d02603dc 5364 c = get_symbol_name (&section_name);
252b5132 5365
a44e2901 5366 name = xstrdup (section_name);
252b5132
RH
5367
5368 *input_line_pointer = c;
5369
d02603dc 5370 SKIP_WHITESPACE_AFTER_NAME ();
252b5132
RH
5371
5372 exp = 0;
5373 flags = SEC_NO_FLAGS;
5374
5375 if (strcmp (name, ".idata$2") == 0)
5376 {
5377 align = 0;
5378 }
5379 else if (strcmp (name, ".idata$3") == 0)
5380 {
5381 align = 0;
5382 }
5383 else if (strcmp (name, ".idata$4") == 0)
5384 {
5385 align = 2;
5386 }
5387 else if (strcmp (name, ".idata$5") == 0)
5388 {
5389 align = 2;
5390 }
5391 else if (strcmp (name, ".idata$6") == 0)
5392 {
5393 align = 1;
5394 }
5395 else
99a814a1
AM
5396 /* Default alignment to 16 byte boundary. */
5397 align = 4;
252b5132
RH
5398
5399 if (*input_line_pointer == ',')
5400 {
5401 ++input_line_pointer;
5402 SKIP_WHITESPACE ();
5403 if (*input_line_pointer != '"')
5404 exp = get_absolute_expression ();
5405 else
5406 {
5407 ++input_line_pointer;
5408 while (*input_line_pointer != '"'
5409 && ! is_end_of_line[(unsigned char) *input_line_pointer])
5410 {
5411 switch (*input_line_pointer)
5412 {
5413 /* Section Contents */
5414 case 'a': /* unknown */
d6ed37ed 5415 as_bad (_("unsupported section attribute -- 'a'"));
252b5132
RH
5416 break;
5417 case 'c': /* code section */
81d4177b 5418 flags |= SEC_CODE;
252b5132
RH
5419 break;
5420 case 'd': /* section has initialized data */
5421 flags |= SEC_DATA;
5422 break;
5423 case 'u': /* section has uninitialized data */
5424 /* FIXME: This is IMAGE_SCN_CNT_UNINITIALIZED_DATA
5425 in winnt.h */
5426 flags |= SEC_ROM;
5427 break;
5428 case 'i': /* section contains directives (info) */
5429 /* FIXME: This is IMAGE_SCN_LNK_INFO
5430 in winnt.h */
5431 flags |= SEC_HAS_CONTENTS;
5432 break;
5433 case 'n': /* section can be discarded */
81d4177b 5434 flags &=~ SEC_LOAD;
252b5132
RH
5435 break;
5436 case 'R': /* Remove section at link time */
5437 flags |= SEC_NEVER_LOAD;
5438 break;
8d452c78 5439#if IFLICT_BRAIN_DAMAGE
252b5132
RH
5440 /* Section Protection */
5441 case 'r': /* section is readable */
5442 flags |= IMAGE_SCN_MEM_READ;
5443 break;
5444 case 'w': /* section is writeable */
5445 flags |= IMAGE_SCN_MEM_WRITE;
5446 break;
5447 case 'x': /* section is executable */
5448 flags |= IMAGE_SCN_MEM_EXECUTE;
5449 break;
5450 case 's': /* section is sharable */
5451 flags |= IMAGE_SCN_MEM_SHARED;
5452 break;
5453
5454 /* Section Alignment */
5455 case '0': /* align to byte boundary */
5456 flags |= IMAGE_SCN_ALIGN_1BYTES;
5457 align = 0;
5458 break;
5459 case '1': /* align to halfword boundary */
5460 flags |= IMAGE_SCN_ALIGN_2BYTES;
5461 align = 1;
5462 break;
5463 case '2': /* align to word boundary */
5464 flags |= IMAGE_SCN_ALIGN_4BYTES;
5465 align = 2;
5466 break;
5467 case '3': /* align to doubleword boundary */
5468 flags |= IMAGE_SCN_ALIGN_8BYTES;
5469 align = 3;
5470 break;
5471 case '4': /* align to quadword boundary */
5472 flags |= IMAGE_SCN_ALIGN_16BYTES;
5473 align = 4;
5474 break;
5475 case '5': /* align to 32 byte boundary */
5476 flags |= IMAGE_SCN_ALIGN_32BYTES;
5477 align = 5;
5478 break;
5479 case '6': /* align to 64 byte boundary */
5480 flags |= IMAGE_SCN_ALIGN_64BYTES;
5481 align = 6;
5482 break;
8d452c78 5483#endif
252b5132 5484 default:
99a814a1
AM
5485 as_bad (_("unknown section attribute '%c'"),
5486 *input_line_pointer);
252b5132
RH
5487 break;
5488 }
5489 ++input_line_pointer;
5490 }
5491 if (*input_line_pointer == '"')
5492 ++input_line_pointer;
5493 }
5494 }
5495
5496 sec = subseg_new (name, (subsegT) exp);
5497
99a814a1 5498 ppc_set_current_section (sec);
252b5132
RH
5499
5500 if (flags != SEC_NO_FLAGS)
5501 {
5502 if (! bfd_set_section_flags (stdoutput, sec, flags))
5503 as_bad (_("error setting flags for \"%s\": %s"),
5504 bfd_section_name (stdoutput, sec),
5505 bfd_errmsg (bfd_get_error ()));
5506 }
5507
99a814a1 5508 bfd_set_section_alignment (stdoutput, sec, align);
252b5132
RH
5509}
5510
5511static void
98027b10 5512ppc_pe_function (int ignore ATTRIBUTE_UNUSED)
252b5132
RH
5513{
5514 char *name;
5515 char endc;
5516 symbolS *ext_sym;
5517
d02603dc 5518 endc = get_symbol_name (&name);
252b5132
RH
5519
5520 ext_sym = symbol_find_or_make (name);
5521
d02603dc 5522 (void) restore_line_pointer (endc);
252b5132
RH
5523
5524 S_SET_DATA_TYPE (ext_sym, DT_FCN << N_BTSHFT);
5525 SF_SET_FUNCTION (ext_sym);
5526 SF_SET_PROCESS (ext_sym);
5527 coff_add_linesym (ext_sym);
5528
5529 demand_empty_rest_of_line ();
5530}
5531
5532static void
98027b10 5533ppc_pe_tocd (int ignore ATTRIBUTE_UNUSED)
252b5132
RH
5534{
5535 if (tocdata_section == 0)
5536 {
5537 tocdata_section = subseg_new (".tocd", 0);
99a814a1 5538 /* FIXME: section flags won't work. */
252b5132
RH
5539 bfd_set_section_flags (stdoutput, tocdata_section,
5540 (SEC_ALLOC | SEC_LOAD | SEC_RELOC
99a814a1 5541 | SEC_READONLY | SEC_DATA));
252b5132
RH
5542
5543 bfd_set_section_alignment (stdoutput, tocdata_section, 2);
5544 }
5545 else
5546 {
5547 rdata_section = subseg_new (".tocd", 0);
5548 }
5549
99a814a1 5550 ppc_set_current_section (tocdata_section);
252b5132
RH
5551
5552 demand_empty_rest_of_line ();
5553}
5554
5555/* Don't adjust TOC relocs to use the section symbol. */
5556
5557int
98027b10 5558ppc_pe_fix_adjustable (fixS *fix)
252b5132
RH
5559{
5560 return fix->fx_r_type != BFD_RELOC_PPC_TOC16;
5561}
5562
5563#endif
5564\f
5565#ifdef OBJ_XCOFF
5566
5567/* XCOFF specific symbol and file handling. */
5568
5569/* Canonicalize the symbol name. We use the to force the suffix, if
5570 any, to use square brackets, and to be in upper case. */
5571
5572char *
98027b10 5573ppc_canonicalize_symbol_name (char *name)
252b5132
RH
5574{
5575 char *s;
5576
5577 if (ppc_stab_symbol)
5578 return name;
5579
5580 for (s = name; *s != '\0' && *s != '{' && *s != '['; s++)
5581 ;
5582 if (*s != '\0')
5583 {
5584 char brac;
5585
5586 if (*s == '[')
5587 brac = ']';
5588 else
5589 {
5590 *s = '[';
5591 brac = '}';
5592 }
5593
5594 for (s++; *s != '\0' && *s != brac; s++)
3882b010 5595 *s = TOUPPER (*s);
252b5132
RH
5596
5597 if (*s == '\0' || s[1] != '\0')
5598 as_bad (_("bad symbol suffix"));
5599
5600 *s = ']';
5601 }
5602
5603 return name;
5604}
5605
5606/* Set the class of a symbol based on the suffix, if any. This is
5607 called whenever a new symbol is created. */
5608
5609void
98027b10 5610ppc_symbol_new_hook (symbolS *sym)
252b5132 5611{
809ffe0d 5612 struct ppc_tc_sy *tc;
252b5132
RH
5613 const char *s;
5614
809ffe0d
ILT
5615 tc = symbol_get_tc (sym);
5616 tc->next = NULL;
5617 tc->output = 0;
96d56e9f 5618 tc->symbol_class = -1;
809ffe0d
ILT
5619 tc->real_name = NULL;
5620 tc->subseg = 0;
5621 tc->align = 0;
85645aed
TG
5622 tc->u.size = NULL;
5623 tc->u.dw = NULL;
809ffe0d 5624 tc->within = NULL;
252b5132
RH
5625
5626 if (ppc_stab_symbol)
5627 return;
5628
5629 s = strchr (S_GET_NAME (sym), '[');
5630 if (s == (const char *) NULL)
5631 {
5632 /* There is no suffix. */
5633 return;
5634 }
5635
5636 ++s;
5637
5638 switch (s[0])
5639 {
5640 case 'B':
5641 if (strcmp (s, "BS]") == 0)
96d56e9f 5642 tc->symbol_class = XMC_BS;
252b5132
RH
5643 break;
5644 case 'D':
5645 if (strcmp (s, "DB]") == 0)
96d56e9f 5646 tc->symbol_class = XMC_DB;
252b5132 5647 else if (strcmp (s, "DS]") == 0)
96d56e9f 5648 tc->symbol_class = XMC_DS;
252b5132
RH
5649 break;
5650 case 'G':
5651 if (strcmp (s, "GL]") == 0)
96d56e9f 5652 tc->symbol_class = XMC_GL;
252b5132
RH
5653 break;
5654 case 'P':
5655 if (strcmp (s, "PR]") == 0)
96d56e9f 5656 tc->symbol_class = XMC_PR;
252b5132
RH
5657 break;
5658 case 'R':
5659 if (strcmp (s, "RO]") == 0)
96d56e9f 5660 tc->symbol_class = XMC_RO;
252b5132 5661 else if (strcmp (s, "RW]") == 0)
96d56e9f 5662 tc->symbol_class = XMC_RW;
252b5132
RH
5663 break;
5664 case 'S':
5665 if (strcmp (s, "SV]") == 0)
96d56e9f 5666 tc->symbol_class = XMC_SV;
252b5132
RH
5667 break;
5668 case 'T':
5669 if (strcmp (s, "TC]") == 0)
96d56e9f 5670 tc->symbol_class = XMC_TC;
252b5132 5671 else if (strcmp (s, "TI]") == 0)
96d56e9f 5672 tc->symbol_class = XMC_TI;
252b5132 5673 else if (strcmp (s, "TB]") == 0)
96d56e9f 5674 tc->symbol_class = XMC_TB;
252b5132 5675 else if (strcmp (s, "TC0]") == 0 || strcmp (s, "T0]") == 0)
96d56e9f 5676 tc->symbol_class = XMC_TC0;
252b5132
RH
5677 break;
5678 case 'U':
5679 if (strcmp (s, "UA]") == 0)
96d56e9f 5680 tc->symbol_class = XMC_UA;
252b5132 5681 else if (strcmp (s, "UC]") == 0)
96d56e9f 5682 tc->symbol_class = XMC_UC;
252b5132
RH
5683 break;
5684 case 'X':
5685 if (strcmp (s, "XO]") == 0)
96d56e9f 5686 tc->symbol_class = XMC_XO;
252b5132
RH
5687 break;
5688 }
5689
96d56e9f 5690 if (tc->symbol_class == -1)
d6ed37ed 5691 as_bad (_("unrecognized symbol suffix"));
252b5132
RH
5692}
5693
5694/* Set the class of a label based on where it is defined. This
5695 handles symbols without suffixes. Also, move the symbol so that it
5696 follows the csect symbol. */
5697
5698void
98027b10 5699ppc_frob_label (symbolS *sym)
252b5132
RH
5700{
5701 if (ppc_current_csect != (symbolS *) NULL)
5702 {
96d56e9f
NC
5703 if (symbol_get_tc (sym)->symbol_class == -1)
5704 symbol_get_tc (sym)->symbol_class = symbol_get_tc (ppc_current_csect)->symbol_class;
252b5132
RH
5705
5706 symbol_remove (sym, &symbol_rootP, &symbol_lastP);
809ffe0d
ILT
5707 symbol_append (sym, symbol_get_tc (ppc_current_csect)->within,
5708 &symbol_rootP, &symbol_lastP);
5709 symbol_get_tc (ppc_current_csect)->within = sym;
2fb4b302 5710 symbol_get_tc (sym)->within = ppc_current_csect;
252b5132 5711 }
07a53e5c
RH
5712
5713#ifdef OBJ_ELF
5714 dwarf2_emit_label (sym);
5715#endif
252b5132
RH
5716}
5717
5718/* This variable is set by ppc_frob_symbol if any absolute symbols are
5719 seen. It tells ppc_adjust_symtab whether it needs to look through
5720 the symbols. */
5721
b34976b6 5722static bfd_boolean ppc_saw_abs;
252b5132
RH
5723
5724/* Change the name of a symbol just before writing it out. Set the
5725 real name if the .rename pseudo-op was used. Otherwise, remove any
5726 class suffix. Return 1 if the symbol should not be included in the
5727 symbol table. */
5728
5729int
98027b10 5730ppc_frob_symbol (symbolS *sym)
252b5132
RH
5731{
5732 static symbolS *ppc_last_function;
5733 static symbolS *set_end;
5734
5735 /* Discard symbols that should not be included in the output symbol
5736 table. */
809ffe0d
ILT
5737 if (! symbol_used_in_reloc_p (sym)
5738 && ((symbol_get_bfdsym (sym)->flags & BSF_SECTION_SYM) != 0
670ec21d 5739 || (! (S_IS_EXTERNAL (sym) || S_IS_WEAK (sym))
809ffe0d 5740 && ! symbol_get_tc (sym)->output
252b5132
RH
5741 && S_GET_STORAGE_CLASS (sym) != C_FILE)))
5742 return 1;
5743
a161fe53
AM
5744 /* This one will disappear anyway. Don't make a csect sym for it. */
5745 if (sym == abs_section_sym)
5746 return 1;
5747
809ffe0d
ILT
5748 if (symbol_get_tc (sym)->real_name != (char *) NULL)
5749 S_SET_NAME (sym, symbol_get_tc (sym)->real_name);
252b5132
RH
5750 else
5751 {
5752 const char *name;
5753 const char *s;
5754
5755 name = S_GET_NAME (sym);
5756 s = strchr (name, '[');
5757 if (s != (char *) NULL)
5758 {
5759 unsigned int len;
5760 char *snew;
5761
5762 len = s - name;
a44e2901 5763 snew = xstrndup (name, len);
252b5132
RH
5764
5765 S_SET_NAME (sym, snew);
5766 }
5767 }
5768
5769 if (set_end != (symbolS *) NULL)
5770 {
5771 SA_SET_SYM_ENDNDX (set_end, sym);
5772 set_end = NULL;
5773 }
5774
5775 if (SF_GET_FUNCTION (sym))
5776 {
5777 if (ppc_last_function != (symbolS *) NULL)
5778 as_bad (_("two .function pseudo-ops with no intervening .ef"));
5779 ppc_last_function = sym;
85645aed 5780 if (symbol_get_tc (sym)->u.size != (symbolS *) NULL)
252b5132 5781 {
85645aed 5782 resolve_symbol_value (symbol_get_tc (sym)->u.size);
809ffe0d 5783 SA_SET_SYM_FSIZE (sym,
85645aed 5784 (long) S_GET_VALUE (symbol_get_tc (sym)->u.size));
252b5132
RH
5785 }
5786 }
5787 else if (S_GET_STORAGE_CLASS (sym) == C_FCN
5788 && strcmp (S_GET_NAME (sym), ".ef") == 0)
5789 {
5790 if (ppc_last_function == (symbolS *) NULL)
5791 as_bad (_(".ef with no preceding .function"));
5792 else
5793 {
5794 set_end = ppc_last_function;
5795 ppc_last_function = NULL;
5796
5797 /* We don't have a C_EFCN symbol, but we need to force the
5798 COFF backend to believe that it has seen one. */
5799 coff_last_function = NULL;
5800 }
5801 }
5802
670ec21d 5803 if (! (S_IS_EXTERNAL (sym) || S_IS_WEAK (sym))
809ffe0d 5804 && (symbol_get_bfdsym (sym)->flags & BSF_SECTION_SYM) == 0
252b5132
RH
5805 && S_GET_STORAGE_CLASS (sym) != C_FILE
5806 && S_GET_STORAGE_CLASS (sym) != C_FCN
5807 && S_GET_STORAGE_CLASS (sym) != C_BLOCK
5808 && S_GET_STORAGE_CLASS (sym) != C_BSTAT
5809 && S_GET_STORAGE_CLASS (sym) != C_ESTAT
5810 && S_GET_STORAGE_CLASS (sym) != C_BINCL
5811 && S_GET_STORAGE_CLASS (sym) != C_EINCL
5812 && S_GET_SEGMENT (sym) != ppc_coff_debug_section)
5813 S_SET_STORAGE_CLASS (sym, C_HIDEXT);
5814
5815 if (S_GET_STORAGE_CLASS (sym) == C_EXT
8602d4fe 5816 || S_GET_STORAGE_CLASS (sym) == C_AIX_WEAKEXT
252b5132
RH
5817 || S_GET_STORAGE_CLASS (sym) == C_HIDEXT)
5818 {
5819 int i;
5820 union internal_auxent *a;
5821
5822 /* Create a csect aux. */
5823 i = S_GET_NUMBER_AUXILIARY (sym);
5824 S_SET_NUMBER_AUXILIARY (sym, i + 1);
809ffe0d 5825 a = &coffsymbol (symbol_get_bfdsym (sym))->native[i + 1].u.auxent;
96d56e9f 5826 if (symbol_get_tc (sym)->symbol_class == XMC_TC0)
252b5132
RH
5827 {
5828 /* This is the TOC table. */
5829 know (strcmp (S_GET_NAME (sym), "TOC") == 0);
5830 a->x_csect.x_scnlen.l = 0;
5831 a->x_csect.x_smtyp = (2 << 3) | XTY_SD;
5832 }
809ffe0d 5833 else if (symbol_get_tc (sym)->subseg != 0)
252b5132
RH
5834 {
5835 /* This is a csect symbol. x_scnlen is the size of the
5836 csect. */
809ffe0d 5837 if (symbol_get_tc (sym)->next == (symbolS *) NULL)
252b5132
RH
5838 a->x_csect.x_scnlen.l = (bfd_section_size (stdoutput,
5839 S_GET_SEGMENT (sym))
5840 - S_GET_VALUE (sym));
5841 else
5842 {
6386f3a7 5843 resolve_symbol_value (symbol_get_tc (sym)->next);
809ffe0d 5844 a->x_csect.x_scnlen.l = (S_GET_VALUE (symbol_get_tc (sym)->next)
252b5132
RH
5845 - S_GET_VALUE (sym));
5846 }
809ffe0d 5847 a->x_csect.x_smtyp = (symbol_get_tc (sym)->align << 3) | XTY_SD;
252b5132
RH
5848 }
5849 else if (S_GET_SEGMENT (sym) == bss_section)
5850 {
5851 /* This is a common symbol. */
809ffe0d
ILT
5852 a->x_csect.x_scnlen.l = symbol_get_frag (sym)->fr_offset;
5853 a->x_csect.x_smtyp = (symbol_get_tc (sym)->align << 3) | XTY_CM;
252b5132 5854 if (S_IS_EXTERNAL (sym))
96d56e9f 5855 symbol_get_tc (sym)->symbol_class = XMC_RW;
252b5132 5856 else
96d56e9f 5857 symbol_get_tc (sym)->symbol_class = XMC_BS;
252b5132
RH
5858 }
5859 else if (S_GET_SEGMENT (sym) == absolute_section)
5860 {
5861 /* This is an absolute symbol. The csect will be created by
99a814a1 5862 ppc_adjust_symtab. */
b34976b6 5863 ppc_saw_abs = TRUE;
252b5132 5864 a->x_csect.x_smtyp = XTY_LD;
96d56e9f
NC
5865 if (symbol_get_tc (sym)->symbol_class == -1)
5866 symbol_get_tc (sym)->symbol_class = XMC_XO;
252b5132
RH
5867 }
5868 else if (! S_IS_DEFINED (sym))
5869 {
5870 /* This is an external symbol. */
5871 a->x_csect.x_scnlen.l = 0;
5872 a->x_csect.x_smtyp = XTY_ER;
5873 }
96d56e9f 5874 else if (symbol_get_tc (sym)->symbol_class == XMC_TC)
252b5132
RH
5875 {
5876 symbolS *next;
5877
5878 /* This is a TOC definition. x_scnlen is the size of the
5879 TOC entry. */
5880 next = symbol_next (sym);
96d56e9f 5881 while (symbol_get_tc (next)->symbol_class == XMC_TC0)
252b5132
RH
5882 next = symbol_next (next);
5883 if (next == (symbolS *) NULL
96d56e9f 5884 || symbol_get_tc (next)->symbol_class != XMC_TC)
252b5132
RH
5885 {
5886 if (ppc_after_toc_frag == (fragS *) NULL)
5887 a->x_csect.x_scnlen.l = (bfd_section_size (stdoutput,
5888 data_section)
5889 - S_GET_VALUE (sym));
5890 else
5891 a->x_csect.x_scnlen.l = (ppc_after_toc_frag->fr_address
5892 - S_GET_VALUE (sym));
5893 }
5894 else
5895 {
6386f3a7 5896 resolve_symbol_value (next);
252b5132
RH
5897 a->x_csect.x_scnlen.l = (S_GET_VALUE (next)
5898 - S_GET_VALUE (sym));
5899 }
5900 a->x_csect.x_smtyp = (2 << 3) | XTY_SD;
5901 }
5902 else
5903 {
5904 symbolS *csect;
5905
5906 /* This is a normal symbol definition. x_scnlen is the
5907 symbol index of the containing csect. */
5908 if (S_GET_SEGMENT (sym) == text_section)
5909 csect = ppc_text_csects;
5910 else if (S_GET_SEGMENT (sym) == data_section)
5911 csect = ppc_data_csects;
5912 else
5913 abort ();
5914
5915 /* Skip the initial dummy symbol. */
809ffe0d 5916 csect = symbol_get_tc (csect)->next;
252b5132
RH
5917
5918 if (csect == (symbolS *) NULL)
5919 {
5920 as_warn (_("warning: symbol %s has no csect"), S_GET_NAME (sym));
5921 a->x_csect.x_scnlen.l = 0;
5922 }
5923 else
5924 {
809ffe0d 5925 while (symbol_get_tc (csect)->next != (symbolS *) NULL)
252b5132 5926 {
6386f3a7 5927 resolve_symbol_value (symbol_get_tc (csect)->next);
809ffe0d
ILT
5928 if (S_GET_VALUE (symbol_get_tc (csect)->next)
5929 > S_GET_VALUE (sym))
252b5132 5930 break;
809ffe0d 5931 csect = symbol_get_tc (csect)->next;
252b5132
RH
5932 }
5933
809ffe0d
ILT
5934 a->x_csect.x_scnlen.p =
5935 coffsymbol (symbol_get_bfdsym (csect))->native;
5936 coffsymbol (symbol_get_bfdsym (sym))->native[i + 1].fix_scnlen =
5937 1;
252b5132
RH
5938 }
5939 a->x_csect.x_smtyp = XTY_LD;
5940 }
81d4177b 5941
252b5132
RH
5942 a->x_csect.x_parmhash = 0;
5943 a->x_csect.x_snhash = 0;
96d56e9f 5944 if (symbol_get_tc (sym)->symbol_class == -1)
252b5132
RH
5945 a->x_csect.x_smclas = XMC_PR;
5946 else
96d56e9f 5947 a->x_csect.x_smclas = symbol_get_tc (sym)->symbol_class;
252b5132
RH
5948 a->x_csect.x_stab = 0;
5949 a->x_csect.x_snstab = 0;
5950
5951 /* Don't let the COFF backend resort these symbols. */
809ffe0d 5952 symbol_get_bfdsym (sym)->flags |= BSF_NOT_AT_END;
252b5132
RH
5953 }
5954 else if (S_GET_STORAGE_CLASS (sym) == C_BSTAT)
5955 {
5956 /* We want the value to be the symbol index of the referenced
5957 csect symbol. BFD will do that for us if we set the right
5958 flags. */
b782de16
AM
5959 asymbol *bsym = symbol_get_bfdsym (symbol_get_tc (sym)->within);
5960 combined_entry_type *c = coffsymbol (bsym)->native;
5961
5962 S_SET_VALUE (sym, (valueT) (size_t) c);
809ffe0d 5963 coffsymbol (symbol_get_bfdsym (sym))->native->fix_value = 1;
252b5132
RH
5964 }
5965 else if (S_GET_STORAGE_CLASS (sym) == C_STSYM)
5966 {
5967 symbolS *block;
c734e7e3 5968 valueT base;
252b5132 5969
809ffe0d 5970 block = symbol_get_tc (sym)->within;
c734e7e3
TG
5971 if (block)
5972 {
5973 /* The value is the offset from the enclosing csect. */
5974 symbolS *csect;
5975
5976 csect = symbol_get_tc (block)->within;
5977 resolve_symbol_value (csect);
5978 base = S_GET_VALUE (csect);
5979 }
5980 else
5981 base = 0;
5982
5983 S_SET_VALUE (sym, S_GET_VALUE (sym) - base);
252b5132
RH
5984 }
5985 else if (S_GET_STORAGE_CLASS (sym) == C_BINCL
5986 || S_GET_STORAGE_CLASS (sym) == C_EINCL)
5987 {
5988 /* We want the value to be a file offset into the line numbers.
99a814a1
AM
5989 BFD will do that for us if we set the right flags. We have
5990 already set the value correctly. */
809ffe0d 5991 coffsymbol (symbol_get_bfdsym (sym))->native->fix_line = 1;
252b5132
RH
5992 }
5993
5994 return 0;
5995}
5996
5997/* Adjust the symbol table. This creates csect symbols for all
5998 absolute symbols. */
5999
6000void
98027b10 6001ppc_adjust_symtab (void)
252b5132
RH
6002{
6003 symbolS *sym;
6004
6005 if (! ppc_saw_abs)
6006 return;
6007
6008 for (sym = symbol_rootP; sym != NULL; sym = symbol_next (sym))
6009 {
6010 symbolS *csect;
6011 int i;
6012 union internal_auxent *a;
6013
6014 if (S_GET_SEGMENT (sym) != absolute_section)
6015 continue;
6016
6017 csect = symbol_create (".abs[XO]", absolute_section,
6018 S_GET_VALUE (sym), &zero_address_frag);
809ffe0d 6019 symbol_get_bfdsym (csect)->value = S_GET_VALUE (sym);
252b5132
RH
6020 S_SET_STORAGE_CLASS (csect, C_HIDEXT);
6021 i = S_GET_NUMBER_AUXILIARY (csect);
6022 S_SET_NUMBER_AUXILIARY (csect, i + 1);
809ffe0d 6023 a = &coffsymbol (symbol_get_bfdsym (csect))->native[i + 1].u.auxent;
252b5132
RH
6024 a->x_csect.x_scnlen.l = 0;
6025 a->x_csect.x_smtyp = XTY_SD;
6026 a->x_csect.x_parmhash = 0;
6027 a->x_csect.x_snhash = 0;
6028 a->x_csect.x_smclas = XMC_XO;
6029 a->x_csect.x_stab = 0;
6030 a->x_csect.x_snstab = 0;
6031
6032 symbol_insert (csect, sym, &symbol_rootP, &symbol_lastP);
6033
6034 i = S_GET_NUMBER_AUXILIARY (sym);
809ffe0d
ILT
6035 a = &coffsymbol (symbol_get_bfdsym (sym))->native[i].u.auxent;
6036 a->x_csect.x_scnlen.p = coffsymbol (symbol_get_bfdsym (csect))->native;
6037 coffsymbol (symbol_get_bfdsym (sym))->native[i].fix_scnlen = 1;
252b5132
RH
6038 }
6039
b34976b6 6040 ppc_saw_abs = FALSE;
252b5132
RH
6041}
6042
6043/* Set the VMA for a section. This is called on all the sections in
6044 turn. */
6045
6046void
98027b10 6047ppc_frob_section (asection *sec)
252b5132 6048{
931e13a6 6049 static bfd_vma vma = 0;
252b5132 6050
85645aed
TG
6051 /* Dwarf sections start at 0. */
6052 if (bfd_get_section_flags (NULL, sec) & SEC_DEBUGGING)
6053 return;
6054
931e13a6 6055 vma = md_section_align (sec, vma);
252b5132
RH
6056 bfd_set_section_vma (stdoutput, sec, vma);
6057 vma += bfd_section_size (stdoutput, sec);
6058}
6059
6060#endif /* OBJ_XCOFF */
6061\f
6d4af3c2 6062const char *
98027b10 6063md_atof (int type, char *litp, int *sizep)
252b5132 6064{
499ac353 6065 return ieee_md_atof (type, litp, sizep, target_big_endian);
252b5132
RH
6066}
6067
6068/* Write a value out to the object file, using the appropriate
6069 endianness. */
6070
6071void
98027b10 6072md_number_to_chars (char *buf, valueT val, int n)
252b5132
RH
6073{
6074 if (target_big_endian)
6075 number_to_chars_bigendian (buf, val, n);
6076 else
6077 number_to_chars_littleendian (buf, val, n);
6078}
6079
6080/* Align a section (I don't know why this is machine dependent). */
6081
6082valueT
3aeeedbb 6083md_section_align (asection *seg ATTRIBUTE_UNUSED, valueT addr)
252b5132 6084{
3aeeedbb
AM
6085#ifdef OBJ_ELF
6086 return addr;
6087#else
252b5132
RH
6088 int align = bfd_get_section_alignment (stdoutput, seg);
6089
8d3842cd 6090 return ((addr + (1 << align) - 1) & -(1 << align));
3aeeedbb 6091#endif
252b5132
RH
6092}
6093
6094/* We don't have any form of relaxing. */
6095
6096int
98027b10
AM
6097md_estimate_size_before_relax (fragS *fragp ATTRIBUTE_UNUSED,
6098 asection *seg ATTRIBUTE_UNUSED)
252b5132
RH
6099{
6100 abort ();
6101 return 0;
6102}
6103
6104/* Convert a machine dependent frag. We never generate these. */
6105
6106void
98027b10
AM
6107md_convert_frag (bfd *abfd ATTRIBUTE_UNUSED,
6108 asection *sec ATTRIBUTE_UNUSED,
6109 fragS *fragp ATTRIBUTE_UNUSED)
252b5132
RH
6110{
6111 abort ();
6112}
6113
6114/* We have no need to default values of symbols. */
6115
252b5132 6116symbolS *
98027b10 6117md_undefined_symbol (char *name ATTRIBUTE_UNUSED)
252b5132
RH
6118{
6119 return 0;
6120}
6121\f
6122/* Functions concerning relocs. */
6123
6124/* The location from which a PC relative jump should be calculated,
6125 given a PC relative reloc. */
6126
6127long
98027b10 6128md_pcrel_from_section (fixS *fixp, segT sec ATTRIBUTE_UNUSED)
252b5132
RH
6129{
6130 return fixp->fx_frag->fr_address + fixp->fx_where;
6131}
6132
6133#ifdef OBJ_XCOFF
6134
6135/* This is called to see whether a fixup should be adjusted to use a
6136 section symbol. We take the opportunity to change a fixup against
6137 a symbol in the TOC subsegment into a reloc against the
6138 corresponding .tc symbol. */
6139
6140int
98027b10 6141ppc_fix_adjustable (fixS *fix)
252b5132 6142{
b782de16
AM
6143 valueT val = resolve_symbol_value (fix->fx_addsy);
6144 segT symseg = S_GET_SEGMENT (fix->fx_addsy);
6145 TC_SYMFIELD_TYPE *tc;
6146
6147 if (symseg == absolute_section)
6148 return 0;
252b5132 6149
85645aed
TG
6150 /* Always adjust symbols in debugging sections. */
6151 if (bfd_get_section_flags (stdoutput, symseg) & SEC_DEBUGGING)
6152 return 1;
6153
252b5132 6154 if (ppc_toc_csect != (symbolS *) NULL
252b5132 6155 && fix->fx_addsy != ppc_toc_csect
b782de16 6156 && symseg == data_section
252b5132
RH
6157 && val >= ppc_toc_frag->fr_address
6158 && (ppc_after_toc_frag == (fragS *) NULL
6159 || val < ppc_after_toc_frag->fr_address))
6160 {
6161 symbolS *sy;
6162
6163 for (sy = symbol_next (ppc_toc_csect);
6164 sy != (symbolS *) NULL;
6165 sy = symbol_next (sy))
6166 {
b782de16
AM
6167 TC_SYMFIELD_TYPE *sy_tc = symbol_get_tc (sy);
6168
96d56e9f 6169 if (sy_tc->symbol_class == XMC_TC0)
252b5132 6170 continue;
96d56e9f 6171 if (sy_tc->symbol_class != XMC_TC)
252b5132 6172 break;
b782de16 6173 if (val == resolve_symbol_value (sy))
252b5132
RH
6174 {
6175 fix->fx_addsy = sy;
6176 fix->fx_addnumber = val - ppc_toc_frag->fr_address;
6177 return 0;
6178 }
6179 }
6180
6181 as_bad_where (fix->fx_file, fix->fx_line,
6182 _("symbol in .toc does not match any .tc"));
6183 }
6184
6185 /* Possibly adjust the reloc to be against the csect. */
b782de16
AM
6186 tc = symbol_get_tc (fix->fx_addsy);
6187 if (tc->subseg == 0
96d56e9f
NC
6188 && tc->symbol_class != XMC_TC0
6189 && tc->symbol_class != XMC_TC
b782de16 6190 && symseg != bss_section
252b5132 6191 /* Don't adjust if this is a reloc in the toc section. */
b782de16 6192 && (symseg != data_section
252b5132
RH
6193 || ppc_toc_csect == NULL
6194 || val < ppc_toc_frag->fr_address
6195 || (ppc_after_toc_frag != NULL
6196 && val >= ppc_after_toc_frag->fr_address)))
6197 {
2fb4b302 6198 symbolS *csect = tc->within;
252b5132 6199
2fb4b302
TG
6200 /* If the symbol was not declared by a label (eg: a section symbol),
6201 use the section instead of the csect. This doesn't happen in
6202 normal AIX assembly code. */
6203 if (csect == NULL)
6204 csect = seg_info (symseg)->sym;
252b5132 6205
2fb4b302
TG
6206 fix->fx_offset += val - symbol_get_frag (csect)->fr_address;
6207 fix->fx_addsy = csect;
252b5132 6208
b782de16 6209 return 0;
252b5132
RH
6210 }
6211
6212 /* Adjust a reloc against a .lcomm symbol to be against the base
6213 .lcomm. */
b782de16 6214 if (symseg == bss_section
252b5132
RH
6215 && ! S_IS_EXTERNAL (fix->fx_addsy))
6216 {
b782de16
AM
6217 symbolS *sy = symbol_get_frag (fix->fx_addsy)->fr_symbol;
6218
6219 fix->fx_offset += val - resolve_symbol_value (sy);
6220 fix->fx_addsy = sy;
252b5132
RH
6221 }
6222
6223 return 0;
6224}
6225
6226/* A reloc from one csect to another must be kept. The assembler
6227 will, of course, keep relocs between sections, and it will keep
6228 absolute relocs, but we need to force it to keep PC relative relocs
6229 between two csects in the same section. */
6230
6231int
98027b10 6232ppc_force_relocation (fixS *fix)
252b5132
RH
6233{
6234 /* At this point fix->fx_addsy should already have been converted to
6235 a csect symbol. If the csect does not include the fragment, then
6236 we need to force the relocation. */
6237 if (fix->fx_pcrel
6238 && fix->fx_addsy != NULL
809ffe0d
ILT
6239 && symbol_get_tc (fix->fx_addsy)->subseg != 0
6240 && ((symbol_get_frag (fix->fx_addsy)->fr_address
6241 > fix->fx_frag->fr_address)
6242 || (symbol_get_tc (fix->fx_addsy)->next != NULL
6243 && (symbol_get_frag (symbol_get_tc (fix->fx_addsy)->next)->fr_address
252b5132
RH
6244 <= fix->fx_frag->fr_address))))
6245 return 1;
6246
ae6063d4 6247 return generic_force_reloc (fix);
252b5132
RH
6248}
6249
2fb4b302
TG
6250void
6251ppc_new_dot_label (symbolS *sym)
6252{
6253 /* Anchor this label to the current csect for relocations. */
6254 symbol_get_tc (sym)->within = ppc_current_csect;
6255}
6256
252b5132
RH
6257#endif /* OBJ_XCOFF */
6258
0baf16f2 6259#ifdef OBJ_ELF
a161fe53
AM
6260/* If this function returns non-zero, it guarantees that a relocation
6261 will be emitted for a fixup. */
6262
6263int
98027b10 6264ppc_force_relocation (fixS *fix)
a161fe53
AM
6265{
6266 /* Branch prediction relocations must force a relocation, as must
6267 the vtable description relocs. */
6268 switch (fix->fx_r_type)
6269 {
6270 case BFD_RELOC_PPC_B16_BRTAKEN:
6271 case BFD_RELOC_PPC_B16_BRNTAKEN:
6272 case BFD_RELOC_PPC_BA16_BRTAKEN:
6273 case BFD_RELOC_PPC_BA16_BRNTAKEN:
c744ecf2 6274 case BFD_RELOC_24_PLT_PCREL:
a161fe53 6275 case BFD_RELOC_PPC64_TOC:
a161fe53 6276 return 1;
6911b7dc
AM
6277 case BFD_RELOC_PPC_B26:
6278 case BFD_RELOC_PPC_BA26:
6279 case BFD_RELOC_PPC_B16:
6280 case BFD_RELOC_PPC_BA16:
6281 /* All branch fixups targeting a localentry symbol must
6282 force a relocation. */
6283 if (fix->fx_addsy)
6284 {
6285 asymbol *bfdsym = symbol_get_bfdsym (fix->fx_addsy);
6286 elf_symbol_type *elfsym
6287 = elf_symbol_from (bfd_asymbol_bfd (bfdsym), bfdsym);
6288 gas_assert (elfsym);
6289 if ((STO_PPC64_LOCAL_MASK & elfsym->internal_elf_sym.st_other) != 0)
6290 return 1;
6291 }
6292 break;
a161fe53
AM
6293 default:
6294 break;
6295 }
6296
cdba85ec
AM
6297 if (fix->fx_r_type >= BFD_RELOC_PPC_TLS
6298 && fix->fx_r_type <= BFD_RELOC_PPC64_DTPREL16_HIGHESTA)
6299 return 1;
6300
ae6063d4 6301 return generic_force_reloc (fix);
a161fe53
AM
6302}
6303
0baf16f2 6304int
98027b10 6305ppc_fix_adjustable (fixS *fix)
252b5132 6306{
6911b7dc
AM
6307 switch (fix->fx_r_type)
6308 {
6309 /* All branch fixups targeting a localentry symbol must
6310 continue using the symbol. */
6311 case BFD_RELOC_PPC_B26:
6312 case BFD_RELOC_PPC_BA26:
6313 case BFD_RELOC_PPC_B16:
6314 case BFD_RELOC_PPC_BA16:
6315 case BFD_RELOC_PPC_B16_BRTAKEN:
6316 case BFD_RELOC_PPC_B16_BRNTAKEN:
6317 case BFD_RELOC_PPC_BA16_BRTAKEN:
6318 case BFD_RELOC_PPC_BA16_BRNTAKEN:
6319 if (fix->fx_addsy)
6320 {
6321 asymbol *bfdsym = symbol_get_bfdsym (fix->fx_addsy);
6322 elf_symbol_type *elfsym
6323 = elf_symbol_from (bfd_asymbol_bfd (bfdsym), bfdsym);
6324 gas_assert (elfsym);
6325 if ((STO_PPC64_LOCAL_MASK & elfsym->internal_elf_sym.st_other) != 0)
6326 return 0;
6327 }
6328 break;
6329 default:
6330 break;
6331 }
6332
0baf16f2
AM
6333 return (fix->fx_r_type != BFD_RELOC_16_GOTOFF
6334 && fix->fx_r_type != BFD_RELOC_LO16_GOTOFF
6335 && fix->fx_r_type != BFD_RELOC_HI16_GOTOFF
6336 && fix->fx_r_type != BFD_RELOC_HI16_S_GOTOFF
cc9edbf3
AM
6337 && fix->fx_r_type != BFD_RELOC_PPC64_GOT16_DS
6338 && fix->fx_r_type != BFD_RELOC_PPC64_GOT16_LO_DS
0baf16f2
AM
6339 && fix->fx_r_type != BFD_RELOC_GPREL16
6340 && fix->fx_r_type != BFD_RELOC_VTABLE_INHERIT
6341 && fix->fx_r_type != BFD_RELOC_VTABLE_ENTRY
cdba85ec 6342 && !(fix->fx_r_type >= BFD_RELOC_PPC_TLS
ab1e9ef7 6343 && fix->fx_r_type <= BFD_RELOC_PPC64_DTPREL16_HIGHESTA));
252b5132 6344}
0baf16f2 6345#endif
252b5132 6346
b9c361e0
JL
6347void
6348ppc_frag_check (struct frag *fragP)
6349{
6350 if (!fragP->has_code)
6351 return;
6352
6353 if (ppc_mach() == bfd_mach_ppc_vle)
6354 {
6355 if (((fragP->fr_address + fragP->insn_addr) & 1) != 0)
6356 as_bad (_("instruction address is not a multiple of 2"));
6357 }
6358 else
6359 {
6360 if (((fragP->fr_address + fragP->insn_addr) & 3) != 0)
6361 as_bad (_("instruction address is not a multiple of 4"));
6362 }
6363}
6364
3aeeedbb
AM
6365/* Implement HANDLE_ALIGN. This writes the NOP pattern into an
6366 rs_align_code frag. */
6367
6368void
6369ppc_handle_align (struct frag *fragP)
6370{
6371 valueT count = (fragP->fr_next->fr_address
6372 - (fragP->fr_address + fragP->fr_fix));
6373
b9c361e0
JL
6374 if (ppc_mach() == bfd_mach_ppc_vle && count != 0 && (count & 1) == 0)
6375 {
6376 char *dest = fragP->fr_literal + fragP->fr_fix;
6377
6378 fragP->fr_var = 2;
6379 md_number_to_chars (dest, 0x4400, 2);
6380 }
6381 else if (count != 0 && (count & 3) == 0)
3aeeedbb
AM
6382 {
6383 char *dest = fragP->fr_literal + fragP->fr_fix;
6384
6385 fragP->fr_var = 4;
cef4f754
AM
6386
6387 if (count > 4 * nop_limit && count < 0x2000000)
6388 {
6389 struct frag *rest;
6390
6391 /* Make a branch, then follow with nops. Insert another
6392 frag to handle the nops. */
6393 md_number_to_chars (dest, 0x48000000 + count, 4);
6394 count -= 4;
6395 if (count == 0)
6396 return;
6397
6398 rest = xmalloc (SIZEOF_STRUCT_FRAG + 4);
6399 memcpy (rest, fragP, SIZEOF_STRUCT_FRAG);
6400 fragP->fr_next = rest;
6401 fragP = rest;
6402 rest->fr_address += rest->fr_fix + 4;
6403 rest->fr_fix = 0;
6404 /* If we leave the next frag as rs_align_code we'll come here
6405 again, resulting in a bunch of branches rather than a
6406 branch followed by nops. */
6407 rest->fr_type = rs_align;
6408 dest = rest->fr_literal;
6409 }
6410
3aeeedbb
AM
6411 md_number_to_chars (dest, 0x60000000, 4);
6412
42240548 6413 if ((ppc_cpu & PPC_OPCODE_POWER6) != 0
5817ffd1 6414 || (ppc_cpu & PPC_OPCODE_POWER7) != 0
a680de9a
PB
6415 || (ppc_cpu & PPC_OPCODE_POWER8) != 0
6416 || (ppc_cpu & PPC_OPCODE_POWER9) != 0)
3aeeedbb 6417 {
a680de9a
PB
6418 /* For power6, power7, power8 and power9, we want the last nop to be
6419 a group terminating one. Do this by inserting an rs_fill frag
6420 immediately after this one, with its address set to the last nop
6421 location. This will automatically reduce the number of nops in
6422 the current frag by one. */
3aeeedbb
AM
6423 if (count > 4)
6424 {
6425 struct frag *group_nop = xmalloc (SIZEOF_STRUCT_FRAG + 4);
6426
6427 memcpy (group_nop, fragP, SIZEOF_STRUCT_FRAG);
6428 group_nop->fr_address = group_nop->fr_next->fr_address - 4;
6429 group_nop->fr_fix = 0;
6430 group_nop->fr_offset = 1;
6431 group_nop->fr_type = rs_fill;
6432 fragP->fr_next = group_nop;
6433 dest = group_nop->fr_literal;
6434 }
6435
5817ffd1 6436 if ((ppc_cpu & PPC_OPCODE_POWER7) != 0
a680de9a
PB
6437 || (ppc_cpu & PPC_OPCODE_POWER8) != 0
6438 || (ppc_cpu & PPC_OPCODE_POWER9) != 0)
aea77599
AM
6439 {
6440 if (ppc_cpu & PPC_OPCODE_E500MC)
6441 /* e500mc group terminating nop: "ori 0,0,0". */
6442 md_number_to_chars (dest, 0x60000000, 4);
6443 else
a680de9a 6444 /* power7/power8/power9 group terminating nop: "ori 2,2,0". */
aea77599
AM
6445 md_number_to_chars (dest, 0x60420000, 4);
6446 }
42240548
PB
6447 else
6448 /* power6 group terminating nop: "ori 1,1,0". */
6449 md_number_to_chars (dest, 0x60210000, 4);
3aeeedbb
AM
6450 }
6451 }
6452}
6453
252b5132 6454/* Apply a fixup to the object code. This is called for all the
3b8b57a9 6455 fixups we generated by the calls to fix_new_exp, above. */
252b5132 6456
94f592af 6457void
62ebcb5c 6458md_apply_fix (fixS *fixP, valueT *valP, segT seg)
252b5132 6459{
94f592af 6460 valueT value = * valP;
5656a981
AM
6461 offsetT fieldval;
6462 const struct powerpc_operand *operand;
252b5132
RH
6463
6464#ifdef OBJ_ELF
94f592af 6465 if (fixP->fx_addsy != NULL)
252b5132 6466 {
a161fe53 6467 /* Hack around bfd_install_relocation brain damage. */
94f592af
NC
6468 if (fixP->fx_pcrel)
6469 value += fixP->fx_frag->fr_address + fixP->fx_where;
a680de9a
PB
6470
6471 if (fixP->fx_addsy == abs_section_sym)
6472 fixP->fx_done = 1;
252b5132
RH
6473 }
6474 else
94f592af 6475 fixP->fx_done = 1;
252b5132 6476#else
a161fe53 6477 /* FIXME FIXME FIXME: The value we are passed in *valP includes
7be1c489
AM
6478 the symbol values. If we are doing this relocation the code in
6479 write.c is going to call bfd_install_relocation, which is also
6480 going to use the symbol value. That means that if the reloc is
6481 fully resolved we want to use *valP since bfd_install_relocation is
6482 not being used.
9f0eb232
RS
6483 However, if the reloc is not fully resolved we do not want to
6484 use *valP, and must use fx_offset instead. If the relocation
6485 is PC-relative, we then need to re-apply md_pcrel_from_section
6486 to this new relocation value. */
94f592af
NC
6487 if (fixP->fx_addsy == (symbolS *) NULL)
6488 fixP->fx_done = 1;
6489
252b5132 6490 else
9f0eb232
RS
6491 {
6492 value = fixP->fx_offset;
6493 if (fixP->fx_pcrel)
6494 value -= md_pcrel_from_section (fixP, seg);
6495 }
a161fe53
AM
6496#endif
6497
6498 if (fixP->fx_subsy != (symbolS *) NULL)
252b5132 6499 {
a161fe53
AM
6500 /* We can't actually support subtracting a symbol. */
6501 as_bad_where (fixP->fx_file, fixP->fx_line, _("expression too complex"));
252b5132 6502 }
252b5132 6503
5656a981 6504 operand = NULL;
3b8b57a9 6505 if (fixP->fx_pcrel_adjust != 0)
252b5132 6506 {
5656a981 6507 /* This is a fixup on an instruction. */
3b8b57a9 6508 int opindex = fixP->fx_pcrel_adjust & 0xff;
252b5132 6509
5656a981 6510 operand = &powerpc_operands[opindex];
252b5132 6511#ifdef OBJ_XCOFF
0baf16f2
AM
6512 /* An instruction like `lwz 9,sym(30)' when `sym' is not a TOC symbol
6513 does not generate a reloc. It uses the offset of `sym' within its
6514 csect. Other usages, such as `.long sym', generate relocs. This
6515 is the documented behaviour of non-TOC symbols. */
252b5132 6516 if ((operand->flags & PPC_OPERAND_PARENS) != 0
b84bf58a 6517 && (operand->bitm & 0xfff0) == 0xfff0
252b5132 6518 && operand->shift == 0
2b3c4602 6519 && (operand->insert == NULL || ppc_obj64)
94f592af
NC
6520 && fixP->fx_addsy != NULL
6521 && symbol_get_tc (fixP->fx_addsy)->subseg != 0
96d56e9f
NC
6522 && symbol_get_tc (fixP->fx_addsy)->symbol_class != XMC_TC
6523 && symbol_get_tc (fixP->fx_addsy)->symbol_class != XMC_TC0
94f592af 6524 && S_GET_SEGMENT (fixP->fx_addsy) != bss_section)
252b5132 6525 {
94f592af
NC
6526 value = fixP->fx_offset;
6527 fixP->fx_done = 1;
252b5132 6528 }
ac21e7da
TG
6529
6530 /* During parsing of instructions, a TOC16 reloc is generated for
6531 instructions such as 'lwz RT,SYM(RB)' if SYM is a symbol defined
6532 in the toc. But at parse time, SYM may be not yet defined, so
6533 check again here. */
6534 if (fixP->fx_r_type == BFD_RELOC_16
6535 && fixP->fx_addsy != NULL
6536 && ppc_is_toc_sym (fixP->fx_addsy))
6537 fixP->fx_r_type = BFD_RELOC_PPC_TOC16;
252b5132 6538#endif
5656a981
AM
6539 }
6540
6541 /* Calculate value to be stored in field. */
6542 fieldval = value;
6543 switch (fixP->fx_r_type)
6544 {
1ec2d25e 6545#ifdef OBJ_ELF
5656a981
AM
6546 case BFD_RELOC_PPC64_ADDR16_LO_DS:
6547 case BFD_RELOC_PPC_VLE_LO16A:
6548 case BFD_RELOC_PPC_VLE_LO16D:
1ec2d25e 6549#endif
5656a981
AM
6550 case BFD_RELOC_LO16:
6551 case BFD_RELOC_LO16_PCREL:
6552 fieldval = value & 0xffff;
6553 sign_extend_16:
6554 if (operand != NULL && (operand->flags & PPC_OPERAND_SIGNED) != 0)
f9c6b907 6555 fieldval = SEX16 (fieldval);
5656a981
AM
6556 fixP->fx_no_overflow = 1;
6557 break;
3c9d25f4 6558
f9c6b907
AM
6559 case BFD_RELOC_HI16:
6560 case BFD_RELOC_HI16_PCREL:
5656a981 6561#ifdef OBJ_ELF
f9c6b907
AM
6562 if (REPORT_OVERFLOW_HI && ppc_obj64)
6563 {
6564 fieldval = value >> 16;
6565 if (operand != NULL && (operand->flags & PPC_OPERAND_SIGNED) != 0)
6566 {
6567 valueT sign = (((valueT) -1 >> 16) + 1) >> 1;
6568 fieldval = ((valueT) fieldval ^ sign) - sign;
6569 }
6570 break;
6571 }
6572 /* Fall thru */
6573
5656a981
AM
6574 case BFD_RELOC_PPC_VLE_HI16A:
6575 case BFD_RELOC_PPC_VLE_HI16D:
f9c6b907 6576 case BFD_RELOC_PPC64_ADDR16_HIGH:
5656a981 6577#endif
5656a981
AM
6578 fieldval = PPC_HI (value);
6579 goto sign_extend_16;
0baf16f2 6580
f9c6b907
AM
6581 case BFD_RELOC_HI16_S:
6582 case BFD_RELOC_HI16_S_PCREL:
a680de9a 6583 case BFD_RELOC_PPC_REL16DX_HA:
5656a981 6584#ifdef OBJ_ELF
f9c6b907
AM
6585 if (REPORT_OVERFLOW_HI && ppc_obj64)
6586 {
6587 fieldval = (value + 0x8000) >> 16;
6588 if (operand != NULL && (operand->flags & PPC_OPERAND_SIGNED) != 0)
6589 {
6590 valueT sign = (((valueT) -1 >> 16) + 1) >> 1;
6591 fieldval = ((valueT) fieldval ^ sign) - sign;
6592 }
6593 break;
6594 }
6595 /* Fall thru */
6596
5656a981
AM
6597 case BFD_RELOC_PPC_VLE_HA16A:
6598 case BFD_RELOC_PPC_VLE_HA16D:
f9c6b907 6599 case BFD_RELOC_PPC64_ADDR16_HIGHA:
5656a981 6600#endif
5656a981
AM
6601 fieldval = PPC_HA (value);
6602 goto sign_extend_16;
0baf16f2 6603
3b8b57a9 6604#ifdef OBJ_ELF
5656a981
AM
6605 case BFD_RELOC_PPC64_HIGHER:
6606 fieldval = PPC_HIGHER (value);
6607 goto sign_extend_16;
252b5132 6608
5656a981
AM
6609 case BFD_RELOC_PPC64_HIGHER_S:
6610 fieldval = PPC_HIGHERA (value);
6611 goto sign_extend_16;
0baf16f2 6612
5656a981
AM
6613 case BFD_RELOC_PPC64_HIGHEST:
6614 fieldval = PPC_HIGHEST (value);
6615 goto sign_extend_16;
0baf16f2 6616
5656a981
AM
6617 case BFD_RELOC_PPC64_HIGHEST_S:
6618 fieldval = PPC_HIGHESTA (value);
6619 goto sign_extend_16;
6620#endif
6621
6622 default:
6623 break;
6624 }
6625
6626 if (operand != NULL)
6627 {
6628 /* Handle relocs in an insn. */
5656a981
AM
6629 switch (fixP->fx_r_type)
6630 {
7fa9fcb6 6631#ifdef OBJ_ELF
3b8b57a9
AM
6632 /* The following relocs can't be calculated by the assembler.
6633 Leave the field zero. */
cdba85ec
AM
6634 case BFD_RELOC_PPC_TPREL16:
6635 case BFD_RELOC_PPC_TPREL16_LO:
6636 case BFD_RELOC_PPC_TPREL16_HI:
6637 case BFD_RELOC_PPC_TPREL16_HA:
cdba85ec
AM
6638 case BFD_RELOC_PPC_DTPREL16:
6639 case BFD_RELOC_PPC_DTPREL16_LO:
6640 case BFD_RELOC_PPC_DTPREL16_HI:
6641 case BFD_RELOC_PPC_DTPREL16_HA:
cdba85ec
AM
6642 case BFD_RELOC_PPC_GOT_TLSGD16:
6643 case BFD_RELOC_PPC_GOT_TLSGD16_LO:
6644 case BFD_RELOC_PPC_GOT_TLSGD16_HI:
6645 case BFD_RELOC_PPC_GOT_TLSGD16_HA:
6646 case BFD_RELOC_PPC_GOT_TLSLD16:
6647 case BFD_RELOC_PPC_GOT_TLSLD16_LO:
6648 case BFD_RELOC_PPC_GOT_TLSLD16_HI:
6649 case BFD_RELOC_PPC_GOT_TLSLD16_HA:
6650 case BFD_RELOC_PPC_GOT_TPREL16:
6651 case BFD_RELOC_PPC_GOT_TPREL16_LO:
6652 case BFD_RELOC_PPC_GOT_TPREL16_HI:
6653 case BFD_RELOC_PPC_GOT_TPREL16_HA:
6654 case BFD_RELOC_PPC_GOT_DTPREL16:
6655 case BFD_RELOC_PPC_GOT_DTPREL16_LO:
6656 case BFD_RELOC_PPC_GOT_DTPREL16_HI:
6657 case BFD_RELOC_PPC_GOT_DTPREL16_HA:
6658 case BFD_RELOC_PPC64_TPREL16_DS:
6659 case BFD_RELOC_PPC64_TPREL16_LO_DS:
f9c6b907
AM
6660 case BFD_RELOC_PPC64_TPREL16_HIGH:
6661 case BFD_RELOC_PPC64_TPREL16_HIGHA:
cdba85ec
AM
6662 case BFD_RELOC_PPC64_TPREL16_HIGHER:
6663 case BFD_RELOC_PPC64_TPREL16_HIGHERA:
6664 case BFD_RELOC_PPC64_TPREL16_HIGHEST:
6665 case BFD_RELOC_PPC64_TPREL16_HIGHESTA:
f9c6b907
AM
6666 case BFD_RELOC_PPC64_DTPREL16_HIGH:
6667 case BFD_RELOC_PPC64_DTPREL16_HIGHA:
cdba85ec
AM
6668 case BFD_RELOC_PPC64_DTPREL16_DS:
6669 case BFD_RELOC_PPC64_DTPREL16_LO_DS:
6670 case BFD_RELOC_PPC64_DTPREL16_HIGHER:
6671 case BFD_RELOC_PPC64_DTPREL16_HIGHERA:
6672 case BFD_RELOC_PPC64_DTPREL16_HIGHEST:
6673 case BFD_RELOC_PPC64_DTPREL16_HIGHESTA:
3b8b57a9 6674 gas_assert (fixP->fx_addsy != NULL);
7c1d0959 6675 S_SET_THREAD_LOCAL (fixP->fx_addsy);
3b8b57a9 6676 fieldval = 0;
cdba85ec 6677 break;
3b8b57a9
AM
6678
6679 /* These also should leave the field zero for the same
6680 reason. Note that older versions of gas wrote values
6681 here. If we want to go back to the old behaviour, then
6682 all _LO and _LO_DS cases will need to be treated like
6683 BFD_RELOC_LO16_PCREL above. Similarly for _HI etc. */
6684 case BFD_RELOC_16_GOTOFF:
6685 case BFD_RELOC_LO16_GOTOFF:
6686 case BFD_RELOC_HI16_GOTOFF:
6687 case BFD_RELOC_HI16_S_GOTOFF:
6688 case BFD_RELOC_LO16_PLTOFF:
6689 case BFD_RELOC_HI16_PLTOFF:
6690 case BFD_RELOC_HI16_S_PLTOFF:
6691 case BFD_RELOC_GPREL16:
6692 case BFD_RELOC_16_BASEREL:
6693 case BFD_RELOC_LO16_BASEREL:
6694 case BFD_RELOC_HI16_BASEREL:
6695 case BFD_RELOC_HI16_S_BASEREL:
6696 case BFD_RELOC_PPC_TOC16:
6697 case BFD_RELOC_PPC64_TOC16_LO:
6698 case BFD_RELOC_PPC64_TOC16_HI:
6699 case BFD_RELOC_PPC64_TOC16_HA:
6700 case BFD_RELOC_PPC64_PLTGOT16:
6701 case BFD_RELOC_PPC64_PLTGOT16_LO:
6702 case BFD_RELOC_PPC64_PLTGOT16_HI:
6703 case BFD_RELOC_PPC64_PLTGOT16_HA:
6704 case BFD_RELOC_PPC64_GOT16_DS:
6705 case BFD_RELOC_PPC64_GOT16_LO_DS:
6706 case BFD_RELOC_PPC64_PLT16_LO_DS:
6707 case BFD_RELOC_PPC64_SECTOFF_DS:
6708 case BFD_RELOC_PPC64_SECTOFF_LO_DS:
6709 case BFD_RELOC_PPC64_TOC16_DS:
6710 case BFD_RELOC_PPC64_TOC16_LO_DS:
6711 case BFD_RELOC_PPC64_PLTGOT16_DS:
6712 case BFD_RELOC_PPC64_PLTGOT16_LO_DS:
6713 case BFD_RELOC_PPC_EMB_NADDR16:
6714 case BFD_RELOC_PPC_EMB_NADDR16_LO:
6715 case BFD_RELOC_PPC_EMB_NADDR16_HI:
6716 case BFD_RELOC_PPC_EMB_NADDR16_HA:
6717 case BFD_RELOC_PPC_EMB_SDAI16:
6718 case BFD_RELOC_PPC_EMB_SDA2I16:
6719 case BFD_RELOC_PPC_EMB_SDA2REL:
252b5132 6720 case BFD_RELOC_PPC_EMB_SDA21:
3b8b57a9
AM
6721 case BFD_RELOC_PPC_EMB_MRKREF:
6722 case BFD_RELOC_PPC_EMB_RELSEC16:
6723 case BFD_RELOC_PPC_EMB_RELST_LO:
6724 case BFD_RELOC_PPC_EMB_RELST_HI:
6725 case BFD_RELOC_PPC_EMB_RELST_HA:
6726 case BFD_RELOC_PPC_EMB_BIT_FLD:
6727 case BFD_RELOC_PPC_EMB_RELSDA:
6728 case BFD_RELOC_PPC_VLE_SDA21:
6729 case BFD_RELOC_PPC_VLE_SDA21_LO:
6730 case BFD_RELOC_PPC_VLE_SDAREL_LO16A:
6731 case BFD_RELOC_PPC_VLE_SDAREL_LO16D:
6732 case BFD_RELOC_PPC_VLE_SDAREL_HI16A:
6733 case BFD_RELOC_PPC_VLE_SDAREL_HI16D:
6734 case BFD_RELOC_PPC_VLE_SDAREL_HA16A:
6735 case BFD_RELOC_PPC_VLE_SDAREL_HA16D:
6736 gas_assert (fixP->fx_addsy != NULL);
6737 /* Fall thru */
6738
6739 case BFD_RELOC_PPC_TLS:
6740 case BFD_RELOC_PPC_TLSGD:
6741 case BFD_RELOC_PPC_TLSLD:
6742 fieldval = 0;
3b8b57a9 6743 break;
7fa9fcb6
TG
6744#endif
6745
6746#ifdef OBJ_XCOFF
6747 case BFD_RELOC_PPC_B16:
6748 /* Adjust the offset to the instruction boundary. */
6749 fieldval += 2;
6750 break;
6751#endif
252b5132 6752
f728387b
AM
6753 case BFD_RELOC_VTABLE_INHERIT:
6754 case BFD_RELOC_VTABLE_ENTRY:
6755 case BFD_RELOC_PPC_DTPMOD:
6756 case BFD_RELOC_PPC_TPREL:
6757 case BFD_RELOC_PPC_DTPREL:
6758 case BFD_RELOC_PPC_COPY:
6759 case BFD_RELOC_PPC_GLOB_DAT:
6760 case BFD_RELOC_32_PLT_PCREL:
6761 case BFD_RELOC_PPC_EMB_NADDR32:
6762 case BFD_RELOC_PPC64_TOC:
6763 case BFD_RELOC_CTOR:
6764 case BFD_RELOC_32:
6765 case BFD_RELOC_32_PCREL:
6766 case BFD_RELOC_RVA:
6767 case BFD_RELOC_64:
6768 case BFD_RELOC_64_PCREL:
6769 case BFD_RELOC_PPC64_ADDR64_LOCAL:
6770 as_bad_where (fixP->fx_file, fixP->fx_line,
6771 _("%s unsupported as instruction fixup"),
6772 bfd_get_reloc_code_name (fixP->fx_r_type));
6773 fixP->fx_done = 1;
6774 return;
6775
3b8b57a9 6776 default:
252b5132 6777 break;
3b8b57a9 6778 }
252b5132 6779
3b8b57a9
AM
6780#ifdef OBJ_ELF
6781/* powerpc uses RELA style relocs, so if emitting a reloc the field
6782 contents can stay at zero. */
6783#define APPLY_RELOC fixP->fx_done
6784#else
6785#define APPLY_RELOC 1
6786#endif
6787 if ((fieldval != 0 && APPLY_RELOC) || operand->insert != NULL)
6788 {
487b24d8
AM
6789 unsigned long insn;
6790 unsigned char *where;
6791
3b8b57a9
AM
6792 /* Fetch the instruction, insert the fully resolved operand
6793 value, and stuff the instruction back again. */
487b24d8 6794 where = (unsigned char *) fixP->fx_frag->fr_literal + fixP->fx_where;
3b8b57a9 6795 if (target_big_endian)
31a91399 6796 {
3b8b57a9 6797 if (fixP->fx_size == 4)
487b24d8 6798 insn = bfd_getb32 (where);
31a91399 6799 else
487b24d8 6800 insn = bfd_getb16 (where);
31a91399
NC
6801 }
6802 else
3b8b57a9
AM
6803 {
6804 if (fixP->fx_size == 4)
487b24d8 6805 insn = bfd_getl32 (where);
3b8b57a9 6806 else
487b24d8 6807 insn = bfd_getl16 (where);
3b8b57a9
AM
6808 }
6809 insn = ppc_insert_operand (insn, operand, fieldval,
6810 fixP->tc_fix_data.ppc_cpu,
6811 fixP->fx_file, fixP->fx_line);
6812 if (target_big_endian)
6813 {
6814 if (fixP->fx_size == 4)
487b24d8 6815 bfd_putb32 (insn, where);
3b8b57a9 6816 else
487b24d8 6817 bfd_putb16 (insn, where);
3b8b57a9
AM
6818 }
6819 else
6820 {
6821 if (fixP->fx_size == 4)
487b24d8 6822 bfd_putl32 (insn, where);
3b8b57a9 6823 else
487b24d8 6824 bfd_putl16 (insn, where);
3b8b57a9
AM
6825 }
6826 }
6827
6828 if (fixP->fx_done)
6829 /* Nothing else to do here. */
6830 return;
6831
6832 gas_assert (fixP->fx_addsy != NULL);
62ebcb5c 6833 if (fixP->fx_r_type == BFD_RELOC_NONE)
3b8b57a9 6834 {
3b4dbbbf 6835 const char *sfile;
3b8b57a9
AM
6836 unsigned int sline;
6837
6838 /* Use expr_symbol_where to see if this is an expression
6839 symbol. */
6840 if (expr_symbol_where (fixP->fx_addsy, &sfile, &sline))
6841 as_bad_where (fixP->fx_file, fixP->fx_line,
6842 _("unresolved expression that must be resolved"));
6843 else
6844 as_bad_where (fixP->fx_file, fixP->fx_line,
6845 _("unsupported relocation against %s"),
6846 S_GET_NAME (fixP->fx_addsy));
6847 fixP->fx_done = 1;
6848 return;
6849 }
6850 }
6851 else
6852 {
6853 /* Handle relocs in data. */
6854 switch (fixP->fx_r_type)
6855 {
252b5132 6856 case BFD_RELOC_VTABLE_INHERIT:
94f592af
NC
6857 if (fixP->fx_addsy
6858 && !S_IS_DEFINED (fixP->fx_addsy)
6859 && !S_IS_WEAK (fixP->fx_addsy))
6860 S_SET_WEAK (fixP->fx_addsy);
3b8b57a9 6861 /* Fall thru */
252b5132
RH
6862
6863 case BFD_RELOC_VTABLE_ENTRY:
94f592af 6864 fixP->fx_done = 0;
252b5132
RH
6865 break;
6866
0baf16f2 6867#ifdef OBJ_ELF
3b8b57a9
AM
6868 /* These can appear with @l etc. in data. */
6869 case BFD_RELOC_LO16:
3b8b57a9 6870 case BFD_RELOC_LO16_PCREL:
3b8b57a9 6871 case BFD_RELOC_HI16:
3b8b57a9 6872 case BFD_RELOC_HI16_PCREL:
3b8b57a9 6873 case BFD_RELOC_HI16_S:
3b8b57a9 6874 case BFD_RELOC_HI16_S_PCREL:
3b8b57a9 6875 case BFD_RELOC_PPC64_HIGHER:
3b8b57a9 6876 case BFD_RELOC_PPC64_HIGHER_S:
3b8b57a9 6877 case BFD_RELOC_PPC64_HIGHEST:
3b8b57a9 6878 case BFD_RELOC_PPC64_HIGHEST_S:
f9c6b907
AM
6879 case BFD_RELOC_PPC64_ADDR16_HIGH:
6880 case BFD_RELOC_PPC64_ADDR16_HIGHA:
45965137 6881 case BFD_RELOC_PPC64_ADDR64_LOCAL:
3b8b57a9
AM
6882 break;
6883
6884 case BFD_RELOC_PPC_DTPMOD:
6885 case BFD_RELOC_PPC_TPREL:
6886 case BFD_RELOC_PPC_DTPREL:
6887 S_SET_THREAD_LOCAL (fixP->fx_addsy);
6888 break;
6889
6890 /* Just punt all of these to the linker. */
6891 case BFD_RELOC_PPC_B16_BRTAKEN:
6892 case BFD_RELOC_PPC_B16_BRNTAKEN:
6893 case BFD_RELOC_16_GOTOFF:
6894 case BFD_RELOC_LO16_GOTOFF:
6895 case BFD_RELOC_HI16_GOTOFF:
6896 case BFD_RELOC_HI16_S_GOTOFF:
6897 case BFD_RELOC_LO16_PLTOFF:
6898 case BFD_RELOC_HI16_PLTOFF:
6899 case BFD_RELOC_HI16_S_PLTOFF:
6900 case BFD_RELOC_PPC_COPY:
6901 case BFD_RELOC_PPC_GLOB_DAT:
6902 case BFD_RELOC_16_BASEREL:
6903 case BFD_RELOC_LO16_BASEREL:
6904 case BFD_RELOC_HI16_BASEREL:
6905 case BFD_RELOC_HI16_S_BASEREL:
6906 case BFD_RELOC_PPC_TLS:
6907 case BFD_RELOC_PPC_DTPREL16_LO:
6908 case BFD_RELOC_PPC_DTPREL16_HI:
6909 case BFD_RELOC_PPC_DTPREL16_HA:
6910 case BFD_RELOC_PPC_TPREL16_LO:
6911 case BFD_RELOC_PPC_TPREL16_HI:
6912 case BFD_RELOC_PPC_TPREL16_HA:
6913 case BFD_RELOC_PPC_GOT_TLSGD16:
6914 case BFD_RELOC_PPC_GOT_TLSGD16_LO:
6915 case BFD_RELOC_PPC_GOT_TLSGD16_HI:
6916 case BFD_RELOC_PPC_GOT_TLSGD16_HA:
6917 case BFD_RELOC_PPC_GOT_TLSLD16:
6918 case BFD_RELOC_PPC_GOT_TLSLD16_LO:
6919 case BFD_RELOC_PPC_GOT_TLSLD16_HI:
6920 case BFD_RELOC_PPC_GOT_TLSLD16_HA:
6921 case BFD_RELOC_PPC_GOT_DTPREL16:
6922 case BFD_RELOC_PPC_GOT_DTPREL16_LO:
6923 case BFD_RELOC_PPC_GOT_DTPREL16_HI:
6924 case BFD_RELOC_PPC_GOT_DTPREL16_HA:
6925 case BFD_RELOC_PPC_GOT_TPREL16:
6926 case BFD_RELOC_PPC_GOT_TPREL16_LO:
6927 case BFD_RELOC_PPC_GOT_TPREL16_HI:
6928 case BFD_RELOC_PPC_GOT_TPREL16_HA:
6929 case BFD_RELOC_24_PLT_PCREL:
6930 case BFD_RELOC_PPC_LOCAL24PC:
6931 case BFD_RELOC_32_PLT_PCREL:
6932 case BFD_RELOC_GPREL16:
6933 case BFD_RELOC_PPC_VLE_SDAREL_LO16A:
6934 case BFD_RELOC_PPC_VLE_SDAREL_HI16A:
6935 case BFD_RELOC_PPC_VLE_SDAREL_HA16A:
6936 case BFD_RELOC_PPC_EMB_NADDR32:
6937 case BFD_RELOC_PPC_EMB_NADDR16:
6938 case BFD_RELOC_PPC_EMB_NADDR16_LO:
6939 case BFD_RELOC_PPC_EMB_NADDR16_HI:
6940 case BFD_RELOC_PPC_EMB_NADDR16_HA:
6941 case BFD_RELOC_PPC_EMB_SDAI16:
6942 case BFD_RELOC_PPC_EMB_SDA2REL:
6943 case BFD_RELOC_PPC_EMB_SDA2I16:
6944 case BFD_RELOC_PPC_EMB_SDA21:
6945 case BFD_RELOC_PPC_VLE_SDA21_LO:
6946 case BFD_RELOC_PPC_EMB_MRKREF:
6947 case BFD_RELOC_PPC_EMB_RELSEC16:
6948 case BFD_RELOC_PPC_EMB_RELST_LO:
6949 case BFD_RELOC_PPC_EMB_RELST_HI:
6950 case BFD_RELOC_PPC_EMB_RELST_HA:
6951 case BFD_RELOC_PPC_EMB_BIT_FLD:
6952 case BFD_RELOC_PPC_EMB_RELSDA:
0baf16f2 6953 case BFD_RELOC_PPC64_TOC:
3b8b57a9
AM
6954 case BFD_RELOC_PPC_TOC16:
6955 case BFD_RELOC_PPC64_TOC16_LO:
6956 case BFD_RELOC_PPC64_TOC16_HI:
6957 case BFD_RELOC_PPC64_TOC16_HA:
f9c6b907
AM
6958 case BFD_RELOC_PPC64_DTPREL16_HIGH:
6959 case BFD_RELOC_PPC64_DTPREL16_HIGHA:
3b8b57a9
AM
6960 case BFD_RELOC_PPC64_DTPREL16_HIGHER:
6961 case BFD_RELOC_PPC64_DTPREL16_HIGHERA:
6962 case BFD_RELOC_PPC64_DTPREL16_HIGHEST:
6963 case BFD_RELOC_PPC64_DTPREL16_HIGHESTA:
f9c6b907
AM
6964 case BFD_RELOC_PPC64_TPREL16_HIGH:
6965 case BFD_RELOC_PPC64_TPREL16_HIGHA:
3b8b57a9
AM
6966 case BFD_RELOC_PPC64_TPREL16_HIGHER:
6967 case BFD_RELOC_PPC64_TPREL16_HIGHERA:
6968 case BFD_RELOC_PPC64_TPREL16_HIGHEST:
6969 case BFD_RELOC_PPC64_TPREL16_HIGHESTA:
94f592af 6970 fixP->fx_done = 0;
0baf16f2 6971 break;
0baf16f2 6972#endif
3b8b57a9
AM
6973
6974#ifdef OBJ_XCOFF
6975 case BFD_RELOC_NONE:
3b8b57a9 6976#endif
5656a981
AM
6977 case BFD_RELOC_CTOR:
6978 case BFD_RELOC_32:
6979 case BFD_RELOC_32_PCREL:
6980 case BFD_RELOC_RVA:
6981 case BFD_RELOC_64:
6982 case BFD_RELOC_64_PCREL:
6983 case BFD_RELOC_16:
6984 case BFD_RELOC_16_PCREL:
6985 case BFD_RELOC_8:
6986 break;
3b8b57a9 6987
252b5132 6988 default:
bc805888 6989 fprintf (stderr,
94f592af 6990 _("Gas failure, reloc value %d\n"), fixP->fx_r_type);
99a814a1 6991 fflush (stderr);
252b5132
RH
6992 abort ();
6993 }
46b596ff 6994
5656a981 6995 if (fixP->fx_size && APPLY_RELOC)
46b596ff 6996 md_number_to_chars (fixP->fx_frag->fr_literal + fixP->fx_where,
5656a981 6997 fieldval, fixP->fx_size);
bf7279d5
AM
6998 if (warn_476
6999 && (seg->flags & SEC_CODE) != 0
7000 && fixP->fx_size == 4
7001 && fixP->fx_done
7002 && !fixP->fx_tcbit
7003 && (fixP->fx_r_type == BFD_RELOC_32
7004 || fixP->fx_r_type == BFD_RELOC_CTOR
7005 || fixP->fx_r_type == BFD_RELOC_32_PCREL))
7006 as_warn_where (fixP->fx_file, fixP->fx_line,
7007 _("data in executable section"));
5656a981
AM
7008 }
7009
7010 /* We are only able to convert some relocs to pc-relative. */
7011 if (!fixP->fx_done && fixP->fx_pcrel)
7012 {
7013 switch (fixP->fx_r_type)
7014 {
7015 case BFD_RELOC_LO16:
7016 fixP->fx_r_type = BFD_RELOC_LO16_PCREL;
7017 break;
7018
7019 case BFD_RELOC_HI16:
7020 fixP->fx_r_type = BFD_RELOC_HI16_PCREL;
7021 break;
7022
7023 case BFD_RELOC_HI16_S:
7024 fixP->fx_r_type = BFD_RELOC_HI16_S_PCREL;
7025 break;
7026
7027 case BFD_RELOC_64:
7028 fixP->fx_r_type = BFD_RELOC_64_PCREL;
7029 break;
7030
7031 case BFD_RELOC_32:
7032 fixP->fx_r_type = BFD_RELOC_32_PCREL;
7033 break;
7034
7035 case BFD_RELOC_16:
7036 fixP->fx_r_type = BFD_RELOC_16_PCREL;
7037 break;
7038
7039 /* Some of course are already pc-relative. */
7040 case BFD_RELOC_LO16_PCREL:
7041 case BFD_RELOC_HI16_PCREL:
7042 case BFD_RELOC_HI16_S_PCREL:
a680de9a 7043 case BFD_RELOC_PPC_REL16DX_HA:
5656a981
AM
7044 case BFD_RELOC_64_PCREL:
7045 case BFD_RELOC_32_PCREL:
7046 case BFD_RELOC_16_PCREL:
7047 case BFD_RELOC_PPC_B16:
7048 case BFD_RELOC_PPC_B16_BRTAKEN:
7049 case BFD_RELOC_PPC_B16_BRNTAKEN:
7050 case BFD_RELOC_PPC_B26:
7051 case BFD_RELOC_PPC_LOCAL24PC:
7052 case BFD_RELOC_24_PLT_PCREL:
7053 case BFD_RELOC_32_PLT_PCREL:
7054 case BFD_RELOC_64_PLT_PCREL:
7055 case BFD_RELOC_PPC_VLE_REL8:
7056 case BFD_RELOC_PPC_VLE_REL15:
7057 case BFD_RELOC_PPC_VLE_REL24:
7058 break;
7059
7060 default:
7061 if (fixP->fx_addsy)
7062 {
3b4dbbbf 7063 const char *sfile;
5656a981
AM
7064 unsigned int sline;
7065
7066 /* Use expr_symbol_where to see if this is an
7067 expression symbol. */
7068 if (expr_symbol_where (fixP->fx_addsy, &sfile, &sline))
7069 as_bad_where (fixP->fx_file, fixP->fx_line,
7070 _("unresolved expression that must"
7071 " be resolved"));
7072 else
7073 as_bad_where (fixP->fx_file, fixP->fx_line,
7074 _("cannot emit PC relative %s relocation"
7075 " against %s"),
7076 bfd_get_reloc_code_name (fixP->fx_r_type),
7077 S_GET_NAME (fixP->fx_addsy));
7078 }
7079 else
7080 as_bad_where (fixP->fx_file, fixP->fx_line,
7081 _("unable to resolve expression"));
7082 fixP->fx_done = 1;
7083 break;
7084 }
252b5132
RH
7085 }
7086
7087#ifdef OBJ_ELF
3b8b57a9 7088 ppc_elf_validate_fix (fixP, seg);
94f592af 7089 fixP->fx_addnumber = value;
4e6935a6
AM
7090
7091 /* PowerPC uses RELA relocs, ie. the reloc addend is stored separately
7092 from the section contents. If we are going to be emitting a reloc
7093 then the section contents are immaterial, so don't warn if they
7094 happen to overflow. Leave such warnings to ld. */
7095 if (!fixP->fx_done)
a38a07e0
AM
7096 {
7097 fixP->fx_no_overflow = 1;
7098
7099 /* Arrange to emit .TOC. as a normal symbol if used in anything
7100 but .TOC.@tocbase. */
7101 if (ppc_obj64
7102 && fixP->fx_r_type != BFD_RELOC_PPC64_TOC
7103 && fixP->fx_addsy != NULL
7104 && strcmp (S_GET_NAME (fixP->fx_addsy), ".TOC.") == 0)
7105 symbol_get_bfdsym (fixP->fx_addsy)->flags |= BSF_KEEP;
7106 }
252b5132 7107#else
94f592af
NC
7108 if (fixP->fx_r_type != BFD_RELOC_PPC_TOC16)
7109 fixP->fx_addnumber = 0;
252b5132
RH
7110 else
7111 {
7112#ifdef TE_PE
94f592af 7113 fixP->fx_addnumber = 0;
252b5132 7114#else
8edcbfcd
TG
7115 /* We want to use the offset within the toc, not the actual VMA
7116 of the symbol. */
94f592af 7117 fixP->fx_addnumber =
8edcbfcd
TG
7118 - bfd_get_section_vma (stdoutput, S_GET_SEGMENT (fixP->fx_addsy))
7119 - S_GET_VALUE (ppc_toc_csect);
ac21e7da
TG
7120 /* Set *valP to avoid errors. */
7121 *valP = value;
252b5132
RH
7122#endif
7123 }
7124#endif
252b5132
RH
7125}
7126
7127/* Generate a reloc for a fixup. */
7128
7129arelent *
98027b10 7130tc_gen_reloc (asection *seg ATTRIBUTE_UNUSED, fixS *fixp)
252b5132
RH
7131{
7132 arelent *reloc;
7133
325801bd 7134 reloc = XNEW (arelent);
252b5132 7135
325801bd 7136 reloc->sym_ptr_ptr = XNEW (asymbol *);
49309057 7137 *reloc->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
252b5132
RH
7138 reloc->address = fixp->fx_frag->fr_address + fixp->fx_where;
7139 reloc->howto = bfd_reloc_type_lookup (stdoutput, fixp->fx_r_type);
7140 if (reloc->howto == (reloc_howto_type *) NULL)
7141 {
7142 as_bad_where (fixp->fx_file, fixp->fx_line,
99a814a1
AM
7143 _("reloc %d not supported by object file format"),
7144 (int) fixp->fx_r_type);
252b5132
RH
7145 return NULL;
7146 }
7147 reloc->addend = fixp->fx_addnumber;
7148
7149 return reloc;
7150}
75e21f08
JJ
7151
7152void
98027b10 7153ppc_cfi_frame_initial_instructions (void)
75e21f08
JJ
7154{
7155 cfi_add_CFA_def_cfa (1, 0);
7156}
7157
7158int
1df69f4f 7159tc_ppc_regname_to_dw2regnum (char *regname)
75e21f08
JJ
7160{
7161 unsigned int regnum = -1;
7162 unsigned int i;
7163 const char *p;
7164 char *q;
e0471c16 7165 static struct { const char *name; int dw2regnum; } regnames[] =
75e21f08
JJ
7166 {
7167 { "sp", 1 }, { "r.sp", 1 }, { "rtoc", 2 }, { "r.toc", 2 },
7168 { "mq", 64 }, { "lr", 65 }, { "ctr", 66 }, { "ap", 67 },
80f846b6 7169 { "cr", 70 }, { "xer", 76 }, { "vrsave", 109 }, { "vscr", 110 },
75e21f08
JJ
7170 { "spe_acc", 111 }, { "spefscr", 112 }
7171 };
7172
7173 for (i = 0; i < ARRAY_SIZE (regnames); ++i)
7174 if (strcmp (regnames[i].name, regname) == 0)
7175 return regnames[i].dw2regnum;
7176
7177 if (regname[0] == 'r' || regname[0] == 'f' || regname[0] == 'v')
7178 {
7179 p = regname + 1 + (regname[1] == '.');
7180 regnum = strtoul (p, &q, 10);
7181 if (p == q || *q || regnum >= 32)
7182 return -1;
7183 if (regname[0] == 'f')
b7d7dc63 7184 regnum += 32;
75e21f08 7185 else if (regname[0] == 'v')
b7d7dc63 7186 regnum += 77;
75e21f08
JJ
7187 }
7188 else if (regname[0] == 'c' && regname[1] == 'r')
7189 {
7190 p = regname + 2 + (regname[2] == '.');
7191 if (p[0] < '0' || p[0] > '7' || p[1])
b7d7dc63 7192 return -1;
75e21f08
JJ
7193 regnum = p[0] - '0' + 68;
7194 }
7195 return regnum;
7196}