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