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