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