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