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