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