1 /* tc-ppc.c -- Assemble for the PowerPC or POWER (RS/6000)
2 Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003,
3 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
4 Written by Ian Lance Taylor, Cygnus Support.
6 This file is part of GAS, the GNU Assembler.
8 GAS is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2, or (at your option)
13 GAS is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GAS; see the file COPYING. If not, write to the Free
20 Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
24 #include "safe-ctype.h"
26 #include "dw2gencfi.h"
27 #include "opcode/ppc.h"
31 #include "dwarf2dbg.h"
38 /* This is the assembler for the PowerPC or POWER (RS/6000) chips. */
40 /* Tell the main code what the endianness is. */
41 extern int target_big_endian;
43 /* Whether or not, we've set target_big_endian. */
44 static int set_target_endian = 0;
46 /* Whether to use user friendly register names. */
47 #ifndef TARGET_REG_NAMES_P
49 #define TARGET_REG_NAMES_P TRUE
51 #define TARGET_REG_NAMES_P FALSE
55 /* Macros for calculating LO, HI, HA, HIGHER, HIGHERA, HIGHEST,
58 /* #lo(value) denotes the least significant 16 bits of the indicated. */
59 #define PPC_LO(v) ((v) & 0xffff)
61 /* #hi(value) denotes bits 16 through 31 of the indicated value. */
62 #define PPC_HI(v) (((v) >> 16) & 0xffff)
64 /* #ha(value) denotes the high adjusted value: bits 16 through 31 of
65 the indicated value, compensating for #lo() being treated as a
67 #define PPC_HA(v) PPC_HI ((v) + 0x8000)
69 /* #higher(value) denotes bits 32 through 47 of the indicated value. */
70 #define PPC_HIGHER(v) (((v) >> 16 >> 16) & 0xffff)
72 /* #highera(value) denotes bits 32 through 47 of the indicated value,
73 compensating for #lo() being treated as a signed number. */
74 #define PPC_HIGHERA(v) PPC_HIGHER ((v) + 0x8000)
76 /* #highest(value) denotes bits 48 through 63 of the indicated value. */
77 #define PPC_HIGHEST(v) (((v) >> 24 >> 24) & 0xffff)
79 /* #highesta(value) denotes bits 48 through 63 of the indicated value,
80 compensating for #lo being treated as a signed number. */
81 #define PPC_HIGHESTA(v) PPC_HIGHEST ((v) + 0x8000)
83 #define SEX16(val) ((((val) & 0xffff) ^ 0x8000) - 0x8000)
85 static bfd_boolean reg_names_p = TARGET_REG_NAMES_P;
87 static bfd_boolean register_name PARAMS ((expressionS *));
88 static void ppc_set_cpu PARAMS ((void));
89 static unsigned long ppc_insert_operand
90 PARAMS ((unsigned long insn, const struct powerpc_operand *operand,
91 offsetT val, char *file, unsigned int line));
92 static void ppc_macro PARAMS ((char *str, const struct powerpc_macro *macro));
93 static void ppc_byte PARAMS ((int));
95 #if defined (OBJ_XCOFF) || defined (OBJ_ELF)
96 static int ppc_is_toc_sym PARAMS ((symbolS *sym));
97 static void ppc_tc PARAMS ((int));
98 static void ppc_machine PARAMS ((int));
102 static void ppc_comm PARAMS ((int));
103 static void ppc_bb PARAMS ((int));
104 static void ppc_bc PARAMS ((int));
105 static void ppc_bf PARAMS ((int));
106 static void ppc_biei PARAMS ((int));
107 static void ppc_bs PARAMS ((int));
108 static void ppc_eb PARAMS ((int));
109 static void ppc_ec PARAMS ((int));
110 static void ppc_ef PARAMS ((int));
111 static void ppc_es PARAMS ((int));
112 static void ppc_csect PARAMS ((int));
113 static void ppc_change_csect PARAMS ((symbolS *, offsetT));
114 static void ppc_function PARAMS ((int));
115 static void ppc_extern PARAMS ((int));
116 static void ppc_lglobl PARAMS ((int));
117 static void ppc_section PARAMS ((int));
118 static void ppc_named_section PARAMS ((int));
119 static void ppc_stabx PARAMS ((int));
120 static void ppc_rename PARAMS ((int));
121 static void ppc_toc PARAMS ((int));
122 static void ppc_xcoff_cons PARAMS ((int));
123 static void ppc_vbyte PARAMS ((int));
127 static bfd_reloc_code_real_type ppc_elf_suffix PARAMS ((char **, expressionS *));
128 static void ppc_elf_cons PARAMS ((int));
129 static void ppc_elf_rdata PARAMS ((int));
130 static void ppc_elf_lcomm PARAMS ((int));
131 static void ppc_elf_validate_fix PARAMS ((fixS *, segT));
132 static void ppc_apuinfo_section_add PARAMS ((unsigned int apu, unsigned int version));
136 static void ppc_set_current_section PARAMS ((segT));
137 static void ppc_previous PARAMS ((int));
138 static void ppc_pdata PARAMS ((int));
139 static void ppc_ydata PARAMS ((int));
140 static void ppc_reldata PARAMS ((int));
141 static void ppc_rdata PARAMS ((int));
142 static void ppc_ualong PARAMS ((int));
143 static void ppc_znop PARAMS ((int));
144 static void ppc_pe_comm PARAMS ((int));
145 static void ppc_pe_section PARAMS ((int));
146 static void ppc_pe_function PARAMS ((int));
147 static void ppc_pe_tocd PARAMS ((int));
150 /* Generic assembler global variables which must be defined by all
154 /* This string holds the chars that always start a comment. If the
155 pre-processor is disabled, these aren't very useful. The macro
156 tc_comment_chars points to this. We use this, rather than the
157 usual comment_chars, so that we can switch for Solaris conventions. */
158 static const char ppc_solaris_comment_chars[] = "#!";
159 static const char ppc_eabi_comment_chars[] = "#";
161 #ifdef TARGET_SOLARIS_COMMENT
162 const char *ppc_comment_chars = ppc_solaris_comment_chars;
164 const char *ppc_comment_chars = ppc_eabi_comment_chars;
167 const char comment_chars[] = "#";
170 /* Characters which start a comment at the beginning of a line. */
171 const char line_comment_chars[] = "#";
173 /* Characters which may be used to separate multiple commands on a
175 const char line_separator_chars[] = ";";
177 /* Characters which are used to indicate an exponent in a floating
179 const char EXP_CHARS[] = "eE";
181 /* Characters which mean that a number is a floating point constant,
183 const char FLT_CHARS[] = "dD";
185 /* Anything that can start an operand needs to be mentioned here,
186 to stop the input scrubber eating whitespace. */
187 const char ppc_symbol_chars[] = "%[";
189 /* The dwarf2 data alignment, adjusted for 32 or 64 bit. */
190 int ppc_cie_data_alignment;
192 /* The target specific pseudo-ops which we support. */
194 const pseudo_typeS md_pseudo_table[] =
196 /* Pseudo-ops which must be overridden. */
197 { "byte", ppc_byte, 0 },
200 /* Pseudo-ops specific to the RS/6000 XCOFF format. Some of these
201 legitimately belong in the obj-*.c file. However, XCOFF is based
202 on COFF, and is only implemented for the RS/6000. We just use
203 obj-coff.c, and add what we need here. */
204 { "comm", ppc_comm, 0 },
205 { "lcomm", ppc_comm, 1 },
209 { "bi", ppc_biei, 0 },
211 { "csect", ppc_csect, 0 },
212 { "data", ppc_section, 'd' },
216 { "ei", ppc_biei, 1 },
218 { "extern", ppc_extern, 0 },
219 { "function", ppc_function, 0 },
220 { "lglobl", ppc_lglobl, 0 },
221 { "rename", ppc_rename, 0 },
222 { "section", ppc_named_section, 0 },
223 { "stabx", ppc_stabx, 0 },
224 { "text", ppc_section, 't' },
225 { "toc", ppc_toc, 0 },
226 { "long", ppc_xcoff_cons, 2 },
227 { "llong", ppc_xcoff_cons, 3 },
228 { "word", ppc_xcoff_cons, 1 },
229 { "short", ppc_xcoff_cons, 1 },
230 { "vbyte", ppc_vbyte, 0 },
234 { "llong", ppc_elf_cons, 8 },
235 { "quad", ppc_elf_cons, 8 },
236 { "long", ppc_elf_cons, 4 },
237 { "word", ppc_elf_cons, 2 },
238 { "short", ppc_elf_cons, 2 },
239 { "rdata", ppc_elf_rdata, 0 },
240 { "rodata", ppc_elf_rdata, 0 },
241 { "lcomm", ppc_elf_lcomm, 0 },
245 /* Pseudo-ops specific to the Windows NT PowerPC PE (coff) format. */
246 { "previous", ppc_previous, 0 },
247 { "pdata", ppc_pdata, 0 },
248 { "ydata", ppc_ydata, 0 },
249 { "reldata", ppc_reldata, 0 },
250 { "rdata", ppc_rdata, 0 },
251 { "ualong", ppc_ualong, 0 },
252 { "znop", ppc_znop, 0 },
253 { "comm", ppc_pe_comm, 0 },
254 { "lcomm", ppc_pe_comm, 1 },
255 { "section", ppc_pe_section, 0 },
256 { "function", ppc_pe_function,0 },
257 { "tocd", ppc_pe_tocd, 0 },
260 #if defined (OBJ_XCOFF) || defined (OBJ_ELF)
262 { "machine", ppc_machine, 0 },
269 /* Predefined register names if -mregnames (or default for Windows NT).
270 In general, there are lots of them, in an attempt to be compatible
271 with a number of other Windows NT assemblers. */
273 /* Structure to hold information about predefined registers. */
280 /* List of registers that are pre-defined:
282 Each general register has predefined names of the form:
283 1. r<reg_num> which has the value <reg_num>.
284 2. r.<reg_num> which has the value <reg_num>.
286 Each floating point register has predefined names of the form:
287 1. f<reg_num> which has the value <reg_num>.
288 2. f.<reg_num> which has the value <reg_num>.
290 Each vector unit register has predefined names of the form:
291 1. v<reg_num> which has the value <reg_num>.
292 2. v.<reg_num> which has the value <reg_num>.
294 Each condition register has predefined names of the form:
295 1. cr<reg_num> which has the value <reg_num>.
296 2. cr.<reg_num> which has the value <reg_num>.
298 There are individual registers as well:
299 sp or r.sp has the value 1
300 rtoc or r.toc has the value 2
301 fpscr has the value 0
307 dsisr has the value 18
309 sdr1 has the value 25
310 srr0 has the value 26
311 srr1 has the value 27
313 The table is sorted. Suitable for searching by a binary search. */
315 static const struct pd_reg pre_defined_registers[] =
317 { "cr.0", 0 }, /* Condition Registers */
337 { "dar", 19 }, /* Data Access Register */
338 { "dec", 22 }, /* Decrementer */
339 { "dsisr", 18 }, /* Data Storage Interrupt Status Register */
341 { "f.0", 0 }, /* Floating point registers */
409 { "lr", 8 }, /* Link Register */
413 { "r.0", 0 }, /* General Purpose Registers */
446 { "r.sp", 1 }, /* Stack Pointer */
448 { "r.toc", 2 }, /* Pointer to the table of contents */
450 { "r0", 0 }, /* More general purpose registers */
483 { "rtoc", 2 }, /* Table of contents */
485 { "sdr1", 25 }, /* Storage Description Register 1 */
489 { "srr0", 26 }, /* Machine Status Save/Restore Register 0 */
490 { "srr1", 27 }, /* Machine Status Save/Restore Register 1 */
492 { "v.0", 0 }, /* Vector registers */
562 #define REG_NAME_CNT (sizeof (pre_defined_registers) / sizeof (struct pd_reg))
564 /* Given NAME, find the register number associated with that name, return
565 the integer value associated with the given name or -1 on failure. */
567 static int reg_name_search
568 PARAMS ((const struct pd_reg *, int, const char * name));
571 reg_name_search (regs, regcount, name)
572 const struct pd_reg *regs;
576 int middle, low, high;
584 middle = (low + high) / 2;
585 cmp = strcasecmp (name, regs[middle].name);
591 return regs[middle].value;
599 * Summary of register_name.
601 * in: Input_line_pointer points to 1st char of operand.
603 * out: A expressionS.
604 * The operand may have been a register: in this case, X_op == O_register,
605 * X_add_number is set to the register number, and truth is returned.
606 * Input_line_pointer->(next non-blank) char after operand, or is in its
611 register_name (expressionP)
612 expressionS *expressionP;
619 /* Find the spelling of the operand. */
620 start = name = input_line_pointer;
621 if (name[0] == '%' && ISALPHA (name[1]))
622 name = ++input_line_pointer;
624 else if (!reg_names_p || !ISALPHA (name[0]))
627 c = get_symbol_end ();
628 reg_number = reg_name_search (pre_defined_registers, REG_NAME_CNT, name);
630 /* Put back the delimiting char. */
631 *input_line_pointer = c;
633 /* Look to see if it's in the register table. */
636 expressionP->X_op = O_register;
637 expressionP->X_add_number = reg_number;
639 /* Make the rest nice. */
640 expressionP->X_add_symbol = NULL;
641 expressionP->X_op_symbol = NULL;
645 /* Reset the line as if we had not done anything. */
646 input_line_pointer = start;
650 /* This function is called for each symbol seen in an expression. It
651 handles the special parsing which PowerPC assemblers are supposed
652 to use for condition codes. */
654 /* Whether to do the special parsing. */
655 static bfd_boolean cr_operand;
657 /* Names to recognize in a condition code. This table is sorted. */
658 static const struct pd_reg cr_names[] =
675 /* Parsing function. This returns non-zero if it recognized an
679 ppc_parse_name (name, expr)
688 val = reg_name_search (cr_names, sizeof cr_names / sizeof cr_names[0],
693 expr->X_op = O_constant;
694 expr->X_add_number = val;
699 /* Local variables. */
701 /* The type of processor we are assembling for. This is one or more
702 of the PPC_OPCODE flags defined in opcode/ppc.h. */
703 static unsigned long ppc_cpu = 0;
705 /* Whether to target xcoff64/elf64. */
706 static unsigned int ppc_obj64 = BFD_DEFAULT_TARGET_SIZE == 64;
708 /* Opcode hash table. */
709 static struct hash_control *ppc_hash;
711 /* Macro hash table. */
712 static struct hash_control *ppc_macro_hash;
715 /* What type of shared library support to use. */
716 static enum { SHLIB_NONE, SHLIB_PIC, SHLIB_MRELOCATABLE } shlib = SHLIB_NONE;
718 /* Flags to set in the elf header. */
719 static flagword ppc_flags = 0;
721 /* Whether this is Solaris or not. */
722 #ifdef TARGET_SOLARIS_COMMENT
723 #define SOLARIS_P TRUE
725 #define SOLARIS_P FALSE
728 static bfd_boolean msolaris = SOLARIS_P;
733 /* The RS/6000 assembler uses the .csect pseudo-op to generate code
734 using a bunch of different sections. These assembler sections,
735 however, are all encompassed within the .text or .data sections of
736 the final output file. We handle this by using different
737 subsegments within these main segments. */
739 /* Next subsegment to allocate within the .text segment. */
740 static subsegT ppc_text_subsegment = 2;
742 /* Linked list of csects in the text section. */
743 static symbolS *ppc_text_csects;
745 /* Next subsegment to allocate within the .data segment. */
746 static subsegT ppc_data_subsegment = 2;
748 /* Linked list of csects in the data section. */
749 static symbolS *ppc_data_csects;
751 /* The current csect. */
752 static symbolS *ppc_current_csect;
754 /* The RS/6000 assembler uses a TOC which holds addresses of functions
755 and variables. Symbols are put in the TOC with the .tc pseudo-op.
756 A special relocation is used when accessing TOC entries. We handle
757 the TOC as a subsegment within the .data segment. We set it up if
758 we see a .toc pseudo-op, and save the csect symbol here. */
759 static symbolS *ppc_toc_csect;
761 /* The first frag in the TOC subsegment. */
762 static fragS *ppc_toc_frag;
764 /* The first frag in the first subsegment after the TOC in the .data
765 segment. NULL if there are no subsegments after the TOC. */
766 static fragS *ppc_after_toc_frag;
768 /* The current static block. */
769 static symbolS *ppc_current_block;
771 /* The COFF debugging section; set by md_begin. This is not the
772 .debug section, but is instead the secret BFD section which will
773 cause BFD to set the section number of a symbol to N_DEBUG. */
774 static asection *ppc_coff_debug_section;
776 #endif /* OBJ_XCOFF */
780 /* Various sections that we need for PE coff support. */
781 static segT ydata_section;
782 static segT pdata_section;
783 static segT reldata_section;
784 static segT rdata_section;
785 static segT tocdata_section;
787 /* The current section and the previous section. See ppc_previous. */
788 static segT ppc_previous_section;
789 static segT ppc_current_section;
794 symbolS *GOT_symbol; /* Pre-defined "_GLOBAL_OFFSET_TABLE" */
795 #define PPC_APUINFO_ISEL 0x40
796 #define PPC_APUINFO_PMR 0x41
797 #define PPC_APUINFO_RFMCI 0x42
798 #define PPC_APUINFO_CACHELCK 0x43
799 #define PPC_APUINFO_SPE 0x100
800 #define PPC_APUINFO_EFS 0x101
801 #define PPC_APUINFO_BRLOCK 0x102
804 * We keep a list of APUinfo
806 unsigned long *ppc_apuinfo_list;
807 unsigned int ppc_apuinfo_num;
808 unsigned int ppc_apuinfo_num_alloc;
812 const char *const md_shortopts = "b:l:usm:K:VQ:";
814 const char *const md_shortopts = "um:";
816 const struct option md_longopts[] = {
817 {NULL, no_argument, NULL, 0}
819 const size_t md_longopts_size = sizeof (md_longopts);
822 /* Handle -m options that set cpu type, and .machine arg. */
825 parse_cpu (const char *arg)
827 /* -mpwrx and -mpwr2 mean to assemble for the IBM POWER/2
829 if (strcmp (arg, "pwrx") == 0 || strcmp (arg, "pwr2") == 0)
830 ppc_cpu = PPC_OPCODE_POWER | PPC_OPCODE_POWER2 | PPC_OPCODE_32;
831 /* -mpwr means to assemble for the IBM POWER (RIOS1). */
832 else if (strcmp (arg, "pwr") == 0)
833 ppc_cpu = PPC_OPCODE_POWER | PPC_OPCODE_32;
834 /* -m601 means to assemble for the PowerPC 601, which includes
835 instructions that are holdovers from the Power. */
836 else if (strcmp (arg, "601") == 0)
837 ppc_cpu = (PPC_OPCODE_PPC | PPC_OPCODE_CLASSIC
838 | PPC_OPCODE_601 | PPC_OPCODE_32);
839 /* -mppc, -mppc32, -m603, and -m604 mean to assemble for the
841 else if (strcmp (arg, "ppc") == 0
842 || strcmp (arg, "ppc32") == 0
843 || strcmp (arg, "603") == 0
844 || strcmp (arg, "604") == 0)
845 ppc_cpu = PPC_OPCODE_PPC | PPC_OPCODE_CLASSIC | PPC_OPCODE_32;
846 /* -m403 and -m405 mean to assemble for the PowerPC 403/405. */
847 else if (strcmp (arg, "403") == 0
848 || strcmp (arg, "405") == 0)
849 ppc_cpu = (PPC_OPCODE_PPC | PPC_OPCODE_CLASSIC
850 | PPC_OPCODE_403 | PPC_OPCODE_32);
851 else if (strcmp (arg, "440") == 0)
852 ppc_cpu = (PPC_OPCODE_PPC | PPC_OPCODE_BOOKE | PPC_OPCODE_32
853 | PPC_OPCODE_440 | PPC_OPCODE_ISEL | PPC_OPCODE_RFMCI);
854 else if (strcmp (arg, "7400") == 0
855 || strcmp (arg, "7410") == 0
856 || strcmp (arg, "7450") == 0
857 || strcmp (arg, "7455") == 0)
858 ppc_cpu = (PPC_OPCODE_PPC | PPC_OPCODE_CLASSIC
859 | PPC_OPCODE_ALTIVEC | PPC_OPCODE_32);
860 else if (strcmp (arg, "e300") == 0)
861 ppc_cpu = (PPC_OPCODE_PPC | PPC_OPCODE_CLASSIC | PPC_OPCODE_32
863 else if (strcmp (arg, "altivec") == 0)
866 ppc_cpu = PPC_OPCODE_PPC | PPC_OPCODE_CLASSIC | PPC_OPCODE_ALTIVEC;
868 ppc_cpu |= PPC_OPCODE_ALTIVEC;
870 else if (strcmp (arg, "e500") == 0 || strcmp (arg, "e500x2") == 0)
872 ppc_cpu = (PPC_OPCODE_PPC | PPC_OPCODE_BOOKE | PPC_OPCODE_SPE
873 | PPC_OPCODE_ISEL | PPC_OPCODE_EFS | PPC_OPCODE_BRLOCK
874 | PPC_OPCODE_PMR | PPC_OPCODE_CACHELCK
877 else if (strcmp (arg, "spe") == 0)
880 ppc_cpu = PPC_OPCODE_PPC | PPC_OPCODE_SPE | PPC_OPCODE_EFS;
882 ppc_cpu |= PPC_OPCODE_SPE;
884 /* -mppc64 and -m620 mean to assemble for the 64-bit PowerPC
886 else if (strcmp (arg, "ppc64") == 0 || strcmp (arg, "620") == 0)
888 ppc_cpu = PPC_OPCODE_PPC | PPC_OPCODE_CLASSIC | PPC_OPCODE_64;
890 else if (strcmp (arg, "ppc64bridge") == 0)
892 ppc_cpu = (PPC_OPCODE_PPC | PPC_OPCODE_CLASSIC
893 | PPC_OPCODE_64_BRIDGE | PPC_OPCODE_64);
895 /* -mbooke/-mbooke32 mean enable 32-bit BookE support. */
896 else if (strcmp (arg, "booke") == 0 || strcmp (arg, "booke32") == 0)
898 ppc_cpu = PPC_OPCODE_PPC | PPC_OPCODE_BOOKE | PPC_OPCODE_32;
900 /* -mbooke64 means enable 64-bit BookE support. */
901 else if (strcmp (arg, "booke64") == 0)
903 ppc_cpu = (PPC_OPCODE_PPC | PPC_OPCODE_BOOKE
904 | PPC_OPCODE_BOOKE64 | PPC_OPCODE_64);
906 else if (strcmp (arg, "power4") == 0)
908 ppc_cpu = (PPC_OPCODE_PPC | PPC_OPCODE_CLASSIC
909 | PPC_OPCODE_64 | PPC_OPCODE_POWER4);
911 else if (strcmp (arg, "power5") == 0)
913 ppc_cpu = (PPC_OPCODE_PPC | PPC_OPCODE_CLASSIC
914 | PPC_OPCODE_64 | PPC_OPCODE_POWER4
915 | PPC_OPCODE_POWER5);
917 else if (strcmp (arg, "power6") == 0)
919 ppc_cpu = (PPC_OPCODE_PPC | PPC_OPCODE_CLASSIC
920 | PPC_OPCODE_64 | PPC_OPCODE_POWER4
921 | PPC_OPCODE_POWER5 | PPC_OPCODE_POWER6);
923 else if (strcmp (arg, "cell") == 0)
925 ppc_cpu = (PPC_OPCODE_PPC | PPC_OPCODE_CLASSIC
926 | PPC_OPCODE_64 | PPC_OPCODE_POWER4
929 /* -mcom means assemble for the common intersection between Power
930 and PowerPC. At present, we just allow the union, rather
931 than the intersection. */
932 else if (strcmp (arg, "com") == 0)
933 ppc_cpu = PPC_OPCODE_COMMON | PPC_OPCODE_32;
934 /* -many means to assemble for any architecture (PWR/PWRX/PPC). */
935 else if (strcmp (arg, "any") == 0)
936 ppc_cpu |= PPC_OPCODE_ANY;
944 md_parse_option (c, arg)
951 /* -u means that any undefined symbols should be treated as
952 external, which is the default for gas anyhow. */
957 /* Solaris as takes -le (presumably for little endian). For completeness
958 sake, recognize -be also. */
959 if (strcmp (arg, "e") == 0)
961 target_big_endian = 0;
962 set_target_endian = 1;
970 if (strcmp (arg, "e") == 0)
972 target_big_endian = 1;
973 set_target_endian = 1;
981 /* Recognize -K PIC. */
982 if (strcmp (arg, "PIC") == 0 || strcmp (arg, "pic") == 0)
985 ppc_flags |= EF_PPC_RELOCATABLE_LIB;
993 /* a64 and a32 determine whether to use XCOFF64 or XCOFF32. */
995 if (strcmp (arg, "64") == 0)
1000 as_fatal (_("%s unsupported"), "-a64");
1003 else if (strcmp (arg, "32") == 0)
1010 if (parse_cpu (arg))
1013 else if (strcmp (arg, "regnames") == 0)
1016 else if (strcmp (arg, "no-regnames") == 0)
1017 reg_names_p = FALSE;
1020 /* -mrelocatable/-mrelocatable-lib -- warn about initializations
1021 that require relocation. */
1022 else if (strcmp (arg, "relocatable") == 0)
1024 shlib = SHLIB_MRELOCATABLE;
1025 ppc_flags |= EF_PPC_RELOCATABLE;
1028 else if (strcmp (arg, "relocatable-lib") == 0)
1030 shlib = SHLIB_MRELOCATABLE;
1031 ppc_flags |= EF_PPC_RELOCATABLE_LIB;
1034 /* -memb, set embedded bit. */
1035 else if (strcmp (arg, "emb") == 0)
1036 ppc_flags |= EF_PPC_EMB;
1038 /* -mlittle/-mbig set the endianess. */
1039 else if (strcmp (arg, "little") == 0
1040 || strcmp (arg, "little-endian") == 0)
1042 target_big_endian = 0;
1043 set_target_endian = 1;
1046 else if (strcmp (arg, "big") == 0 || strcmp (arg, "big-endian") == 0)
1048 target_big_endian = 1;
1049 set_target_endian = 1;
1052 else if (strcmp (arg, "solaris") == 0)
1055 ppc_comment_chars = ppc_solaris_comment_chars;
1058 else if (strcmp (arg, "no-solaris") == 0)
1061 ppc_comment_chars = ppc_eabi_comment_chars;
1066 as_bad (_("invalid switch -m%s"), arg);
1072 /* -V: SVR4 argument to print version ID. */
1074 print_version_id ();
1077 /* -Qy, -Qn: SVR4 arguments controlling whether a .comment section
1078 should be emitted or not. FIXME: Not implemented. */
1082 /* Solaris takes -s to specify that .stabs go in a .stabs section,
1083 rather than .stabs.excl, which is ignored by the linker.
1084 FIXME: Not implemented. */
1100 md_show_usage (stream)
1103 fprintf (stream, _("\
1105 -a32 generate ELF32/XCOFF32\n\
1106 -a64 generate ELF64/XCOFF64\n\
1108 -mpwrx, -mpwr2 generate code for POWER/2 (RIOS2)\n\
1109 -mpwr generate code for POWER (RIOS1)\n\
1110 -m601 generate code for PowerPC 601\n\
1111 -mppc, -mppc32, -m603, -m604\n\
1112 generate code for PowerPC 603/604\n\
1113 -m403, -m405 generate code for PowerPC 403/405\n\
1114 -m440 generate code for PowerPC 440\n\
1115 -m7400, -m7410, -m7450, -m7455\n\
1116 generate code For PowerPC 7400/7410/7450/7455\n"));
1117 fprintf (stream, _("\
1118 -mppc64, -m620 generate code for PowerPC 620/625/630\n\
1119 -mppc64bridge generate code for PowerPC 64, including bridge insns\n\
1120 -mbooke64 generate code for 64-bit PowerPC BookE\n\
1121 -mbooke, mbooke32 generate code for 32-bit PowerPC BookE\n\
1122 -mpower4 generate code for Power4 architecture\n\
1123 -mpower5 generate code for Power5 architecture\n\
1124 -mpower6 generate code for Power6 architecture\n\
1125 -mcell generate code for Cell Broadband Engine architecture\n\
1126 -mcom generate code Power/PowerPC common instructions\n\
1127 -many generate code for any architecture (PWR/PWRX/PPC)\n"));
1128 fprintf (stream, _("\
1129 -maltivec generate code for AltiVec\n\
1130 -me300 generate code for PowerPC e300 family\n\
1131 -me500, -me500x2 generate code for Motorola e500 core complex\n\
1132 -mspe generate code for Motorola SPE instructions\n\
1133 -mregnames Allow symbolic names for registers\n\
1134 -mno-regnames Do not allow symbolic names for registers\n"));
1136 fprintf (stream, _("\
1137 -mrelocatable support for GCC's -mrelocatble option\n\
1138 -mrelocatable-lib support for GCC's -mrelocatble-lib option\n\
1139 -memb set PPC_EMB bit in ELF flags\n\
1140 -mlittle, -mlittle-endian, -l, -le\n\
1141 generate code for a little endian machine\n\
1142 -mbig, -mbig-endian, -b, -be\n\
1143 generate code for a big endian machine\n\
1144 -msolaris generate code for Solaris\n\
1145 -mno-solaris do not generate code for Solaris\n\
1146 -V print assembler version number\n\
1147 -Qy, -Qn ignored\n"));
1151 /* Set ppc_cpu if it is not already set. */
1156 const char *default_os = TARGET_OS;
1157 const char *default_cpu = TARGET_CPU;
1159 if ((ppc_cpu & ~PPC_OPCODE_ANY) == 0)
1162 ppc_cpu |= PPC_OPCODE_PPC | PPC_OPCODE_CLASSIC | PPC_OPCODE_64;
1163 else if (strncmp (default_os, "aix", 3) == 0
1164 && default_os[3] >= '4' && default_os[3] <= '9')
1165 ppc_cpu |= PPC_OPCODE_COMMON | PPC_OPCODE_32;
1166 else if (strncmp (default_os, "aix3", 4) == 0)
1167 ppc_cpu |= PPC_OPCODE_POWER | PPC_OPCODE_32;
1168 else if (strcmp (default_cpu, "rs6000") == 0)
1169 ppc_cpu |= PPC_OPCODE_POWER | PPC_OPCODE_32;
1170 else if (strncmp (default_cpu, "powerpc", 7) == 0)
1171 ppc_cpu |= PPC_OPCODE_PPC | PPC_OPCODE_CLASSIC | PPC_OPCODE_32;
1173 as_fatal (_("Unknown default cpu = %s, os = %s"),
1174 default_cpu, default_os);
1178 /* Figure out the BFD architecture to use. This function and ppc_mach
1179 are called well before md_begin, when the output file is opened. */
1181 enum bfd_architecture
1184 const char *default_cpu = TARGET_CPU;
1187 if ((ppc_cpu & PPC_OPCODE_PPC) != 0)
1188 return bfd_arch_powerpc;
1189 else if ((ppc_cpu & PPC_OPCODE_POWER) != 0)
1190 return bfd_arch_rs6000;
1191 else if ((ppc_cpu & (PPC_OPCODE_COMMON | PPC_OPCODE_ANY)) != 0)
1193 if (strcmp (default_cpu, "rs6000") == 0)
1194 return bfd_arch_rs6000;
1195 else if (strncmp (default_cpu, "powerpc", 7) == 0)
1196 return bfd_arch_powerpc;
1199 as_fatal (_("Neither Power nor PowerPC opcodes were selected."));
1200 return bfd_arch_unknown;
1207 return bfd_mach_ppc64;
1208 else if (ppc_arch () == bfd_arch_rs6000)
1209 return bfd_mach_rs6k;
1211 return bfd_mach_ppc;
1215 ppc_target_format ()
1219 return target_big_endian ? "pe-powerpc" : "pe-powerpcle";
1221 return "xcoff-powermac";
1224 return (ppc_obj64 ? "aix5coff64-rs6000" : "aixcoff-rs6000");
1226 return (ppc_obj64 ? "aixcoff64-rs6000" : "aixcoff-rs6000");
1232 return "elf32-powerpc-vxworks";
1234 return (target_big_endian
1235 ? (ppc_obj64 ? "elf64-powerpc" : "elf32-powerpc")
1236 : (ppc_obj64 ? "elf64-powerpcle" : "elf32-powerpcle"));
1241 /* Insert opcodes and macros into hash tables. Called at startup and
1245 ppc_setup_opcodes (void)
1247 register const struct powerpc_opcode *op;
1248 const struct powerpc_opcode *op_end;
1249 const struct powerpc_macro *macro;
1250 const struct powerpc_macro *macro_end;
1251 bfd_boolean bad_insn = FALSE;
1253 if (ppc_hash != NULL)
1254 hash_die (ppc_hash);
1255 if (ppc_macro_hash != NULL)
1256 hash_die (ppc_macro_hash);
1258 /* Insert the opcodes into a hash table. */
1259 ppc_hash = hash_new ();
1261 if (ENABLE_CHECKING)
1265 /* Check operand masks. Code here and in the disassembler assumes
1266 all the 1's in the mask are contiguous. */
1267 for (i = 0; i < num_powerpc_operands; ++i)
1269 unsigned long mask = powerpc_operands[i].bitm;
1270 unsigned long right_bit;
1273 right_bit = mask & -mask;
1275 right_bit = mask & -mask;
1276 if (mask != right_bit)
1278 as_bad (_("powerpc_operands[%d].bitm invalid"), i);
1281 for (j = i + 1; j < num_powerpc_operands; ++j)
1282 if (memcmp (&powerpc_operands[i], &powerpc_operands[j],
1283 sizeof (powerpc_operands[0])) == 0)
1285 as_bad (_("powerpc_operands[%d] duplicates powerpc_operands[%d]"),
1292 op_end = powerpc_opcodes + powerpc_num_opcodes;
1293 for (op = powerpc_opcodes; op < op_end; op++)
1295 if (ENABLE_CHECKING)
1297 const unsigned char *o;
1298 unsigned long omask = op->mask;
1300 /* The mask had better not trim off opcode bits. */
1301 if ((op->opcode & omask) != op->opcode)
1303 as_bad (_("mask trims opcode bits for %s"),
1308 /* The operands must not overlap the opcode or each other. */
1309 for (o = op->operands; *o; ++o)
1310 if (*o >= num_powerpc_operands)
1312 as_bad (_("operand index error for %s"),
1318 const struct powerpc_operand *operand = &powerpc_operands[*o];
1319 if (operand->shift >= 0)
1321 unsigned long mask = operand->bitm << operand->shift;
1324 as_bad (_("operand %d overlap in %s"),
1325 (int) (o - op->operands), op->name);
1333 if ((op->flags & ppc_cpu & ~(PPC_OPCODE_32 | PPC_OPCODE_64)) != 0
1334 && ((op->flags & (PPC_OPCODE_32 | PPC_OPCODE_64)) == 0
1335 || ((op->flags & (PPC_OPCODE_32 | PPC_OPCODE_64))
1336 == (ppc_cpu & (PPC_OPCODE_32 | PPC_OPCODE_64)))
1337 || (ppc_cpu & PPC_OPCODE_64_BRIDGE) != 0)
1338 /* Certain instructions (eg: extsw) do not exist in the
1339 32-bit BookE instruction set, but they do exist in the
1340 64-bit BookE instruction set, and other PPC instruction
1341 sets. Check to see if the opcode has the BOOKE64 flag set.
1342 If it does make sure that the target CPU is not the BookE32. */
1343 && ((op->flags & PPC_OPCODE_BOOKE64) == 0
1344 || (ppc_cpu & PPC_OPCODE_BOOKE64) == PPC_OPCODE_BOOKE64
1345 || (ppc_cpu & PPC_OPCODE_BOOKE) == 0)
1346 && ((op->flags & (PPC_OPCODE_POWER4 | PPC_OPCODE_NOPOWER4)) == 0
1347 || ((op->flags & PPC_OPCODE_POWER4)
1348 == (ppc_cpu & PPC_OPCODE_POWER4)))
1349 && ((op->flags & PPC_OPCODE_POWER5) == 0
1350 || ((op->flags & PPC_OPCODE_POWER5)
1351 == (ppc_cpu & PPC_OPCODE_POWER5)))
1352 && ((op->flags & PPC_OPCODE_POWER6) == 0
1353 || ((op->flags & PPC_OPCODE_POWER6)
1354 == (ppc_cpu & PPC_OPCODE_POWER6))))
1358 retval = hash_insert (ppc_hash, op->name, (PTR) op);
1361 /* Ignore Power duplicates for -m601. */
1362 if ((ppc_cpu & PPC_OPCODE_601) != 0
1363 && (op->flags & PPC_OPCODE_POWER) != 0)
1366 as_bad (_("duplicate instruction %s"),
1373 if ((ppc_cpu & PPC_OPCODE_ANY) != 0)
1374 for (op = powerpc_opcodes; op < op_end; op++)
1375 hash_insert (ppc_hash, op->name, (PTR) op);
1377 /* Insert the macros into a hash table. */
1378 ppc_macro_hash = hash_new ();
1380 macro_end = powerpc_macros + powerpc_num_macros;
1381 for (macro = powerpc_macros; macro < macro_end; macro++)
1383 if ((macro->flags & ppc_cpu) != 0)
1387 retval = hash_insert (ppc_macro_hash, macro->name, (PTR) macro);
1388 if (retval != (const char *) NULL)
1390 as_bad (_("duplicate macro %s"), macro->name);
1400 /* This function is called when the assembler starts up. It is called
1401 after the options have been parsed and the output file has been
1409 ppc_cie_data_alignment = ppc_obj64 ? -8 : -4;
1412 /* Set the ELF flags if desired. */
1413 if (ppc_flags && !msolaris)
1414 bfd_set_private_flags (stdoutput, ppc_flags);
1417 ppc_setup_opcodes ();
1419 /* Tell the main code what the endianness is if it is not overridden
1421 if (!set_target_endian)
1423 set_target_endian = 1;
1424 target_big_endian = PPC_BIG_ENDIAN;
1428 ppc_coff_debug_section = coff_section_from_bfd_index (stdoutput, N_DEBUG);
1430 /* Create dummy symbols to serve as initial csects. This forces the
1431 text csects to precede the data csects. These symbols will not
1433 ppc_text_csects = symbol_make ("dummy\001");
1434 symbol_get_tc (ppc_text_csects)->within = ppc_text_csects;
1435 ppc_data_csects = symbol_make ("dummy\001");
1436 symbol_get_tc (ppc_data_csects)->within = ppc_data_csects;
1441 ppc_current_section = text_section;
1442 ppc_previous_section = 0;
1451 if (ppc_apuinfo_list == NULL)
1454 /* Ok, so write the section info out. We have this layout:
1458 0 8 length of "APUinfo\0"
1459 4 (n*4) number of APU's (4 bytes each)
1462 20 APU#1 first APU's info
1463 24 APU#2 second APU's info
1468 asection *seg = now_seg;
1469 subsegT subseg = now_subseg;
1470 asection *apuinfo_secp = (asection *) NULL;
1473 /* Create the .PPC.EMB.apuinfo section. */
1474 apuinfo_secp = subseg_new (".PPC.EMB.apuinfo", 0);
1475 bfd_set_section_flags (stdoutput,
1477 SEC_HAS_CONTENTS | SEC_READONLY);
1480 md_number_to_chars (p, (valueT) 8, 4);
1483 md_number_to_chars (p, (valueT) ppc_apuinfo_num * 4, 4);
1486 md_number_to_chars (p, (valueT) 2, 4);
1489 strcpy (p, "APUinfo");
1491 for (i = 0; i < ppc_apuinfo_num; i++)
1494 md_number_to_chars (p, (valueT) ppc_apuinfo_list[i], 4);
1497 frag_align (2, 0, 0);
1499 /* We probably can't restore the current segment, for there likely
1502 subseg_set (seg, subseg);
1507 /* Insert an operand value into an instruction. */
1509 static unsigned long
1510 ppc_insert_operand (insn, operand, val, file, line)
1512 const struct powerpc_operand *operand;
1517 long min, max, right;
1520 max = operand->bitm;
1524 if ((operand->flags & PPC_OPERAND_SIGNED) != 0)
1526 if ((operand->flags & PPC_OPERAND_SIGNOPT) == 0)
1527 max = (max >> 1) & -right;
1528 min = ~max & -right;
1532 /* Some people write 32 bit hex constants with the sign
1533 extension done by hand. This shouldn't really be
1534 valid, but, to permit this code to assemble on a 64
1535 bit host, we sign extend the 32 bit value. */
1537 && (val & (offsetT) 0x80000000) != 0
1538 && (val & (offsetT) 0xffffffff) == val)
1546 if ((operand->flags & PPC_OPERAND_PLUS1) != 0)
1552 if ((operand->flags & PPC_OPERAND_NEGATIVE) != 0)
1557 if ((min <= max && (test < (offsetT) min || test > (offsetT) max))
1558 || (test & (right - 1)) != 0)
1559 as_bad_value_out_of_range (_("operand"),
1560 test, (offsetT) min, (offsetT) max, file, line);
1562 if (operand->insert)
1567 insn = (*operand->insert) (insn, (long) val, ppc_cpu, &errmsg);
1568 if (errmsg != (const char *) NULL)
1569 as_bad_where (file, line, errmsg);
1572 insn |= ((long) val & operand->bitm) << operand->shift;
1579 /* Parse @got, etc. and return the desired relocation. */
1580 static bfd_reloc_code_real_type
1581 ppc_elf_suffix (str_p, exp_p)
1587 unsigned int length : 8;
1588 unsigned int valid32 : 1;
1589 unsigned int valid64 : 1;
1598 const struct map_bfd *ptr;
1600 #define MAP(str, reloc) { str, sizeof (str) - 1, 1, 1, reloc }
1601 #define MAP32(str, reloc) { str, sizeof (str) - 1, 1, 0, reloc }
1602 #define MAP64(str, reloc) { str, sizeof (str) - 1, 0, 1, reloc }
1604 static const struct map_bfd mapping[] = {
1605 MAP ("l", BFD_RELOC_LO16),
1606 MAP ("h", BFD_RELOC_HI16),
1607 MAP ("ha", BFD_RELOC_HI16_S),
1608 MAP ("brtaken", BFD_RELOC_PPC_B16_BRTAKEN),
1609 MAP ("brntaken", BFD_RELOC_PPC_B16_BRNTAKEN),
1610 MAP ("got", BFD_RELOC_16_GOTOFF),
1611 MAP ("got@l", BFD_RELOC_LO16_GOTOFF),
1612 MAP ("got@h", BFD_RELOC_HI16_GOTOFF),
1613 MAP ("got@ha", BFD_RELOC_HI16_S_GOTOFF),
1614 MAP ("plt@l", BFD_RELOC_LO16_PLTOFF),
1615 MAP ("plt@h", BFD_RELOC_HI16_PLTOFF),
1616 MAP ("plt@ha", BFD_RELOC_HI16_S_PLTOFF),
1617 MAP ("copy", BFD_RELOC_PPC_COPY),
1618 MAP ("globdat", BFD_RELOC_PPC_GLOB_DAT),
1619 MAP ("sectoff", BFD_RELOC_16_BASEREL),
1620 MAP ("sectoff@l", BFD_RELOC_LO16_BASEREL),
1621 MAP ("sectoff@h", BFD_RELOC_HI16_BASEREL),
1622 MAP ("sectoff@ha", BFD_RELOC_HI16_S_BASEREL),
1623 MAP ("tls", BFD_RELOC_PPC_TLS),
1624 MAP ("dtpmod", BFD_RELOC_PPC_DTPMOD),
1625 MAP ("dtprel", BFD_RELOC_PPC_DTPREL),
1626 MAP ("dtprel@l", BFD_RELOC_PPC_DTPREL16_LO),
1627 MAP ("dtprel@h", BFD_RELOC_PPC_DTPREL16_HI),
1628 MAP ("dtprel@ha", BFD_RELOC_PPC_DTPREL16_HA),
1629 MAP ("tprel", BFD_RELOC_PPC_TPREL),
1630 MAP ("tprel@l", BFD_RELOC_PPC_TPREL16_LO),
1631 MAP ("tprel@h", BFD_RELOC_PPC_TPREL16_HI),
1632 MAP ("tprel@ha", BFD_RELOC_PPC_TPREL16_HA),
1633 MAP ("got@tlsgd", BFD_RELOC_PPC_GOT_TLSGD16),
1634 MAP ("got@tlsgd@l", BFD_RELOC_PPC_GOT_TLSGD16_LO),
1635 MAP ("got@tlsgd@h", BFD_RELOC_PPC_GOT_TLSGD16_HI),
1636 MAP ("got@tlsgd@ha", BFD_RELOC_PPC_GOT_TLSGD16_HA),
1637 MAP ("got@tlsld", BFD_RELOC_PPC_GOT_TLSLD16),
1638 MAP ("got@tlsld@l", BFD_RELOC_PPC_GOT_TLSLD16_LO),
1639 MAP ("got@tlsld@h", BFD_RELOC_PPC_GOT_TLSLD16_HI),
1640 MAP ("got@tlsld@ha", BFD_RELOC_PPC_GOT_TLSLD16_HA),
1641 MAP ("got@dtprel", BFD_RELOC_PPC_GOT_DTPREL16),
1642 MAP ("got@dtprel@l", BFD_RELOC_PPC_GOT_DTPREL16_LO),
1643 MAP ("got@dtprel@h", BFD_RELOC_PPC_GOT_DTPREL16_HI),
1644 MAP ("got@dtprel@ha", BFD_RELOC_PPC_GOT_DTPREL16_HA),
1645 MAP ("got@tprel", BFD_RELOC_PPC_GOT_TPREL16),
1646 MAP ("got@tprel@l", BFD_RELOC_PPC_GOT_TPREL16_LO),
1647 MAP ("got@tprel@h", BFD_RELOC_PPC_GOT_TPREL16_HI),
1648 MAP ("got@tprel@ha", BFD_RELOC_PPC_GOT_TPREL16_HA),
1649 MAP32 ("fixup", BFD_RELOC_CTOR),
1650 MAP32 ("plt", BFD_RELOC_24_PLT_PCREL),
1651 MAP32 ("pltrel24", BFD_RELOC_24_PLT_PCREL),
1652 MAP32 ("local24pc", BFD_RELOC_PPC_LOCAL24PC),
1653 MAP32 ("local", BFD_RELOC_PPC_LOCAL24PC),
1654 MAP32 ("pltrel", BFD_RELOC_32_PLT_PCREL),
1655 MAP32 ("sdarel", BFD_RELOC_GPREL16),
1656 MAP32 ("naddr", BFD_RELOC_PPC_EMB_NADDR32),
1657 MAP32 ("naddr16", BFD_RELOC_PPC_EMB_NADDR16),
1658 MAP32 ("naddr@l", BFD_RELOC_PPC_EMB_NADDR16_LO),
1659 MAP32 ("naddr@h", BFD_RELOC_PPC_EMB_NADDR16_HI),
1660 MAP32 ("naddr@ha", BFD_RELOC_PPC_EMB_NADDR16_HA),
1661 MAP32 ("sdai16", BFD_RELOC_PPC_EMB_SDAI16),
1662 MAP32 ("sda2rel", BFD_RELOC_PPC_EMB_SDA2REL),
1663 MAP32 ("sda2i16", BFD_RELOC_PPC_EMB_SDA2I16),
1664 MAP32 ("sda21", BFD_RELOC_PPC_EMB_SDA21),
1665 MAP32 ("mrkref", BFD_RELOC_PPC_EMB_MRKREF),
1666 MAP32 ("relsect", BFD_RELOC_PPC_EMB_RELSEC16),
1667 MAP32 ("relsect@l", BFD_RELOC_PPC_EMB_RELST_LO),
1668 MAP32 ("relsect@h", BFD_RELOC_PPC_EMB_RELST_HI),
1669 MAP32 ("relsect@ha", BFD_RELOC_PPC_EMB_RELST_HA),
1670 MAP32 ("bitfld", BFD_RELOC_PPC_EMB_BIT_FLD),
1671 MAP32 ("relsda", BFD_RELOC_PPC_EMB_RELSDA),
1672 MAP32 ("xgot", BFD_RELOC_PPC_TOC16),
1673 MAP64 ("higher", BFD_RELOC_PPC64_HIGHER),
1674 MAP64 ("highera", BFD_RELOC_PPC64_HIGHER_S),
1675 MAP64 ("highest", BFD_RELOC_PPC64_HIGHEST),
1676 MAP64 ("highesta", BFD_RELOC_PPC64_HIGHEST_S),
1677 MAP64 ("tocbase", BFD_RELOC_PPC64_TOC),
1678 MAP64 ("toc", BFD_RELOC_PPC_TOC16),
1679 MAP64 ("toc@l", BFD_RELOC_PPC64_TOC16_LO),
1680 MAP64 ("toc@h", BFD_RELOC_PPC64_TOC16_HI),
1681 MAP64 ("toc@ha", BFD_RELOC_PPC64_TOC16_HA),
1682 MAP64 ("dtprel@higher", BFD_RELOC_PPC64_DTPREL16_HIGHER),
1683 MAP64 ("dtprel@highera", BFD_RELOC_PPC64_DTPREL16_HIGHERA),
1684 MAP64 ("dtprel@highest", BFD_RELOC_PPC64_DTPREL16_HIGHEST),
1685 MAP64 ("dtprel@highesta", BFD_RELOC_PPC64_DTPREL16_HIGHESTA),
1686 MAP64 ("tprel@higher", BFD_RELOC_PPC64_TPREL16_HIGHER),
1687 MAP64 ("tprel@highera", BFD_RELOC_PPC64_TPREL16_HIGHERA),
1688 MAP64 ("tprel@highest", BFD_RELOC_PPC64_TPREL16_HIGHEST),
1689 MAP64 ("tprel@highesta", BFD_RELOC_PPC64_TPREL16_HIGHESTA),
1690 { (char *) 0, 0, 0, 0, BFD_RELOC_UNUSED }
1694 return BFD_RELOC_UNUSED;
1696 for (ch = *str, str2 = ident;
1697 (str2 < ident + sizeof (ident) - 1
1698 && (ISALNUM (ch) || ch == '@'));
1701 *str2++ = TOLOWER (ch);
1708 for (ptr = &mapping[0]; ptr->length > 0; ptr++)
1709 if (ch == ptr->string[0]
1710 && len == ptr->length
1711 && memcmp (ident, ptr->string, ptr->length) == 0
1712 && (ppc_obj64 ? ptr->valid64 : ptr->valid32))
1714 int reloc = ptr->reloc;
1717 if (exp_p->X_add_number != 0
1718 && (reloc == (int) BFD_RELOC_16_GOTOFF
1719 || reloc == (int) BFD_RELOC_LO16_GOTOFF
1720 || reloc == (int) BFD_RELOC_HI16_GOTOFF
1721 || reloc == (int) BFD_RELOC_HI16_S_GOTOFF))
1722 as_warn (_("identifier+constant@got means identifier@got+constant"));
1724 /* Now check for identifier@suffix+constant. */
1725 if (*str == '-' || *str == '+')
1727 char *orig_line = input_line_pointer;
1728 expressionS new_exp;
1730 input_line_pointer = str;
1731 expression (&new_exp);
1732 if (new_exp.X_op == O_constant)
1734 exp_p->X_add_number += new_exp.X_add_number;
1735 str = input_line_pointer;
1738 if (&input_line_pointer != str_p)
1739 input_line_pointer = orig_line;
1743 if (reloc == (int) BFD_RELOC_PPC64_TOC
1744 && exp_p->X_op == O_symbol
1745 && strcmp (S_GET_NAME (exp_p->X_add_symbol), ".TOC.") == 0)
1747 /* Change the symbol so that the dummy .TOC. symbol can be
1748 omitted from the object file. */
1749 exp_p->X_add_symbol = &abs_symbol;
1752 return (bfd_reloc_code_real_type) reloc;
1755 return BFD_RELOC_UNUSED;
1758 /* Like normal .long/.short/.word, except support @got, etc.
1759 Clobbers input_line_pointer, checks end-of-line. */
1761 ppc_elf_cons (nbytes)
1762 register int nbytes; /* 1=.byte, 2=.word, 4=.long, 8=.llong. */
1765 bfd_reloc_code_real_type reloc;
1767 if (is_it_end_of_statement ())
1769 demand_empty_rest_of_line ();
1776 if (exp.X_op == O_symbol
1777 && *input_line_pointer == '@'
1778 && (reloc = ppc_elf_suffix (&input_line_pointer,
1779 &exp)) != BFD_RELOC_UNUSED)
1781 reloc_howto_type *reloc_howto;
1784 reloc_howto = bfd_reloc_type_lookup (stdoutput, reloc);
1785 size = bfd_get_reloc_size (reloc_howto);
1789 as_bad (_("%s relocations do not fit in %d bytes\n"),
1790 reloc_howto->name, nbytes);
1797 p = frag_more (nbytes);
1799 if (target_big_endian)
1800 offset = nbytes - size;
1801 fix_new_exp (frag_now, p - frag_now->fr_literal + offset, size,
1806 emit_expr (&exp, (unsigned int) nbytes);
1808 while (*input_line_pointer++ == ',');
1810 /* Put terminator back into stream. */
1811 input_line_pointer--;
1812 demand_empty_rest_of_line ();
1815 /* Solaris pseduo op to change to the .rodata section. */
1820 char *save_line = input_line_pointer;
1821 static char section[] = ".rodata\n";
1823 /* Just pretend this is .section .rodata */
1824 input_line_pointer = section;
1825 obj_elf_section (xxx);
1827 input_line_pointer = save_line;
1830 /* Pseudo op to make file scope bss items. */
1833 int xxx ATTRIBUTE_UNUSED;
1835 register char *name;
1839 register symbolS *symbolP;
1846 name = input_line_pointer;
1847 c = get_symbol_end ();
1849 /* just after name is now '\0'. */
1850 p = input_line_pointer;
1853 if (*input_line_pointer != ',')
1855 as_bad (_("Expected comma after symbol-name: rest of line ignored."));
1856 ignore_rest_of_line ();
1860 input_line_pointer++; /* skip ',' */
1861 if ((size = get_absolute_expression ()) < 0)
1863 as_warn (_(".COMMon length (%ld.) <0! Ignored."), (long) size);
1864 ignore_rest_of_line ();
1868 /* The third argument to .lcomm is the alignment. */
1869 if (*input_line_pointer != ',')
1873 ++input_line_pointer;
1874 align = get_absolute_expression ();
1877 as_warn (_("ignoring bad alignment"));
1883 symbolP = symbol_find_or_make (name);
1886 if (S_IS_DEFINED (symbolP) && ! S_IS_COMMON (symbolP))
1888 as_bad (_("Ignoring attempt to re-define symbol `%s'."),
1889 S_GET_NAME (symbolP));
1890 ignore_rest_of_line ();
1894 if (S_GET_VALUE (symbolP) && S_GET_VALUE (symbolP) != (valueT) size)
1896 as_bad (_("Length of .lcomm \"%s\" is already %ld. Not changed to %ld."),
1897 S_GET_NAME (symbolP),
1898 (long) S_GET_VALUE (symbolP),
1901 ignore_rest_of_line ();
1907 old_subsec = now_subseg;
1910 /* Convert to a power of 2 alignment. */
1911 for (align2 = 0; (align & 1) == 0; align >>= 1, ++align2);
1914 as_bad (_("Common alignment not a power of 2"));
1915 ignore_rest_of_line ();
1922 record_alignment (bss_section, align2);
1923 subseg_set (bss_section, 0);
1925 frag_align (align2, 0, 0);
1926 if (S_GET_SEGMENT (symbolP) == bss_section)
1927 symbol_get_frag (symbolP)->fr_symbol = 0;
1928 symbol_set_frag (symbolP, frag_now);
1929 pfrag = frag_var (rs_org, 1, 1, (relax_substateT) 0, symbolP, size,
1932 S_SET_SIZE (symbolP, size);
1933 S_SET_SEGMENT (symbolP, bss_section);
1934 subseg_set (old_sec, old_subsec);
1935 demand_empty_rest_of_line ();
1938 /* Validate any relocations emitted for -mrelocatable, possibly adding
1939 fixups for word relocations in writable segments, so we can adjust
1942 ppc_elf_validate_fix (fixp, seg)
1946 if (fixp->fx_done || fixp->fx_pcrel)
1955 case SHLIB_MRELOCATABLE:
1956 if (fixp->fx_r_type <= BFD_RELOC_UNUSED
1957 && fixp->fx_r_type != BFD_RELOC_16_GOTOFF
1958 && fixp->fx_r_type != BFD_RELOC_HI16_GOTOFF
1959 && fixp->fx_r_type != BFD_RELOC_LO16_GOTOFF
1960 && fixp->fx_r_type != BFD_RELOC_HI16_S_GOTOFF
1961 && fixp->fx_r_type != BFD_RELOC_16_BASEREL
1962 && fixp->fx_r_type != BFD_RELOC_LO16_BASEREL
1963 && fixp->fx_r_type != BFD_RELOC_HI16_BASEREL
1964 && fixp->fx_r_type != BFD_RELOC_HI16_S_BASEREL
1965 && (seg->flags & SEC_LOAD) != 0
1966 && strcmp (segment_name (seg), ".got2") != 0
1967 && strcmp (segment_name (seg), ".dtors") != 0
1968 && strcmp (segment_name (seg), ".ctors") != 0
1969 && strcmp (segment_name (seg), ".fixup") != 0
1970 && strcmp (segment_name (seg), ".gcc_except_table") != 0
1971 && strcmp (segment_name (seg), ".eh_frame") != 0
1972 && strcmp (segment_name (seg), ".ex_shared") != 0)
1974 if ((seg->flags & (SEC_READONLY | SEC_CODE)) != 0
1975 || fixp->fx_r_type != BFD_RELOC_CTOR)
1977 as_bad_where (fixp->fx_file, fixp->fx_line,
1978 _("Relocation cannot be done when using -mrelocatable"));
1985 /* Prevent elf_frob_file_before_adjust removing a weak undefined
1986 function descriptor sym if the corresponding code sym is used. */
1989 ppc_frob_file_before_adjust ()
1997 for (symp = symbol_rootP; symp; symp = symbol_next (symp))
2004 name = S_GET_NAME (symp);
2008 if (! S_IS_WEAK (symp)
2009 || S_IS_DEFINED (symp))
2012 len = strlen (name) + 1;
2013 dotname = xmalloc (len + 1);
2015 memcpy (dotname + 1, name, len);
2016 dotsym = symbol_find_noref (dotname, 1);
2018 if (dotsym != NULL && (symbol_used_p (dotsym)
2019 || symbol_used_in_reloc_p (dotsym)))
2020 symbol_mark_used (symp);
2024 toc = bfd_get_section_by_name (stdoutput, ".toc");
2026 && bfd_section_size (stdoutput, toc) > 0x10000)
2027 as_warn (_("TOC section size exceeds 64k"));
2029 /* Don't emit .TOC. symbol. */
2030 symp = symbol_find (".TOC.");
2032 symbol_remove (symp, &symbol_rootP, &symbol_lastP);
2034 #endif /* OBJ_ELF */
2039 * Summary of parse_toc_entry.
2041 * in: Input_line_pointer points to the '[' in one of:
2043 * [toc] [tocv] [toc32] [toc64]
2045 * Anything else is an error of one kind or another.
2048 * return value: success or failure
2049 * toc_kind: kind of toc reference
2050 * input_line_pointer:
2051 * success: first char after the ']'
2052 * failure: unchanged
2056 * [toc] - rv == success, toc_kind = default_toc
2057 * [tocv] - rv == success, toc_kind = data_in_toc
2058 * [toc32] - rv == success, toc_kind = must_be_32
2059 * [toc64] - rv == success, toc_kind = must_be_64
2063 enum toc_size_qualifier
2065 default_toc, /* The toc cell constructed should be the system default size */
2066 data_in_toc, /* This is a direct reference to a toc cell */
2067 must_be_32, /* The toc cell constructed must be 32 bits wide */
2068 must_be_64 /* The toc cell constructed must be 64 bits wide */
2072 parse_toc_entry (toc_kind)
2073 enum toc_size_qualifier *toc_kind;
2078 enum toc_size_qualifier t;
2080 /* Save the input_line_pointer. */
2081 start = input_line_pointer;
2083 /* Skip over the '[' , and whitespace. */
2084 ++input_line_pointer;
2087 /* Find the spelling of the operand. */
2088 toc_spec = input_line_pointer;
2089 c = get_symbol_end ();
2091 if (strcmp (toc_spec, "toc") == 0)
2095 else if (strcmp (toc_spec, "tocv") == 0)
2099 else if (strcmp (toc_spec, "toc32") == 0)
2103 else if (strcmp (toc_spec, "toc64") == 0)
2109 as_bad (_("syntax error: invalid toc specifier `%s'"), toc_spec);
2110 *input_line_pointer = c;
2111 input_line_pointer = start;
2115 /* Now find the ']'. */
2116 *input_line_pointer = c;
2118 SKIP_WHITESPACE (); /* leading whitespace could be there. */
2119 c = *input_line_pointer++; /* input_line_pointer->past char in c. */
2123 as_bad (_("syntax error: expected `]', found `%c'"), c);
2124 input_line_pointer = start;
2135 #define APUID(a,v) ((((a) & 0xffff) << 16) | ((v) & 0xffff))
2137 ppc_apuinfo_section_add (apu, version)
2138 unsigned int apu, version;
2142 /* Check we don't already exist. */
2143 for (i = 0; i < ppc_apuinfo_num; i++)
2144 if (ppc_apuinfo_list[i] == APUID (apu, version))
2147 if (ppc_apuinfo_num == ppc_apuinfo_num_alloc)
2149 if (ppc_apuinfo_num_alloc == 0)
2151 ppc_apuinfo_num_alloc = 4;
2152 ppc_apuinfo_list = (unsigned long *)
2153 xmalloc (sizeof (unsigned long) * ppc_apuinfo_num_alloc);
2157 ppc_apuinfo_num_alloc += 4;
2158 ppc_apuinfo_list = (unsigned long *) xrealloc (ppc_apuinfo_list,
2159 sizeof (unsigned long) * ppc_apuinfo_num_alloc);
2162 ppc_apuinfo_list[ppc_apuinfo_num++] = APUID (apu, version);
2168 /* We need to keep a list of fixups. We can't simply generate them as
2169 we go, because that would require us to first create the frag, and
2170 that would screw up references to ``.''. */
2176 bfd_reloc_code_real_type reloc;
2179 #define MAX_INSN_FIXUPS (5)
2181 /* This routine is called for each instruction to be assembled. */
2188 const struct powerpc_opcode *opcode;
2190 const unsigned char *opindex_ptr;
2194 struct ppc_fixup fixups[MAX_INSN_FIXUPS];
2200 bfd_reloc_code_real_type reloc;
2203 /* Get the opcode. */
2204 for (s = str; *s != '\0' && ! ISSPACE (*s); s++)
2209 /* Look up the opcode in the hash table. */
2210 opcode = (const struct powerpc_opcode *) hash_find (ppc_hash, str);
2211 if (opcode == (const struct powerpc_opcode *) NULL)
2213 const struct powerpc_macro *macro;
2215 macro = (const struct powerpc_macro *) hash_find (ppc_macro_hash, str);
2216 if (macro == (const struct powerpc_macro *) NULL)
2217 as_bad (_("Unrecognized opcode: `%s'"), str);
2219 ppc_macro (s, macro);
2224 insn = opcode->opcode;
2227 while (ISSPACE (*str))
2230 /* PowerPC operands are just expressions. The only real issue is
2231 that a few operand types are optional. All cases which might use
2232 an optional operand separate the operands only with commas (in some
2233 cases parentheses are used, as in ``lwz 1,0(1)'' but such cases never
2234 have optional operands). Most instructions with optional operands
2235 have only one. Those that have more than one optional operand can
2236 take either all their operands or none. So, before we start seriously
2237 parsing the operands, we check to see if we have optional operands,
2238 and if we do, we count the number of commas to see which operands
2239 have been omitted. */
2241 for (opindex_ptr = opcode->operands; *opindex_ptr != 0; opindex_ptr++)
2243 const struct powerpc_operand *operand;
2245 operand = &powerpc_operands[*opindex_ptr];
2246 if ((operand->flags & PPC_OPERAND_OPTIONAL) != 0)
2248 unsigned int opcount;
2249 unsigned int num_operands_expected;
2252 /* There is an optional operand. Count the number of
2253 commas in the input line. */
2260 while ((s = strchr (s, ',')) != (char *) NULL)
2267 /* Compute the number of expected operands.
2268 Do not count fake operands. */
2269 for (num_operands_expected = 0, i = 0; opcode->operands[i]; i ++)
2270 if ((powerpc_operands [opcode->operands[i]].flags & PPC_OPERAND_FAKE) == 0)
2271 ++ num_operands_expected;
2273 /* If there are fewer operands in the line then are called
2274 for by the instruction, we want to skip the optional
2276 if (opcount < num_operands_expected)
2283 /* Gather the operands. */
2287 for (opindex_ptr = opcode->operands; *opindex_ptr != 0; opindex_ptr++)
2289 const struct powerpc_operand *operand;
2295 if (next_opindex == 0)
2296 operand = &powerpc_operands[*opindex_ptr];
2299 operand = &powerpc_operands[next_opindex];
2304 /* If this is a fake operand, then we do not expect anything
2306 if ((operand->flags & PPC_OPERAND_FAKE) != 0)
2308 insn = (*operand->insert) (insn, 0L, ppc_cpu, &errmsg);
2309 if (errmsg != (const char *) NULL)
2314 /* If this is an optional operand, and we are skipping it, just
2316 if ((operand->flags & PPC_OPERAND_OPTIONAL) != 0
2319 if (operand->insert)
2321 insn = (*operand->insert) (insn, 0L, ppc_cpu, &errmsg);
2322 if (errmsg != (const char *) NULL)
2325 if ((operand->flags & PPC_OPERAND_NEXT) != 0)
2326 next_opindex = *opindex_ptr + 1;
2330 /* Gather the operand. */
2331 hold = input_line_pointer;
2332 input_line_pointer = str;
2335 if (*input_line_pointer == '[')
2337 /* We are expecting something like the second argument here:
2339 * lwz r4,[toc].GS.0.static_int(rtoc)
2340 * ^^^^^^^^^^^^^^^^^^^^^^^^^^^
2341 * The argument following the `]' must be a symbol name, and the
2342 * register must be the toc register: 'rtoc' or '2'
2344 * The effect is to 0 as the displacement field
2345 * in the instruction, and issue an IMAGE_REL_PPC_TOCREL16 (or
2346 * the appropriate variation) reloc against it based on the symbol.
2347 * The linker will build the toc, and insert the resolved toc offset.
2350 * o The size of the toc entry is currently assumed to be
2351 * 32 bits. This should not be assumed to be a hard coded
2353 * o In an effort to cope with a change from 32 to 64 bits,
2354 * there are also toc entries that are specified to be
2355 * either 32 or 64 bits:
2356 * lwz r4,[toc32].GS.0.static_int(rtoc)
2357 * lwz r4,[toc64].GS.0.static_int(rtoc)
2358 * These demand toc entries of the specified size, and the
2359 * instruction probably requires it.
2363 enum toc_size_qualifier toc_kind;
2364 bfd_reloc_code_real_type toc_reloc;
2366 /* Go parse off the [tocXX] part. */
2367 valid_toc = parse_toc_entry (&toc_kind);
2371 /* Note: message has already been issued.
2372 FIXME: what sort of recovery should we do?
2373 demand_rest_of_line (); return; ? */
2376 /* Now get the symbol following the ']'. */
2382 /* In this case, we may not have seen the symbol yet,
2383 since it is allowed to appear on a .extern or .globl
2384 or just be a label in the .data section. */
2385 toc_reloc = BFD_RELOC_PPC_TOC16;
2388 /* 1. The symbol must be defined and either in the toc
2389 section, or a global.
2390 2. The reloc generated must have the TOCDEFN flag set
2391 in upper bit mess of the reloc type.
2392 FIXME: It's a little confusing what the tocv
2393 qualifier can be used for. At the very least, I've
2394 seen three uses, only one of which I'm sure I can
2396 if (ex.X_op == O_symbol)
2398 assert (ex.X_add_symbol != NULL);
2399 if (symbol_get_bfdsym (ex.X_add_symbol)->section
2402 as_bad (_("[tocv] symbol is not a toc symbol"));
2406 toc_reloc = BFD_RELOC_PPC_TOC16;
2409 /* FIXME: these next two specifically specify 32/64 bit
2410 toc entries. We don't support them today. Is this
2411 the right way to say that? */
2412 toc_reloc = BFD_RELOC_UNUSED;
2413 as_bad (_("Unimplemented toc32 expression modifier"));
2416 /* FIXME: see above. */
2417 toc_reloc = BFD_RELOC_UNUSED;
2418 as_bad (_("Unimplemented toc64 expression modifier"));
2422 _("Unexpected return value [%d] from parse_toc_entry!\n"),
2428 /* We need to generate a fixup for this expression. */
2429 if (fc >= MAX_INSN_FIXUPS)
2430 as_fatal (_("too many fixups"));
2432 fixups[fc].reloc = toc_reloc;
2433 fixups[fc].exp = ex;
2434 fixups[fc].opindex = *opindex_ptr;
2437 /* Ok. We've set up the fixup for the instruction. Now make it
2438 look like the constant 0 was found here. */
2440 ex.X_op = O_constant;
2441 ex.X_add_number = 0;
2442 ex.X_add_symbol = NULL;
2443 ex.X_op_symbol = NULL;
2449 if (! register_name (&ex))
2451 if ((operand->flags & PPC_OPERAND_CR) != 0)
2458 str = input_line_pointer;
2459 input_line_pointer = hold;
2461 if (ex.X_op == O_illegal)
2462 as_bad (_("illegal operand"));
2463 else if (ex.X_op == O_absent)
2464 as_bad (_("missing operand"));
2465 else if (ex.X_op == O_register)
2467 insn = ppc_insert_operand (insn, operand, ex.X_add_number,
2470 else if (ex.X_op == O_constant)
2473 /* Allow @HA, @L, @H on constants. */
2474 char *orig_str = str;
2476 if ((reloc = ppc_elf_suffix (&str, &ex)) != BFD_RELOC_UNUSED)
2483 case BFD_RELOC_LO16:
2484 /* X_unsigned is the default, so if the user has done
2485 something which cleared it, we always produce a
2487 if (ex.X_unsigned && ! (operand->flags & PPC_OPERAND_SIGNED))
2488 ex.X_add_number &= 0xffff;
2490 ex.X_add_number = SEX16 (ex.X_add_number);
2493 case BFD_RELOC_HI16:
2494 if (ex.X_unsigned && ! (operand->flags & PPC_OPERAND_SIGNED))
2495 ex.X_add_number = PPC_HI (ex.X_add_number);
2497 ex.X_add_number = SEX16 (PPC_HI (ex.X_add_number));
2500 case BFD_RELOC_HI16_S:
2501 if (ex.X_unsigned && ! (operand->flags & PPC_OPERAND_SIGNED))
2502 ex.X_add_number = PPC_HA (ex.X_add_number);
2504 ex.X_add_number = SEX16 (PPC_HA (ex.X_add_number));
2507 case BFD_RELOC_PPC64_HIGHER:
2508 if (ex.X_unsigned && ! (operand->flags & PPC_OPERAND_SIGNED))
2509 ex.X_add_number = PPC_HIGHER (ex.X_add_number);
2511 ex.X_add_number = SEX16 (PPC_HIGHER (ex.X_add_number));
2514 case BFD_RELOC_PPC64_HIGHER_S:
2515 if (ex.X_unsigned && ! (operand->flags & PPC_OPERAND_SIGNED))
2516 ex.X_add_number = PPC_HIGHERA (ex.X_add_number);
2518 ex.X_add_number = SEX16 (PPC_HIGHERA (ex.X_add_number));
2521 case BFD_RELOC_PPC64_HIGHEST:
2522 if (ex.X_unsigned && ! (operand->flags & PPC_OPERAND_SIGNED))
2523 ex.X_add_number = PPC_HIGHEST (ex.X_add_number);
2525 ex.X_add_number = SEX16 (PPC_HIGHEST (ex.X_add_number));
2528 case BFD_RELOC_PPC64_HIGHEST_S:
2529 if (ex.X_unsigned && ! (operand->flags & PPC_OPERAND_SIGNED))
2530 ex.X_add_number = PPC_HIGHESTA (ex.X_add_number);
2532 ex.X_add_number = SEX16 (PPC_HIGHESTA (ex.X_add_number));
2535 #endif /* OBJ_ELF */
2536 insn = ppc_insert_operand (insn, operand, ex.X_add_number,
2540 else if ((reloc = ppc_elf_suffix (&str, &ex)) != BFD_RELOC_UNUSED)
2542 /* Some TLS tweaks. */
2547 case BFD_RELOC_PPC_TLS:
2548 insn = ppc_insert_operand (insn, operand, ppc_obj64 ? 13 : 2,
2551 /* We'll only use the 32 (or 64) bit form of these relocations
2552 in constants. Instructions get the 16 bit form. */
2553 case BFD_RELOC_PPC_DTPREL:
2554 reloc = BFD_RELOC_PPC_DTPREL16;
2556 case BFD_RELOC_PPC_TPREL:
2557 reloc = BFD_RELOC_PPC_TPREL16;
2561 /* For the absolute forms of branches, convert the PC
2562 relative form back into the absolute. */
2563 if ((operand->flags & PPC_OPERAND_ABSOLUTE) != 0)
2567 case BFD_RELOC_PPC_B26:
2568 reloc = BFD_RELOC_PPC_BA26;
2570 case BFD_RELOC_PPC_B16:
2571 reloc = BFD_RELOC_PPC_BA16;
2573 case BFD_RELOC_PPC_B16_BRTAKEN:
2574 reloc = BFD_RELOC_PPC_BA16_BRTAKEN;
2576 case BFD_RELOC_PPC_B16_BRNTAKEN:
2577 reloc = BFD_RELOC_PPC_BA16_BRNTAKEN;
2585 && (operand->flags & (PPC_OPERAND_DS | PPC_OPERAND_DQ)) != 0)
2590 reloc = BFD_RELOC_PPC64_ADDR16_DS;
2592 case BFD_RELOC_LO16:
2593 reloc = BFD_RELOC_PPC64_ADDR16_LO_DS;
2595 case BFD_RELOC_16_GOTOFF:
2596 reloc = BFD_RELOC_PPC64_GOT16_DS;
2598 case BFD_RELOC_LO16_GOTOFF:
2599 reloc = BFD_RELOC_PPC64_GOT16_LO_DS;
2601 case BFD_RELOC_LO16_PLTOFF:
2602 reloc = BFD_RELOC_PPC64_PLT16_LO_DS;
2604 case BFD_RELOC_16_BASEREL:
2605 reloc = BFD_RELOC_PPC64_SECTOFF_DS;
2607 case BFD_RELOC_LO16_BASEREL:
2608 reloc = BFD_RELOC_PPC64_SECTOFF_LO_DS;
2610 case BFD_RELOC_PPC_TOC16:
2611 reloc = BFD_RELOC_PPC64_TOC16_DS;
2613 case BFD_RELOC_PPC64_TOC16_LO:
2614 reloc = BFD_RELOC_PPC64_TOC16_LO_DS;
2616 case BFD_RELOC_PPC64_PLTGOT16:
2617 reloc = BFD_RELOC_PPC64_PLTGOT16_DS;
2619 case BFD_RELOC_PPC64_PLTGOT16_LO:
2620 reloc = BFD_RELOC_PPC64_PLTGOT16_LO_DS;
2622 case BFD_RELOC_PPC_DTPREL16:
2623 reloc = BFD_RELOC_PPC64_DTPREL16_DS;
2625 case BFD_RELOC_PPC_DTPREL16_LO:
2626 reloc = BFD_RELOC_PPC64_DTPREL16_LO_DS;
2628 case BFD_RELOC_PPC_TPREL16:
2629 reloc = BFD_RELOC_PPC64_TPREL16_DS;
2631 case BFD_RELOC_PPC_TPREL16_LO:
2632 reloc = BFD_RELOC_PPC64_TPREL16_LO_DS;
2634 case BFD_RELOC_PPC_GOT_DTPREL16:
2635 case BFD_RELOC_PPC_GOT_DTPREL16_LO:
2636 case BFD_RELOC_PPC_GOT_TPREL16:
2637 case BFD_RELOC_PPC_GOT_TPREL16_LO:
2640 as_bad (_("unsupported relocation for DS offset field"));
2645 /* We need to generate a fixup for this expression. */
2646 if (fc >= MAX_INSN_FIXUPS)
2647 as_fatal (_("too many fixups"));
2648 fixups[fc].exp = ex;
2649 fixups[fc].opindex = 0;
2650 fixups[fc].reloc = reloc;
2653 #endif /* OBJ_ELF */
2657 /* We need to generate a fixup for this expression. */
2658 if (fc >= MAX_INSN_FIXUPS)
2659 as_fatal (_("too many fixups"));
2660 fixups[fc].exp = ex;
2661 fixups[fc].opindex = *opindex_ptr;
2662 fixups[fc].reloc = BFD_RELOC_UNUSED;
2671 else if ((operand->flags & PPC_OPERAND_PARENS) != 0)
2679 /* The call to expression should have advanced str past any
2682 && (endc != ',' || *str != '\0'))
2684 as_bad (_("syntax error; found `%c' but expected `%c'"), *str, endc);
2692 while (ISSPACE (*str))
2696 as_bad (_("junk at end of line: `%s'"), str);
2699 /* Do we need/want a APUinfo section? */
2700 if (ppc_cpu & (PPC_OPCODE_SPE
2701 | PPC_OPCODE_ISEL | PPC_OPCODE_EFS
2702 | PPC_OPCODE_BRLOCK | PPC_OPCODE_PMR | PPC_OPCODE_CACHELCK
2703 | PPC_OPCODE_RFMCI))
2705 /* These are all version "1". */
2706 if (opcode->flags & PPC_OPCODE_SPE)
2707 ppc_apuinfo_section_add (PPC_APUINFO_SPE, 1);
2708 if (opcode->flags & PPC_OPCODE_ISEL)
2709 ppc_apuinfo_section_add (PPC_APUINFO_ISEL, 1);
2710 if (opcode->flags & PPC_OPCODE_EFS)
2711 ppc_apuinfo_section_add (PPC_APUINFO_EFS, 1);
2712 if (opcode->flags & PPC_OPCODE_BRLOCK)
2713 ppc_apuinfo_section_add (PPC_APUINFO_BRLOCK, 1);
2714 if (opcode->flags & PPC_OPCODE_PMR)
2715 ppc_apuinfo_section_add (PPC_APUINFO_PMR, 1);
2716 if (opcode->flags & PPC_OPCODE_CACHELCK)
2717 ppc_apuinfo_section_add (PPC_APUINFO_CACHELCK, 1);
2718 if (opcode->flags & PPC_OPCODE_RFMCI)
2719 ppc_apuinfo_section_add (PPC_APUINFO_RFMCI, 1);
2723 /* Write out the instruction. */
2725 addr_mod = frag_now_fix () & 3;
2726 if (frag_now->has_code && frag_now->insn_addr != addr_mod)
2727 as_bad (_("instruction address is not a multiple of 4"));
2728 frag_now->insn_addr = addr_mod;
2729 frag_now->has_code = 1;
2730 md_number_to_chars (f, insn, 4);
2733 dwarf2_emit_insn (4);
2736 /* Create any fixups. At this point we do not use a
2737 bfd_reloc_code_real_type, but instead just use the
2738 BFD_RELOC_UNUSED plus the operand index. This lets us easily
2739 handle fixups for any operand type, although that is admittedly
2740 not a very exciting feature. We pick a BFD reloc type in
2742 for (i = 0; i < fc; i++)
2744 const struct powerpc_operand *operand;
2746 operand = &powerpc_operands[fixups[i].opindex];
2747 if (fixups[i].reloc != BFD_RELOC_UNUSED)
2749 reloc_howto_type *reloc_howto;
2754 reloc_howto = bfd_reloc_type_lookup (stdoutput, fixups[i].reloc);
2758 size = bfd_get_reloc_size (reloc_howto);
2759 offset = target_big_endian ? (4 - size) : 0;
2761 if (size < 1 || size > 4)
2764 fixP = fix_new_exp (frag_now,
2765 f - frag_now->fr_literal + offset,
2768 reloc_howto->pc_relative,
2771 /* Turn off complaints that the addend is too large for things like
2773 switch (fixups[i].reloc)
2775 case BFD_RELOC_16_GOTOFF:
2776 case BFD_RELOC_PPC_TOC16:
2777 case BFD_RELOC_LO16:
2778 case BFD_RELOC_HI16:
2779 case BFD_RELOC_HI16_S:
2781 case BFD_RELOC_PPC64_HIGHER:
2782 case BFD_RELOC_PPC64_HIGHER_S:
2783 case BFD_RELOC_PPC64_HIGHEST:
2784 case BFD_RELOC_PPC64_HIGHEST_S:
2786 fixP->fx_no_overflow = 1;
2793 fix_new_exp (frag_now,
2794 f - frag_now->fr_literal,
2797 (operand->flags & PPC_OPERAND_RELATIVE) != 0,
2798 ((bfd_reloc_code_real_type)
2799 (fixups[i].opindex + (int) BFD_RELOC_UNUSED)));
2803 /* Handle a macro. Gather all the operands, transform them as
2804 described by the macro, and call md_assemble recursively. All the
2805 operands are separated by commas; we don't accept parentheses
2806 around operands here. */
2809 ppc_macro (str, macro)
2811 const struct powerpc_macro *macro;
2822 /* Gather the users operands into the operands array. */
2827 if (count >= sizeof operands / sizeof operands[0])
2829 operands[count++] = s;
2830 s = strchr (s, ',');
2831 if (s == (char *) NULL)
2836 if (count != macro->operands)
2838 as_bad (_("wrong number of operands"));
2842 /* Work out how large the string must be (the size is unbounded
2843 because it includes user input). */
2845 format = macro->format;
2846 while (*format != '\0')
2855 arg = strtol (format + 1, &send, 10);
2856 know (send != format && arg < count);
2857 len += strlen (operands[arg]);
2862 /* Put the string together. */
2863 complete = s = (char *) alloca (len + 1);
2864 format = macro->format;
2865 while (*format != '\0')
2871 arg = strtol (format + 1, &send, 10);
2872 strcpy (s, operands[arg]);
2879 /* Assemble the constructed instruction. */
2880 md_assemble (complete);
2884 /* For ELF, add support for SHF_EXCLUDE and SHT_ORDERED. */
2887 ppc_section_letter (letter, ptr_msg)
2894 *ptr_msg = _("Bad .section directive: want a,e,w,x,M,S,G,T in string");
2899 ppc_section_word (str, len)
2903 if (len == 7 && strncmp (str, "exclude", 7) == 0)
2910 ppc_section_type (str, len)
2914 if (len == 7 && strncmp (str, "ordered", 7) == 0)
2921 ppc_section_flags (flags, attr, type)
2926 if (type == SHT_ORDERED)
2927 flags |= SEC_ALLOC | SEC_LOAD | SEC_SORT_ENTRIES;
2929 if (attr & SHF_EXCLUDE)
2930 flags |= SEC_EXCLUDE;
2934 #endif /* OBJ_ELF */
2937 /* Pseudo-op handling. */
2939 /* The .byte pseudo-op. This is similar to the normal .byte
2940 pseudo-op, but it can also take a single ASCII string. */
2944 int ignore ATTRIBUTE_UNUSED;
2946 if (*input_line_pointer != '\"')
2952 /* Gather characters. A real double quote is doubled. Unusual
2953 characters are not permitted. */
2954 ++input_line_pointer;
2959 c = *input_line_pointer++;
2963 if (*input_line_pointer != '\"')
2965 ++input_line_pointer;
2968 FRAG_APPEND_1_CHAR (c);
2971 demand_empty_rest_of_line ();
2976 /* XCOFF specific pseudo-op handling. */
2978 /* This is set if we are creating a .stabx symbol, since we don't want
2979 to handle symbol suffixes for such symbols. */
2980 static bfd_boolean ppc_stab_symbol;
2982 /* The .comm and .lcomm pseudo-ops for XCOFF. XCOFF puts common
2983 symbols in the .bss segment as though they were local common
2984 symbols, and uses a different smclas. The native Aix 4.3.3 assembler
2985 aligns .comm and .lcomm to 4 bytes. */
2991 asection *current_seg = now_seg;
2992 subsegT current_subseg = now_subseg;
2998 symbolS *lcomm_sym = NULL;
3002 name = input_line_pointer;
3003 endc = get_symbol_end ();
3004 end_name = input_line_pointer;
3007 if (*input_line_pointer != ',')
3009 as_bad (_("missing size"));
3010 ignore_rest_of_line ();
3013 ++input_line_pointer;
3015 size = get_absolute_expression ();
3018 as_bad (_("negative size"));
3019 ignore_rest_of_line ();
3025 /* The third argument to .comm is the alignment. */
3026 if (*input_line_pointer != ',')
3030 ++input_line_pointer;
3031 align = get_absolute_expression ();
3034 as_warn (_("ignoring bad alignment"));
3049 /* The third argument to .lcomm appears to be the real local
3050 common symbol to create. References to the symbol named in
3051 the first argument are turned into references to the third
3053 if (*input_line_pointer != ',')
3055 as_bad (_("missing real symbol name"));
3056 ignore_rest_of_line ();
3059 ++input_line_pointer;
3061 lcomm_name = input_line_pointer;
3062 lcomm_endc = get_symbol_end ();
3064 lcomm_sym = symbol_find_or_make (lcomm_name);
3066 *input_line_pointer = lcomm_endc;
3070 sym = symbol_find_or_make (name);
3073 if (S_IS_DEFINED (sym)
3074 || S_GET_VALUE (sym) != 0)
3076 as_bad (_("attempt to redefine symbol"));
3077 ignore_rest_of_line ();
3081 record_alignment (bss_section, align);
3084 || ! S_IS_DEFINED (lcomm_sym))
3093 S_SET_EXTERNAL (sym);
3097 symbol_get_tc (lcomm_sym)->output = 1;
3098 def_sym = lcomm_sym;
3102 subseg_set (bss_section, 1);
3103 frag_align (align, 0, 0);
3105 symbol_set_frag (def_sym, frag_now);
3106 pfrag = frag_var (rs_org, 1, 1, (relax_substateT) 0, def_sym,
3107 def_size, (char *) NULL);
3109 S_SET_SEGMENT (def_sym, bss_section);
3110 symbol_get_tc (def_sym)->align = align;
3114 /* Align the size of lcomm_sym. */
3115 symbol_get_frag (lcomm_sym)->fr_offset =
3116 ((symbol_get_frag (lcomm_sym)->fr_offset + (1 << align) - 1)
3117 &~ ((1 << align) - 1));
3118 if (align > symbol_get_tc (lcomm_sym)->align)
3119 symbol_get_tc (lcomm_sym)->align = align;
3124 /* Make sym an offset from lcomm_sym. */
3125 S_SET_SEGMENT (sym, bss_section);
3126 symbol_set_frag (sym, symbol_get_frag (lcomm_sym));
3127 S_SET_VALUE (sym, symbol_get_frag (lcomm_sym)->fr_offset);
3128 symbol_get_frag (lcomm_sym)->fr_offset += size;
3131 subseg_set (current_seg, current_subseg);
3133 demand_empty_rest_of_line ();
3136 /* The .csect pseudo-op. This switches us into a different
3137 subsegment. The first argument is a symbol whose value is the
3138 start of the .csect. In COFF, csect symbols get special aux
3139 entries defined by the x_csect field of union internal_auxent. The
3140 optional second argument is the alignment (the default is 2). */
3144 int ignore ATTRIBUTE_UNUSED;
3151 name = input_line_pointer;
3152 endc = get_symbol_end ();
3154 sym = symbol_find_or_make (name);
3156 *input_line_pointer = endc;
3158 if (S_GET_NAME (sym)[0] == '\0')
3160 /* An unnamed csect is assumed to be [PR]. */
3161 symbol_get_tc (sym)->class = XMC_PR;
3165 if (*input_line_pointer == ',')
3167 ++input_line_pointer;
3168 align = get_absolute_expression ();
3171 ppc_change_csect (sym, align);
3173 demand_empty_rest_of_line ();
3176 /* Change to a different csect. */
3179 ppc_change_csect (sym, align)
3183 if (S_IS_DEFINED (sym))
3184 subseg_set (S_GET_SEGMENT (sym), symbol_get_tc (sym)->subseg);
3194 /* This is a new csect. We need to look at the symbol class to
3195 figure out whether it should go in the text section or the
3199 switch (symbol_get_tc (sym)->class)
3209 S_SET_SEGMENT (sym, text_section);
3210 symbol_get_tc (sym)->subseg = ppc_text_subsegment;
3211 ++ppc_text_subsegment;
3212 list_ptr = &ppc_text_csects;
3222 if (ppc_toc_csect != NULL
3223 && (symbol_get_tc (ppc_toc_csect)->subseg + 1
3224 == ppc_data_subsegment))
3226 S_SET_SEGMENT (sym, data_section);
3227 symbol_get_tc (sym)->subseg = ppc_data_subsegment;
3228 ++ppc_data_subsegment;
3229 list_ptr = &ppc_data_csects;
3235 /* We set the obstack chunk size to a small value before
3236 changing subsegments, so that we don't use a lot of memory
3237 space for what may be a small section. */
3238 hold_chunksize = chunksize;
3241 sec = subseg_new (segment_name (S_GET_SEGMENT (sym)),
3242 symbol_get_tc (sym)->subseg);
3244 chunksize = hold_chunksize;
3247 ppc_after_toc_frag = frag_now;
3249 record_alignment (sec, align);
3251 frag_align_code (align, 0);
3253 frag_align (align, 0, 0);
3255 symbol_set_frag (sym, frag_now);
3256 S_SET_VALUE (sym, (valueT) frag_now_fix ());
3258 symbol_get_tc (sym)->align = align;
3259 symbol_get_tc (sym)->output = 1;
3260 symbol_get_tc (sym)->within = sym;
3262 for (list = *list_ptr;
3263 symbol_get_tc (list)->next != (symbolS *) NULL;
3264 list = symbol_get_tc (list)->next)
3266 symbol_get_tc (list)->next = sym;
3268 symbol_remove (sym, &symbol_rootP, &symbol_lastP);
3269 symbol_append (sym, symbol_get_tc (list)->within, &symbol_rootP,
3273 ppc_current_csect = sym;
3276 /* This function handles the .text and .data pseudo-ops. These
3277 pseudo-ops aren't really used by XCOFF; we implement them for the
3278 convenience of people who aren't used to XCOFF. */
3289 else if (type == 'd')
3294 sym = symbol_find_or_make (name);
3296 ppc_change_csect (sym, 2);
3298 demand_empty_rest_of_line ();
3301 /* This function handles the .section pseudo-op. This is mostly to
3302 give an error, since XCOFF only supports .text, .data and .bss, but
3303 we do permit the user to name the text or data section. */
3306 ppc_named_section (ignore)
3307 int ignore ATTRIBUTE_UNUSED;
3310 const char *real_name;
3314 user_name = input_line_pointer;
3315 c = get_symbol_end ();
3317 if (strcmp (user_name, ".text") == 0)
3318 real_name = ".text[PR]";
3319 else if (strcmp (user_name, ".data") == 0)
3320 real_name = ".data[RW]";
3323 as_bad (_("The XCOFF file format does not support arbitrary sections"));
3324 *input_line_pointer = c;
3325 ignore_rest_of_line ();
3329 *input_line_pointer = c;
3331 sym = symbol_find_or_make (real_name);
3333 ppc_change_csect (sym, 2);
3335 demand_empty_rest_of_line ();
3338 /* The .extern pseudo-op. We create an undefined symbol. */
3342 int ignore ATTRIBUTE_UNUSED;
3347 name = input_line_pointer;
3348 endc = get_symbol_end ();
3350 (void) symbol_find_or_make (name);
3352 *input_line_pointer = endc;
3354 demand_empty_rest_of_line ();
3357 /* The .lglobl pseudo-op. Keep the symbol in the symbol table. */
3361 int ignore ATTRIBUTE_UNUSED;
3367 name = input_line_pointer;
3368 endc = get_symbol_end ();
3370 sym = symbol_find_or_make (name);
3372 *input_line_pointer = endc;
3374 symbol_get_tc (sym)->output = 1;
3376 demand_empty_rest_of_line ();
3379 /* The .rename pseudo-op. The RS/6000 assembler can rename symbols,
3380 although I don't know why it bothers. */
3384 int ignore ATTRIBUTE_UNUSED;
3391 name = input_line_pointer;
3392 endc = get_symbol_end ();
3394 sym = symbol_find_or_make (name);
3396 *input_line_pointer = endc;
3398 if (*input_line_pointer != ',')
3400 as_bad (_("missing rename string"));
3401 ignore_rest_of_line ();
3404 ++input_line_pointer;
3406 symbol_get_tc (sym)->real_name = demand_copy_C_string (&len);
3408 demand_empty_rest_of_line ();
3411 /* The .stabx pseudo-op. This is similar to a normal .stabs
3412 pseudo-op, but slightly different. A sample is
3413 .stabx "main:F-1",.main,142,0
3414 The first argument is the symbol name to create. The second is the
3415 value, and the third is the storage class. The fourth seems to be
3416 always zero, and I am assuming it is the type. */
3420 int ignore ATTRIBUTE_UNUSED;
3427 name = demand_copy_C_string (&len);
3429 if (*input_line_pointer != ',')
3431 as_bad (_("missing value"));
3434 ++input_line_pointer;
3436 ppc_stab_symbol = TRUE;
3437 sym = symbol_make (name);
3438 ppc_stab_symbol = FALSE;
3440 symbol_get_tc (sym)->real_name = name;
3442 (void) expression (&exp);
3449 as_bad (_("illegal .stabx expression; zero assumed"));
3450 exp.X_add_number = 0;
3453 S_SET_VALUE (sym, (valueT) exp.X_add_number);
3454 symbol_set_frag (sym, &zero_address_frag);
3458 if (S_GET_SEGMENT (exp.X_add_symbol) == undefined_section)
3459 symbol_set_value_expression (sym, &exp);
3463 exp.X_add_number + S_GET_VALUE (exp.X_add_symbol));
3464 symbol_set_frag (sym, symbol_get_frag (exp.X_add_symbol));
3469 /* The value is some complex expression. This will probably
3470 fail at some later point, but this is probably the right
3471 thing to do here. */
3472 symbol_set_value_expression (sym, &exp);
3476 S_SET_SEGMENT (sym, ppc_coff_debug_section);
3477 symbol_get_bfdsym (sym)->flags |= BSF_DEBUGGING;
3479 if (*input_line_pointer != ',')
3481 as_bad (_("missing class"));
3484 ++input_line_pointer;
3486 S_SET_STORAGE_CLASS (sym, get_absolute_expression ());
3488 if (*input_line_pointer != ',')
3490 as_bad (_("missing type"));
3493 ++input_line_pointer;
3495 S_SET_DATA_TYPE (sym, get_absolute_expression ());
3497 symbol_get_tc (sym)->output = 1;
3499 if (S_GET_STORAGE_CLASS (sym) == C_STSYM) {
3501 symbol_get_tc (sym)->within = ppc_current_block;
3506 .stabx "z",arrays_,133,0
3509 .comm arrays_,13768,3
3511 resolve_symbol_value will copy the exp's "within" into sym's when the
3512 offset is 0. Since this seems to be corner case problem,
3513 only do the correction for storage class C_STSYM. A better solution
3514 would be to have the tc field updated in ppc_symbol_new_hook. */
3516 if (exp.X_op == O_symbol)
3518 symbol_get_tc (exp.X_add_symbol)->within = ppc_current_block;
3522 if (exp.X_op != O_symbol
3523 || ! S_IS_EXTERNAL (exp.X_add_symbol)
3524 || S_GET_SEGMENT (exp.X_add_symbol) != bss_section)
3525 ppc_frob_label (sym);
3528 symbol_remove (sym, &symbol_rootP, &symbol_lastP);
3529 symbol_append (sym, exp.X_add_symbol, &symbol_rootP, &symbol_lastP);
3530 if (symbol_get_tc (ppc_current_csect)->within == exp.X_add_symbol)
3531 symbol_get_tc (ppc_current_csect)->within = sym;
3534 demand_empty_rest_of_line ();
3537 /* The .function pseudo-op. This takes several arguments. The first
3538 argument seems to be the external name of the symbol. The second
3539 argument seems to be the label for the start of the function. gcc
3540 uses the same name for both. I have no idea what the third and
3541 fourth arguments are meant to be. The optional fifth argument is
3542 an expression for the size of the function. In COFF this symbol
3543 gets an aux entry like that used for a csect. */
3546 ppc_function (ignore)
3547 int ignore ATTRIBUTE_UNUSED;
3555 name = input_line_pointer;
3556 endc = get_symbol_end ();
3558 /* Ignore any [PR] suffix. */
3559 name = ppc_canonicalize_symbol_name (name);
3560 s = strchr (name, '[');
3561 if (s != (char *) NULL
3562 && strcmp (s + 1, "PR]") == 0)
3565 ext_sym = symbol_find_or_make (name);
3567 *input_line_pointer = endc;
3569 if (*input_line_pointer != ',')
3571 as_bad (_("missing symbol name"));
3572 ignore_rest_of_line ();
3575 ++input_line_pointer;
3577 name = input_line_pointer;
3578 endc = get_symbol_end ();
3580 lab_sym = symbol_find_or_make (name);
3582 *input_line_pointer = endc;
3584 if (ext_sym != lab_sym)
3588 exp.X_op = O_symbol;
3589 exp.X_add_symbol = lab_sym;
3590 exp.X_op_symbol = NULL;
3591 exp.X_add_number = 0;
3593 symbol_set_value_expression (ext_sym, &exp);
3596 if (symbol_get_tc (ext_sym)->class == -1)
3597 symbol_get_tc (ext_sym)->class = XMC_PR;
3598 symbol_get_tc (ext_sym)->output = 1;
3600 if (*input_line_pointer == ',')
3604 /* Ignore the third argument. */
3605 ++input_line_pointer;
3606 expression (&ignore);
3607 if (*input_line_pointer == ',')
3609 /* Ignore the fourth argument. */
3610 ++input_line_pointer;
3611 expression (&ignore);
3612 if (*input_line_pointer == ',')
3614 /* The fifth argument is the function size. */
3615 ++input_line_pointer;
3616 symbol_get_tc (ext_sym)->size = symbol_new ("L0\001",
3619 &zero_address_frag);
3620 pseudo_set (symbol_get_tc (ext_sym)->size);
3625 S_SET_DATA_TYPE (ext_sym, DT_FCN << N_BTSHFT);
3626 SF_SET_FUNCTION (ext_sym);
3627 SF_SET_PROCESS (ext_sym);
3628 coff_add_linesym (ext_sym);
3630 demand_empty_rest_of_line ();
3633 /* The .bf pseudo-op. This is just like a COFF C_FCN symbol named
3634 ".bf". If the pseudo op .bi was seen before .bf, patch the .bi sym
3635 with the correct line number */
3637 static symbolS *saved_bi_sym = 0;
3641 int ignore ATTRIBUTE_UNUSED;
3645 sym = symbol_make (".bf");
3646 S_SET_SEGMENT (sym, text_section);
3647 symbol_set_frag (sym, frag_now);
3648 S_SET_VALUE (sym, frag_now_fix ());
3649 S_SET_STORAGE_CLASS (sym, C_FCN);
3651 coff_line_base = get_absolute_expression ();
3653 S_SET_NUMBER_AUXILIARY (sym, 1);
3654 SA_SET_SYM_LNNO (sym, coff_line_base);
3656 /* Line number for bi. */
3659 S_SET_VALUE (saved_bi_sym, coff_n_line_nos);
3664 symbol_get_tc (sym)->output = 1;
3666 ppc_frob_label (sym);
3668 demand_empty_rest_of_line ();
3671 /* The .ef pseudo-op. This is just like a COFF C_FCN symbol named
3672 ".ef", except that the line number is absolute, not relative to the
3673 most recent ".bf" symbol. */
3677 int ignore ATTRIBUTE_UNUSED;
3681 sym = symbol_make (".ef");
3682 S_SET_SEGMENT (sym, text_section);
3683 symbol_set_frag (sym, frag_now);
3684 S_SET_VALUE (sym, frag_now_fix ());
3685 S_SET_STORAGE_CLASS (sym, C_FCN);
3686 S_SET_NUMBER_AUXILIARY (sym, 1);
3687 SA_SET_SYM_LNNO (sym, get_absolute_expression ());
3688 symbol_get_tc (sym)->output = 1;
3690 ppc_frob_label (sym);
3692 demand_empty_rest_of_line ();
3695 /* The .bi and .ei pseudo-ops. These take a string argument and
3696 generates a C_BINCL or C_EINCL symbol, which goes at the start of
3697 the symbol list. The value of .bi will be know when the next .bf
3704 static symbolS *last_biei;
3711 name = demand_copy_C_string (&len);
3713 /* The value of these symbols is actually file offset. Here we set
3714 the value to the index into the line number entries. In
3715 ppc_frob_symbols we set the fix_line field, which will cause BFD
3716 to do the right thing. */
3718 sym = symbol_make (name);
3719 /* obj-coff.c currently only handles line numbers correctly in the
3721 S_SET_SEGMENT (sym, text_section);
3722 S_SET_VALUE (sym, coff_n_line_nos);
3723 symbol_get_bfdsym (sym)->flags |= BSF_DEBUGGING;
3725 S_SET_STORAGE_CLASS (sym, ei ? C_EINCL : C_BINCL);
3726 symbol_get_tc (sym)->output = 1;
3734 for (look = last_biei ? last_biei : symbol_rootP;
3735 (look != (symbolS *) NULL
3736 && (S_GET_STORAGE_CLASS (look) == C_FILE
3737 || S_GET_STORAGE_CLASS (look) == C_BINCL
3738 || S_GET_STORAGE_CLASS (look) == C_EINCL));
3739 look = symbol_next (look))
3741 if (look != (symbolS *) NULL)
3743 symbol_remove (sym, &symbol_rootP, &symbol_lastP);
3744 symbol_insert (sym, look, &symbol_rootP, &symbol_lastP);
3748 demand_empty_rest_of_line ();
3751 /* The .bs pseudo-op. This generates a C_BSTAT symbol named ".bs".
3752 There is one argument, which is a csect symbol. The value of the
3753 .bs symbol is the index of this csect symbol. */
3757 int ignore ATTRIBUTE_UNUSED;
3764 if (ppc_current_block != NULL)
3765 as_bad (_("nested .bs blocks"));
3767 name = input_line_pointer;
3768 endc = get_symbol_end ();
3770 csect = symbol_find_or_make (name);
3772 *input_line_pointer = endc;
3774 sym = symbol_make (".bs");
3775 S_SET_SEGMENT (sym, now_seg);
3776 S_SET_STORAGE_CLASS (sym, C_BSTAT);
3777 symbol_get_bfdsym (sym)->flags |= BSF_DEBUGGING;
3778 symbol_get_tc (sym)->output = 1;
3780 symbol_get_tc (sym)->within = csect;
3782 ppc_frob_label (sym);
3784 ppc_current_block = sym;
3786 demand_empty_rest_of_line ();
3789 /* The .es pseudo-op. Generate a C_ESTART symbol named .es. */
3793 int ignore ATTRIBUTE_UNUSED;
3797 if (ppc_current_block == NULL)
3798 as_bad (_(".es without preceding .bs"));
3800 sym = symbol_make (".es");
3801 S_SET_SEGMENT (sym, now_seg);
3802 S_SET_STORAGE_CLASS (sym, C_ESTAT);
3803 symbol_get_bfdsym (sym)->flags |= BSF_DEBUGGING;
3804 symbol_get_tc (sym)->output = 1;
3806 ppc_frob_label (sym);
3808 ppc_current_block = NULL;
3810 demand_empty_rest_of_line ();
3813 /* The .bb pseudo-op. Generate a C_BLOCK symbol named .bb, with a
3818 int ignore ATTRIBUTE_UNUSED;
3822 sym = symbol_make (".bb");
3823 S_SET_SEGMENT (sym, text_section);
3824 symbol_set_frag (sym, frag_now);
3825 S_SET_VALUE (sym, frag_now_fix ());
3826 S_SET_STORAGE_CLASS (sym, C_BLOCK);
3828 S_SET_NUMBER_AUXILIARY (sym, 1);
3829 SA_SET_SYM_LNNO (sym, get_absolute_expression ());
3831 symbol_get_tc (sym)->output = 1;
3833 SF_SET_PROCESS (sym);
3835 ppc_frob_label (sym);
3837 demand_empty_rest_of_line ();
3840 /* The .eb pseudo-op. Generate a C_BLOCK symbol named .eb, with a
3845 int ignore ATTRIBUTE_UNUSED;
3849 sym = symbol_make (".eb");
3850 S_SET_SEGMENT (sym, text_section);
3851 symbol_set_frag (sym, frag_now);
3852 S_SET_VALUE (sym, frag_now_fix ());
3853 S_SET_STORAGE_CLASS (sym, C_BLOCK);
3854 S_SET_NUMBER_AUXILIARY (sym, 1);
3855 SA_SET_SYM_LNNO (sym, get_absolute_expression ());
3856 symbol_get_tc (sym)->output = 1;
3858 SF_SET_PROCESS (sym);
3860 ppc_frob_label (sym);
3862 demand_empty_rest_of_line ();
3865 /* The .bc pseudo-op. This just creates a C_BCOMM symbol with a
3870 int ignore ATTRIBUTE_UNUSED;
3876 name = demand_copy_C_string (&len);
3877 sym = symbol_make (name);
3878 S_SET_SEGMENT (sym, ppc_coff_debug_section);
3879 symbol_get_bfdsym (sym)->flags |= BSF_DEBUGGING;
3880 S_SET_STORAGE_CLASS (sym, C_BCOMM);
3881 S_SET_VALUE (sym, 0);
3882 symbol_get_tc (sym)->output = 1;
3884 ppc_frob_label (sym);
3886 demand_empty_rest_of_line ();
3889 /* The .ec pseudo-op. This just creates a C_ECOMM symbol. */
3893 int ignore ATTRIBUTE_UNUSED;
3897 sym = symbol_make (".ec");
3898 S_SET_SEGMENT (sym, ppc_coff_debug_section);
3899 symbol_get_bfdsym (sym)->flags |= BSF_DEBUGGING;
3900 S_SET_STORAGE_CLASS (sym, C_ECOMM);
3901 S_SET_VALUE (sym, 0);
3902 symbol_get_tc (sym)->output = 1;
3904 ppc_frob_label (sym);
3906 demand_empty_rest_of_line ();
3909 /* The .toc pseudo-op. Switch to the .toc subsegment. */
3913 int ignore ATTRIBUTE_UNUSED;
3915 if (ppc_toc_csect != (symbolS *) NULL)
3916 subseg_set (data_section, symbol_get_tc (ppc_toc_csect)->subseg);
3923 subseg = ppc_data_subsegment;
3924 ++ppc_data_subsegment;
3926 subseg_new (segment_name (data_section), subseg);
3927 ppc_toc_frag = frag_now;
3929 sym = symbol_find_or_make ("TOC[TC0]");
3930 symbol_set_frag (sym, frag_now);
3931 S_SET_SEGMENT (sym, data_section);
3932 S_SET_VALUE (sym, (valueT) frag_now_fix ());
3933 symbol_get_tc (sym)->subseg = subseg;
3934 symbol_get_tc (sym)->output = 1;
3935 symbol_get_tc (sym)->within = sym;
3937 ppc_toc_csect = sym;
3939 for (list = ppc_data_csects;
3940 symbol_get_tc (list)->next != (symbolS *) NULL;
3941 list = symbol_get_tc (list)->next)
3943 symbol_get_tc (list)->next = sym;
3945 symbol_remove (sym, &symbol_rootP, &symbol_lastP);
3946 symbol_append (sym, symbol_get_tc (list)->within, &symbol_rootP,
3950 ppc_current_csect = ppc_toc_csect;
3952 demand_empty_rest_of_line ();
3955 /* The AIX assembler automatically aligns the operands of a .long or
3956 .short pseudo-op, and we want to be compatible. */
3959 ppc_xcoff_cons (log_size)
3962 frag_align (log_size, 0, 0);
3963 record_alignment (now_seg, log_size);
3964 cons (1 << log_size);
3969 int dummy ATTRIBUTE_UNUSED;
3974 (void) expression (&exp);
3976 if (exp.X_op != O_constant)
3978 as_bad (_("non-constant byte count"));
3982 byte_count = exp.X_add_number;
3984 if (*input_line_pointer != ',')
3986 as_bad (_("missing value"));
3990 ++input_line_pointer;
3994 #endif /* OBJ_XCOFF */
3995 #if defined (OBJ_XCOFF) || defined (OBJ_ELF)
3997 /* The .tc pseudo-op. This is used when generating either XCOFF or
3998 ELF. This takes two or more arguments.
4000 When generating XCOFF output, the first argument is the name to
4001 give to this location in the toc; this will be a symbol with class
4002 TC. The rest of the arguments are N-byte values to actually put at
4003 this location in the TOC; often there is just one more argument, a
4004 relocatable symbol reference. The size of the value to store
4005 depends on target word size. A 32-bit target uses 4-byte values, a
4006 64-bit target uses 8-byte values.
4008 When not generating XCOFF output, the arguments are the same, but
4009 the first argument is simply ignored. */
4013 int ignore ATTRIBUTE_UNUSED;
4017 /* Define the TOC symbol name. */
4023 if (ppc_toc_csect == (symbolS *) NULL
4024 || ppc_toc_csect != ppc_current_csect)
4026 as_bad (_(".tc not in .toc section"));
4027 ignore_rest_of_line ();
4031 name = input_line_pointer;
4032 endc = get_symbol_end ();
4034 sym = symbol_find_or_make (name);
4036 *input_line_pointer = endc;
4038 if (S_IS_DEFINED (sym))
4042 label = symbol_get_tc (ppc_current_csect)->within;
4043 if (symbol_get_tc (label)->class != XMC_TC0)
4045 as_bad (_(".tc with no label"));
4046 ignore_rest_of_line ();
4050 S_SET_SEGMENT (label, S_GET_SEGMENT (sym));
4051 symbol_set_frag (label, symbol_get_frag (sym));
4052 S_SET_VALUE (label, S_GET_VALUE (sym));
4054 while (! is_end_of_line[(unsigned char) *input_line_pointer])
4055 ++input_line_pointer;
4060 S_SET_SEGMENT (sym, now_seg);
4061 symbol_set_frag (sym, frag_now);
4062 S_SET_VALUE (sym, (valueT) frag_now_fix ());
4063 symbol_get_tc (sym)->class = XMC_TC;
4064 symbol_get_tc (sym)->output = 1;
4066 ppc_frob_label (sym);
4069 #endif /* OBJ_XCOFF */
4073 /* Skip the TOC symbol name. */
4074 while (is_part_of_name (*input_line_pointer)
4075 || *input_line_pointer == '['
4076 || *input_line_pointer == ']'
4077 || *input_line_pointer == '{'
4078 || *input_line_pointer == '}')
4079 ++input_line_pointer;
4081 /* Align to a four/eight byte boundary. */
4082 align = ppc_obj64 ? 3 : 2;
4083 frag_align (align, 0, 0);
4084 record_alignment (now_seg, align);
4085 #endif /* OBJ_ELF */
4087 if (*input_line_pointer != ',')
4088 demand_empty_rest_of_line ();
4091 ++input_line_pointer;
4092 cons (ppc_obj64 ? 8 : 4);
4096 /* Pseudo-op .machine. */
4099 ppc_machine (ignore)
4100 int ignore ATTRIBUTE_UNUSED;
4103 #define MAX_HISTORY 100
4104 static unsigned long *cpu_history;
4105 static int curr_hist;
4109 if (*input_line_pointer == '"')
4112 cpu_string = demand_copy_C_string (&len);
4117 cpu_string = input_line_pointer;
4118 c = get_symbol_end ();
4119 cpu_string = xstrdup (cpu_string);
4120 *input_line_pointer = c;
4123 if (cpu_string != NULL)
4125 unsigned long old_cpu = ppc_cpu;
4128 for (p = cpu_string; *p != 0; p++)
4131 if (strcmp (cpu_string, "push") == 0)
4133 if (cpu_history == NULL)
4134 cpu_history = xmalloc (MAX_HISTORY * sizeof (*cpu_history));
4136 if (curr_hist >= MAX_HISTORY)
4137 as_bad (_(".machine stack overflow"));
4139 cpu_history[curr_hist++] = ppc_cpu;
4141 else if (strcmp (cpu_string, "pop") == 0)
4144 as_bad (_(".machine stack underflow"));
4146 ppc_cpu = cpu_history[--curr_hist];
4148 else if (parse_cpu (cpu_string))
4151 as_bad (_("invalid machine `%s'"), cpu_string);
4153 if (ppc_cpu != old_cpu)
4154 ppc_setup_opcodes ();
4157 demand_empty_rest_of_line ();
4160 /* See whether a symbol is in the TOC section. */
4163 ppc_is_toc_sym (sym)
4167 return symbol_get_tc (sym)->class == XMC_TC;
4170 const char *sname = segment_name (S_GET_SEGMENT (sym));
4172 return strcmp (sname, ".toc") == 0;
4174 return strcmp (sname, ".got") == 0;
4177 #endif /* defined (OBJ_XCOFF) || defined (OBJ_ELF) */
4181 /* Pseudo-ops specific to the Windows NT PowerPC PE (coff) format. */
4183 /* Set the current section. */
4185 ppc_set_current_section (new)
4188 ppc_previous_section = ppc_current_section;
4189 ppc_current_section = new;
4192 /* pseudo-op: .previous
4193 behaviour: toggles the current section with the previous section.
4195 warnings: "No previous section" */
4198 ppc_previous (ignore)
4199 int ignore ATTRIBUTE_UNUSED;
4203 if (ppc_previous_section == NULL)
4205 as_warn (_("No previous section to return to. Directive ignored."));
4209 subseg_set (ppc_previous_section, 0);
4211 ppc_set_current_section (ppc_previous_section);
4214 /* pseudo-op: .pdata
4215 behaviour: predefined read only data section
4219 initial: .section .pdata "adr3"
4220 a - don't know -- maybe a misprint
4221 d - initialized data
4223 3 - double word aligned (that would be 4 byte boundary)
4226 Tag index tables (also known as the function table) for exception
4227 handling, debugging, etc. */
4231 int ignore ATTRIBUTE_UNUSED;
4233 if (pdata_section == 0)
4235 pdata_section = subseg_new (".pdata", 0);
4237 bfd_set_section_flags (stdoutput, pdata_section,
4238 (SEC_ALLOC | SEC_LOAD | SEC_RELOC
4239 | SEC_READONLY | SEC_DATA ));
4241 bfd_set_section_alignment (stdoutput, pdata_section, 2);
4245 pdata_section = subseg_new (".pdata", 0);
4247 ppc_set_current_section (pdata_section);
4250 /* pseudo-op: .ydata
4251 behaviour: predefined read only data section
4255 initial: .section .ydata "drw3"
4256 a - don't know -- maybe a misprint
4257 d - initialized data
4259 3 - double word aligned (that would be 4 byte boundary)
4261 Tag tables (also known as the scope table) for exception handling,
4266 int ignore ATTRIBUTE_UNUSED;
4268 if (ydata_section == 0)
4270 ydata_section = subseg_new (".ydata", 0);
4271 bfd_set_section_flags (stdoutput, ydata_section,
4272 (SEC_ALLOC | SEC_LOAD | SEC_RELOC
4273 | SEC_READONLY | SEC_DATA ));
4275 bfd_set_section_alignment (stdoutput, ydata_section, 3);
4279 ydata_section = subseg_new (".ydata", 0);
4281 ppc_set_current_section (ydata_section);
4284 /* pseudo-op: .reldata
4285 behaviour: predefined read write data section
4286 double word aligned (4-byte)
4287 FIXME: relocation is applied to it
4288 FIXME: what's the difference between this and .data?
4291 initial: .section .reldata "drw3"
4292 d - initialized data
4295 3 - double word aligned (that would be 8 byte boundary)
4298 Like .data, but intended to hold data subject to relocation, such as
4299 function descriptors, etc. */
4302 ppc_reldata (ignore)
4303 int ignore ATTRIBUTE_UNUSED;
4305 if (reldata_section == 0)
4307 reldata_section = subseg_new (".reldata", 0);
4309 bfd_set_section_flags (stdoutput, reldata_section,
4310 (SEC_ALLOC | SEC_LOAD | SEC_RELOC
4313 bfd_set_section_alignment (stdoutput, reldata_section, 2);
4317 reldata_section = subseg_new (".reldata", 0);
4319 ppc_set_current_section (reldata_section);
4322 /* pseudo-op: .rdata
4323 behaviour: predefined read only data section
4327 initial: .section .rdata "dr3"
4328 d - initialized data
4330 3 - double word aligned (that would be 4 byte boundary) */
4334 int ignore ATTRIBUTE_UNUSED;
4336 if (rdata_section == 0)
4338 rdata_section = subseg_new (".rdata", 0);
4339 bfd_set_section_flags (stdoutput, rdata_section,
4340 (SEC_ALLOC | SEC_LOAD | SEC_RELOC
4341 | SEC_READONLY | SEC_DATA ));
4343 bfd_set_section_alignment (stdoutput, rdata_section, 2);
4347 rdata_section = subseg_new (".rdata", 0);
4349 ppc_set_current_section (rdata_section);
4352 /* pseudo-op: .ualong
4353 behaviour: much like .int, with the exception that no alignment is
4355 FIXME: test the alignment statement
4361 int ignore ATTRIBUTE_UNUSED;
4367 /* pseudo-op: .znop <symbol name>
4368 behaviour: Issue a nop instruction
4369 Issue a IMAGE_REL_PPC_IFGLUE relocation against it, using
4370 the supplied symbol name.
4372 warnings: Missing symbol name */
4376 int ignore ATTRIBUTE_UNUSED;
4379 const struct powerpc_opcode *opcode;
4390 /* Strip out the symbol name. */
4391 symbol_name = input_line_pointer;
4392 c = get_symbol_end ();
4394 name = xmalloc (input_line_pointer - symbol_name + 1);
4395 strcpy (name, symbol_name);
4397 sym = symbol_find_or_make (name);
4399 *input_line_pointer = c;
4403 /* Look up the opcode in the hash table. */
4404 opcode = (const struct powerpc_opcode *) hash_find (ppc_hash, "nop");
4406 /* Stick in the nop. */
4407 insn = opcode->opcode;
4409 /* Write out the instruction. */
4411 md_number_to_chars (f, insn, 4);
4413 f - frag_now->fr_literal,
4418 BFD_RELOC_16_GOT_PCREL);
4431 register char *name;
4435 register symbolS *symbolP;
4438 name = input_line_pointer;
4439 c = get_symbol_end ();
4441 /* just after name is now '\0'. */
4442 p = input_line_pointer;
4445 if (*input_line_pointer != ',')
4447 as_bad (_("Expected comma after symbol-name: rest of line ignored."));
4448 ignore_rest_of_line ();
4452 input_line_pointer++; /* skip ',' */
4453 if ((temp = get_absolute_expression ()) < 0)
4455 as_warn (_(".COMMon length (%ld.) <0! Ignored."), (long) temp);
4456 ignore_rest_of_line ();
4462 /* The third argument to .comm is the alignment. */
4463 if (*input_line_pointer != ',')
4467 ++input_line_pointer;
4468 align = get_absolute_expression ();
4471 as_warn (_("ignoring bad alignment"));
4478 symbolP = symbol_find_or_make (name);
4481 if (S_IS_DEFINED (symbolP) && ! S_IS_COMMON (symbolP))
4483 as_bad (_("Ignoring attempt to re-define symbol `%s'."),
4484 S_GET_NAME (symbolP));
4485 ignore_rest_of_line ();
4489 if (S_GET_VALUE (symbolP))
4491 if (S_GET_VALUE (symbolP) != (valueT) temp)
4492 as_bad (_("Length of .comm \"%s\" is already %ld. Not changed to %ld."),
4493 S_GET_NAME (symbolP),
4494 (long) S_GET_VALUE (symbolP),
4499 S_SET_VALUE (symbolP, (valueT) temp);
4500 S_SET_EXTERNAL (symbolP);
4501 S_SET_SEGMENT (symbolP, bfd_com_section_ptr);
4504 demand_empty_rest_of_line ();
4508 * implement the .section pseudo op:
4509 * .section name {, "flags"}
4511 * | +--- optional flags: 'b' for bss
4513 * +-- section name 'l' for lib
4517 * 'd' (apparently m88k for data)
4519 * But if the argument is not a quoted string, treat it as a
4520 * subsegment number.
4522 * FIXME: this is a copy of the section processing from obj-coff.c, with
4523 * additions/changes for the moto-pas assembler support. There are three
4526 * FIXME: I just noticed this. This doesn't work at all really. It it
4527 * setting bits that bfd probably neither understands or uses. The
4528 * correct approach (?) will have to incorporate extra fields attached
4529 * to the section to hold the system specific stuff. (krk)
4532 * 'a' - unknown - referred to in documentation, but no definition supplied
4533 * 'c' - section has code
4534 * 'd' - section has initialized data
4535 * 'u' - section has uninitialized data
4536 * 'i' - section contains directives (info)
4537 * 'n' - section can be discarded
4538 * 'R' - remove section at link time
4540 * Section Protection:
4541 * 'r' - section is readable
4542 * 'w' - section is writeable
4543 * 'x' - section is executable
4544 * 's' - section is sharable
4546 * Section Alignment:
4547 * '0' - align to byte boundary
4548 * '1' - align to halfword undary
4549 * '2' - align to word boundary
4550 * '3' - align to doubleword boundary
4551 * '4' - align to quadword boundary
4552 * '5' - align to 32 byte boundary
4553 * '6' - align to 64 byte boundary
4558 ppc_pe_section (ignore)
4559 int ignore ATTRIBUTE_UNUSED;
4561 /* Strip out the section name. */
4570 section_name = input_line_pointer;
4571 c = get_symbol_end ();
4573 name = xmalloc (input_line_pointer - section_name + 1);
4574 strcpy (name, section_name);
4576 *input_line_pointer = c;
4581 flags = SEC_NO_FLAGS;
4583 if (strcmp (name, ".idata$2") == 0)
4587 else if (strcmp (name, ".idata$3") == 0)
4591 else if (strcmp (name, ".idata$4") == 0)
4595 else if (strcmp (name, ".idata$5") == 0)
4599 else if (strcmp (name, ".idata$6") == 0)
4604 /* Default alignment to 16 byte boundary. */
4607 if (*input_line_pointer == ',')
4609 ++input_line_pointer;
4611 if (*input_line_pointer != '"')
4612 exp = get_absolute_expression ();
4615 ++input_line_pointer;
4616 while (*input_line_pointer != '"'
4617 && ! is_end_of_line[(unsigned char) *input_line_pointer])
4619 switch (*input_line_pointer)
4621 /* Section Contents */
4622 case 'a': /* unknown */
4623 as_bad (_("Unsupported section attribute -- 'a'"));
4625 case 'c': /* code section */
4628 case 'd': /* section has initialized data */
4631 case 'u': /* section has uninitialized data */
4632 /* FIXME: This is IMAGE_SCN_CNT_UNINITIALIZED_DATA
4636 case 'i': /* section contains directives (info) */
4637 /* FIXME: This is IMAGE_SCN_LNK_INFO
4639 flags |= SEC_HAS_CONTENTS;
4641 case 'n': /* section can be discarded */
4644 case 'R': /* Remove section at link time */
4645 flags |= SEC_NEVER_LOAD;
4648 /* Section Protection */
4649 case 'r': /* section is readable */
4650 flags |= IMAGE_SCN_MEM_READ;
4652 case 'w': /* section is writeable */
4653 flags |= IMAGE_SCN_MEM_WRITE;
4655 case 'x': /* section is executable */
4656 flags |= IMAGE_SCN_MEM_EXECUTE;
4658 case 's': /* section is sharable */
4659 flags |= IMAGE_SCN_MEM_SHARED;
4662 /* Section Alignment */
4663 case '0': /* align to byte boundary */
4664 flags |= IMAGE_SCN_ALIGN_1BYTES;
4667 case '1': /* align to halfword boundary */
4668 flags |= IMAGE_SCN_ALIGN_2BYTES;
4671 case '2': /* align to word boundary */
4672 flags |= IMAGE_SCN_ALIGN_4BYTES;
4675 case '3': /* align to doubleword boundary */
4676 flags |= IMAGE_SCN_ALIGN_8BYTES;
4679 case '4': /* align to quadword boundary */
4680 flags |= IMAGE_SCN_ALIGN_16BYTES;
4683 case '5': /* align to 32 byte boundary */
4684 flags |= IMAGE_SCN_ALIGN_32BYTES;
4687 case '6': /* align to 64 byte boundary */
4688 flags |= IMAGE_SCN_ALIGN_64BYTES;
4693 as_bad (_("unknown section attribute '%c'"),
4694 *input_line_pointer);
4697 ++input_line_pointer;
4699 if (*input_line_pointer == '"')
4700 ++input_line_pointer;
4704 sec = subseg_new (name, (subsegT) exp);
4706 ppc_set_current_section (sec);
4708 if (flags != SEC_NO_FLAGS)
4710 if (! bfd_set_section_flags (stdoutput, sec, flags))
4711 as_bad (_("error setting flags for \"%s\": %s"),
4712 bfd_section_name (stdoutput, sec),
4713 bfd_errmsg (bfd_get_error ()));
4716 bfd_set_section_alignment (stdoutput, sec, align);
4721 ppc_pe_function (ignore)
4722 int ignore ATTRIBUTE_UNUSED;
4728 name = input_line_pointer;
4729 endc = get_symbol_end ();
4731 ext_sym = symbol_find_or_make (name);
4733 *input_line_pointer = endc;
4735 S_SET_DATA_TYPE (ext_sym, DT_FCN << N_BTSHFT);
4736 SF_SET_FUNCTION (ext_sym);
4737 SF_SET_PROCESS (ext_sym);
4738 coff_add_linesym (ext_sym);
4740 demand_empty_rest_of_line ();
4744 ppc_pe_tocd (ignore)
4745 int ignore ATTRIBUTE_UNUSED;
4747 if (tocdata_section == 0)
4749 tocdata_section = subseg_new (".tocd", 0);
4750 /* FIXME: section flags won't work. */
4751 bfd_set_section_flags (stdoutput, tocdata_section,
4752 (SEC_ALLOC | SEC_LOAD | SEC_RELOC
4753 | SEC_READONLY | SEC_DATA));
4755 bfd_set_section_alignment (stdoutput, tocdata_section, 2);
4759 rdata_section = subseg_new (".tocd", 0);
4762 ppc_set_current_section (tocdata_section);
4764 demand_empty_rest_of_line ();
4767 /* Don't adjust TOC relocs to use the section symbol. */
4770 ppc_pe_fix_adjustable (fix)
4773 return fix->fx_r_type != BFD_RELOC_PPC_TOC16;
4780 /* XCOFF specific symbol and file handling. */
4782 /* Canonicalize the symbol name. We use the to force the suffix, if
4783 any, to use square brackets, and to be in upper case. */
4786 ppc_canonicalize_symbol_name (name)
4791 if (ppc_stab_symbol)
4794 for (s = name; *s != '\0' && *s != '{' && *s != '['; s++)
4808 for (s++; *s != '\0' && *s != brac; s++)
4811 if (*s == '\0' || s[1] != '\0')
4812 as_bad (_("bad symbol suffix"));
4820 /* Set the class of a symbol based on the suffix, if any. This is
4821 called whenever a new symbol is created. */
4824 ppc_symbol_new_hook (sym)
4827 struct ppc_tc_sy *tc;
4830 tc = symbol_get_tc (sym);
4834 tc->real_name = NULL;
4840 if (ppc_stab_symbol)
4843 s = strchr (S_GET_NAME (sym), '[');
4844 if (s == (const char *) NULL)
4846 /* There is no suffix. */
4855 if (strcmp (s, "BS]") == 0)
4859 if (strcmp (s, "DB]") == 0)
4861 else if (strcmp (s, "DS]") == 0)
4865 if (strcmp (s, "GL]") == 0)
4869 if (strcmp (s, "PR]") == 0)
4873 if (strcmp (s, "RO]") == 0)
4875 else if (strcmp (s, "RW]") == 0)
4879 if (strcmp (s, "SV]") == 0)
4883 if (strcmp (s, "TC]") == 0)
4885 else if (strcmp (s, "TI]") == 0)
4887 else if (strcmp (s, "TB]") == 0)
4889 else if (strcmp (s, "TC0]") == 0 || strcmp (s, "T0]") == 0)
4890 tc->class = XMC_TC0;
4893 if (strcmp (s, "UA]") == 0)
4895 else if (strcmp (s, "UC]") == 0)
4899 if (strcmp (s, "XO]") == 0)
4904 if (tc->class == -1)
4905 as_bad (_("Unrecognized symbol suffix"));
4908 /* Set the class of a label based on where it is defined. This
4909 handles symbols without suffixes. Also, move the symbol so that it
4910 follows the csect symbol. */
4913 ppc_frob_label (sym)
4916 if (ppc_current_csect != (symbolS *) NULL)
4918 if (symbol_get_tc (sym)->class == -1)
4919 symbol_get_tc (sym)->class = symbol_get_tc (ppc_current_csect)->class;
4921 symbol_remove (sym, &symbol_rootP, &symbol_lastP);
4922 symbol_append (sym, symbol_get_tc (ppc_current_csect)->within,
4923 &symbol_rootP, &symbol_lastP);
4924 symbol_get_tc (ppc_current_csect)->within = sym;
4928 dwarf2_emit_label (sym);
4932 /* This variable is set by ppc_frob_symbol if any absolute symbols are
4933 seen. It tells ppc_adjust_symtab whether it needs to look through
4936 static bfd_boolean ppc_saw_abs;
4938 /* Change the name of a symbol just before writing it out. Set the
4939 real name if the .rename pseudo-op was used. Otherwise, remove any
4940 class suffix. Return 1 if the symbol should not be included in the
4944 ppc_frob_symbol (sym)
4947 static symbolS *ppc_last_function;
4948 static symbolS *set_end;
4950 /* Discard symbols that should not be included in the output symbol
4952 if (! symbol_used_in_reloc_p (sym)
4953 && ((symbol_get_bfdsym (sym)->flags & BSF_SECTION_SYM) != 0
4954 || (! (S_IS_EXTERNAL (sym) || S_IS_WEAK (sym))
4955 && ! symbol_get_tc (sym)->output
4956 && S_GET_STORAGE_CLASS (sym) != C_FILE)))
4959 /* This one will disappear anyway. Don't make a csect sym for it. */
4960 if (sym == abs_section_sym)
4963 if (symbol_get_tc (sym)->real_name != (char *) NULL)
4964 S_SET_NAME (sym, symbol_get_tc (sym)->real_name);
4970 name = S_GET_NAME (sym);
4971 s = strchr (name, '[');
4972 if (s != (char *) NULL)
4978 snew = xmalloc (len + 1);
4979 memcpy (snew, name, len);
4982 S_SET_NAME (sym, snew);
4986 if (set_end != (symbolS *) NULL)
4988 SA_SET_SYM_ENDNDX (set_end, sym);
4992 if (SF_GET_FUNCTION (sym))
4994 if (ppc_last_function != (symbolS *) NULL)
4995 as_bad (_("two .function pseudo-ops with no intervening .ef"));
4996 ppc_last_function = sym;
4997 if (symbol_get_tc (sym)->size != (symbolS *) NULL)
4999 resolve_symbol_value (symbol_get_tc (sym)->size);
5000 SA_SET_SYM_FSIZE (sym,
5001 (long) S_GET_VALUE (symbol_get_tc (sym)->size));
5004 else if (S_GET_STORAGE_CLASS (sym) == C_FCN
5005 && strcmp (S_GET_NAME (sym), ".ef") == 0)
5007 if (ppc_last_function == (symbolS *) NULL)
5008 as_bad (_(".ef with no preceding .function"));
5011 set_end = ppc_last_function;
5012 ppc_last_function = NULL;
5014 /* We don't have a C_EFCN symbol, but we need to force the
5015 COFF backend to believe that it has seen one. */
5016 coff_last_function = NULL;
5020 if (! (S_IS_EXTERNAL (sym) || S_IS_WEAK (sym))
5021 && (symbol_get_bfdsym (sym)->flags & BSF_SECTION_SYM) == 0
5022 && S_GET_STORAGE_CLASS (sym) != C_FILE
5023 && S_GET_STORAGE_CLASS (sym) != C_FCN
5024 && S_GET_STORAGE_CLASS (sym) != C_BLOCK
5025 && S_GET_STORAGE_CLASS (sym) != C_BSTAT
5026 && S_GET_STORAGE_CLASS (sym) != C_ESTAT
5027 && S_GET_STORAGE_CLASS (sym) != C_BINCL
5028 && S_GET_STORAGE_CLASS (sym) != C_EINCL
5029 && S_GET_SEGMENT (sym) != ppc_coff_debug_section)
5030 S_SET_STORAGE_CLASS (sym, C_HIDEXT);
5032 if (S_GET_STORAGE_CLASS (sym) == C_EXT
5033 || S_GET_STORAGE_CLASS (sym) == C_HIDEXT)
5036 union internal_auxent *a;
5038 /* Create a csect aux. */
5039 i = S_GET_NUMBER_AUXILIARY (sym);
5040 S_SET_NUMBER_AUXILIARY (sym, i + 1);
5041 a = &coffsymbol (symbol_get_bfdsym (sym))->native[i + 1].u.auxent;
5042 if (symbol_get_tc (sym)->class == XMC_TC0)
5044 /* This is the TOC table. */
5045 know (strcmp (S_GET_NAME (sym), "TOC") == 0);
5046 a->x_csect.x_scnlen.l = 0;
5047 a->x_csect.x_smtyp = (2 << 3) | XTY_SD;
5049 else if (symbol_get_tc (sym)->subseg != 0)
5051 /* This is a csect symbol. x_scnlen is the size of the
5053 if (symbol_get_tc (sym)->next == (symbolS *) NULL)
5054 a->x_csect.x_scnlen.l = (bfd_section_size (stdoutput,
5055 S_GET_SEGMENT (sym))
5056 - S_GET_VALUE (sym));
5059 resolve_symbol_value (symbol_get_tc (sym)->next);
5060 a->x_csect.x_scnlen.l = (S_GET_VALUE (symbol_get_tc (sym)->next)
5061 - S_GET_VALUE (sym));
5063 a->x_csect.x_smtyp = (symbol_get_tc (sym)->align << 3) | XTY_SD;
5065 else if (S_GET_SEGMENT (sym) == bss_section)
5067 /* This is a common symbol. */
5068 a->x_csect.x_scnlen.l = symbol_get_frag (sym)->fr_offset;
5069 a->x_csect.x_smtyp = (symbol_get_tc (sym)->align << 3) | XTY_CM;
5070 if (S_IS_EXTERNAL (sym))
5071 symbol_get_tc (sym)->class = XMC_RW;
5073 symbol_get_tc (sym)->class = XMC_BS;
5075 else if (S_GET_SEGMENT (sym) == absolute_section)
5077 /* This is an absolute symbol. The csect will be created by
5078 ppc_adjust_symtab. */
5080 a->x_csect.x_smtyp = XTY_LD;
5081 if (symbol_get_tc (sym)->class == -1)
5082 symbol_get_tc (sym)->class = XMC_XO;
5084 else if (! S_IS_DEFINED (sym))
5086 /* This is an external symbol. */
5087 a->x_csect.x_scnlen.l = 0;
5088 a->x_csect.x_smtyp = XTY_ER;
5090 else if (symbol_get_tc (sym)->class == XMC_TC)
5094 /* This is a TOC definition. x_scnlen is the size of the
5096 next = symbol_next (sym);
5097 while (symbol_get_tc (next)->class == XMC_TC0)
5098 next = symbol_next (next);
5099 if (next == (symbolS *) NULL
5100 || symbol_get_tc (next)->class != XMC_TC)
5102 if (ppc_after_toc_frag == (fragS *) NULL)
5103 a->x_csect.x_scnlen.l = (bfd_section_size (stdoutput,
5105 - S_GET_VALUE (sym));
5107 a->x_csect.x_scnlen.l = (ppc_after_toc_frag->fr_address
5108 - S_GET_VALUE (sym));
5112 resolve_symbol_value (next);
5113 a->x_csect.x_scnlen.l = (S_GET_VALUE (next)
5114 - S_GET_VALUE (sym));
5116 a->x_csect.x_smtyp = (2 << 3) | XTY_SD;
5122 /* This is a normal symbol definition. x_scnlen is the
5123 symbol index of the containing csect. */
5124 if (S_GET_SEGMENT (sym) == text_section)
5125 csect = ppc_text_csects;
5126 else if (S_GET_SEGMENT (sym) == data_section)
5127 csect = ppc_data_csects;
5131 /* Skip the initial dummy symbol. */
5132 csect = symbol_get_tc (csect)->next;
5134 if (csect == (symbolS *) NULL)
5136 as_warn (_("warning: symbol %s has no csect"), S_GET_NAME (sym));
5137 a->x_csect.x_scnlen.l = 0;
5141 while (symbol_get_tc (csect)->next != (symbolS *) NULL)
5143 resolve_symbol_value (symbol_get_tc (csect)->next);
5144 if (S_GET_VALUE (symbol_get_tc (csect)->next)
5145 > S_GET_VALUE (sym))
5147 csect = symbol_get_tc (csect)->next;
5150 a->x_csect.x_scnlen.p =
5151 coffsymbol (symbol_get_bfdsym (csect))->native;
5152 coffsymbol (symbol_get_bfdsym (sym))->native[i + 1].fix_scnlen =
5155 a->x_csect.x_smtyp = XTY_LD;
5158 a->x_csect.x_parmhash = 0;
5159 a->x_csect.x_snhash = 0;
5160 if (symbol_get_tc (sym)->class == -1)
5161 a->x_csect.x_smclas = XMC_PR;
5163 a->x_csect.x_smclas = symbol_get_tc (sym)->class;
5164 a->x_csect.x_stab = 0;
5165 a->x_csect.x_snstab = 0;
5167 /* Don't let the COFF backend resort these symbols. */
5168 symbol_get_bfdsym (sym)->flags |= BSF_NOT_AT_END;
5170 else if (S_GET_STORAGE_CLASS (sym) == C_BSTAT)
5172 /* We want the value to be the symbol index of the referenced
5173 csect symbol. BFD will do that for us if we set the right
5175 asymbol *bsym = symbol_get_bfdsym (symbol_get_tc (sym)->within);
5176 combined_entry_type *c = coffsymbol (bsym)->native;
5178 S_SET_VALUE (sym, (valueT) (size_t) c);
5179 coffsymbol (symbol_get_bfdsym (sym))->native->fix_value = 1;
5181 else if (S_GET_STORAGE_CLASS (sym) == C_STSYM)
5186 /* The value is the offset from the enclosing csect. */
5187 block = symbol_get_tc (sym)->within;
5188 csect = symbol_get_tc (block)->within;
5189 resolve_symbol_value (csect);
5190 S_SET_VALUE (sym, S_GET_VALUE (sym) - S_GET_VALUE (csect));
5192 else if (S_GET_STORAGE_CLASS (sym) == C_BINCL
5193 || S_GET_STORAGE_CLASS (sym) == C_EINCL)
5195 /* We want the value to be a file offset into the line numbers.
5196 BFD will do that for us if we set the right flags. We have
5197 already set the value correctly. */
5198 coffsymbol (symbol_get_bfdsym (sym))->native->fix_line = 1;
5204 /* Adjust the symbol table. This creates csect symbols for all
5205 absolute symbols. */
5208 ppc_adjust_symtab ()
5215 for (sym = symbol_rootP; sym != NULL; sym = symbol_next (sym))
5219 union internal_auxent *a;
5221 if (S_GET_SEGMENT (sym) != absolute_section)
5224 csect = symbol_create (".abs[XO]", absolute_section,
5225 S_GET_VALUE (sym), &zero_address_frag);
5226 symbol_get_bfdsym (csect)->value = S_GET_VALUE (sym);
5227 S_SET_STORAGE_CLASS (csect, C_HIDEXT);
5228 i = S_GET_NUMBER_AUXILIARY (csect);
5229 S_SET_NUMBER_AUXILIARY (csect, i + 1);
5230 a = &coffsymbol (symbol_get_bfdsym (csect))->native[i + 1].u.auxent;
5231 a->x_csect.x_scnlen.l = 0;
5232 a->x_csect.x_smtyp = XTY_SD;
5233 a->x_csect.x_parmhash = 0;
5234 a->x_csect.x_snhash = 0;
5235 a->x_csect.x_smclas = XMC_XO;
5236 a->x_csect.x_stab = 0;
5237 a->x_csect.x_snstab = 0;
5239 symbol_insert (csect, sym, &symbol_rootP, &symbol_lastP);
5241 i = S_GET_NUMBER_AUXILIARY (sym);
5242 a = &coffsymbol (symbol_get_bfdsym (sym))->native[i].u.auxent;
5243 a->x_csect.x_scnlen.p = coffsymbol (symbol_get_bfdsym (csect))->native;
5244 coffsymbol (symbol_get_bfdsym (sym))->native[i].fix_scnlen = 1;
5247 ppc_saw_abs = FALSE;
5250 /* Set the VMA for a section. This is called on all the sections in
5254 ppc_frob_section (sec)
5257 static bfd_vma vma = 0;
5259 vma = md_section_align (sec, vma);
5260 bfd_set_section_vma (stdoutput, sec, vma);
5261 vma += bfd_section_size (stdoutput, sec);
5264 #endif /* OBJ_XCOFF */
5266 /* Turn a string in input_line_pointer into a floating point constant
5267 of type TYPE, and store the appropriate bytes in *LITP. The number
5268 of LITTLENUMS emitted is stored in *SIZEP. An error message is
5269 returned, or NULL on OK. */
5272 md_atof (type, litp, sizep)
5278 LITTLENUM_TYPE words[4];
5294 return _("bad call to md_atof");
5297 t = atof_ieee (input_line_pointer, type, words);
5299 input_line_pointer = t;
5303 if (target_big_endian)
5305 for (i = 0; i < prec; i++)
5307 md_number_to_chars (litp, (valueT) words[i], 2);
5313 for (i = prec - 1; i >= 0; i--)
5315 md_number_to_chars (litp, (valueT) words[i], 2);
5323 /* Write a value out to the object file, using the appropriate
5327 md_number_to_chars (buf, val, n)
5332 if (target_big_endian)
5333 number_to_chars_bigendian (buf, val, n);
5335 number_to_chars_littleendian (buf, val, n);
5338 /* Align a section (I don't know why this is machine dependent). */
5341 md_section_align (asection *seg ATTRIBUTE_UNUSED, valueT addr)
5346 int align = bfd_get_section_alignment (stdoutput, seg);
5348 return ((addr + (1 << align) - 1) & (-1 << align));
5352 /* We don't have any form of relaxing. */
5355 md_estimate_size_before_relax (fragp, seg)
5356 fragS *fragp ATTRIBUTE_UNUSED;
5357 asection *seg ATTRIBUTE_UNUSED;
5363 /* Convert a machine dependent frag. We never generate these. */
5366 md_convert_frag (abfd, sec, fragp)
5367 bfd *abfd ATTRIBUTE_UNUSED;
5368 asection *sec ATTRIBUTE_UNUSED;
5369 fragS *fragp ATTRIBUTE_UNUSED;
5374 /* We have no need to default values of symbols. */
5377 md_undefined_symbol (name)
5378 char *name ATTRIBUTE_UNUSED;
5383 /* Functions concerning relocs. */
5385 /* The location from which a PC relative jump should be calculated,
5386 given a PC relative reloc. */
5389 md_pcrel_from_section (fixp, sec)
5391 segT sec ATTRIBUTE_UNUSED;
5393 return fixp->fx_frag->fr_address + fixp->fx_where;
5398 /* This is called to see whether a fixup should be adjusted to use a
5399 section symbol. We take the opportunity to change a fixup against
5400 a symbol in the TOC subsegment into a reloc against the
5401 corresponding .tc symbol. */
5404 ppc_fix_adjustable (fix)
5407 valueT val = resolve_symbol_value (fix->fx_addsy);
5408 segT symseg = S_GET_SEGMENT (fix->fx_addsy);
5409 TC_SYMFIELD_TYPE *tc;
5411 if (symseg == absolute_section)
5414 if (ppc_toc_csect != (symbolS *) NULL
5415 && fix->fx_addsy != ppc_toc_csect
5416 && symseg == data_section
5417 && val >= ppc_toc_frag->fr_address
5418 && (ppc_after_toc_frag == (fragS *) NULL
5419 || val < ppc_after_toc_frag->fr_address))
5423 for (sy = symbol_next (ppc_toc_csect);
5424 sy != (symbolS *) NULL;
5425 sy = symbol_next (sy))
5427 TC_SYMFIELD_TYPE *sy_tc = symbol_get_tc (sy);
5429 if (sy_tc->class == XMC_TC0)
5431 if (sy_tc->class != XMC_TC)
5433 if (val == resolve_symbol_value (sy))
5436 fix->fx_addnumber = val - ppc_toc_frag->fr_address;
5441 as_bad_where (fix->fx_file, fix->fx_line,
5442 _("symbol in .toc does not match any .tc"));
5445 /* Possibly adjust the reloc to be against the csect. */
5446 tc = symbol_get_tc (fix->fx_addsy);
5448 && tc->class != XMC_TC0
5449 && tc->class != XMC_TC
5450 && symseg != bss_section
5451 /* Don't adjust if this is a reloc in the toc section. */
5452 && (symseg != data_section
5453 || ppc_toc_csect == NULL
5454 || val < ppc_toc_frag->fr_address
5455 || (ppc_after_toc_frag != NULL
5456 && val >= ppc_after_toc_frag->fr_address)))
5459 symbolS *next_csect;
5461 if (symseg == text_section)
5462 csect = ppc_text_csects;
5463 else if (symseg == data_section)
5464 csect = ppc_data_csects;
5468 /* Skip the initial dummy symbol. */
5469 csect = symbol_get_tc (csect)->next;
5471 if (csect != (symbolS *) NULL)
5473 while ((next_csect = symbol_get_tc (csect)->next) != (symbolS *) NULL
5474 && (symbol_get_frag (next_csect)->fr_address <= val))
5476 /* If the csect address equals the symbol value, then we
5477 have to look through the full symbol table to see
5478 whether this is the csect we want. Note that we will
5479 only get here if the csect has zero length. */
5480 if (symbol_get_frag (csect)->fr_address == val
5481 && S_GET_VALUE (csect) == val)
5485 for (scan = symbol_next (csect);
5487 scan = symbol_next (scan))
5489 if (symbol_get_tc (scan)->subseg != 0)
5491 if (scan == fix->fx_addsy)
5495 /* If we found the symbol before the next csect
5496 symbol, then this is the csect we want. */
5497 if (scan == fix->fx_addsy)
5504 fix->fx_offset += val - symbol_get_frag (csect)->fr_address;
5505 fix->fx_addsy = csect;
5510 /* Adjust a reloc against a .lcomm symbol to be against the base
5512 if (symseg == bss_section
5513 && ! S_IS_EXTERNAL (fix->fx_addsy))
5515 symbolS *sy = symbol_get_frag (fix->fx_addsy)->fr_symbol;
5517 fix->fx_offset += val - resolve_symbol_value (sy);
5524 /* A reloc from one csect to another must be kept. The assembler
5525 will, of course, keep relocs between sections, and it will keep
5526 absolute relocs, but we need to force it to keep PC relative relocs
5527 between two csects in the same section. */
5530 ppc_force_relocation (fix)
5533 /* At this point fix->fx_addsy should already have been converted to
5534 a csect symbol. If the csect does not include the fragment, then
5535 we need to force the relocation. */
5537 && fix->fx_addsy != NULL
5538 && symbol_get_tc (fix->fx_addsy)->subseg != 0
5539 && ((symbol_get_frag (fix->fx_addsy)->fr_address
5540 > fix->fx_frag->fr_address)
5541 || (symbol_get_tc (fix->fx_addsy)->next != NULL
5542 && (symbol_get_frag (symbol_get_tc (fix->fx_addsy)->next)->fr_address
5543 <= fix->fx_frag->fr_address))))
5546 return generic_force_reloc (fix);
5549 #endif /* OBJ_XCOFF */
5552 /* If this function returns non-zero, it guarantees that a relocation
5553 will be emitted for a fixup. */
5556 ppc_force_relocation (fix)
5559 /* Branch prediction relocations must force a relocation, as must
5560 the vtable description relocs. */
5561 switch (fix->fx_r_type)
5563 case BFD_RELOC_PPC_B16_BRTAKEN:
5564 case BFD_RELOC_PPC_B16_BRNTAKEN:
5565 case BFD_RELOC_PPC_BA16_BRTAKEN:
5566 case BFD_RELOC_PPC_BA16_BRNTAKEN:
5567 case BFD_RELOC_24_PLT_PCREL:
5568 case BFD_RELOC_PPC64_TOC:
5574 if (fix->fx_r_type >= BFD_RELOC_PPC_TLS
5575 && fix->fx_r_type <= BFD_RELOC_PPC64_DTPREL16_HIGHESTA)
5578 return generic_force_reloc (fix);
5582 ppc_fix_adjustable (fix)
5585 return (fix->fx_r_type != BFD_RELOC_16_GOTOFF
5586 && fix->fx_r_type != BFD_RELOC_LO16_GOTOFF
5587 && fix->fx_r_type != BFD_RELOC_HI16_GOTOFF
5588 && fix->fx_r_type != BFD_RELOC_HI16_S_GOTOFF
5589 && fix->fx_r_type != BFD_RELOC_GPREL16
5590 && fix->fx_r_type != BFD_RELOC_VTABLE_INHERIT
5591 && fix->fx_r_type != BFD_RELOC_VTABLE_ENTRY
5592 && !(fix->fx_r_type >= BFD_RELOC_PPC_TLS
5593 && fix->fx_r_type <= BFD_RELOC_PPC64_DTPREL16_HIGHESTA));
5597 /* Implement HANDLE_ALIGN. This writes the NOP pattern into an
5598 rs_align_code frag. */
5601 ppc_handle_align (struct frag *fragP)
5603 valueT count = (fragP->fr_next->fr_address
5604 - (fragP->fr_address + fragP->fr_fix));
5606 if (count != 0 && (count & 3) == 0)
5608 char *dest = fragP->fr_literal + fragP->fr_fix;
5611 md_number_to_chars (dest, 0x60000000, 4);
5613 if ((ppc_cpu & PPC_OPCODE_POWER6) != 0)
5615 /* For power6, we want the last nop to be a group terminating
5616 one, "ori 1,1,0". Do this by inserting an rs_fill frag
5617 immediately after this one, with its address set to the last
5618 nop location. This will automatically reduce the number of
5619 nops in the current frag by one. */
5622 struct frag *group_nop = xmalloc (SIZEOF_STRUCT_FRAG + 4);
5624 memcpy (group_nop, fragP, SIZEOF_STRUCT_FRAG);
5625 group_nop->fr_address = group_nop->fr_next->fr_address - 4;
5626 group_nop->fr_fix = 0;
5627 group_nop->fr_offset = 1;
5628 group_nop->fr_type = rs_fill;
5629 fragP->fr_next = group_nop;
5630 dest = group_nop->fr_literal;
5633 md_number_to_chars (dest, 0x60210000, 4);
5638 /* Apply a fixup to the object code. This is called for all the
5639 fixups we generated by the call to fix_new_exp, above. In the call
5640 above we used a reloc code which was the largest legal reloc code
5641 plus the operand index. Here we undo that to recover the operand
5642 index. At this point all symbol values should be fully resolved,
5643 and we attempt to completely resolve the reloc. If we can not do
5644 that, we determine the correct reloc code and put it back in the
5648 md_apply_fix (fixP, valP, seg)
5651 segT seg ATTRIBUTE_UNUSED;
5653 valueT value = * valP;
5656 if (fixP->fx_addsy != NULL)
5658 /* Hack around bfd_install_relocation brain damage. */
5660 value += fixP->fx_frag->fr_address + fixP->fx_where;
5665 /* FIXME FIXME FIXME: The value we are passed in *valP includes
5666 the symbol values. If we are doing this relocation the code in
5667 write.c is going to call bfd_install_relocation, which is also
5668 going to use the symbol value. That means that if the reloc is
5669 fully resolved we want to use *valP since bfd_install_relocation is
5671 However, if the reloc is not fully resolved we do not want to use
5672 *valP, and must use fx_offset instead. However, if the reloc
5673 is PC relative, we do want to use *valP since it includes the
5674 result of md_pcrel_from. This is confusing. */
5675 if (fixP->fx_addsy == (symbolS *) NULL)
5678 else if (fixP->fx_pcrel)
5682 value = fixP->fx_offset;
5685 if (fixP->fx_subsy != (symbolS *) NULL)
5687 /* We can't actually support subtracting a symbol. */
5688 as_bad_where (fixP->fx_file, fixP->fx_line, _("expression too complex"));
5691 if ((int) fixP->fx_r_type >= (int) BFD_RELOC_UNUSED)
5694 const struct powerpc_operand *operand;
5698 opindex = (int) fixP->fx_r_type - (int) BFD_RELOC_UNUSED;
5700 operand = &powerpc_operands[opindex];
5703 /* An instruction like `lwz 9,sym(30)' when `sym' is not a TOC symbol
5704 does not generate a reloc. It uses the offset of `sym' within its
5705 csect. Other usages, such as `.long sym', generate relocs. This
5706 is the documented behaviour of non-TOC symbols. */
5707 if ((operand->flags & PPC_OPERAND_PARENS) != 0
5708 && (operand->bitm & 0xfff0) == 0xfff0
5709 && operand->shift == 0
5710 && (operand->insert == NULL || ppc_obj64)
5711 && fixP->fx_addsy != NULL
5712 && symbol_get_tc (fixP->fx_addsy)->subseg != 0
5713 && symbol_get_tc (fixP->fx_addsy)->class != XMC_TC
5714 && symbol_get_tc (fixP->fx_addsy)->class != XMC_TC0
5715 && S_GET_SEGMENT (fixP->fx_addsy) != bss_section)
5717 value = fixP->fx_offset;
5722 /* Fetch the instruction, insert the fully resolved operand
5723 value, and stuff the instruction back again. */
5724 where = fixP->fx_frag->fr_literal + fixP->fx_where;
5725 if (target_big_endian)
5726 insn = bfd_getb32 ((unsigned char *) where);
5728 insn = bfd_getl32 ((unsigned char *) where);
5729 insn = ppc_insert_operand (insn, operand, (offsetT) value,
5730 fixP->fx_file, fixP->fx_line);
5731 if (target_big_endian)
5732 bfd_putb32 ((bfd_vma) insn, (unsigned char *) where);
5734 bfd_putl32 ((bfd_vma) insn, (unsigned char *) where);
5737 /* Nothing else to do here. */
5740 assert (fixP->fx_addsy != NULL);
5742 /* Determine a BFD reloc value based on the operand information.
5743 We are only prepared to turn a few of the operands into
5745 if ((operand->flags & PPC_OPERAND_RELATIVE) != 0
5746 && operand->bitm == 0x3fffffc
5747 && operand->shift == 0)
5748 fixP->fx_r_type = BFD_RELOC_PPC_B26;
5749 else if ((operand->flags & PPC_OPERAND_RELATIVE) != 0
5750 && operand->bitm == 0xfffc
5751 && operand->shift == 0)
5753 fixP->fx_r_type = BFD_RELOC_PPC_B16;
5756 if (target_big_endian)
5757 fixP->fx_where += 2;
5760 else if ((operand->flags & PPC_OPERAND_ABSOLUTE) != 0
5761 && operand->bitm == 0x3fffffc
5762 && operand->shift == 0)
5763 fixP->fx_r_type = BFD_RELOC_PPC_BA26;
5764 else if ((operand->flags & PPC_OPERAND_ABSOLUTE) != 0
5765 && operand->bitm == 0xfffc
5766 && operand->shift == 0)
5768 fixP->fx_r_type = BFD_RELOC_PPC_BA16;
5771 if (target_big_endian)
5772 fixP->fx_where += 2;
5775 #if defined (OBJ_XCOFF) || defined (OBJ_ELF)
5776 else if ((operand->flags & PPC_OPERAND_PARENS) != 0
5777 && (operand->bitm & 0xfff0) == 0xfff0
5778 && operand->shift == 0)
5780 if (ppc_is_toc_sym (fixP->fx_addsy))
5782 fixP->fx_r_type = BFD_RELOC_PPC_TOC16;
5785 && (operand->flags & PPC_OPERAND_DS) != 0)
5786 fixP->fx_r_type = BFD_RELOC_PPC64_TOC16_DS;
5791 fixP->fx_r_type = BFD_RELOC_16;
5794 && (operand->flags & PPC_OPERAND_DS) != 0)
5795 fixP->fx_r_type = BFD_RELOC_PPC64_ADDR16_DS;
5799 if (target_big_endian)
5800 fixP->fx_where += 2;
5802 #endif /* defined (OBJ_XCOFF) || defined (OBJ_ELF) */
5808 /* Use expr_symbol_where to see if this is an expression
5810 if (expr_symbol_where (fixP->fx_addsy, &sfile, &sline))
5811 as_bad_where (fixP->fx_file, fixP->fx_line,
5812 _("unresolved expression that must be resolved"));
5814 as_bad_where (fixP->fx_file, fixP->fx_line,
5815 _("unsupported relocation against %s"),
5816 S_GET_NAME (fixP->fx_addsy));
5824 ppc_elf_validate_fix (fixP, seg);
5826 switch (fixP->fx_r_type)
5828 case BFD_RELOC_CTOR:
5835 fixP->fx_r_type = BFD_RELOC_32_PCREL;
5839 case BFD_RELOC_32_PCREL:
5840 case BFD_RELOC_PPC_EMB_NADDR32:
5841 md_number_to_chars (fixP->fx_frag->fr_literal + fixP->fx_where,
5848 fixP->fx_r_type = BFD_RELOC_64_PCREL;
5851 case BFD_RELOC_64_PCREL:
5852 md_number_to_chars (fixP->fx_frag->fr_literal + fixP->fx_where,
5856 case BFD_RELOC_GPREL16:
5857 case BFD_RELOC_16_GOT_PCREL:
5858 case BFD_RELOC_16_GOTOFF:
5859 case BFD_RELOC_LO16_GOTOFF:
5860 case BFD_RELOC_HI16_GOTOFF:
5861 case BFD_RELOC_HI16_S_GOTOFF:
5862 case BFD_RELOC_16_BASEREL:
5863 case BFD_RELOC_LO16_BASEREL:
5864 case BFD_RELOC_HI16_BASEREL:
5865 case BFD_RELOC_HI16_S_BASEREL:
5866 case BFD_RELOC_PPC_EMB_NADDR16:
5867 case BFD_RELOC_PPC_EMB_NADDR16_LO:
5868 case BFD_RELOC_PPC_EMB_NADDR16_HI:
5869 case BFD_RELOC_PPC_EMB_NADDR16_HA:
5870 case BFD_RELOC_PPC_EMB_SDAI16:
5871 case BFD_RELOC_PPC_EMB_SDA2REL:
5872 case BFD_RELOC_PPC_EMB_SDA2I16:
5873 case BFD_RELOC_PPC_EMB_RELSEC16:
5874 case BFD_RELOC_PPC_EMB_RELST_LO:
5875 case BFD_RELOC_PPC_EMB_RELST_HI:
5876 case BFD_RELOC_PPC_EMB_RELST_HA:
5877 case BFD_RELOC_PPC_EMB_RELSDA:
5878 case BFD_RELOC_PPC_TOC16:
5880 case BFD_RELOC_PPC64_TOC16_LO:
5881 case BFD_RELOC_PPC64_TOC16_HI:
5882 case BFD_RELOC_PPC64_TOC16_HA:
5886 if (fixP->fx_addsy != NULL)
5887 as_bad_where (fixP->fx_file, fixP->fx_line,
5888 _("cannot emit PC relative %s relocation against %s"),
5889 bfd_get_reloc_code_name (fixP->fx_r_type),
5890 S_GET_NAME (fixP->fx_addsy));
5892 as_bad_where (fixP->fx_file, fixP->fx_line,
5893 _("cannot emit PC relative %s relocation"),
5894 bfd_get_reloc_code_name (fixP->fx_r_type));
5897 md_number_to_chars (fixP->fx_frag->fr_literal + fixP->fx_where,
5903 fixP->fx_r_type = BFD_RELOC_16_PCREL;
5906 case BFD_RELOC_16_PCREL:
5907 md_number_to_chars (fixP->fx_frag->fr_literal + fixP->fx_where,
5911 case BFD_RELOC_LO16:
5913 fixP->fx_r_type = BFD_RELOC_LO16_PCREL;
5916 case BFD_RELOC_LO16_PCREL:
5917 md_number_to_chars (fixP->fx_frag->fr_literal + fixP->fx_where,
5921 /* This case happens when you write, for example,
5923 where L1 and L2 are defined later. */
5924 case BFD_RELOC_HI16:
5926 fixP->fx_r_type = BFD_RELOC_HI16_PCREL;
5929 case BFD_RELOC_HI16_PCREL:
5930 md_number_to_chars (fixP->fx_frag->fr_literal + fixP->fx_where,
5934 case BFD_RELOC_HI16_S:
5936 fixP->fx_r_type = BFD_RELOC_HI16_S_PCREL;
5939 case BFD_RELOC_HI16_S_PCREL:
5940 md_number_to_chars (fixP->fx_frag->fr_literal + fixP->fx_where,
5945 case BFD_RELOC_PPC64_HIGHER:
5948 md_number_to_chars (fixP->fx_frag->fr_literal + fixP->fx_where,
5949 PPC_HIGHER (value), 2);
5952 case BFD_RELOC_PPC64_HIGHER_S:
5955 md_number_to_chars (fixP->fx_frag->fr_literal + fixP->fx_where,
5956 PPC_HIGHERA (value), 2);
5959 case BFD_RELOC_PPC64_HIGHEST:
5962 md_number_to_chars (fixP->fx_frag->fr_literal + fixP->fx_where,
5963 PPC_HIGHEST (value), 2);
5966 case BFD_RELOC_PPC64_HIGHEST_S:
5969 md_number_to_chars (fixP->fx_frag->fr_literal + fixP->fx_where,
5970 PPC_HIGHESTA (value), 2);
5973 case BFD_RELOC_PPC64_ADDR16_DS:
5974 case BFD_RELOC_PPC64_ADDR16_LO_DS:
5975 case BFD_RELOC_PPC64_GOT16_DS:
5976 case BFD_RELOC_PPC64_GOT16_LO_DS:
5977 case BFD_RELOC_PPC64_PLT16_LO_DS:
5978 case BFD_RELOC_PPC64_SECTOFF_DS:
5979 case BFD_RELOC_PPC64_SECTOFF_LO_DS:
5980 case BFD_RELOC_PPC64_TOC16_DS:
5981 case BFD_RELOC_PPC64_TOC16_LO_DS:
5982 case BFD_RELOC_PPC64_PLTGOT16_DS:
5983 case BFD_RELOC_PPC64_PLTGOT16_LO_DS:
5987 char *where = fixP->fx_frag->fr_literal + fixP->fx_where;
5988 unsigned long val, mask;
5990 if (target_big_endian)
5991 val = bfd_getb32 (where - 2);
5993 val = bfd_getl32 (where);
5995 /* lq insns reserve the four lsbs. */
5996 if ((ppc_cpu & PPC_OPCODE_POWER4) != 0
5997 && (val & (0x3f << 26)) == (56u << 26))
5999 val |= value & mask;
6000 if (target_big_endian)
6001 bfd_putb16 ((bfd_vma) val, where);
6003 bfd_putl16 ((bfd_vma) val, where);
6007 case BFD_RELOC_PPC_B16_BRTAKEN:
6008 case BFD_RELOC_PPC_B16_BRNTAKEN:
6009 case BFD_RELOC_PPC_BA16_BRTAKEN:
6010 case BFD_RELOC_PPC_BA16_BRNTAKEN:
6013 case BFD_RELOC_PPC_TLS:
6016 case BFD_RELOC_PPC_DTPMOD:
6017 case BFD_RELOC_PPC_TPREL16:
6018 case BFD_RELOC_PPC_TPREL16_LO:
6019 case BFD_RELOC_PPC_TPREL16_HI:
6020 case BFD_RELOC_PPC_TPREL16_HA:
6021 case BFD_RELOC_PPC_TPREL:
6022 case BFD_RELOC_PPC_DTPREL16:
6023 case BFD_RELOC_PPC_DTPREL16_LO:
6024 case BFD_RELOC_PPC_DTPREL16_HI:
6025 case BFD_RELOC_PPC_DTPREL16_HA:
6026 case BFD_RELOC_PPC_DTPREL:
6027 case BFD_RELOC_PPC_GOT_TLSGD16:
6028 case BFD_RELOC_PPC_GOT_TLSGD16_LO:
6029 case BFD_RELOC_PPC_GOT_TLSGD16_HI:
6030 case BFD_RELOC_PPC_GOT_TLSGD16_HA:
6031 case BFD_RELOC_PPC_GOT_TLSLD16:
6032 case BFD_RELOC_PPC_GOT_TLSLD16_LO:
6033 case BFD_RELOC_PPC_GOT_TLSLD16_HI:
6034 case BFD_RELOC_PPC_GOT_TLSLD16_HA:
6035 case BFD_RELOC_PPC_GOT_TPREL16:
6036 case BFD_RELOC_PPC_GOT_TPREL16_LO:
6037 case BFD_RELOC_PPC_GOT_TPREL16_HI:
6038 case BFD_RELOC_PPC_GOT_TPREL16_HA:
6039 case BFD_RELOC_PPC_GOT_DTPREL16:
6040 case BFD_RELOC_PPC_GOT_DTPREL16_LO:
6041 case BFD_RELOC_PPC_GOT_DTPREL16_HI:
6042 case BFD_RELOC_PPC_GOT_DTPREL16_HA:
6043 case BFD_RELOC_PPC64_TPREL16_DS:
6044 case BFD_RELOC_PPC64_TPREL16_LO_DS:
6045 case BFD_RELOC_PPC64_TPREL16_HIGHER:
6046 case BFD_RELOC_PPC64_TPREL16_HIGHERA:
6047 case BFD_RELOC_PPC64_TPREL16_HIGHEST:
6048 case BFD_RELOC_PPC64_TPREL16_HIGHESTA:
6049 case BFD_RELOC_PPC64_DTPREL16_DS:
6050 case BFD_RELOC_PPC64_DTPREL16_LO_DS:
6051 case BFD_RELOC_PPC64_DTPREL16_HIGHER:
6052 case BFD_RELOC_PPC64_DTPREL16_HIGHERA:
6053 case BFD_RELOC_PPC64_DTPREL16_HIGHEST:
6054 case BFD_RELOC_PPC64_DTPREL16_HIGHESTA:
6055 S_SET_THREAD_LOCAL (fixP->fx_addsy);
6058 /* Because SDA21 modifies the register field, the size is set to 4
6059 bytes, rather than 2, so offset it here appropriately. */
6060 case BFD_RELOC_PPC_EMB_SDA21:
6064 md_number_to_chars (fixP->fx_frag->fr_literal + fixP->fx_where
6065 + ((target_big_endian) ? 2 : 0),
6072 /* This can occur if there is a bug in the input assembler, eg:
6073 ".byte <undefined_symbol> - ." */
6075 as_bad (_("Unable to handle reference to symbol %s"),
6076 S_GET_NAME (fixP->fx_addsy));
6078 as_bad (_("Unable to resolve expression"));
6082 md_number_to_chars (fixP->fx_frag->fr_literal + fixP->fx_where,
6086 case BFD_RELOC_24_PLT_PCREL:
6087 case BFD_RELOC_PPC_LOCAL24PC:
6088 if (!fixP->fx_pcrel && !fixP->fx_done)
6096 /* Fetch the instruction, insert the fully resolved operand
6097 value, and stuff the instruction back again. */
6098 where = fixP->fx_frag->fr_literal + fixP->fx_where;
6099 if (target_big_endian)
6100 insn = bfd_getb32 ((unsigned char *) where);
6102 insn = bfd_getl32 ((unsigned char *) where);
6103 if ((value & 3) != 0)
6104 as_bad_where (fixP->fx_file, fixP->fx_line,
6105 _("must branch to an address a multiple of 4"));
6106 if ((offsetT) value < -0x40000000
6107 || (offsetT) value >= 0x40000000)
6108 as_bad_where (fixP->fx_file, fixP->fx_line,
6109 _("@local or @plt branch destination is too far away, %ld bytes"),
6111 insn = insn | (value & 0x03fffffc);
6112 if (target_big_endian)
6113 bfd_putb32 ((bfd_vma) insn, (unsigned char *) where);
6115 bfd_putl32 ((bfd_vma) insn, (unsigned char *) where);
6119 case BFD_RELOC_VTABLE_INHERIT:
6122 && !S_IS_DEFINED (fixP->fx_addsy)
6123 && !S_IS_WEAK (fixP->fx_addsy))
6124 S_SET_WEAK (fixP->fx_addsy);
6127 case BFD_RELOC_VTABLE_ENTRY:
6132 /* Generated by reference to `sym@tocbase'. The sym is
6133 ignored by the linker. */
6134 case BFD_RELOC_PPC64_TOC:
6140 _("Gas failure, reloc value %d\n"), fixP->fx_r_type);
6147 fixP->fx_addnumber = value;
6149 /* PowerPC uses RELA relocs, ie. the reloc addend is stored separately
6150 from the section contents. If we are going to be emitting a reloc
6151 then the section contents are immaterial, so don't warn if they
6152 happen to overflow. Leave such warnings to ld. */
6154 fixP->fx_no_overflow = 1;
6156 if (fixP->fx_r_type != BFD_RELOC_PPC_TOC16)
6157 fixP->fx_addnumber = 0;
6161 fixP->fx_addnumber = 0;
6163 /* We want to use the offset within the data segment of the
6164 symbol, not the actual VMA of the symbol. */
6165 fixP->fx_addnumber =
6166 - bfd_get_section_vma (stdoutput, S_GET_SEGMENT (fixP->fx_addsy));
6172 /* Generate a reloc for a fixup. */
6175 tc_gen_reloc (seg, fixp)
6176 asection *seg ATTRIBUTE_UNUSED;
6181 reloc = (arelent *) xmalloc (sizeof (arelent));
6183 reloc->sym_ptr_ptr = (asymbol **) xmalloc (sizeof (asymbol *));
6184 *reloc->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
6185 reloc->address = fixp->fx_frag->fr_address + fixp->fx_where;
6186 reloc->howto = bfd_reloc_type_lookup (stdoutput, fixp->fx_r_type);
6187 if (reloc->howto == (reloc_howto_type *) NULL)
6189 as_bad_where (fixp->fx_file, fixp->fx_line,
6190 _("reloc %d not supported by object file format"),
6191 (int) fixp->fx_r_type);
6194 reloc->addend = fixp->fx_addnumber;
6200 ppc_cfi_frame_initial_instructions ()
6202 cfi_add_CFA_def_cfa (1, 0);
6206 tc_ppc_regname_to_dw2regnum (char *regname)
6208 unsigned int regnum = -1;
6212 static struct { char *name; int dw2regnum; } regnames[] =
6214 { "sp", 1 }, { "r.sp", 1 }, { "rtoc", 2 }, { "r.toc", 2 },
6215 { "mq", 64 }, { "lr", 65 }, { "ctr", 66 }, { "ap", 67 },
6216 { "cr", 70 }, { "xer", 76 }, { "vrsave", 109 }, { "vscr", 110 },
6217 { "spe_acc", 111 }, { "spefscr", 112 }
6220 for (i = 0; i < ARRAY_SIZE (regnames); ++i)
6221 if (strcmp (regnames[i].name, regname) == 0)
6222 return regnames[i].dw2regnum;
6224 if (regname[0] == 'r' || regname[0] == 'f' || regname[0] == 'v')
6226 p = regname + 1 + (regname[1] == '.');
6227 regnum = strtoul (p, &q, 10);
6228 if (p == q || *q || regnum >= 32)
6230 if (regname[0] == 'f')
6232 else if (regname[0] == 'v')
6235 else if (regname[0] == 'c' && regname[1] == 'r')
6237 p = regname + 2 + (regname[2] == '.');
6238 if (p[0] < '0' || p[0] > '7' || p[1])
6240 regnum = p[0] - '0' + 68;