1 /* tc-ppc.c -- Assemble for the PowerPC or POWER (RS/6000)
2 Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002
3 Free Software Foundation, Inc.
4 Written by Ian Lance Taylor, Cygnus Support.
6 This file is part of GAS, the GNU Assembler.
8 GAS is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2, or (at your option)
13 GAS is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GAS; see the file COPYING. If not, write to the Free
20 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
25 #include "safe-ctype.h"
28 #include "opcode/ppc.h"
32 #include "dwarf2dbg.h"
39 /* This is the assembler for the PowerPC or POWER (RS/6000) chips. */
41 /* Tell the main code what the endianness is. */
42 extern int target_big_endian
;
44 /* Whether or not, we've set target_big_endian. */
45 static int set_target_endian
= 0;
47 /* Whether to use user friendly register names. */
48 #ifndef TARGET_REG_NAMES_P
50 #define TARGET_REG_NAMES_P true
52 #define TARGET_REG_NAMES_P false
56 /* Macros for calculating LO, HI, HA, HIGHER, HIGHERA, HIGHEST,
59 /* #lo(value) denotes the least significant 16 bits of the indicated. */
60 #define PPC_LO(v) ((v) & 0xffff)
62 /* #hi(value) denotes bits 16 through 31 of the indicated value. */
63 #define PPC_HI(v) (((v) >> 16) & 0xffff)
65 /* #ha(value) denotes the high adjusted value: bits 16 through 31 of
66 the indicated value, compensating for #lo() being treated as a
68 #define PPC_HA(v) PPC_HI ((v) + 0x8000)
70 /* #higher(value) denotes bits 32 through 47 of the indicated value. */
71 #define PPC_HIGHER(v) (((v) >> 32) & 0xffff)
73 /* #highera(value) denotes bits 32 through 47 of the indicated value,
74 compensating for #lo() being treated as a signed number. */
75 #define PPC_HIGHERA(v) PPC_HIGHER ((v) + 0x8000)
77 /* #highest(value) denotes bits 48 through 63 of the indicated value. */
78 #define PPC_HIGHEST(v) (((v) >> 48) & 0xffff)
80 /* #highesta(value) denotes bits 48 through 63 of the indicated value,
81 compensating for #lo being treated as a signed number. */
82 #define PPC_HIGHESTA(v) PPC_HIGHEST ((v) + 0x8000)
84 #define SEX16(val) ((((val) & 0xffff) ^ 0x8000) - 0x8000)
86 static boolean reg_names_p
= TARGET_REG_NAMES_P
;
88 static boolean register_name
PARAMS ((expressionS
*));
89 static void ppc_set_cpu
PARAMS ((void));
90 static unsigned long ppc_insert_operand
91 PARAMS ((unsigned long insn
, const struct powerpc_operand
*operand
,
92 offsetT val
, char *file
, unsigned int line
));
93 static void ppc_macro
PARAMS ((char *str
, const struct powerpc_macro
*macro
));
94 static void ppc_byte
PARAMS ((int));
96 #if defined (OBJ_XCOFF) || defined (OBJ_ELF)
97 static int ppc_is_toc_sym
PARAMS ((symbolS
*sym
));
98 static void ppc_tc
PARAMS ((int));
99 static void ppc_machine
PARAMS ((int));
103 static void ppc_comm
PARAMS ((int));
104 static void ppc_bb
PARAMS ((int));
105 static void ppc_bc
PARAMS ((int));
106 static void ppc_bf
PARAMS ((int));
107 static void ppc_biei
PARAMS ((int));
108 static void ppc_bs
PARAMS ((int));
109 static void ppc_eb
PARAMS ((int));
110 static void ppc_ec
PARAMS ((int));
111 static void ppc_ef
PARAMS ((int));
112 static void ppc_es
PARAMS ((int));
113 static void ppc_csect
PARAMS ((int));
114 static void ppc_change_csect
PARAMS ((symbolS
*));
115 static void ppc_function
PARAMS ((int));
116 static void ppc_extern
PARAMS ((int));
117 static void ppc_lglobl
PARAMS ((int));
118 static void ppc_section
PARAMS ((int));
119 static void ppc_named_section
PARAMS ((int));
120 static void ppc_stabx
PARAMS ((int));
121 static void ppc_rename
PARAMS ((int));
122 static void ppc_toc
PARAMS ((int));
123 static void ppc_xcoff_cons
PARAMS ((int));
124 static void ppc_vbyte
PARAMS ((int));
128 static bfd_reloc_code_real_type ppc_elf_suffix
PARAMS ((char **, expressionS
*));
129 static void ppc_elf_cons
PARAMS ((int));
130 static void ppc_elf_rdata
PARAMS ((int));
131 static void ppc_elf_lcomm
PARAMS ((int));
132 static void ppc_elf_validate_fix
PARAMS ((fixS
*, segT
));
136 static void ppc_set_current_section
PARAMS ((segT
));
137 static void ppc_previous
PARAMS ((int));
138 static void ppc_pdata
PARAMS ((int));
139 static void ppc_ydata
PARAMS ((int));
140 static void ppc_reldata
PARAMS ((int));
141 static void ppc_rdata
PARAMS ((int));
142 static void ppc_ualong
PARAMS ((int));
143 static void ppc_znop
PARAMS ((int));
144 static void ppc_pe_comm
PARAMS ((int));
145 static void ppc_pe_section
PARAMS ((int));
146 static void ppc_pe_function
PARAMS ((int));
147 static void ppc_pe_tocd
PARAMS ((int));
150 /* Generic assembler global variables which must be defined by all
154 /* This string holds the chars that always start a comment. If the
155 pre-processor is disabled, these aren't very useful. The macro
156 tc_comment_chars points to this. We use this, rather than the
157 usual comment_chars, so that we can switch for Solaris conventions. */
158 static const char ppc_solaris_comment_chars
[] = "#!";
159 static const char ppc_eabi_comment_chars
[] = "#";
161 #ifdef TARGET_SOLARIS_COMMENT
162 const char *ppc_comment_chars
= ppc_solaris_comment_chars
;
164 const char *ppc_comment_chars
= ppc_eabi_comment_chars
;
167 const char comment_chars
[] = "#";
170 /* Characters which start a comment at the beginning of a line. */
171 const char line_comment_chars
[] = "#";
173 /* Characters which may be used to separate multiple commands on a
175 const char line_separator_chars
[] = ";";
177 /* Characters which are used to indicate an exponent in a floating
179 const char EXP_CHARS
[] = "eE";
181 /* Characters which mean that a number is a floating point constant,
183 const char FLT_CHARS
[] = "dD";
185 /* The target specific pseudo-ops which we support. */
187 const pseudo_typeS md_pseudo_table
[] =
189 /* Pseudo-ops which must be overridden. */
190 { "byte", ppc_byte
, 0 },
193 /* Pseudo-ops specific to the RS/6000 XCOFF format. Some of these
194 legitimately belong in the obj-*.c file. However, XCOFF is based
195 on COFF, and is only implemented for the RS/6000. We just use
196 obj-coff.c, and add what we need here. */
197 { "comm", ppc_comm
, 0 },
198 { "lcomm", ppc_comm
, 1 },
202 { "bi", ppc_biei
, 0 },
204 { "csect", ppc_csect
, 0 },
205 { "data", ppc_section
, 'd' },
209 { "ei", ppc_biei
, 1 },
211 { "extern", ppc_extern
, 0 },
212 { "function", ppc_function
, 0 },
213 { "lglobl", ppc_lglobl
, 0 },
214 { "rename", ppc_rename
, 0 },
215 { "section", ppc_named_section
, 0 },
216 { "stabx", ppc_stabx
, 0 },
217 { "text", ppc_section
, 't' },
218 { "toc", ppc_toc
, 0 },
219 { "long", ppc_xcoff_cons
, 2 },
220 { "llong", ppc_xcoff_cons
, 3 },
221 { "word", ppc_xcoff_cons
, 1 },
222 { "short", ppc_xcoff_cons
, 1 },
223 { "vbyte", ppc_vbyte
, 0 },
227 { "llong", ppc_elf_cons
, 8 },
228 { "quad", ppc_elf_cons
, 8 },
229 { "long", ppc_elf_cons
, 4 },
230 { "word", ppc_elf_cons
, 2 },
231 { "short", ppc_elf_cons
, 2 },
232 { "rdata", ppc_elf_rdata
, 0 },
233 { "rodata", ppc_elf_rdata
, 0 },
234 { "lcomm", ppc_elf_lcomm
, 0 },
235 { "file", 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 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
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 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)
902 ppc_cpu
= PPC_OPCODE_PPC
| PPC_OPCODE_ALTIVEC
;
904 ppc_cpu
|= PPC_OPCODE_ALTIVEC
;
906 /* -mppc64 and -m620 mean to assemble for the 64-bit PowerPC
908 else if (strcmp (arg
, "ppc64") == 0 || strcmp (arg
, "620") == 0)
910 ppc_cpu
= PPC_OPCODE_PPC
| PPC_OPCODE_64
;
911 ppc_size
= PPC_OPCODE_64
;
913 else if (strcmp (arg
, "ppc64bridge") == 0)
915 ppc_cpu
= PPC_OPCODE_PPC
| PPC_OPCODE_64_BRIDGE
| PPC_OPCODE_64
;
916 ppc_size
= PPC_OPCODE_64
;
918 /* -mbooke/-mbooke32 mean enable 32-bit BookE support. */
919 else if (strcmp (arg
, "booke") == 0 || strcmp (arg
, "booke32") == 0)
920 ppc_cpu
= PPC_OPCODE_PPC
| PPC_OPCODE_BOOKE
;
921 /* -mbooke64 means enable 64-bit BookE support. */
922 else if (strcmp (arg
, "booke64") == 0)
924 ppc_cpu
= PPC_OPCODE_PPC
| PPC_OPCODE_BOOKE
|
925 PPC_OPCODE_BOOKE64
| PPC_OPCODE_64
;
926 ppc_size
= PPC_OPCODE_64
;
928 else if (strcmp (arg
, "power4") == 0)
930 ppc_cpu
= PPC_OPCODE_PPC
| PPC_OPCODE_64
| PPC_OPCODE_POWER4
;
931 ppc_size
= PPC_OPCODE_64
;
933 /* -mcom means assemble for the common intersection between Power
934 and PowerPC. At present, we just allow the union, rather
935 than the intersection. */
936 else if (strcmp (arg
, "com") == 0)
937 ppc_cpu
= PPC_OPCODE_COMMON
;
938 /* -many means to assemble for any architecture (PWR/PWRX/PPC). */
939 else if (strcmp (arg
, "any") == 0)
940 ppc_cpu
= PPC_OPCODE_ANY
;
942 else if (strcmp (arg
, "regnames") == 0)
945 else if (strcmp (arg
, "no-regnames") == 0)
949 /* -mrelocatable/-mrelocatable-lib -- warn about initializations
950 that require relocation. */
951 else if (strcmp (arg
, "relocatable") == 0)
953 shlib
= SHLIB_MRELOCATABLE
;
954 ppc_flags
|= EF_PPC_RELOCATABLE
;
957 else if (strcmp (arg
, "relocatable-lib") == 0)
959 shlib
= SHLIB_MRELOCATABLE
;
960 ppc_flags
|= EF_PPC_RELOCATABLE_LIB
;
963 /* -memb, set embedded bit. */
964 else if (strcmp (arg
, "emb") == 0)
965 ppc_flags
|= EF_PPC_EMB
;
967 /* -mlittle/-mbig set the endianess. */
968 else if (strcmp (arg
, "little") == 0
969 || strcmp (arg
, "little-endian") == 0)
971 target_big_endian
= 0;
972 set_target_endian
= 1;
975 else if (strcmp (arg
, "big") == 0 || strcmp (arg
, "big-endian") == 0)
977 target_big_endian
= 1;
978 set_target_endian
= 1;
981 else if (strcmp (arg
, "solaris") == 0)
984 ppc_comment_chars
= ppc_solaris_comment_chars
;
987 else if (strcmp (arg
, "no-solaris") == 0)
990 ppc_comment_chars
= ppc_eabi_comment_chars
;
995 as_bad (_("invalid switch -m%s"), arg
);
1001 /* -V: SVR4 argument to print version ID. */
1003 print_version_id ();
1006 /* -Qy, -Qn: SVR4 arguments controlling whether a .comment section
1007 should be emitted or not. FIXME: Not implemented. */
1011 /* Solaris takes -s to specify that .stabs go in a .stabs section,
1012 rather than .stabs.excl, which is ignored by the linker.
1013 FIXME: Not implemented. */
1029 md_show_usage (stream
)
1032 fprintf (stream
, _("\
1035 -mpwrx, -mpwr2 generate code for POWER/2 (RIOS2)\n\
1036 -mpwr generate code for POWER (RIOS1)\n\
1037 -m601 generate code for PowerPC 601\n\
1038 -mppc, -mppc32, -m603, -m604\n\
1039 generate code for PowerPC 603/604\n\
1040 -m403, -m405 generate code for PowerPC 403/405\n\
1041 -m7400, -m7410, -m7450, -m7455\n\
1042 generate code For PowerPC 7400/7410/7450/7455\n\
1043 -mppc64, -m620 generate code for PowerPC 620/625/630\n\
1044 -mppc64bridge generate code for PowerPC 64, including bridge insns\n\
1045 -mbooke64 generate code for 64-bit PowerPC BookE\n\
1046 -mbooke, mbooke32 generate code for 32-bit PowerPC BookE\n\
1047 -mpower4 generate code for Power4 architecture\n\
1048 -maltivec generate code for AltiVec\n\
1049 -mcom generate code Power/PowerPC common instructions\n\
1050 -many generate code for any architecture (PWR/PWRX/PPC)\n\
1051 -mregnames Allow symbolic names for registers\n\
1052 -mno-regnames Do not allow symbolic names for registers\n"));
1054 fprintf (stream
, _("\
1055 -mrelocatable support for GCC's -mrelocatble option\n\
1056 -mrelocatable-lib support for GCC's -mrelocatble-lib option\n\
1057 -memb set PPC_EMB bit in ELF flags\n\
1058 -mlittle, -mlittle-endian\n\
1059 generate code for a little endian machine\n\
1060 -mbig, -mbig-endian generate code for a big endian machine\n\
1061 -msolaris generate code for Solaris\n\
1062 -mno-solaris do not generate code for Solaris\n\
1063 -V print assembler version number\n\
1064 -Qy, -Qn ignored\n"));
1068 /* Set ppc_cpu if it is not already set. */
1073 const char *default_os
= TARGET_OS
;
1074 const char *default_cpu
= TARGET_CPU
;
1078 if (strncmp (default_os
, "aix", 3) == 0
1079 && default_os
[3] >= '4' && default_os
[3] <= '9')
1080 ppc_cpu
= PPC_OPCODE_COMMON
;
1081 else if (strncmp (default_os
, "aix3", 4) == 0)
1082 ppc_cpu
= PPC_OPCODE_POWER
;
1083 else if (strcmp (default_cpu
, "rs6000") == 0)
1084 ppc_cpu
= PPC_OPCODE_POWER
;
1085 else if (strncmp (default_cpu
, "powerpc", 7) == 0)
1086 ppc_cpu
= PPC_OPCODE_PPC
;
1088 as_fatal (_("Unknown default cpu = %s, os = %s"),
1089 default_cpu
, default_os
);
1093 /* Figure out the BFD architecture to use. */
1095 enum bfd_architecture
1098 const char *default_cpu
= TARGET_CPU
;
1101 if ((ppc_cpu
& PPC_OPCODE_PPC
) != 0)
1102 return bfd_arch_powerpc
;
1103 else if ((ppc_cpu
& PPC_OPCODE_POWER
) != 0)
1104 return bfd_arch_rs6000
;
1105 else if ((ppc_cpu
& (PPC_OPCODE_COMMON
| PPC_OPCODE_ANY
)) != 0)
1107 if (strcmp (default_cpu
, "rs6000") == 0)
1108 return bfd_arch_rs6000
;
1109 else if (strncmp (default_cpu
, "powerpc", 7) == 0)
1110 return bfd_arch_powerpc
;
1113 as_fatal (_("Neither Power nor PowerPC opcodes were selected."));
1114 return bfd_arch_unknown
;
1120 return ppc_size
== PPC_OPCODE_64
? 620 : 0;
1127 return ppc_xcoff64
? 3 : 2;
1132 ppc_target_format ()
1136 return target_big_endian
? "pe-powerpc" : "pe-powerpcle";
1138 return "xcoff-powermac";
1140 return ppc_xcoff64
? "aixcoff64-rs6000" : "aixcoff-rs6000";
1144 boolean is64
= BFD_DEFAULT_TARGET_SIZE
== 64 && ppc_size
== PPC_OPCODE_64
;
1146 return (target_big_endian
1147 ? (is64
? "elf64-powerpc" : "elf32-powerpc")
1148 : (is64
? "elf64-powerpcle" : "elf32-powerpcle"));
1152 /* This function is called when the assembler starts up. It is called
1153 after the options have been parsed and the output file has been
1159 register const struct powerpc_opcode
*op
;
1160 const struct powerpc_opcode
*op_end
;
1161 const struct powerpc_macro
*macro
;
1162 const struct powerpc_macro
*macro_end
;
1163 boolean dup_insn
= false;
1168 /* Set the ELF flags if desired. */
1169 if (ppc_flags
&& !msolaris
)
1170 bfd_set_private_flags (stdoutput
, ppc_flags
);
1173 /* Insert the opcodes into a hash table. */
1174 ppc_hash
= hash_new ();
1176 op_end
= powerpc_opcodes
+ powerpc_num_opcodes
;
1177 for (op
= powerpc_opcodes
; op
< op_end
; op
++)
1179 know ((op
->opcode
& op
->mask
) == op
->opcode
);
1181 if ((op
->flags
& ppc_cpu
) != 0
1182 && ((op
->flags
& (PPC_OPCODE_32
| PPC_OPCODE_64
)) == 0
1183 || (op
->flags
& (PPC_OPCODE_32
| PPC_OPCODE_64
)) == ppc_size
1184 || (ppc_cpu
& PPC_OPCODE_64_BRIDGE
) != 0)
1185 && ((op
->flags
& (PPC_OPCODE_POWER4
| PPC_OPCODE_NOPOWER4
)) == 0
1186 || ((op
->flags
& PPC_OPCODE_POWER4
)
1187 == (ppc_cpu
& PPC_OPCODE_POWER4
))))
1191 retval
= hash_insert (ppc_hash
, op
->name
, (PTR
) op
);
1192 if (retval
!= (const char *) NULL
)
1194 /* Ignore Power duplicates for -m601. */
1195 if ((ppc_cpu
& PPC_OPCODE_601
) != 0
1196 && (op
->flags
& PPC_OPCODE_POWER
) != 0)
1199 as_bad (_("Internal assembler error for instruction %s"),
1206 /* Insert the macros into a hash table. */
1207 ppc_macro_hash
= hash_new ();
1209 macro_end
= powerpc_macros
+ powerpc_num_macros
;
1210 for (macro
= powerpc_macros
; macro
< macro_end
; macro
++)
1212 if ((macro
->flags
& ppc_cpu
) != 0)
1216 retval
= hash_insert (ppc_macro_hash
, macro
->name
, (PTR
) macro
);
1217 if (retval
!= (const char *) NULL
)
1219 as_bad (_("Internal assembler error for macro %s"), macro
->name
);
1228 /* Tell the main code what the endianness is if it is not overidden
1230 if (!set_target_endian
)
1232 set_target_endian
= 1;
1233 target_big_endian
= PPC_BIG_ENDIAN
;
1237 ppc_coff_debug_section
= coff_section_from_bfd_index (stdoutput
, N_DEBUG
);
1239 /* Create dummy symbols to serve as initial csects. This forces the
1240 text csects to precede the data csects. These symbols will not
1242 ppc_text_csects
= symbol_make ("dummy\001");
1243 symbol_get_tc (ppc_text_csects
)->within
= ppc_text_csects
;
1244 ppc_data_csects
= symbol_make ("dummy\001");
1245 symbol_get_tc (ppc_data_csects
)->within
= ppc_data_csects
;
1250 ppc_current_section
= text_section
;
1251 ppc_previous_section
= 0;
1256 /* Insert an operand value into an instruction. */
1258 static unsigned long
1259 ppc_insert_operand (insn
, operand
, val
, file
, line
)
1261 const struct powerpc_operand
*operand
;
1266 if (operand
->bits
!= 32)
1271 if ((operand
->flags
& PPC_OPERAND_SIGNED
) != 0)
1273 if ((operand
->flags
& PPC_OPERAND_SIGNOPT
) != 0)
1274 max
= (1 << operand
->bits
) - 1;
1276 max
= (1 << (operand
->bits
- 1)) - 1;
1277 min
= - (1 << (operand
->bits
- 1));
1279 if (ppc_size
== PPC_OPCODE_32
)
1281 /* Some people write 32 bit hex constants with the sign
1282 extension done by hand. This shouldn't really be
1283 valid, but, to permit this code to assemble on a 64
1284 bit host, we sign extend the 32 bit value. */
1286 && (val
& (offsetT
) 0x80000000) != 0
1287 && (val
& (offsetT
) 0xffffffff) == val
)
1296 max
= (1 << operand
->bits
) - 1;
1300 if ((operand
->flags
& PPC_OPERAND_NEGATIVE
) != 0)
1305 if (test
< (offsetT
) min
|| test
> (offsetT
) max
)
1308 _("operand out of range (%s not between %ld and %ld)");
1311 sprint_value (buf
, test
);
1312 as_bad_where (file
, line
, err
, buf
, min
, max
);
1316 if (operand
->insert
)
1321 insn
= (*operand
->insert
) (insn
, (long) val
, ppc_cpu
| ppc_size
, &errmsg
);
1322 if (errmsg
!= (const char *) NULL
)
1323 as_bad_where (file
, line
, errmsg
);
1326 insn
|= (((long) val
& ((1 << operand
->bits
) - 1))
1334 /* Parse @got, etc. and return the desired relocation. */
1335 static bfd_reloc_code_real_type
1336 ppc_elf_suffix (str_p
, exp_p
)
1351 const struct map_bfd
*ptr
;
1353 #define MAP(str,reloc) { str, sizeof (str)-1, reloc }
1355 static const struct map_bfd mapping
[] = {
1356 MAP ("l", (int) BFD_RELOC_LO16
),
1357 MAP ("h", (int) BFD_RELOC_HI16
),
1358 MAP ("ha", (int) BFD_RELOC_HI16_S
),
1359 MAP ("brtaken", (int) BFD_RELOC_PPC_B16_BRTAKEN
),
1360 MAP ("brntaken", (int) BFD_RELOC_PPC_B16_BRNTAKEN
),
1361 MAP ("got", (int) BFD_RELOC_16_GOTOFF
),
1362 MAP ("got@l", (int) BFD_RELOC_LO16_GOTOFF
),
1363 MAP ("got@h", (int) BFD_RELOC_HI16_GOTOFF
),
1364 MAP ("got@ha", (int) BFD_RELOC_HI16_S_GOTOFF
),
1365 MAP ("fixup", (int) BFD_RELOC_CTOR
), /* warning with -mrelocatable */
1366 MAP ("plt", (int) BFD_RELOC_24_PLT_PCREL
),
1367 MAP ("pltrel24", (int) BFD_RELOC_24_PLT_PCREL
),
1368 MAP ("copy", (int) BFD_RELOC_PPC_COPY
),
1369 MAP ("globdat", (int) BFD_RELOC_PPC_GLOB_DAT
),
1370 MAP ("local24pc", (int) BFD_RELOC_PPC_LOCAL24PC
),
1371 MAP ("local", (int) BFD_RELOC_PPC_LOCAL24PC
),
1372 MAP ("pltrel", (int) BFD_RELOC_32_PLT_PCREL
),
1373 MAP ("plt@l", (int) BFD_RELOC_LO16_PLTOFF
),
1374 MAP ("plt@h", (int) BFD_RELOC_HI16_PLTOFF
),
1375 MAP ("plt@ha", (int) BFD_RELOC_HI16_S_PLTOFF
),
1376 MAP ("sdarel", (int) BFD_RELOC_GPREL16
),
1377 MAP ("sectoff", (int) BFD_RELOC_16_BASEREL
),
1378 MAP ("sectoff@l", (int) BFD_RELOC_LO16_BASEREL
),
1379 MAP ("sectoff@h", (int) BFD_RELOC_HI16_BASEREL
),
1380 MAP ("sectoff@ha", (int) BFD_RELOC_HI16_S_BASEREL
),
1381 MAP ("naddr", (int) BFD_RELOC_PPC_EMB_NADDR32
),
1382 MAP ("naddr16", (int) BFD_RELOC_PPC_EMB_NADDR16
),
1383 MAP ("naddr@l", (int) BFD_RELOC_PPC_EMB_NADDR16_LO
),
1384 MAP ("naddr@h", (int) BFD_RELOC_PPC_EMB_NADDR16_HI
),
1385 MAP ("naddr@ha", (int) BFD_RELOC_PPC_EMB_NADDR16_HA
),
1386 MAP ("sdai16", (int) BFD_RELOC_PPC_EMB_SDAI16
),
1387 MAP ("sda2rel", (int) BFD_RELOC_PPC_EMB_SDA2REL
),
1388 MAP ("sda2i16", (int) BFD_RELOC_PPC_EMB_SDA2I16
),
1389 MAP ("sda21", (int) BFD_RELOC_PPC_EMB_SDA21
),
1390 MAP ("mrkref", (int) BFD_RELOC_PPC_EMB_MRKREF
),
1391 MAP ("relsect", (int) BFD_RELOC_PPC_EMB_RELSEC16
),
1392 MAP ("relsect@l", (int) BFD_RELOC_PPC_EMB_RELST_LO
),
1393 MAP ("relsect@h", (int) BFD_RELOC_PPC_EMB_RELST_HI
),
1394 MAP ("relsect@ha", (int) BFD_RELOC_PPC_EMB_RELST_HA
),
1395 MAP ("bitfld", (int) BFD_RELOC_PPC_EMB_BIT_FLD
),
1396 MAP ("relsda", (int) BFD_RELOC_PPC_EMB_RELSDA
),
1397 MAP ("xgot", (int) BFD_RELOC_PPC_TOC16
),
1398 #if BFD_DEFAULT_TARGET_SIZE == 64
1399 MAP ("higher", - (int) BFD_RELOC_PPC64_HIGHER
),
1400 MAP ("highera", - (int) BFD_RELOC_PPC64_HIGHER_S
),
1401 MAP ("highest", - (int) BFD_RELOC_PPC64_HIGHEST
),
1402 MAP ("highesta", - (int) BFD_RELOC_PPC64_HIGHEST_S
),
1403 MAP ("tocbase", - (int) BFD_RELOC_PPC64_TOC
),
1404 MAP ("toc", - (int) BFD_RELOC_PPC_TOC16
),
1405 MAP ("toc@l", - (int) BFD_RELOC_PPC64_TOC16_LO
),
1406 MAP ("toc@h", - (int) BFD_RELOC_PPC64_TOC16_HI
),
1407 MAP ("toc@ha", - (int) BFD_RELOC_PPC64_TOC16_HA
),
1409 { (char *) 0, 0, (int) BFD_RELOC_UNUSED
}
1413 return BFD_RELOC_UNUSED
;
1415 for (ch
= *str
, str2
= ident
;
1416 (str2
< ident
+ sizeof (ident
) - 1
1417 && (ISALNUM (ch
) || ch
== '@'));
1420 *str2
++ = TOLOWER (ch
);
1427 for (ptr
= &mapping
[0]; ptr
->length
> 0; ptr
++)
1428 if (ch
== ptr
->string
[0]
1429 && len
== ptr
->length
1430 && memcmp (ident
, ptr
->string
, ptr
->length
) == 0)
1432 int reloc
= ptr
->reloc
;
1434 if (BFD_DEFAULT_TARGET_SIZE
== 64 && reloc
< 0)
1436 if (ppc_size
!= PPC_OPCODE_64
)
1437 return BFD_RELOC_UNUSED
;
1441 if (exp_p
->X_add_number
!= 0
1442 && (reloc
== (int) BFD_RELOC_16_GOTOFF
1443 || reloc
== (int) BFD_RELOC_LO16_GOTOFF
1444 || reloc
== (int) BFD_RELOC_HI16_GOTOFF
1445 || reloc
== (int) BFD_RELOC_HI16_S_GOTOFF
))
1446 as_warn (_("identifier+constant@got means identifier@got+constant"));
1448 /* Now check for identifier@suffix+constant. */
1449 if (*str
== '-' || *str
== '+')
1451 char *orig_line
= input_line_pointer
;
1452 expressionS new_exp
;
1454 input_line_pointer
= str
;
1455 expression (&new_exp
);
1456 if (new_exp
.X_op
== O_constant
)
1458 exp_p
->X_add_number
+= new_exp
.X_add_number
;
1459 str
= input_line_pointer
;
1462 if (&input_line_pointer
!= str_p
)
1463 input_line_pointer
= orig_line
;
1467 if (BFD_DEFAULT_TARGET_SIZE
== 64
1468 && reloc
== (int) BFD_RELOC_PPC64_TOC
1469 && exp_p
->X_op
== O_symbol
)
1471 /* This reloc type ignores the symbol. Change the symbol
1472 so that the dummy .TOC. symbol can be omitted from the
1474 exp_p
->X_add_symbol
= &abs_symbol
;
1477 return (bfd_reloc_code_real_type
) reloc
;
1480 return BFD_RELOC_UNUSED
;
1483 /* Like normal .long/.short/.word, except support @got, etc.
1484 Clobbers input_line_pointer, checks end-of-line. */
1486 ppc_elf_cons (nbytes
)
1487 register int nbytes
; /* 1=.byte, 2=.word, 4=.long, 8=.llong. */
1490 bfd_reloc_code_real_type reloc
;
1492 if (is_it_end_of_statement ())
1494 demand_empty_rest_of_line ();
1501 if (exp
.X_op
== O_symbol
1502 && *input_line_pointer
== '@'
1503 && (reloc
= ppc_elf_suffix (&input_line_pointer
,
1504 &exp
)) != BFD_RELOC_UNUSED
)
1506 reloc_howto_type
*reloc_howto
;
1509 reloc_howto
= bfd_reloc_type_lookup (stdoutput
, reloc
);
1510 size
= bfd_get_reloc_size (reloc_howto
);
1514 as_bad (_("%s relocations do not fit in %d bytes\n"),
1515 reloc_howto
->name
, nbytes
);
1522 p
= frag_more (nbytes
);
1524 if (target_big_endian
)
1525 offset
= nbytes
- size
;
1526 fix_new_exp (frag_now
, p
- frag_now
->fr_literal
+ offset
, size
,
1531 emit_expr (&exp
, (unsigned int) nbytes
);
1533 while (*input_line_pointer
++ == ',');
1535 /* Put terminator back into stream. */
1536 input_line_pointer
--;
1537 demand_empty_rest_of_line ();
1540 /* Solaris pseduo op to change to the .rodata section. */
1545 char *save_line
= input_line_pointer
;
1546 static char section
[] = ".rodata\n";
1548 /* Just pretend this is .section .rodata */
1549 input_line_pointer
= section
;
1550 obj_elf_section (xxx
);
1552 input_line_pointer
= save_line
;
1555 /* Pseudo op to make file scope bss items. */
1558 int xxx ATTRIBUTE_UNUSED
;
1560 register char *name
;
1564 register symbolS
*symbolP
;
1571 name
= input_line_pointer
;
1572 c
= get_symbol_end ();
1574 /* just after name is now '\0'. */
1575 p
= input_line_pointer
;
1578 if (*input_line_pointer
!= ',')
1580 as_bad (_("Expected comma after symbol-name: rest of line ignored."));
1581 ignore_rest_of_line ();
1585 input_line_pointer
++; /* skip ',' */
1586 if ((size
= get_absolute_expression ()) < 0)
1588 as_warn (_(".COMMon length (%ld.) <0! Ignored."), (long) size
);
1589 ignore_rest_of_line ();
1593 /* The third argument to .lcomm is the alignment. */
1594 if (*input_line_pointer
!= ',')
1598 ++input_line_pointer
;
1599 align
= get_absolute_expression ();
1602 as_warn (_("ignoring bad alignment"));
1608 symbolP
= symbol_find_or_make (name
);
1611 if (S_IS_DEFINED (symbolP
) && ! S_IS_COMMON (symbolP
))
1613 as_bad (_("Ignoring attempt to re-define symbol `%s'."),
1614 S_GET_NAME (symbolP
));
1615 ignore_rest_of_line ();
1619 if (S_GET_VALUE (symbolP
) && S_GET_VALUE (symbolP
) != (valueT
) size
)
1621 as_bad (_("Length of .lcomm \"%s\" is already %ld. Not changed to %ld."),
1622 S_GET_NAME (symbolP
),
1623 (long) S_GET_VALUE (symbolP
),
1626 ignore_rest_of_line ();
1632 old_subsec
= now_subseg
;
1635 /* Convert to a power of 2 alignment. */
1636 for (align2
= 0; (align
& 1) == 0; align
>>= 1, ++align2
);
1639 as_bad (_("Common alignment not a power of 2"));
1640 ignore_rest_of_line ();
1647 record_alignment (bss_section
, align2
);
1648 subseg_set (bss_section
, 0);
1650 frag_align (align2
, 0, 0);
1651 if (S_GET_SEGMENT (symbolP
) == bss_section
)
1652 symbol_get_frag (symbolP
)->fr_symbol
= 0;
1653 symbol_set_frag (symbolP
, frag_now
);
1654 pfrag
= frag_var (rs_org
, 1, 1, (relax_substateT
) 0, symbolP
, size
,
1657 S_SET_SIZE (symbolP
, size
);
1658 S_SET_SEGMENT (symbolP
, bss_section
);
1659 subseg_set (old_sec
, old_subsec
);
1660 demand_empty_rest_of_line ();
1663 /* Validate any relocations emitted for -mrelocatable, possibly adding
1664 fixups for word relocations in writable segments, so we can adjust
1667 ppc_elf_validate_fix (fixp
, seg
)
1671 if (fixp
->fx_done
|| fixp
->fx_pcrel
)
1680 case SHLIB_MRELOCATABLE
:
1681 if (fixp
->fx_r_type
<= BFD_RELOC_UNUSED
1682 && fixp
->fx_r_type
!= BFD_RELOC_16_GOTOFF
1683 && fixp
->fx_r_type
!= BFD_RELOC_HI16_GOTOFF
1684 && fixp
->fx_r_type
!= BFD_RELOC_LO16_GOTOFF
1685 && fixp
->fx_r_type
!= BFD_RELOC_HI16_S_GOTOFF
1686 && fixp
->fx_r_type
!= BFD_RELOC_16_BASEREL
1687 && fixp
->fx_r_type
!= BFD_RELOC_LO16_BASEREL
1688 && fixp
->fx_r_type
!= BFD_RELOC_HI16_BASEREL
1689 && fixp
->fx_r_type
!= BFD_RELOC_HI16_S_BASEREL
1690 && (seg
->flags
& SEC_LOAD
) != 0
1691 && strcmp (segment_name (seg
), ".got2") != 0
1692 && strcmp (segment_name (seg
), ".dtors") != 0
1693 && strcmp (segment_name (seg
), ".ctors") != 0
1694 && strcmp (segment_name (seg
), ".fixup") != 0
1695 && strcmp (segment_name (seg
), ".gcc_except_table") != 0
1696 && strcmp (segment_name (seg
), ".eh_frame") != 0
1697 && strcmp (segment_name (seg
), ".ex_shared") != 0)
1699 if ((seg
->flags
& (SEC_READONLY
| SEC_CODE
)) != 0
1700 || fixp
->fx_r_type
!= BFD_RELOC_CTOR
)
1702 as_bad_where (fixp
->fx_file
, fixp
->fx_line
,
1703 _("Relocation cannot be done when using -mrelocatable"));
1710 #if BFD_DEFAULT_TARGET_SIZE == 64
1711 /* Don't emit .TOC. symbol. */
1713 ppc_elf_frob_symbol (sym
)
1718 name
= S_GET_NAME (sym
);
1719 if (name
!= NULL
&& strcmp (name
, ".TOC.") == 0)
1721 S_CLEAR_EXTERNAL (sym
);
1728 #endif /* OBJ_ELF */
1733 * Summary of parse_toc_entry.
1735 * in: Input_line_pointer points to the '[' in one of:
1737 * [toc] [tocv] [toc32] [toc64]
1739 * Anything else is an error of one kind or another.
1742 * return value: success or failure
1743 * toc_kind: kind of toc reference
1744 * input_line_pointer:
1745 * success: first char after the ']'
1746 * failure: unchanged
1750 * [toc] - rv == success, toc_kind = default_toc
1751 * [tocv] - rv == success, toc_kind = data_in_toc
1752 * [toc32] - rv == success, toc_kind = must_be_32
1753 * [toc64] - rv == success, toc_kind = must_be_64
1757 enum toc_size_qualifier
1759 default_toc
, /* The toc cell constructed should be the system default size */
1760 data_in_toc
, /* This is a direct reference to a toc cell */
1761 must_be_32
, /* The toc cell constructed must be 32 bits wide */
1762 must_be_64
/* The toc cell constructed must be 64 bits wide */
1766 parse_toc_entry (toc_kind
)
1767 enum toc_size_qualifier
*toc_kind
;
1772 enum toc_size_qualifier t
;
1774 /* Save the input_line_pointer. */
1775 start
= input_line_pointer
;
1777 /* Skip over the '[' , and whitespace. */
1778 ++input_line_pointer
;
1781 /* Find the spelling of the operand. */
1782 toc_spec
= input_line_pointer
;
1783 c
= get_symbol_end ();
1785 if (strcmp (toc_spec
, "toc") == 0)
1789 else if (strcmp (toc_spec
, "tocv") == 0)
1793 else if (strcmp (toc_spec
, "toc32") == 0)
1797 else if (strcmp (toc_spec
, "toc64") == 0)
1803 as_bad (_("syntax error: invalid toc specifier `%s'"), toc_spec
);
1804 *input_line_pointer
= c
;
1805 input_line_pointer
= start
;
1809 /* Now find the ']'. */
1810 *input_line_pointer
= c
;
1812 SKIP_WHITESPACE (); /* leading whitespace could be there. */
1813 c
= *input_line_pointer
++; /* input_line_pointer->past char in c. */
1817 as_bad (_("syntax error: expected `]', found `%c'"), c
);
1818 input_line_pointer
= start
;
1828 /* We need to keep a list of fixups. We can't simply generate them as
1829 we go, because that would require us to first create the frag, and
1830 that would screw up references to ``.''. */
1836 bfd_reloc_code_real_type reloc
;
1839 #define MAX_INSN_FIXUPS (5)
1841 /* This routine is called for each instruction to be assembled. */
1848 const struct powerpc_opcode
*opcode
;
1850 const unsigned char *opindex_ptr
;
1854 struct ppc_fixup fixups
[MAX_INSN_FIXUPS
];
1859 bfd_reloc_code_real_type reloc
;
1862 /* Get the opcode. */
1863 for (s
= str
; *s
!= '\0' && ! ISSPACE (*s
); s
++)
1868 /* Look up the opcode in the hash table. */
1869 opcode
= (const struct powerpc_opcode
*) hash_find (ppc_hash
, str
);
1870 if (opcode
== (const struct powerpc_opcode
*) NULL
)
1872 const struct powerpc_macro
*macro
;
1874 macro
= (const struct powerpc_macro
*) hash_find (ppc_macro_hash
, str
);
1875 if (macro
== (const struct powerpc_macro
*) NULL
)
1876 as_bad (_("Unrecognized opcode: `%s'"), str
);
1878 ppc_macro (s
, macro
);
1883 insn
= opcode
->opcode
;
1886 while (ISSPACE (*str
))
1889 /* PowerPC operands are just expressions. The only real issue is
1890 that a few operand types are optional. All cases which might use
1891 an optional operand separate the operands only with commas (in
1892 some cases parentheses are used, as in ``lwz 1,0(1)'' but such
1893 cases never have optional operands). There is never more than
1894 one optional operand for an instruction. So, before we start
1895 seriously parsing the operands, we check to see if we have an
1896 optional operand, and, if we do, we count the number of commas to
1897 see whether the operand should be omitted. */
1899 for (opindex_ptr
= opcode
->operands
; *opindex_ptr
!= 0; opindex_ptr
++)
1901 const struct powerpc_operand
*operand
;
1903 operand
= &powerpc_operands
[*opindex_ptr
];
1904 if ((operand
->flags
& PPC_OPERAND_OPTIONAL
) != 0)
1906 unsigned int opcount
;
1908 /* There is an optional operand. Count the number of
1909 commas in the input line. */
1916 while ((s
= strchr (s
, ',')) != (char *) NULL
)
1923 /* If there are fewer operands in the line then are called
1924 for by the instruction, we want to skip the optional
1926 if (opcount
< strlen (opcode
->operands
))
1933 /* Gather the operands. */
1937 for (opindex_ptr
= opcode
->operands
; *opindex_ptr
!= 0; opindex_ptr
++)
1939 const struct powerpc_operand
*operand
;
1945 if (next_opindex
== 0)
1946 operand
= &powerpc_operands
[*opindex_ptr
];
1949 operand
= &powerpc_operands
[next_opindex
];
1955 /* If this is a fake operand, then we do not expect anything
1957 if ((operand
->flags
& PPC_OPERAND_FAKE
) != 0)
1959 insn
= (*operand
->insert
) (insn
, 0L, ppc_cpu
| ppc_size
, &errmsg
);
1960 if (errmsg
!= (const char *) NULL
)
1965 /* If this is an optional operand, and we are skipping it, just
1967 if ((operand
->flags
& PPC_OPERAND_OPTIONAL
) != 0
1970 if (operand
->insert
)
1972 insn
= (*operand
->insert
) (insn
, 0L, ppc_cpu
| ppc_size
, &errmsg
);
1973 if (errmsg
!= (const char *) NULL
)
1976 if ((operand
->flags
& PPC_OPERAND_NEXT
) != 0)
1977 next_opindex
= *opindex_ptr
+ 1;
1981 /* Gather the operand. */
1982 hold
= input_line_pointer
;
1983 input_line_pointer
= str
;
1986 if (*input_line_pointer
== '[')
1988 /* We are expecting something like the second argument here:
1990 * lwz r4,[toc].GS.0.static_int(rtoc)
1991 * ^^^^^^^^^^^^^^^^^^^^^^^^^^^
1992 * The argument following the `]' must be a symbol name, and the
1993 * register must be the toc register: 'rtoc' or '2'
1995 * The effect is to 0 as the displacement field
1996 * in the instruction, and issue an IMAGE_REL_PPC_TOCREL16 (or
1997 * the appropriate variation) reloc against it based on the symbol.
1998 * The linker will build the toc, and insert the resolved toc offset.
2001 * o The size of the toc entry is currently assumed to be
2002 * 32 bits. This should not be assumed to be a hard coded
2004 * o In an effort to cope with a change from 32 to 64 bits,
2005 * there are also toc entries that are specified to be
2006 * either 32 or 64 bits:
2007 * lwz r4,[toc32].GS.0.static_int(rtoc)
2008 * lwz r4,[toc64].GS.0.static_int(rtoc)
2009 * These demand toc entries of the specified size, and the
2010 * instruction probably requires it.
2014 enum toc_size_qualifier toc_kind
;
2015 bfd_reloc_code_real_type toc_reloc
;
2017 /* Go parse off the [tocXX] part. */
2018 valid_toc
= parse_toc_entry (&toc_kind
);
2022 /* Note: message has already been issued.
2023 FIXME: what sort of recovery should we do?
2024 demand_rest_of_line (); return; ? */
2027 /* Now get the symbol following the ']'. */
2033 /* In this case, we may not have seen the symbol yet,
2034 since it is allowed to appear on a .extern or .globl
2035 or just be a label in the .data section. */
2036 toc_reloc
= BFD_RELOC_PPC_TOC16
;
2039 /* 1. The symbol must be defined and either in the toc
2040 section, or a global.
2041 2. The reloc generated must have the TOCDEFN flag set
2042 in upper bit mess of the reloc type.
2043 FIXME: It's a little confusing what the tocv
2044 qualifier can be used for. At the very least, I've
2045 seen three uses, only one of which I'm sure I can
2047 if (ex
.X_op
== O_symbol
)
2049 assert (ex
.X_add_symbol
!= NULL
);
2050 if (symbol_get_bfdsym (ex
.X_add_symbol
)->section
2053 as_bad (_("[tocv] symbol is not a toc symbol"));
2057 toc_reloc
= BFD_RELOC_PPC_TOC16
;
2060 /* FIXME: these next two specifically specify 32/64 bit
2061 toc entries. We don't support them today. Is this
2062 the right way to say that? */
2063 toc_reloc
= BFD_RELOC_UNUSED
;
2064 as_bad (_("Unimplemented toc32 expression modifier"));
2067 /* FIXME: see above. */
2068 toc_reloc
= BFD_RELOC_UNUSED
;
2069 as_bad (_("Unimplemented toc64 expression modifier"));
2073 _("Unexpected return value [%d] from parse_toc_entry!\n"),
2079 /* We need to generate a fixup for this expression. */
2080 if (fc
>= MAX_INSN_FIXUPS
)
2081 as_fatal (_("too many fixups"));
2083 fixups
[fc
].reloc
= toc_reloc
;
2084 fixups
[fc
].exp
= ex
;
2085 fixups
[fc
].opindex
= *opindex_ptr
;
2088 /* Ok. We've set up the fixup for the instruction. Now make it
2089 look like the constant 0 was found here. */
2091 ex
.X_op
= O_constant
;
2092 ex
.X_add_number
= 0;
2093 ex
.X_add_symbol
= NULL
;
2094 ex
.X_op_symbol
= NULL
;
2100 if (! register_name (&ex
))
2102 if ((operand
->flags
& PPC_OPERAND_CR
) != 0)
2109 str
= input_line_pointer
;
2110 input_line_pointer
= hold
;
2112 if (ex
.X_op
== O_illegal
)
2113 as_bad (_("illegal operand"));
2114 else if (ex
.X_op
== O_absent
)
2115 as_bad (_("missing operand"));
2116 else if (ex
.X_op
== O_register
)
2118 insn
= ppc_insert_operand (insn
, operand
, ex
.X_add_number
,
2121 else if (ex
.X_op
== O_constant
)
2124 /* Allow @HA, @L, @H on constants. */
2125 char *orig_str
= str
;
2127 if ((reloc
= ppc_elf_suffix (&str
, &ex
)) != BFD_RELOC_UNUSED
)
2134 case BFD_RELOC_LO16
:
2135 /* X_unsigned is the default, so if the user has done
2136 something which cleared it, we always produce a
2138 if (ex
.X_unsigned
&& ! (operand
->flags
& PPC_OPERAND_SIGNED
))
2139 ex
.X_add_number
&= 0xffff;
2141 ex
.X_add_number
= SEX16 (ex
.X_add_number
);
2144 case BFD_RELOC_HI16
:
2145 if (ex
.X_unsigned
&& ! (operand
->flags
& PPC_OPERAND_SIGNED
))
2146 ex
.X_add_number
= PPC_HI (ex
.X_add_number
);
2148 ex
.X_add_number
= SEX16 (PPC_HI (ex
.X_add_number
));
2151 case BFD_RELOC_HI16_S
:
2152 if (ex
.X_unsigned
&& ! (operand
->flags
& PPC_OPERAND_SIGNED
))
2153 ex
.X_add_number
= PPC_HA (ex
.X_add_number
);
2155 ex
.X_add_number
= SEX16 (PPC_HA (ex
.X_add_number
));
2158 #if BFD_DEFAULT_TARGET_SIZE == 64
2159 case BFD_RELOC_PPC64_HIGHER
:
2160 if (ex
.X_unsigned
&& ! (operand
->flags
& PPC_OPERAND_SIGNED
))
2161 ex
.X_add_number
= PPC_HIGHER (ex
.X_add_number
);
2163 ex
.X_add_number
= SEX16 (PPC_HIGHER (ex
.X_add_number
));
2166 case BFD_RELOC_PPC64_HIGHER_S
:
2167 if (ex
.X_unsigned
&& ! (operand
->flags
& PPC_OPERAND_SIGNED
))
2168 ex
.X_add_number
= PPC_HIGHERA (ex
.X_add_number
);
2170 ex
.X_add_number
= SEX16 (PPC_HIGHERA (ex
.X_add_number
));
2173 case BFD_RELOC_PPC64_HIGHEST
:
2174 if (ex
.X_unsigned
&& ! (operand
->flags
& PPC_OPERAND_SIGNED
))
2175 ex
.X_add_number
= PPC_HIGHEST (ex
.X_add_number
);
2177 ex
.X_add_number
= SEX16 (PPC_HIGHEST (ex
.X_add_number
));
2180 case BFD_RELOC_PPC64_HIGHEST_S
:
2181 if (ex
.X_unsigned
&& ! (operand
->flags
& PPC_OPERAND_SIGNED
))
2182 ex
.X_add_number
= PPC_HIGHESTA (ex
.X_add_number
);
2184 ex
.X_add_number
= SEX16 (PPC_HIGHESTA (ex
.X_add_number
));
2186 #endif /* BFD_DEFAULT_TARGET_SIZE == 64 */
2188 #endif /* OBJ_ELF */
2189 insn
= ppc_insert_operand (insn
, operand
, ex
.X_add_number
,
2193 else if ((reloc
= ppc_elf_suffix (&str
, &ex
)) != BFD_RELOC_UNUSED
)
2195 /* For the absolute forms of branches, convert the PC
2196 relative form back into the absolute. */
2197 if ((operand
->flags
& PPC_OPERAND_ABSOLUTE
) != 0)
2201 case BFD_RELOC_PPC_B26
:
2202 reloc
= BFD_RELOC_PPC_BA26
;
2204 case BFD_RELOC_PPC_B16
:
2205 reloc
= BFD_RELOC_PPC_BA16
;
2207 case BFD_RELOC_PPC_B16_BRTAKEN
:
2208 reloc
= BFD_RELOC_PPC_BA16_BRTAKEN
;
2210 case BFD_RELOC_PPC_B16_BRNTAKEN
:
2211 reloc
= BFD_RELOC_PPC_BA16_BRNTAKEN
;
2218 if (BFD_DEFAULT_TARGET_SIZE
== 64
2219 && ppc_size
== PPC_OPCODE_64
2220 && (operand
->flags
& PPC_OPERAND_DS
) != 0)
2225 reloc
= BFD_RELOC_PPC64_ADDR16_DS
;
2227 case BFD_RELOC_LO16
:
2228 reloc
= BFD_RELOC_PPC64_ADDR16_LO_DS
;
2230 case BFD_RELOC_16_GOTOFF
:
2231 reloc
= BFD_RELOC_PPC64_GOT16_DS
;
2233 case BFD_RELOC_LO16_GOTOFF
:
2234 reloc
= BFD_RELOC_PPC64_GOT16_LO_DS
;
2236 case BFD_RELOC_LO16_PLTOFF
:
2237 reloc
= BFD_RELOC_PPC64_PLT16_LO_DS
;
2239 case BFD_RELOC_16_BASEREL
:
2240 reloc
= BFD_RELOC_PPC64_SECTOFF_DS
;
2242 case BFD_RELOC_LO16_BASEREL
:
2243 reloc
= BFD_RELOC_PPC64_SECTOFF_LO_DS
;
2245 case BFD_RELOC_PPC_TOC16
:
2246 reloc
= BFD_RELOC_PPC64_TOC16_DS
;
2248 case BFD_RELOC_PPC64_TOC16_LO
:
2249 reloc
= BFD_RELOC_PPC64_TOC16_LO_DS
;
2251 case BFD_RELOC_PPC64_PLTGOT16
:
2252 reloc
= BFD_RELOC_PPC64_PLTGOT16_DS
;
2254 case BFD_RELOC_PPC64_PLTGOT16_LO
:
2255 reloc
= BFD_RELOC_PPC64_PLTGOT16_LO_DS
;
2258 as_bad (_("unsupported relocation for DS offset field"));
2263 /* We need to generate a fixup for this expression. */
2264 if (fc
>= MAX_INSN_FIXUPS
)
2265 as_fatal (_("too many fixups"));
2266 fixups
[fc
].exp
= ex
;
2267 fixups
[fc
].opindex
= 0;
2268 fixups
[fc
].reloc
= reloc
;
2271 #endif /* OBJ_ELF */
2275 /* We need to generate a fixup for this expression. */
2276 if (fc
>= MAX_INSN_FIXUPS
)
2277 as_fatal (_("too many fixups"));
2278 fixups
[fc
].exp
= ex
;
2279 fixups
[fc
].opindex
= *opindex_ptr
;
2280 fixups
[fc
].reloc
= BFD_RELOC_UNUSED
;
2289 else if ((operand
->flags
& PPC_OPERAND_PARENS
) != 0)
2297 /* The call to expression should have advanced str past any
2300 && (endc
!= ',' || *str
!= '\0'))
2302 as_bad (_("syntax error; found `%c' but expected `%c'"), *str
, endc
);
2310 while (ISSPACE (*str
))
2314 as_bad (_("junk at end of line: `%s'"), str
);
2316 /* Write out the instruction. */
2318 md_number_to_chars (f
, insn
, 4);
2321 dwarf2_emit_insn (4);
2324 /* Create any fixups. At this point we do not use a
2325 bfd_reloc_code_real_type, but instead just use the
2326 BFD_RELOC_UNUSED plus the operand index. This lets us easily
2327 handle fixups for any operand type, although that is admittedly
2328 not a very exciting feature. We pick a BFD reloc type in
2330 for (i
= 0; i
< fc
; i
++)
2332 const struct powerpc_operand
*operand
;
2334 operand
= &powerpc_operands
[fixups
[i
].opindex
];
2335 if (fixups
[i
].reloc
!= BFD_RELOC_UNUSED
)
2337 reloc_howto_type
*reloc_howto
;
2342 reloc_howto
= bfd_reloc_type_lookup (stdoutput
, fixups
[i
].reloc
);
2346 size
= bfd_get_reloc_size (reloc_howto
);
2347 offset
= target_big_endian
? (4 - size
) : 0;
2349 if (size
< 1 || size
> 4)
2352 fixP
= fix_new_exp (frag_now
,
2353 f
- frag_now
->fr_literal
+ offset
,
2356 reloc_howto
->pc_relative
,
2359 /* Turn off complaints that the addend is too large for things like
2361 switch (fixups
[i
].reloc
)
2363 case BFD_RELOC_16_GOTOFF
:
2364 case BFD_RELOC_PPC_TOC16
:
2365 case BFD_RELOC_LO16
:
2366 case BFD_RELOC_HI16
:
2367 case BFD_RELOC_HI16_S
:
2369 #if BFD_DEFAULT_TARGET_SIZE == 64
2370 case BFD_RELOC_PPC64_HIGHER
:
2371 case BFD_RELOC_PPC64_HIGHER_S
:
2372 case BFD_RELOC_PPC64_HIGHEST
:
2373 case BFD_RELOC_PPC64_HIGHEST_S
:
2376 fixP
->fx_no_overflow
= 1;
2383 fix_new_exp (frag_now
,
2384 f
- frag_now
->fr_literal
,
2387 (operand
->flags
& PPC_OPERAND_RELATIVE
) != 0,
2388 ((bfd_reloc_code_real_type
)
2389 (fixups
[i
].opindex
+ (int) BFD_RELOC_UNUSED
)));
2393 /* Handle a macro. Gather all the operands, transform them as
2394 described by the macro, and call md_assemble recursively. All the
2395 operands are separated by commas; we don't accept parentheses
2396 around operands here. */
2399 ppc_macro (str
, macro
)
2401 const struct powerpc_macro
*macro
;
2412 /* Gather the users operands into the operands array. */
2417 if (count
>= sizeof operands
/ sizeof operands
[0])
2419 operands
[count
++] = s
;
2420 s
= strchr (s
, ',');
2421 if (s
== (char *) NULL
)
2426 if (count
!= macro
->operands
)
2428 as_bad (_("wrong number of operands"));
2432 /* Work out how large the string must be (the size is unbounded
2433 because it includes user input). */
2435 format
= macro
->format
;
2436 while (*format
!= '\0')
2445 arg
= strtol (format
+ 1, &send
, 10);
2446 know (send
!= format
&& arg
>= 0 && arg
< count
);
2447 len
+= strlen (operands
[arg
]);
2452 /* Put the string together. */
2453 complete
= s
= (char *) alloca (len
+ 1);
2454 format
= macro
->format
;
2455 while (*format
!= '\0')
2461 arg
= strtol (format
+ 1, &send
, 10);
2462 strcpy (s
, operands
[arg
]);
2469 /* Assemble the constructed instruction. */
2470 md_assemble (complete
);
2474 /* For ELF, add support for SHF_EXCLUDE and SHT_ORDERED. */
2477 ppc_section_letter (letter
, ptr_msg
)
2484 *ptr_msg
= _("Bad .section directive: want a,e,w,x,M,S in string");
2489 ppc_section_word (str
, len
)
2493 if (len
== 7 && strncmp (str
, "exclude", 7) == 0)
2500 ppc_section_type (str
, len
)
2504 if (len
== 7 && strncmp (str
, "ordered", 7) == 0)
2511 ppc_section_flags (flags
, attr
, type
)
2516 if (type
== SHT_ORDERED
)
2517 flags
|= SEC_ALLOC
| SEC_LOAD
| SEC_SORT_ENTRIES
;
2519 if (attr
& SHF_EXCLUDE
)
2520 flags
|= SEC_EXCLUDE
;
2524 #endif /* OBJ_ELF */
2527 /* Pseudo-op handling. */
2529 /* The .byte pseudo-op. This is similar to the normal .byte
2530 pseudo-op, but it can also take a single ASCII string. */
2534 int ignore ATTRIBUTE_UNUSED
;
2536 if (*input_line_pointer
!= '\"')
2542 /* Gather characters. A real double quote is doubled. Unusual
2543 characters are not permitted. */
2544 ++input_line_pointer
;
2549 c
= *input_line_pointer
++;
2553 if (*input_line_pointer
!= '\"')
2555 ++input_line_pointer
;
2558 FRAG_APPEND_1_CHAR (c
);
2561 demand_empty_rest_of_line ();
2566 /* XCOFF specific pseudo-op handling. */
2568 /* This is set if we are creating a .stabx symbol, since we don't want
2569 to handle symbol suffixes for such symbols. */
2570 static boolean ppc_stab_symbol
;
2572 /* The .comm and .lcomm pseudo-ops for XCOFF. XCOFF puts common
2573 symbols in the .bss segment as though they were local common
2574 symbols, and uses a different smclas. The native Aix 4.3.3 assember
2575 aligns .comm and .lcomm to 4 bytes. */
2581 asection
*current_seg
= now_seg
;
2582 subsegT current_subseg
= now_subseg
;
2588 symbolS
*lcomm_sym
= NULL
;
2592 name
= input_line_pointer
;
2593 endc
= get_symbol_end ();
2594 end_name
= input_line_pointer
;
2597 if (*input_line_pointer
!= ',')
2599 as_bad (_("missing size"));
2600 ignore_rest_of_line ();
2603 ++input_line_pointer
;
2605 size
= get_absolute_expression ();
2608 as_bad (_("negative size"));
2609 ignore_rest_of_line ();
2615 /* The third argument to .comm is the alignment. */
2616 if (*input_line_pointer
!= ',')
2620 ++input_line_pointer
;
2621 align
= get_absolute_expression ();
2624 as_warn (_("ignoring bad alignment"));
2639 /* The third argument to .lcomm appears to be the real local
2640 common symbol to create. References to the symbol named in
2641 the first argument are turned into references to the third
2643 if (*input_line_pointer
!= ',')
2645 as_bad (_("missing real symbol name"));
2646 ignore_rest_of_line ();
2649 ++input_line_pointer
;
2651 lcomm_name
= input_line_pointer
;
2652 lcomm_endc
= get_symbol_end ();
2654 lcomm_sym
= symbol_find_or_make (lcomm_name
);
2656 *input_line_pointer
= lcomm_endc
;
2660 sym
= symbol_find_or_make (name
);
2663 if (S_IS_DEFINED (sym
)
2664 || S_GET_VALUE (sym
) != 0)
2666 as_bad (_("attempt to redefine symbol"));
2667 ignore_rest_of_line ();
2671 record_alignment (bss_section
, align
);
2674 || ! S_IS_DEFINED (lcomm_sym
))
2683 S_SET_EXTERNAL (sym
);
2687 symbol_get_tc (lcomm_sym
)->output
= 1;
2688 def_sym
= lcomm_sym
;
2692 subseg_set (bss_section
, 1);
2693 frag_align (align
, 0, 0);
2695 symbol_set_frag (def_sym
, frag_now
);
2696 pfrag
= frag_var (rs_org
, 1, 1, (relax_substateT
) 0, def_sym
,
2697 def_size
, (char *) NULL
);
2699 S_SET_SEGMENT (def_sym
, bss_section
);
2700 symbol_get_tc (def_sym
)->align
= align
;
2704 /* Align the size of lcomm_sym. */
2705 symbol_get_frag (lcomm_sym
)->fr_offset
=
2706 ((symbol_get_frag (lcomm_sym
)->fr_offset
+ (1 << align
) - 1)
2707 &~ ((1 << align
) - 1));
2708 if (align
> symbol_get_tc (lcomm_sym
)->align
)
2709 symbol_get_tc (lcomm_sym
)->align
= align
;
2714 /* Make sym an offset from lcomm_sym. */
2715 S_SET_SEGMENT (sym
, bss_section
);
2716 symbol_set_frag (sym
, symbol_get_frag (lcomm_sym
));
2717 S_SET_VALUE (sym
, symbol_get_frag (lcomm_sym
)->fr_offset
);
2718 symbol_get_frag (lcomm_sym
)->fr_offset
+= size
;
2721 subseg_set (current_seg
, current_subseg
);
2723 demand_empty_rest_of_line ();
2726 /* The .csect pseudo-op. This switches us into a different
2727 subsegment. The first argument is a symbol whose value is the
2728 start of the .csect. In COFF, csect symbols get special aux
2729 entries defined by the x_csect field of union internal_auxent. The
2730 optional second argument is the alignment (the default is 2). */
2734 int ignore ATTRIBUTE_UNUSED
;
2740 name
= input_line_pointer
;
2741 endc
= get_symbol_end ();
2743 sym
= symbol_find_or_make (name
);
2745 *input_line_pointer
= endc
;
2747 if (S_GET_NAME (sym
)[0] == '\0')
2749 /* An unnamed csect is assumed to be [PR]. */
2750 symbol_get_tc (sym
)->class = XMC_PR
;
2753 ppc_change_csect (sym
);
2755 if (*input_line_pointer
== ',')
2757 ++input_line_pointer
;
2758 symbol_get_tc (sym
)->align
= get_absolute_expression ();
2761 demand_empty_rest_of_line ();
2764 /* Change to a different csect. */
2767 ppc_change_csect (sym
)
2770 if (S_IS_DEFINED (sym
))
2771 subseg_set (S_GET_SEGMENT (sym
), symbol_get_tc (sym
)->subseg
);
2779 /* This is a new csect. We need to look at the symbol class to
2780 figure out whether it should go in the text section or the
2783 switch (symbol_get_tc (sym
)->class)
2793 S_SET_SEGMENT (sym
, text_section
);
2794 symbol_get_tc (sym
)->subseg
= ppc_text_subsegment
;
2795 ++ppc_text_subsegment
;
2796 list_ptr
= &ppc_text_csects
;
2805 if (ppc_toc_csect
!= NULL
2806 && (symbol_get_tc (ppc_toc_csect
)->subseg
+ 1
2807 == ppc_data_subsegment
))
2809 S_SET_SEGMENT (sym
, data_section
);
2810 symbol_get_tc (sym
)->subseg
= ppc_data_subsegment
;
2811 ++ppc_data_subsegment
;
2812 list_ptr
= &ppc_data_csects
;
2818 /* We set the obstack chunk size to a small value before
2819 changing subsegments, so that we don't use a lot of memory
2820 space for what may be a small section. */
2821 hold_chunksize
= chunksize
;
2824 subseg_new (segment_name (S_GET_SEGMENT (sym
)),
2825 symbol_get_tc (sym
)->subseg
);
2827 chunksize
= hold_chunksize
;
2830 ppc_after_toc_frag
= frag_now
;
2832 symbol_set_frag (sym
, frag_now
);
2833 S_SET_VALUE (sym
, (valueT
) frag_now_fix ());
2835 symbol_get_tc (sym
)->align
= (ppc_xcoff64
) ? 3 : 2;
2836 symbol_get_tc (sym
)->output
= 1;
2837 symbol_get_tc (sym
)->within
= sym
;
2839 for (list
= *list_ptr
;
2840 symbol_get_tc (list
)->next
!= (symbolS
*) NULL
;
2841 list
= symbol_get_tc (list
)->next
)
2843 symbol_get_tc (list
)->next
= sym
;
2845 symbol_remove (sym
, &symbol_rootP
, &symbol_lastP
);
2846 symbol_append (sym
, symbol_get_tc (list
)->within
, &symbol_rootP
,
2850 ppc_current_csect
= sym
;
2853 /* This function handles the .text and .data pseudo-ops. These
2854 pseudo-ops aren't really used by XCOFF; we implement them for the
2855 convenience of people who aren't used to XCOFF. */
2866 else if (type
== 'd')
2871 sym
= symbol_find_or_make (name
);
2873 ppc_change_csect (sym
);
2875 demand_empty_rest_of_line ();
2878 /* This function handles the .section pseudo-op. This is mostly to
2879 give an error, since XCOFF only supports .text, .data and .bss, but
2880 we do permit the user to name the text or data section. */
2883 ppc_named_section (ignore
)
2884 int ignore ATTRIBUTE_UNUSED
;
2887 const char *real_name
;
2891 user_name
= input_line_pointer
;
2892 c
= get_symbol_end ();
2894 if (strcmp (user_name
, ".text") == 0)
2895 real_name
= ".text[PR]";
2896 else if (strcmp (user_name
, ".data") == 0)
2897 real_name
= ".data[RW]";
2900 as_bad (_("The XCOFF file format does not support arbitrary sections"));
2901 *input_line_pointer
= c
;
2902 ignore_rest_of_line ();
2906 *input_line_pointer
= c
;
2908 sym
= symbol_find_or_make (real_name
);
2910 ppc_change_csect (sym
);
2912 demand_empty_rest_of_line ();
2915 /* The .extern pseudo-op. We create an undefined symbol. */
2919 int ignore ATTRIBUTE_UNUSED
;
2924 name
= input_line_pointer
;
2925 endc
= get_symbol_end ();
2927 (void) symbol_find_or_make (name
);
2929 *input_line_pointer
= endc
;
2931 demand_empty_rest_of_line ();
2934 /* The .lglobl pseudo-op. Keep the symbol in the symbol table. */
2938 int ignore ATTRIBUTE_UNUSED
;
2944 name
= input_line_pointer
;
2945 endc
= get_symbol_end ();
2947 sym
= symbol_find_or_make (name
);
2949 *input_line_pointer
= endc
;
2951 symbol_get_tc (sym
)->output
= 1;
2953 demand_empty_rest_of_line ();
2956 /* The .rename pseudo-op. The RS/6000 assembler can rename symbols,
2957 although I don't know why it bothers. */
2961 int ignore ATTRIBUTE_UNUSED
;
2968 name
= input_line_pointer
;
2969 endc
= get_symbol_end ();
2971 sym
= symbol_find_or_make (name
);
2973 *input_line_pointer
= endc
;
2975 if (*input_line_pointer
!= ',')
2977 as_bad (_("missing rename string"));
2978 ignore_rest_of_line ();
2981 ++input_line_pointer
;
2983 symbol_get_tc (sym
)->real_name
= demand_copy_C_string (&len
);
2985 demand_empty_rest_of_line ();
2988 /* The .stabx pseudo-op. This is similar to a normal .stabs
2989 pseudo-op, but slightly different. A sample is
2990 .stabx "main:F-1",.main,142,0
2991 The first argument is the symbol name to create. The second is the
2992 value, and the third is the storage class. The fourth seems to be
2993 always zero, and I am assuming it is the type. */
2997 int ignore ATTRIBUTE_UNUSED
;
3004 name
= demand_copy_C_string (&len
);
3006 if (*input_line_pointer
!= ',')
3008 as_bad (_("missing value"));
3011 ++input_line_pointer
;
3013 ppc_stab_symbol
= true;
3014 sym
= symbol_make (name
);
3015 ppc_stab_symbol
= false;
3017 symbol_get_tc (sym
)->real_name
= name
;
3019 (void) expression (&exp
);
3026 as_bad (_("illegal .stabx expression; zero assumed"));
3027 exp
.X_add_number
= 0;
3030 S_SET_VALUE (sym
, (valueT
) exp
.X_add_number
);
3031 symbol_set_frag (sym
, &zero_address_frag
);
3035 if (S_GET_SEGMENT (exp
.X_add_symbol
) == undefined_section
)
3036 symbol_set_value_expression (sym
, &exp
);
3040 exp
.X_add_number
+ S_GET_VALUE (exp
.X_add_symbol
));
3041 symbol_set_frag (sym
, symbol_get_frag (exp
.X_add_symbol
));
3046 /* The value is some complex expression. This will probably
3047 fail at some later point, but this is probably the right
3048 thing to do here. */
3049 symbol_set_value_expression (sym
, &exp
);
3053 S_SET_SEGMENT (sym
, ppc_coff_debug_section
);
3054 symbol_get_bfdsym (sym
)->flags
|= BSF_DEBUGGING
;
3056 if (*input_line_pointer
!= ',')
3058 as_bad (_("missing class"));
3061 ++input_line_pointer
;
3063 S_SET_STORAGE_CLASS (sym
, get_absolute_expression ());
3065 if (*input_line_pointer
!= ',')
3067 as_bad (_("missing type"));
3070 ++input_line_pointer
;
3072 S_SET_DATA_TYPE (sym
, get_absolute_expression ());
3074 symbol_get_tc (sym
)->output
= 1;
3076 if (S_GET_STORAGE_CLASS (sym
) == C_STSYM
) {
3078 symbol_get_tc (sym
)->within
= ppc_current_block
;
3083 .stabx "z",arrays_,133,0
3086 .comm arrays_,13768,3
3088 resolve_symbol_value will copy the exp's "within" into sym's when the
3089 offset is 0. Since this seems to be corner case problem,
3090 only do the correction for storage class C_STSYM. A better solution
3091 would be to have the tc field updated in ppc_symbol_new_hook. */
3093 if (exp
.X_op
== O_symbol
)
3095 symbol_get_tc (exp
.X_add_symbol
)->within
= ppc_current_block
;
3099 if (exp
.X_op
!= O_symbol
3100 || ! S_IS_EXTERNAL (exp
.X_add_symbol
)
3101 || S_GET_SEGMENT (exp
.X_add_symbol
) != bss_section
)
3102 ppc_frob_label (sym
);
3105 symbol_remove (sym
, &symbol_rootP
, &symbol_lastP
);
3106 symbol_append (sym
, exp
.X_add_symbol
, &symbol_rootP
, &symbol_lastP
);
3107 if (symbol_get_tc (ppc_current_csect
)->within
== exp
.X_add_symbol
)
3108 symbol_get_tc (ppc_current_csect
)->within
= sym
;
3111 demand_empty_rest_of_line ();
3114 /* The .function pseudo-op. This takes several arguments. The first
3115 argument seems to be the external name of the symbol. The second
3116 argment seems to be the label for the start of the function. gcc
3117 uses the same name for both. I have no idea what the third and
3118 fourth arguments are meant to be. The optional fifth argument is
3119 an expression for the size of the function. In COFF this symbol
3120 gets an aux entry like that used for a csect. */
3123 ppc_function (ignore
)
3124 int ignore ATTRIBUTE_UNUSED
;
3132 name
= input_line_pointer
;
3133 endc
= get_symbol_end ();
3135 /* Ignore any [PR] suffix. */
3136 name
= ppc_canonicalize_symbol_name (name
);
3137 s
= strchr (name
, '[');
3138 if (s
!= (char *) NULL
3139 && strcmp (s
+ 1, "PR]") == 0)
3142 ext_sym
= symbol_find_or_make (name
);
3144 *input_line_pointer
= endc
;
3146 if (*input_line_pointer
!= ',')
3148 as_bad (_("missing symbol name"));
3149 ignore_rest_of_line ();
3152 ++input_line_pointer
;
3154 name
= input_line_pointer
;
3155 endc
= get_symbol_end ();
3157 lab_sym
= symbol_find_or_make (name
);
3159 *input_line_pointer
= endc
;
3161 if (ext_sym
!= lab_sym
)
3165 exp
.X_op
= O_symbol
;
3166 exp
.X_add_symbol
= lab_sym
;
3167 exp
.X_op_symbol
= NULL
;
3168 exp
.X_add_number
= 0;
3170 symbol_set_value_expression (ext_sym
, &exp
);
3173 if (symbol_get_tc (ext_sym
)->class == -1)
3174 symbol_get_tc (ext_sym
)->class = XMC_PR
;
3175 symbol_get_tc (ext_sym
)->output
= 1;
3177 if (*input_line_pointer
== ',')
3181 /* Ignore the third argument. */
3182 ++input_line_pointer
;
3183 expression (&ignore
);
3184 if (*input_line_pointer
== ',')
3186 /* Ignore the fourth argument. */
3187 ++input_line_pointer
;
3188 expression (&ignore
);
3189 if (*input_line_pointer
== ',')
3191 /* The fifth argument is the function size. */
3192 ++input_line_pointer
;
3193 symbol_get_tc (ext_sym
)->size
= symbol_new ("L0\001",
3196 &zero_address_frag
);
3197 pseudo_set (symbol_get_tc (ext_sym
)->size
);
3202 S_SET_DATA_TYPE (ext_sym
, DT_FCN
<< N_BTSHFT
);
3203 SF_SET_FUNCTION (ext_sym
);
3204 SF_SET_PROCESS (ext_sym
);
3205 coff_add_linesym (ext_sym
);
3207 demand_empty_rest_of_line ();
3210 /* The .bf pseudo-op. This is just like a COFF C_FCN symbol named
3211 ".bf". If the pseudo op .bi was seen before .bf, patch the .bi sym
3212 with the correct line number */
3214 static symbolS
*saved_bi_sym
= 0;
3218 int ignore ATTRIBUTE_UNUSED
;
3222 sym
= symbol_make (".bf");
3223 S_SET_SEGMENT (sym
, text_section
);
3224 symbol_set_frag (sym
, frag_now
);
3225 S_SET_VALUE (sym
, frag_now_fix ());
3226 S_SET_STORAGE_CLASS (sym
, C_FCN
);
3228 coff_line_base
= get_absolute_expression ();
3230 S_SET_NUMBER_AUXILIARY (sym
, 1);
3231 SA_SET_SYM_LNNO (sym
, coff_line_base
);
3233 /* Line number for bi. */
3236 S_SET_VALUE (saved_bi_sym
, coff_n_line_nos
);
3241 symbol_get_tc (sym
)->output
= 1;
3243 ppc_frob_label (sym
);
3245 demand_empty_rest_of_line ();
3248 /* The .ef pseudo-op. This is just like a COFF C_FCN symbol named
3249 ".ef", except that the line number is absolute, not relative to the
3250 most recent ".bf" symbol. */
3254 int ignore ATTRIBUTE_UNUSED
;
3258 sym
= symbol_make (".ef");
3259 S_SET_SEGMENT (sym
, text_section
);
3260 symbol_set_frag (sym
, frag_now
);
3261 S_SET_VALUE (sym
, frag_now_fix ());
3262 S_SET_STORAGE_CLASS (sym
, C_FCN
);
3263 S_SET_NUMBER_AUXILIARY (sym
, 1);
3264 SA_SET_SYM_LNNO (sym
, get_absolute_expression ());
3265 symbol_get_tc (sym
)->output
= 1;
3267 ppc_frob_label (sym
);
3269 demand_empty_rest_of_line ();
3272 /* The .bi and .ei pseudo-ops. These take a string argument and
3273 generates a C_BINCL or C_EINCL symbol, which goes at the start of
3274 the symbol list. The value of .bi will be know when the next .bf
3281 static symbolS
*last_biei
;
3288 name
= demand_copy_C_string (&len
);
3290 /* The value of these symbols is actually file offset. Here we set
3291 the value to the index into the line number entries. In
3292 ppc_frob_symbols we set the fix_line field, which will cause BFD
3293 to do the right thing. */
3295 sym
= symbol_make (name
);
3296 /* obj-coff.c currently only handles line numbers correctly in the
3298 S_SET_SEGMENT (sym
, text_section
);
3299 S_SET_VALUE (sym
, coff_n_line_nos
);
3300 symbol_get_bfdsym (sym
)->flags
|= BSF_DEBUGGING
;
3302 S_SET_STORAGE_CLASS (sym
, ei
? C_EINCL
: C_BINCL
);
3303 symbol_get_tc (sym
)->output
= 1;
3311 for (look
= last_biei
? last_biei
: symbol_rootP
;
3312 (look
!= (symbolS
*) NULL
3313 && (S_GET_STORAGE_CLASS (look
) == C_FILE
3314 || S_GET_STORAGE_CLASS (look
) == C_BINCL
3315 || S_GET_STORAGE_CLASS (look
) == C_EINCL
));
3316 look
= symbol_next (look
))
3318 if (look
!= (symbolS
*) NULL
)
3320 symbol_remove (sym
, &symbol_rootP
, &symbol_lastP
);
3321 symbol_insert (sym
, look
, &symbol_rootP
, &symbol_lastP
);
3325 demand_empty_rest_of_line ();
3328 /* The .bs pseudo-op. This generates a C_BSTAT symbol named ".bs".
3329 There is one argument, which is a csect symbol. The value of the
3330 .bs symbol is the index of this csect symbol. */
3334 int ignore ATTRIBUTE_UNUSED
;
3341 if (ppc_current_block
!= NULL
)
3342 as_bad (_("nested .bs blocks"));
3344 name
= input_line_pointer
;
3345 endc
= get_symbol_end ();
3347 csect
= symbol_find_or_make (name
);
3349 *input_line_pointer
= endc
;
3351 sym
= symbol_make (".bs");
3352 S_SET_SEGMENT (sym
, now_seg
);
3353 S_SET_STORAGE_CLASS (sym
, C_BSTAT
);
3354 symbol_get_bfdsym (sym
)->flags
|= BSF_DEBUGGING
;
3355 symbol_get_tc (sym
)->output
= 1;
3357 symbol_get_tc (sym
)->within
= csect
;
3359 ppc_frob_label (sym
);
3361 ppc_current_block
= sym
;
3363 demand_empty_rest_of_line ();
3366 /* The .es pseudo-op. Generate a C_ESTART symbol named .es. */
3370 int ignore ATTRIBUTE_UNUSED
;
3374 if (ppc_current_block
== NULL
)
3375 as_bad (_(".es without preceding .bs"));
3377 sym
= symbol_make (".es");
3378 S_SET_SEGMENT (sym
, now_seg
);
3379 S_SET_STORAGE_CLASS (sym
, C_ESTAT
);
3380 symbol_get_bfdsym (sym
)->flags
|= BSF_DEBUGGING
;
3381 symbol_get_tc (sym
)->output
= 1;
3383 ppc_frob_label (sym
);
3385 ppc_current_block
= NULL
;
3387 demand_empty_rest_of_line ();
3390 /* The .bb pseudo-op. Generate a C_BLOCK symbol named .bb, with a
3395 int ignore ATTRIBUTE_UNUSED
;
3399 sym
= symbol_make (".bb");
3400 S_SET_SEGMENT (sym
, text_section
);
3401 symbol_set_frag (sym
, frag_now
);
3402 S_SET_VALUE (sym
, frag_now_fix ());
3403 S_SET_STORAGE_CLASS (sym
, C_BLOCK
);
3405 S_SET_NUMBER_AUXILIARY (sym
, 1);
3406 SA_SET_SYM_LNNO (sym
, get_absolute_expression ());
3408 symbol_get_tc (sym
)->output
= 1;
3410 SF_SET_PROCESS (sym
);
3412 ppc_frob_label (sym
);
3414 demand_empty_rest_of_line ();
3417 /* The .eb pseudo-op. Generate a C_BLOCK symbol named .eb, with a
3422 int ignore ATTRIBUTE_UNUSED
;
3426 sym
= symbol_make (".eb");
3427 S_SET_SEGMENT (sym
, text_section
);
3428 symbol_set_frag (sym
, frag_now
);
3429 S_SET_VALUE (sym
, frag_now_fix ());
3430 S_SET_STORAGE_CLASS (sym
, C_BLOCK
);
3431 S_SET_NUMBER_AUXILIARY (sym
, 1);
3432 SA_SET_SYM_LNNO (sym
, get_absolute_expression ());
3433 symbol_get_tc (sym
)->output
= 1;
3435 SF_SET_PROCESS (sym
);
3437 ppc_frob_label (sym
);
3439 demand_empty_rest_of_line ();
3442 /* The .bc pseudo-op. This just creates a C_BCOMM symbol with a
3447 int ignore ATTRIBUTE_UNUSED
;
3453 name
= demand_copy_C_string (&len
);
3454 sym
= symbol_make (name
);
3455 S_SET_SEGMENT (sym
, ppc_coff_debug_section
);
3456 symbol_get_bfdsym (sym
)->flags
|= BSF_DEBUGGING
;
3457 S_SET_STORAGE_CLASS (sym
, C_BCOMM
);
3458 S_SET_VALUE (sym
, 0);
3459 symbol_get_tc (sym
)->output
= 1;
3461 ppc_frob_label (sym
);
3463 demand_empty_rest_of_line ();
3466 /* The .ec pseudo-op. This just creates a C_ECOMM symbol. */
3470 int ignore ATTRIBUTE_UNUSED
;
3474 sym
= symbol_make (".ec");
3475 S_SET_SEGMENT (sym
, ppc_coff_debug_section
);
3476 symbol_get_bfdsym (sym
)->flags
|= BSF_DEBUGGING
;
3477 S_SET_STORAGE_CLASS (sym
, C_ECOMM
);
3478 S_SET_VALUE (sym
, 0);
3479 symbol_get_tc (sym
)->output
= 1;
3481 ppc_frob_label (sym
);
3483 demand_empty_rest_of_line ();
3486 /* The .toc pseudo-op. Switch to the .toc subsegment. */
3490 int ignore ATTRIBUTE_UNUSED
;
3492 if (ppc_toc_csect
!= (symbolS
*) NULL
)
3493 subseg_set (data_section
, symbol_get_tc (ppc_toc_csect
)->subseg
);
3500 subseg
= ppc_data_subsegment
;
3501 ++ppc_data_subsegment
;
3503 subseg_new (segment_name (data_section
), subseg
);
3504 ppc_toc_frag
= frag_now
;
3506 sym
= symbol_find_or_make ("TOC[TC0]");
3507 symbol_set_frag (sym
, frag_now
);
3508 S_SET_SEGMENT (sym
, data_section
);
3509 S_SET_VALUE (sym
, (valueT
) frag_now_fix ());
3510 symbol_get_tc (sym
)->subseg
= subseg
;
3511 symbol_get_tc (sym
)->output
= 1;
3512 symbol_get_tc (sym
)->within
= sym
;
3514 ppc_toc_csect
= sym
;
3516 for (list
= ppc_data_csects
;
3517 symbol_get_tc (list
)->next
!= (symbolS
*) NULL
;
3518 list
= symbol_get_tc (list
)->next
)
3520 symbol_get_tc (list
)->next
= sym
;
3522 symbol_remove (sym
, &symbol_rootP
, &symbol_lastP
);
3523 symbol_append (sym
, symbol_get_tc (list
)->within
, &symbol_rootP
,
3527 ppc_current_csect
= ppc_toc_csect
;
3529 demand_empty_rest_of_line ();
3532 /* The AIX assembler automatically aligns the operands of a .long or
3533 .short pseudo-op, and we want to be compatible. */
3536 ppc_xcoff_cons (log_size
)
3539 frag_align (log_size
, 0, 0);
3540 record_alignment (now_seg
, log_size
);
3541 cons (1 << log_size
);
3546 int dummy ATTRIBUTE_UNUSED
;
3551 (void) expression (&exp
);
3553 if (exp
.X_op
!= O_constant
)
3555 as_bad (_("non-constant byte count"));
3559 byte_count
= exp
.X_add_number
;
3561 if (*input_line_pointer
!= ',')
3563 as_bad (_("missing value"));
3567 ++input_line_pointer
;
3571 #endif /* OBJ_XCOFF */
3572 #if defined (OBJ_XCOFF) || defined (OBJ_ELF)
3574 /* The .tc pseudo-op. This is used when generating either XCOFF or
3575 ELF. This takes two or more arguments.
3577 When generating XCOFF output, the first argument is the name to
3578 give to this location in the toc; this will be a symbol with class
3579 TC. The rest of the arguments are N-byte values to actually put at
3580 this location in the TOC; often there is just one more argument, a
3581 relocateable symbol reference. The size of the value to store
3582 depends on target word size. A 32-bit target uses 4-byte values, a
3583 64-bit target uses 8-byte values.
3585 When not generating XCOFF output, the arguments are the same, but
3586 the first argument is simply ignored. */
3590 int ignore ATTRIBUTE_UNUSED
;
3594 /* Define the TOC symbol name. */
3600 if (ppc_toc_csect
== (symbolS
*) NULL
3601 || ppc_toc_csect
!= ppc_current_csect
)
3603 as_bad (_(".tc not in .toc section"));
3604 ignore_rest_of_line ();
3608 name
= input_line_pointer
;
3609 endc
= get_symbol_end ();
3611 sym
= symbol_find_or_make (name
);
3613 *input_line_pointer
= endc
;
3615 if (S_IS_DEFINED (sym
))
3619 label
= symbol_get_tc (ppc_current_csect
)->within
;
3620 if (symbol_get_tc (label
)->class != XMC_TC0
)
3622 as_bad (_(".tc with no label"));
3623 ignore_rest_of_line ();
3627 S_SET_SEGMENT (label
, S_GET_SEGMENT (sym
));
3628 symbol_set_frag (label
, symbol_get_frag (sym
));
3629 S_SET_VALUE (label
, S_GET_VALUE (sym
));
3631 while (! is_end_of_line
[(unsigned char) *input_line_pointer
])
3632 ++input_line_pointer
;
3637 S_SET_SEGMENT (sym
, now_seg
);
3638 symbol_set_frag (sym
, frag_now
);
3639 S_SET_VALUE (sym
, (valueT
) frag_now_fix ());
3640 symbol_get_tc (sym
)->class = XMC_TC
;
3641 symbol_get_tc (sym
)->output
= 1;
3643 ppc_frob_label (sym
);
3646 #endif /* OBJ_XCOFF */
3650 /* Skip the TOC symbol name. */
3651 while (is_part_of_name (*input_line_pointer
)
3652 || *input_line_pointer
== '['
3653 || *input_line_pointer
== ']'
3654 || *input_line_pointer
== '{'
3655 || *input_line_pointer
== '}')
3656 ++input_line_pointer
;
3658 /* Align to a four/eight byte boundary. */
3659 align
= BFD_DEFAULT_TARGET_SIZE
== 64 && ppc_size
== PPC_OPCODE_64
? 3 : 2;
3660 frag_align (align
, 0, 0);
3661 record_alignment (now_seg
, align
);
3662 #endif /* OBJ_ELF */
3664 if (*input_line_pointer
!= ',')
3665 demand_empty_rest_of_line ();
3668 ++input_line_pointer
;
3669 cons ((ppc_size
== PPC_OPCODE_64
) ? 8 : 4);
3673 /* Pseudo-op .machine. */
3674 /* FIXME: `.machine' is a nop for the moment. It would be nice to
3675 accept this directive on the first line of input and set ppc_size
3676 and the target format accordingly. Unfortunately, the target
3677 format is selected in output-file.c:output_file_create before we
3678 even get to md_begin, so it's not possible without changing
3682 ppc_machine (ignore
)
3683 int ignore ATTRIBUTE_UNUSED
;
3685 discard_rest_of_line ();
3688 /* See whether a symbol is in the TOC section. */
3691 ppc_is_toc_sym (sym
)
3695 return symbol_get_tc (sym
)->class == XMC_TC
;
3698 const char *sname
= segment_name (S_GET_SEGMENT (sym
));
3699 if (BFD_DEFAULT_TARGET_SIZE
== 64 && ppc_size
== PPC_OPCODE_64
)
3700 return strcmp (sname
, ".toc") == 0;
3702 return strcmp (sname
, ".got") == 0;
3705 #endif /* defined (OBJ_XCOFF) || defined (OBJ_ELF) */
3709 /* Pseudo-ops specific to the Windows NT PowerPC PE (coff) format. */
3711 /* Set the current section. */
3713 ppc_set_current_section (new)
3716 ppc_previous_section
= ppc_current_section
;
3717 ppc_current_section
= new;
3720 /* pseudo-op: .previous
3721 behaviour: toggles the current section with the previous section.
3723 warnings: "No previous section" */
3726 ppc_previous (ignore
)
3727 int ignore ATTRIBUTE_UNUSED
;
3731 if (ppc_previous_section
== NULL
)
3733 as_warn (_("No previous section to return to. Directive ignored."));
3737 subseg_set (ppc_previous_section
, 0);
3739 ppc_set_current_section (ppc_previous_section
);
3742 /* pseudo-op: .pdata
3743 behaviour: predefined read only data section
3747 initial: .section .pdata "adr3"
3748 a - don't know -- maybe a misprint
3749 d - initialized data
3751 3 - double word aligned (that would be 4 byte boundary)
3754 Tag index tables (also known as the function table) for exception
3755 handling, debugging, etc. */
3759 int ignore ATTRIBUTE_UNUSED
;
3761 if (pdata_section
== 0)
3763 pdata_section
= subseg_new (".pdata", 0);
3765 bfd_set_section_flags (stdoutput
, pdata_section
,
3766 (SEC_ALLOC
| SEC_LOAD
| SEC_RELOC
3767 | SEC_READONLY
| SEC_DATA
));
3769 bfd_set_section_alignment (stdoutput
, pdata_section
, 2);
3773 pdata_section
= subseg_new (".pdata", 0);
3775 ppc_set_current_section (pdata_section
);
3778 /* pseudo-op: .ydata
3779 behaviour: predefined read only data section
3783 initial: .section .ydata "drw3"
3784 a - don't know -- maybe a misprint
3785 d - initialized data
3787 3 - double word aligned (that would be 4 byte boundary)
3789 Tag tables (also known as the scope table) for exception handling,
3794 int ignore ATTRIBUTE_UNUSED
;
3796 if (ydata_section
== 0)
3798 ydata_section
= subseg_new (".ydata", 0);
3799 bfd_set_section_flags (stdoutput
, ydata_section
,
3800 (SEC_ALLOC
| SEC_LOAD
| SEC_RELOC
3801 | SEC_READONLY
| SEC_DATA
));
3803 bfd_set_section_alignment (stdoutput
, ydata_section
, 3);
3807 ydata_section
= subseg_new (".ydata", 0);
3809 ppc_set_current_section (ydata_section
);
3812 /* pseudo-op: .reldata
3813 behaviour: predefined read write data section
3814 double word aligned (4-byte)
3815 FIXME: relocation is applied to it
3816 FIXME: what's the difference between this and .data?
3819 initial: .section .reldata "drw3"
3820 d - initialized data
3823 3 - double word aligned (that would be 8 byte boundary)
3826 Like .data, but intended to hold data subject to relocation, such as
3827 function descriptors, etc. */
3830 ppc_reldata (ignore
)
3831 int ignore ATTRIBUTE_UNUSED
;
3833 if (reldata_section
== 0)
3835 reldata_section
= subseg_new (".reldata", 0);
3837 bfd_set_section_flags (stdoutput
, reldata_section
,
3838 (SEC_ALLOC
| SEC_LOAD
| SEC_RELOC
3841 bfd_set_section_alignment (stdoutput
, reldata_section
, 2);
3845 reldata_section
= subseg_new (".reldata", 0);
3847 ppc_set_current_section (reldata_section
);
3850 /* pseudo-op: .rdata
3851 behaviour: predefined read only data section
3855 initial: .section .rdata "dr3"
3856 d - initialized data
3858 3 - double word aligned (that would be 4 byte boundary) */
3862 int ignore ATTRIBUTE_UNUSED
;
3864 if (rdata_section
== 0)
3866 rdata_section
= subseg_new (".rdata", 0);
3867 bfd_set_section_flags (stdoutput
, rdata_section
,
3868 (SEC_ALLOC
| SEC_LOAD
| SEC_RELOC
3869 | SEC_READONLY
| SEC_DATA
));
3871 bfd_set_section_alignment (stdoutput
, rdata_section
, 2);
3875 rdata_section
= subseg_new (".rdata", 0);
3877 ppc_set_current_section (rdata_section
);
3880 /* pseudo-op: .ualong
3881 behaviour: much like .int, with the exception that no alignment is
3883 FIXME: test the alignment statement
3889 int ignore ATTRIBUTE_UNUSED
;
3895 /* pseudo-op: .znop <symbol name>
3896 behaviour: Issue a nop instruction
3897 Issue a IMAGE_REL_PPC_IFGLUE relocation against it, using
3898 the supplied symbol name.
3900 warnings: Missing symbol name */
3904 int ignore ATTRIBUTE_UNUSED
;
3907 const struct powerpc_opcode
*opcode
;
3918 /* Strip out the symbol name. */
3919 symbol_name
= input_line_pointer
;
3920 c
= get_symbol_end ();
3922 name
= xmalloc (input_line_pointer
- symbol_name
+ 1);
3923 strcpy (name
, symbol_name
);
3925 sym
= symbol_find_or_make (name
);
3927 *input_line_pointer
= c
;
3931 /* Look up the opcode in the hash table. */
3932 opcode
= (const struct powerpc_opcode
*) hash_find (ppc_hash
, "nop");
3934 /* Stick in the nop. */
3935 insn
= opcode
->opcode
;
3937 /* Write out the instruction. */
3939 md_number_to_chars (f
, insn
, 4);
3941 f
- frag_now
->fr_literal
,
3946 BFD_RELOC_16_GOT_PCREL
);
3959 register char *name
;
3963 register symbolS
*symbolP
;
3966 name
= input_line_pointer
;
3967 c
= get_symbol_end ();
3969 /* just after name is now '\0'. */
3970 p
= input_line_pointer
;
3973 if (*input_line_pointer
!= ',')
3975 as_bad (_("Expected comma after symbol-name: rest of line ignored."));
3976 ignore_rest_of_line ();
3980 input_line_pointer
++; /* skip ',' */
3981 if ((temp
= get_absolute_expression ()) < 0)
3983 as_warn (_(".COMMon length (%ld.) <0! Ignored."), (long) temp
);
3984 ignore_rest_of_line ();
3990 /* The third argument to .comm is the alignment. */
3991 if (*input_line_pointer
!= ',')
3995 ++input_line_pointer
;
3996 align
= get_absolute_expression ();
3999 as_warn (_("ignoring bad alignment"));
4006 symbolP
= symbol_find_or_make (name
);
4009 if (S_IS_DEFINED (symbolP
) && ! S_IS_COMMON (symbolP
))
4011 as_bad (_("Ignoring attempt to re-define symbol `%s'."),
4012 S_GET_NAME (symbolP
));
4013 ignore_rest_of_line ();
4017 if (S_GET_VALUE (symbolP
))
4019 if (S_GET_VALUE (symbolP
) != (valueT
) temp
)
4020 as_bad (_("Length of .comm \"%s\" is already %ld. Not changed to %ld."),
4021 S_GET_NAME (symbolP
),
4022 (long) S_GET_VALUE (symbolP
),
4027 S_SET_VALUE (symbolP
, (valueT
) temp
);
4028 S_SET_EXTERNAL (symbolP
);
4031 demand_empty_rest_of_line ();
4035 * implement the .section pseudo op:
4036 * .section name {, "flags"}
4038 * | +--- optional flags: 'b' for bss
4040 * +-- section name 'l' for lib
4044 * 'd' (apparently m88k for data)
4046 * But if the argument is not a quoted string, treat it as a
4047 * subsegment number.
4049 * FIXME: this is a copy of the section processing from obj-coff.c, with
4050 * additions/changes for the moto-pas assembler support. There are three
4053 * FIXME: I just noticed this. This doesn't work at all really. It it
4054 * setting bits that bfd probably neither understands or uses. The
4055 * correct approach (?) will have to incorporate extra fields attached
4056 * to the section to hold the system specific stuff. (krk)
4059 * 'a' - unknown - referred to in documentation, but no definition supplied
4060 * 'c' - section has code
4061 * 'd' - section has initialized data
4062 * 'u' - section has uninitialized data
4063 * 'i' - section contains directives (info)
4064 * 'n' - section can be discarded
4065 * 'R' - remove section at link time
4067 * Section Protection:
4068 * 'r' - section is readable
4069 * 'w' - section is writeable
4070 * 'x' - section is executable
4071 * 's' - section is sharable
4073 * Section Alignment:
4074 * '0' - align to byte boundary
4075 * '1' - align to halfword undary
4076 * '2' - align to word boundary
4077 * '3' - align to doubleword boundary
4078 * '4' - align to quadword boundary
4079 * '5' - align to 32 byte boundary
4080 * '6' - align to 64 byte boundary
4085 ppc_pe_section (ignore
)
4086 int ignore ATTRIBUTE_UNUSED
;
4088 /* Strip out the section name. */
4097 section_name
= input_line_pointer
;
4098 c
= get_symbol_end ();
4100 name
= xmalloc (input_line_pointer
- section_name
+ 1);
4101 strcpy (name
, section_name
);
4103 *input_line_pointer
= c
;
4108 flags
= SEC_NO_FLAGS
;
4110 if (strcmp (name
, ".idata$2") == 0)
4114 else if (strcmp (name
, ".idata$3") == 0)
4118 else if (strcmp (name
, ".idata$4") == 0)
4122 else if (strcmp (name
, ".idata$5") == 0)
4126 else if (strcmp (name
, ".idata$6") == 0)
4131 /* Default alignment to 16 byte boundary. */
4134 if (*input_line_pointer
== ',')
4136 ++input_line_pointer
;
4138 if (*input_line_pointer
!= '"')
4139 exp
= get_absolute_expression ();
4142 ++input_line_pointer
;
4143 while (*input_line_pointer
!= '"'
4144 && ! is_end_of_line
[(unsigned char) *input_line_pointer
])
4146 switch (*input_line_pointer
)
4148 /* Section Contents */
4149 case 'a': /* unknown */
4150 as_bad (_("Unsupported section attribute -- 'a'"));
4152 case 'c': /* code section */
4155 case 'd': /* section has initialized data */
4158 case 'u': /* section has uninitialized data */
4159 /* FIXME: This is IMAGE_SCN_CNT_UNINITIALIZED_DATA
4163 case 'i': /* section contains directives (info) */
4164 /* FIXME: This is IMAGE_SCN_LNK_INFO
4166 flags
|= SEC_HAS_CONTENTS
;
4168 case 'n': /* section can be discarded */
4171 case 'R': /* Remove section at link time */
4172 flags
|= SEC_NEVER_LOAD
;
4175 /* Section Protection */
4176 case 'r': /* section is readable */
4177 flags
|= IMAGE_SCN_MEM_READ
;
4179 case 'w': /* section is writeable */
4180 flags
|= IMAGE_SCN_MEM_WRITE
;
4182 case 'x': /* section is executable */
4183 flags
|= IMAGE_SCN_MEM_EXECUTE
;
4185 case 's': /* section is sharable */
4186 flags
|= IMAGE_SCN_MEM_SHARED
;
4189 /* Section Alignment */
4190 case '0': /* align to byte boundary */
4191 flags
|= IMAGE_SCN_ALIGN_1BYTES
;
4194 case '1': /* align to halfword boundary */
4195 flags
|= IMAGE_SCN_ALIGN_2BYTES
;
4198 case '2': /* align to word boundary */
4199 flags
|= IMAGE_SCN_ALIGN_4BYTES
;
4202 case '3': /* align to doubleword boundary */
4203 flags
|= IMAGE_SCN_ALIGN_8BYTES
;
4206 case '4': /* align to quadword boundary */
4207 flags
|= IMAGE_SCN_ALIGN_16BYTES
;
4210 case '5': /* align to 32 byte boundary */
4211 flags
|= IMAGE_SCN_ALIGN_32BYTES
;
4214 case '6': /* align to 64 byte boundary */
4215 flags
|= IMAGE_SCN_ALIGN_64BYTES
;
4220 as_bad (_("unknown section attribute '%c'"),
4221 *input_line_pointer
);
4224 ++input_line_pointer
;
4226 if (*input_line_pointer
== '"')
4227 ++input_line_pointer
;
4231 sec
= subseg_new (name
, (subsegT
) exp
);
4233 ppc_set_current_section (sec
);
4235 if (flags
!= SEC_NO_FLAGS
)
4237 if (! bfd_set_section_flags (stdoutput
, sec
, flags
))
4238 as_bad (_("error setting flags for \"%s\": %s"),
4239 bfd_section_name (stdoutput
, sec
),
4240 bfd_errmsg (bfd_get_error ()));
4243 bfd_set_section_alignment (stdoutput
, sec
, align
);
4248 ppc_pe_function (ignore
)
4249 int ignore ATTRIBUTE_UNUSED
;
4255 name
= input_line_pointer
;
4256 endc
= get_symbol_end ();
4258 ext_sym
= symbol_find_or_make (name
);
4260 *input_line_pointer
= endc
;
4262 S_SET_DATA_TYPE (ext_sym
, DT_FCN
<< N_BTSHFT
);
4263 SF_SET_FUNCTION (ext_sym
);
4264 SF_SET_PROCESS (ext_sym
);
4265 coff_add_linesym (ext_sym
);
4267 demand_empty_rest_of_line ();
4271 ppc_pe_tocd (ignore
)
4272 int ignore ATTRIBUTE_UNUSED
;
4274 if (tocdata_section
== 0)
4276 tocdata_section
= subseg_new (".tocd", 0);
4277 /* FIXME: section flags won't work. */
4278 bfd_set_section_flags (stdoutput
, tocdata_section
,
4279 (SEC_ALLOC
| SEC_LOAD
| SEC_RELOC
4280 | SEC_READONLY
| SEC_DATA
));
4282 bfd_set_section_alignment (stdoutput
, tocdata_section
, 2);
4286 rdata_section
= subseg_new (".tocd", 0);
4289 ppc_set_current_section (tocdata_section
);
4291 demand_empty_rest_of_line ();
4294 /* Don't adjust TOC relocs to use the section symbol. */
4297 ppc_pe_fix_adjustable (fix
)
4300 return fix
->fx_r_type
!= BFD_RELOC_PPC_TOC16
;
4307 /* XCOFF specific symbol and file handling. */
4309 /* Canonicalize the symbol name. We use the to force the suffix, if
4310 any, to use square brackets, and to be in upper case. */
4313 ppc_canonicalize_symbol_name (name
)
4318 if (ppc_stab_symbol
)
4321 for (s
= name
; *s
!= '\0' && *s
!= '{' && *s
!= '['; s
++)
4335 for (s
++; *s
!= '\0' && *s
!= brac
; s
++)
4338 if (*s
== '\0' || s
[1] != '\0')
4339 as_bad (_("bad symbol suffix"));
4347 /* Set the class of a symbol based on the suffix, if any. This is
4348 called whenever a new symbol is created. */
4351 ppc_symbol_new_hook (sym
)
4354 struct ppc_tc_sy
*tc
;
4357 tc
= symbol_get_tc (sym
);
4361 tc
->real_name
= NULL
;
4367 if (ppc_stab_symbol
)
4370 s
= strchr (S_GET_NAME (sym
), '[');
4371 if (s
== (const char *) NULL
)
4373 /* There is no suffix. */
4382 if (strcmp (s
, "BS]") == 0)
4386 if (strcmp (s
, "DB]") == 0)
4388 else if (strcmp (s
, "DS]") == 0)
4392 if (strcmp (s
, "GL]") == 0)
4396 if (strcmp (s
, "PR]") == 0)
4400 if (strcmp (s
, "RO]") == 0)
4402 else if (strcmp (s
, "RW]") == 0)
4406 if (strcmp (s
, "SV]") == 0)
4410 if (strcmp (s
, "TC]") == 0)
4412 else if (strcmp (s
, "TI]") == 0)
4414 else if (strcmp (s
, "TB]") == 0)
4416 else if (strcmp (s
, "TC0]") == 0 || strcmp (s
, "T0]") == 0)
4417 tc
->class = XMC_TC0
;
4420 if (strcmp (s
, "UA]") == 0)
4422 else if (strcmp (s
, "UC]") == 0)
4426 if (strcmp (s
, "XO]") == 0)
4431 if (tc
->class == -1)
4432 as_bad (_("Unrecognized symbol suffix"));
4435 /* Set the class of a label based on where it is defined. This
4436 handles symbols without suffixes. Also, move the symbol so that it
4437 follows the csect symbol. */
4440 ppc_frob_label (sym
)
4443 if (ppc_current_csect
!= (symbolS
*) NULL
)
4445 if (symbol_get_tc (sym
)->class == -1)
4446 symbol_get_tc (sym
)->class = symbol_get_tc (ppc_current_csect
)->class;
4448 symbol_remove (sym
, &symbol_rootP
, &symbol_lastP
);
4449 symbol_append (sym
, symbol_get_tc (ppc_current_csect
)->within
,
4450 &symbol_rootP
, &symbol_lastP
);
4451 symbol_get_tc (ppc_current_csect
)->within
= sym
;
4455 /* This variable is set by ppc_frob_symbol if any absolute symbols are
4456 seen. It tells ppc_adjust_symtab whether it needs to look through
4459 static boolean ppc_saw_abs
;
4461 /* Change the name of a symbol just before writing it out. Set the
4462 real name if the .rename pseudo-op was used. Otherwise, remove any
4463 class suffix. Return 1 if the symbol should not be included in the
4467 ppc_frob_symbol (sym
)
4470 static symbolS
*ppc_last_function
;
4471 static symbolS
*set_end
;
4473 /* Discard symbols that should not be included in the output symbol
4475 if (! symbol_used_in_reloc_p (sym
)
4476 && ((symbol_get_bfdsym (sym
)->flags
& BSF_SECTION_SYM
) != 0
4477 || (! S_IS_EXTERNAL (sym
)
4478 && ! symbol_get_tc (sym
)->output
4479 && S_GET_STORAGE_CLASS (sym
) != C_FILE
)))
4482 if (symbol_get_tc (sym
)->real_name
!= (char *) NULL
)
4483 S_SET_NAME (sym
, symbol_get_tc (sym
)->real_name
);
4489 name
= S_GET_NAME (sym
);
4490 s
= strchr (name
, '[');
4491 if (s
!= (char *) NULL
)
4497 snew
= xmalloc (len
+ 1);
4498 memcpy (snew
, name
, len
);
4501 S_SET_NAME (sym
, snew
);
4505 if (set_end
!= (symbolS
*) NULL
)
4507 SA_SET_SYM_ENDNDX (set_end
, sym
);
4511 if (SF_GET_FUNCTION (sym
))
4513 if (ppc_last_function
!= (symbolS
*) NULL
)
4514 as_bad (_("two .function pseudo-ops with no intervening .ef"));
4515 ppc_last_function
= sym
;
4516 if (symbol_get_tc (sym
)->size
!= (symbolS
*) NULL
)
4518 resolve_symbol_value (symbol_get_tc (sym
)->size
);
4519 SA_SET_SYM_FSIZE (sym
,
4520 (long) S_GET_VALUE (symbol_get_tc (sym
)->size
));
4523 else if (S_GET_STORAGE_CLASS (sym
) == C_FCN
4524 && strcmp (S_GET_NAME (sym
), ".ef") == 0)
4526 if (ppc_last_function
== (symbolS
*) NULL
)
4527 as_bad (_(".ef with no preceding .function"));
4530 set_end
= ppc_last_function
;
4531 ppc_last_function
= NULL
;
4533 /* We don't have a C_EFCN symbol, but we need to force the
4534 COFF backend to believe that it has seen one. */
4535 coff_last_function
= NULL
;
4539 if (! S_IS_EXTERNAL (sym
)
4540 && (symbol_get_bfdsym (sym
)->flags
& BSF_SECTION_SYM
) == 0
4541 && S_GET_STORAGE_CLASS (sym
) != C_FILE
4542 && S_GET_STORAGE_CLASS (sym
) != C_FCN
4543 && S_GET_STORAGE_CLASS (sym
) != C_BLOCK
4544 && S_GET_STORAGE_CLASS (sym
) != C_BSTAT
4545 && S_GET_STORAGE_CLASS (sym
) != C_ESTAT
4546 && S_GET_STORAGE_CLASS (sym
) != C_BINCL
4547 && S_GET_STORAGE_CLASS (sym
) != C_EINCL
4548 && S_GET_SEGMENT (sym
) != ppc_coff_debug_section
)
4549 S_SET_STORAGE_CLASS (sym
, C_HIDEXT
);
4551 if (S_GET_STORAGE_CLASS (sym
) == C_EXT
4552 || S_GET_STORAGE_CLASS (sym
) == C_HIDEXT
)
4555 union internal_auxent
*a
;
4557 /* Create a csect aux. */
4558 i
= S_GET_NUMBER_AUXILIARY (sym
);
4559 S_SET_NUMBER_AUXILIARY (sym
, i
+ 1);
4560 a
= &coffsymbol (symbol_get_bfdsym (sym
))->native
[i
+ 1].u
.auxent
;
4561 if (symbol_get_tc (sym
)->class == XMC_TC0
)
4563 /* This is the TOC table. */
4564 know (strcmp (S_GET_NAME (sym
), "TOC") == 0);
4565 a
->x_csect
.x_scnlen
.l
= 0;
4566 a
->x_csect
.x_smtyp
= (2 << 3) | XTY_SD
;
4568 else if (symbol_get_tc (sym
)->subseg
!= 0)
4570 /* This is a csect symbol. x_scnlen is the size of the
4572 if (symbol_get_tc (sym
)->next
== (symbolS
*) NULL
)
4573 a
->x_csect
.x_scnlen
.l
= (bfd_section_size (stdoutput
,
4574 S_GET_SEGMENT (sym
))
4575 - S_GET_VALUE (sym
));
4578 resolve_symbol_value (symbol_get_tc (sym
)->next
);
4579 a
->x_csect
.x_scnlen
.l
= (S_GET_VALUE (symbol_get_tc (sym
)->next
)
4580 - S_GET_VALUE (sym
));
4582 a
->x_csect
.x_smtyp
= (symbol_get_tc (sym
)->align
<< 3) | XTY_SD
;
4584 else if (S_GET_SEGMENT (sym
) == bss_section
)
4586 /* This is a common symbol. */
4587 a
->x_csect
.x_scnlen
.l
= symbol_get_frag (sym
)->fr_offset
;
4588 a
->x_csect
.x_smtyp
= (symbol_get_tc (sym
)->align
<< 3) | XTY_CM
;
4589 if (S_IS_EXTERNAL (sym
))
4590 symbol_get_tc (sym
)->class = XMC_RW
;
4592 symbol_get_tc (sym
)->class = XMC_BS
;
4594 else if (S_GET_SEGMENT (sym
) == absolute_section
)
4596 /* This is an absolute symbol. The csect will be created by
4597 ppc_adjust_symtab. */
4599 a
->x_csect
.x_smtyp
= XTY_LD
;
4600 if (symbol_get_tc (sym
)->class == -1)
4601 symbol_get_tc (sym
)->class = XMC_XO
;
4603 else if (! S_IS_DEFINED (sym
))
4605 /* This is an external symbol. */
4606 a
->x_csect
.x_scnlen
.l
= 0;
4607 a
->x_csect
.x_smtyp
= XTY_ER
;
4609 else if (symbol_get_tc (sym
)->class == XMC_TC
)
4613 /* This is a TOC definition. x_scnlen is the size of the
4615 next
= symbol_next (sym
);
4616 while (symbol_get_tc (next
)->class == XMC_TC0
)
4617 next
= symbol_next (next
);
4618 if (next
== (symbolS
*) NULL
4619 || symbol_get_tc (next
)->class != XMC_TC
)
4621 if (ppc_after_toc_frag
== (fragS
*) NULL
)
4622 a
->x_csect
.x_scnlen
.l
= (bfd_section_size (stdoutput
,
4624 - S_GET_VALUE (sym
));
4626 a
->x_csect
.x_scnlen
.l
= (ppc_after_toc_frag
->fr_address
4627 - S_GET_VALUE (sym
));
4631 resolve_symbol_value (next
);
4632 a
->x_csect
.x_scnlen
.l
= (S_GET_VALUE (next
)
4633 - S_GET_VALUE (sym
));
4635 a
->x_csect
.x_smtyp
= (2 << 3) | XTY_SD
;
4641 /* This is a normal symbol definition. x_scnlen is the
4642 symbol index of the containing csect. */
4643 if (S_GET_SEGMENT (sym
) == text_section
)
4644 csect
= ppc_text_csects
;
4645 else if (S_GET_SEGMENT (sym
) == data_section
)
4646 csect
= ppc_data_csects
;
4650 /* Skip the initial dummy symbol. */
4651 csect
= symbol_get_tc (csect
)->next
;
4653 if (csect
== (symbolS
*) NULL
)
4655 as_warn (_("warning: symbol %s has no csect"), S_GET_NAME (sym
));
4656 a
->x_csect
.x_scnlen
.l
= 0;
4660 while (symbol_get_tc (csect
)->next
!= (symbolS
*) NULL
)
4662 resolve_symbol_value (symbol_get_tc (csect
)->next
);
4663 if (S_GET_VALUE (symbol_get_tc (csect
)->next
)
4664 > S_GET_VALUE (sym
))
4666 csect
= symbol_get_tc (csect
)->next
;
4669 a
->x_csect
.x_scnlen
.p
=
4670 coffsymbol (symbol_get_bfdsym (csect
))->native
;
4671 coffsymbol (symbol_get_bfdsym (sym
))->native
[i
+ 1].fix_scnlen
=
4674 a
->x_csect
.x_smtyp
= XTY_LD
;
4677 a
->x_csect
.x_parmhash
= 0;
4678 a
->x_csect
.x_snhash
= 0;
4679 if (symbol_get_tc (sym
)->class == -1)
4680 a
->x_csect
.x_smclas
= XMC_PR
;
4682 a
->x_csect
.x_smclas
= symbol_get_tc (sym
)->class;
4683 a
->x_csect
.x_stab
= 0;
4684 a
->x_csect
.x_snstab
= 0;
4686 /* Don't let the COFF backend resort these symbols. */
4687 symbol_get_bfdsym (sym
)->flags
|= BSF_NOT_AT_END
;
4689 else if (S_GET_STORAGE_CLASS (sym
) == C_BSTAT
)
4691 /* We want the value to be the symbol index of the referenced
4692 csect symbol. BFD will do that for us if we set the right
4696 coffsymbol (symbol_get_bfdsym
4697 (symbol_get_tc (sym
)->within
))->native
));
4698 coffsymbol (symbol_get_bfdsym (sym
))->native
->fix_value
= 1;
4700 else if (S_GET_STORAGE_CLASS (sym
) == C_STSYM
)
4705 /* The value is the offset from the enclosing csect. */
4706 block
= symbol_get_tc (sym
)->within
;
4707 csect
= symbol_get_tc (block
)->within
;
4708 resolve_symbol_value (csect
);
4709 S_SET_VALUE (sym
, S_GET_VALUE (sym
) - S_GET_VALUE (csect
));
4711 else if (S_GET_STORAGE_CLASS (sym
) == C_BINCL
4712 || S_GET_STORAGE_CLASS (sym
) == C_EINCL
)
4714 /* We want the value to be a file offset into the line numbers.
4715 BFD will do that for us if we set the right flags. We have
4716 already set the value correctly. */
4717 coffsymbol (symbol_get_bfdsym (sym
))->native
->fix_line
= 1;
4723 /* Adjust the symbol table. This creates csect symbols for all
4724 absolute symbols. */
4727 ppc_adjust_symtab ()
4734 for (sym
= symbol_rootP
; sym
!= NULL
; sym
= symbol_next (sym
))
4738 union internal_auxent
*a
;
4740 if (S_GET_SEGMENT (sym
) != absolute_section
)
4743 csect
= symbol_create (".abs[XO]", absolute_section
,
4744 S_GET_VALUE (sym
), &zero_address_frag
);
4745 symbol_get_bfdsym (csect
)->value
= S_GET_VALUE (sym
);
4746 S_SET_STORAGE_CLASS (csect
, C_HIDEXT
);
4747 i
= S_GET_NUMBER_AUXILIARY (csect
);
4748 S_SET_NUMBER_AUXILIARY (csect
, i
+ 1);
4749 a
= &coffsymbol (symbol_get_bfdsym (csect
))->native
[i
+ 1].u
.auxent
;
4750 a
->x_csect
.x_scnlen
.l
= 0;
4751 a
->x_csect
.x_smtyp
= XTY_SD
;
4752 a
->x_csect
.x_parmhash
= 0;
4753 a
->x_csect
.x_snhash
= 0;
4754 a
->x_csect
.x_smclas
= XMC_XO
;
4755 a
->x_csect
.x_stab
= 0;
4756 a
->x_csect
.x_snstab
= 0;
4758 symbol_insert (csect
, sym
, &symbol_rootP
, &symbol_lastP
);
4760 i
= S_GET_NUMBER_AUXILIARY (sym
);
4761 a
= &coffsymbol (symbol_get_bfdsym (sym
))->native
[i
].u
.auxent
;
4762 a
->x_csect
.x_scnlen
.p
= coffsymbol (symbol_get_bfdsym (csect
))->native
;
4763 coffsymbol (symbol_get_bfdsym (sym
))->native
[i
].fix_scnlen
= 1;
4766 ppc_saw_abs
= false;
4769 /* Set the VMA for a section. This is called on all the sections in
4773 ppc_frob_section (sec
)
4776 static bfd_size_type vma
= 0;
4778 bfd_set_section_vma (stdoutput
, sec
, vma
);
4779 vma
+= bfd_section_size (stdoutput
, sec
);
4782 #endif /* OBJ_XCOFF */
4784 /* Turn a string in input_line_pointer into a floating point constant
4785 of type TYPE, and store the appropriate bytes in *LITP. The number
4786 of LITTLENUMS emitted is stored in *SIZEP. An error message is
4787 returned, or NULL on OK. */
4790 md_atof (type
, litp
, sizep
)
4796 LITTLENUM_TYPE words
[4];
4812 return _("bad call to md_atof");
4815 t
= atof_ieee (input_line_pointer
, type
, words
);
4817 input_line_pointer
= t
;
4821 if (target_big_endian
)
4823 for (i
= 0; i
< prec
; i
++)
4825 md_number_to_chars (litp
, (valueT
) words
[i
], 2);
4831 for (i
= prec
- 1; i
>= 0; i
--)
4833 md_number_to_chars (litp
, (valueT
) words
[i
], 2);
4841 /* Write a value out to the object file, using the appropriate
4845 md_number_to_chars (buf
, val
, n
)
4850 if (target_big_endian
)
4851 number_to_chars_bigendian (buf
, val
, n
);
4853 number_to_chars_littleendian (buf
, val
, n
);
4856 /* Align a section (I don't know why this is machine dependent). */
4859 md_section_align (seg
, addr
)
4863 int align
= bfd_get_section_alignment (stdoutput
, seg
);
4865 return ((addr
+ (1 << align
) - 1) & (-1 << align
));
4868 /* We don't have any form of relaxing. */
4871 md_estimate_size_before_relax (fragp
, seg
)
4872 fragS
*fragp ATTRIBUTE_UNUSED
;
4873 asection
*seg ATTRIBUTE_UNUSED
;
4879 /* Convert a machine dependent frag. We never generate these. */
4882 md_convert_frag (abfd
, sec
, fragp
)
4883 bfd
*abfd ATTRIBUTE_UNUSED
;
4884 asection
*sec ATTRIBUTE_UNUSED
;
4885 fragS
*fragp ATTRIBUTE_UNUSED
;
4890 /* We have no need to default values of symbols. */
4893 md_undefined_symbol (name
)
4894 char *name ATTRIBUTE_UNUSED
;
4899 /* Functions concerning relocs. */
4901 /* The location from which a PC relative jump should be calculated,
4902 given a PC relative reloc. */
4905 md_pcrel_from_section (fixp
, sec
)
4907 segT sec ATTRIBUTE_UNUSED
;
4909 return fixp
->fx_frag
->fr_address
+ fixp
->fx_where
;
4914 /* This is called to see whether a fixup should be adjusted to use a
4915 section symbol. We take the opportunity to change a fixup against
4916 a symbol in the TOC subsegment into a reloc against the
4917 corresponding .tc symbol. */
4920 ppc_fix_adjustable (fix
)
4925 resolve_symbol_value (fix
->fx_addsy
);
4926 val
= S_GET_VALUE (fix
->fx_addsy
);
4927 if (ppc_toc_csect
!= (symbolS
*) NULL
4928 && fix
->fx_addsy
!= (symbolS
*) NULL
4929 && fix
->fx_addsy
!= ppc_toc_csect
4930 && S_GET_SEGMENT (fix
->fx_addsy
) == data_section
4931 && val
>= ppc_toc_frag
->fr_address
4932 && (ppc_after_toc_frag
== (fragS
*) NULL
4933 || val
< ppc_after_toc_frag
->fr_address
))
4937 for (sy
= symbol_next (ppc_toc_csect
);
4938 sy
!= (symbolS
*) NULL
;
4939 sy
= symbol_next (sy
))
4941 if (symbol_get_tc (sy
)->class == XMC_TC0
)
4943 if (symbol_get_tc (sy
)->class != XMC_TC
)
4945 resolve_symbol_value (sy
);
4946 if (val
== S_GET_VALUE (sy
))
4949 fix
->fx_addnumber
= val
- ppc_toc_frag
->fr_address
;
4954 as_bad_where (fix
->fx_file
, fix
->fx_line
,
4955 _("symbol in .toc does not match any .tc"));
4958 /* Possibly adjust the reloc to be against the csect. */
4959 if (fix
->fx_addsy
!= (symbolS
*) NULL
4960 && symbol_get_tc (fix
->fx_addsy
)->subseg
== 0
4961 && symbol_get_tc (fix
->fx_addsy
)->class != XMC_TC0
4962 && symbol_get_tc (fix
->fx_addsy
)->class != XMC_TC
4963 && S_GET_SEGMENT (fix
->fx_addsy
) != bss_section
4964 /* Don't adjust if this is a reloc in the toc section. */
4965 && (S_GET_SEGMENT (fix
->fx_addsy
) != data_section
4966 || ppc_toc_csect
== NULL
4967 || val
< ppc_toc_frag
->fr_address
4968 || (ppc_after_toc_frag
!= NULL
4969 && val
>= ppc_after_toc_frag
->fr_address
)))
4973 if (S_GET_SEGMENT (fix
->fx_addsy
) == text_section
)
4974 csect
= ppc_text_csects
;
4975 else if (S_GET_SEGMENT (fix
->fx_addsy
) == data_section
)
4976 csect
= ppc_data_csects
;
4980 /* Skip the initial dummy symbol. */
4981 csect
= symbol_get_tc (csect
)->next
;
4983 if (csect
!= (symbolS
*) NULL
)
4985 while (symbol_get_tc (csect
)->next
!= (symbolS
*) NULL
4986 && (symbol_get_frag (symbol_get_tc (csect
)->next
)->fr_address
4989 /* If the csect address equals the symbol value, then we
4990 have to look through the full symbol table to see
4991 whether this is the csect we want. Note that we will
4992 only get here if the csect has zero length. */
4993 if ((symbol_get_frag (csect
)->fr_address
== val
)
4994 && S_GET_VALUE (csect
) == S_GET_VALUE (fix
->fx_addsy
))
4998 for (scan
= symbol_next (csect
);
5000 scan
= symbol_next (scan
))
5002 if (symbol_get_tc (scan
)->subseg
!= 0)
5004 if (scan
== fix
->fx_addsy
)
5008 /* If we found the symbol before the next csect
5009 symbol, then this is the csect we want. */
5010 if (scan
== fix
->fx_addsy
)
5014 csect
= symbol_get_tc (csect
)->next
;
5017 fix
->fx_offset
+= (S_GET_VALUE (fix
->fx_addsy
)
5018 - symbol_get_frag (csect
)->fr_address
);
5019 fix
->fx_addsy
= csect
;
5023 /* Adjust a reloc against a .lcomm symbol to be against the base
5025 if (fix
->fx_addsy
!= (symbolS
*) NULL
5026 && S_GET_SEGMENT (fix
->fx_addsy
) == bss_section
5027 && ! S_IS_EXTERNAL (fix
->fx_addsy
))
5029 resolve_symbol_value (symbol_get_frag (fix
->fx_addsy
)->fr_symbol
);
5031 (S_GET_VALUE (fix
->fx_addsy
)
5032 - S_GET_VALUE (symbol_get_frag (fix
->fx_addsy
)->fr_symbol
));
5033 fix
->fx_addsy
= symbol_get_frag (fix
->fx_addsy
)->fr_symbol
;
5039 /* A reloc from one csect to another must be kept. The assembler
5040 will, of course, keep relocs between sections, and it will keep
5041 absolute relocs, but we need to force it to keep PC relative relocs
5042 between two csects in the same section. */
5045 ppc_force_relocation (fix
)
5048 /* At this point fix->fx_addsy should already have been converted to
5049 a csect symbol. If the csect does not include the fragment, then
5050 we need to force the relocation. */
5052 && fix
->fx_addsy
!= NULL
5053 && symbol_get_tc (fix
->fx_addsy
)->subseg
!= 0
5054 && ((symbol_get_frag (fix
->fx_addsy
)->fr_address
5055 > fix
->fx_frag
->fr_address
)
5056 || (symbol_get_tc (fix
->fx_addsy
)->next
!= NULL
5057 && (symbol_get_frag (symbol_get_tc (fix
->fx_addsy
)->next
)->fr_address
5058 <= fix
->fx_frag
->fr_address
))))
5064 #endif /* OBJ_XCOFF */
5068 ppc_fix_adjustable (fix
)
5071 return (fix
->fx_r_type
!= BFD_RELOC_16_GOTOFF
5072 && fix
->fx_r_type
!= BFD_RELOC_LO16_GOTOFF
5073 && fix
->fx_r_type
!= BFD_RELOC_HI16_GOTOFF
5074 && fix
->fx_r_type
!= BFD_RELOC_HI16_S_GOTOFF
5075 && fix
->fx_r_type
!= BFD_RELOC_GPREL16
5076 && fix
->fx_r_type
!= BFD_RELOC_VTABLE_INHERIT
5077 && fix
->fx_r_type
!= BFD_RELOC_VTABLE_ENTRY
5078 && ! S_IS_EXTERNAL (fix
->fx_addsy
)
5079 && ! S_IS_WEAK (fix
->fx_addsy
)
5081 || (fix
->fx_subsy
!= NULL
5082 && (S_GET_SEGMENT (fix
->fx_subsy
)
5083 == S_GET_SEGMENT (fix
->fx_addsy
)))
5084 || S_IS_LOCAL (fix
->fx_addsy
)));
5088 /* Apply a fixup to the object code. This is called for all the
5089 fixups we generated by the call to fix_new_exp, above. In the call
5090 above we used a reloc code which was the largest legal reloc code
5091 plus the operand index. Here we undo that to recover the operand
5092 index. At this point all symbol values should be fully resolved,
5093 and we attempt to completely resolve the reloc. If we can not do
5094 that, we determine the correct reloc code and put it back in the
5098 md_apply_fix3 (fixP
, valP
, seg
)
5101 segT seg ATTRIBUTE_UNUSED
;
5103 valueT value
= * valP
;
5106 if (fixP
->fx_addsy
!= NULL
)
5108 /* `*valuep' may contain the value of the symbol on which the reloc
5109 will be based; we have to remove it. */
5110 if (symbol_used_in_reloc_p (fixP
->fx_addsy
)
5111 && S_GET_SEGMENT (fixP
->fx_addsy
) != absolute_section
5112 && S_GET_SEGMENT (fixP
->fx_addsy
) != undefined_section
5113 && ! bfd_is_com_section (S_GET_SEGMENT (fixP
->fx_addsy
)))
5114 value
-= S_GET_VALUE (fixP
->fx_addsy
);
5116 /* FIXME: Why '+'? Better yet, what exactly is '*valuep'
5117 supposed to be? I think this is related to various similar
5118 FIXMEs in tc-i386.c and tc-sparc.c. */
5120 value
+= fixP
->fx_frag
->fr_address
+ fixP
->fx_where
;
5125 /* FIXME FIXME FIXME: The value we are passed in *valuep includes
5126 the symbol values. Since we are using BFD_ASSEMBLER, if we are
5127 doing this relocation the code in write.c is going to call
5128 bfd_install_relocation, which is also going to use the symbol
5129 value. That means that if the reloc is fully resolved we want to
5130 use *valuep since bfd_install_relocation is not being used.
5131 However, if the reloc is not fully resolved we do not want to use
5132 *valuep, and must use fx_offset instead. However, if the reloc
5133 is PC relative, we do want to use *valuep since it includes the
5134 result of md_pcrel_from. This is confusing. */
5135 if (fixP
->fx_addsy
== (symbolS
*) NULL
)
5138 else if (fixP
->fx_pcrel
)
5143 value
= fixP
->fx_offset
;
5144 if (fixP
->fx_subsy
!= (symbolS
*) NULL
)
5146 if (S_GET_SEGMENT (fixP
->fx_subsy
) == absolute_section
)
5147 value
-= S_GET_VALUE (fixP
->fx_subsy
);
5150 /* We can't actually support subtracting a symbol. */
5151 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
5152 _("expression too complex"));
5158 if ((int) fixP
->fx_r_type
>= (int) BFD_RELOC_UNUSED
)
5161 const struct powerpc_operand
*operand
;
5165 opindex
= (int) fixP
->fx_r_type
- (int) BFD_RELOC_UNUSED
;
5167 operand
= &powerpc_operands
[opindex
];
5170 /* An instruction like `lwz 9,sym(30)' when `sym' is not a TOC symbol
5171 does not generate a reloc. It uses the offset of `sym' within its
5172 csect. Other usages, such as `.long sym', generate relocs. This
5173 is the documented behaviour of non-TOC symbols. */
5174 if ((operand
->flags
& PPC_OPERAND_PARENS
) != 0
5175 && operand
->bits
== 16
5176 && operand
->shift
== 0
5177 && (operand
->insert
== NULL
|| ppc_xcoff64
)
5178 && fixP
->fx_addsy
!= NULL
5179 && symbol_get_tc (fixP
->fx_addsy
)->subseg
!= 0
5180 && symbol_get_tc (fixP
->fx_addsy
)->class != XMC_TC
5181 && symbol_get_tc (fixP
->fx_addsy
)->class != XMC_TC0
5182 && S_GET_SEGMENT (fixP
->fx_addsy
) != bss_section
)
5184 value
= fixP
->fx_offset
;
5189 /* Fetch the instruction, insert the fully resolved operand
5190 value, and stuff the instruction back again. */
5191 where
= fixP
->fx_frag
->fr_literal
+ fixP
->fx_where
;
5192 if (target_big_endian
)
5193 insn
= bfd_getb32 ((unsigned char *) where
);
5195 insn
= bfd_getl32 ((unsigned char *) where
);
5196 insn
= ppc_insert_operand (insn
, operand
, (offsetT
) value
,
5197 fixP
->fx_file
, fixP
->fx_line
);
5198 if (target_big_endian
)
5199 bfd_putb32 ((bfd_vma
) insn
, (unsigned char *) where
);
5201 bfd_putl32 ((bfd_vma
) insn
, (unsigned char *) where
);
5204 /* Nothing else to do here. */
5207 assert (fixP
->fx_addsy
!= NULL
);
5209 /* Determine a BFD reloc value based on the operand information.
5210 We are only prepared to turn a few of the operands into
5212 if ((operand
->flags
& PPC_OPERAND_RELATIVE
) != 0
5213 && operand
->bits
== 26
5214 && operand
->shift
== 0)
5215 fixP
->fx_r_type
= BFD_RELOC_PPC_B26
;
5216 else if ((operand
->flags
& PPC_OPERAND_RELATIVE
) != 0
5217 && operand
->bits
== 16
5218 && operand
->shift
== 0)
5219 fixP
->fx_r_type
= BFD_RELOC_PPC_B16
;
5220 else if ((operand
->flags
& PPC_OPERAND_ABSOLUTE
) != 0
5221 && operand
->bits
== 26
5222 && operand
->shift
== 0)
5223 fixP
->fx_r_type
= BFD_RELOC_PPC_BA26
;
5224 else if ((operand
->flags
& PPC_OPERAND_ABSOLUTE
) != 0
5225 && operand
->bits
== 16
5226 && operand
->shift
== 0)
5227 fixP
->fx_r_type
= BFD_RELOC_PPC_BA16
;
5228 #if defined (OBJ_XCOFF) || defined (OBJ_ELF)
5229 else if ((operand
->flags
& PPC_OPERAND_PARENS
) != 0
5230 && operand
->bits
== 16
5231 && operand
->shift
== 0
5232 && ppc_is_toc_sym (fixP
->fx_addsy
))
5234 fixP
->fx_r_type
= BFD_RELOC_PPC_TOC16
;
5236 if (BFD_DEFAULT_TARGET_SIZE
== 64
5237 && ppc_size
== PPC_OPCODE_64
5238 && (operand
->flags
& PPC_OPERAND_DS
) != 0)
5239 fixP
->fx_r_type
= BFD_RELOC_PPC64_TOC16_DS
;
5242 if (target_big_endian
)
5243 fixP
->fx_where
+= 2;
5245 #endif /* defined (OBJ_XCOFF) || defined (OBJ_ELF) */
5251 /* Use expr_symbol_where to see if this is an expression
5253 if (expr_symbol_where (fixP
->fx_addsy
, &sfile
, &sline
))
5254 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
5255 _("unresolved expression that must be resolved"));
5257 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
5258 _("unsupported relocation against %s"),
5259 S_GET_NAME (fixP
->fx_addsy
));
5267 ppc_elf_validate_fix (fixP
, seg
);
5269 switch (fixP
->fx_r_type
)
5271 case BFD_RELOC_CTOR
:
5272 if (BFD_DEFAULT_TARGET_SIZE
== 64 && ppc_size
== PPC_OPCODE_64
)
5278 fixP
->fx_r_type
= BFD_RELOC_32_PCREL
;
5282 case BFD_RELOC_32_PCREL
:
5283 case BFD_RELOC_PPC_EMB_NADDR32
:
5284 md_number_to_chars (fixP
->fx_frag
->fr_literal
+ fixP
->fx_where
,
5291 fixP
->fx_r_type
= BFD_RELOC_64_PCREL
;
5294 case BFD_RELOC_64_PCREL
:
5295 md_number_to_chars (fixP
->fx_frag
->fr_literal
+ fixP
->fx_where
,
5299 case BFD_RELOC_LO16
:
5301 case BFD_RELOC_GPREL16
:
5302 case BFD_RELOC_16_GOT_PCREL
:
5303 case BFD_RELOC_16_GOTOFF
:
5304 case BFD_RELOC_LO16_GOTOFF
:
5305 case BFD_RELOC_HI16_GOTOFF
:
5306 case BFD_RELOC_HI16_S_GOTOFF
:
5307 case BFD_RELOC_16_BASEREL
:
5308 case BFD_RELOC_LO16_BASEREL
:
5309 case BFD_RELOC_HI16_BASEREL
:
5310 case BFD_RELOC_HI16_S_BASEREL
:
5311 case BFD_RELOC_PPC_EMB_NADDR16
:
5312 case BFD_RELOC_PPC_EMB_NADDR16_LO
:
5313 case BFD_RELOC_PPC_EMB_NADDR16_HI
:
5314 case BFD_RELOC_PPC_EMB_NADDR16_HA
:
5315 case BFD_RELOC_PPC_EMB_SDAI16
:
5316 case BFD_RELOC_PPC_EMB_SDA2REL
:
5317 case BFD_RELOC_PPC_EMB_SDA2I16
:
5318 case BFD_RELOC_PPC_EMB_RELSEC16
:
5319 case BFD_RELOC_PPC_EMB_RELST_LO
:
5320 case BFD_RELOC_PPC_EMB_RELST_HI
:
5321 case BFD_RELOC_PPC_EMB_RELST_HA
:
5322 case BFD_RELOC_PPC_EMB_RELSDA
:
5323 case BFD_RELOC_PPC_TOC16
:
5325 #if BFD_DEFAULT_TARGET_SIZE == 64
5326 case BFD_RELOC_PPC64_TOC16_LO
:
5327 case BFD_RELOC_PPC64_TOC16_HI
:
5328 case BFD_RELOC_PPC64_TOC16_HA
:
5333 if (fixP
->fx_addsy
!= NULL
)
5334 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
5335 _("cannot emit PC relative %s relocation against %s"),
5336 bfd_get_reloc_code_name (fixP
->fx_r_type
),
5337 S_GET_NAME (fixP
->fx_addsy
));
5339 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
5340 _("cannot emit PC relative %s relocation"),
5341 bfd_get_reloc_code_name (fixP
->fx_r_type
));
5344 md_number_to_chars (fixP
->fx_frag
->fr_literal
+ fixP
->fx_where
,
5348 /* This case happens when you write, for example,
5350 where L1 and L2 are defined later. */
5351 case BFD_RELOC_HI16
:
5354 md_number_to_chars (fixP
->fx_frag
->fr_literal
+ fixP
->fx_where
,
5358 case BFD_RELOC_HI16_S
:
5361 md_number_to_chars (fixP
->fx_frag
->fr_literal
+ fixP
->fx_where
,
5366 #if BFD_DEFAULT_TARGET_SIZE == 64
5367 case BFD_RELOC_PPC64_HIGHER
:
5370 md_number_to_chars (fixP
->fx_frag
->fr_literal
+ fixP
->fx_where
,
5371 PPC_HIGHER (value
), 2);
5374 case BFD_RELOC_PPC64_HIGHER_S
:
5377 md_number_to_chars (fixP
->fx_frag
->fr_literal
+ fixP
->fx_where
,
5378 PPC_HIGHERA (value
), 2);
5381 case BFD_RELOC_PPC64_HIGHEST
:
5384 md_number_to_chars (fixP
->fx_frag
->fr_literal
+ fixP
->fx_where
,
5385 PPC_HIGHEST (value
), 2);
5388 case BFD_RELOC_PPC64_HIGHEST_S
:
5391 md_number_to_chars (fixP
->fx_frag
->fr_literal
+ fixP
->fx_where
,
5392 PPC_HIGHESTA (value
), 2);
5395 case BFD_RELOC_PPC64_ADDR16_DS
:
5396 case BFD_RELOC_PPC64_ADDR16_LO_DS
:
5397 case BFD_RELOC_PPC64_GOT16_DS
:
5398 case BFD_RELOC_PPC64_GOT16_LO_DS
:
5399 case BFD_RELOC_PPC64_PLT16_LO_DS
:
5400 case BFD_RELOC_PPC64_SECTOFF_DS
:
5401 case BFD_RELOC_PPC64_SECTOFF_LO_DS
:
5402 case BFD_RELOC_PPC64_TOC16_DS
:
5403 case BFD_RELOC_PPC64_TOC16_LO_DS
:
5404 case BFD_RELOC_PPC64_PLTGOT16_DS
:
5405 case BFD_RELOC_PPC64_PLTGOT16_LO_DS
:
5409 unsigned char *where
= fixP
->fx_frag
->fr_literal
+ fixP
->fx_where
;
5412 if (target_big_endian
)
5413 val
= bfd_getb16 (where
);
5415 val
= bfd_getl16 (where
);
5416 val
|= (value
& 0xfffc);
5417 if (target_big_endian
)
5418 bfd_putb16 ((bfd_vma
) val
, where
);
5420 bfd_putl16 ((bfd_vma
) val
, where
);
5425 /* Because SDA21 modifies the register field, the size is set to 4
5426 bytes, rather than 2, so offset it here appropriately. */
5427 case BFD_RELOC_PPC_EMB_SDA21
:
5431 md_number_to_chars (fixP
->fx_frag
->fr_literal
+ fixP
->fx_where
5432 + ((target_big_endian
) ? 2 : 0),
5440 md_number_to_chars (fixP
->fx_frag
->fr_literal
+ fixP
->fx_where
,
5444 case BFD_RELOC_24_PLT_PCREL
:
5445 case BFD_RELOC_PPC_LOCAL24PC
:
5446 if (!fixP
->fx_pcrel
&& !fixP
->fx_done
)
5454 /* Fetch the instruction, insert the fully resolved operand
5455 value, and stuff the instruction back again. */
5456 where
= fixP
->fx_frag
->fr_literal
+ fixP
->fx_where
;
5457 if (target_big_endian
)
5458 insn
= bfd_getb32 ((unsigned char *) where
);
5460 insn
= bfd_getl32 ((unsigned char *) where
);
5461 if ((value
& 3) != 0)
5462 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
5463 _("must branch to an address a multiple of 4"));
5464 if ((offsetT
) value
< -0x40000000
5465 || (offsetT
) value
>= 0x40000000)
5466 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
5467 _("@local or @plt branch destination is too far away, %ld bytes"),
5469 insn
= insn
| (value
& 0x03fffffc);
5470 if (target_big_endian
)
5471 bfd_putb32 ((bfd_vma
) insn
, (unsigned char *) where
);
5473 bfd_putl32 ((bfd_vma
) insn
, (unsigned char *) where
);
5477 case BFD_RELOC_VTABLE_INHERIT
:
5480 && !S_IS_DEFINED (fixP
->fx_addsy
)
5481 && !S_IS_WEAK (fixP
->fx_addsy
))
5482 S_SET_WEAK (fixP
->fx_addsy
);
5485 case BFD_RELOC_VTABLE_ENTRY
:
5490 #if BFD_DEFAULT_TARGET_SIZE == 64
5491 /* Generated by reference to `sym@tocbase'. The sym is
5492 ignored by the linker. */
5493 case BFD_RELOC_PPC64_TOC
:
5500 _("Gas failure, reloc value %d\n"), fixP
->fx_r_type
);
5507 fixP
->fx_addnumber
= value
;
5509 if (fixP
->fx_r_type
!= BFD_RELOC_PPC_TOC16
)
5510 fixP
->fx_addnumber
= 0;
5514 fixP
->fx_addnumber
= 0;
5516 /* We want to use the offset within the data segment of the
5517 symbol, not the actual VMA of the symbol. */
5518 fixP
->fx_addnumber
=
5519 - bfd_get_section_vma (stdoutput
, S_GET_SEGMENT (fixP
->fx_addsy
));
5525 /* Generate a reloc for a fixup. */
5528 tc_gen_reloc (seg
, fixp
)
5529 asection
*seg ATTRIBUTE_UNUSED
;
5534 reloc
= (arelent
*) xmalloc (sizeof (arelent
));
5536 reloc
->sym_ptr_ptr
= (asymbol
**) xmalloc (sizeof (asymbol
*));
5537 *reloc
->sym_ptr_ptr
= symbol_get_bfdsym (fixp
->fx_addsy
);
5538 reloc
->address
= fixp
->fx_frag
->fr_address
+ fixp
->fx_where
;
5539 reloc
->howto
= bfd_reloc_type_lookup (stdoutput
, fixp
->fx_r_type
);
5540 if (reloc
->howto
== (reloc_howto_type
*) NULL
)
5542 as_bad_where (fixp
->fx_file
, fixp
->fx_line
,
5543 _("reloc %d not supported by object file format"),
5544 (int) fixp
->fx_r_type
);
5547 reloc
->addend
= fixp
->fx_addnumber
;