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) >> 32) & 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) >> 48) & 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
));
136 static void ppc_set_current_section
PARAMS ((segT
));
137 static void ppc_previous
PARAMS ((int));
138 static void ppc_pdata
PARAMS ((int));
139 static void ppc_ydata
PARAMS ((int));
140 static void ppc_reldata
PARAMS ((int));
141 static void ppc_rdata
PARAMS ((int));
142 static void ppc_ualong
PARAMS ((int));
143 static void ppc_znop
PARAMS ((int));
144 static void ppc_pe_comm
PARAMS ((int));
145 static void ppc_pe_section
PARAMS ((int));
146 static void ppc_pe_function
PARAMS ((int));
147 static void ppc_pe_tocd
PARAMS ((int));
150 /* Generic assembler global variables which must be defined by all
154 /* This string holds the chars that always start a comment. If the
155 pre-processor is disabled, these aren't very useful. The macro
156 tc_comment_chars points to this. We use this, rather than the
157 usual comment_chars, so that we can switch for Solaris conventions. */
158 static const char ppc_solaris_comment_chars
[] = "#!";
159 static const char ppc_eabi_comment_chars
[] = "#";
161 #ifdef TARGET_SOLARIS_COMMENT
162 const char *ppc_comment_chars
= ppc_solaris_comment_chars
;
164 const char *ppc_comment_chars
= ppc_eabi_comment_chars
;
167 const char comment_chars
[] = "#";
170 /* Characters which start a comment at the beginning of a line. */
171 const char line_comment_chars
[] = "#";
173 /* Characters which may be used to separate multiple commands on a
175 const char line_separator_chars
[] = ";";
177 /* Characters which are used to indicate an exponent in a floating
179 const char EXP_CHARS
[] = "eE";
181 /* Characters which mean that a number is a floating point constant,
183 const char FLT_CHARS
[] = "dD";
185 /* The target specific pseudo-ops which we support. */
187 const pseudo_typeS md_pseudo_table
[] =
189 /* Pseudo-ops which must be overridden. */
190 { "byte", ppc_byte
, 0 },
193 /* Pseudo-ops specific to the RS/6000 XCOFF format. Some of these
194 legitimately belong in the obj-*.c file. However, XCOFF is based
195 on COFF, and is only implemented for the RS/6000. We just use
196 obj-coff.c, and add what we need here. */
197 { "comm", ppc_comm
, 0 },
198 { "lcomm", ppc_comm
, 1 },
202 { "bi", ppc_biei
, 0 },
204 { "csect", ppc_csect
, 0 },
205 { "data", ppc_section
, 'd' },
209 { "ei", ppc_biei
, 1 },
211 { "extern", ppc_extern
, 0 },
212 { "function", ppc_function
, 0 },
213 { "lglobl", ppc_lglobl
, 0 },
214 { "rename", ppc_rename
, 0 },
215 { "section", ppc_named_section
, 0 },
216 { "stabx", ppc_stabx
, 0 },
217 { "text", ppc_section
, 't' },
218 { "toc", ppc_toc
, 0 },
219 { "long", ppc_xcoff_cons
, 2 },
220 { "llong", ppc_xcoff_cons
, 3 },
221 { "word", ppc_xcoff_cons
, 1 },
222 { "short", ppc_xcoff_cons
, 1 },
223 { "vbyte", ppc_vbyte
, 0 },
227 { "llong", ppc_elf_cons
, 8 },
228 { "quad", ppc_elf_cons
, 8 },
229 { "long", ppc_elf_cons
, 4 },
230 { "word", ppc_elf_cons
, 2 },
231 { "short", ppc_elf_cons
, 2 },
232 { "rdata", ppc_elf_rdata
, 0 },
233 { "rodata", ppc_elf_rdata
, 0 },
234 { "lcomm", ppc_elf_lcomm
, 0 },
235 { "file", (void (*) PARAMS ((int))) dwarf2_directive_file
, 0 },
236 { "loc", dwarf2_directive_loc
, 0 },
240 /* Pseudo-ops specific to the Windows NT PowerPC PE (coff) format. */
241 { "previous", ppc_previous
, 0 },
242 { "pdata", ppc_pdata
, 0 },
243 { "ydata", ppc_ydata
, 0 },
244 { "reldata", ppc_reldata
, 0 },
245 { "rdata", ppc_rdata
, 0 },
246 { "ualong", ppc_ualong
, 0 },
247 { "znop", ppc_znop
, 0 },
248 { "comm", ppc_pe_comm
, 0 },
249 { "lcomm", ppc_pe_comm
, 1 },
250 { "section", ppc_pe_section
, 0 },
251 { "function", ppc_pe_function
,0 },
252 { "tocd", ppc_pe_tocd
, 0 },
255 #if defined (OBJ_XCOFF) || defined (OBJ_ELF)
257 { "machine", ppc_machine
, 0 },
264 /* Predefined register names if -mregnames (or default for Windows NT).
265 In general, there are lots of them, in an attempt to be compatible
266 with a number of other Windows NT assemblers. */
268 /* Structure to hold information about predefined registers. */
275 /* List of registers that are pre-defined:
277 Each general register has predefined names of the form:
278 1. r<reg_num> which has the value <reg_num>.
279 2. r.<reg_num> which has the value <reg_num>.
281 Each floating point register has predefined names of the form:
282 1. f<reg_num> which has the value <reg_num>.
283 2. f.<reg_num> which has the value <reg_num>.
285 Each vector unit register has predefined names of the form:
286 1. v<reg_num> which has the value <reg_num>.
287 2. v.<reg_num> which has the value <reg_num>.
289 Each condition register has predefined names of the form:
290 1. cr<reg_num> which has the value <reg_num>.
291 2. cr.<reg_num> which has the value <reg_num>.
293 There are individual registers as well:
294 sp or r.sp has the value 1
295 rtoc or r.toc has the value 2
296 fpscr has the value 0
302 dsisr has the value 18
304 sdr1 has the value 25
305 srr0 has the value 26
306 srr1 has the value 27
308 The table is sorted. Suitable for searching by a binary search. */
310 static const struct pd_reg pre_defined_registers
[] =
312 { "cr.0", 0 }, /* Condition Registers */
332 { "dar", 19 }, /* Data Access Register */
333 { "dec", 22 }, /* Decrementer */
334 { "dsisr", 18 }, /* Data Storage Interrupt Status Register */
336 { "f.0", 0 }, /* Floating point registers */
404 { "lr", 8 }, /* Link Register */
408 { "r.0", 0 }, /* General Purpose Registers */
441 { "r.sp", 1 }, /* Stack Pointer */
443 { "r.toc", 2 }, /* Pointer to the table of contents */
445 { "r0", 0 }, /* More general purpose registers */
478 { "rtoc", 2 }, /* Table of contents */
480 { "sdr1", 25 }, /* Storage Description Register 1 */
484 { "srr0", 26 }, /* Machine Status Save/Restore Register 0 */
485 { "srr1", 27 }, /* Machine Status Save/Restore Register 1 */
487 { "v.0", 0 }, /* Vector registers */
557 #define REG_NAME_CNT (sizeof (pre_defined_registers) / sizeof (struct pd_reg))
559 /* Given NAME, find the register number associated with that name, return
560 the integer value associated with the given name or -1 on failure. */
562 static int reg_name_search
563 PARAMS ((const struct pd_reg
*, int, const char * name
));
566 reg_name_search (regs
, regcount
, name
)
567 const struct pd_reg
*regs
;
571 int middle
, low
, high
;
579 middle
= (low
+ high
) / 2;
580 cmp
= strcasecmp (name
, regs
[middle
].name
);
586 return regs
[middle
].value
;
594 * Summary of register_name.
596 * in: Input_line_pointer points to 1st char of operand.
598 * out: A expressionS.
599 * The operand may have been a register: in this case, X_op == O_register,
600 * X_add_number is set to the register number, and truth is returned.
601 * Input_line_pointer->(next non-blank) char after operand, or is in its
606 register_name (expressionP
)
607 expressionS
*expressionP
;
614 /* Find the spelling of the operand. */
615 start
= name
= input_line_pointer
;
616 if (name
[0] == '%' && ISALPHA (name
[1]))
617 name
= ++input_line_pointer
;
619 else if (!reg_names_p
|| !ISALPHA (name
[0]))
622 c
= get_symbol_end ();
623 reg_number
= reg_name_search (pre_defined_registers
, REG_NAME_CNT
, name
);
625 /* Put back the delimiting char. */
626 *input_line_pointer
= c
;
628 /* Look to see if it's in the register table. */
631 expressionP
->X_op
= O_register
;
632 expressionP
->X_add_number
= reg_number
;
634 /* Make the rest nice. */
635 expressionP
->X_add_symbol
= NULL
;
636 expressionP
->X_op_symbol
= NULL
;
640 /* Reset the line as if we had not done anything. */
641 input_line_pointer
= start
;
645 /* This function is called for each symbol seen in an expression. It
646 handles the special parsing which PowerPC assemblers are supposed
647 to use for condition codes. */
649 /* Whether to do the special parsing. */
650 static boolean cr_operand
;
652 /* Names to recognize in a condition code. This table is sorted. */
653 static const struct pd_reg cr_names
[] =
670 /* Parsing function. This returns non-zero if it recognized an
674 ppc_parse_name (name
, expr
)
683 val
= reg_name_search (cr_names
, sizeof cr_names
/ sizeof cr_names
[0],
688 expr
->X_op
= O_constant
;
689 expr
->X_add_number
= val
;
694 /* Local variables. */
696 /* The type of processor we are assembling for. This is one or more
697 of the PPC_OPCODE flags defined in opcode/ppc.h. */
698 static unsigned long ppc_cpu
= 0;
700 /* Whether to target xcoff64/elf64. */
701 static unsigned int ppc_obj64
= BFD_DEFAULT_TARGET_SIZE
== 64;
703 /* Opcode hash table. */
704 static struct hash_control
*ppc_hash
;
706 /* Macro hash table. */
707 static struct hash_control
*ppc_macro_hash
;
710 /* What type of shared library support to use. */
711 static enum { SHLIB_NONE
, SHLIB_PIC
, SHLIB_MRELOCATABLE
} shlib
= SHLIB_NONE
;
713 /* Flags to set in the elf header. */
714 static flagword ppc_flags
= 0;
716 /* Whether this is Solaris or not. */
717 #ifdef TARGET_SOLARIS_COMMENT
718 #define SOLARIS_P true
720 #define SOLARIS_P false
723 static boolean msolaris
= SOLARIS_P
;
728 /* The RS/6000 assembler uses the .csect pseudo-op to generate code
729 using a bunch of different sections. These assembler sections,
730 however, are all encompassed within the .text or .data sections of
731 the final output file. We handle this by using different
732 subsegments within these main segments. */
734 /* Next subsegment to allocate within the .text segment. */
735 static subsegT ppc_text_subsegment
= 2;
737 /* Linked list of csects in the text section. */
738 static symbolS
*ppc_text_csects
;
740 /* Next subsegment to allocate within the .data segment. */
741 static subsegT ppc_data_subsegment
= 2;
743 /* Linked list of csects in the data section. */
744 static symbolS
*ppc_data_csects
;
746 /* The current csect. */
747 static symbolS
*ppc_current_csect
;
749 /* The RS/6000 assembler uses a TOC which holds addresses of functions
750 and variables. Symbols are put in the TOC with the .tc pseudo-op.
751 A special relocation is used when accessing TOC entries. We handle
752 the TOC as a subsegment within the .data segment. We set it up if
753 we see a .toc pseudo-op, and save the csect symbol here. */
754 static symbolS
*ppc_toc_csect
;
756 /* The first frag in the TOC subsegment. */
757 static fragS
*ppc_toc_frag
;
759 /* The first frag in the first subsegment after the TOC in the .data
760 segment. NULL if there are no subsegments after the TOC. */
761 static fragS
*ppc_after_toc_frag
;
763 /* The current static block. */
764 static symbolS
*ppc_current_block
;
766 /* The COFF debugging section; set by md_begin. This is not the
767 .debug section, but is instead the secret BFD section which will
768 cause BFD to set the section number of a symbol to N_DEBUG. */
769 static asection
*ppc_coff_debug_section
;
771 #endif /* OBJ_XCOFF */
775 /* Various sections that we need for PE coff support. */
776 static segT ydata_section
;
777 static segT pdata_section
;
778 static segT reldata_section
;
779 static segT rdata_section
;
780 static segT tocdata_section
;
782 /* The current section and the previous section. See ppc_previous. */
783 static segT ppc_previous_section
;
784 static segT ppc_current_section
;
789 symbolS
*GOT_symbol
; /* Pre-defined "_GLOBAL_OFFSET_TABLE" */
793 const char *const md_shortopts
= "b:l:usm:K:VQ:";
795 const char *const md_shortopts
= "um:";
797 const struct option md_longopts
[] = {
798 {NULL
, no_argument
, NULL
, 0}
800 const size_t md_longopts_size
= sizeof (md_longopts
);
803 md_parse_option (c
, arg
)
810 /* -u means that any undefined symbols should be treated as
811 external, which is the default for gas anyhow. */
816 /* Solaris as takes -le (presumably for little endian). For completeness
817 sake, recognize -be also. */
818 if (strcmp (arg
, "e") == 0)
820 target_big_endian
= 0;
821 set_target_endian
= 1;
829 if (strcmp (arg
, "e") == 0)
831 target_big_endian
= 1;
832 set_target_endian
= 1;
840 /* Recognize -K PIC. */
841 if (strcmp (arg
, "PIC") == 0 || strcmp (arg
, "pic") == 0)
844 ppc_flags
|= EF_PPC_RELOCATABLE_LIB
;
852 /* a64 and a32 determine whether to use XCOFF64 or XCOFF32. */
854 if (strcmp (arg
, "64") == 0)
856 else if (strcmp (arg
, "32") == 0)
863 /* -mpwrx and -mpwr2 mean to assemble for the IBM POWER/2
865 if (strcmp (arg
, "pwrx") == 0 || strcmp (arg
, "pwr2") == 0)
866 ppc_cpu
= PPC_OPCODE_POWER
| PPC_OPCODE_POWER2
| PPC_OPCODE_32
;
867 /* -mpwr means to assemble for the IBM POWER (RIOS1). */
868 else if (strcmp (arg
, "pwr") == 0)
869 ppc_cpu
= PPC_OPCODE_POWER
| PPC_OPCODE_32
;
870 /* -m601 means to assemble for the PowerPC 601, which includes
871 instructions that are holdovers from the Power. */
872 else if (strcmp (arg
, "601") == 0)
873 ppc_cpu
= PPC_OPCODE_PPC
| PPC_OPCODE_601
| PPC_OPCODE_32
;
874 /* -mppc, -mppc32, -m603, and -m604 mean to assemble for the
876 else if (strcmp (arg
, "ppc") == 0
877 || strcmp (arg
, "ppc32") == 0
878 || strcmp (arg
, "603") == 0
879 || strcmp (arg
, "604") == 0)
880 ppc_cpu
= PPC_OPCODE_PPC
| PPC_OPCODE_32
;
881 /* -m403 and -m405 mean to assemble for the PowerPC 403/405. */
882 else if (strcmp (arg
, "403") == 0
883 || strcmp (arg
, "405") == 0)
884 ppc_cpu
= PPC_OPCODE_PPC
| PPC_OPCODE_403
| PPC_OPCODE_32
;
885 else if (strcmp (arg
, "7400") == 0
886 || strcmp (arg
, "7410") == 0
887 || strcmp (arg
, "7450") == 0
888 || strcmp (arg
, "7455") == 0)
889 ppc_cpu
= PPC_OPCODE_PPC
| PPC_OPCODE_ALTIVEC
| PPC_OPCODE_32
;
890 else if (strcmp (arg
, "altivec") == 0)
893 ppc_cpu
= PPC_OPCODE_PPC
| PPC_OPCODE_ALTIVEC
;
895 ppc_cpu
|= PPC_OPCODE_ALTIVEC
;
897 /* -mppc64 and -m620 mean to assemble for the 64-bit PowerPC
899 else if (strcmp (arg
, "ppc64") == 0 || strcmp (arg
, "620") == 0)
901 ppc_cpu
= PPC_OPCODE_PPC
| PPC_OPCODE_64
;
903 else if (strcmp (arg
, "ppc64bridge") == 0)
905 ppc_cpu
= PPC_OPCODE_PPC
| PPC_OPCODE_64_BRIDGE
| PPC_OPCODE_64
;
907 /* -mbooke/-mbooke32 mean enable 32-bit BookE support. */
908 else if (strcmp (arg
, "booke") == 0 || strcmp (arg
, "booke32") == 0)
909 ppc_cpu
= PPC_OPCODE_PPC
| PPC_OPCODE_BOOKE
| PPC_OPCODE_32
;
910 /* -mbooke64 means enable 64-bit BookE support. */
911 else if (strcmp (arg
, "booke64") == 0)
913 ppc_cpu
= PPC_OPCODE_PPC
| PPC_OPCODE_BOOKE
|
914 PPC_OPCODE_BOOKE64
| PPC_OPCODE_64
;
916 else if (strcmp (arg
, "power4") == 0)
918 ppc_cpu
= PPC_OPCODE_PPC
| PPC_OPCODE_64
| PPC_OPCODE_POWER4
;
920 /* -mcom means assemble for the common intersection between Power
921 and PowerPC. At present, we just allow the union, rather
922 than the intersection. */
923 else if (strcmp (arg
, "com") == 0)
924 ppc_cpu
= PPC_OPCODE_COMMON
| PPC_OPCODE_32
;
925 /* -many means to assemble for any architecture (PWR/PWRX/PPC). */
926 else if (strcmp (arg
, "any") == 0)
927 ppc_cpu
= PPC_OPCODE_ANY
| PPC_OPCODE_32
;
929 else if (strcmp (arg
, "regnames") == 0)
932 else if (strcmp (arg
, "no-regnames") == 0)
936 /* -mrelocatable/-mrelocatable-lib -- warn about initializations
937 that require relocation. */
938 else if (strcmp (arg
, "relocatable") == 0)
940 shlib
= SHLIB_MRELOCATABLE
;
941 ppc_flags
|= EF_PPC_RELOCATABLE
;
944 else if (strcmp (arg
, "relocatable-lib") == 0)
946 shlib
= SHLIB_MRELOCATABLE
;
947 ppc_flags
|= EF_PPC_RELOCATABLE_LIB
;
950 /* -memb, set embedded bit. */
951 else if (strcmp (arg
, "emb") == 0)
952 ppc_flags
|= EF_PPC_EMB
;
954 /* -mlittle/-mbig set the endianess. */
955 else if (strcmp (arg
, "little") == 0
956 || strcmp (arg
, "little-endian") == 0)
958 target_big_endian
= 0;
959 set_target_endian
= 1;
962 else if (strcmp (arg
, "big") == 0 || strcmp (arg
, "big-endian") == 0)
964 target_big_endian
= 1;
965 set_target_endian
= 1;
968 else if (strcmp (arg
, "solaris") == 0)
971 ppc_comment_chars
= ppc_solaris_comment_chars
;
974 else if (strcmp (arg
, "no-solaris") == 0)
977 ppc_comment_chars
= ppc_eabi_comment_chars
;
982 as_bad (_("invalid switch -m%s"), arg
);
988 /* -V: SVR4 argument to print version ID. */
993 /* -Qy, -Qn: SVR4 arguments controlling whether a .comment section
994 should be emitted or not. FIXME: Not implemented. */
998 /* Solaris takes -s to specify that .stabs go in a .stabs section,
999 rather than .stabs.excl, which is ignored by the linker.
1000 FIXME: Not implemented. */
1016 md_show_usage (stream
)
1019 fprintf (stream
, _("\
1022 -mpwrx, -mpwr2 generate code for POWER/2 (RIOS2)\n\
1023 -mpwr generate code for POWER (RIOS1)\n\
1024 -m601 generate code for PowerPC 601\n\
1025 -mppc, -mppc32, -m603, -m604\n\
1026 generate code for PowerPC 603/604\n\
1027 -m403, -m405 generate code for PowerPC 403/405\n\
1028 -m7400, -m7410, -m7450, -m7455\n\
1029 generate code For PowerPC 7400/7410/7450/7455\n\
1030 -mppc64, -m620 generate code for PowerPC 620/625/630\n\
1031 -mppc64bridge generate code for PowerPC 64, including bridge insns\n\
1032 -mbooke64 generate code for 64-bit PowerPC BookE\n\
1033 -mbooke, mbooke32 generate code for 32-bit PowerPC BookE\n\
1034 -mpower4 generate code for Power4 architecture\n\
1035 -maltivec generate code for AltiVec\n\
1036 -mcom generate code Power/PowerPC common instructions\n\
1037 -many generate code for any architecture (PWR/PWRX/PPC)\n\
1038 -mregnames Allow symbolic names for registers\n\
1039 -mno-regnames Do not allow symbolic names for registers\n"));
1041 fprintf (stream
, _("\
1042 -mrelocatable support for GCC's -mrelocatble option\n\
1043 -mrelocatable-lib support for GCC's -mrelocatble-lib option\n\
1044 -memb set PPC_EMB bit in ELF flags\n\
1045 -mlittle, -mlittle-endian\n\
1046 generate code for a little endian machine\n\
1047 -mbig, -mbig-endian generate code for a big endian machine\n\
1048 -msolaris generate code for Solaris\n\
1049 -mno-solaris do not generate code for Solaris\n\
1050 -V print assembler version number\n\
1051 -Qy, -Qn ignored\n"));
1055 /* Set ppc_cpu if it is not already set. */
1060 const char *default_os
= TARGET_OS
;
1061 const char *default_cpu
= TARGET_CPU
;
1065 if (strncmp (default_os
, "aix", 3) == 0
1066 && default_os
[3] >= '4' && default_os
[3] <= '9')
1067 ppc_cpu
= PPC_OPCODE_COMMON
| PPC_OPCODE_32
;
1068 else if (strncmp (default_os
, "aix3", 4) == 0)
1069 ppc_cpu
= PPC_OPCODE_POWER
| PPC_OPCODE_32
;
1070 else if (strcmp (default_cpu
, "rs6000") == 0)
1071 ppc_cpu
= PPC_OPCODE_POWER
| PPC_OPCODE_32
;
1072 else if (strncmp (default_cpu
, "powerpc", 7) == 0)
1074 if (default_cpu
[7] == '6' && default_cpu
[8] == '4')
1075 ppc_cpu
= PPC_OPCODE_PPC
| PPC_OPCODE_64
;
1077 ppc_cpu
= PPC_OPCODE_PPC
| PPC_OPCODE_32
;
1080 as_fatal (_("Unknown default cpu = %s, os = %s"),
1081 default_cpu
, default_os
);
1085 /* Figure out the BFD architecture to use. */
1087 enum bfd_architecture
1090 const char *default_cpu
= TARGET_CPU
;
1093 if ((ppc_cpu
& PPC_OPCODE_PPC
) != 0)
1094 return bfd_arch_powerpc
;
1095 else if ((ppc_cpu
& PPC_OPCODE_POWER
) != 0)
1096 return bfd_arch_rs6000
;
1097 else if ((ppc_cpu
& (PPC_OPCODE_COMMON
| PPC_OPCODE_ANY
)) != 0)
1099 if (strcmp (default_cpu
, "rs6000") == 0)
1100 return bfd_arch_rs6000
;
1101 else if (strncmp (default_cpu
, "powerpc", 7) == 0)
1102 return bfd_arch_powerpc
;
1105 as_fatal (_("Neither Power nor PowerPC opcodes were selected."));
1106 return bfd_arch_unknown
;
1112 return ppc_obj64
? bfd_mach_ppc64
: bfd_mach_ppc
;
1116 ppc_target_format ()
1120 return target_big_endian
? "pe-powerpc" : "pe-powerpcle";
1122 return "xcoff-powermac";
1125 return (ppc_obj64
? "aix5coff64-rs6000" : "aixcoff-rs6000");
1127 return (ppc_obj64
? "aixcoff64-rs6000" : "aixcoff-rs6000");
1132 return (target_big_endian
1133 ? (ppc_obj64
? "elf64-powerpc" : "elf32-powerpc")
1134 : (ppc_obj64
? "elf64-powerpcle" : "elf32-powerpcle"));
1138 /* This function is called when the assembler starts up. It is called
1139 after the options have been parsed and the output file has been
1145 register const struct powerpc_opcode
*op
;
1146 const struct powerpc_opcode
*op_end
;
1147 const struct powerpc_macro
*macro
;
1148 const struct powerpc_macro
*macro_end
;
1149 boolean dup_insn
= false;
1154 /* Set the ELF flags if desired. */
1155 if (ppc_flags
&& !msolaris
)
1156 bfd_set_private_flags (stdoutput
, ppc_flags
);
1159 /* Insert the opcodes into a hash table. */
1160 ppc_hash
= hash_new ();
1162 op_end
= powerpc_opcodes
+ powerpc_num_opcodes
;
1163 for (op
= powerpc_opcodes
; op
< op_end
; op
++)
1165 know ((op
->opcode
& op
->mask
) == op
->opcode
);
1167 if ((op
->flags
& ppc_cpu
& ~(PPC_OPCODE_32
| PPC_OPCODE_64
)) != 0
1168 && ((op
->flags
& (PPC_OPCODE_32
| PPC_OPCODE_64
)) == 0
1169 || ((op
->flags
& (PPC_OPCODE_32
| PPC_OPCODE_64
))
1170 == (ppc_cpu
& (PPC_OPCODE_32
| PPC_OPCODE_64
)))
1171 || (ppc_cpu
& PPC_OPCODE_64_BRIDGE
) != 0)
1172 && ((op
->flags
& (PPC_OPCODE_POWER4
| PPC_OPCODE_NOPOWER4
)) == 0
1173 || ((op
->flags
& PPC_OPCODE_POWER4
)
1174 == (ppc_cpu
& PPC_OPCODE_POWER4
))))
1178 retval
= hash_insert (ppc_hash
, op
->name
, (PTR
) op
);
1179 if (retval
!= (const char *) NULL
)
1181 /* Ignore Power duplicates for -m601. */
1182 if ((ppc_cpu
& PPC_OPCODE_601
) != 0
1183 && (op
->flags
& PPC_OPCODE_POWER
) != 0)
1186 as_bad (_("Internal assembler error for instruction %s"),
1193 /* Insert the macros into a hash table. */
1194 ppc_macro_hash
= hash_new ();
1196 macro_end
= powerpc_macros
+ powerpc_num_macros
;
1197 for (macro
= powerpc_macros
; macro
< macro_end
; macro
++)
1199 if ((macro
->flags
& ppc_cpu
) != 0)
1203 retval
= hash_insert (ppc_macro_hash
, macro
->name
, (PTR
) macro
);
1204 if (retval
!= (const char *) NULL
)
1206 as_bad (_("Internal assembler error for macro %s"), macro
->name
);
1215 /* Tell the main code what the endianness is if it is not overidden
1217 if (!set_target_endian
)
1219 set_target_endian
= 1;
1220 target_big_endian
= PPC_BIG_ENDIAN
;
1224 ppc_coff_debug_section
= coff_section_from_bfd_index (stdoutput
, N_DEBUG
);
1226 /* Create dummy symbols to serve as initial csects. This forces the
1227 text csects to precede the data csects. These symbols will not
1229 ppc_text_csects
= symbol_make ("dummy\001");
1230 symbol_get_tc (ppc_text_csects
)->within
= ppc_text_csects
;
1231 ppc_data_csects
= symbol_make ("dummy\001");
1232 symbol_get_tc (ppc_data_csects
)->within
= ppc_data_csects
;
1237 ppc_current_section
= text_section
;
1238 ppc_previous_section
= 0;
1243 /* Insert an operand value into an instruction. */
1245 static unsigned long
1246 ppc_insert_operand (insn
, operand
, val
, file
, line
)
1248 const struct powerpc_operand
*operand
;
1253 if (operand
->bits
!= 32)
1258 if ((operand
->flags
& PPC_OPERAND_SIGNED
) != 0)
1260 if ((operand
->flags
& PPC_OPERAND_SIGNOPT
) != 0)
1261 max
= (1 << operand
->bits
) - 1;
1263 max
= (1 << (operand
->bits
- 1)) - 1;
1264 min
= - (1 << (operand
->bits
- 1));
1268 /* Some people write 32 bit hex constants with the sign
1269 extension done by hand. This shouldn't really be
1270 valid, but, to permit this code to assemble on a 64
1271 bit host, we sign extend the 32 bit value. */
1273 && (val
& (offsetT
) 0x80000000) != 0
1274 && (val
& (offsetT
) 0xffffffff) == val
)
1283 max
= (1 << operand
->bits
) - 1;
1287 if ((operand
->flags
& PPC_OPERAND_NEGATIVE
) != 0)
1292 if (test
< (offsetT
) min
|| test
> (offsetT
) max
)
1295 _("operand out of range (%s not between %ld and %ld)");
1298 sprint_value (buf
, test
);
1299 as_bad_where (file
, line
, err
, buf
, min
, max
);
1303 if (operand
->insert
)
1308 insn
= (*operand
->insert
) (insn
, (long) val
, ppc_cpu
, &errmsg
);
1309 if (errmsg
!= (const char *) NULL
)
1310 as_bad_where (file
, line
, errmsg
);
1313 insn
|= (((long) val
& ((1 << operand
->bits
) - 1))
1321 /* Parse @got, etc. and return the desired relocation. */
1322 static bfd_reloc_code_real_type
1323 ppc_elf_suffix (str_p
, exp_p
)
1338 const struct map_bfd
*ptr
;
1340 #define MAP(str,reloc) { str, sizeof (str)-1, reloc }
1342 static const struct map_bfd mapping
[] = {
1343 MAP ("l", (int) BFD_RELOC_LO16
),
1344 MAP ("h", (int) BFD_RELOC_HI16
),
1345 MAP ("ha", (int) BFD_RELOC_HI16_S
),
1346 MAP ("brtaken", (int) BFD_RELOC_PPC_B16_BRTAKEN
),
1347 MAP ("brntaken", (int) BFD_RELOC_PPC_B16_BRNTAKEN
),
1348 MAP ("got", (int) BFD_RELOC_16_GOTOFF
),
1349 MAP ("got@l", (int) BFD_RELOC_LO16_GOTOFF
),
1350 MAP ("got@h", (int) BFD_RELOC_HI16_GOTOFF
),
1351 MAP ("got@ha", (int) BFD_RELOC_HI16_S_GOTOFF
),
1352 MAP ("fixup", (int) BFD_RELOC_CTOR
), /* warning with -mrelocatable */
1353 MAP ("plt", (int) BFD_RELOC_24_PLT_PCREL
),
1354 MAP ("pltrel24", (int) BFD_RELOC_24_PLT_PCREL
),
1355 MAP ("copy", (int) BFD_RELOC_PPC_COPY
),
1356 MAP ("globdat", (int) BFD_RELOC_PPC_GLOB_DAT
),
1357 MAP ("local24pc", (int) BFD_RELOC_PPC_LOCAL24PC
),
1358 MAP ("local", (int) BFD_RELOC_PPC_LOCAL24PC
),
1359 MAP ("pltrel", (int) BFD_RELOC_32_PLT_PCREL
),
1360 MAP ("plt@l", (int) BFD_RELOC_LO16_PLTOFF
),
1361 MAP ("plt@h", (int) BFD_RELOC_HI16_PLTOFF
),
1362 MAP ("plt@ha", (int) BFD_RELOC_HI16_S_PLTOFF
),
1363 MAP ("sdarel", (int) BFD_RELOC_GPREL16
),
1364 MAP ("sectoff", (int) BFD_RELOC_16_BASEREL
),
1365 MAP ("sectoff@l", (int) BFD_RELOC_LO16_BASEREL
),
1366 MAP ("sectoff@h", (int) BFD_RELOC_HI16_BASEREL
),
1367 MAP ("sectoff@ha", (int) BFD_RELOC_HI16_S_BASEREL
),
1368 MAP ("naddr", (int) BFD_RELOC_PPC_EMB_NADDR32
),
1369 MAP ("naddr16", (int) BFD_RELOC_PPC_EMB_NADDR16
),
1370 MAP ("naddr@l", (int) BFD_RELOC_PPC_EMB_NADDR16_LO
),
1371 MAP ("naddr@h", (int) BFD_RELOC_PPC_EMB_NADDR16_HI
),
1372 MAP ("naddr@ha", (int) BFD_RELOC_PPC_EMB_NADDR16_HA
),
1373 MAP ("sdai16", (int) BFD_RELOC_PPC_EMB_SDAI16
),
1374 MAP ("sda2rel", (int) BFD_RELOC_PPC_EMB_SDA2REL
),
1375 MAP ("sda2i16", (int) BFD_RELOC_PPC_EMB_SDA2I16
),
1376 MAP ("sda21", (int) BFD_RELOC_PPC_EMB_SDA21
),
1377 MAP ("mrkref", (int) BFD_RELOC_PPC_EMB_MRKREF
),
1378 MAP ("relsect", (int) BFD_RELOC_PPC_EMB_RELSEC16
),
1379 MAP ("relsect@l", (int) BFD_RELOC_PPC_EMB_RELST_LO
),
1380 MAP ("relsect@h", (int) BFD_RELOC_PPC_EMB_RELST_HI
),
1381 MAP ("relsect@ha", (int) BFD_RELOC_PPC_EMB_RELST_HA
),
1382 MAP ("bitfld", (int) BFD_RELOC_PPC_EMB_BIT_FLD
),
1383 MAP ("relsda", (int) BFD_RELOC_PPC_EMB_RELSDA
),
1384 MAP ("xgot", (int) BFD_RELOC_PPC_TOC16
),
1385 /* The following are only valid for ppc64. Negative values are
1386 used instead of a flag. */
1387 MAP ("higher", - (int) BFD_RELOC_PPC64_HIGHER
),
1388 MAP ("highera", - (int) BFD_RELOC_PPC64_HIGHER_S
),
1389 MAP ("highest", - (int) BFD_RELOC_PPC64_HIGHEST
),
1390 MAP ("highesta", - (int) BFD_RELOC_PPC64_HIGHEST_S
),
1391 MAP ("tocbase", - (int) BFD_RELOC_PPC64_TOC
),
1392 MAP ("toc", - (int) BFD_RELOC_PPC_TOC16
),
1393 MAP ("toc@l", - (int) BFD_RELOC_PPC64_TOC16_LO
),
1394 MAP ("toc@h", - (int) BFD_RELOC_PPC64_TOC16_HI
),
1395 MAP ("toc@ha", - (int) BFD_RELOC_PPC64_TOC16_HA
),
1396 { (char *) 0, 0, (int) BFD_RELOC_UNUSED
}
1400 return BFD_RELOC_UNUSED
;
1402 for (ch
= *str
, str2
= ident
;
1403 (str2
< ident
+ sizeof (ident
) - 1
1404 && (ISALNUM (ch
) || ch
== '@'));
1407 *str2
++ = TOLOWER (ch
);
1414 for (ptr
= &mapping
[0]; ptr
->length
> 0; ptr
++)
1415 if (ch
== ptr
->string
[0]
1416 && len
== ptr
->length
1417 && memcmp (ident
, ptr
->string
, ptr
->length
) == 0)
1419 int reloc
= ptr
->reloc
;
1424 return BFD_RELOC_UNUSED
;
1428 if (exp_p
->X_add_number
!= 0
1429 && (reloc
== (int) BFD_RELOC_16_GOTOFF
1430 || reloc
== (int) BFD_RELOC_LO16_GOTOFF
1431 || reloc
== (int) BFD_RELOC_HI16_GOTOFF
1432 || reloc
== (int) BFD_RELOC_HI16_S_GOTOFF
))
1433 as_warn (_("identifier+constant@got means identifier@got+constant"));
1435 /* Now check for identifier@suffix+constant. */
1436 if (*str
== '-' || *str
== '+')
1438 char *orig_line
= input_line_pointer
;
1439 expressionS new_exp
;
1441 input_line_pointer
= str
;
1442 expression (&new_exp
);
1443 if (new_exp
.X_op
== O_constant
)
1445 exp_p
->X_add_number
+= new_exp
.X_add_number
;
1446 str
= input_line_pointer
;
1449 if (&input_line_pointer
!= str_p
)
1450 input_line_pointer
= orig_line
;
1454 if (reloc
== (int) BFD_RELOC_PPC64_TOC
1455 && exp_p
->X_op
== O_symbol
)
1457 /* This reloc type ignores the symbol. Change the symbol
1458 so that the dummy .TOC. symbol can be omitted from the
1460 exp_p
->X_add_symbol
= &abs_symbol
;
1463 return (bfd_reloc_code_real_type
) reloc
;
1466 return BFD_RELOC_UNUSED
;
1469 /* Like normal .long/.short/.word, except support @got, etc.
1470 Clobbers input_line_pointer, checks end-of-line. */
1472 ppc_elf_cons (nbytes
)
1473 register int nbytes
; /* 1=.byte, 2=.word, 4=.long, 8=.llong. */
1476 bfd_reloc_code_real_type reloc
;
1478 if (is_it_end_of_statement ())
1480 demand_empty_rest_of_line ();
1487 if (exp
.X_op
== O_symbol
1488 && *input_line_pointer
== '@'
1489 && (reloc
= ppc_elf_suffix (&input_line_pointer
,
1490 &exp
)) != BFD_RELOC_UNUSED
)
1492 reloc_howto_type
*reloc_howto
;
1495 reloc_howto
= bfd_reloc_type_lookup (stdoutput
, reloc
);
1496 size
= bfd_get_reloc_size (reloc_howto
);
1500 as_bad (_("%s relocations do not fit in %d bytes\n"),
1501 reloc_howto
->name
, nbytes
);
1508 p
= frag_more (nbytes
);
1510 if (target_big_endian
)
1511 offset
= nbytes
- size
;
1512 fix_new_exp (frag_now
, p
- frag_now
->fr_literal
+ offset
, size
,
1517 emit_expr (&exp
, (unsigned int) nbytes
);
1519 while (*input_line_pointer
++ == ',');
1521 /* Put terminator back into stream. */
1522 input_line_pointer
--;
1523 demand_empty_rest_of_line ();
1526 /* Solaris pseduo op to change to the .rodata section. */
1531 char *save_line
= input_line_pointer
;
1532 static char section
[] = ".rodata\n";
1534 /* Just pretend this is .section .rodata */
1535 input_line_pointer
= section
;
1536 obj_elf_section (xxx
);
1538 input_line_pointer
= save_line
;
1541 /* Pseudo op to make file scope bss items. */
1544 int xxx ATTRIBUTE_UNUSED
;
1546 register char *name
;
1550 register symbolS
*symbolP
;
1557 name
= input_line_pointer
;
1558 c
= get_symbol_end ();
1560 /* just after name is now '\0'. */
1561 p
= input_line_pointer
;
1564 if (*input_line_pointer
!= ',')
1566 as_bad (_("Expected comma after symbol-name: rest of line ignored."));
1567 ignore_rest_of_line ();
1571 input_line_pointer
++; /* skip ',' */
1572 if ((size
= get_absolute_expression ()) < 0)
1574 as_warn (_(".COMMon length (%ld.) <0! Ignored."), (long) size
);
1575 ignore_rest_of_line ();
1579 /* The third argument to .lcomm is the alignment. */
1580 if (*input_line_pointer
!= ',')
1584 ++input_line_pointer
;
1585 align
= get_absolute_expression ();
1588 as_warn (_("ignoring bad alignment"));
1594 symbolP
= symbol_find_or_make (name
);
1597 if (S_IS_DEFINED (symbolP
) && ! S_IS_COMMON (symbolP
))
1599 as_bad (_("Ignoring attempt to re-define symbol `%s'."),
1600 S_GET_NAME (symbolP
));
1601 ignore_rest_of_line ();
1605 if (S_GET_VALUE (symbolP
) && S_GET_VALUE (symbolP
) != (valueT
) size
)
1607 as_bad (_("Length of .lcomm \"%s\" is already %ld. Not changed to %ld."),
1608 S_GET_NAME (symbolP
),
1609 (long) S_GET_VALUE (symbolP
),
1612 ignore_rest_of_line ();
1618 old_subsec
= now_subseg
;
1621 /* Convert to a power of 2 alignment. */
1622 for (align2
= 0; (align
& 1) == 0; align
>>= 1, ++align2
);
1625 as_bad (_("Common alignment not a power of 2"));
1626 ignore_rest_of_line ();
1633 record_alignment (bss_section
, align2
);
1634 subseg_set (bss_section
, 0);
1636 frag_align (align2
, 0, 0);
1637 if (S_GET_SEGMENT (symbolP
) == bss_section
)
1638 symbol_get_frag (symbolP
)->fr_symbol
= 0;
1639 symbol_set_frag (symbolP
, frag_now
);
1640 pfrag
= frag_var (rs_org
, 1, 1, (relax_substateT
) 0, symbolP
, size
,
1643 S_SET_SIZE (symbolP
, size
);
1644 S_SET_SEGMENT (symbolP
, bss_section
);
1645 subseg_set (old_sec
, old_subsec
);
1646 demand_empty_rest_of_line ();
1649 /* Validate any relocations emitted for -mrelocatable, possibly adding
1650 fixups for word relocations in writable segments, so we can adjust
1653 ppc_elf_validate_fix (fixp
, seg
)
1657 if (fixp
->fx_done
|| fixp
->fx_pcrel
)
1666 case SHLIB_MRELOCATABLE
:
1667 if (fixp
->fx_r_type
<= BFD_RELOC_UNUSED
1668 && fixp
->fx_r_type
!= BFD_RELOC_16_GOTOFF
1669 && fixp
->fx_r_type
!= BFD_RELOC_HI16_GOTOFF
1670 && fixp
->fx_r_type
!= BFD_RELOC_LO16_GOTOFF
1671 && fixp
->fx_r_type
!= BFD_RELOC_HI16_S_GOTOFF
1672 && fixp
->fx_r_type
!= BFD_RELOC_16_BASEREL
1673 && fixp
->fx_r_type
!= BFD_RELOC_LO16_BASEREL
1674 && fixp
->fx_r_type
!= BFD_RELOC_HI16_BASEREL
1675 && fixp
->fx_r_type
!= BFD_RELOC_HI16_S_BASEREL
1676 && (seg
->flags
& SEC_LOAD
) != 0
1677 && strcmp (segment_name (seg
), ".got2") != 0
1678 && strcmp (segment_name (seg
), ".dtors") != 0
1679 && strcmp (segment_name (seg
), ".ctors") != 0
1680 && strcmp (segment_name (seg
), ".fixup") != 0
1681 && strcmp (segment_name (seg
), ".gcc_except_table") != 0
1682 && strcmp (segment_name (seg
), ".eh_frame") != 0
1683 && strcmp (segment_name (seg
), ".ex_shared") != 0)
1685 if ((seg
->flags
& (SEC_READONLY
| SEC_CODE
)) != 0
1686 || fixp
->fx_r_type
!= BFD_RELOC_CTOR
)
1688 as_bad_where (fixp
->fx_file
, fixp
->fx_line
,
1689 _("Relocation cannot be done when using -mrelocatable"));
1696 /* Prevent elf_frob_file_before_adjust removing a weak undefined
1697 function descriptor sym if the corresponding code sym is used. */
1700 ppc_frob_file_before_adjust ()
1707 for (symp
= symbol_rootP
; symp
; symp
= symbol_next (symp
))
1714 name
= S_GET_NAME (symp
);
1718 if (! S_IS_WEAK (symp
)
1719 || S_IS_DEFINED (symp
))
1722 len
= strlen (name
) + 1;
1723 dotname
= xmalloc (len
+ 1);
1725 memcpy (dotname
+ 1, name
, len
);
1726 dotsym
= symbol_find (dotname
);
1728 if (dotsym
!= NULL
&& (symbol_used_p (dotsym
)
1729 || symbol_used_in_reloc_p (dotsym
)))
1731 symbol_mark_used (symp
);
1735 /* Don't emit .TOC. symbol. */
1736 symp
= symbol_find (".TOC.");
1738 symbol_remove (symp
, &symbol_rootP
, &symbol_lastP
);
1740 #endif /* OBJ_ELF */
1745 * Summary of parse_toc_entry.
1747 * in: Input_line_pointer points to the '[' in one of:
1749 * [toc] [tocv] [toc32] [toc64]
1751 * Anything else is an error of one kind or another.
1754 * return value: success or failure
1755 * toc_kind: kind of toc reference
1756 * input_line_pointer:
1757 * success: first char after the ']'
1758 * failure: unchanged
1762 * [toc] - rv == success, toc_kind = default_toc
1763 * [tocv] - rv == success, toc_kind = data_in_toc
1764 * [toc32] - rv == success, toc_kind = must_be_32
1765 * [toc64] - rv == success, toc_kind = must_be_64
1769 enum toc_size_qualifier
1771 default_toc
, /* The toc cell constructed should be the system default size */
1772 data_in_toc
, /* This is a direct reference to a toc cell */
1773 must_be_32
, /* The toc cell constructed must be 32 bits wide */
1774 must_be_64
/* The toc cell constructed must be 64 bits wide */
1778 parse_toc_entry (toc_kind
)
1779 enum toc_size_qualifier
*toc_kind
;
1784 enum toc_size_qualifier t
;
1786 /* Save the input_line_pointer. */
1787 start
= input_line_pointer
;
1789 /* Skip over the '[' , and whitespace. */
1790 ++input_line_pointer
;
1793 /* Find the spelling of the operand. */
1794 toc_spec
= input_line_pointer
;
1795 c
= get_symbol_end ();
1797 if (strcmp (toc_spec
, "toc") == 0)
1801 else if (strcmp (toc_spec
, "tocv") == 0)
1805 else if (strcmp (toc_spec
, "toc32") == 0)
1809 else if (strcmp (toc_spec
, "toc64") == 0)
1815 as_bad (_("syntax error: invalid toc specifier `%s'"), toc_spec
);
1816 *input_line_pointer
= c
;
1817 input_line_pointer
= start
;
1821 /* Now find the ']'. */
1822 *input_line_pointer
= c
;
1824 SKIP_WHITESPACE (); /* leading whitespace could be there. */
1825 c
= *input_line_pointer
++; /* input_line_pointer->past char in c. */
1829 as_bad (_("syntax error: expected `]', found `%c'"), c
);
1830 input_line_pointer
= start
;
1840 /* We need to keep a list of fixups. We can't simply generate them as
1841 we go, because that would require us to first create the frag, and
1842 that would screw up references to ``.''. */
1848 bfd_reloc_code_real_type reloc
;
1851 #define MAX_INSN_FIXUPS (5)
1853 /* This routine is called for each instruction to be assembled. */
1860 const struct powerpc_opcode
*opcode
;
1862 const unsigned char *opindex_ptr
;
1866 struct ppc_fixup fixups
[MAX_INSN_FIXUPS
];
1871 bfd_reloc_code_real_type reloc
;
1874 /* Get the opcode. */
1875 for (s
= str
; *s
!= '\0' && ! ISSPACE (*s
); s
++)
1880 /* Look up the opcode in the hash table. */
1881 opcode
= (const struct powerpc_opcode
*) hash_find (ppc_hash
, str
);
1882 if (opcode
== (const struct powerpc_opcode
*) NULL
)
1884 const struct powerpc_macro
*macro
;
1886 macro
= (const struct powerpc_macro
*) hash_find (ppc_macro_hash
, str
);
1887 if (macro
== (const struct powerpc_macro
*) NULL
)
1888 as_bad (_("Unrecognized opcode: `%s'"), str
);
1890 ppc_macro (s
, macro
);
1895 insn
= opcode
->opcode
;
1898 while (ISSPACE (*str
))
1901 /* PowerPC operands are just expressions. The only real issue is
1902 that a few operand types are optional. All cases which might use
1903 an optional operand separate the operands only with commas (in
1904 some cases parentheses are used, as in ``lwz 1,0(1)'' but such
1905 cases never have optional operands). There is never more than
1906 one optional operand for an instruction. So, before we start
1907 seriously parsing the operands, we check to see if we have an
1908 optional operand, and, if we do, we count the number of commas to
1909 see whether the operand should be omitted. */
1911 for (opindex_ptr
= opcode
->operands
; *opindex_ptr
!= 0; opindex_ptr
++)
1913 const struct powerpc_operand
*operand
;
1915 operand
= &powerpc_operands
[*opindex_ptr
];
1916 if ((operand
->flags
& PPC_OPERAND_OPTIONAL
) != 0)
1918 unsigned int opcount
;
1920 /* There is an optional operand. Count the number of
1921 commas in the input line. */
1928 while ((s
= strchr (s
, ',')) != (char *) NULL
)
1935 /* If there are fewer operands in the line then are called
1936 for by the instruction, we want to skip the optional
1938 if (opcount
< strlen (opcode
->operands
))
1945 /* Gather the operands. */
1949 for (opindex_ptr
= opcode
->operands
; *opindex_ptr
!= 0; opindex_ptr
++)
1951 const struct powerpc_operand
*operand
;
1957 if (next_opindex
== 0)
1958 operand
= &powerpc_operands
[*opindex_ptr
];
1961 operand
= &powerpc_operands
[next_opindex
];
1967 /* If this is a fake operand, then we do not expect anything
1969 if ((operand
->flags
& PPC_OPERAND_FAKE
) != 0)
1971 insn
= (*operand
->insert
) (insn
, 0L, ppc_cpu
, &errmsg
);
1972 if (errmsg
!= (const char *) NULL
)
1977 /* If this is an optional operand, and we are skipping it, just
1979 if ((operand
->flags
& PPC_OPERAND_OPTIONAL
) != 0
1982 if (operand
->insert
)
1984 insn
= (*operand
->insert
) (insn
, 0L, ppc_cpu
, &errmsg
);
1985 if (errmsg
!= (const char *) NULL
)
1988 if ((operand
->flags
& PPC_OPERAND_NEXT
) != 0)
1989 next_opindex
= *opindex_ptr
+ 1;
1993 /* Gather the operand. */
1994 hold
= input_line_pointer
;
1995 input_line_pointer
= str
;
1998 if (*input_line_pointer
== '[')
2000 /* We are expecting something like the second argument here:
2002 * lwz r4,[toc].GS.0.static_int(rtoc)
2003 * ^^^^^^^^^^^^^^^^^^^^^^^^^^^
2004 * The argument following the `]' must be a symbol name, and the
2005 * register must be the toc register: 'rtoc' or '2'
2007 * The effect is to 0 as the displacement field
2008 * in the instruction, and issue an IMAGE_REL_PPC_TOCREL16 (or
2009 * the appropriate variation) reloc against it based on the symbol.
2010 * The linker will build the toc, and insert the resolved toc offset.
2013 * o The size of the toc entry is currently assumed to be
2014 * 32 bits. This should not be assumed to be a hard coded
2016 * o In an effort to cope with a change from 32 to 64 bits,
2017 * there are also toc entries that are specified to be
2018 * either 32 or 64 bits:
2019 * lwz r4,[toc32].GS.0.static_int(rtoc)
2020 * lwz r4,[toc64].GS.0.static_int(rtoc)
2021 * These demand toc entries of the specified size, and the
2022 * instruction probably requires it.
2026 enum toc_size_qualifier toc_kind
;
2027 bfd_reloc_code_real_type toc_reloc
;
2029 /* Go parse off the [tocXX] part. */
2030 valid_toc
= parse_toc_entry (&toc_kind
);
2034 /* Note: message has already been issued.
2035 FIXME: what sort of recovery should we do?
2036 demand_rest_of_line (); return; ? */
2039 /* Now get the symbol following the ']'. */
2045 /* In this case, we may not have seen the symbol yet,
2046 since it is allowed to appear on a .extern or .globl
2047 or just be a label in the .data section. */
2048 toc_reloc
= BFD_RELOC_PPC_TOC16
;
2051 /* 1. The symbol must be defined and either in the toc
2052 section, or a global.
2053 2. The reloc generated must have the TOCDEFN flag set
2054 in upper bit mess of the reloc type.
2055 FIXME: It's a little confusing what the tocv
2056 qualifier can be used for. At the very least, I've
2057 seen three uses, only one of which I'm sure I can
2059 if (ex
.X_op
== O_symbol
)
2061 assert (ex
.X_add_symbol
!= NULL
);
2062 if (symbol_get_bfdsym (ex
.X_add_symbol
)->section
2065 as_bad (_("[tocv] symbol is not a toc symbol"));
2069 toc_reloc
= BFD_RELOC_PPC_TOC16
;
2072 /* FIXME: these next two specifically specify 32/64 bit
2073 toc entries. We don't support them today. Is this
2074 the right way to say that? */
2075 toc_reloc
= BFD_RELOC_UNUSED
;
2076 as_bad (_("Unimplemented toc32 expression modifier"));
2079 /* FIXME: see above. */
2080 toc_reloc
= BFD_RELOC_UNUSED
;
2081 as_bad (_("Unimplemented toc64 expression modifier"));
2085 _("Unexpected return value [%d] from parse_toc_entry!\n"),
2091 /* We need to generate a fixup for this expression. */
2092 if (fc
>= MAX_INSN_FIXUPS
)
2093 as_fatal (_("too many fixups"));
2095 fixups
[fc
].reloc
= toc_reloc
;
2096 fixups
[fc
].exp
= ex
;
2097 fixups
[fc
].opindex
= *opindex_ptr
;
2100 /* Ok. We've set up the fixup for the instruction. Now make it
2101 look like the constant 0 was found here. */
2103 ex
.X_op
= O_constant
;
2104 ex
.X_add_number
= 0;
2105 ex
.X_add_symbol
= NULL
;
2106 ex
.X_op_symbol
= NULL
;
2112 if (! register_name (&ex
))
2114 if ((operand
->flags
& PPC_OPERAND_CR
) != 0)
2121 str
= input_line_pointer
;
2122 input_line_pointer
= hold
;
2124 if (ex
.X_op
== O_illegal
)
2125 as_bad (_("illegal operand"));
2126 else if (ex
.X_op
== O_absent
)
2127 as_bad (_("missing operand"));
2128 else if (ex
.X_op
== O_register
)
2130 insn
= ppc_insert_operand (insn
, operand
, ex
.X_add_number
,
2133 else if (ex
.X_op
== O_constant
)
2136 /* Allow @HA, @L, @H on constants. */
2137 char *orig_str
= str
;
2139 if ((reloc
= ppc_elf_suffix (&str
, &ex
)) != BFD_RELOC_UNUSED
)
2146 case BFD_RELOC_LO16
:
2147 /* X_unsigned is the default, so if the user has done
2148 something which cleared it, we always produce a
2150 if (ex
.X_unsigned
&& ! (operand
->flags
& PPC_OPERAND_SIGNED
))
2151 ex
.X_add_number
&= 0xffff;
2153 ex
.X_add_number
= SEX16 (ex
.X_add_number
);
2156 case BFD_RELOC_HI16
:
2157 if (ex
.X_unsigned
&& ! (operand
->flags
& PPC_OPERAND_SIGNED
))
2158 ex
.X_add_number
= PPC_HI (ex
.X_add_number
);
2160 ex
.X_add_number
= SEX16 (PPC_HI (ex
.X_add_number
));
2163 case BFD_RELOC_HI16_S
:
2164 if (ex
.X_unsigned
&& ! (operand
->flags
& PPC_OPERAND_SIGNED
))
2165 ex
.X_add_number
= PPC_HA (ex
.X_add_number
);
2167 ex
.X_add_number
= SEX16 (PPC_HA (ex
.X_add_number
));
2170 case BFD_RELOC_PPC64_HIGHER
:
2171 if (ex
.X_unsigned
&& ! (operand
->flags
& PPC_OPERAND_SIGNED
))
2172 ex
.X_add_number
= PPC_HIGHER (ex
.X_add_number
);
2174 ex
.X_add_number
= SEX16 (PPC_HIGHER (ex
.X_add_number
));
2177 case BFD_RELOC_PPC64_HIGHER_S
:
2178 if (ex
.X_unsigned
&& ! (operand
->flags
& PPC_OPERAND_SIGNED
))
2179 ex
.X_add_number
= PPC_HIGHERA (ex
.X_add_number
);
2181 ex
.X_add_number
= SEX16 (PPC_HIGHERA (ex
.X_add_number
));
2184 case BFD_RELOC_PPC64_HIGHEST
:
2185 if (ex
.X_unsigned
&& ! (operand
->flags
& PPC_OPERAND_SIGNED
))
2186 ex
.X_add_number
= PPC_HIGHEST (ex
.X_add_number
);
2188 ex
.X_add_number
= SEX16 (PPC_HIGHEST (ex
.X_add_number
));
2191 case BFD_RELOC_PPC64_HIGHEST_S
:
2192 if (ex
.X_unsigned
&& ! (operand
->flags
& PPC_OPERAND_SIGNED
))
2193 ex
.X_add_number
= PPC_HIGHESTA (ex
.X_add_number
);
2195 ex
.X_add_number
= SEX16 (PPC_HIGHESTA (ex
.X_add_number
));
2198 #endif /* OBJ_ELF */
2199 insn
= ppc_insert_operand (insn
, operand
, ex
.X_add_number
,
2203 else if ((reloc
= ppc_elf_suffix (&str
, &ex
)) != BFD_RELOC_UNUSED
)
2205 /* For the absolute forms of branches, convert the PC
2206 relative form back into the absolute. */
2207 if ((operand
->flags
& PPC_OPERAND_ABSOLUTE
) != 0)
2211 case BFD_RELOC_PPC_B26
:
2212 reloc
= BFD_RELOC_PPC_BA26
;
2214 case BFD_RELOC_PPC_B16
:
2215 reloc
= BFD_RELOC_PPC_BA16
;
2217 case BFD_RELOC_PPC_B16_BRTAKEN
:
2218 reloc
= BFD_RELOC_PPC_BA16_BRTAKEN
;
2220 case BFD_RELOC_PPC_B16_BRNTAKEN
:
2221 reloc
= BFD_RELOC_PPC_BA16_BRNTAKEN
;
2229 && (operand
->flags
& PPC_OPERAND_DS
) != 0)
2234 reloc
= BFD_RELOC_PPC64_ADDR16_DS
;
2236 case BFD_RELOC_LO16
:
2237 reloc
= BFD_RELOC_PPC64_ADDR16_LO_DS
;
2239 case BFD_RELOC_16_GOTOFF
:
2240 reloc
= BFD_RELOC_PPC64_GOT16_DS
;
2242 case BFD_RELOC_LO16_GOTOFF
:
2243 reloc
= BFD_RELOC_PPC64_GOT16_LO_DS
;
2245 case BFD_RELOC_LO16_PLTOFF
:
2246 reloc
= BFD_RELOC_PPC64_PLT16_LO_DS
;
2248 case BFD_RELOC_16_BASEREL
:
2249 reloc
= BFD_RELOC_PPC64_SECTOFF_DS
;
2251 case BFD_RELOC_LO16_BASEREL
:
2252 reloc
= BFD_RELOC_PPC64_SECTOFF_LO_DS
;
2254 case BFD_RELOC_PPC_TOC16
:
2255 reloc
= BFD_RELOC_PPC64_TOC16_DS
;
2257 case BFD_RELOC_PPC64_TOC16_LO
:
2258 reloc
= BFD_RELOC_PPC64_TOC16_LO_DS
;
2260 case BFD_RELOC_PPC64_PLTGOT16
:
2261 reloc
= BFD_RELOC_PPC64_PLTGOT16_DS
;
2263 case BFD_RELOC_PPC64_PLTGOT16_LO
:
2264 reloc
= BFD_RELOC_PPC64_PLTGOT16_LO_DS
;
2267 as_bad (_("unsupported relocation for DS offset field"));
2272 /* We need to generate a fixup for this expression. */
2273 if (fc
>= MAX_INSN_FIXUPS
)
2274 as_fatal (_("too many fixups"));
2275 fixups
[fc
].exp
= ex
;
2276 fixups
[fc
].opindex
= 0;
2277 fixups
[fc
].reloc
= reloc
;
2280 #endif /* OBJ_ELF */
2284 /* We need to generate a fixup for this expression. */
2285 if (fc
>= MAX_INSN_FIXUPS
)
2286 as_fatal (_("too many fixups"));
2287 fixups
[fc
].exp
= ex
;
2288 fixups
[fc
].opindex
= *opindex_ptr
;
2289 fixups
[fc
].reloc
= BFD_RELOC_UNUSED
;
2298 else if ((operand
->flags
& PPC_OPERAND_PARENS
) != 0)
2306 /* The call to expression should have advanced str past any
2309 && (endc
!= ',' || *str
!= '\0'))
2311 as_bad (_("syntax error; found `%c' but expected `%c'"), *str
, endc
);
2319 while (ISSPACE (*str
))
2323 as_bad (_("junk at end of line: `%s'"), str
);
2325 /* Write out the instruction. */
2327 md_number_to_chars (f
, insn
, 4);
2330 dwarf2_emit_insn (4);
2333 /* Create any fixups. At this point we do not use a
2334 bfd_reloc_code_real_type, but instead just use the
2335 BFD_RELOC_UNUSED plus the operand index. This lets us easily
2336 handle fixups for any operand type, although that is admittedly
2337 not a very exciting feature. We pick a BFD reloc type in
2339 for (i
= 0; i
< fc
; i
++)
2341 const struct powerpc_operand
*operand
;
2343 operand
= &powerpc_operands
[fixups
[i
].opindex
];
2344 if (fixups
[i
].reloc
!= BFD_RELOC_UNUSED
)
2346 reloc_howto_type
*reloc_howto
;
2351 reloc_howto
= bfd_reloc_type_lookup (stdoutput
, fixups
[i
].reloc
);
2355 size
= bfd_get_reloc_size (reloc_howto
);
2356 offset
= target_big_endian
? (4 - size
) : 0;
2358 if (size
< 1 || size
> 4)
2361 fixP
= fix_new_exp (frag_now
,
2362 f
- frag_now
->fr_literal
+ offset
,
2365 reloc_howto
->pc_relative
,
2368 /* Turn off complaints that the addend is too large for things like
2370 switch (fixups
[i
].reloc
)
2372 case BFD_RELOC_16_GOTOFF
:
2373 case BFD_RELOC_PPC_TOC16
:
2374 case BFD_RELOC_LO16
:
2375 case BFD_RELOC_HI16
:
2376 case BFD_RELOC_HI16_S
:
2378 case BFD_RELOC_PPC64_HIGHER
:
2379 case BFD_RELOC_PPC64_HIGHER_S
:
2380 case BFD_RELOC_PPC64_HIGHEST
:
2381 case BFD_RELOC_PPC64_HIGHEST_S
:
2383 fixP
->fx_no_overflow
= 1;
2390 fix_new_exp (frag_now
,
2391 f
- frag_now
->fr_literal
,
2394 (operand
->flags
& PPC_OPERAND_RELATIVE
) != 0,
2395 ((bfd_reloc_code_real_type
)
2396 (fixups
[i
].opindex
+ (int) BFD_RELOC_UNUSED
)));
2400 /* Handle a macro. Gather all the operands, transform them as
2401 described by the macro, and call md_assemble recursively. All the
2402 operands are separated by commas; we don't accept parentheses
2403 around operands here. */
2406 ppc_macro (str
, macro
)
2408 const struct powerpc_macro
*macro
;
2419 /* Gather the users operands into the operands array. */
2424 if (count
>= sizeof operands
/ sizeof operands
[0])
2426 operands
[count
++] = s
;
2427 s
= strchr (s
, ',');
2428 if (s
== (char *) NULL
)
2433 if (count
!= macro
->operands
)
2435 as_bad (_("wrong number of operands"));
2439 /* Work out how large the string must be (the size is unbounded
2440 because it includes user input). */
2442 format
= macro
->format
;
2443 while (*format
!= '\0')
2452 arg
= strtol (format
+ 1, &send
, 10);
2453 know (send
!= format
&& arg
>= 0 && arg
< count
);
2454 len
+= strlen (operands
[arg
]);
2459 /* Put the string together. */
2460 complete
= s
= (char *) alloca (len
+ 1);
2461 format
= macro
->format
;
2462 while (*format
!= '\0')
2468 arg
= strtol (format
+ 1, &send
, 10);
2469 strcpy (s
, operands
[arg
]);
2476 /* Assemble the constructed instruction. */
2477 md_assemble (complete
);
2481 /* For ELF, add support for SHF_EXCLUDE and SHT_ORDERED. */
2484 ppc_section_letter (letter
, ptr_msg
)
2491 *ptr_msg
= _("Bad .section directive: want a,e,w,x,M,S,G,T in string");
2496 ppc_section_word (str
, len
)
2500 if (len
== 7 && strncmp (str
, "exclude", 7) == 0)
2507 ppc_section_type (str
, len
)
2511 if (len
== 7 && strncmp (str
, "ordered", 7) == 0)
2518 ppc_section_flags (flags
, attr
, type
)
2523 if (type
== SHT_ORDERED
)
2524 flags
|= SEC_ALLOC
| SEC_LOAD
| SEC_SORT_ENTRIES
;
2526 if (attr
& SHF_EXCLUDE
)
2527 flags
|= SEC_EXCLUDE
;
2531 #endif /* OBJ_ELF */
2534 /* Pseudo-op handling. */
2536 /* The .byte pseudo-op. This is similar to the normal .byte
2537 pseudo-op, but it can also take a single ASCII string. */
2541 int ignore ATTRIBUTE_UNUSED
;
2543 if (*input_line_pointer
!= '\"')
2549 /* Gather characters. A real double quote is doubled. Unusual
2550 characters are not permitted. */
2551 ++input_line_pointer
;
2556 c
= *input_line_pointer
++;
2560 if (*input_line_pointer
!= '\"')
2562 ++input_line_pointer
;
2565 FRAG_APPEND_1_CHAR (c
);
2568 demand_empty_rest_of_line ();
2573 /* XCOFF specific pseudo-op handling. */
2575 /* This is set if we are creating a .stabx symbol, since we don't want
2576 to handle symbol suffixes for such symbols. */
2577 static boolean ppc_stab_symbol
;
2579 /* The .comm and .lcomm pseudo-ops for XCOFF. XCOFF puts common
2580 symbols in the .bss segment as though they were local common
2581 symbols, and uses a different smclas. The native Aix 4.3.3 assember
2582 aligns .comm and .lcomm to 4 bytes. */
2588 asection
*current_seg
= now_seg
;
2589 subsegT current_subseg
= now_subseg
;
2595 symbolS
*lcomm_sym
= NULL
;
2599 name
= input_line_pointer
;
2600 endc
= get_symbol_end ();
2601 end_name
= input_line_pointer
;
2604 if (*input_line_pointer
!= ',')
2606 as_bad (_("missing size"));
2607 ignore_rest_of_line ();
2610 ++input_line_pointer
;
2612 size
= get_absolute_expression ();
2615 as_bad (_("negative size"));
2616 ignore_rest_of_line ();
2622 /* The third argument to .comm is the alignment. */
2623 if (*input_line_pointer
!= ',')
2627 ++input_line_pointer
;
2628 align
= get_absolute_expression ();
2631 as_warn (_("ignoring bad alignment"));
2646 /* The third argument to .lcomm appears to be the real local
2647 common symbol to create. References to the symbol named in
2648 the first argument are turned into references to the third
2650 if (*input_line_pointer
!= ',')
2652 as_bad (_("missing real symbol name"));
2653 ignore_rest_of_line ();
2656 ++input_line_pointer
;
2658 lcomm_name
= input_line_pointer
;
2659 lcomm_endc
= get_symbol_end ();
2661 lcomm_sym
= symbol_find_or_make (lcomm_name
);
2663 *input_line_pointer
= lcomm_endc
;
2667 sym
= symbol_find_or_make (name
);
2670 if (S_IS_DEFINED (sym
)
2671 || S_GET_VALUE (sym
) != 0)
2673 as_bad (_("attempt to redefine symbol"));
2674 ignore_rest_of_line ();
2678 record_alignment (bss_section
, align
);
2681 || ! S_IS_DEFINED (lcomm_sym
))
2690 S_SET_EXTERNAL (sym
);
2694 symbol_get_tc (lcomm_sym
)->output
= 1;
2695 def_sym
= lcomm_sym
;
2699 subseg_set (bss_section
, 1);
2700 frag_align (align
, 0, 0);
2702 symbol_set_frag (def_sym
, frag_now
);
2703 pfrag
= frag_var (rs_org
, 1, 1, (relax_substateT
) 0, def_sym
,
2704 def_size
, (char *) NULL
);
2706 S_SET_SEGMENT (def_sym
, bss_section
);
2707 symbol_get_tc (def_sym
)->align
= align
;
2711 /* Align the size of lcomm_sym. */
2712 symbol_get_frag (lcomm_sym
)->fr_offset
=
2713 ((symbol_get_frag (lcomm_sym
)->fr_offset
+ (1 << align
) - 1)
2714 &~ ((1 << align
) - 1));
2715 if (align
> symbol_get_tc (lcomm_sym
)->align
)
2716 symbol_get_tc (lcomm_sym
)->align
= align
;
2721 /* Make sym an offset from lcomm_sym. */
2722 S_SET_SEGMENT (sym
, bss_section
);
2723 symbol_set_frag (sym
, symbol_get_frag (lcomm_sym
));
2724 S_SET_VALUE (sym
, symbol_get_frag (lcomm_sym
)->fr_offset
);
2725 symbol_get_frag (lcomm_sym
)->fr_offset
+= size
;
2728 subseg_set (current_seg
, current_subseg
);
2730 demand_empty_rest_of_line ();
2733 /* The .csect pseudo-op. This switches us into a different
2734 subsegment. The first argument is a symbol whose value is the
2735 start of the .csect. In COFF, csect symbols get special aux
2736 entries defined by the x_csect field of union internal_auxent. The
2737 optional second argument is the alignment (the default is 2). */
2741 int ignore ATTRIBUTE_UNUSED
;
2747 name
= input_line_pointer
;
2748 endc
= get_symbol_end ();
2750 sym
= symbol_find_or_make (name
);
2752 *input_line_pointer
= endc
;
2754 if (S_GET_NAME (sym
)[0] == '\0')
2756 /* An unnamed csect is assumed to be [PR]. */
2757 symbol_get_tc (sym
)->class = XMC_PR
;
2760 ppc_change_csect (sym
);
2762 if (*input_line_pointer
== ',')
2764 ++input_line_pointer
;
2765 symbol_get_tc (sym
)->align
= get_absolute_expression ();
2768 demand_empty_rest_of_line ();
2771 /* Change to a different csect. */
2774 ppc_change_csect (sym
)
2777 if (S_IS_DEFINED (sym
))
2778 subseg_set (S_GET_SEGMENT (sym
), symbol_get_tc (sym
)->subseg
);
2786 /* This is a new csect. We need to look at the symbol class to
2787 figure out whether it should go in the text section or the
2790 switch (symbol_get_tc (sym
)->class)
2800 S_SET_SEGMENT (sym
, text_section
);
2801 symbol_get_tc (sym
)->subseg
= ppc_text_subsegment
;
2802 ++ppc_text_subsegment
;
2803 list_ptr
= &ppc_text_csects
;
2812 if (ppc_toc_csect
!= NULL
2813 && (symbol_get_tc (ppc_toc_csect
)->subseg
+ 1
2814 == ppc_data_subsegment
))
2816 S_SET_SEGMENT (sym
, data_section
);
2817 symbol_get_tc (sym
)->subseg
= ppc_data_subsegment
;
2818 ++ppc_data_subsegment
;
2819 list_ptr
= &ppc_data_csects
;
2825 /* We set the obstack chunk size to a small value before
2826 changing subsegments, so that we don't use a lot of memory
2827 space for what may be a small section. */
2828 hold_chunksize
= chunksize
;
2831 subseg_new (segment_name (S_GET_SEGMENT (sym
)),
2832 symbol_get_tc (sym
)->subseg
);
2834 chunksize
= hold_chunksize
;
2837 ppc_after_toc_frag
= frag_now
;
2839 symbol_set_frag (sym
, frag_now
);
2840 S_SET_VALUE (sym
, (valueT
) frag_now_fix ());
2842 symbol_get_tc (sym
)->align
= 2;
2843 symbol_get_tc (sym
)->output
= 1;
2844 symbol_get_tc (sym
)->within
= sym
;
2846 for (list
= *list_ptr
;
2847 symbol_get_tc (list
)->next
!= (symbolS
*) NULL
;
2848 list
= symbol_get_tc (list
)->next
)
2850 symbol_get_tc (list
)->next
= sym
;
2852 symbol_remove (sym
, &symbol_rootP
, &symbol_lastP
);
2853 symbol_append (sym
, symbol_get_tc (list
)->within
, &symbol_rootP
,
2857 ppc_current_csect
= sym
;
2860 /* This function handles the .text and .data pseudo-ops. These
2861 pseudo-ops aren't really used by XCOFF; we implement them for the
2862 convenience of people who aren't used to XCOFF. */
2873 else if (type
== 'd')
2878 sym
= symbol_find_or_make (name
);
2880 ppc_change_csect (sym
);
2882 demand_empty_rest_of_line ();
2885 /* This function handles the .section pseudo-op. This is mostly to
2886 give an error, since XCOFF only supports .text, .data and .bss, but
2887 we do permit the user to name the text or data section. */
2890 ppc_named_section (ignore
)
2891 int ignore ATTRIBUTE_UNUSED
;
2894 const char *real_name
;
2898 user_name
= input_line_pointer
;
2899 c
= get_symbol_end ();
2901 if (strcmp (user_name
, ".text") == 0)
2902 real_name
= ".text[PR]";
2903 else if (strcmp (user_name
, ".data") == 0)
2904 real_name
= ".data[RW]";
2907 as_bad (_("The XCOFF file format does not support arbitrary sections"));
2908 *input_line_pointer
= c
;
2909 ignore_rest_of_line ();
2913 *input_line_pointer
= c
;
2915 sym
= symbol_find_or_make (real_name
);
2917 ppc_change_csect (sym
);
2919 demand_empty_rest_of_line ();
2922 /* The .extern pseudo-op. We create an undefined symbol. */
2926 int ignore ATTRIBUTE_UNUSED
;
2931 name
= input_line_pointer
;
2932 endc
= get_symbol_end ();
2934 (void) symbol_find_or_make (name
);
2936 *input_line_pointer
= endc
;
2938 demand_empty_rest_of_line ();
2941 /* The .lglobl pseudo-op. Keep the symbol in the symbol table. */
2945 int ignore ATTRIBUTE_UNUSED
;
2951 name
= input_line_pointer
;
2952 endc
= get_symbol_end ();
2954 sym
= symbol_find_or_make (name
);
2956 *input_line_pointer
= endc
;
2958 symbol_get_tc (sym
)->output
= 1;
2960 demand_empty_rest_of_line ();
2963 /* The .rename pseudo-op. The RS/6000 assembler can rename symbols,
2964 although I don't know why it bothers. */
2968 int ignore ATTRIBUTE_UNUSED
;
2975 name
= input_line_pointer
;
2976 endc
= get_symbol_end ();
2978 sym
= symbol_find_or_make (name
);
2980 *input_line_pointer
= endc
;
2982 if (*input_line_pointer
!= ',')
2984 as_bad (_("missing rename string"));
2985 ignore_rest_of_line ();
2988 ++input_line_pointer
;
2990 symbol_get_tc (sym
)->real_name
= demand_copy_C_string (&len
);
2992 demand_empty_rest_of_line ();
2995 /* The .stabx pseudo-op. This is similar to a normal .stabs
2996 pseudo-op, but slightly different. A sample is
2997 .stabx "main:F-1",.main,142,0
2998 The first argument is the symbol name to create. The second is the
2999 value, and the third is the storage class. The fourth seems to be
3000 always zero, and I am assuming it is the type. */
3004 int ignore ATTRIBUTE_UNUSED
;
3011 name
= demand_copy_C_string (&len
);
3013 if (*input_line_pointer
!= ',')
3015 as_bad (_("missing value"));
3018 ++input_line_pointer
;
3020 ppc_stab_symbol
= true;
3021 sym
= symbol_make (name
);
3022 ppc_stab_symbol
= false;
3024 symbol_get_tc (sym
)->real_name
= name
;
3026 (void) expression (&exp
);
3033 as_bad (_("illegal .stabx expression; zero assumed"));
3034 exp
.X_add_number
= 0;
3037 S_SET_VALUE (sym
, (valueT
) exp
.X_add_number
);
3038 symbol_set_frag (sym
, &zero_address_frag
);
3042 if (S_GET_SEGMENT (exp
.X_add_symbol
) == undefined_section
)
3043 symbol_set_value_expression (sym
, &exp
);
3047 exp
.X_add_number
+ S_GET_VALUE (exp
.X_add_symbol
));
3048 symbol_set_frag (sym
, symbol_get_frag (exp
.X_add_symbol
));
3053 /* The value is some complex expression. This will probably
3054 fail at some later point, but this is probably the right
3055 thing to do here. */
3056 symbol_set_value_expression (sym
, &exp
);
3060 S_SET_SEGMENT (sym
, ppc_coff_debug_section
);
3061 symbol_get_bfdsym (sym
)->flags
|= BSF_DEBUGGING
;
3063 if (*input_line_pointer
!= ',')
3065 as_bad (_("missing class"));
3068 ++input_line_pointer
;
3070 S_SET_STORAGE_CLASS (sym
, get_absolute_expression ());
3072 if (*input_line_pointer
!= ',')
3074 as_bad (_("missing type"));
3077 ++input_line_pointer
;
3079 S_SET_DATA_TYPE (sym
, get_absolute_expression ());
3081 symbol_get_tc (sym
)->output
= 1;
3083 if (S_GET_STORAGE_CLASS (sym
) == C_STSYM
) {
3085 symbol_get_tc (sym
)->within
= ppc_current_block
;
3090 .stabx "z",arrays_,133,0
3093 .comm arrays_,13768,3
3095 resolve_symbol_value will copy the exp's "within" into sym's when the
3096 offset is 0. Since this seems to be corner case problem,
3097 only do the correction for storage class C_STSYM. A better solution
3098 would be to have the tc field updated in ppc_symbol_new_hook. */
3100 if (exp
.X_op
== O_symbol
)
3102 symbol_get_tc (exp
.X_add_symbol
)->within
= ppc_current_block
;
3106 if (exp
.X_op
!= O_symbol
3107 || ! S_IS_EXTERNAL (exp
.X_add_symbol
)
3108 || S_GET_SEGMENT (exp
.X_add_symbol
) != bss_section
)
3109 ppc_frob_label (sym
);
3112 symbol_remove (sym
, &symbol_rootP
, &symbol_lastP
);
3113 symbol_append (sym
, exp
.X_add_symbol
, &symbol_rootP
, &symbol_lastP
);
3114 if (symbol_get_tc (ppc_current_csect
)->within
== exp
.X_add_symbol
)
3115 symbol_get_tc (ppc_current_csect
)->within
= sym
;
3118 demand_empty_rest_of_line ();
3121 /* The .function pseudo-op. This takes several arguments. The first
3122 argument seems to be the external name of the symbol. The second
3123 argment seems to be the label for the start of the function. gcc
3124 uses the same name for both. I have no idea what the third and
3125 fourth arguments are meant to be. The optional fifth argument is
3126 an expression for the size of the function. In COFF this symbol
3127 gets an aux entry like that used for a csect. */
3130 ppc_function (ignore
)
3131 int ignore ATTRIBUTE_UNUSED
;
3139 name
= input_line_pointer
;
3140 endc
= get_symbol_end ();
3142 /* Ignore any [PR] suffix. */
3143 name
= ppc_canonicalize_symbol_name (name
);
3144 s
= strchr (name
, '[');
3145 if (s
!= (char *) NULL
3146 && strcmp (s
+ 1, "PR]") == 0)
3149 ext_sym
= symbol_find_or_make (name
);
3151 *input_line_pointer
= endc
;
3153 if (*input_line_pointer
!= ',')
3155 as_bad (_("missing symbol name"));
3156 ignore_rest_of_line ();
3159 ++input_line_pointer
;
3161 name
= input_line_pointer
;
3162 endc
= get_symbol_end ();
3164 lab_sym
= symbol_find_or_make (name
);
3166 *input_line_pointer
= endc
;
3168 if (ext_sym
!= lab_sym
)
3172 exp
.X_op
= O_symbol
;
3173 exp
.X_add_symbol
= lab_sym
;
3174 exp
.X_op_symbol
= NULL
;
3175 exp
.X_add_number
= 0;
3177 symbol_set_value_expression (ext_sym
, &exp
);
3180 if (symbol_get_tc (ext_sym
)->class == -1)
3181 symbol_get_tc (ext_sym
)->class = XMC_PR
;
3182 symbol_get_tc (ext_sym
)->output
= 1;
3184 if (*input_line_pointer
== ',')
3188 /* Ignore the third argument. */
3189 ++input_line_pointer
;
3190 expression (&ignore
);
3191 if (*input_line_pointer
== ',')
3193 /* Ignore the fourth argument. */
3194 ++input_line_pointer
;
3195 expression (&ignore
);
3196 if (*input_line_pointer
== ',')
3198 /* The fifth argument is the function size. */
3199 ++input_line_pointer
;
3200 symbol_get_tc (ext_sym
)->size
= symbol_new ("L0\001",
3203 &zero_address_frag
);
3204 pseudo_set (symbol_get_tc (ext_sym
)->size
);
3209 S_SET_DATA_TYPE (ext_sym
, DT_FCN
<< N_BTSHFT
);
3210 SF_SET_FUNCTION (ext_sym
);
3211 SF_SET_PROCESS (ext_sym
);
3212 coff_add_linesym (ext_sym
);
3214 demand_empty_rest_of_line ();
3217 /* The .bf pseudo-op. This is just like a COFF C_FCN symbol named
3218 ".bf". If the pseudo op .bi was seen before .bf, patch the .bi sym
3219 with the correct line number */
3221 static symbolS
*saved_bi_sym
= 0;
3225 int ignore ATTRIBUTE_UNUSED
;
3229 sym
= symbol_make (".bf");
3230 S_SET_SEGMENT (sym
, text_section
);
3231 symbol_set_frag (sym
, frag_now
);
3232 S_SET_VALUE (sym
, frag_now_fix ());
3233 S_SET_STORAGE_CLASS (sym
, C_FCN
);
3235 coff_line_base
= get_absolute_expression ();
3237 S_SET_NUMBER_AUXILIARY (sym
, 1);
3238 SA_SET_SYM_LNNO (sym
, coff_line_base
);
3240 /* Line number for bi. */
3243 S_SET_VALUE (saved_bi_sym
, coff_n_line_nos
);
3248 symbol_get_tc (sym
)->output
= 1;
3250 ppc_frob_label (sym
);
3252 demand_empty_rest_of_line ();
3255 /* The .ef pseudo-op. This is just like a COFF C_FCN symbol named
3256 ".ef", except that the line number is absolute, not relative to the
3257 most recent ".bf" symbol. */
3261 int ignore ATTRIBUTE_UNUSED
;
3265 sym
= symbol_make (".ef");
3266 S_SET_SEGMENT (sym
, text_section
);
3267 symbol_set_frag (sym
, frag_now
);
3268 S_SET_VALUE (sym
, frag_now_fix ());
3269 S_SET_STORAGE_CLASS (sym
, C_FCN
);
3270 S_SET_NUMBER_AUXILIARY (sym
, 1);
3271 SA_SET_SYM_LNNO (sym
, get_absolute_expression ());
3272 symbol_get_tc (sym
)->output
= 1;
3274 ppc_frob_label (sym
);
3276 demand_empty_rest_of_line ();
3279 /* The .bi and .ei pseudo-ops. These take a string argument and
3280 generates a C_BINCL or C_EINCL symbol, which goes at the start of
3281 the symbol list. The value of .bi will be know when the next .bf
3288 static symbolS
*last_biei
;
3295 name
= demand_copy_C_string (&len
);
3297 /* The value of these symbols is actually file offset. Here we set
3298 the value to the index into the line number entries. In
3299 ppc_frob_symbols we set the fix_line field, which will cause BFD
3300 to do the right thing. */
3302 sym
= symbol_make (name
);
3303 /* obj-coff.c currently only handles line numbers correctly in the
3305 S_SET_SEGMENT (sym
, text_section
);
3306 S_SET_VALUE (sym
, coff_n_line_nos
);
3307 symbol_get_bfdsym (sym
)->flags
|= BSF_DEBUGGING
;
3309 S_SET_STORAGE_CLASS (sym
, ei
? C_EINCL
: C_BINCL
);
3310 symbol_get_tc (sym
)->output
= 1;
3318 for (look
= last_biei
? last_biei
: symbol_rootP
;
3319 (look
!= (symbolS
*) NULL
3320 && (S_GET_STORAGE_CLASS (look
) == C_FILE
3321 || S_GET_STORAGE_CLASS (look
) == C_BINCL
3322 || S_GET_STORAGE_CLASS (look
) == C_EINCL
));
3323 look
= symbol_next (look
))
3325 if (look
!= (symbolS
*) NULL
)
3327 symbol_remove (sym
, &symbol_rootP
, &symbol_lastP
);
3328 symbol_insert (sym
, look
, &symbol_rootP
, &symbol_lastP
);
3332 demand_empty_rest_of_line ();
3335 /* The .bs pseudo-op. This generates a C_BSTAT symbol named ".bs".
3336 There is one argument, which is a csect symbol. The value of the
3337 .bs symbol is the index of this csect symbol. */
3341 int ignore ATTRIBUTE_UNUSED
;
3348 if (ppc_current_block
!= NULL
)
3349 as_bad (_("nested .bs blocks"));
3351 name
= input_line_pointer
;
3352 endc
= get_symbol_end ();
3354 csect
= symbol_find_or_make (name
);
3356 *input_line_pointer
= endc
;
3358 sym
= symbol_make (".bs");
3359 S_SET_SEGMENT (sym
, now_seg
);
3360 S_SET_STORAGE_CLASS (sym
, C_BSTAT
);
3361 symbol_get_bfdsym (sym
)->flags
|= BSF_DEBUGGING
;
3362 symbol_get_tc (sym
)->output
= 1;
3364 symbol_get_tc (sym
)->within
= csect
;
3366 ppc_frob_label (sym
);
3368 ppc_current_block
= sym
;
3370 demand_empty_rest_of_line ();
3373 /* The .es pseudo-op. Generate a C_ESTART symbol named .es. */
3377 int ignore ATTRIBUTE_UNUSED
;
3381 if (ppc_current_block
== NULL
)
3382 as_bad (_(".es without preceding .bs"));
3384 sym
= symbol_make (".es");
3385 S_SET_SEGMENT (sym
, now_seg
);
3386 S_SET_STORAGE_CLASS (sym
, C_ESTAT
);
3387 symbol_get_bfdsym (sym
)->flags
|= BSF_DEBUGGING
;
3388 symbol_get_tc (sym
)->output
= 1;
3390 ppc_frob_label (sym
);
3392 ppc_current_block
= NULL
;
3394 demand_empty_rest_of_line ();
3397 /* The .bb pseudo-op. Generate a C_BLOCK symbol named .bb, with a
3402 int ignore ATTRIBUTE_UNUSED
;
3406 sym
= symbol_make (".bb");
3407 S_SET_SEGMENT (sym
, text_section
);
3408 symbol_set_frag (sym
, frag_now
);
3409 S_SET_VALUE (sym
, frag_now_fix ());
3410 S_SET_STORAGE_CLASS (sym
, C_BLOCK
);
3412 S_SET_NUMBER_AUXILIARY (sym
, 1);
3413 SA_SET_SYM_LNNO (sym
, get_absolute_expression ());
3415 symbol_get_tc (sym
)->output
= 1;
3417 SF_SET_PROCESS (sym
);
3419 ppc_frob_label (sym
);
3421 demand_empty_rest_of_line ();
3424 /* The .eb pseudo-op. Generate a C_BLOCK symbol named .eb, with a
3429 int ignore ATTRIBUTE_UNUSED
;
3433 sym
= symbol_make (".eb");
3434 S_SET_SEGMENT (sym
, text_section
);
3435 symbol_set_frag (sym
, frag_now
);
3436 S_SET_VALUE (sym
, frag_now_fix ());
3437 S_SET_STORAGE_CLASS (sym
, C_BLOCK
);
3438 S_SET_NUMBER_AUXILIARY (sym
, 1);
3439 SA_SET_SYM_LNNO (sym
, get_absolute_expression ());
3440 symbol_get_tc (sym
)->output
= 1;
3442 SF_SET_PROCESS (sym
);
3444 ppc_frob_label (sym
);
3446 demand_empty_rest_of_line ();
3449 /* The .bc pseudo-op. This just creates a C_BCOMM symbol with a
3454 int ignore ATTRIBUTE_UNUSED
;
3460 name
= demand_copy_C_string (&len
);
3461 sym
= symbol_make (name
);
3462 S_SET_SEGMENT (sym
, ppc_coff_debug_section
);
3463 symbol_get_bfdsym (sym
)->flags
|= BSF_DEBUGGING
;
3464 S_SET_STORAGE_CLASS (sym
, C_BCOMM
);
3465 S_SET_VALUE (sym
, 0);
3466 symbol_get_tc (sym
)->output
= 1;
3468 ppc_frob_label (sym
);
3470 demand_empty_rest_of_line ();
3473 /* The .ec pseudo-op. This just creates a C_ECOMM symbol. */
3477 int ignore ATTRIBUTE_UNUSED
;
3481 sym
= symbol_make (".ec");
3482 S_SET_SEGMENT (sym
, ppc_coff_debug_section
);
3483 symbol_get_bfdsym (sym
)->flags
|= BSF_DEBUGGING
;
3484 S_SET_STORAGE_CLASS (sym
, C_ECOMM
);
3485 S_SET_VALUE (sym
, 0);
3486 symbol_get_tc (sym
)->output
= 1;
3488 ppc_frob_label (sym
);
3490 demand_empty_rest_of_line ();
3493 /* The .toc pseudo-op. Switch to the .toc subsegment. */
3497 int ignore ATTRIBUTE_UNUSED
;
3499 if (ppc_toc_csect
!= (symbolS
*) NULL
)
3500 subseg_set (data_section
, symbol_get_tc (ppc_toc_csect
)->subseg
);
3507 subseg
= ppc_data_subsegment
;
3508 ++ppc_data_subsegment
;
3510 subseg_new (segment_name (data_section
), subseg
);
3511 ppc_toc_frag
= frag_now
;
3513 sym
= symbol_find_or_make ("TOC[TC0]");
3514 symbol_set_frag (sym
, frag_now
);
3515 S_SET_SEGMENT (sym
, data_section
);
3516 S_SET_VALUE (sym
, (valueT
) frag_now_fix ());
3517 symbol_get_tc (sym
)->subseg
= subseg
;
3518 symbol_get_tc (sym
)->output
= 1;
3519 symbol_get_tc (sym
)->within
= sym
;
3521 ppc_toc_csect
= sym
;
3523 for (list
= ppc_data_csects
;
3524 symbol_get_tc (list
)->next
!= (symbolS
*) NULL
;
3525 list
= symbol_get_tc (list
)->next
)
3527 symbol_get_tc (list
)->next
= sym
;
3529 symbol_remove (sym
, &symbol_rootP
, &symbol_lastP
);
3530 symbol_append (sym
, symbol_get_tc (list
)->within
, &symbol_rootP
,
3534 ppc_current_csect
= ppc_toc_csect
;
3536 demand_empty_rest_of_line ();
3539 /* The AIX assembler automatically aligns the operands of a .long or
3540 .short pseudo-op, and we want to be compatible. */
3543 ppc_xcoff_cons (log_size
)
3546 frag_align (log_size
, 0, 0);
3547 record_alignment (now_seg
, log_size
);
3548 cons (1 << log_size
);
3553 int dummy ATTRIBUTE_UNUSED
;
3558 (void) expression (&exp
);
3560 if (exp
.X_op
!= O_constant
)
3562 as_bad (_("non-constant byte count"));
3566 byte_count
= exp
.X_add_number
;
3568 if (*input_line_pointer
!= ',')
3570 as_bad (_("missing value"));
3574 ++input_line_pointer
;
3578 #endif /* OBJ_XCOFF */
3579 #if defined (OBJ_XCOFF) || defined (OBJ_ELF)
3581 /* The .tc pseudo-op. This is used when generating either XCOFF or
3582 ELF. This takes two or more arguments.
3584 When generating XCOFF output, the first argument is the name to
3585 give to this location in the toc; this will be a symbol with class
3586 TC. The rest of the arguments are N-byte values to actually put at
3587 this location in the TOC; often there is just one more argument, a
3588 relocateable symbol reference. The size of the value to store
3589 depends on target word size. A 32-bit target uses 4-byte values, a
3590 64-bit target uses 8-byte values.
3592 When not generating XCOFF output, the arguments are the same, but
3593 the first argument is simply ignored. */
3597 int ignore ATTRIBUTE_UNUSED
;
3601 /* Define the TOC symbol name. */
3607 if (ppc_toc_csect
== (symbolS
*) NULL
3608 || ppc_toc_csect
!= ppc_current_csect
)
3610 as_bad (_(".tc not in .toc section"));
3611 ignore_rest_of_line ();
3615 name
= input_line_pointer
;
3616 endc
= get_symbol_end ();
3618 sym
= symbol_find_or_make (name
);
3620 *input_line_pointer
= endc
;
3622 if (S_IS_DEFINED (sym
))
3626 label
= symbol_get_tc (ppc_current_csect
)->within
;
3627 if (symbol_get_tc (label
)->class != XMC_TC0
)
3629 as_bad (_(".tc with no label"));
3630 ignore_rest_of_line ();
3634 S_SET_SEGMENT (label
, S_GET_SEGMENT (sym
));
3635 symbol_set_frag (label
, symbol_get_frag (sym
));
3636 S_SET_VALUE (label
, S_GET_VALUE (sym
));
3638 while (! is_end_of_line
[(unsigned char) *input_line_pointer
])
3639 ++input_line_pointer
;
3644 S_SET_SEGMENT (sym
, now_seg
);
3645 symbol_set_frag (sym
, frag_now
);
3646 S_SET_VALUE (sym
, (valueT
) frag_now_fix ());
3647 symbol_get_tc (sym
)->class = XMC_TC
;
3648 symbol_get_tc (sym
)->output
= 1;
3650 ppc_frob_label (sym
);
3653 #endif /* OBJ_XCOFF */
3657 /* Skip the TOC symbol name. */
3658 while (is_part_of_name (*input_line_pointer
)
3659 || *input_line_pointer
== '['
3660 || *input_line_pointer
== ']'
3661 || *input_line_pointer
== '{'
3662 || *input_line_pointer
== '}')
3663 ++input_line_pointer
;
3665 /* Align to a four/eight byte boundary. */
3666 align
= ppc_obj64
? 3 : 2;
3667 frag_align (align
, 0, 0);
3668 record_alignment (now_seg
, align
);
3669 #endif /* OBJ_ELF */
3671 if (*input_line_pointer
!= ',')
3672 demand_empty_rest_of_line ();
3675 ++input_line_pointer
;
3676 cons (ppc_obj64
? 8 : 4);
3680 /* Pseudo-op .machine. */
3681 /* FIXME: `.machine' is a nop for the moment. It would be nice to
3682 accept this directive on the first line of input and set ppc_obj64
3683 and the target format accordingly. Unfortunately, the target
3684 format is selected in output-file.c:output_file_create before we
3685 even get to md_begin, so it's not possible without changing
3689 ppc_machine (ignore
)
3690 int ignore ATTRIBUTE_UNUSED
;
3692 discard_rest_of_line ();
3695 /* See whether a symbol is in the TOC section. */
3698 ppc_is_toc_sym (sym
)
3702 return symbol_get_tc (sym
)->class == XMC_TC
;
3705 const char *sname
= segment_name (S_GET_SEGMENT (sym
));
3707 return strcmp (sname
, ".toc") == 0;
3709 return strcmp (sname
, ".got") == 0;
3712 #endif /* defined (OBJ_XCOFF) || defined (OBJ_ELF) */
3716 /* Pseudo-ops specific to the Windows NT PowerPC PE (coff) format. */
3718 /* Set the current section. */
3720 ppc_set_current_section (new)
3723 ppc_previous_section
= ppc_current_section
;
3724 ppc_current_section
= new;
3727 /* pseudo-op: .previous
3728 behaviour: toggles the current section with the previous section.
3730 warnings: "No previous section" */
3733 ppc_previous (ignore
)
3734 int ignore ATTRIBUTE_UNUSED
;
3738 if (ppc_previous_section
== NULL
)
3740 as_warn (_("No previous section to return to. Directive ignored."));
3744 subseg_set (ppc_previous_section
, 0);
3746 ppc_set_current_section (ppc_previous_section
);
3749 /* pseudo-op: .pdata
3750 behaviour: predefined read only data section
3754 initial: .section .pdata "adr3"
3755 a - don't know -- maybe a misprint
3756 d - initialized data
3758 3 - double word aligned (that would be 4 byte boundary)
3761 Tag index tables (also known as the function table) for exception
3762 handling, debugging, etc. */
3766 int ignore ATTRIBUTE_UNUSED
;
3768 if (pdata_section
== 0)
3770 pdata_section
= subseg_new (".pdata", 0);
3772 bfd_set_section_flags (stdoutput
, pdata_section
,
3773 (SEC_ALLOC
| SEC_LOAD
| SEC_RELOC
3774 | SEC_READONLY
| SEC_DATA
));
3776 bfd_set_section_alignment (stdoutput
, pdata_section
, 2);
3780 pdata_section
= subseg_new (".pdata", 0);
3782 ppc_set_current_section (pdata_section
);
3785 /* pseudo-op: .ydata
3786 behaviour: predefined read only data section
3790 initial: .section .ydata "drw3"
3791 a - don't know -- maybe a misprint
3792 d - initialized data
3794 3 - double word aligned (that would be 4 byte boundary)
3796 Tag tables (also known as the scope table) for exception handling,
3801 int ignore ATTRIBUTE_UNUSED
;
3803 if (ydata_section
== 0)
3805 ydata_section
= subseg_new (".ydata", 0);
3806 bfd_set_section_flags (stdoutput
, ydata_section
,
3807 (SEC_ALLOC
| SEC_LOAD
| SEC_RELOC
3808 | SEC_READONLY
| SEC_DATA
));
3810 bfd_set_section_alignment (stdoutput
, ydata_section
, 3);
3814 ydata_section
= subseg_new (".ydata", 0);
3816 ppc_set_current_section (ydata_section
);
3819 /* pseudo-op: .reldata
3820 behaviour: predefined read write data section
3821 double word aligned (4-byte)
3822 FIXME: relocation is applied to it
3823 FIXME: what's the difference between this and .data?
3826 initial: .section .reldata "drw3"
3827 d - initialized data
3830 3 - double word aligned (that would be 8 byte boundary)
3833 Like .data, but intended to hold data subject to relocation, such as
3834 function descriptors, etc. */
3837 ppc_reldata (ignore
)
3838 int ignore ATTRIBUTE_UNUSED
;
3840 if (reldata_section
== 0)
3842 reldata_section
= subseg_new (".reldata", 0);
3844 bfd_set_section_flags (stdoutput
, reldata_section
,
3845 (SEC_ALLOC
| SEC_LOAD
| SEC_RELOC
3848 bfd_set_section_alignment (stdoutput
, reldata_section
, 2);
3852 reldata_section
= subseg_new (".reldata", 0);
3854 ppc_set_current_section (reldata_section
);
3857 /* pseudo-op: .rdata
3858 behaviour: predefined read only data section
3862 initial: .section .rdata "dr3"
3863 d - initialized data
3865 3 - double word aligned (that would be 4 byte boundary) */
3869 int ignore ATTRIBUTE_UNUSED
;
3871 if (rdata_section
== 0)
3873 rdata_section
= subseg_new (".rdata", 0);
3874 bfd_set_section_flags (stdoutput
, rdata_section
,
3875 (SEC_ALLOC
| SEC_LOAD
| SEC_RELOC
3876 | SEC_READONLY
| SEC_DATA
));
3878 bfd_set_section_alignment (stdoutput
, rdata_section
, 2);
3882 rdata_section
= subseg_new (".rdata", 0);
3884 ppc_set_current_section (rdata_section
);
3887 /* pseudo-op: .ualong
3888 behaviour: much like .int, with the exception that no alignment is
3890 FIXME: test the alignment statement
3896 int ignore ATTRIBUTE_UNUSED
;
3902 /* pseudo-op: .znop <symbol name>
3903 behaviour: Issue a nop instruction
3904 Issue a IMAGE_REL_PPC_IFGLUE relocation against it, using
3905 the supplied symbol name.
3907 warnings: Missing symbol name */
3911 int ignore ATTRIBUTE_UNUSED
;
3914 const struct powerpc_opcode
*opcode
;
3925 /* Strip out the symbol name. */
3926 symbol_name
= input_line_pointer
;
3927 c
= get_symbol_end ();
3929 name
= xmalloc (input_line_pointer
- symbol_name
+ 1);
3930 strcpy (name
, symbol_name
);
3932 sym
= symbol_find_or_make (name
);
3934 *input_line_pointer
= c
;
3938 /* Look up the opcode in the hash table. */
3939 opcode
= (const struct powerpc_opcode
*) hash_find (ppc_hash
, "nop");
3941 /* Stick in the nop. */
3942 insn
= opcode
->opcode
;
3944 /* Write out the instruction. */
3946 md_number_to_chars (f
, insn
, 4);
3948 f
- frag_now
->fr_literal
,
3953 BFD_RELOC_16_GOT_PCREL
);
3966 register char *name
;
3970 register symbolS
*symbolP
;
3973 name
= input_line_pointer
;
3974 c
= get_symbol_end ();
3976 /* just after name is now '\0'. */
3977 p
= input_line_pointer
;
3980 if (*input_line_pointer
!= ',')
3982 as_bad (_("Expected comma after symbol-name: rest of line ignored."));
3983 ignore_rest_of_line ();
3987 input_line_pointer
++; /* skip ',' */
3988 if ((temp
= get_absolute_expression ()) < 0)
3990 as_warn (_(".COMMon length (%ld.) <0! Ignored."), (long) temp
);
3991 ignore_rest_of_line ();
3997 /* The third argument to .comm is the alignment. */
3998 if (*input_line_pointer
!= ',')
4002 ++input_line_pointer
;
4003 align
= get_absolute_expression ();
4006 as_warn (_("ignoring bad alignment"));
4013 symbolP
= symbol_find_or_make (name
);
4016 if (S_IS_DEFINED (symbolP
) && ! S_IS_COMMON (symbolP
))
4018 as_bad (_("Ignoring attempt to re-define symbol `%s'."),
4019 S_GET_NAME (symbolP
));
4020 ignore_rest_of_line ();
4024 if (S_GET_VALUE (symbolP
))
4026 if (S_GET_VALUE (symbolP
) != (valueT
) temp
)
4027 as_bad (_("Length of .comm \"%s\" is already %ld. Not changed to %ld."),
4028 S_GET_NAME (symbolP
),
4029 (long) S_GET_VALUE (symbolP
),
4034 S_SET_VALUE (symbolP
, (valueT
) temp
);
4035 S_SET_EXTERNAL (symbolP
);
4038 demand_empty_rest_of_line ();
4042 * implement the .section pseudo op:
4043 * .section name {, "flags"}
4045 * | +--- optional flags: 'b' for bss
4047 * +-- section name 'l' for lib
4051 * 'd' (apparently m88k for data)
4053 * But if the argument is not a quoted string, treat it as a
4054 * subsegment number.
4056 * FIXME: this is a copy of the section processing from obj-coff.c, with
4057 * additions/changes for the moto-pas assembler support. There are three
4060 * FIXME: I just noticed this. This doesn't work at all really. It it
4061 * setting bits that bfd probably neither understands or uses. The
4062 * correct approach (?) will have to incorporate extra fields attached
4063 * to the section to hold the system specific stuff. (krk)
4066 * 'a' - unknown - referred to in documentation, but no definition supplied
4067 * 'c' - section has code
4068 * 'd' - section has initialized data
4069 * 'u' - section has uninitialized data
4070 * 'i' - section contains directives (info)
4071 * 'n' - section can be discarded
4072 * 'R' - remove section at link time
4074 * Section Protection:
4075 * 'r' - section is readable
4076 * 'w' - section is writeable
4077 * 'x' - section is executable
4078 * 's' - section is sharable
4080 * Section Alignment:
4081 * '0' - align to byte boundary
4082 * '1' - align to halfword undary
4083 * '2' - align to word boundary
4084 * '3' - align to doubleword boundary
4085 * '4' - align to quadword boundary
4086 * '5' - align to 32 byte boundary
4087 * '6' - align to 64 byte boundary
4092 ppc_pe_section (ignore
)
4093 int ignore ATTRIBUTE_UNUSED
;
4095 /* Strip out the section name. */
4104 section_name
= input_line_pointer
;
4105 c
= get_symbol_end ();
4107 name
= xmalloc (input_line_pointer
- section_name
+ 1);
4108 strcpy (name
, section_name
);
4110 *input_line_pointer
= c
;
4115 flags
= SEC_NO_FLAGS
;
4117 if (strcmp (name
, ".idata$2") == 0)
4121 else if (strcmp (name
, ".idata$3") == 0)
4125 else if (strcmp (name
, ".idata$4") == 0)
4129 else if (strcmp (name
, ".idata$5") == 0)
4133 else if (strcmp (name
, ".idata$6") == 0)
4138 /* Default alignment to 16 byte boundary. */
4141 if (*input_line_pointer
== ',')
4143 ++input_line_pointer
;
4145 if (*input_line_pointer
!= '"')
4146 exp
= get_absolute_expression ();
4149 ++input_line_pointer
;
4150 while (*input_line_pointer
!= '"'
4151 && ! is_end_of_line
[(unsigned char) *input_line_pointer
])
4153 switch (*input_line_pointer
)
4155 /* Section Contents */
4156 case 'a': /* unknown */
4157 as_bad (_("Unsupported section attribute -- 'a'"));
4159 case 'c': /* code section */
4162 case 'd': /* section has initialized data */
4165 case 'u': /* section has uninitialized data */
4166 /* FIXME: This is IMAGE_SCN_CNT_UNINITIALIZED_DATA
4170 case 'i': /* section contains directives (info) */
4171 /* FIXME: This is IMAGE_SCN_LNK_INFO
4173 flags
|= SEC_HAS_CONTENTS
;
4175 case 'n': /* section can be discarded */
4178 case 'R': /* Remove section at link time */
4179 flags
|= SEC_NEVER_LOAD
;
4182 /* Section Protection */
4183 case 'r': /* section is readable */
4184 flags
|= IMAGE_SCN_MEM_READ
;
4186 case 'w': /* section is writeable */
4187 flags
|= IMAGE_SCN_MEM_WRITE
;
4189 case 'x': /* section is executable */
4190 flags
|= IMAGE_SCN_MEM_EXECUTE
;
4192 case 's': /* section is sharable */
4193 flags
|= IMAGE_SCN_MEM_SHARED
;
4196 /* Section Alignment */
4197 case '0': /* align to byte boundary */
4198 flags
|= IMAGE_SCN_ALIGN_1BYTES
;
4201 case '1': /* align to halfword boundary */
4202 flags
|= IMAGE_SCN_ALIGN_2BYTES
;
4205 case '2': /* align to word boundary */
4206 flags
|= IMAGE_SCN_ALIGN_4BYTES
;
4209 case '3': /* align to doubleword boundary */
4210 flags
|= IMAGE_SCN_ALIGN_8BYTES
;
4213 case '4': /* align to quadword boundary */
4214 flags
|= IMAGE_SCN_ALIGN_16BYTES
;
4217 case '5': /* align to 32 byte boundary */
4218 flags
|= IMAGE_SCN_ALIGN_32BYTES
;
4221 case '6': /* align to 64 byte boundary */
4222 flags
|= IMAGE_SCN_ALIGN_64BYTES
;
4227 as_bad (_("unknown section attribute '%c'"),
4228 *input_line_pointer
);
4231 ++input_line_pointer
;
4233 if (*input_line_pointer
== '"')
4234 ++input_line_pointer
;
4238 sec
= subseg_new (name
, (subsegT
) exp
);
4240 ppc_set_current_section (sec
);
4242 if (flags
!= SEC_NO_FLAGS
)
4244 if (! bfd_set_section_flags (stdoutput
, sec
, flags
))
4245 as_bad (_("error setting flags for \"%s\": %s"),
4246 bfd_section_name (stdoutput
, sec
),
4247 bfd_errmsg (bfd_get_error ()));
4250 bfd_set_section_alignment (stdoutput
, sec
, align
);
4255 ppc_pe_function (ignore
)
4256 int ignore ATTRIBUTE_UNUSED
;
4262 name
= input_line_pointer
;
4263 endc
= get_symbol_end ();
4265 ext_sym
= symbol_find_or_make (name
);
4267 *input_line_pointer
= endc
;
4269 S_SET_DATA_TYPE (ext_sym
, DT_FCN
<< N_BTSHFT
);
4270 SF_SET_FUNCTION (ext_sym
);
4271 SF_SET_PROCESS (ext_sym
);
4272 coff_add_linesym (ext_sym
);
4274 demand_empty_rest_of_line ();
4278 ppc_pe_tocd (ignore
)
4279 int ignore ATTRIBUTE_UNUSED
;
4281 if (tocdata_section
== 0)
4283 tocdata_section
= subseg_new (".tocd", 0);
4284 /* FIXME: section flags won't work. */
4285 bfd_set_section_flags (stdoutput
, tocdata_section
,
4286 (SEC_ALLOC
| SEC_LOAD
| SEC_RELOC
4287 | SEC_READONLY
| SEC_DATA
));
4289 bfd_set_section_alignment (stdoutput
, tocdata_section
, 2);
4293 rdata_section
= subseg_new (".tocd", 0);
4296 ppc_set_current_section (tocdata_section
);
4298 demand_empty_rest_of_line ();
4301 /* Don't adjust TOC relocs to use the section symbol. */
4304 ppc_pe_fix_adjustable (fix
)
4307 return fix
->fx_r_type
!= BFD_RELOC_PPC_TOC16
;
4314 /* XCOFF specific symbol and file handling. */
4316 /* Canonicalize the symbol name. We use the to force the suffix, if
4317 any, to use square brackets, and to be in upper case. */
4320 ppc_canonicalize_symbol_name (name
)
4325 if (ppc_stab_symbol
)
4328 for (s
= name
; *s
!= '\0' && *s
!= '{' && *s
!= '['; s
++)
4342 for (s
++; *s
!= '\0' && *s
!= brac
; s
++)
4345 if (*s
== '\0' || s
[1] != '\0')
4346 as_bad (_("bad symbol suffix"));
4354 /* Set the class of a symbol based on the suffix, if any. This is
4355 called whenever a new symbol is created. */
4358 ppc_symbol_new_hook (sym
)
4361 struct ppc_tc_sy
*tc
;
4364 tc
= symbol_get_tc (sym
);
4368 tc
->real_name
= NULL
;
4374 if (ppc_stab_symbol
)
4377 s
= strchr (S_GET_NAME (sym
), '[');
4378 if (s
== (const char *) NULL
)
4380 /* There is no suffix. */
4389 if (strcmp (s
, "BS]") == 0)
4393 if (strcmp (s
, "DB]") == 0)
4395 else if (strcmp (s
, "DS]") == 0)
4399 if (strcmp (s
, "GL]") == 0)
4403 if (strcmp (s
, "PR]") == 0)
4407 if (strcmp (s
, "RO]") == 0)
4409 else if (strcmp (s
, "RW]") == 0)
4413 if (strcmp (s
, "SV]") == 0)
4417 if (strcmp (s
, "TC]") == 0)
4419 else if (strcmp (s
, "TI]") == 0)
4421 else if (strcmp (s
, "TB]") == 0)
4423 else if (strcmp (s
, "TC0]") == 0 || strcmp (s
, "T0]") == 0)
4424 tc
->class = XMC_TC0
;
4427 if (strcmp (s
, "UA]") == 0)
4429 else if (strcmp (s
, "UC]") == 0)
4433 if (strcmp (s
, "XO]") == 0)
4438 if (tc
->class == -1)
4439 as_bad (_("Unrecognized symbol suffix"));
4442 /* Set the class of a label based on where it is defined. This
4443 handles symbols without suffixes. Also, move the symbol so that it
4444 follows the csect symbol. */
4447 ppc_frob_label (sym
)
4450 if (ppc_current_csect
!= (symbolS
*) NULL
)
4452 if (symbol_get_tc (sym
)->class == -1)
4453 symbol_get_tc (sym
)->class = symbol_get_tc (ppc_current_csect
)->class;
4455 symbol_remove (sym
, &symbol_rootP
, &symbol_lastP
);
4456 symbol_append (sym
, symbol_get_tc (ppc_current_csect
)->within
,
4457 &symbol_rootP
, &symbol_lastP
);
4458 symbol_get_tc (ppc_current_csect
)->within
= sym
;
4462 /* This variable is set by ppc_frob_symbol if any absolute symbols are
4463 seen. It tells ppc_adjust_symtab whether it needs to look through
4466 static boolean ppc_saw_abs
;
4468 /* Change the name of a symbol just before writing it out. Set the
4469 real name if the .rename pseudo-op was used. Otherwise, remove any
4470 class suffix. Return 1 if the symbol should not be included in the
4474 ppc_frob_symbol (sym
)
4477 static symbolS
*ppc_last_function
;
4478 static symbolS
*set_end
;
4480 /* Discard symbols that should not be included in the output symbol
4482 if (! symbol_used_in_reloc_p (sym
)
4483 && ((symbol_get_bfdsym (sym
)->flags
& BSF_SECTION_SYM
) != 0
4484 || (! S_IS_EXTERNAL (sym
)
4485 && ! symbol_get_tc (sym
)->output
4486 && S_GET_STORAGE_CLASS (sym
) != C_FILE
)))
4489 if (symbol_get_tc (sym
)->real_name
!= (char *) NULL
)
4490 S_SET_NAME (sym
, symbol_get_tc (sym
)->real_name
);
4496 name
= S_GET_NAME (sym
);
4497 s
= strchr (name
, '[');
4498 if (s
!= (char *) NULL
)
4504 snew
= xmalloc (len
+ 1);
4505 memcpy (snew
, name
, len
);
4508 S_SET_NAME (sym
, snew
);
4512 if (set_end
!= (symbolS
*) NULL
)
4514 SA_SET_SYM_ENDNDX (set_end
, sym
);
4518 if (SF_GET_FUNCTION (sym
))
4520 if (ppc_last_function
!= (symbolS
*) NULL
)
4521 as_bad (_("two .function pseudo-ops with no intervening .ef"));
4522 ppc_last_function
= sym
;
4523 if (symbol_get_tc (sym
)->size
!= (symbolS
*) NULL
)
4525 resolve_symbol_value (symbol_get_tc (sym
)->size
);
4526 SA_SET_SYM_FSIZE (sym
,
4527 (long) S_GET_VALUE (symbol_get_tc (sym
)->size
));
4530 else if (S_GET_STORAGE_CLASS (sym
) == C_FCN
4531 && strcmp (S_GET_NAME (sym
), ".ef") == 0)
4533 if (ppc_last_function
== (symbolS
*) NULL
)
4534 as_bad (_(".ef with no preceding .function"));
4537 set_end
= ppc_last_function
;
4538 ppc_last_function
= NULL
;
4540 /* We don't have a C_EFCN symbol, but we need to force the
4541 COFF backend to believe that it has seen one. */
4542 coff_last_function
= NULL
;
4546 if (! S_IS_EXTERNAL (sym
)
4547 && (symbol_get_bfdsym (sym
)->flags
& BSF_SECTION_SYM
) == 0
4548 && S_GET_STORAGE_CLASS (sym
) != C_FILE
4549 && S_GET_STORAGE_CLASS (sym
) != C_FCN
4550 && S_GET_STORAGE_CLASS (sym
) != C_BLOCK
4551 && S_GET_STORAGE_CLASS (sym
) != C_BSTAT
4552 && S_GET_STORAGE_CLASS (sym
) != C_ESTAT
4553 && S_GET_STORAGE_CLASS (sym
) != C_BINCL
4554 && S_GET_STORAGE_CLASS (sym
) != C_EINCL
4555 && S_GET_SEGMENT (sym
) != ppc_coff_debug_section
)
4556 S_SET_STORAGE_CLASS (sym
, C_HIDEXT
);
4558 if (S_GET_STORAGE_CLASS (sym
) == C_EXT
4559 || S_GET_STORAGE_CLASS (sym
) == C_HIDEXT
)
4562 union internal_auxent
*a
;
4564 /* Create a csect aux. */
4565 i
= S_GET_NUMBER_AUXILIARY (sym
);
4566 S_SET_NUMBER_AUXILIARY (sym
, i
+ 1);
4567 a
= &coffsymbol (symbol_get_bfdsym (sym
))->native
[i
+ 1].u
.auxent
;
4568 if (symbol_get_tc (sym
)->class == XMC_TC0
)
4570 /* This is the TOC table. */
4571 know (strcmp (S_GET_NAME (sym
), "TOC") == 0);
4572 a
->x_csect
.x_scnlen
.l
= 0;
4573 a
->x_csect
.x_smtyp
= (2 << 3) | XTY_SD
;
4575 else if (symbol_get_tc (sym
)->subseg
!= 0)
4577 /* This is a csect symbol. x_scnlen is the size of the
4579 if (symbol_get_tc (sym
)->next
== (symbolS
*) NULL
)
4580 a
->x_csect
.x_scnlen
.l
= (bfd_section_size (stdoutput
,
4581 S_GET_SEGMENT (sym
))
4582 - S_GET_VALUE (sym
));
4585 resolve_symbol_value (symbol_get_tc (sym
)->next
);
4586 a
->x_csect
.x_scnlen
.l
= (S_GET_VALUE (symbol_get_tc (sym
)->next
)
4587 - S_GET_VALUE (sym
));
4589 a
->x_csect
.x_smtyp
= (symbol_get_tc (sym
)->align
<< 3) | XTY_SD
;
4591 else if (S_GET_SEGMENT (sym
) == bss_section
)
4593 /* This is a common symbol. */
4594 a
->x_csect
.x_scnlen
.l
= symbol_get_frag (sym
)->fr_offset
;
4595 a
->x_csect
.x_smtyp
= (symbol_get_tc (sym
)->align
<< 3) | XTY_CM
;
4596 if (S_IS_EXTERNAL (sym
))
4597 symbol_get_tc (sym
)->class = XMC_RW
;
4599 symbol_get_tc (sym
)->class = XMC_BS
;
4601 else if (S_GET_SEGMENT (sym
) == absolute_section
)
4603 /* This is an absolute symbol. The csect will be created by
4604 ppc_adjust_symtab. */
4606 a
->x_csect
.x_smtyp
= XTY_LD
;
4607 if (symbol_get_tc (sym
)->class == -1)
4608 symbol_get_tc (sym
)->class = XMC_XO
;
4610 else if (! S_IS_DEFINED (sym
))
4612 /* This is an external symbol. */
4613 a
->x_csect
.x_scnlen
.l
= 0;
4614 a
->x_csect
.x_smtyp
= XTY_ER
;
4616 else if (symbol_get_tc (sym
)->class == XMC_TC
)
4620 /* This is a TOC definition. x_scnlen is the size of the
4622 next
= symbol_next (sym
);
4623 while (symbol_get_tc (next
)->class == XMC_TC0
)
4624 next
= symbol_next (next
);
4625 if (next
== (symbolS
*) NULL
4626 || symbol_get_tc (next
)->class != XMC_TC
)
4628 if (ppc_after_toc_frag
== (fragS
*) NULL
)
4629 a
->x_csect
.x_scnlen
.l
= (bfd_section_size (stdoutput
,
4631 - S_GET_VALUE (sym
));
4633 a
->x_csect
.x_scnlen
.l
= (ppc_after_toc_frag
->fr_address
4634 - S_GET_VALUE (sym
));
4638 resolve_symbol_value (next
);
4639 a
->x_csect
.x_scnlen
.l
= (S_GET_VALUE (next
)
4640 - S_GET_VALUE (sym
));
4642 a
->x_csect
.x_smtyp
= (2 << 3) | XTY_SD
;
4648 /* This is a normal symbol definition. x_scnlen is the
4649 symbol index of the containing csect. */
4650 if (S_GET_SEGMENT (sym
) == text_section
)
4651 csect
= ppc_text_csects
;
4652 else if (S_GET_SEGMENT (sym
) == data_section
)
4653 csect
= ppc_data_csects
;
4657 /* Skip the initial dummy symbol. */
4658 csect
= symbol_get_tc (csect
)->next
;
4660 if (csect
== (symbolS
*) NULL
)
4662 as_warn (_("warning: symbol %s has no csect"), S_GET_NAME (sym
));
4663 a
->x_csect
.x_scnlen
.l
= 0;
4667 while (symbol_get_tc (csect
)->next
!= (symbolS
*) NULL
)
4669 resolve_symbol_value (symbol_get_tc (csect
)->next
);
4670 if (S_GET_VALUE (symbol_get_tc (csect
)->next
)
4671 > S_GET_VALUE (sym
))
4673 csect
= symbol_get_tc (csect
)->next
;
4676 a
->x_csect
.x_scnlen
.p
=
4677 coffsymbol (symbol_get_bfdsym (csect
))->native
;
4678 coffsymbol (symbol_get_bfdsym (sym
))->native
[i
+ 1].fix_scnlen
=
4681 a
->x_csect
.x_smtyp
= XTY_LD
;
4684 a
->x_csect
.x_parmhash
= 0;
4685 a
->x_csect
.x_snhash
= 0;
4686 if (symbol_get_tc (sym
)->class == -1)
4687 a
->x_csect
.x_smclas
= XMC_PR
;
4689 a
->x_csect
.x_smclas
= symbol_get_tc (sym
)->class;
4690 a
->x_csect
.x_stab
= 0;
4691 a
->x_csect
.x_snstab
= 0;
4693 /* Don't let the COFF backend resort these symbols. */
4694 symbol_get_bfdsym (sym
)->flags
|= BSF_NOT_AT_END
;
4696 else if (S_GET_STORAGE_CLASS (sym
) == C_BSTAT
)
4698 /* We want the value to be the symbol index of the referenced
4699 csect symbol. BFD will do that for us if we set the right
4703 coffsymbol (symbol_get_bfdsym
4704 (symbol_get_tc (sym
)->within
))->native
));
4705 coffsymbol (symbol_get_bfdsym (sym
))->native
->fix_value
= 1;
4707 else if (S_GET_STORAGE_CLASS (sym
) == C_STSYM
)
4712 /* The value is the offset from the enclosing csect. */
4713 block
= symbol_get_tc (sym
)->within
;
4714 csect
= symbol_get_tc (block
)->within
;
4715 resolve_symbol_value (csect
);
4716 S_SET_VALUE (sym
, S_GET_VALUE (sym
) - S_GET_VALUE (csect
));
4718 else if (S_GET_STORAGE_CLASS (sym
) == C_BINCL
4719 || S_GET_STORAGE_CLASS (sym
) == C_EINCL
)
4721 /* We want the value to be a file offset into the line numbers.
4722 BFD will do that for us if we set the right flags. We have
4723 already set the value correctly. */
4724 coffsymbol (symbol_get_bfdsym (sym
))->native
->fix_line
= 1;
4730 /* Adjust the symbol table. This creates csect symbols for all
4731 absolute symbols. */
4734 ppc_adjust_symtab ()
4741 for (sym
= symbol_rootP
; sym
!= NULL
; sym
= symbol_next (sym
))
4745 union internal_auxent
*a
;
4747 if (S_GET_SEGMENT (sym
) != absolute_section
)
4750 csect
= symbol_create (".abs[XO]", absolute_section
,
4751 S_GET_VALUE (sym
), &zero_address_frag
);
4752 symbol_get_bfdsym (csect
)->value
= S_GET_VALUE (sym
);
4753 S_SET_STORAGE_CLASS (csect
, C_HIDEXT
);
4754 i
= S_GET_NUMBER_AUXILIARY (csect
);
4755 S_SET_NUMBER_AUXILIARY (csect
, i
+ 1);
4756 a
= &coffsymbol (symbol_get_bfdsym (csect
))->native
[i
+ 1].u
.auxent
;
4757 a
->x_csect
.x_scnlen
.l
= 0;
4758 a
->x_csect
.x_smtyp
= XTY_SD
;
4759 a
->x_csect
.x_parmhash
= 0;
4760 a
->x_csect
.x_snhash
= 0;
4761 a
->x_csect
.x_smclas
= XMC_XO
;
4762 a
->x_csect
.x_stab
= 0;
4763 a
->x_csect
.x_snstab
= 0;
4765 symbol_insert (csect
, sym
, &symbol_rootP
, &symbol_lastP
);
4767 i
= S_GET_NUMBER_AUXILIARY (sym
);
4768 a
= &coffsymbol (symbol_get_bfdsym (sym
))->native
[i
].u
.auxent
;
4769 a
->x_csect
.x_scnlen
.p
= coffsymbol (symbol_get_bfdsym (csect
))->native
;
4770 coffsymbol (symbol_get_bfdsym (sym
))->native
[i
].fix_scnlen
= 1;
4773 ppc_saw_abs
= false;
4776 /* Set the VMA for a section. This is called on all the sections in
4780 ppc_frob_section (sec
)
4783 static bfd_size_type vma
= 0;
4785 bfd_set_section_vma (stdoutput
, sec
, vma
);
4786 vma
+= bfd_section_size (stdoutput
, sec
);
4789 #endif /* OBJ_XCOFF */
4791 /* Turn a string in input_line_pointer into a floating point constant
4792 of type TYPE, and store the appropriate bytes in *LITP. The number
4793 of LITTLENUMS emitted is stored in *SIZEP. An error message is
4794 returned, or NULL on OK. */
4797 md_atof (type
, litp
, sizep
)
4803 LITTLENUM_TYPE words
[4];
4819 return _("bad call to md_atof");
4822 t
= atof_ieee (input_line_pointer
, type
, words
);
4824 input_line_pointer
= t
;
4828 if (target_big_endian
)
4830 for (i
= 0; i
< prec
; i
++)
4832 md_number_to_chars (litp
, (valueT
) words
[i
], 2);
4838 for (i
= prec
- 1; i
>= 0; i
--)
4840 md_number_to_chars (litp
, (valueT
) words
[i
], 2);
4848 /* Write a value out to the object file, using the appropriate
4852 md_number_to_chars (buf
, val
, n
)
4857 if (target_big_endian
)
4858 number_to_chars_bigendian (buf
, val
, n
);
4860 number_to_chars_littleendian (buf
, val
, n
);
4863 /* Align a section (I don't know why this is machine dependent). */
4866 md_section_align (seg
, addr
)
4870 int align
= bfd_get_section_alignment (stdoutput
, seg
);
4872 return ((addr
+ (1 << align
) - 1) & (-1 << align
));
4875 /* We don't have any form of relaxing. */
4878 md_estimate_size_before_relax (fragp
, seg
)
4879 fragS
*fragp ATTRIBUTE_UNUSED
;
4880 asection
*seg ATTRIBUTE_UNUSED
;
4886 /* Convert a machine dependent frag. We never generate these. */
4889 md_convert_frag (abfd
, sec
, fragp
)
4890 bfd
*abfd ATTRIBUTE_UNUSED
;
4891 asection
*sec ATTRIBUTE_UNUSED
;
4892 fragS
*fragp ATTRIBUTE_UNUSED
;
4897 /* We have no need to default values of symbols. */
4900 md_undefined_symbol (name
)
4901 char *name ATTRIBUTE_UNUSED
;
4906 /* Functions concerning relocs. */
4908 /* The location from which a PC relative jump should be calculated,
4909 given a PC relative reloc. */
4912 md_pcrel_from_section (fixp
, sec
)
4914 segT sec ATTRIBUTE_UNUSED
;
4916 return fixp
->fx_frag
->fr_address
+ fixp
->fx_where
;
4921 /* This is called to see whether a fixup should be adjusted to use a
4922 section symbol. We take the opportunity to change a fixup against
4923 a symbol in the TOC subsegment into a reloc against the
4924 corresponding .tc symbol. */
4927 ppc_fix_adjustable (fix
)
4932 resolve_symbol_value (fix
->fx_addsy
);
4933 val
= S_GET_VALUE (fix
->fx_addsy
);
4934 if (ppc_toc_csect
!= (symbolS
*) NULL
4935 && fix
->fx_addsy
!= (symbolS
*) NULL
4936 && fix
->fx_addsy
!= ppc_toc_csect
4937 && S_GET_SEGMENT (fix
->fx_addsy
) == data_section
4938 && val
>= ppc_toc_frag
->fr_address
4939 && (ppc_after_toc_frag
== (fragS
*) NULL
4940 || val
< ppc_after_toc_frag
->fr_address
))
4944 for (sy
= symbol_next (ppc_toc_csect
);
4945 sy
!= (symbolS
*) NULL
;
4946 sy
= symbol_next (sy
))
4948 if (symbol_get_tc (sy
)->class == XMC_TC0
)
4950 if (symbol_get_tc (sy
)->class != XMC_TC
)
4952 resolve_symbol_value (sy
);
4953 if (val
== S_GET_VALUE (sy
))
4956 fix
->fx_addnumber
= val
- ppc_toc_frag
->fr_address
;
4961 as_bad_where (fix
->fx_file
, fix
->fx_line
,
4962 _("symbol in .toc does not match any .tc"));
4965 /* Possibly adjust the reloc to be against the csect. */
4966 if (fix
->fx_addsy
!= (symbolS
*) NULL
4967 && symbol_get_tc (fix
->fx_addsy
)->subseg
== 0
4968 && symbol_get_tc (fix
->fx_addsy
)->class != XMC_TC0
4969 && symbol_get_tc (fix
->fx_addsy
)->class != XMC_TC
4970 && S_GET_SEGMENT (fix
->fx_addsy
) != bss_section
4971 /* Don't adjust if this is a reloc in the toc section. */
4972 && (S_GET_SEGMENT (fix
->fx_addsy
) != data_section
4973 || ppc_toc_csect
== NULL
4974 || val
< ppc_toc_frag
->fr_address
4975 || (ppc_after_toc_frag
!= NULL
4976 && val
>= ppc_after_toc_frag
->fr_address
)))
4980 if (S_GET_SEGMENT (fix
->fx_addsy
) == text_section
)
4981 csect
= ppc_text_csects
;
4982 else if (S_GET_SEGMENT (fix
->fx_addsy
) == data_section
)
4983 csect
= ppc_data_csects
;
4987 /* Skip the initial dummy symbol. */
4988 csect
= symbol_get_tc (csect
)->next
;
4990 if (csect
!= (symbolS
*) NULL
)
4992 while (symbol_get_tc (csect
)->next
!= (symbolS
*) NULL
4993 && (symbol_get_frag (symbol_get_tc (csect
)->next
)->fr_address
4996 /* If the csect address equals the symbol value, then we
4997 have to look through the full symbol table to see
4998 whether this is the csect we want. Note that we will
4999 only get here if the csect has zero length. */
5000 if ((symbol_get_frag (csect
)->fr_address
== val
)
5001 && S_GET_VALUE (csect
) == S_GET_VALUE (fix
->fx_addsy
))
5005 for (scan
= symbol_next (csect
);
5007 scan
= symbol_next (scan
))
5009 if (symbol_get_tc (scan
)->subseg
!= 0)
5011 if (scan
== fix
->fx_addsy
)
5015 /* If we found the symbol before the next csect
5016 symbol, then this is the csect we want. */
5017 if (scan
== fix
->fx_addsy
)
5021 csect
= symbol_get_tc (csect
)->next
;
5024 fix
->fx_offset
+= (S_GET_VALUE (fix
->fx_addsy
)
5025 - symbol_get_frag (csect
)->fr_address
);
5026 fix
->fx_addsy
= csect
;
5030 /* Adjust a reloc against a .lcomm symbol to be against the base
5032 if (fix
->fx_addsy
!= (symbolS
*) NULL
5033 && S_GET_SEGMENT (fix
->fx_addsy
) == bss_section
5034 && ! S_IS_EXTERNAL (fix
->fx_addsy
))
5036 resolve_symbol_value (symbol_get_frag (fix
->fx_addsy
)->fr_symbol
);
5038 (S_GET_VALUE (fix
->fx_addsy
)
5039 - S_GET_VALUE (symbol_get_frag (fix
->fx_addsy
)->fr_symbol
));
5040 fix
->fx_addsy
= symbol_get_frag (fix
->fx_addsy
)->fr_symbol
;
5046 /* A reloc from one csect to another must be kept. The assembler
5047 will, of course, keep relocs between sections, and it will keep
5048 absolute relocs, but we need to force it to keep PC relative relocs
5049 between two csects in the same section. */
5052 ppc_force_relocation (fix
)
5055 /* At this point fix->fx_addsy should already have been converted to
5056 a csect symbol. If the csect does not include the fragment, then
5057 we need to force the relocation. */
5059 && fix
->fx_addsy
!= NULL
5060 && symbol_get_tc (fix
->fx_addsy
)->subseg
!= 0
5061 && ((symbol_get_frag (fix
->fx_addsy
)->fr_address
5062 > fix
->fx_frag
->fr_address
)
5063 || (symbol_get_tc (fix
->fx_addsy
)->next
!= NULL
5064 && (symbol_get_frag (symbol_get_tc (fix
->fx_addsy
)->next
)->fr_address
5065 <= fix
->fx_frag
->fr_address
))))
5071 #endif /* OBJ_XCOFF */
5075 ppc_fix_adjustable (fix
)
5078 return (fix
->fx_r_type
!= BFD_RELOC_16_GOTOFF
5079 && fix
->fx_r_type
!= BFD_RELOC_LO16_GOTOFF
5080 && fix
->fx_r_type
!= BFD_RELOC_HI16_GOTOFF
5081 && fix
->fx_r_type
!= BFD_RELOC_HI16_S_GOTOFF
5082 && fix
->fx_r_type
!= BFD_RELOC_GPREL16
5083 && fix
->fx_r_type
!= BFD_RELOC_VTABLE_INHERIT
5084 && fix
->fx_r_type
!= BFD_RELOC_VTABLE_ENTRY
5085 && ! S_IS_EXTERNAL (fix
->fx_addsy
)
5086 && ! S_IS_WEAK (fix
->fx_addsy
)
5088 || (fix
->fx_subsy
!= NULL
5089 && (S_GET_SEGMENT (fix
->fx_subsy
)
5090 == S_GET_SEGMENT (fix
->fx_addsy
)))
5091 || S_IS_LOCAL (fix
->fx_addsy
)));
5095 /* Apply a fixup to the object code. This is called for all the
5096 fixups we generated by the call to fix_new_exp, above. In the call
5097 above we used a reloc code which was the largest legal reloc code
5098 plus the operand index. Here we undo that to recover the operand
5099 index. At this point all symbol values should be fully resolved,
5100 and we attempt to completely resolve the reloc. If we can not do
5101 that, we determine the correct reloc code and put it back in the
5105 md_apply_fix3 (fixP
, valP
, seg
)
5108 segT seg ATTRIBUTE_UNUSED
;
5110 valueT value
= * valP
;
5113 if (fixP
->fx_addsy
!= NULL
)
5115 /* `*valuep' may contain the value of the symbol on which the reloc
5116 will be based; we have to remove it. */
5117 if (symbol_used_in_reloc_p (fixP
->fx_addsy
)
5118 && S_GET_SEGMENT (fixP
->fx_addsy
) != absolute_section
5119 && S_GET_SEGMENT (fixP
->fx_addsy
) != undefined_section
5120 && ! bfd_is_com_section (S_GET_SEGMENT (fixP
->fx_addsy
)))
5121 value
-= S_GET_VALUE (fixP
->fx_addsy
);
5123 /* FIXME: Why '+'? Better yet, what exactly is '*valuep'
5124 supposed to be? I think this is related to various similar
5125 FIXMEs in tc-i386.c and tc-sparc.c. */
5127 value
+= fixP
->fx_frag
->fr_address
+ fixP
->fx_where
;
5132 /* FIXME FIXME FIXME: The value we are passed in *valuep includes
5133 the symbol values. Since we are using BFD_ASSEMBLER, if we are
5134 doing this relocation the code in write.c is going to call
5135 bfd_install_relocation, which is also going to use the symbol
5136 value. That means that if the reloc is fully resolved we want to
5137 use *valuep since bfd_install_relocation is not being used.
5138 However, if the reloc is not fully resolved we do not want to use
5139 *valuep, and must use fx_offset instead. However, if the reloc
5140 is PC relative, we do want to use *valuep since it includes the
5141 result of md_pcrel_from. This is confusing. */
5142 if (fixP
->fx_addsy
== (symbolS
*) NULL
)
5145 else if (fixP
->fx_pcrel
)
5150 value
= fixP
->fx_offset
;
5151 if (fixP
->fx_subsy
!= (symbolS
*) NULL
)
5153 if (S_GET_SEGMENT (fixP
->fx_subsy
) == absolute_section
)
5154 value
-= S_GET_VALUE (fixP
->fx_subsy
);
5157 /* We can't actually support subtracting a symbol. */
5158 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
5159 _("expression too complex"));
5165 if ((int) fixP
->fx_r_type
>= (int) BFD_RELOC_UNUSED
)
5168 const struct powerpc_operand
*operand
;
5172 opindex
= (int) fixP
->fx_r_type
- (int) BFD_RELOC_UNUSED
;
5174 operand
= &powerpc_operands
[opindex
];
5177 /* An instruction like `lwz 9,sym(30)' when `sym' is not a TOC symbol
5178 does not generate a reloc. It uses the offset of `sym' within its
5179 csect. Other usages, such as `.long sym', generate relocs. This
5180 is the documented behaviour of non-TOC symbols. */
5181 if ((operand
->flags
& PPC_OPERAND_PARENS
) != 0
5182 && operand
->bits
== 16
5183 && operand
->shift
== 0
5184 && (operand
->insert
== NULL
|| ppc_obj64
)
5185 && fixP
->fx_addsy
!= NULL
5186 && symbol_get_tc (fixP
->fx_addsy
)->subseg
!= 0
5187 && symbol_get_tc (fixP
->fx_addsy
)->class != XMC_TC
5188 && symbol_get_tc (fixP
->fx_addsy
)->class != XMC_TC0
5189 && S_GET_SEGMENT (fixP
->fx_addsy
) != bss_section
)
5191 value
= fixP
->fx_offset
;
5196 /* Fetch the instruction, insert the fully resolved operand
5197 value, and stuff the instruction back again. */
5198 where
= fixP
->fx_frag
->fr_literal
+ fixP
->fx_where
;
5199 if (target_big_endian
)
5200 insn
= bfd_getb32 ((unsigned char *) where
);
5202 insn
= bfd_getl32 ((unsigned char *) where
);
5203 insn
= ppc_insert_operand (insn
, operand
, (offsetT
) value
,
5204 fixP
->fx_file
, fixP
->fx_line
);
5205 if (target_big_endian
)
5206 bfd_putb32 ((bfd_vma
) insn
, (unsigned char *) where
);
5208 bfd_putl32 ((bfd_vma
) insn
, (unsigned char *) where
);
5211 /* Nothing else to do here. */
5214 assert (fixP
->fx_addsy
!= NULL
);
5216 /* Determine a BFD reloc value based on the operand information.
5217 We are only prepared to turn a few of the operands into
5219 if ((operand
->flags
& PPC_OPERAND_RELATIVE
) != 0
5220 && operand
->bits
== 26
5221 && operand
->shift
== 0)
5222 fixP
->fx_r_type
= BFD_RELOC_PPC_B26
;
5223 else if ((operand
->flags
& PPC_OPERAND_RELATIVE
) != 0
5224 && operand
->bits
== 16
5225 && operand
->shift
== 0)
5227 fixP
->fx_r_type
= BFD_RELOC_PPC_B16
;
5230 if (target_big_endian
)
5231 fixP
->fx_where
+= 2;
5234 else if ((operand
->flags
& PPC_OPERAND_ABSOLUTE
) != 0
5235 && operand
->bits
== 26
5236 && operand
->shift
== 0)
5237 fixP
->fx_r_type
= BFD_RELOC_PPC_BA26
;
5238 else if ((operand
->flags
& PPC_OPERAND_ABSOLUTE
) != 0
5239 && operand
->bits
== 16
5240 && operand
->shift
== 0)
5242 fixP
->fx_r_type
= BFD_RELOC_PPC_BA16
;
5245 if (target_big_endian
)
5246 fixP
->fx_where
+= 2;
5249 #if defined (OBJ_XCOFF) || defined (OBJ_ELF)
5250 else if ((operand
->flags
& PPC_OPERAND_PARENS
) != 0
5251 && operand
->bits
== 16
5252 && operand
->shift
== 0
5253 && ppc_is_toc_sym (fixP
->fx_addsy
))
5255 fixP
->fx_r_type
= BFD_RELOC_PPC_TOC16
;
5258 && (operand
->flags
& PPC_OPERAND_DS
) != 0)
5259 fixP
->fx_r_type
= BFD_RELOC_PPC64_TOC16_DS
;
5262 if (target_big_endian
)
5263 fixP
->fx_where
+= 2;
5265 #endif /* defined (OBJ_XCOFF) || defined (OBJ_ELF) */
5271 /* Use expr_symbol_where to see if this is an expression
5273 if (expr_symbol_where (fixP
->fx_addsy
, &sfile
, &sline
))
5274 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
5275 _("unresolved expression that must be resolved"));
5277 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
5278 _("unsupported relocation against %s"),
5279 S_GET_NAME (fixP
->fx_addsy
));
5287 ppc_elf_validate_fix (fixP
, seg
);
5289 switch (fixP
->fx_r_type
)
5291 case BFD_RELOC_CTOR
:
5298 fixP
->fx_r_type
= BFD_RELOC_32_PCREL
;
5302 case BFD_RELOC_32_PCREL
:
5303 case BFD_RELOC_PPC_EMB_NADDR32
:
5304 md_number_to_chars (fixP
->fx_frag
->fr_literal
+ fixP
->fx_where
,
5311 fixP
->fx_r_type
= BFD_RELOC_64_PCREL
;
5314 case BFD_RELOC_64_PCREL
:
5315 md_number_to_chars (fixP
->fx_frag
->fr_literal
+ fixP
->fx_where
,
5319 case BFD_RELOC_LO16
:
5321 case BFD_RELOC_GPREL16
:
5322 case BFD_RELOC_16_GOT_PCREL
:
5323 case BFD_RELOC_16_GOTOFF
:
5324 case BFD_RELOC_LO16_GOTOFF
:
5325 case BFD_RELOC_HI16_GOTOFF
:
5326 case BFD_RELOC_HI16_S_GOTOFF
:
5327 case BFD_RELOC_16_BASEREL
:
5328 case BFD_RELOC_LO16_BASEREL
:
5329 case BFD_RELOC_HI16_BASEREL
:
5330 case BFD_RELOC_HI16_S_BASEREL
:
5331 case BFD_RELOC_PPC_EMB_NADDR16
:
5332 case BFD_RELOC_PPC_EMB_NADDR16_LO
:
5333 case BFD_RELOC_PPC_EMB_NADDR16_HI
:
5334 case BFD_RELOC_PPC_EMB_NADDR16_HA
:
5335 case BFD_RELOC_PPC_EMB_SDAI16
:
5336 case BFD_RELOC_PPC_EMB_SDA2REL
:
5337 case BFD_RELOC_PPC_EMB_SDA2I16
:
5338 case BFD_RELOC_PPC_EMB_RELSEC16
:
5339 case BFD_RELOC_PPC_EMB_RELST_LO
:
5340 case BFD_RELOC_PPC_EMB_RELST_HI
:
5341 case BFD_RELOC_PPC_EMB_RELST_HA
:
5342 case BFD_RELOC_PPC_EMB_RELSDA
:
5343 case BFD_RELOC_PPC_TOC16
:
5345 case BFD_RELOC_PPC64_TOC16_LO
:
5346 case BFD_RELOC_PPC64_TOC16_HI
:
5347 case BFD_RELOC_PPC64_TOC16_HA
:
5351 if (fixP
->fx_addsy
!= NULL
)
5352 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
5353 _("cannot emit PC relative %s relocation against %s"),
5354 bfd_get_reloc_code_name (fixP
->fx_r_type
),
5355 S_GET_NAME (fixP
->fx_addsy
));
5357 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
5358 _("cannot emit PC relative %s relocation"),
5359 bfd_get_reloc_code_name (fixP
->fx_r_type
));
5362 md_number_to_chars (fixP
->fx_frag
->fr_literal
+ fixP
->fx_where
,
5366 /* This case happens when you write, for example,
5368 where L1 and L2 are defined later. */
5369 case BFD_RELOC_HI16
:
5372 md_number_to_chars (fixP
->fx_frag
->fr_literal
+ fixP
->fx_where
,
5376 case BFD_RELOC_HI16_S
:
5379 md_number_to_chars (fixP
->fx_frag
->fr_literal
+ fixP
->fx_where
,
5384 case BFD_RELOC_PPC64_HIGHER
:
5387 md_number_to_chars (fixP
->fx_frag
->fr_literal
+ fixP
->fx_where
,
5388 PPC_HIGHER (value
), 2);
5391 case BFD_RELOC_PPC64_HIGHER_S
:
5394 md_number_to_chars (fixP
->fx_frag
->fr_literal
+ fixP
->fx_where
,
5395 PPC_HIGHERA (value
), 2);
5398 case BFD_RELOC_PPC64_HIGHEST
:
5401 md_number_to_chars (fixP
->fx_frag
->fr_literal
+ fixP
->fx_where
,
5402 PPC_HIGHEST (value
), 2);
5405 case BFD_RELOC_PPC64_HIGHEST_S
:
5408 md_number_to_chars (fixP
->fx_frag
->fr_literal
+ fixP
->fx_where
,
5409 PPC_HIGHESTA (value
), 2);
5412 case BFD_RELOC_PPC64_ADDR16_DS
:
5413 case BFD_RELOC_PPC64_ADDR16_LO_DS
:
5414 case BFD_RELOC_PPC64_GOT16_DS
:
5415 case BFD_RELOC_PPC64_GOT16_LO_DS
:
5416 case BFD_RELOC_PPC64_PLT16_LO_DS
:
5417 case BFD_RELOC_PPC64_SECTOFF_DS
:
5418 case BFD_RELOC_PPC64_SECTOFF_LO_DS
:
5419 case BFD_RELOC_PPC64_TOC16_DS
:
5420 case BFD_RELOC_PPC64_TOC16_LO_DS
:
5421 case BFD_RELOC_PPC64_PLTGOT16_DS
:
5422 case BFD_RELOC_PPC64_PLTGOT16_LO_DS
:
5426 unsigned char *where
= fixP
->fx_frag
->fr_literal
+ fixP
->fx_where
;
5429 if (target_big_endian
)
5430 val
= bfd_getb16 (where
);
5432 val
= bfd_getl16 (where
);
5433 val
|= (value
& 0xfffc);
5434 if (target_big_endian
)
5435 bfd_putb16 ((bfd_vma
) val
, where
);
5437 bfd_putl16 ((bfd_vma
) val
, where
);
5441 /* Because SDA21 modifies the register field, the size is set to 4
5442 bytes, rather than 2, so offset it here appropriately. */
5443 case BFD_RELOC_PPC_EMB_SDA21
:
5447 md_number_to_chars (fixP
->fx_frag
->fr_literal
+ fixP
->fx_where
5448 + ((target_big_endian
) ? 2 : 0),
5456 md_number_to_chars (fixP
->fx_frag
->fr_literal
+ fixP
->fx_where
,
5460 case BFD_RELOC_24_PLT_PCREL
:
5461 case BFD_RELOC_PPC_LOCAL24PC
:
5462 if (!fixP
->fx_pcrel
&& !fixP
->fx_done
)
5470 /* Fetch the instruction, insert the fully resolved operand
5471 value, and stuff the instruction back again. */
5472 where
= fixP
->fx_frag
->fr_literal
+ fixP
->fx_where
;
5473 if (target_big_endian
)
5474 insn
= bfd_getb32 ((unsigned char *) where
);
5476 insn
= bfd_getl32 ((unsigned char *) where
);
5477 if ((value
& 3) != 0)
5478 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
5479 _("must branch to an address a multiple of 4"));
5480 if ((offsetT
) value
< -0x40000000
5481 || (offsetT
) value
>= 0x40000000)
5482 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
5483 _("@local or @plt branch destination is too far away, %ld bytes"),
5485 insn
= insn
| (value
& 0x03fffffc);
5486 if (target_big_endian
)
5487 bfd_putb32 ((bfd_vma
) insn
, (unsigned char *) where
);
5489 bfd_putl32 ((bfd_vma
) insn
, (unsigned char *) where
);
5493 case BFD_RELOC_VTABLE_INHERIT
:
5496 && !S_IS_DEFINED (fixP
->fx_addsy
)
5497 && !S_IS_WEAK (fixP
->fx_addsy
))
5498 S_SET_WEAK (fixP
->fx_addsy
);
5501 case BFD_RELOC_VTABLE_ENTRY
:
5506 /* Generated by reference to `sym@tocbase'. The sym is
5507 ignored by the linker. */
5508 case BFD_RELOC_PPC64_TOC
:
5514 _("Gas failure, reloc value %d\n"), fixP
->fx_r_type
);
5521 fixP
->fx_addnumber
= value
;
5523 if (fixP
->fx_r_type
!= BFD_RELOC_PPC_TOC16
)
5524 fixP
->fx_addnumber
= 0;
5528 fixP
->fx_addnumber
= 0;
5530 /* We want to use the offset within the data segment of the
5531 symbol, not the actual VMA of the symbol. */
5532 fixP
->fx_addnumber
=
5533 - bfd_get_section_vma (stdoutput
, S_GET_SEGMENT (fixP
->fx_addsy
));
5539 /* Generate a reloc for a fixup. */
5542 tc_gen_reloc (seg
, fixp
)
5543 asection
*seg ATTRIBUTE_UNUSED
;
5548 reloc
= (arelent
*) xmalloc (sizeof (arelent
));
5550 reloc
->sym_ptr_ptr
= (asymbol
**) xmalloc (sizeof (asymbol
*));
5551 *reloc
->sym_ptr_ptr
= symbol_get_bfdsym (fixp
->fx_addsy
);
5552 reloc
->address
= fixp
->fx_frag
->fr_address
+ fixp
->fx_where
;
5553 reloc
->howto
= bfd_reloc_type_lookup (stdoutput
, fixp
->fx_r_type
);
5554 if (reloc
->howto
== (reloc_howto_type
*) NULL
)
5556 as_bad_where (fixp
->fx_file
, fixp
->fx_line
,
5557 _("reloc %d not supported by object file format"),
5558 (int) fixp
->fx_r_type
);
5561 reloc
->addend
= fixp
->fx_addnumber
;