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