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