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