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