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