1 /* tc-ppc.c -- Assemble for the PowerPC or POWER (RS/6000)
2 Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002
3 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, 59 Temple Place - Suite 330, Boston, MA
25 #include "safe-ctype.h"
28 #include "opcode/ppc.h"
32 #include "dwarf2dbg.h"
39 /* This is the assembler for the PowerPC or POWER (RS/6000) chips. */
41 /* Tell the main code what the endianness is. */
42 extern int target_big_endian
;
44 /* Whether or not, we've set target_big_endian. */
45 static int set_target_endian
= 0;
47 /* Whether to use user friendly register names. */
48 #ifndef TARGET_REG_NAMES_P
50 #define TARGET_REG_NAMES_P true
52 #define TARGET_REG_NAMES_P false
56 /* Macros for calculating LO, HI, HA, HIGHER, HIGHERA, HIGHEST,
59 /* #lo(value) denotes the least significant 16 bits of the indicated. */
60 #define PPC_LO(v) ((v) & 0xffff)
62 /* #hi(value) denotes bits 16 through 31 of the indicated value. */
63 #define PPC_HI(v) (((v) >> 16) & 0xffff)
65 /* #ha(value) denotes the high adjusted value: bits 16 through 31 of
66 the indicated value, compensating for #lo() being treated as a
68 #define PPC_HA(v) PPC_HI ((v) + 0x8000)
70 /* #higher(value) denotes bits 32 through 47 of the indicated value. */
71 #define PPC_HIGHER(v) (((v) >> 16 >> 16) & 0xffff)
73 /* #highera(value) denotes bits 32 through 47 of the indicated value,
74 compensating for #lo() being treated as a signed number. */
75 #define PPC_HIGHERA(v) PPC_HIGHER ((v) + 0x8000)
77 /* #highest(value) denotes bits 48 through 63 of the indicated value. */
78 #define PPC_HIGHEST(v) (((v) >> 24 >> 24) & 0xffff)
80 /* #highesta(value) denotes bits 48 through 63 of the indicated value,
81 compensating for #lo being treated as a signed number. */
82 #define PPC_HIGHESTA(v) PPC_HIGHEST ((v) + 0x8000)
84 #define SEX16(val) ((((val) & 0xffff) ^ 0x8000) - 0x8000)
86 static boolean reg_names_p
= TARGET_REG_NAMES_P
;
88 static boolean register_name
PARAMS ((expressionS
*));
89 static void ppc_set_cpu
PARAMS ((void));
90 static unsigned long ppc_insert_operand
91 PARAMS ((unsigned long insn
, const struct powerpc_operand
*operand
,
92 offsetT val
, char *file
, unsigned int line
));
93 static void ppc_macro
PARAMS ((char *str
, const struct powerpc_macro
*macro
));
94 static void ppc_byte
PARAMS ((int));
96 #if defined (OBJ_XCOFF) || defined (OBJ_ELF)
97 static int ppc_is_toc_sym
PARAMS ((symbolS
*sym
));
98 static void ppc_tc
PARAMS ((int));
99 static void ppc_machine
PARAMS ((int));
103 static void ppc_comm
PARAMS ((int));
104 static void ppc_bb
PARAMS ((int));
105 static void ppc_bc
PARAMS ((int));
106 static void ppc_bf
PARAMS ((int));
107 static void ppc_biei
PARAMS ((int));
108 static void ppc_bs
PARAMS ((int));
109 static void ppc_eb
PARAMS ((int));
110 static void ppc_ec
PARAMS ((int));
111 static void ppc_ef
PARAMS ((int));
112 static void ppc_es
PARAMS ((int));
113 static void ppc_csect
PARAMS ((int));
114 static void ppc_change_csect
PARAMS ((symbolS
*));
115 static void ppc_function
PARAMS ((int));
116 static void ppc_extern
PARAMS ((int));
117 static void ppc_lglobl
PARAMS ((int));
118 static void ppc_section
PARAMS ((int));
119 static void ppc_named_section
PARAMS ((int));
120 static void ppc_stabx
PARAMS ((int));
121 static void ppc_rename
PARAMS ((int));
122 static void ppc_toc
PARAMS ((int));
123 static void ppc_xcoff_cons
PARAMS ((int));
124 static void ppc_vbyte
PARAMS ((int));
128 static bfd_reloc_code_real_type ppc_elf_suffix
PARAMS ((char **, expressionS
*));
129 static void ppc_elf_cons
PARAMS ((int));
130 static void ppc_elf_rdata
PARAMS ((int));
131 static void ppc_elf_lcomm
PARAMS ((int));
132 static void ppc_elf_validate_fix
PARAMS ((fixS
*, segT
));
133 static void ppc_apuinfo_section_add
PARAMS ((unsigned int apu
, unsigned int version
));
137 static void ppc_set_current_section
PARAMS ((segT
));
138 static void ppc_previous
PARAMS ((int));
139 static void ppc_pdata
PARAMS ((int));
140 static void ppc_ydata
PARAMS ((int));
141 static void ppc_reldata
PARAMS ((int));
142 static void ppc_rdata
PARAMS ((int));
143 static void ppc_ualong
PARAMS ((int));
144 static void ppc_znop
PARAMS ((int));
145 static void ppc_pe_comm
PARAMS ((int));
146 static void ppc_pe_section
PARAMS ((int));
147 static void ppc_pe_function
PARAMS ((int));
148 static void ppc_pe_tocd
PARAMS ((int));
151 /* Generic assembler global variables which must be defined by all
155 /* This string holds the chars that always start a comment. If the
156 pre-processor is disabled, these aren't very useful. The macro
157 tc_comment_chars points to this. We use this, rather than the
158 usual comment_chars, so that we can switch for Solaris conventions. */
159 static const char ppc_solaris_comment_chars
[] = "#!";
160 static const char ppc_eabi_comment_chars
[] = "#";
162 #ifdef TARGET_SOLARIS_COMMENT
163 const char *ppc_comment_chars
= ppc_solaris_comment_chars
;
165 const char *ppc_comment_chars
= ppc_eabi_comment_chars
;
168 const char comment_chars
[] = "#";
171 /* Characters which start a comment at the beginning of a line. */
172 const char line_comment_chars
[] = "#";
174 /* Characters which may be used to separate multiple commands on a
176 const char line_separator_chars
[] = ";";
178 /* Characters which are used to indicate an exponent in a floating
180 const char EXP_CHARS
[] = "eE";
182 /* Characters which mean that a number is a floating point constant,
184 const char FLT_CHARS
[] = "dD";
186 /* The target specific pseudo-ops which we support. */
188 const pseudo_typeS md_pseudo_table
[] =
190 /* Pseudo-ops which must be overridden. */
191 { "byte", ppc_byte
, 0 },
194 /* Pseudo-ops specific to the RS/6000 XCOFF format. Some of these
195 legitimately belong in the obj-*.c file. However, XCOFF is based
196 on COFF, and is only implemented for the RS/6000. We just use
197 obj-coff.c, and add what we need here. */
198 { "comm", ppc_comm
, 0 },
199 { "lcomm", ppc_comm
, 1 },
203 { "bi", ppc_biei
, 0 },
205 { "csect", ppc_csect
, 0 },
206 { "data", ppc_section
, 'd' },
210 { "ei", ppc_biei
, 1 },
212 { "extern", ppc_extern
, 0 },
213 { "function", ppc_function
, 0 },
214 { "lglobl", ppc_lglobl
, 0 },
215 { "rename", ppc_rename
, 0 },
216 { "section", ppc_named_section
, 0 },
217 { "stabx", ppc_stabx
, 0 },
218 { "text", ppc_section
, 't' },
219 { "toc", ppc_toc
, 0 },
220 { "long", ppc_xcoff_cons
, 2 },
221 { "llong", ppc_xcoff_cons
, 3 },
222 { "word", ppc_xcoff_cons
, 1 },
223 { "short", ppc_xcoff_cons
, 1 },
224 { "vbyte", ppc_vbyte
, 0 },
228 { "llong", ppc_elf_cons
, 8 },
229 { "quad", ppc_elf_cons
, 8 },
230 { "long", ppc_elf_cons
, 4 },
231 { "word", ppc_elf_cons
, 2 },
232 { "short", ppc_elf_cons
, 2 },
233 { "rdata", ppc_elf_rdata
, 0 },
234 { "rodata", ppc_elf_rdata
, 0 },
235 { "lcomm", ppc_elf_lcomm
, 0 },
236 { "file", (void (*) PARAMS ((int))) dwarf2_directive_file
, 0 },
237 { "loc", dwarf2_directive_loc
, 0 },
241 /* Pseudo-ops specific to the Windows NT PowerPC PE (coff) format. */
242 { "previous", ppc_previous
, 0 },
243 { "pdata", ppc_pdata
, 0 },
244 { "ydata", ppc_ydata
, 0 },
245 { "reldata", ppc_reldata
, 0 },
246 { "rdata", ppc_rdata
, 0 },
247 { "ualong", ppc_ualong
, 0 },
248 { "znop", ppc_znop
, 0 },
249 { "comm", ppc_pe_comm
, 0 },
250 { "lcomm", ppc_pe_comm
, 1 },
251 { "section", ppc_pe_section
, 0 },
252 { "function", ppc_pe_function
,0 },
253 { "tocd", ppc_pe_tocd
, 0 },
256 #if defined (OBJ_XCOFF) || defined (OBJ_ELF)
258 { "machine", ppc_machine
, 0 },
265 /* Predefined register names if -mregnames (or default for Windows NT).
266 In general, there are lots of them, in an attempt to be compatible
267 with a number of other Windows NT assemblers. */
269 /* Structure to hold information about predefined registers. */
276 /* List of registers that are pre-defined:
278 Each general register has predefined names of the form:
279 1. r<reg_num> which has the value <reg_num>.
280 2. r.<reg_num> which has the value <reg_num>.
282 Each floating point register has predefined names of the form:
283 1. f<reg_num> which has the value <reg_num>.
284 2. f.<reg_num> which has the value <reg_num>.
286 Each vector unit register has predefined names of the form:
287 1. v<reg_num> which has the value <reg_num>.
288 2. v.<reg_num> which has the value <reg_num>.
290 Each condition register has predefined names of the form:
291 1. cr<reg_num> which has the value <reg_num>.
292 2. cr.<reg_num> which has the value <reg_num>.
294 There are individual registers as well:
295 sp or r.sp has the value 1
296 rtoc or r.toc has the value 2
297 fpscr has the value 0
303 dsisr has the value 18
305 sdr1 has the value 25
306 srr0 has the value 26
307 srr1 has the value 27
309 The table is sorted. Suitable for searching by a binary search. */
311 static const struct pd_reg pre_defined_registers
[] =
313 { "cr.0", 0 }, /* Condition Registers */
333 { "dar", 19 }, /* Data Access Register */
334 { "dec", 22 }, /* Decrementer */
335 { "dsisr", 18 }, /* Data Storage Interrupt Status Register */
337 { "f.0", 0 }, /* Floating point registers */
405 { "lr", 8 }, /* Link Register */
409 { "r.0", 0 }, /* General Purpose Registers */
442 { "r.sp", 1 }, /* Stack Pointer */
444 { "r.toc", 2 }, /* Pointer to the table of contents */
446 { "r0", 0 }, /* More general purpose registers */
479 { "rtoc", 2 }, /* Table of contents */
481 { "sdr1", 25 }, /* Storage Description Register 1 */
485 { "srr0", 26 }, /* Machine Status Save/Restore Register 0 */
486 { "srr1", 27 }, /* Machine Status Save/Restore Register 1 */
488 { "v.0", 0 }, /* Vector registers */
558 #define REG_NAME_CNT (sizeof (pre_defined_registers) / sizeof (struct pd_reg))
560 /* Given NAME, find the register number associated with that name, return
561 the integer value associated with the given name or -1 on failure. */
563 static int reg_name_search
564 PARAMS ((const struct pd_reg
*, int, const char * name
));
567 reg_name_search (regs
, regcount
, name
)
568 const struct pd_reg
*regs
;
572 int middle
, low
, high
;
580 middle
= (low
+ high
) / 2;
581 cmp
= strcasecmp (name
, regs
[middle
].name
);
587 return regs
[middle
].value
;
595 * Summary of register_name.
597 * in: Input_line_pointer points to 1st char of operand.
599 * out: A expressionS.
600 * The operand may have been a register: in this case, X_op == O_register,
601 * X_add_number is set to the register number, and truth is returned.
602 * Input_line_pointer->(next non-blank) char after operand, or is in its
607 register_name (expressionP
)
608 expressionS
*expressionP
;
615 /* Find the spelling of the operand. */
616 start
= name
= input_line_pointer
;
617 if (name
[0] == '%' && ISALPHA (name
[1]))
618 name
= ++input_line_pointer
;
620 else if (!reg_names_p
|| !ISALPHA (name
[0]))
623 c
= get_symbol_end ();
624 reg_number
= reg_name_search (pre_defined_registers
, REG_NAME_CNT
, name
);
626 /* Put back the delimiting char. */
627 *input_line_pointer
= c
;
629 /* Look to see if it's in the register table. */
632 expressionP
->X_op
= O_register
;
633 expressionP
->X_add_number
= reg_number
;
635 /* Make the rest nice. */
636 expressionP
->X_add_symbol
= NULL
;
637 expressionP
->X_op_symbol
= NULL
;
641 /* Reset the line as if we had not done anything. */
642 input_line_pointer
= start
;
646 /* This function is called for each symbol seen in an expression. It
647 handles the special parsing which PowerPC assemblers are supposed
648 to use for condition codes. */
650 /* Whether to do the special parsing. */
651 static boolean cr_operand
;
653 /* Names to recognize in a condition code. This table is sorted. */
654 static const struct pd_reg cr_names
[] =
671 /* Parsing function. This returns non-zero if it recognized an
675 ppc_parse_name (name
, expr
)
684 val
= reg_name_search (cr_names
, sizeof cr_names
/ sizeof cr_names
[0],
689 expr
->X_op
= O_constant
;
690 expr
->X_add_number
= val
;
695 /* Local variables. */
697 /* The type of processor we are assembling for. This is one or more
698 of the PPC_OPCODE flags defined in opcode/ppc.h. */
699 static unsigned long ppc_cpu
= 0;
701 /* Whether to target xcoff64/elf64. */
702 static unsigned int ppc_obj64
= BFD_DEFAULT_TARGET_SIZE
== 64;
704 /* Opcode hash table. */
705 static struct hash_control
*ppc_hash
;
707 /* Macro hash table. */
708 static struct hash_control
*ppc_macro_hash
;
711 /* What type of shared library support to use. */
712 static enum { SHLIB_NONE
, SHLIB_PIC
, SHLIB_MRELOCATABLE
} shlib
= SHLIB_NONE
;
714 /* Flags to set in the elf header. */
715 static flagword ppc_flags
= 0;
717 /* Whether this is Solaris or not. */
718 #ifdef TARGET_SOLARIS_COMMENT
719 #define SOLARIS_P true
721 #define SOLARIS_P false
724 static boolean msolaris
= SOLARIS_P
;
729 /* The RS/6000 assembler uses the .csect pseudo-op to generate code
730 using a bunch of different sections. These assembler sections,
731 however, are all encompassed within the .text or .data sections of
732 the final output file. We handle this by using different
733 subsegments within these main segments. */
735 /* Next subsegment to allocate within the .text segment. */
736 static subsegT ppc_text_subsegment
= 2;
738 /* Linked list of csects in the text section. */
739 static symbolS
*ppc_text_csects
;
741 /* Next subsegment to allocate within the .data segment. */
742 static subsegT ppc_data_subsegment
= 2;
744 /* Linked list of csects in the data section. */
745 static symbolS
*ppc_data_csects
;
747 /* The current csect. */
748 static symbolS
*ppc_current_csect
;
750 /* The RS/6000 assembler uses a TOC which holds addresses of functions
751 and variables. Symbols are put in the TOC with the .tc pseudo-op.
752 A special relocation is used when accessing TOC entries. We handle
753 the TOC as a subsegment within the .data segment. We set it up if
754 we see a .toc pseudo-op, and save the csect symbol here. */
755 static symbolS
*ppc_toc_csect
;
757 /* The first frag in the TOC subsegment. */
758 static fragS
*ppc_toc_frag
;
760 /* The first frag in the first subsegment after the TOC in the .data
761 segment. NULL if there are no subsegments after the TOC. */
762 static fragS
*ppc_after_toc_frag
;
764 /* The current static block. */
765 static symbolS
*ppc_current_block
;
767 /* The COFF debugging section; set by md_begin. This is not the
768 .debug section, but is instead the secret BFD section which will
769 cause BFD to set the section number of a symbol to N_DEBUG. */
770 static asection
*ppc_coff_debug_section
;
772 #endif /* OBJ_XCOFF */
776 /* Various sections that we need for PE coff support. */
777 static segT ydata_section
;
778 static segT pdata_section
;
779 static segT reldata_section
;
780 static segT rdata_section
;
781 static segT tocdata_section
;
783 /* The current section and the previous section. See ppc_previous. */
784 static segT ppc_previous_section
;
785 static segT ppc_current_section
;
790 symbolS
*GOT_symbol
; /* Pre-defined "_GLOBAL_OFFSET_TABLE" */
791 #define PPC_APUINFO_ISEL 0x40
792 #define PPC_APUINFO_PMR 0x41
793 #define PPC_APUINFO_RFMCI 0x42
794 #define PPC_APUINFO_CACHELCK 0x43
795 #define PPC_APUINFO_SPE 0x100
796 #define PPC_APUINFO_EFS 0x101
797 #define PPC_APUINFO_BRLOCK 0x102
800 * We keep a list of APUinfo
802 unsigned long *ppc_apuinfo_list
;
803 unsigned int ppc_apuinfo_num
;
804 unsigned int ppc_apuinfo_num_alloc
;
808 const char *const md_shortopts
= "b:l:usm:K:VQ:";
810 const char *const md_shortopts
= "um:";
812 const struct option md_longopts
[] = {
813 {NULL
, no_argument
, NULL
, 0}
815 const size_t md_longopts_size
= sizeof (md_longopts
);
818 md_parse_option (c
, arg
)
825 /* -u means that any undefined symbols should be treated as
826 external, which is the default for gas anyhow. */
831 /* Solaris as takes -le (presumably for little endian). For completeness
832 sake, recognize -be also. */
833 if (strcmp (arg
, "e") == 0)
835 target_big_endian
= 0;
836 set_target_endian
= 1;
844 if (strcmp (arg
, "e") == 0)
846 target_big_endian
= 1;
847 set_target_endian
= 1;
855 /* Recognize -K PIC. */
856 if (strcmp (arg
, "PIC") == 0 || strcmp (arg
, "pic") == 0)
859 ppc_flags
|= EF_PPC_RELOCATABLE_LIB
;
867 /* a64 and a32 determine whether to use XCOFF64 or XCOFF32. */
869 if (strcmp (arg
, "64") == 0)
874 as_fatal (_("%s unsupported"), "-a64");
877 else if (strcmp (arg
, "32") == 0)
884 /* -mpwrx and -mpwr2 mean to assemble for the IBM POWER/2
886 if (strcmp (arg
, "pwrx") == 0 || strcmp (arg
, "pwr2") == 0)
887 ppc_cpu
= PPC_OPCODE_POWER
| PPC_OPCODE_POWER2
| PPC_OPCODE_32
;
888 /* -mpwr means to assemble for the IBM POWER (RIOS1). */
889 else if (strcmp (arg
, "pwr") == 0)
890 ppc_cpu
= PPC_OPCODE_POWER
| PPC_OPCODE_32
;
891 /* -m601 means to assemble for the PowerPC 601, which includes
892 instructions that are holdovers from the Power. */
893 else if (strcmp (arg
, "601") == 0)
894 ppc_cpu
= PPC_OPCODE_PPC
| PPC_OPCODE_CLASSIC
895 | PPC_OPCODE_601
| PPC_OPCODE_32
;
896 /* -mppc, -mppc32, -m603, and -m604 mean to assemble for the
898 else if (strcmp (arg
, "ppc") == 0
899 || strcmp (arg
, "ppc32") == 0
900 || strcmp (arg
, "603") == 0
901 || strcmp (arg
, "604") == 0)
902 ppc_cpu
= PPC_OPCODE_PPC
| PPC_OPCODE_CLASSIC
| PPC_OPCODE_32
;
903 /* -m403 and -m405 mean to assemble for the PowerPC 403/405. */
904 else if (strcmp (arg
, "403") == 0
905 || strcmp (arg
, "405") == 0)
906 ppc_cpu
= PPC_OPCODE_PPC
| PPC_OPCODE_CLASSIC
907 | PPC_OPCODE_403
| PPC_OPCODE_32
;
908 else if (strcmp (arg
, "7400") == 0
909 || strcmp (arg
, "7410") == 0
910 || strcmp (arg
, "7450") == 0
911 || strcmp (arg
, "7455") == 0)
912 ppc_cpu
= PPC_OPCODE_PPC
| PPC_OPCODE_CLASSIC
913 | PPC_OPCODE_ALTIVEC
| PPC_OPCODE_32
;
914 else if (strcmp (arg
, "altivec") == 0)
917 ppc_cpu
= PPC_OPCODE_PPC
| PPC_OPCODE_CLASSIC
| PPC_OPCODE_ALTIVEC
;
919 ppc_cpu
|= PPC_OPCODE_ALTIVEC
;
921 else if (strcmp (arg
, "e500") == 0 || strcmp (arg
, "e500x2") == 0)
923 ppc_cpu
= PPC_OPCODE_PPC
| PPC_OPCODE_BOOKE
| PPC_OPCODE_SPE
924 | PPC_OPCODE_ISEL
| PPC_OPCODE_EFS
| PPC_OPCODE_BRLOCK
925 | PPC_OPCODE_PMR
| PPC_OPCODE_CACHELCK
| PPC_OPCODE_RFMCI
;
927 else if (strcmp (arg
, "spe") == 0)
930 ppc_cpu
= PPC_OPCODE_PPC
| PPC_OPCODE_SPE
| PPC_OPCODE_EFS
;
932 ppc_cpu
|= PPC_OPCODE_SPE
;
934 /* -mppc64 and -m620 mean to assemble for the 64-bit PowerPC
936 else if (strcmp (arg
, "ppc64") == 0 || strcmp (arg
, "620") == 0)
938 ppc_cpu
= PPC_OPCODE_PPC
| PPC_OPCODE_CLASSIC
| PPC_OPCODE_64
;
940 else if (strcmp (arg
, "ppc64bridge") == 0)
942 ppc_cpu
= PPC_OPCODE_PPC
| PPC_OPCODE_CLASSIC
943 | PPC_OPCODE_64_BRIDGE
| PPC_OPCODE_64
;
945 /* -mbooke/-mbooke32 mean enable 32-bit BookE support. */
946 else if (strcmp (arg
, "booke") == 0 || strcmp (arg
, "booke32") == 0)
948 ppc_cpu
= PPC_OPCODE_PPC
| PPC_OPCODE_BOOKE
| PPC_OPCODE_32
;
950 /* -mbooke64 means enable 64-bit BookE support. */
951 else if (strcmp (arg
, "booke64") == 0)
953 ppc_cpu
= PPC_OPCODE_PPC
| PPC_OPCODE_BOOKE
|
954 PPC_OPCODE_BOOKE64
| PPC_OPCODE_64
;
956 else if (strcmp (arg
, "power4") == 0)
958 ppc_cpu
= PPC_OPCODE_PPC
| PPC_OPCODE_CLASSIC
959 | PPC_OPCODE_64
| PPC_OPCODE_POWER4
;
961 /* -mcom means assemble for the common intersection between Power
962 and PowerPC. At present, we just allow the union, rather
963 than the intersection. */
964 else if (strcmp (arg
, "com") == 0)
965 ppc_cpu
= PPC_OPCODE_COMMON
| PPC_OPCODE_32
;
966 /* -many means to assemble for any architecture (PWR/PWRX/PPC). */
967 else if (strcmp (arg
, "any") == 0)
968 ppc_cpu
= PPC_OPCODE_ANY
| PPC_OPCODE_32
;
970 else if (strcmp (arg
, "regnames") == 0)
973 else if (strcmp (arg
, "no-regnames") == 0)
977 /* -mrelocatable/-mrelocatable-lib -- warn about initializations
978 that require relocation. */
979 else if (strcmp (arg
, "relocatable") == 0)
981 shlib
= SHLIB_MRELOCATABLE
;
982 ppc_flags
|= EF_PPC_RELOCATABLE
;
985 else if (strcmp (arg
, "relocatable-lib") == 0)
987 shlib
= SHLIB_MRELOCATABLE
;
988 ppc_flags
|= EF_PPC_RELOCATABLE_LIB
;
991 /* -memb, set embedded bit. */
992 else if (strcmp (arg
, "emb") == 0)
993 ppc_flags
|= EF_PPC_EMB
;
995 /* -mlittle/-mbig set the endianess. */
996 else if (strcmp (arg
, "little") == 0
997 || strcmp (arg
, "little-endian") == 0)
999 target_big_endian
= 0;
1000 set_target_endian
= 1;
1003 else if (strcmp (arg
, "big") == 0 || strcmp (arg
, "big-endian") == 0)
1005 target_big_endian
= 1;
1006 set_target_endian
= 1;
1009 else if (strcmp (arg
, "solaris") == 0)
1012 ppc_comment_chars
= ppc_solaris_comment_chars
;
1015 else if (strcmp (arg
, "no-solaris") == 0)
1018 ppc_comment_chars
= ppc_eabi_comment_chars
;
1023 as_bad (_("invalid switch -m%s"), arg
);
1029 /* -V: SVR4 argument to print version ID. */
1031 print_version_id ();
1034 /* -Qy, -Qn: SVR4 arguments controlling whether a .comment section
1035 should be emitted or not. FIXME: Not implemented. */
1039 /* Solaris takes -s to specify that .stabs go in a .stabs section,
1040 rather than .stabs.excl, which is ignored by the linker.
1041 FIXME: Not implemented. */
1057 md_show_usage (stream
)
1060 fprintf (stream
, _("\
1063 -mpwrx, -mpwr2 generate code for POWER/2 (RIOS2)\n\
1064 -mpwr generate code for POWER (RIOS1)\n\
1065 -m601 generate code for PowerPC 601\n\
1066 -mppc, -mppc32, -m603, -m604\n\
1067 generate code for PowerPC 603/604\n\
1068 -m403, -m405 generate code for PowerPC 403/405\n\
1069 -m7400, -m7410, -m7450, -m7455\n\
1070 generate code For PowerPC 7400/7410/7450/7455\n\
1071 -mppc64, -m620 generate code for PowerPC 620/625/630\n\
1072 -mppc64bridge generate code for PowerPC 64, including bridge insns\n\
1073 -mbooke64 generate code for 64-bit PowerPC BookE\n\
1074 -mbooke, mbooke32 generate code for 32-bit PowerPC BookE\n\
1075 -mpower4 generate code for Power4 architecture\n\
1076 -maltivec generate code for AltiVec\n\
1077 -mcom generate code Power/PowerPC common instructions\n\
1078 -many generate code for any architecture (PWR/PWRX/PPC)\n\
1079 -mregnames Allow symbolic names for registers\n\
1080 -mno-regnames Do not allow symbolic names for registers\n"));
1081 fprintf (stream
, _("\
1082 -me500, -me500x2 generate code for Motorola e500 core complex\n\
1083 -mspe generate code for Motorola SPE instructions\n"));
1085 fprintf (stream
, _("\
1086 -mrelocatable support for GCC's -mrelocatble option\n\
1087 -mrelocatable-lib support for GCC's -mrelocatble-lib option\n\
1088 -memb set PPC_EMB bit in ELF flags\n\
1089 -mlittle, -mlittle-endian\n\
1090 generate code for a little endian machine\n\
1091 -mbig, -mbig-endian generate code for a big endian machine\n\
1092 -msolaris generate code for Solaris\n\
1093 -mno-solaris do not generate code for Solaris\n\
1094 -V print assembler version number\n\
1095 -Qy, -Qn ignored\n"));
1099 /* Set ppc_cpu if it is not already set. */
1104 const char *default_os
= TARGET_OS
;
1105 const char *default_cpu
= TARGET_CPU
;
1110 ppc_cpu
= PPC_OPCODE_PPC
| PPC_OPCODE_CLASSIC
| PPC_OPCODE_64
;
1111 else if (strncmp (default_os
, "aix", 3) == 0
1112 && default_os
[3] >= '4' && default_os
[3] <= '9')
1113 ppc_cpu
= PPC_OPCODE_COMMON
| PPC_OPCODE_32
;
1114 else if (strncmp (default_os
, "aix3", 4) == 0)
1115 ppc_cpu
= PPC_OPCODE_POWER
| PPC_OPCODE_32
;
1116 else if (strcmp (default_cpu
, "rs6000") == 0)
1117 ppc_cpu
= PPC_OPCODE_POWER
| PPC_OPCODE_32
;
1118 else if (strncmp (default_cpu
, "powerpc", 7) == 0)
1120 if (default_cpu
[7] == '6' && default_cpu
[8] == '4')
1121 ppc_cpu
= PPC_OPCODE_PPC
| PPC_OPCODE_CLASSIC
| PPC_OPCODE_64
;
1123 ppc_cpu
= PPC_OPCODE_PPC
| PPC_OPCODE_CLASSIC
| PPC_OPCODE_32
;
1126 as_fatal (_("Unknown default cpu = %s, os = %s"),
1127 default_cpu
, default_os
);
1131 /* Figure out the BFD architecture to use. */
1133 enum bfd_architecture
1136 const char *default_cpu
= TARGET_CPU
;
1139 if ((ppc_cpu
& PPC_OPCODE_PPC
) != 0)
1140 return bfd_arch_powerpc
;
1141 else if ((ppc_cpu
& PPC_OPCODE_POWER
) != 0)
1142 return bfd_arch_rs6000
;
1143 else if ((ppc_cpu
& (PPC_OPCODE_COMMON
| PPC_OPCODE_ANY
)) != 0)
1145 if (strcmp (default_cpu
, "rs6000") == 0)
1146 return bfd_arch_rs6000
;
1147 else if (strncmp (default_cpu
, "powerpc", 7) == 0)
1148 return bfd_arch_powerpc
;
1151 as_fatal (_("Neither Power nor PowerPC opcodes were selected."));
1152 return bfd_arch_unknown
;
1159 return bfd_mach_ppc64
;
1160 else if (ppc_arch () == bfd_arch_rs6000
)
1161 return bfd_mach_rs6k
;
1163 return bfd_mach_ppc
;
1167 ppc_target_format ()
1171 return target_big_endian
? "pe-powerpc" : "pe-powerpcle";
1173 return "xcoff-powermac";
1176 return (ppc_obj64
? "aix5coff64-rs6000" : "aixcoff-rs6000");
1178 return (ppc_obj64
? "aixcoff64-rs6000" : "aixcoff-rs6000");
1183 return (target_big_endian
1184 ? (ppc_obj64
? "elf64-powerpc" : "elf32-powerpc")
1185 : (ppc_obj64
? "elf64-powerpcle" : "elf32-powerpcle"));
1189 /* This function is called when the assembler starts up. It is called
1190 after the options have been parsed and the output file has been
1196 register const struct powerpc_opcode
*op
;
1197 const struct powerpc_opcode
*op_end
;
1198 const struct powerpc_macro
*macro
;
1199 const struct powerpc_macro
*macro_end
;
1200 boolean dup_insn
= false;
1205 /* Set the ELF flags if desired. */
1206 if (ppc_flags
&& !msolaris
)
1207 bfd_set_private_flags (stdoutput
, ppc_flags
);
1210 /* Insert the opcodes into a hash table. */
1211 ppc_hash
= hash_new ();
1213 op_end
= powerpc_opcodes
+ powerpc_num_opcodes
;
1214 for (op
= powerpc_opcodes
; op
< op_end
; op
++)
1216 know ((op
->opcode
& op
->mask
) == op
->opcode
);
1218 if ((op
->flags
& ppc_cpu
& ~(PPC_OPCODE_32
| PPC_OPCODE_64
)) != 0
1219 && ((op
->flags
& (PPC_OPCODE_32
| PPC_OPCODE_64
)) == 0
1220 || ((op
->flags
& (PPC_OPCODE_32
| PPC_OPCODE_64
))
1221 == (ppc_cpu
& (PPC_OPCODE_32
| PPC_OPCODE_64
)))
1222 || (ppc_cpu
& PPC_OPCODE_64_BRIDGE
) != 0)
1223 /* Certain instructions (eg: extsw) do not exist in the
1224 32-bit BookE instruction set, but they do exist in the
1225 64-bit BookE instruction set, and other PPC instruction
1226 sets. Check to see if the opcode has the BOOKE64 flag set.
1227 If it does make sure that the target CPU is not the BookE32. */
1228 && ((op
->flags
& PPC_OPCODE_BOOKE64
) == 0
1229 || (ppc_cpu
& PPC_OPCODE_BOOKE64
) == PPC_OPCODE_BOOKE64
1230 || (ppc_cpu
& PPC_OPCODE_BOOKE
) == 0)
1231 && ((op
->flags
& (PPC_OPCODE_POWER4
| PPC_OPCODE_NOPOWER4
)) == 0
1232 || ((op
->flags
& PPC_OPCODE_POWER4
)
1233 == (ppc_cpu
& PPC_OPCODE_POWER4
))))
1237 retval
= hash_insert (ppc_hash
, op
->name
, (PTR
) op
);
1238 if (retval
!= (const char *) NULL
)
1240 /* Ignore Power duplicates for -m601. */
1241 if ((ppc_cpu
& PPC_OPCODE_601
) != 0
1242 && (op
->flags
& PPC_OPCODE_POWER
) != 0)
1245 as_bad (_("Internal assembler error for instruction %s"),
1252 /* Insert the macros into a hash table. */
1253 ppc_macro_hash
= hash_new ();
1255 macro_end
= powerpc_macros
+ powerpc_num_macros
;
1256 for (macro
= powerpc_macros
; macro
< macro_end
; macro
++)
1258 if ((macro
->flags
& ppc_cpu
) != 0)
1262 retval
= hash_insert (ppc_macro_hash
, macro
->name
, (PTR
) macro
);
1263 if (retval
!= (const char *) NULL
)
1265 as_bad (_("Internal assembler error for macro %s"), macro
->name
);
1274 /* Tell the main code what the endianness is if it is not overidden
1276 if (!set_target_endian
)
1278 set_target_endian
= 1;
1279 target_big_endian
= PPC_BIG_ENDIAN
;
1283 ppc_coff_debug_section
= coff_section_from_bfd_index (stdoutput
, N_DEBUG
);
1285 /* Create dummy symbols to serve as initial csects. This forces the
1286 text csects to precede the data csects. These symbols will not
1288 ppc_text_csects
= symbol_make ("dummy\001");
1289 symbol_get_tc (ppc_text_csects
)->within
= ppc_text_csects
;
1290 ppc_data_csects
= symbol_make ("dummy\001");
1291 symbol_get_tc (ppc_data_csects
)->within
= ppc_data_csects
;
1296 ppc_current_section
= text_section
;
1297 ppc_previous_section
= 0;
1306 if (ppc_apuinfo_list
== NULL
)
1309 /* Ok, so write the section info out. We have this layout:
1313 0 8 length of "APUinfo\0"
1314 4 (n*4) number of APU's (4 bytes each)
1317 20 APU#1 first APU's info
1318 24 APU#2 second APU's info
1323 asection
*seg
= now_seg
;
1324 subsegT subseg
= now_subseg
;
1325 asection
*apuinfo_secp
= (asection
*) NULL
;
1328 /* Create the .PPC.EMB.apuinfo section. */
1329 apuinfo_secp
= subseg_new (".PPC.EMB.apuinfo", 0);
1330 bfd_set_section_flags (stdoutput
,
1332 SEC_HAS_CONTENTS
| SEC_READONLY
| SEC_MERGE
);
1335 md_number_to_chars (p
, (valueT
) 8, 4);
1338 md_number_to_chars (p
, (valueT
) ppc_apuinfo_num
, 4);
1341 md_number_to_chars (p
, (valueT
) 2, 4);
1344 strcpy (p
, "APUinfo");
1346 for (i
= 0; i
< ppc_apuinfo_num
; i
++)
1349 md_number_to_chars (p
, (valueT
) ppc_apuinfo_list
[i
], 4);
1352 frag_align (2, 0, 0);
1354 /* We probably can't restore the current segment, for there likely
1357 subseg_set (seg
, subseg
);
1362 /* Insert an operand value into an instruction. */
1364 static unsigned long
1365 ppc_insert_operand (insn
, operand
, val
, file
, line
)
1367 const struct powerpc_operand
*operand
;
1372 if (operand
->bits
!= 32)
1377 if ((operand
->flags
& PPC_OPERAND_SIGNED
) != 0)
1379 if ((operand
->flags
& PPC_OPERAND_SIGNOPT
) != 0)
1380 max
= (1 << operand
->bits
) - 1;
1382 max
= (1 << (operand
->bits
- 1)) - 1;
1383 min
= - (1 << (operand
->bits
- 1));
1387 /* Some people write 32 bit hex constants with the sign
1388 extension done by hand. This shouldn't really be
1389 valid, but, to permit this code to assemble on a 64
1390 bit host, we sign extend the 32 bit value. */
1392 && (val
& (offsetT
) 0x80000000) != 0
1393 && (val
& (offsetT
) 0xffffffff) == val
)
1402 max
= (1 << operand
->bits
) - 1;
1406 if ((operand
->flags
& PPC_OPERAND_NEGATIVE
) != 0)
1411 if (test
< (offsetT
) min
|| test
> (offsetT
) max
)
1414 _("operand out of range (%s not between %ld and %ld)");
1417 sprint_value (buf
, test
);
1418 as_bad_where (file
, line
, err
, buf
, min
, max
);
1422 if (operand
->insert
)
1427 insn
= (*operand
->insert
) (insn
, (long) val
, ppc_cpu
, &errmsg
);
1428 if (errmsg
!= (const char *) NULL
)
1429 as_bad_where (file
, line
, errmsg
);
1432 insn
|= (((long) val
& ((1 << operand
->bits
) - 1))
1440 /* Parse @got, etc. and return the desired relocation. */
1441 static bfd_reloc_code_real_type
1442 ppc_elf_suffix (str_p
, exp_p
)
1457 const struct map_bfd
*ptr
;
1459 #define MAP(str,reloc) { str, sizeof (str)-1, reloc }
1461 static const struct map_bfd mapping
[] = {
1462 MAP ("l", (int) BFD_RELOC_LO16
),
1463 MAP ("h", (int) BFD_RELOC_HI16
),
1464 MAP ("ha", (int) BFD_RELOC_HI16_S
),
1465 MAP ("brtaken", (int) BFD_RELOC_PPC_B16_BRTAKEN
),
1466 MAP ("brntaken", (int) BFD_RELOC_PPC_B16_BRNTAKEN
),
1467 MAP ("got", (int) BFD_RELOC_16_GOTOFF
),
1468 MAP ("got@l", (int) BFD_RELOC_LO16_GOTOFF
),
1469 MAP ("got@h", (int) BFD_RELOC_HI16_GOTOFF
),
1470 MAP ("got@ha", (int) BFD_RELOC_HI16_S_GOTOFF
),
1471 MAP ("fixup", (int) BFD_RELOC_CTOR
), /* warning with -mrelocatable */
1472 MAP ("plt", (int) BFD_RELOC_24_PLT_PCREL
),
1473 MAP ("pltrel24", (int) BFD_RELOC_24_PLT_PCREL
),
1474 MAP ("copy", (int) BFD_RELOC_PPC_COPY
),
1475 MAP ("globdat", (int) BFD_RELOC_PPC_GLOB_DAT
),
1476 MAP ("local24pc", (int) BFD_RELOC_PPC_LOCAL24PC
),
1477 MAP ("local", (int) BFD_RELOC_PPC_LOCAL24PC
),
1478 MAP ("pltrel", (int) BFD_RELOC_32_PLT_PCREL
),
1479 MAP ("plt@l", (int) BFD_RELOC_LO16_PLTOFF
),
1480 MAP ("plt@h", (int) BFD_RELOC_HI16_PLTOFF
),
1481 MAP ("plt@ha", (int) BFD_RELOC_HI16_S_PLTOFF
),
1482 MAP ("sdarel", (int) BFD_RELOC_GPREL16
),
1483 MAP ("sectoff", (int) BFD_RELOC_16_BASEREL
),
1484 MAP ("sectoff@l", (int) BFD_RELOC_LO16_BASEREL
),
1485 MAP ("sectoff@h", (int) BFD_RELOC_HI16_BASEREL
),
1486 MAP ("sectoff@ha", (int) BFD_RELOC_HI16_S_BASEREL
),
1487 MAP ("naddr", (int) BFD_RELOC_PPC_EMB_NADDR32
),
1488 MAP ("naddr16", (int) BFD_RELOC_PPC_EMB_NADDR16
),
1489 MAP ("naddr@l", (int) BFD_RELOC_PPC_EMB_NADDR16_LO
),
1490 MAP ("naddr@h", (int) BFD_RELOC_PPC_EMB_NADDR16_HI
),
1491 MAP ("naddr@ha", (int) BFD_RELOC_PPC_EMB_NADDR16_HA
),
1492 MAP ("sdai16", (int) BFD_RELOC_PPC_EMB_SDAI16
),
1493 MAP ("sda2rel", (int) BFD_RELOC_PPC_EMB_SDA2REL
),
1494 MAP ("sda2i16", (int) BFD_RELOC_PPC_EMB_SDA2I16
),
1495 MAP ("sda21", (int) BFD_RELOC_PPC_EMB_SDA21
),
1496 MAP ("mrkref", (int) BFD_RELOC_PPC_EMB_MRKREF
),
1497 MAP ("relsect", (int) BFD_RELOC_PPC_EMB_RELSEC16
),
1498 MAP ("relsect@l", (int) BFD_RELOC_PPC_EMB_RELST_LO
),
1499 MAP ("relsect@h", (int) BFD_RELOC_PPC_EMB_RELST_HI
),
1500 MAP ("relsect@ha", (int) BFD_RELOC_PPC_EMB_RELST_HA
),
1501 MAP ("bitfld", (int) BFD_RELOC_PPC_EMB_BIT_FLD
),
1502 MAP ("relsda", (int) BFD_RELOC_PPC_EMB_RELSDA
),
1503 MAP ("xgot", (int) BFD_RELOC_PPC_TOC16
),
1504 /* The following are only valid for ppc64. Negative values are
1505 used instead of a flag. */
1506 MAP ("higher", - (int) BFD_RELOC_PPC64_HIGHER
),
1507 MAP ("highera", - (int) BFD_RELOC_PPC64_HIGHER_S
),
1508 MAP ("highest", - (int) BFD_RELOC_PPC64_HIGHEST
),
1509 MAP ("highesta", - (int) BFD_RELOC_PPC64_HIGHEST_S
),
1510 MAP ("tocbase", - (int) BFD_RELOC_PPC64_TOC
),
1511 MAP ("toc", - (int) BFD_RELOC_PPC_TOC16
),
1512 MAP ("toc@l", - (int) BFD_RELOC_PPC64_TOC16_LO
),
1513 MAP ("toc@h", - (int) BFD_RELOC_PPC64_TOC16_HI
),
1514 MAP ("toc@ha", - (int) BFD_RELOC_PPC64_TOC16_HA
),
1515 { (char *) 0, 0, (int) BFD_RELOC_UNUSED
}
1519 return BFD_RELOC_UNUSED
;
1521 for (ch
= *str
, str2
= ident
;
1522 (str2
< ident
+ sizeof (ident
) - 1
1523 && (ISALNUM (ch
) || ch
== '@'));
1526 *str2
++ = TOLOWER (ch
);
1533 for (ptr
= &mapping
[0]; ptr
->length
> 0; ptr
++)
1534 if (ch
== ptr
->string
[0]
1535 && len
== ptr
->length
1536 && memcmp (ident
, ptr
->string
, ptr
->length
) == 0)
1538 int reloc
= ptr
->reloc
;
1543 return BFD_RELOC_UNUSED
;
1547 if (exp_p
->X_add_number
!= 0
1548 && (reloc
== (int) BFD_RELOC_16_GOTOFF
1549 || reloc
== (int) BFD_RELOC_LO16_GOTOFF
1550 || reloc
== (int) BFD_RELOC_HI16_GOTOFF
1551 || reloc
== (int) BFD_RELOC_HI16_S_GOTOFF
))
1552 as_warn (_("identifier+constant@got means identifier@got+constant"));
1554 /* Now check for identifier@suffix+constant. */
1555 if (*str
== '-' || *str
== '+')
1557 char *orig_line
= input_line_pointer
;
1558 expressionS new_exp
;
1560 input_line_pointer
= str
;
1561 expression (&new_exp
);
1562 if (new_exp
.X_op
== O_constant
)
1564 exp_p
->X_add_number
+= new_exp
.X_add_number
;
1565 str
= input_line_pointer
;
1568 if (&input_line_pointer
!= str_p
)
1569 input_line_pointer
= orig_line
;
1573 if (reloc
== (int) BFD_RELOC_PPC64_TOC
1574 && exp_p
->X_op
== O_symbol
)
1576 /* This reloc type ignores the symbol. Change the symbol
1577 so that the dummy .TOC. symbol can be omitted from the
1579 exp_p
->X_add_symbol
= &abs_symbol
;
1582 return (bfd_reloc_code_real_type
) reloc
;
1585 return BFD_RELOC_UNUSED
;
1588 /* Like normal .long/.short/.word, except support @got, etc.
1589 Clobbers input_line_pointer, checks end-of-line. */
1591 ppc_elf_cons (nbytes
)
1592 register int nbytes
; /* 1=.byte, 2=.word, 4=.long, 8=.llong. */
1595 bfd_reloc_code_real_type reloc
;
1597 if (is_it_end_of_statement ())
1599 demand_empty_rest_of_line ();
1606 if (exp
.X_op
== O_symbol
1607 && *input_line_pointer
== '@'
1608 && (reloc
= ppc_elf_suffix (&input_line_pointer
,
1609 &exp
)) != BFD_RELOC_UNUSED
)
1611 reloc_howto_type
*reloc_howto
;
1614 reloc_howto
= bfd_reloc_type_lookup (stdoutput
, reloc
);
1615 size
= bfd_get_reloc_size (reloc_howto
);
1619 as_bad (_("%s relocations do not fit in %d bytes\n"),
1620 reloc_howto
->name
, nbytes
);
1627 p
= frag_more (nbytes
);
1629 if (target_big_endian
)
1630 offset
= nbytes
- size
;
1631 fix_new_exp (frag_now
, p
- frag_now
->fr_literal
+ offset
, size
,
1636 emit_expr (&exp
, (unsigned int) nbytes
);
1638 while (*input_line_pointer
++ == ',');
1640 /* Put terminator back into stream. */
1641 input_line_pointer
--;
1642 demand_empty_rest_of_line ();
1645 /* Solaris pseduo op to change to the .rodata section. */
1650 char *save_line
= input_line_pointer
;
1651 static char section
[] = ".rodata\n";
1653 /* Just pretend this is .section .rodata */
1654 input_line_pointer
= section
;
1655 obj_elf_section (xxx
);
1657 input_line_pointer
= save_line
;
1660 /* Pseudo op to make file scope bss items. */
1663 int xxx ATTRIBUTE_UNUSED
;
1665 register char *name
;
1669 register symbolS
*symbolP
;
1676 name
= input_line_pointer
;
1677 c
= get_symbol_end ();
1679 /* just after name is now '\0'. */
1680 p
= input_line_pointer
;
1683 if (*input_line_pointer
!= ',')
1685 as_bad (_("Expected comma after symbol-name: rest of line ignored."));
1686 ignore_rest_of_line ();
1690 input_line_pointer
++; /* skip ',' */
1691 if ((size
= get_absolute_expression ()) < 0)
1693 as_warn (_(".COMMon length (%ld.) <0! Ignored."), (long) size
);
1694 ignore_rest_of_line ();
1698 /* The third argument to .lcomm is the alignment. */
1699 if (*input_line_pointer
!= ',')
1703 ++input_line_pointer
;
1704 align
= get_absolute_expression ();
1707 as_warn (_("ignoring bad alignment"));
1713 symbolP
= symbol_find_or_make (name
);
1716 if (S_IS_DEFINED (symbolP
) && ! S_IS_COMMON (symbolP
))
1718 as_bad (_("Ignoring attempt to re-define symbol `%s'."),
1719 S_GET_NAME (symbolP
));
1720 ignore_rest_of_line ();
1724 if (S_GET_VALUE (symbolP
) && S_GET_VALUE (symbolP
) != (valueT
) size
)
1726 as_bad (_("Length of .lcomm \"%s\" is already %ld. Not changed to %ld."),
1727 S_GET_NAME (symbolP
),
1728 (long) S_GET_VALUE (symbolP
),
1731 ignore_rest_of_line ();
1737 old_subsec
= now_subseg
;
1740 /* Convert to a power of 2 alignment. */
1741 for (align2
= 0; (align
& 1) == 0; align
>>= 1, ++align2
);
1744 as_bad (_("Common alignment not a power of 2"));
1745 ignore_rest_of_line ();
1752 record_alignment (bss_section
, align2
);
1753 subseg_set (bss_section
, 0);
1755 frag_align (align2
, 0, 0);
1756 if (S_GET_SEGMENT (symbolP
) == bss_section
)
1757 symbol_get_frag (symbolP
)->fr_symbol
= 0;
1758 symbol_set_frag (symbolP
, frag_now
);
1759 pfrag
= frag_var (rs_org
, 1, 1, (relax_substateT
) 0, symbolP
, size
,
1762 S_SET_SIZE (symbolP
, size
);
1763 S_SET_SEGMENT (symbolP
, bss_section
);
1764 subseg_set (old_sec
, old_subsec
);
1765 demand_empty_rest_of_line ();
1768 /* Validate any relocations emitted for -mrelocatable, possibly adding
1769 fixups for word relocations in writable segments, so we can adjust
1772 ppc_elf_validate_fix (fixp
, seg
)
1776 if (fixp
->fx_done
|| fixp
->fx_pcrel
)
1785 case SHLIB_MRELOCATABLE
:
1786 if (fixp
->fx_r_type
<= BFD_RELOC_UNUSED
1787 && fixp
->fx_r_type
!= BFD_RELOC_16_GOTOFF
1788 && fixp
->fx_r_type
!= BFD_RELOC_HI16_GOTOFF
1789 && fixp
->fx_r_type
!= BFD_RELOC_LO16_GOTOFF
1790 && fixp
->fx_r_type
!= BFD_RELOC_HI16_S_GOTOFF
1791 && fixp
->fx_r_type
!= BFD_RELOC_16_BASEREL
1792 && fixp
->fx_r_type
!= BFD_RELOC_LO16_BASEREL
1793 && fixp
->fx_r_type
!= BFD_RELOC_HI16_BASEREL
1794 && fixp
->fx_r_type
!= BFD_RELOC_HI16_S_BASEREL
1795 && (seg
->flags
& SEC_LOAD
) != 0
1796 && strcmp (segment_name (seg
), ".got2") != 0
1797 && strcmp (segment_name (seg
), ".dtors") != 0
1798 && strcmp (segment_name (seg
), ".ctors") != 0
1799 && strcmp (segment_name (seg
), ".fixup") != 0
1800 && strcmp (segment_name (seg
), ".gcc_except_table") != 0
1801 && strcmp (segment_name (seg
), ".eh_frame") != 0
1802 && strcmp (segment_name (seg
), ".ex_shared") != 0)
1804 if ((seg
->flags
& (SEC_READONLY
| SEC_CODE
)) != 0
1805 || fixp
->fx_r_type
!= BFD_RELOC_CTOR
)
1807 as_bad_where (fixp
->fx_file
, fixp
->fx_line
,
1808 _("Relocation cannot be done when using -mrelocatable"));
1815 /* Prevent elf_frob_file_before_adjust removing a weak undefined
1816 function descriptor sym if the corresponding code sym is used. */
1819 ppc_frob_file_before_adjust ()
1826 for (symp
= symbol_rootP
; symp
; symp
= symbol_next (symp
))
1833 name
= S_GET_NAME (symp
);
1837 if (! S_IS_WEAK (symp
)
1838 || S_IS_DEFINED (symp
))
1841 len
= strlen (name
) + 1;
1842 dotname
= xmalloc (len
+ 1);
1844 memcpy (dotname
+ 1, name
, len
);
1845 dotsym
= symbol_find (dotname
);
1847 if (dotsym
!= NULL
&& (symbol_used_p (dotsym
)
1848 || symbol_used_in_reloc_p (dotsym
)))
1850 symbol_mark_used (symp
);
1854 /* Don't emit .TOC. symbol. */
1855 symp
= symbol_find (".TOC.");
1857 symbol_remove (symp
, &symbol_rootP
, &symbol_lastP
);
1859 #endif /* OBJ_ELF */
1864 * Summary of parse_toc_entry.
1866 * in: Input_line_pointer points to the '[' in one of:
1868 * [toc] [tocv] [toc32] [toc64]
1870 * Anything else is an error of one kind or another.
1873 * return value: success or failure
1874 * toc_kind: kind of toc reference
1875 * input_line_pointer:
1876 * success: first char after the ']'
1877 * failure: unchanged
1881 * [toc] - rv == success, toc_kind = default_toc
1882 * [tocv] - rv == success, toc_kind = data_in_toc
1883 * [toc32] - rv == success, toc_kind = must_be_32
1884 * [toc64] - rv == success, toc_kind = must_be_64
1888 enum toc_size_qualifier
1890 default_toc
, /* The toc cell constructed should be the system default size */
1891 data_in_toc
, /* This is a direct reference to a toc cell */
1892 must_be_32
, /* The toc cell constructed must be 32 bits wide */
1893 must_be_64
/* The toc cell constructed must be 64 bits wide */
1897 parse_toc_entry (toc_kind
)
1898 enum toc_size_qualifier
*toc_kind
;
1903 enum toc_size_qualifier t
;
1905 /* Save the input_line_pointer. */
1906 start
= input_line_pointer
;
1908 /* Skip over the '[' , and whitespace. */
1909 ++input_line_pointer
;
1912 /* Find the spelling of the operand. */
1913 toc_spec
= input_line_pointer
;
1914 c
= get_symbol_end ();
1916 if (strcmp (toc_spec
, "toc") == 0)
1920 else if (strcmp (toc_spec
, "tocv") == 0)
1924 else if (strcmp (toc_spec
, "toc32") == 0)
1928 else if (strcmp (toc_spec
, "toc64") == 0)
1934 as_bad (_("syntax error: invalid toc specifier `%s'"), toc_spec
);
1935 *input_line_pointer
= c
;
1936 input_line_pointer
= start
;
1940 /* Now find the ']'. */
1941 *input_line_pointer
= c
;
1943 SKIP_WHITESPACE (); /* leading whitespace could be there. */
1944 c
= *input_line_pointer
++; /* input_line_pointer->past char in c. */
1948 as_bad (_("syntax error: expected `]', found `%c'"), c
);
1949 input_line_pointer
= start
;
1960 #define APUID(a,v) ((((a) & 0xffff) << 16) | ((v) & 0xffff))
1962 ppc_apuinfo_section_add (apu
, version
)
1963 unsigned int apu
, version
;
1967 /* Check we don't already exist. */
1968 for (i
= 0; i
< ppc_apuinfo_num
; i
++)
1969 if (ppc_apuinfo_list
[i
] == APUID (apu
, version
))
1972 if (ppc_apuinfo_num
== ppc_apuinfo_num_alloc
)
1974 if (ppc_apuinfo_num_alloc
== 0)
1976 ppc_apuinfo_num_alloc
= 4;
1977 ppc_apuinfo_list
= (unsigned long *)
1978 xmalloc (sizeof (unsigned long) * ppc_apuinfo_num_alloc
);
1982 ppc_apuinfo_num_alloc
+= 4;
1983 ppc_apuinfo_list
= (unsigned long *) xrealloc (ppc_apuinfo_list
,
1984 sizeof (unsigned long) * ppc_apuinfo_num_alloc
);
1987 ppc_apuinfo_list
[ppc_apuinfo_num
++] = APUID (apu
, version
);
1993 /* We need to keep a list of fixups. We can't simply generate them as
1994 we go, because that would require us to first create the frag, and
1995 that would screw up references to ``.''. */
2001 bfd_reloc_code_real_type reloc
;
2004 #define MAX_INSN_FIXUPS (5)
2006 /* This routine is called for each instruction to be assembled. */
2013 const struct powerpc_opcode
*opcode
;
2015 const unsigned char *opindex_ptr
;
2019 struct ppc_fixup fixups
[MAX_INSN_FIXUPS
];
2024 bfd_reloc_code_real_type reloc
;
2027 /* Get the opcode. */
2028 for (s
= str
; *s
!= '\0' && ! ISSPACE (*s
); s
++)
2033 /* Look up the opcode in the hash table. */
2034 opcode
= (const struct powerpc_opcode
*) hash_find (ppc_hash
, str
);
2035 if (opcode
== (const struct powerpc_opcode
*) NULL
)
2037 const struct powerpc_macro
*macro
;
2039 macro
= (const struct powerpc_macro
*) hash_find (ppc_macro_hash
, str
);
2040 if (macro
== (const struct powerpc_macro
*) NULL
)
2041 as_bad (_("Unrecognized opcode: `%s'"), str
);
2043 ppc_macro (s
, macro
);
2048 insn
= opcode
->opcode
;
2051 while (ISSPACE (*str
))
2054 /* PowerPC operands are just expressions. The only real issue is
2055 that a few operand types are optional. All cases which might use
2056 an optional operand separate the operands only with commas (in
2057 some cases parentheses are used, as in ``lwz 1,0(1)'' but such
2058 cases never have optional operands). There is never more than
2059 one optional operand for an instruction. So, before we start
2060 seriously parsing the operands, we check to see if we have an
2061 optional operand, and, if we do, we count the number of commas to
2062 see whether the operand should be omitted. */
2064 for (opindex_ptr
= opcode
->operands
; *opindex_ptr
!= 0; opindex_ptr
++)
2066 const struct powerpc_operand
*operand
;
2068 operand
= &powerpc_operands
[*opindex_ptr
];
2069 if ((operand
->flags
& PPC_OPERAND_OPTIONAL
) != 0)
2071 unsigned int opcount
;
2072 unsigned int num_operands_expected
;
2075 /* There is an optional operand. Count the number of
2076 commas in the input line. */
2083 while ((s
= strchr (s
, ',')) != (char *) NULL
)
2090 /* Compute the number of expected operands.
2091 Do not count fake operands. */
2092 for (num_operands_expected
= 0, i
= 0; opcode
->operands
[i
]; i
++)
2093 if ((powerpc_operands
[opcode
->operands
[i
]].flags
& PPC_OPERAND_FAKE
) == 0)
2094 ++ num_operands_expected
;
2096 /* If there are fewer operands in the line then are called
2097 for by the instruction, we want to skip the optional
2099 if (opcount
< num_operands_expected
)
2106 /* Gather the operands. */
2110 for (opindex_ptr
= opcode
->operands
; *opindex_ptr
!= 0; opindex_ptr
++)
2112 const struct powerpc_operand
*operand
;
2118 if (next_opindex
== 0)
2119 operand
= &powerpc_operands
[*opindex_ptr
];
2122 operand
= &powerpc_operands
[next_opindex
];
2127 /* If this is a fake operand, then we do not expect anything
2129 if ((operand
->flags
& PPC_OPERAND_FAKE
) != 0)
2131 insn
= (*operand
->insert
) (insn
, 0L, ppc_cpu
, &errmsg
);
2132 if (errmsg
!= (const char *) NULL
)
2137 /* If this is an optional operand, and we are skipping it, just
2139 if ((operand
->flags
& PPC_OPERAND_OPTIONAL
) != 0
2142 if (operand
->insert
)
2144 insn
= (*operand
->insert
) (insn
, 0L, ppc_cpu
, &errmsg
);
2145 if (errmsg
!= (const char *) NULL
)
2148 if ((operand
->flags
& PPC_OPERAND_NEXT
) != 0)
2149 next_opindex
= *opindex_ptr
+ 1;
2153 /* Gather the operand. */
2154 hold
= input_line_pointer
;
2155 input_line_pointer
= str
;
2158 if (*input_line_pointer
== '[')
2160 /* We are expecting something like the second argument here:
2162 * lwz r4,[toc].GS.0.static_int(rtoc)
2163 * ^^^^^^^^^^^^^^^^^^^^^^^^^^^
2164 * The argument following the `]' must be a symbol name, and the
2165 * register must be the toc register: 'rtoc' or '2'
2167 * The effect is to 0 as the displacement field
2168 * in the instruction, and issue an IMAGE_REL_PPC_TOCREL16 (or
2169 * the appropriate variation) reloc against it based on the symbol.
2170 * The linker will build the toc, and insert the resolved toc offset.
2173 * o The size of the toc entry is currently assumed to be
2174 * 32 bits. This should not be assumed to be a hard coded
2176 * o In an effort to cope with a change from 32 to 64 bits,
2177 * there are also toc entries that are specified to be
2178 * either 32 or 64 bits:
2179 * lwz r4,[toc32].GS.0.static_int(rtoc)
2180 * lwz r4,[toc64].GS.0.static_int(rtoc)
2181 * These demand toc entries of the specified size, and the
2182 * instruction probably requires it.
2186 enum toc_size_qualifier toc_kind
;
2187 bfd_reloc_code_real_type toc_reloc
;
2189 /* Go parse off the [tocXX] part. */
2190 valid_toc
= parse_toc_entry (&toc_kind
);
2194 /* Note: message has already been issued.
2195 FIXME: what sort of recovery should we do?
2196 demand_rest_of_line (); return; ? */
2199 /* Now get the symbol following the ']'. */
2205 /* In this case, we may not have seen the symbol yet,
2206 since it is allowed to appear on a .extern or .globl
2207 or just be a label in the .data section. */
2208 toc_reloc
= BFD_RELOC_PPC_TOC16
;
2211 /* 1. The symbol must be defined and either in the toc
2212 section, or a global.
2213 2. The reloc generated must have the TOCDEFN flag set
2214 in upper bit mess of the reloc type.
2215 FIXME: It's a little confusing what the tocv
2216 qualifier can be used for. At the very least, I've
2217 seen three uses, only one of which I'm sure I can
2219 if (ex
.X_op
== O_symbol
)
2221 assert (ex
.X_add_symbol
!= NULL
);
2222 if (symbol_get_bfdsym (ex
.X_add_symbol
)->section
2225 as_bad (_("[tocv] symbol is not a toc symbol"));
2229 toc_reloc
= BFD_RELOC_PPC_TOC16
;
2232 /* FIXME: these next two specifically specify 32/64 bit
2233 toc entries. We don't support them today. Is this
2234 the right way to say that? */
2235 toc_reloc
= BFD_RELOC_UNUSED
;
2236 as_bad (_("Unimplemented toc32 expression modifier"));
2239 /* FIXME: see above. */
2240 toc_reloc
= BFD_RELOC_UNUSED
;
2241 as_bad (_("Unimplemented toc64 expression modifier"));
2245 _("Unexpected return value [%d] from parse_toc_entry!\n"),
2251 /* We need to generate a fixup for this expression. */
2252 if (fc
>= MAX_INSN_FIXUPS
)
2253 as_fatal (_("too many fixups"));
2255 fixups
[fc
].reloc
= toc_reloc
;
2256 fixups
[fc
].exp
= ex
;
2257 fixups
[fc
].opindex
= *opindex_ptr
;
2260 /* Ok. We've set up the fixup for the instruction. Now make it
2261 look like the constant 0 was found here. */
2263 ex
.X_op
= O_constant
;
2264 ex
.X_add_number
= 0;
2265 ex
.X_add_symbol
= NULL
;
2266 ex
.X_op_symbol
= NULL
;
2272 if (! register_name (&ex
))
2274 if ((operand
->flags
& PPC_OPERAND_CR
) != 0)
2281 str
= input_line_pointer
;
2282 input_line_pointer
= hold
;
2284 if (ex
.X_op
== O_illegal
)
2285 as_bad (_("illegal operand"));
2286 else if (ex
.X_op
== O_absent
)
2287 as_bad (_("missing operand"));
2288 else if (ex
.X_op
== O_register
)
2290 insn
= ppc_insert_operand (insn
, operand
, ex
.X_add_number
,
2293 else if (ex
.X_op
== O_constant
)
2296 /* Allow @HA, @L, @H on constants. */
2297 char *orig_str
= str
;
2299 if ((reloc
= ppc_elf_suffix (&str
, &ex
)) != BFD_RELOC_UNUSED
)
2306 case BFD_RELOC_LO16
:
2307 /* X_unsigned is the default, so if the user has done
2308 something which cleared it, we always produce a
2310 if (ex
.X_unsigned
&& ! (operand
->flags
& PPC_OPERAND_SIGNED
))
2311 ex
.X_add_number
&= 0xffff;
2313 ex
.X_add_number
= SEX16 (ex
.X_add_number
);
2316 case BFD_RELOC_HI16
:
2317 if (ex
.X_unsigned
&& ! (operand
->flags
& PPC_OPERAND_SIGNED
))
2318 ex
.X_add_number
= PPC_HI (ex
.X_add_number
);
2320 ex
.X_add_number
= SEX16 (PPC_HI (ex
.X_add_number
));
2323 case BFD_RELOC_HI16_S
:
2324 if (ex
.X_unsigned
&& ! (operand
->flags
& PPC_OPERAND_SIGNED
))
2325 ex
.X_add_number
= PPC_HA (ex
.X_add_number
);
2327 ex
.X_add_number
= SEX16 (PPC_HA (ex
.X_add_number
));
2330 case BFD_RELOC_PPC64_HIGHER
:
2331 if (ex
.X_unsigned
&& ! (operand
->flags
& PPC_OPERAND_SIGNED
))
2332 ex
.X_add_number
= PPC_HIGHER (ex
.X_add_number
);
2334 ex
.X_add_number
= SEX16 (PPC_HIGHER (ex
.X_add_number
));
2337 case BFD_RELOC_PPC64_HIGHER_S
:
2338 if (ex
.X_unsigned
&& ! (operand
->flags
& PPC_OPERAND_SIGNED
))
2339 ex
.X_add_number
= PPC_HIGHERA (ex
.X_add_number
);
2341 ex
.X_add_number
= SEX16 (PPC_HIGHERA (ex
.X_add_number
));
2344 case BFD_RELOC_PPC64_HIGHEST
:
2345 if (ex
.X_unsigned
&& ! (operand
->flags
& PPC_OPERAND_SIGNED
))
2346 ex
.X_add_number
= PPC_HIGHEST (ex
.X_add_number
);
2348 ex
.X_add_number
= SEX16 (PPC_HIGHEST (ex
.X_add_number
));
2351 case BFD_RELOC_PPC64_HIGHEST_S
:
2352 if (ex
.X_unsigned
&& ! (operand
->flags
& PPC_OPERAND_SIGNED
))
2353 ex
.X_add_number
= PPC_HIGHESTA (ex
.X_add_number
);
2355 ex
.X_add_number
= SEX16 (PPC_HIGHESTA (ex
.X_add_number
));
2358 #endif /* OBJ_ELF */
2359 insn
= ppc_insert_operand (insn
, operand
, ex
.X_add_number
,
2363 else if ((reloc
= ppc_elf_suffix (&str
, &ex
)) != BFD_RELOC_UNUSED
)
2365 /* For the absolute forms of branches, convert the PC
2366 relative form back into the absolute. */
2367 if ((operand
->flags
& PPC_OPERAND_ABSOLUTE
) != 0)
2371 case BFD_RELOC_PPC_B26
:
2372 reloc
= BFD_RELOC_PPC_BA26
;
2374 case BFD_RELOC_PPC_B16
:
2375 reloc
= BFD_RELOC_PPC_BA16
;
2377 case BFD_RELOC_PPC_B16_BRTAKEN
:
2378 reloc
= BFD_RELOC_PPC_BA16_BRTAKEN
;
2380 case BFD_RELOC_PPC_B16_BRNTAKEN
:
2381 reloc
= BFD_RELOC_PPC_BA16_BRNTAKEN
;
2389 && (operand
->flags
& PPC_OPERAND_DS
) != 0)
2394 reloc
= BFD_RELOC_PPC64_ADDR16_DS
;
2396 case BFD_RELOC_LO16
:
2397 reloc
= BFD_RELOC_PPC64_ADDR16_LO_DS
;
2399 case BFD_RELOC_16_GOTOFF
:
2400 reloc
= BFD_RELOC_PPC64_GOT16_DS
;
2402 case BFD_RELOC_LO16_GOTOFF
:
2403 reloc
= BFD_RELOC_PPC64_GOT16_LO_DS
;
2405 case BFD_RELOC_LO16_PLTOFF
:
2406 reloc
= BFD_RELOC_PPC64_PLT16_LO_DS
;
2408 case BFD_RELOC_16_BASEREL
:
2409 reloc
= BFD_RELOC_PPC64_SECTOFF_DS
;
2411 case BFD_RELOC_LO16_BASEREL
:
2412 reloc
= BFD_RELOC_PPC64_SECTOFF_LO_DS
;
2414 case BFD_RELOC_PPC_TOC16
:
2415 reloc
= BFD_RELOC_PPC64_TOC16_DS
;
2417 case BFD_RELOC_PPC64_TOC16_LO
:
2418 reloc
= BFD_RELOC_PPC64_TOC16_LO_DS
;
2420 case BFD_RELOC_PPC64_PLTGOT16
:
2421 reloc
= BFD_RELOC_PPC64_PLTGOT16_DS
;
2423 case BFD_RELOC_PPC64_PLTGOT16_LO
:
2424 reloc
= BFD_RELOC_PPC64_PLTGOT16_LO_DS
;
2427 as_bad (_("unsupported relocation for DS offset field"));
2432 /* We need to generate a fixup for this expression. */
2433 if (fc
>= MAX_INSN_FIXUPS
)
2434 as_fatal (_("too many fixups"));
2435 fixups
[fc
].exp
= ex
;
2436 fixups
[fc
].opindex
= 0;
2437 fixups
[fc
].reloc
= reloc
;
2440 #endif /* OBJ_ELF */
2444 /* We need to generate a fixup for this expression. */
2445 if (fc
>= MAX_INSN_FIXUPS
)
2446 as_fatal (_("too many fixups"));
2447 fixups
[fc
].exp
= ex
;
2448 fixups
[fc
].opindex
= *opindex_ptr
;
2449 fixups
[fc
].reloc
= BFD_RELOC_UNUSED
;
2458 else if ((operand
->flags
& PPC_OPERAND_PARENS
) != 0)
2466 /* The call to expression should have advanced str past any
2469 && (endc
!= ',' || *str
!= '\0'))
2471 as_bad (_("syntax error; found `%c' but expected `%c'"), *str
, endc
);
2479 while (ISSPACE (*str
))
2483 as_bad (_("junk at end of line: `%s'"), str
);
2486 /* Do we need/want a APUinfo section? */
2487 if (ppc_cpu
& (PPC_OPCODE_SPE
2488 | PPC_OPCODE_ISEL
| PPC_OPCODE_EFS
2489 | PPC_OPCODE_BRLOCK
| PPC_OPCODE_PMR
| PPC_OPCODE_CACHELCK
2490 | PPC_OPCODE_RFMCI
))
2492 /* These are all version "1". */
2493 if (opcode
->flags
& PPC_OPCODE_SPE
)
2494 ppc_apuinfo_section_add (PPC_APUINFO_SPE
, 1);
2495 if (opcode
->flags
& PPC_OPCODE_ISEL
)
2496 ppc_apuinfo_section_add (PPC_APUINFO_ISEL
, 1);
2497 if (opcode
->flags
& PPC_OPCODE_EFS
)
2498 ppc_apuinfo_section_add (PPC_APUINFO_EFS
, 1);
2499 if (opcode
->flags
& PPC_OPCODE_BRLOCK
)
2500 ppc_apuinfo_section_add (PPC_APUINFO_BRLOCK
, 1);
2501 if (opcode
->flags
& PPC_OPCODE_PMR
)
2502 ppc_apuinfo_section_add (PPC_APUINFO_PMR
, 1);
2503 if (opcode
->flags
& PPC_OPCODE_CACHELCK
)
2504 ppc_apuinfo_section_add (PPC_APUINFO_CACHELCK
, 1);
2505 if (opcode
->flags
& PPC_OPCODE_RFMCI
)
2506 ppc_apuinfo_section_add (PPC_APUINFO_RFMCI
, 1);
2510 /* Write out the instruction. */
2512 md_number_to_chars (f
, insn
, 4);
2515 dwarf2_emit_insn (4);
2518 /* Create any fixups. At this point we do not use a
2519 bfd_reloc_code_real_type, but instead just use the
2520 BFD_RELOC_UNUSED plus the operand index. This lets us easily
2521 handle fixups for any operand type, although that is admittedly
2522 not a very exciting feature. We pick a BFD reloc type in
2524 for (i
= 0; i
< fc
; i
++)
2526 const struct powerpc_operand
*operand
;
2528 operand
= &powerpc_operands
[fixups
[i
].opindex
];
2529 if (fixups
[i
].reloc
!= BFD_RELOC_UNUSED
)
2531 reloc_howto_type
*reloc_howto
;
2536 reloc_howto
= bfd_reloc_type_lookup (stdoutput
, fixups
[i
].reloc
);
2540 size
= bfd_get_reloc_size (reloc_howto
);
2541 offset
= target_big_endian
? (4 - size
) : 0;
2543 if (size
< 1 || size
> 4)
2546 fixP
= fix_new_exp (frag_now
,
2547 f
- frag_now
->fr_literal
+ offset
,
2550 reloc_howto
->pc_relative
,
2553 /* Turn off complaints that the addend is too large for things like
2555 switch (fixups
[i
].reloc
)
2557 case BFD_RELOC_16_GOTOFF
:
2558 case BFD_RELOC_PPC_TOC16
:
2559 case BFD_RELOC_LO16
:
2560 case BFD_RELOC_HI16
:
2561 case BFD_RELOC_HI16_S
:
2563 case BFD_RELOC_PPC64_HIGHER
:
2564 case BFD_RELOC_PPC64_HIGHER_S
:
2565 case BFD_RELOC_PPC64_HIGHEST
:
2566 case BFD_RELOC_PPC64_HIGHEST_S
:
2568 fixP
->fx_no_overflow
= 1;
2575 fix_new_exp (frag_now
,
2576 f
- frag_now
->fr_literal
,
2579 (operand
->flags
& PPC_OPERAND_RELATIVE
) != 0,
2580 ((bfd_reloc_code_real_type
)
2581 (fixups
[i
].opindex
+ (int) BFD_RELOC_UNUSED
)));
2585 /* Handle a macro. Gather all the operands, transform them as
2586 described by the macro, and call md_assemble recursively. All the
2587 operands are separated by commas; we don't accept parentheses
2588 around operands here. */
2591 ppc_macro (str
, macro
)
2593 const struct powerpc_macro
*macro
;
2604 /* Gather the users operands into the operands array. */
2609 if (count
>= sizeof operands
/ sizeof operands
[0])
2611 operands
[count
++] = s
;
2612 s
= strchr (s
, ',');
2613 if (s
== (char *) NULL
)
2618 if (count
!= macro
->operands
)
2620 as_bad (_("wrong number of operands"));
2624 /* Work out how large the string must be (the size is unbounded
2625 because it includes user input). */
2627 format
= macro
->format
;
2628 while (*format
!= '\0')
2637 arg
= strtol (format
+ 1, &send
, 10);
2638 know (send
!= format
&& arg
>= 0 && arg
< count
);
2639 len
+= strlen (operands
[arg
]);
2644 /* Put the string together. */
2645 complete
= s
= (char *) alloca (len
+ 1);
2646 format
= macro
->format
;
2647 while (*format
!= '\0')
2653 arg
= strtol (format
+ 1, &send
, 10);
2654 strcpy (s
, operands
[arg
]);
2661 /* Assemble the constructed instruction. */
2662 md_assemble (complete
);
2666 /* For ELF, add support for SHF_EXCLUDE and SHT_ORDERED. */
2669 ppc_section_letter (letter
, ptr_msg
)
2676 *ptr_msg
= _("Bad .section directive: want a,e,w,x,M,S,G,T in string");
2681 ppc_section_word (str
, len
)
2685 if (len
== 7 && strncmp (str
, "exclude", 7) == 0)
2692 ppc_section_type (str
, len
)
2696 if (len
== 7 && strncmp (str
, "ordered", 7) == 0)
2703 ppc_section_flags (flags
, attr
, type
)
2708 if (type
== SHT_ORDERED
)
2709 flags
|= SEC_ALLOC
| SEC_LOAD
| SEC_SORT_ENTRIES
;
2711 if (attr
& SHF_EXCLUDE
)
2712 flags
|= SEC_EXCLUDE
;
2716 #endif /* OBJ_ELF */
2719 /* Pseudo-op handling. */
2721 /* The .byte pseudo-op. This is similar to the normal .byte
2722 pseudo-op, but it can also take a single ASCII string. */
2726 int ignore ATTRIBUTE_UNUSED
;
2728 if (*input_line_pointer
!= '\"')
2734 /* Gather characters. A real double quote is doubled. Unusual
2735 characters are not permitted. */
2736 ++input_line_pointer
;
2741 c
= *input_line_pointer
++;
2745 if (*input_line_pointer
!= '\"')
2747 ++input_line_pointer
;
2750 FRAG_APPEND_1_CHAR (c
);
2753 demand_empty_rest_of_line ();
2758 /* XCOFF specific pseudo-op handling. */
2760 /* This is set if we are creating a .stabx symbol, since we don't want
2761 to handle symbol suffixes for such symbols. */
2762 static boolean ppc_stab_symbol
;
2764 /* The .comm and .lcomm pseudo-ops for XCOFF. XCOFF puts common
2765 symbols in the .bss segment as though they were local common
2766 symbols, and uses a different smclas. The native Aix 4.3.3 assember
2767 aligns .comm and .lcomm to 4 bytes. */
2773 asection
*current_seg
= now_seg
;
2774 subsegT current_subseg
= now_subseg
;
2780 symbolS
*lcomm_sym
= NULL
;
2784 name
= input_line_pointer
;
2785 endc
= get_symbol_end ();
2786 end_name
= input_line_pointer
;
2789 if (*input_line_pointer
!= ',')
2791 as_bad (_("missing size"));
2792 ignore_rest_of_line ();
2795 ++input_line_pointer
;
2797 size
= get_absolute_expression ();
2800 as_bad (_("negative size"));
2801 ignore_rest_of_line ();
2807 /* The third argument to .comm is the alignment. */
2808 if (*input_line_pointer
!= ',')
2812 ++input_line_pointer
;
2813 align
= get_absolute_expression ();
2816 as_warn (_("ignoring bad alignment"));
2831 /* The third argument to .lcomm appears to be the real local
2832 common symbol to create. References to the symbol named in
2833 the first argument are turned into references to the third
2835 if (*input_line_pointer
!= ',')
2837 as_bad (_("missing real symbol name"));
2838 ignore_rest_of_line ();
2841 ++input_line_pointer
;
2843 lcomm_name
= input_line_pointer
;
2844 lcomm_endc
= get_symbol_end ();
2846 lcomm_sym
= symbol_find_or_make (lcomm_name
);
2848 *input_line_pointer
= lcomm_endc
;
2852 sym
= symbol_find_or_make (name
);
2855 if (S_IS_DEFINED (sym
)
2856 || S_GET_VALUE (sym
) != 0)
2858 as_bad (_("attempt to redefine symbol"));
2859 ignore_rest_of_line ();
2863 record_alignment (bss_section
, align
);
2866 || ! S_IS_DEFINED (lcomm_sym
))
2875 S_SET_EXTERNAL (sym
);
2879 symbol_get_tc (lcomm_sym
)->output
= 1;
2880 def_sym
= lcomm_sym
;
2884 subseg_set (bss_section
, 1);
2885 frag_align (align
, 0, 0);
2887 symbol_set_frag (def_sym
, frag_now
);
2888 pfrag
= frag_var (rs_org
, 1, 1, (relax_substateT
) 0, def_sym
,
2889 def_size
, (char *) NULL
);
2891 S_SET_SEGMENT (def_sym
, bss_section
);
2892 symbol_get_tc (def_sym
)->align
= align
;
2896 /* Align the size of lcomm_sym. */
2897 symbol_get_frag (lcomm_sym
)->fr_offset
=
2898 ((symbol_get_frag (lcomm_sym
)->fr_offset
+ (1 << align
) - 1)
2899 &~ ((1 << align
) - 1));
2900 if (align
> symbol_get_tc (lcomm_sym
)->align
)
2901 symbol_get_tc (lcomm_sym
)->align
= align
;
2906 /* Make sym an offset from lcomm_sym. */
2907 S_SET_SEGMENT (sym
, bss_section
);
2908 symbol_set_frag (sym
, symbol_get_frag (lcomm_sym
));
2909 S_SET_VALUE (sym
, symbol_get_frag (lcomm_sym
)->fr_offset
);
2910 symbol_get_frag (lcomm_sym
)->fr_offset
+= size
;
2913 subseg_set (current_seg
, current_subseg
);
2915 demand_empty_rest_of_line ();
2918 /* The .csect pseudo-op. This switches us into a different
2919 subsegment. The first argument is a symbol whose value is the
2920 start of the .csect. In COFF, csect symbols get special aux
2921 entries defined by the x_csect field of union internal_auxent. The
2922 optional second argument is the alignment (the default is 2). */
2926 int ignore ATTRIBUTE_UNUSED
;
2932 name
= input_line_pointer
;
2933 endc
= get_symbol_end ();
2935 sym
= symbol_find_or_make (name
);
2937 *input_line_pointer
= endc
;
2939 if (S_GET_NAME (sym
)[0] == '\0')
2941 /* An unnamed csect is assumed to be [PR]. */
2942 symbol_get_tc (sym
)->class = XMC_PR
;
2945 ppc_change_csect (sym
);
2947 if (*input_line_pointer
== ',')
2949 ++input_line_pointer
;
2950 symbol_get_tc (sym
)->align
= get_absolute_expression ();
2953 demand_empty_rest_of_line ();
2956 /* Change to a different csect. */
2959 ppc_change_csect (sym
)
2962 if (S_IS_DEFINED (sym
))
2963 subseg_set (S_GET_SEGMENT (sym
), symbol_get_tc (sym
)->subseg
);
2971 /* This is a new csect. We need to look at the symbol class to
2972 figure out whether it should go in the text section or the
2975 switch (symbol_get_tc (sym
)->class)
2985 S_SET_SEGMENT (sym
, text_section
);
2986 symbol_get_tc (sym
)->subseg
= ppc_text_subsegment
;
2987 ++ppc_text_subsegment
;
2988 list_ptr
= &ppc_text_csects
;
2997 if (ppc_toc_csect
!= NULL
2998 && (symbol_get_tc (ppc_toc_csect
)->subseg
+ 1
2999 == ppc_data_subsegment
))
3001 S_SET_SEGMENT (sym
, data_section
);
3002 symbol_get_tc (sym
)->subseg
= ppc_data_subsegment
;
3003 ++ppc_data_subsegment
;
3004 list_ptr
= &ppc_data_csects
;
3010 /* We set the obstack chunk size to a small value before
3011 changing subsegments, so that we don't use a lot of memory
3012 space for what may be a small section. */
3013 hold_chunksize
= chunksize
;
3016 subseg_new (segment_name (S_GET_SEGMENT (sym
)),
3017 symbol_get_tc (sym
)->subseg
);
3019 chunksize
= hold_chunksize
;
3022 ppc_after_toc_frag
= frag_now
;
3024 symbol_set_frag (sym
, frag_now
);
3025 S_SET_VALUE (sym
, (valueT
) frag_now_fix ());
3027 symbol_get_tc (sym
)->align
= 2;
3028 symbol_get_tc (sym
)->output
= 1;
3029 symbol_get_tc (sym
)->within
= sym
;
3031 for (list
= *list_ptr
;
3032 symbol_get_tc (list
)->next
!= (symbolS
*) NULL
;
3033 list
= symbol_get_tc (list
)->next
)
3035 symbol_get_tc (list
)->next
= sym
;
3037 symbol_remove (sym
, &symbol_rootP
, &symbol_lastP
);
3038 symbol_append (sym
, symbol_get_tc (list
)->within
, &symbol_rootP
,
3042 ppc_current_csect
= sym
;
3045 /* This function handles the .text and .data pseudo-ops. These
3046 pseudo-ops aren't really used by XCOFF; we implement them for the
3047 convenience of people who aren't used to XCOFF. */
3058 else if (type
== 'd')
3063 sym
= symbol_find_or_make (name
);
3065 ppc_change_csect (sym
);
3067 demand_empty_rest_of_line ();
3070 /* This function handles the .section pseudo-op. This is mostly to
3071 give an error, since XCOFF only supports .text, .data and .bss, but
3072 we do permit the user to name the text or data section. */
3075 ppc_named_section (ignore
)
3076 int ignore ATTRIBUTE_UNUSED
;
3079 const char *real_name
;
3083 user_name
= input_line_pointer
;
3084 c
= get_symbol_end ();
3086 if (strcmp (user_name
, ".text") == 0)
3087 real_name
= ".text[PR]";
3088 else if (strcmp (user_name
, ".data") == 0)
3089 real_name
= ".data[RW]";
3092 as_bad (_("The XCOFF file format does not support arbitrary sections"));
3093 *input_line_pointer
= c
;
3094 ignore_rest_of_line ();
3098 *input_line_pointer
= c
;
3100 sym
= symbol_find_or_make (real_name
);
3102 ppc_change_csect (sym
);
3104 demand_empty_rest_of_line ();
3107 /* The .extern pseudo-op. We create an undefined symbol. */
3111 int ignore ATTRIBUTE_UNUSED
;
3116 name
= input_line_pointer
;
3117 endc
= get_symbol_end ();
3119 (void) symbol_find_or_make (name
);
3121 *input_line_pointer
= endc
;
3123 demand_empty_rest_of_line ();
3126 /* The .lglobl pseudo-op. Keep the symbol in the symbol table. */
3130 int ignore ATTRIBUTE_UNUSED
;
3136 name
= input_line_pointer
;
3137 endc
= get_symbol_end ();
3139 sym
= symbol_find_or_make (name
);
3141 *input_line_pointer
= endc
;
3143 symbol_get_tc (sym
)->output
= 1;
3145 demand_empty_rest_of_line ();
3148 /* The .rename pseudo-op. The RS/6000 assembler can rename symbols,
3149 although I don't know why it bothers. */
3153 int ignore ATTRIBUTE_UNUSED
;
3160 name
= input_line_pointer
;
3161 endc
= get_symbol_end ();
3163 sym
= symbol_find_or_make (name
);
3165 *input_line_pointer
= endc
;
3167 if (*input_line_pointer
!= ',')
3169 as_bad (_("missing rename string"));
3170 ignore_rest_of_line ();
3173 ++input_line_pointer
;
3175 symbol_get_tc (sym
)->real_name
= demand_copy_C_string (&len
);
3177 demand_empty_rest_of_line ();
3180 /* The .stabx pseudo-op. This is similar to a normal .stabs
3181 pseudo-op, but slightly different. A sample is
3182 .stabx "main:F-1",.main,142,0
3183 The first argument is the symbol name to create. The second is the
3184 value, and the third is the storage class. The fourth seems to be
3185 always zero, and I am assuming it is the type. */
3189 int ignore ATTRIBUTE_UNUSED
;
3196 name
= demand_copy_C_string (&len
);
3198 if (*input_line_pointer
!= ',')
3200 as_bad (_("missing value"));
3203 ++input_line_pointer
;
3205 ppc_stab_symbol
= true;
3206 sym
= symbol_make (name
);
3207 ppc_stab_symbol
= false;
3209 symbol_get_tc (sym
)->real_name
= name
;
3211 (void) expression (&exp
);
3218 as_bad (_("illegal .stabx expression; zero assumed"));
3219 exp
.X_add_number
= 0;
3222 S_SET_VALUE (sym
, (valueT
) exp
.X_add_number
);
3223 symbol_set_frag (sym
, &zero_address_frag
);
3227 if (S_GET_SEGMENT (exp
.X_add_symbol
) == undefined_section
)
3228 symbol_set_value_expression (sym
, &exp
);
3232 exp
.X_add_number
+ S_GET_VALUE (exp
.X_add_symbol
));
3233 symbol_set_frag (sym
, symbol_get_frag (exp
.X_add_symbol
));
3238 /* The value is some complex expression. This will probably
3239 fail at some later point, but this is probably the right
3240 thing to do here. */
3241 symbol_set_value_expression (sym
, &exp
);
3245 S_SET_SEGMENT (sym
, ppc_coff_debug_section
);
3246 symbol_get_bfdsym (sym
)->flags
|= BSF_DEBUGGING
;
3248 if (*input_line_pointer
!= ',')
3250 as_bad (_("missing class"));
3253 ++input_line_pointer
;
3255 S_SET_STORAGE_CLASS (sym
, get_absolute_expression ());
3257 if (*input_line_pointer
!= ',')
3259 as_bad (_("missing type"));
3262 ++input_line_pointer
;
3264 S_SET_DATA_TYPE (sym
, get_absolute_expression ());
3266 symbol_get_tc (sym
)->output
= 1;
3268 if (S_GET_STORAGE_CLASS (sym
) == C_STSYM
) {
3270 symbol_get_tc (sym
)->within
= ppc_current_block
;
3275 .stabx "z",arrays_,133,0
3278 .comm arrays_,13768,3
3280 resolve_symbol_value will copy the exp's "within" into sym's when the
3281 offset is 0. Since this seems to be corner case problem,
3282 only do the correction for storage class C_STSYM. A better solution
3283 would be to have the tc field updated in ppc_symbol_new_hook. */
3285 if (exp
.X_op
== O_symbol
)
3287 symbol_get_tc (exp
.X_add_symbol
)->within
= ppc_current_block
;
3291 if (exp
.X_op
!= O_symbol
3292 || ! S_IS_EXTERNAL (exp
.X_add_symbol
)
3293 || S_GET_SEGMENT (exp
.X_add_symbol
) != bss_section
)
3294 ppc_frob_label (sym
);
3297 symbol_remove (sym
, &symbol_rootP
, &symbol_lastP
);
3298 symbol_append (sym
, exp
.X_add_symbol
, &symbol_rootP
, &symbol_lastP
);
3299 if (symbol_get_tc (ppc_current_csect
)->within
== exp
.X_add_symbol
)
3300 symbol_get_tc (ppc_current_csect
)->within
= sym
;
3303 demand_empty_rest_of_line ();
3306 /* The .function pseudo-op. This takes several arguments. The first
3307 argument seems to be the external name of the symbol. The second
3308 argment seems to be the label for the start of the function. gcc
3309 uses the same name for both. I have no idea what the third and
3310 fourth arguments are meant to be. The optional fifth argument is
3311 an expression for the size of the function. In COFF this symbol
3312 gets an aux entry like that used for a csect. */
3315 ppc_function (ignore
)
3316 int ignore ATTRIBUTE_UNUSED
;
3324 name
= input_line_pointer
;
3325 endc
= get_symbol_end ();
3327 /* Ignore any [PR] suffix. */
3328 name
= ppc_canonicalize_symbol_name (name
);
3329 s
= strchr (name
, '[');
3330 if (s
!= (char *) NULL
3331 && strcmp (s
+ 1, "PR]") == 0)
3334 ext_sym
= symbol_find_or_make (name
);
3336 *input_line_pointer
= endc
;
3338 if (*input_line_pointer
!= ',')
3340 as_bad (_("missing symbol name"));
3341 ignore_rest_of_line ();
3344 ++input_line_pointer
;
3346 name
= input_line_pointer
;
3347 endc
= get_symbol_end ();
3349 lab_sym
= symbol_find_or_make (name
);
3351 *input_line_pointer
= endc
;
3353 if (ext_sym
!= lab_sym
)
3357 exp
.X_op
= O_symbol
;
3358 exp
.X_add_symbol
= lab_sym
;
3359 exp
.X_op_symbol
= NULL
;
3360 exp
.X_add_number
= 0;
3362 symbol_set_value_expression (ext_sym
, &exp
);
3365 if (symbol_get_tc (ext_sym
)->class == -1)
3366 symbol_get_tc (ext_sym
)->class = XMC_PR
;
3367 symbol_get_tc (ext_sym
)->output
= 1;
3369 if (*input_line_pointer
== ',')
3373 /* Ignore the third argument. */
3374 ++input_line_pointer
;
3375 expression (&ignore
);
3376 if (*input_line_pointer
== ',')
3378 /* Ignore the fourth argument. */
3379 ++input_line_pointer
;
3380 expression (&ignore
);
3381 if (*input_line_pointer
== ',')
3383 /* The fifth argument is the function size. */
3384 ++input_line_pointer
;
3385 symbol_get_tc (ext_sym
)->size
= symbol_new ("L0\001",
3388 &zero_address_frag
);
3389 pseudo_set (symbol_get_tc (ext_sym
)->size
);
3394 S_SET_DATA_TYPE (ext_sym
, DT_FCN
<< N_BTSHFT
);
3395 SF_SET_FUNCTION (ext_sym
);
3396 SF_SET_PROCESS (ext_sym
);
3397 coff_add_linesym (ext_sym
);
3399 demand_empty_rest_of_line ();
3402 /* The .bf pseudo-op. This is just like a COFF C_FCN symbol named
3403 ".bf". If the pseudo op .bi was seen before .bf, patch the .bi sym
3404 with the correct line number */
3406 static symbolS
*saved_bi_sym
= 0;
3410 int ignore ATTRIBUTE_UNUSED
;
3414 sym
= symbol_make (".bf");
3415 S_SET_SEGMENT (sym
, text_section
);
3416 symbol_set_frag (sym
, frag_now
);
3417 S_SET_VALUE (sym
, frag_now_fix ());
3418 S_SET_STORAGE_CLASS (sym
, C_FCN
);
3420 coff_line_base
= get_absolute_expression ();
3422 S_SET_NUMBER_AUXILIARY (sym
, 1);
3423 SA_SET_SYM_LNNO (sym
, coff_line_base
);
3425 /* Line number for bi. */
3428 S_SET_VALUE (saved_bi_sym
, coff_n_line_nos
);
3433 symbol_get_tc (sym
)->output
= 1;
3435 ppc_frob_label (sym
);
3437 demand_empty_rest_of_line ();
3440 /* The .ef pseudo-op. This is just like a COFF C_FCN symbol named
3441 ".ef", except that the line number is absolute, not relative to the
3442 most recent ".bf" symbol. */
3446 int ignore ATTRIBUTE_UNUSED
;
3450 sym
= symbol_make (".ef");
3451 S_SET_SEGMENT (sym
, text_section
);
3452 symbol_set_frag (sym
, frag_now
);
3453 S_SET_VALUE (sym
, frag_now_fix ());
3454 S_SET_STORAGE_CLASS (sym
, C_FCN
);
3455 S_SET_NUMBER_AUXILIARY (sym
, 1);
3456 SA_SET_SYM_LNNO (sym
, get_absolute_expression ());
3457 symbol_get_tc (sym
)->output
= 1;
3459 ppc_frob_label (sym
);
3461 demand_empty_rest_of_line ();
3464 /* The .bi and .ei pseudo-ops. These take a string argument and
3465 generates a C_BINCL or C_EINCL symbol, which goes at the start of
3466 the symbol list. The value of .bi will be know when the next .bf
3473 static symbolS
*last_biei
;
3480 name
= demand_copy_C_string (&len
);
3482 /* The value of these symbols is actually file offset. Here we set
3483 the value to the index into the line number entries. In
3484 ppc_frob_symbols we set the fix_line field, which will cause BFD
3485 to do the right thing. */
3487 sym
= symbol_make (name
);
3488 /* obj-coff.c currently only handles line numbers correctly in the
3490 S_SET_SEGMENT (sym
, text_section
);
3491 S_SET_VALUE (sym
, coff_n_line_nos
);
3492 symbol_get_bfdsym (sym
)->flags
|= BSF_DEBUGGING
;
3494 S_SET_STORAGE_CLASS (sym
, ei
? C_EINCL
: C_BINCL
);
3495 symbol_get_tc (sym
)->output
= 1;
3503 for (look
= last_biei
? last_biei
: symbol_rootP
;
3504 (look
!= (symbolS
*) NULL
3505 && (S_GET_STORAGE_CLASS (look
) == C_FILE
3506 || S_GET_STORAGE_CLASS (look
) == C_BINCL
3507 || S_GET_STORAGE_CLASS (look
) == C_EINCL
));
3508 look
= symbol_next (look
))
3510 if (look
!= (symbolS
*) NULL
)
3512 symbol_remove (sym
, &symbol_rootP
, &symbol_lastP
);
3513 symbol_insert (sym
, look
, &symbol_rootP
, &symbol_lastP
);
3517 demand_empty_rest_of_line ();
3520 /* The .bs pseudo-op. This generates a C_BSTAT symbol named ".bs".
3521 There is one argument, which is a csect symbol. The value of the
3522 .bs symbol is the index of this csect symbol. */
3526 int ignore ATTRIBUTE_UNUSED
;
3533 if (ppc_current_block
!= NULL
)
3534 as_bad (_("nested .bs blocks"));
3536 name
= input_line_pointer
;
3537 endc
= get_symbol_end ();
3539 csect
= symbol_find_or_make (name
);
3541 *input_line_pointer
= endc
;
3543 sym
= symbol_make (".bs");
3544 S_SET_SEGMENT (sym
, now_seg
);
3545 S_SET_STORAGE_CLASS (sym
, C_BSTAT
);
3546 symbol_get_bfdsym (sym
)->flags
|= BSF_DEBUGGING
;
3547 symbol_get_tc (sym
)->output
= 1;
3549 symbol_get_tc (sym
)->within
= csect
;
3551 ppc_frob_label (sym
);
3553 ppc_current_block
= sym
;
3555 demand_empty_rest_of_line ();
3558 /* The .es pseudo-op. Generate a C_ESTART symbol named .es. */
3562 int ignore ATTRIBUTE_UNUSED
;
3566 if (ppc_current_block
== NULL
)
3567 as_bad (_(".es without preceding .bs"));
3569 sym
= symbol_make (".es");
3570 S_SET_SEGMENT (sym
, now_seg
);
3571 S_SET_STORAGE_CLASS (sym
, C_ESTAT
);
3572 symbol_get_bfdsym (sym
)->flags
|= BSF_DEBUGGING
;
3573 symbol_get_tc (sym
)->output
= 1;
3575 ppc_frob_label (sym
);
3577 ppc_current_block
= NULL
;
3579 demand_empty_rest_of_line ();
3582 /* The .bb pseudo-op. Generate a C_BLOCK symbol named .bb, with a
3587 int ignore ATTRIBUTE_UNUSED
;
3591 sym
= symbol_make (".bb");
3592 S_SET_SEGMENT (sym
, text_section
);
3593 symbol_set_frag (sym
, frag_now
);
3594 S_SET_VALUE (sym
, frag_now_fix ());
3595 S_SET_STORAGE_CLASS (sym
, C_BLOCK
);
3597 S_SET_NUMBER_AUXILIARY (sym
, 1);
3598 SA_SET_SYM_LNNO (sym
, get_absolute_expression ());
3600 symbol_get_tc (sym
)->output
= 1;
3602 SF_SET_PROCESS (sym
);
3604 ppc_frob_label (sym
);
3606 demand_empty_rest_of_line ();
3609 /* The .eb pseudo-op. Generate a C_BLOCK symbol named .eb, with a
3614 int ignore ATTRIBUTE_UNUSED
;
3618 sym
= symbol_make (".eb");
3619 S_SET_SEGMENT (sym
, text_section
);
3620 symbol_set_frag (sym
, frag_now
);
3621 S_SET_VALUE (sym
, frag_now_fix ());
3622 S_SET_STORAGE_CLASS (sym
, C_BLOCK
);
3623 S_SET_NUMBER_AUXILIARY (sym
, 1);
3624 SA_SET_SYM_LNNO (sym
, get_absolute_expression ());
3625 symbol_get_tc (sym
)->output
= 1;
3627 SF_SET_PROCESS (sym
);
3629 ppc_frob_label (sym
);
3631 demand_empty_rest_of_line ();
3634 /* The .bc pseudo-op. This just creates a C_BCOMM symbol with a
3639 int ignore ATTRIBUTE_UNUSED
;
3645 name
= demand_copy_C_string (&len
);
3646 sym
= symbol_make (name
);
3647 S_SET_SEGMENT (sym
, ppc_coff_debug_section
);
3648 symbol_get_bfdsym (sym
)->flags
|= BSF_DEBUGGING
;
3649 S_SET_STORAGE_CLASS (sym
, C_BCOMM
);
3650 S_SET_VALUE (sym
, 0);
3651 symbol_get_tc (sym
)->output
= 1;
3653 ppc_frob_label (sym
);
3655 demand_empty_rest_of_line ();
3658 /* The .ec pseudo-op. This just creates a C_ECOMM symbol. */
3662 int ignore ATTRIBUTE_UNUSED
;
3666 sym
= symbol_make (".ec");
3667 S_SET_SEGMENT (sym
, ppc_coff_debug_section
);
3668 symbol_get_bfdsym (sym
)->flags
|= BSF_DEBUGGING
;
3669 S_SET_STORAGE_CLASS (sym
, C_ECOMM
);
3670 S_SET_VALUE (sym
, 0);
3671 symbol_get_tc (sym
)->output
= 1;
3673 ppc_frob_label (sym
);
3675 demand_empty_rest_of_line ();
3678 /* The .toc pseudo-op. Switch to the .toc subsegment. */
3682 int ignore ATTRIBUTE_UNUSED
;
3684 if (ppc_toc_csect
!= (symbolS
*) NULL
)
3685 subseg_set (data_section
, symbol_get_tc (ppc_toc_csect
)->subseg
);
3692 subseg
= ppc_data_subsegment
;
3693 ++ppc_data_subsegment
;
3695 subseg_new (segment_name (data_section
), subseg
);
3696 ppc_toc_frag
= frag_now
;
3698 sym
= symbol_find_or_make ("TOC[TC0]");
3699 symbol_set_frag (sym
, frag_now
);
3700 S_SET_SEGMENT (sym
, data_section
);
3701 S_SET_VALUE (sym
, (valueT
) frag_now_fix ());
3702 symbol_get_tc (sym
)->subseg
= subseg
;
3703 symbol_get_tc (sym
)->output
= 1;
3704 symbol_get_tc (sym
)->within
= sym
;
3706 ppc_toc_csect
= sym
;
3708 for (list
= ppc_data_csects
;
3709 symbol_get_tc (list
)->next
!= (symbolS
*) NULL
;
3710 list
= symbol_get_tc (list
)->next
)
3712 symbol_get_tc (list
)->next
= sym
;
3714 symbol_remove (sym
, &symbol_rootP
, &symbol_lastP
);
3715 symbol_append (sym
, symbol_get_tc (list
)->within
, &symbol_rootP
,
3719 ppc_current_csect
= ppc_toc_csect
;
3721 demand_empty_rest_of_line ();
3724 /* The AIX assembler automatically aligns the operands of a .long or
3725 .short pseudo-op, and we want to be compatible. */
3728 ppc_xcoff_cons (log_size
)
3731 frag_align (log_size
, 0, 0);
3732 record_alignment (now_seg
, log_size
);
3733 cons (1 << log_size
);
3738 int dummy ATTRIBUTE_UNUSED
;
3743 (void) expression (&exp
);
3745 if (exp
.X_op
!= O_constant
)
3747 as_bad (_("non-constant byte count"));
3751 byte_count
= exp
.X_add_number
;
3753 if (*input_line_pointer
!= ',')
3755 as_bad (_("missing value"));
3759 ++input_line_pointer
;
3763 #endif /* OBJ_XCOFF */
3764 #if defined (OBJ_XCOFF) || defined (OBJ_ELF)
3766 /* The .tc pseudo-op. This is used when generating either XCOFF or
3767 ELF. This takes two or more arguments.
3769 When generating XCOFF output, the first argument is the name to
3770 give to this location in the toc; this will be a symbol with class
3771 TC. The rest of the arguments are N-byte values to actually put at
3772 this location in the TOC; often there is just one more argument, a
3773 relocateable symbol reference. The size of the value to store
3774 depends on target word size. A 32-bit target uses 4-byte values, a
3775 64-bit target uses 8-byte values.
3777 When not generating XCOFF output, the arguments are the same, but
3778 the first argument is simply ignored. */
3782 int ignore ATTRIBUTE_UNUSED
;
3786 /* Define the TOC symbol name. */
3792 if (ppc_toc_csect
== (symbolS
*) NULL
3793 || ppc_toc_csect
!= ppc_current_csect
)
3795 as_bad (_(".tc not in .toc section"));
3796 ignore_rest_of_line ();
3800 name
= input_line_pointer
;
3801 endc
= get_symbol_end ();
3803 sym
= symbol_find_or_make (name
);
3805 *input_line_pointer
= endc
;
3807 if (S_IS_DEFINED (sym
))
3811 label
= symbol_get_tc (ppc_current_csect
)->within
;
3812 if (symbol_get_tc (label
)->class != XMC_TC0
)
3814 as_bad (_(".tc with no label"));
3815 ignore_rest_of_line ();
3819 S_SET_SEGMENT (label
, S_GET_SEGMENT (sym
));
3820 symbol_set_frag (label
, symbol_get_frag (sym
));
3821 S_SET_VALUE (label
, S_GET_VALUE (sym
));
3823 while (! is_end_of_line
[(unsigned char) *input_line_pointer
])
3824 ++input_line_pointer
;
3829 S_SET_SEGMENT (sym
, now_seg
);
3830 symbol_set_frag (sym
, frag_now
);
3831 S_SET_VALUE (sym
, (valueT
) frag_now_fix ());
3832 symbol_get_tc (sym
)->class = XMC_TC
;
3833 symbol_get_tc (sym
)->output
= 1;
3835 ppc_frob_label (sym
);
3838 #endif /* OBJ_XCOFF */
3842 /* Skip the TOC symbol name. */
3843 while (is_part_of_name (*input_line_pointer
)
3844 || *input_line_pointer
== '['
3845 || *input_line_pointer
== ']'
3846 || *input_line_pointer
== '{'
3847 || *input_line_pointer
== '}')
3848 ++input_line_pointer
;
3850 /* Align to a four/eight byte boundary. */
3851 align
= ppc_obj64
? 3 : 2;
3852 frag_align (align
, 0, 0);
3853 record_alignment (now_seg
, align
);
3854 #endif /* OBJ_ELF */
3856 if (*input_line_pointer
!= ',')
3857 demand_empty_rest_of_line ();
3860 ++input_line_pointer
;
3861 cons (ppc_obj64
? 8 : 4);
3865 /* Pseudo-op .machine. */
3866 /* FIXME: `.machine' is a nop for the moment. It would be nice to
3867 accept this directive on the first line of input and set ppc_obj64
3868 and the target format accordingly. Unfortunately, the target
3869 format is selected in output-file.c:output_file_create before we
3870 even get to md_begin, so it's not possible without changing
3874 ppc_machine (ignore
)
3875 int ignore ATTRIBUTE_UNUSED
;
3877 discard_rest_of_line ();
3880 /* See whether a symbol is in the TOC section. */
3883 ppc_is_toc_sym (sym
)
3887 return symbol_get_tc (sym
)->class == XMC_TC
;
3890 const char *sname
= segment_name (S_GET_SEGMENT (sym
));
3892 return strcmp (sname
, ".toc") == 0;
3894 return strcmp (sname
, ".got") == 0;
3897 #endif /* defined (OBJ_XCOFF) || defined (OBJ_ELF) */
3901 /* Pseudo-ops specific to the Windows NT PowerPC PE (coff) format. */
3903 /* Set the current section. */
3905 ppc_set_current_section (new)
3908 ppc_previous_section
= ppc_current_section
;
3909 ppc_current_section
= new;
3912 /* pseudo-op: .previous
3913 behaviour: toggles the current section with the previous section.
3915 warnings: "No previous section" */
3918 ppc_previous (ignore
)
3919 int ignore ATTRIBUTE_UNUSED
;
3923 if (ppc_previous_section
== NULL
)
3925 as_warn (_("No previous section to return to. Directive ignored."));
3929 subseg_set (ppc_previous_section
, 0);
3931 ppc_set_current_section (ppc_previous_section
);
3934 /* pseudo-op: .pdata
3935 behaviour: predefined read only data section
3939 initial: .section .pdata "adr3"
3940 a - don't know -- maybe a misprint
3941 d - initialized data
3943 3 - double word aligned (that would be 4 byte boundary)
3946 Tag index tables (also known as the function table) for exception
3947 handling, debugging, etc. */
3951 int ignore ATTRIBUTE_UNUSED
;
3953 if (pdata_section
== 0)
3955 pdata_section
= subseg_new (".pdata", 0);
3957 bfd_set_section_flags (stdoutput
, pdata_section
,
3958 (SEC_ALLOC
| SEC_LOAD
| SEC_RELOC
3959 | SEC_READONLY
| SEC_DATA
));
3961 bfd_set_section_alignment (stdoutput
, pdata_section
, 2);
3965 pdata_section
= subseg_new (".pdata", 0);
3967 ppc_set_current_section (pdata_section
);
3970 /* pseudo-op: .ydata
3971 behaviour: predefined read only data section
3975 initial: .section .ydata "drw3"
3976 a - don't know -- maybe a misprint
3977 d - initialized data
3979 3 - double word aligned (that would be 4 byte boundary)
3981 Tag tables (also known as the scope table) for exception handling,
3986 int ignore ATTRIBUTE_UNUSED
;
3988 if (ydata_section
== 0)
3990 ydata_section
= subseg_new (".ydata", 0);
3991 bfd_set_section_flags (stdoutput
, ydata_section
,
3992 (SEC_ALLOC
| SEC_LOAD
| SEC_RELOC
3993 | SEC_READONLY
| SEC_DATA
));
3995 bfd_set_section_alignment (stdoutput
, ydata_section
, 3);
3999 ydata_section
= subseg_new (".ydata", 0);
4001 ppc_set_current_section (ydata_section
);
4004 /* pseudo-op: .reldata
4005 behaviour: predefined read write data section
4006 double word aligned (4-byte)
4007 FIXME: relocation is applied to it
4008 FIXME: what's the difference between this and .data?
4011 initial: .section .reldata "drw3"
4012 d - initialized data
4015 3 - double word aligned (that would be 8 byte boundary)
4018 Like .data, but intended to hold data subject to relocation, such as
4019 function descriptors, etc. */
4022 ppc_reldata (ignore
)
4023 int ignore ATTRIBUTE_UNUSED
;
4025 if (reldata_section
== 0)
4027 reldata_section
= subseg_new (".reldata", 0);
4029 bfd_set_section_flags (stdoutput
, reldata_section
,
4030 (SEC_ALLOC
| SEC_LOAD
| SEC_RELOC
4033 bfd_set_section_alignment (stdoutput
, reldata_section
, 2);
4037 reldata_section
= subseg_new (".reldata", 0);
4039 ppc_set_current_section (reldata_section
);
4042 /* pseudo-op: .rdata
4043 behaviour: predefined read only data section
4047 initial: .section .rdata "dr3"
4048 d - initialized data
4050 3 - double word aligned (that would be 4 byte boundary) */
4054 int ignore ATTRIBUTE_UNUSED
;
4056 if (rdata_section
== 0)
4058 rdata_section
= subseg_new (".rdata", 0);
4059 bfd_set_section_flags (stdoutput
, rdata_section
,
4060 (SEC_ALLOC
| SEC_LOAD
| SEC_RELOC
4061 | SEC_READONLY
| SEC_DATA
));
4063 bfd_set_section_alignment (stdoutput
, rdata_section
, 2);
4067 rdata_section
= subseg_new (".rdata", 0);
4069 ppc_set_current_section (rdata_section
);
4072 /* pseudo-op: .ualong
4073 behaviour: much like .int, with the exception that no alignment is
4075 FIXME: test the alignment statement
4081 int ignore ATTRIBUTE_UNUSED
;
4087 /* pseudo-op: .znop <symbol name>
4088 behaviour: Issue a nop instruction
4089 Issue a IMAGE_REL_PPC_IFGLUE relocation against it, using
4090 the supplied symbol name.
4092 warnings: Missing symbol name */
4096 int ignore ATTRIBUTE_UNUSED
;
4099 const struct powerpc_opcode
*opcode
;
4110 /* Strip out the symbol name. */
4111 symbol_name
= input_line_pointer
;
4112 c
= get_symbol_end ();
4114 name
= xmalloc (input_line_pointer
- symbol_name
+ 1);
4115 strcpy (name
, symbol_name
);
4117 sym
= symbol_find_or_make (name
);
4119 *input_line_pointer
= c
;
4123 /* Look up the opcode in the hash table. */
4124 opcode
= (const struct powerpc_opcode
*) hash_find (ppc_hash
, "nop");
4126 /* Stick in the nop. */
4127 insn
= opcode
->opcode
;
4129 /* Write out the instruction. */
4131 md_number_to_chars (f
, insn
, 4);
4133 f
- frag_now
->fr_literal
,
4138 BFD_RELOC_16_GOT_PCREL
);
4151 register char *name
;
4155 register symbolS
*symbolP
;
4158 name
= input_line_pointer
;
4159 c
= get_symbol_end ();
4161 /* just after name is now '\0'. */
4162 p
= input_line_pointer
;
4165 if (*input_line_pointer
!= ',')
4167 as_bad (_("Expected comma after symbol-name: rest of line ignored."));
4168 ignore_rest_of_line ();
4172 input_line_pointer
++; /* skip ',' */
4173 if ((temp
= get_absolute_expression ()) < 0)
4175 as_warn (_(".COMMon length (%ld.) <0! Ignored."), (long) temp
);
4176 ignore_rest_of_line ();
4182 /* The third argument to .comm is the alignment. */
4183 if (*input_line_pointer
!= ',')
4187 ++input_line_pointer
;
4188 align
= get_absolute_expression ();
4191 as_warn (_("ignoring bad alignment"));
4198 symbolP
= symbol_find_or_make (name
);
4201 if (S_IS_DEFINED (symbolP
) && ! S_IS_COMMON (symbolP
))
4203 as_bad (_("Ignoring attempt to re-define symbol `%s'."),
4204 S_GET_NAME (symbolP
));
4205 ignore_rest_of_line ();
4209 if (S_GET_VALUE (symbolP
))
4211 if (S_GET_VALUE (symbolP
) != (valueT
) temp
)
4212 as_bad (_("Length of .comm \"%s\" is already %ld. Not changed to %ld."),
4213 S_GET_NAME (symbolP
),
4214 (long) S_GET_VALUE (symbolP
),
4219 S_SET_VALUE (symbolP
, (valueT
) temp
);
4220 S_SET_EXTERNAL (symbolP
);
4223 demand_empty_rest_of_line ();
4227 * implement the .section pseudo op:
4228 * .section name {, "flags"}
4230 * | +--- optional flags: 'b' for bss
4232 * +-- section name 'l' for lib
4236 * 'd' (apparently m88k for data)
4238 * But if the argument is not a quoted string, treat it as a
4239 * subsegment number.
4241 * FIXME: this is a copy of the section processing from obj-coff.c, with
4242 * additions/changes for the moto-pas assembler support. There are three
4245 * FIXME: I just noticed this. This doesn't work at all really. It it
4246 * setting bits that bfd probably neither understands or uses. The
4247 * correct approach (?) will have to incorporate extra fields attached
4248 * to the section to hold the system specific stuff. (krk)
4251 * 'a' - unknown - referred to in documentation, but no definition supplied
4252 * 'c' - section has code
4253 * 'd' - section has initialized data
4254 * 'u' - section has uninitialized data
4255 * 'i' - section contains directives (info)
4256 * 'n' - section can be discarded
4257 * 'R' - remove section at link time
4259 * Section Protection:
4260 * 'r' - section is readable
4261 * 'w' - section is writeable
4262 * 'x' - section is executable
4263 * 's' - section is sharable
4265 * Section Alignment:
4266 * '0' - align to byte boundary
4267 * '1' - align to halfword undary
4268 * '2' - align to word boundary
4269 * '3' - align to doubleword boundary
4270 * '4' - align to quadword boundary
4271 * '5' - align to 32 byte boundary
4272 * '6' - align to 64 byte boundary
4277 ppc_pe_section (ignore
)
4278 int ignore ATTRIBUTE_UNUSED
;
4280 /* Strip out the section name. */
4289 section_name
= input_line_pointer
;
4290 c
= get_symbol_end ();
4292 name
= xmalloc (input_line_pointer
- section_name
+ 1);
4293 strcpy (name
, section_name
);
4295 *input_line_pointer
= c
;
4300 flags
= SEC_NO_FLAGS
;
4302 if (strcmp (name
, ".idata$2") == 0)
4306 else if (strcmp (name
, ".idata$3") == 0)
4310 else if (strcmp (name
, ".idata$4") == 0)
4314 else if (strcmp (name
, ".idata$5") == 0)
4318 else if (strcmp (name
, ".idata$6") == 0)
4323 /* Default alignment to 16 byte boundary. */
4326 if (*input_line_pointer
== ',')
4328 ++input_line_pointer
;
4330 if (*input_line_pointer
!= '"')
4331 exp
= get_absolute_expression ();
4334 ++input_line_pointer
;
4335 while (*input_line_pointer
!= '"'
4336 && ! is_end_of_line
[(unsigned char) *input_line_pointer
])
4338 switch (*input_line_pointer
)
4340 /* Section Contents */
4341 case 'a': /* unknown */
4342 as_bad (_("Unsupported section attribute -- 'a'"));
4344 case 'c': /* code section */
4347 case 'd': /* section has initialized data */
4350 case 'u': /* section has uninitialized data */
4351 /* FIXME: This is IMAGE_SCN_CNT_UNINITIALIZED_DATA
4355 case 'i': /* section contains directives (info) */
4356 /* FIXME: This is IMAGE_SCN_LNK_INFO
4358 flags
|= SEC_HAS_CONTENTS
;
4360 case 'n': /* section can be discarded */
4363 case 'R': /* Remove section at link time */
4364 flags
|= SEC_NEVER_LOAD
;
4367 /* Section Protection */
4368 case 'r': /* section is readable */
4369 flags
|= IMAGE_SCN_MEM_READ
;
4371 case 'w': /* section is writeable */
4372 flags
|= IMAGE_SCN_MEM_WRITE
;
4374 case 'x': /* section is executable */
4375 flags
|= IMAGE_SCN_MEM_EXECUTE
;
4377 case 's': /* section is sharable */
4378 flags
|= IMAGE_SCN_MEM_SHARED
;
4381 /* Section Alignment */
4382 case '0': /* align to byte boundary */
4383 flags
|= IMAGE_SCN_ALIGN_1BYTES
;
4386 case '1': /* align to halfword boundary */
4387 flags
|= IMAGE_SCN_ALIGN_2BYTES
;
4390 case '2': /* align to word boundary */
4391 flags
|= IMAGE_SCN_ALIGN_4BYTES
;
4394 case '3': /* align to doubleword boundary */
4395 flags
|= IMAGE_SCN_ALIGN_8BYTES
;
4398 case '4': /* align to quadword boundary */
4399 flags
|= IMAGE_SCN_ALIGN_16BYTES
;
4402 case '5': /* align to 32 byte boundary */
4403 flags
|= IMAGE_SCN_ALIGN_32BYTES
;
4406 case '6': /* align to 64 byte boundary */
4407 flags
|= IMAGE_SCN_ALIGN_64BYTES
;
4412 as_bad (_("unknown section attribute '%c'"),
4413 *input_line_pointer
);
4416 ++input_line_pointer
;
4418 if (*input_line_pointer
== '"')
4419 ++input_line_pointer
;
4423 sec
= subseg_new (name
, (subsegT
) exp
);
4425 ppc_set_current_section (sec
);
4427 if (flags
!= SEC_NO_FLAGS
)
4429 if (! bfd_set_section_flags (stdoutput
, sec
, flags
))
4430 as_bad (_("error setting flags for \"%s\": %s"),
4431 bfd_section_name (stdoutput
, sec
),
4432 bfd_errmsg (bfd_get_error ()));
4435 bfd_set_section_alignment (stdoutput
, sec
, align
);
4440 ppc_pe_function (ignore
)
4441 int ignore ATTRIBUTE_UNUSED
;
4447 name
= input_line_pointer
;
4448 endc
= get_symbol_end ();
4450 ext_sym
= symbol_find_or_make (name
);
4452 *input_line_pointer
= endc
;
4454 S_SET_DATA_TYPE (ext_sym
, DT_FCN
<< N_BTSHFT
);
4455 SF_SET_FUNCTION (ext_sym
);
4456 SF_SET_PROCESS (ext_sym
);
4457 coff_add_linesym (ext_sym
);
4459 demand_empty_rest_of_line ();
4463 ppc_pe_tocd (ignore
)
4464 int ignore ATTRIBUTE_UNUSED
;
4466 if (tocdata_section
== 0)
4468 tocdata_section
= subseg_new (".tocd", 0);
4469 /* FIXME: section flags won't work. */
4470 bfd_set_section_flags (stdoutput
, tocdata_section
,
4471 (SEC_ALLOC
| SEC_LOAD
| SEC_RELOC
4472 | SEC_READONLY
| SEC_DATA
));
4474 bfd_set_section_alignment (stdoutput
, tocdata_section
, 2);
4478 rdata_section
= subseg_new (".tocd", 0);
4481 ppc_set_current_section (tocdata_section
);
4483 demand_empty_rest_of_line ();
4486 /* Don't adjust TOC relocs to use the section symbol. */
4489 ppc_pe_fix_adjustable (fix
)
4492 return fix
->fx_r_type
!= BFD_RELOC_PPC_TOC16
;
4499 /* XCOFF specific symbol and file handling. */
4501 /* Canonicalize the symbol name. We use the to force the suffix, if
4502 any, to use square brackets, and to be in upper case. */
4505 ppc_canonicalize_symbol_name (name
)
4510 if (ppc_stab_symbol
)
4513 for (s
= name
; *s
!= '\0' && *s
!= '{' && *s
!= '['; s
++)
4527 for (s
++; *s
!= '\0' && *s
!= brac
; s
++)
4530 if (*s
== '\0' || s
[1] != '\0')
4531 as_bad (_("bad symbol suffix"));
4539 /* Set the class of a symbol based on the suffix, if any. This is
4540 called whenever a new symbol is created. */
4543 ppc_symbol_new_hook (sym
)
4546 struct ppc_tc_sy
*tc
;
4549 tc
= symbol_get_tc (sym
);
4553 tc
->real_name
= NULL
;
4559 if (ppc_stab_symbol
)
4562 s
= strchr (S_GET_NAME (sym
), '[');
4563 if (s
== (const char *) NULL
)
4565 /* There is no suffix. */
4574 if (strcmp (s
, "BS]") == 0)
4578 if (strcmp (s
, "DB]") == 0)
4580 else if (strcmp (s
, "DS]") == 0)
4584 if (strcmp (s
, "GL]") == 0)
4588 if (strcmp (s
, "PR]") == 0)
4592 if (strcmp (s
, "RO]") == 0)
4594 else if (strcmp (s
, "RW]") == 0)
4598 if (strcmp (s
, "SV]") == 0)
4602 if (strcmp (s
, "TC]") == 0)
4604 else if (strcmp (s
, "TI]") == 0)
4606 else if (strcmp (s
, "TB]") == 0)
4608 else if (strcmp (s
, "TC0]") == 0 || strcmp (s
, "T0]") == 0)
4609 tc
->class = XMC_TC0
;
4612 if (strcmp (s
, "UA]") == 0)
4614 else if (strcmp (s
, "UC]") == 0)
4618 if (strcmp (s
, "XO]") == 0)
4623 if (tc
->class == -1)
4624 as_bad (_("Unrecognized symbol suffix"));
4627 /* Set the class of a label based on where it is defined. This
4628 handles symbols without suffixes. Also, move the symbol so that it
4629 follows the csect symbol. */
4632 ppc_frob_label (sym
)
4635 if (ppc_current_csect
!= (symbolS
*) NULL
)
4637 if (symbol_get_tc (sym
)->class == -1)
4638 symbol_get_tc (sym
)->class = symbol_get_tc (ppc_current_csect
)->class;
4640 symbol_remove (sym
, &symbol_rootP
, &symbol_lastP
);
4641 symbol_append (sym
, symbol_get_tc (ppc_current_csect
)->within
,
4642 &symbol_rootP
, &symbol_lastP
);
4643 symbol_get_tc (ppc_current_csect
)->within
= sym
;
4647 /* This variable is set by ppc_frob_symbol if any absolute symbols are
4648 seen. It tells ppc_adjust_symtab whether it needs to look through
4651 static boolean ppc_saw_abs
;
4653 /* Change the name of a symbol just before writing it out. Set the
4654 real name if the .rename pseudo-op was used. Otherwise, remove any
4655 class suffix. Return 1 if the symbol should not be included in the
4659 ppc_frob_symbol (sym
)
4662 static symbolS
*ppc_last_function
;
4663 static symbolS
*set_end
;
4665 /* Discard symbols that should not be included in the output symbol
4667 if (! symbol_used_in_reloc_p (sym
)
4668 && ((symbol_get_bfdsym (sym
)->flags
& BSF_SECTION_SYM
) != 0
4669 || (! S_IS_EXTERNAL (sym
)
4670 && ! symbol_get_tc (sym
)->output
4671 && S_GET_STORAGE_CLASS (sym
) != C_FILE
)))
4674 /* This one will disappear anyway. Don't make a csect sym for it. */
4675 if (sym
== abs_section_sym
)
4678 if (symbol_get_tc (sym
)->real_name
!= (char *) NULL
)
4679 S_SET_NAME (sym
, symbol_get_tc (sym
)->real_name
);
4685 name
= S_GET_NAME (sym
);
4686 s
= strchr (name
, '[');
4687 if (s
!= (char *) NULL
)
4693 snew
= xmalloc (len
+ 1);
4694 memcpy (snew
, name
, len
);
4697 S_SET_NAME (sym
, snew
);
4701 if (set_end
!= (symbolS
*) NULL
)
4703 SA_SET_SYM_ENDNDX (set_end
, sym
);
4707 if (SF_GET_FUNCTION (sym
))
4709 if (ppc_last_function
!= (symbolS
*) NULL
)
4710 as_bad (_("two .function pseudo-ops with no intervening .ef"));
4711 ppc_last_function
= sym
;
4712 if (symbol_get_tc (sym
)->size
!= (symbolS
*) NULL
)
4714 resolve_symbol_value (symbol_get_tc (sym
)->size
);
4715 SA_SET_SYM_FSIZE (sym
,
4716 (long) S_GET_VALUE (symbol_get_tc (sym
)->size
));
4719 else if (S_GET_STORAGE_CLASS (sym
) == C_FCN
4720 && strcmp (S_GET_NAME (sym
), ".ef") == 0)
4722 if (ppc_last_function
== (symbolS
*) NULL
)
4723 as_bad (_(".ef with no preceding .function"));
4726 set_end
= ppc_last_function
;
4727 ppc_last_function
= NULL
;
4729 /* We don't have a C_EFCN symbol, but we need to force the
4730 COFF backend to believe that it has seen one. */
4731 coff_last_function
= NULL
;
4735 if (! S_IS_EXTERNAL (sym
)
4736 && (symbol_get_bfdsym (sym
)->flags
& BSF_SECTION_SYM
) == 0
4737 && S_GET_STORAGE_CLASS (sym
) != C_FILE
4738 && S_GET_STORAGE_CLASS (sym
) != C_FCN
4739 && S_GET_STORAGE_CLASS (sym
) != C_BLOCK
4740 && S_GET_STORAGE_CLASS (sym
) != C_BSTAT
4741 && S_GET_STORAGE_CLASS (sym
) != C_ESTAT
4742 && S_GET_STORAGE_CLASS (sym
) != C_BINCL
4743 && S_GET_STORAGE_CLASS (sym
) != C_EINCL
4744 && S_GET_SEGMENT (sym
) != ppc_coff_debug_section
)
4745 S_SET_STORAGE_CLASS (sym
, C_HIDEXT
);
4747 if (S_GET_STORAGE_CLASS (sym
) == C_EXT
4748 || S_GET_STORAGE_CLASS (sym
) == C_HIDEXT
)
4751 union internal_auxent
*a
;
4753 /* Create a csect aux. */
4754 i
= S_GET_NUMBER_AUXILIARY (sym
);
4755 S_SET_NUMBER_AUXILIARY (sym
, i
+ 1);
4756 a
= &coffsymbol (symbol_get_bfdsym (sym
))->native
[i
+ 1].u
.auxent
;
4757 if (symbol_get_tc (sym
)->class == XMC_TC0
)
4759 /* This is the TOC table. */
4760 know (strcmp (S_GET_NAME (sym
), "TOC") == 0);
4761 a
->x_csect
.x_scnlen
.l
= 0;
4762 a
->x_csect
.x_smtyp
= (2 << 3) | XTY_SD
;
4764 else if (symbol_get_tc (sym
)->subseg
!= 0)
4766 /* This is a csect symbol. x_scnlen is the size of the
4768 if (symbol_get_tc (sym
)->next
== (symbolS
*) NULL
)
4769 a
->x_csect
.x_scnlen
.l
= (bfd_section_size (stdoutput
,
4770 S_GET_SEGMENT (sym
))
4771 - S_GET_VALUE (sym
));
4774 resolve_symbol_value (symbol_get_tc (sym
)->next
);
4775 a
->x_csect
.x_scnlen
.l
= (S_GET_VALUE (symbol_get_tc (sym
)->next
)
4776 - S_GET_VALUE (sym
));
4778 a
->x_csect
.x_smtyp
= (symbol_get_tc (sym
)->align
<< 3) | XTY_SD
;
4780 else if (S_GET_SEGMENT (sym
) == bss_section
)
4782 /* This is a common symbol. */
4783 a
->x_csect
.x_scnlen
.l
= symbol_get_frag (sym
)->fr_offset
;
4784 a
->x_csect
.x_smtyp
= (symbol_get_tc (sym
)->align
<< 3) | XTY_CM
;
4785 if (S_IS_EXTERNAL (sym
))
4786 symbol_get_tc (sym
)->class = XMC_RW
;
4788 symbol_get_tc (sym
)->class = XMC_BS
;
4790 else if (S_GET_SEGMENT (sym
) == absolute_section
)
4792 /* This is an absolute symbol. The csect will be created by
4793 ppc_adjust_symtab. */
4795 a
->x_csect
.x_smtyp
= XTY_LD
;
4796 if (symbol_get_tc (sym
)->class == -1)
4797 symbol_get_tc (sym
)->class = XMC_XO
;
4799 else if (! S_IS_DEFINED (sym
))
4801 /* This is an external symbol. */
4802 a
->x_csect
.x_scnlen
.l
= 0;
4803 a
->x_csect
.x_smtyp
= XTY_ER
;
4805 else if (symbol_get_tc (sym
)->class == XMC_TC
)
4809 /* This is a TOC definition. x_scnlen is the size of the
4811 next
= symbol_next (sym
);
4812 while (symbol_get_tc (next
)->class == XMC_TC0
)
4813 next
= symbol_next (next
);
4814 if (next
== (symbolS
*) NULL
4815 || symbol_get_tc (next
)->class != XMC_TC
)
4817 if (ppc_after_toc_frag
== (fragS
*) NULL
)
4818 a
->x_csect
.x_scnlen
.l
= (bfd_section_size (stdoutput
,
4820 - S_GET_VALUE (sym
));
4822 a
->x_csect
.x_scnlen
.l
= (ppc_after_toc_frag
->fr_address
4823 - S_GET_VALUE (sym
));
4827 resolve_symbol_value (next
);
4828 a
->x_csect
.x_scnlen
.l
= (S_GET_VALUE (next
)
4829 - S_GET_VALUE (sym
));
4831 a
->x_csect
.x_smtyp
= (2 << 3) | XTY_SD
;
4837 /* This is a normal symbol definition. x_scnlen is the
4838 symbol index of the containing csect. */
4839 if (S_GET_SEGMENT (sym
) == text_section
)
4840 csect
= ppc_text_csects
;
4841 else if (S_GET_SEGMENT (sym
) == data_section
)
4842 csect
= ppc_data_csects
;
4846 /* Skip the initial dummy symbol. */
4847 csect
= symbol_get_tc (csect
)->next
;
4849 if (csect
== (symbolS
*) NULL
)
4851 as_warn (_("warning: symbol %s has no csect"), S_GET_NAME (sym
));
4852 a
->x_csect
.x_scnlen
.l
= 0;
4856 while (symbol_get_tc (csect
)->next
!= (symbolS
*) NULL
)
4858 resolve_symbol_value (symbol_get_tc (csect
)->next
);
4859 if (S_GET_VALUE (symbol_get_tc (csect
)->next
)
4860 > S_GET_VALUE (sym
))
4862 csect
= symbol_get_tc (csect
)->next
;
4865 a
->x_csect
.x_scnlen
.p
=
4866 coffsymbol (symbol_get_bfdsym (csect
))->native
;
4867 coffsymbol (symbol_get_bfdsym (sym
))->native
[i
+ 1].fix_scnlen
=
4870 a
->x_csect
.x_smtyp
= XTY_LD
;
4873 a
->x_csect
.x_parmhash
= 0;
4874 a
->x_csect
.x_snhash
= 0;
4875 if (symbol_get_tc (sym
)->class == -1)
4876 a
->x_csect
.x_smclas
= XMC_PR
;
4878 a
->x_csect
.x_smclas
= symbol_get_tc (sym
)->class;
4879 a
->x_csect
.x_stab
= 0;
4880 a
->x_csect
.x_snstab
= 0;
4882 /* Don't let the COFF backend resort these symbols. */
4883 symbol_get_bfdsym (sym
)->flags
|= BSF_NOT_AT_END
;
4885 else if (S_GET_STORAGE_CLASS (sym
) == C_BSTAT
)
4887 /* We want the value to be the symbol index of the referenced
4888 csect symbol. BFD will do that for us if we set the right
4890 asymbol
*bsym
= symbol_get_bfdsym (symbol_get_tc (sym
)->within
);
4891 combined_entry_type
*c
= coffsymbol (bsym
)->native
;
4893 S_SET_VALUE (sym
, (valueT
) (size_t) c
);
4894 coffsymbol (symbol_get_bfdsym (sym
))->native
->fix_value
= 1;
4896 else if (S_GET_STORAGE_CLASS (sym
) == C_STSYM
)
4901 /* The value is the offset from the enclosing csect. */
4902 block
= symbol_get_tc (sym
)->within
;
4903 csect
= symbol_get_tc (block
)->within
;
4904 resolve_symbol_value (csect
);
4905 S_SET_VALUE (sym
, S_GET_VALUE (sym
) - S_GET_VALUE (csect
));
4907 else if (S_GET_STORAGE_CLASS (sym
) == C_BINCL
4908 || S_GET_STORAGE_CLASS (sym
) == C_EINCL
)
4910 /* We want the value to be a file offset into the line numbers.
4911 BFD will do that for us if we set the right flags. We have
4912 already set the value correctly. */
4913 coffsymbol (symbol_get_bfdsym (sym
))->native
->fix_line
= 1;
4919 /* Adjust the symbol table. This creates csect symbols for all
4920 absolute symbols. */
4923 ppc_adjust_symtab ()
4930 for (sym
= symbol_rootP
; sym
!= NULL
; sym
= symbol_next (sym
))
4934 union internal_auxent
*a
;
4936 if (S_GET_SEGMENT (sym
) != absolute_section
)
4939 csect
= symbol_create (".abs[XO]", absolute_section
,
4940 S_GET_VALUE (sym
), &zero_address_frag
);
4941 symbol_get_bfdsym (csect
)->value
= S_GET_VALUE (sym
);
4942 S_SET_STORAGE_CLASS (csect
, C_HIDEXT
);
4943 i
= S_GET_NUMBER_AUXILIARY (csect
);
4944 S_SET_NUMBER_AUXILIARY (csect
, i
+ 1);
4945 a
= &coffsymbol (symbol_get_bfdsym (csect
))->native
[i
+ 1].u
.auxent
;
4946 a
->x_csect
.x_scnlen
.l
= 0;
4947 a
->x_csect
.x_smtyp
= XTY_SD
;
4948 a
->x_csect
.x_parmhash
= 0;
4949 a
->x_csect
.x_snhash
= 0;
4950 a
->x_csect
.x_smclas
= XMC_XO
;
4951 a
->x_csect
.x_stab
= 0;
4952 a
->x_csect
.x_snstab
= 0;
4954 symbol_insert (csect
, sym
, &symbol_rootP
, &symbol_lastP
);
4956 i
= S_GET_NUMBER_AUXILIARY (sym
);
4957 a
= &coffsymbol (symbol_get_bfdsym (sym
))->native
[i
].u
.auxent
;
4958 a
->x_csect
.x_scnlen
.p
= coffsymbol (symbol_get_bfdsym (csect
))->native
;
4959 coffsymbol (symbol_get_bfdsym (sym
))->native
[i
].fix_scnlen
= 1;
4962 ppc_saw_abs
= false;
4965 /* Set the VMA for a section. This is called on all the sections in
4969 ppc_frob_section (sec
)
4972 static bfd_size_type vma
= 0;
4974 bfd_set_section_vma (stdoutput
, sec
, vma
);
4975 vma
+= bfd_section_size (stdoutput
, sec
);
4978 #endif /* OBJ_XCOFF */
4980 /* Turn a string in input_line_pointer into a floating point constant
4981 of type TYPE, and store the appropriate bytes in *LITP. The number
4982 of LITTLENUMS emitted is stored in *SIZEP. An error message is
4983 returned, or NULL on OK. */
4986 md_atof (type
, litp
, sizep
)
4992 LITTLENUM_TYPE words
[4];
5008 return _("bad call to md_atof");
5011 t
= atof_ieee (input_line_pointer
, type
, words
);
5013 input_line_pointer
= t
;
5017 if (target_big_endian
)
5019 for (i
= 0; i
< prec
; i
++)
5021 md_number_to_chars (litp
, (valueT
) words
[i
], 2);
5027 for (i
= prec
- 1; i
>= 0; i
--)
5029 md_number_to_chars (litp
, (valueT
) words
[i
], 2);
5037 /* Write a value out to the object file, using the appropriate
5041 md_number_to_chars (buf
, val
, n
)
5046 if (target_big_endian
)
5047 number_to_chars_bigendian (buf
, val
, n
);
5049 number_to_chars_littleendian (buf
, val
, n
);
5052 /* Align a section (I don't know why this is machine dependent). */
5055 md_section_align (seg
, addr
)
5059 int align
= bfd_get_section_alignment (stdoutput
, seg
);
5061 return ((addr
+ (1 << align
) - 1) & (-1 << align
));
5064 /* We don't have any form of relaxing. */
5067 md_estimate_size_before_relax (fragp
, seg
)
5068 fragS
*fragp ATTRIBUTE_UNUSED
;
5069 asection
*seg ATTRIBUTE_UNUSED
;
5075 /* Convert a machine dependent frag. We never generate these. */
5078 md_convert_frag (abfd
, sec
, fragp
)
5079 bfd
*abfd ATTRIBUTE_UNUSED
;
5080 asection
*sec ATTRIBUTE_UNUSED
;
5081 fragS
*fragp ATTRIBUTE_UNUSED
;
5086 /* We have no need to default values of symbols. */
5089 md_undefined_symbol (name
)
5090 char *name ATTRIBUTE_UNUSED
;
5095 /* Functions concerning relocs. */
5097 /* The location from which a PC relative jump should be calculated,
5098 given a PC relative reloc. */
5101 md_pcrel_from_section (fixp
, sec
)
5103 segT sec ATTRIBUTE_UNUSED
;
5105 return fixp
->fx_frag
->fr_address
+ fixp
->fx_where
;
5110 /* This is called to see whether a fixup should be adjusted to use a
5111 section symbol. We take the opportunity to change a fixup against
5112 a symbol in the TOC subsegment into a reloc against the
5113 corresponding .tc symbol. */
5116 ppc_fix_adjustable (fix
)
5119 valueT val
= resolve_symbol_value (fix
->fx_addsy
);
5120 segT symseg
= S_GET_SEGMENT (fix
->fx_addsy
);
5121 TC_SYMFIELD_TYPE
*tc
;
5123 if (symseg
== absolute_section
)
5126 if (ppc_toc_csect
!= (symbolS
*) NULL
5127 && fix
->fx_addsy
!= ppc_toc_csect
5128 && symseg
== data_section
5129 && val
>= ppc_toc_frag
->fr_address
5130 && (ppc_after_toc_frag
== (fragS
*) NULL
5131 || val
< ppc_after_toc_frag
->fr_address
))
5135 for (sy
= symbol_next (ppc_toc_csect
);
5136 sy
!= (symbolS
*) NULL
;
5137 sy
= symbol_next (sy
))
5139 TC_SYMFIELD_TYPE
*sy_tc
= symbol_get_tc (sy
);
5141 if (sy_tc
->class == XMC_TC0
)
5143 if (sy_tc
->class != XMC_TC
)
5145 if (val
== resolve_symbol_value (sy
))
5148 fix
->fx_addnumber
= val
- ppc_toc_frag
->fr_address
;
5153 as_bad_where (fix
->fx_file
, fix
->fx_line
,
5154 _("symbol in .toc does not match any .tc"));
5157 /* Possibly adjust the reloc to be against the csect. */
5158 tc
= symbol_get_tc (fix
->fx_addsy
);
5160 && tc
->class != XMC_TC0
5161 && tc
->class != XMC_TC
5162 && symseg
!= bss_section
5163 /* Don't adjust if this is a reloc in the toc section. */
5164 && (symseg
!= data_section
5165 || ppc_toc_csect
== NULL
5166 || val
< ppc_toc_frag
->fr_address
5167 || (ppc_after_toc_frag
!= NULL
5168 && val
>= ppc_after_toc_frag
->fr_address
)))
5171 symbolS
*next_csect
;
5173 if (symseg
== text_section
)
5174 csect
= ppc_text_csects
;
5175 else if (symseg
== data_section
)
5176 csect
= ppc_data_csects
;
5180 /* Skip the initial dummy symbol. */
5181 csect
= symbol_get_tc (csect
)->next
;
5183 if (csect
!= (symbolS
*) NULL
)
5185 while ((next_csect
= symbol_get_tc (csect
)->next
) != (symbolS
*) NULL
5186 && (symbol_get_frag (next_csect
)->fr_address
<= val
))
5188 /* If the csect address equals the symbol value, then we
5189 have to look through the full symbol table to see
5190 whether this is the csect we want. Note that we will
5191 only get here if the csect has zero length. */
5192 if (symbol_get_frag (csect
)->fr_address
== val
5193 && S_GET_VALUE (csect
) == val
)
5197 for (scan
= symbol_next (csect
);
5199 scan
= symbol_next (scan
))
5201 if (symbol_get_tc (scan
)->subseg
!= 0)
5203 if (scan
== fix
->fx_addsy
)
5207 /* If we found the symbol before the next csect
5208 symbol, then this is the csect we want. */
5209 if (scan
== fix
->fx_addsy
)
5216 fix
->fx_offset
+= val
- symbol_get_frag (csect
)->fr_address
;
5217 fix
->fx_addsy
= csect
;
5222 /* Adjust a reloc against a .lcomm symbol to be against the base
5224 if (symseg
== bss_section
5225 && ! S_IS_EXTERNAL (fix
->fx_addsy
))
5227 symbolS
*sy
= symbol_get_frag (fix
->fx_addsy
)->fr_symbol
;
5229 fix
->fx_offset
+= val
- resolve_symbol_value (sy
);
5236 /* A reloc from one csect to another must be kept. The assembler
5237 will, of course, keep relocs between sections, and it will keep
5238 absolute relocs, but we need to force it to keep PC relative relocs
5239 between two csects in the same section. */
5242 ppc_force_relocation (fix
)
5245 /* At this point fix->fx_addsy should already have been converted to
5246 a csect symbol. If the csect does not include the fragment, then
5247 we need to force the relocation. */
5249 && fix
->fx_addsy
!= NULL
5250 && symbol_get_tc (fix
->fx_addsy
)->subseg
!= 0
5251 && ((symbol_get_frag (fix
->fx_addsy
)->fr_address
5252 > fix
->fx_frag
->fr_address
)
5253 || (symbol_get_tc (fix
->fx_addsy
)->next
!= NULL
5254 && (symbol_get_frag (symbol_get_tc (fix
->fx_addsy
)->next
)->fr_address
5255 <= fix
->fx_frag
->fr_address
))))
5258 return S_FORCE_RELOC (fix
->fx_addsy
);
5261 #endif /* OBJ_XCOFF */
5264 /* If this function returns non-zero, it guarantees that a relocation
5265 will be emitted for a fixup. */
5268 ppc_force_relocation (fix
)
5271 /* Branch prediction relocations must force a relocation, as must
5272 the vtable description relocs. */
5273 switch (fix
->fx_r_type
)
5275 case BFD_RELOC_PPC_B16_BRTAKEN
:
5276 case BFD_RELOC_PPC_B16_BRNTAKEN
:
5277 case BFD_RELOC_PPC_BA16_BRTAKEN
:
5278 case BFD_RELOC_PPC_BA16_BRNTAKEN
:
5279 case BFD_RELOC_PPC64_TOC
:
5280 case BFD_RELOC_VTABLE_INHERIT
:
5281 case BFD_RELOC_VTABLE_ENTRY
:
5287 return S_FORCE_RELOC (fix
->fx_addsy
);
5291 ppc_fix_adjustable (fix
)
5294 return (fix
->fx_r_type
!= BFD_RELOC_16_GOTOFF
5295 && fix
->fx_r_type
!= BFD_RELOC_LO16_GOTOFF
5296 && fix
->fx_r_type
!= BFD_RELOC_HI16_GOTOFF
5297 && fix
->fx_r_type
!= BFD_RELOC_HI16_S_GOTOFF
5298 && fix
->fx_r_type
!= BFD_RELOC_GPREL16
5299 && fix
->fx_r_type
!= BFD_RELOC_VTABLE_INHERIT
5300 && fix
->fx_r_type
!= BFD_RELOC_VTABLE_ENTRY
5302 || (fix
->fx_subsy
!= NULL
5303 && (S_GET_SEGMENT (fix
->fx_subsy
)
5304 == S_GET_SEGMENT (fix
->fx_addsy
)))
5305 || S_IS_LOCAL (fix
->fx_addsy
)));
5309 /* Apply a fixup to the object code. This is called for all the
5310 fixups we generated by the call to fix_new_exp, above. In the call
5311 above we used a reloc code which was the largest legal reloc code
5312 plus the operand index. Here we undo that to recover the operand
5313 index. At this point all symbol values should be fully resolved,
5314 and we attempt to completely resolve the reloc. If we can not do
5315 that, we determine the correct reloc code and put it back in the
5319 md_apply_fix3 (fixP
, valP
, seg
)
5322 segT seg ATTRIBUTE_UNUSED
;
5324 valueT value
= * valP
;
5327 if (fixP
->fx_addsy
!= NULL
)
5329 /* Hack around bfd_install_relocation brain damage. */
5331 value
+= fixP
->fx_frag
->fr_address
+ fixP
->fx_where
;
5336 /* FIXME FIXME FIXME: The value we are passed in *valP includes
5337 the symbol values. Since we are using BFD_ASSEMBLER, if we are
5338 doing this relocation the code in write.c is going to call
5339 bfd_install_relocation, which is also going to use the symbol
5340 value. That means that if the reloc is fully resolved we want to
5341 use *valP since bfd_install_relocation is not being used.
5342 However, if the reloc is not fully resolved we do not want to use
5343 *valP, and must use fx_offset instead. However, if the reloc
5344 is PC relative, we do want to use *valP since it includes the
5345 result of md_pcrel_from. This is confusing. */
5346 if (fixP
->fx_addsy
== (symbolS
*) NULL
)
5349 else if (fixP
->fx_pcrel
)
5353 value
= fixP
->fx_offset
;
5356 if (fixP
->fx_subsy
!= (symbolS
*) NULL
)
5358 /* We can't actually support subtracting a symbol. */
5359 as_bad_where (fixP
->fx_file
, fixP
->fx_line
, _("expression too complex"));
5362 if ((int) fixP
->fx_r_type
>= (int) BFD_RELOC_UNUSED
)
5365 const struct powerpc_operand
*operand
;
5369 opindex
= (int) fixP
->fx_r_type
- (int) BFD_RELOC_UNUSED
;
5371 operand
= &powerpc_operands
[opindex
];
5374 /* An instruction like `lwz 9,sym(30)' when `sym' is not a TOC symbol
5375 does not generate a reloc. It uses the offset of `sym' within its
5376 csect. Other usages, such as `.long sym', generate relocs. This
5377 is the documented behaviour of non-TOC symbols. */
5378 if ((operand
->flags
& PPC_OPERAND_PARENS
) != 0
5379 && operand
->bits
== 16
5380 && operand
->shift
== 0
5381 && (operand
->insert
== NULL
|| ppc_obj64
)
5382 && fixP
->fx_addsy
!= NULL
5383 && symbol_get_tc (fixP
->fx_addsy
)->subseg
!= 0
5384 && symbol_get_tc (fixP
->fx_addsy
)->class != XMC_TC
5385 && symbol_get_tc (fixP
->fx_addsy
)->class != XMC_TC0
5386 && S_GET_SEGMENT (fixP
->fx_addsy
) != bss_section
)
5388 value
= fixP
->fx_offset
;
5393 /* Fetch the instruction, insert the fully resolved operand
5394 value, and stuff the instruction back again. */
5395 where
= fixP
->fx_frag
->fr_literal
+ fixP
->fx_where
;
5396 if (target_big_endian
)
5397 insn
= bfd_getb32 ((unsigned char *) where
);
5399 insn
= bfd_getl32 ((unsigned char *) where
);
5400 insn
= ppc_insert_operand (insn
, operand
, (offsetT
) value
,
5401 fixP
->fx_file
, fixP
->fx_line
);
5402 if (target_big_endian
)
5403 bfd_putb32 ((bfd_vma
) insn
, (unsigned char *) where
);
5405 bfd_putl32 ((bfd_vma
) insn
, (unsigned char *) where
);
5408 /* Nothing else to do here. */
5411 assert (fixP
->fx_addsy
!= NULL
);
5413 /* Determine a BFD reloc value based on the operand information.
5414 We are only prepared to turn a few of the operands into
5416 if ((operand
->flags
& PPC_OPERAND_RELATIVE
) != 0
5417 && operand
->bits
== 26
5418 && operand
->shift
== 0)
5419 fixP
->fx_r_type
= BFD_RELOC_PPC_B26
;
5420 else if ((operand
->flags
& PPC_OPERAND_RELATIVE
) != 0
5421 && operand
->bits
== 16
5422 && operand
->shift
== 0)
5424 fixP
->fx_r_type
= BFD_RELOC_PPC_B16
;
5427 if (target_big_endian
)
5428 fixP
->fx_where
+= 2;
5431 else if ((operand
->flags
& PPC_OPERAND_ABSOLUTE
) != 0
5432 && operand
->bits
== 26
5433 && operand
->shift
== 0)
5434 fixP
->fx_r_type
= BFD_RELOC_PPC_BA26
;
5435 else if ((operand
->flags
& PPC_OPERAND_ABSOLUTE
) != 0
5436 && operand
->bits
== 16
5437 && operand
->shift
== 0)
5439 fixP
->fx_r_type
= BFD_RELOC_PPC_BA16
;
5442 if (target_big_endian
)
5443 fixP
->fx_where
+= 2;
5446 #if defined (OBJ_XCOFF) || defined (OBJ_ELF)
5447 else if ((operand
->flags
& PPC_OPERAND_PARENS
) != 0
5448 && operand
->bits
== 16
5449 && operand
->shift
== 0
5450 && ppc_is_toc_sym (fixP
->fx_addsy
))
5452 fixP
->fx_r_type
= BFD_RELOC_PPC_TOC16
;
5455 && (operand
->flags
& PPC_OPERAND_DS
) != 0)
5456 fixP
->fx_r_type
= BFD_RELOC_PPC64_TOC16_DS
;
5459 if (target_big_endian
)
5460 fixP
->fx_where
+= 2;
5462 #endif /* defined (OBJ_XCOFF) || defined (OBJ_ELF) */
5468 /* Use expr_symbol_where to see if this is an expression
5470 if (expr_symbol_where (fixP
->fx_addsy
, &sfile
, &sline
))
5471 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
5472 _("unresolved expression that must be resolved"));
5474 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
5475 _("unsupported relocation against %s"),
5476 S_GET_NAME (fixP
->fx_addsy
));
5484 ppc_elf_validate_fix (fixP
, seg
);
5486 switch (fixP
->fx_r_type
)
5488 case BFD_RELOC_CTOR
:
5495 fixP
->fx_r_type
= BFD_RELOC_32_PCREL
;
5499 case BFD_RELOC_32_PCREL
:
5500 case BFD_RELOC_PPC_EMB_NADDR32
:
5501 md_number_to_chars (fixP
->fx_frag
->fr_literal
+ fixP
->fx_where
,
5508 fixP
->fx_r_type
= BFD_RELOC_64_PCREL
;
5511 case BFD_RELOC_64_PCREL
:
5512 md_number_to_chars (fixP
->fx_frag
->fr_literal
+ fixP
->fx_where
,
5516 case BFD_RELOC_LO16
:
5518 case BFD_RELOC_GPREL16
:
5519 case BFD_RELOC_16_GOT_PCREL
:
5520 case BFD_RELOC_16_GOTOFF
:
5521 case BFD_RELOC_LO16_GOTOFF
:
5522 case BFD_RELOC_HI16_GOTOFF
:
5523 case BFD_RELOC_HI16_S_GOTOFF
:
5524 case BFD_RELOC_16_BASEREL
:
5525 case BFD_RELOC_LO16_BASEREL
:
5526 case BFD_RELOC_HI16_BASEREL
:
5527 case BFD_RELOC_HI16_S_BASEREL
:
5528 case BFD_RELOC_PPC_EMB_NADDR16
:
5529 case BFD_RELOC_PPC_EMB_NADDR16_LO
:
5530 case BFD_RELOC_PPC_EMB_NADDR16_HI
:
5531 case BFD_RELOC_PPC_EMB_NADDR16_HA
:
5532 case BFD_RELOC_PPC_EMB_SDAI16
:
5533 case BFD_RELOC_PPC_EMB_SDA2REL
:
5534 case BFD_RELOC_PPC_EMB_SDA2I16
:
5535 case BFD_RELOC_PPC_EMB_RELSEC16
:
5536 case BFD_RELOC_PPC_EMB_RELST_LO
:
5537 case BFD_RELOC_PPC_EMB_RELST_HI
:
5538 case BFD_RELOC_PPC_EMB_RELST_HA
:
5539 case BFD_RELOC_PPC_EMB_RELSDA
:
5540 case BFD_RELOC_PPC_TOC16
:
5542 case BFD_RELOC_PPC64_TOC16_LO
:
5543 case BFD_RELOC_PPC64_TOC16_HI
:
5544 case BFD_RELOC_PPC64_TOC16_HA
:
5548 if (fixP
->fx_addsy
!= NULL
)
5549 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
5550 _("cannot emit PC relative %s relocation against %s"),
5551 bfd_get_reloc_code_name (fixP
->fx_r_type
),
5552 S_GET_NAME (fixP
->fx_addsy
));
5554 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
5555 _("cannot emit PC relative %s relocation"),
5556 bfd_get_reloc_code_name (fixP
->fx_r_type
));
5559 md_number_to_chars (fixP
->fx_frag
->fr_literal
+ fixP
->fx_where
,
5563 /* This case happens when you write, for example,
5565 where L1 and L2 are defined later. */
5566 case BFD_RELOC_HI16
:
5569 md_number_to_chars (fixP
->fx_frag
->fr_literal
+ fixP
->fx_where
,
5573 case BFD_RELOC_HI16_S
:
5576 md_number_to_chars (fixP
->fx_frag
->fr_literal
+ fixP
->fx_where
,
5581 case BFD_RELOC_PPC64_HIGHER
:
5584 md_number_to_chars (fixP
->fx_frag
->fr_literal
+ fixP
->fx_where
,
5585 PPC_HIGHER (value
), 2);
5588 case BFD_RELOC_PPC64_HIGHER_S
:
5591 md_number_to_chars (fixP
->fx_frag
->fr_literal
+ fixP
->fx_where
,
5592 PPC_HIGHERA (value
), 2);
5595 case BFD_RELOC_PPC64_HIGHEST
:
5598 md_number_to_chars (fixP
->fx_frag
->fr_literal
+ fixP
->fx_where
,
5599 PPC_HIGHEST (value
), 2);
5602 case BFD_RELOC_PPC64_HIGHEST_S
:
5605 md_number_to_chars (fixP
->fx_frag
->fr_literal
+ fixP
->fx_where
,
5606 PPC_HIGHESTA (value
), 2);
5609 case BFD_RELOC_PPC64_ADDR16_DS
:
5610 case BFD_RELOC_PPC64_ADDR16_LO_DS
:
5611 case BFD_RELOC_PPC64_GOT16_DS
:
5612 case BFD_RELOC_PPC64_GOT16_LO_DS
:
5613 case BFD_RELOC_PPC64_PLT16_LO_DS
:
5614 case BFD_RELOC_PPC64_SECTOFF_DS
:
5615 case BFD_RELOC_PPC64_SECTOFF_LO_DS
:
5616 case BFD_RELOC_PPC64_TOC16_DS
:
5617 case BFD_RELOC_PPC64_TOC16_LO_DS
:
5618 case BFD_RELOC_PPC64_PLTGOT16_DS
:
5619 case BFD_RELOC_PPC64_PLTGOT16_LO_DS
:
5623 unsigned char *where
= fixP
->fx_frag
->fr_literal
+ fixP
->fx_where
;
5626 if (target_big_endian
)
5627 val
= bfd_getb16 (where
);
5629 val
= bfd_getl16 (where
);
5630 val
|= (value
& 0xfffc);
5631 if (target_big_endian
)
5632 bfd_putb16 ((bfd_vma
) val
, where
);
5634 bfd_putl16 ((bfd_vma
) val
, where
);
5638 /* Because SDA21 modifies the register field, the size is set to 4
5639 bytes, rather than 2, so offset it here appropriately. */
5640 case BFD_RELOC_PPC_EMB_SDA21
:
5644 md_number_to_chars (fixP
->fx_frag
->fr_literal
+ fixP
->fx_where
5645 + ((target_big_endian
) ? 2 : 0),
5653 md_number_to_chars (fixP
->fx_frag
->fr_literal
+ fixP
->fx_where
,
5657 case BFD_RELOC_24_PLT_PCREL
:
5658 case BFD_RELOC_PPC_LOCAL24PC
:
5659 if (!fixP
->fx_pcrel
&& !fixP
->fx_done
)
5667 /* Fetch the instruction, insert the fully resolved operand
5668 value, and stuff the instruction back again. */
5669 where
= fixP
->fx_frag
->fr_literal
+ fixP
->fx_where
;
5670 if (target_big_endian
)
5671 insn
= bfd_getb32 ((unsigned char *) where
);
5673 insn
= bfd_getl32 ((unsigned char *) where
);
5674 if ((value
& 3) != 0)
5675 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
5676 _("must branch to an address a multiple of 4"));
5677 if ((offsetT
) value
< -0x40000000
5678 || (offsetT
) value
>= 0x40000000)
5679 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
5680 _("@local or @plt branch destination is too far away, %ld bytes"),
5682 insn
= insn
| (value
& 0x03fffffc);
5683 if (target_big_endian
)
5684 bfd_putb32 ((bfd_vma
) insn
, (unsigned char *) where
);
5686 bfd_putl32 ((bfd_vma
) insn
, (unsigned char *) where
);
5690 case BFD_RELOC_VTABLE_INHERIT
:
5693 && !S_IS_DEFINED (fixP
->fx_addsy
)
5694 && !S_IS_WEAK (fixP
->fx_addsy
))
5695 S_SET_WEAK (fixP
->fx_addsy
);
5698 case BFD_RELOC_VTABLE_ENTRY
:
5703 /* Generated by reference to `sym@tocbase'. The sym is
5704 ignored by the linker. */
5705 case BFD_RELOC_PPC64_TOC
:
5711 _("Gas failure, reloc value %d\n"), fixP
->fx_r_type
);
5718 fixP
->fx_addnumber
= value
;
5720 if (fixP
->fx_r_type
!= BFD_RELOC_PPC_TOC16
)
5721 fixP
->fx_addnumber
= 0;
5725 fixP
->fx_addnumber
= 0;
5727 /* We want to use the offset within the data segment of the
5728 symbol, not the actual VMA of the symbol. */
5729 fixP
->fx_addnumber
=
5730 - bfd_get_section_vma (stdoutput
, S_GET_SEGMENT (fixP
->fx_addsy
));
5736 /* Generate a reloc for a fixup. */
5739 tc_gen_reloc (seg
, fixp
)
5740 asection
*seg ATTRIBUTE_UNUSED
;
5745 reloc
= (arelent
*) xmalloc (sizeof (arelent
));
5747 reloc
->sym_ptr_ptr
= (asymbol
**) xmalloc (sizeof (asymbol
*));
5748 *reloc
->sym_ptr_ptr
= symbol_get_bfdsym (fixp
->fx_addsy
);
5749 reloc
->address
= fixp
->fx_frag
->fr_address
+ fixp
->fx_where
;
5750 reloc
->howto
= bfd_reloc_type_lookup (stdoutput
, fixp
->fx_r_type
);
5751 if (reloc
->howto
== (reloc_howto_type
*) NULL
)
5753 as_bad_where (fixp
->fx_file
, fixp
->fx_line
,
5754 _("reloc %d not supported by object file format"),
5755 (int) fixp
->fx_r_type
);
5758 reloc
->addend
= fixp
->fx_addnumber
;