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