PR26513, 629310abec breaks assembling PowerPC Linux kernels
[deliverable/binutils-gdb.git] / gas / read.c
1 /* read.c - read a source file -
2 Copyright (C) 1986-2020 Free Software Foundation, Inc.
3
4 This file is part of GAS, the GNU Assembler.
5
6 GAS is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3, or (at your option)
9 any later version.
10
11 GAS is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GAS; see the file COPYING. If not, write to the Free
18 Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
19 02110-1301, USA. */
20
21 /* If your chars aren't 8 bits, you will change this a bit (eg. to 0xFF).
22 But then, GNU isn't supposed to run on your machine anyway.
23 (RMS is so shortsighted sometimes.) */
24 #define MASK_CHAR ((int)(unsigned char) -1)
25
26 /* This is the largest known floating point format (for now). It will
27 grow when we do 4361 style flonums. */
28 #define MAXIMUM_NUMBER_OF_CHARS_FOR_FLOAT (16)
29
30 /* Routines that read assembler source text to build spaghetti in memory.
31 Another group of these functions is in the expr.c module. */
32
33 #include "as.h"
34 #include "safe-ctype.h"
35 #include "subsegs.h"
36 #include "sb.h"
37 #include "macro.h"
38 #include "obstack.h"
39 #include "ecoff.h"
40 #include "dw2gencfi.h"
41 #include "wchar.h"
42
43 #include <limits.h>
44
45 #ifndef TC_START_LABEL
46 #define TC_START_LABEL(STR, NUL_CHAR, NEXT_CHAR) (NEXT_CHAR == ':')
47 #endif
48
49 /* Set by the object-format or the target. */
50 #ifndef TC_IMPLICIT_LCOMM_ALIGNMENT
51 #define TC_IMPLICIT_LCOMM_ALIGNMENT(SIZE, P2VAR) \
52 do \
53 { \
54 if ((SIZE) >= 8) \
55 (P2VAR) = 3; \
56 else if ((SIZE) >= 4) \
57 (P2VAR) = 2; \
58 else if ((SIZE) >= 2) \
59 (P2VAR) = 1; \
60 else \
61 (P2VAR) = 0; \
62 } \
63 while (0)
64 #endif
65
66 char *input_line_pointer; /*->next char of source file to parse. */
67 bfd_boolean input_from_string = FALSE;
68
69 #if BITS_PER_CHAR != 8
70 /* The following table is indexed by[(char)] and will break if
71 a char does not have exactly 256 states (hopefully 0:255!)! */
72 die horribly;
73 #endif
74
75 #ifndef LEX_AT
76 #define LEX_AT 0
77 #endif
78
79 #ifndef LEX_BR
80 /* The RS/6000 assembler uses {,},[,] as parts of symbol names. */
81 #define LEX_BR 0
82 #endif
83
84 #ifndef LEX_PCT
85 /* The Delta 68k assembler permits % inside label names. */
86 #define LEX_PCT 0
87 #endif
88
89 #ifndef LEX_QM
90 /* The PowerPC Windows NT assemblers permits ? inside label names. */
91 #define LEX_QM 0
92 #endif
93
94 #ifndef LEX_HASH
95 /* The IA-64 assembler uses # as a suffix designating a symbol. We include
96 it in the symbol and strip it out in tc_canonicalize_symbol_name. */
97 #define LEX_HASH 0
98 #endif
99
100 #ifndef LEX_DOLLAR
101 #define LEX_DOLLAR 3
102 #endif
103
104 #ifndef LEX_TILDE
105 /* The Delta 68k assembler permits ~ at start of label names. */
106 #define LEX_TILDE 0
107 #endif
108
109 /* Used by is_... macros. our ctype[]. */
110 char lex_type[256] = {
111 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* @ABCDEFGHIJKLMNO */
112 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* PQRSTUVWXYZ[\]^_ */
113 0, 0, 0, LEX_HASH, LEX_DOLLAR, LEX_PCT, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, /* _!"#$%&'()*+,-./ */
114 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, LEX_QM, /* 0123456789:;<=>? */
115 LEX_AT, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, /* @ABCDEFGHIJKLMNO */
116 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, LEX_BR, 0, LEX_BR, 0, 3, /* PQRSTUVWXYZ[\]^_ */
117 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, /* `abcdefghijklmno */
118 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, LEX_BR, 0, LEX_BR, LEX_TILDE, 0, /* pqrstuvwxyz{|}~. */
119 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
120 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
121 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
122 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
123 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
124 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
125 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
126 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3
127 };
128
129 /* In: a character.
130 Out: 1 if this character ends a line.
131 2 if this character is a line separator. */
132 char is_end_of_line[256] = {
133 #ifdef CR_EOL
134 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, /* @abcdefghijklmno */
135 #else
136 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, /* @abcdefghijklmno */
137 #endif
138 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* */
139 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* _!"#$%&'()*+,-./ */
140 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0123456789:;<=>? */
141 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* */
142 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* */
143 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* */
144 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* */
145 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* */
146 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* */
147 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* */
148 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* */
149 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* */
150 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* */
151 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* */
152 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 /* */
153 };
154
155 #ifndef TC_CASE_SENSITIVE
156 char original_case_string[128];
157 #endif
158
159 /* Functions private to this file. */
160
161 static char *buffer; /* 1st char of each buffer of lines is here. */
162 static char *buffer_limit; /*->1 + last char in buffer. */
163
164 /* TARGET_BYTES_BIG_ENDIAN is required to be defined to either 0 or 1
165 in the tc-<CPU>.h file. See the "Porting GAS" section of the
166 internals manual. */
167 int target_big_endian = TARGET_BYTES_BIG_ENDIAN;
168
169 /* Variables for handling include file directory table. */
170
171 /* Table of pointers to directories to search for .include's. */
172 const char **include_dirs;
173
174 /* How many are in the table. */
175 int include_dir_count;
176
177 /* Length of longest in table. */
178 int include_dir_maxlen = 1;
179
180 #ifndef WORKING_DOT_WORD
181 struct broken_word *broken_words;
182 int new_broken_words;
183 #endif
184
185 /* The current offset into the absolute section. We don't try to
186 build frags in the absolute section, since no data can be stored
187 there. We just keep track of the current offset. */
188 addressT abs_section_offset;
189
190 /* If this line had an MRI style label, it is stored in this variable.
191 This is used by some of the MRI pseudo-ops. */
192 symbolS *line_label;
193
194 /* This global variable is used to support MRI common sections. We
195 translate such sections into a common symbol. This variable is
196 non-NULL when we are in an MRI common section. */
197 symbolS *mri_common_symbol;
198
199 /* In MRI mode, after a dc.b pseudo-op with an odd number of bytes, we
200 need to align to an even byte boundary unless the next pseudo-op is
201 dc.b, ds.b, or dcb.b. This variable is set to 1 if an alignment
202 may be needed. */
203 static int mri_pending_align;
204
205 #ifndef NO_LISTING
206 #ifdef OBJ_ELF
207 /* This variable is set to be non-zero if the next string we see might
208 be the name of the source file in DWARF debugging information. See
209 the comment in emit_expr for the format we look for. */
210 static int dwarf_file_string;
211 #endif
212 #endif
213
214 /* If the target defines the md_frag_max_var hook then we know
215 enough to implement the .bundle_align_mode features. */
216 #ifdef md_frag_max_var
217 # define HANDLE_BUNDLE
218 #endif
219
220 #ifdef HANDLE_BUNDLE
221 /* .bundle_align_mode sets this. Normally it's zero. When nonzero,
222 it's the exponent of the bundle size, and aligned instruction bundle
223 mode is in effect. */
224 static unsigned int bundle_align_p2;
225
226 /* These are set by .bundle_lock and .bundle_unlock. .bundle_lock sets
227 bundle_lock_frag to frag_now and then starts a new frag with
228 frag_align_code. At the same time, bundle_lock_frain gets frchain_now,
229 so that .bundle_unlock can verify that we didn't change segments.
230 .bundle_unlock resets both to NULL. If we detect a bundling violation,
231 then we reset bundle_lock_frchain to NULL as an indicator that we've
232 already diagnosed the error with as_bad and don't need a cascade of
233 redundant errors, but bundle_lock_frag remains set to indicate that
234 we are expecting to see .bundle_unlock. */
235 static fragS *bundle_lock_frag;
236 static frchainS *bundle_lock_frchain;
237
238 /* This is incremented by .bundle_lock and decremented by .bundle_unlock,
239 to allow nesting. */
240 static unsigned int bundle_lock_depth;
241 #endif
242
243 static void do_s_func (int end_p, const char *default_prefix);
244 static void s_align (int, int);
245 static void s_altmacro (int);
246 static void s_bad_end (int);
247 static void s_reloc (int);
248 static int hex_float (int, char *);
249 static segT get_known_segmented_expression (expressionS * expP);
250 static void pobegin (void);
251 static size_t get_non_macro_line_sb (sb *);
252 static void generate_file_debug (void);
253 static char *_find_end_of_line (char *, int, int, int);
254 \f
255 void
256 read_begin (void)
257 {
258 const char *p;
259
260 pobegin ();
261 obj_read_begin_hook ();
262
263 /* Something close -- but not too close -- to a multiple of 1024.
264 The debugging malloc I'm using has 24 bytes of overhead. */
265 obstack_begin (&notes, chunksize);
266 obstack_begin (&cond_obstack, chunksize);
267
268 #ifndef tc_line_separator_chars
269 #define tc_line_separator_chars line_separator_chars
270 #endif
271 /* Use machine dependent syntax. */
272 for (p = tc_line_separator_chars; *p; p++)
273 is_end_of_line[(unsigned char) *p] = 2;
274 /* Use more. FIXME-SOMEDAY. */
275
276 if (flag_mri)
277 lex_type['?'] = 3;
278 }
279 \f
280 #ifndef TC_ADDRESS_BYTES
281 #define TC_ADDRESS_BYTES address_bytes
282
283 static inline int
284 address_bytes (void)
285 {
286 /* Choose smallest of 1, 2, 4, 8 bytes that is large enough to
287 contain an address. */
288 int n = (stdoutput->arch_info->bits_per_address - 1) / 8;
289 n |= n >> 1;
290 n |= n >> 2;
291 n += 1;
292 return n;
293 }
294 #endif
295
296 /* Set up pseudo-op tables. */
297
298 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 #ifdef TC_ADDRESS_BYTES
368 {"dc.a", cons, 0},
369 #endif
370 {"dc.b", cons, 1},
371 {"dc.d", float_cons, 'd'},
372 {"dc.l", cons, 4},
373 {"dc.s", float_cons, 'f'},
374 {"dc.w", cons, 2},
375 {"dc.x", float_cons, 'x'},
376 {"dcb", s_space, 2},
377 {"dcb.b", s_space, 1},
378 {"dcb.d", s_float_space, 'd'},
379 {"dcb.l", s_space, 4},
380 {"dcb.s", s_float_space, 'f'},
381 {"dcb.w", s_space, 2},
382 {"dcb.x", s_float_space, 'x'},
383 {"ds", s_space, 2},
384 {"ds.b", s_space, 1},
385 {"ds.d", s_space, 8},
386 {"ds.l", s_space, 4},
387 {"ds.p", s_space, 12},
388 {"ds.s", s_space, 4},
389 {"ds.w", s_space, 2},
390 {"ds.x", s_space, 12},
391 {"debug", s_ignore, 0},
392 #ifdef S_SET_DESC
393 {"desc", s_desc, 0},
394 #endif
395 /* dim */
396 {"double", float_cons, 'd'},
397 /* dsect */
398 {"eject", listing_eject, 0}, /* Formfeed listing. */
399 {"else", s_else, 0},
400 {"elsec", s_else, 0},
401 {"elseif", s_elseif, (int) O_ne},
402 {"end", s_end, 0},
403 {"endc", s_endif, 0},
404 {"endfunc", s_func, 1},
405 {"endif", s_endif, 0},
406 {"endm", s_bad_end, 0},
407 {"endr", s_bad_end, 1},
408 /* endef */
409 {"equ", s_set, 0},
410 {"equiv", s_set, 1},
411 {"eqv", s_set, -1},
412 {"err", s_err, 0},
413 {"error", s_errwarn, 1},
414 {"exitm", s_mexit, 0},
415 /* extend */
416 {"extern", s_ignore, 0}, /* We treat all undef as ext. */
417 {"appfile", s_app_file, 1},
418 {"appline", s_app_line, 1},
419 {"fail", s_fail, 0},
420 {"file", s_app_file, 0},
421 {"fill", s_fill, 0},
422 {"float", float_cons, 'f'},
423 {"format", s_ignore, 0},
424 {"func", s_func, 0},
425 {"global", s_globl, 0},
426 {"globl", s_globl, 0},
427 {"hword", cons, 2},
428 {"if", s_if, (int) O_ne},
429 {"ifb", s_ifb, 1},
430 {"ifc", s_ifc, 0},
431 {"ifdef", s_ifdef, 0},
432 {"ifeq", s_if, (int) O_eq},
433 {"ifeqs", s_ifeqs, 0},
434 {"ifge", s_if, (int) O_ge},
435 {"ifgt", s_if, (int) O_gt},
436 {"ifle", s_if, (int) O_le},
437 {"iflt", s_if, (int) O_lt},
438 {"ifnb", s_ifb, 0},
439 {"ifnc", s_ifc, 1},
440 {"ifndef", s_ifdef, 1},
441 {"ifne", s_if, (int) O_ne},
442 {"ifnes", s_ifeqs, 1},
443 {"ifnotdef", s_ifdef, 1},
444 {"incbin", s_incbin, 0},
445 {"include", s_include, 0},
446 {"int", cons, 4},
447 {"irp", s_irp, 0},
448 {"irep", s_irp, 0},
449 {"irpc", s_irp, 1},
450 {"irepc", s_irp, 1},
451 {"lcomm", s_lcomm, 0},
452 {"lflags", s_ignore, 0}, /* Listing flags. */
453 {"linefile", s_app_line, 0},
454 {"linkonce", s_linkonce, 0},
455 {"list", listing_list, 1}, /* Turn listing on. */
456 {"llen", listing_psize, 1},
457 {"long", cons, 4},
458 {"lsym", s_lsym, 0},
459 {"macro", s_macro, 0},
460 {"mexit", s_mexit, 0},
461 {"mri", s_mri, 0},
462 {".mri", s_mri, 0}, /* Special case so .mri works in MRI mode. */
463 {"name", s_ignore, 0},
464 {"noaltmacro", s_altmacro, 0},
465 {"noformat", s_ignore, 0},
466 {"nolist", listing_list, 0}, /* Turn listing off. */
467 {"nopage", listing_nopage, 0},
468 {"nops", s_nops, 0},
469 {"octa", cons, 16},
470 {"offset", s_struct, 0},
471 {"org", s_org, 0},
472 {"p2align", s_align_ptwo, 0},
473 {"p2alignw", s_align_ptwo, -2},
474 {"p2alignl", s_align_ptwo, -4},
475 {"page", listing_eject, 0},
476 {"plen", listing_psize, 0},
477 {"print", s_print, 0},
478 {"psize", listing_psize, 0}, /* Set paper size. */
479 {"purgem", s_purgem, 0},
480 {"quad", cons, 8},
481 {"reloc", s_reloc, 0},
482 {"rep", s_rept, 0},
483 {"rept", s_rept, 0},
484 {"rva", s_rva, 4},
485 {"sbttl", listing_title, 1}, /* Subtitle of listing. */
486 /* scl */
487 /* sect */
488 {"set", s_set, 0},
489 {"short", cons, 2},
490 {"single", float_cons, 'f'},
491 /* size */
492 {"space", s_space, 0},
493 {"skip", s_space, 0},
494 {"sleb128", s_leb128, 1},
495 {"spc", s_ignore, 0},
496 {"stabd", s_stab, 'd'},
497 {"stabn", s_stab, 'n'},
498 {"stabs", s_stab, 's'},
499 {"string", stringer, 8+1},
500 {"string8", stringer, 8+1},
501 {"string16", stringer, 16+1},
502 {"string32", stringer, 32+1},
503 {"string64", stringer, 64+1},
504 {"struct", s_struct, 0},
505 /* tag */
506 {"text", s_text, 0},
507
508 /* This is for gcc to use. It's only just been added (2/94), so gcc
509 won't be able to use it for a while -- probably a year or more.
510 But once this has been released, check with gcc maintainers
511 before deleting it or even changing the spelling. */
512 {"this_GCC_requires_the_GNU_assembler", s_ignore, 0},
513 /* If we're folding case -- done for some targets, not necessarily
514 all -- the above string in an input file will be converted to
515 this one. Match it either way... */
516 {"this_gcc_requires_the_gnu_assembler", s_ignore, 0},
517
518 {"title", listing_title, 0}, /* Listing title. */
519 {"ttl", listing_title, 0},
520 /* type */
521 {"uleb128", s_leb128, 0},
522 /* use */
523 /* val */
524 {"xcom", s_comm, 0},
525 {"xdef", s_globl, 0},
526 {"xref", s_ignore, 0},
527 {"xstabs", s_xstab, 's'},
528 {"warning", s_errwarn, 0},
529 {"weakref", s_weakref, 0},
530 {"word", cons, 2},
531 {"zero", s_space, 0},
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, 1);
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 bfd_boolean
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 bfd_boolean 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 > (LONG_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 (strncmp (s, "APP\n", 4))
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 break;
1393 }
1394
1395 new_buf = XRESIZEVEC (char, new_buf, new_length + 100);
1396 new_tmp = new_buf + new_length;
1397 new_length += 100;
1398 }
1399
1400 free (tmp_buf);
1401
1402 /* We've "scrubbed" input to the preferred format. In the
1403 process we may have consumed the whole of the remaining
1404 file (and included files). We handle this formatted
1405 input similar to that of macro expansion, letting
1406 actual macro expansion (possibly nested) and other
1407 input expansion work. Beware that in messages, line
1408 numbers and possibly file names will be incorrect. */
1409 new_length = strlen (new_buf);
1410 sb_build (&sbuf, new_length);
1411 sb_add_buffer (&sbuf, new_buf, new_length);
1412 input_scrub_include_sb (&sbuf, input_line_pointer, 0);
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 unsigned int 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);
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 ignore_rest_of_line ();
1942 mri_comment_end (stop, stopc);
1943 return;
1944 }
1945
1946 S_SET_EXTERNAL (sym);
1947 S_SET_SEGMENT (sym, bfd_com_section_ptr);
1948 mri_common_symbol = sym;
1949
1950 #ifdef S_SET_ALIGN
1951 if (align != 0)
1952 S_SET_ALIGN (sym, align);
1953 #else
1954 (void) align;
1955 #endif
1956
1957 if (line_label != NULL)
1958 {
1959 expressionS exp;
1960 exp.X_op = O_symbol;
1961 exp.X_add_symbol = sym;
1962 exp.X_add_number = 0;
1963 symbol_set_value_expression (line_label, &exp);
1964 symbol_set_frag (line_label, &zero_address_frag);
1965 S_SET_SEGMENT (line_label, expr_section);
1966 }
1967
1968 /* FIXME: We just ignore the small argument, which distinguishes
1969 COMMON and COMMON.S. I don't know what we can do about it. */
1970
1971 /* Ignore the type and hptype. */
1972 if (*input_line_pointer == ',')
1973 input_line_pointer += 2;
1974 if (*input_line_pointer == ',')
1975 input_line_pointer += 2;
1976
1977 demand_empty_rest_of_line ();
1978
1979 mri_comment_end (stop, stopc);
1980 }
1981
1982 void
1983 s_data (int ignore ATTRIBUTE_UNUSED)
1984 {
1985 segT section;
1986 int temp;
1987
1988 temp = get_absolute_expression ();
1989 if (flag_readonly_data_in_text)
1990 {
1991 section = text_section;
1992 temp += 1000;
1993 }
1994 else
1995 section = data_section;
1996
1997 subseg_set (section, (subsegT) temp);
1998
1999 demand_empty_rest_of_line ();
2000 }
2001
2002 /* Handle the .appfile pseudo-op. This is automatically generated by
2003 do_scrub_chars when a preprocessor # line comment is seen with a
2004 file name. This default definition may be overridden by the object
2005 or CPU specific pseudo-ops. This function is also the default
2006 definition for .file; the APPFILE argument is 1 for .appfile, 0 for
2007 .file. */
2008
2009 void
2010 s_app_file_string (char *file, int appfile ATTRIBUTE_UNUSED)
2011 {
2012 #ifdef LISTING
2013 if (listing)
2014 listing_source_file (file);
2015 #endif
2016 register_dependency (file);
2017 #ifdef obj_app_file
2018 obj_app_file (file, appfile);
2019 #endif
2020 }
2021
2022 void
2023 s_app_file (int appfile)
2024 {
2025 char *s;
2026 int length;
2027
2028 /* Some assemblers tolerate immediately following '"'. */
2029 if ((s = demand_copy_string (&length)) != 0)
2030 {
2031 int may_omit
2032 = (!new_logical_line_flags (s, -1, 1) && appfile);
2033
2034 /* In MRI mode, the preprocessor may have inserted an extraneous
2035 backquote. */
2036 if (flag_m68k_mri
2037 && *input_line_pointer == '\''
2038 && is_end_of_line[(unsigned char) input_line_pointer[1]])
2039 ++input_line_pointer;
2040
2041 demand_empty_rest_of_line ();
2042 if (!may_omit)
2043 s_app_file_string (s, appfile);
2044 }
2045 }
2046
2047 static int
2048 get_linefile_number (int *flag)
2049 {
2050 SKIP_WHITESPACE ();
2051
2052 if (*input_line_pointer < '0' || *input_line_pointer > '9')
2053 return 0;
2054
2055 *flag = get_absolute_expression ();
2056
2057 return 1;
2058 }
2059
2060 /* Handle the .appline pseudo-op. This is automatically generated by
2061 do_scrub_chars when a preprocessor # line comment is seen. This
2062 default definition may be overridden by the object or CPU specific
2063 pseudo-ops. */
2064
2065 void
2066 s_app_line (int appline)
2067 {
2068 char *file = NULL;
2069 int l;
2070
2071 /* The given number is that of the next line. */
2072 if (appline)
2073 l = get_absolute_expression ();
2074 else if (!get_linefile_number (&l))
2075 {
2076 ignore_rest_of_line ();
2077 return;
2078 }
2079
2080 l--;
2081
2082 if (l < -1)
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 l + 1);
2094 else
2095 {
2096 int flags = 0;
2097 int length = 0;
2098
2099 if (!appline)
2100 {
2101 SKIP_WHITESPACE ();
2102
2103 if (*input_line_pointer == '"')
2104 file = demand_copy_string (&length);
2105
2106 if (file)
2107 {
2108 int this_flag;
2109
2110 while (get_linefile_number (&this_flag))
2111 switch (this_flag)
2112 {
2113 /* From GCC's cpp documentation:
2114 1: start of a new file.
2115 2: returning to a file after having included
2116 another file.
2117 3: following text comes from a system header file.
2118 4: following text should be treated as extern "C".
2119
2120 4 is nonsensical for the assembler; 3, we don't
2121 care about, so we ignore it just in case a
2122 system header file is included while
2123 preprocessing assembly. So 1 and 2 are all we
2124 care about, and they are mutually incompatible.
2125 new_logical_line_flags() demands this. */
2126 case 1:
2127 case 2:
2128 if (flags && flags != (1 << this_flag))
2129 as_warn (_("incompatible flag %i in line directive"),
2130 this_flag);
2131 else
2132 flags |= 1 << this_flag;
2133 break;
2134
2135 case 3:
2136 case 4:
2137 /* We ignore these. */
2138 break;
2139
2140 default:
2141 as_warn (_("unsupported flag %i in line directive"),
2142 this_flag);
2143 break;
2144 }
2145
2146 if (!is_end_of_line[(unsigned char)*input_line_pointer])
2147 file = 0;
2148 }
2149 }
2150
2151 if (appline || file)
2152 {
2153 new_logical_line_flags (file, l, flags);
2154 #ifdef LISTING
2155 if (listing)
2156 listing_source_line (l);
2157 #endif
2158 }
2159 }
2160 if (appline || file)
2161 demand_empty_rest_of_line ();
2162 else
2163 ignore_rest_of_line ();
2164 }
2165
2166 /* Handle the .end pseudo-op. Actually, the real work is done in
2167 read_a_source_file. */
2168
2169 void
2170 s_end (int ignore ATTRIBUTE_UNUSED)
2171 {
2172 if (flag_mri)
2173 {
2174 /* The MRI assembler permits the start symbol to follow .end,
2175 but we don't support that. */
2176 SKIP_WHITESPACE ();
2177 if (!is_end_of_line[(unsigned char) *input_line_pointer]
2178 && *input_line_pointer != '*'
2179 && *input_line_pointer != '!')
2180 as_warn (_("start address not supported"));
2181 }
2182 }
2183
2184 /* Handle the .err pseudo-op. */
2185
2186 void
2187 s_err (int ignore ATTRIBUTE_UNUSED)
2188 {
2189 as_bad (_(".err encountered"));
2190 demand_empty_rest_of_line ();
2191 }
2192
2193 /* Handle the .error and .warning pseudo-ops. */
2194
2195 void
2196 s_errwarn (int err)
2197 {
2198 int len;
2199 /* The purpose for the conditional assignment is not to
2200 internationalize the directive itself, but that we need a
2201 self-contained message, one that can be passed like the
2202 demand_copy_C_string return value, and with no assumption on the
2203 location of the name of the directive within the message. */
2204 const char *msg
2205 = (err ? _(".error directive invoked in source file")
2206 : _(".warning directive invoked in source file"));
2207
2208 if (!is_it_end_of_statement ())
2209 {
2210 if (*input_line_pointer != '\"')
2211 {
2212 as_bad (_("%s argument must be a string"),
2213 err ? ".error" : ".warning");
2214 ignore_rest_of_line ();
2215 return;
2216 }
2217
2218 msg = demand_copy_C_string (&len);
2219 if (msg == NULL)
2220 return;
2221 }
2222
2223 if (err)
2224 as_bad ("%s", msg);
2225 else
2226 as_warn ("%s", msg);
2227 demand_empty_rest_of_line ();
2228 }
2229
2230 /* Handle the MRI fail pseudo-op. */
2231
2232 void
2233 s_fail (int ignore ATTRIBUTE_UNUSED)
2234 {
2235 offsetT temp;
2236 char *stop = NULL;
2237 char stopc = 0;
2238
2239 if (flag_mri)
2240 stop = mri_comment_field (&stopc);
2241
2242 temp = get_absolute_expression ();
2243 if (temp >= 500)
2244 as_warn (_(".fail %ld encountered"), (long) temp);
2245 else
2246 as_bad (_(".fail %ld encountered"), (long) temp);
2247
2248 demand_empty_rest_of_line ();
2249
2250 if (flag_mri)
2251 mri_comment_end (stop, stopc);
2252 }
2253
2254 void
2255 s_fill (int ignore ATTRIBUTE_UNUSED)
2256 {
2257 expressionS rep_exp;
2258 long size = 1;
2259 long fill = 0;
2260 char *p;
2261
2262 #ifdef md_flush_pending_output
2263 md_flush_pending_output ();
2264 #endif
2265
2266 #ifdef md_cons_align
2267 md_cons_align (1);
2268 #endif
2269
2270 expression (&rep_exp);
2271 if (*input_line_pointer == ',')
2272 {
2273 input_line_pointer++;
2274 size = get_absolute_expression ();
2275 if (*input_line_pointer == ',')
2276 {
2277 input_line_pointer++;
2278 fill = get_absolute_expression ();
2279 }
2280 }
2281
2282 /* This is to be compatible with BSD 4.2 AS, not for any rational reason. */
2283 #define BSD_FILL_SIZE_CROCK_8 (8)
2284 if (size > BSD_FILL_SIZE_CROCK_8)
2285 {
2286 as_warn (_(".fill size clamped to %d"), BSD_FILL_SIZE_CROCK_8);
2287 size = BSD_FILL_SIZE_CROCK_8;
2288 }
2289 if (size < 0)
2290 {
2291 as_warn (_("size negative; .fill ignored"));
2292 size = 0;
2293 }
2294 else if (rep_exp.X_op == O_constant && rep_exp.X_add_number <= 0)
2295 {
2296 if (rep_exp.X_add_number < 0)
2297 as_warn (_("repeat < 0; .fill ignored"));
2298 size = 0;
2299 }
2300
2301 if (size && !need_pass_2)
2302 {
2303 if (now_seg == absolute_section)
2304 {
2305 if (rep_exp.X_op != O_constant)
2306 as_bad (_("non-constant fill count for absolute section"));
2307 else if (fill && rep_exp.X_add_number != 0)
2308 as_bad (_("attempt to fill absolute section with non-zero value"));
2309 abs_section_offset += rep_exp.X_add_number * size;
2310 }
2311 else if (fill
2312 && (rep_exp.X_op != O_constant || rep_exp.X_add_number != 0)
2313 && in_bss ())
2314 as_bad (_("attempt to fill section `%s' with non-zero value"),
2315 segment_name (now_seg));
2316
2317 if (rep_exp.X_op == O_constant)
2318 {
2319 p = frag_var (rs_fill, (int) size, (int) size,
2320 (relax_substateT) 0, (symbolS *) 0,
2321 (offsetT) rep_exp.X_add_number,
2322 (char *) 0);
2323 }
2324 else
2325 {
2326 /* We don't have a constant repeat count, so we can't use
2327 rs_fill. We can get the same results out of rs_space,
2328 but its argument is in bytes, so we must multiply the
2329 repeat count by size. */
2330
2331 symbolS *rep_sym;
2332 rep_sym = make_expr_symbol (&rep_exp);
2333 if (size != 1)
2334 {
2335 expressionS size_exp;
2336 size_exp.X_op = O_constant;
2337 size_exp.X_add_number = size;
2338
2339 rep_exp.X_op = O_multiply;
2340 rep_exp.X_add_symbol = rep_sym;
2341 rep_exp.X_op_symbol = make_expr_symbol (&size_exp);
2342 rep_exp.X_add_number = 0;
2343 rep_sym = make_expr_symbol (&rep_exp);
2344 }
2345
2346 p = frag_var (rs_space, (int) size, (int) size,
2347 (relax_substateT) 0, rep_sym, (offsetT) 0, (char *) 0);
2348 }
2349
2350 memset (p, 0, (unsigned int) size);
2351
2352 /* The magic number BSD_FILL_SIZE_CROCK_4 is from BSD 4.2 VAX
2353 flavoured AS. The following bizarre behaviour is to be
2354 compatible with above. I guess they tried to take up to 8
2355 bytes from a 4-byte expression and they forgot to sign
2356 extend. */
2357 #define BSD_FILL_SIZE_CROCK_4 (4)
2358 md_number_to_chars (p, (valueT) fill,
2359 (size > BSD_FILL_SIZE_CROCK_4
2360 ? BSD_FILL_SIZE_CROCK_4
2361 : (int) size));
2362 /* Note: .fill (),0 emits no frag (since we are asked to .fill 0 bytes)
2363 but emits no error message because it seems a legal thing to do.
2364 It is a degenerate case of .fill but could be emitted by a
2365 compiler. */
2366 }
2367 demand_empty_rest_of_line ();
2368 }
2369
2370 void
2371 s_globl (int ignore ATTRIBUTE_UNUSED)
2372 {
2373 char *name;
2374 int c;
2375 symbolS *symbolP;
2376 char *stop = NULL;
2377 char stopc = 0;
2378
2379 if (flag_mri)
2380 stop = mri_comment_field (&stopc);
2381
2382 do
2383 {
2384 if ((name = read_symbol_name ()) == NULL)
2385 return;
2386
2387 symbolP = symbol_find_or_make (name);
2388 S_SET_EXTERNAL (symbolP);
2389
2390 SKIP_WHITESPACE ();
2391 c = *input_line_pointer;
2392 if (c == ',')
2393 {
2394 input_line_pointer++;
2395 SKIP_WHITESPACE ();
2396 if (is_end_of_line[(unsigned char) *input_line_pointer])
2397 c = '\n';
2398 }
2399
2400 free (name);
2401 }
2402 while (c == ',');
2403
2404 demand_empty_rest_of_line ();
2405
2406 if (flag_mri)
2407 mri_comment_end (stop, stopc);
2408 }
2409
2410 /* Handle the MRI IRP and IRPC pseudo-ops. */
2411
2412 void
2413 s_irp (int irpc)
2414 {
2415 char * eol;
2416 const char * file;
2417 unsigned int line;
2418 sb s;
2419 const char *err;
2420 sb out;
2421
2422 file = as_where (&line);
2423
2424 eol = find_end_of_line (input_line_pointer, 0);
2425 sb_build (&s, eol - input_line_pointer);
2426 sb_add_buffer (&s, input_line_pointer, eol - input_line_pointer);
2427 input_line_pointer = eol;
2428
2429 sb_new (&out);
2430
2431 err = expand_irp (irpc, 0, &s, &out, get_non_macro_line_sb);
2432 if (err != NULL)
2433 as_bad_where (file, line, "%s", err);
2434
2435 sb_kill (&s);
2436
2437 input_scrub_include_sb (&out, input_line_pointer, 1);
2438 sb_kill (&out);
2439 buffer_limit = input_scrub_next_buffer (&input_line_pointer);
2440 }
2441
2442 /* Handle the .linkonce pseudo-op. This tells the assembler to mark
2443 the section to only be linked once. However, this is not supported
2444 by most object file formats. This takes an optional argument,
2445 which is what to do about duplicates. */
2446
2447 void
2448 s_linkonce (int ignore ATTRIBUTE_UNUSED)
2449 {
2450 enum linkonce_type type;
2451
2452 SKIP_WHITESPACE ();
2453
2454 type = LINKONCE_DISCARD;
2455
2456 if (!is_end_of_line[(unsigned char) *input_line_pointer])
2457 {
2458 char *s;
2459 char c;
2460
2461 c = get_symbol_name (& s);
2462 if (strcasecmp (s, "discard") == 0)
2463 type = LINKONCE_DISCARD;
2464 else if (strcasecmp (s, "one_only") == 0)
2465 type = LINKONCE_ONE_ONLY;
2466 else if (strcasecmp (s, "same_size") == 0)
2467 type = LINKONCE_SAME_SIZE;
2468 else if (strcasecmp (s, "same_contents") == 0)
2469 type = LINKONCE_SAME_CONTENTS;
2470 else
2471 as_warn (_("unrecognized .linkonce type `%s'"), s);
2472
2473 (void) restore_line_pointer (c);
2474 }
2475
2476 #ifdef obj_handle_link_once
2477 obj_handle_link_once (type);
2478 #else /* ! defined (obj_handle_link_once) */
2479 {
2480 flagword flags;
2481
2482 if ((bfd_applicable_section_flags (stdoutput) & SEC_LINK_ONCE) == 0)
2483 as_warn (_(".linkonce is not supported for this object file format"));
2484
2485 flags = bfd_section_flags (now_seg);
2486 flags |= SEC_LINK_ONCE;
2487 switch (type)
2488 {
2489 default:
2490 abort ();
2491 case LINKONCE_DISCARD:
2492 flags |= SEC_LINK_DUPLICATES_DISCARD;
2493 break;
2494 case LINKONCE_ONE_ONLY:
2495 flags |= SEC_LINK_DUPLICATES_ONE_ONLY;
2496 break;
2497 case LINKONCE_SAME_SIZE:
2498 flags |= SEC_LINK_DUPLICATES_SAME_SIZE;
2499 break;
2500 case LINKONCE_SAME_CONTENTS:
2501 flags |= SEC_LINK_DUPLICATES_SAME_CONTENTS;
2502 break;
2503 }
2504 if (!bfd_set_section_flags (now_seg, flags))
2505 as_bad (_("bfd_set_section_flags: %s"),
2506 bfd_errmsg (bfd_get_error ()));
2507 }
2508 #endif /* ! defined (obj_handle_link_once) */
2509
2510 demand_empty_rest_of_line ();
2511 }
2512
2513 void
2514 bss_alloc (symbolS *symbolP, addressT size, unsigned int align)
2515 {
2516 char *pfrag;
2517 segT current_seg = now_seg;
2518 subsegT current_subseg = now_subseg;
2519 segT bss_seg = bss_section;
2520
2521 #if defined (TC_MIPS) || defined (TC_ALPHA)
2522 if (OUTPUT_FLAVOR == bfd_target_ecoff_flavour
2523 || OUTPUT_FLAVOR == bfd_target_elf_flavour)
2524 {
2525 /* For MIPS and Alpha ECOFF or ELF, small objects are put in .sbss. */
2526 if (size <= bfd_get_gp_size (stdoutput))
2527 {
2528 bss_seg = subseg_new (".sbss", 1);
2529 seg_info (bss_seg)->bss = 1;
2530 if (!bfd_set_section_flags (bss_seg, SEC_ALLOC | SEC_SMALL_DATA))
2531 as_warn (_("error setting flags for \".sbss\": %s"),
2532 bfd_errmsg (bfd_get_error ()));
2533 }
2534 }
2535 #endif
2536 subseg_set (bss_seg, 1);
2537
2538 if (align > OCTETS_PER_BYTE_POWER)
2539 {
2540 record_alignment (bss_seg, align);
2541 frag_align (align, 0, 0);
2542 }
2543
2544 /* Detach from old frag. */
2545 if (S_GET_SEGMENT (symbolP) == bss_seg)
2546 symbol_get_frag (symbolP)->fr_symbol = NULL;
2547
2548 symbol_set_frag (symbolP, frag_now);
2549 pfrag = frag_var (rs_org, 1, 1, 0, symbolP, size, NULL);
2550 *pfrag = 0;
2551
2552 #ifdef S_SET_SIZE
2553 S_SET_SIZE (symbolP, size);
2554 #endif
2555 S_SET_SEGMENT (symbolP, bss_seg);
2556
2557 #ifdef OBJ_COFF
2558 /* The symbol may already have been created with a preceding
2559 ".globl" directive -- be careful not to step on storage class
2560 in that case. Otherwise, set it to static. */
2561 if (S_GET_STORAGE_CLASS (symbolP) != C_EXT)
2562 S_SET_STORAGE_CLASS (symbolP, C_STAT);
2563 #endif /* OBJ_COFF */
2564
2565 subseg_set (current_seg, current_subseg);
2566 }
2567
2568 offsetT
2569 parse_align (int align_bytes)
2570 {
2571 expressionS exp;
2572 addressT align;
2573
2574 SKIP_WHITESPACE ();
2575 if (*input_line_pointer != ',')
2576 {
2577 no_align:
2578 as_bad (_("expected alignment after size"));
2579 ignore_rest_of_line ();
2580 return -1;
2581 }
2582
2583 input_line_pointer++;
2584 SKIP_WHITESPACE ();
2585
2586 align = get_absolute_expr (&exp);
2587 if (exp.X_op == O_absent)
2588 goto no_align;
2589
2590 if (!exp.X_unsigned)
2591 {
2592 as_warn (_("alignment negative; 0 assumed"));
2593 align = 0;
2594 }
2595
2596 if (align_bytes && align != 0)
2597 {
2598 /* convert to a power of 2 alignment */
2599 unsigned int alignp2 = 0;
2600 while ((align & 1) == 0)
2601 align >>= 1, ++alignp2;
2602 if (align != 1)
2603 {
2604 as_bad (_("alignment not a power of 2"));
2605 ignore_rest_of_line ();
2606 return -1;
2607 }
2608 align = alignp2;
2609 }
2610 return align;
2611 }
2612
2613 /* Called from s_comm_internal after symbol name and size have been
2614 parsed. NEEDS_ALIGN is 0 if it was an ".lcomm" (2 args only),
2615 1 if this was a ".bss" directive which has a 3rd argument
2616 (alignment as a power of 2), or 2 if this was a ".bss" directive
2617 with alignment in bytes. */
2618
2619 symbolS *
2620 s_lcomm_internal (int needs_align, symbolS *symbolP, addressT size)
2621 {
2622 addressT align = 0;
2623
2624 if (needs_align)
2625 {
2626 align = parse_align (needs_align - 1);
2627 if (align == (addressT) -1)
2628 return NULL;
2629 }
2630 else
2631 /* Assume some objects may require alignment on some systems. */
2632 TC_IMPLICIT_LCOMM_ALIGNMENT (size, align);
2633
2634 bss_alloc (symbolP, size, align);
2635 return symbolP;
2636 }
2637
2638 void
2639 s_lcomm (int needs_align)
2640 {
2641 s_comm_internal (needs_align, s_lcomm_internal);
2642 }
2643
2644 void
2645 s_lcomm_bytes (int needs_align)
2646 {
2647 s_comm_internal (needs_align * 2, s_lcomm_internal);
2648 }
2649
2650 void
2651 s_lsym (int ignore ATTRIBUTE_UNUSED)
2652 {
2653 char *name;
2654 expressionS exp;
2655 symbolS *symbolP;
2656
2657 /* We permit ANY defined expression: BSD4.2 demands constants. */
2658 if ((name = read_symbol_name ()) == NULL)
2659 return;
2660
2661 if (*input_line_pointer != ',')
2662 {
2663 as_bad (_("expected comma after \"%s\""), name);
2664 goto err_out;
2665 }
2666
2667 input_line_pointer++;
2668 expression_and_evaluate (&exp);
2669
2670 if (exp.X_op != O_constant
2671 && exp.X_op != O_register)
2672 {
2673 as_bad (_("bad expression"));
2674 goto err_out;
2675 }
2676
2677 symbolP = symbol_find_or_make (name);
2678
2679 if (S_GET_SEGMENT (symbolP) == undefined_section)
2680 {
2681 /* The name might be an undefined .global symbol; be sure to
2682 keep the "external" bit. */
2683 S_SET_SEGMENT (symbolP,
2684 (exp.X_op == O_constant
2685 ? absolute_section
2686 : reg_section));
2687 S_SET_VALUE (symbolP, (valueT) exp.X_add_number);
2688 }
2689 else
2690 {
2691 as_bad (_("symbol `%s' is already defined"), name);
2692 }
2693
2694 demand_empty_rest_of_line ();
2695 free (name);
2696 return;
2697
2698 err_out:
2699 ignore_rest_of_line ();
2700 free (name);
2701 return;
2702 }
2703
2704 /* Read a line into an sb. Returns the character that ended the line
2705 or zero if there are no more lines. */
2706
2707 static int
2708 get_line_sb (sb *line, int in_macro)
2709 {
2710 char *eol;
2711
2712 if (input_line_pointer[-1] == '\n')
2713 bump_line_counters ();
2714
2715 if (input_line_pointer >= buffer_limit)
2716 {
2717 buffer_limit = input_scrub_next_buffer (&input_line_pointer);
2718 if (buffer_limit == 0)
2719 return 0;
2720 }
2721
2722 eol = _find_end_of_line (input_line_pointer, flag_m68k_mri, 0, in_macro);
2723 sb_add_buffer (line, input_line_pointer, eol - input_line_pointer);
2724 input_line_pointer = eol;
2725
2726 /* Don't skip multiple end-of-line characters, because that breaks support
2727 for the IA-64 stop bit (;;) which looks like two consecutive end-of-line
2728 characters but isn't. Instead just skip one end of line character and
2729 return the character skipped so that the caller can re-insert it if
2730 necessary. */
2731 return *input_line_pointer++;
2732 }
2733
2734 static size_t
2735 get_non_macro_line_sb (sb *line)
2736 {
2737 return get_line_sb (line, 0);
2738 }
2739
2740 static size_t
2741 get_macro_line_sb (sb *line)
2742 {
2743 return get_line_sb (line, 1);
2744 }
2745
2746 /* Define a macro. This is an interface to macro.c. */
2747
2748 void
2749 s_macro (int ignore ATTRIBUTE_UNUSED)
2750 {
2751 char *eol;
2752 const char * file;
2753 unsigned int line;
2754 sb s;
2755 const char *err;
2756 const char *name;
2757
2758 file = as_where (&line);
2759
2760 eol = find_end_of_line (input_line_pointer, 0);
2761 sb_build (&s, eol - input_line_pointer);
2762 sb_add_buffer (&s, input_line_pointer, eol - input_line_pointer);
2763 input_line_pointer = eol;
2764
2765 if (line_label != NULL)
2766 {
2767 sb label;
2768 size_t len;
2769
2770 name = S_GET_NAME (line_label);
2771 len = strlen (name);
2772 sb_build (&label, len);
2773 sb_add_buffer (&label, name, len);
2774 err = define_macro (0, &s, &label, get_macro_line_sb, file, line, &name);
2775 sb_kill (&label);
2776 }
2777 else
2778 err = define_macro (0, &s, NULL, get_macro_line_sb, file, line, &name);
2779 if (err != NULL)
2780 as_bad_where (file, line, err, name);
2781 else
2782 {
2783 if (line_label != NULL)
2784 {
2785 S_SET_SEGMENT (line_label, absolute_section);
2786 S_SET_VALUE (line_label, 0);
2787 symbol_set_frag (line_label, &zero_address_frag);
2788 }
2789
2790 if (((NO_PSEUDO_DOT || flag_m68k_mri)
2791 && po_entry_find (po_hash, name) != NULL)
2792 || (!flag_m68k_mri
2793 && *name == '.'
2794 && po_entry_find (po_hash, name + 1) != NULL))
2795 as_warn_where (file,
2796 line,
2797 _("attempt to redefine pseudo-op `%s' ignored"),
2798 name);
2799 }
2800
2801 sb_kill (&s);
2802 }
2803
2804 /* Handle the .mexit pseudo-op, which immediately exits a macro
2805 expansion. */
2806
2807 void
2808 s_mexit (int ignore ATTRIBUTE_UNUSED)
2809 {
2810 if (macro_nest)
2811 {
2812 cond_exit_macro (macro_nest);
2813 buffer_limit = input_scrub_next_buffer (&input_line_pointer);
2814 }
2815 else
2816 as_warn (_("ignoring macro exit outside a macro definition."));
2817 }
2818
2819 /* Switch in and out of MRI mode. */
2820
2821 void
2822 s_mri (int ignore ATTRIBUTE_UNUSED)
2823 {
2824 int on;
2825 #ifdef MRI_MODE_CHANGE
2826 int old_flag;
2827 #endif
2828
2829 on = get_absolute_expression ();
2830 #ifdef MRI_MODE_CHANGE
2831 old_flag = flag_mri;
2832 #endif
2833 if (on != 0)
2834 {
2835 flag_mri = 1;
2836 #ifdef TC_M68K
2837 flag_m68k_mri = 1;
2838 #endif
2839 macro_mri_mode (1);
2840 }
2841 else
2842 {
2843 flag_mri = 0;
2844 #ifdef TC_M68K
2845 flag_m68k_mri = 0;
2846 #endif
2847 macro_mri_mode (0);
2848 }
2849
2850 /* Operator precedence changes in m68k MRI mode, so we need to
2851 update the operator rankings. */
2852 expr_set_precedence ();
2853
2854 #ifdef MRI_MODE_CHANGE
2855 if (on != old_flag)
2856 MRI_MODE_CHANGE (on);
2857 #endif
2858
2859 demand_empty_rest_of_line ();
2860 }
2861
2862 /* Handle changing the location counter. */
2863
2864 static void
2865 do_org (segT segment, expressionS *exp, int fill)
2866 {
2867 if (segment != now_seg
2868 && segment != absolute_section
2869 && segment != expr_section)
2870 as_bad (_("invalid segment \"%s\""), segment_name (segment));
2871
2872 if (now_seg == absolute_section)
2873 {
2874 if (fill != 0)
2875 as_warn (_("ignoring fill value in absolute section"));
2876 if (exp->X_op != O_constant)
2877 {
2878 as_bad (_("only constant offsets supported in absolute section"));
2879 exp->X_add_number = 0;
2880 }
2881 abs_section_offset = exp->X_add_number;
2882 }
2883 else
2884 {
2885 char *p;
2886 symbolS *sym = exp->X_add_symbol;
2887 offsetT off = exp->X_add_number * OCTETS_PER_BYTE;
2888
2889 if (fill && in_bss ())
2890 as_warn (_("ignoring fill value in section `%s'"),
2891 segment_name (now_seg));
2892
2893 if (exp->X_op != O_constant && exp->X_op != O_symbol)
2894 {
2895 /* Handle complex expressions. */
2896 sym = make_expr_symbol (exp);
2897 off = 0;
2898 }
2899
2900 p = frag_var (rs_org, 1, 1, (relax_substateT) 0, sym, off, (char *) 0);
2901 *p = fill;
2902 }
2903 }
2904
2905 void
2906 s_org (int ignore ATTRIBUTE_UNUSED)
2907 {
2908 segT segment;
2909 expressionS exp;
2910 long temp_fill;
2911
2912 #ifdef md_flush_pending_output
2913 md_flush_pending_output ();
2914 #endif
2915
2916 /* The m68k MRI assembler has a different meaning for .org. It
2917 means to create an absolute section at a given address. We can't
2918 support that--use a linker script instead. */
2919 if (flag_m68k_mri)
2920 {
2921 as_bad (_("MRI style ORG pseudo-op not supported"));
2922 ignore_rest_of_line ();
2923 return;
2924 }
2925
2926 /* Don't believe the documentation of BSD 4.2 AS. There is no such
2927 thing as a sub-segment-relative origin. Any absolute origin is
2928 given a warning, then assumed to be segment-relative. Any
2929 segmented origin expression ("foo+42") had better be in the right
2930 segment or the .org is ignored.
2931
2932 BSD 4.2 AS warns if you try to .org backwards. We cannot because
2933 we never know sub-segment sizes when we are reading code. BSD
2934 will crash trying to emit negative numbers of filler bytes in
2935 certain .orgs. We don't crash, but see as-write for that code.
2936
2937 Don't make frag if need_pass_2==1. */
2938 segment = get_known_segmented_expression (&exp);
2939 if (*input_line_pointer == ',')
2940 {
2941 input_line_pointer++;
2942 temp_fill = get_absolute_expression ();
2943 }
2944 else
2945 temp_fill = 0;
2946
2947 if (!need_pass_2)
2948 do_org (segment, &exp, temp_fill);
2949
2950 demand_empty_rest_of_line ();
2951 }
2952
2953 /* Handle parsing for the MRI SECT/SECTION pseudo-op. This should be
2954 called by the obj-format routine which handles section changing
2955 when in MRI mode. It will create a new section, and return it. It
2956 will set *TYPE to the section type: one of 'C' (code), 'D' (data),
2957 'M' (mixed), or 'R' (romable). The flags will be set in the section. */
2958
2959 void
2960 s_mri_sect (char *type ATTRIBUTE_UNUSED)
2961 {
2962 #ifdef TC_M68K
2963
2964 char *name;
2965 char c;
2966 segT seg;
2967
2968 SKIP_WHITESPACE ();
2969
2970 name = input_line_pointer;
2971 if (!ISDIGIT (*name))
2972 c = get_symbol_name (& name);
2973 else
2974 {
2975 do
2976 {
2977 ++input_line_pointer;
2978 }
2979 while (ISDIGIT (*input_line_pointer));
2980
2981 c = *input_line_pointer;
2982 *input_line_pointer = '\0';
2983 }
2984
2985 name = xstrdup (name);
2986
2987 c = restore_line_pointer (c);
2988
2989 seg = subseg_new (name, 0);
2990
2991 if (c == ',')
2992 {
2993 unsigned int align;
2994
2995 ++input_line_pointer;
2996 align = get_absolute_expression ();
2997 record_alignment (seg, align);
2998 }
2999
3000 *type = 'C';
3001 if (*input_line_pointer == ',')
3002 {
3003 c = *++input_line_pointer;
3004 c = TOUPPER (c);
3005 if (c == 'C' || c == 'D' || c == 'M' || c == 'R')
3006 *type = c;
3007 else
3008 as_bad (_("unrecognized section type"));
3009 ++input_line_pointer;
3010
3011 {
3012 flagword flags;
3013
3014 flags = SEC_NO_FLAGS;
3015 if (*type == 'C')
3016 flags = SEC_ALLOC | SEC_LOAD | SEC_READONLY | SEC_CODE;
3017 else if (*type == 'D' || *type == 'M')
3018 flags = SEC_ALLOC | SEC_LOAD | SEC_DATA;
3019 else if (*type == 'R')
3020 flags = SEC_ALLOC | SEC_LOAD | SEC_DATA | SEC_READONLY | SEC_ROM;
3021 if (flags != SEC_NO_FLAGS)
3022 {
3023 if (!bfd_set_section_flags (seg, flags))
3024 as_warn (_("error setting flags for \"%s\": %s"),
3025 bfd_section_name (seg),
3026 bfd_errmsg (bfd_get_error ()));
3027 }
3028 }
3029 }
3030
3031 /* Ignore the HP type. */
3032 if (*input_line_pointer == ',')
3033 input_line_pointer += 2;
3034
3035 demand_empty_rest_of_line ();
3036
3037 #else /* ! TC_M68K */
3038 /* The MRI assembler seems to use different forms of .sect for
3039 different targets. */
3040 as_bad ("MRI mode not supported for this target");
3041 ignore_rest_of_line ();
3042 #endif /* ! TC_M68K */
3043 }
3044
3045 /* Handle the .print pseudo-op. */
3046
3047 void
3048 s_print (int ignore ATTRIBUTE_UNUSED)
3049 {
3050 char *s;
3051 int len;
3052
3053 s = demand_copy_C_string (&len);
3054 if (s != NULL)
3055 printf ("%s\n", s);
3056 demand_empty_rest_of_line ();
3057 }
3058
3059 /* Handle the .purgem pseudo-op. */
3060
3061 void
3062 s_purgem (int ignore ATTRIBUTE_UNUSED)
3063 {
3064 if (is_it_end_of_statement ())
3065 {
3066 demand_empty_rest_of_line ();
3067 return;
3068 }
3069
3070 do
3071 {
3072 char *name;
3073 char c;
3074
3075 SKIP_WHITESPACE ();
3076 c = get_symbol_name (& name);
3077 delete_macro (name);
3078 *input_line_pointer = c;
3079 SKIP_WHITESPACE_AFTER_NAME ();
3080 }
3081 while (*input_line_pointer++ == ',');
3082
3083 --input_line_pointer;
3084 demand_empty_rest_of_line ();
3085 }
3086
3087 /* Handle the .endm/.endr pseudo-ops. */
3088
3089 static void
3090 s_bad_end (int endr)
3091 {
3092 as_warn (_(".end%c encountered without preceding %s"),
3093 endr ? 'r' : 'm',
3094 endr ? ".rept, .irp, or .irpc" : ".macro");
3095 demand_empty_rest_of_line ();
3096 }
3097
3098 /* Handle the .rept pseudo-op. */
3099
3100 void
3101 s_rept (int ignore ATTRIBUTE_UNUSED)
3102 {
3103 size_t count;
3104
3105 count = (size_t) get_absolute_expression ();
3106
3107 do_repeat (count, "REPT", "ENDR");
3108 }
3109
3110 /* This function provides a generic repeat block implementation. It allows
3111 different directives to be used as the start/end keys. */
3112
3113 void
3114 do_repeat (size_t count, const char *start, const char *end)
3115 {
3116 sb one;
3117 sb many;
3118
3119 if (((ssize_t) count) < 0)
3120 {
3121 as_bad (_("negative count for %s - ignored"), start);
3122 count = 0;
3123 }
3124
3125 sb_new (&one);
3126 if (!buffer_and_nest (start, end, &one, get_non_macro_line_sb))
3127 {
3128 as_bad (_("%s without %s"), start, end);
3129 return;
3130 }
3131
3132 sb_build (&many, count * one.len);
3133 while (count-- > 0)
3134 sb_add_sb (&many, &one);
3135
3136 sb_kill (&one);
3137
3138 input_scrub_include_sb (&many, input_line_pointer, 1);
3139 sb_kill (&many);
3140 buffer_limit = input_scrub_next_buffer (&input_line_pointer);
3141 }
3142
3143 /* Like do_repeat except that any text matching EXPANDER in the
3144 block is replaced by the iteration count. */
3145
3146 void
3147 do_repeat_with_expander (size_t count,
3148 const char * start,
3149 const char * end,
3150 const char * expander)
3151 {
3152 sb one;
3153 sb many;
3154
3155 if (((ssize_t) count) < 0)
3156 {
3157 as_bad (_("negative count for %s - ignored"), start);
3158 count = 0;
3159 }
3160
3161 sb_new (&one);
3162 if (!buffer_and_nest (start, end, &one, get_non_macro_line_sb))
3163 {
3164 as_bad (_("%s without %s"), start, end);
3165 return;
3166 }
3167
3168 sb_new (&many);
3169
3170 if (expander != NULL && strstr (one.ptr, expander) != NULL)
3171 {
3172 while (count -- > 0)
3173 {
3174 int len;
3175 char * sub;
3176 sb processed;
3177
3178 sb_build (& processed, one.len);
3179 sb_add_sb (& processed, & one);
3180 sub = strstr (processed.ptr, expander);
3181 len = sprintf (sub, "%lu", (unsigned long) count);
3182 gas_assert (len < 8);
3183 memmove (sub + len, sub + 8,
3184 processed.ptr + processed.len - (sub + 8));
3185 processed.len -= (8 - len);
3186 sb_add_sb (& many, & processed);
3187 sb_kill (& processed);
3188 }
3189 }
3190 else
3191 while (count-- > 0)
3192 sb_add_sb (&many, &one);
3193
3194 sb_kill (&one);
3195
3196 input_scrub_include_sb (&many, input_line_pointer, 1);
3197 sb_kill (&many);
3198 buffer_limit = input_scrub_next_buffer (&input_line_pointer);
3199 }
3200
3201 /* Skip to end of current repeat loop; EXTRA indicates how many additional
3202 input buffers to skip. Assumes that conditionals preceding the loop end
3203 are properly nested.
3204
3205 This function makes it easier to implement a premature "break" out of the
3206 loop. The EXTRA arg accounts for other buffers we might have inserted,
3207 such as line substitutions. */
3208
3209 void
3210 end_repeat (int extra)
3211 {
3212 cond_exit_macro (macro_nest);
3213 while (extra-- >= 0)
3214 buffer_limit = input_scrub_next_buffer (&input_line_pointer);
3215 }
3216
3217 static void
3218 assign_symbol (char *name, int mode)
3219 {
3220 symbolS *symbolP;
3221
3222 if (name[0] == '.' && name[1] == '\0')
3223 {
3224 /* Turn '. = mumble' into a .org mumble. */
3225 segT segment;
3226 expressionS exp;
3227
3228 segment = get_known_segmented_expression (&exp);
3229
3230 if (!need_pass_2)
3231 do_org (segment, &exp, 0);
3232
3233 return;
3234 }
3235
3236 if ((symbolP = symbol_find (name)) == NULL
3237 && (symbolP = md_undefined_symbol (name)) == NULL)
3238 {
3239 symbolP = symbol_find_or_make (name);
3240 #ifndef NO_LISTING
3241 /* When doing symbol listings, play games with dummy fragments living
3242 outside the normal fragment chain to record the file and line info
3243 for this symbol. */
3244 if (listing & LISTING_SYMBOLS)
3245 {
3246 extern struct list_info_struct *listing_tail;
3247 fragS *dummy_frag = XCNEW (fragS);
3248 dummy_frag->line = listing_tail;
3249 dummy_frag->fr_symbol = symbolP;
3250 symbol_set_frag (symbolP, dummy_frag);
3251 }
3252 #endif
3253 #if defined (OBJ_COFF) && !defined (TE_PE)
3254 /* "set" symbols are local unless otherwise specified. */
3255 SF_SET_LOCAL (symbolP);
3256 #endif
3257 }
3258
3259 if (S_IS_DEFINED (symbolP) || symbol_equated_p (symbolP))
3260 {
3261 if ((mode != 0 || !S_IS_VOLATILE (symbolP))
3262 && !S_CAN_BE_REDEFINED (symbolP))
3263 {
3264 as_bad (_("symbol `%s' is already defined"), name);
3265 ignore_rest_of_line ();
3266 input_line_pointer--;
3267 return;
3268 }
3269 /* If the symbol is volatile, copy the symbol and replace the
3270 original with the copy, so that previous uses of the symbol will
3271 retain the value of the symbol at the point of use. */
3272 else if (S_IS_VOLATILE (symbolP))
3273 symbolP = symbol_clone (symbolP, 1);
3274 }
3275
3276 if (mode == 0)
3277 S_SET_VOLATILE (symbolP);
3278 else if (mode < 0)
3279 S_SET_FORWARD_REF (symbolP);
3280
3281 pseudo_set (symbolP);
3282 }
3283
3284 /* Handle the .equ, .equiv, .eqv, and .set directives. If EQUIV is 1,
3285 then this is .equiv, and it is an error if the symbol is already
3286 defined. If EQUIV is -1, the symbol additionally is a forward
3287 reference. */
3288
3289 void
3290 s_set (int equiv)
3291 {
3292 char *name;
3293
3294 /* Especial apologies for the random logic:
3295 this just grew, and could be parsed much more simply!
3296 Dean in haste. */
3297 if ((name = read_symbol_name ()) == NULL)
3298 return;
3299
3300 if (*input_line_pointer != ',')
3301 {
3302 as_bad (_("expected comma after \"%s\""), name);
3303 ignore_rest_of_line ();
3304 free (name);
3305 return;
3306 }
3307
3308 input_line_pointer++;
3309 assign_symbol (name, equiv);
3310 demand_empty_rest_of_line ();
3311 free (name);
3312 }
3313
3314 void
3315 s_space (int mult)
3316 {
3317 expressionS exp;
3318 expressionS val;
3319 char *p = 0;
3320 char *stop = NULL;
3321 char stopc = 0;
3322 int bytes;
3323
3324 #ifdef md_flush_pending_output
3325 md_flush_pending_output ();
3326 #endif
3327
3328 #ifdef md_cons_align
3329 md_cons_align (1);
3330 #endif
3331
3332 if (flag_mri)
3333 stop = mri_comment_field (&stopc);
3334
3335 /* In m68k MRI mode, we need to align to a word boundary, unless
3336 this is ds.b. */
3337 if (flag_m68k_mri && mult > 1)
3338 {
3339 if (now_seg == absolute_section)
3340 {
3341 abs_section_offset += abs_section_offset & 1;
3342 if (line_label != NULL)
3343 S_SET_VALUE (line_label, abs_section_offset);
3344 }
3345 else if (mri_common_symbol != NULL)
3346 {
3347 valueT mri_val;
3348
3349 mri_val = S_GET_VALUE (mri_common_symbol);
3350 if ((mri_val & 1) != 0)
3351 {
3352 S_SET_VALUE (mri_common_symbol, mri_val + 1);
3353 if (line_label != NULL)
3354 {
3355 expressionS *symexp;
3356
3357 symexp = symbol_get_value_expression (line_label);
3358 know (symexp->X_op == O_symbol);
3359 know (symexp->X_add_symbol == mri_common_symbol);
3360 symexp->X_add_number += 1;
3361 }
3362 }
3363 }
3364 else
3365 {
3366 do_align (1, (char *) NULL, 0, 0);
3367 if (line_label != NULL)
3368 {
3369 symbol_set_frag (line_label, frag_now);
3370 S_SET_VALUE (line_label, frag_now_fix ());
3371 }
3372 }
3373 }
3374
3375 bytes = mult;
3376
3377 expression (&exp);
3378
3379 SKIP_WHITESPACE ();
3380 if (*input_line_pointer == ',')
3381 {
3382 ++input_line_pointer;
3383 expression (&val);
3384 }
3385 else
3386 {
3387 val.X_op = O_constant;
3388 val.X_add_number = 0;
3389 }
3390
3391 if ((val.X_op != O_constant
3392 || val.X_add_number < - 0x80
3393 || val.X_add_number > 0xff
3394 || (mult != 0 && mult != 1 && val.X_add_number != 0))
3395 && (now_seg != absolute_section && !in_bss ()))
3396 {
3397 resolve_expression (&exp);
3398 if (exp.X_op != O_constant)
3399 as_bad (_("unsupported variable size or fill value"));
3400 else
3401 {
3402 offsetT i;
3403
3404 /* PR 20901: Check for excessive values.
3405 FIXME: 1<<10 is an arbitrary limit. Maybe use maxpagesize instead ? */
3406 if (exp.X_add_number < 0 || exp.X_add_number > (1 << 10))
3407 as_bad (_("size value for space directive too large: %lx"),
3408 (long) exp.X_add_number);
3409 else
3410 {
3411 if (mult == 0)
3412 mult = 1;
3413 bytes = mult * exp.X_add_number;
3414
3415 for (i = 0; i < exp.X_add_number; i++)
3416 emit_expr (&val, mult);
3417 }
3418 }
3419 }
3420 else
3421 {
3422 if (now_seg == absolute_section || mri_common_symbol != NULL)
3423 resolve_expression (&exp);
3424
3425 if (exp.X_op == O_constant)
3426 {
3427 offsetT repeat;
3428
3429 repeat = exp.X_add_number;
3430 if (mult)
3431 repeat *= mult;
3432 bytes = repeat;
3433 if (repeat <= 0)
3434 {
3435 if (!flag_mri)
3436 as_warn (_(".space repeat count is zero, ignored"));
3437 else if (repeat < 0)
3438 as_warn (_(".space repeat count is negative, ignored"));
3439 goto getout;
3440 }
3441
3442 /* If we are in the absolute section, just bump the offset. */
3443 if (now_seg == absolute_section)
3444 {
3445 if (val.X_op != O_constant || val.X_add_number != 0)
3446 as_warn (_("ignoring fill value in absolute section"));
3447 abs_section_offset += repeat;
3448 goto getout;
3449 }
3450
3451 /* If we are secretly in an MRI common section, then
3452 creating space just increases the size of the common
3453 symbol. */
3454 if (mri_common_symbol != NULL)
3455 {
3456 S_SET_VALUE (mri_common_symbol,
3457 S_GET_VALUE (mri_common_symbol) + repeat);
3458 goto getout;
3459 }
3460
3461 if (!need_pass_2)
3462 p = frag_var (rs_fill, 1, 1, (relax_substateT) 0, (symbolS *) 0,
3463 (offsetT) repeat, (char *) 0);
3464 }
3465 else
3466 {
3467 if (now_seg == absolute_section)
3468 {
3469 as_bad (_("space allocation too complex in absolute section"));
3470 subseg_set (text_section, 0);
3471 }
3472
3473 if (mri_common_symbol != NULL)
3474 {
3475 as_bad (_("space allocation too complex in common section"));
3476 mri_common_symbol = NULL;
3477 }
3478
3479 if (!need_pass_2)
3480 p = frag_var (rs_space, 1, 1, (relax_substateT) 0,
3481 make_expr_symbol (&exp), (offsetT) 0, (char *) 0);
3482 }
3483
3484 if ((val.X_op != O_constant || val.X_add_number != 0) && in_bss ())
3485 as_warn (_("ignoring fill value in section `%s'"),
3486 segment_name (now_seg));
3487 else if (p)
3488 *p = val.X_add_number;
3489 }
3490
3491 getout:
3492
3493 /* In MRI mode, after an odd number of bytes, we must align to an
3494 even word boundary, unless the next instruction is a dc.b, ds.b
3495 or dcb.b. */
3496 if (flag_mri && (bytes & 1) != 0)
3497 mri_pending_align = 1;
3498
3499 demand_empty_rest_of_line ();
3500
3501 if (flag_mri)
3502 mri_comment_end (stop, stopc);
3503 }
3504
3505 void
3506 s_nops (int ignore ATTRIBUTE_UNUSED)
3507 {
3508 expressionS exp;
3509 expressionS val;
3510
3511 #ifdef md_flush_pending_output
3512 md_flush_pending_output ();
3513 #endif
3514
3515 #ifdef md_cons_align
3516 md_cons_align (1);
3517 #endif
3518
3519 expression (&exp);
3520
3521 if (*input_line_pointer == ',')
3522 {
3523 ++input_line_pointer;
3524 expression (&val);
3525 }
3526 else
3527 {
3528 val.X_op = O_constant;
3529 val.X_add_number = 0;
3530 }
3531
3532 if (val.X_op == O_constant)
3533 {
3534 if (val.X_add_number < 0)
3535 {
3536 as_warn (_("negative nop control byte, ignored"));
3537 val.X_add_number = 0;
3538 }
3539
3540 if (!need_pass_2)
3541 {
3542 /* Store the no-op instruction control byte in the first byte
3543 of frag. */
3544 char *p;
3545 symbolS *sym = make_expr_symbol (&exp);
3546 p = frag_var (rs_space_nop, 1, 1, (relax_substateT) 0,
3547 sym, (offsetT) 0, (char *) 0);
3548 *p = val.X_add_number;
3549 }
3550 }
3551 else
3552 as_bad (_("unsupported variable nop control in .nops directive"));
3553
3554 demand_empty_rest_of_line ();
3555 }
3556
3557 /* This is like s_space, but the value is a floating point number with
3558 the given precision. This is for the MRI dcb.s pseudo-op and
3559 friends. */
3560
3561 void
3562 s_float_space (int float_type)
3563 {
3564 offsetT count;
3565 int flen;
3566 char temp[MAXIMUM_NUMBER_OF_CHARS_FOR_FLOAT];
3567 char *stop = NULL;
3568 char stopc = 0;
3569
3570 #ifdef md_cons_align
3571 md_cons_align (1);
3572 #endif
3573
3574 if (flag_mri)
3575 stop = mri_comment_field (&stopc);
3576
3577 count = get_absolute_expression ();
3578
3579 SKIP_WHITESPACE ();
3580 if (*input_line_pointer != ',')
3581 {
3582 as_bad (_("missing value"));
3583 ignore_rest_of_line ();
3584 if (flag_mri)
3585 mri_comment_end (stop, stopc);
3586 return;
3587 }
3588
3589 ++input_line_pointer;
3590
3591 SKIP_WHITESPACE ();
3592
3593 /* Skip any 0{letter} that may be present. Don't even check if the
3594 * letter is legal. */
3595 if (input_line_pointer[0] == '0'
3596 && ISALPHA (input_line_pointer[1]))
3597 input_line_pointer += 2;
3598
3599 /* Accept :xxxx, where the x's are hex digits, for a floating point
3600 with the exact digits specified. */
3601 if (input_line_pointer[0] == ':')
3602 {
3603 flen = hex_float (float_type, temp);
3604 if (flen < 0)
3605 {
3606 ignore_rest_of_line ();
3607 if (flag_mri)
3608 mri_comment_end (stop, stopc);
3609 return;
3610 }
3611 }
3612 else
3613 {
3614 const char *err;
3615
3616 err = md_atof (float_type, temp, &flen);
3617 know (flen <= MAXIMUM_NUMBER_OF_CHARS_FOR_FLOAT);
3618 know (err != NULL || flen > 0);
3619 if (err)
3620 {
3621 as_bad (_("bad floating literal: %s"), err);
3622 ignore_rest_of_line ();
3623 if (flag_mri)
3624 mri_comment_end (stop, stopc);
3625 return;
3626 }
3627 }
3628
3629 while (--count >= 0)
3630 {
3631 char *p;
3632
3633 p = frag_more (flen);
3634 memcpy (p, temp, (unsigned int) flen);
3635 }
3636
3637 demand_empty_rest_of_line ();
3638
3639 if (flag_mri)
3640 mri_comment_end (stop, stopc);
3641 }
3642
3643 /* Handle the .struct pseudo-op, as found in MIPS assemblers. */
3644
3645 void
3646 s_struct (int ignore ATTRIBUTE_UNUSED)
3647 {
3648 char *stop = NULL;
3649 char stopc = 0;
3650
3651 if (flag_mri)
3652 stop = mri_comment_field (&stopc);
3653 abs_section_offset = get_absolute_expression ();
3654 #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
3655 /* The ELF backend needs to know that we are changing sections, so
3656 that .previous works correctly. */
3657 if (IS_ELF)
3658 obj_elf_section_change_hook ();
3659 #endif
3660 subseg_set (absolute_section, 0);
3661 demand_empty_rest_of_line ();
3662 if (flag_mri)
3663 mri_comment_end (stop, stopc);
3664 }
3665
3666 void
3667 s_text (int ignore ATTRIBUTE_UNUSED)
3668 {
3669 int temp;
3670
3671 temp = get_absolute_expression ();
3672 subseg_set (text_section, (subsegT) temp);
3673 demand_empty_rest_of_line ();
3674 }
3675
3676 /* .weakref x, y sets x as an alias to y that, as long as y is not
3677 referenced directly, will cause y to become a weak symbol. */
3678 void
3679 s_weakref (int ignore ATTRIBUTE_UNUSED)
3680 {
3681 char *name;
3682 symbolS *symbolP;
3683 symbolS *symbolP2;
3684 expressionS exp;
3685
3686 if ((name = read_symbol_name ()) == NULL)
3687 return;
3688
3689 symbolP = symbol_find_or_make (name);
3690
3691 if (S_IS_DEFINED (symbolP) || symbol_equated_p (symbolP))
3692 {
3693 if (!S_IS_VOLATILE (symbolP))
3694 {
3695 as_bad (_("symbol `%s' is already defined"), name);
3696 goto err_out;
3697 }
3698 symbolP = symbol_clone (symbolP, 1);
3699 S_CLEAR_VOLATILE (symbolP);
3700 }
3701
3702 SKIP_WHITESPACE ();
3703
3704 if (*input_line_pointer != ',')
3705 {
3706 as_bad (_("expected comma after \"%s\""), name);
3707 goto err_out;
3708 }
3709
3710 input_line_pointer++;
3711
3712 SKIP_WHITESPACE ();
3713 free (name);
3714
3715 if ((name = read_symbol_name ()) == NULL)
3716 return;
3717
3718 if ((symbolP2 = symbol_find_noref (name, 1)) == NULL
3719 && (symbolP2 = md_undefined_symbol (name)) == NULL)
3720 {
3721 symbolP2 = symbol_find_or_make (name);
3722 S_SET_WEAKREFD (symbolP2);
3723 }
3724 else
3725 {
3726 symbolS *symp = symbolP2;
3727
3728 while (S_IS_WEAKREFR (symp) && symp != symbolP)
3729 {
3730 expressionS *expP = symbol_get_value_expression (symp);
3731
3732 gas_assert (expP->X_op == O_symbol
3733 && expP->X_add_number == 0);
3734 symp = expP->X_add_symbol;
3735 }
3736 if (symp == symbolP)
3737 {
3738 char *loop;
3739
3740 loop = concat (S_GET_NAME (symbolP),
3741 " => ", S_GET_NAME (symbolP2), (const char *) NULL);
3742
3743 symp = symbolP2;
3744 while (symp != symbolP)
3745 {
3746 char *old_loop = loop;
3747
3748 symp = symbol_get_value_expression (symp)->X_add_symbol;
3749 loop = concat (loop, " => ", S_GET_NAME (symp),
3750 (const char *) NULL);
3751 free (old_loop);
3752 }
3753
3754 as_bad (_("%s: would close weakref loop: %s"),
3755 S_GET_NAME (symbolP), loop);
3756
3757 free (loop);
3758 free (name);
3759 ignore_rest_of_line ();
3760 return;
3761 }
3762
3763 /* Short-circuiting instead of just checking here might speed
3764 things up a tiny little bit, but loop error messages would
3765 miss intermediate links. */
3766 /* symbolP2 = symp; */
3767 }
3768
3769 memset (&exp, 0, sizeof (exp));
3770 exp.X_op = O_symbol;
3771 exp.X_add_symbol = symbolP2;
3772
3773 S_SET_SEGMENT (symbolP, undefined_section);
3774 symbol_set_value_expression (symbolP, &exp);
3775 symbol_set_frag (symbolP, &zero_address_frag);
3776 S_SET_WEAKREFR (symbolP);
3777
3778 demand_empty_rest_of_line ();
3779 free (name);
3780 return;
3781
3782 err_out:
3783 ignore_rest_of_line ();
3784 free (name);
3785 return;
3786 }
3787 \f
3788
3789 /* Verify that we are at the end of a line. If not, issue an error and
3790 skip to EOL. */
3791
3792 void
3793 demand_empty_rest_of_line (void)
3794 {
3795 SKIP_WHITESPACE ();
3796 if (is_end_of_line[(unsigned char) *input_line_pointer])
3797 input_line_pointer++;
3798 else
3799 {
3800 if (ISPRINT (*input_line_pointer))
3801 as_bad (_("junk at end of line, first unrecognized character is `%c'"),
3802 *input_line_pointer);
3803 else
3804 as_bad (_("junk at end of line, first unrecognized character valued 0x%x"),
3805 *input_line_pointer);
3806 ignore_rest_of_line ();
3807 }
3808
3809 /* Return pointing just after end-of-line. */
3810 know (is_end_of_line[(unsigned char) input_line_pointer[-1]]);
3811 }
3812
3813 /* Silently advance to the end of line. Use this after already having
3814 issued an error about something bad. */
3815
3816 void
3817 ignore_rest_of_line (void)
3818 {
3819 while (input_line_pointer < buffer_limit
3820 && !is_end_of_line[(unsigned char) *input_line_pointer])
3821 input_line_pointer++;
3822
3823 input_line_pointer++;
3824
3825 /* Return pointing just after end-of-line. */
3826 if (input_line_pointer <= buffer_limit)
3827 know (is_end_of_line[(unsigned char) input_line_pointer[-1]]);
3828 }
3829
3830 /* Sets frag for given symbol to zero_address_frag, except when the
3831 symbol frag is already set to a dummy listing frag. */
3832
3833 static void
3834 set_zero_frag (symbolS *symbolP)
3835 {
3836 if (symbol_get_frag (symbolP)->fr_type != rs_dummy)
3837 symbol_set_frag (symbolP, &zero_address_frag);
3838 }
3839
3840 /* In: Pointer to a symbol.
3841 Input_line_pointer->expression.
3842
3843 Out: Input_line_pointer->just after any whitespace after expression.
3844 Tried to set symbol to value of expression.
3845 Will change symbols type, value, and frag; */
3846
3847 void
3848 pseudo_set (symbolS *symbolP)
3849 {
3850 expressionS exp;
3851 segT seg;
3852
3853 know (symbolP); /* NULL pointer is logic error. */
3854
3855 if (!S_IS_FORWARD_REF (symbolP))
3856 (void) expression (&exp);
3857 else
3858 (void) deferred_expression (&exp);
3859
3860 if (exp.X_op == O_illegal)
3861 as_bad (_("illegal expression"));
3862 else if (exp.X_op == O_absent)
3863 as_bad (_("missing expression"));
3864 else if (exp.X_op == O_big)
3865 {
3866 if (exp.X_add_number > 0)
3867 as_bad (_("bignum invalid"));
3868 else
3869 as_bad (_("floating point number invalid"));
3870 }
3871 else if (exp.X_op == O_subtract
3872 && !S_IS_FORWARD_REF (symbolP)
3873 && SEG_NORMAL (S_GET_SEGMENT (exp.X_add_symbol))
3874 && (symbol_get_frag (exp.X_add_symbol)
3875 == symbol_get_frag (exp.X_op_symbol)))
3876 {
3877 exp.X_op = O_constant;
3878 exp.X_add_number = (S_GET_VALUE (exp.X_add_symbol)
3879 - S_GET_VALUE (exp.X_op_symbol));
3880 }
3881
3882 if (symbol_section_p (symbolP))
3883 {
3884 as_bad ("attempt to set value of section symbol");
3885 return;
3886 }
3887
3888 switch (exp.X_op)
3889 {
3890 case O_illegal:
3891 case O_absent:
3892 case O_big:
3893 exp.X_add_number = 0;
3894 /* Fall through. */
3895 case O_constant:
3896 S_SET_SEGMENT (symbolP, absolute_section);
3897 S_SET_VALUE (symbolP, (valueT) exp.X_add_number);
3898 set_zero_frag (symbolP);
3899 break;
3900
3901 case O_register:
3902 #ifndef TC_GLOBAL_REGISTER_SYMBOL_OK
3903 if (S_IS_EXTERNAL (symbolP))
3904 {
3905 as_bad ("can't equate global symbol `%s' with register name",
3906 S_GET_NAME (symbolP));
3907 return;
3908 }
3909 #endif
3910 S_SET_SEGMENT (symbolP, reg_section);
3911 S_SET_VALUE (symbolP, (valueT) exp.X_add_number);
3912 set_zero_frag (symbolP);
3913 symbol_get_value_expression (symbolP)->X_op = O_register;
3914 break;
3915
3916 case O_symbol:
3917 seg = S_GET_SEGMENT (exp.X_add_symbol);
3918 /* For x=undef+const, create an expression symbol.
3919 For x=x+const, just update x except when x is an undefined symbol
3920 For x=defined+const, evaluate x. */
3921 if (symbolP == exp.X_add_symbol
3922 && (seg != undefined_section
3923 || !symbol_constant_p (symbolP)))
3924 {
3925 *symbol_X_add_number (symbolP) += exp.X_add_number;
3926 break;
3927 }
3928 else if (!S_IS_FORWARD_REF (symbolP) && seg != undefined_section)
3929 {
3930 symbolS *s = exp.X_add_symbol;
3931
3932 if (S_IS_COMMON (s))
3933 as_bad (_("`%s' can't be equated to common symbol `%s'"),
3934 S_GET_NAME (symbolP), S_GET_NAME (s));
3935
3936 S_SET_SEGMENT (symbolP, seg);
3937 S_SET_VALUE (symbolP, exp.X_add_number + S_GET_VALUE (s));
3938 symbol_set_frag (symbolP, symbol_get_frag (s));
3939 copy_symbol_attributes (symbolP, s);
3940 break;
3941 }
3942 S_SET_SEGMENT (symbolP, undefined_section);
3943 symbol_set_value_expression (symbolP, &exp);
3944 copy_symbol_attributes (symbolP, exp.X_add_symbol);
3945 set_zero_frag (symbolP);
3946 break;
3947
3948 default:
3949 /* The value is some complex expression. */
3950 S_SET_SEGMENT (symbolP, expr_section);
3951 symbol_set_value_expression (symbolP, &exp);
3952 set_zero_frag (symbolP);
3953 break;
3954 }
3955 }
3956 \f
3957 /* cons()
3958
3959 CONStruct more frag of .bytes, or .words etc.
3960 Should need_pass_2 be 1 then emit no frag(s).
3961 This understands EXPRESSIONS.
3962
3963 Bug (?)
3964
3965 This has a split personality. We use expression() to read the
3966 value. We can detect if the value won't fit in a byte or word.
3967 But we can't detect if expression() discarded significant digits
3968 in the case of a long. Not worth the crocks required to fix it. */
3969
3970 /* Select a parser for cons expressions. */
3971
3972 /* Some targets need to parse the expression in various fancy ways.
3973 You can define TC_PARSE_CONS_EXPRESSION to do whatever you like
3974 (for example, the HPPA does this). Otherwise, you can define
3975 REPEAT_CONS_EXPRESSIONS to permit repeat counts. If none of these
3976 are defined, which is the normal case, then only simple expressions
3977 are permitted. */
3978
3979 #ifdef TC_M68K
3980 static void
3981 parse_mri_cons (expressionS *exp, unsigned int nbytes);
3982 #endif
3983
3984 #ifndef TC_PARSE_CONS_EXPRESSION
3985 #ifdef REPEAT_CONS_EXPRESSIONS
3986 #define TC_PARSE_CONS_EXPRESSION(EXP, NBYTES) \
3987 (parse_repeat_cons (EXP, NBYTES), TC_PARSE_CONS_RETURN_NONE)
3988 static void
3989 parse_repeat_cons (expressionS *exp, unsigned int nbytes);
3990 #endif
3991
3992 /* If we haven't gotten one yet, just call expression. */
3993 #ifndef TC_PARSE_CONS_EXPRESSION
3994 #define TC_PARSE_CONS_EXPRESSION(EXP, NBYTES) \
3995 (expression (EXP), TC_PARSE_CONS_RETURN_NONE)
3996 #endif
3997 #endif
3998
3999 void
4000 do_parse_cons_expression (expressionS *exp,
4001 int nbytes ATTRIBUTE_UNUSED)
4002 {
4003 (void) TC_PARSE_CONS_EXPRESSION (exp, nbytes);
4004 }
4005
4006
4007 /* Worker to do .byte etc statements.
4008 Clobbers input_line_pointer and checks end-of-line. */
4009
4010 static void
4011 cons_worker (int nbytes, /* 1=.byte, 2=.word, 4=.long. */
4012 int rva)
4013 {
4014 int c;
4015 expressionS exp;
4016 char *stop = NULL;
4017 char stopc = 0;
4018
4019 #ifdef md_flush_pending_output
4020 md_flush_pending_output ();
4021 #endif
4022
4023 if (flag_mri)
4024 stop = mri_comment_field (&stopc);
4025
4026 if (is_it_end_of_statement ())
4027 {
4028 demand_empty_rest_of_line ();
4029 if (flag_mri)
4030 mri_comment_end (stop, stopc);
4031 return;
4032 }
4033
4034 #ifdef TC_ADDRESS_BYTES
4035 if (nbytes == 0)
4036 nbytes = TC_ADDRESS_BYTES ();
4037 #endif
4038
4039 #ifdef md_cons_align
4040 md_cons_align (nbytes);
4041 #endif
4042
4043 c = 0;
4044 do
4045 {
4046 TC_PARSE_CONS_RETURN_TYPE ret = TC_PARSE_CONS_RETURN_NONE;
4047 #ifdef TC_CONS_FIX_CHECK
4048 fixS **cur_fix = &frchain_now->fix_tail;
4049
4050 if (*cur_fix != NULL)
4051 cur_fix = &(*cur_fix)->fx_next;
4052 #endif
4053
4054 #ifdef TC_M68K
4055 if (flag_m68k_mri)
4056 parse_mri_cons (&exp, (unsigned int) nbytes);
4057 else
4058 #endif
4059 {
4060 #if 0
4061 if (*input_line_pointer == '"')
4062 {
4063 as_bad (_("unexpected `\"' in expression"));
4064 ignore_rest_of_line ();
4065 return;
4066 }
4067 #endif
4068 ret = TC_PARSE_CONS_EXPRESSION (&exp, (unsigned int) nbytes);
4069 }
4070
4071 if (rva)
4072 {
4073 if (exp.X_op == O_symbol)
4074 exp.X_op = O_symbol_rva;
4075 else
4076 as_fatal (_("rva without symbol"));
4077 }
4078 emit_expr_with_reloc (&exp, (unsigned int) nbytes, ret);
4079 #ifdef TC_CONS_FIX_CHECK
4080 TC_CONS_FIX_CHECK (&exp, nbytes, *cur_fix);
4081 #endif
4082 ++c;
4083 }
4084 while (*input_line_pointer++ == ',');
4085
4086 /* In MRI mode, after an odd number of bytes, we must align to an
4087 even word boundary, unless the next instruction is a dc.b, ds.b
4088 or dcb.b. */
4089 if (flag_mri && nbytes == 1 && (c & 1) != 0)
4090 mri_pending_align = 1;
4091
4092 input_line_pointer--; /* Put terminator back into stream. */
4093
4094 demand_empty_rest_of_line ();
4095
4096 if (flag_mri)
4097 mri_comment_end (stop, stopc);
4098 }
4099
4100 void
4101 cons (int size)
4102 {
4103 cons_worker (size, 0);
4104 }
4105
4106 void
4107 s_rva (int size)
4108 {
4109 cons_worker (size, 1);
4110 }
4111
4112 /* .reloc offset, reloc_name, symbol+addend. */
4113
4114 static void
4115 s_reloc (int ignore ATTRIBUTE_UNUSED)
4116 {
4117 char *stop = NULL;
4118 char stopc = 0;
4119 expressionS exp;
4120 char *r_name;
4121 int c;
4122 struct reloc_list *reloc;
4123 struct _bfd_rel { const char * name; bfd_reloc_code_real_type code; };
4124 static struct _bfd_rel bfd_relocs[] =
4125 {
4126 { "NONE", BFD_RELOC_NONE },
4127 { "8", BFD_RELOC_8 },
4128 { "16", BFD_RELOC_16 },
4129 { "32", BFD_RELOC_32 },
4130 { "64", BFD_RELOC_64 }
4131 };
4132
4133 reloc = XNEW (struct reloc_list);
4134
4135 if (flag_mri)
4136 stop = mri_comment_field (&stopc);
4137
4138 expression (&exp);
4139 switch (exp.X_op)
4140 {
4141 case O_illegal:
4142 case O_absent:
4143 case O_big:
4144 case O_register:
4145 as_bad (_("missing or bad offset expression"));
4146 goto err_out;
4147 case O_constant:
4148 exp.X_add_symbol = section_symbol (now_seg);
4149 exp.X_op = O_symbol;
4150 /* Fallthru */
4151 case O_symbol:
4152 if (exp.X_add_number == 0)
4153 {
4154 reloc->u.a.offset_sym = exp.X_add_symbol;
4155 break;
4156 }
4157 /* Fallthru */
4158 default:
4159 reloc->u.a.offset_sym = make_expr_symbol (&exp);
4160 break;
4161 }
4162
4163 SKIP_WHITESPACE ();
4164 if (*input_line_pointer != ',')
4165 {
4166 as_bad (_("missing reloc type"));
4167 goto err_out;
4168 }
4169
4170 ++input_line_pointer;
4171 SKIP_WHITESPACE ();
4172 c = get_symbol_name (& r_name);
4173 if (strncasecmp (r_name, "BFD_RELOC_", 10) == 0)
4174 {
4175 unsigned int i;
4176
4177 for (reloc->u.a.howto = NULL, i = 0; i < ARRAY_SIZE (bfd_relocs); i++)
4178 if (strcasecmp (r_name + 10, bfd_relocs[i].name) == 0)
4179 {
4180 reloc->u.a.howto = bfd_reloc_type_lookup (stdoutput,
4181 bfd_relocs[i].code);
4182 break;
4183 }
4184 }
4185 else
4186 reloc->u.a.howto = bfd_reloc_name_lookup (stdoutput, r_name);
4187 *input_line_pointer = c;
4188 if (reloc->u.a.howto == NULL)
4189 {
4190 as_bad (_("unrecognized reloc type"));
4191 goto err_out;
4192 }
4193
4194 exp.X_op = O_absent;
4195 SKIP_WHITESPACE_AFTER_NAME ();
4196 if (*input_line_pointer == ',')
4197 {
4198 ++input_line_pointer;
4199 expression (&exp);
4200 }
4201 switch (exp.X_op)
4202 {
4203 case O_illegal:
4204 case O_big:
4205 case O_register:
4206 as_bad (_("bad reloc expression"));
4207 err_out:
4208 ignore_rest_of_line ();
4209 free (reloc);
4210 if (flag_mri)
4211 mri_comment_end (stop, stopc);
4212 return;
4213 case O_absent:
4214 reloc->u.a.sym = NULL;
4215 reloc->u.a.addend = 0;
4216 break;
4217 case O_constant:
4218 reloc->u.a.sym = NULL;
4219 reloc->u.a.addend = exp.X_add_number;
4220 break;
4221 case O_symbol:
4222 reloc->u.a.sym = exp.X_add_symbol;
4223 reloc->u.a.addend = exp.X_add_number;
4224 break;
4225 default:
4226 reloc->u.a.sym = make_expr_symbol (&exp);
4227 reloc->u.a.addend = 0;
4228 break;
4229 }
4230
4231 reloc->file = as_where (&reloc->line);
4232 reloc->next = reloc_list;
4233 reloc_list = reloc;
4234
4235 demand_empty_rest_of_line ();
4236 if (flag_mri)
4237 mri_comment_end (stop, stopc);
4238 }
4239
4240 /* Put the contents of expression EXP into the object file using
4241 NBYTES bytes. If need_pass_2 is 1, this does nothing. */
4242
4243 void
4244 emit_expr (expressionS *exp, unsigned int nbytes)
4245 {
4246 emit_expr_with_reloc (exp, nbytes, TC_PARSE_CONS_RETURN_NONE);
4247 }
4248
4249 void
4250 emit_expr_with_reloc (expressionS *exp,
4251 unsigned int nbytes,
4252 TC_PARSE_CONS_RETURN_TYPE reloc)
4253 {
4254 operatorT op;
4255 char *p;
4256 valueT extra_digit = 0;
4257
4258 /* Don't do anything if we are going to make another pass. */
4259 if (need_pass_2)
4260 return;
4261
4262 frag_grow (nbytes);
4263 dot_value = frag_now_fix ();
4264 dot_frag = frag_now;
4265
4266 #ifndef NO_LISTING
4267 #ifdef OBJ_ELF
4268 /* When gcc emits DWARF 1 debugging pseudo-ops, a line number will
4269 appear as a four byte positive constant in the .line section,
4270 followed by a 2 byte 0xffff. Look for that case here. */
4271 {
4272 static int dwarf_line = -1;
4273
4274 if (strcmp (segment_name (now_seg), ".line") != 0)
4275 dwarf_line = -1;
4276 else if (dwarf_line >= 0
4277 && nbytes == 2
4278 && exp->X_op == O_constant
4279 && (exp->X_add_number == -1 || exp->X_add_number == 0xffff))
4280 listing_source_line ((unsigned int) dwarf_line);
4281 else if (nbytes == 4
4282 && exp->X_op == O_constant
4283 && exp->X_add_number >= 0)
4284 dwarf_line = exp->X_add_number;
4285 else
4286 dwarf_line = -1;
4287 }
4288
4289 /* When gcc emits DWARF 1 debugging pseudo-ops, a file name will
4290 appear as a 2 byte TAG_compile_unit (0x11) followed by a 2 byte
4291 AT_sibling (0x12) followed by a four byte address of the sibling
4292 followed by a 2 byte AT_name (0x38) followed by the name of the
4293 file. We look for that case here. */
4294 {
4295 static int dwarf_file = 0;
4296
4297 if (strcmp (segment_name (now_seg), ".debug") != 0)
4298 dwarf_file = 0;
4299 else if (dwarf_file == 0
4300 && nbytes == 2
4301 && exp->X_op == O_constant
4302 && exp->X_add_number == 0x11)
4303 dwarf_file = 1;
4304 else if (dwarf_file == 1
4305 && nbytes == 2
4306 && exp->X_op == O_constant
4307 && exp->X_add_number == 0x12)
4308 dwarf_file = 2;
4309 else if (dwarf_file == 2
4310 && nbytes == 4)
4311 dwarf_file = 3;
4312 else if (dwarf_file == 3
4313 && nbytes == 2
4314 && exp->X_op == O_constant
4315 && exp->X_add_number == 0x38)
4316 dwarf_file = 4;
4317 else
4318 dwarf_file = 0;
4319
4320 /* The variable dwarf_file_string tells stringer that the string
4321 may be the name of the source file. */
4322 if (dwarf_file == 4)
4323 dwarf_file_string = 1;
4324 else
4325 dwarf_file_string = 0;
4326 }
4327 #endif
4328 #endif
4329
4330 if (check_eh_frame (exp, &nbytes))
4331 return;
4332
4333 op = exp->X_op;
4334
4335 /* Handle a negative bignum. */
4336 if (op == O_uminus
4337 && exp->X_add_number == 0
4338 && symbol_get_value_expression (exp->X_add_symbol)->X_op == O_big
4339 && symbol_get_value_expression (exp->X_add_symbol)->X_add_number > 0)
4340 {
4341 int i;
4342 unsigned long carry;
4343
4344 exp = symbol_get_value_expression (exp->X_add_symbol);
4345
4346 /* Negate the bignum: one's complement each digit and add 1. */
4347 carry = 1;
4348 for (i = 0; i < exp->X_add_number; i++)
4349 {
4350 unsigned long next;
4351
4352 next = (((~(generic_bignum[i] & LITTLENUM_MASK))
4353 & LITTLENUM_MASK)
4354 + carry);
4355 generic_bignum[i] = next & LITTLENUM_MASK;
4356 carry = next >> LITTLENUM_NUMBER_OF_BITS;
4357 }
4358
4359 /* We can ignore any carry out, because it will be handled by
4360 extra_digit if it is needed. */
4361
4362 extra_digit = (valueT) -1;
4363 op = O_big;
4364 }
4365
4366 if (op == O_absent || op == O_illegal)
4367 {
4368 as_warn (_("zero assumed for missing expression"));
4369 exp->X_add_number = 0;
4370 op = O_constant;
4371 }
4372 else if (op == O_big && exp->X_add_number <= 0)
4373 {
4374 as_bad (_("floating point number invalid"));
4375 exp->X_add_number = 0;
4376 op = O_constant;
4377 }
4378 else if (op == O_register)
4379 {
4380 as_warn (_("register value used as expression"));
4381 op = O_constant;
4382 }
4383
4384 /* Allow `.word 0' in the absolute section. */
4385 if (now_seg == absolute_section)
4386 {
4387 if (op != O_constant || exp->X_add_number != 0)
4388 as_bad (_("attempt to store value in absolute section"));
4389 abs_section_offset += nbytes;
4390 return;
4391 }
4392
4393 /* Allow `.word 0' in BSS style sections. */
4394 if ((op != O_constant || exp->X_add_number != 0) && in_bss ())
4395 as_bad (_("attempt to store non-zero value in section `%s'"),
4396 segment_name (now_seg));
4397
4398 p = frag_more ((int) nbytes);
4399
4400 if (reloc != TC_PARSE_CONS_RETURN_NONE)
4401 {
4402 emit_expr_fix (exp, nbytes, frag_now, p, reloc);
4403 return;
4404 }
4405
4406 #ifndef WORKING_DOT_WORD
4407 /* If we have the difference of two symbols in a word, save it on
4408 the broken_words list. See the code in write.c. */
4409 if (op == O_subtract && nbytes == 2)
4410 {
4411 struct broken_word *x;
4412
4413 x = XNEW (struct broken_word);
4414 x->next_broken_word = broken_words;
4415 broken_words = x;
4416 x->seg = now_seg;
4417 x->subseg = now_subseg;
4418 x->frag = frag_now;
4419 x->word_goes_here = p;
4420 x->dispfrag = 0;
4421 x->add = exp->X_add_symbol;
4422 x->sub = exp->X_op_symbol;
4423 x->addnum = exp->X_add_number;
4424 x->added = 0;
4425 x->use_jump = 0;
4426 new_broken_words++;
4427 return;
4428 }
4429 #endif
4430
4431 /* If we have an integer, but the number of bytes is too large to
4432 pass to md_number_to_chars, handle it as a bignum. */
4433 if (op == O_constant && nbytes > sizeof (valueT))
4434 {
4435 extra_digit = exp->X_unsigned ? 0 : -1;
4436 convert_to_bignum (exp, !exp->X_unsigned);
4437 op = O_big;
4438 }
4439
4440 if (op == O_constant)
4441 {
4442 valueT get;
4443 valueT use;
4444 valueT mask;
4445 valueT hibit;
4446 valueT unmask;
4447
4448 /* JF << of >= number of bits in the object is undefined. In
4449 particular SPARC (Sun 4) has problems. */
4450 if (nbytes >= sizeof (valueT))
4451 {
4452 mask = 0;
4453 if (nbytes > sizeof (valueT))
4454 hibit = 0;
4455 else
4456 hibit = (valueT) 1 << (nbytes * BITS_PER_CHAR - 1);
4457 }
4458 else
4459 {
4460 /* Don't store these bits. */
4461 mask = ~(valueT) 0 << (BITS_PER_CHAR * nbytes);
4462 hibit = (valueT) 1 << (nbytes * BITS_PER_CHAR - 1);
4463 }
4464
4465 unmask = ~mask; /* Do store these bits. */
4466
4467 #ifdef NEVER
4468 "Do this mod if you want every overflow check to assume SIGNED 2's complement data.";
4469 mask = ~(unmask >> 1); /* Includes sign bit now. */
4470 #endif
4471
4472 get = exp->X_add_number;
4473 use = get & unmask;
4474 if ((get & mask) != 0
4475 && ((get & mask) != mask
4476 || (get & hibit) == 0))
4477 {
4478 /* Leading bits contain both 0s & 1s. */
4479 #if defined (BFD64) && BFD_HOST_64BIT_LONG_LONG
4480 #ifndef __MSVCRT__
4481 as_warn (_("value 0x%llx truncated to 0x%llx"),
4482 (unsigned long long) get, (unsigned long long) use);
4483 #else
4484 as_warn (_("value 0x%I64x truncated to 0x%I64x"),
4485 (unsigned long long) get, (unsigned long long) use);
4486 #endif
4487 #else
4488 as_warn (_("value 0x%lx truncated to 0x%lx"),
4489 (unsigned long) get, (unsigned long) use);
4490 #endif
4491 }
4492 /* Put bytes in right order. */
4493 md_number_to_chars (p, use, (int) nbytes);
4494 }
4495 else if (op == O_big)
4496 {
4497 unsigned int size;
4498 LITTLENUM_TYPE *nums;
4499
4500 size = exp->X_add_number * CHARS_PER_LITTLENUM;
4501 if (nbytes < size)
4502 {
4503 int i = nbytes / CHARS_PER_LITTLENUM;
4504
4505 if (i != 0)
4506 {
4507 LITTLENUM_TYPE sign = 0;
4508 if ((generic_bignum[--i]
4509 & (1 << (LITTLENUM_NUMBER_OF_BITS - 1))) != 0)
4510 sign = ~(LITTLENUM_TYPE) 0;
4511
4512 while (++i < exp->X_add_number)
4513 if (generic_bignum[i] != sign)
4514 break;
4515 }
4516 else if (nbytes == 1)
4517 {
4518 /* We have nbytes == 1 and CHARS_PER_LITTLENUM == 2 (probably).
4519 Check that bits 8.. of generic_bignum[0] match bit 7
4520 and that they match all of generic_bignum[1..exp->X_add_number]. */
4521 LITTLENUM_TYPE sign = (generic_bignum[0] & (1 << 7)) ? -1 : 0;
4522 LITTLENUM_TYPE himask = LITTLENUM_MASK & ~ 0xFF;
4523
4524 if ((generic_bignum[0] & himask) == (sign & himask))
4525 {
4526 while (++i < exp->X_add_number)
4527 if (generic_bignum[i] != sign)
4528 break;
4529 }
4530 }
4531
4532 if (i < exp->X_add_number)
4533 as_warn (ngettext ("bignum truncated to %d byte",
4534 "bignum truncated to %d bytes",
4535 nbytes),
4536 nbytes);
4537 size = nbytes;
4538 }
4539
4540 if (nbytes == 1)
4541 {
4542 md_number_to_chars (p, (valueT) generic_bignum[0], 1);
4543 return;
4544 }
4545 know (nbytes % CHARS_PER_LITTLENUM == 0);
4546
4547 if (target_big_endian)
4548 {
4549 while (nbytes > size)
4550 {
4551 md_number_to_chars (p, extra_digit, CHARS_PER_LITTLENUM);
4552 nbytes -= CHARS_PER_LITTLENUM;
4553 p += CHARS_PER_LITTLENUM;
4554 }
4555
4556 nums = generic_bignum + size / CHARS_PER_LITTLENUM;
4557 while (size >= CHARS_PER_LITTLENUM)
4558 {
4559 --nums;
4560 md_number_to_chars (p, (valueT) *nums, CHARS_PER_LITTLENUM);
4561 size -= CHARS_PER_LITTLENUM;
4562 p += CHARS_PER_LITTLENUM;
4563 }
4564 }
4565 else
4566 {
4567 nums = generic_bignum;
4568 while (size >= CHARS_PER_LITTLENUM)
4569 {
4570 md_number_to_chars (p, (valueT) *nums, CHARS_PER_LITTLENUM);
4571 ++nums;
4572 size -= CHARS_PER_LITTLENUM;
4573 p += CHARS_PER_LITTLENUM;
4574 nbytes -= CHARS_PER_LITTLENUM;
4575 }
4576
4577 while (nbytes >= CHARS_PER_LITTLENUM)
4578 {
4579 md_number_to_chars (p, extra_digit, CHARS_PER_LITTLENUM);
4580 nbytes -= CHARS_PER_LITTLENUM;
4581 p += CHARS_PER_LITTLENUM;
4582 }
4583 }
4584 }
4585 else
4586 emit_expr_fix (exp, nbytes, frag_now, p, TC_PARSE_CONS_RETURN_NONE);
4587 }
4588
4589 void
4590 emit_expr_fix (expressionS *exp, unsigned int nbytes, fragS *frag, char *p,
4591 TC_PARSE_CONS_RETURN_TYPE r ATTRIBUTE_UNUSED)
4592 {
4593 int offset = 0;
4594 unsigned int size = nbytes;
4595
4596 memset (p, 0, size);
4597
4598 /* Generate a fixS to record the symbol value. */
4599
4600 #ifdef TC_CONS_FIX_NEW
4601 TC_CONS_FIX_NEW (frag, p - frag->fr_literal + offset, size, exp, r);
4602 #else
4603 if (r != TC_PARSE_CONS_RETURN_NONE)
4604 {
4605 reloc_howto_type *reloc_howto;
4606
4607 reloc_howto = bfd_reloc_type_lookup (stdoutput, r);
4608 size = bfd_get_reloc_size (reloc_howto);
4609
4610 if (size > nbytes)
4611 {
4612 as_bad (ngettext ("%s relocations do not fit in %u byte",
4613 "%s relocations do not fit in %u bytes",
4614 nbytes),
4615 reloc_howto->name, nbytes);
4616 return;
4617 }
4618 else if (target_big_endian)
4619 offset = nbytes - size;
4620 }
4621 else
4622 switch (size)
4623 {
4624 case 1:
4625 r = BFD_RELOC_8;
4626 break;
4627 case 2:
4628 r = BFD_RELOC_16;
4629 break;
4630 case 3:
4631 r = BFD_RELOC_24;
4632 break;
4633 case 4:
4634 r = BFD_RELOC_32;
4635 break;
4636 case 8:
4637 r = BFD_RELOC_64;
4638 break;
4639 default:
4640 as_bad (_("unsupported BFD relocation size %u"), size);
4641 return;
4642 }
4643 fix_new_exp (frag, p - frag->fr_literal + offset, size,
4644 exp, 0, r);
4645 #endif
4646 }
4647 \f
4648 /* Handle an MRI style string expression. */
4649
4650 #ifdef TC_M68K
4651 static void
4652 parse_mri_cons (expressionS *exp, unsigned int nbytes)
4653 {
4654 if (*input_line_pointer != '\''
4655 && (input_line_pointer[1] != '\''
4656 || (*input_line_pointer != 'A'
4657 && *input_line_pointer != 'E')))
4658 (void) TC_PARSE_CONS_EXPRESSION (exp, nbytes);
4659 else
4660 {
4661 unsigned int scan;
4662 unsigned int result = 0;
4663
4664 /* An MRI style string. Cut into as many bytes as will fit into
4665 a nbyte chunk, left justify if necessary, and separate with
4666 commas so we can try again later. */
4667 if (*input_line_pointer == 'A')
4668 ++input_line_pointer;
4669 else if (*input_line_pointer == 'E')
4670 {
4671 as_bad (_("EBCDIC constants are not supported"));
4672 ++input_line_pointer;
4673 }
4674
4675 input_line_pointer++;
4676 for (scan = 0; scan < nbytes; scan++)
4677 {
4678 if (*input_line_pointer == '\'')
4679 {
4680 if (input_line_pointer[1] == '\'')
4681 {
4682 input_line_pointer++;
4683 }
4684 else
4685 break;
4686 }
4687 result = (result << 8) | (*input_line_pointer++);
4688 }
4689
4690 /* Left justify. */
4691 while (scan < nbytes)
4692 {
4693 result <<= 8;
4694 scan++;
4695 }
4696
4697 /* Create correct expression. */
4698 exp->X_op = O_constant;
4699 exp->X_add_number = result;
4700
4701 /* Fake it so that we can read the next char too. */
4702 if (input_line_pointer[0] != '\'' ||
4703 (input_line_pointer[0] == '\'' && input_line_pointer[1] == '\''))
4704 {
4705 input_line_pointer -= 2;
4706 input_line_pointer[0] = ',';
4707 input_line_pointer[1] = '\'';
4708 }
4709 else
4710 input_line_pointer++;
4711 }
4712 }
4713 #endif /* TC_M68K */
4714 \f
4715 #ifdef REPEAT_CONS_EXPRESSIONS
4716
4717 /* Parse a repeat expression for cons. This is used by the MIPS
4718 assembler. The format is NUMBER:COUNT; NUMBER appears in the
4719 object file COUNT times.
4720
4721 To use this for a target, define REPEAT_CONS_EXPRESSIONS. */
4722
4723 static void
4724 parse_repeat_cons (expressionS *exp, unsigned int nbytes)
4725 {
4726 expressionS count;
4727 int i;
4728
4729 expression (exp);
4730
4731 if (*input_line_pointer != ':')
4732 {
4733 /* No repeat count. */
4734 return;
4735 }
4736
4737 ++input_line_pointer;
4738 expression (&count);
4739 if (count.X_op != O_constant
4740 || count.X_add_number <= 0)
4741 {
4742 as_warn (_("unresolvable or nonpositive repeat count; using 1"));
4743 return;
4744 }
4745
4746 /* The cons function is going to output this expression once. So we
4747 output it count - 1 times. */
4748 for (i = count.X_add_number - 1; i > 0; i--)
4749 emit_expr (exp, nbytes);
4750 }
4751
4752 #endif /* REPEAT_CONS_EXPRESSIONS */
4753 \f
4754 /* Parse a floating point number represented as a hex constant. This
4755 permits users to specify the exact bits they want in the floating
4756 point number. */
4757
4758 static int
4759 hex_float (int float_type, char *bytes)
4760 {
4761 int length;
4762 int i;
4763
4764 switch (float_type)
4765 {
4766 case 'f':
4767 case 'F':
4768 case 's':
4769 case 'S':
4770 length = 4;
4771 break;
4772
4773 case 'd':
4774 case 'D':
4775 case 'r':
4776 case 'R':
4777 length = 8;
4778 break;
4779
4780 case 'x':
4781 case 'X':
4782 length = 12;
4783 break;
4784
4785 case 'p':
4786 case 'P':
4787 length = 12;
4788 break;
4789
4790 default:
4791 as_bad (_("unknown floating type type '%c'"), float_type);
4792 return -1;
4793 }
4794
4795 /* It would be nice if we could go through expression to parse the
4796 hex constant, but if we get a bignum it's a pain to sort it into
4797 the buffer correctly. */
4798 i = 0;
4799 while (hex_p (*input_line_pointer) || *input_line_pointer == '_')
4800 {
4801 int d;
4802
4803 /* The MRI assembler accepts arbitrary underscores strewn about
4804 through the hex constant, so we ignore them as well. */
4805 if (*input_line_pointer == '_')
4806 {
4807 ++input_line_pointer;
4808 continue;
4809 }
4810
4811 if (i >= length)
4812 {
4813 as_warn (_("floating point constant too large"));
4814 return -1;
4815 }
4816 d = hex_value (*input_line_pointer) << 4;
4817 ++input_line_pointer;
4818 while (*input_line_pointer == '_')
4819 ++input_line_pointer;
4820 if (hex_p (*input_line_pointer))
4821 {
4822 d += hex_value (*input_line_pointer);
4823 ++input_line_pointer;
4824 }
4825 if (target_big_endian)
4826 bytes[i] = d;
4827 else
4828 bytes[length - i - 1] = d;
4829 ++i;
4830 }
4831
4832 if (i < length)
4833 {
4834 if (target_big_endian)
4835 memset (bytes + i, 0, length - i);
4836 else
4837 memset (bytes, 0, length - i);
4838 }
4839
4840 return length;
4841 }
4842
4843 /* float_cons()
4844
4845 CONStruct some more frag chars of .floats .ffloats etc.
4846 Makes 0 or more new frags.
4847 If need_pass_2 == 1, no frags are emitted.
4848 This understands only floating literals, not expressions. Sorry.
4849
4850 A floating constant is defined by atof_generic(), except it is preceded
4851 by 0d 0f 0g or 0h. After observing the STRANGE way my BSD AS does its
4852 reading, I decided to be incompatible. This always tries to give you
4853 rounded bits to the precision of the pseudo-op. Former AS did premature
4854 truncation, restored noisy bits instead of trailing 0s AND gave you
4855 a choice of 2 flavours of noise according to which of 2 floating-point
4856 scanners you directed AS to use.
4857
4858 In: input_line_pointer->whitespace before, or '0' of flonum. */
4859
4860 void
4861 float_cons (/* Clobbers input_line-pointer, checks end-of-line. */
4862 int float_type /* 'f':.ffloat ... 'F':.float ... */)
4863 {
4864 char *p;
4865 int length; /* Number of chars in an object. */
4866 const char *err; /* Error from scanning floating literal. */
4867 char temp[MAXIMUM_NUMBER_OF_CHARS_FOR_FLOAT];
4868
4869 if (is_it_end_of_statement ())
4870 {
4871 demand_empty_rest_of_line ();
4872 return;
4873 }
4874
4875 if (now_seg == absolute_section)
4876 {
4877 as_bad (_("attempt to store float in absolute section"));
4878 ignore_rest_of_line ();
4879 return;
4880 }
4881
4882 if (in_bss ())
4883 {
4884 as_bad (_("attempt to store float in section `%s'"),
4885 segment_name (now_seg));
4886 ignore_rest_of_line ();
4887 return;
4888 }
4889
4890 #ifdef md_flush_pending_output
4891 md_flush_pending_output ();
4892 #endif
4893
4894 #ifdef md_cons_align
4895 md_cons_align (1);
4896 #endif
4897
4898 do
4899 {
4900 /* input_line_pointer->1st char of a flonum (we hope!). */
4901 SKIP_WHITESPACE ();
4902
4903 /* Skip any 0{letter} that may be present. Don't even check if the
4904 letter is legal. Someone may invent a "z" format and this routine
4905 has no use for such information. Lusers beware: you get
4906 diagnostics if your input is ill-conditioned. */
4907 if (input_line_pointer[0] == '0'
4908 && ISALPHA (input_line_pointer[1]))
4909 input_line_pointer += 2;
4910
4911 /* Accept :xxxx, where the x's are hex digits, for a floating
4912 point with the exact digits specified. */
4913 if (input_line_pointer[0] == ':')
4914 {
4915 ++input_line_pointer;
4916 length = hex_float (float_type, temp);
4917 if (length < 0)
4918 {
4919 ignore_rest_of_line ();
4920 return;
4921 }
4922 }
4923 else
4924 {
4925 err = md_atof (float_type, temp, &length);
4926 know (length <= MAXIMUM_NUMBER_OF_CHARS_FOR_FLOAT);
4927 know (err != NULL || length > 0);
4928 if (err)
4929 {
4930 as_bad (_("bad floating literal: %s"), err);
4931 ignore_rest_of_line ();
4932 return;
4933 }
4934 }
4935
4936 if (!need_pass_2)
4937 {
4938 int count;
4939
4940 count = 1;
4941
4942 #ifdef REPEAT_CONS_EXPRESSIONS
4943 if (*input_line_pointer == ':')
4944 {
4945 expressionS count_exp;
4946
4947 ++input_line_pointer;
4948 expression (&count_exp);
4949
4950 if (count_exp.X_op != O_constant
4951 || count_exp.X_add_number <= 0)
4952 as_warn (_("unresolvable or nonpositive repeat count; using 1"));
4953 else
4954 count = count_exp.X_add_number;
4955 }
4956 #endif
4957
4958 while (--count >= 0)
4959 {
4960 p = frag_more (length);
4961 memcpy (p, temp, (unsigned int) length);
4962 }
4963 }
4964 SKIP_WHITESPACE ();
4965 }
4966 while (*input_line_pointer++ == ',');
4967
4968 /* Put terminator back into stream. */
4969 --input_line_pointer;
4970 demand_empty_rest_of_line ();
4971 }
4972 \f
4973 /* LEB128 Encoding.
4974
4975 Note - we are using the DWARF standard's definition of LEB128 encoding
4976 where each 7-bit value is a stored in a byte, *not* an octet. This
4977 means that on targets where a byte contains multiple octets there is
4978 a *huge waste of space*. (This also means that we do not have to
4979 have special versions of these functions for when OCTETS_PER_BYTE_POWER
4980 is non-zero).
4981
4982 If the 7-bit values were to be packed into N-bit bytes (where N > 8)
4983 we would then have to consider whether multiple, successive LEB128
4984 values should be packed into the bytes without padding (bad idea) or
4985 whether each LEB128 number is padded out to a whole number of bytes.
4986 Plus you have to decide on the endianness of packing octets into a
4987 byte. */
4988
4989 /* Return the size of a LEB128 value in bytes. */
4990
4991 static inline unsigned int
4992 sizeof_sleb128 (offsetT value)
4993 {
4994 int size = 0;
4995 unsigned byte;
4996
4997 do
4998 {
4999 byte = (value & 0x7f);
5000 /* Sadly, we cannot rely on typical arithmetic right shift behaviour.
5001 Fortunately, we can structure things so that the extra work reduces
5002 to a noop on systems that do things "properly". */
5003 value = (value >> 7) | ~(-(offsetT)1 >> 7);
5004 size += 1;
5005 }
5006 while (!(((value == 0) && ((byte & 0x40) == 0))
5007 || ((value == -1) && ((byte & 0x40) != 0))));
5008
5009 return size;
5010 }
5011
5012 static inline unsigned int
5013 sizeof_uleb128 (valueT value)
5014 {
5015 int size = 0;
5016
5017 do
5018 {
5019 value >>= 7;
5020 size += 1;
5021 }
5022 while (value != 0);
5023
5024 return size;
5025 }
5026
5027 unsigned int
5028 sizeof_leb128 (valueT value, int sign)
5029 {
5030 if (sign)
5031 return sizeof_sleb128 ((offsetT) value);
5032 else
5033 return sizeof_uleb128 (value);
5034 }
5035
5036 /* Output a LEB128 value. Returns the number of bytes used. */
5037
5038 static inline unsigned int
5039 output_sleb128 (char *p, offsetT value)
5040 {
5041 char *orig = p;
5042 int more;
5043
5044 do
5045 {
5046 unsigned byte = (value & 0x7f);
5047
5048 /* Sadly, we cannot rely on typical arithmetic right shift behaviour.
5049 Fortunately, we can structure things so that the extra work reduces
5050 to a noop on systems that do things "properly". */
5051 value = (value >> 7) | ~(-(offsetT)1 >> 7);
5052
5053 more = !((((value == 0) && ((byte & 0x40) == 0))
5054 || ((value == -1) && ((byte & 0x40) != 0))));
5055 if (more)
5056 byte |= 0x80;
5057
5058 *p++ = byte;
5059 }
5060 while (more);
5061
5062 return p - orig;
5063 }
5064
5065 static inline unsigned int
5066 output_uleb128 (char *p, valueT value)
5067 {
5068 char *orig = p;
5069
5070 do
5071 {
5072 unsigned byte = (value & 0x7f);
5073
5074 value >>= 7;
5075 if (value != 0)
5076 /* More bytes to follow. */
5077 byte |= 0x80;
5078
5079 *p++ = byte;
5080 }
5081 while (value != 0);
5082
5083 return p - orig;
5084 }
5085
5086 unsigned int
5087 output_leb128 (char *p, valueT value, int sign)
5088 {
5089 if (sign)
5090 return output_sleb128 (p, (offsetT) value);
5091 else
5092 return output_uleb128 (p, value);
5093 }
5094
5095 /* Do the same for bignums. We combine sizeof with output here in that
5096 we don't output for NULL values of P. It isn't really as critical as
5097 for "normal" values that this be streamlined. Returns the number of
5098 bytes used. */
5099
5100 static inline unsigned int
5101 output_big_sleb128 (char *p, LITTLENUM_TYPE *bignum, unsigned int size)
5102 {
5103 char *orig = p;
5104 valueT val = 0;
5105 int loaded = 0;
5106 unsigned byte;
5107
5108 /* Strip leading sign extensions off the bignum. */
5109 while (size > 1
5110 && bignum[size - 1] == LITTLENUM_MASK
5111 && bignum[size - 2] > LITTLENUM_MASK / 2)
5112 size--;
5113
5114 do
5115 {
5116 /* OR in the next part of the littlenum. */
5117 val |= (*bignum << loaded);
5118 loaded += LITTLENUM_NUMBER_OF_BITS;
5119 size--;
5120 bignum++;
5121
5122 /* Add bytes until there are less than 7 bits left in VAL
5123 or until every non-sign bit has been written. */
5124 do
5125 {
5126 byte = val & 0x7f;
5127 loaded -= 7;
5128 val >>= 7;
5129 if (size > 0
5130 || val != ((byte & 0x40) == 0 ? 0 : ((valueT) 1 << loaded) - 1))
5131 byte |= 0x80;
5132
5133 if (orig)
5134 *p = byte;
5135 p++;
5136 }
5137 while ((byte & 0x80) != 0 && loaded >= 7);
5138 }
5139 while (size > 0);
5140
5141 /* Mop up any left-over bits (of which there will be less than 7). */
5142 if ((byte & 0x80) != 0)
5143 {
5144 /* Sign-extend VAL. */
5145 if (val & (1 << (loaded - 1)))
5146 val |= ~0U << loaded;
5147 if (orig)
5148 *p = val & 0x7f;
5149 p++;
5150 }
5151
5152 return p - orig;
5153 }
5154
5155 static inline unsigned int
5156 output_big_uleb128 (char *p, LITTLENUM_TYPE *bignum, unsigned int size)
5157 {
5158 char *orig = p;
5159 valueT val = 0;
5160 int loaded = 0;
5161 unsigned byte;
5162
5163 /* Strip leading zeros off the bignum. */
5164 /* XXX: Is this needed? */
5165 while (size > 0 && bignum[size - 1] == 0)
5166 size--;
5167
5168 do
5169 {
5170 if (loaded < 7 && size > 0)
5171 {
5172 val |= (*bignum << loaded);
5173 loaded += 8 * CHARS_PER_LITTLENUM;
5174 size--;
5175 bignum++;
5176 }
5177
5178 byte = val & 0x7f;
5179 loaded -= 7;
5180 val >>= 7;
5181
5182 if (size > 0 || val)
5183 byte |= 0x80;
5184
5185 if (orig)
5186 *p = byte;
5187 p++;
5188 }
5189 while (byte & 0x80);
5190
5191 return p - orig;
5192 }
5193
5194 static unsigned int
5195 output_big_leb128 (char *p, LITTLENUM_TYPE *bignum, unsigned int size, int sign)
5196 {
5197 if (sign)
5198 return output_big_sleb128 (p, bignum, size);
5199 else
5200 return output_big_uleb128 (p, bignum, size);
5201 }
5202
5203 /* Generate the appropriate fragments for a given expression to emit a
5204 leb128 value. SIGN is 1 for sleb, 0 for uleb. */
5205
5206 void
5207 emit_leb128_expr (expressionS *exp, int sign)
5208 {
5209 operatorT op = exp->X_op;
5210 unsigned int nbytes;
5211
5212 if (op == O_absent || op == O_illegal)
5213 {
5214 as_warn (_("zero assumed for missing expression"));
5215 exp->X_add_number = 0;
5216 op = O_constant;
5217 }
5218 else if (op == O_big && exp->X_add_number <= 0)
5219 {
5220 as_bad (_("floating point number invalid"));
5221 exp->X_add_number = 0;
5222 op = O_constant;
5223 }
5224 else if (op == O_register)
5225 {
5226 as_warn (_("register value used as expression"));
5227 op = O_constant;
5228 }
5229 else if (op == O_constant
5230 && sign
5231 && (exp->X_add_number < 0) == !exp->X_extrabit)
5232 {
5233 /* We're outputting a signed leb128 and the sign of X_add_number
5234 doesn't reflect the sign of the original value. Convert EXP
5235 to a correctly-extended bignum instead. */
5236 convert_to_bignum (exp, exp->X_extrabit);
5237 op = O_big;
5238 }
5239
5240 if (now_seg == absolute_section)
5241 {
5242 if (op != O_constant || exp->X_add_number != 0)
5243 as_bad (_("attempt to store value in absolute section"));
5244 abs_section_offset++;
5245 return;
5246 }
5247
5248 if ((op != O_constant || exp->X_add_number != 0) && in_bss ())
5249 as_bad (_("attempt to store non-zero value in section `%s'"),
5250 segment_name (now_seg));
5251
5252 /* Let check_eh_frame know that data is being emitted. nbytes == -1 is
5253 a signal that this is leb128 data. It shouldn't optimize this away. */
5254 nbytes = (unsigned int) -1;
5255 if (check_eh_frame (exp, &nbytes))
5256 abort ();
5257
5258 /* Let the backend know that subsequent data may be byte aligned. */
5259 #ifdef md_cons_align
5260 md_cons_align (1);
5261 #endif
5262
5263 if (op == O_constant)
5264 {
5265 /* If we've got a constant, emit the thing directly right now. */
5266
5267 valueT value = exp->X_add_number;
5268 unsigned int size;
5269 char *p;
5270
5271 size = sizeof_leb128 (value, sign);
5272 p = frag_more (size);
5273 if (output_leb128 (p, value, sign) > size)
5274 abort ();
5275 }
5276 else if (op == O_big)
5277 {
5278 /* O_big is a different sort of constant. */
5279 int nbr_digits = exp->X_add_number;
5280 unsigned int size;
5281 char *p;
5282
5283 /* If the leading littenum is 0xffff, prepend a 0 to avoid confusion with
5284 a signed number. Unary operators like - or ~ always extend the
5285 bignum to its largest size. */
5286 if (exp->X_unsigned
5287 && nbr_digits < SIZE_OF_LARGE_NUMBER
5288 && generic_bignum[nbr_digits - 1] == LITTLENUM_MASK)
5289 generic_bignum[nbr_digits++] = 0;
5290
5291 size = output_big_leb128 (NULL, generic_bignum, nbr_digits, sign);
5292 p = frag_more (size);
5293 if (output_big_leb128 (p, generic_bignum, nbr_digits, sign) > size)
5294 abort ();
5295 }
5296 else
5297 {
5298 /* Otherwise, we have to create a variable sized fragment and
5299 resolve things later. */
5300
5301 frag_var (rs_leb128, sizeof_uleb128 (~(valueT) 0), 0, sign,
5302 make_expr_symbol (exp), 0, (char *) NULL);
5303 }
5304 }
5305
5306 /* Parse the .sleb128 and .uleb128 pseudos. */
5307
5308 void
5309 s_leb128 (int sign)
5310 {
5311 expressionS exp;
5312
5313 #ifdef md_flush_pending_output
5314 md_flush_pending_output ();
5315 #endif
5316
5317 do
5318 {
5319 expression (&exp);
5320 emit_leb128_expr (&exp, sign);
5321 }
5322 while (*input_line_pointer++ == ',');
5323
5324 input_line_pointer--;
5325 demand_empty_rest_of_line ();
5326 }
5327 \f
5328 static void
5329 stringer_append_char (int c, int bitsize)
5330 {
5331 if (c && in_bss ())
5332 as_bad (_("attempt to store non-empty string in section `%s'"),
5333 segment_name (now_seg));
5334
5335 if (!target_big_endian)
5336 FRAG_APPEND_1_CHAR (c);
5337
5338 switch (bitsize)
5339 {
5340 case 64:
5341 FRAG_APPEND_1_CHAR (0);
5342 FRAG_APPEND_1_CHAR (0);
5343 FRAG_APPEND_1_CHAR (0);
5344 FRAG_APPEND_1_CHAR (0);
5345 /* Fall through. */
5346 case 32:
5347 FRAG_APPEND_1_CHAR (0);
5348 FRAG_APPEND_1_CHAR (0);
5349 /* Fall through. */
5350 case 16:
5351 FRAG_APPEND_1_CHAR (0);
5352 /* Fall through. */
5353 case 8:
5354 break;
5355 default:
5356 /* Called with invalid bitsize argument. */
5357 abort ();
5358 break;
5359 }
5360 if (target_big_endian)
5361 FRAG_APPEND_1_CHAR (c);
5362 }
5363
5364 /* Worker to do .ascii etc statements.
5365 Reads 0 or more ',' separated, double-quoted strings.
5366 Caller should have checked need_pass_2 is FALSE because we don't
5367 check it.
5368 Checks for end-of-line.
5369 BITS_APPENDZERO says how many bits are in a target char.
5370 The bottom bit is set if a NUL char should be appended to the strings. */
5371
5372 void
5373 stringer (int bits_appendzero)
5374 {
5375 const int bitsize = bits_appendzero & ~7;
5376 const int append_zero = bits_appendzero & 1;
5377 unsigned int c;
5378 #if !defined(NO_LISTING) && defined (OBJ_ELF)
5379 char *start;
5380 #endif
5381
5382 #ifdef md_flush_pending_output
5383 md_flush_pending_output ();
5384 #endif
5385
5386 #ifdef md_cons_align
5387 md_cons_align (1);
5388 #endif
5389
5390 /* If we have been switched into the abs_section then we
5391 will not have an obstack onto which we can hang strings. */
5392 if (now_seg == absolute_section)
5393 {
5394 as_bad (_("strings must be placed into a section"));
5395 ignore_rest_of_line ();
5396 return;
5397 }
5398
5399 /* The following awkward logic is to parse ZERO or more strings,
5400 comma separated. Recall a string expression includes spaces
5401 before the opening '\"' and spaces after the closing '\"'.
5402 We fake a leading ',' if there is (supposed to be)
5403 a 1st, expression. We keep demanding expressions for each ','. */
5404 if (is_it_end_of_statement ())
5405 {
5406 c = 0; /* Skip loop. */
5407 ++input_line_pointer; /* Compensate for end of loop. */
5408 }
5409 else
5410 {
5411 c = ','; /* Do loop. */
5412 }
5413
5414 while (c == ',' || c == '<' || c == '"')
5415 {
5416 SKIP_WHITESPACE ();
5417 switch (*input_line_pointer)
5418 {
5419 case '\"':
5420 ++input_line_pointer; /*->1st char of string. */
5421 #if !defined(NO_LISTING) && defined (OBJ_ELF)
5422 start = input_line_pointer;
5423 #endif
5424
5425 while (is_a_char (c = next_char_of_string ()))
5426 stringer_append_char (c, bitsize);
5427
5428 if (append_zero)
5429 stringer_append_char (0, bitsize);
5430
5431 #if !defined(NO_LISTING) && defined (OBJ_ELF)
5432 /* In ELF, when gcc is emitting DWARF 1 debugging output, it
5433 will emit .string with a filename in the .debug section
5434 after a sequence of constants. See the comment in
5435 emit_expr for the sequence. emit_expr will set
5436 dwarf_file_string to non-zero if this string might be a
5437 source file name. */
5438 if (strcmp (segment_name (now_seg), ".debug") != 0)
5439 dwarf_file_string = 0;
5440 else if (dwarf_file_string)
5441 {
5442 c = input_line_pointer[-1];
5443 input_line_pointer[-1] = '\0';
5444 listing_source_file (start);
5445 input_line_pointer[-1] = c;
5446 }
5447 #endif
5448
5449 break;
5450 case '<':
5451 input_line_pointer++;
5452 c = get_single_number ();
5453 stringer_append_char (c, bitsize);
5454 if (*input_line_pointer != '>')
5455 {
5456 as_bad (_("expected <nn>"));
5457 ignore_rest_of_line ();
5458 return;
5459 }
5460 input_line_pointer++;
5461 break;
5462 case ',':
5463 input_line_pointer++;
5464 break;
5465 }
5466 SKIP_WHITESPACE ();
5467 c = *input_line_pointer;
5468 }
5469
5470 demand_empty_rest_of_line ();
5471 }
5472 \f
5473 /* FIXME-SOMEDAY: I had trouble here on characters with the
5474 high bits set. We'll probably also have trouble with
5475 multibyte chars, wide chars, etc. Also be careful about
5476 returning values bigger than 1 byte. xoxorich. */
5477
5478 unsigned int
5479 next_char_of_string (void)
5480 {
5481 unsigned int c;
5482
5483 c = *input_line_pointer++ & CHAR_MASK;
5484 switch (c)
5485 {
5486 case 0:
5487 /* PR 20902: Do not advance past the end of the buffer. */
5488 -- input_line_pointer;
5489 c = NOT_A_CHAR;
5490 break;
5491
5492 case '\"':
5493 c = NOT_A_CHAR;
5494 break;
5495
5496 case '\n':
5497 as_warn (_("unterminated string; newline inserted"));
5498 bump_line_counters ();
5499 break;
5500
5501 case '\\':
5502 if (!TC_STRING_ESCAPES)
5503 break;
5504 switch (c = *input_line_pointer++ & CHAR_MASK)
5505 {
5506 case 'b':
5507 c = '\b';
5508 break;
5509
5510 case 'f':
5511 c = '\f';
5512 break;
5513
5514 case 'n':
5515 c = '\n';
5516 break;
5517
5518 case 'r':
5519 c = '\r';
5520 break;
5521
5522 case 't':
5523 c = '\t';
5524 break;
5525
5526 case 'v':
5527 c = '\013';
5528 break;
5529
5530 case '\\':
5531 case '"':
5532 break; /* As itself. */
5533
5534 case '0':
5535 case '1':
5536 case '2':
5537 case '3':
5538 case '4':
5539 case '5':
5540 case '6':
5541 case '7':
5542 case '8':
5543 case '9':
5544 {
5545 long number;
5546 int i;
5547
5548 for (i = 0, number = 0;
5549 ISDIGIT (c) && i < 3;
5550 c = *input_line_pointer++, i++)
5551 {
5552 number = number * 8 + c - '0';
5553 }
5554
5555 c = number & CHAR_MASK;
5556 }
5557 --input_line_pointer;
5558 break;
5559
5560 case 'x':
5561 case 'X':
5562 {
5563 long number;
5564
5565 number = 0;
5566 c = *input_line_pointer++;
5567 while (ISXDIGIT (c))
5568 {
5569 if (ISDIGIT (c))
5570 number = number * 16 + c - '0';
5571 else if (ISUPPER (c))
5572 number = number * 16 + c - 'A' + 10;
5573 else
5574 number = number * 16 + c - 'a' + 10;
5575 c = *input_line_pointer++;
5576 }
5577 c = number & CHAR_MASK;
5578 --input_line_pointer;
5579 }
5580 break;
5581
5582 case '\n':
5583 /* To be compatible with BSD 4.2 as: give the luser a linefeed!! */
5584 as_warn (_("unterminated string; newline inserted"));
5585 c = '\n';
5586 bump_line_counters ();
5587 break;
5588
5589 case 0:
5590 /* Do not advance past the end of the buffer. */
5591 -- input_line_pointer;
5592 c = NOT_A_CHAR;
5593 break;
5594
5595 default:
5596
5597 #ifdef ONLY_STANDARD_ESCAPES
5598 as_bad (_("bad escaped character in string"));
5599 c = '?';
5600 #endif /* ONLY_STANDARD_ESCAPES */
5601
5602 break;
5603 }
5604 break;
5605
5606 default:
5607 break;
5608 }
5609 return (c);
5610 }
5611 \f
5612 static segT
5613 get_segmented_expression (expressionS *expP)
5614 {
5615 segT retval;
5616
5617 retval = expression (expP);
5618 if (expP->X_op == O_illegal
5619 || expP->X_op == O_absent
5620 || expP->X_op == O_big)
5621 {
5622 as_bad (_("expected address expression"));
5623 expP->X_op = O_constant;
5624 expP->X_add_number = 0;
5625 retval = absolute_section;
5626 }
5627 return retval;
5628 }
5629
5630 static segT
5631 get_known_segmented_expression (expressionS *expP)
5632 {
5633 segT retval = get_segmented_expression (expP);
5634
5635 if (retval == undefined_section)
5636 {
5637 /* There is no easy way to extract the undefined symbol from the
5638 expression. */
5639 if (expP->X_add_symbol != NULL
5640 && S_GET_SEGMENT (expP->X_add_symbol) != expr_section)
5641 as_warn (_("symbol \"%s\" undefined; zero assumed"),
5642 S_GET_NAME (expP->X_add_symbol));
5643 else
5644 as_warn (_("some symbol undefined; zero assumed"));
5645 retval = absolute_section;
5646 expP->X_op = O_constant;
5647 expP->X_add_number = 0;
5648 }
5649 return retval;
5650 }
5651
5652 char /* Return terminator. */
5653 get_absolute_expression_and_terminator (long *val_pointer /* Return value of expression. */)
5654 {
5655 /* FIXME: val_pointer should probably be offsetT *. */
5656 *val_pointer = (long) get_absolute_expression ();
5657 return (*input_line_pointer++);
5658 }
5659 \f
5660 /* Like demand_copy_string, but return NULL if the string contains any '\0's.
5661 Give a warning if that happens. */
5662
5663 char *
5664 demand_copy_C_string (int *len_pointer)
5665 {
5666 char *s;
5667
5668 if ((s = demand_copy_string (len_pointer)) != 0)
5669 {
5670 int len;
5671
5672 for (len = *len_pointer; len > 0; len--)
5673 {
5674 if (*s == 0)
5675 {
5676 s = 0;
5677 len = 1;
5678 *len_pointer = 0;
5679 as_bad (_("this string may not contain \'\\0\'"));
5680 }
5681 }
5682 }
5683
5684 return s;
5685 }
5686 \f
5687 /* Demand string, but return a safe (=private) copy of the string.
5688 Return NULL if we can't read a string here. */
5689
5690 char *
5691 demand_copy_string (int *lenP)
5692 {
5693 unsigned int c;
5694 int len;
5695 char *retval;
5696
5697 len = 0;
5698 SKIP_WHITESPACE ();
5699 if (*input_line_pointer == '\"')
5700 {
5701 input_line_pointer++; /* Skip opening quote. */
5702
5703 while (is_a_char (c = next_char_of_string ()))
5704 {
5705 obstack_1grow (&notes, c);
5706 len++;
5707 }
5708 /* JF this next line is so demand_copy_C_string will return a
5709 null terminated string. */
5710 obstack_1grow (&notes, '\0');
5711 retval = (char *) obstack_finish (&notes);
5712 }
5713 else
5714 {
5715 as_bad (_("missing string"));
5716 retval = NULL;
5717 ignore_rest_of_line ();
5718 }
5719 *lenP = len;
5720 return (retval);
5721 }
5722 \f
5723 /* In: Input_line_pointer->next character.
5724
5725 Do: Skip input_line_pointer over all whitespace.
5726
5727 Out: 1 if input_line_pointer->end-of-line. */
5728
5729 int
5730 is_it_end_of_statement (void)
5731 {
5732 SKIP_WHITESPACE ();
5733 return (is_end_of_line[(unsigned char) *input_line_pointer]);
5734 }
5735
5736 void
5737 equals (char *sym_name, int reassign)
5738 {
5739 char *stop = NULL;
5740 char stopc = 0;
5741
5742 input_line_pointer++;
5743 if (*input_line_pointer == '=')
5744 input_line_pointer++;
5745 if (reassign < 0 && *input_line_pointer == '=')
5746 input_line_pointer++;
5747
5748 while (*input_line_pointer == ' ' || *input_line_pointer == '\t')
5749 input_line_pointer++;
5750
5751 if (flag_mri)
5752 stop = mri_comment_field (&stopc);
5753
5754 assign_symbol (sym_name, reassign >= 0 ? !reassign : reassign);
5755
5756 if (flag_mri)
5757 {
5758 demand_empty_rest_of_line ();
5759 mri_comment_end (stop, stopc);
5760 }
5761 }
5762
5763 /* .incbin -- include a file verbatim at the current location. */
5764
5765 void
5766 s_incbin (int x ATTRIBUTE_UNUSED)
5767 {
5768 FILE * binfile;
5769 char * path;
5770 char * filename;
5771 char * binfrag;
5772 long skip = 0;
5773 long count = 0;
5774 long bytes;
5775 int len;
5776
5777 #ifdef md_flush_pending_output
5778 md_flush_pending_output ();
5779 #endif
5780
5781 #ifdef md_cons_align
5782 md_cons_align (1);
5783 #endif
5784
5785 SKIP_WHITESPACE ();
5786 filename = demand_copy_string (& len);
5787 if (filename == NULL)
5788 return;
5789
5790 SKIP_WHITESPACE ();
5791
5792 /* Look for optional skip and count. */
5793 if (* input_line_pointer == ',')
5794 {
5795 ++ input_line_pointer;
5796 skip = get_absolute_expression ();
5797
5798 SKIP_WHITESPACE ();
5799
5800 if (* input_line_pointer == ',')
5801 {
5802 ++ input_line_pointer;
5803
5804 count = get_absolute_expression ();
5805 if (count == 0)
5806 as_warn (_(".incbin count zero, ignoring `%s'"), filename);
5807
5808 SKIP_WHITESPACE ();
5809 }
5810 }
5811
5812 demand_empty_rest_of_line ();
5813
5814 /* Try opening absolute path first, then try include dirs. */
5815 binfile = fopen (filename, FOPEN_RB);
5816 if (binfile == NULL)
5817 {
5818 int i;
5819
5820 path = XNEWVEC (char, (unsigned long) len + include_dir_maxlen + 5);
5821
5822 for (i = 0; i < include_dir_count; i++)
5823 {
5824 sprintf (path, "%s/%s", include_dirs[i], filename);
5825
5826 binfile = fopen (path, FOPEN_RB);
5827 if (binfile != NULL)
5828 break;
5829 }
5830
5831 if (binfile == NULL)
5832 as_bad (_("file not found: %s"), filename);
5833 }
5834 else
5835 path = xstrdup (filename);
5836
5837 if (binfile)
5838 {
5839 long file_len;
5840
5841 register_dependency (path);
5842
5843 /* Compute the length of the file. */
5844 if (fseek (binfile, 0, SEEK_END) != 0)
5845 {
5846 as_bad (_("seek to end of .incbin file failed `%s'"), path);
5847 goto done;
5848 }
5849 file_len = ftell (binfile);
5850
5851 /* If a count was not specified use the remainder of the file. */
5852 if (count == 0)
5853 count = file_len - skip;
5854
5855 if (skip < 0 || count < 0 || file_len < 0 || skip + count > file_len)
5856 {
5857 as_bad (_("skip (%ld) or count (%ld) invalid for file size (%ld)"),
5858 skip, count, file_len);
5859 goto done;
5860 }
5861
5862 if (fseek (binfile, skip, SEEK_SET) != 0)
5863 {
5864 as_bad (_("could not skip to %ld in file `%s'"), skip, path);
5865 goto done;
5866 }
5867
5868 /* Allocate frag space and store file contents in it. */
5869 binfrag = frag_more (count);
5870
5871 bytes = fread (binfrag, 1, count, binfile);
5872 if (bytes < count)
5873 as_warn (_("truncated file `%s', %ld of %ld bytes read"),
5874 path, bytes, count);
5875 }
5876 done:
5877 if (binfile != NULL)
5878 fclose (binfile);
5879 free (path);
5880 }
5881
5882 /* .include -- include a file at this point. */
5883
5884 void
5885 s_include (int arg ATTRIBUTE_UNUSED)
5886 {
5887 char *filename;
5888 int i;
5889 FILE *try_file;
5890 char *path;
5891
5892 if (!flag_m68k_mri)
5893 {
5894 filename = demand_copy_string (&i);
5895 if (filename == NULL)
5896 {
5897 /* demand_copy_string has already printed an error and
5898 called ignore_rest_of_line. */
5899 return;
5900 }
5901 }
5902 else
5903 {
5904 SKIP_WHITESPACE ();
5905 i = 0;
5906 while (!is_end_of_line[(unsigned char) *input_line_pointer]
5907 && *input_line_pointer != ' '
5908 && *input_line_pointer != '\t')
5909 {
5910 obstack_1grow (&notes, *input_line_pointer);
5911 ++input_line_pointer;
5912 ++i;
5913 }
5914
5915 obstack_1grow (&notes, '\0');
5916 filename = (char *) obstack_finish (&notes);
5917 while (!is_end_of_line[(unsigned char) *input_line_pointer])
5918 ++input_line_pointer;
5919 }
5920
5921 demand_empty_rest_of_line ();
5922 path = XNEWVEC (char, (unsigned long) i
5923 + include_dir_maxlen + 5 /* slop */ );
5924
5925 for (i = 0; i < include_dir_count; i++)
5926 {
5927 strcpy (path, include_dirs[i]);
5928 strcat (path, "/");
5929 strcat (path, filename);
5930 if (0 != (try_file = fopen (path, FOPEN_RT)))
5931 {
5932 fclose (try_file);
5933 goto gotit;
5934 }
5935 }
5936
5937 free (path);
5938 path = filename;
5939 gotit:
5940 /* malloc Storage leak when file is found on path. FIXME-SOMEDAY. */
5941 register_dependency (path);
5942 input_scrub_insert_file (path);
5943 }
5944
5945 void
5946 add_include_dir (char *path)
5947 {
5948 int i;
5949
5950 if (include_dir_count == 0)
5951 {
5952 include_dirs = XNEWVEC (const char *, 2);
5953 include_dirs[0] = "."; /* Current dir. */
5954 include_dir_count = 2;
5955 }
5956 else
5957 {
5958 include_dir_count++;
5959 include_dirs = XRESIZEVEC (const char *, include_dirs,
5960 include_dir_count);
5961 }
5962
5963 include_dirs[include_dir_count - 1] = path; /* New one. */
5964
5965 i = strlen (path);
5966 if (i > include_dir_maxlen)
5967 include_dir_maxlen = i;
5968 }
5969 \f
5970 /* Output debugging information to denote the source file. */
5971
5972 static void
5973 generate_file_debug (void)
5974 {
5975 if (debug_type == DEBUG_STABS)
5976 stabs_generate_asm_file ();
5977 }
5978
5979 /* Output line number debugging information for the current source line. */
5980
5981 void
5982 generate_lineno_debug (void)
5983 {
5984 switch (debug_type)
5985 {
5986 case DEBUG_UNSPECIFIED:
5987 case DEBUG_NONE:
5988 case DEBUG_DWARF:
5989 break;
5990 case DEBUG_STABS:
5991 stabs_generate_asm_lineno ();
5992 break;
5993 case DEBUG_ECOFF:
5994 ecoff_generate_asm_lineno ();
5995 break;
5996 case DEBUG_DWARF2:
5997 /* ??? We could here indicate to dwarf2dbg.c that something
5998 has changed. However, since there is additional backend
5999 support that is required (calling dwarf2_emit_insn), we
6000 let dwarf2dbg.c call as_where on its own. */
6001 break;
6002 }
6003 }
6004
6005 /* Output debugging information to mark a function entry point or end point.
6006 END_P is zero for .func, and non-zero for .endfunc. */
6007
6008 void
6009 s_func (int end_p)
6010 {
6011 do_s_func (end_p, NULL);
6012 }
6013
6014 /* Subroutine of s_func so targets can choose a different default prefix.
6015 If DEFAULT_PREFIX is NULL, use the target's "leading char". */
6016
6017 static void
6018 do_s_func (int end_p, const char *default_prefix)
6019 {
6020 /* Record the current function so that we can issue an error message for
6021 misplaced .func,.endfunc, and also so that .endfunc needs no
6022 arguments. */
6023 static char *current_name;
6024 static char *current_label;
6025
6026 if (end_p)
6027 {
6028 if (current_name == NULL)
6029 {
6030 as_bad (_("missing .func"));
6031 ignore_rest_of_line ();
6032 return;
6033 }
6034
6035 if (debug_type == DEBUG_STABS)
6036 stabs_generate_asm_endfunc (current_name, current_label);
6037
6038 current_name = current_label = NULL;
6039 }
6040 else /* ! end_p */
6041 {
6042 char *name, *label;
6043 char delim1, delim2;
6044
6045 if (current_name != NULL)
6046 {
6047 as_bad (_(".endfunc missing for previous .func"));
6048 ignore_rest_of_line ();
6049 return;
6050 }
6051
6052 delim1 = get_symbol_name (& name);
6053 name = xstrdup (name);
6054 *input_line_pointer = delim1;
6055 SKIP_WHITESPACE_AFTER_NAME ();
6056 if (*input_line_pointer != ',')
6057 {
6058 if (default_prefix)
6059 {
6060 if (asprintf (&label, "%s%s", default_prefix, name) == -1)
6061 as_fatal ("%s", xstrerror (errno));
6062 }
6063 else
6064 {
6065 char leading_char = bfd_get_symbol_leading_char (stdoutput);
6066 /* Missing entry point, use function's name with the leading
6067 char prepended. */
6068 if (leading_char)
6069 {
6070 if (asprintf (&label, "%c%s", leading_char, name) == -1)
6071 as_fatal ("%s", xstrerror (errno));
6072 }
6073 else
6074 label = name;
6075 }
6076 }
6077 else
6078 {
6079 ++input_line_pointer;
6080 SKIP_WHITESPACE ();
6081 delim2 = get_symbol_name (& label);
6082 label = xstrdup (label);
6083 restore_line_pointer (delim2);
6084 }
6085
6086 if (debug_type == DEBUG_STABS)
6087 stabs_generate_asm_func (name, label);
6088
6089 current_name = name;
6090 current_label = label;
6091 }
6092
6093 demand_empty_rest_of_line ();
6094 }
6095 \f
6096 #ifdef HANDLE_BUNDLE
6097
6098 void
6099 s_bundle_align_mode (int arg ATTRIBUTE_UNUSED)
6100 {
6101 unsigned int align = get_absolute_expression ();
6102 SKIP_WHITESPACE ();
6103 demand_empty_rest_of_line ();
6104
6105 if (align > (unsigned int) TC_ALIGN_LIMIT)
6106 as_fatal (_(".bundle_align_mode alignment too large (maximum %u)"),
6107 (unsigned int) TC_ALIGN_LIMIT);
6108
6109 if (bundle_lock_frag != NULL)
6110 {
6111 as_bad (_("cannot change .bundle_align_mode inside .bundle_lock"));
6112 return;
6113 }
6114
6115 bundle_align_p2 = align;
6116 }
6117
6118 void
6119 s_bundle_lock (int arg ATTRIBUTE_UNUSED)
6120 {
6121 demand_empty_rest_of_line ();
6122
6123 if (bundle_align_p2 == 0)
6124 {
6125 as_bad (_(".bundle_lock is meaningless without .bundle_align_mode"));
6126 return;
6127 }
6128
6129 if (bundle_lock_depth == 0)
6130 {
6131 bundle_lock_frchain = frchain_now;
6132 bundle_lock_frag = start_bundle ();
6133 }
6134 ++bundle_lock_depth;
6135 }
6136
6137 void
6138 s_bundle_unlock (int arg ATTRIBUTE_UNUSED)
6139 {
6140 unsigned int size;
6141
6142 demand_empty_rest_of_line ();
6143
6144 if (bundle_lock_frag == NULL)
6145 {
6146 as_bad (_(".bundle_unlock without preceding .bundle_lock"));
6147 return;
6148 }
6149
6150 gas_assert (bundle_align_p2 > 0);
6151
6152 gas_assert (bundle_lock_depth > 0);
6153 if (--bundle_lock_depth > 0)
6154 return;
6155
6156 size = pending_bundle_size (bundle_lock_frag);
6157
6158 if (size > 1U << bundle_align_p2)
6159 as_bad (_(".bundle_lock sequence is %u bytes, "
6160 "but bundle size is only %u bytes"),
6161 size, 1u << bundle_align_p2);
6162 else
6163 finish_bundle (bundle_lock_frag, size);
6164
6165 bundle_lock_frag = NULL;
6166 bundle_lock_frchain = NULL;
6167 }
6168
6169 #endif /* HANDLE_BUNDLE */
6170 \f
6171 void
6172 s_ignore (int arg ATTRIBUTE_UNUSED)
6173 {
6174 ignore_rest_of_line ();
6175 }
6176
6177 void
6178 read_print_statistics (FILE *file)
6179 {
6180 htab_print_statistics (file, "pseudo-op table", po_hash);
6181 }
6182
6183 /* Inserts the given line into the input stream.
6184
6185 This call avoids macro/conditionals nesting checking, since the contents of
6186 the line are assumed to replace the contents of a line already scanned.
6187
6188 An appropriate use of this function would be substitution of input lines when
6189 called by md_start_line_hook(). The given line is assumed to already be
6190 properly scrubbed. */
6191
6192 void
6193 input_scrub_insert_line (const char *line)
6194 {
6195 sb newline;
6196 size_t len = strlen (line);
6197 sb_build (&newline, len);
6198 sb_add_buffer (&newline, line, len);
6199 input_scrub_include_sb (&newline, input_line_pointer, 0);
6200 sb_kill (&newline);
6201 buffer_limit = input_scrub_next_buffer (&input_line_pointer);
6202 }
6203
6204 /* Insert a file into the input stream; the path must resolve to an actual
6205 file; no include path searching or dependency registering is performed. */
6206
6207 void
6208 input_scrub_insert_file (char *path)
6209 {
6210 input_scrub_include_file (path, input_line_pointer);
6211 buffer_limit = input_scrub_next_buffer (&input_line_pointer);
6212 }
6213
6214 /* Find the end of a line, considering quotation and escaping of quotes. */
6215
6216 #if !defined(TC_SINGLE_QUOTE_STRINGS) && defined(SINGLE_QUOTE_STRINGS)
6217 # define TC_SINGLE_QUOTE_STRINGS 1
6218 #endif
6219
6220 static char *
6221 _find_end_of_line (char *s, int mri_string, int insn ATTRIBUTE_UNUSED,
6222 int in_macro)
6223 {
6224 char inquote = '\0';
6225 int inescape = 0;
6226
6227 while (!is_end_of_line[(unsigned char) *s]
6228 || (inquote && !ISCNTRL (*s))
6229 || (inquote == '\'' && flag_mri)
6230 #ifdef TC_EOL_IN_INSN
6231 || (insn && TC_EOL_IN_INSN (s))
6232 #endif
6233 /* PR 6926: When we are parsing the body of a macro the sequence
6234 \@ is special - it refers to the invocation count. If the @
6235 character happens to be registered as a line-separator character
6236 by the target, then the is_end_of_line[] test above will have
6237 returned true, but we need to ignore the line separating
6238 semantics in this particular case. */
6239 || (in_macro && inescape && *s == '@')
6240 )
6241 {
6242 if (mri_string && *s == '\'')
6243 inquote ^= *s;
6244 else if (inescape)
6245 inescape = 0;
6246 else if (*s == '\\')
6247 inescape = 1;
6248 else if (!inquote
6249 ? *s == '"'
6250 #ifdef TC_SINGLE_QUOTE_STRINGS
6251 || (TC_SINGLE_QUOTE_STRINGS && *s == '\'')
6252 #endif
6253 : *s == inquote)
6254 inquote ^= *s;
6255 ++s;
6256 }
6257 if (inquote)
6258 as_warn (_("missing closing `%c'"), inquote);
6259 if (inescape && !ignore_input ())
6260 as_warn (_("stray `\\'"));
6261 return s;
6262 }
6263
6264 char *
6265 find_end_of_line (char *s, int mri_string)
6266 {
6267 return _find_end_of_line (s, mri_string, 0, 0);
6268 }
6269
6270 static char *saved_ilp = NULL;
6271 static char *saved_limit;
6272
6273 /* Use BUF as a temporary input pointer for calling other functions in this
6274 file. BUF must be a C string, so that its end can be found by strlen.
6275 Also sets the buffer_limit variable (local to this file) so that buffer
6276 overruns should not occur. Saves the current input line pointer so that
6277 it can be restored by calling restore_ilp().
6278
6279 Does not support recursion. */
6280
6281 void
6282 temp_ilp (char *buf)
6283 {
6284 gas_assert (saved_ilp == NULL);
6285 gas_assert (buf != NULL);
6286
6287 saved_ilp = input_line_pointer;
6288 saved_limit = buffer_limit;
6289 /* Prevent the assert in restore_ilp from triggering if
6290 the input_line_pointer has not yet been initialised. */
6291 if (saved_ilp == NULL)
6292 saved_limit = saved_ilp = (char *) "";
6293
6294 input_line_pointer = buf;
6295 buffer_limit = buf + strlen (buf);
6296 input_from_string = TRUE;
6297 }
6298
6299 /* Restore a saved input line pointer. */
6300
6301 void
6302 restore_ilp (void)
6303 {
6304 gas_assert (saved_ilp != NULL);
6305
6306 input_line_pointer = saved_ilp;
6307 buffer_limit = saved_limit;
6308 input_from_string = FALSE;
6309
6310 saved_ilp = NULL;
6311 }
This page took 0.160341 seconds and 5 git commands to generate.