1 /* tc-ppc.c -- Assemble for the PowerPC or POWER (RS/6000)
2 Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001
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", 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 int ppc_cpu
= 0;
700 /* The size of the processor we are assembling for. This is either
701 PPC_OPCODE_32 or PPC_OPCODE_64. */
702 static unsigned long ppc_size
= (BFD_DEFAULT_TARGET_SIZE
== 64
706 /* Whether to target xcoff64. */
707 static int ppc_xcoff64
= 0;
709 /* Opcode hash table. */
710 static struct hash_control
*ppc_hash
;
712 /* Macro hash table. */
713 static struct hash_control
*ppc_macro_hash
;
716 /* What type of shared library support to use. */
717 static enum { SHLIB_NONE
, SHLIB_PIC
, SHLIB_MRELOCATABLE
} shlib
= SHLIB_NONE
;
719 /* Flags to set in the elf header. */
720 static flagword ppc_flags
= 0;
722 /* Whether this is Solaris or not. */
723 #ifdef TARGET_SOLARIS_COMMENT
724 #define SOLARIS_P true
726 #define SOLARIS_P false
729 static boolean msolaris
= SOLARIS_P
;
734 /* The RS/6000 assembler uses the .csect pseudo-op to generate code
735 using a bunch of different sections. These assembler sections,
736 however, are all encompassed within the .text or .data sections of
737 the final output file. We handle this by using different
738 subsegments within these main segments. */
740 /* Next subsegment to allocate within the .text segment. */
741 static subsegT ppc_text_subsegment
= 2;
743 /* Linked list of csects in the text section. */
744 static symbolS
*ppc_text_csects
;
746 /* Next subsegment to allocate within the .data segment. */
747 static subsegT ppc_data_subsegment
= 2;
749 /* Linked list of csects in the data section. */
750 static symbolS
*ppc_data_csects
;
752 /* The current csect. */
753 static symbolS
*ppc_current_csect
;
755 /* The RS/6000 assembler uses a TOC which holds addresses of functions
756 and variables. Symbols are put in the TOC with the .tc pseudo-op.
757 A special relocation is used when accessing TOC entries. We handle
758 the TOC as a subsegment within the .data segment. We set it up if
759 we see a .toc pseudo-op, and save the csect symbol here. */
760 static symbolS
*ppc_toc_csect
;
762 /* The first frag in the TOC subsegment. */
763 static fragS
*ppc_toc_frag
;
765 /* The first frag in the first subsegment after the TOC in the .data
766 segment. NULL if there are no subsegments after the TOC. */
767 static fragS
*ppc_after_toc_frag
;
769 /* The current static block. */
770 static symbolS
*ppc_current_block
;
772 /* The COFF debugging section; set by md_begin. This is not the
773 .debug section, but is instead the secret BFD section which will
774 cause BFD to set the section number of a symbol to N_DEBUG. */
775 static asection
*ppc_coff_debug_section
;
777 #endif /* OBJ_XCOFF */
781 /* Various sections that we need for PE coff support. */
782 static segT ydata_section
;
783 static segT pdata_section
;
784 static segT reldata_section
;
785 static segT rdata_section
;
786 static segT tocdata_section
;
788 /* The current section and the previous section. See ppc_previous. */
789 static segT ppc_previous_section
;
790 static segT ppc_current_section
;
795 symbolS
*GOT_symbol
; /* Pre-defined "_GLOBAL_OFFSET_TABLE" */
799 const char *const md_shortopts
= "b:l:usm:K:VQ:";
801 const char *const md_shortopts
= "um:";
803 const struct option md_longopts
[] = {
804 {NULL
, no_argument
, NULL
, 0}
806 const size_t md_longopts_size
= sizeof (md_longopts
);
809 md_parse_option (c
, arg
)
816 /* -u means that any undefined symbols should be treated as
817 external, which is the default for gas anyhow. */
822 /* Solaris as takes -le (presumably for little endian). For completeness
823 sake, recognize -be also. */
824 if (strcmp (arg
, "e") == 0)
826 target_big_endian
= 0;
827 set_target_endian
= 1;
835 if (strcmp (arg
, "e") == 0)
837 target_big_endian
= 1;
838 set_target_endian
= 1;
846 /* Recognize -K PIC. */
847 if (strcmp (arg
, "PIC") == 0 || strcmp (arg
, "pic") == 0)
850 ppc_flags
|= EF_PPC_RELOCATABLE_LIB
;
858 /* a64 and a32 determine whether to use XCOFF64 or XCOFF32. */
860 if (strcmp (arg
, "64") == 0)
862 else if (strcmp (arg
, "32") == 0)
869 /* Most CPU's are 32 bit. Exceptions are listed below. */
870 ppc_size
= PPC_OPCODE_32
;
872 /* -mpwrx and -mpwr2 mean to assemble for the IBM POWER/2
874 if (strcmp (arg
, "pwrx") == 0 || strcmp (arg
, "pwr2") == 0)
875 ppc_cpu
= PPC_OPCODE_POWER
| PPC_OPCODE_POWER2
;
876 /* -mpwr means to assemble for the IBM POWER (RIOS1). */
877 else if (strcmp (arg
, "pwr") == 0)
878 ppc_cpu
= PPC_OPCODE_POWER
;
879 /* -m601 means to assemble for the Motorola PowerPC 601, which includes
880 instructions that are holdovers from the Power. */
881 else if (strcmp (arg
, "601") == 0)
882 ppc_cpu
= PPC_OPCODE_PPC
| PPC_OPCODE_601
;
883 /* -mppc, -mppc32, -m603, and -m604 mean to assemble for the
884 Motorola PowerPC 603/604. */
885 else if (strcmp (arg
, "ppc") == 0
886 || strcmp (arg
, "ppc32") == 0
887 || strcmp (arg
, "603") == 0
888 || strcmp (arg
, "604") == 0)
889 ppc_cpu
= PPC_OPCODE_PPC
;
890 /* -m403 and -m405 mean to assemble for the Motorola PowerPC 403/405. */
891 else if (strcmp (arg
, "403") == 0
892 || strcmp (arg
, "405") == 0)
893 ppc_cpu
= PPC_OPCODE_PPC
| PPC_OPCODE_403
;
894 else if (strcmp (arg
, "7400") == 0
895 || strcmp (arg
, "7410") == 0
896 || strcmp (arg
, "7450") == 0
897 || strcmp (arg
, "7455") == 0)
898 ppc_cpu
= PPC_OPCODE_PPC
| PPC_OPCODE_ALTIVEC
;
899 else if (strcmp (arg
, "altivec") == 0)
900 ppc_cpu
|= PPC_OPCODE_ALTIVEC
;
901 /* -mppc64 and -m620 mean to assemble for the 64-bit PowerPC
903 else if (strcmp (arg
, "ppc64") == 0 || strcmp (arg
, "620") == 0)
905 ppc_cpu
= PPC_OPCODE_PPC
| PPC_OPCODE_64
;
906 ppc_size
= PPC_OPCODE_64
;
908 else if (strcmp (arg
, "ppc64bridge") == 0)
910 ppc_cpu
= PPC_OPCODE_PPC
| PPC_OPCODE_64_BRIDGE
| PPC_OPCODE_64
;
911 ppc_size
= PPC_OPCODE_64
;
913 /* -mbooke/-mbooke32 mean enable 32-bit BookE support. */
914 else if (strcmp (arg
, "booke") == 0 || strcmp (arg
, "booke32") == 0)
915 ppc_cpu
= PPC_OPCODE_PPC
| PPC_OPCODE_BOOKE
;
916 /* -mbooke64 means enable 64-bit BookE support. */
917 else if (strcmp (arg
, "booke64") == 0)
919 ppc_cpu
= PPC_OPCODE_PPC
| PPC_OPCODE_BOOKE
|
920 PPC_OPCODE_BOOKE64
| PPC_OPCODE_64
;
921 ppc_size
= PPC_OPCODE_64
;
923 /* -mcom means assemble for the common intersection between Power
924 and PowerPC. At present, we just allow the union, rather
925 than the intersection. */
926 else if (strcmp (arg
, "com") == 0)
927 ppc_cpu
= PPC_OPCODE_COMMON
;
928 /* -many means to assemble for any architecture (PWR/PWRX/PPC). */
929 else if (strcmp (arg
, "any") == 0)
930 ppc_cpu
= PPC_OPCODE_ANY
;
932 else if (strcmp (arg
, "regnames") == 0)
935 else if (strcmp (arg
, "no-regnames") == 0)
939 /* -mrelocatable/-mrelocatable-lib -- warn about initializations
940 that require relocation. */
941 else if (strcmp (arg
, "relocatable") == 0)
943 shlib
= SHLIB_MRELOCATABLE
;
944 ppc_flags
|= EF_PPC_RELOCATABLE
;
947 else if (strcmp (arg
, "relocatable-lib") == 0)
949 shlib
= SHLIB_MRELOCATABLE
;
950 ppc_flags
|= EF_PPC_RELOCATABLE_LIB
;
953 /* -memb, set embedded bit. */
954 else if (strcmp (arg
, "emb") == 0)
955 ppc_flags
|= EF_PPC_EMB
;
957 /* -mlittle/-mbig set the endianess. */
958 else if (strcmp (arg
, "little") == 0
959 || strcmp (arg
, "little-endian") == 0)
961 target_big_endian
= 0;
962 set_target_endian
= 1;
965 else if (strcmp (arg
, "big") == 0 || strcmp (arg
, "big-endian") == 0)
967 target_big_endian
= 1;
968 set_target_endian
= 1;
971 else if (strcmp (arg
, "solaris") == 0)
974 ppc_comment_chars
= ppc_solaris_comment_chars
;
977 else if (strcmp (arg
, "no-solaris") == 0)
980 ppc_comment_chars
= ppc_eabi_comment_chars
;
985 as_bad (_("invalid switch -m%s"), arg
);
991 /* -V: SVR4 argument to print version ID. */
996 /* -Qy, -Qn: SVR4 arguments controlling whether a .comment section
997 should be emitted or not. FIXME: Not implemented. */
1001 /* Solaris takes -s to specify that .stabs go in a .stabs section,
1002 rather than .stabs.excl, which is ignored by the linker.
1003 FIXME: Not implemented. */
1019 md_show_usage (stream
)
1022 fprintf (stream
, _("\
1025 -mpwrx, -mpwr2 generate code for IBM POWER/2 (RIOS2)\n\
1026 -mpwr generate code for IBM POWER (RIOS1)\n\
1027 -m601 generate code for Motorola PowerPC 601\n\
1028 -mppc, -mppc32, -m603, -m604\n\
1029 generate code for Motorola PowerPC 603/604\n\
1030 -m403, -m405 generate code for Motorola PowerPC 403/405\n\
1031 -m7400, -m7410, -m7450, -m7455\n\
1032 generate code For Motorola PowerPC 7400/7410/7450/7455\n\
1033 -mppc64, -m620 generate code for Motorola PowerPC 620\n\
1034 -mppc64bridge generate code for PowerPC 64, including bridge insns\n\
1035 -mbooke64 generate code for 64-bit Motorola BookE\n\
1036 -mbooke, mbooke32 generate code for 32-bit Motorola BookE\n\
1037 -maltivec generate code for AltiVec\n\
1038 -mcom generate code Power/PowerPC common instructions\n\
1039 -many generate code for any architecture (PWR/PWRX/PPC)\n\
1040 -mregnames Allow symbolic names for registers\n\
1041 -mno-regnames Do not allow symbolic names for registers\n"));
1043 fprintf (stream
, _("\
1044 -mrelocatable support for GCC's -mrelocatble option\n\
1045 -mrelocatable-lib support for GCC's -mrelocatble-lib option\n\
1046 -memb set PPC_EMB bit in ELF flags\n\
1047 -mlittle, -mlittle-endian\n\
1048 generate code for a little endian machine\n\
1049 -mbig, -mbig-endian generate code for a big endian machine\n\
1050 -msolaris generate code for Solaris\n\
1051 -mno-solaris do not generate code for Solaris\n\
1052 -V print assembler version number\n\
1053 -Qy, -Qn ignored\n"));
1057 /* Set ppc_cpu if it is not already set. */
1062 const char *default_os
= TARGET_OS
;
1063 const char *default_cpu
= TARGET_CPU
;
1067 if (strncmp (default_os
, "aix", 3) == 0
1068 && default_os
[3] >= '4' && default_os
[3] <= '9')
1069 ppc_cpu
= PPC_OPCODE_COMMON
;
1070 else if (strncmp (default_os
, "aix3", 4) == 0)
1071 ppc_cpu
= PPC_OPCODE_POWER
;
1072 else if (strcmp (default_cpu
, "rs6000") == 0)
1073 ppc_cpu
= PPC_OPCODE_POWER
;
1074 else if (strncmp (default_cpu
, "powerpc", 7) == 0)
1075 ppc_cpu
= PPC_OPCODE_PPC
;
1077 as_fatal (_("Unknown default cpu = %s, os = %s"),
1078 default_cpu
, default_os
);
1082 /* Figure out the BFD architecture to use. */
1084 enum bfd_architecture
1087 const char *default_cpu
= TARGET_CPU
;
1090 if ((ppc_cpu
& PPC_OPCODE_PPC
) != 0)
1091 return bfd_arch_powerpc
;
1092 else if ((ppc_cpu
& PPC_OPCODE_POWER
) != 0)
1093 return bfd_arch_rs6000
;
1094 else if ((ppc_cpu
& (PPC_OPCODE_COMMON
| PPC_OPCODE_ANY
)) != 0)
1096 if (strcmp (default_cpu
, "rs6000") == 0)
1097 return bfd_arch_rs6000
;
1098 else if (strncmp (default_cpu
, "powerpc", 7) == 0)
1099 return bfd_arch_powerpc
;
1102 as_fatal (_("Neither Power nor PowerPC opcodes were selected."));
1103 return bfd_arch_unknown
;
1109 return ppc_size
== PPC_OPCODE_64
? 620 : 0;
1116 return ppc_xcoff64
? 3 : 2;
1121 ppc_target_format ()
1125 return target_big_endian
? "pe-powerpc" : "pe-powerpcle";
1127 return "xcoff-powermac";
1129 return ppc_xcoff64
? "aixcoff64-rs6000" : "aixcoff-rs6000";
1133 boolean is64
= BFD_DEFAULT_TARGET_SIZE
== 64 && ppc_size
== PPC_OPCODE_64
;
1135 return (target_big_endian
1136 ? (is64
? "elf64-powerpc" : "elf32-powerpc")
1137 : (is64
? "elf64-powerpcle" : "elf32-powerpcle"));
1141 /* This function is called when the assembler starts up. It is called
1142 after the options have been parsed and the output file has been
1148 register const struct powerpc_opcode
*op
;
1149 const struct powerpc_opcode
*op_end
;
1150 const struct powerpc_macro
*macro
;
1151 const struct powerpc_macro
*macro_end
;
1152 boolean dup_insn
= false;
1157 /* Set the ELF flags if desired. */
1158 if (ppc_flags
&& !msolaris
)
1159 bfd_set_private_flags (stdoutput
, ppc_flags
);
1162 /* Insert the opcodes into a hash table. */
1163 ppc_hash
= hash_new ();
1165 op_end
= powerpc_opcodes
+ powerpc_num_opcodes
;
1166 for (op
= powerpc_opcodes
; op
< op_end
; op
++)
1168 know ((op
->opcode
& op
->mask
) == op
->opcode
);
1170 if ((op
->flags
& ppc_cpu
) != 0
1171 && ((op
->flags
& (PPC_OPCODE_32
| PPC_OPCODE_64
)) == 0
1172 || (op
->flags
& (PPC_OPCODE_32
| PPC_OPCODE_64
)) == ppc_size
1173 || (ppc_cpu
& PPC_OPCODE_64_BRIDGE
) != 0))
1177 retval
= hash_insert (ppc_hash
, op
->name
, (PTR
) op
);
1178 if (retval
!= (const char *) NULL
)
1180 /* Ignore Power duplicates for -m601. */
1181 if ((ppc_cpu
& PPC_OPCODE_601
) != 0
1182 && (op
->flags
& PPC_OPCODE_POWER
) != 0)
1185 as_bad (_("Internal assembler error for instruction %s"),
1192 /* Insert the macros into a hash table. */
1193 ppc_macro_hash
= hash_new ();
1195 macro_end
= powerpc_macros
+ powerpc_num_macros
;
1196 for (macro
= powerpc_macros
; macro
< macro_end
; macro
++)
1198 if ((macro
->flags
& ppc_cpu
) != 0)
1202 retval
= hash_insert (ppc_macro_hash
, macro
->name
, (PTR
) macro
);
1203 if (retval
!= (const char *) NULL
)
1205 as_bad (_("Internal assembler error for macro %s"), macro
->name
);
1214 /* Tell the main code what the endianness is if it is not overidden
1216 if (!set_target_endian
)
1218 set_target_endian
= 1;
1219 target_big_endian
= PPC_BIG_ENDIAN
;
1223 ppc_coff_debug_section
= coff_section_from_bfd_index (stdoutput
, N_DEBUG
);
1225 /* Create dummy symbols to serve as initial csects. This forces the
1226 text csects to precede the data csects. These symbols will not
1228 ppc_text_csects
= symbol_make ("dummy\001");
1229 symbol_get_tc (ppc_text_csects
)->within
= ppc_text_csects
;
1230 ppc_data_csects
= symbol_make ("dummy\001");
1231 symbol_get_tc (ppc_data_csects
)->within
= ppc_data_csects
;
1236 ppc_current_section
= text_section
;
1237 ppc_previous_section
= 0;
1242 /* Insert an operand value into an instruction. */
1244 static unsigned long
1245 ppc_insert_operand (insn
, operand
, val
, file
, line
)
1247 const struct powerpc_operand
*operand
;
1252 if (operand
->bits
!= 32)
1257 if ((operand
->flags
& PPC_OPERAND_SIGNED
) != 0)
1259 if ((operand
->flags
& PPC_OPERAND_SIGNOPT
) != 0)
1260 max
= (1 << operand
->bits
) - 1;
1262 max
= (1 << (operand
->bits
- 1)) - 1;
1263 min
= - (1 << (operand
->bits
- 1));
1265 if (ppc_size
== PPC_OPCODE_32
)
1267 /* Some people write 32 bit hex constants with the sign
1268 extension done by hand. This shouldn't really be
1269 valid, but, to permit this code to assemble on a 64
1270 bit host, we sign extend the 32 bit value. */
1272 && (val
& (offsetT
) 0x80000000) != 0
1273 && (val
& (offsetT
) 0xffffffff) == val
)
1282 max
= (1 << operand
->bits
) - 1;
1286 if ((operand
->flags
& PPC_OPERAND_NEGATIVE
) != 0)
1291 if (test
< (offsetT
) min
|| test
> (offsetT
) max
)
1294 _("operand out of range (%s not between %ld and %ld)");
1297 sprint_value (buf
, test
);
1298 as_bad_where (file
, line
, err
, buf
, min
, max
);
1302 if (operand
->insert
)
1307 insn
= (*operand
->insert
) (insn
, (long) val
, ppc_cpu
| ppc_size
, &errmsg
);
1308 if (errmsg
!= (const char *) NULL
)
1309 as_bad_where (file
, line
, errmsg
);
1312 insn
|= (((long) val
& ((1 << operand
->bits
) - 1))
1320 /* Parse @got, etc. and return the desired relocation. */
1321 static bfd_reloc_code_real_type
1322 ppc_elf_suffix (str_p
, exp_p
)
1337 const struct map_bfd
*ptr
;
1339 #define MAP(str,reloc) { str, sizeof (str)-1, reloc }
1341 static const struct map_bfd mapping
[] = {
1342 MAP ("l", (int) BFD_RELOC_LO16
),
1343 MAP ("h", (int) BFD_RELOC_HI16
),
1344 MAP ("ha", (int) BFD_RELOC_HI16_S
),
1345 MAP ("brtaken", (int) BFD_RELOC_PPC_B16_BRTAKEN
),
1346 MAP ("brntaken", (int) BFD_RELOC_PPC_B16_BRNTAKEN
),
1347 MAP ("got", (int) BFD_RELOC_16_GOTOFF
),
1348 MAP ("got@l", (int) BFD_RELOC_LO16_GOTOFF
),
1349 MAP ("got@h", (int) BFD_RELOC_HI16_GOTOFF
),
1350 MAP ("got@ha", (int) BFD_RELOC_HI16_S_GOTOFF
),
1351 MAP ("fixup", (int) BFD_RELOC_CTOR
), /* warning with -mrelocatable */
1352 MAP ("plt", (int) BFD_RELOC_24_PLT_PCREL
),
1353 MAP ("pltrel24", (int) BFD_RELOC_24_PLT_PCREL
),
1354 MAP ("copy", (int) BFD_RELOC_PPC_COPY
),
1355 MAP ("globdat", (int) BFD_RELOC_PPC_GLOB_DAT
),
1356 MAP ("local24pc", (int) BFD_RELOC_PPC_LOCAL24PC
),
1357 MAP ("local", (int) BFD_RELOC_PPC_LOCAL24PC
),
1358 MAP ("pltrel", (int) BFD_RELOC_32_PLT_PCREL
),
1359 MAP ("plt@l", (int) BFD_RELOC_LO16_PLTOFF
),
1360 MAP ("plt@h", (int) BFD_RELOC_HI16_PLTOFF
),
1361 MAP ("plt@ha", (int) BFD_RELOC_HI16_S_PLTOFF
),
1362 MAP ("sdarel", (int) BFD_RELOC_GPREL16
),
1363 MAP ("sectoff", (int) BFD_RELOC_32_BASEREL
),
1364 MAP ("sectoff@l", (int) BFD_RELOC_LO16_BASEREL
),
1365 MAP ("sectoff@h", (int) BFD_RELOC_HI16_BASEREL
),
1366 MAP ("sectoff@ha", (int) BFD_RELOC_HI16_S_BASEREL
),
1367 MAP ("naddr", (int) BFD_RELOC_PPC_EMB_NADDR32
),
1368 MAP ("naddr16", (int) BFD_RELOC_PPC_EMB_NADDR16
),
1369 MAP ("naddr@l", (int) BFD_RELOC_PPC_EMB_NADDR16_LO
),
1370 MAP ("naddr@h", (int) BFD_RELOC_PPC_EMB_NADDR16_HI
),
1371 MAP ("naddr@ha", (int) BFD_RELOC_PPC_EMB_NADDR16_HA
),
1372 MAP ("sdai16", (int) BFD_RELOC_PPC_EMB_SDAI16
),
1373 MAP ("sda2rel", (int) BFD_RELOC_PPC_EMB_SDA2REL
),
1374 MAP ("sda2i16", (int) BFD_RELOC_PPC_EMB_SDA2I16
),
1375 MAP ("sda21", (int) BFD_RELOC_PPC_EMB_SDA21
),
1376 MAP ("mrkref", (int) BFD_RELOC_PPC_EMB_MRKREF
),
1377 MAP ("relsect", (int) BFD_RELOC_PPC_EMB_RELSEC16
),
1378 MAP ("relsect@l", (int) BFD_RELOC_PPC_EMB_RELST_LO
),
1379 MAP ("relsect@h", (int) BFD_RELOC_PPC_EMB_RELST_HI
),
1380 MAP ("relsect@ha", (int) BFD_RELOC_PPC_EMB_RELST_HA
),
1381 MAP ("bitfld", (int) BFD_RELOC_PPC_EMB_BIT_FLD
),
1382 MAP ("relsda", (int) BFD_RELOC_PPC_EMB_RELSDA
),
1383 MAP ("xgot", (int) BFD_RELOC_PPC_TOC16
),
1384 #if BFD_DEFAULT_TARGET_SIZE == 64
1385 MAP ("higher", - (int) BFD_RELOC_PPC64_HIGHER
),
1386 MAP ("highera", - (int) BFD_RELOC_PPC64_HIGHER_S
),
1387 MAP ("highest", - (int) BFD_RELOC_PPC64_HIGHEST
),
1388 MAP ("highesta", - (int) BFD_RELOC_PPC64_HIGHEST_S
),
1389 MAP ("tocbase", - (int) BFD_RELOC_PPC64_TOC
),
1390 MAP ("toc", - (int) BFD_RELOC_PPC_TOC16
),
1391 MAP ("toc@l", - (int) BFD_RELOC_PPC64_TOC16_LO
),
1392 MAP ("toc@h", - (int) BFD_RELOC_PPC64_TOC16_HI
),
1393 MAP ("toc@ha", - (int) BFD_RELOC_PPC64_TOC16_HA
),
1395 { (char *) 0, 0, (int) BFD_RELOC_UNUSED
}
1399 return BFD_RELOC_UNUSED
;
1401 for (ch
= *str
, str2
= ident
;
1402 (str2
< ident
+ sizeof (ident
) - 1
1403 && (ISALNUM (ch
) || ch
== '@'));
1406 *str2
++ = TOLOWER (ch
);
1413 for (ptr
= &mapping
[0]; ptr
->length
> 0; ptr
++)
1414 if (ch
== ptr
->string
[0]
1415 && len
== ptr
->length
1416 && memcmp (ident
, ptr
->string
, ptr
->length
) == 0)
1418 int reloc
= ptr
->reloc
;
1420 if (BFD_DEFAULT_TARGET_SIZE
== 64 && reloc
< 0)
1422 if (ppc_size
!= PPC_OPCODE_64
)
1423 return BFD_RELOC_UNUSED
;
1427 if (exp_p
->X_add_number
!= 0
1428 && (reloc
== (int) BFD_RELOC_16_GOTOFF
1429 || reloc
== (int) BFD_RELOC_LO16_GOTOFF
1430 || reloc
== (int) BFD_RELOC_HI16_GOTOFF
1431 || reloc
== (int) BFD_RELOC_HI16_S_GOTOFF
))
1432 as_warn (_("identifier+constant@got means identifier@got+constant"));
1434 /* Now check for identifier@suffix+constant. */
1435 if (*str
== '-' || *str
== '+')
1437 char *orig_line
= input_line_pointer
;
1438 expressionS new_exp
;
1440 input_line_pointer
= str
;
1441 expression (&new_exp
);
1442 if (new_exp
.X_op
== O_constant
)
1444 exp_p
->X_add_number
+= new_exp
.X_add_number
;
1445 str
= input_line_pointer
;
1448 if (&input_line_pointer
!= str_p
)
1449 input_line_pointer
= orig_line
;
1453 if (BFD_DEFAULT_TARGET_SIZE
== 64
1454 && 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_32_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 #if BFD_DEFAULT_TARGET_SIZE == 64
1697 /* Don't emit .TOC. symbol. */
1699 ppc_elf_frob_symbol (sym
)
1704 name
= S_GET_NAME (sym
);
1705 if (name
!= NULL
&& strcmp (name
, ".TOC.") == 0)
1707 S_CLEAR_EXTERNAL (sym
);
1714 #endif /* OBJ_ELF */
1719 * Summary of parse_toc_entry.
1721 * in: Input_line_pointer points to the '[' in one of:
1723 * [toc] [tocv] [toc32] [toc64]
1725 * Anything else is an error of one kind or another.
1728 * return value: success or failure
1729 * toc_kind: kind of toc reference
1730 * input_line_pointer:
1731 * success: first char after the ']'
1732 * failure: unchanged
1736 * [toc] - rv == success, toc_kind = default_toc
1737 * [tocv] - rv == success, toc_kind = data_in_toc
1738 * [toc32] - rv == success, toc_kind = must_be_32
1739 * [toc64] - rv == success, toc_kind = must_be_64
1743 enum toc_size_qualifier
1745 default_toc
, /* The toc cell constructed should be the system default size */
1746 data_in_toc
, /* This is a direct reference to a toc cell */
1747 must_be_32
, /* The toc cell constructed must be 32 bits wide */
1748 must_be_64
/* The toc cell constructed must be 64 bits wide */
1752 parse_toc_entry (toc_kind
)
1753 enum toc_size_qualifier
*toc_kind
;
1758 enum toc_size_qualifier t
;
1760 /* Save the input_line_pointer. */
1761 start
= input_line_pointer
;
1763 /* Skip over the '[' , and whitespace. */
1764 ++input_line_pointer
;
1767 /* Find the spelling of the operand. */
1768 toc_spec
= input_line_pointer
;
1769 c
= get_symbol_end ();
1771 if (strcmp (toc_spec
, "toc") == 0)
1775 else if (strcmp (toc_spec
, "tocv") == 0)
1779 else if (strcmp (toc_spec
, "toc32") == 0)
1783 else if (strcmp (toc_spec
, "toc64") == 0)
1789 as_bad (_("syntax error: invalid toc specifier `%s'"), toc_spec
);
1790 *input_line_pointer
= c
;
1791 input_line_pointer
= start
;
1795 /* Now find the ']'. */
1796 *input_line_pointer
= c
;
1798 SKIP_WHITESPACE (); /* leading whitespace could be there. */
1799 c
= *input_line_pointer
++; /* input_line_pointer->past char in c. */
1803 as_bad (_("syntax error: expected `]', found `%c'"), c
);
1804 input_line_pointer
= start
;
1814 /* We need to keep a list of fixups. We can't simply generate them as
1815 we go, because that would require us to first create the frag, and
1816 that would screw up references to ``.''. */
1822 bfd_reloc_code_real_type reloc
;
1825 #define MAX_INSN_FIXUPS (5)
1827 /* This routine is called for each instruction to be assembled. */
1834 const struct powerpc_opcode
*opcode
;
1836 const unsigned char *opindex_ptr
;
1840 struct ppc_fixup fixups
[MAX_INSN_FIXUPS
];
1845 bfd_reloc_code_real_type reloc
;
1848 /* Get the opcode. */
1849 for (s
= str
; *s
!= '\0' && ! ISSPACE (*s
); s
++)
1854 /* Look up the opcode in the hash table. */
1855 opcode
= (const struct powerpc_opcode
*) hash_find (ppc_hash
, str
);
1856 if (opcode
== (const struct powerpc_opcode
*) NULL
)
1858 const struct powerpc_macro
*macro
;
1860 macro
= (const struct powerpc_macro
*) hash_find (ppc_macro_hash
, str
);
1861 if (macro
== (const struct powerpc_macro
*) NULL
)
1862 as_bad (_("Unrecognized opcode: `%s'"), str
);
1864 ppc_macro (s
, macro
);
1869 insn
= opcode
->opcode
;
1872 while (ISSPACE (*str
))
1875 /* PowerPC operands are just expressions. The only real issue is
1876 that a few operand types are optional. All cases which might use
1877 an optional operand separate the operands only with commas (in
1878 some cases parentheses are used, as in ``lwz 1,0(1)'' but such
1879 cases never have optional operands). There is never more than
1880 one optional operand for an instruction. So, before we start
1881 seriously parsing the operands, we check to see if we have an
1882 optional operand, and, if we do, we count the number of commas to
1883 see whether the operand should be omitted. */
1885 for (opindex_ptr
= opcode
->operands
; *opindex_ptr
!= 0; opindex_ptr
++)
1887 const struct powerpc_operand
*operand
;
1889 operand
= &powerpc_operands
[*opindex_ptr
];
1890 if ((operand
->flags
& PPC_OPERAND_OPTIONAL
) != 0)
1892 unsigned int opcount
;
1894 /* There is an optional operand. Count the number of
1895 commas in the input line. */
1902 while ((s
= strchr (s
, ',')) != (char *) NULL
)
1909 /* If there are fewer operands in the line then are called
1910 for by the instruction, we want to skip the optional
1912 if (opcount
< strlen (opcode
->operands
))
1919 /* Gather the operands. */
1923 for (opindex_ptr
= opcode
->operands
; *opindex_ptr
!= 0; opindex_ptr
++)
1925 const struct powerpc_operand
*operand
;
1931 if (next_opindex
== 0)
1932 operand
= &powerpc_operands
[*opindex_ptr
];
1935 operand
= &powerpc_operands
[next_opindex
];
1941 /* If this is a fake operand, then we do not expect anything
1943 if ((operand
->flags
& PPC_OPERAND_FAKE
) != 0)
1945 insn
= (*operand
->insert
) (insn
, 0L, ppc_cpu
| ppc_size
, &errmsg
);
1946 if (errmsg
!= (const char *) NULL
)
1951 /* If this is an optional operand, and we are skipping it, just
1953 if ((operand
->flags
& PPC_OPERAND_OPTIONAL
) != 0
1956 if (operand
->insert
)
1958 insn
= (*operand
->insert
) (insn
, 0L, ppc_cpu
| ppc_size
, &errmsg
);
1959 if (errmsg
!= (const char *) NULL
)
1962 if ((operand
->flags
& PPC_OPERAND_NEXT
) != 0)
1963 next_opindex
= *opindex_ptr
+ 1;
1967 /* Gather the operand. */
1968 hold
= input_line_pointer
;
1969 input_line_pointer
= str
;
1972 if (*input_line_pointer
== '[')
1974 /* We are expecting something like the second argument here:
1976 * lwz r4,[toc].GS.0.static_int(rtoc)
1977 * ^^^^^^^^^^^^^^^^^^^^^^^^^^^
1978 * The argument following the `]' must be a symbol name, and the
1979 * register must be the toc register: 'rtoc' or '2'
1981 * The effect is to 0 as the displacement field
1982 * in the instruction, and issue an IMAGE_REL_PPC_TOCREL16 (or
1983 * the appropriate variation) reloc against it based on the symbol.
1984 * The linker will build the toc, and insert the resolved toc offset.
1987 * o The size of the toc entry is currently assumed to be
1988 * 32 bits. This should not be assumed to be a hard coded
1990 * o In an effort to cope with a change from 32 to 64 bits,
1991 * there are also toc entries that are specified to be
1992 * either 32 or 64 bits:
1993 * lwz r4,[toc32].GS.0.static_int(rtoc)
1994 * lwz r4,[toc64].GS.0.static_int(rtoc)
1995 * These demand toc entries of the specified size, and the
1996 * instruction probably requires it.
2000 enum toc_size_qualifier toc_kind
;
2001 bfd_reloc_code_real_type toc_reloc
;
2003 /* Go parse off the [tocXX] part. */
2004 valid_toc
= parse_toc_entry (&toc_kind
);
2008 /* Note: message has already been issued.
2009 FIXME: what sort of recovery should we do?
2010 demand_rest_of_line (); return; ? */
2013 /* Now get the symbol following the ']'. */
2019 /* In this case, we may not have seen the symbol yet,
2020 since it is allowed to appear on a .extern or .globl
2021 or just be a label in the .data section. */
2022 toc_reloc
= BFD_RELOC_PPC_TOC16
;
2025 /* 1. The symbol must be defined and either in the toc
2026 section, or a global.
2027 2. The reloc generated must have the TOCDEFN flag set
2028 in upper bit mess of the reloc type.
2029 FIXME: It's a little confusing what the tocv
2030 qualifier can be used for. At the very least, I've
2031 seen three uses, only one of which I'm sure I can
2033 if (ex
.X_op
== O_symbol
)
2035 assert (ex
.X_add_symbol
!= NULL
);
2036 if (symbol_get_bfdsym (ex
.X_add_symbol
)->section
2039 as_bad (_("[tocv] symbol is not a toc symbol"));
2043 toc_reloc
= BFD_RELOC_PPC_TOC16
;
2046 /* FIXME: these next two specifically specify 32/64 bit
2047 toc entries. We don't support them today. Is this
2048 the right way to say that? */
2049 toc_reloc
= BFD_RELOC_UNUSED
;
2050 as_bad (_("Unimplemented toc32 expression modifier"));
2053 /* FIXME: see above. */
2054 toc_reloc
= BFD_RELOC_UNUSED
;
2055 as_bad (_("Unimplemented toc64 expression modifier"));
2059 _("Unexpected return value [%d] from parse_toc_entry!\n"),
2065 /* We need to generate a fixup for this expression. */
2066 if (fc
>= MAX_INSN_FIXUPS
)
2067 as_fatal (_("too many fixups"));
2069 fixups
[fc
].reloc
= toc_reloc
;
2070 fixups
[fc
].exp
= ex
;
2071 fixups
[fc
].opindex
= *opindex_ptr
;
2074 /* Ok. We've set up the fixup for the instruction. Now make it
2075 look like the constant 0 was found here. */
2077 ex
.X_op
= O_constant
;
2078 ex
.X_add_number
= 0;
2079 ex
.X_add_symbol
= NULL
;
2080 ex
.X_op_symbol
= NULL
;
2086 if (! register_name (&ex
))
2088 if ((operand
->flags
& PPC_OPERAND_CR
) != 0)
2095 str
= input_line_pointer
;
2096 input_line_pointer
= hold
;
2098 if (ex
.X_op
== O_illegal
)
2099 as_bad (_("illegal operand"));
2100 else if (ex
.X_op
== O_absent
)
2101 as_bad (_("missing operand"));
2102 else if (ex
.X_op
== O_register
)
2104 insn
= ppc_insert_operand (insn
, operand
, ex
.X_add_number
,
2107 else if (ex
.X_op
== O_constant
)
2110 /* Allow @HA, @L, @H on constants. */
2111 char *orig_str
= str
;
2113 if ((reloc
= ppc_elf_suffix (&str
, &ex
)) != BFD_RELOC_UNUSED
)
2120 case BFD_RELOC_LO16
:
2121 /* X_unsigned is the default, so if the user has done
2122 something which cleared it, we always produce a
2124 if (ex
.X_unsigned
&& ! (operand
->flags
& PPC_OPERAND_SIGNED
))
2125 ex
.X_add_number
&= 0xffff;
2127 ex
.X_add_number
= SEX16 (ex
.X_add_number
);
2130 case BFD_RELOC_HI16
:
2131 if (ex
.X_unsigned
&& ! (operand
->flags
& PPC_OPERAND_SIGNED
))
2132 ex
.X_add_number
= PPC_HI (ex
.X_add_number
);
2134 ex
.X_add_number
= SEX16 (PPC_HI (ex
.X_add_number
));
2137 case BFD_RELOC_HI16_S
:
2138 if (ex
.X_unsigned
&& ! (operand
->flags
& PPC_OPERAND_SIGNED
))
2139 ex
.X_add_number
= PPC_HA (ex
.X_add_number
);
2141 ex
.X_add_number
= SEX16 (PPC_HA (ex
.X_add_number
));
2144 #if BFD_DEFAULT_TARGET_SIZE == 64
2145 case BFD_RELOC_PPC64_HIGHER
:
2146 if (ex
.X_unsigned
&& ! (operand
->flags
& PPC_OPERAND_SIGNED
))
2147 ex
.X_add_number
= PPC_HIGHER (ex
.X_add_number
);
2149 ex
.X_add_number
= SEX16 (PPC_HIGHER (ex
.X_add_number
));
2152 case BFD_RELOC_PPC64_HIGHER_S
:
2153 if (ex
.X_unsigned
&& ! (operand
->flags
& PPC_OPERAND_SIGNED
))
2154 ex
.X_add_number
= PPC_HIGHERA (ex
.X_add_number
);
2156 ex
.X_add_number
= SEX16 (PPC_HIGHERA (ex
.X_add_number
));
2159 case BFD_RELOC_PPC64_HIGHEST
:
2160 if (ex
.X_unsigned
&& ! (operand
->flags
& PPC_OPERAND_SIGNED
))
2161 ex
.X_add_number
= PPC_HIGHEST (ex
.X_add_number
);
2163 ex
.X_add_number
= SEX16 (PPC_HIGHEST (ex
.X_add_number
));
2166 case BFD_RELOC_PPC64_HIGHEST_S
:
2167 if (ex
.X_unsigned
&& ! (operand
->flags
& PPC_OPERAND_SIGNED
))
2168 ex
.X_add_number
= PPC_HIGHESTA (ex
.X_add_number
);
2170 ex
.X_add_number
= SEX16 (PPC_HIGHESTA (ex
.X_add_number
));
2172 #endif /* BFD_DEFAULT_TARGET_SIZE == 64 */
2174 #endif /* OBJ_ELF */
2175 insn
= ppc_insert_operand (insn
, operand
, ex
.X_add_number
,
2179 else if ((reloc
= ppc_elf_suffix (&str
, &ex
)) != BFD_RELOC_UNUSED
)
2181 /* For the absolute forms of branches, convert the PC
2182 relative form back into the absolute. */
2183 if ((operand
->flags
& PPC_OPERAND_ABSOLUTE
) != 0)
2187 case BFD_RELOC_PPC_B26
:
2188 reloc
= BFD_RELOC_PPC_BA26
;
2190 case BFD_RELOC_PPC_B16
:
2191 reloc
= BFD_RELOC_PPC_BA16
;
2193 case BFD_RELOC_PPC_B16_BRTAKEN
:
2194 reloc
= BFD_RELOC_PPC_BA16_BRTAKEN
;
2196 case BFD_RELOC_PPC_B16_BRNTAKEN
:
2197 reloc
= BFD_RELOC_PPC_BA16_BRNTAKEN
;
2204 if (BFD_DEFAULT_TARGET_SIZE
== 64
2205 && ppc_size
== PPC_OPCODE_64
2206 && (operand
->flags
& PPC_OPERAND_DS
) != 0)
2211 reloc
= BFD_RELOC_PPC64_ADDR16_DS
;
2213 case BFD_RELOC_LO16
:
2214 reloc
= BFD_RELOC_PPC64_ADDR16_LO_DS
;
2216 case BFD_RELOC_16_GOTOFF
:
2217 reloc
= BFD_RELOC_PPC64_GOT16_DS
;
2219 case BFD_RELOC_LO16_GOTOFF
:
2220 reloc
= BFD_RELOC_PPC64_GOT16_LO_DS
;
2222 case BFD_RELOC_LO16_PLTOFF
:
2223 reloc
= BFD_RELOC_PPC64_PLT16_LO_DS
;
2225 case BFD_RELOC_32_BASEREL
:
2226 reloc
= BFD_RELOC_PPC64_SECTOFF_DS
;
2228 case BFD_RELOC_LO16_BASEREL
:
2229 reloc
= BFD_RELOC_PPC64_SECTOFF_LO_DS
;
2231 case BFD_RELOC_PPC_TOC16
:
2232 reloc
= BFD_RELOC_PPC64_TOC16_DS
;
2234 case BFD_RELOC_PPC64_TOC16_LO
:
2235 reloc
= BFD_RELOC_PPC64_TOC16_LO_DS
;
2237 case BFD_RELOC_PPC64_PLTGOT16
:
2238 reloc
= BFD_RELOC_PPC64_PLTGOT16_DS
;
2240 case BFD_RELOC_PPC64_PLTGOT16_LO
:
2241 reloc
= BFD_RELOC_PPC64_PLTGOT16_LO_DS
;
2244 as_bad (_("unsupported relocation for DS offset field"));
2249 /* We need to generate a fixup for this expression. */
2250 if (fc
>= MAX_INSN_FIXUPS
)
2251 as_fatal (_("too many fixups"));
2252 fixups
[fc
].exp
= ex
;
2253 fixups
[fc
].opindex
= 0;
2254 fixups
[fc
].reloc
= reloc
;
2257 #endif /* OBJ_ELF */
2261 /* We need to generate a fixup for this expression. */
2262 if (fc
>= MAX_INSN_FIXUPS
)
2263 as_fatal (_("too many fixups"));
2264 fixups
[fc
].exp
= ex
;
2265 fixups
[fc
].opindex
= *opindex_ptr
;
2266 fixups
[fc
].reloc
= BFD_RELOC_UNUSED
;
2275 else if ((operand
->flags
& PPC_OPERAND_PARENS
) != 0)
2283 /* The call to expression should have advanced str past any
2286 && (endc
!= ',' || *str
!= '\0'))
2288 as_bad (_("syntax error; found `%c' but expected `%c'"), *str
, endc
);
2296 while (ISSPACE (*str
))
2300 as_bad (_("junk at end of line: `%s'"), str
);
2302 /* Write out the instruction. */
2304 md_number_to_chars (f
, insn
, 4);
2307 dwarf2_emit_insn (4);
2310 /* Create any fixups. At this point we do not use a
2311 bfd_reloc_code_real_type, but instead just use the
2312 BFD_RELOC_UNUSED plus the operand index. This lets us easily
2313 handle fixups for any operand type, although that is admittedly
2314 not a very exciting feature. We pick a BFD reloc type in
2316 for (i
= 0; i
< fc
; i
++)
2318 const struct powerpc_operand
*operand
;
2320 operand
= &powerpc_operands
[fixups
[i
].opindex
];
2321 if (fixups
[i
].reloc
!= BFD_RELOC_UNUSED
)
2323 reloc_howto_type
*reloc_howto
;
2328 reloc_howto
= bfd_reloc_type_lookup (stdoutput
, fixups
[i
].reloc
);
2332 size
= bfd_get_reloc_size (reloc_howto
);
2333 offset
= target_big_endian
? (4 - size
) : 0;
2335 if (size
< 1 || size
> 4)
2338 fixP
= fix_new_exp (frag_now
,
2339 f
- frag_now
->fr_literal
+ offset
,
2342 reloc_howto
->pc_relative
,
2345 /* Turn off complaints that the addend is too large for things like
2347 switch (fixups
[i
].reloc
)
2349 case BFD_RELOC_16_GOTOFF
:
2350 case BFD_RELOC_PPC_TOC16
:
2351 case BFD_RELOC_LO16
:
2352 case BFD_RELOC_HI16
:
2353 case BFD_RELOC_HI16_S
:
2355 #if BFD_DEFAULT_TARGET_SIZE == 64
2356 case BFD_RELOC_PPC64_HIGHER
:
2357 case BFD_RELOC_PPC64_HIGHER_S
:
2358 case BFD_RELOC_PPC64_HIGHEST
:
2359 case BFD_RELOC_PPC64_HIGHEST_S
:
2362 fixP
->fx_no_overflow
= 1;
2369 fix_new_exp (frag_now
,
2370 f
- frag_now
->fr_literal
,
2373 (operand
->flags
& PPC_OPERAND_RELATIVE
) != 0,
2374 ((bfd_reloc_code_real_type
)
2375 (fixups
[i
].opindex
+ (int) BFD_RELOC_UNUSED
)));
2379 /* Handle a macro. Gather all the operands, transform them as
2380 described by the macro, and call md_assemble recursively. All the
2381 operands are separated by commas; we don't accept parentheses
2382 around operands here. */
2385 ppc_macro (str
, macro
)
2387 const struct powerpc_macro
*macro
;
2398 /* Gather the users operands into the operands array. */
2403 if (count
>= sizeof operands
/ sizeof operands
[0])
2405 operands
[count
++] = s
;
2406 s
= strchr (s
, ',');
2407 if (s
== (char *) NULL
)
2412 if (count
!= macro
->operands
)
2414 as_bad (_("wrong number of operands"));
2418 /* Work out how large the string must be (the size is unbounded
2419 because it includes user input). */
2421 format
= macro
->format
;
2422 while (*format
!= '\0')
2431 arg
= strtol (format
+ 1, &send
, 10);
2432 know (send
!= format
&& arg
>= 0 && arg
< count
);
2433 len
+= strlen (operands
[arg
]);
2438 /* Put the string together. */
2439 complete
= s
= (char *) alloca (len
+ 1);
2440 format
= macro
->format
;
2441 while (*format
!= '\0')
2447 arg
= strtol (format
+ 1, &send
, 10);
2448 strcpy (s
, operands
[arg
]);
2455 /* Assemble the constructed instruction. */
2456 md_assemble (complete
);
2460 /* For ELF, add support for SHF_EXCLUDE and SHT_ORDERED. */
2463 ppc_section_letter (letter
, ptr_msg
)
2470 *ptr_msg
= _("Bad .section directive: want a,e,w,x,M,S in string");
2475 ppc_section_word (str
, len
)
2479 if (len
== 7 && strncmp (str
, "exclude", 7) == 0)
2486 ppc_section_type (str
, len
)
2490 if (len
== 7 && strncmp (str
, "ordered", 7) == 0)
2497 ppc_section_flags (flags
, attr
, type
)
2502 if (type
== SHT_ORDERED
)
2503 flags
|= SEC_ALLOC
| SEC_LOAD
| SEC_SORT_ENTRIES
;
2505 if (attr
& SHF_EXCLUDE
)
2506 flags
|= SEC_EXCLUDE
;
2510 #endif /* OBJ_ELF */
2513 /* Pseudo-op handling. */
2515 /* The .byte pseudo-op. This is similar to the normal .byte
2516 pseudo-op, but it can also take a single ASCII string. */
2520 int ignore ATTRIBUTE_UNUSED
;
2522 if (*input_line_pointer
!= '\"')
2528 /* Gather characters. A real double quote is doubled. Unusual
2529 characters are not permitted. */
2530 ++input_line_pointer
;
2535 c
= *input_line_pointer
++;
2539 if (*input_line_pointer
!= '\"')
2541 ++input_line_pointer
;
2544 FRAG_APPEND_1_CHAR (c
);
2547 demand_empty_rest_of_line ();
2552 /* XCOFF specific pseudo-op handling. */
2554 /* This is set if we are creating a .stabx symbol, since we don't want
2555 to handle symbol suffixes for such symbols. */
2556 static boolean ppc_stab_symbol
;
2558 /* The .comm and .lcomm pseudo-ops for XCOFF. XCOFF puts common
2559 symbols in the .bss segment as though they were local common
2560 symbols, and uses a different smclas. The native Aix 4.3.3 assember
2561 aligns .comm and .lcomm to 4 bytes. */
2567 asection
*current_seg
= now_seg
;
2568 subsegT current_subseg
= now_subseg
;
2574 symbolS
*lcomm_sym
= NULL
;
2578 name
= input_line_pointer
;
2579 endc
= get_symbol_end ();
2580 end_name
= input_line_pointer
;
2583 if (*input_line_pointer
!= ',')
2585 as_bad (_("missing size"));
2586 ignore_rest_of_line ();
2589 ++input_line_pointer
;
2591 size
= get_absolute_expression ();
2594 as_bad (_("negative size"));
2595 ignore_rest_of_line ();
2601 /* The third argument to .comm is the alignment. */
2602 if (*input_line_pointer
!= ',')
2606 ++input_line_pointer
;
2607 align
= get_absolute_expression ();
2610 as_warn (_("ignoring bad alignment"));
2625 /* The third argument to .lcomm appears to be the real local
2626 common symbol to create. References to the symbol named in
2627 the first argument are turned into references to the third
2629 if (*input_line_pointer
!= ',')
2631 as_bad (_("missing real symbol name"));
2632 ignore_rest_of_line ();
2635 ++input_line_pointer
;
2637 lcomm_name
= input_line_pointer
;
2638 lcomm_endc
= get_symbol_end ();
2640 lcomm_sym
= symbol_find_or_make (lcomm_name
);
2642 *input_line_pointer
= lcomm_endc
;
2646 sym
= symbol_find_or_make (name
);
2649 if (S_IS_DEFINED (sym
)
2650 || S_GET_VALUE (sym
) != 0)
2652 as_bad (_("attempt to redefine symbol"));
2653 ignore_rest_of_line ();
2657 record_alignment (bss_section
, align
);
2660 || ! S_IS_DEFINED (lcomm_sym
))
2669 S_SET_EXTERNAL (sym
);
2673 symbol_get_tc (lcomm_sym
)->output
= 1;
2674 def_sym
= lcomm_sym
;
2678 subseg_set (bss_section
, 1);
2679 frag_align (align
, 0, 0);
2681 symbol_set_frag (def_sym
, frag_now
);
2682 pfrag
= frag_var (rs_org
, 1, 1, (relax_substateT
) 0, def_sym
,
2683 def_size
, (char *) NULL
);
2685 S_SET_SEGMENT (def_sym
, bss_section
);
2686 symbol_get_tc (def_sym
)->align
= align
;
2690 /* Align the size of lcomm_sym. */
2691 symbol_get_frag (lcomm_sym
)->fr_offset
=
2692 ((symbol_get_frag (lcomm_sym
)->fr_offset
+ (1 << align
) - 1)
2693 &~ ((1 << align
) - 1));
2694 if (align
> symbol_get_tc (lcomm_sym
)->align
)
2695 symbol_get_tc (lcomm_sym
)->align
= align
;
2700 /* Make sym an offset from lcomm_sym. */
2701 S_SET_SEGMENT (sym
, bss_section
);
2702 symbol_set_frag (sym
, symbol_get_frag (lcomm_sym
));
2703 S_SET_VALUE (sym
, symbol_get_frag (lcomm_sym
)->fr_offset
);
2704 symbol_get_frag (lcomm_sym
)->fr_offset
+= size
;
2707 subseg_set (current_seg
, current_subseg
);
2709 demand_empty_rest_of_line ();
2712 /* The .csect pseudo-op. This switches us into a different
2713 subsegment. The first argument is a symbol whose value is the
2714 start of the .csect. In COFF, csect symbols get special aux
2715 entries defined by the x_csect field of union internal_auxent. The
2716 optional second argument is the alignment (the default is 2). */
2720 int ignore ATTRIBUTE_UNUSED
;
2726 name
= input_line_pointer
;
2727 endc
= get_symbol_end ();
2729 sym
= symbol_find_or_make (name
);
2731 *input_line_pointer
= endc
;
2733 if (S_GET_NAME (sym
)[0] == '\0')
2735 /* An unnamed csect is assumed to be [PR]. */
2736 symbol_get_tc (sym
)->class = XMC_PR
;
2739 ppc_change_csect (sym
);
2741 if (*input_line_pointer
== ',')
2743 ++input_line_pointer
;
2744 symbol_get_tc (sym
)->align
= get_absolute_expression ();
2747 demand_empty_rest_of_line ();
2750 /* Change to a different csect. */
2753 ppc_change_csect (sym
)
2756 if (S_IS_DEFINED (sym
))
2757 subseg_set (S_GET_SEGMENT (sym
), symbol_get_tc (sym
)->subseg
);
2765 /* This is a new csect. We need to look at the symbol class to
2766 figure out whether it should go in the text section or the
2769 switch (symbol_get_tc (sym
)->class)
2779 S_SET_SEGMENT (sym
, text_section
);
2780 symbol_get_tc (sym
)->subseg
= ppc_text_subsegment
;
2781 ++ppc_text_subsegment
;
2782 list_ptr
= &ppc_text_csects
;
2791 if (ppc_toc_csect
!= NULL
2792 && (symbol_get_tc (ppc_toc_csect
)->subseg
+ 1
2793 == ppc_data_subsegment
))
2795 S_SET_SEGMENT (sym
, data_section
);
2796 symbol_get_tc (sym
)->subseg
= ppc_data_subsegment
;
2797 ++ppc_data_subsegment
;
2798 list_ptr
= &ppc_data_csects
;
2804 /* We set the obstack chunk size to a small value before
2805 changing subsegments, so that we don't use a lot of memory
2806 space for what may be a small section. */
2807 hold_chunksize
= chunksize
;
2810 subseg_new (segment_name (S_GET_SEGMENT (sym
)),
2811 symbol_get_tc (sym
)->subseg
);
2813 chunksize
= hold_chunksize
;
2816 ppc_after_toc_frag
= frag_now
;
2818 symbol_set_frag (sym
, frag_now
);
2819 S_SET_VALUE (sym
, (valueT
) frag_now_fix ());
2821 symbol_get_tc (sym
)->align
= (ppc_xcoff64
) ? 3 : 2;
2822 symbol_get_tc (sym
)->output
= 1;
2823 symbol_get_tc (sym
)->within
= sym
;
2825 for (list
= *list_ptr
;
2826 symbol_get_tc (list
)->next
!= (symbolS
*) NULL
;
2827 list
= symbol_get_tc (list
)->next
)
2829 symbol_get_tc (list
)->next
= sym
;
2831 symbol_remove (sym
, &symbol_rootP
, &symbol_lastP
);
2832 symbol_append (sym
, symbol_get_tc (list
)->within
, &symbol_rootP
,
2836 ppc_current_csect
= sym
;
2839 /* This function handles the .text and .data pseudo-ops. These
2840 pseudo-ops aren't really used by XCOFF; we implement them for the
2841 convenience of people who aren't used to XCOFF. */
2852 else if (type
== 'd')
2857 sym
= symbol_find_or_make (name
);
2859 ppc_change_csect (sym
);
2861 demand_empty_rest_of_line ();
2864 /* This function handles the .section pseudo-op. This is mostly to
2865 give an error, since XCOFF only supports .text, .data and .bss, but
2866 we do permit the user to name the text or data section. */
2869 ppc_named_section (ignore
)
2870 int ignore ATTRIBUTE_UNUSED
;
2873 const char *real_name
;
2877 user_name
= input_line_pointer
;
2878 c
= get_symbol_end ();
2880 if (strcmp (user_name
, ".text") == 0)
2881 real_name
= ".text[PR]";
2882 else if (strcmp (user_name
, ".data") == 0)
2883 real_name
= ".data[RW]";
2886 as_bad (_("The XCOFF file format does not support arbitrary sections"));
2887 *input_line_pointer
= c
;
2888 ignore_rest_of_line ();
2892 *input_line_pointer
= c
;
2894 sym
= symbol_find_or_make (real_name
);
2896 ppc_change_csect (sym
);
2898 demand_empty_rest_of_line ();
2901 /* The .extern pseudo-op. We create an undefined symbol. */
2905 int ignore ATTRIBUTE_UNUSED
;
2910 name
= input_line_pointer
;
2911 endc
= get_symbol_end ();
2913 (void) symbol_find_or_make (name
);
2915 *input_line_pointer
= endc
;
2917 demand_empty_rest_of_line ();
2920 /* The .lglobl pseudo-op. Keep the symbol in the symbol table. */
2924 int ignore ATTRIBUTE_UNUSED
;
2930 name
= input_line_pointer
;
2931 endc
= get_symbol_end ();
2933 sym
= symbol_find_or_make (name
);
2935 *input_line_pointer
= endc
;
2937 symbol_get_tc (sym
)->output
= 1;
2939 demand_empty_rest_of_line ();
2942 /* The .rename pseudo-op. The RS/6000 assembler can rename symbols,
2943 although I don't know why it bothers. */
2947 int ignore ATTRIBUTE_UNUSED
;
2954 name
= input_line_pointer
;
2955 endc
= get_symbol_end ();
2957 sym
= symbol_find_or_make (name
);
2959 *input_line_pointer
= endc
;
2961 if (*input_line_pointer
!= ',')
2963 as_bad (_("missing rename string"));
2964 ignore_rest_of_line ();
2967 ++input_line_pointer
;
2969 symbol_get_tc (sym
)->real_name
= demand_copy_C_string (&len
);
2971 demand_empty_rest_of_line ();
2974 /* The .stabx pseudo-op. This is similar to a normal .stabs
2975 pseudo-op, but slightly different. A sample is
2976 .stabx "main:F-1",.main,142,0
2977 The first argument is the symbol name to create. The second is the
2978 value, and the third is the storage class. The fourth seems to be
2979 always zero, and I am assuming it is the type. */
2983 int ignore ATTRIBUTE_UNUSED
;
2990 name
= demand_copy_C_string (&len
);
2992 if (*input_line_pointer
!= ',')
2994 as_bad (_("missing value"));
2997 ++input_line_pointer
;
2999 ppc_stab_symbol
= true;
3000 sym
= symbol_make (name
);
3001 ppc_stab_symbol
= false;
3003 symbol_get_tc (sym
)->real_name
= name
;
3005 (void) expression (&exp
);
3012 as_bad (_("illegal .stabx expression; zero assumed"));
3013 exp
.X_add_number
= 0;
3016 S_SET_VALUE (sym
, (valueT
) exp
.X_add_number
);
3017 symbol_set_frag (sym
, &zero_address_frag
);
3021 if (S_GET_SEGMENT (exp
.X_add_symbol
) == undefined_section
)
3022 symbol_set_value_expression (sym
, &exp
);
3026 exp
.X_add_number
+ S_GET_VALUE (exp
.X_add_symbol
));
3027 symbol_set_frag (sym
, symbol_get_frag (exp
.X_add_symbol
));
3032 /* The value is some complex expression. This will probably
3033 fail at some later point, but this is probably the right
3034 thing to do here. */
3035 symbol_set_value_expression (sym
, &exp
);
3039 S_SET_SEGMENT (sym
, ppc_coff_debug_section
);
3040 symbol_get_bfdsym (sym
)->flags
|= BSF_DEBUGGING
;
3042 if (*input_line_pointer
!= ',')
3044 as_bad (_("missing class"));
3047 ++input_line_pointer
;
3049 S_SET_STORAGE_CLASS (sym
, get_absolute_expression ());
3051 if (*input_line_pointer
!= ',')
3053 as_bad (_("missing type"));
3056 ++input_line_pointer
;
3058 S_SET_DATA_TYPE (sym
, get_absolute_expression ());
3060 symbol_get_tc (sym
)->output
= 1;
3062 if (S_GET_STORAGE_CLASS (sym
) == C_STSYM
) {
3064 symbol_get_tc (sym
)->within
= ppc_current_block
;
3069 .stabx "z",arrays_,133,0
3072 .comm arrays_,13768,3
3074 resolve_symbol_value will copy the exp's "within" into sym's when the
3075 offset is 0. Since this seems to be corner case problem,
3076 only do the correction for storage class C_STSYM. A better solution
3077 would be to have the tc field updated in ppc_symbol_new_hook. */
3079 if (exp
.X_op
== O_symbol
)
3081 symbol_get_tc (exp
.X_add_symbol
)->within
= ppc_current_block
;
3085 if (exp
.X_op
!= O_symbol
3086 || ! S_IS_EXTERNAL (exp
.X_add_symbol
)
3087 || S_GET_SEGMENT (exp
.X_add_symbol
) != bss_section
)
3088 ppc_frob_label (sym
);
3091 symbol_remove (sym
, &symbol_rootP
, &symbol_lastP
);
3092 symbol_append (sym
, exp
.X_add_symbol
, &symbol_rootP
, &symbol_lastP
);
3093 if (symbol_get_tc (ppc_current_csect
)->within
== exp
.X_add_symbol
)
3094 symbol_get_tc (ppc_current_csect
)->within
= sym
;
3097 demand_empty_rest_of_line ();
3100 /* The .function pseudo-op. This takes several arguments. The first
3101 argument seems to be the external name of the symbol. The second
3102 argment seems to be the label for the start of the function. gcc
3103 uses the same name for both. I have no idea what the third and
3104 fourth arguments are meant to be. The optional fifth argument is
3105 an expression for the size of the function. In COFF this symbol
3106 gets an aux entry like that used for a csect. */
3109 ppc_function (ignore
)
3110 int ignore ATTRIBUTE_UNUSED
;
3118 name
= input_line_pointer
;
3119 endc
= get_symbol_end ();
3121 /* Ignore any [PR] suffix. */
3122 name
= ppc_canonicalize_symbol_name (name
);
3123 s
= strchr (name
, '[');
3124 if (s
!= (char *) NULL
3125 && strcmp (s
+ 1, "PR]") == 0)
3128 ext_sym
= symbol_find_or_make (name
);
3130 *input_line_pointer
= endc
;
3132 if (*input_line_pointer
!= ',')
3134 as_bad (_("missing symbol name"));
3135 ignore_rest_of_line ();
3138 ++input_line_pointer
;
3140 name
= input_line_pointer
;
3141 endc
= get_symbol_end ();
3143 lab_sym
= symbol_find_or_make (name
);
3145 *input_line_pointer
= endc
;
3147 if (ext_sym
!= lab_sym
)
3151 exp
.X_op
= O_symbol
;
3152 exp
.X_add_symbol
= lab_sym
;
3153 exp
.X_op_symbol
= NULL
;
3154 exp
.X_add_number
= 0;
3156 symbol_set_value_expression (ext_sym
, &exp
);
3159 if (symbol_get_tc (ext_sym
)->class == -1)
3160 symbol_get_tc (ext_sym
)->class = XMC_PR
;
3161 symbol_get_tc (ext_sym
)->output
= 1;
3163 if (*input_line_pointer
== ',')
3167 /* Ignore the third argument. */
3168 ++input_line_pointer
;
3169 expression (&ignore
);
3170 if (*input_line_pointer
== ',')
3172 /* Ignore the fourth argument. */
3173 ++input_line_pointer
;
3174 expression (&ignore
);
3175 if (*input_line_pointer
== ',')
3177 /* The fifth argument is the function size. */
3178 ++input_line_pointer
;
3179 symbol_get_tc (ext_sym
)->size
= symbol_new ("L0\001",
3182 &zero_address_frag
);
3183 pseudo_set (symbol_get_tc (ext_sym
)->size
);
3188 S_SET_DATA_TYPE (ext_sym
, DT_FCN
<< N_BTSHFT
);
3189 SF_SET_FUNCTION (ext_sym
);
3190 SF_SET_PROCESS (ext_sym
);
3191 coff_add_linesym (ext_sym
);
3193 demand_empty_rest_of_line ();
3196 /* The .bf pseudo-op. This is just like a COFF C_FCN symbol named
3197 ".bf". If the pseudo op .bi was seen before .bf, patch the .bi sym
3198 with the correct line number */
3200 static symbolS
*saved_bi_sym
= 0;
3204 int ignore ATTRIBUTE_UNUSED
;
3208 sym
= symbol_make (".bf");
3209 S_SET_SEGMENT (sym
, text_section
);
3210 symbol_set_frag (sym
, frag_now
);
3211 S_SET_VALUE (sym
, frag_now_fix ());
3212 S_SET_STORAGE_CLASS (sym
, C_FCN
);
3214 coff_line_base
= get_absolute_expression ();
3216 S_SET_NUMBER_AUXILIARY (sym
, 1);
3217 SA_SET_SYM_LNNO (sym
, coff_line_base
);
3219 /* Line number for bi. */
3222 S_SET_VALUE (saved_bi_sym
, coff_n_line_nos
);
3227 symbol_get_tc (sym
)->output
= 1;
3229 ppc_frob_label (sym
);
3231 demand_empty_rest_of_line ();
3234 /* The .ef pseudo-op. This is just like a COFF C_FCN symbol named
3235 ".ef", except that the line number is absolute, not relative to the
3236 most recent ".bf" symbol. */
3240 int ignore ATTRIBUTE_UNUSED
;
3244 sym
= symbol_make (".ef");
3245 S_SET_SEGMENT (sym
, text_section
);
3246 symbol_set_frag (sym
, frag_now
);
3247 S_SET_VALUE (sym
, frag_now_fix ());
3248 S_SET_STORAGE_CLASS (sym
, C_FCN
);
3249 S_SET_NUMBER_AUXILIARY (sym
, 1);
3250 SA_SET_SYM_LNNO (sym
, get_absolute_expression ());
3251 symbol_get_tc (sym
)->output
= 1;
3253 ppc_frob_label (sym
);
3255 demand_empty_rest_of_line ();
3258 /* The .bi and .ei pseudo-ops. These take a string argument and
3259 generates a C_BINCL or C_EINCL symbol, which goes at the start of
3260 the symbol list. The value of .bi will be know when the next .bf
3267 static symbolS
*last_biei
;
3274 name
= demand_copy_C_string (&len
);
3276 /* The value of these symbols is actually file offset. Here we set
3277 the value to the index into the line number entries. In
3278 ppc_frob_symbols we set the fix_line field, which will cause BFD
3279 to do the right thing. */
3281 sym
= symbol_make (name
);
3282 /* obj-coff.c currently only handles line numbers correctly in the
3284 S_SET_SEGMENT (sym
, text_section
);
3285 S_SET_VALUE (sym
, coff_n_line_nos
);
3286 symbol_get_bfdsym (sym
)->flags
|= BSF_DEBUGGING
;
3288 S_SET_STORAGE_CLASS (sym
, ei
? C_EINCL
: C_BINCL
);
3289 symbol_get_tc (sym
)->output
= 1;
3297 for (look
= last_biei
? last_biei
: symbol_rootP
;
3298 (look
!= (symbolS
*) NULL
3299 && (S_GET_STORAGE_CLASS (look
) == C_FILE
3300 || S_GET_STORAGE_CLASS (look
) == C_BINCL
3301 || S_GET_STORAGE_CLASS (look
) == C_EINCL
));
3302 look
= symbol_next (look
))
3304 if (look
!= (symbolS
*) NULL
)
3306 symbol_remove (sym
, &symbol_rootP
, &symbol_lastP
);
3307 symbol_insert (sym
, look
, &symbol_rootP
, &symbol_lastP
);
3311 demand_empty_rest_of_line ();
3314 /* The .bs pseudo-op. This generates a C_BSTAT symbol named ".bs".
3315 There is one argument, which is a csect symbol. The value of the
3316 .bs symbol is the index of this csect symbol. */
3320 int ignore ATTRIBUTE_UNUSED
;
3327 if (ppc_current_block
!= NULL
)
3328 as_bad (_("nested .bs blocks"));
3330 name
= input_line_pointer
;
3331 endc
= get_symbol_end ();
3333 csect
= symbol_find_or_make (name
);
3335 *input_line_pointer
= endc
;
3337 sym
= symbol_make (".bs");
3338 S_SET_SEGMENT (sym
, now_seg
);
3339 S_SET_STORAGE_CLASS (sym
, C_BSTAT
);
3340 symbol_get_bfdsym (sym
)->flags
|= BSF_DEBUGGING
;
3341 symbol_get_tc (sym
)->output
= 1;
3343 symbol_get_tc (sym
)->within
= csect
;
3345 ppc_frob_label (sym
);
3347 ppc_current_block
= sym
;
3349 demand_empty_rest_of_line ();
3352 /* The .es pseudo-op. Generate a C_ESTART symbol named .es. */
3356 int ignore ATTRIBUTE_UNUSED
;
3360 if (ppc_current_block
== NULL
)
3361 as_bad (_(".es without preceding .bs"));
3363 sym
= symbol_make (".es");
3364 S_SET_SEGMENT (sym
, now_seg
);
3365 S_SET_STORAGE_CLASS (sym
, C_ESTAT
);
3366 symbol_get_bfdsym (sym
)->flags
|= BSF_DEBUGGING
;
3367 symbol_get_tc (sym
)->output
= 1;
3369 ppc_frob_label (sym
);
3371 ppc_current_block
= NULL
;
3373 demand_empty_rest_of_line ();
3376 /* The .bb pseudo-op. Generate a C_BLOCK symbol named .bb, with a
3381 int ignore ATTRIBUTE_UNUSED
;
3385 sym
= symbol_make (".bb");
3386 S_SET_SEGMENT (sym
, text_section
);
3387 symbol_set_frag (sym
, frag_now
);
3388 S_SET_VALUE (sym
, frag_now_fix ());
3389 S_SET_STORAGE_CLASS (sym
, C_BLOCK
);
3391 S_SET_NUMBER_AUXILIARY (sym
, 1);
3392 SA_SET_SYM_LNNO (sym
, get_absolute_expression ());
3394 symbol_get_tc (sym
)->output
= 1;
3396 SF_SET_PROCESS (sym
);
3398 ppc_frob_label (sym
);
3400 demand_empty_rest_of_line ();
3403 /* The .eb pseudo-op. Generate a C_BLOCK symbol named .eb, with a
3408 int ignore ATTRIBUTE_UNUSED
;
3412 sym
= symbol_make (".eb");
3413 S_SET_SEGMENT (sym
, text_section
);
3414 symbol_set_frag (sym
, frag_now
);
3415 S_SET_VALUE (sym
, frag_now_fix ());
3416 S_SET_STORAGE_CLASS (sym
, C_BLOCK
);
3417 S_SET_NUMBER_AUXILIARY (sym
, 1);
3418 SA_SET_SYM_LNNO (sym
, get_absolute_expression ());
3419 symbol_get_tc (sym
)->output
= 1;
3421 SF_SET_PROCESS (sym
);
3423 ppc_frob_label (sym
);
3425 demand_empty_rest_of_line ();
3428 /* The .bc pseudo-op. This just creates a C_BCOMM symbol with a
3433 int ignore ATTRIBUTE_UNUSED
;
3439 name
= demand_copy_C_string (&len
);
3440 sym
= symbol_make (name
);
3441 S_SET_SEGMENT (sym
, ppc_coff_debug_section
);
3442 symbol_get_bfdsym (sym
)->flags
|= BSF_DEBUGGING
;
3443 S_SET_STORAGE_CLASS (sym
, C_BCOMM
);
3444 S_SET_VALUE (sym
, 0);
3445 symbol_get_tc (sym
)->output
= 1;
3447 ppc_frob_label (sym
);
3449 demand_empty_rest_of_line ();
3452 /* The .ec pseudo-op. This just creates a C_ECOMM symbol. */
3456 int ignore ATTRIBUTE_UNUSED
;
3460 sym
= symbol_make (".ec");
3461 S_SET_SEGMENT (sym
, ppc_coff_debug_section
);
3462 symbol_get_bfdsym (sym
)->flags
|= BSF_DEBUGGING
;
3463 S_SET_STORAGE_CLASS (sym
, C_ECOMM
);
3464 S_SET_VALUE (sym
, 0);
3465 symbol_get_tc (sym
)->output
= 1;
3467 ppc_frob_label (sym
);
3469 demand_empty_rest_of_line ();
3472 /* The .toc pseudo-op. Switch to the .toc subsegment. */
3476 int ignore ATTRIBUTE_UNUSED
;
3478 if (ppc_toc_csect
!= (symbolS
*) NULL
)
3479 subseg_set (data_section
, symbol_get_tc (ppc_toc_csect
)->subseg
);
3486 subseg
= ppc_data_subsegment
;
3487 ++ppc_data_subsegment
;
3489 subseg_new (segment_name (data_section
), subseg
);
3490 ppc_toc_frag
= frag_now
;
3492 sym
= symbol_find_or_make ("TOC[TC0]");
3493 symbol_set_frag (sym
, frag_now
);
3494 S_SET_SEGMENT (sym
, data_section
);
3495 S_SET_VALUE (sym
, (valueT
) frag_now_fix ());
3496 symbol_get_tc (sym
)->subseg
= subseg
;
3497 symbol_get_tc (sym
)->output
= 1;
3498 symbol_get_tc (sym
)->within
= sym
;
3500 ppc_toc_csect
= sym
;
3502 for (list
= ppc_data_csects
;
3503 symbol_get_tc (list
)->next
!= (symbolS
*) NULL
;
3504 list
= symbol_get_tc (list
)->next
)
3506 symbol_get_tc (list
)->next
= sym
;
3508 symbol_remove (sym
, &symbol_rootP
, &symbol_lastP
);
3509 symbol_append (sym
, symbol_get_tc (list
)->within
, &symbol_rootP
,
3513 ppc_current_csect
= ppc_toc_csect
;
3515 demand_empty_rest_of_line ();
3518 /* The AIX assembler automatically aligns the operands of a .long or
3519 .short pseudo-op, and we want to be compatible. */
3522 ppc_xcoff_cons (log_size
)
3525 frag_align (log_size
, 0, 0);
3526 record_alignment (now_seg
, log_size
);
3527 cons (1 << log_size
);
3532 int dummy ATTRIBUTE_UNUSED
;
3537 (void) expression (&exp
);
3539 if (exp
.X_op
!= O_constant
)
3541 as_bad (_("non-constant byte count"));
3545 byte_count
= exp
.X_add_number
;
3547 if (*input_line_pointer
!= ',')
3549 as_bad (_("missing value"));
3553 ++input_line_pointer
;
3557 #endif /* OBJ_XCOFF */
3558 #if defined (OBJ_XCOFF) || defined (OBJ_ELF)
3560 /* The .tc pseudo-op. This is used when generating either XCOFF or
3561 ELF. This takes two or more arguments.
3563 When generating XCOFF output, the first argument is the name to
3564 give to this location in the toc; this will be a symbol with class
3565 TC. The rest of the arguments are N-byte values to actually put at
3566 this location in the TOC; often there is just one more argument, a
3567 relocateable symbol reference. The size of the value to store
3568 depends on target word size. A 32-bit target uses 4-byte values, a
3569 64-bit target uses 8-byte values.
3571 When not generating XCOFF output, the arguments are the same, but
3572 the first argument is simply ignored. */
3576 int ignore ATTRIBUTE_UNUSED
;
3580 /* Define the TOC symbol name. */
3586 if (ppc_toc_csect
== (symbolS
*) NULL
3587 || ppc_toc_csect
!= ppc_current_csect
)
3589 as_bad (_(".tc not in .toc section"));
3590 ignore_rest_of_line ();
3594 name
= input_line_pointer
;
3595 endc
= get_symbol_end ();
3597 sym
= symbol_find_or_make (name
);
3599 *input_line_pointer
= endc
;
3601 if (S_IS_DEFINED (sym
))
3605 label
= symbol_get_tc (ppc_current_csect
)->within
;
3606 if (symbol_get_tc (label
)->class != XMC_TC0
)
3608 as_bad (_(".tc with no label"));
3609 ignore_rest_of_line ();
3613 S_SET_SEGMENT (label
, S_GET_SEGMENT (sym
));
3614 symbol_set_frag (label
, symbol_get_frag (sym
));
3615 S_SET_VALUE (label
, S_GET_VALUE (sym
));
3617 while (! is_end_of_line
[(unsigned char) *input_line_pointer
])
3618 ++input_line_pointer
;
3623 S_SET_SEGMENT (sym
, now_seg
);
3624 symbol_set_frag (sym
, frag_now
);
3625 S_SET_VALUE (sym
, (valueT
) frag_now_fix ());
3626 symbol_get_tc (sym
)->class = XMC_TC
;
3627 symbol_get_tc (sym
)->output
= 1;
3629 ppc_frob_label (sym
);
3632 #endif /* OBJ_XCOFF */
3636 /* Skip the TOC symbol name. */
3637 while (is_part_of_name (*input_line_pointer
)
3638 || *input_line_pointer
== '['
3639 || *input_line_pointer
== ']'
3640 || *input_line_pointer
== '{'
3641 || *input_line_pointer
== '}')
3642 ++input_line_pointer
;
3644 /* Align to a four/eight byte boundary. */
3645 align
= BFD_DEFAULT_TARGET_SIZE
== 64 && ppc_size
== PPC_OPCODE_64
? 3 : 2;
3646 frag_align (align
, 0, 0);
3647 record_alignment (now_seg
, align
);
3648 #endif /* OBJ_ELF */
3650 if (*input_line_pointer
!= ',')
3651 demand_empty_rest_of_line ();
3654 ++input_line_pointer
;
3655 cons ((ppc_size
== PPC_OPCODE_64
) ? 8 : 4);
3659 /* Pseudo-op .machine. */
3660 /* FIXME: `.machine' is a nop for the moment. It would be nice to
3661 accept this directive on the first line of input and set ppc_size
3662 and the target format accordingly. Unfortunately, the target
3663 format is selected in output-file.c:output_file_create before we
3664 even get to md_begin, so it's not possible without changing
3668 ppc_machine (ignore
)
3669 int ignore ATTRIBUTE_UNUSED
;
3671 discard_rest_of_line ();
3674 /* See whether a symbol is in the TOC section. */
3677 ppc_is_toc_sym (sym
)
3681 return symbol_get_tc (sym
)->class == XMC_TC
;
3684 const char *sname
= segment_name (S_GET_SEGMENT (sym
));
3685 if (BFD_DEFAULT_TARGET_SIZE
== 64 && ppc_size
== PPC_OPCODE_64
)
3686 return strcmp (sname
, ".toc") == 0;
3688 return strcmp (sname
, ".got") == 0;
3691 #endif /* defined (OBJ_XCOFF) || defined (OBJ_ELF) */
3695 /* Pseudo-ops specific to the Windows NT PowerPC PE (coff) format. */
3697 /* Set the current section. */
3699 ppc_set_current_section (new)
3702 ppc_previous_section
= ppc_current_section
;
3703 ppc_current_section
= new;
3706 /* pseudo-op: .previous
3707 behaviour: toggles the current section with the previous section.
3709 warnings: "No previous section" */
3712 ppc_previous (ignore
)
3713 int ignore ATTRIBUTE_UNUSED
;
3717 if (ppc_previous_section
== NULL
)
3719 as_warn (_("No previous section to return to. Directive ignored."));
3723 subseg_set (ppc_previous_section
, 0);
3725 ppc_set_current_section (ppc_previous_section
);
3728 /* pseudo-op: .pdata
3729 behaviour: predefined read only data section
3733 initial: .section .pdata "adr3"
3734 a - don't know -- maybe a misprint
3735 d - initialized data
3737 3 - double word aligned (that would be 4 byte boundary)
3740 Tag index tables (also known as the function table) for exception
3741 handling, debugging, etc. */
3745 int ignore ATTRIBUTE_UNUSED
;
3747 if (pdata_section
== 0)
3749 pdata_section
= subseg_new (".pdata", 0);
3751 bfd_set_section_flags (stdoutput
, pdata_section
,
3752 (SEC_ALLOC
| SEC_LOAD
| SEC_RELOC
3753 | SEC_READONLY
| SEC_DATA
));
3755 bfd_set_section_alignment (stdoutput
, pdata_section
, 2);
3759 pdata_section
= subseg_new (".pdata", 0);
3761 ppc_set_current_section (pdata_section
);
3764 /* pseudo-op: .ydata
3765 behaviour: predefined read only data section
3769 initial: .section .ydata "drw3"
3770 a - don't know -- maybe a misprint
3771 d - initialized data
3773 3 - double word aligned (that would be 4 byte boundary)
3775 Tag tables (also known as the scope table) for exception handling,
3780 int ignore ATTRIBUTE_UNUSED
;
3782 if (ydata_section
== 0)
3784 ydata_section
= subseg_new (".ydata", 0);
3785 bfd_set_section_flags (stdoutput
, ydata_section
,
3786 (SEC_ALLOC
| SEC_LOAD
| SEC_RELOC
3787 | SEC_READONLY
| SEC_DATA
));
3789 bfd_set_section_alignment (stdoutput
, ydata_section
, 3);
3793 ydata_section
= subseg_new (".ydata", 0);
3795 ppc_set_current_section (ydata_section
);
3798 /* pseudo-op: .reldata
3799 behaviour: predefined read write data section
3800 double word aligned (4-byte)
3801 FIXME: relocation is applied to it
3802 FIXME: what's the difference between this and .data?
3805 initial: .section .reldata "drw3"
3806 d - initialized data
3809 3 - double word aligned (that would be 8 byte boundary)
3812 Like .data, but intended to hold data subject to relocation, such as
3813 function descriptors, etc. */
3816 ppc_reldata (ignore
)
3817 int ignore ATTRIBUTE_UNUSED
;
3819 if (reldata_section
== 0)
3821 reldata_section
= subseg_new (".reldata", 0);
3823 bfd_set_section_flags (stdoutput
, reldata_section
,
3824 (SEC_ALLOC
| SEC_LOAD
| SEC_RELOC
3827 bfd_set_section_alignment (stdoutput
, reldata_section
, 2);
3831 reldata_section
= subseg_new (".reldata", 0);
3833 ppc_set_current_section (reldata_section
);
3836 /* pseudo-op: .rdata
3837 behaviour: predefined read only data section
3841 initial: .section .rdata "dr3"
3842 d - initialized data
3844 3 - double word aligned (that would be 4 byte boundary) */
3848 int ignore ATTRIBUTE_UNUSED
;
3850 if (rdata_section
== 0)
3852 rdata_section
= subseg_new (".rdata", 0);
3853 bfd_set_section_flags (stdoutput
, rdata_section
,
3854 (SEC_ALLOC
| SEC_LOAD
| SEC_RELOC
3855 | SEC_READONLY
| SEC_DATA
));
3857 bfd_set_section_alignment (stdoutput
, rdata_section
, 2);
3861 rdata_section
= subseg_new (".rdata", 0);
3863 ppc_set_current_section (rdata_section
);
3866 /* pseudo-op: .ualong
3867 behaviour: much like .int, with the exception that no alignment is
3869 FIXME: test the alignment statement
3875 int ignore ATTRIBUTE_UNUSED
;
3881 /* pseudo-op: .znop <symbol name>
3882 behaviour: Issue a nop instruction
3883 Issue a IMAGE_REL_PPC_IFGLUE relocation against it, using
3884 the supplied symbol name.
3886 warnings: Missing symbol name */
3890 int ignore ATTRIBUTE_UNUSED
;
3893 const struct powerpc_opcode
*opcode
;
3904 /* Strip out the symbol name. */
3905 symbol_name
= input_line_pointer
;
3906 c
= get_symbol_end ();
3908 name
= xmalloc (input_line_pointer
- symbol_name
+ 1);
3909 strcpy (name
, symbol_name
);
3911 sym
= symbol_find_or_make (name
);
3913 *input_line_pointer
= c
;
3917 /* Look up the opcode in the hash table. */
3918 opcode
= (const struct powerpc_opcode
*) hash_find (ppc_hash
, "nop");
3920 /* Stick in the nop. */
3921 insn
= opcode
->opcode
;
3923 /* Write out the instruction. */
3925 md_number_to_chars (f
, insn
, 4);
3927 f
- frag_now
->fr_literal
,
3932 BFD_RELOC_16_GOT_PCREL
);
3945 register char *name
;
3949 register symbolS
*symbolP
;
3952 name
= input_line_pointer
;
3953 c
= get_symbol_end ();
3955 /* just after name is now '\0'. */
3956 p
= input_line_pointer
;
3959 if (*input_line_pointer
!= ',')
3961 as_bad (_("Expected comma after symbol-name: rest of line ignored."));
3962 ignore_rest_of_line ();
3966 input_line_pointer
++; /* skip ',' */
3967 if ((temp
= get_absolute_expression ()) < 0)
3969 as_warn (_(".COMMon length (%ld.) <0! Ignored."), (long) temp
);
3970 ignore_rest_of_line ();
3976 /* The third argument to .comm is the alignment. */
3977 if (*input_line_pointer
!= ',')
3981 ++input_line_pointer
;
3982 align
= get_absolute_expression ();
3985 as_warn (_("ignoring bad alignment"));
3992 symbolP
= symbol_find_or_make (name
);
3995 if (S_IS_DEFINED (symbolP
) && ! S_IS_COMMON (symbolP
))
3997 as_bad (_("Ignoring attempt to re-define symbol `%s'."),
3998 S_GET_NAME (symbolP
));
3999 ignore_rest_of_line ();
4003 if (S_GET_VALUE (symbolP
))
4005 if (S_GET_VALUE (symbolP
) != (valueT
) temp
)
4006 as_bad (_("Length of .comm \"%s\" is already %ld. Not changed to %ld."),
4007 S_GET_NAME (symbolP
),
4008 (long) S_GET_VALUE (symbolP
),
4013 S_SET_VALUE (symbolP
, (valueT
) temp
);
4014 S_SET_EXTERNAL (symbolP
);
4017 demand_empty_rest_of_line ();
4021 * implement the .section pseudo op:
4022 * .section name {, "flags"}
4024 * | +--- optional flags: 'b' for bss
4026 * +-- section name 'l' for lib
4030 * 'd' (apparently m88k for data)
4032 * But if the argument is not a quoted string, treat it as a
4033 * subsegment number.
4035 * FIXME: this is a copy of the section processing from obj-coff.c, with
4036 * additions/changes for the moto-pas assembler support. There are three
4039 * FIXME: I just noticed this. This doesn't work at all really. It it
4040 * setting bits that bfd probably neither understands or uses. The
4041 * correct approach (?) will have to incorporate extra fields attached
4042 * to the section to hold the system specific stuff. (krk)
4045 * 'a' - unknown - referred to in documentation, but no definition supplied
4046 * 'c' - section has code
4047 * 'd' - section has initialized data
4048 * 'u' - section has uninitialized data
4049 * 'i' - section contains directives (info)
4050 * 'n' - section can be discarded
4051 * 'R' - remove section at link time
4053 * Section Protection:
4054 * 'r' - section is readable
4055 * 'w' - section is writeable
4056 * 'x' - section is executable
4057 * 's' - section is sharable
4059 * Section Alignment:
4060 * '0' - align to byte boundary
4061 * '1' - align to halfword undary
4062 * '2' - align to word boundary
4063 * '3' - align to doubleword boundary
4064 * '4' - align to quadword boundary
4065 * '5' - align to 32 byte boundary
4066 * '6' - align to 64 byte boundary
4071 ppc_pe_section (ignore
)
4072 int ignore ATTRIBUTE_UNUSED
;
4074 /* Strip out the section name. */
4083 section_name
= input_line_pointer
;
4084 c
= get_symbol_end ();
4086 name
= xmalloc (input_line_pointer
- section_name
+ 1);
4087 strcpy (name
, section_name
);
4089 *input_line_pointer
= c
;
4094 flags
= SEC_NO_FLAGS
;
4096 if (strcmp (name
, ".idata$2") == 0)
4100 else if (strcmp (name
, ".idata$3") == 0)
4104 else if (strcmp (name
, ".idata$4") == 0)
4108 else if (strcmp (name
, ".idata$5") == 0)
4112 else if (strcmp (name
, ".idata$6") == 0)
4117 /* Default alignment to 16 byte boundary. */
4120 if (*input_line_pointer
== ',')
4122 ++input_line_pointer
;
4124 if (*input_line_pointer
!= '"')
4125 exp
= get_absolute_expression ();
4128 ++input_line_pointer
;
4129 while (*input_line_pointer
!= '"'
4130 && ! is_end_of_line
[(unsigned char) *input_line_pointer
])
4132 switch (*input_line_pointer
)
4134 /* Section Contents */
4135 case 'a': /* unknown */
4136 as_bad (_("Unsupported section attribute -- 'a'"));
4138 case 'c': /* code section */
4141 case 'd': /* section has initialized data */
4144 case 'u': /* section has uninitialized data */
4145 /* FIXME: This is IMAGE_SCN_CNT_UNINITIALIZED_DATA
4149 case 'i': /* section contains directives (info) */
4150 /* FIXME: This is IMAGE_SCN_LNK_INFO
4152 flags
|= SEC_HAS_CONTENTS
;
4154 case 'n': /* section can be discarded */
4157 case 'R': /* Remove section at link time */
4158 flags
|= SEC_NEVER_LOAD
;
4161 /* Section Protection */
4162 case 'r': /* section is readable */
4163 flags
|= IMAGE_SCN_MEM_READ
;
4165 case 'w': /* section is writeable */
4166 flags
|= IMAGE_SCN_MEM_WRITE
;
4168 case 'x': /* section is executable */
4169 flags
|= IMAGE_SCN_MEM_EXECUTE
;
4171 case 's': /* section is sharable */
4172 flags
|= IMAGE_SCN_MEM_SHARED
;
4175 /* Section Alignment */
4176 case '0': /* align to byte boundary */
4177 flags
|= IMAGE_SCN_ALIGN_1BYTES
;
4180 case '1': /* align to halfword boundary */
4181 flags
|= IMAGE_SCN_ALIGN_2BYTES
;
4184 case '2': /* align to word boundary */
4185 flags
|= IMAGE_SCN_ALIGN_4BYTES
;
4188 case '3': /* align to doubleword boundary */
4189 flags
|= IMAGE_SCN_ALIGN_8BYTES
;
4192 case '4': /* align to quadword boundary */
4193 flags
|= IMAGE_SCN_ALIGN_16BYTES
;
4196 case '5': /* align to 32 byte boundary */
4197 flags
|= IMAGE_SCN_ALIGN_32BYTES
;
4200 case '6': /* align to 64 byte boundary */
4201 flags
|= IMAGE_SCN_ALIGN_64BYTES
;
4206 as_bad (_("unknown section attribute '%c'"),
4207 *input_line_pointer
);
4210 ++input_line_pointer
;
4212 if (*input_line_pointer
== '"')
4213 ++input_line_pointer
;
4217 sec
= subseg_new (name
, (subsegT
) exp
);
4219 ppc_set_current_section (sec
);
4221 if (flags
!= SEC_NO_FLAGS
)
4223 if (! bfd_set_section_flags (stdoutput
, sec
, flags
))
4224 as_bad (_("error setting flags for \"%s\": %s"),
4225 bfd_section_name (stdoutput
, sec
),
4226 bfd_errmsg (bfd_get_error ()));
4229 bfd_set_section_alignment (stdoutput
, sec
, align
);
4234 ppc_pe_function (ignore
)
4235 int ignore ATTRIBUTE_UNUSED
;
4241 name
= input_line_pointer
;
4242 endc
= get_symbol_end ();
4244 ext_sym
= symbol_find_or_make (name
);
4246 *input_line_pointer
= endc
;
4248 S_SET_DATA_TYPE (ext_sym
, DT_FCN
<< N_BTSHFT
);
4249 SF_SET_FUNCTION (ext_sym
);
4250 SF_SET_PROCESS (ext_sym
);
4251 coff_add_linesym (ext_sym
);
4253 demand_empty_rest_of_line ();
4257 ppc_pe_tocd (ignore
)
4258 int ignore ATTRIBUTE_UNUSED
;
4260 if (tocdata_section
== 0)
4262 tocdata_section
= subseg_new (".tocd", 0);
4263 /* FIXME: section flags won't work. */
4264 bfd_set_section_flags (stdoutput
, tocdata_section
,
4265 (SEC_ALLOC
| SEC_LOAD
| SEC_RELOC
4266 | SEC_READONLY
| SEC_DATA
));
4268 bfd_set_section_alignment (stdoutput
, tocdata_section
, 2);
4272 rdata_section
= subseg_new (".tocd", 0);
4275 ppc_set_current_section (tocdata_section
);
4277 demand_empty_rest_of_line ();
4280 /* Don't adjust TOC relocs to use the section symbol. */
4283 ppc_pe_fix_adjustable (fix
)
4286 return fix
->fx_r_type
!= BFD_RELOC_PPC_TOC16
;
4293 /* XCOFF specific symbol and file handling. */
4295 /* Canonicalize the symbol name. We use the to force the suffix, if
4296 any, to use square brackets, and to be in upper case. */
4299 ppc_canonicalize_symbol_name (name
)
4304 if (ppc_stab_symbol
)
4307 for (s
= name
; *s
!= '\0' && *s
!= '{' && *s
!= '['; s
++)
4321 for (s
++; *s
!= '\0' && *s
!= brac
; s
++)
4324 if (*s
== '\0' || s
[1] != '\0')
4325 as_bad (_("bad symbol suffix"));
4333 /* Set the class of a symbol based on the suffix, if any. This is
4334 called whenever a new symbol is created. */
4337 ppc_symbol_new_hook (sym
)
4340 struct ppc_tc_sy
*tc
;
4343 tc
= symbol_get_tc (sym
);
4347 tc
->real_name
= NULL
;
4353 if (ppc_stab_symbol
)
4356 s
= strchr (S_GET_NAME (sym
), '[');
4357 if (s
== (const char *) NULL
)
4359 /* There is no suffix. */
4368 if (strcmp (s
, "BS]") == 0)
4372 if (strcmp (s
, "DB]") == 0)
4374 else if (strcmp (s
, "DS]") == 0)
4378 if (strcmp (s
, "GL]") == 0)
4382 if (strcmp (s
, "PR]") == 0)
4386 if (strcmp (s
, "RO]") == 0)
4388 else if (strcmp (s
, "RW]") == 0)
4392 if (strcmp (s
, "SV]") == 0)
4396 if (strcmp (s
, "TC]") == 0)
4398 else if (strcmp (s
, "TI]") == 0)
4400 else if (strcmp (s
, "TB]") == 0)
4402 else if (strcmp (s
, "TC0]") == 0 || strcmp (s
, "T0]") == 0)
4403 tc
->class = XMC_TC0
;
4406 if (strcmp (s
, "UA]") == 0)
4408 else if (strcmp (s
, "UC]") == 0)
4412 if (strcmp (s
, "XO]") == 0)
4417 if (tc
->class == -1)
4418 as_bad (_("Unrecognized symbol suffix"));
4421 /* Set the class of a label based on where it is defined. This
4422 handles symbols without suffixes. Also, move the symbol so that it
4423 follows the csect symbol. */
4426 ppc_frob_label (sym
)
4429 if (ppc_current_csect
!= (symbolS
*) NULL
)
4431 if (symbol_get_tc (sym
)->class == -1)
4432 symbol_get_tc (sym
)->class = symbol_get_tc (ppc_current_csect
)->class;
4434 symbol_remove (sym
, &symbol_rootP
, &symbol_lastP
);
4435 symbol_append (sym
, symbol_get_tc (ppc_current_csect
)->within
,
4436 &symbol_rootP
, &symbol_lastP
);
4437 symbol_get_tc (ppc_current_csect
)->within
= sym
;
4441 /* This variable is set by ppc_frob_symbol if any absolute symbols are
4442 seen. It tells ppc_adjust_symtab whether it needs to look through
4445 static boolean ppc_saw_abs
;
4447 /* Change the name of a symbol just before writing it out. Set the
4448 real name if the .rename pseudo-op was used. Otherwise, remove any
4449 class suffix. Return 1 if the symbol should not be included in the
4453 ppc_frob_symbol (sym
)
4456 static symbolS
*ppc_last_function
;
4457 static symbolS
*set_end
;
4459 /* Discard symbols that should not be included in the output symbol
4461 if (! symbol_used_in_reloc_p (sym
)
4462 && ((symbol_get_bfdsym (sym
)->flags
& BSF_SECTION_SYM
) != 0
4463 || (! S_IS_EXTERNAL (sym
)
4464 && ! symbol_get_tc (sym
)->output
4465 && S_GET_STORAGE_CLASS (sym
) != C_FILE
)))
4468 if (symbol_get_tc (sym
)->real_name
!= (char *) NULL
)
4469 S_SET_NAME (sym
, symbol_get_tc (sym
)->real_name
);
4475 name
= S_GET_NAME (sym
);
4476 s
= strchr (name
, '[');
4477 if (s
!= (char *) NULL
)
4483 snew
= xmalloc (len
+ 1);
4484 memcpy (snew
, name
, len
);
4487 S_SET_NAME (sym
, snew
);
4491 if (set_end
!= (symbolS
*) NULL
)
4493 SA_SET_SYM_ENDNDX (set_end
, sym
);
4497 if (SF_GET_FUNCTION (sym
))
4499 if (ppc_last_function
!= (symbolS
*) NULL
)
4500 as_bad (_("two .function pseudo-ops with no intervening .ef"));
4501 ppc_last_function
= sym
;
4502 if (symbol_get_tc (sym
)->size
!= (symbolS
*) NULL
)
4504 resolve_symbol_value (symbol_get_tc (sym
)->size
);
4505 SA_SET_SYM_FSIZE (sym
,
4506 (long) S_GET_VALUE (symbol_get_tc (sym
)->size
));
4509 else if (S_GET_STORAGE_CLASS (sym
) == C_FCN
4510 && strcmp (S_GET_NAME (sym
), ".ef") == 0)
4512 if (ppc_last_function
== (symbolS
*) NULL
)
4513 as_bad (_(".ef with no preceding .function"));
4516 set_end
= ppc_last_function
;
4517 ppc_last_function
= NULL
;
4519 /* We don't have a C_EFCN symbol, but we need to force the
4520 COFF backend to believe that it has seen one. */
4521 coff_last_function
= NULL
;
4525 if (! S_IS_EXTERNAL (sym
)
4526 && (symbol_get_bfdsym (sym
)->flags
& BSF_SECTION_SYM
) == 0
4527 && S_GET_STORAGE_CLASS (sym
) != C_FILE
4528 && S_GET_STORAGE_CLASS (sym
) != C_FCN
4529 && S_GET_STORAGE_CLASS (sym
) != C_BLOCK
4530 && S_GET_STORAGE_CLASS (sym
) != C_BSTAT
4531 && S_GET_STORAGE_CLASS (sym
) != C_ESTAT
4532 && S_GET_STORAGE_CLASS (sym
) != C_BINCL
4533 && S_GET_STORAGE_CLASS (sym
) != C_EINCL
4534 && S_GET_SEGMENT (sym
) != ppc_coff_debug_section
)
4535 S_SET_STORAGE_CLASS (sym
, C_HIDEXT
);
4537 if (S_GET_STORAGE_CLASS (sym
) == C_EXT
4538 || S_GET_STORAGE_CLASS (sym
) == C_HIDEXT
)
4541 union internal_auxent
*a
;
4543 /* Create a csect aux. */
4544 i
= S_GET_NUMBER_AUXILIARY (sym
);
4545 S_SET_NUMBER_AUXILIARY (sym
, i
+ 1);
4546 a
= &coffsymbol (symbol_get_bfdsym (sym
))->native
[i
+ 1].u
.auxent
;
4547 if (symbol_get_tc (sym
)->class == XMC_TC0
)
4549 /* This is the TOC table. */
4550 know (strcmp (S_GET_NAME (sym
), "TOC") == 0);
4551 a
->x_csect
.x_scnlen
.l
= 0;
4552 a
->x_csect
.x_smtyp
= (2 << 3) | XTY_SD
;
4554 else if (symbol_get_tc (sym
)->subseg
!= 0)
4556 /* This is a csect symbol. x_scnlen is the size of the
4558 if (symbol_get_tc (sym
)->next
== (symbolS
*) NULL
)
4559 a
->x_csect
.x_scnlen
.l
= (bfd_section_size (stdoutput
,
4560 S_GET_SEGMENT (sym
))
4561 - S_GET_VALUE (sym
));
4564 resolve_symbol_value (symbol_get_tc (sym
)->next
);
4565 a
->x_csect
.x_scnlen
.l
= (S_GET_VALUE (symbol_get_tc (sym
)->next
)
4566 - S_GET_VALUE (sym
));
4568 a
->x_csect
.x_smtyp
= (symbol_get_tc (sym
)->align
<< 3) | XTY_SD
;
4570 else if (S_GET_SEGMENT (sym
) == bss_section
)
4572 /* This is a common symbol. */
4573 a
->x_csect
.x_scnlen
.l
= symbol_get_frag (sym
)->fr_offset
;
4574 a
->x_csect
.x_smtyp
= (symbol_get_tc (sym
)->align
<< 3) | XTY_CM
;
4575 if (S_IS_EXTERNAL (sym
))
4576 symbol_get_tc (sym
)->class = XMC_RW
;
4578 symbol_get_tc (sym
)->class = XMC_BS
;
4580 else if (S_GET_SEGMENT (sym
) == absolute_section
)
4582 /* This is an absolute symbol. The csect will be created by
4583 ppc_adjust_symtab. */
4585 a
->x_csect
.x_smtyp
= XTY_LD
;
4586 if (symbol_get_tc (sym
)->class == -1)
4587 symbol_get_tc (sym
)->class = XMC_XO
;
4589 else if (! S_IS_DEFINED (sym
))
4591 /* This is an external symbol. */
4592 a
->x_csect
.x_scnlen
.l
= 0;
4593 a
->x_csect
.x_smtyp
= XTY_ER
;
4595 else if (symbol_get_tc (sym
)->class == XMC_TC
)
4599 /* This is a TOC definition. x_scnlen is the size of the
4601 next
= symbol_next (sym
);
4602 while (symbol_get_tc (next
)->class == XMC_TC0
)
4603 next
= symbol_next (next
);
4604 if (next
== (symbolS
*) NULL
4605 || symbol_get_tc (next
)->class != XMC_TC
)
4607 if (ppc_after_toc_frag
== (fragS
*) NULL
)
4608 a
->x_csect
.x_scnlen
.l
= (bfd_section_size (stdoutput
,
4610 - S_GET_VALUE (sym
));
4612 a
->x_csect
.x_scnlen
.l
= (ppc_after_toc_frag
->fr_address
4613 - S_GET_VALUE (sym
));
4617 resolve_symbol_value (next
);
4618 a
->x_csect
.x_scnlen
.l
= (S_GET_VALUE (next
)
4619 - S_GET_VALUE (sym
));
4621 a
->x_csect
.x_smtyp
= (2 << 3) | XTY_SD
;
4627 /* This is a normal symbol definition. x_scnlen is the
4628 symbol index of the containing csect. */
4629 if (S_GET_SEGMENT (sym
) == text_section
)
4630 csect
= ppc_text_csects
;
4631 else if (S_GET_SEGMENT (sym
) == data_section
)
4632 csect
= ppc_data_csects
;
4636 /* Skip the initial dummy symbol. */
4637 csect
= symbol_get_tc (csect
)->next
;
4639 if (csect
== (symbolS
*) NULL
)
4641 as_warn (_("warning: symbol %s has no csect"), S_GET_NAME (sym
));
4642 a
->x_csect
.x_scnlen
.l
= 0;
4646 while (symbol_get_tc (csect
)->next
!= (symbolS
*) NULL
)
4648 resolve_symbol_value (symbol_get_tc (csect
)->next
);
4649 if (S_GET_VALUE (symbol_get_tc (csect
)->next
)
4650 > S_GET_VALUE (sym
))
4652 csect
= symbol_get_tc (csect
)->next
;
4655 a
->x_csect
.x_scnlen
.p
=
4656 coffsymbol (symbol_get_bfdsym (csect
))->native
;
4657 coffsymbol (symbol_get_bfdsym (sym
))->native
[i
+ 1].fix_scnlen
=
4660 a
->x_csect
.x_smtyp
= XTY_LD
;
4663 a
->x_csect
.x_parmhash
= 0;
4664 a
->x_csect
.x_snhash
= 0;
4665 if (symbol_get_tc (sym
)->class == -1)
4666 a
->x_csect
.x_smclas
= XMC_PR
;
4668 a
->x_csect
.x_smclas
= symbol_get_tc (sym
)->class;
4669 a
->x_csect
.x_stab
= 0;
4670 a
->x_csect
.x_snstab
= 0;
4672 /* Don't let the COFF backend resort these symbols. */
4673 symbol_get_bfdsym (sym
)->flags
|= BSF_NOT_AT_END
;
4675 else if (S_GET_STORAGE_CLASS (sym
) == C_BSTAT
)
4677 /* We want the value to be the symbol index of the referenced
4678 csect symbol. BFD will do that for us if we set the right
4682 coffsymbol (symbol_get_bfdsym
4683 (symbol_get_tc (sym
)->within
))->native
));
4684 coffsymbol (symbol_get_bfdsym (sym
))->native
->fix_value
= 1;
4686 else if (S_GET_STORAGE_CLASS (sym
) == C_STSYM
)
4691 /* The value is the offset from the enclosing csect. */
4692 block
= symbol_get_tc (sym
)->within
;
4693 csect
= symbol_get_tc (block
)->within
;
4694 resolve_symbol_value (csect
);
4695 S_SET_VALUE (sym
, S_GET_VALUE (sym
) - S_GET_VALUE (csect
));
4697 else if (S_GET_STORAGE_CLASS (sym
) == C_BINCL
4698 || S_GET_STORAGE_CLASS (sym
) == C_EINCL
)
4700 /* We want the value to be a file offset into the line numbers.
4701 BFD will do that for us if we set the right flags. We have
4702 already set the value correctly. */
4703 coffsymbol (symbol_get_bfdsym (sym
))->native
->fix_line
= 1;
4709 /* Adjust the symbol table. This creates csect symbols for all
4710 absolute symbols. */
4713 ppc_adjust_symtab ()
4720 for (sym
= symbol_rootP
; sym
!= NULL
; sym
= symbol_next (sym
))
4724 union internal_auxent
*a
;
4726 if (S_GET_SEGMENT (sym
) != absolute_section
)
4729 csect
= symbol_create (".abs[XO]", absolute_section
,
4730 S_GET_VALUE (sym
), &zero_address_frag
);
4731 symbol_get_bfdsym (csect
)->value
= S_GET_VALUE (sym
);
4732 S_SET_STORAGE_CLASS (csect
, C_HIDEXT
);
4733 i
= S_GET_NUMBER_AUXILIARY (csect
);
4734 S_SET_NUMBER_AUXILIARY (csect
, i
+ 1);
4735 a
= &coffsymbol (symbol_get_bfdsym (csect
))->native
[i
+ 1].u
.auxent
;
4736 a
->x_csect
.x_scnlen
.l
= 0;
4737 a
->x_csect
.x_smtyp
= XTY_SD
;
4738 a
->x_csect
.x_parmhash
= 0;
4739 a
->x_csect
.x_snhash
= 0;
4740 a
->x_csect
.x_smclas
= XMC_XO
;
4741 a
->x_csect
.x_stab
= 0;
4742 a
->x_csect
.x_snstab
= 0;
4744 symbol_insert (csect
, sym
, &symbol_rootP
, &symbol_lastP
);
4746 i
= S_GET_NUMBER_AUXILIARY (sym
);
4747 a
= &coffsymbol (symbol_get_bfdsym (sym
))->native
[i
].u
.auxent
;
4748 a
->x_csect
.x_scnlen
.p
= coffsymbol (symbol_get_bfdsym (csect
))->native
;
4749 coffsymbol (symbol_get_bfdsym (sym
))->native
[i
].fix_scnlen
= 1;
4752 ppc_saw_abs
= false;
4755 /* Set the VMA for a section. This is called on all the sections in
4759 ppc_frob_section (sec
)
4762 static bfd_size_type vma
= 0;
4764 bfd_set_section_vma (stdoutput
, sec
, vma
);
4765 vma
+= bfd_section_size (stdoutput
, sec
);
4768 #endif /* OBJ_XCOFF */
4770 /* Turn a string in input_line_pointer into a floating point constant
4771 of type TYPE, and store the appropriate bytes in *LITP. The number
4772 of LITTLENUMS emitted is stored in *SIZEP. An error message is
4773 returned, or NULL on OK. */
4776 md_atof (type
, litp
, sizep
)
4782 LITTLENUM_TYPE words
[4];
4798 return _("bad call to md_atof");
4801 t
= atof_ieee (input_line_pointer
, type
, words
);
4803 input_line_pointer
= t
;
4807 if (target_big_endian
)
4809 for (i
= 0; i
< prec
; i
++)
4811 md_number_to_chars (litp
, (valueT
) words
[i
], 2);
4817 for (i
= prec
- 1; i
>= 0; i
--)
4819 md_number_to_chars (litp
, (valueT
) words
[i
], 2);
4827 /* Write a value out to the object file, using the appropriate
4831 md_number_to_chars (buf
, val
, n
)
4836 if (target_big_endian
)
4837 number_to_chars_bigendian (buf
, val
, n
);
4839 number_to_chars_littleendian (buf
, val
, n
);
4842 /* Align a section (I don't know why this is machine dependent). */
4845 md_section_align (seg
, addr
)
4849 int align
= bfd_get_section_alignment (stdoutput
, seg
);
4851 return ((addr
+ (1 << align
) - 1) & (-1 << align
));
4854 /* We don't have any form of relaxing. */
4857 md_estimate_size_before_relax (fragp
, seg
)
4858 fragS
*fragp ATTRIBUTE_UNUSED
;
4859 asection
*seg ATTRIBUTE_UNUSED
;
4865 /* Convert a machine dependent frag. We never generate these. */
4868 md_convert_frag (abfd
, sec
, fragp
)
4869 bfd
*abfd ATTRIBUTE_UNUSED
;
4870 asection
*sec ATTRIBUTE_UNUSED
;
4871 fragS
*fragp ATTRIBUTE_UNUSED
;
4876 /* We have no need to default values of symbols. */
4879 md_undefined_symbol (name
)
4880 char *name ATTRIBUTE_UNUSED
;
4885 /* Functions concerning relocs. */
4887 /* The location from which a PC relative jump should be calculated,
4888 given a PC relative reloc. */
4891 md_pcrel_from_section (fixp
, sec
)
4893 segT sec ATTRIBUTE_UNUSED
;
4895 return fixp
->fx_frag
->fr_address
+ fixp
->fx_where
;
4900 /* This is called to see whether a fixup should be adjusted to use a
4901 section symbol. We take the opportunity to change a fixup against
4902 a symbol in the TOC subsegment into a reloc against the
4903 corresponding .tc symbol. */
4906 ppc_fix_adjustable (fix
)
4911 resolve_symbol_value (fix
->fx_addsy
);
4912 val
= S_GET_VALUE (fix
->fx_addsy
);
4913 if (ppc_toc_csect
!= (symbolS
*) NULL
4914 && fix
->fx_addsy
!= (symbolS
*) NULL
4915 && fix
->fx_addsy
!= ppc_toc_csect
4916 && S_GET_SEGMENT (fix
->fx_addsy
) == data_section
4917 && val
>= ppc_toc_frag
->fr_address
4918 && (ppc_after_toc_frag
== (fragS
*) NULL
4919 || val
< ppc_after_toc_frag
->fr_address
))
4923 for (sy
= symbol_next (ppc_toc_csect
);
4924 sy
!= (symbolS
*) NULL
;
4925 sy
= symbol_next (sy
))
4927 if (symbol_get_tc (sy
)->class == XMC_TC0
)
4929 if (symbol_get_tc (sy
)->class != XMC_TC
)
4931 resolve_symbol_value (sy
);
4932 if (val
== S_GET_VALUE (sy
))
4935 fix
->fx_addnumber
= val
- ppc_toc_frag
->fr_address
;
4940 as_bad_where (fix
->fx_file
, fix
->fx_line
,
4941 _("symbol in .toc does not match any .tc"));
4944 /* Possibly adjust the reloc to be against the csect. */
4945 if (fix
->fx_addsy
!= (symbolS
*) NULL
4946 && symbol_get_tc (fix
->fx_addsy
)->subseg
== 0
4947 && symbol_get_tc (fix
->fx_addsy
)->class != XMC_TC0
4948 && symbol_get_tc (fix
->fx_addsy
)->class != XMC_TC
4949 && S_GET_SEGMENT (fix
->fx_addsy
) != bss_section
4950 /* Don't adjust if this is a reloc in the toc section. */
4951 && (S_GET_SEGMENT (fix
->fx_addsy
) != data_section
4952 || ppc_toc_csect
== NULL
4953 || val
< ppc_toc_frag
->fr_address
4954 || (ppc_after_toc_frag
!= NULL
4955 && val
>= ppc_after_toc_frag
->fr_address
)))
4959 if (S_GET_SEGMENT (fix
->fx_addsy
) == text_section
)
4960 csect
= ppc_text_csects
;
4961 else if (S_GET_SEGMENT (fix
->fx_addsy
) == data_section
)
4962 csect
= ppc_data_csects
;
4966 /* Skip the initial dummy symbol. */
4967 csect
= symbol_get_tc (csect
)->next
;
4969 if (csect
!= (symbolS
*) NULL
)
4971 while (symbol_get_tc (csect
)->next
!= (symbolS
*) NULL
4972 && (symbol_get_frag (symbol_get_tc (csect
)->next
)->fr_address
4975 /* If the csect address equals the symbol value, then we
4976 have to look through the full symbol table to see
4977 whether this is the csect we want. Note that we will
4978 only get here if the csect has zero length. */
4979 if ((symbol_get_frag (csect
)->fr_address
== val
)
4980 && S_GET_VALUE (csect
) == S_GET_VALUE (fix
->fx_addsy
))
4984 for (scan
= symbol_next (csect
);
4986 scan
= symbol_next (scan
))
4988 if (symbol_get_tc (scan
)->subseg
!= 0)
4990 if (scan
== fix
->fx_addsy
)
4994 /* If we found the symbol before the next csect
4995 symbol, then this is the csect we want. */
4996 if (scan
== fix
->fx_addsy
)
5000 csect
= symbol_get_tc (csect
)->next
;
5003 fix
->fx_offset
+= (S_GET_VALUE (fix
->fx_addsy
)
5004 - symbol_get_frag (csect
)->fr_address
);
5005 fix
->fx_addsy
= csect
;
5009 /* Adjust a reloc against a .lcomm symbol to be against the base
5011 if (fix
->fx_addsy
!= (symbolS
*) NULL
5012 && S_GET_SEGMENT (fix
->fx_addsy
) == bss_section
5013 && ! S_IS_EXTERNAL (fix
->fx_addsy
))
5015 resolve_symbol_value (symbol_get_frag (fix
->fx_addsy
)->fr_symbol
);
5017 (S_GET_VALUE (fix
->fx_addsy
)
5018 - S_GET_VALUE (symbol_get_frag (fix
->fx_addsy
)->fr_symbol
));
5019 fix
->fx_addsy
= symbol_get_frag (fix
->fx_addsy
)->fr_symbol
;
5025 /* A reloc from one csect to another must be kept. The assembler
5026 will, of course, keep relocs between sections, and it will keep
5027 absolute relocs, but we need to force it to keep PC relative relocs
5028 between two csects in the same section. */
5031 ppc_force_relocation (fix
)
5034 /* At this point fix->fx_addsy should already have been converted to
5035 a csect symbol. If the csect does not include the fragment, then
5036 we need to force the relocation. */
5038 && fix
->fx_addsy
!= NULL
5039 && symbol_get_tc (fix
->fx_addsy
)->subseg
!= 0
5040 && ((symbol_get_frag (fix
->fx_addsy
)->fr_address
5041 > fix
->fx_frag
->fr_address
)
5042 || (symbol_get_tc (fix
->fx_addsy
)->next
!= NULL
5043 && (symbol_get_frag (symbol_get_tc (fix
->fx_addsy
)->next
)->fr_address
5044 <= fix
->fx_frag
->fr_address
))))
5050 #endif /* OBJ_XCOFF */
5054 ppc_fix_adjustable (fix
)
5057 return (fix
->fx_r_type
!= BFD_RELOC_16_GOTOFF
5058 && fix
->fx_r_type
!= BFD_RELOC_LO16_GOTOFF
5059 && fix
->fx_r_type
!= BFD_RELOC_HI16_GOTOFF
5060 && fix
->fx_r_type
!= BFD_RELOC_HI16_S_GOTOFF
5061 && fix
->fx_r_type
!= BFD_RELOC_GPREL16
5062 && fix
->fx_r_type
!= BFD_RELOC_VTABLE_INHERIT
5063 && fix
->fx_r_type
!= BFD_RELOC_VTABLE_ENTRY
5064 && ! S_IS_EXTERNAL (fix
->fx_addsy
)
5065 && ! S_IS_WEAK (fix
->fx_addsy
)
5067 || (fix
->fx_subsy
!= NULL
5068 && (S_GET_SEGMENT (fix
->fx_subsy
)
5069 == S_GET_SEGMENT (fix
->fx_addsy
)))
5070 || S_IS_LOCAL (fix
->fx_addsy
)));
5074 /* Apply a fixup to the object code. This is called for all the
5075 fixups we generated by the call to fix_new_exp, above. In the call
5076 above we used a reloc code which was the largest legal reloc code
5077 plus the operand index. Here we undo that to recover the operand
5078 index. At this point all symbol values should be fully resolved,
5079 and we attempt to completely resolve the reloc. If we can not do
5080 that, we determine the correct reloc code and put it back in the
5084 md_apply_fix3 (fixP
, valP
, seg
)
5087 segT seg ATTRIBUTE_UNUSED
;
5089 valueT value
= * valP
;
5092 if (fixP
->fx_addsy
!= NULL
)
5094 /* `*valuep' may contain the value of the symbol on which the reloc
5095 will be based; we have to remove it. */
5096 if (symbol_used_in_reloc_p (fixP
->fx_addsy
)
5097 && S_GET_SEGMENT (fixP
->fx_addsy
) != absolute_section
5098 && S_GET_SEGMENT (fixP
->fx_addsy
) != undefined_section
5099 && ! bfd_is_com_section (S_GET_SEGMENT (fixP
->fx_addsy
)))
5100 value
-= S_GET_VALUE (fixP
->fx_addsy
);
5102 /* FIXME: Why '+'? Better yet, what exactly is '*valuep'
5103 supposed to be? I think this is related to various similar
5104 FIXMEs in tc-i386.c and tc-sparc.c. */
5106 value
+= fixP
->fx_frag
->fr_address
+ fixP
->fx_where
;
5111 /* FIXME FIXME FIXME: The value we are passed in *valuep includes
5112 the symbol values. Since we are using BFD_ASSEMBLER, if we are
5113 doing this relocation the code in write.c is going to call
5114 bfd_install_relocation, which is also going to use the symbol
5115 value. That means that if the reloc is fully resolved we want to
5116 use *valuep since bfd_install_relocation is not being used.
5117 However, if the reloc is not fully resolved we do not want to use
5118 *valuep, and must use fx_offset instead. However, if the reloc
5119 is PC relative, we do want to use *valuep since it includes the
5120 result of md_pcrel_from. This is confusing. */
5121 if (fixP
->fx_addsy
== (symbolS
*) NULL
)
5124 else if (fixP
->fx_pcrel
)
5129 value
= fixP
->fx_offset
;
5130 if (fixP
->fx_subsy
!= (symbolS
*) NULL
)
5132 if (S_GET_SEGMENT (fixP
->fx_subsy
) == absolute_section
)
5133 value
-= S_GET_VALUE (fixP
->fx_subsy
);
5136 /* We can't actually support subtracting a symbol. */
5137 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
5138 _("expression too complex"));
5144 if ((int) fixP
->fx_r_type
>= (int) BFD_RELOC_UNUSED
)
5147 const struct powerpc_operand
*operand
;
5151 opindex
= (int) fixP
->fx_r_type
- (int) BFD_RELOC_UNUSED
;
5153 operand
= &powerpc_operands
[opindex
];
5156 /* An instruction like `lwz 9,sym(30)' when `sym' is not a TOC symbol
5157 does not generate a reloc. It uses the offset of `sym' within its
5158 csect. Other usages, such as `.long sym', generate relocs. This
5159 is the documented behaviour of non-TOC symbols. */
5160 if ((operand
->flags
& PPC_OPERAND_PARENS
) != 0
5161 && operand
->bits
== 16
5162 && operand
->shift
== 0
5163 && operand
->insert
== NULL
5164 && fixP
->fx_addsy
!= NULL
5165 && symbol_get_tc (fixP
->fx_addsy
)->subseg
!= 0
5166 && symbol_get_tc (fixP
->fx_addsy
)->class != XMC_TC
5167 && symbol_get_tc (fixP
->fx_addsy
)->class != XMC_TC0
5168 && S_GET_SEGMENT (fixP
->fx_addsy
) != bss_section
)
5170 value
= fixP
->fx_offset
;
5175 /* Fetch the instruction, insert the fully resolved operand
5176 value, and stuff the instruction back again. */
5177 where
= fixP
->fx_frag
->fr_literal
+ fixP
->fx_where
;
5178 if (target_big_endian
)
5179 insn
= bfd_getb32 ((unsigned char *) where
);
5181 insn
= bfd_getl32 ((unsigned char *) where
);
5182 insn
= ppc_insert_operand (insn
, operand
, (offsetT
) value
,
5183 fixP
->fx_file
, fixP
->fx_line
);
5184 if (target_big_endian
)
5185 bfd_putb32 ((bfd_vma
) insn
, (unsigned char *) where
);
5187 bfd_putl32 ((bfd_vma
) insn
, (unsigned char *) where
);
5190 /* Nothing else to do here. */
5193 assert (fixP
->fx_addsy
!= NULL
);
5195 /* Determine a BFD reloc value based on the operand information.
5196 We are only prepared to turn a few of the operands into
5198 if ((operand
->flags
& PPC_OPERAND_RELATIVE
) != 0
5199 && operand
->bits
== 26
5200 && operand
->shift
== 0)
5201 fixP
->fx_r_type
= BFD_RELOC_PPC_B26
;
5202 else if ((operand
->flags
& PPC_OPERAND_RELATIVE
) != 0
5203 && operand
->bits
== 16
5204 && operand
->shift
== 0)
5205 fixP
->fx_r_type
= BFD_RELOC_PPC_B16
;
5206 else if ((operand
->flags
& PPC_OPERAND_ABSOLUTE
) != 0
5207 && operand
->bits
== 26
5208 && operand
->shift
== 0)
5209 fixP
->fx_r_type
= BFD_RELOC_PPC_BA26
;
5210 else if ((operand
->flags
& PPC_OPERAND_ABSOLUTE
) != 0
5211 && operand
->bits
== 16
5212 && operand
->shift
== 0)
5213 fixP
->fx_r_type
= BFD_RELOC_PPC_BA16
;
5214 #if defined (OBJ_XCOFF) || defined (OBJ_ELF)
5215 else if ((operand
->flags
& PPC_OPERAND_PARENS
) != 0
5216 && operand
->bits
== 16
5217 && operand
->shift
== 0
5218 && ppc_is_toc_sym (fixP
->fx_addsy
))
5220 fixP
->fx_r_type
= BFD_RELOC_PPC_TOC16
;
5222 if (BFD_DEFAULT_TARGET_SIZE
== 64
5223 && ppc_size
== PPC_OPCODE_64
5224 && (operand
->flags
& PPC_OPERAND_DS
) != 0)
5225 fixP
->fx_r_type
= BFD_RELOC_PPC64_TOC16_DS
;
5228 if (target_big_endian
)
5229 fixP
->fx_where
+= 2;
5231 #endif /* defined (OBJ_XCOFF) || defined (OBJ_ELF) */
5237 /* Use expr_symbol_where to see if this is an expression
5239 if (expr_symbol_where (fixP
->fx_addsy
, &sfile
, &sline
))
5240 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
5241 _("unresolved expression that must be resolved"));
5243 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
5244 _("unsupported relocation against %s"),
5245 S_GET_NAME (fixP
->fx_addsy
));
5253 ppc_elf_validate_fix (fixP
, seg
);
5255 switch (fixP
->fx_r_type
)
5257 case BFD_RELOC_CTOR
:
5258 if (BFD_DEFAULT_TARGET_SIZE
== 64 && ppc_size
== PPC_OPCODE_64
)
5264 fixP
->fx_r_type
= BFD_RELOC_32_PCREL
;
5268 case BFD_RELOC_32_PCREL
:
5269 case BFD_RELOC_32_BASEREL
:
5270 case BFD_RELOC_PPC_EMB_NADDR32
:
5271 md_number_to_chars (fixP
->fx_frag
->fr_literal
+ fixP
->fx_where
,
5278 fixP
->fx_r_type
= BFD_RELOC_64_PCREL
;
5281 case BFD_RELOC_64_PCREL
:
5282 md_number_to_chars (fixP
->fx_frag
->fr_literal
+ fixP
->fx_where
,
5286 case BFD_RELOC_LO16
:
5288 case BFD_RELOC_GPREL16
:
5289 case BFD_RELOC_16_GOT_PCREL
:
5290 case BFD_RELOC_16_GOTOFF
:
5291 case BFD_RELOC_LO16_GOTOFF
:
5292 case BFD_RELOC_HI16_GOTOFF
:
5293 case BFD_RELOC_HI16_S_GOTOFF
:
5294 case BFD_RELOC_LO16_BASEREL
:
5295 case BFD_RELOC_HI16_BASEREL
:
5296 case BFD_RELOC_HI16_S_BASEREL
:
5297 case BFD_RELOC_PPC_EMB_NADDR16
:
5298 case BFD_RELOC_PPC_EMB_NADDR16_LO
:
5299 case BFD_RELOC_PPC_EMB_NADDR16_HI
:
5300 case BFD_RELOC_PPC_EMB_NADDR16_HA
:
5301 case BFD_RELOC_PPC_EMB_SDAI16
:
5302 case BFD_RELOC_PPC_EMB_SDA2REL
:
5303 case BFD_RELOC_PPC_EMB_SDA2I16
:
5304 case BFD_RELOC_PPC_EMB_RELSEC16
:
5305 case BFD_RELOC_PPC_EMB_RELST_LO
:
5306 case BFD_RELOC_PPC_EMB_RELST_HI
:
5307 case BFD_RELOC_PPC_EMB_RELST_HA
:
5308 case BFD_RELOC_PPC_EMB_RELSDA
:
5309 case BFD_RELOC_PPC_TOC16
:
5311 #if BFD_DEFAULT_TARGET_SIZE == 64
5312 case BFD_RELOC_PPC64_TOC16_LO
:
5313 case BFD_RELOC_PPC64_TOC16_HI
:
5314 case BFD_RELOC_PPC64_TOC16_HA
:
5319 if (fixP
->fx_addsy
!= NULL
)
5320 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
5321 _("cannot emit PC relative %s relocation against %s"),
5322 bfd_get_reloc_code_name (fixP
->fx_r_type
),
5323 S_GET_NAME (fixP
->fx_addsy
));
5325 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
5326 _("cannot emit PC relative %s relocation"),
5327 bfd_get_reloc_code_name (fixP
->fx_r_type
));
5330 md_number_to_chars (fixP
->fx_frag
->fr_literal
+ fixP
->fx_where
,
5334 /* This case happens when you write, for example,
5336 where L1 and L2 are defined later. */
5337 case BFD_RELOC_HI16
:
5340 md_number_to_chars (fixP
->fx_frag
->fr_literal
+ fixP
->fx_where
,
5344 case BFD_RELOC_HI16_S
:
5347 md_number_to_chars (fixP
->fx_frag
->fr_literal
+ fixP
->fx_where
,
5352 #if BFD_DEFAULT_TARGET_SIZE == 64
5353 case BFD_RELOC_PPC64_HIGHER
:
5356 md_number_to_chars (fixP
->fx_frag
->fr_literal
+ fixP
->fx_where
,
5357 PPC_HIGHER (value
), 2);
5360 case BFD_RELOC_PPC64_HIGHER_S
:
5363 md_number_to_chars (fixP
->fx_frag
->fr_literal
+ fixP
->fx_where
,
5364 PPC_HIGHERA (value
), 2);
5367 case BFD_RELOC_PPC64_HIGHEST
:
5370 md_number_to_chars (fixP
->fx_frag
->fr_literal
+ fixP
->fx_where
,
5371 PPC_HIGHEST (value
), 2);
5374 case BFD_RELOC_PPC64_HIGHEST_S
:
5377 md_number_to_chars (fixP
->fx_frag
->fr_literal
+ fixP
->fx_where
,
5378 PPC_HIGHESTA (value
), 2);
5381 case BFD_RELOC_PPC64_ADDR16_DS
:
5382 case BFD_RELOC_PPC64_ADDR16_LO_DS
:
5383 case BFD_RELOC_PPC64_GOT16_DS
:
5384 case BFD_RELOC_PPC64_GOT16_LO_DS
:
5385 case BFD_RELOC_PPC64_PLT16_LO_DS
:
5386 case BFD_RELOC_PPC64_SECTOFF_DS
:
5387 case BFD_RELOC_PPC64_SECTOFF_LO_DS
:
5388 case BFD_RELOC_PPC64_TOC16_DS
:
5389 case BFD_RELOC_PPC64_TOC16_LO_DS
:
5390 case BFD_RELOC_PPC64_PLTGOT16_DS
:
5391 case BFD_RELOC_PPC64_PLTGOT16_LO_DS
:
5395 unsigned char *where
= fixP
->fx_frag
->fr_literal
+ fixP
->fx_where
;
5398 if (target_big_endian
)
5399 val
= bfd_getb16 (where
);
5401 val
= bfd_getl16 (where
);
5402 val
|= (value
& 0xfffc);
5403 if (target_big_endian
)
5404 bfd_putb16 ((bfd_vma
) val
, where
);
5406 bfd_putl16 ((bfd_vma
) val
, where
);
5411 /* Because SDA21 modifies the register field, the size is set to 4
5412 bytes, rather than 2, so offset it here appropriately. */
5413 case BFD_RELOC_PPC_EMB_SDA21
:
5417 md_number_to_chars (fixP
->fx_frag
->fr_literal
+ fixP
->fx_where
5418 + ((target_big_endian
) ? 2 : 0),
5426 md_number_to_chars (fixP
->fx_frag
->fr_literal
+ fixP
->fx_where
,
5430 case BFD_RELOC_24_PLT_PCREL
:
5431 case BFD_RELOC_PPC_LOCAL24PC
:
5432 if (!fixP
->fx_pcrel
&& !fixP
->fx_done
)
5440 /* Fetch the instruction, insert the fully resolved operand
5441 value, and stuff the instruction back again. */
5442 where
= fixP
->fx_frag
->fr_literal
+ fixP
->fx_where
;
5443 if (target_big_endian
)
5444 insn
= bfd_getb32 ((unsigned char *) where
);
5446 insn
= bfd_getl32 ((unsigned char *) where
);
5447 if ((value
& 3) != 0)
5448 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
5449 _("must branch to an address a multiple of 4"));
5450 if ((offsetT
) value
< -0x40000000
5451 || (offsetT
) value
>= 0x40000000)
5452 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
5453 _("@local or @plt branch destination is too far away, %ld bytes"),
5455 insn
= insn
| (value
& 0x03fffffc);
5456 if (target_big_endian
)
5457 bfd_putb32 ((bfd_vma
) insn
, (unsigned char *) where
);
5459 bfd_putl32 ((bfd_vma
) insn
, (unsigned char *) where
);
5463 case BFD_RELOC_VTABLE_INHERIT
:
5466 && !S_IS_DEFINED (fixP
->fx_addsy
)
5467 && !S_IS_WEAK (fixP
->fx_addsy
))
5468 S_SET_WEAK (fixP
->fx_addsy
);
5471 case BFD_RELOC_VTABLE_ENTRY
:
5476 #if BFD_DEFAULT_TARGET_SIZE == 64
5477 /* Generated by reference to `sym@tocbase'. The sym is
5478 ignored by the linker. */
5479 case BFD_RELOC_PPC64_TOC
:
5486 _("Gas failure, reloc value %d\n"), fixP
->fx_r_type
);
5493 fixP
->fx_addnumber
= value
;
5495 if (fixP
->fx_r_type
!= BFD_RELOC_PPC_TOC16
)
5496 fixP
->fx_addnumber
= 0;
5500 fixP
->fx_addnumber
= 0;
5502 /* We want to use the offset within the data segment of the
5503 symbol, not the actual VMA of the symbol. */
5504 fixP
->fx_addnumber
=
5505 - bfd_get_section_vma (stdoutput
, S_GET_SEGMENT (fixP
->fx_addsy
));
5511 /* Generate a reloc for a fixup. */
5514 tc_gen_reloc (seg
, fixp
)
5515 asection
*seg ATTRIBUTE_UNUSED
;
5520 reloc
= (arelent
*) xmalloc (sizeof (arelent
));
5522 reloc
->sym_ptr_ptr
= (asymbol
**) xmalloc (sizeof (asymbol
*));
5523 *reloc
->sym_ptr_ptr
= symbol_get_bfdsym (fixp
->fx_addsy
);
5524 reloc
->address
= fixp
->fx_frag
->fr_address
+ fixp
->fx_where
;
5525 reloc
->howto
= bfd_reloc_type_lookup (stdoutput
, fixp
->fx_r_type
);
5526 if (reloc
->howto
== (reloc_howto_type
*) NULL
)
5528 as_bad_where (fixp
->fx_file
, fixp
->fx_line
,
5529 _("reloc %d not supported by object file format"),
5530 (int) fixp
->fx_r_type
);
5533 reloc
->addend
= fixp
->fx_addnumber
;