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