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