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