]>
Commit | Line | Data |
---|---|---|
252b5132 | 1 | /* read.c - read a source file - |
6f2750fe | 2 | Copyright (C) 1986-2016 Free Software Foundation, Inc. |
252b5132 | 3 | |
ec2655a6 | 4 | This file is part of GAS, the GNU Assembler. |
252b5132 | 5 | |
ec2655a6 NC |
6 | GAS is free software; you can redistribute it and/or modify |
7 | it under the terms of the GNU General Public License as published by | |
8 | the Free Software Foundation; either version 3, or (at your option) | |
9 | any later version. | |
252b5132 | 10 | |
ec2655a6 NC |
11 | GAS is distributed in the hope that it will be useful, |
12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 | GNU General Public License for more details. | |
252b5132 | 15 | |
ec2655a6 NC |
16 | You should have received a copy of the GNU General Public License |
17 | along with GAS; see the file COPYING. If not, write to the Free | |
18 | Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA | |
19 | 02110-1301, USA. */ | |
252b5132 | 20 | |
59c871b4 | 21 | /* If your chars aren't 8 bits, you will change this a bit (eg. to 0xFF). |
041ff4dd NC |
22 | But then, GNU isn't spozed to run on your machine anyway. |
23 | (RMS is so shortsighted sometimes.) */ | |
041ff4dd | 24 | #define MASK_CHAR ((int)(unsigned char) -1) |
252b5132 | 25 | |
252b5132 | 26 | /* This is the largest known floating point format (for now). It will |
041ff4dd | 27 | grow when we do 4361 style flonums. */ |
252b5132 RH |
28 | #define MAXIMUM_NUMBER_OF_CHARS_FOR_FLOAT (16) |
29 | ||
47eebc20 | 30 | /* Routines that read assembler source text to build spaghetti in memory. |
252b5132 RH |
31 | Another group of these functions is in the expr.c module. */ |
32 | ||
252b5132 | 33 | #include "as.h" |
3882b010 | 34 | #include "safe-ctype.h" |
252b5132 RH |
35 | #include "subsegs.h" |
36 | #include "sb.h" | |
37 | #include "macro.h" | |
38 | #include "obstack.h" | |
252b5132 | 39 | #include "ecoff.h" |
54cfded0 | 40 | #include "dw2gencfi.h" |
7bfd842d | 41 | #include "wchar.h" |
252b5132 RH |
42 | |
43 | #ifndef TC_START_LABEL | |
2e57ce7b | 44 | #define TC_START_LABEL(STR, NUL_CHAR, NEXT_CHAR) (NEXT_CHAR == ':') |
252b5132 RH |
45 | #endif |
46 | ||
8684e216 HPN |
47 | /* Set by the object-format or the target. */ |
48 | #ifndef TC_IMPLICIT_LCOMM_ALIGNMENT | |
d6415f6c | 49 | #define TC_IMPLICIT_LCOMM_ALIGNMENT(SIZE, P2VAR) \ |
041ff4dd | 50 | do \ |
d6415f6c AM |
51 | { \ |
52 | if ((SIZE) >= 8) \ | |
53 | (P2VAR) = 3; \ | |
54 | else if ((SIZE) >= 4) \ | |
55 | (P2VAR) = 2; \ | |
56 | else if ((SIZE) >= 2) \ | |
57 | (P2VAR) = 1; \ | |
58 | else \ | |
59 | (P2VAR) = 0; \ | |
041ff4dd NC |
60 | } \ |
61 | while (0) | |
8684e216 HPN |
62 | #endif |
63 | ||
041ff4dd | 64 | char *input_line_pointer; /*->next char of source file to parse. */ |
252b5132 RH |
65 | |
66 | #if BITS_PER_CHAR != 8 | |
67 | /* The following table is indexed by[(char)] and will break if | |
68 | a char does not have exactly 256 states (hopefully 0:255!)! */ | |
69 | die horribly; | |
70 | #endif | |
71 | ||
72 | #ifndef LEX_AT | |
252b5132 RH |
73 | #define LEX_AT 0 |
74 | #endif | |
75 | ||
76 | #ifndef LEX_BR | |
77 | /* The RS/6000 assembler uses {,},[,] as parts of symbol names. */ | |
78 | #define LEX_BR 0 | |
79 | #endif | |
80 | ||
81 | #ifndef LEX_PCT | |
82 | /* The Delta 68k assembler permits % inside label names. */ | |
83 | #define LEX_PCT 0 | |
84 | #endif | |
85 | ||
86 | #ifndef LEX_QM | |
87 | /* The PowerPC Windows NT assemblers permits ? inside label names. */ | |
88 | #define LEX_QM 0 | |
89 | #endif | |
90 | ||
58b5739a | 91 | #ifndef LEX_HASH |
800eeca4 JW |
92 | /* The IA-64 assembler uses # as a suffix designating a symbol. We include |
93 | it in the symbol and strip it out in tc_canonicalize_symbol_name. */ | |
58b5739a RH |
94 | #define LEX_HASH 0 |
95 | #endif | |
96 | ||
252b5132 | 97 | #ifndef LEX_DOLLAR |
252b5132 RH |
98 | #define LEX_DOLLAR 3 |
99 | #endif | |
100 | ||
101 | #ifndef LEX_TILDE | |
102 | /* The Delta 68k assembler permits ~ at start of label names. */ | |
103 | #define LEX_TILDE 0 | |
104 | #endif | |
105 | ||
041ff4dd | 106 | /* Used by is_... macros. our ctype[]. */ |
ef99799a | 107 | char lex_type[256] = { |
252b5132 RH |
108 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* @ABCDEFGHIJKLMNO */ |
109 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* PQRSTUVWXYZ[\]^_ */ | |
58b5739a | 110 | 0, 0, 0, LEX_HASH, LEX_DOLLAR, LEX_PCT, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, /* _!"#$%&'()*+,-./ */ |
252b5132 RH |
111 | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, LEX_QM, /* 0123456789:;<=>? */ |
112 | LEX_AT, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, /* @ABCDEFGHIJKLMNO */ | |
113 | 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, LEX_BR, 0, LEX_BR, 0, 3, /* PQRSTUVWXYZ[\]^_ */ | |
114 | 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, /* `abcdefghijklmno */ | |
041ff4dd | 115 | 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, LEX_BR, 0, LEX_BR, LEX_TILDE, 0, /* pqrstuvwxyz{|}~. */ |
252b5132 RH |
116 | 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, |
117 | 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, | |
118 | 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, | |
119 | 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, | |
120 | 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, | |
121 | 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, | |
122 | 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, | |
123 | 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3 | |
124 | }; | |
125 | ||
041ff4dd | 126 | /* In: a character. |
d67ffd56 L |
127 | Out: 1 if this character ends a line. |
128 | 2 if this character is a line separator. */ | |
ef99799a | 129 | char is_end_of_line[256] = { |
252b5132 | 130 | #ifdef CR_EOL |
b75c0c92 | 131 | 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, /* @abcdefghijklmno */ |
252b5132 | 132 | #else |
b75c0c92 | 133 | 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, /* @abcdefghijklmno */ |
252b5132 | 134 | #endif |
b75c0c92 AM |
135 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* */ |
136 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* _!"#$%&'()*+,-./ */ | |
ac743b2c | 137 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0123456789:;<=>? */ |
b75c0c92 AM |
138 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* */ |
139 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* */ | |
140 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* */ | |
141 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* */ | |
142 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* */ | |
143 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* */ | |
144 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* */ | |
145 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* */ | |
146 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* */ | |
0b545448 AM |
147 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* */ |
148 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* */ | |
149 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 /* */ | |
252b5132 | 150 | }; |
252b5132 | 151 | |
a8a3b3b2 | 152 | #ifndef TC_CASE_SENSITIVE |
37d8bb27 NC |
153 | char original_case_string[128]; |
154 | #endif | |
155 | ||
041ff4dd | 156 | /* Functions private to this file. */ |
252b5132 | 157 | |
041ff4dd NC |
158 | static char *buffer; /* 1st char of each buffer of lines is here. */ |
159 | static char *buffer_limit; /*->1 + last char in buffer. */ | |
252b5132 | 160 | |
041ff4dd NC |
161 | /* TARGET_BYTES_BIG_ENDIAN is required to be defined to either 0 or 1 |
162 | in the tc-<CPU>.h file. See the "Porting GAS" section of the | |
163 | internals manual. */ | |
252b5132 RH |
164 | int target_big_endian = TARGET_BYTES_BIG_ENDIAN; |
165 | ||
041ff4dd | 166 | /* Variables for handling include file directory table. */ |
252b5132 | 167 | |
041ff4dd | 168 | /* Table of pointers to directories to search for .include's. */ |
e0471c16 | 169 | const char **include_dirs; |
041ff4dd NC |
170 | |
171 | /* How many are in the table. */ | |
172 | int include_dir_count; | |
173 | ||
174 | /* Length of longest in table. */ | |
175 | int include_dir_maxlen = 1; | |
252b5132 RH |
176 | |
177 | #ifndef WORKING_DOT_WORD | |
178 | struct broken_word *broken_words; | |
179 | int new_broken_words; | |
180 | #endif | |
181 | ||
182 | /* The current offset into the absolute section. We don't try to | |
183 | build frags in the absolute section, since no data can be stored | |
184 | there. We just keep track of the current offset. */ | |
185 | addressT abs_section_offset; | |
186 | ||
187 | /* If this line had an MRI style label, it is stored in this variable. | |
188 | This is used by some of the MRI pseudo-ops. */ | |
189 | symbolS *line_label; | |
190 | ||
191 | /* This global variable is used to support MRI common sections. We | |
192 | translate such sections into a common symbol. This variable is | |
193 | non-NULL when we are in an MRI common section. */ | |
194 | symbolS *mri_common_symbol; | |
195 | ||
196 | /* In MRI mode, after a dc.b pseudo-op with an odd number of bytes, we | |
197 | need to align to an even byte boundary unless the next pseudo-op is | |
198 | dc.b, ds.b, or dcb.b. This variable is set to 1 if an alignment | |
199 | may be needed. */ | |
200 | static int mri_pending_align; | |
201 | ||
202 | #ifndef NO_LISTING | |
203 | #ifdef OBJ_ELF | |
204 | /* This variable is set to be non-zero if the next string we see might | |
205 | be the name of the source file in DWARF debugging information. See | |
206 | the comment in emit_expr for the format we look for. */ | |
207 | static int dwarf_file_string; | |
208 | #endif | |
209 | #endif | |
210 | ||
fa94de6b RM |
211 | /* If the target defines the md_frag_max_var hook then we know |
212 | enough to implement the .bundle_align_mode features. */ | |
213 | #ifdef md_frag_max_var | |
214 | # define HANDLE_BUNDLE | |
215 | #endif | |
216 | ||
217 | #ifdef HANDLE_BUNDLE | |
218 | /* .bundle_align_mode sets this. Normally it's zero. When nonzero, | |
219 | it's the exponent of the bundle size, and aligned instruction bundle | |
220 | mode is in effect. */ | |
221 | static unsigned int bundle_align_p2; | |
222 | ||
223 | /* These are set by .bundle_lock and .bundle_unlock. .bundle_lock sets | |
224 | bundle_lock_frag to frag_now and then starts a new frag with | |
225 | frag_align_code. At the same time, bundle_lock_frain gets frchain_now, | |
226 | so that .bundle_unlock can verify that we didn't change segments. | |
227 | .bundle_unlock resets both to NULL. If we detect a bundling violation, | |
228 | then we reset bundle_lock_frchain to NULL as an indicator that we've | |
229 | already diagnosed the error with as_bad and don't need a cascade of | |
230 | redundant errors, but bundle_lock_frag remains set to indicate that | |
231 | we are expecting to see .bundle_unlock. */ | |
232 | static fragS *bundle_lock_frag; | |
233 | static frchainS *bundle_lock_frchain; | |
d416e51d RM |
234 | |
235 | /* This is incremented by .bundle_lock and decremented by .bundle_unlock, | |
236 | to allow nesting. */ | |
237 | static unsigned int bundle_lock_depth; | |
fa94de6b RM |
238 | #endif |
239 | ||
87c245cc | 240 | static void do_s_func (int end_p, const char *default_prefix); |
39e6acbd | 241 | static void s_align (int, int); |
caa32fe5 | 242 | static void s_altmacro (int); |
057f53c1 | 243 | static void s_bad_end (int); |
05e9452c | 244 | static void s_reloc (int); |
39e6acbd | 245 | static int hex_float (int, char *); |
39e6acbd KH |
246 | static segT get_known_segmented_expression (expressionS * expP); |
247 | static void pobegin (void); | |
39a45edc | 248 | static size_t get_non_macro_line_sb (sb *); |
39e6acbd | 249 | static void generate_file_debug (void); |
7592cfd7 | 250 | static char *_find_end_of_line (char *, int, int, int); |
252b5132 | 251 | \f |
252b5132 | 252 | void |
39e6acbd | 253 | read_begin (void) |
252b5132 RH |
254 | { |
255 | const char *p; | |
256 | ||
257 | pobegin (); | |
258 | obj_read_begin_hook (); | |
259 | ||
260 | /* Something close -- but not too close -- to a multiple of 1024. | |
261 | The debugging malloc I'm using has 24 bytes of overhead. */ | |
262 | obstack_begin (¬es, chunksize); | |
263 | obstack_begin (&cond_obstack, chunksize); | |
264 | ||
2e6976a8 DG |
265 | #ifndef tc_line_separator_chars |
266 | #define tc_line_separator_chars line_separator_chars | |
267 | #endif | |
041ff4dd | 268 | /* Use machine dependent syntax. */ |
2e6976a8 | 269 | for (p = tc_line_separator_chars; *p; p++) |
d67ffd56 | 270 | is_end_of_line[(unsigned char) *p] = 2; |
041ff4dd | 271 | /* Use more. FIXME-SOMEDAY. */ |
252b5132 RH |
272 | |
273 | if (flag_mri) | |
274 | lex_type['?'] = 3; | |
275 | } | |
276 | \f | |
cc1bc22a | 277 | #ifndef TC_ADDRESS_BYTES |
cc1bc22a AM |
278 | #define TC_ADDRESS_BYTES address_bytes |
279 | ||
280 | static inline int | |
281 | address_bytes (void) | |
282 | { | |
283 | /* Choose smallest of 1, 2, 4, 8 bytes that is large enough to | |
284 | contain an address. */ | |
285 | int n = (stdoutput->arch_info->bits_per_address - 1) / 8; | |
286 | n |= n >> 1; | |
287 | n |= n >> 2; | |
288 | n += 1; | |
289 | return n; | |
290 | } | |
291 | #endif | |
cc1bc22a | 292 | |
041ff4dd | 293 | /* Set up pseudo-op tables. */ |
252b5132 RH |
294 | |
295 | static struct hash_control *po_hash; | |
296 | ||
ef99799a | 297 | static const pseudo_typeS potable[] = { |
252b5132 RH |
298 | {"abort", s_abort, 0}, |
299 | {"align", s_align_ptwo, 0}, | |
caa32fe5 | 300 | {"altmacro", s_altmacro, 1}, |
38a57ae7 NC |
301 | {"ascii", stringer, 8+0}, |
302 | {"asciz", stringer, 8+1}, | |
252b5132 RH |
303 | {"balign", s_align_bytes, 0}, |
304 | {"balignw", s_align_bytes, -2}, | |
305 | {"balignl", s_align_bytes, -4}, | |
041ff4dd | 306 | /* block */ |
fa94de6b RM |
307 | #ifdef HANDLE_BUNDLE |
308 | {"bundle_align_mode", s_bundle_align_mode, 0}, | |
309 | {"bundle_lock", s_bundle_lock, 0}, | |
310 | {"bundle_unlock", s_bundle_unlock, 0}, | |
311 | #endif | |
252b5132 RH |
312 | {"byte", cons, 1}, |
313 | {"comm", s_comm, 0}, | |
314 | {"common", s_mri_common, 0}, | |
315 | {"common.s", s_mri_common, 1}, | |
316 | {"data", s_data, 0}, | |
317 | {"dc", cons, 2}, | |
cc1bc22a AM |
318 | #ifdef TC_ADDRESS_BYTES |
319 | {"dc.a", cons, 0}, | |
320 | #endif | |
252b5132 RH |
321 | {"dc.b", cons, 1}, |
322 | {"dc.d", float_cons, 'd'}, | |
323 | {"dc.l", cons, 4}, | |
324 | {"dc.s", float_cons, 'f'}, | |
325 | {"dc.w", cons, 2}, | |
326 | {"dc.x", float_cons, 'x'}, | |
327 | {"dcb", s_space, 2}, | |
328 | {"dcb.b", s_space, 1}, | |
329 | {"dcb.d", s_float_space, 'd'}, | |
330 | {"dcb.l", s_space, 4}, | |
331 | {"dcb.s", s_float_space, 'f'}, | |
332 | {"dcb.w", s_space, 2}, | |
333 | {"dcb.x", s_float_space, 'x'}, | |
334 | {"ds", s_space, 2}, | |
335 | {"ds.b", s_space, 1}, | |
336 | {"ds.d", s_space, 8}, | |
337 | {"ds.l", s_space, 4}, | |
338 | {"ds.p", s_space, 12}, | |
339 | {"ds.s", s_space, 4}, | |
340 | {"ds.w", s_space, 2}, | |
341 | {"ds.x", s_space, 12}, | |
342 | {"debug", s_ignore, 0}, | |
343 | #ifdef S_SET_DESC | |
344 | {"desc", s_desc, 0}, | |
345 | #endif | |
041ff4dd | 346 | /* dim */ |
252b5132 | 347 | {"double", float_cons, 'd'}, |
041ff4dd NC |
348 | /* dsect */ |
349 | {"eject", listing_eject, 0}, /* Formfeed listing. */ | |
252b5132 RH |
350 | {"else", s_else, 0}, |
351 | {"elsec", s_else, 0}, | |
3fd9f047 | 352 | {"elseif", s_elseif, (int) O_ne}, |
252b5132 RH |
353 | {"end", s_end, 0}, |
354 | {"endc", s_endif, 0}, | |
355 | {"endfunc", s_func, 1}, | |
356 | {"endif", s_endif, 0}, | |
057f53c1 JB |
357 | {"endm", s_bad_end, 0}, |
358 | {"endr", s_bad_end, 1}, | |
041ff4dd | 359 | /* endef */ |
252b5132 RH |
360 | {"equ", s_set, 0}, |
361 | {"equiv", s_set, 1}, | |
9497f5ac | 362 | {"eqv", s_set, -1}, |
252b5132 | 363 | {"err", s_err, 0}, |
d190d046 | 364 | {"error", s_errwarn, 1}, |
252b5132 | 365 | {"exitm", s_mexit, 0}, |
041ff4dd NC |
366 | /* extend */ |
367 | {"extern", s_ignore, 0}, /* We treat all undef as ext. */ | |
252b5132 | 368 | {"appfile", s_app_file, 1}, |
93e914b2 | 369 | {"appline", s_app_line, 1}, |
252b5132 RH |
370 | {"fail", s_fail, 0}, |
371 | {"file", s_app_file, 0}, | |
372 | {"fill", s_fill, 0}, | |
373 | {"float", float_cons, 'f'}, | |
374 | {"format", s_ignore, 0}, | |
375 | {"func", s_func, 0}, | |
376 | {"global", s_globl, 0}, | |
377 | {"globl", s_globl, 0}, | |
378 | {"hword", cons, 2}, | |
379 | {"if", s_if, (int) O_ne}, | |
26aca5f6 | 380 | {"ifb", s_ifb, 1}, |
252b5132 RH |
381 | {"ifc", s_ifc, 0}, |
382 | {"ifdef", s_ifdef, 0}, | |
383 | {"ifeq", s_if, (int) O_eq}, | |
384 | {"ifeqs", s_ifeqs, 0}, | |
385 | {"ifge", s_if, (int) O_ge}, | |
386 | {"ifgt", s_if, (int) O_gt}, | |
387 | {"ifle", s_if, (int) O_le}, | |
388 | {"iflt", s_if, (int) O_lt}, | |
26aca5f6 | 389 | {"ifnb", s_ifb, 0}, |
252b5132 RH |
390 | {"ifnc", s_ifc, 1}, |
391 | {"ifndef", s_ifdef, 1}, | |
392 | {"ifne", s_if, (int) O_ne}, | |
393 | {"ifnes", s_ifeqs, 1}, | |
394 | {"ifnotdef", s_ifdef, 1}, | |
7e005732 | 395 | {"incbin", s_incbin, 0}, |
252b5132 RH |
396 | {"include", s_include, 0}, |
397 | {"int", cons, 4}, | |
398 | {"irp", s_irp, 0}, | |
399 | {"irep", s_irp, 0}, | |
400 | {"irpc", s_irp, 1}, | |
401 | {"irepc", s_irp, 1}, | |
402 | {"lcomm", s_lcomm, 0}, | |
c2069bb2 | 403 | {"lflags", s_ignore, 0}, /* Listing flags. */ |
93e914b2 | 404 | {"linefile", s_app_line, 0}, |
252b5132 | 405 | {"linkonce", s_linkonce, 0}, |
041ff4dd | 406 | {"list", listing_list, 1}, /* Turn listing on. */ |
252b5132 RH |
407 | {"llen", listing_psize, 1}, |
408 | {"long", cons, 4}, | |
409 | {"lsym", s_lsym, 0}, | |
410 | {"macro", s_macro, 0}, | |
411 | {"mexit", s_mexit, 0}, | |
412 | {"mri", s_mri, 0}, | |
413 | {".mri", s_mri, 0}, /* Special case so .mri works in MRI mode. */ | |
414 | {"name", s_ignore, 0}, | |
caa32fe5 | 415 | {"noaltmacro", s_altmacro, 0}, |
252b5132 | 416 | {"noformat", s_ignore, 0}, |
041ff4dd | 417 | {"nolist", listing_list, 0}, /* Turn listing off. */ |
252b5132 RH |
418 | {"nopage", listing_nopage, 0}, |
419 | {"octa", cons, 16}, | |
420 | {"offset", s_struct, 0}, | |
421 | {"org", s_org, 0}, | |
422 | {"p2align", s_align_ptwo, 0}, | |
423 | {"p2alignw", s_align_ptwo, -2}, | |
424 | {"p2alignl", s_align_ptwo, -4}, | |
425 | {"page", listing_eject, 0}, | |
426 | {"plen", listing_psize, 0}, | |
427 | {"print", s_print, 0}, | |
041ff4dd | 428 | {"psize", listing_psize, 0}, /* Set paper size. */ |
252b5132 RH |
429 | {"purgem", s_purgem, 0}, |
430 | {"quad", cons, 8}, | |
05e9452c | 431 | {"reloc", s_reloc, 0}, |
252b5132 RH |
432 | {"rep", s_rept, 0}, |
433 | {"rept", s_rept, 0}, | |
434 | {"rva", s_rva, 4}, | |
041ff4dd NC |
435 | {"sbttl", listing_title, 1}, /* Subtitle of listing. */ |
436 | /* scl */ | |
437 | /* sect */ | |
252b5132 RH |
438 | {"set", s_set, 0}, |
439 | {"short", cons, 2}, | |
440 | {"single", float_cons, 'f'}, | |
041ff4dd | 441 | /* size */ |
252b5132 RH |
442 | {"space", s_space, 0}, |
443 | {"skip", s_space, 0}, | |
444 | {"sleb128", s_leb128, 1}, | |
445 | {"spc", s_ignore, 0}, | |
446 | {"stabd", s_stab, 'd'}, | |
447 | {"stabn", s_stab, 'n'}, | |
448 | {"stabs", s_stab, 's'}, | |
38a57ae7 NC |
449 | {"string", stringer, 8+1}, |
450 | {"string8", stringer, 8+1}, | |
451 | {"string16", stringer, 16+1}, | |
452 | {"string32", stringer, 32+1}, | |
453 | {"string64", stringer, 64+1}, | |
252b5132 | 454 | {"struct", s_struct, 0}, |
041ff4dd | 455 | /* tag */ |
252b5132 RH |
456 | {"text", s_text, 0}, |
457 | ||
458 | /* This is for gcc to use. It's only just been added (2/94), so gcc | |
459 | won't be able to use it for a while -- probably a year or more. | |
460 | But once this has been released, check with gcc maintainers | |
461 | before deleting it or even changing the spelling. */ | |
462 | {"this_GCC_requires_the_GNU_assembler", s_ignore, 0}, | |
463 | /* If we're folding case -- done for some targets, not necessarily | |
464 | all -- the above string in an input file will be converted to | |
465 | this one. Match it either way... */ | |
466 | {"this_gcc_requires_the_gnu_assembler", s_ignore, 0}, | |
467 | ||
041ff4dd | 468 | {"title", listing_title, 0}, /* Listing title. */ |
252b5132 | 469 | {"ttl", listing_title, 0}, |
041ff4dd | 470 | /* type */ |
252b5132 | 471 | {"uleb128", s_leb128, 0}, |
041ff4dd NC |
472 | /* use */ |
473 | /* val */ | |
252b5132 RH |
474 | {"xcom", s_comm, 0}, |
475 | {"xdef", s_globl, 0}, | |
476 | {"xref", s_ignore, 0}, | |
477 | {"xstabs", s_xstab, 's'}, | |
d190d046 | 478 | {"warning", s_errwarn, 0}, |
06e77878 | 479 | {"weakref", s_weakref, 0}, |
252b5132 RH |
480 | {"word", cons, 2}, |
481 | {"zero", s_space, 0}, | |
041ff4dd | 482 | {NULL, NULL, 0} /* End sentinel. */ |
252b5132 RH |
483 | }; |
484 | ||
87c245cc BE |
485 | static offsetT |
486 | get_absolute_expr (expressionS *exp) | |
487 | { | |
9497f5ac | 488 | expression_and_evaluate (exp); |
9136aa49 | 489 | |
87c245cc BE |
490 | if (exp->X_op != O_constant) |
491 | { | |
492 | if (exp->X_op != O_absent) | |
493 | as_bad (_("bad or irreducible absolute expression")); | |
494 | exp->X_add_number = 0; | |
495 | } | |
496 | return exp->X_add_number; | |
497 | } | |
498 | ||
499 | offsetT | |
500 | get_absolute_expression (void) | |
501 | { | |
502 | expressionS exp; | |
503 | ||
504 | return get_absolute_expr (&exp); | |
505 | } | |
506 | ||
252b5132 RH |
507 | static int pop_override_ok = 0; |
508 | static const char *pop_table_name; | |
509 | ||
510 | void | |
39e6acbd | 511 | pop_insert (const pseudo_typeS *table) |
252b5132 RH |
512 | { |
513 | const char *errtxt; | |
514 | const pseudo_typeS *pop; | |
515 | for (pop = table; pop->poc_name; pop++) | |
516 | { | |
517 | errtxt = hash_insert (po_hash, pop->poc_name, (char *) pop); | |
518 | if (errtxt && (!pop_override_ok || strcmp (errtxt, "exists"))) | |
519 | as_fatal (_("error constructing %s pseudo-op table: %s"), pop_table_name, | |
520 | errtxt); | |
521 | } | |
522 | } | |
523 | ||
524 | #ifndef md_pop_insert | |
525 | #define md_pop_insert() pop_insert(md_pseudo_table) | |
526 | #endif | |
527 | ||
528 | #ifndef obj_pop_insert | |
529 | #define obj_pop_insert() pop_insert(obj_pseudo_table) | |
530 | #endif | |
531 | ||
54cfded0 AM |
532 | #ifndef cfi_pop_insert |
533 | #define cfi_pop_insert() pop_insert(cfi_pseudo_table) | |
534 | #endif | |
535 | ||
041ff4dd | 536 | static void |
39e6acbd | 537 | pobegin (void) |
252b5132 RH |
538 | { |
539 | po_hash = hash_new (); | |
540 | ||
041ff4dd | 541 | /* Do the target-specific pseudo ops. */ |
252b5132 RH |
542 | pop_table_name = "md"; |
543 | md_pop_insert (); | |
544 | ||
041ff4dd | 545 | /* Now object specific. Skip any that were in the target table. */ |
252b5132 RH |
546 | pop_table_name = "obj"; |
547 | pop_override_ok = 1; | |
548 | obj_pop_insert (); | |
549 | ||
041ff4dd | 550 | /* Now portable ones. Skip any that we've seen already. */ |
252b5132 RH |
551 | pop_table_name = "standard"; |
552 | pop_insert (potable); | |
d6415f6c | 553 | |
d58a1929 | 554 | /* Now CFI ones. */ |
54cfded0 AM |
555 | pop_table_name = "cfi"; |
556 | pop_override_ok = 1; | |
557 | cfi_pop_insert (); | |
252b5132 RH |
558 | } |
559 | \f | |
e74211b6 | 560 | #define HANDLE_CONDITIONAL_ASSEMBLY(num_read) \ |
252b5132 RH |
561 | if (ignore_input ()) \ |
562 | { \ | |
e74211b6 JB |
563 | char *eol = find_end_of_line (input_line_pointer - (num_read), \ |
564 | flag_m68k_mri); \ | |
40a4d956 JB |
565 | input_line_pointer = (input_line_pointer <= buffer_limit \ |
566 | && eol >= buffer_limit) \ | |
567 | ? buffer_limit \ | |
568 | : eol + 1; \ | |
252b5132 RH |
569 | continue; \ |
570 | } | |
571 | ||
252b5132 RH |
572 | /* This function is used when scrubbing the characters between #APP |
573 | and #NO_APP. */ | |
574 | ||
575 | static char *scrub_string; | |
576 | static char *scrub_string_end; | |
577 | ||
39a45edc AM |
578 | static size_t |
579 | scrub_from_string (char *buf, size_t buflen) | |
252b5132 | 580 | { |
39a45edc | 581 | size_t copy; |
2b47531b ILT |
582 | |
583 | copy = scrub_string_end - scrub_string; | |
584 | if (copy > buflen) | |
585 | copy = buflen; | |
586 | memcpy (buf, scrub_string, copy); | |
587 | scrub_string += copy; | |
588 | return copy; | |
252b5132 RH |
589 | } |
590 | ||
5e75c3ab JB |
591 | /* Helper function of read_a_source_file, which tries to expand a macro. */ |
592 | static int | |
593 | try_macro (char term, const char *line) | |
594 | { | |
595 | sb out; | |
596 | const char *err; | |
597 | macro_entry *macro; | |
598 | ||
599 | if (check_macro (line, &out, &err, ¯o)) | |
600 | { | |
601 | if (err != NULL) | |
602 | as_bad ("%s", err); | |
603 | *input_line_pointer++ = term; | |
604 | input_scrub_include_sb (&out, | |
605 | input_line_pointer, 1); | |
606 | sb_kill (&out); | |
607 | buffer_limit = | |
608 | input_scrub_next_buffer (&input_line_pointer); | |
609 | #ifdef md_macro_info | |
610 | md_macro_info (macro); | |
611 | #endif | |
612 | return 1; | |
613 | } | |
614 | return 0; | |
615 | } | |
616 | ||
fa94de6b RM |
617 | #ifdef HANDLE_BUNDLE |
618 | /* Start a new instruction bundle. Returns the rs_align_code frag that | |
619 | will be used to align the new bundle. */ | |
620 | static fragS * | |
621 | start_bundle (void) | |
622 | { | |
623 | fragS *frag = frag_now; | |
624 | ||
625 | frag_align_code (0, 0); | |
626 | ||
627 | while (frag->fr_type != rs_align_code) | |
628 | frag = frag->fr_next; | |
629 | ||
630 | gas_assert (frag != frag_now); | |
631 | ||
632 | return frag; | |
633 | } | |
634 | ||
635 | /* Calculate the maximum size after relaxation of the region starting | |
636 | at the given frag and extending through frag_now (which is unfinished). */ | |
637 | static unsigned int | |
638 | pending_bundle_size (fragS *frag) | |
639 | { | |
640 | unsigned int offset = frag->fr_fix; | |
641 | unsigned int size = 0; | |
642 | ||
643 | gas_assert (frag != frag_now); | |
644 | gas_assert (frag->fr_type == rs_align_code); | |
645 | ||
646 | while (frag != frag_now) | |
647 | { | |
648 | /* This should only happen in what will later become an error case. */ | |
649 | if (frag == NULL) | |
650 | return 0; | |
651 | ||
652 | size += frag->fr_fix; | |
653 | if (frag->fr_type == rs_machine_dependent) | |
654 | size += md_frag_max_var (frag); | |
655 | ||
656 | frag = frag->fr_next; | |
657 | } | |
658 | ||
659 | gas_assert (frag == frag_now); | |
660 | size += frag_now_fix (); | |
661 | if (frag->fr_type == rs_machine_dependent) | |
662 | size += md_frag_max_var (frag); | |
663 | ||
664 | gas_assert (size >= offset); | |
665 | ||
666 | return size - offset; | |
667 | } | |
668 | ||
669 | /* Finish off the frag created to ensure bundle alignment. */ | |
670 | static void | |
671 | finish_bundle (fragS *frag, unsigned int size) | |
672 | { | |
673 | gas_assert (bundle_align_p2 > 0); | |
674 | gas_assert (frag->fr_type == rs_align_code); | |
675 | ||
676 | if (size > 1) | |
677 | { | |
678 | /* If there is more than a single byte, then we need to set up the | |
679 | alignment frag. Otherwise we leave it at its initial state from | |
680 | calling frag_align_code (0, 0), so that it does nothing. */ | |
681 | frag->fr_offset = bundle_align_p2; | |
682 | frag->fr_subtype = size - 1; | |
683 | } | |
684 | ||
685 | /* We do this every time rather than just in s_bundle_align_mode | |
686 | so that we catch any affected section without needing hooks all | |
687 | over for all paths that do section changes. It's cheap enough. */ | |
9136aa49 DG |
688 | if (bundle_align_p2 > OCTETS_PER_BYTE_POWER) |
689 | record_alignment (now_seg, bundle_align_p2 - OCTETS_PER_BYTE_POWER); | |
fa94de6b RM |
690 | } |
691 | ||
692 | /* Assemble one instruction. This takes care of the bundle features | |
693 | around calling md_assemble. */ | |
694 | static void | |
695 | assemble_one (char *line) | |
696 | { | |
8d3eaee6 | 697 | fragS *insn_start_frag = NULL; |
fa94de6b RM |
698 | |
699 | if (bundle_lock_frchain != NULL && bundle_lock_frchain != frchain_now) | |
700 | { | |
701 | as_bad (_("cannot change section or subsection inside .bundle_lock")); | |
702 | /* Clearing this serves as a marker that we have already complained. */ | |
703 | bundle_lock_frchain = NULL; | |
704 | } | |
705 | ||
706 | if (bundle_lock_frchain == NULL && bundle_align_p2 > 0) | |
707 | insn_start_frag = start_bundle (); | |
708 | ||
709 | md_assemble (line); | |
710 | ||
711 | if (bundle_lock_frchain != NULL) | |
712 | { | |
713 | /* Make sure this hasn't pushed the locked sequence | |
714 | past the bundle size. */ | |
715 | unsigned int bundle_size = pending_bundle_size (bundle_lock_frag); | |
716 | if (bundle_size > (1U << bundle_align_p2)) | |
717 | as_bad (_("\ | |
718 | .bundle_lock sequence at %u bytes but .bundle_align_mode limit is %u bytes"), | |
719 | bundle_size, 1U << bundle_align_p2); | |
720 | } | |
721 | else if (bundle_align_p2 > 0) | |
722 | { | |
723 | unsigned int insn_size = pending_bundle_size (insn_start_frag); | |
724 | ||
725 | if (insn_size > (1U << bundle_align_p2)) | |
726 | as_bad (_("\ | |
727 | single instruction is %u bytes long but .bundle_align_mode limit is %u"), | |
728 | (unsigned int) insn_size, 1U << bundle_align_p2); | |
729 | ||
730 | finish_bundle (insn_start_frag, insn_size); | |
731 | } | |
732 | } | |
733 | ||
734 | #else /* !HANDLE_BUNDLE */ | |
735 | ||
736 | # define assemble_one(line) md_assemble(line) | |
737 | ||
738 | #endif /* HANDLE_BUNDLE */ | |
739 | ||
9136aa49 DG |
740 | static bfd_boolean |
741 | in_bss (void) | |
742 | { | |
743 | flagword flags = bfd_get_section_flags (stdoutput, now_seg); | |
744 | ||
745 | return (flags & SEC_ALLOC) && !(flags & (SEC_LOAD | SEC_HAS_CONTENTS)); | |
746 | } | |
747 | ||
748 | /* Guts of .align directive: | |
749 | N is the power of two to which to align. A value of zero is accepted but | |
750 | ignored: the default alignment of the section will be at least this. | |
751 | FILL may be NULL, or it may point to the bytes of the fill pattern. | |
752 | LEN is the length of whatever FILL points to, if anything. If LEN is zero | |
753 | but FILL is not NULL then LEN is treated as if it were one. | |
754 | MAX is the maximum number of characters to skip when doing the alignment, | |
755 | or 0 if there is no maximum. */ | |
756 | ||
757 | static void | |
758 | do_align (unsigned int n, char *fill, unsigned int len, unsigned int max) | |
759 | { | |
760 | if (now_seg == absolute_section || in_bss ()) | |
761 | { | |
762 | if (fill != NULL) | |
763 | while (len-- > 0) | |
764 | if (*fill++ != '\0') | |
765 | { | |
766 | if (now_seg == absolute_section) | |
767 | as_warn (_("ignoring fill value in absolute section")); | |
768 | else | |
769 | as_warn (_("ignoring fill value in section `%s'"), | |
770 | segment_name (now_seg)); | |
771 | break; | |
772 | } | |
773 | fill = NULL; | |
774 | len = 0; | |
775 | } | |
776 | ||
777 | #ifdef md_flush_pending_output | |
778 | md_flush_pending_output (); | |
779 | #endif | |
780 | ||
781 | #ifdef md_do_align | |
782 | md_do_align (n, fill, len, max, just_record_alignment); | |
783 | #endif | |
784 | ||
785 | /* Only make a frag if we HAVE to... */ | |
786 | if ((n > OCTETS_PER_BYTE_POWER) && !need_pass_2) | |
787 | { | |
788 | if (fill == NULL) | |
789 | { | |
790 | if (subseg_text_p (now_seg)) | |
791 | frag_align_code (n, max); | |
792 | else | |
793 | frag_align (n, 0, max); | |
794 | } | |
795 | else if (len <= 1) | |
796 | frag_align (n, *fill, max); | |
797 | else | |
798 | frag_align_pattern (n, fill, len, max); | |
799 | } | |
800 | ||
801 | #ifdef md_do_align | |
802 | just_record_alignment: ATTRIBUTE_UNUSED_LABEL | |
803 | #endif | |
804 | ||
805 | if (n > OCTETS_PER_BYTE_POWER) | |
806 | record_alignment (now_seg, n - OCTETS_PER_BYTE_POWER); | |
807 | } | |
808 | ||
041ff4dd NC |
809 | /* We read the file, putting things into a web that represents what we |
810 | have been reading. */ | |
811 | void | |
e0471c16 | 812 | read_a_source_file (const char *name) |
252b5132 | 813 | { |
d02603dc NC |
814 | char nul_char; |
815 | char next_char; | |
91d6fa6a NC |
816 | char *s; /* String of symbol, '\0' appended. */ |
817 | int temp; | |
252b5132 RH |
818 | pseudo_typeS *pop; |
819 | ||
4c400d5e AM |
820 | #ifdef WARN_COMMENTS |
821 | found_comment = 0; | |
822 | #endif | |
823 | ||
252b5132 RH |
824 | buffer = input_scrub_new_file (name); |
825 | ||
826 | listing_file (name); | |
827 | listing_newline (NULL); | |
828 | register_dependency (name); | |
829 | ||
830 | /* Generate debugging information before we've read anything in to denote | |
831 | this file as the "main" source file and not a subordinate one | |
832 | (e.g. N_SO vs N_SOL in stabs). */ | |
833 | generate_file_debug (); | |
834 | ||
835 | while ((buffer_limit = input_scrub_next_buffer (&input_line_pointer)) != 0) | |
041ff4dd | 836 | { /* We have another line to parse. */ |
5e75c3ab JB |
837 | #ifndef NO_LISTING |
838 | /* In order to avoid listing macro expansion lines with labels | |
839 | multiple times, keep track of which line was last issued. */ | |
840 | static char *last_eol; | |
841 | ||
842 | last_eol = NULL; | |
843 | #endif | |
252b5132 RH |
844 | while (input_line_pointer < buffer_limit) |
845 | { | |
f19df8f7 | 846 | bfd_boolean was_new_line; |
041ff4dd | 847 | /* We have more of this buffer to parse. */ |
252b5132 | 848 | |
041ff4dd NC |
849 | /* We now have input_line_pointer->1st char of next line. |
850 | If input_line_pointer [-1] == '\n' then we just | |
851 | scanned another line: so bump line counters. */ | |
f19df8f7 AM |
852 | was_new_line = is_end_of_line[(unsigned char) input_line_pointer[-1]]; |
853 | if (was_new_line) | |
252b5132 | 854 | { |
4a826962 | 855 | symbol_set_value_now (&dot_symbol); |
252b5132 RH |
856 | #ifdef md_start_line_hook |
857 | md_start_line_hook (); | |
858 | #endif | |
252b5132 RH |
859 | if (input_line_pointer[-1] == '\n') |
860 | bump_line_counters (); | |
f19df8f7 | 861 | } |
252b5132 | 862 | |
f19df8f7 AM |
863 | #ifndef NO_LISTING |
864 | /* If listing is on, and we are expanding a macro, then give | |
865 | the listing code the contents of the expanded line. */ | |
866 | if (listing) | |
867 | { | |
868 | if ((listing & LISTING_MACEXP) && macro_nest > 0) | |
869 | { | |
870 | /* Find the end of the current expanded macro line. */ | |
871 | s = find_end_of_line (input_line_pointer, flag_m68k_mri); | |
872 | ||
873 | if (s != last_eol) | |
874 | { | |
875 | char *copy; | |
876 | int len; | |
877 | ||
878 | last_eol = s; | |
879 | /* Copy it for safe keeping. Also give an indication of | |
880 | how much macro nesting is involved at this point. */ | |
881 | len = s - input_line_pointer; | |
882 | copy = (char *) xmalloc (len + macro_nest + 2); | |
883 | memset (copy, '>', macro_nest); | |
884 | copy[macro_nest] = ' '; | |
885 | memcpy (copy + macro_nest + 1, input_line_pointer, len); | |
886 | copy[macro_nest + 1 + len] = '\0'; | |
887 | ||
888 | /* Install the line with the listing facility. */ | |
889 | listing_newline (copy); | |
890 | } | |
891 | } | |
892 | else | |
893 | listing_newline (NULL); | |
894 | } | |
895 | #endif | |
896 | if (was_new_line) | |
897 | { | |
252b5132 RH |
898 | line_label = NULL; |
899 | ||
abd63a32 | 900 | if (LABELS_WITHOUT_COLONS || flag_m68k_mri) |
252b5132 | 901 | { |
d02603dc | 902 | next_char = * input_line_pointer; |
252b5132 RH |
903 | /* Text at the start of a line must be a label, we |
904 | run down and stick a colon in. */ | |
d02603dc | 905 | if (is_name_beginner (next_char) || next_char == '"') |
252b5132 | 906 | { |
d02603dc | 907 | char *line_start; |
252b5132 RH |
908 | int mri_line_macro; |
909 | ||
e74211b6 | 910 | HANDLE_CONDITIONAL_ASSEMBLY (0); |
252b5132 | 911 | |
d02603dc NC |
912 | nul_char = get_symbol_name (& line_start); |
913 | next_char = (nul_char == '"' ? input_line_pointer[1] : nul_char); | |
252b5132 RH |
914 | |
915 | /* In MRI mode, the EQU and MACRO pseudoops must | |
916 | be handled specially. */ | |
917 | mri_line_macro = 0; | |
918 | if (flag_m68k_mri) | |
919 | { | |
920 | char *rest = input_line_pointer + 1; | |
921 | ||
922 | if (*rest == ':') | |
923 | ++rest; | |
924 | if (*rest == ' ' || *rest == '\t') | |
925 | ++rest; | |
926 | if ((strncasecmp (rest, "EQU", 3) == 0 | |
927 | || strncasecmp (rest, "SET", 3) == 0) | |
928 | && (rest[3] == ' ' || rest[3] == '\t')) | |
929 | { | |
930 | input_line_pointer = rest + 3; | |
931 | equals (line_start, | |
932 | strncasecmp (rest, "SET", 3) == 0); | |
933 | continue; | |
934 | } | |
935 | if (strncasecmp (rest, "MACRO", 5) == 0 | |
936 | && (rest[5] == ' ' | |
937 | || rest[5] == '\t' | |
938 | || is_end_of_line[(unsigned char) rest[5]])) | |
939 | mri_line_macro = 1; | |
940 | } | |
941 | ||
942 | /* In MRI mode, we need to handle the MACRO | |
d6415f6c AM |
943 | pseudo-op specially: we don't want to put the |
944 | symbol in the symbol table. */ | |
041ff4dd | 945 | if (!mri_line_macro |
a25c045a | 946 | #ifdef TC_START_LABEL_WITHOUT_COLON |
2e57ce7b | 947 | && TC_START_LABEL_WITHOUT_COLON (nul_char, next_char) |
a25c045a | 948 | #endif |
ef99799a | 949 | ) |
252b5132 RH |
950 | line_label = colon (line_start); |
951 | else | |
952 | line_label = symbol_create (line_start, | |
953 | absolute_section, | |
954 | (valueT) 0, | |
955 | &zero_address_frag); | |
956 | ||
d02603dc NC |
957 | next_char = restore_line_pointer (nul_char); |
958 | if (next_char == ':') | |
252b5132 RH |
959 | input_line_pointer++; |
960 | } | |
961 | } | |
962 | } | |
963 | ||
47eebc20 | 964 | /* We are at the beginning of a line, or similar place. |
041ff4dd NC |
965 | We expect a well-formed assembler statement. |
966 | A "symbol-name:" is a statement. | |
f0e652b4 | 967 | |
041ff4dd NC |
968 | Depending on what compiler is used, the order of these tests |
969 | may vary to catch most common case 1st. | |
d2bdaea8 AM |
970 | Each test is independent of all other tests at the (top) |
971 | level. */ | |
972 | do | |
d02603dc NC |
973 | nul_char = next_char = *input_line_pointer++; |
974 | while (next_char == '\t' || next_char == ' ' || next_char == '\f'); | |
252b5132 | 975 | |
041ff4dd NC |
976 | /* C is the 1st significant character. |
977 | Input_line_pointer points after that character. */ | |
d02603dc | 978 | if (is_name_beginner (next_char) || next_char == '"') |
252b5132 | 979 | { |
d02603dc NC |
980 | char *rest; |
981 | ||
041ff4dd | 982 | /* Want user-defined label or pseudo/opcode. */ |
e74211b6 | 983 | HANDLE_CONDITIONAL_ASSEMBLY (1); |
252b5132 | 984 | |
d02603dc NC |
985 | --input_line_pointer; |
986 | nul_char = get_symbol_name (& s); /* name's delimiter. */ | |
987 | next_char = (nul_char == '"' ? input_line_pointer[1] : nul_char); | |
988 | rest = input_line_pointer + (nul_char == '"' ? 2 : 1); | |
041ff4dd | 989 | |
d02603dc NC |
990 | /* NEXT_CHAR is character after symbol. |
991 | The end of symbol in the input line is now '\0'. | |
d6415f6c AM |
992 | S points to the beginning of the symbol. |
993 | [In case of pseudo-op, s->'.'.] | |
d02603dc | 994 | Input_line_pointer->'\0' where NUL_CHAR was. */ |
2e57ce7b | 995 | if (TC_START_LABEL (s, nul_char, next_char)) |
252b5132 RH |
996 | { |
997 | if (flag_m68k_mri) | |
998 | { | |
252b5132 | 999 | /* In MRI mode, \tsym: set 0 is permitted. */ |
252b5132 RH |
1000 | if (*rest == ':') |
1001 | ++rest; | |
f0e652b4 | 1002 | |
252b5132 RH |
1003 | if (*rest == ' ' || *rest == '\t') |
1004 | ++rest; | |
f0e652b4 | 1005 | |
252b5132 RH |
1006 | if ((strncasecmp (rest, "EQU", 3) == 0 |
1007 | || strncasecmp (rest, "SET", 3) == 0) | |
1008 | && (rest[3] == ' ' || rest[3] == '\t')) | |
1009 | { | |
1010 | input_line_pointer = rest + 3; | |
1011 | equals (s, 1); | |
1012 | continue; | |
1013 | } | |
1014 | } | |
1015 | ||
041ff4dd | 1016 | line_label = colon (s); /* User-defined label. */ |
d02603dc NC |
1017 | restore_line_pointer (nul_char); |
1018 | ++ input_line_pointer; | |
a645d1eb L |
1019 | #ifdef tc_check_label |
1020 | tc_check_label (line_label); | |
1021 | #endif | |
041ff4dd | 1022 | /* Input_line_pointer->after ':'. */ |
252b5132 | 1023 | SKIP_WHITESPACE (); |
252b5132 | 1024 | } |
d02603dc NC |
1025 | else if ((next_char == '=' && *rest == '=') |
1026 | || ((next_char == ' ' || next_char == '\t') | |
1027 | && rest[0] == '=' | |
1028 | && rest[1] == '=')) | |
9497f5ac NC |
1029 | { |
1030 | equals (s, -1); | |
1031 | demand_empty_rest_of_line (); | |
1032 | } | |
d02603dc NC |
1033 | else if ((next_char == '=' |
1034 | || ((next_char == ' ' || next_char == '\t') | |
1035 | && *rest == '=')) | |
ee3c9814 | 1036 | #ifdef TC_EQUAL_IN_INSN |
d02603dc | 1037 | && !TC_EQUAL_IN_INSN (next_char, s) |
ee3c9814 | 1038 | #endif |
fa94de6b | 1039 | ) |
252b5132 RH |
1040 | { |
1041 | equals (s, 1); | |
1042 | demand_empty_rest_of_line (); | |
1043 | } | |
1044 | else | |
041ff4dd NC |
1045 | { |
1046 | /* Expect pseudo-op or machine instruction. */ | |
252b5132 RH |
1047 | pop = NULL; |
1048 | ||
a8a3b3b2 | 1049 | #ifndef TC_CASE_SENSITIVE |
252b5132 RH |
1050 | { |
1051 | char *s2 = s; | |
37d8bb27 NC |
1052 | |
1053 | strncpy (original_case_string, s2, sizeof (original_case_string)); | |
1054 | original_case_string[sizeof (original_case_string) - 1] = 0; | |
ef99799a | 1055 | |
252b5132 RH |
1056 | while (*s2) |
1057 | { | |
3882b010 | 1058 | *s2 = TOLOWER (*s2); |
252b5132 RH |
1059 | s2++; |
1060 | } | |
1061 | } | |
1062 | #endif | |
abd63a32 | 1063 | if (NO_PSEUDO_DOT || flag_m68k_mri) |
252b5132 | 1064 | { |
7be1c489 AM |
1065 | /* The MRI assembler uses pseudo-ops without |
1066 | a period. */ | |
252b5132 RH |
1067 | pop = (pseudo_typeS *) hash_find (po_hash, s); |
1068 | if (pop != NULL && pop->poc_handler == NULL) | |
1069 | pop = NULL; | |
1070 | } | |
1071 | ||
1072 | if (pop != NULL | |
041ff4dd | 1073 | || (!flag_m68k_mri && *s == '.')) |
252b5132 | 1074 | { |
041ff4dd | 1075 | /* PSEUDO - OP. |
f0e652b4 | 1076 | |
d02603dc | 1077 | WARNING: next_char may be end-of-line. |
d6415f6c AM |
1078 | We lookup the pseudo-op table with s+1 because we |
1079 | already know that the pseudo-op begins with a '.'. */ | |
252b5132 RH |
1080 | |
1081 | if (pop == NULL) | |
1082 | pop = (pseudo_typeS *) hash_find (po_hash, s + 1); | |
e4475e39 NS |
1083 | if (pop && !pop->poc_handler) |
1084 | pop = NULL; | |
252b5132 RH |
1085 | |
1086 | /* In MRI mode, we may need to insert an | |
d6415f6c AM |
1087 | automatic alignment directive. What a hack |
1088 | this is. */ | |
252b5132 RH |
1089 | if (mri_pending_align |
1090 | && (pop == NULL | |
041ff4dd NC |
1091 | || !((pop->poc_handler == cons |
1092 | && pop->poc_val == 1) | |
1093 | || (pop->poc_handler == s_space | |
1094 | && pop->poc_val == 1) | |
252b5132 | 1095 | #ifdef tc_conditional_pseudoop |
041ff4dd | 1096 | || tc_conditional_pseudoop (pop) |
252b5132 | 1097 | #endif |
041ff4dd NC |
1098 | || pop->poc_handler == s_if |
1099 | || pop->poc_handler == s_ifdef | |
1100 | || pop->poc_handler == s_ifc | |
1101 | || pop->poc_handler == s_ifeqs | |
1102 | || pop->poc_handler == s_else | |
1103 | || pop->poc_handler == s_endif | |
1104 | || pop->poc_handler == s_globl | |
1105 | || pop->poc_handler == s_ignore))) | |
252b5132 RH |
1106 | { |
1107 | do_align (1, (char *) NULL, 0, 0); | |
1108 | mri_pending_align = 0; | |
f0e652b4 | 1109 | |
252b5132 RH |
1110 | if (line_label != NULL) |
1111 | { | |
2b47531b | 1112 | symbol_set_frag (line_label, frag_now); |
252b5132 RH |
1113 | S_SET_VALUE (line_label, frag_now_fix ()); |
1114 | } | |
1115 | } | |
1116 | ||
041ff4dd | 1117 | /* Print the error msg now, while we still can. */ |
252b5132 RH |
1118 | if (pop == NULL) |
1119 | { | |
5e75c3ab JB |
1120 | char *end = input_line_pointer; |
1121 | ||
d02603dc | 1122 | (void) restore_line_pointer (nul_char); |
252b5132 | 1123 | s_ignore (0); |
d02603dc | 1124 | nul_char = next_char = *--input_line_pointer; |
5e75c3ab | 1125 | *input_line_pointer = '\0'; |
d02603dc | 1126 | if (! macro_defined || ! try_macro (next_char, s)) |
5e75c3ab JB |
1127 | { |
1128 | *end = '\0'; | |
1129 | as_bad (_("unknown pseudo-op: `%s'"), s); | |
d02603dc | 1130 | *input_line_pointer++ = nul_char; |
5e75c3ab | 1131 | } |
252b5132 RH |
1132 | continue; |
1133 | } | |
1134 | ||
041ff4dd | 1135 | /* Put it back for error messages etc. */ |
d02603dc | 1136 | next_char = restore_line_pointer (nul_char); |
252b5132 RH |
1137 | /* The following skip of whitespace is compulsory. |
1138 | A well shaped space is sometimes all that separates | |
041ff4dd | 1139 | keyword from operands. */ |
d02603dc | 1140 | if (next_char == ' ' || next_char == '\t') |
252b5132 | 1141 | input_line_pointer++; |
041ff4dd NC |
1142 | |
1143 | /* Input_line is restored. | |
d6415f6c AM |
1144 | Input_line_pointer->1st non-blank char |
1145 | after pseudo-operation. */ | |
252b5132 RH |
1146 | (*pop->poc_handler) (pop->poc_val); |
1147 | ||
1148 | /* If that was .end, just get out now. */ | |
1149 | if (pop->poc_handler == s_end) | |
1150 | goto quit; | |
1151 | } | |
1152 | else | |
1153 | { | |
d02603dc NC |
1154 | /* WARNING: next_char may be end-of-line. */ |
1155 | /* Also: input_line_pointer->`\0` where nul_char was. */ | |
1156 | (void) restore_line_pointer (nul_char); | |
7592cfd7 | 1157 | input_line_pointer = _find_end_of_line (input_line_pointer, flag_m68k_mri, 1, 0); |
d02603dc | 1158 | next_char = nul_char = *input_line_pointer; |
252b5132 RH |
1159 | *input_line_pointer = '\0'; |
1160 | ||
1161 | generate_lineno_debug (); | |
1162 | ||
d02603dc | 1163 | if (macro_defined && try_macro (next_char, s)) |
5e75c3ab | 1164 | continue; |
252b5132 RH |
1165 | |
1166 | if (mri_pending_align) | |
1167 | { | |
1168 | do_align (1, (char *) NULL, 0, 0); | |
1169 | mri_pending_align = 0; | |
1170 | if (line_label != NULL) | |
1171 | { | |
2b47531b | 1172 | symbol_set_frag (line_label, frag_now); |
252b5132 RH |
1173 | S_SET_VALUE (line_label, frag_now_fix ()); |
1174 | } | |
1175 | } | |
1176 | ||
fa94de6b | 1177 | assemble_one (s); /* Assemble 1 instruction. */ |
252b5132 | 1178 | |
3be64886 NC |
1179 | /* PR 19630: The backend may have set ilp to NULL |
1180 | if it encountered a catastrophic failure. */ | |
1181 | if (input_line_pointer == NULL) | |
1182 | as_fatal (_("unable to continue with assembly.")); | |
1183 | ||
d02603dc | 1184 | *input_line_pointer++ = nul_char; |
252b5132 RH |
1185 | |
1186 | /* We resume loop AFTER the end-of-line from | |
041ff4dd NC |
1187 | this instruction. */ |
1188 | } | |
1189 | } | |
252b5132 | 1190 | continue; |
041ff4dd | 1191 | } |
252b5132 RH |
1192 | |
1193 | /* Empty statement? */ | |
d02603dc | 1194 | if (is_end_of_line[(unsigned char) next_char]) |
252b5132 RH |
1195 | continue; |
1196 | ||
d02603dc | 1197 | if ((LOCAL_LABELS_DOLLAR || LOCAL_LABELS_FB) && ISDIGIT (next_char)) |
252b5132 | 1198 | { |
041ff4dd | 1199 | /* local label ("4:") */ |
252b5132 RH |
1200 | char *backup = input_line_pointer; |
1201 | ||
e74211b6 | 1202 | HANDLE_CONDITIONAL_ASSEMBLY (1); |
252b5132 | 1203 | |
d02603dc NC |
1204 | temp = next_char - '0'; |
1205 | ||
1206 | if (nul_char == '"') | |
1207 | ++ input_line_pointer; | |
252b5132 | 1208 | |
041ff4dd | 1209 | /* Read the whole number. */ |
3882b010 | 1210 | while (ISDIGIT (*input_line_pointer)) |
252b5132 RH |
1211 | { |
1212 | temp = (temp * 10) + *input_line_pointer - '0'; | |
1213 | ++input_line_pointer; | |
041ff4dd | 1214 | } |
252b5132 RH |
1215 | |
1216 | if (LOCAL_LABELS_DOLLAR | |
1217 | && *input_line_pointer == '$' | |
1218 | && *(input_line_pointer + 1) == ':') | |
1219 | { | |
1220 | input_line_pointer += 2; | |
1221 | ||
1222 | if (dollar_label_defined (temp)) | |
1223 | { | |
1224 | as_fatal (_("label \"%d$\" redefined"), temp); | |
1225 | } | |
1226 | ||
1227 | define_dollar_label (temp); | |
1228 | colon (dollar_label_name (temp, 0)); | |
1229 | continue; | |
1230 | } | |
1231 | ||
1232 | if (LOCAL_LABELS_FB | |
1233 | && *input_line_pointer++ == ':') | |
1234 | { | |
1235 | fb_label_instance_inc (temp); | |
1236 | colon (fb_label_name (temp, 0)); | |
1237 | continue; | |
1238 | } | |
1239 | ||
1240 | input_line_pointer = backup; | |
d02603dc | 1241 | } |
252b5132 | 1242 | |
d02603dc | 1243 | if (next_char && strchr (line_comment_chars, next_char)) |
041ff4dd | 1244 | { /* Its a comment. Better say APP or NO_APP. */ |
64e55042 | 1245 | sb sbuf; |
252b5132 RH |
1246 | char *ends; |
1247 | char *new_buf; | |
1248 | char *new_tmp; | |
1249 | unsigned int new_length; | |
1250 | char *tmp_buf = 0; | |
1251 | ||
252b5132 RH |
1252 | s = input_line_pointer; |
1253 | if (strncmp (s, "APP\n", 4)) | |
601e61cd NC |
1254 | { |
1255 | /* We ignore it. */ | |
1256 | ignore_rest_of_line (); | |
1257 | continue; | |
1258 | } | |
1259 | bump_line_counters (); | |
252b5132 RH |
1260 | s += 4; |
1261 | ||
1262 | ends = strstr (s, "#NO_APP\n"); | |
1263 | ||
1264 | if (!ends) | |
1265 | { | |
1266 | unsigned int tmp_len; | |
1267 | unsigned int num; | |
1268 | ||
1269 | /* The end of the #APP wasn't in this buffer. We | |
1270 | keep reading in buffers until we find the #NO_APP | |
1271 | that goes with this #APP There is one. The specs | |
47eebc20 | 1272 | guarantee it... */ |
252b5132 | 1273 | tmp_len = buffer_limit - s; |
1e9cc1c2 | 1274 | tmp_buf = (char *) xmalloc (tmp_len + 1); |
252b5132 RH |
1275 | memcpy (tmp_buf, s, tmp_len); |
1276 | do | |
1277 | { | |
1278 | new_tmp = input_scrub_next_buffer (&buffer); | |
1279 | if (!new_tmp) | |
1280 | break; | |
1281 | else | |
1282 | buffer_limit = new_tmp; | |
1283 | input_line_pointer = buffer; | |
1284 | ends = strstr (buffer, "#NO_APP\n"); | |
1285 | if (ends) | |
1286 | num = ends - buffer; | |
1287 | else | |
1288 | num = buffer_limit - buffer; | |
1289 | ||
1e9cc1c2 | 1290 | tmp_buf = (char *) xrealloc (tmp_buf, tmp_len + num); |
252b5132 RH |
1291 | memcpy (tmp_buf + tmp_len, buffer, num); |
1292 | tmp_len += num; | |
1293 | } | |
1294 | while (!ends); | |
1295 | ||
1296 | input_line_pointer = ends ? ends + 8 : NULL; | |
1297 | ||
1298 | s = tmp_buf; | |
1299 | ends = s + tmp_len; | |
1300 | ||
1301 | } | |
1302 | else | |
1303 | { | |
1304 | input_line_pointer = ends + 8; | |
1305 | } | |
1306 | ||
1307 | scrub_string = s; | |
1308 | scrub_string_end = ends; | |
1309 | ||
1310 | new_length = ends - s; | |
1311 | new_buf = (char *) xmalloc (new_length); | |
1312 | new_tmp = new_buf; | |
1313 | for (;;) | |
1314 | { | |
39a45edc AM |
1315 | size_t space; |
1316 | size_t size; | |
252b5132 RH |
1317 | |
1318 | space = (new_buf + new_length) - new_tmp; | |
1319 | size = do_scrub_chars (scrub_from_string, new_tmp, space); | |
1320 | ||
1321 | if (size < space) | |
1322 | { | |
64e55042 | 1323 | new_tmp[size] = 0; |
252b5132 RH |
1324 | break; |
1325 | } | |
1326 | ||
1e9cc1c2 | 1327 | new_buf = (char *) xrealloc (new_buf, new_length + 100); |
252b5132 RH |
1328 | new_tmp = new_buf + new_length; |
1329 | new_length += 100; | |
1330 | } | |
1331 | ||
1332 | if (tmp_buf) | |
1333 | free (tmp_buf); | |
f0e652b4 | 1334 | |
64e55042 HPN |
1335 | /* We've "scrubbed" input to the preferred format. In the |
1336 | process we may have consumed the whole of the remaining | |
1337 | file (and included files). We handle this formatted | |
1338 | input similar to that of macro expansion, letting | |
1339 | actual macro expansion (possibly nested) and other | |
1340 | input expansion work. Beware that in messages, line | |
1341 | numbers and possibly file names will be incorrect. */ | |
d2ae702c L |
1342 | new_length = strlen (new_buf); |
1343 | sb_build (&sbuf, new_length); | |
1344 | sb_add_buffer (&sbuf, new_buf, new_length); | |
64e55042 HPN |
1345 | input_scrub_include_sb (&sbuf, input_line_pointer, 0); |
1346 | sb_kill (&sbuf); | |
1347 | buffer_limit = input_scrub_next_buffer (&input_line_pointer); | |
1348 | free (new_buf); | |
252b5132 RH |
1349 | continue; |
1350 | } | |
1351 | ||
e74211b6 | 1352 | HANDLE_CONDITIONAL_ASSEMBLY (1); |
252b5132 RH |
1353 | |
1354 | #ifdef tc_unrecognized_line | |
d02603dc | 1355 | if (tc_unrecognized_line (next_char)) |
252b5132 RH |
1356 | continue; |
1357 | #endif | |
0e389e77 | 1358 | input_line_pointer--; |
601e61cd | 1359 | /* Report unknown char as error. */ |
c95b35a9 | 1360 | demand_empty_rest_of_line (); |
041ff4dd | 1361 | } |
041ff4dd | 1362 | } |
252b5132 RH |
1363 | |
1364 | quit: | |
04648e65 | 1365 | symbol_set_value_now (&dot_symbol); |
252b5132 | 1366 | |
fa94de6b RM |
1367 | #ifdef HANDLE_BUNDLE |
1368 | if (bundle_lock_frag != NULL) | |
1369 | { | |
1370 | as_bad_where (bundle_lock_frag->fr_file, bundle_lock_frag->fr_line, | |
1371 | _(".bundle_lock with no matching .bundle_unlock")); | |
1372 | bundle_lock_frag = NULL; | |
1373 | bundle_lock_frchain = NULL; | |
d416e51d | 1374 | bundle_lock_depth = 0; |
fa94de6b RM |
1375 | } |
1376 | #endif | |
1377 | ||
252b5132 | 1378 | #ifdef md_cleanup |
041ff4dd | 1379 | md_cleanup (); |
252b5132 | 1380 | #endif |
041ff4dd NC |
1381 | /* Close the input file. */ |
1382 | input_scrub_close (); | |
4c400d5e AM |
1383 | #ifdef WARN_COMMENTS |
1384 | { | |
1385 | if (warn_comment && found_comment) | |
1386 | as_warn_where (found_comment_file, found_comment, | |
1387 | "first comment found here"); | |
1388 | } | |
1389 | #endif | |
252b5132 RH |
1390 | } |
1391 | ||
e5604d79 | 1392 | /* Convert O_constant expression EXP into the equivalent O_big representation. |
956a6ba3 | 1393 | Take the sign of the number from SIGN rather than X_add_number. */ |
e5604d79 RS |
1394 | |
1395 | static void | |
956a6ba3 | 1396 | convert_to_bignum (expressionS *exp, int sign) |
e5604d79 RS |
1397 | { |
1398 | valueT value; | |
1399 | unsigned int i; | |
1400 | ||
1401 | value = exp->X_add_number; | |
1402 | for (i = 0; i < sizeof (exp->X_add_number) / CHARS_PER_LITTLENUM; i++) | |
1403 | { | |
1404 | generic_bignum[i] = value & LITTLENUM_MASK; | |
1405 | value >>= LITTLENUM_NUMBER_OF_BITS; | |
1406 | } | |
1407 | /* Add a sequence of sign bits if the top bit of X_add_number is not | |
1408 | the sign of the original value. */ | |
956a6ba3 JB |
1409 | if ((exp->X_add_number < 0) == !sign) |
1410 | generic_bignum[i++] = sign ? LITTLENUM_MASK : 0; | |
e5604d79 RS |
1411 | exp->X_op = O_big; |
1412 | exp->X_add_number = i; | |
1413 | } | |
1414 | ||
252b5132 RH |
1415 | /* For most MRI pseudo-ops, the line actually ends at the first |
1416 | nonquoted space. This function looks for that point, stuffs a null | |
1417 | in, and sets *STOPCP to the character that used to be there, and | |
1418 | returns the location. | |
1419 | ||
1420 | Until I hear otherwise, I am going to assume that this is only true | |
1421 | for the m68k MRI assembler. */ | |
1422 | ||
1423 | char * | |
39e6acbd | 1424 | mri_comment_field (char *stopcp) |
252b5132 | 1425 | { |
252b5132 | 1426 | char *s; |
041ff4dd | 1427 | #ifdef TC_M68K |
252b5132 RH |
1428 | int inquote = 0; |
1429 | ||
1430 | know (flag_m68k_mri); | |
1431 | ||
1432 | for (s = input_line_pointer; | |
041ff4dd | 1433 | ((!is_end_of_line[(unsigned char) *s] && *s != ' ' && *s != '\t') |
252b5132 RH |
1434 | || inquote); |
1435 | s++) | |
1436 | { | |
1437 | if (*s == '\'') | |
041ff4dd | 1438 | inquote = !inquote; |
252b5132 | 1439 | } |
252b5132 | 1440 | #else |
041ff4dd NC |
1441 | for (s = input_line_pointer; |
1442 | !is_end_of_line[(unsigned char) *s]; | |
1443 | s++) | |
252b5132 | 1444 | ; |
041ff4dd | 1445 | #endif |
252b5132 RH |
1446 | *stopcp = *s; |
1447 | *s = '\0'; | |
f0e652b4 | 1448 | |
252b5132 | 1449 | return s; |
252b5132 RH |
1450 | } |
1451 | ||
1452 | /* Skip to the end of an MRI comment field. */ | |
1453 | ||
1454 | void | |
39e6acbd | 1455 | mri_comment_end (char *stop, int stopc) |
252b5132 RH |
1456 | { |
1457 | know (flag_mri); | |
1458 | ||
1459 | input_line_pointer = stop; | |
1460 | *stop = stopc; | |
041ff4dd | 1461 | while (!is_end_of_line[(unsigned char) *input_line_pointer]) |
252b5132 RH |
1462 | ++input_line_pointer; |
1463 | } | |
1464 | ||
041ff4dd | 1465 | void |
39e6acbd | 1466 | s_abort (int ignore ATTRIBUTE_UNUSED) |
252b5132 RH |
1467 | { |
1468 | as_fatal (_(".abort detected. Abandoning ship.")); | |
1469 | } | |
1470 | ||
252b5132 RH |
1471 | /* Handle the .align pseudo-op. A positive ARG is a default alignment |
1472 | (in bytes). A negative ARG is the negative of the length of the | |
1473 | fill pattern. BYTES_P is non-zero if the alignment value should be | |
1474 | interpreted as the byte boundary, rather than the power of 2. */ | |
11ec4ba9 DS |
1475 | #ifndef TC_ALIGN_LIMIT |
1476 | #define TC_ALIGN_LIMIT (stdoutput->arch_info->bits_per_address - 1) | |
1477 | #endif | |
9ebd302d | 1478 | |
252b5132 | 1479 | static void |
9136aa49 | 1480 | s_align (signed int arg, int bytes_p) |
252b5132 | 1481 | { |
11ec4ba9 | 1482 | unsigned int align_limit = TC_ALIGN_LIMIT; |
9ebd302d | 1483 | unsigned int align; |
252b5132 | 1484 | char *stop = NULL; |
fb25138b | 1485 | char stopc = 0; |
252b5132 | 1486 | offsetT fill = 0; |
9136aa49 | 1487 | unsigned int max; |
252b5132 RH |
1488 | int fill_p; |
1489 | ||
1490 | if (flag_mri) | |
1491 | stop = mri_comment_field (&stopc); | |
1492 | ||
1493 | if (is_end_of_line[(unsigned char) *input_line_pointer]) | |
1494 | { | |
1495 | if (arg < 0) | |
1496 | align = 0; | |
1497 | else | |
041ff4dd | 1498 | align = arg; /* Default value from pseudo-op table. */ |
252b5132 RH |
1499 | } |
1500 | else | |
1501 | { | |
1502 | align = get_absolute_expression (); | |
1503 | SKIP_WHITESPACE (); | |
db2ed2e0 AM |
1504 | |
1505 | #ifdef TC_ALIGN_ZERO_IS_DEFAULT | |
1506 | if (arg > 0 && align == 0) | |
1507 | align = arg; | |
1508 | #endif | |
252b5132 RH |
1509 | } |
1510 | ||
1511 | if (bytes_p) | |
1512 | { | |
1513 | /* Convert to a power of 2. */ | |
1514 | if (align != 0) | |
1515 | { | |
1516 | unsigned int i; | |
1517 | ||
1518 | for (i = 0; (align & 1) == 0; align >>= 1, ++i) | |
1519 | ; | |
1520 | if (align != 1) | |
0e389e77 | 1521 | as_bad (_("alignment not a power of 2")); |
f0e652b4 | 1522 | |
252b5132 RH |
1523 | align = i; |
1524 | } | |
1525 | } | |
1526 | ||
b617dc20 | 1527 | if (align > align_limit) |
252b5132 | 1528 | { |
b617dc20 | 1529 | align = align_limit; |
0e389e77 | 1530 | as_warn (_("alignment too large: %u assumed"), align); |
252b5132 RH |
1531 | } |
1532 | ||
1533 | if (*input_line_pointer != ',') | |
1534 | { | |
1535 | fill_p = 0; | |
1536 | max = 0; | |
1537 | } | |
1538 | else | |
1539 | { | |
1540 | ++input_line_pointer; | |
1541 | if (*input_line_pointer == ',') | |
1542 | fill_p = 0; | |
1543 | else | |
1544 | { | |
1545 | fill = get_absolute_expression (); | |
1546 | SKIP_WHITESPACE (); | |
1547 | fill_p = 1; | |
1548 | } | |
1549 | ||
1550 | if (*input_line_pointer != ',') | |
1551 | max = 0; | |
1552 | else | |
1553 | { | |
1554 | ++input_line_pointer; | |
1555 | max = get_absolute_expression (); | |
1556 | } | |
1557 | } | |
1558 | ||
041ff4dd | 1559 | if (!fill_p) |
252b5132 RH |
1560 | { |
1561 | if (arg < 0) | |
1562 | as_warn (_("expected fill pattern missing")); | |
1563 | do_align (align, (char *) NULL, 0, max); | |
1564 | } | |
1565 | else | |
1566 | { | |
9136aa49 | 1567 | unsigned int fill_len; |
252b5132 RH |
1568 | |
1569 | if (arg >= 0) | |
1570 | fill_len = 1; | |
1571 | else | |
041ff4dd | 1572 | fill_len = -arg; |
9136aa49 | 1573 | |
252b5132 RH |
1574 | if (fill_len <= 1) |
1575 | { | |
9136aa49 | 1576 | char fill_char = 0; |
252b5132 RH |
1577 | |
1578 | fill_char = fill; | |
1579 | do_align (align, &fill_char, fill_len, max); | |
1580 | } | |
1581 | else | |
1582 | { | |
1583 | char ab[16]; | |
1584 | ||
1585 | if ((size_t) fill_len > sizeof ab) | |
9136aa49 DG |
1586 | { |
1587 | as_warn (_("fill pattern too long, truncating to %u"), | |
1588 | (unsigned) sizeof ab); | |
1589 | fill_len = sizeof ab; | |
1590 | } | |
1591 | ||
252b5132 RH |
1592 | md_number_to_chars (ab, fill, fill_len); |
1593 | do_align (align, ab, fill_len, max); | |
1594 | } | |
1595 | } | |
1596 | ||
1597 | demand_empty_rest_of_line (); | |
1598 | ||
1599 | if (flag_mri) | |
1600 | mri_comment_end (stop, stopc); | |
1601 | } | |
1602 | ||
1603 | /* Handle the .align pseudo-op on machines where ".align 4" means | |
1604 | align to a 4 byte boundary. */ | |
1605 | ||
041ff4dd | 1606 | void |
39e6acbd | 1607 | s_align_bytes (int arg) |
252b5132 RH |
1608 | { |
1609 | s_align (arg, 1); | |
1610 | } | |
1611 | ||
1612 | /* Handle the .align pseudo-op on machines where ".align 4" means align | |
1613 | to a 2**4 boundary. */ | |
1614 | ||
041ff4dd | 1615 | void |
39e6acbd | 1616 | s_align_ptwo (int arg) |
252b5132 RH |
1617 | { |
1618 | s_align (arg, 0); | |
1619 | } | |
1620 | ||
caa32fe5 NC |
1621 | /* Switch in and out of alternate macro mode. */ |
1622 | ||
b38ead21 | 1623 | static void |
caa32fe5 NC |
1624 | s_altmacro (int on) |
1625 | { | |
1626 | demand_empty_rest_of_line (); | |
1627 | macro_set_alternate (on); | |
1628 | } | |
1629 | ||
7bfd842d NC |
1630 | /* Read a symbol name from input_line_pointer. |
1631 | ||
1632 | Stores the symbol name in a buffer and returns a pointer to this buffer. | |
1633 | The buffer is xalloc'ed. It is the caller's responsibility to free | |
1634 | this buffer. | |
1635 | ||
1636 | The name is not left in the i_l_p buffer as it may need processing | |
1637 | to handle escape characters. | |
1638 | ||
1639 | Advances i_l_p to the next non-whitespace character. | |
1640 | ||
1641 | If a symbol name could not be read, the routine issues an error | |
1642 | messages, skips to the end of the line and returns NULL. */ | |
1643 | ||
69602580 | 1644 | char * |
7bfd842d NC |
1645 | read_symbol_name (void) |
1646 | { | |
1647 | char * name; | |
1648 | char * start; | |
1649 | char c; | |
1650 | ||
1651 | c = *input_line_pointer++; | |
1652 | ||
1653 | if (c == '"') | |
1654 | { | |
1655 | #define SYM_NAME_CHUNK_LEN 128 | |
1656 | ptrdiff_t len = SYM_NAME_CHUNK_LEN; | |
1657 | char * name_end; | |
1658 | unsigned int C; | |
1659 | ||
1660 | start = name = xmalloc (len + 1); | |
1661 | ||
1662 | name_end = name + SYM_NAME_CHUNK_LEN; | |
1663 | ||
1664 | while (is_a_char (C = next_char_of_string ())) | |
1665 | { | |
1666 | if (name >= name_end) | |
1667 | { | |
1668 | ptrdiff_t sofar; | |
1669 | ||
1670 | sofar = name - start; | |
1671 | len += SYM_NAME_CHUNK_LEN; | |
1672 | start = xrealloc (start, len + 1); | |
1673 | name_end = start + len; | |
1674 | name = start + sofar; | |
1675 | } | |
34bca508 | 1676 | |
7bfd842d NC |
1677 | *name++ = (char) C; |
1678 | } | |
1679 | *name = 0; | |
1680 | ||
1681 | /* Since quoted symbol names can contain non-ASCII characters, | |
1682 | check the string and warn if it cannot be recognised by the | |
1683 | current character set. */ | |
1684 | if (mbstowcs (NULL, name, len) == (size_t) -1) | |
1685 | as_warn (_("symbol name not recognised in the current locale")); | |
1686 | } | |
1687 | else if (is_name_beginner (c) || c == '\001') | |
1688 | { | |
1689 | ptrdiff_t len; | |
1690 | ||
1691 | name = input_line_pointer - 1; | |
1692 | ||
1693 | /* We accept \001 in a name in case this is | |
1694 | being called with a constructed string. */ | |
1695 | while (is_part_of_name (c = *input_line_pointer++) | |
1696 | || c == '\001') | |
1697 | ; | |
1698 | ||
1699 | len = (input_line_pointer - name) - 1; | |
1700 | start = xmalloc (len + 1); | |
1701 | ||
1702 | memcpy (start, name, len); | |
1703 | start[len] = 0; | |
1704 | ||
1705 | /* Skip a name ender char if one is present. */ | |
1706 | if (! is_name_ender (c)) | |
1707 | --input_line_pointer; | |
1708 | } | |
1709 | else | |
1710 | name = start = NULL; | |
1711 | ||
1712 | if (name == start) | |
1713 | { | |
1714 | as_bad (_("expected symbol name")); | |
1715 | ignore_rest_of_line (); | |
1716 | return NULL; | |
1717 | } | |
34bca508 | 1718 | |
7bfd842d NC |
1719 | SKIP_WHITESPACE (); |
1720 | ||
1721 | return start; | |
1722 | } | |
1723 | ||
1724 | ||
e13bab5a AM |
1725 | symbolS * |
1726 | s_comm_internal (int param, | |
1727 | symbolS *(*comm_parse_extra) (int, symbolS *, addressT)) | |
252b5132 | 1728 | { |
e13bab5a | 1729 | char *name; |
e13bab5a AM |
1730 | offsetT temp, size; |
1731 | symbolS *symbolP = NULL; | |
252b5132 | 1732 | char *stop = NULL; |
fb25138b | 1733 | char stopc = 0; |
e13bab5a | 1734 | expressionS exp; |
252b5132 RH |
1735 | |
1736 | if (flag_mri) | |
1737 | stop = mri_comment_field (&stopc); | |
1738 | ||
7bfd842d NC |
1739 | if ((name = read_symbol_name ()) == NULL) |
1740 | goto out; | |
f0e652b4 | 1741 | |
e13bab5a AM |
1742 | /* Accept an optional comma after the name. The comma used to be |
1743 | required, but Irix 5 cc does not generate it for .lcomm. */ | |
1744 | if (*input_line_pointer == ',') | |
1745 | input_line_pointer++; | |
1746 | ||
e13bab5a AM |
1747 | temp = get_absolute_expr (&exp); |
1748 | size = temp; | |
65879393 | 1749 | size &= ((addressT) 2 << (stdoutput->arch_info->bits_per_address - 1)) - 1; |
e13bab5a | 1750 | if (exp.X_op == O_absent) |
252b5132 | 1751 | { |
e13bab5a | 1752 | as_bad (_("missing size expression")); |
252b5132 | 1753 | ignore_rest_of_line (); |
e13bab5a | 1754 | goto out; |
252b5132 | 1755 | } |
e13bab5a | 1756 | else if (temp != size || !exp.X_unsigned) |
252b5132 | 1757 | { |
e13bab5a | 1758 | as_warn (_("size (%ld) out of range, ignored"), (long) temp); |
252b5132 | 1759 | ignore_rest_of_line (); |
e13bab5a | 1760 | goto out; |
252b5132 | 1761 | } |
f0e652b4 | 1762 | |
252b5132 | 1763 | symbolP = symbol_find_or_make (name); |
92757bc9 JB |
1764 | if ((S_IS_DEFINED (symbolP) || symbol_equated_p (symbolP)) |
1765 | && !S_IS_COMMON (symbolP)) | |
252b5132 | 1766 | { |
92757bc9 JB |
1767 | if (!S_IS_VOLATILE (symbolP)) |
1768 | { | |
1769 | symbolP = NULL; | |
1770 | as_bad (_("symbol `%s' is already defined"), name); | |
92757bc9 JB |
1771 | ignore_rest_of_line (); |
1772 | goto out; | |
1773 | } | |
89cdfe57 | 1774 | symbolP = symbol_clone (symbolP, 1); |
92757bc9 JB |
1775 | S_SET_SEGMENT (symbolP, undefined_section); |
1776 | S_SET_VALUE (symbolP, 0); | |
1777 | symbol_set_frag (symbolP, &zero_address_frag); | |
1778 | S_CLEAR_VOLATILE (symbolP); | |
252b5132 | 1779 | } |
f0e652b4 | 1780 | |
e13bab5a AM |
1781 | size = S_GET_VALUE (symbolP); |
1782 | if (size == 0) | |
1783 | size = temp; | |
1784 | else if (size != temp) | |
1785 | as_warn (_("size of \"%s\" is already %ld; not changing to %ld"), | |
1786 | name, (long) size, (long) temp); | |
1787 | ||
e13bab5a AM |
1788 | if (comm_parse_extra != NULL) |
1789 | symbolP = (*comm_parse_extra) (param, symbolP, size); | |
252b5132 RH |
1790 | else |
1791 | { | |
e13bab5a | 1792 | S_SET_VALUE (symbolP, (valueT) size); |
252b5132 | 1793 | S_SET_EXTERNAL (symbolP); |
9eda1ce9 | 1794 | S_SET_SEGMENT (symbolP, bfd_com_section_ptr); |
e13bab5a | 1795 | } |
252b5132 RH |
1796 | |
1797 | demand_empty_rest_of_line (); | |
e13bab5a | 1798 | out: |
252b5132 RH |
1799 | if (flag_mri) |
1800 | mri_comment_end (stop, stopc); | |
7bfd842d NC |
1801 | if (name != NULL) |
1802 | free (name); | |
e13bab5a AM |
1803 | return symbolP; |
1804 | } | |
1805 | ||
1806 | void | |
1807 | s_comm (int ignore) | |
1808 | { | |
1809 | s_comm_internal (ignore, NULL); | |
1810 | } | |
252b5132 RH |
1811 | |
1812 | /* The MRI COMMON pseudo-op. We handle this by creating a common | |
1813 | symbol with the appropriate name. We make s_space do the right | |
1814 | thing by increasing the size. */ | |
1815 | ||
1816 | void | |
39e6acbd | 1817 | s_mri_common (int small ATTRIBUTE_UNUSED) |
252b5132 RH |
1818 | { |
1819 | char *name; | |
1820 | char c; | |
1821 | char *alc = NULL; | |
1822 | symbolS *sym; | |
1823 | offsetT align; | |
1824 | char *stop = NULL; | |
fb25138b | 1825 | char stopc = 0; |
252b5132 | 1826 | |
041ff4dd | 1827 | if (!flag_mri) |
252b5132 RH |
1828 | { |
1829 | s_comm (0); | |
1830 | return; | |
1831 | } | |
1832 | ||
1833 | stop = mri_comment_field (&stopc); | |
1834 | ||
1835 | SKIP_WHITESPACE (); | |
1836 | ||
1837 | name = input_line_pointer; | |
3882b010 | 1838 | if (!ISDIGIT (*name)) |
d02603dc | 1839 | c = get_symbol_name (& name); |
252b5132 RH |
1840 | else |
1841 | { | |
1842 | do | |
1843 | { | |
1844 | ++input_line_pointer; | |
1845 | } | |
3882b010 | 1846 | while (ISDIGIT (*input_line_pointer)); |
f0e652b4 | 1847 | |
252b5132 RH |
1848 | c = *input_line_pointer; |
1849 | *input_line_pointer = '\0'; | |
1850 | ||
1851 | if (line_label != NULL) | |
1852 | { | |
1853 | alc = (char *) xmalloc (strlen (S_GET_NAME (line_label)) | |
1854 | + (input_line_pointer - name) | |
1855 | + 1); | |
1856 | sprintf (alc, "%s%s", name, S_GET_NAME (line_label)); | |
1857 | name = alc; | |
1858 | } | |
1859 | } | |
1860 | ||
1861 | sym = symbol_find_or_make (name); | |
d02603dc | 1862 | c = restore_line_pointer (c); |
252b5132 RH |
1863 | if (alc != NULL) |
1864 | free (alc); | |
1865 | ||
1866 | if (*input_line_pointer != ',') | |
1867 | align = 0; | |
1868 | else | |
1869 | { | |
1870 | ++input_line_pointer; | |
1871 | align = get_absolute_expression (); | |
1872 | } | |
1873 | ||
041ff4dd | 1874 | if (S_IS_DEFINED (sym) && !S_IS_COMMON (sym)) |
252b5132 | 1875 | { |
0e389e77 | 1876 | as_bad (_("symbol `%s' is already defined"), S_GET_NAME (sym)); |
252b5132 RH |
1877 | ignore_rest_of_line (); |
1878 | mri_comment_end (stop, stopc); | |
1879 | return; | |
1880 | } | |
1881 | ||
1882 | S_SET_EXTERNAL (sym); | |
9eda1ce9 | 1883 | S_SET_SEGMENT (sym, bfd_com_section_ptr); |
252b5132 RH |
1884 | mri_common_symbol = sym; |
1885 | ||
1886 | #ifdef S_SET_ALIGN | |
1887 | if (align != 0) | |
1888 | S_SET_ALIGN (sym, align); | |
87975d2a AM |
1889 | #else |
1890 | (void) align; | |
252b5132 RH |
1891 | #endif |
1892 | ||
1893 | if (line_label != NULL) | |
1894 | { | |
2b47531b ILT |
1895 | expressionS exp; |
1896 | exp.X_op = O_symbol; | |
1897 | exp.X_add_symbol = sym; | |
1898 | exp.X_add_number = 0; | |
1899 | symbol_set_value_expression (line_label, &exp); | |
1900 | symbol_set_frag (line_label, &zero_address_frag); | |
252b5132 RH |
1901 | S_SET_SEGMENT (line_label, expr_section); |
1902 | } | |
1903 | ||
1904 | /* FIXME: We just ignore the small argument, which distinguishes | |
1905 | COMMON and COMMON.S. I don't know what we can do about it. */ | |
1906 | ||
1907 | /* Ignore the type and hptype. */ | |
1908 | if (*input_line_pointer == ',') | |
1909 | input_line_pointer += 2; | |
1910 | if (*input_line_pointer == ',') | |
1911 | input_line_pointer += 2; | |
1912 | ||
1913 | demand_empty_rest_of_line (); | |
1914 | ||
1915 | mri_comment_end (stop, stopc); | |
1916 | } | |
1917 | ||
1918 | void | |
39e6acbd | 1919 | s_data (int ignore ATTRIBUTE_UNUSED) |
252b5132 RH |
1920 | { |
1921 | segT section; | |
3d540e93 | 1922 | int temp; |
252b5132 RH |
1923 | |
1924 | temp = get_absolute_expression (); | |
1925 | if (flag_readonly_data_in_text) | |
1926 | { | |
1927 | section = text_section; | |
1928 | temp += 1000; | |
1929 | } | |
1930 | else | |
1931 | section = data_section; | |
1932 | ||
1933 | subseg_set (section, (subsegT) temp); | |
1934 | ||
252b5132 RH |
1935 | demand_empty_rest_of_line (); |
1936 | } | |
1937 | ||
1938 | /* Handle the .appfile pseudo-op. This is automatically generated by | |
1939 | do_scrub_chars when a preprocessor # line comment is seen with a | |
1940 | file name. This default definition may be overridden by the object | |
1941 | or CPU specific pseudo-ops. This function is also the default | |
1942 | definition for .file; the APPFILE argument is 1 for .appfile, 0 for | |
1943 | .file. */ | |
1944 | ||
ecb4347a | 1945 | void |
f17c130b | 1946 | s_app_file_string (char *file, int appfile ATTRIBUTE_UNUSED) |
ecb4347a DJ |
1947 | { |
1948 | #ifdef LISTING | |
1949 | if (listing) | |
1950 | listing_source_file (file); | |
1951 | #endif | |
1952 | register_dependency (file); | |
1953 | #ifdef obj_app_file | |
c04f5787 | 1954 | obj_app_file (file, appfile); |
ecb4347a DJ |
1955 | #endif |
1956 | } | |
1957 | ||
041ff4dd | 1958 | void |
39e6acbd | 1959 | s_app_file (int appfile) |
252b5132 | 1960 | { |
3d540e93 | 1961 | char *s; |
252b5132 RH |
1962 | int length; |
1963 | ||
041ff4dd | 1964 | /* Some assemblers tolerate immediately following '"'. */ |
252b5132 RH |
1965 | if ((s = demand_copy_string (&length)) != 0) |
1966 | { | |
252b5132 | 1967 | int may_omit |
93e914b2 | 1968 | = (!new_logical_line_flags (s, -1, 1) && appfile); |
252b5132 RH |
1969 | |
1970 | /* In MRI mode, the preprocessor may have inserted an extraneous | |
d6415f6c | 1971 | backquote. */ |
252b5132 RH |
1972 | if (flag_m68k_mri |
1973 | && *input_line_pointer == '\'' | |
1974 | && is_end_of_line[(unsigned char) input_line_pointer[1]]) | |
1975 | ++input_line_pointer; | |
1976 | ||
1977 | demand_empty_rest_of_line (); | |
041ff4dd | 1978 | if (!may_omit) |
c04f5787 | 1979 | s_app_file_string (s, appfile); |
252b5132 RH |
1980 | } |
1981 | } | |
1982 | ||
e9fc6c21 AO |
1983 | static int |
1984 | get_linefile_number (int *flag) | |
1985 | { | |
1986 | SKIP_WHITESPACE (); | |
1987 | ||
1988 | if (*input_line_pointer < '0' || *input_line_pointer > '9') | |
1989 | return 0; | |
1990 | ||
1991 | *flag = get_absolute_expression (); | |
1992 | ||
1993 | return 1; | |
1994 | } | |
1995 | ||
252b5132 RH |
1996 | /* Handle the .appline pseudo-op. This is automatically generated by |
1997 | do_scrub_chars when a preprocessor # line comment is seen. This | |
1998 | default definition may be overridden by the object or CPU specific | |
1999 | pseudo-ops. */ | |
2000 | ||
2001 | void | |
93e914b2 | 2002 | s_app_line (int appline) |
252b5132 | 2003 | { |
e9fc6c21 | 2004 | char *file = NULL; |
252b5132 RH |
2005 | int l; |
2006 | ||
2007 | /* The given number is that of the next line. */ | |
e9fc6c21 AO |
2008 | if (appline) |
2009 | l = get_absolute_expression (); | |
2010 | else if (!get_linefile_number (&l)) | |
2011 | { | |
2012 | ignore_rest_of_line (); | |
2013 | return; | |
2014 | } | |
2015 | ||
2016 | l--; | |
47837f8e NC |
2017 | |
2018 | if (l < -1) | |
252b5132 | 2019 | /* Some of the back ends can't deal with non-positive line numbers. |
47837f8e NC |
2020 | Besides, it's silly. GCC however will generate a line number of |
2021 | zero when it is pre-processing builtins for assembler-with-cpp files: | |
2022 | ||
fa94de6b | 2023 | # 0 "<built-in>" |
47837f8e NC |
2024 | |
2025 | We do not want to barf on this, especially since such files are used | |
2026 | in the GCC and GDB testsuites. So we check for negative line numbers | |
2027 | rather than non-positive line numbers. */ | |
0e389e77 | 2028 | as_warn (_("line numbers must be positive; line number %d rejected"), |
041ff4dd | 2029 | l + 1); |
252b5132 RH |
2030 | else |
2031 | { | |
93e914b2 | 2032 | int flags = 0; |
93e914b2 AO |
2033 | int length = 0; |
2034 | ||
2035 | if (!appline) | |
2036 | { | |
e9fc6c21 AO |
2037 | SKIP_WHITESPACE (); |
2038 | ||
2039 | if (*input_line_pointer == '"') | |
2040 | file = demand_copy_string (&length); | |
93e914b2 AO |
2041 | |
2042 | if (file) | |
2043 | { | |
2044 | int this_flag; | |
2045 | ||
e9fc6c21 | 2046 | while (get_linefile_number (&this_flag)) |
93e914b2 AO |
2047 | switch (this_flag) |
2048 | { | |
2049 | /* From GCC's cpp documentation: | |
2050 | 1: start of a new file. | |
2051 | 2: returning to a file after having included | |
fa94de6b | 2052 | another file. |
93e914b2 AO |
2053 | 3: following text comes from a system header file. |
2054 | 4: following text should be treated as extern "C". | |
2055 | ||
2056 | 4 is nonsensical for the assembler; 3, we don't | |
2057 | care about, so we ignore it just in case a | |
2058 | system header file is included while | |
2059 | preprocessing assembly. So 1 and 2 are all we | |
2060 | care about, and they are mutually incompatible. | |
2061 | new_logical_line_flags() demands this. */ | |
2062 | case 1: | |
2063 | case 2: | |
2064 | if (flags && flags != (1 << this_flag)) | |
2065 | as_warn (_("incompatible flag %i in line directive"), | |
2066 | this_flag); | |
2067 | else | |
2068 | flags |= 1 << this_flag; | |
2069 | break; | |
2070 | ||
2071 | case 3: | |
2072 | case 4: | |
2073 | /* We ignore these. */ | |
2074 | break; | |
2075 | ||
2076 | default: | |
2077 | as_warn (_("unsupported flag %i in line directive"), | |
2078 | this_flag); | |
2079 | break; | |
2080 | } | |
e9fc6c21 AO |
2081 | |
2082 | if (!is_end_of_line[(unsigned char)*input_line_pointer]) | |
2083 | file = 0; | |
93e914b2 AO |
2084 | } |
2085 | } | |
2086 | ||
e9fc6c21 AO |
2087 | if (appline || file) |
2088 | { | |
2089 | new_logical_line_flags (file, l, flags); | |
252b5132 | 2090 | #ifdef LISTING |
e9fc6c21 AO |
2091 | if (listing) |
2092 | listing_source_line (l); | |
252b5132 | 2093 | #endif |
e9fc6c21 | 2094 | } |
252b5132 | 2095 | } |
e9fc6c21 AO |
2096 | if (appline || file) |
2097 | demand_empty_rest_of_line (); | |
2098 | else | |
2099 | ignore_rest_of_line (); | |
252b5132 RH |
2100 | } |
2101 | ||
2102 | /* Handle the .end pseudo-op. Actually, the real work is done in | |
2103 | read_a_source_file. */ | |
2104 | ||
2105 | void | |
39e6acbd | 2106 | s_end (int ignore ATTRIBUTE_UNUSED) |
252b5132 RH |
2107 | { |
2108 | if (flag_mri) | |
2109 | { | |
2110 | /* The MRI assembler permits the start symbol to follow .end, | |
d6415f6c | 2111 | but we don't support that. */ |
252b5132 | 2112 | SKIP_WHITESPACE (); |
041ff4dd | 2113 | if (!is_end_of_line[(unsigned char) *input_line_pointer] |
252b5132 RH |
2114 | && *input_line_pointer != '*' |
2115 | && *input_line_pointer != '!') | |
2116 | as_warn (_("start address not supported")); | |
2117 | } | |
2118 | } | |
2119 | ||
2120 | /* Handle the .err pseudo-op. */ | |
2121 | ||
2122 | void | |
39e6acbd | 2123 | s_err (int ignore ATTRIBUTE_UNUSED) |
252b5132 RH |
2124 | { |
2125 | as_bad (_(".err encountered")); | |
2126 | demand_empty_rest_of_line (); | |
d190d046 HPN |
2127 | } |
2128 | ||
2129 | /* Handle the .error and .warning pseudo-ops. */ | |
2130 | ||
2131 | void | |
2132 | s_errwarn (int err) | |
2133 | { | |
2134 | int len; | |
2135 | /* The purpose for the conditional assignment is not to | |
2136 | internationalize the directive itself, but that we need a | |
2137 | self-contained message, one that can be passed like the | |
2138 | demand_copy_C_string return value, and with no assumption on the | |
2139 | location of the name of the directive within the message. */ | |
2140 | char *msg | |
2141 | = (err ? _(".error directive invoked in source file") | |
2142 | : _(".warning directive invoked in source file")); | |
2143 | ||
2144 | if (!is_it_end_of_statement ()) | |
2145 | { | |
2146 | if (*input_line_pointer != '\"') | |
2147 | { | |
2148 | as_bad (_("%s argument must be a string"), | |
2149 | err ? ".error" : ".warning"); | |
40a4d956 | 2150 | ignore_rest_of_line (); |
d190d046 HPN |
2151 | return; |
2152 | } | |
2153 | ||
2154 | msg = demand_copy_C_string (&len); | |
2155 | if (msg == NULL) | |
2156 | return; | |
2157 | } | |
2158 | ||
2159 | if (err) | |
2160 | as_bad ("%s", msg); | |
2161 | else | |
2162 | as_warn ("%s", msg); | |
2163 | demand_empty_rest_of_line (); | |
252b5132 RH |
2164 | } |
2165 | ||
2166 | /* Handle the MRI fail pseudo-op. */ | |
2167 | ||
2168 | void | |
39e6acbd | 2169 | s_fail (int ignore ATTRIBUTE_UNUSED) |
252b5132 RH |
2170 | { |
2171 | offsetT temp; | |
2172 | char *stop = NULL; | |
fb25138b | 2173 | char stopc = 0; |
252b5132 RH |
2174 | |
2175 | if (flag_mri) | |
2176 | stop = mri_comment_field (&stopc); | |
2177 | ||
2178 | temp = get_absolute_expression (); | |
2179 | if (temp >= 500) | |
2180 | as_warn (_(".fail %ld encountered"), (long) temp); | |
2181 | else | |
2182 | as_bad (_(".fail %ld encountered"), (long) temp); | |
2183 | ||
2184 | demand_empty_rest_of_line (); | |
2185 | ||
2186 | if (flag_mri) | |
2187 | mri_comment_end (stop, stopc); | |
2188 | } | |
2189 | ||
041ff4dd | 2190 | void |
39e6acbd | 2191 | s_fill (int ignore ATTRIBUTE_UNUSED) |
252b5132 RH |
2192 | { |
2193 | expressionS rep_exp; | |
2194 | long size = 1; | |
3d540e93 | 2195 | long fill = 0; |
252b5132 RH |
2196 | char *p; |
2197 | ||
2198 | #ifdef md_flush_pending_output | |
2199 | md_flush_pending_output (); | |
2200 | #endif | |
2201 | ||
cc3f603a JM |
2202 | #ifdef md_cons_align |
2203 | md_cons_align (1); | |
2204 | #endif | |
2205 | ||
252b5132 RH |
2206 | get_known_segmented_expression (&rep_exp); |
2207 | if (*input_line_pointer == ',') | |
2208 | { | |
2209 | input_line_pointer++; | |
2210 | size = get_absolute_expression (); | |
2211 | if (*input_line_pointer == ',') | |
2212 | { | |
2213 | input_line_pointer++; | |
2214 | fill = get_absolute_expression (); | |
2215 | } | |
2216 | } | |
2217 | ||
2218 | /* This is to be compatible with BSD 4.2 AS, not for any rational reason. */ | |
2219 | #define BSD_FILL_SIZE_CROCK_8 (8) | |
2220 | if (size > BSD_FILL_SIZE_CROCK_8) | |
2221 | { | |
0e389e77 | 2222 | as_warn (_(".fill size clamped to %d"), BSD_FILL_SIZE_CROCK_8); |
252b5132 RH |
2223 | size = BSD_FILL_SIZE_CROCK_8; |
2224 | } | |
2225 | if (size < 0) | |
2226 | { | |
0e389e77 | 2227 | as_warn (_("size negative; .fill ignored")); |
252b5132 RH |
2228 | size = 0; |
2229 | } | |
2230 | else if (rep_exp.X_op == O_constant && rep_exp.X_add_number <= 0) | |
2231 | { | |
2232 | if (rep_exp.X_add_number < 0) | |
0e389e77 | 2233 | as_warn (_("repeat < 0; .fill ignored")); |
252b5132 RH |
2234 | size = 0; |
2235 | } | |
2236 | ||
2237 | if (size && !need_pass_2) | |
2238 | { | |
ec9ab52c JB |
2239 | if (now_seg == absolute_section) |
2240 | { | |
2241 | if (rep_exp.X_op != O_constant) | |
2242 | as_bad (_("non-constant fill count for absolute section")); | |
2243 | else if (fill && rep_exp.X_add_number != 0) | |
2244 | as_bad (_("attempt to fill absolute section with non-zero value")); | |
2245 | abs_section_offset += rep_exp.X_add_number * size; | |
2246 | } | |
2247 | else if (fill | |
2248 | && (rep_exp.X_op != O_constant || rep_exp.X_add_number != 0) | |
2249 | && in_bss ()) | |
2250 | as_bad (_("attempt to fill section `%s' with non-zero value"), | |
2251 | segment_name (now_seg)); | |
2252 | ||
252b5132 RH |
2253 | if (rep_exp.X_op == O_constant) |
2254 | { | |
2255 | p = frag_var (rs_fill, (int) size, (int) size, | |
2256 | (relax_substateT) 0, (symbolS *) 0, | |
2257 | (offsetT) rep_exp.X_add_number, | |
2258 | (char *) 0); | |
2259 | } | |
2260 | else | |
2261 | { | |
2262 | /* We don't have a constant repeat count, so we can't use | |
2263 | rs_fill. We can get the same results out of rs_space, | |
2264 | but its argument is in bytes, so we must multiply the | |
2265 | repeat count by size. */ | |
2266 | ||
2267 | symbolS *rep_sym; | |
2268 | rep_sym = make_expr_symbol (&rep_exp); | |
2269 | if (size != 1) | |
2270 | { | |
2271 | expressionS size_exp; | |
2272 | size_exp.X_op = O_constant; | |
2273 | size_exp.X_add_number = size; | |
2274 | ||
2275 | rep_exp.X_op = O_multiply; | |
2276 | rep_exp.X_add_symbol = rep_sym; | |
2277 | rep_exp.X_op_symbol = make_expr_symbol (&size_exp); | |
2278 | rep_exp.X_add_number = 0; | |
2279 | rep_sym = make_expr_symbol (&rep_exp); | |
2280 | } | |
2281 | ||
2282 | p = frag_var (rs_space, (int) size, (int) size, | |
2283 | (relax_substateT) 0, rep_sym, (offsetT) 0, (char *) 0); | |
2284 | } | |
f0e652b4 | 2285 | |
252b5132 | 2286 | memset (p, 0, (unsigned int) size); |
f0e652b4 | 2287 | |
252b5132 | 2288 | /* The magic number BSD_FILL_SIZE_CROCK_4 is from BSD 4.2 VAX |
d6415f6c AM |
2289 | flavoured AS. The following bizarre behaviour is to be |
2290 | compatible with above. I guess they tried to take up to 8 | |
2291 | bytes from a 4-byte expression and they forgot to sign | |
2292 | extend. */ | |
252b5132 RH |
2293 | #define BSD_FILL_SIZE_CROCK_4 (4) |
2294 | md_number_to_chars (p, (valueT) fill, | |
2295 | (size > BSD_FILL_SIZE_CROCK_4 | |
2296 | ? BSD_FILL_SIZE_CROCK_4 | |
2297 | : (int) size)); | |
2298 | /* Note: .fill (),0 emits no frag (since we are asked to .fill 0 bytes) | |
d6415f6c AM |
2299 | but emits no error message because it seems a legal thing to do. |
2300 | It is a degenerate case of .fill but could be emitted by a | |
041ff4dd | 2301 | compiler. */ |
252b5132 RH |
2302 | } |
2303 | demand_empty_rest_of_line (); | |
2304 | } | |
2305 | ||
041ff4dd | 2306 | void |
39e6acbd | 2307 | s_globl (int ignore ATTRIBUTE_UNUSED) |
252b5132 RH |
2308 | { |
2309 | char *name; | |
2310 | int c; | |
2311 | symbolS *symbolP; | |
2312 | char *stop = NULL; | |
fb25138b | 2313 | char stopc = 0; |
252b5132 RH |
2314 | |
2315 | if (flag_mri) | |
2316 | stop = mri_comment_field (&stopc); | |
2317 | ||
2318 | do | |
2319 | { | |
7bfd842d NC |
2320 | if ((name = read_symbol_name ()) == NULL) |
2321 | return; | |
2322 | ||
252b5132 | 2323 | symbolP = symbol_find_or_make (name); |
58b5739a RH |
2324 | S_SET_EXTERNAL (symbolP); |
2325 | ||
252b5132 | 2326 | SKIP_WHITESPACE (); |
58b5739a | 2327 | c = *input_line_pointer; |
252b5132 RH |
2328 | if (c == ',') |
2329 | { | |
2330 | input_line_pointer++; | |
2331 | SKIP_WHITESPACE (); | |
0e389e77 | 2332 | if (is_end_of_line[(unsigned char) *input_line_pointer]) |
252b5132 RH |
2333 | c = '\n'; |
2334 | } | |
7bfd842d NC |
2335 | |
2336 | free (name); | |
252b5132 RH |
2337 | } |
2338 | while (c == ','); | |
2339 | ||
2340 | demand_empty_rest_of_line (); | |
2341 | ||
2342 | if (flag_mri) | |
2343 | mri_comment_end (stop, stopc); | |
2344 | } | |
2345 | ||
2346 | /* Handle the MRI IRP and IRPC pseudo-ops. */ | |
2347 | ||
2348 | void | |
39e6acbd | 2349 | s_irp (int irpc) |
252b5132 | 2350 | { |
3b4dbbbf TS |
2351 | char * eol; |
2352 | const char * file; | |
252b5132 RH |
2353 | unsigned int line; |
2354 | sb s; | |
2355 | const char *err; | |
2356 | sb out; | |
2357 | ||
3b4dbbbf | 2358 | file = as_where (&line); |
252b5132 | 2359 | |
40a4d956 | 2360 | eol = find_end_of_line (input_line_pointer, 0); |
d2ae702c | 2361 | sb_build (&s, eol - input_line_pointer); |
40a4d956 JB |
2362 | sb_add_buffer (&s, input_line_pointer, eol - input_line_pointer); |
2363 | input_line_pointer = eol; | |
252b5132 RH |
2364 | |
2365 | sb_new (&out); | |
2366 | ||
7592cfd7 | 2367 | err = expand_irp (irpc, 0, &s, &out, get_non_macro_line_sb); |
252b5132 RH |
2368 | if (err != NULL) |
2369 | as_bad_where (file, line, "%s", err); | |
2370 | ||
2371 | sb_kill (&s); | |
2372 | ||
9f10757c | 2373 | input_scrub_include_sb (&out, input_line_pointer, 1); |
252b5132 RH |
2374 | sb_kill (&out); |
2375 | buffer_limit = input_scrub_next_buffer (&input_line_pointer); | |
2376 | } | |
2377 | ||
2378 | /* Handle the .linkonce pseudo-op. This tells the assembler to mark | |
2379 | the section to only be linked once. However, this is not supported | |
2380 | by most object file formats. This takes an optional argument, | |
2381 | which is what to do about duplicates. */ | |
2382 | ||
2383 | void | |
39e6acbd | 2384 | s_linkonce (int ignore ATTRIBUTE_UNUSED) |
252b5132 RH |
2385 | { |
2386 | enum linkonce_type type; | |
2387 | ||
2388 | SKIP_WHITESPACE (); | |
2389 | ||
2390 | type = LINKONCE_DISCARD; | |
2391 | ||
041ff4dd | 2392 | if (!is_end_of_line[(unsigned char) *input_line_pointer]) |
252b5132 RH |
2393 | { |
2394 | char *s; | |
2395 | char c; | |
2396 | ||
d02603dc | 2397 | c = get_symbol_name (& s); |
252b5132 RH |
2398 | if (strcasecmp (s, "discard") == 0) |
2399 | type = LINKONCE_DISCARD; | |
2400 | else if (strcasecmp (s, "one_only") == 0) | |
2401 | type = LINKONCE_ONE_ONLY; | |
2402 | else if (strcasecmp (s, "same_size") == 0) | |
2403 | type = LINKONCE_SAME_SIZE; | |
2404 | else if (strcasecmp (s, "same_contents") == 0) | |
2405 | type = LINKONCE_SAME_CONTENTS; | |
2406 | else | |
2407 | as_warn (_("unrecognized .linkonce type `%s'"), s); | |
2408 | ||
d02603dc | 2409 | (void) restore_line_pointer (c); |
252b5132 RH |
2410 | } |
2411 | ||
2412 | #ifdef obj_handle_link_once | |
2413 | obj_handle_link_once (type); | |
2414 | #else /* ! defined (obj_handle_link_once) */ | |
252b5132 RH |
2415 | { |
2416 | flagword flags; | |
2417 | ||
2418 | if ((bfd_applicable_section_flags (stdoutput) & SEC_LINK_ONCE) == 0) | |
2419 | as_warn (_(".linkonce is not supported for this object file format")); | |
2420 | ||
2421 | flags = bfd_get_section_flags (stdoutput, now_seg); | |
2422 | flags |= SEC_LINK_ONCE; | |
2423 | switch (type) | |
2424 | { | |
2425 | default: | |
2426 | abort (); | |
2427 | case LINKONCE_DISCARD: | |
2428 | flags |= SEC_LINK_DUPLICATES_DISCARD; | |
2429 | break; | |
2430 | case LINKONCE_ONE_ONLY: | |
2431 | flags |= SEC_LINK_DUPLICATES_ONE_ONLY; | |
2432 | break; | |
2433 | case LINKONCE_SAME_SIZE: | |
2434 | flags |= SEC_LINK_DUPLICATES_SAME_SIZE; | |
2435 | break; | |
2436 | case LINKONCE_SAME_CONTENTS: | |
2437 | flags |= SEC_LINK_DUPLICATES_SAME_CONTENTS; | |
2438 | break; | |
2439 | } | |
041ff4dd | 2440 | if (!bfd_set_section_flags (stdoutput, now_seg, flags)) |
252b5132 RH |
2441 | as_bad (_("bfd_set_section_flags: %s"), |
2442 | bfd_errmsg (bfd_get_error ())); | |
2443 | } | |
252b5132 RH |
2444 | #endif /* ! defined (obj_handle_link_once) */ |
2445 | ||
2446 | demand_empty_rest_of_line (); | |
2447 | } | |
2448 | ||
e13bab5a | 2449 | void |
9136aa49 | 2450 | bss_alloc (symbolS *symbolP, addressT size, unsigned int align) |
252b5132 | 2451 | { |
e13bab5a | 2452 | char *pfrag; |
252b5132 RH |
2453 | segT current_seg = now_seg; |
2454 | subsegT current_subseg = now_subseg; | |
252b5132 RH |
2455 | segT bss_seg = bss_section; |
2456 | ||
252b5132 RH |
2457 | #if defined (TC_MIPS) || defined (TC_ALPHA) |
2458 | if (OUTPUT_FLAVOR == bfd_target_ecoff_flavour | |
2459 | || OUTPUT_FLAVOR == bfd_target_elf_flavour) | |
2460 | { | |
2461 | /* For MIPS and Alpha ECOFF or ELF, small objects are put in .sbss. */ | |
e13bab5a | 2462 | if (size <= bfd_get_gp_size (stdoutput)) |
252b5132 RH |
2463 | { |
2464 | bss_seg = subseg_new (".sbss", 1); | |
2465 | seg_info (bss_seg)->bss = 1; | |
041ff4dd | 2466 | if (!bfd_set_section_flags (stdoutput, bss_seg, SEC_ALLOC)) |
252b5132 RH |
2467 | as_warn (_("error setting flags for \".sbss\": %s"), |
2468 | bfd_errmsg (bfd_get_error ())); | |
252b5132 RH |
2469 | } |
2470 | } | |
2471 | #endif | |
e13bab5a | 2472 | subseg_set (bss_seg, 1); |
8684e216 | 2473 | |
9136aa49 | 2474 | if (align > OCTETS_PER_BYTE_POWER) |
041ff4dd | 2475 | { |
e13bab5a AM |
2476 | record_alignment (bss_seg, align); |
2477 | frag_align (align, 0, 0); | |
041ff4dd | 2478 | } |
252b5132 | 2479 | |
e13bab5a AM |
2480 | /* Detach from old frag. */ |
2481 | if (S_GET_SEGMENT (symbolP) == bss_seg) | |
2482 | symbol_get_frag (symbolP)->fr_symbol = NULL; | |
f0e652b4 | 2483 | |
e13bab5a AM |
2484 | symbol_set_frag (symbolP, frag_now); |
2485 | pfrag = frag_var (rs_org, 1, 1, 0, symbolP, size, NULL); | |
2486 | *pfrag = 0; | |
f0e652b4 | 2487 | |
e13bab5a AM |
2488 | #ifdef S_SET_SIZE |
2489 | S_SET_SIZE (symbolP, size); | |
2490 | #endif | |
2491 | S_SET_SEGMENT (symbolP, bss_seg); | |
f0e652b4 | 2492 | |
e13bab5a AM |
2493 | #ifdef OBJ_COFF |
2494 | /* The symbol may already have been created with a preceding | |
2495 | ".globl" directive -- be careful not to step on storage class | |
2496 | in that case. Otherwise, set it to static. */ | |
2497 | if (S_GET_STORAGE_CLASS (symbolP) != C_EXT) | |
2498 | S_SET_STORAGE_CLASS (symbolP, C_STAT); | |
2499 | #endif /* OBJ_COFF */ | |
f0e652b4 | 2500 | |
e13bab5a AM |
2501 | subseg_set (current_seg, current_subseg); |
2502 | } | |
f0e652b4 | 2503 | |
e13bab5a AM |
2504 | offsetT |
2505 | parse_align (int align_bytes) | |
2506 | { | |
2507 | expressionS exp; | |
2508 | addressT align; | |
252b5132 | 2509 | |
e13bab5a AM |
2510 | SKIP_WHITESPACE (); |
2511 | if (*input_line_pointer != ',') | |
2512 | { | |
2513 | no_align: | |
2514 | as_bad (_("expected alignment after size")); | |
2515 | ignore_rest_of_line (); | |
2516 | return -1; | |
2517 | } | |
f0e652b4 | 2518 | |
e13bab5a AM |
2519 | input_line_pointer++; |
2520 | SKIP_WHITESPACE (); | |
f0e652b4 | 2521 | |
e13bab5a AM |
2522 | align = get_absolute_expr (&exp); |
2523 | if (exp.X_op == O_absent) | |
2524 | goto no_align; | |
2525 | ||
2526 | if (!exp.X_unsigned) | |
2527 | { | |
2528 | as_warn (_("alignment negative; 0 assumed")); | |
2529 | align = 0; | |
041ff4dd | 2530 | } |
e13bab5a AM |
2531 | |
2532 | if (align_bytes && align != 0) | |
252b5132 | 2533 | { |
e13bab5a AM |
2534 | /* convert to a power of 2 alignment */ |
2535 | unsigned int alignp2 = 0; | |
2536 | while ((align & 1) == 0) | |
2537 | align >>= 1, ++alignp2; | |
2538 | if (align != 1) | |
252b5132 | 2539 | { |
e13bab5a AM |
2540 | as_bad (_("alignment not a power of 2")); |
2541 | ignore_rest_of_line (); | |
2542 | return -1; | |
252b5132 | 2543 | } |
e13bab5a | 2544 | align = alignp2; |
252b5132 | 2545 | } |
e13bab5a AM |
2546 | return align; |
2547 | } | |
252b5132 | 2548 | |
e13bab5a AM |
2549 | /* Called from s_comm_internal after symbol name and size have been |
2550 | parsed. NEEDS_ALIGN is 0 if it was an ".lcomm" (2 args only), | |
2551 | 1 if this was a ".bss" directive which has a 3rd argument | |
2552 | (alignment as a power of 2), or 2 if this was a ".bss" directive | |
2553 | with alignment in bytes. */ | |
252b5132 | 2554 | |
13c56984 | 2555 | symbolS * |
e13bab5a AM |
2556 | s_lcomm_internal (int needs_align, symbolS *symbolP, addressT size) |
2557 | { | |
2558 | addressT align = 0; | |
252b5132 | 2559 | |
e13bab5a AM |
2560 | if (needs_align) |
2561 | { | |
2562 | align = parse_align (needs_align - 1); | |
2563 | if (align == (addressT) -1) | |
2564 | return NULL; | |
252b5132 RH |
2565 | } |
2566 | else | |
e13bab5a AM |
2567 | /* Assume some objects may require alignment on some systems. */ |
2568 | TC_IMPLICIT_LCOMM_ALIGNMENT (size, align); | |
252b5132 | 2569 | |
e13bab5a AM |
2570 | bss_alloc (symbolP, size, align); |
2571 | return symbolP; | |
041ff4dd | 2572 | } |
252b5132 RH |
2573 | |
2574 | void | |
39e6acbd | 2575 | s_lcomm (int needs_align) |
252b5132 | 2576 | { |
e13bab5a | 2577 | s_comm_internal (needs_align, s_lcomm_internal); |
252b5132 RH |
2578 | } |
2579 | ||
041ff4dd | 2580 | void |
39e6acbd | 2581 | s_lcomm_bytes (int needs_align) |
252b5132 | 2582 | { |
e13bab5a | 2583 | s_comm_internal (needs_align * 2, s_lcomm_internal); |
252b5132 RH |
2584 | } |
2585 | ||
041ff4dd | 2586 | void |
39e6acbd | 2587 | s_lsym (int ignore ATTRIBUTE_UNUSED) |
252b5132 | 2588 | { |
3d540e93 | 2589 | char *name; |
252b5132 | 2590 | expressionS exp; |
3d540e93 | 2591 | symbolS *symbolP; |
252b5132 | 2592 | |
041ff4dd | 2593 | /* We permit ANY defined expression: BSD4.2 demands constants. */ |
7bfd842d NC |
2594 | if ((name = read_symbol_name ()) == NULL) |
2595 | return; | |
f0e652b4 | 2596 | |
252b5132 RH |
2597 | if (*input_line_pointer != ',') |
2598 | { | |
0e389e77 | 2599 | as_bad (_("expected comma after \"%s\""), name); |
7bfd842d | 2600 | goto err_out; |
252b5132 | 2601 | } |
f0e652b4 | 2602 | |
252b5132 | 2603 | input_line_pointer++; |
9497f5ac | 2604 | expression_and_evaluate (&exp); |
f0e652b4 | 2605 | |
252b5132 RH |
2606 | if (exp.X_op != O_constant |
2607 | && exp.X_op != O_register) | |
2608 | { | |
2609 | as_bad (_("bad expression")); | |
7bfd842d | 2610 | goto err_out; |
252b5132 | 2611 | } |
f0e652b4 | 2612 | |
252b5132 RH |
2613 | symbolP = symbol_find_or_make (name); |
2614 | ||
86ebace2 | 2615 | if (S_GET_SEGMENT (symbolP) == undefined_section) |
252b5132 RH |
2616 | { |
2617 | /* The name might be an undefined .global symbol; be sure to | |
041ff4dd | 2618 | keep the "external" bit. */ |
252b5132 RH |
2619 | S_SET_SEGMENT (symbolP, |
2620 | (exp.X_op == O_constant | |
2621 | ? absolute_section | |
2622 | : reg_section)); | |
2623 | S_SET_VALUE (symbolP, (valueT) exp.X_add_number); | |
2624 | } | |
2625 | else | |
2626 | { | |
0e389e77 | 2627 | as_bad (_("symbol `%s' is already defined"), name); |
252b5132 | 2628 | } |
f0e652b4 | 2629 | |
252b5132 | 2630 | demand_empty_rest_of_line (); |
7bfd842d NC |
2631 | free (name); |
2632 | return; | |
2633 | ||
2634 | err_out: | |
2635 | ignore_rest_of_line (); | |
2636 | free (name); | |
2637 | return; | |
041ff4dd | 2638 | } |
252b5132 | 2639 | |
0822d075 NC |
2640 | /* Read a line into an sb. Returns the character that ended the line |
2641 | or zero if there are no more lines. */ | |
252b5132 RH |
2642 | |
2643 | static int | |
7592cfd7 | 2644 | get_line_sb (sb *line, int in_macro) |
252b5132 | 2645 | { |
40a4d956 | 2646 | char *eol; |
252b5132 RH |
2647 | |
2648 | if (input_line_pointer[-1] == '\n') | |
2649 | bump_line_counters (); | |
2650 | ||
2651 | if (input_line_pointer >= buffer_limit) | |
2652 | { | |
2653 | buffer_limit = input_scrub_next_buffer (&input_line_pointer); | |
2654 | if (buffer_limit == 0) | |
2655 | return 0; | |
2656 | } | |
2657 | ||
7592cfd7 | 2658 | eol = _find_end_of_line (input_line_pointer, flag_m68k_mri, 0, in_macro); |
40a4d956 JB |
2659 | sb_add_buffer (line, input_line_pointer, eol - input_line_pointer); |
2660 | input_line_pointer = eol; | |
f0e652b4 | 2661 | |
0822d075 NC |
2662 | /* Don't skip multiple end-of-line characters, because that breaks support |
2663 | for the IA-64 stop bit (;;) which looks like two consecutive end-of-line | |
2664 | characters but isn't. Instead just skip one end of line character and | |
2665 | return the character skipped so that the caller can re-insert it if | |
2666 | necessary. */ | |
40a4d956 | 2667 | return *input_line_pointer++; |
252b5132 RH |
2668 | } |
2669 | ||
39a45edc | 2670 | static size_t |
7592cfd7 NC |
2671 | get_non_macro_line_sb (sb *line) |
2672 | { | |
2673 | return get_line_sb (line, 0); | |
2674 | } | |
2675 | ||
39a45edc | 2676 | static size_t |
7592cfd7 NC |
2677 | get_macro_line_sb (sb *line) |
2678 | { | |
2679 | return get_line_sb (line, 1); | |
2680 | } | |
2681 | ||
fea17916 | 2682 | /* Define a macro. This is an interface to macro.c. */ |
252b5132 RH |
2683 | |
2684 | void | |
39e6acbd | 2685 | s_macro (int ignore ATTRIBUTE_UNUSED) |
252b5132 | 2686 | { |
3b4dbbbf TS |
2687 | char *eol; |
2688 | const char * file; | |
252b5132 RH |
2689 | unsigned int line; |
2690 | sb s; | |
252b5132 RH |
2691 | const char *err; |
2692 | const char *name; | |
2693 | ||
3b4dbbbf | 2694 | file = as_where (&line); |
252b5132 | 2695 | |
40a4d956 | 2696 | eol = find_end_of_line (input_line_pointer, 0); |
d2ae702c | 2697 | sb_build (&s, eol - input_line_pointer); |
40a4d956 JB |
2698 | sb_add_buffer (&s, input_line_pointer, eol - input_line_pointer); |
2699 | input_line_pointer = eol; | |
252b5132 | 2700 | |
252b5132 | 2701 | if (line_label != NULL) |
360e86f1 JB |
2702 | { |
2703 | sb label; | |
d2ae702c | 2704 | size_t len; |
252b5132 | 2705 | |
d2ae702c L |
2706 | name = S_GET_NAME (line_label); |
2707 | len = strlen (name); | |
2708 | sb_build (&label, len); | |
2709 | sb_add_buffer (&label, name, len); | |
7592cfd7 | 2710 | err = define_macro (0, &s, &label, get_macro_line_sb, file, line, &name); |
360e86f1 JB |
2711 | sb_kill (&label); |
2712 | } | |
2713 | else | |
7592cfd7 | 2714 | err = define_macro (0, &s, NULL, get_macro_line_sb, file, line, &name); |
252b5132 | 2715 | if (err != NULL) |
02ddf156 | 2716 | as_bad_where (file, line, err, name); |
252b5132 RH |
2717 | else |
2718 | { | |
2719 | if (line_label != NULL) | |
2720 | { | |
5e75c3ab | 2721 | S_SET_SEGMENT (line_label, absolute_section); |
252b5132 | 2722 | S_SET_VALUE (line_label, 0); |
2b47531b | 2723 | symbol_set_frag (line_label, &zero_address_frag); |
252b5132 RH |
2724 | } |
2725 | ||
abd63a32 | 2726 | if (((NO_PSEUDO_DOT || flag_m68k_mri) |
252b5132 | 2727 | && hash_find (po_hash, name) != NULL) |
041ff4dd | 2728 | || (!flag_m68k_mri |
252b5132 RH |
2729 | && *name == '.' |
2730 | && hash_find (po_hash, name + 1) != NULL)) | |
02ddf156 JB |
2731 | as_warn_where (file, |
2732 | line, | |
2733 | _("attempt to redefine pseudo-op `%s' ignored"), | |
252b5132 RH |
2734 | name); |
2735 | } | |
2736 | ||
2737 | sb_kill (&s); | |
2738 | } | |
2739 | ||
2740 | /* Handle the .mexit pseudo-op, which immediately exits a macro | |
2741 | expansion. */ | |
2742 | ||
2743 | void | |
39e6acbd | 2744 | s_mexit (int ignore ATTRIBUTE_UNUSED) |
252b5132 | 2745 | { |
5808f4a6 NC |
2746 | if (macro_nest) |
2747 | { | |
2748 | cond_exit_macro (macro_nest); | |
2749 | buffer_limit = input_scrub_next_buffer (&input_line_pointer); | |
2750 | } | |
2751 | else | |
2752 | as_warn (_("ignoring macro exit outside a macro definition.")); | |
252b5132 RH |
2753 | } |
2754 | ||
2755 | /* Switch in and out of MRI mode. */ | |
2756 | ||
2757 | void | |
39e6acbd | 2758 | s_mri (int ignore ATTRIBUTE_UNUSED) |
252b5132 | 2759 | { |
3d540e93 NC |
2760 | int on; |
2761 | #ifdef MRI_MODE_CHANGE | |
2762 | int old_flag; | |
2763 | #endif | |
252b5132 RH |
2764 | |
2765 | on = get_absolute_expression (); | |
3d540e93 | 2766 | #ifdef MRI_MODE_CHANGE |
252b5132 | 2767 | old_flag = flag_mri; |
3d540e93 | 2768 | #endif |
252b5132 RH |
2769 | if (on != 0) |
2770 | { | |
2771 | flag_mri = 1; | |
2772 | #ifdef TC_M68K | |
2773 | flag_m68k_mri = 1; | |
2774 | #endif | |
2775 | macro_mri_mode (1); | |
2776 | } | |
2777 | else | |
2778 | { | |
2779 | flag_mri = 0; | |
abd63a32 | 2780 | #ifdef TC_M68K |
252b5132 | 2781 | flag_m68k_mri = 0; |
abd63a32 | 2782 | #endif |
252b5132 RH |
2783 | macro_mri_mode (0); |
2784 | } | |
2785 | ||
2786 | /* Operator precedence changes in m68k MRI mode, so we need to | |
2787 | update the operator rankings. */ | |
2788 | expr_set_precedence (); | |
2789 | ||
2790 | #ifdef MRI_MODE_CHANGE | |
2791 | if (on != old_flag) | |
2792 | MRI_MODE_CHANGE (on); | |
2793 | #endif | |
2794 | ||
2795 | demand_empty_rest_of_line (); | |
2796 | } | |
2797 | ||
2798 | /* Handle changing the location counter. */ | |
2799 | ||
2800 | static void | |
39e6acbd | 2801 | do_org (segT segment, expressionS *exp, int fill) |
252b5132 | 2802 | { |
259af69e AM |
2803 | if (segment != now_seg |
2804 | && segment != absolute_section | |
2805 | && segment != expr_section) | |
0e389e77 | 2806 | as_bad (_("invalid segment \"%s\""), segment_name (segment)); |
252b5132 RH |
2807 | |
2808 | if (now_seg == absolute_section) | |
2809 | { | |
2810 | if (fill != 0) | |
2811 | as_warn (_("ignoring fill value in absolute section")); | |
2812 | if (exp->X_op != O_constant) | |
2813 | { | |
2814 | as_bad (_("only constant offsets supported in absolute section")); | |
2815 | exp->X_add_number = 0; | |
2816 | } | |
2817 | abs_section_offset = exp->X_add_number; | |
2818 | } | |
2819 | else | |
2820 | { | |
2821 | char *p; | |
2289f85d AM |
2822 | symbolS *sym = exp->X_add_symbol; |
2823 | offsetT off = exp->X_add_number * OCTETS_PER_BYTE; | |
252b5132 | 2824 | |
ec9ab52c JB |
2825 | if (fill && in_bss ()) |
2826 | as_warn (_("ignoring fill value in section `%s'"), | |
2827 | segment_name (now_seg)); | |
2828 | ||
2289f85d AM |
2829 | if (exp->X_op != O_constant && exp->X_op != O_symbol) |
2830 | { | |
2831 | /* Handle complex expressions. */ | |
2832 | sym = make_expr_symbol (exp); | |
2833 | off = 0; | |
2834 | } | |
2835 | ||
2836 | p = frag_var (rs_org, 1, 1, (relax_substateT) 0, sym, off, (char *) 0); | |
252b5132 RH |
2837 | *p = fill; |
2838 | } | |
2839 | } | |
2840 | ||
041ff4dd | 2841 | void |
39e6acbd | 2842 | s_org (int ignore ATTRIBUTE_UNUSED) |
252b5132 | 2843 | { |
3d540e93 | 2844 | segT segment; |
252b5132 | 2845 | expressionS exp; |
3d540e93 | 2846 | long temp_fill; |
252b5132 RH |
2847 | |
2848 | #ifdef md_flush_pending_output | |
2849 | md_flush_pending_output (); | |
2850 | #endif | |
2851 | ||
2852 | /* The m68k MRI assembler has a different meaning for .org. It | |
2853 | means to create an absolute section at a given address. We can't | |
2854 | support that--use a linker script instead. */ | |
2855 | if (flag_m68k_mri) | |
2856 | { | |
2857 | as_bad (_("MRI style ORG pseudo-op not supported")); | |
2858 | ignore_rest_of_line (); | |
2859 | return; | |
2860 | } | |
2861 | ||
2862 | /* Don't believe the documentation of BSD 4.2 AS. There is no such | |
2863 | thing as a sub-segment-relative origin. Any absolute origin is | |
2864 | given a warning, then assumed to be segment-relative. Any | |
2865 | segmented origin expression ("foo+42") had better be in the right | |
2866 | segment or the .org is ignored. | |
2867 | ||
2868 | BSD 4.2 AS warns if you try to .org backwards. We cannot because | |
2869 | we never know sub-segment sizes when we are reading code. BSD | |
2870 | will crash trying to emit negative numbers of filler bytes in | |
2871 | certain .orgs. We don't crash, but see as-write for that code. | |
2872 | ||
2873 | Don't make frag if need_pass_2==1. */ | |
2874 | segment = get_known_segmented_expression (&exp); | |
2875 | if (*input_line_pointer == ',') | |
2876 | { | |
2877 | input_line_pointer++; | |
2878 | temp_fill = get_absolute_expression (); | |
2879 | } | |
2880 | else | |
2881 | temp_fill = 0; | |
2882 | ||
2883 | if (!need_pass_2) | |
2884 | do_org (segment, &exp, temp_fill); | |
2885 | ||
2886 | demand_empty_rest_of_line (); | |
041ff4dd | 2887 | } |
252b5132 RH |
2888 | |
2889 | /* Handle parsing for the MRI SECT/SECTION pseudo-op. This should be | |
2890 | called by the obj-format routine which handles section changing | |
2891 | when in MRI mode. It will create a new section, and return it. It | |
2892 | will set *TYPE to the section type: one of 'C' (code), 'D' (data), | |
7be1c489 | 2893 | 'M' (mixed), or 'R' (romable). The flags will be set in the section. */ |
252b5132 RH |
2894 | |
2895 | void | |
39e6acbd | 2896 | s_mri_sect (char *type ATTRIBUTE_UNUSED) |
252b5132 RH |
2897 | { |
2898 | #ifdef TC_M68K | |
2899 | ||
2900 | char *name; | |
2901 | char c; | |
2902 | segT seg; | |
2903 | ||
2904 | SKIP_WHITESPACE (); | |
041ff4dd | 2905 | |
252b5132 | 2906 | name = input_line_pointer; |
3882b010 | 2907 | if (!ISDIGIT (*name)) |
d02603dc | 2908 | c = get_symbol_name (& name); |
252b5132 RH |
2909 | else |
2910 | { | |
2911 | do | |
2912 | { | |
2913 | ++input_line_pointer; | |
2914 | } | |
3882b010 | 2915 | while (ISDIGIT (*input_line_pointer)); |
f0e652b4 | 2916 | |
252b5132 RH |
2917 | c = *input_line_pointer; |
2918 | *input_line_pointer = '\0'; | |
2919 | } | |
2920 | ||
2921 | name = xstrdup (name); | |
2922 | ||
d02603dc | 2923 | c = restore_line_pointer (c); |
252b5132 RH |
2924 | |
2925 | seg = subseg_new (name, 0); | |
2926 | ||
d02603dc | 2927 | if (c == ',') |
252b5132 | 2928 | { |
9136aa49 | 2929 | unsigned int align; |
252b5132 RH |
2930 | |
2931 | ++input_line_pointer; | |
2932 | align = get_absolute_expression (); | |
2933 | record_alignment (seg, align); | |
2934 | } | |
2935 | ||
2936 | *type = 'C'; | |
2937 | if (*input_line_pointer == ',') | |
2938 | { | |
2939 | c = *++input_line_pointer; | |
3882b010 | 2940 | c = TOUPPER (c); |
252b5132 RH |
2941 | if (c == 'C' || c == 'D' || c == 'M' || c == 'R') |
2942 | *type = c; | |
2943 | else | |
2944 | as_bad (_("unrecognized section type")); | |
2945 | ++input_line_pointer; | |
2946 | ||
252b5132 RH |
2947 | { |
2948 | flagword flags; | |
2949 | ||
2950 | flags = SEC_NO_FLAGS; | |
2951 | if (*type == 'C') | |
2952 | flags = SEC_ALLOC | SEC_LOAD | SEC_READONLY | SEC_CODE; | |
2953 | else if (*type == 'D' || *type == 'M') | |
2954 | flags = SEC_ALLOC | SEC_LOAD | SEC_DATA; | |
2955 | else if (*type == 'R') | |
2956 | flags = SEC_ALLOC | SEC_LOAD | SEC_DATA | SEC_READONLY | SEC_ROM; | |
2957 | if (flags != SEC_NO_FLAGS) | |
2958 | { | |
041ff4dd | 2959 | if (!bfd_set_section_flags (stdoutput, seg, flags)) |
252b5132 RH |
2960 | as_warn (_("error setting flags for \"%s\": %s"), |
2961 | bfd_section_name (stdoutput, seg), | |
2962 | bfd_errmsg (bfd_get_error ())); | |
2963 | } | |
2964 | } | |
252b5132 RH |
2965 | } |
2966 | ||
2967 | /* Ignore the HP type. */ | |
2968 | if (*input_line_pointer == ',') | |
2969 | input_line_pointer += 2; | |
2970 | ||
2971 | demand_empty_rest_of_line (); | |
2972 | ||
2973 | #else /* ! TC_M68K */ | |
2974 | #ifdef TC_I960 | |
2975 | ||
2976 | char *name; | |
2977 | char c; | |
2978 | segT seg; | |
2979 | ||
2980 | SKIP_WHITESPACE (); | |
2981 | ||
d02603dc | 2982 | c = get_symbol_name (& name); |
252b5132 RH |
2983 | |
2984 | name = xstrdup (name); | |
2985 | ||
d02603dc | 2986 | c = restore_line_pointer (c); |
252b5132 RH |
2987 | |
2988 | seg = subseg_new (name, 0); | |
2989 | ||
d02603dc | 2990 | if (c != ',') |
252b5132 RH |
2991 | *type = 'C'; |
2992 | else | |
2993 | { | |
2994 | char *sectype; | |
2995 | ||
2996 | ++input_line_pointer; | |
2997 | SKIP_WHITESPACE (); | |
d02603dc | 2998 | c = get_symbol_name (& sectype); |
252b5132 RH |
2999 | if (*sectype == '\0') |
3000 | *type = 'C'; | |
3001 | else if (strcasecmp (sectype, "text") == 0) | |
3002 | *type = 'C'; | |
3003 | else if (strcasecmp (sectype, "data") == 0) | |
3004 | *type = 'D'; | |
3005 | else if (strcasecmp (sectype, "romdata") == 0) | |
3006 | *type = 'R'; | |
3007 | else | |
3008 | as_warn (_("unrecognized section type `%s'"), sectype); | |
d02603dc | 3009 | (void) restore_line_pointer (c); |
252b5132 RH |
3010 | } |
3011 | ||
3012 | if (*input_line_pointer == ',') | |
3013 | { | |
3014 | char *seccmd; | |
3015 | ||
3016 | ++input_line_pointer; | |
3017 | SKIP_WHITESPACE (); | |
d02603dc | 3018 | c = get_symbol_name (& seccmd); |
252b5132 RH |
3019 | if (strcasecmp (seccmd, "absolute") == 0) |
3020 | { | |
3021 | as_bad (_("absolute sections are not supported")); | |
3022 | *input_line_pointer = c; | |
3023 | ignore_rest_of_line (); | |
3024 | return; | |
3025 | } | |
3026 | else if (strcasecmp (seccmd, "align") == 0) | |
3027 | { | |
9136aa49 | 3028 | unsigned int align; |
252b5132 | 3029 | |
d02603dc | 3030 | (void) restore_line_pointer (c); |
252b5132 RH |
3031 | align = get_absolute_expression (); |
3032 | record_alignment (seg, align); | |
3033 | } | |
3034 | else | |
3035 | { | |
3036 | as_warn (_("unrecognized section command `%s'"), seccmd); | |
d02603dc | 3037 | (void) restore_line_pointer (c); |
252b5132 RH |
3038 | } |
3039 | } | |
3040 | ||
041ff4dd | 3041 | demand_empty_rest_of_line (); |
252b5132 RH |
3042 | |
3043 | #else /* ! TC_I960 */ | |
3044 | /* The MRI assembler seems to use different forms of .sect for | |
3045 | different targets. */ | |
3046 | as_bad ("MRI mode not supported for this target"); | |
3047 | ignore_rest_of_line (); | |
3048 | #endif /* ! TC_I960 */ | |
3049 | #endif /* ! TC_M68K */ | |
3050 | } | |
3051 | ||
3052 | /* Handle the .print pseudo-op. */ | |
3053 | ||
3054 | void | |
39e6acbd | 3055 | s_print (int ignore ATTRIBUTE_UNUSED) |
252b5132 RH |
3056 | { |
3057 | char *s; | |
3058 | int len; | |
3059 | ||
3060 | s = demand_copy_C_string (&len); | |
d6415f6c AM |
3061 | if (s != NULL) |
3062 | printf ("%s\n", s); | |
252b5132 RH |
3063 | demand_empty_rest_of_line (); |
3064 | } | |
3065 | ||
3066 | /* Handle the .purgem pseudo-op. */ | |
3067 | ||
3068 | void | |
39e6acbd | 3069 | s_purgem (int ignore ATTRIBUTE_UNUSED) |
252b5132 RH |
3070 | { |
3071 | if (is_it_end_of_statement ()) | |
3072 | { | |
3073 | demand_empty_rest_of_line (); | |
3074 | return; | |
3075 | } | |
3076 | ||
3077 | do | |
3078 | { | |
3079 | char *name; | |
3080 | char c; | |
3081 | ||
3082 | SKIP_WHITESPACE (); | |
d02603dc | 3083 | c = get_symbol_name (& name); |
252b5132 RH |
3084 | delete_macro (name); |
3085 | *input_line_pointer = c; | |
d02603dc | 3086 | SKIP_WHITESPACE_AFTER_NAME (); |
252b5132 RH |
3087 | } |
3088 | while (*input_line_pointer++ == ','); | |
3089 | ||
3090 | --input_line_pointer; | |
3091 | demand_empty_rest_of_line (); | |
3092 | } | |
3093 | ||
057f53c1 | 3094 | /* Handle the .endm/.endr pseudo-ops. */ |
252b5132 | 3095 | |
057f53c1 JB |
3096 | static void |
3097 | s_bad_end (int endr) | |
7f28ab9d | 3098 | { |
cc643b88 | 3099 | as_warn (_(".end%c encountered without preceding %s"), |
057f53c1 JB |
3100 | endr ? 'r' : 'm', |
3101 | endr ? ".rept, .irp, or .irpc" : ".macro"); | |
7f28ab9d NC |
3102 | demand_empty_rest_of_line (); |
3103 | } | |
3104 | ||
3105 | /* Handle the .rept pseudo-op. */ | |
3106 | ||
252b5132 | 3107 | void |
39e6acbd | 3108 | s_rept (int ignore ATTRIBUTE_UNUSED) |
252b5132 RH |
3109 | { |
3110 | int count; | |
252b5132 RH |
3111 | |
3112 | count = get_absolute_expression (); | |
3113 | ||
041ff4dd | 3114 | do_repeat (count, "REPT", "ENDR"); |
6dc19fc4 TW |
3115 | } |
3116 | ||
3117 | /* This function provides a generic repeat block implementation. It allows | |
041ff4dd | 3118 | different directives to be used as the start/end keys. */ |
6dc19fc4 TW |
3119 | |
3120 | void | |
39e6acbd | 3121 | do_repeat (int count, const char *start, const char *end) |
6dc19fc4 TW |
3122 | { |
3123 | sb one; | |
3124 | sb many; | |
3125 | ||
252b5132 | 3126 | sb_new (&one); |
7592cfd7 | 3127 | if (!buffer_and_nest (start, end, &one, get_non_macro_line_sb)) |
252b5132 | 3128 | { |
6dc19fc4 | 3129 | as_bad (_("%s without %s"), start, end); |
252b5132 RH |
3130 | return; |
3131 | } | |
3132 | ||
d2ae702c | 3133 | sb_build (&many, count * one.len); |
252b5132 RH |
3134 | while (count-- > 0) |
3135 | sb_add_sb (&many, &one); | |
3136 | ||
3137 | sb_kill (&one); | |
3138 | ||
9f10757c | 3139 | input_scrub_include_sb (&many, input_line_pointer, 1); |
252b5132 RH |
3140 | sb_kill (&many); |
3141 | buffer_limit = input_scrub_next_buffer (&input_line_pointer); | |
3142 | } | |
3143 | ||
c7927a3c NC |
3144 | /* Like do_repeat except that any text matching EXPANDER in the |
3145 | block is replaced by the itteration count. */ | |
3146 | ||
3147 | void | |
3148 | do_repeat_with_expander (int count, | |
3149 | const char * start, | |
3150 | const char * end, | |
3151 | const char * expander) | |
3152 | { | |
3153 | sb one; | |
3154 | sb many; | |
3155 | ||
3156 | sb_new (&one); | |
3157 | if (!buffer_and_nest (start, end, &one, get_non_macro_line_sb)) | |
3158 | { | |
3159 | as_bad (_("%s without %s"), start, end); | |
3160 | return; | |
3161 | } | |
3162 | ||
3163 | sb_new (&many); | |
3164 | ||
3165 | if (expander != NULL && strstr (one.ptr, expander) != NULL) | |
3166 | { | |
3167 | while (count -- > 0) | |
3168 | { | |
3169 | int len; | |
3170 | char * sub; | |
3171 | sb processed; | |
3172 | ||
d2ae702c | 3173 | sb_build (& processed, one.len); |
c7927a3c NC |
3174 | sb_add_sb (& processed, & one); |
3175 | sub = strstr (processed.ptr, expander); | |
3176 | len = sprintf (sub, "%d", count); | |
3177 | gas_assert (len < 8); | |
3178 | strcpy (sub + len, sub + 8); | |
3179 | processed.len -= (8 - len); | |
3180 | sb_add_sb (& many, & processed); | |
3181 | sb_kill (& processed); | |
3182 | } | |
3183 | } | |
3184 | else | |
3185 | while (count-- > 0) | |
3186 | sb_add_sb (&many, &one); | |
3187 | ||
3188 | sb_kill (&one); | |
3189 | ||
3190 | input_scrub_include_sb (&many, input_line_pointer, 1); | |
3191 | sb_kill (&many); | |
3192 | buffer_limit = input_scrub_next_buffer (&input_line_pointer); | |
3193 | } | |
3194 | ||
6dc19fc4 TW |
3195 | /* Skip to end of current repeat loop; EXTRA indicates how many additional |
3196 | input buffers to skip. Assumes that conditionals preceding the loop end | |
041ff4dd | 3197 | are properly nested. |
6dc19fc4 TW |
3198 | |
3199 | This function makes it easier to implement a premature "break" out of the | |
3200 | loop. The EXTRA arg accounts for other buffers we might have inserted, | |
041ff4dd | 3201 | such as line substitutions. */ |
6dc19fc4 TW |
3202 | |
3203 | void | |
39e6acbd | 3204 | end_repeat (int extra) |
6dc19fc4 TW |
3205 | { |
3206 | cond_exit_macro (macro_nest); | |
3207 | while (extra-- >= 0) | |
3208 | buffer_limit = input_scrub_next_buffer (&input_line_pointer); | |
3209 | } | |
3210 | ||
be95a9c1 | 3211 | static void |
9497f5ac | 3212 | assign_symbol (char *name, int mode) |
be95a9c1 AM |
3213 | { |
3214 | symbolS *symbolP; | |
3215 | ||
3216 | if (name[0] == '.' && name[1] == '\0') | |
3217 | { | |
3218 | /* Turn '. = mumble' into a .org mumble. */ | |
3219 | segT segment; | |
3220 | expressionS exp; | |
3221 | ||
3222 | segment = get_known_segmented_expression (&exp); | |
3223 | ||
3224 | if (!need_pass_2) | |
3225 | do_org (segment, &exp, 0); | |
3226 | ||
3227 | return; | |
3228 | } | |
3229 | ||
3230 | if ((symbolP = symbol_find (name)) == NULL | |
3231 | && (symbolP = md_undefined_symbol (name)) == NULL) | |
3232 | { | |
3233 | symbolP = symbol_find_or_make (name); | |
3234 | #ifndef NO_LISTING | |
3235 | /* When doing symbol listings, play games with dummy fragments living | |
3236 | outside the normal fragment chain to record the file and line info | |
3237 | for this symbol. */ | |
3238 | if (listing & LISTING_SYMBOLS) | |
3239 | { | |
3240 | extern struct list_info_struct *listing_tail; | |
31d20a21 | 3241 | fragS *dummy_frag = (fragS *) xcalloc (1, sizeof (fragS)); |
be95a9c1 AM |
3242 | dummy_frag->line = listing_tail; |
3243 | dummy_frag->fr_symbol = symbolP; | |
3244 | symbol_set_frag (symbolP, dummy_frag); | |
3245 | } | |
3246 | #endif | |
76bd66cf | 3247 | #if defined (OBJ_COFF) && !defined (TE_PE) |
31d20a21 AM |
3248 | /* "set" symbols are local unless otherwise specified. */ |
3249 | SF_SET_LOCAL (symbolP); | |
be95a9c1 AM |
3250 | #endif |
3251 | } | |
3252 | ||
6a2b6326 | 3253 | if (S_IS_DEFINED (symbolP) || symbol_equated_p (symbolP)) |
9497f5ac | 3254 | { |
9497f5ac | 3255 | if ((mode != 0 || !S_IS_VOLATILE (symbolP)) |
6885131b | 3256 | && !S_CAN_BE_REDEFINED (symbolP)) |
9497f5ac NC |
3257 | { |
3258 | as_bad (_("symbol `%s' is already defined"), name); | |
3259 | symbolP = symbol_clone (symbolP, 0); | |
3260 | } | |
3261 | /* If the symbol is volatile, copy the symbol and replace the | |
3262 | original with the copy, so that previous uses of the symbol will | |
3263 | retain the value of the symbol at the point of use. */ | |
89cdfe57 | 3264 | else if (S_IS_VOLATILE (symbolP)) |
9497f5ac NC |
3265 | symbolP = symbol_clone (symbolP, 1); |
3266 | } | |
3267 | ||
3268 | if (mode == 0) | |
3269 | S_SET_VOLATILE (symbolP); | |
3270 | else if (mode < 0) | |
3271 | S_SET_FORWARD_REF (symbolP); | |
be95a9c1 AM |
3272 | |
3273 | pseudo_set (symbolP); | |
be95a9c1 AM |
3274 | } |
3275 | ||
9497f5ac NC |
3276 | /* Handle the .equ, .equiv, .eqv, and .set directives. If EQUIV is 1, |
3277 | then this is .equiv, and it is an error if the symbol is already | |
3278 | defined. If EQUIV is -1, the symbol additionally is a forward | |
3279 | reference. */ | |
252b5132 | 3280 | |
041ff4dd | 3281 | void |
39e6acbd | 3282 | s_set (int equiv) |
252b5132 | 3283 | { |
be95a9c1 | 3284 | char *name; |
252b5132 | 3285 | |
041ff4dd NC |
3286 | /* Especial apologies for the random logic: |
3287 | this just grew, and could be parsed much more simply! | |
3288 | Dean in haste. */ | |
7bfd842d NC |
3289 | if ((name = read_symbol_name ()) == NULL) |
3290 | return; | |
252b5132 RH |
3291 | |
3292 | if (*input_line_pointer != ',') | |
3293 | { | |
0e389e77 | 3294 | as_bad (_("expected comma after \"%s\""), name); |
252b5132 | 3295 | ignore_rest_of_line (); |
7bfd842d | 3296 | free (name); |
252b5132 RH |
3297 | return; |
3298 | } | |
3299 | ||
3300 | input_line_pointer++; | |
be95a9c1 | 3301 | assign_symbol (name, equiv); |
31d20a21 | 3302 | demand_empty_rest_of_line (); |
7bfd842d | 3303 | free (name); |
041ff4dd | 3304 | } |
252b5132 | 3305 | |
041ff4dd | 3306 | void |
39e6acbd | 3307 | s_space (int mult) |
252b5132 RH |
3308 | { |
3309 | expressionS exp; | |
3310 | expressionS val; | |
3311 | char *p = 0; | |
3312 | char *stop = NULL; | |
fb25138b | 3313 | char stopc = 0; |
252b5132 RH |
3314 | int bytes; |
3315 | ||
3316 | #ifdef md_flush_pending_output | |
3317 | md_flush_pending_output (); | |
3318 | #endif | |
3319 | ||
cc3f603a JM |
3320 | #ifdef md_cons_align |
3321 | md_cons_align (1); | |
3322 | #endif | |
3323 | ||
252b5132 RH |
3324 | if (flag_mri) |
3325 | stop = mri_comment_field (&stopc); | |
3326 | ||
3327 | /* In m68k MRI mode, we need to align to a word boundary, unless | |
3328 | this is ds.b. */ | |
3329 | if (flag_m68k_mri && mult > 1) | |
3330 | { | |
3331 | if (now_seg == absolute_section) | |
3332 | { | |
3333 | abs_section_offset += abs_section_offset & 1; | |
3334 | if (line_label != NULL) | |
3335 | S_SET_VALUE (line_label, abs_section_offset); | |
3336 | } | |
3337 | else if (mri_common_symbol != NULL) | |
3338 | { | |
91d6fa6a | 3339 | valueT mri_val; |
252b5132 | 3340 | |
91d6fa6a NC |
3341 | mri_val = S_GET_VALUE (mri_common_symbol); |
3342 | if ((mri_val & 1) != 0) | |
252b5132 | 3343 | { |
91d6fa6a | 3344 | S_SET_VALUE (mri_common_symbol, mri_val + 1); |
252b5132 RH |
3345 | if (line_label != NULL) |
3346 | { | |
2b47531b ILT |
3347 | expressionS *symexp; |
3348 | ||
3349 | symexp = symbol_get_value_expression (line_label); | |
3350 | know (symexp->X_op == O_symbol); | |
3351 | know (symexp->X_add_symbol == mri_common_symbol); | |
3352 | symexp->X_add_number += 1; | |
252b5132 RH |
3353 | } |
3354 | } | |
3355 | } | |
3356 | else | |
3357 | { | |
3358 | do_align (1, (char *) NULL, 0, 0); | |
3359 | if (line_label != NULL) | |
3360 | { | |
2b47531b | 3361 | symbol_set_frag (line_label, frag_now); |
252b5132 RH |
3362 | S_SET_VALUE (line_label, frag_now_fix ()); |
3363 | } | |
3364 | } | |
3365 | } | |
3366 | ||
3367 | bytes = mult; | |
3368 | ||
3369 | expression (&exp); | |
3370 | ||
3371 | SKIP_WHITESPACE (); | |
3372 | if (*input_line_pointer == ',') | |
3373 | { | |
3374 | ++input_line_pointer; | |
3375 | expression (&val); | |
3376 | } | |
3377 | else | |
3378 | { | |
3379 | val.X_op = O_constant; | |
3380 | val.X_add_number = 0; | |
3381 | } | |
3382 | ||
ec9ab52c JB |
3383 | if ((val.X_op != O_constant |
3384 | || val.X_add_number < - 0x80 | |
3385 | || val.X_add_number > 0xff | |
3386 | || (mult != 0 && mult != 1 && val.X_add_number != 0)) | |
3387 | && (now_seg != absolute_section && !in_bss ())) | |
252b5132 | 3388 | { |
9497f5ac | 3389 | resolve_expression (&exp); |
252b5132 | 3390 | if (exp.X_op != O_constant) |
0e389e77 | 3391 | as_bad (_("unsupported variable size or fill value")); |
252b5132 RH |
3392 | else |
3393 | { | |
3394 | offsetT i; | |
3395 | ||
3396 | if (mult == 0) | |
3397 | mult = 1; | |
3398 | bytes = mult * exp.X_add_number; | |
3399 | for (i = 0; i < exp.X_add_number; i++) | |
3400 | emit_expr (&val, mult); | |
3401 | } | |
3402 | } | |
3403 | else | |
3404 | { | |
9497f5ac NC |
3405 | if (now_seg == absolute_section || mri_common_symbol != NULL) |
3406 | resolve_expression (&exp); | |
3407 | ||
252b5132 RH |
3408 | if (exp.X_op == O_constant) |
3409 | { | |
a4a151e6 | 3410 | offsetT repeat; |
252b5132 RH |
3411 | |
3412 | repeat = exp.X_add_number; | |
3413 | if (mult) | |
3414 | repeat *= mult; | |
3415 | bytes = repeat; | |
3416 | if (repeat <= 0) | |
3417 | { | |
2d150871 RO |
3418 | if (!flag_mri) |
3419 | as_warn (_(".space repeat count is zero, ignored")); | |
3420 | else if (repeat < 0) | |
252b5132 RH |
3421 | as_warn (_(".space repeat count is negative, ignored")); |
3422 | goto getout; | |
3423 | } | |
3424 | ||
3425 | /* If we are in the absolute section, just bump the offset. */ | |
3426 | if (now_seg == absolute_section) | |
3427 | { | |
ec9ab52c JB |
3428 | if (val.X_op != O_constant || val.X_add_number != 0) |
3429 | as_warn (_("ignoring fill value in absolute section")); | |
252b5132 RH |
3430 | abs_section_offset += repeat; |
3431 | goto getout; | |
3432 | } | |
3433 | ||
3434 | /* If we are secretly in an MRI common section, then | |
3435 | creating space just increases the size of the common | |
3436 | symbol. */ | |
3437 | if (mri_common_symbol != NULL) | |
3438 | { | |
3439 | S_SET_VALUE (mri_common_symbol, | |
3440 | S_GET_VALUE (mri_common_symbol) + repeat); | |
3441 | goto getout; | |
3442 | } | |
3443 | ||
3444 | if (!need_pass_2) | |
3445 | p = frag_var (rs_fill, 1, 1, (relax_substateT) 0, (symbolS *) 0, | |
3446 | (offsetT) repeat, (char *) 0); | |
3447 | } | |
3448 | else | |
3449 | { | |
3450 | if (now_seg == absolute_section) | |
3451 | { | |
3452 | as_bad (_("space allocation too complex in absolute section")); | |
3453 | subseg_set (text_section, 0); | |
3454 | } | |
f0e652b4 | 3455 | |
252b5132 RH |
3456 | if (mri_common_symbol != NULL) |
3457 | { | |
3458 | as_bad (_("space allocation too complex in common section")); | |
3459 | mri_common_symbol = NULL; | |
3460 | } | |
f0e652b4 | 3461 | |
252b5132 RH |
3462 | if (!need_pass_2) |
3463 | p = frag_var (rs_space, 1, 1, (relax_substateT) 0, | |
3464 | make_expr_symbol (&exp), (offsetT) 0, (char *) 0); | |
3465 | } | |
3466 | ||
ec9ab52c JB |
3467 | if ((val.X_op != O_constant || val.X_add_number != 0) && in_bss ()) |
3468 | as_warn (_("ignoring fill value in section `%s'"), | |
3469 | segment_name (now_seg)); | |
3470 | else if (p) | |
252b5132 RH |
3471 | *p = val.X_add_number; |
3472 | } | |
3473 | ||
3474 | getout: | |
3475 | ||
3476 | /* In MRI mode, after an odd number of bytes, we must align to an | |
3477 | even word boundary, unless the next instruction is a dc.b, ds.b | |
3478 | or dcb.b. */ | |
3479 | if (flag_mri && (bytes & 1) != 0) | |
3480 | mri_pending_align = 1; | |
3481 | ||
3482 | demand_empty_rest_of_line (); | |
3483 | ||
3484 | if (flag_mri) | |
3485 | mri_comment_end (stop, stopc); | |
3486 | } | |
3487 | ||
3488 | /* This is like s_space, but the value is a floating point number with | |
3489 | the given precision. This is for the MRI dcb.s pseudo-op and | |
3490 | friends. */ | |
3491 | ||
3492 | void | |
39e6acbd | 3493 | s_float_space (int float_type) |
252b5132 RH |
3494 | { |
3495 | offsetT count; | |
3496 | int flen; | |
3497 | char temp[MAXIMUM_NUMBER_OF_CHARS_FOR_FLOAT]; | |
3498 | char *stop = NULL; | |
fb25138b | 3499 | char stopc = 0; |
252b5132 | 3500 | |
cc3f603a JM |
3501 | #ifdef md_cons_align |
3502 | md_cons_align (1); | |
3503 | #endif | |
3504 | ||
252b5132 RH |
3505 | if (flag_mri) |
3506 | stop = mri_comment_field (&stopc); | |
3507 | ||
3508 | count = get_absolute_expression (); | |
3509 | ||
3510 | SKIP_WHITESPACE (); | |
3511 | if (*input_line_pointer != ',') | |
3512 | { | |
3513 | as_bad (_("missing value")); | |
3514 | ignore_rest_of_line (); | |
3515 | if (flag_mri) | |
3516 | mri_comment_end (stop, stopc); | |
3517 | return; | |
3518 | } | |
3519 | ||
3520 | ++input_line_pointer; | |
3521 | ||
3522 | SKIP_WHITESPACE (); | |
3523 | ||
3524 | /* Skip any 0{letter} that may be present. Don't even check if the | |
3525 | * letter is legal. */ | |
3526 | if (input_line_pointer[0] == '0' | |
3882b010 | 3527 | && ISALPHA (input_line_pointer[1])) |
252b5132 RH |
3528 | input_line_pointer += 2; |
3529 | ||
3530 | /* Accept :xxxx, where the x's are hex digits, for a floating point | |
3531 | with the exact digits specified. */ | |
3532 | if (input_line_pointer[0] == ':') | |
3533 | { | |
3534 | flen = hex_float (float_type, temp); | |
3535 | if (flen < 0) | |
3536 | { | |
3537 | ignore_rest_of_line (); | |
3538 | if (flag_mri) | |
3539 | mri_comment_end (stop, stopc); | |
3540 | return; | |
3541 | } | |
3542 | } | |
3543 | else | |
3544 | { | |
3545 | char *err; | |
3546 | ||
3547 | err = md_atof (float_type, temp, &flen); | |
3548 | know (flen <= MAXIMUM_NUMBER_OF_CHARS_FOR_FLOAT); | |
499ac353 | 3549 | know (err != NULL || flen > 0); |
252b5132 RH |
3550 | if (err) |
3551 | { | |
0e389e77 | 3552 | as_bad (_("bad floating literal: %s"), err); |
252b5132 RH |
3553 | ignore_rest_of_line (); |
3554 | if (flag_mri) | |
3555 | mri_comment_end (stop, stopc); | |
3556 | return; | |
3557 | } | |
3558 | } | |
3559 | ||
3560 | while (--count >= 0) | |
3561 | { | |
3562 | char *p; | |
3563 | ||
3564 | p = frag_more (flen); | |
3565 | memcpy (p, temp, (unsigned int) flen); | |
3566 | } | |
3567 | ||
3568 | demand_empty_rest_of_line (); | |
3569 | ||
3570 | if (flag_mri) | |
3571 | mri_comment_end (stop, stopc); | |
3572 | } | |
3573 | ||
3574 | /* Handle the .struct pseudo-op, as found in MIPS assemblers. */ | |
3575 | ||
3576 | void | |
39e6acbd | 3577 | s_struct (int ignore ATTRIBUTE_UNUSED) |
252b5132 RH |
3578 | { |
3579 | char *stop = NULL; | |
fb25138b | 3580 | char stopc = 0; |
252b5132 RH |
3581 | |
3582 | if (flag_mri) | |
3583 | stop = mri_comment_field (&stopc); | |
3584 | abs_section_offset = get_absolute_expression (); | |
a2902af6 TS |
3585 | #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) |
3586 | /* The ELF backend needs to know that we are changing sections, so | |
3587 | that .previous works correctly. */ | |
f43abd2b | 3588 | if (IS_ELF) |
a2902af6 TS |
3589 | obj_elf_section_change_hook (); |
3590 | #endif | |
252b5132 RH |
3591 | subseg_set (absolute_section, 0); |
3592 | demand_empty_rest_of_line (); | |
3593 | if (flag_mri) | |
3594 | mri_comment_end (stop, stopc); | |
3595 | } | |
3596 | ||
3597 | void | |
39e6acbd | 3598 | s_text (int ignore ATTRIBUTE_UNUSED) |
252b5132 | 3599 | { |
3d540e93 | 3600 | int temp; |
252b5132 RH |
3601 | |
3602 | temp = get_absolute_expression (); | |
3603 | subseg_set (text_section, (subsegT) temp); | |
3604 | demand_empty_rest_of_line (); | |
041ff4dd | 3605 | } |
06e77878 AO |
3606 | |
3607 | /* .weakref x, y sets x as an alias to y that, as long as y is not | |
3608 | referenced directly, will cause y to become a weak symbol. */ | |
3609 | void | |
3610 | s_weakref (int ignore ATTRIBUTE_UNUSED) | |
3611 | { | |
3612 | char *name; | |
06e77878 AO |
3613 | symbolS *symbolP; |
3614 | symbolS *symbolP2; | |
3615 | expressionS exp; | |
3616 | ||
7bfd842d NC |
3617 | if ((name = read_symbol_name ()) == NULL) |
3618 | return; | |
06e77878 AO |
3619 | |
3620 | symbolP = symbol_find_or_make (name); | |
3621 | ||
b54788f8 AO |
3622 | if (S_IS_DEFINED (symbolP) || symbol_equated_p (symbolP)) |
3623 | { | |
89cdfe57 | 3624 | if (!S_IS_VOLATILE (symbolP)) |
92757bc9 JB |
3625 | { |
3626 | as_bad (_("symbol `%s' is already defined"), name); | |
7bfd842d | 3627 | goto err_out; |
92757bc9 | 3628 | } |
89cdfe57 | 3629 | symbolP = symbol_clone (symbolP, 1); |
92757bc9 | 3630 | S_CLEAR_VOLATILE (symbolP); |
b54788f8 AO |
3631 | } |
3632 | ||
06e77878 AO |
3633 | SKIP_WHITESPACE (); |
3634 | ||
3635 | if (*input_line_pointer != ',') | |
3636 | { | |
06e77878 | 3637 | as_bad (_("expected comma after \"%s\""), name); |
7bfd842d | 3638 | goto err_out; |
06e77878 AO |
3639 | } |
3640 | ||
3641 | input_line_pointer++; | |
3642 | ||
3643 | SKIP_WHITESPACE (); | |
7bfd842d | 3644 | free (name); |
06e77878 | 3645 | |
7bfd842d NC |
3646 | if ((name = read_symbol_name ()) == NULL) |
3647 | return; | |
06e77878 AO |
3648 | |
3649 | if ((symbolP2 = symbol_find_noref (name, 1)) == NULL | |
3650 | && (symbolP2 = md_undefined_symbol (name)) == NULL) | |
3651 | { | |
3652 | symbolP2 = symbol_find_or_make (name); | |
3653 | S_SET_WEAKREFD (symbolP2); | |
3654 | } | |
3655 | else | |
3656 | { | |
3657 | symbolS *symp = symbolP2; | |
3658 | ||
3659 | while (S_IS_WEAKREFR (symp) && symp != symbolP) | |
3660 | { | |
3661 | expressionS *expP = symbol_get_value_expression (symp); | |
3662 | ||
9c2799c2 | 3663 | gas_assert (expP->X_op == O_symbol |
06e77878 AO |
3664 | && expP->X_add_number == 0); |
3665 | symp = expP->X_add_symbol; | |
3666 | } | |
3667 | if (symp == symbolP) | |
3668 | { | |
3669 | char *loop; | |
3670 | ||
3671 | loop = concat (S_GET_NAME (symbolP), | |
1bf57e9f | 3672 | " => ", S_GET_NAME (symbolP2), (const char *) NULL); |
06e77878 AO |
3673 | |
3674 | symp = symbolP2; | |
3675 | while (symp != symbolP) | |
3676 | { | |
3677 | char *old_loop = loop; | |
7bfd842d | 3678 | |
06e77878 | 3679 | symp = symbol_get_value_expression (symp)->X_add_symbol; |
1bf57e9f AM |
3680 | loop = concat (loop, " => ", S_GET_NAME (symp), |
3681 | (const char *) NULL); | |
06e77878 AO |
3682 | free (old_loop); |
3683 | } | |
3684 | ||
3685 | as_bad (_("%s: would close weakref loop: %s"), | |
3686 | S_GET_NAME (symbolP), loop); | |
3687 | ||
3688 | free (loop); | |
7bfd842d | 3689 | free (name); |
06e77878 AO |
3690 | ignore_rest_of_line (); |
3691 | return; | |
3692 | } | |
3693 | ||
3694 | /* Short-circuiting instead of just checking here might speed | |
3695 | things up a tiny little bit, but loop error messages would | |
3696 | miss intermediate links. */ | |
3697 | /* symbolP2 = symp; */ | |
3698 | } | |
3699 | ||
06e77878 AO |
3700 | memset (&exp, 0, sizeof (exp)); |
3701 | exp.X_op = O_symbol; | |
3702 | exp.X_add_symbol = symbolP2; | |
3703 | ||
3704 | S_SET_SEGMENT (symbolP, undefined_section); | |
3705 | symbol_set_value_expression (symbolP, &exp); | |
3706 | symbol_set_frag (symbolP, &zero_address_frag); | |
3707 | S_SET_WEAKREFR (symbolP); | |
3708 | ||
3709 | demand_empty_rest_of_line (); | |
7bfd842d NC |
3710 | free (name); |
3711 | return; | |
3712 | ||
3713 | err_out: | |
3714 | ignore_rest_of_line (); | |
3715 | free (name); | |
3716 | return; | |
06e77878 | 3717 | } |
252b5132 | 3718 | \f |
c95b35a9 NS |
3719 | |
3720 | /* Verify that we are at the end of a line. If not, issue an error and | |
3721 | skip to EOL. */ | |
3722 | ||
041ff4dd | 3723 | void |
39e6acbd | 3724 | demand_empty_rest_of_line (void) |
252b5132 RH |
3725 | { |
3726 | SKIP_WHITESPACE (); | |
3727 | if (is_end_of_line[(unsigned char) *input_line_pointer]) | |
041ff4dd | 3728 | input_line_pointer++; |
252b5132 | 3729 | else |
252b5132 | 3730 | { |
3882b010 | 3731 | if (ISPRINT (*input_line_pointer)) |
c95b35a9 | 3732 | as_bad (_("junk at end of line, first unrecognized character is `%c'"), |
0e389e77 | 3733 | *input_line_pointer); |
252b5132 | 3734 | else |
c95b35a9 | 3735 | as_bad (_("junk at end of line, first unrecognized character valued 0x%x"), |
0e389e77 | 3736 | *input_line_pointer); |
c95b35a9 | 3737 | ignore_rest_of_line (); |
252b5132 | 3738 | } |
fa94de6b | 3739 | |
c95b35a9 NS |
3740 | /* Return pointing just after end-of-line. */ |
3741 | know (is_end_of_line[(unsigned char) input_line_pointer[-1]]); | |
3742 | } | |
3743 | ||
3744 | /* Silently advance to the end of line. Use this after already having | |
3745 | issued an error about something bad. */ | |
3746 | ||
3747 | void | |
3748 | ignore_rest_of_line (void) | |
3749 | { | |
3750 | while (input_line_pointer < buffer_limit | |
3751 | && !is_end_of_line[(unsigned char) *input_line_pointer]) | |
3752 | input_line_pointer++; | |
f0e652b4 | 3753 | |
041ff4dd NC |
3754 | input_line_pointer++; |
3755 | ||
3756 | /* Return pointing just after end-of-line. */ | |
252b5132 RH |
3757 | know (is_end_of_line[(unsigned char) input_line_pointer[-1]]); |
3758 | } | |
3759 | ||
be95a9c1 AM |
3760 | /* Sets frag for given symbol to zero_address_frag, except when the |
3761 | symbol frag is already set to a dummy listing frag. */ | |
3762 | ||
3763 | static void | |
3764 | set_zero_frag (symbolS *symbolP) | |
3765 | { | |
3766 | if (symbol_get_frag (symbolP)->fr_type != rs_dummy) | |
3767 | symbol_set_frag (symbolP, &zero_address_frag); | |
3768 | } | |
3769 | ||
041ff4dd | 3770 | /* In: Pointer to a symbol. |
d6415f6c | 3771 | Input_line_pointer->expression. |
f0e652b4 | 3772 | |
041ff4dd | 3773 | Out: Input_line_pointer->just after any whitespace after expression. |
d6415f6c AM |
3774 | Tried to set symbol to value of expression. |
3775 | Will change symbols type, value, and frag; */ | |
041ff4dd | 3776 | |
252b5132 | 3777 | void |
39e6acbd | 3778 | pseudo_set (symbolS *symbolP) |
252b5132 RH |
3779 | { |
3780 | expressionS exp; | |
be95a9c1 | 3781 | segT seg; |
252b5132 | 3782 | |
041ff4dd | 3783 | know (symbolP); /* NULL pointer is logic error. */ |
252b5132 | 3784 | |
9497f5ac NC |
3785 | if (!S_IS_FORWARD_REF (symbolP)) |
3786 | (void) expression (&exp); | |
3787 | else | |
3788 | (void) deferred_expression (&exp); | |
252b5132 RH |
3789 | |
3790 | if (exp.X_op == O_illegal) | |
0e389e77 | 3791 | as_bad (_("illegal expression")); |
252b5132 | 3792 | else if (exp.X_op == O_absent) |
0e389e77 | 3793 | as_bad (_("missing expression")); |
252b5132 RH |
3794 | else if (exp.X_op == O_big) |
3795 | { | |
3796 | if (exp.X_add_number > 0) | |
0e389e77 | 3797 | as_bad (_("bignum invalid")); |
252b5132 | 3798 | else |
0e389e77 | 3799 | as_bad (_("floating point number invalid")); |
252b5132 RH |
3800 | } |
3801 | else if (exp.X_op == O_subtract | |
9497f5ac | 3802 | && !S_IS_FORWARD_REF (symbolP) |
252b5132 | 3803 | && SEG_NORMAL (S_GET_SEGMENT (exp.X_add_symbol)) |
2b47531b ILT |
3804 | && (symbol_get_frag (exp.X_add_symbol) |
3805 | == symbol_get_frag (exp.X_op_symbol))) | |
252b5132 RH |
3806 | { |
3807 | exp.X_op = O_constant; | |
3808 | exp.X_add_number = (S_GET_VALUE (exp.X_add_symbol) | |
3809 | - S_GET_VALUE (exp.X_op_symbol)); | |
3810 | } | |
3811 | ||
be95a9c1 AM |
3812 | if (symbol_section_p (symbolP)) |
3813 | { | |
3814 | as_bad ("attempt to set value of section symbol"); | |
3815 | return; | |
3816 | } | |
be95a9c1 | 3817 | |
252b5132 RH |
3818 | switch (exp.X_op) |
3819 | { | |
3820 | case O_illegal: | |
3821 | case O_absent: | |
3822 | case O_big: | |
3823 | exp.X_add_number = 0; | |
3824 | /* Fall through. */ | |
3825 | case O_constant: | |
3826 | S_SET_SEGMENT (symbolP, absolute_section); | |
252b5132 | 3827 | S_SET_VALUE (symbolP, (valueT) exp.X_add_number); |
be95a9c1 | 3828 | set_zero_frag (symbolP); |
252b5132 RH |
3829 | break; |
3830 | ||
3831 | case O_register: | |
97c4f2d9 | 3832 | #ifndef TC_GLOBAL_REGISTER_SYMBOL_OK |
d0548f34 L |
3833 | if (S_IS_EXTERNAL (symbolP)) |
3834 | { | |
3835 | as_bad ("can't equate global symbol `%s' with register name", | |
3836 | S_GET_NAME (symbolP)); | |
3837 | return; | |
3838 | } | |
97c4f2d9 | 3839 | #endif |
252b5132 RH |
3840 | S_SET_SEGMENT (symbolP, reg_section); |
3841 | S_SET_VALUE (symbolP, (valueT) exp.X_add_number); | |
be95a9c1 | 3842 | set_zero_frag (symbolP); |
db557034 | 3843 | symbol_get_value_expression (symbolP)->X_op = O_register; |
252b5132 RH |
3844 | break; |
3845 | ||
3846 | case O_symbol: | |
be95a9c1 AM |
3847 | seg = S_GET_SEGMENT (exp.X_add_symbol); |
3848 | /* For x=undef+const, create an expression symbol. | |
3849 | For x=x+const, just update x except when x is an undefined symbol | |
3850 | For x=defined+const, evaluate x. */ | |
3851 | if (symbolP == exp.X_add_symbol | |
3852 | && (seg != undefined_section | |
3853 | || !symbol_constant_p (symbolP))) | |
3854 | { | |
3855 | *symbol_X_add_number (symbolP) += exp.X_add_number; | |
3856 | break; | |
3857 | } | |
9497f5ac | 3858 | else if (!S_IS_FORWARD_REF (symbolP) && seg != undefined_section) |
252b5132 RH |
3859 | { |
3860 | symbolS *s = exp.X_add_symbol; | |
3861 | ||
60938e80 L |
3862 | if (S_IS_COMMON (s)) |
3863 | as_bad (_("`%s' can't be equated to common symbol '%s'"), | |
3864 | S_GET_NAME (symbolP), S_GET_NAME (s)); | |
3865 | ||
be95a9c1 AM |
3866 | S_SET_SEGMENT (symbolP, seg); |
3867 | S_SET_VALUE (symbolP, exp.X_add_number + S_GET_VALUE (s)); | |
2b47531b | 3868 | symbol_set_frag (symbolP, symbol_get_frag (s)); |
252b5132 | 3869 | copy_symbol_attributes (symbolP, s); |
be95a9c1 | 3870 | break; |
252b5132 | 3871 | } |
66bd02d3 AM |
3872 | S_SET_SEGMENT (symbolP, undefined_section); |
3873 | symbol_set_value_expression (symbolP, &exp); | |
f08e1e19 | 3874 | copy_symbol_attributes (symbolP, exp.X_add_symbol); |
66bd02d3 AM |
3875 | set_zero_frag (symbolP); |
3876 | break; | |
252b5132 RH |
3877 | |
3878 | default: | |
aba4aa7d AM |
3879 | /* The value is some complex expression. */ |
3880 | S_SET_SEGMENT (symbolP, expr_section); | |
2b47531b | 3881 | symbol_set_value_expression (symbolP, &exp); |
be95a9c1 | 3882 | set_zero_frag (symbolP); |
252b5132 RH |
3883 | break; |
3884 | } | |
3885 | } | |
3886 | \f | |
d6415f6c | 3887 | /* cons() |
f0e652b4 | 3888 | |
041ff4dd NC |
3889 | CONStruct more frag of .bytes, or .words etc. |
3890 | Should need_pass_2 be 1 then emit no frag(s). | |
3891 | This understands EXPRESSIONS. | |
f0e652b4 | 3892 | |
041ff4dd | 3893 | Bug (?) |
f0e652b4 | 3894 | |
041ff4dd NC |
3895 | This has a split personality. We use expression() to read the |
3896 | value. We can detect if the value won't fit in a byte or word. | |
3897 | But we can't detect if expression() discarded significant digits | |
3898 | in the case of a long. Not worth the crocks required to fix it. */ | |
252b5132 RH |
3899 | |
3900 | /* Select a parser for cons expressions. */ | |
3901 | ||
3902 | /* Some targets need to parse the expression in various fancy ways. | |
3903 | You can define TC_PARSE_CONS_EXPRESSION to do whatever you like | |
3904 | (for example, the HPPA does this). Otherwise, you can define | |
3905 | BITFIELD_CONS_EXPRESSIONS to permit bitfields to be specified, or | |
3906 | REPEAT_CONS_EXPRESSIONS to permit repeat counts. If none of these | |
3907 | are defined, which is the normal case, then only simple expressions | |
3908 | are permitted. */ | |
3909 | ||
abd63a32 | 3910 | #ifdef TC_M68K |
252b5132 | 3911 | static void |
39e6acbd | 3912 | parse_mri_cons (expressionS *exp, unsigned int nbytes); |
abd63a32 | 3913 | #endif |
252b5132 RH |
3914 | |
3915 | #ifndef TC_PARSE_CONS_EXPRESSION | |
3916 | #ifdef BITFIELD_CONS_EXPRESSIONS | |
62ebcb5c AM |
3917 | #define TC_PARSE_CONS_EXPRESSION(EXP, NBYTES) \ |
3918 | (parse_bitfield_cons (EXP, NBYTES), TC_PARSE_CONS_RETURN_NONE) | |
041ff4dd | 3919 | static void |
39e6acbd | 3920 | parse_bitfield_cons (expressionS *exp, unsigned int nbytes); |
252b5132 RH |
3921 | #endif |
3922 | #ifdef REPEAT_CONS_EXPRESSIONS | |
62ebcb5c AM |
3923 | #define TC_PARSE_CONS_EXPRESSION(EXP, NBYTES) \ |
3924 | (parse_repeat_cons (EXP, NBYTES), TC_PARSE_CONS_RETURN_NONE) | |
252b5132 | 3925 | static void |
39e6acbd | 3926 | parse_repeat_cons (expressionS *exp, unsigned int nbytes); |
252b5132 RH |
3927 | #endif |
3928 | ||
3929 | /* If we haven't gotten one yet, just call expression. */ | |
3930 | #ifndef TC_PARSE_CONS_EXPRESSION | |
62ebcb5c AM |
3931 | #define TC_PARSE_CONS_EXPRESSION(EXP, NBYTES) \ |
3932 | (expression (EXP), TC_PARSE_CONS_RETURN_NONE) | |
252b5132 RH |
3933 | #endif |
3934 | #endif | |
3935 | ||
cdfbf930 | 3936 | void |
b41b1f95 L |
3937 | do_parse_cons_expression (expressionS *exp, |
3938 | int nbytes ATTRIBUTE_UNUSED) | |
cdfbf930 | 3939 | { |
62ebcb5c | 3940 | (void) TC_PARSE_CONS_EXPRESSION (exp, nbytes); |
cdfbf930 RH |
3941 | } |
3942 | ||
3943 | ||
041ff4dd NC |
3944 | /* Worker to do .byte etc statements. |
3945 | Clobbers input_line_pointer and checks end-of-line. */ | |
3946 | ||
3947 | static void | |
3d540e93 | 3948 | cons_worker (int nbytes, /* 1=.byte, 2=.word, 4=.long. */ |
39e6acbd | 3949 | int rva) |
252b5132 RH |
3950 | { |
3951 | int c; | |
3952 | expressionS exp; | |
3953 | char *stop = NULL; | |
fb25138b | 3954 | char stopc = 0; |
252b5132 RH |
3955 | |
3956 | #ifdef md_flush_pending_output | |
3957 | md_flush_pending_output (); | |
3958 | #endif | |
3959 | ||
3960 | if (flag_mri) | |
3961 | stop = mri_comment_field (&stopc); | |
3962 | ||
3963 | if (is_it_end_of_statement ()) | |
3964 | { | |
3965 | demand_empty_rest_of_line (); | |
3966 | if (flag_mri) | |
3967 | mri_comment_end (stop, stopc); | |
3968 | return; | |
3969 | } | |
3970 | ||
cc1bc22a AM |
3971 | #ifdef TC_ADDRESS_BYTES |
3972 | if (nbytes == 0) | |
3973 | nbytes = TC_ADDRESS_BYTES (); | |
3974 | #endif | |
3975 | ||
252b5132 RH |
3976 | #ifdef md_cons_align |
3977 | md_cons_align (nbytes); | |
3978 | #endif | |
3979 | ||
3980 | c = 0; | |
3981 | do | |
3982 | { | |
62ebcb5c | 3983 | TC_PARSE_CONS_RETURN_TYPE ret = TC_PARSE_CONS_RETURN_NONE; |
bf7279d5 AM |
3984 | #ifdef TC_CONS_FIX_CHECK |
3985 | fixS **cur_fix = &frchain_now->fix_tail; | |
3986 | ||
3987 | if (*cur_fix != NULL) | |
3988 | cur_fix = &(*cur_fix)->fx_next; | |
3989 | #endif | |
62ebcb5c | 3990 | |
abd63a32 | 3991 | #ifdef TC_M68K |
252b5132 RH |
3992 | if (flag_m68k_mri) |
3993 | parse_mri_cons (&exp, (unsigned int) nbytes); | |
3994 | else | |
abd63a32 | 3995 | #endif |
fa94de6b | 3996 | { |
d02603dc | 3997 | #if 0 |
847d4311 NS |
3998 | if (*input_line_pointer == '"') |
3999 | { | |
4000 | as_bad (_("unexpected `\"' in expression")); | |
4001 | ignore_rest_of_line (); | |
4002 | return; | |
4003 | } | |
d02603dc | 4004 | #endif |
62ebcb5c | 4005 | ret = TC_PARSE_CONS_EXPRESSION (&exp, (unsigned int) nbytes); |
847d4311 | 4006 | } |
252b5132 RH |
4007 | |
4008 | if (rva) | |
4009 | { | |
4010 | if (exp.X_op == O_symbol) | |
4011 | exp.X_op = O_symbol_rva; | |
4012 | else | |
4013 | as_fatal (_("rva without symbol")); | |
4014 | } | |
62ebcb5c | 4015 | emit_expr_with_reloc (&exp, (unsigned int) nbytes, ret); |
bf7279d5 AM |
4016 | #ifdef TC_CONS_FIX_CHECK |
4017 | TC_CONS_FIX_CHECK (&exp, nbytes, *cur_fix); | |
4018 | #endif | |
252b5132 RH |
4019 | ++c; |
4020 | } | |
4021 | while (*input_line_pointer++ == ','); | |
4022 | ||
4023 | /* In MRI mode, after an odd number of bytes, we must align to an | |
4024 | even word boundary, unless the next instruction is a dc.b, ds.b | |
4025 | or dcb.b. */ | |
4026 | if (flag_mri && nbytes == 1 && (c & 1) != 0) | |
4027 | mri_pending_align = 1; | |
4028 | ||
041ff4dd | 4029 | input_line_pointer--; /* Put terminator back into stream. */ |
252b5132 RH |
4030 | |
4031 | demand_empty_rest_of_line (); | |
4032 | ||
4033 | if (flag_mri) | |
4034 | mri_comment_end (stop, stopc); | |
4035 | } | |
4036 | ||
252b5132 | 4037 | void |
39e6acbd | 4038 | cons (int size) |
252b5132 RH |
4039 | { |
4040 | cons_worker (size, 0); | |
4041 | } | |
4042 | ||
041ff4dd | 4043 | void |
39e6acbd | 4044 | s_rva (int size) |
252b5132 RH |
4045 | { |
4046 | cons_worker (size, 1); | |
4047 | } | |
4048 | ||
05e9452c AM |
4049 | /* .reloc offset, reloc_name, symbol+addend. */ |
4050 | ||
b38ead21 | 4051 | static void |
05e9452c AM |
4052 | s_reloc (int ignore ATTRIBUTE_UNUSED) |
4053 | { | |
4054 | char *stop = NULL; | |
4055 | char stopc = 0; | |
4056 | expressionS exp; | |
4057 | char *r_name; | |
4058 | int c; | |
4059 | struct reloc_list *reloc; | |
cd0bbe6e TS |
4060 | struct _bfd_rel { const char * name; bfd_reloc_code_real_type code; }; |
4061 | static struct _bfd_rel bfd_relocs[] = | |
4062 | { | |
740bdc67 | 4063 | { "NONE", BFD_RELOC_NONE }, |
cd0bbe6e | 4064 | { "8", BFD_RELOC_8 }, |
740bdc67 AM |
4065 | { "16", BFD_RELOC_16 }, |
4066 | { "32", BFD_RELOC_32 }, | |
4067 | { "64", BFD_RELOC_64 } | |
4068 | }; | |
05e9452c | 4069 | |
1e9cc1c2 | 4070 | reloc = (struct reloc_list *) xmalloc (sizeof (*reloc)); |
05e9452c AM |
4071 | |
4072 | if (flag_mri) | |
4073 | stop = mri_comment_field (&stopc); | |
4074 | ||
4075 | expression (&exp); | |
4076 | switch (exp.X_op) | |
4077 | { | |
4078 | case O_illegal: | |
4079 | case O_absent: | |
4080 | case O_big: | |
4081 | case O_register: | |
4082 | as_bad (_("missing or bad offset expression")); | |
4083 | goto err_out; | |
4084 | case O_constant: | |
4085 | exp.X_add_symbol = section_symbol (now_seg); | |
4086 | exp.X_op = O_symbol; | |
4087 | /* Fall thru */ | |
4088 | case O_symbol: | |
4089 | if (exp.X_add_number == 0) | |
4090 | { | |
4091 | reloc->u.a.offset_sym = exp.X_add_symbol; | |
4092 | break; | |
4093 | } | |
4094 | /* Fall thru */ | |
4095 | default: | |
4096 | reloc->u.a.offset_sym = make_expr_symbol (&exp); | |
4097 | break; | |
4098 | } | |
4099 | ||
4100 | SKIP_WHITESPACE (); | |
4101 | if (*input_line_pointer != ',') | |
4102 | { | |
4103 | as_bad (_("missing reloc type")); | |
4104 | goto err_out; | |
4105 | } | |
4106 | ||
4107 | ++input_line_pointer; | |
4108 | SKIP_WHITESPACE (); | |
d02603dc | 4109 | c = get_symbol_name (& r_name); |
740bdc67 AM |
4110 | if (strncasecmp (r_name, "BFD_RELOC_", 10) == 0) |
4111 | { | |
4112 | unsigned int i; | |
4113 | ||
4114 | for (reloc->u.a.howto = NULL, i = 0; i < ARRAY_SIZE (bfd_relocs); i++) | |
4115 | if (strcasecmp (r_name + 10, bfd_relocs[i].name) == 0) | |
4116 | { | |
4117 | reloc->u.a.howto = bfd_reloc_type_lookup (stdoutput, | |
4118 | bfd_relocs[i].code); | |
4119 | break; | |
4120 | } | |
4121 | } | |
4122 | else | |
4123 | reloc->u.a.howto = bfd_reloc_name_lookup (stdoutput, r_name); | |
05e9452c AM |
4124 | *input_line_pointer = c; |
4125 | if (reloc->u.a.howto == NULL) | |
4126 | { | |
4127 | as_bad (_("unrecognized reloc type")); | |
4128 | goto err_out; | |
4129 | } | |
4130 | ||
4131 | exp.X_op = O_absent; | |
d02603dc | 4132 | SKIP_WHITESPACE_AFTER_NAME (); |
05e9452c AM |
4133 | if (*input_line_pointer == ',') |
4134 | { | |
4135 | ++input_line_pointer; | |
c188d0bb | 4136 | expression (&exp); |
05e9452c AM |
4137 | } |
4138 | switch (exp.X_op) | |
4139 | { | |
4140 | case O_illegal: | |
4141 | case O_big: | |
4142 | case O_register: | |
4143 | as_bad (_("bad reloc expression")); | |
4144 | err_out: | |
4145 | ignore_rest_of_line (); | |
4146 | free (reloc); | |
4147 | if (flag_mri) | |
4148 | mri_comment_end (stop, stopc); | |
4149 | return; | |
4150 | case O_absent: | |
4151 | reloc->u.a.sym = NULL; | |
4152 | reloc->u.a.addend = 0; | |
4153 | break; | |
4154 | case O_constant: | |
4155 | reloc->u.a.sym = NULL; | |
4156 | reloc->u.a.addend = exp.X_add_number; | |
4157 | break; | |
4158 | case O_symbol: | |
4159 | reloc->u.a.sym = exp.X_add_symbol; | |
4160 | reloc->u.a.addend = exp.X_add_number; | |
4161 | break; | |
4162 | default: | |
4163 | reloc->u.a.sym = make_expr_symbol (&exp); | |
4164 | reloc->u.a.addend = 0; | |
4165 | break; | |
4166 | } | |
4167 | ||
3b4dbbbf | 4168 | reloc->file = as_where (&reloc->line); |
05e9452c AM |
4169 | reloc->next = reloc_list; |
4170 | reloc_list = reloc; | |
4171 | ||
4172 | demand_empty_rest_of_line (); | |
4173 | if (flag_mri) | |
4174 | mri_comment_end (stop, stopc); | |
4175 | } | |
4176 | ||
252b5132 RH |
4177 | /* Put the contents of expression EXP into the object file using |
4178 | NBYTES bytes. If need_pass_2 is 1, this does nothing. */ | |
4179 | ||
4180 | void | |
39e6acbd | 4181 | emit_expr (expressionS *exp, unsigned int nbytes) |
62ebcb5c AM |
4182 | { |
4183 | emit_expr_with_reloc (exp, nbytes, TC_PARSE_CONS_RETURN_NONE); | |
4184 | } | |
4185 | ||
4186 | void | |
4187 | emit_expr_with_reloc (expressionS *exp, | |
4188 | unsigned int nbytes, | |
4189 | TC_PARSE_CONS_RETURN_TYPE reloc) | |
252b5132 RH |
4190 | { |
4191 | operatorT op; | |
3d540e93 | 4192 | char *p; |
252b5132 RH |
4193 | valueT extra_digit = 0; |
4194 | ||
4195 | /* Don't do anything if we are going to make another pass. */ | |
4196 | if (need_pass_2) | |
4197 | return; | |
4198 | ||
4bc25101 | 4199 | frag_grow (nbytes); |
ed7d5d1a | 4200 | dot_value = frag_now_fix (); |
8e723a10 | 4201 | dot_frag = frag_now; |
ed7d5d1a | 4202 | |
252b5132 RH |
4203 | #ifndef NO_LISTING |
4204 | #ifdef OBJ_ELF | |
4205 | /* When gcc emits DWARF 1 debugging pseudo-ops, a line number will | |
4206 | appear as a four byte positive constant in the .line section, | |
4207 | followed by a 2 byte 0xffff. Look for that case here. */ | |
4208 | { | |
4209 | static int dwarf_line = -1; | |
4210 | ||
4211 | if (strcmp (segment_name (now_seg), ".line") != 0) | |
4212 | dwarf_line = -1; | |
4213 | else if (dwarf_line >= 0 | |
4214 | && nbytes == 2 | |
4215 | && exp->X_op == O_constant | |
4216 | && (exp->X_add_number == -1 || exp->X_add_number == 0xffff)) | |
4217 | listing_source_line ((unsigned int) dwarf_line); | |
4218 | else if (nbytes == 4 | |
4219 | && exp->X_op == O_constant | |
4220 | && exp->X_add_number >= 0) | |
4221 | dwarf_line = exp->X_add_number; | |
4222 | else | |
4223 | dwarf_line = -1; | |
4224 | } | |
4225 | ||
4226 | /* When gcc emits DWARF 1 debugging pseudo-ops, a file name will | |
4227 | appear as a 2 byte TAG_compile_unit (0x11) followed by a 2 byte | |
4228 | AT_sibling (0x12) followed by a four byte address of the sibling | |
4229 | followed by a 2 byte AT_name (0x38) followed by the name of the | |
4230 | file. We look for that case here. */ | |
4231 | { | |
4232 | static int dwarf_file = 0; | |
4233 | ||
4234 | if (strcmp (segment_name (now_seg), ".debug") != 0) | |
4235 | dwarf_file = 0; | |
4236 | else if (dwarf_file == 0 | |
4237 | && nbytes == 2 | |
4238 | && exp->X_op == O_constant | |
4239 | && exp->X_add_number == 0x11) | |
4240 | dwarf_file = 1; | |
4241 | else if (dwarf_file == 1 | |
4242 | && nbytes == 2 | |
4243 | && exp->X_op == O_constant | |
4244 | && exp->X_add_number == 0x12) | |
4245 | dwarf_file = 2; | |
4246 | else if (dwarf_file == 2 | |
4247 | && nbytes == 4) | |
4248 | dwarf_file = 3; | |
4249 | else if (dwarf_file == 3 | |
4250 | && nbytes == 2 | |
4251 | && exp->X_op == O_constant | |
4252 | && exp->X_add_number == 0x38) | |
4253 | dwarf_file = 4; | |
4254 | else | |
4255 | dwarf_file = 0; | |
4256 | ||
4257 | /* The variable dwarf_file_string tells stringer that the string | |
4258 | may be the name of the source file. */ | |
4259 | if (dwarf_file == 4) | |
4260 | dwarf_file_string = 1; | |
4261 | else | |
4262 | dwarf_file_string = 0; | |
4263 | } | |
4264 | #endif | |
4265 | #endif | |
4266 | ||
4267 | if (check_eh_frame (exp, &nbytes)) | |
4268 | return; | |
4269 | ||
4270 | op = exp->X_op; | |
4271 | ||
252b5132 RH |
4272 | /* Handle a negative bignum. */ |
4273 | if (op == O_uminus | |
4274 | && exp->X_add_number == 0 | |
2b47531b ILT |
4275 | && symbol_get_value_expression (exp->X_add_symbol)->X_op == O_big |
4276 | && symbol_get_value_expression (exp->X_add_symbol)->X_add_number > 0) | |
252b5132 RH |
4277 | { |
4278 | int i; | |
4279 | unsigned long carry; | |
4280 | ||
2b47531b | 4281 | exp = symbol_get_value_expression (exp->X_add_symbol); |
252b5132 RH |
4282 | |
4283 | /* Negate the bignum: one's complement each digit and add 1. */ | |
4284 | carry = 1; | |
4285 | for (i = 0; i < exp->X_add_number; i++) | |
4286 | { | |
4287 | unsigned long next; | |
4288 | ||
041ff4dd | 4289 | next = (((~(generic_bignum[i] & LITTLENUM_MASK)) |
252b5132 RH |
4290 | & LITTLENUM_MASK) |
4291 | + carry); | |
4292 | generic_bignum[i] = next & LITTLENUM_MASK; | |
4293 | carry = next >> LITTLENUM_NUMBER_OF_BITS; | |
4294 | } | |
4295 | ||
4296 | /* We can ignore any carry out, because it will be handled by | |
4297 | extra_digit if it is needed. */ | |
4298 | ||
4299 | extra_digit = (valueT) -1; | |
4300 | op = O_big; | |
4301 | } | |
4302 | ||
4303 | if (op == O_absent || op == O_illegal) | |
4304 | { | |
4305 | as_warn (_("zero assumed for missing expression")); | |
4306 | exp->X_add_number = 0; | |
4307 | op = O_constant; | |
4308 | } | |
4309 | else if (op == O_big && exp->X_add_number <= 0) | |
4310 | { | |
0e389e77 | 4311 | as_bad (_("floating point number invalid")); |
252b5132 RH |
4312 | exp->X_add_number = 0; |
4313 | op = O_constant; | |
4314 | } | |
4315 | else if (op == O_register) | |
4316 | { | |
4317 | as_warn (_("register value used as expression")); | |
4318 | op = O_constant; | |
4319 | } | |
4320 | ||
ec9ab52c JB |
4321 | /* Allow `.word 0' in the absolute section. */ |
4322 | if (now_seg == absolute_section) | |
4323 | { | |
4324 | if (op != O_constant || exp->X_add_number != 0) | |
4325 | as_bad (_("attempt to store value in absolute section")); | |
4326 | abs_section_offset += nbytes; | |
4327 | return; | |
4328 | } | |
4329 | ||
4330 | /* Allow `.word 0' in BSS style sections. */ | |
4331 | if ((op != O_constant || exp->X_add_number != 0) && in_bss ()) | |
4332 | as_bad (_("attempt to store non-zero value in section `%s'"), | |
4333 | segment_name (now_seg)); | |
4334 | ||
252b5132 RH |
4335 | p = frag_more ((int) nbytes); |
4336 | ||
62ebcb5c AM |
4337 | if (reloc != TC_PARSE_CONS_RETURN_NONE) |
4338 | { | |
4339 | emit_expr_fix (exp, nbytes, frag_now, p, reloc); | |
4340 | return; | |
4341 | } | |
4342 | ||
252b5132 RH |
4343 | #ifndef WORKING_DOT_WORD |
4344 | /* If we have the difference of two symbols in a word, save it on | |
4345 | the broken_words list. See the code in write.c. */ | |
4346 | if (op == O_subtract && nbytes == 2) | |
4347 | { | |
4348 | struct broken_word *x; | |
4349 | ||
4350 | x = (struct broken_word *) xmalloc (sizeof (struct broken_word)); | |
4351 | x->next_broken_word = broken_words; | |
4352 | broken_words = x; | |
4353 | x->seg = now_seg; | |
4354 | x->subseg = now_subseg; | |
4355 | x->frag = frag_now; | |
4356 | x->word_goes_here = p; | |
4357 | x->dispfrag = 0; | |
4358 | x->add = exp->X_add_symbol; | |
4359 | x->sub = exp->X_op_symbol; | |
4360 | x->addnum = exp->X_add_number; | |
4361 | x->added = 0; | |
dc59a897 | 4362 | x->use_jump = 0; |
252b5132 RH |
4363 | new_broken_words++; |
4364 | return; | |
4365 | } | |
4366 | #endif | |
4367 | ||
4368 | /* If we have an integer, but the number of bytes is too large to | |
4369 | pass to md_number_to_chars, handle it as a bignum. */ | |
4370 | if (op == O_constant && nbytes > sizeof (valueT)) | |
4371 | { | |
e5604d79 | 4372 | extra_digit = exp->X_unsigned ? 0 : -1; |
956a6ba3 | 4373 | convert_to_bignum (exp, !exp->X_unsigned); |
e5604d79 | 4374 | op = O_big; |
252b5132 RH |
4375 | } |
4376 | ||
4377 | if (op == O_constant) | |
4378 | { | |
3d540e93 NC |
4379 | valueT get; |
4380 | valueT use; | |
4381 | valueT mask; | |
252b5132 | 4382 | valueT hibit; |
3d540e93 | 4383 | valueT unmask; |
252b5132 RH |
4384 | |
4385 | /* JF << of >= number of bits in the object is undefined. In | |
041ff4dd | 4386 | particular SPARC (Sun 4) has problems. */ |
252b5132 RH |
4387 | if (nbytes >= sizeof (valueT)) |
4388 | { | |
4389 | mask = 0; | |
4390 | if (nbytes > sizeof (valueT)) | |
4391 | hibit = 0; | |
4392 | else | |
4393 | hibit = (valueT) 1 << (nbytes * BITS_PER_CHAR - 1); | |
4394 | } | |
4395 | else | |
4396 | { | |
041ff4dd | 4397 | /* Don't store these bits. */ |
252b5132 RH |
4398 | mask = ~(valueT) 0 << (BITS_PER_CHAR * nbytes); |
4399 | hibit = (valueT) 1 << (nbytes * BITS_PER_CHAR - 1); | |
4400 | } | |
4401 | ||
041ff4dd | 4402 | unmask = ~mask; /* Do store these bits. */ |
252b5132 RH |
4403 | |
4404 | #ifdef NEVER | |
4405 | "Do this mod if you want every overflow check to assume SIGNED 2's complement data."; | |
041ff4dd | 4406 | mask = ~(unmask >> 1); /* Includes sign bit now. */ |
252b5132 RH |
4407 | #endif |
4408 | ||
4409 | get = exp->X_add_number; | |
4410 | use = get & unmask; | |
4411 | if ((get & mask) != 0 | |
4412 | && ((get & mask) != mask | |
4413 | || (get & hibit) == 0)) | |
041ff4dd | 4414 | { /* Leading bits contain both 0s & 1s. */ |
b6ac5419 | 4415 | #if defined (BFD64) && BFD_HOST_64BIT_LONG_LONG |
6e3d6dc1 | 4416 | #ifndef __MSVCRT__ |
5c612369 NC |
4417 | as_warn (_("value 0x%llx truncated to 0x%llx"), |
4418 | (unsigned long long) get, (unsigned long long) use); | |
6e3d6dc1 NC |
4419 | #else |
4420 | as_warn (_("value 0x%I64x truncated to 0x%I64x"), | |
4421 | (unsigned long long) get, (unsigned long long) use); | |
4422 | #endif | |
b6ac5419 AM |
4423 | #else |
4424 | as_warn (_("value 0x%lx truncated to 0x%lx"), | |
4425 | (unsigned long) get, (unsigned long) use); | |
4426 | #endif | |
252b5132 | 4427 | } |
041ff4dd | 4428 | /* Put bytes in right order. */ |
252b5132 RH |
4429 | md_number_to_chars (p, use, (int) nbytes); |
4430 | } | |
4431 | else if (op == O_big) | |
4432 | { | |
4433 | unsigned int size; | |
4434 | LITTLENUM_TYPE *nums; | |
4435 | ||
252b5132 RH |
4436 | size = exp->X_add_number * CHARS_PER_LITTLENUM; |
4437 | if (nbytes < size) | |
4438 | { | |
93d90f46 AM |
4439 | int i = nbytes / CHARS_PER_LITTLENUM; |
4440 | if (i != 0) | |
4441 | { | |
4442 | LITTLENUM_TYPE sign = 0; | |
4443 | if ((generic_bignum[--i] | |
4444 | & (1 << (LITTLENUM_NUMBER_OF_BITS - 1))) != 0) | |
4445 | sign = ~(LITTLENUM_TYPE) 0; | |
4446 | while (++i < exp->X_add_number) | |
4447 | if (generic_bignum[i] != sign) | |
4448 | break; | |
4449 | } | |
4450 | if (i < exp->X_add_number) | |
4451 | as_warn (_("bignum truncated to %d bytes"), nbytes); | |
252b5132 RH |
4452 | size = nbytes; |
4453 | } | |
4454 | ||
93d90f46 AM |
4455 | if (nbytes == 1) |
4456 | { | |
4457 | md_number_to_chars (p, (valueT) generic_bignum[0], 1); | |
4458 | return; | |
4459 | } | |
4460 | know (nbytes % CHARS_PER_LITTLENUM == 0); | |
4461 | ||
252b5132 RH |
4462 | if (target_big_endian) |
4463 | { | |
4464 | while (nbytes > size) | |
4465 | { | |
4466 | md_number_to_chars (p, extra_digit, CHARS_PER_LITTLENUM); | |
4467 | nbytes -= CHARS_PER_LITTLENUM; | |
4468 | p += CHARS_PER_LITTLENUM; | |
4469 | } | |
4470 | ||
4471 | nums = generic_bignum + size / CHARS_PER_LITTLENUM; | |
ceac3f62 | 4472 | while (size >= CHARS_PER_LITTLENUM) |
252b5132 RH |
4473 | { |
4474 | --nums; | |
4475 | md_number_to_chars (p, (valueT) *nums, CHARS_PER_LITTLENUM); | |
4476 | size -= CHARS_PER_LITTLENUM; | |
4477 | p += CHARS_PER_LITTLENUM; | |
4478 | } | |
4479 | } | |
4480 | else | |
4481 | { | |
4482 | nums = generic_bignum; | |
ceac3f62 | 4483 | while (size >= CHARS_PER_LITTLENUM) |
252b5132 RH |
4484 | { |
4485 | md_number_to_chars (p, (valueT) *nums, CHARS_PER_LITTLENUM); | |
4486 | ++nums; | |
4487 | size -= CHARS_PER_LITTLENUM; | |
4488 | p += CHARS_PER_LITTLENUM; | |
4489 | nbytes -= CHARS_PER_LITTLENUM; | |
4490 | } | |
4491 | ||
ceac3f62 | 4492 | while (nbytes >= CHARS_PER_LITTLENUM) |
252b5132 RH |
4493 | { |
4494 | md_number_to_chars (p, extra_digit, CHARS_PER_LITTLENUM); | |
4495 | nbytes -= CHARS_PER_LITTLENUM; | |
4496 | p += CHARS_PER_LITTLENUM; | |
4497 | } | |
4498 | } | |
4499 | } | |
4500 | else | |
62ebcb5c | 4501 | emit_expr_fix (exp, nbytes, frag_now, p, TC_PARSE_CONS_RETURN_NONE); |
7ddd14de BW |
4502 | } |
4503 | ||
4504 | void | |
62ebcb5c | 4505 | emit_expr_fix (expressionS *exp, unsigned int nbytes, fragS *frag, char *p, |
00c06fdc | 4506 | TC_PARSE_CONS_RETURN_TYPE r ATTRIBUTE_UNUSED) |
7ddd14de | 4507 | { |
62ebcb5c AM |
4508 | int offset = 0; |
4509 | unsigned int size = nbytes; | |
4510 | ||
4511 | memset (p, 0, size); | |
252b5132 | 4512 | |
7ddd14de | 4513 | /* Generate a fixS to record the symbol value. */ |
252b5132 | 4514 | |
252b5132 | 4515 | #ifdef TC_CONS_FIX_NEW |
62ebcb5c | 4516 | TC_CONS_FIX_NEW (frag, p - frag->fr_literal + offset, size, exp, r); |
252b5132 | 4517 | #else |
62ebcb5c AM |
4518 | if (r != TC_PARSE_CONS_RETURN_NONE) |
4519 | { | |
4520 | reloc_howto_type *reloc_howto; | |
252b5132 | 4521 | |
62ebcb5c AM |
4522 | reloc_howto = bfd_reloc_type_lookup (stdoutput, r); |
4523 | size = bfd_get_reloc_size (reloc_howto); | |
4524 | ||
4525 | if (size > nbytes) | |
4526 | { | |
4527 | as_bad (_("%s relocations do not fit in %u bytes\n"), | |
4528 | reloc_howto->name, nbytes); | |
4529 | return; | |
4530 | } | |
4531 | else if (target_big_endian) | |
4532 | offset = nbytes - size; | |
4533 | } | |
4534 | else | |
4535 | switch (size) | |
7ddd14de BW |
4536 | { |
4537 | case 1: | |
4538 | r = BFD_RELOC_8; | |
4539 | break; | |
4540 | case 2: | |
4541 | r = BFD_RELOC_16; | |
4542 | break; | |
d4f4f3fb AM |
4543 | case 3: |
4544 | r = BFD_RELOC_24; | |
4545 | break; | |
7ddd14de BW |
4546 | case 4: |
4547 | r = BFD_RELOC_32; | |
4548 | break; | |
4549 | case 8: | |
4550 | r = BFD_RELOC_64; | |
4551 | break; | |
4552 | default: | |
62ebcb5c AM |
4553 | as_bad (_("unsupported BFD relocation size %u"), size); |
4554 | return; | |
252b5132 | 4555 | } |
62ebcb5c AM |
4556 | fix_new_exp (frag, p - frag->fr_literal + offset, size, |
4557 | exp, 0, r); | |
252b5132 | 4558 | #endif |
252b5132 RH |
4559 | } |
4560 | \f | |
4561 | #ifdef BITFIELD_CONS_EXPRESSIONS | |
4562 | ||
4563 | /* i960 assemblers, (eg, asm960), allow bitfields after ".byte" as | |
4564 | w:x,y:z, where w and y are bitwidths and x and y are values. They | |
4565 | then pack them all together. We do a little better in that we allow | |
4566 | them in words, longs, etc. and we'll pack them in target byte order | |
4567 | for you. | |
4568 | ||
47eebc20 | 4569 | The rules are: pack least significant bit first, if a field doesn't |
252b5132 RH |
4570 | entirely fit, put it in the next unit. Overflowing the bitfield is |
4571 | explicitly *not* even a warning. The bitwidth should be considered | |
4572 | a "mask". | |
4573 | ||
4574 | To use this function the tc-XXX.h file should define | |
4575 | BITFIELD_CONS_EXPRESSIONS. */ | |
4576 | ||
041ff4dd | 4577 | static void |
252b5132 RH |
4578 | parse_bitfield_cons (exp, nbytes) |
4579 | expressionS *exp; | |
4580 | unsigned int nbytes; | |
4581 | { | |
4582 | unsigned int bits_available = BITS_PER_CHAR * nbytes; | |
4583 | char *hold = input_line_pointer; | |
4584 | ||
4585 | (void) expression (exp); | |
4586 | ||
4587 | if (*input_line_pointer == ':') | |
041ff4dd NC |
4588 | { |
4589 | /* Bitfields. */ | |
252b5132 RH |
4590 | long value = 0; |
4591 | ||
4592 | for (;;) | |
4593 | { | |
4594 | unsigned long width; | |
4595 | ||
4596 | if (*input_line_pointer != ':') | |
4597 | { | |
4598 | input_line_pointer = hold; | |
4599 | break; | |
041ff4dd | 4600 | } /* Next piece is not a bitfield. */ |
252b5132 RH |
4601 | |
4602 | /* In the general case, we can't allow | |
4603 | full expressions with symbol | |
4604 | differences and such. The relocation | |
4605 | entries for symbols not defined in this | |
4606 | assembly would require arbitrary field | |
4607 | widths, positions, and masks which most | |
4608 | of our current object formats don't | |
4609 | support. | |
4610 | ||
4611 | In the specific case where a symbol | |
4612 | *is* defined in this assembly, we | |
4613 | *could* build fixups and track it, but | |
4614 | this could lead to confusion for the | |
4615 | backends. I'm lazy. I'll take any | |
4616 | SEG_ABSOLUTE. I think that means that | |
4617 | you can use a previous .set or | |
041ff4dd | 4618 | .equ type symbol. xoxorich. */ |
252b5132 RH |
4619 | |
4620 | if (exp->X_op == O_absent) | |
4621 | { | |
4622 | as_warn (_("using a bit field width of zero")); | |
4623 | exp->X_add_number = 0; | |
4624 | exp->X_op = O_constant; | |
041ff4dd | 4625 | } /* Implied zero width bitfield. */ |
252b5132 RH |
4626 | |
4627 | if (exp->X_op != O_constant) | |
4628 | { | |
4629 | *input_line_pointer = '\0'; | |
4630 | as_bad (_("field width \"%s\" too complex for a bitfield"), hold); | |
4631 | *input_line_pointer = ':'; | |
4632 | demand_empty_rest_of_line (); | |
4633 | return; | |
041ff4dd | 4634 | } /* Too complex. */ |
252b5132 RH |
4635 | |
4636 | if ((width = exp->X_add_number) > (BITS_PER_CHAR * nbytes)) | |
4637 | { | |
4638 | as_warn (_("field width %lu too big to fit in %d bytes: truncated to %d bits"), | |
4639 | width, nbytes, (BITS_PER_CHAR * nbytes)); | |
4640 | width = BITS_PER_CHAR * nbytes; | |
041ff4dd | 4641 | } /* Too big. */ |
252b5132 RH |
4642 | |
4643 | if (width > bits_available) | |
4644 | { | |
4645 | /* FIXME-SOMEDAY: backing up and reparsing is wasteful. */ | |
4646 | input_line_pointer = hold; | |
4647 | exp->X_add_number = value; | |
4648 | break; | |
041ff4dd | 4649 | } /* Won't fit. */ |
252b5132 | 4650 | |
ef99799a KH |
4651 | /* Skip ':'. */ |
4652 | hold = ++input_line_pointer; | |
252b5132 RH |
4653 | |
4654 | (void) expression (exp); | |
4655 | if (exp->X_op != O_constant) | |
4656 | { | |
4657 | char cache = *input_line_pointer; | |
4658 | ||
4659 | *input_line_pointer = '\0'; | |
4660 | as_bad (_("field value \"%s\" too complex for a bitfield"), hold); | |
4661 | *input_line_pointer = cache; | |
4662 | demand_empty_rest_of_line (); | |
4663 | return; | |
041ff4dd | 4664 | } /* Too complex. */ |
252b5132 | 4665 | |
8d3842cd | 4666 | value |= ((~(-(1 << width)) & exp->X_add_number) |
252b5132 RH |
4667 | << ((BITS_PER_CHAR * nbytes) - bits_available)); |
4668 | ||
4669 | if ((bits_available -= width) == 0 | |
4670 | || is_it_end_of_statement () | |
4671 | || *input_line_pointer != ',') | |
4672 | { | |
4673 | break; | |
041ff4dd | 4674 | } /* All the bitfields we're gonna get. */ |
252b5132 RH |
4675 | |
4676 | hold = ++input_line_pointer; | |
4677 | (void) expression (exp); | |
041ff4dd | 4678 | } |
252b5132 RH |
4679 | |
4680 | exp->X_add_number = value; | |
4681 | exp->X_op = O_constant; | |
4682 | exp->X_unsigned = 1; | |
956a6ba3 | 4683 | exp->X_extrabit = 0; |
041ff4dd NC |
4684 | } |
4685 | } | |
252b5132 RH |
4686 | |
4687 | #endif /* BITFIELD_CONS_EXPRESSIONS */ | |
4688 | \f | |
4689 | /* Handle an MRI style string expression. */ | |
4690 | ||
abd63a32 | 4691 | #ifdef TC_M68K |
252b5132 | 4692 | static void |
62ebcb5c | 4693 | parse_mri_cons (expressionS *exp, unsigned int nbytes) |
252b5132 RH |
4694 | { |
4695 | if (*input_line_pointer != '\'' | |
4696 | && (input_line_pointer[1] != '\'' | |
4697 | || (*input_line_pointer != 'A' | |
4698 | && *input_line_pointer != 'E'))) | |
1e539319 | 4699 | (void) TC_PARSE_CONS_EXPRESSION (exp, nbytes); |
252b5132 RH |
4700 | else |
4701 | { | |
4702 | unsigned int scan; | |
4703 | unsigned int result = 0; | |
4704 | ||
4705 | /* An MRI style string. Cut into as many bytes as will fit into | |
4706 | a nbyte chunk, left justify if necessary, and separate with | |
4707 | commas so we can try again later. */ | |
4708 | if (*input_line_pointer == 'A') | |
4709 | ++input_line_pointer; | |
4710 | else if (*input_line_pointer == 'E') | |
4711 | { | |
4712 | as_bad (_("EBCDIC constants are not supported")); | |
4713 | ++input_line_pointer; | |
4714 | } | |
4715 | ||
4716 | input_line_pointer++; | |
4717 | for (scan = 0; scan < nbytes; scan++) | |
4718 | { | |
4719 | if (*input_line_pointer == '\'') | |
4720 | { | |
4721 | if (input_line_pointer[1] == '\'') | |
4722 | { | |
4723 | input_line_pointer++; | |
4724 | } | |
4725 | else | |
4726 | break; | |
4727 | } | |
4728 | result = (result << 8) | (*input_line_pointer++); | |
4729 | } | |
4730 | ||
041ff4dd | 4731 | /* Left justify. */ |
252b5132 RH |
4732 | while (scan < nbytes) |
4733 | { | |
4734 | result <<= 8; | |
4735 | scan++; | |
4736 | } | |
f0e652b4 | 4737 | |
041ff4dd | 4738 | /* Create correct expression. */ |
252b5132 RH |
4739 | exp->X_op = O_constant; |
4740 | exp->X_add_number = result; | |
f0e652b4 | 4741 | |
041ff4dd | 4742 | /* Fake it so that we can read the next char too. */ |
252b5132 RH |
4743 | if (input_line_pointer[0] != '\'' || |
4744 | (input_line_pointer[0] == '\'' && input_line_pointer[1] == '\'')) | |
4745 | { | |
4746 | input_line_pointer -= 2; | |
4747 | input_line_pointer[0] = ','; | |
4748 | input_line_pointer[1] = '\''; | |
4749 | } | |
4750 | else | |
4751 | input_line_pointer++; | |
4752 | } | |
4753 | } | |
abd63a32 | 4754 | #endif /* TC_M68K */ |
252b5132 RH |
4755 | \f |
4756 | #ifdef REPEAT_CONS_EXPRESSIONS | |
4757 | ||
4758 | /* Parse a repeat expression for cons. This is used by the MIPS | |
4759 | assembler. The format is NUMBER:COUNT; NUMBER appears in the | |
4760 | object file COUNT times. | |
4761 | ||
4762 | To use this for a target, define REPEAT_CONS_EXPRESSIONS. */ | |
4763 | ||
4764 | static void | |
4765 | parse_repeat_cons (exp, nbytes) | |
4766 | expressionS *exp; | |
4767 | unsigned int nbytes; | |
4768 | { | |
4769 | expressionS count; | |
3d540e93 | 4770 | int i; |
252b5132 RH |
4771 | |
4772 | expression (exp); | |
4773 | ||
4774 | if (*input_line_pointer != ':') | |
4775 | { | |
4776 | /* No repeat count. */ | |
4777 | return; | |
4778 | } | |
4779 | ||
4780 | ++input_line_pointer; | |
4781 | expression (&count); | |
4782 | if (count.X_op != O_constant | |
4783 | || count.X_add_number <= 0) | |
4784 | { | |
0e389e77 | 4785 | as_warn (_("unresolvable or nonpositive repeat count; using 1")); |
252b5132 RH |
4786 | return; |
4787 | } | |
4788 | ||
4789 | /* The cons function is going to output this expression once. So we | |
4790 | output it count - 1 times. */ | |
4791 | for (i = count.X_add_number - 1; i > 0; i--) | |
4792 | emit_expr (exp, nbytes); | |
4793 | } | |
4794 | ||
4795 | #endif /* REPEAT_CONS_EXPRESSIONS */ | |
4796 | \f | |
4797 | /* Parse a floating point number represented as a hex constant. This | |
4798 | permits users to specify the exact bits they want in the floating | |
4799 | point number. */ | |
4800 | ||
4801 | static int | |
39e6acbd | 4802 | hex_float (int float_type, char *bytes) |
252b5132 RH |
4803 | { |
4804 | int length; | |
4805 | int i; | |
4806 | ||
4807 | switch (float_type) | |
4808 | { | |
4809 | case 'f': | |
4810 | case 'F': | |
4811 | case 's': | |
4812 | case 'S': | |
4813 | length = 4; | |
4814 | break; | |
4815 | ||
4816 | case 'd': | |
4817 | case 'D': | |
4818 | case 'r': | |
4819 | case 'R': | |
4820 | length = 8; | |
4821 | break; | |
4822 | ||
4823 | case 'x': | |
4824 | case 'X': | |
4825 | length = 12; | |
4826 | break; | |
4827 | ||
4828 | case 'p': | |
4829 | case 'P': | |
4830 | length = 12; | |
4831 | break; | |
4832 | ||
4833 | default: | |
0e389e77 | 4834 | as_bad (_("unknown floating type type '%c'"), float_type); |
252b5132 RH |
4835 | return -1; |
4836 | } | |
4837 | ||
4838 | /* It would be nice if we could go through expression to parse the | |
4839 | hex constant, but if we get a bignum it's a pain to sort it into | |
4840 | the buffer correctly. */ | |
4841 | i = 0; | |
4842 | while (hex_p (*input_line_pointer) || *input_line_pointer == '_') | |
4843 | { | |
4844 | int d; | |
4845 | ||
4846 | /* The MRI assembler accepts arbitrary underscores strewn about | |
041ff4dd | 4847 | through the hex constant, so we ignore them as well. */ |
252b5132 RH |
4848 | if (*input_line_pointer == '_') |
4849 | { | |
4850 | ++input_line_pointer; | |
4851 | continue; | |
4852 | } | |
4853 | ||
4854 | if (i >= length) | |
4855 | { | |
0e389e77 | 4856 | as_warn (_("floating point constant too large")); |
252b5132 RH |
4857 | return -1; |
4858 | } | |
4859 | d = hex_value (*input_line_pointer) << 4; | |
4860 | ++input_line_pointer; | |
4861 | while (*input_line_pointer == '_') | |
4862 | ++input_line_pointer; | |
4863 | if (hex_p (*input_line_pointer)) | |
4864 | { | |
4865 | d += hex_value (*input_line_pointer); | |
4866 | ++input_line_pointer; | |
4867 | } | |
4868 | if (target_big_endian) | |
4869 | bytes[i] = d; | |
4870 | else | |
4871 | bytes[length - i - 1] = d; | |
4872 | ++i; | |
4873 | } | |
4874 | ||
4875 | if (i < length) | |
4876 | { | |
4877 | if (target_big_endian) | |
4878 | memset (bytes + i, 0, length - i); | |
4879 | else | |
4880 | memset (bytes, 0, length - i); | |
4881 | } | |
4882 | ||
4883 | return length; | |
4884 | } | |
4885 | ||
d6415f6c | 4886 | /* float_cons() |
f0e652b4 | 4887 | |
041ff4dd NC |
4888 | CONStruct some more frag chars of .floats .ffloats etc. |
4889 | Makes 0 or more new frags. | |
4890 | If need_pass_2 == 1, no frags are emitted. | |
4891 | This understands only floating literals, not expressions. Sorry. | |
f0e652b4 | 4892 | |
041ff4dd NC |
4893 | A floating constant is defined by atof_generic(), except it is preceded |
4894 | by 0d 0f 0g or 0h. After observing the STRANGE way my BSD AS does its | |
4895 | reading, I decided to be incompatible. This always tries to give you | |
4896 | rounded bits to the precision of the pseudo-op. Former AS did premature | |
47eebc20 | 4897 | truncation, restored noisy bits instead of trailing 0s AND gave you |
041ff4dd NC |
4898 | a choice of 2 flavours of noise according to which of 2 floating-point |
4899 | scanners you directed AS to use. | |
f0e652b4 | 4900 | |
041ff4dd | 4901 | In: input_line_pointer->whitespace before, or '0' of flonum. */ |
252b5132 RH |
4902 | |
4903 | void | |
39e6acbd | 4904 | float_cons (/* Clobbers input_line-pointer, checks end-of-line. */ |
3d540e93 | 4905 | int float_type /* 'f':.ffloat ... 'F':.float ... */) |
252b5132 | 4906 | { |
3d540e93 | 4907 | char *p; |
041ff4dd | 4908 | int length; /* Number of chars in an object. */ |
3d540e93 | 4909 | char *err; /* Error from scanning floating literal. */ |
252b5132 RH |
4910 | char temp[MAXIMUM_NUMBER_OF_CHARS_FOR_FLOAT]; |
4911 | ||
4912 | if (is_it_end_of_statement ()) | |
4913 | { | |
4914 | demand_empty_rest_of_line (); | |
4915 | return; | |
4916 | } | |
4917 | ||
ec9ab52c JB |
4918 | if (now_seg == absolute_section) |
4919 | { | |
4920 | as_bad (_("attempt to store float in absolute section")); | |
4921 | ignore_rest_of_line (); | |
4922 | return; | |
4923 | } | |
4924 | ||
4925 | if (in_bss ()) | |
4926 | { | |
4927 | as_bad (_("attempt to store float in section `%s'"), | |
4928 | segment_name (now_seg)); | |
4929 | ignore_rest_of_line (); | |
4930 | return; | |
4931 | } | |
4932 | ||
252b5132 RH |
4933 | #ifdef md_flush_pending_output |
4934 | md_flush_pending_output (); | |
4935 | #endif | |
4936 | ||
cc3f603a JM |
4937 | #ifdef md_cons_align |
4938 | md_cons_align (1); | |
4939 | #endif | |
4940 | ||
252b5132 RH |
4941 | do |
4942 | { | |
041ff4dd | 4943 | /* input_line_pointer->1st char of a flonum (we hope!). */ |
252b5132 RH |
4944 | SKIP_WHITESPACE (); |
4945 | ||
4946 | /* Skip any 0{letter} that may be present. Don't even check if the | |
d6415f6c AM |
4947 | letter is legal. Someone may invent a "z" format and this routine |
4948 | has no use for such information. Lusers beware: you get | |
4949 | diagnostics if your input is ill-conditioned. */ | |
252b5132 | 4950 | if (input_line_pointer[0] == '0' |
3882b010 | 4951 | && ISALPHA (input_line_pointer[1])) |
252b5132 RH |
4952 | input_line_pointer += 2; |
4953 | ||
4954 | /* Accept :xxxx, where the x's are hex digits, for a floating | |
d6415f6c | 4955 | point with the exact digits specified. */ |
252b5132 RH |
4956 | if (input_line_pointer[0] == ':') |
4957 | { | |
4958 | ++input_line_pointer; | |
4959 | length = hex_float (float_type, temp); | |
4960 | if (length < 0) | |
4961 | { | |
4962 | ignore_rest_of_line (); | |
4963 | return; | |
4964 | } | |
4965 | } | |
4966 | else | |
4967 | { | |
4968 | err = md_atof (float_type, temp, &length); | |
4969 | know (length <= MAXIMUM_NUMBER_OF_CHARS_FOR_FLOAT); | |
499ac353 | 4970 | know (err != NULL || length > 0); |
252b5132 RH |
4971 | if (err) |
4972 | { | |
0e389e77 | 4973 | as_bad (_("bad floating literal: %s"), err); |
252b5132 RH |
4974 | ignore_rest_of_line (); |
4975 | return; | |
4976 | } | |
4977 | } | |
4978 | ||
4979 | if (!need_pass_2) | |
4980 | { | |
4981 | int count; | |
4982 | ||
4983 | count = 1; | |
4984 | ||
4985 | #ifdef REPEAT_CONS_EXPRESSIONS | |
4986 | if (*input_line_pointer == ':') | |
4987 | { | |
4988 | expressionS count_exp; | |
4989 | ||
4990 | ++input_line_pointer; | |
4991 | expression (&count_exp); | |
f0e652b4 | 4992 | |
252b5132 RH |
4993 | if (count_exp.X_op != O_constant |
4994 | || count_exp.X_add_number <= 0) | |
041ff4dd | 4995 | as_warn (_("unresolvable or nonpositive repeat count; using 1")); |
252b5132 RH |
4996 | else |
4997 | count = count_exp.X_add_number; | |
4998 | } | |
4999 | #endif | |
5000 | ||
5001 | while (--count >= 0) | |
5002 | { | |
5003 | p = frag_more (length); | |
5004 | memcpy (p, temp, (unsigned int) length); | |
5005 | } | |
5006 | } | |
5007 | SKIP_WHITESPACE (); | |
5008 | } | |
5009 | while (*input_line_pointer++ == ','); | |
5010 | ||
041ff4dd NC |
5011 | /* Put terminator back into stream. */ |
5012 | --input_line_pointer; | |
252b5132 | 5013 | demand_empty_rest_of_line (); |
041ff4dd | 5014 | } |
252b5132 | 5015 | \f |
9136aa49 | 5016 | /* LEB128 Encoding. |
252b5132 | 5017 | |
9136aa49 DG |
5018 | Note - we are using the DWARF standard's definition of LEB128 encoding |
5019 | where each 7-bit value is a stored in a byte, *not* an octet. This | |
5020 | means that on targets where a byte contains multiple octets there is | |
5021 | a *huge waste of space*. (This also means that we do not have to | |
5022 | have special versions of these functions for when OCTETS_PER_BYTE_POWER | |
5023 | is non-zero). | |
5024 | ||
5025 | If the 7-bit values were to be packed into N-bit bytes (where N > 8) | |
5026 | we would then have to consider whether multiple, successive LEB128 | |
5027 | values should be packed into the bytes without padding (bad idea) or | |
5028 | whether each LEB128 number is padded out to a whole number of bytes. | |
5029 | Plus you have to decide on the endianness of packing octets into a | |
5030 | byte. */ | |
5031 | ||
5032 | /* Return the size of a LEB128 value in bytes. */ | |
5033 | ||
5034 | static inline unsigned int | |
39e6acbd | 5035 | sizeof_sleb128 (offsetT value) |
252b5132 | 5036 | { |
3d540e93 NC |
5037 | int size = 0; |
5038 | unsigned byte; | |
252b5132 RH |
5039 | |
5040 | do | |
5041 | { | |
5042 | byte = (value & 0x7f); | |
5043 | /* Sadly, we cannot rely on typical arithmetic right shift behaviour. | |
5044 | Fortunately, we can structure things so that the extra work reduces | |
5045 | to a noop on systems that do things "properly". */ | |
5046 | value = (value >> 7) | ~(-(offsetT)1 >> 7); | |
5047 | size += 1; | |
5048 | } | |
5049 | while (!(((value == 0) && ((byte & 0x40) == 0)) | |
5050 | || ((value == -1) && ((byte & 0x40) != 0)))); | |
5051 | ||
5052 | return size; | |
5053 | } | |
5054 | ||
9136aa49 | 5055 | static inline unsigned int |
39e6acbd | 5056 | sizeof_uleb128 (valueT value) |
252b5132 | 5057 | { |
3d540e93 | 5058 | int size = 0; |
252b5132 RH |
5059 | |
5060 | do | |
5061 | { | |
252b5132 RH |
5062 | value >>= 7; |
5063 | size += 1; | |
5064 | } | |
5065 | while (value != 0); | |
5066 | ||
5067 | return size; | |
5068 | } | |
5069 | ||
9136aa49 | 5070 | unsigned int |
39e6acbd | 5071 | sizeof_leb128 (valueT value, int sign) |
252b5132 RH |
5072 | { |
5073 | if (sign) | |
5074 | return sizeof_sleb128 ((offsetT) value); | |
5075 | else | |
5076 | return sizeof_uleb128 (value); | |
5077 | } | |
5078 | ||
9136aa49 | 5079 | /* Output a LEB128 value. Returns the number of bytes used. */ |
252b5132 | 5080 | |
9136aa49 | 5081 | static inline unsigned int |
39e6acbd | 5082 | output_sleb128 (char *p, offsetT value) |
252b5132 | 5083 | { |
3d540e93 NC |
5084 | char *orig = p; |
5085 | int more; | |
252b5132 RH |
5086 | |
5087 | do | |
5088 | { | |
5089 | unsigned byte = (value & 0x7f); | |
5090 | ||
5091 | /* Sadly, we cannot rely on typical arithmetic right shift behaviour. | |
5092 | Fortunately, we can structure things so that the extra work reduces | |
5093 | to a noop on systems that do things "properly". */ | |
5094 | value = (value >> 7) | ~(-(offsetT)1 >> 7); | |
5095 | ||
5096 | more = !((((value == 0) && ((byte & 0x40) == 0)) | |
5097 | || ((value == -1) && ((byte & 0x40) != 0)))); | |
5098 | if (more) | |
5099 | byte |= 0x80; | |
5100 | ||
5101 | *p++ = byte; | |
5102 | } | |
5103 | while (more); | |
5104 | ||
5105 | return p - orig; | |
5106 | } | |
5107 | ||
9136aa49 | 5108 | static inline unsigned int |
39e6acbd | 5109 | output_uleb128 (char *p, valueT value) |
252b5132 RH |
5110 | { |
5111 | char *orig = p; | |
5112 | ||
5113 | do | |
5114 | { | |
5115 | unsigned byte = (value & 0x7f); | |
9136aa49 | 5116 | |
252b5132 RH |
5117 | value >>= 7; |
5118 | if (value != 0) | |
5119 | /* More bytes to follow. */ | |
5120 | byte |= 0x80; | |
5121 | ||
5122 | *p++ = byte; | |
5123 | } | |
5124 | while (value != 0); | |
5125 | ||
5126 | return p - orig; | |
5127 | } | |
5128 | ||
9136aa49 | 5129 | unsigned int |
39e6acbd | 5130 | output_leb128 (char *p, valueT value, int sign) |
252b5132 RH |
5131 | { |
5132 | if (sign) | |
5133 | return output_sleb128 (p, (offsetT) value); | |
5134 | else | |
5135 | return output_uleb128 (p, value); | |
5136 | } | |
5137 | ||
5138 | /* Do the same for bignums. We combine sizeof with output here in that | |
5139 | we don't output for NULL values of P. It isn't really as critical as | |
9136aa49 DG |
5140 | for "normal" values that this be streamlined. Returns the number of |
5141 | bytes used. */ | |
252b5132 | 5142 | |
9136aa49 DG |
5143 | static inline unsigned int |
5144 | output_big_sleb128 (char *p, LITTLENUM_TYPE *bignum, unsigned int size) | |
252b5132 RH |
5145 | { |
5146 | char *orig = p; | |
5147 | valueT val = 0; | |
5148 | int loaded = 0; | |
5149 | unsigned byte; | |
5150 | ||
5151 | /* Strip leading sign extensions off the bignum. */ | |
e5604d79 RS |
5152 | while (size > 1 |
5153 | && bignum[size - 1] == LITTLENUM_MASK | |
5154 | && bignum[size - 2] > LITTLENUM_MASK / 2) | |
252b5132 RH |
5155 | size--; |
5156 | ||
5157 | do | |
5158 | { | |
e5604d79 RS |
5159 | /* OR in the next part of the littlenum. */ |
5160 | val |= (*bignum << loaded); | |
5161 | loaded += LITTLENUM_NUMBER_OF_BITS; | |
5162 | size--; | |
5163 | bignum++; | |
5164 | ||
5165 | /* Add bytes until there are less than 7 bits left in VAL | |
5166 | or until every non-sign bit has been written. */ | |
5167 | do | |
252b5132 | 5168 | { |
e5604d79 RS |
5169 | byte = val & 0x7f; |
5170 | loaded -= 7; | |
5171 | val >>= 7; | |
5172 | if (size > 0 | |
5173 | || val != ((byte & 0x40) == 0 ? 0 : ((valueT) 1 << loaded) - 1)) | |
252b5132 | 5174 | byte |= 0x80; |
e5604d79 RS |
5175 | |
5176 | if (orig) | |
5177 | *p = byte; | |
5178 | p++; | |
252b5132 | 5179 | } |
e5604d79 RS |
5180 | while ((byte & 0x80) != 0 && loaded >= 7); |
5181 | } | |
5182 | while (size > 0); | |
252b5132 | 5183 | |
e5604d79 RS |
5184 | /* Mop up any left-over bits (of which there will be less than 7). */ |
5185 | if ((byte & 0x80) != 0) | |
5186 | { | |
5187 | /* Sign-extend VAL. */ | |
5188 | if (val & (1 << (loaded - 1))) | |
29798047 | 5189 | val |= ~0U << loaded; |
252b5132 | 5190 | if (orig) |
e5604d79 | 5191 | *p = val & 0x7f; |
252b5132 RH |
5192 | p++; |
5193 | } | |
252b5132 RH |
5194 | |
5195 | return p - orig; | |
5196 | } | |
5197 | ||
9136aa49 DG |
5198 | static inline unsigned int |
5199 | output_big_uleb128 (char *p, LITTLENUM_TYPE *bignum, unsigned int size) | |
252b5132 RH |
5200 | { |
5201 | char *orig = p; | |
5202 | valueT val = 0; | |
5203 | int loaded = 0; | |
5204 | unsigned byte; | |
5205 | ||
5206 | /* Strip leading zeros off the bignum. */ | |
5207 | /* XXX: Is this needed? */ | |
041ff4dd | 5208 | while (size > 0 && bignum[size - 1] == 0) |
252b5132 RH |
5209 | size--; |
5210 | ||
5211 | do | |
5212 | { | |
5213 | if (loaded < 7 && size > 0) | |
5214 | { | |
5215 | val |= (*bignum << loaded); | |
5216 | loaded += 8 * CHARS_PER_LITTLENUM; | |
5217 | size--; | |
5218 | bignum++; | |
5219 | } | |
5220 | ||
5221 | byte = val & 0x7f; | |
5222 | loaded -= 7; | |
5223 | val >>= 7; | |
5224 | ||
5225 | if (size > 0 || val) | |
5226 | byte |= 0x80; | |
5227 | ||
5228 | if (orig) | |
5229 | *p = byte; | |
5230 | p++; | |
5231 | } | |
5232 | while (byte & 0x80); | |
5233 | ||
5234 | return p - orig; | |
5235 | } | |
5236 | ||
9136aa49 DG |
5237 | static unsigned int |
5238 | output_big_leb128 (char *p, LITTLENUM_TYPE *bignum, unsigned int size, int sign) | |
252b5132 RH |
5239 | { |
5240 | if (sign) | |
5241 | return output_big_sleb128 (p, bignum, size); | |
5242 | else | |
5243 | return output_big_uleb128 (p, bignum, size); | |
5244 | } | |
5245 | ||
5246 | /* Generate the appropriate fragments for a given expression to emit a | |
9a724e7b | 5247 | leb128 value. SIGN is 1 for sleb, 0 for uleb. */ |
252b5132 | 5248 | |
87c245cc | 5249 | static void |
39e6acbd | 5250 | emit_leb128_expr (expressionS *exp, int sign) |
252b5132 RH |
5251 | { |
5252 | operatorT op = exp->X_op; | |
b7712f8d | 5253 | unsigned int nbytes; |
252b5132 RH |
5254 | |
5255 | if (op == O_absent || op == O_illegal) | |
5256 | { | |
5257 | as_warn (_("zero assumed for missing expression")); | |
5258 | exp->X_add_number = 0; | |
5259 | op = O_constant; | |
5260 | } | |
5261 | else if (op == O_big && exp->X_add_number <= 0) | |
5262 | { | |
0e389e77 | 5263 | as_bad (_("floating point number invalid")); |
252b5132 RH |
5264 | exp->X_add_number = 0; |
5265 | op = O_constant; | |
5266 | } | |
5267 | else if (op == O_register) | |
5268 | { | |
5269 | as_warn (_("register value used as expression")); | |
5270 | op = O_constant; | |
5271 | } | |
e5604d79 RS |
5272 | else if (op == O_constant |
5273 | && sign | |
956a6ba3 | 5274 | && (exp->X_add_number < 0) == !exp->X_extrabit) |
e5604d79 RS |
5275 | { |
5276 | /* We're outputting a signed leb128 and the sign of X_add_number | |
5277 | doesn't reflect the sign of the original value. Convert EXP | |
5278 | to a correctly-extended bignum instead. */ | |
956a6ba3 | 5279 | convert_to_bignum (exp, exp->X_extrabit); |
e5604d79 RS |
5280 | op = O_big; |
5281 | } | |
252b5132 | 5282 | |
ec9ab52c JB |
5283 | if (now_seg == absolute_section) |
5284 | { | |
5285 | if (op != O_constant || exp->X_add_number != 0) | |
5286 | as_bad (_("attempt to store value in absolute section")); | |
5287 | abs_section_offset++; | |
5288 | return; | |
5289 | } | |
5290 | ||
5291 | if ((op != O_constant || exp->X_add_number != 0) && in_bss ()) | |
5292 | as_bad (_("attempt to store non-zero value in section `%s'"), | |
5293 | segment_name (now_seg)); | |
5294 | ||
67a659f6 RH |
5295 | /* Let check_eh_frame know that data is being emitted. nbytes == -1 is |
5296 | a signal that this is leb128 data. It shouldn't optimize this away. */ | |
b7712f8d | 5297 | nbytes = (unsigned int) -1; |
67a659f6 RH |
5298 | if (check_eh_frame (exp, &nbytes)) |
5299 | abort (); | |
5300 | ||
371b7465 RH |
5301 | /* Let the backend know that subsequent data may be byte aligned. */ |
5302 | #ifdef md_cons_align | |
5303 | md_cons_align (1); | |
5304 | #endif | |
5305 | ||
252b5132 RH |
5306 | if (op == O_constant) |
5307 | { | |
5308 | /* If we've got a constant, emit the thing directly right now. */ | |
5309 | ||
5310 | valueT value = exp->X_add_number; | |
9136aa49 | 5311 | unsigned int size; |
252b5132 RH |
5312 | char *p; |
5313 | ||
5314 | size = sizeof_leb128 (value, sign); | |
5315 | p = frag_more (size); | |
9136aa49 DG |
5316 | if (output_leb128 (p, value, sign) > size) |
5317 | abort (); | |
252b5132 RH |
5318 | } |
5319 | else if (op == O_big) | |
5320 | { | |
5321 | /* O_big is a different sort of constant. */ | |
5322 | ||
9136aa49 | 5323 | unsigned int size; |
252b5132 RH |
5324 | char *p; |
5325 | ||
5326 | size = output_big_leb128 (NULL, generic_bignum, exp->X_add_number, sign); | |
5327 | p = frag_more (size); | |
9136aa49 DG |
5328 | if (output_big_leb128 (p, generic_bignum, exp->X_add_number, sign) > size) |
5329 | abort (); | |
252b5132 RH |
5330 | } |
5331 | else | |
5332 | { | |
041ff4dd | 5333 | /* Otherwise, we have to create a variable sized fragment and |
252b5132 RH |
5334 | resolve things later. */ |
5335 | ||
041ff4dd | 5336 | frag_var (rs_leb128, sizeof_uleb128 (~(valueT) 0), 0, sign, |
252b5132 RH |
5337 | make_expr_symbol (exp), 0, (char *) NULL); |
5338 | } | |
5339 | } | |
5340 | ||
5341 | /* Parse the .sleb128 and .uleb128 pseudos. */ | |
5342 | ||
5343 | void | |
39e6acbd | 5344 | s_leb128 (int sign) |
252b5132 RH |
5345 | { |
5346 | expressionS exp; | |
5347 | ||
00bbdfe7 BW |
5348 | #ifdef md_flush_pending_output |
5349 | md_flush_pending_output (); | |
5350 | #endif | |
5351 | ||
041ff4dd NC |
5352 | do |
5353 | { | |
5354 | expression (&exp); | |
5355 | emit_leb128_expr (&exp, sign); | |
5356 | } | |
5357 | while (*input_line_pointer++ == ','); | |
252b5132 RH |
5358 | |
5359 | input_line_pointer--; | |
5360 | demand_empty_rest_of_line (); | |
5361 | } | |
5362 | \f | |
38a57ae7 NC |
5363 | static void |
5364 | stringer_append_char (int c, int bitsize) | |
5365 | { | |
ec9ab52c JB |
5366 | if (c && in_bss ()) |
5367 | as_bad (_("attempt to store non-empty string in section `%s'"), | |
5368 | segment_name (now_seg)); | |
5369 | ||
38a57ae7 NC |
5370 | if (!target_big_endian) |
5371 | FRAG_APPEND_1_CHAR (c); | |
5372 | ||
5373 | switch (bitsize) | |
5374 | { | |
5375 | case 64: | |
5376 | FRAG_APPEND_1_CHAR (0); | |
5377 | FRAG_APPEND_1_CHAR (0); | |
5378 | FRAG_APPEND_1_CHAR (0); | |
5379 | FRAG_APPEND_1_CHAR (0); | |
5380 | /* Fall through. */ | |
5381 | case 32: | |
5382 | FRAG_APPEND_1_CHAR (0); | |
5383 | FRAG_APPEND_1_CHAR (0); | |
5384 | /* Fall through. */ | |
5385 | case 16: | |
5386 | FRAG_APPEND_1_CHAR (0); | |
5387 | /* Fall through. */ | |
5388 | case 8: | |
5389 | break; | |
5390 | default: | |
5391 | /* Called with invalid bitsize argument. */ | |
5392 | abort (); | |
5393 | break; | |
5394 | } | |
5395 | if (target_big_endian) | |
5396 | FRAG_APPEND_1_CHAR (c); | |
5397 | } | |
5398 | ||
5399 | /* Worker to do .ascii etc statements. | |
5400 | Reads 0 or more ',' separated, double-quoted strings. | |
041ff4dd | 5401 | Caller should have checked need_pass_2 is FALSE because we don't |
38a57ae7 NC |
5402 | check it. |
5403 | Checks for end-of-line. | |
5404 | BITS_APPENDZERO says how many bits are in a target char. | |
5405 | The bottom bit is set if a NUL char should be appended to the strings. */ | |
041ff4dd NC |
5406 | |
5407 | void | |
38a57ae7 | 5408 | stringer (int bits_appendzero) |
252b5132 | 5409 | { |
38a57ae7 NC |
5410 | const int bitsize = bits_appendzero & ~7; |
5411 | const int append_zero = bits_appendzero & 1; | |
5412 | unsigned int c; | |
87975d2a | 5413 | #if !defined(NO_LISTING) && defined (OBJ_ELF) |
252b5132 | 5414 | char *start; |
87975d2a | 5415 | #endif |
252b5132 RH |
5416 | |
5417 | #ifdef md_flush_pending_output | |
5418 | md_flush_pending_output (); | |
5419 | #endif | |
5420 | ||
cc3f603a JM |
5421 | #ifdef md_cons_align |
5422 | md_cons_align (1); | |
5423 | #endif | |
5424 | ||
35c1a439 JB |
5425 | /* If we have been switched into the abs_section then we |
5426 | will not have an obstack onto which we can hang strings. */ | |
5427 | if (now_seg == absolute_section) | |
5428 | { | |
5429 | as_bad (_("strings must be placed into a section")); | |
5430 | ignore_rest_of_line (); | |
5431 | return; | |
5432 | } | |
5433 | ||
041ff4dd NC |
5434 | /* The following awkward logic is to parse ZERO or more strings, |
5435 | comma separated. Recall a string expression includes spaces | |
5436 | before the opening '\"' and spaces after the closing '\"'. | |
5437 | We fake a leading ',' if there is (supposed to be) | |
5438 | a 1st, expression. We keep demanding expressions for each ','. */ | |
252b5132 RH |
5439 | if (is_it_end_of_statement ()) |
5440 | { | |
041ff4dd NC |
5441 | c = 0; /* Skip loop. */ |
5442 | ++input_line_pointer; /* Compensate for end of loop. */ | |
252b5132 RH |
5443 | } |
5444 | else | |
5445 | { | |
041ff4dd | 5446 | c = ','; /* Do loop. */ |
252b5132 | 5447 | } |
d6415f6c | 5448 | |
252b5132 RH |
5449 | while (c == ',' || c == '<' || c == '"') |
5450 | { | |
5451 | SKIP_WHITESPACE (); | |
5452 | switch (*input_line_pointer) | |
5453 | { | |
5454 | case '\"': | |
041ff4dd | 5455 | ++input_line_pointer; /*->1st char of string. */ |
87975d2a | 5456 | #if !defined(NO_LISTING) && defined (OBJ_ELF) |
252b5132 | 5457 | start = input_line_pointer; |
87975d2a | 5458 | #endif |
38a57ae7 | 5459 | |
252b5132 | 5460 | while (is_a_char (c = next_char_of_string ())) |
38a57ae7 NC |
5461 | stringer_append_char (c, bitsize); |
5462 | ||
252b5132 | 5463 | if (append_zero) |
38a57ae7 NC |
5464 | stringer_append_char (0, bitsize); |
5465 | ||
252b5132 RH |
5466 | know (input_line_pointer[-1] == '\"'); |
5467 | ||
87975d2a | 5468 | #if !defined(NO_LISTING) && defined (OBJ_ELF) |
252b5132 | 5469 | /* In ELF, when gcc is emitting DWARF 1 debugging output, it |
d6415f6c AM |
5470 | will emit .string with a filename in the .debug section |
5471 | after a sequence of constants. See the comment in | |
5472 | emit_expr for the sequence. emit_expr will set | |
5473 | dwarf_file_string to non-zero if this string might be a | |
5474 | source file name. */ | |
252b5132 RH |
5475 | if (strcmp (segment_name (now_seg), ".debug") != 0) |
5476 | dwarf_file_string = 0; | |
5477 | else if (dwarf_file_string) | |
5478 | { | |
5479 | c = input_line_pointer[-1]; | |
5480 | input_line_pointer[-1] = '\0'; | |
5481 | listing_source_file (start); | |
5482 | input_line_pointer[-1] = c; | |
5483 | } | |
252b5132 RH |
5484 | #endif |
5485 | ||
5486 | break; | |
5487 | case '<': | |
5488 | input_line_pointer++; | |
5489 | c = get_single_number (); | |
38a57ae7 | 5490 | stringer_append_char (c, bitsize); |
252b5132 | 5491 | if (*input_line_pointer != '>') |
38a57ae7 NC |
5492 | as_bad (_("expected <nn>")); |
5493 | ||
252b5132 RH |
5494 | input_line_pointer++; |
5495 | break; | |
5496 | case ',': | |
5497 | input_line_pointer++; | |
5498 | break; | |
5499 | } | |
5500 | SKIP_WHITESPACE (); | |
5501 | c = *input_line_pointer; | |
5502 | } | |
5503 | ||
5504 | demand_empty_rest_of_line (); | |
38a57ae7 | 5505 | } |
252b5132 RH |
5506 | \f |
5507 | /* FIXME-SOMEDAY: I had trouble here on characters with the | |
5508 | high bits set. We'll probably also have trouble with | |
5509 | multibyte chars, wide chars, etc. Also be careful about | |
041ff4dd | 5510 | returning values bigger than 1 byte. xoxorich. */ |
252b5132 | 5511 | |
041ff4dd | 5512 | unsigned int |
39e6acbd | 5513 | next_char_of_string (void) |
252b5132 | 5514 | { |
3d540e93 | 5515 | unsigned int c; |
252b5132 RH |
5516 | |
5517 | c = *input_line_pointer++ & CHAR_MASK; | |
5518 | switch (c) | |
5519 | { | |
5520 | case '\"': | |
5521 | c = NOT_A_CHAR; | |
5522 | break; | |
5523 | ||
5524 | case '\n': | |
0e389e77 | 5525 | as_warn (_("unterminated string; newline inserted")); |
252b5132 RH |
5526 | bump_line_counters (); |
5527 | break; | |
5528 | ||
5529 | #ifndef NO_STRING_ESCAPES | |
5530 | case '\\': | |
d9800776 | 5531 | switch (c = *input_line_pointer++ & CHAR_MASK) |
252b5132 RH |
5532 | { |
5533 | case 'b': | |
5534 | c = '\b'; | |
5535 | break; | |
5536 | ||
5537 | case 'f': | |
5538 | c = '\f'; | |
5539 | break; | |
5540 | ||
5541 | case 'n': | |
5542 | c = '\n'; | |
5543 | break; | |
5544 | ||
5545 | case 'r': | |
5546 | c = '\r'; | |
5547 | break; | |
5548 | ||
5549 | case 't': | |
5550 | c = '\t'; | |
5551 | break; | |
5552 | ||
5553 | case 'v': | |
5554 | c = '\013'; | |
5555 | break; | |
5556 | ||
5557 | case '\\': | |
5558 | case '"': | |
041ff4dd | 5559 | break; /* As itself. */ |
252b5132 RH |
5560 | |
5561 | case '0': | |
5562 | case '1': | |
5563 | case '2': | |
5564 | case '3': | |
5565 | case '4': | |
5566 | case '5': | |
5567 | case '6': | |
5568 | case '7': | |
5569 | case '8': | |
5570 | case '9': | |
5571 | { | |
5572 | long number; | |
5573 | int i; | |
5574 | ||
041ff4dd | 5575 | for (i = 0, number = 0; |
3882b010 | 5576 | ISDIGIT (c) && i < 3; |
041ff4dd | 5577 | c = *input_line_pointer++, i++) |
252b5132 RH |
5578 | { |
5579 | number = number * 8 + c - '0'; | |
5580 | } | |
f0e652b4 | 5581 | |
d9800776 | 5582 | c = number & CHAR_MASK; |
252b5132 RH |
5583 | } |
5584 | --input_line_pointer; | |
5585 | break; | |
5586 | ||
5587 | case 'x': | |
5588 | case 'X': | |
5589 | { | |
5590 | long number; | |
5591 | ||
5592 | number = 0; | |
5593 | c = *input_line_pointer++; | |
3882b010 | 5594 | while (ISXDIGIT (c)) |
252b5132 | 5595 | { |
3882b010 | 5596 | if (ISDIGIT (c)) |
252b5132 | 5597 | number = number * 16 + c - '0'; |
3882b010 | 5598 | else if (ISUPPER (c)) |
252b5132 RH |
5599 | number = number * 16 + c - 'A' + 10; |
5600 | else | |
5601 | number = number * 16 + c - 'a' + 10; | |
5602 | c = *input_line_pointer++; | |
5603 | } | |
d9800776 | 5604 | c = number & CHAR_MASK; |
252b5132 RH |
5605 | --input_line_pointer; |
5606 | } | |
5607 | break; | |
5608 | ||
5609 | case '\n': | |
041ff4dd | 5610 | /* To be compatible with BSD 4.2 as: give the luser a linefeed!! */ |
0e389e77 | 5611 | as_warn (_("unterminated string; newline inserted")); |
252b5132 RH |
5612 | c = '\n'; |
5613 | bump_line_counters (); | |
5614 | break; | |
5615 | ||
5616 | default: | |
5617 | ||
5618 | #ifdef ONLY_STANDARD_ESCAPES | |
0e389e77 | 5619 | as_bad (_("bad escaped character in string")); |
252b5132 RH |
5620 | c = '?'; |
5621 | #endif /* ONLY_STANDARD_ESCAPES */ | |
5622 | ||
5623 | break; | |
041ff4dd | 5624 | } |
252b5132 RH |
5625 | break; |
5626 | #endif /* ! defined (NO_STRING_ESCAPES) */ | |
5627 | ||
5628 | default: | |
5629 | break; | |
041ff4dd | 5630 | } |
252b5132 | 5631 | return (c); |
041ff4dd | 5632 | } |
252b5132 RH |
5633 | \f |
5634 | static segT | |
3d540e93 | 5635 | get_segmented_expression (expressionS *expP) |
252b5132 | 5636 | { |
3d540e93 | 5637 | segT retval; |
252b5132 RH |
5638 | |
5639 | retval = expression (expP); | |
5640 | if (expP->X_op == O_illegal | |
5641 | || expP->X_op == O_absent | |
5642 | || expP->X_op == O_big) | |
5643 | { | |
0e389e77 | 5644 | as_bad (_("expected address expression")); |
252b5132 RH |
5645 | expP->X_op = O_constant; |
5646 | expP->X_add_number = 0; | |
5647 | retval = absolute_section; | |
5648 | } | |
5649 | return retval; | |
5650 | } | |
5651 | ||
041ff4dd | 5652 | static segT |
3d540e93 | 5653 | get_known_segmented_expression (expressionS *expP) |
252b5132 | 5654 | { |
259af69e | 5655 | segT retval = get_segmented_expression (expP); |
252b5132 | 5656 | |
259af69e | 5657 | if (retval == undefined_section) |
252b5132 RH |
5658 | { |
5659 | /* There is no easy way to extract the undefined symbol from the | |
5660 | expression. */ | |
5661 | if (expP->X_add_symbol != NULL | |
5662 | && S_GET_SEGMENT (expP->X_add_symbol) != expr_section) | |
5663 | as_warn (_("symbol \"%s\" undefined; zero assumed"), | |
5664 | S_GET_NAME (expP->X_add_symbol)); | |
5665 | else | |
5666 | as_warn (_("some symbol undefined; zero assumed")); | |
5667 | retval = absolute_section; | |
5668 | expP->X_op = O_constant; | |
5669 | expP->X_add_number = 0; | |
5670 | } | |
259af69e | 5671 | return retval; |
041ff4dd | 5672 | } |
252b5132 | 5673 | |
041ff4dd | 5674 | char /* Return terminator. */ |
39e6acbd | 5675 | get_absolute_expression_and_terminator (long *val_pointer /* Return value of expression. */) |
252b5132 RH |
5676 | { |
5677 | /* FIXME: val_pointer should probably be offsetT *. */ | |
5678 | *val_pointer = (long) get_absolute_expression (); | |
5679 | return (*input_line_pointer++); | |
5680 | } | |
5681 | \f | |
041ff4dd NC |
5682 | /* Like demand_copy_string, but return NULL if the string contains any '\0's. |
5683 | Give a warning if that happens. */ | |
5684 | ||
252b5132 | 5685 | char * |
39e6acbd | 5686 | demand_copy_C_string (int *len_pointer) |
252b5132 | 5687 | { |
3d540e93 | 5688 | char *s; |
252b5132 RH |
5689 | |
5690 | if ((s = demand_copy_string (len_pointer)) != 0) | |
5691 | { | |
3d540e93 | 5692 | int len; |
252b5132 RH |
5693 | |
5694 | for (len = *len_pointer; len > 0; len--) | |
5695 | { | |
5696 | if (*s == 0) | |
5697 | { | |
5698 | s = 0; | |
5699 | len = 1; | |
5700 | *len_pointer = 0; | |
0e389e77 | 5701 | as_bad (_("this string may not contain \'\\0\'")); |
252b5132 RH |
5702 | } |
5703 | } | |
5704 | } | |
f0e652b4 | 5705 | |
252b5132 RH |
5706 | return s; |
5707 | } | |
5708 | \f | |
041ff4dd NC |
5709 | /* Demand string, but return a safe (=private) copy of the string. |
5710 | Return NULL if we can't read a string here. */ | |
5711 | ||
252b5132 | 5712 | char * |
39e6acbd | 5713 | demand_copy_string (int *lenP) |
252b5132 | 5714 | { |
3d540e93 NC |
5715 | unsigned int c; |
5716 | int len; | |
252b5132 RH |
5717 | char *retval; |
5718 | ||
5719 | len = 0; | |
5720 | SKIP_WHITESPACE (); | |
5721 | if (*input_line_pointer == '\"') | |
5722 | { | |
041ff4dd | 5723 | input_line_pointer++; /* Skip opening quote. */ |
252b5132 RH |
5724 | |
5725 | while (is_a_char (c = next_char_of_string ())) | |
5726 | { | |
5727 | obstack_1grow (¬es, c); | |
5728 | len++; | |
5729 | } | |
5730 | /* JF this next line is so demand_copy_C_string will return a | |
041ff4dd | 5731 | null terminated string. */ |
252b5132 | 5732 | obstack_1grow (¬es, '\0'); |
1e9cc1c2 | 5733 | retval = (char *) obstack_finish (¬es); |
252b5132 RH |
5734 | } |
5735 | else | |
5736 | { | |
c95b35a9 | 5737 | as_bad (_("missing string")); |
252b5132 RH |
5738 | retval = NULL; |
5739 | ignore_rest_of_line (); | |
5740 | } | |
5741 | *lenP = len; | |
5742 | return (retval); | |
041ff4dd | 5743 | } |
252b5132 | 5744 | \f |
041ff4dd | 5745 | /* In: Input_line_pointer->next character. |
f0e652b4 | 5746 | |
041ff4dd | 5747 | Do: Skip input_line_pointer over all whitespace. |
f0e652b4 | 5748 | |
041ff4dd NC |
5749 | Out: 1 if input_line_pointer->end-of-line. */ |
5750 | ||
5751 | int | |
39e6acbd | 5752 | is_it_end_of_statement (void) |
252b5132 RH |
5753 | { |
5754 | SKIP_WHITESPACE (); | |
5755 | return (is_end_of_line[(unsigned char) *input_line_pointer]); | |
041ff4dd | 5756 | } |
252b5132 | 5757 | |
041ff4dd | 5758 | void |
39e6acbd | 5759 | equals (char *sym_name, int reassign) |
252b5132 | 5760 | { |
252b5132 | 5761 | char *stop = NULL; |
fb25138b | 5762 | char stopc = 0; |
252b5132 RH |
5763 | |
5764 | input_line_pointer++; | |
5765 | if (*input_line_pointer == '=') | |
5766 | input_line_pointer++; | |
9497f5ac NC |
5767 | if (reassign < 0 && *input_line_pointer == '=') |
5768 | input_line_pointer++; | |
252b5132 RH |
5769 | |
5770 | while (*input_line_pointer == ' ' || *input_line_pointer == '\t') | |
5771 | input_line_pointer++; | |
5772 | ||
5773 | if (flag_mri) | |
5774 | stop = mri_comment_field (&stopc); | |
5775 | ||
9497f5ac | 5776 | assign_symbol (sym_name, reassign >= 0 ? !reassign : reassign); |
252b5132 RH |
5777 | |
5778 | if (flag_mri) | |
31d20a21 AM |
5779 | { |
5780 | demand_empty_rest_of_line (); | |
5781 | mri_comment_end (stop, stopc); | |
5782 | } | |
041ff4dd | 5783 | } |
252b5132 | 5784 | |
7e005732 NC |
5785 | /* .incbin -- include a file verbatim at the current location. */ |
5786 | ||
5787 | void | |
39e6acbd | 5788 | s_incbin (int x ATTRIBUTE_UNUSED) |
7e005732 NC |
5789 | { |
5790 | FILE * binfile; | |
5791 | char * path; | |
5792 | char * filename; | |
5793 | char * binfrag; | |
5794 | long skip = 0; | |
5795 | long count = 0; | |
5796 | long bytes; | |
5797 | int len; | |
5798 | ||
5799 | #ifdef md_flush_pending_output | |
5800 | md_flush_pending_output (); | |
5801 | #endif | |
5802 | ||
cc3f603a JM |
5803 | #ifdef md_cons_align |
5804 | md_cons_align (1); | |
5805 | #endif | |
5806 | ||
7e005732 NC |
5807 | SKIP_WHITESPACE (); |
5808 | filename = demand_copy_string (& len); | |
5809 | if (filename == NULL) | |
5810 | return; | |
5811 | ||
5812 | SKIP_WHITESPACE (); | |
5813 | ||
5814 | /* Look for optional skip and count. */ | |
5815 | if (* input_line_pointer == ',') | |
5816 | { | |
5817 | ++ input_line_pointer; | |
5818 | skip = get_absolute_expression (); | |
5819 | ||
5820 | SKIP_WHITESPACE (); | |
5821 | ||
5822 | if (* input_line_pointer == ',') | |
5823 | { | |
5824 | ++ input_line_pointer; | |
5825 | ||
5826 | count = get_absolute_expression (); | |
5827 | if (count == 0) | |
5828 | as_warn (_(".incbin count zero, ignoring `%s'"), filename); | |
5829 | ||
5830 | SKIP_WHITESPACE (); | |
5831 | } | |
5832 | } | |
5833 | ||
5834 | demand_empty_rest_of_line (); | |
5835 | ||
5836 | /* Try opening absolute path first, then try include dirs. */ | |
f740e790 | 5837 | binfile = fopen (filename, FOPEN_RB); |
7e005732 NC |
5838 | if (binfile == NULL) |
5839 | { | |
5840 | int i; | |
5841 | ||
1e9cc1c2 | 5842 | path = (char *) xmalloc ((unsigned long) len + include_dir_maxlen + 5); |
7e005732 NC |
5843 | |
5844 | for (i = 0; i < include_dir_count; i++) | |
5845 | { | |
5846 | sprintf (path, "%s/%s", include_dirs[i], filename); | |
5847 | ||
f740e790 | 5848 | binfile = fopen (path, FOPEN_RB); |
7e005732 NC |
5849 | if (binfile != NULL) |
5850 | break; | |
5851 | } | |
5852 | ||
5853 | if (binfile == NULL) | |
5854 | as_bad (_("file not found: %s"), filename); | |
5855 | } | |
5856 | else | |
5857 | path = xstrdup (filename); | |
5858 | ||
5859 | if (binfile) | |
5860 | { | |
f740e790 NC |
5861 | long file_len; |
5862 | ||
7e005732 NC |
5863 | register_dependency (path); |
5864 | ||
5865 | /* Compute the length of the file. */ | |
5866 | if (fseek (binfile, 0, SEEK_END) != 0) | |
5867 | { | |
5868 | as_bad (_("seek to end of .incbin file failed `%s'"), path); | |
5869 | goto done; | |
5870 | } | |
f740e790 | 5871 | file_len = ftell (binfile); |
7e005732 | 5872 | |
c556cc9c | 5873 | /* If a count was not specified use the remainder of the file. */ |
7e005732 | 5874 | if (count == 0) |
c556cc9c | 5875 | count = file_len - skip; |
7e005732 | 5876 | |
c556cc9c | 5877 | if (skip < 0 || count < 0 || file_len < 0 || skip + count > file_len) |
7e005732 | 5878 | { |
c556cc9c | 5879 | as_bad (_("skip (%ld) or count (%ld) invalid for file size (%ld)"), |
f740e790 | 5880 | skip, count, file_len); |
7e005732 NC |
5881 | goto done; |
5882 | } | |
5883 | ||
5884 | if (fseek (binfile, skip, SEEK_SET) != 0) | |
5885 | { | |
5886 | as_bad (_("could not skip to %ld in file `%s'"), skip, path); | |
5887 | goto done; | |
5888 | } | |
5889 | ||
5890 | /* Allocate frag space and store file contents in it. */ | |
5891 | binfrag = frag_more (count); | |
5892 | ||
5893 | bytes = fread (binfrag, 1, count, binfile); | |
5894 | if (bytes < count) | |
5895 | as_warn (_("truncated file `%s', %ld of %ld bytes read"), | |
5896 | path, bytes, count); | |
5897 | } | |
5898 | done: | |
5899 | if (binfile != NULL) | |
5900 | fclose (binfile); | |
5901 | if (path) | |
5902 | free (path); | |
5903 | } | |
5904 | ||
041ff4dd | 5905 | /* .include -- include a file at this point. */ |
252b5132 | 5906 | |
041ff4dd | 5907 | void |
39e6acbd | 5908 | s_include (int arg ATTRIBUTE_UNUSED) |
252b5132 | 5909 | { |
252b5132 RH |
5910 | char *filename; |
5911 | int i; | |
1e9cc1c2 | 5912 | FILE *try_file; |
252b5132 RH |
5913 | char *path; |
5914 | ||
041ff4dd | 5915 | if (!flag_m68k_mri) |
252b5132 RH |
5916 | { |
5917 | filename = demand_copy_string (&i); | |
5918 | if (filename == NULL) | |
5919 | { | |
5920 | /* demand_copy_string has already printed an error and | |
d6415f6c | 5921 | called ignore_rest_of_line. */ |
252b5132 RH |
5922 | return; |
5923 | } | |
5924 | } | |
5925 | else | |
5926 | { | |
5927 | SKIP_WHITESPACE (); | |
5928 | i = 0; | |
041ff4dd | 5929 | while (!is_end_of_line[(unsigned char) *input_line_pointer] |
252b5132 RH |
5930 | && *input_line_pointer != ' ' |
5931 | && *input_line_pointer != '\t') | |
5932 | { | |
5933 | obstack_1grow (¬es, *input_line_pointer); | |
5934 | ++input_line_pointer; | |
5935 | ++i; | |
5936 | } | |
f0e652b4 | 5937 | |
252b5132 | 5938 | obstack_1grow (¬es, '\0'); |
1e9cc1c2 | 5939 | filename = (char *) obstack_finish (¬es); |
041ff4dd | 5940 | while (!is_end_of_line[(unsigned char) *input_line_pointer]) |
252b5132 RH |
5941 | ++input_line_pointer; |
5942 | } | |
f0e652b4 | 5943 | |
252b5132 | 5944 | demand_empty_rest_of_line (); |
1e9cc1c2 | 5945 | path = (char *) xmalloc ((unsigned long) i |
fa94de6b | 5946 | + include_dir_maxlen + 5 /* slop */ ); |
f0e652b4 | 5947 | |
252b5132 RH |
5948 | for (i = 0; i < include_dir_count; i++) |
5949 | { | |
5950 | strcpy (path, include_dirs[i]); | |
5951 | strcat (path, "/"); | |
5952 | strcat (path, filename); | |
1e9cc1c2 | 5953 | if (0 != (try_file = fopen (path, FOPEN_RT))) |
252b5132 | 5954 | { |
1e9cc1c2 | 5955 | fclose (try_file); |
252b5132 RH |
5956 | goto gotit; |
5957 | } | |
5958 | } | |
f0e652b4 | 5959 | |
252b5132 RH |
5960 | free (path); |
5961 | path = filename; | |
5962 | gotit: | |
041ff4dd | 5963 | /* malloc Storage leak when file is found on path. FIXME-SOMEDAY. */ |
252b5132 | 5964 | register_dependency (path); |
9f10757c | 5965 | input_scrub_insert_file (path); |
041ff4dd | 5966 | } |
252b5132 | 5967 | |
041ff4dd | 5968 | void |
39e6acbd | 5969 | add_include_dir (char *path) |
252b5132 RH |
5970 | { |
5971 | int i; | |
5972 | ||
5973 | if (include_dir_count == 0) | |
5974 | { | |
e0471c16 | 5975 | include_dirs = XNEWVEC (const char *, 2); |
041ff4dd | 5976 | include_dirs[0] = "."; /* Current dir. */ |
252b5132 RH |
5977 | include_dir_count = 2; |
5978 | } | |
5979 | else | |
5980 | { | |
5981 | include_dir_count++; | |
e0471c16 TS |
5982 | include_dirs = XRESIZEVEC (const char *, include_dirs, |
5983 | include_dir_count); | |
252b5132 RH |
5984 | } |
5985 | ||
041ff4dd | 5986 | include_dirs[include_dir_count - 1] = path; /* New one. */ |
252b5132 RH |
5987 | |
5988 | i = strlen (path); | |
5989 | if (i > include_dir_maxlen) | |
5990 | include_dir_maxlen = i; | |
041ff4dd | 5991 | } |
252b5132 RH |
5992 | \f |
5993 | /* Output debugging information to denote the source file. */ | |
5994 | ||
5995 | static void | |
39e6acbd | 5996 | generate_file_debug (void) |
252b5132 RH |
5997 | { |
5998 | if (debug_type == DEBUG_STABS) | |
5999 | stabs_generate_asm_file (); | |
6000 | } | |
6001 | ||
6002 | /* Output line number debugging information for the current source line. */ | |
6003 | ||
6004 | void | |
39e6acbd | 6005 | generate_lineno_debug (void) |
252b5132 | 6006 | { |
252b5132 RH |
6007 | switch (debug_type) |
6008 | { | |
6009 | case DEBUG_UNSPECIFIED: | |
6010 | case DEBUG_NONE: | |
4dc7ead9 | 6011 | case DEBUG_DWARF: |
252b5132 RH |
6012 | break; |
6013 | case DEBUG_STABS: | |
6014 | stabs_generate_asm_lineno (); | |
6015 | break; | |
6016 | case DEBUG_ECOFF: | |
6017 | ecoff_generate_asm_lineno (); | |
6018 | break; | |
252b5132 | 6019 | case DEBUG_DWARF2: |
4dc7ead9 RH |
6020 | /* ??? We could here indicate to dwarf2dbg.c that something |
6021 | has changed. However, since there is additional backend | |
6022 | support that is required (calling dwarf2_emit_insn), we | |
6023 | let dwarf2dbg.c call as_where on its own. */ | |
252b5132 RH |
6024 | break; |
6025 | } | |
6026 | } | |
6027 | ||
6028 | /* Output debugging information to mark a function entry point or end point. | |
6029 | END_P is zero for .func, and non-zero for .endfunc. */ | |
6030 | ||
6031 | void | |
39e6acbd | 6032 | s_func (int end_p) |
252b5132 RH |
6033 | { |
6034 | do_s_func (end_p, NULL); | |
6035 | } | |
6036 | ||
6037 | /* Subroutine of s_func so targets can choose a different default prefix. | |
6038 | If DEFAULT_PREFIX is NULL, use the target's "leading char". */ | |
6039 | ||
87c245cc | 6040 | static void |
39e6acbd | 6041 | do_s_func (int end_p, const char *default_prefix) |
252b5132 RH |
6042 | { |
6043 | /* Record the current function so that we can issue an error message for | |
6044 | misplaced .func,.endfunc, and also so that .endfunc needs no | |
6045 | arguments. */ | |
6046 | static char *current_name; | |
6047 | static char *current_label; | |
6048 | ||
6049 | if (end_p) | |
6050 | { | |
6051 | if (current_name == NULL) | |
6052 | { | |
6053 | as_bad (_("missing .func")); | |
6054 | ignore_rest_of_line (); | |
6055 | return; | |
6056 | } | |
6057 | ||
6058 | if (debug_type == DEBUG_STABS) | |
6059 | stabs_generate_asm_endfunc (current_name, current_label); | |
6060 | ||
6061 | current_name = current_label = NULL; | |
6062 | } | |
6063 | else /* ! end_p */ | |
6064 | { | |
041ff4dd NC |
6065 | char *name, *label; |
6066 | char delim1, delim2; | |
252b5132 RH |
6067 | |
6068 | if (current_name != NULL) | |
6069 | { | |
6070 | as_bad (_(".endfunc missing for previous .func")); | |
6071 | ignore_rest_of_line (); | |
6072 | return; | |
6073 | } | |
6074 | ||
d02603dc | 6075 | delim1 = get_symbol_name (& name); |
252b5132 RH |
6076 | name = xstrdup (name); |
6077 | *input_line_pointer = delim1; | |
d02603dc | 6078 | SKIP_WHITESPACE_AFTER_NAME (); |
252b5132 RH |
6079 | if (*input_line_pointer != ',') |
6080 | { | |
6081 | if (default_prefix) | |
05f4ab67 AM |
6082 | { |
6083 | if (asprintf (&label, "%s%s", default_prefix, name) == -1) | |
6084 | as_fatal ("%s", xstrerror (errno)); | |
6085 | } | |
252b5132 RH |
6086 | else |
6087 | { | |
7be1c489 | 6088 | char leading_char = bfd_get_symbol_leading_char (stdoutput); |
252b5132 RH |
6089 | /* Missing entry point, use function's name with the leading |
6090 | char prepended. */ | |
6091 | if (leading_char) | |
05f4ab67 AM |
6092 | { |
6093 | if (asprintf (&label, "%c%s", leading_char, name) == -1) | |
6094 | as_fatal ("%s", xstrerror (errno)); | |
6095 | } | |
252b5132 RH |
6096 | else |
6097 | label = name; | |
6098 | } | |
6099 | } | |
6100 | else | |
6101 | { | |
6102 | ++input_line_pointer; | |
6103 | SKIP_WHITESPACE (); | |
d02603dc | 6104 | delim2 = get_symbol_name (& label); |
252b5132 | 6105 | label = xstrdup (label); |
d02603dc | 6106 | restore_line_pointer (delim2); |
252b5132 RH |
6107 | } |
6108 | ||
6109 | if (debug_type == DEBUG_STABS) | |
6110 | stabs_generate_asm_func (name, label); | |
6111 | ||
6112 | current_name = name; | |
6113 | current_label = label; | |
6114 | } | |
6115 | ||
6116 | demand_empty_rest_of_line (); | |
6117 | } | |
6118 | \f | |
fa94de6b RM |
6119 | #ifdef HANDLE_BUNDLE |
6120 | ||
6121 | void | |
6122 | s_bundle_align_mode (int arg ATTRIBUTE_UNUSED) | |
6123 | { | |
6124 | unsigned int align = get_absolute_expression (); | |
6125 | SKIP_WHITESPACE (); | |
6126 | demand_empty_rest_of_line (); | |
6127 | ||
6128 | if (align > (unsigned int) TC_ALIGN_LIMIT) | |
6129 | as_fatal (_(".bundle_align_mode alignment too large (maximum %u)"), | |
6130 | (unsigned int) TC_ALIGN_LIMIT); | |
6131 | ||
6132 | if (bundle_lock_frag != NULL) | |
6133 | { | |
6134 | as_bad (_("cannot change .bundle_align_mode inside .bundle_lock")); | |
6135 | return; | |
6136 | } | |
6137 | ||
6138 | bundle_align_p2 = align; | |
6139 | } | |
6140 | ||
6141 | void | |
6142 | s_bundle_lock (int arg ATTRIBUTE_UNUSED) | |
6143 | { | |
6144 | demand_empty_rest_of_line (); | |
6145 | ||
6146 | if (bundle_align_p2 == 0) | |
6147 | { | |
6148 | as_bad (_(".bundle_lock is meaningless without .bundle_align_mode")); | |
6149 | return; | |
6150 | } | |
6151 | ||
d416e51d | 6152 | if (bundle_lock_depth == 0) |
fa94de6b | 6153 | { |
d416e51d RM |
6154 | bundle_lock_frchain = frchain_now; |
6155 | bundle_lock_frag = start_bundle (); | |
fa94de6b | 6156 | } |
d416e51d | 6157 | ++bundle_lock_depth; |
fa94de6b RM |
6158 | } |
6159 | ||
6160 | void | |
6161 | s_bundle_unlock (int arg ATTRIBUTE_UNUSED) | |
6162 | { | |
6163 | unsigned int size; | |
6164 | ||
6165 | demand_empty_rest_of_line (); | |
6166 | ||
6167 | if (bundle_lock_frag == NULL) | |
6168 | { | |
6169 | as_bad (_(".bundle_unlock without preceding .bundle_lock")); | |
6170 | return; | |
6171 | } | |
6172 | ||
6173 | gas_assert (bundle_align_p2 > 0); | |
6174 | ||
d416e51d RM |
6175 | gas_assert (bundle_lock_depth > 0); |
6176 | if (--bundle_lock_depth > 0) | |
6177 | return; | |
6178 | ||
fa94de6b RM |
6179 | size = pending_bundle_size (bundle_lock_frag); |
6180 | ||
6181 | if (size > (1U << bundle_align_p2)) | |
6182 | as_bad (_(".bundle_lock sequence is %u bytes, but bundle size only %u"), | |
6183 | size, 1 << bundle_align_p2); | |
6184 | else | |
6185 | finish_bundle (bundle_lock_frag, size); | |
6186 | ||
6187 | bundle_lock_frag = NULL; | |
6188 | bundle_lock_frchain = NULL; | |
6189 | } | |
6190 | ||
6191 | #endif /* HANDLE_BUNDLE */ | |
6192 | \f | |
041ff4dd | 6193 | void |
39e6acbd | 6194 | s_ignore (int arg ATTRIBUTE_UNUSED) |
252b5132 | 6195 | { |
40a4d956 | 6196 | ignore_rest_of_line (); |
252b5132 RH |
6197 | } |
6198 | ||
252b5132 | 6199 | void |
39e6acbd | 6200 | read_print_statistics (FILE *file) |
252b5132 RH |
6201 | { |
6202 | hash_print_statistics (file, "pseudo-op table", po_hash); | |
6203 | } | |
6204 | ||
041ff4dd NC |
6205 | /* Inserts the given line into the input stream. |
6206 | ||
9f10757c TW |
6207 | This call avoids macro/conditionals nesting checking, since the contents of |
6208 | the line are assumed to replace the contents of a line already scanned. | |
6209 | ||
47eebc20 | 6210 | An appropriate use of this function would be substitution of input lines when |
9f10757c TW |
6211 | called by md_start_line_hook(). The given line is assumed to already be |
6212 | properly scrubbed. */ | |
6213 | ||
6214 | void | |
39e6acbd | 6215 | input_scrub_insert_line (const char *line) |
9f10757c TW |
6216 | { |
6217 | sb newline; | |
d2ae702c L |
6218 | size_t len = strlen (line); |
6219 | sb_build (&newline, len); | |
6220 | sb_add_buffer (&newline, line, len); | |
9f10757c TW |
6221 | input_scrub_include_sb (&newline, input_line_pointer, 0); |
6222 | sb_kill (&newline); | |
6223 | buffer_limit = input_scrub_next_buffer (&input_line_pointer); | |
6224 | } | |
6225 | ||
6226 | /* Insert a file into the input stream; the path must resolve to an actual | |
041ff4dd | 6227 | file; no include path searching or dependency registering is performed. */ |
9f10757c TW |
6228 | |
6229 | void | |
39e6acbd | 6230 | input_scrub_insert_file (char *path) |
9f10757c TW |
6231 | { |
6232 | input_scrub_include_file (path, input_line_pointer); | |
6233 | buffer_limit = input_scrub_next_buffer (&input_line_pointer); | |
6234 | } | |
40a4d956 JB |
6235 | |
6236 | /* Find the end of a line, considering quotation and escaping of quotes. */ | |
6237 | ||
6238 | #if !defined(TC_SINGLE_QUOTE_STRINGS) && defined(SINGLE_QUOTE_STRINGS) | |
6239 | # define TC_SINGLE_QUOTE_STRINGS 1 | |
6240 | #endif | |
6241 | ||
6242 | static char * | |
7592cfd7 NC |
6243 | _find_end_of_line (char *s, int mri_string, int insn ATTRIBUTE_UNUSED, |
6244 | int in_macro) | |
40a4d956 JB |
6245 | { |
6246 | char inquote = '\0'; | |
6247 | int inescape = 0; | |
6248 | ||
6249 | while (!is_end_of_line[(unsigned char) *s] | |
6250 | || (inquote && !ISCNTRL (*s)) | |
6251 | || (inquote == '\'' && flag_mri) | |
6252 | #ifdef TC_EOL_IN_INSN | |
6253 | || (insn && TC_EOL_IN_INSN (s)) | |
6254 | #endif | |
7592cfd7 NC |
6255 | /* PR 6926: When we are parsing the body of a macro the sequence |
6256 | \@ is special - it refers to the invocation count. If the @ | |
6257 | character happens to be registered as a line-separator character | |
6258 | by the target, then the is_end_of_line[] test above will have | |
6259 | returned true, but we need to ignore the line separating | |
6260 | semantics in this particular case. */ | |
6261 | || (in_macro && inescape && *s == '@') | |
40a4d956 JB |
6262 | ) |
6263 | { | |
6264 | if (mri_string && *s == '\'') | |
6265 | inquote ^= *s; | |
6266 | else if (inescape) | |
6267 | inescape = 0; | |
6268 | else if (*s == '\\') | |
6269 | inescape = 1; | |
6270 | else if (!inquote | |
6271 | ? *s == '"' | |
6272 | #ifdef TC_SINGLE_QUOTE_STRINGS | |
6273 | || (TC_SINGLE_QUOTE_STRINGS && *s == '\'') | |
6274 | #endif | |
6275 | : *s == inquote) | |
6276 | inquote ^= *s; | |
6277 | ++s; | |
6278 | } | |
6279 | if (inquote) | |
6280 | as_warn (_("missing closing `%c'"), inquote); | |
e74211b6 | 6281 | if (inescape && !ignore_input ()) |
40a4d956 JB |
6282 | as_warn (_("stray `\\'")); |
6283 | return s; | |
6284 | } | |
6285 | ||
6286 | char * | |
6287 | find_end_of_line (char *s, int mri_string) | |
6288 | { | |
7592cfd7 | 6289 | return _find_end_of_line (s, mri_string, 0, 0); |
40a4d956 | 6290 | } |