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