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