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