gas/
[platform/upstream/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, file, line, &name);
2342   if (err != NULL)
2343     as_bad_where (file, line, err, name);
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_where (file,
2359                  line,
2360                  _("attempt to redefine pseudo-op `%s' ignored"),
2361                  name);
2362     }
2363
2364   sb_kill (&s);
2365 }
2366
2367 /* Handle the .mexit pseudo-op, which immediately exits a macro
2368    expansion.  */
2369
2370 void
2371 s_mexit (int ignore ATTRIBUTE_UNUSED)
2372 {
2373   cond_exit_macro (macro_nest);
2374   buffer_limit = input_scrub_next_buffer (&input_line_pointer);
2375 }
2376
2377 /* Switch in and out of MRI mode.  */
2378
2379 void
2380 s_mri (int ignore ATTRIBUTE_UNUSED)
2381 {
2382   int on, old_flag;
2383
2384   on = get_absolute_expression ();
2385   old_flag = flag_mri;
2386   if (on != 0)
2387     {
2388       flag_mri = 1;
2389 #ifdef TC_M68K
2390       flag_m68k_mri = 1;
2391 #endif
2392       macro_mri_mode (1);
2393     }
2394   else
2395     {
2396       flag_mri = 0;
2397 #ifdef TC_M68K
2398       flag_m68k_mri = 0;
2399 #endif
2400       macro_mri_mode (0);
2401     }
2402
2403   /* Operator precedence changes in m68k MRI mode, so we need to
2404      update the operator rankings.  */
2405   expr_set_precedence ();
2406
2407 #ifdef MRI_MODE_CHANGE
2408   if (on != old_flag)
2409     MRI_MODE_CHANGE (on);
2410 #endif
2411
2412   demand_empty_rest_of_line ();
2413 }
2414
2415 /* Handle changing the location counter.  */
2416
2417 static void
2418 do_org (segT segment, expressionS *exp, int fill)
2419 {
2420   if (segment != now_seg && segment != absolute_section)
2421     as_bad (_("invalid segment \"%s\""), segment_name (segment));
2422
2423   if (now_seg == absolute_section)
2424     {
2425       if (fill != 0)
2426         as_warn (_("ignoring fill value in absolute section"));
2427       if (exp->X_op != O_constant)
2428         {
2429           as_bad (_("only constant offsets supported in absolute section"));
2430           exp->X_add_number = 0;
2431         }
2432       abs_section_offset = exp->X_add_number;
2433     }
2434   else
2435     {
2436       char *p;
2437       symbolS *sym = exp->X_add_symbol;
2438       offsetT off = exp->X_add_number * OCTETS_PER_BYTE;
2439
2440       if (exp->X_op != O_constant && exp->X_op != O_symbol)
2441         {
2442           /* Handle complex expressions.  */
2443           sym = make_expr_symbol (exp);
2444           off = 0;
2445         }
2446
2447       p = frag_var (rs_org, 1, 1, (relax_substateT) 0, sym, off, (char *) 0);
2448       *p = fill;
2449     }
2450 }
2451
2452 void
2453 s_org (int ignore ATTRIBUTE_UNUSED)
2454 {
2455   register segT segment;
2456   expressionS exp;
2457   register long temp_fill;
2458
2459 #ifdef md_flush_pending_output
2460   md_flush_pending_output ();
2461 #endif
2462
2463   /* The m68k MRI assembler has a different meaning for .org.  It
2464      means to create an absolute section at a given address.  We can't
2465      support that--use a linker script instead.  */
2466   if (flag_m68k_mri)
2467     {
2468       as_bad (_("MRI style ORG pseudo-op not supported"));
2469       ignore_rest_of_line ();
2470       return;
2471     }
2472
2473   /* Don't believe the documentation of BSD 4.2 AS.  There is no such
2474      thing as a sub-segment-relative origin.  Any absolute origin is
2475      given a warning, then assumed to be segment-relative.  Any
2476      segmented origin expression ("foo+42") had better be in the right
2477      segment or the .org is ignored.
2478
2479      BSD 4.2 AS warns if you try to .org backwards. We cannot because
2480      we never know sub-segment sizes when we are reading code.  BSD
2481      will crash trying to emit negative numbers of filler bytes in
2482      certain .orgs. We don't crash, but see as-write for that code.
2483
2484      Don't make frag if need_pass_2==1.  */
2485   segment = get_known_segmented_expression (&exp);
2486   if (*input_line_pointer == ',')
2487     {
2488       input_line_pointer++;
2489       temp_fill = get_absolute_expression ();
2490     }
2491   else
2492     temp_fill = 0;
2493
2494   if (!need_pass_2)
2495     do_org (segment, &exp, temp_fill);
2496
2497   demand_empty_rest_of_line ();
2498 }
2499
2500 /* Handle parsing for the MRI SECT/SECTION pseudo-op.  This should be
2501    called by the obj-format routine which handles section changing
2502    when in MRI mode.  It will create a new section, and return it.  It
2503    will set *TYPE to the section type: one of 'C' (code), 'D' (data),
2504    'M' (mixed), or 'R' (romable).  If BFD_ASSEMBLER is defined, the
2505    flags will be set in the section.  */
2506
2507 void
2508 s_mri_sect (char *type ATTRIBUTE_UNUSED)
2509 {
2510 #ifdef TC_M68K
2511
2512   char *name;
2513   char c;
2514   segT seg;
2515
2516   SKIP_WHITESPACE ();
2517
2518   name = input_line_pointer;
2519   if (!ISDIGIT (*name))
2520     c = get_symbol_end ();
2521   else
2522     {
2523       do
2524         {
2525           ++input_line_pointer;
2526         }
2527       while (ISDIGIT (*input_line_pointer));
2528
2529       c = *input_line_pointer;
2530       *input_line_pointer = '\0';
2531     }
2532
2533   name = xstrdup (name);
2534
2535   *input_line_pointer = c;
2536
2537   seg = subseg_new (name, 0);
2538
2539   if (*input_line_pointer == ',')
2540     {
2541       int align;
2542
2543       ++input_line_pointer;
2544       align = get_absolute_expression ();
2545       record_alignment (seg, align);
2546     }
2547
2548   *type = 'C';
2549   if (*input_line_pointer == ',')
2550     {
2551       c = *++input_line_pointer;
2552       c = TOUPPER (c);
2553       if (c == 'C' || c == 'D' || c == 'M' || c == 'R')
2554         *type = c;
2555       else
2556         as_bad (_("unrecognized section type"));
2557       ++input_line_pointer;
2558
2559 #ifdef BFD_ASSEMBLER
2560       {
2561         flagword flags;
2562
2563         flags = SEC_NO_FLAGS;
2564         if (*type == 'C')
2565           flags = SEC_ALLOC | SEC_LOAD | SEC_READONLY | SEC_CODE;
2566         else if (*type == 'D' || *type == 'M')
2567           flags = SEC_ALLOC | SEC_LOAD | SEC_DATA;
2568         else if (*type == 'R')
2569           flags = SEC_ALLOC | SEC_LOAD | SEC_DATA | SEC_READONLY | SEC_ROM;
2570         if (flags != SEC_NO_FLAGS)
2571           {
2572             if (!bfd_set_section_flags (stdoutput, seg, flags))
2573               as_warn (_("error setting flags for \"%s\": %s"),
2574                        bfd_section_name (stdoutput, seg),
2575                        bfd_errmsg (bfd_get_error ()));
2576           }
2577       }
2578 #endif
2579     }
2580
2581   /* Ignore the HP type.  */
2582   if (*input_line_pointer == ',')
2583     input_line_pointer += 2;
2584
2585   demand_empty_rest_of_line ();
2586
2587 #else /* ! TC_M68K */
2588 #ifdef TC_I960
2589
2590   char *name;
2591   char c;
2592   segT seg;
2593
2594   SKIP_WHITESPACE ();
2595
2596   name = input_line_pointer;
2597   c = get_symbol_end ();
2598
2599   name = xstrdup (name);
2600
2601   *input_line_pointer = c;
2602
2603   seg = subseg_new (name, 0);
2604
2605   if (*input_line_pointer != ',')
2606     *type = 'C';
2607   else
2608     {
2609       char *sectype;
2610
2611       ++input_line_pointer;
2612       SKIP_WHITESPACE ();
2613       sectype = input_line_pointer;
2614       c = get_symbol_end ();
2615       if (*sectype == '\0')
2616         *type = 'C';
2617       else if (strcasecmp (sectype, "text") == 0)
2618         *type = 'C';
2619       else if (strcasecmp (sectype, "data") == 0)
2620         *type = 'D';
2621       else if (strcasecmp (sectype, "romdata") == 0)
2622         *type = 'R';
2623       else
2624         as_warn (_("unrecognized section type `%s'"), sectype);
2625       *input_line_pointer = c;
2626     }
2627
2628   if (*input_line_pointer == ',')
2629     {
2630       char *seccmd;
2631
2632       ++input_line_pointer;
2633       SKIP_WHITESPACE ();
2634       seccmd = input_line_pointer;
2635       c = get_symbol_end ();
2636       if (strcasecmp (seccmd, "absolute") == 0)
2637         {
2638           as_bad (_("absolute sections are not supported"));
2639           *input_line_pointer = c;
2640           ignore_rest_of_line ();
2641           return;
2642         }
2643       else if (strcasecmp (seccmd, "align") == 0)
2644         {
2645           int align;
2646
2647           *input_line_pointer = c;
2648           align = get_absolute_expression ();
2649           record_alignment (seg, align);
2650         }
2651       else
2652         {
2653           as_warn (_("unrecognized section command `%s'"), seccmd);
2654           *input_line_pointer = c;
2655         }
2656     }
2657
2658   demand_empty_rest_of_line ();
2659
2660 #else /* ! TC_I960 */
2661   /* The MRI assembler seems to use different forms of .sect for
2662      different targets.  */
2663   as_bad ("MRI mode not supported for this target");
2664   ignore_rest_of_line ();
2665 #endif /* ! TC_I960 */
2666 #endif /* ! TC_M68K */
2667 }
2668
2669 /* Handle the .print pseudo-op.  */
2670
2671 void
2672 s_print (int ignore ATTRIBUTE_UNUSED)
2673 {
2674   char *s;
2675   int len;
2676
2677   s = demand_copy_C_string (&len);
2678   if (s != NULL)
2679     printf ("%s\n", s);
2680   demand_empty_rest_of_line ();
2681 }
2682
2683 /* Handle the .purgem pseudo-op.  */
2684
2685 void
2686 s_purgem (int ignore ATTRIBUTE_UNUSED)
2687 {
2688   if (is_it_end_of_statement ())
2689     {
2690       demand_empty_rest_of_line ();
2691       return;
2692     }
2693
2694   do
2695     {
2696       char *name;
2697       char c;
2698
2699       SKIP_WHITESPACE ();
2700       name = input_line_pointer;
2701       c = get_symbol_end ();
2702       delete_macro (name);
2703       *input_line_pointer = c;
2704       SKIP_WHITESPACE ();
2705     }
2706   while (*input_line_pointer++ == ',');
2707
2708   --input_line_pointer;
2709   demand_empty_rest_of_line ();
2710 }
2711
2712 /* Handle the .endm/.endr pseudo-ops.  */
2713
2714 static void
2715 s_bad_end (int endr)
2716 {
2717   as_warn (_(".end%c encountered without preceeding %s"),
2718            endr ? 'r' : 'm',
2719            endr ? ".rept, .irp, or .irpc" : ".macro");
2720   demand_empty_rest_of_line ();
2721 }
2722
2723 /* Handle the .rept pseudo-op.  */
2724
2725 void
2726 s_rept (int ignore ATTRIBUTE_UNUSED)
2727 {
2728   int count;
2729
2730   count = get_absolute_expression ();
2731
2732   do_repeat (count, "REPT", "ENDR");
2733 }
2734
2735 /* This function provides a generic repeat block implementation.   It allows
2736    different directives to be used as the start/end keys.  */
2737
2738 void
2739 do_repeat (int count, const char *start, const char *end)
2740 {
2741   sb one;
2742   sb many;
2743
2744   sb_new (&one);
2745   if (!buffer_and_nest (start, end, &one, get_line_sb))
2746     {
2747       as_bad (_("%s without %s"), start, end);
2748       return;
2749     }
2750
2751   sb_new (&many);
2752   while (count-- > 0)
2753     sb_add_sb (&many, &one);
2754
2755   sb_kill (&one);
2756
2757   input_scrub_include_sb (&many, input_line_pointer, 1);
2758   sb_kill (&many);
2759   buffer_limit = input_scrub_next_buffer (&input_line_pointer);
2760 }
2761
2762 /* Skip to end of current repeat loop; EXTRA indicates how many additional
2763    input buffers to skip.  Assumes that conditionals preceding the loop end
2764    are properly nested.
2765
2766    This function makes it easier to implement a premature "break" out of the
2767    loop.  The EXTRA arg accounts for other buffers we might have inserted,
2768    such as line substitutions.  */
2769
2770 void
2771 end_repeat (int extra)
2772 {
2773   cond_exit_macro (macro_nest);
2774   while (extra-- >= 0)
2775     buffer_limit = input_scrub_next_buffer (&input_line_pointer);
2776 }
2777
2778 static void
2779 assign_symbol (char *name, int no_reassign)
2780 {
2781   symbolS *symbolP;
2782
2783   if (name[0] == '.' && name[1] == '\0')
2784     {
2785       /* Turn '. = mumble' into a .org mumble.  */
2786       segT segment;
2787       expressionS exp;
2788
2789       segment = get_known_segmented_expression (&exp);
2790
2791       if (!need_pass_2)
2792         do_org (segment, &exp, 0);
2793
2794       return;
2795     }
2796
2797   if ((symbolP = symbol_find (name)) == NULL
2798       && (symbolP = md_undefined_symbol (name)) == NULL)
2799     {
2800       symbolP = symbol_find_or_make (name);
2801 #ifndef NO_LISTING
2802       /* When doing symbol listings, play games with dummy fragments living
2803          outside the normal fragment chain to record the file and line info
2804          for this symbol.  */
2805       if (listing & LISTING_SYMBOLS)
2806         {
2807           extern struct list_info_struct *listing_tail;
2808           fragS *dummy_frag = (fragS *) xcalloc (1, sizeof (fragS));
2809           dummy_frag->line = listing_tail;
2810           dummy_frag->fr_symbol = symbolP;
2811           symbol_set_frag (symbolP, dummy_frag);
2812         }
2813 #endif
2814 #ifdef OBJ_COFF
2815       /* "set" symbols are local unless otherwise specified.  */
2816       SF_SET_LOCAL (symbolP);
2817 #endif
2818     }
2819
2820   /* Permit register names to be redefined.  */
2821   if (no_reassign
2822       && S_IS_DEFINED (symbolP)
2823       && S_GET_SEGMENT (symbolP) != reg_section)
2824     as_bad (_("symbol `%s' is already defined"), name);
2825
2826   pseudo_set (symbolP);
2827 }
2828
2829 /* Handle the .equ, .equiv and .set directives.  If EQUIV is 1, then
2830    this is .equiv, and it is an error if the symbol is already
2831    defined.  */
2832
2833 void
2834 s_set (int equiv)
2835 {
2836   char *name;
2837   char delim;
2838   char *end_name;
2839
2840   /* Especial apologies for the random logic:
2841      this just grew, and could be parsed much more simply!
2842      Dean in haste.  */
2843   name = input_line_pointer;
2844   delim = get_symbol_end ();
2845   end_name = input_line_pointer;
2846   *end_name = delim;
2847
2848   if (name == end_name)
2849     {
2850       as_bad (_("expected symbol name"));
2851       discard_rest_of_line ();
2852       return;
2853     }
2854
2855   SKIP_WHITESPACE ();
2856
2857   if (*input_line_pointer != ',')
2858     {
2859       *end_name = 0;
2860       as_bad (_("expected comma after \"%s\""), name);
2861       *end_name = delim;
2862       ignore_rest_of_line ();
2863       return;
2864     }
2865
2866   input_line_pointer++;
2867   *end_name = 0;
2868
2869   assign_symbol (name, equiv);
2870   *end_name = delim;
2871
2872   demand_empty_rest_of_line ();
2873 }
2874
2875 void
2876 s_space (int mult)
2877 {
2878   expressionS exp;
2879   expressionS val;
2880   char *p = 0;
2881   char *stop = NULL;
2882   char stopc;
2883   int bytes;
2884
2885 #ifdef md_flush_pending_output
2886   md_flush_pending_output ();
2887 #endif
2888
2889   if (flag_mri)
2890     stop = mri_comment_field (&stopc);
2891
2892   /* In m68k MRI mode, we need to align to a word boundary, unless
2893      this is ds.b.  */
2894   if (flag_m68k_mri && mult > 1)
2895     {
2896       if (now_seg == absolute_section)
2897         {
2898           abs_section_offset += abs_section_offset & 1;
2899           if (line_label != NULL)
2900             S_SET_VALUE (line_label, abs_section_offset);
2901         }
2902       else if (mri_common_symbol != NULL)
2903         {
2904           valueT val;
2905
2906           val = S_GET_VALUE (mri_common_symbol);
2907           if ((val & 1) != 0)
2908             {
2909               S_SET_VALUE (mri_common_symbol, val + 1);
2910               if (line_label != NULL)
2911                 {
2912                   expressionS *symexp;
2913
2914                   symexp = symbol_get_value_expression (line_label);
2915                   know (symexp->X_op == O_symbol);
2916                   know (symexp->X_add_symbol == mri_common_symbol);
2917                   symexp->X_add_number += 1;
2918                 }
2919             }
2920         }
2921       else
2922         {
2923           do_align (1, (char *) NULL, 0, 0);
2924           if (line_label != NULL)
2925             {
2926               symbol_set_frag (line_label, frag_now);
2927               S_SET_VALUE (line_label, frag_now_fix ());
2928             }
2929         }
2930     }
2931
2932   bytes = mult;
2933
2934   expression (&exp);
2935
2936   SKIP_WHITESPACE ();
2937   if (*input_line_pointer == ',')
2938     {
2939       ++input_line_pointer;
2940       expression (&val);
2941     }
2942   else
2943     {
2944       val.X_op = O_constant;
2945       val.X_add_number = 0;
2946     }
2947
2948   if (val.X_op != O_constant
2949       || val.X_add_number < - 0x80
2950       || val.X_add_number > 0xff
2951       || (mult != 0 && mult != 1 && val.X_add_number != 0))
2952     {
2953       if (exp.X_op != O_constant)
2954         as_bad (_("unsupported variable size or fill value"));
2955       else
2956         {
2957           offsetT i;
2958
2959           if (mult == 0)
2960             mult = 1;
2961           bytes = mult * exp.X_add_number;
2962           for (i = 0; i < exp.X_add_number; i++)
2963             emit_expr (&val, mult);
2964         }
2965     }
2966   else
2967     {
2968       if (exp.X_op == O_constant)
2969         {
2970           long repeat;
2971
2972           repeat = exp.X_add_number;
2973           if (mult)
2974             repeat *= mult;
2975           bytes = repeat;
2976           if (repeat <= 0)
2977             {
2978               if (!flag_mri)
2979                 as_warn (_(".space repeat count is zero, ignored"));
2980               else if (repeat < 0)
2981                 as_warn (_(".space repeat count is negative, ignored"));
2982               goto getout;
2983             }
2984
2985           /* If we are in the absolute section, just bump the offset.  */
2986           if (now_seg == absolute_section)
2987             {
2988               abs_section_offset += repeat;
2989               goto getout;
2990             }
2991
2992           /* If we are secretly in an MRI common section, then
2993              creating space just increases the size of the common
2994              symbol.  */
2995           if (mri_common_symbol != NULL)
2996             {
2997               S_SET_VALUE (mri_common_symbol,
2998                            S_GET_VALUE (mri_common_symbol) + repeat);
2999               goto getout;
3000             }
3001
3002           if (!need_pass_2)
3003             p = frag_var (rs_fill, 1, 1, (relax_substateT) 0, (symbolS *) 0,
3004                           (offsetT) repeat, (char *) 0);
3005         }
3006       else
3007         {
3008           if (now_seg == absolute_section)
3009             {
3010               as_bad (_("space allocation too complex in absolute section"));
3011               subseg_set (text_section, 0);
3012             }
3013
3014           if (mri_common_symbol != NULL)
3015             {
3016               as_bad (_("space allocation too complex in common section"));
3017               mri_common_symbol = NULL;
3018             }
3019
3020           if (!need_pass_2)
3021             p = frag_var (rs_space, 1, 1, (relax_substateT) 0,
3022                           make_expr_symbol (&exp), (offsetT) 0, (char *) 0);
3023         }
3024
3025       if (p)
3026         *p = val.X_add_number;
3027     }
3028
3029  getout:
3030
3031   /* In MRI mode, after an odd number of bytes, we must align to an
3032      even word boundary, unless the next instruction is a dc.b, ds.b
3033      or dcb.b.  */
3034   if (flag_mri && (bytes & 1) != 0)
3035     mri_pending_align = 1;
3036
3037   demand_empty_rest_of_line ();
3038
3039   if (flag_mri)
3040     mri_comment_end (stop, stopc);
3041 }
3042
3043 /* This is like s_space, but the value is a floating point number with
3044    the given precision.  This is for the MRI dcb.s pseudo-op and
3045    friends.  */
3046
3047 void
3048 s_float_space (int float_type)
3049 {
3050   offsetT count;
3051   int flen;
3052   char temp[MAXIMUM_NUMBER_OF_CHARS_FOR_FLOAT];
3053   char *stop = NULL;
3054   char stopc;
3055
3056   if (flag_mri)
3057     stop = mri_comment_field (&stopc);
3058
3059   count = get_absolute_expression ();
3060
3061   SKIP_WHITESPACE ();
3062   if (*input_line_pointer != ',')
3063     {
3064       as_bad (_("missing value"));
3065       ignore_rest_of_line ();
3066       if (flag_mri)
3067         mri_comment_end (stop, stopc);
3068       return;
3069     }
3070
3071   ++input_line_pointer;
3072
3073   SKIP_WHITESPACE ();
3074
3075   /* Skip any 0{letter} that may be present.  Don't even check if the
3076    * letter is legal.  */
3077   if (input_line_pointer[0] == '0'
3078       && ISALPHA (input_line_pointer[1]))
3079     input_line_pointer += 2;
3080
3081   /* Accept :xxxx, where the x's are hex digits, for a floating point
3082      with the exact digits specified.  */
3083   if (input_line_pointer[0] == ':')
3084     {
3085       flen = hex_float (float_type, temp);
3086       if (flen < 0)
3087         {
3088           ignore_rest_of_line ();
3089           if (flag_mri)
3090             mri_comment_end (stop, stopc);
3091           return;
3092         }
3093     }
3094   else
3095     {
3096       char *err;
3097
3098       err = md_atof (float_type, temp, &flen);
3099       know (flen <= MAXIMUM_NUMBER_OF_CHARS_FOR_FLOAT);
3100       know (flen > 0);
3101       if (err)
3102         {
3103           as_bad (_("bad floating literal: %s"), err);
3104           ignore_rest_of_line ();
3105           if (flag_mri)
3106             mri_comment_end (stop, stopc);
3107           return;
3108         }
3109     }
3110
3111   while (--count >= 0)
3112     {
3113       char *p;
3114
3115       p = frag_more (flen);
3116       memcpy (p, temp, (unsigned int) flen);
3117     }
3118
3119   demand_empty_rest_of_line ();
3120
3121   if (flag_mri)
3122     mri_comment_end (stop, stopc);
3123 }
3124
3125 /* Handle the .struct pseudo-op, as found in MIPS assemblers.  */
3126
3127 void
3128 s_struct (int ignore ATTRIBUTE_UNUSED)
3129 {
3130   char *stop = NULL;
3131   char stopc;
3132
3133   if (flag_mri)
3134     stop = mri_comment_field (&stopc);
3135   abs_section_offset = get_absolute_expression ();
3136   subseg_set (absolute_section, 0);
3137   demand_empty_rest_of_line ();
3138   if (flag_mri)
3139     mri_comment_end (stop, stopc);
3140 }
3141
3142 void
3143 s_text (int ignore ATTRIBUTE_UNUSED)
3144 {
3145   register int temp;
3146
3147   temp = get_absolute_expression ();
3148   subseg_set (text_section, (subsegT) temp);
3149   demand_empty_rest_of_line ();
3150 #ifdef OBJ_VMS
3151   const_flag &= ~IN_DEFAULT_SECTION;
3152 #endif
3153 }
3154 \f
3155
3156 /* Verify that we are at the end of a line.  If not, issue an error and
3157    skip to EOL.  */
3158
3159 void
3160 demand_empty_rest_of_line (void)
3161 {
3162   SKIP_WHITESPACE ();
3163   if (is_end_of_line[(unsigned char) *input_line_pointer])
3164     input_line_pointer++;
3165   else
3166     {
3167       if (ISPRINT (*input_line_pointer))
3168         as_bad (_("junk at end of line, first unrecognized character is `%c'"),
3169                  *input_line_pointer);
3170       else
3171         as_bad (_("junk at end of line, first unrecognized character valued 0x%x"),
3172                  *input_line_pointer);
3173       ignore_rest_of_line ();
3174     }
3175   
3176   /* Return pointing just after end-of-line.  */
3177   know (is_end_of_line[(unsigned char) input_line_pointer[-1]]);
3178 }
3179
3180 /* Silently advance to the end of line.  Use this after already having
3181    issued an error about something bad.  */
3182
3183 void
3184 ignore_rest_of_line (void)
3185 {
3186   while (input_line_pointer < buffer_limit
3187          && !is_end_of_line[(unsigned char) *input_line_pointer])
3188     input_line_pointer++;
3189
3190   input_line_pointer++;
3191
3192   /* Return pointing just after end-of-line.  */
3193   know (is_end_of_line[(unsigned char) input_line_pointer[-1]]);
3194 }
3195
3196 void
3197 discard_rest_of_line (void)
3198 {
3199   while (input_line_pointer < buffer_limit
3200          && !is_end_of_line[(unsigned char) *input_line_pointer])
3201     input_line_pointer++;
3202
3203   input_line_pointer++;
3204
3205   /* Return pointing just after end-of-line.  */
3206   know (is_end_of_line[(unsigned char) input_line_pointer[-1]]);
3207 }
3208
3209 /* Sets frag for given symbol to zero_address_frag, except when the
3210    symbol frag is already set to a dummy listing frag.  */
3211
3212 static void
3213 set_zero_frag (symbolS *symbolP)
3214 {
3215   if (symbol_get_frag (symbolP)->fr_type != rs_dummy)
3216     symbol_set_frag (symbolP, &zero_address_frag);
3217 }
3218
3219 /* In:  Pointer to a symbol.
3220         Input_line_pointer->expression.
3221
3222    Out: Input_line_pointer->just after any whitespace after expression.
3223         Tried to set symbol to value of expression.
3224         Will change symbols type, value, and frag;  */
3225
3226 void
3227 pseudo_set (symbolS *symbolP)
3228 {
3229   expressionS exp;
3230   segT seg;
3231 #if (defined (OBJ_AOUT) || defined (OBJ_BOUT)) && ! defined (BFD_ASSEMBLER)
3232   int ext;
3233 #endif /* OBJ_AOUT or OBJ_BOUT */
3234
3235   know (symbolP);               /* NULL pointer is logic error.  */
3236
3237   (void) expression (&exp);
3238
3239   if (exp.X_op == O_illegal)
3240     as_bad (_("illegal expression"));
3241   else if (exp.X_op == O_absent)
3242     as_bad (_("missing expression"));
3243   else if (exp.X_op == O_big)
3244     {
3245       if (exp.X_add_number > 0)
3246         as_bad (_("bignum invalid"));
3247       else
3248         as_bad (_("floating point number invalid"));
3249     }
3250   else if (exp.X_op == O_subtract
3251            && SEG_NORMAL (S_GET_SEGMENT (exp.X_add_symbol))
3252            && (symbol_get_frag (exp.X_add_symbol)
3253                == symbol_get_frag (exp.X_op_symbol)))
3254     {
3255       exp.X_op = O_constant;
3256       exp.X_add_number = (S_GET_VALUE (exp.X_add_symbol)
3257                           - S_GET_VALUE (exp.X_op_symbol));
3258     }
3259
3260   if (symbol_section_p (symbolP))
3261     {
3262       as_bad ("attempt to set value of section symbol");
3263       return;
3264     }
3265 #if (defined (OBJ_AOUT) || defined (OBJ_BOUT)) && ! defined (BFD_ASSEMBLER)
3266   ext = S_IS_EXTERNAL (symbolP);
3267 #endif /* OBJ_AOUT or OBJ_BOUT */
3268
3269   switch (exp.X_op)
3270     {
3271     case O_illegal:
3272     case O_absent:
3273     case O_big:
3274       exp.X_add_number = 0;
3275       /* Fall through.  */
3276     case O_constant:
3277       S_SET_SEGMENT (symbolP, absolute_section);
3278       S_SET_VALUE (symbolP, (valueT) exp.X_add_number);
3279       set_zero_frag (symbolP);
3280       break;
3281
3282     case O_register:
3283       S_SET_SEGMENT (symbolP, reg_section);
3284       S_SET_VALUE (symbolP, (valueT) exp.X_add_number);
3285       set_zero_frag (symbolP);
3286       break;
3287
3288     case O_symbol:
3289       seg = S_GET_SEGMENT (exp.X_add_symbol);
3290       /* For x=undef+const, create an expression symbol.
3291          For x=x+const, just update x except when x is an undefined symbol
3292          For x=defined+const, evaluate x.  */
3293       if (symbolP == exp.X_add_symbol
3294           && (seg != undefined_section
3295               || !symbol_constant_p (symbolP)))
3296         {
3297           *symbol_X_add_number (symbolP) += exp.X_add_number;
3298           break;
3299         }
3300       else if (seg != undefined_section)
3301         {
3302           symbolS *s = exp.X_add_symbol;
3303
3304           S_SET_SEGMENT (symbolP, seg);
3305           S_SET_VALUE (symbolP, exp.X_add_number + S_GET_VALUE (s));
3306           symbol_set_frag (symbolP, symbol_get_frag (s));
3307           copy_symbol_attributes (symbolP, s);
3308           break;
3309         }
3310       /* Fall thru */
3311
3312     default:
3313       /* The value is some complex expression.
3314          Set segment and frag back to that of a newly created symbol.  */
3315       S_SET_SEGMENT (symbolP, undefined_section);
3316       symbol_set_value_expression (symbolP, &exp);
3317       set_zero_frag (symbolP);
3318       break;
3319     }
3320
3321 #if (defined (OBJ_AOUT) || defined (OBJ_BOUT)) && ! defined (BFD_ASSEMBLER)
3322   if (ext)
3323     S_SET_EXTERNAL (symbolP);
3324   else
3325     S_CLEAR_EXTERNAL (symbolP);
3326 #endif /* OBJ_AOUT or OBJ_BOUT */
3327 }
3328 \f
3329 /*                      cons()
3330
3331    CONStruct more frag of .bytes, or .words etc.
3332    Should need_pass_2 be 1 then emit no frag(s).
3333    This understands EXPRESSIONS.
3334
3335    Bug (?)
3336
3337    This has a split personality. We use expression() to read the
3338    value. We can detect if the value won't fit in a byte or word.
3339    But we can't detect if expression() discarded significant digits
3340    in the case of a long. Not worth the crocks required to fix it.  */
3341
3342 /* Select a parser for cons expressions.  */
3343
3344 /* Some targets need to parse the expression in various fancy ways.
3345    You can define TC_PARSE_CONS_EXPRESSION to do whatever you like
3346    (for example, the HPPA does this).  Otherwise, you can define
3347    BITFIELD_CONS_EXPRESSIONS to permit bitfields to be specified, or
3348    REPEAT_CONS_EXPRESSIONS to permit repeat counts.  If none of these
3349    are defined, which is the normal case, then only simple expressions
3350    are permitted.  */
3351
3352 #ifdef TC_M68K
3353 static void
3354 parse_mri_cons (expressionS *exp, unsigned int nbytes);
3355 #endif
3356
3357 #ifndef TC_PARSE_CONS_EXPRESSION
3358 #ifdef BITFIELD_CONS_EXPRESSIONS
3359 #define TC_PARSE_CONS_EXPRESSION(EXP, NBYTES) parse_bitfield_cons (EXP, NBYTES)
3360 static void
3361 parse_bitfield_cons (expressionS *exp, unsigned int nbytes);
3362 #endif
3363 #ifdef REPEAT_CONS_EXPRESSIONS
3364 #define TC_PARSE_CONS_EXPRESSION(EXP, NBYTES) parse_repeat_cons (EXP, NBYTES)
3365 static void
3366 parse_repeat_cons (expressionS *exp, unsigned int nbytes);
3367 #endif
3368
3369 /* If we haven't gotten one yet, just call expression.  */
3370 #ifndef TC_PARSE_CONS_EXPRESSION
3371 #define TC_PARSE_CONS_EXPRESSION(EXP, NBYTES) expression (EXP)
3372 #endif
3373 #endif
3374
3375 void
3376 do_parse_cons_expression (expressionS *exp,
3377                           int nbytes ATTRIBUTE_UNUSED)
3378 {
3379   TC_PARSE_CONS_EXPRESSION (exp, nbytes);
3380 }
3381
3382
3383 /* Worker to do .byte etc statements.
3384    Clobbers input_line_pointer and checks end-of-line.  */
3385
3386 static void
3387 cons_worker (register int nbytes,       /* 1=.byte, 2=.word, 4=.long.  */
3388              int rva)
3389 {
3390   int c;
3391   expressionS exp;
3392   char *stop = NULL;
3393   char stopc;
3394
3395 #ifdef md_flush_pending_output
3396   md_flush_pending_output ();
3397 #endif
3398
3399   if (flag_mri)
3400     stop = mri_comment_field (&stopc);
3401
3402   if (is_it_end_of_statement ())
3403     {
3404       demand_empty_rest_of_line ();
3405       if (flag_mri)
3406         mri_comment_end (stop, stopc);
3407       return;
3408     }
3409
3410 #ifdef TC_ADDRESS_BYTES
3411   if (nbytes == 0)
3412     nbytes = TC_ADDRESS_BYTES ();
3413 #endif
3414
3415 #ifdef md_cons_align
3416   md_cons_align (nbytes);
3417 #endif
3418
3419   c = 0;
3420   do
3421     {
3422 #ifdef TC_M68K
3423       if (flag_m68k_mri)
3424         parse_mri_cons (&exp, (unsigned int) nbytes);
3425       else
3426 #endif
3427         TC_PARSE_CONS_EXPRESSION (&exp, (unsigned int) nbytes);
3428
3429       if (rva)
3430         {
3431           if (exp.X_op == O_symbol)
3432             exp.X_op = O_symbol_rva;
3433           else
3434             as_fatal (_("rva without symbol"));
3435         }
3436       emit_expr (&exp, (unsigned int) nbytes);
3437       ++c;
3438     }
3439   while (*input_line_pointer++ == ',');
3440
3441   /* In MRI mode, after an odd number of bytes, we must align to an
3442      even word boundary, unless the next instruction is a dc.b, ds.b
3443      or dcb.b.  */
3444   if (flag_mri && nbytes == 1 && (c & 1) != 0)
3445     mri_pending_align = 1;
3446
3447   input_line_pointer--;         /* Put terminator back into stream.  */
3448
3449   demand_empty_rest_of_line ();
3450
3451   if (flag_mri)
3452     mri_comment_end (stop, stopc);
3453 }
3454
3455 void
3456 cons (int size)
3457 {
3458   cons_worker (size, 0);
3459 }
3460
3461 void
3462 s_rva (int size)
3463 {
3464   cons_worker (size, 1);
3465 }
3466
3467 /* Put the contents of expression EXP into the object file using
3468    NBYTES bytes.  If need_pass_2 is 1, this does nothing.  */
3469
3470 void
3471 emit_expr (expressionS *exp, unsigned int nbytes)
3472 {
3473   operatorT op;
3474   register char *p;
3475   valueT extra_digit = 0;
3476
3477   /* Don't do anything if we are going to make another pass.  */
3478   if (need_pass_2)
3479     return;
3480
3481   dot_value = frag_now_fix ();
3482
3483 #ifndef NO_LISTING
3484 #ifdef OBJ_ELF
3485   /* When gcc emits DWARF 1 debugging pseudo-ops, a line number will
3486      appear as a four byte positive constant in the .line section,
3487      followed by a 2 byte 0xffff.  Look for that case here.  */
3488   {
3489     static int dwarf_line = -1;
3490
3491     if (strcmp (segment_name (now_seg), ".line") != 0)
3492       dwarf_line = -1;
3493     else if (dwarf_line >= 0
3494              && nbytes == 2
3495              && exp->X_op == O_constant
3496              && (exp->X_add_number == -1 || exp->X_add_number == 0xffff))
3497       listing_source_line ((unsigned int) dwarf_line);
3498     else if (nbytes == 4
3499              && exp->X_op == O_constant
3500              && exp->X_add_number >= 0)
3501       dwarf_line = exp->X_add_number;
3502     else
3503       dwarf_line = -1;
3504   }
3505
3506   /* When gcc emits DWARF 1 debugging pseudo-ops, a file name will
3507      appear as a 2 byte TAG_compile_unit (0x11) followed by a 2 byte
3508      AT_sibling (0x12) followed by a four byte address of the sibling
3509      followed by a 2 byte AT_name (0x38) followed by the name of the
3510      file.  We look for that case here.  */
3511   {
3512     static int dwarf_file = 0;
3513
3514     if (strcmp (segment_name (now_seg), ".debug") != 0)
3515       dwarf_file = 0;
3516     else if (dwarf_file == 0
3517              && nbytes == 2
3518              && exp->X_op == O_constant
3519              && exp->X_add_number == 0x11)
3520       dwarf_file = 1;
3521     else if (dwarf_file == 1
3522              && nbytes == 2
3523              && exp->X_op == O_constant
3524              && exp->X_add_number == 0x12)
3525       dwarf_file = 2;
3526     else if (dwarf_file == 2
3527              && nbytes == 4)
3528       dwarf_file = 3;
3529     else if (dwarf_file == 3
3530              && nbytes == 2
3531              && exp->X_op == O_constant
3532              && exp->X_add_number == 0x38)
3533       dwarf_file = 4;
3534     else
3535       dwarf_file = 0;
3536
3537     /* The variable dwarf_file_string tells stringer that the string
3538        may be the name of the source file.  */
3539     if (dwarf_file == 4)
3540       dwarf_file_string = 1;
3541     else
3542       dwarf_file_string = 0;
3543   }
3544 #endif
3545 #endif
3546
3547   if (check_eh_frame (exp, &nbytes))
3548     return;
3549
3550   op = exp->X_op;
3551
3552   /* Allow `.word 0' in the absolute section.  */
3553   if (now_seg == absolute_section)
3554     {
3555       if (op != O_constant || exp->X_add_number != 0)
3556         as_bad (_("attempt to store value in absolute section"));
3557       abs_section_offset += nbytes;
3558       return;
3559     }
3560
3561   /* Handle a negative bignum.  */
3562   if (op == O_uminus
3563       && exp->X_add_number == 0
3564       && symbol_get_value_expression (exp->X_add_symbol)->X_op == O_big
3565       && symbol_get_value_expression (exp->X_add_symbol)->X_add_number > 0)
3566     {
3567       int i;
3568       unsigned long carry;
3569
3570       exp = symbol_get_value_expression (exp->X_add_symbol);
3571
3572       /* Negate the bignum: one's complement each digit and add 1.  */
3573       carry = 1;
3574       for (i = 0; i < exp->X_add_number; i++)
3575         {
3576           unsigned long next;
3577
3578           next = (((~(generic_bignum[i] & LITTLENUM_MASK))
3579                    & LITTLENUM_MASK)
3580                   + carry);
3581           generic_bignum[i] = next & LITTLENUM_MASK;
3582           carry = next >> LITTLENUM_NUMBER_OF_BITS;
3583         }
3584
3585       /* We can ignore any carry out, because it will be handled by
3586          extra_digit if it is needed.  */
3587
3588       extra_digit = (valueT) -1;
3589       op = O_big;
3590     }
3591
3592   if (op == O_absent || op == O_illegal)
3593     {
3594       as_warn (_("zero assumed for missing expression"));
3595       exp->X_add_number = 0;
3596       op = O_constant;
3597     }
3598   else if (op == O_big && exp->X_add_number <= 0)
3599     {
3600       as_bad (_("floating point number invalid"));
3601       exp->X_add_number = 0;
3602       op = O_constant;
3603     }
3604   else if (op == O_register)
3605     {
3606       as_warn (_("register value used as expression"));
3607       op = O_constant;
3608     }
3609
3610   p = frag_more ((int) nbytes);
3611
3612 #ifndef WORKING_DOT_WORD
3613   /* If we have the difference of two symbols in a word, save it on
3614      the broken_words list.  See the code in write.c.  */
3615   if (op == O_subtract && nbytes == 2)
3616     {
3617       struct broken_word *x;
3618
3619       x = (struct broken_word *) xmalloc (sizeof (struct broken_word));
3620       x->next_broken_word = broken_words;
3621       broken_words = x;
3622       x->seg = now_seg;
3623       x->subseg = now_subseg;
3624       x->frag = frag_now;
3625       x->word_goes_here = p;
3626       x->dispfrag = 0;
3627       x->add = exp->X_add_symbol;
3628       x->sub = exp->X_op_symbol;
3629       x->addnum = exp->X_add_number;
3630       x->added = 0;
3631       x->use_jump = 0;
3632       new_broken_words++;
3633       return;
3634     }
3635 #endif
3636
3637   /* If we have an integer, but the number of bytes is too large to
3638      pass to md_number_to_chars, handle it as a bignum.  */
3639   if (op == O_constant && nbytes > sizeof (valueT))
3640     {
3641       extra_digit = exp->X_unsigned ? 0 : -1;
3642       convert_to_bignum (exp);
3643       op = O_big;
3644     }
3645
3646   if (op == O_constant)
3647     {
3648       register valueT get;
3649       register valueT use;
3650       register valueT mask;
3651       valueT hibit;
3652       register valueT unmask;
3653
3654       /* JF << of >= number of bits in the object is undefined.  In
3655          particular SPARC (Sun 4) has problems.  */
3656       if (nbytes >= sizeof (valueT))
3657         {
3658           mask = 0;
3659           if (nbytes > sizeof (valueT))
3660             hibit = 0;
3661           else
3662             hibit = (valueT) 1 << (nbytes * BITS_PER_CHAR - 1);
3663         }
3664       else
3665         {
3666           /* Don't store these bits.  */
3667           mask = ~(valueT) 0 << (BITS_PER_CHAR * nbytes);
3668           hibit = (valueT) 1 << (nbytes * BITS_PER_CHAR - 1);
3669         }
3670
3671       unmask = ~mask;           /* Do store these bits.  */
3672
3673 #ifdef NEVER
3674       "Do this mod if you want every overflow check to assume SIGNED 2's complement data.";
3675       mask = ~(unmask >> 1);    /* Includes sign bit now.  */
3676 #endif
3677
3678       get = exp->X_add_number;
3679       use = get & unmask;
3680       if ((get & mask) != 0
3681           && ((get & mask) != mask
3682               || (get & hibit) == 0))
3683         {               /* Leading bits contain both 0s & 1s.  */
3684           as_warn (_("value 0x%lx truncated to 0x%lx"),
3685                    (unsigned long) get, (unsigned long) use);
3686         }
3687       /* Put bytes in right order.  */
3688       md_number_to_chars (p, use, (int) nbytes);
3689     }
3690   else if (op == O_big)
3691     {
3692       unsigned int size;
3693       LITTLENUM_TYPE *nums;
3694
3695       know (nbytes % CHARS_PER_LITTLENUM == 0);
3696
3697       size = exp->X_add_number * CHARS_PER_LITTLENUM;
3698       if (nbytes < size)
3699         {
3700           as_warn (_("bignum truncated to %d bytes"), nbytes);
3701           size = nbytes;
3702         }
3703
3704       if (target_big_endian)
3705         {
3706           while (nbytes > size)
3707             {
3708               md_number_to_chars (p, extra_digit, CHARS_PER_LITTLENUM);
3709               nbytes -= CHARS_PER_LITTLENUM;
3710               p += CHARS_PER_LITTLENUM;
3711             }
3712
3713           nums = generic_bignum + size / CHARS_PER_LITTLENUM;
3714           while (size >= CHARS_PER_LITTLENUM)
3715             {
3716               --nums;
3717               md_number_to_chars (p, (valueT) *nums, CHARS_PER_LITTLENUM);
3718               size -= CHARS_PER_LITTLENUM;
3719               p += CHARS_PER_LITTLENUM;
3720             }
3721         }
3722       else
3723         {
3724           nums = generic_bignum;
3725           while (size >= CHARS_PER_LITTLENUM)
3726             {
3727               md_number_to_chars (p, (valueT) *nums, CHARS_PER_LITTLENUM);
3728               ++nums;
3729               size -= CHARS_PER_LITTLENUM;
3730               p += CHARS_PER_LITTLENUM;
3731               nbytes -= CHARS_PER_LITTLENUM;
3732             }
3733
3734           while (nbytes >= CHARS_PER_LITTLENUM)
3735             {
3736               md_number_to_chars (p, extra_digit, CHARS_PER_LITTLENUM);
3737               nbytes -= CHARS_PER_LITTLENUM;
3738               p += CHARS_PER_LITTLENUM;
3739             }
3740         }
3741     }
3742   else
3743     {
3744       memset (p, 0, nbytes);
3745
3746       /* Now we need to generate a fixS to record the symbol value.
3747          This is easy for BFD.  For other targets it can be more
3748          complex.  For very complex cases (currently, the HPPA and
3749          NS32K), you can define TC_CONS_FIX_NEW to do whatever you
3750          want.  For simpler cases, you can define TC_CONS_RELOC to be
3751          the name of the reloc code that should be stored in the fixS.
3752          If neither is defined, the code uses NO_RELOC if it is
3753          defined, and otherwise uses 0.  */
3754
3755 #ifdef BFD_ASSEMBLER
3756 #ifdef TC_CONS_FIX_NEW
3757       TC_CONS_FIX_NEW (frag_now, p - frag_now->fr_literal, nbytes, exp);
3758 #else
3759       {
3760         bfd_reloc_code_real_type r;
3761
3762         switch (nbytes)
3763           {
3764           case 1:
3765             r = BFD_RELOC_8;
3766             break;
3767           case 2:
3768             r = BFD_RELOC_16;
3769             break;
3770           case 4:
3771             r = BFD_RELOC_32;
3772             break;
3773           case 8:
3774             r = BFD_RELOC_64;
3775             break;
3776           default:
3777             as_bad (_("unsupported BFD relocation size %u"), nbytes);
3778             r = BFD_RELOC_32;
3779             break;
3780           }
3781         fix_new_exp (frag_now, p - frag_now->fr_literal, (int) nbytes, exp,
3782                      0, r);
3783       }
3784 #endif
3785 #else
3786 #ifdef TC_CONS_FIX_NEW
3787       TC_CONS_FIX_NEW (frag_now, p - frag_now->fr_literal, nbytes, exp);
3788 #else
3789       /* Figure out which reloc number to use.  Use TC_CONS_RELOC if
3790          it is defined, otherwise use NO_RELOC if it is defined,
3791          otherwise use 0.  */
3792 #ifndef TC_CONS_RELOC
3793 #ifdef NO_RELOC
3794 #define TC_CONS_RELOC NO_RELOC
3795 #else
3796 #define TC_CONS_RELOC 0
3797 #endif
3798 #endif
3799       fix_new_exp (frag_now, p - frag_now->fr_literal, (int) nbytes, exp, 0,
3800                    TC_CONS_RELOC);
3801 #endif /* TC_CONS_FIX_NEW */
3802 #endif /* BFD_ASSEMBLER */
3803     }
3804 }
3805 \f
3806 #ifdef BITFIELD_CONS_EXPRESSIONS
3807
3808 /* i960 assemblers, (eg, asm960), allow bitfields after ".byte" as
3809    w:x,y:z, where w and y are bitwidths and x and y are values.  They
3810    then pack them all together. We do a little better in that we allow
3811    them in words, longs, etc. and we'll pack them in target byte order
3812    for you.
3813
3814    The rules are: pack least significant bit first, if a field doesn't
3815    entirely fit, put it in the next unit.  Overflowing the bitfield is
3816    explicitly *not* even a warning.  The bitwidth should be considered
3817    a "mask".
3818
3819    To use this function the tc-XXX.h file should define
3820    BITFIELD_CONS_EXPRESSIONS.  */
3821
3822 static void
3823 parse_bitfield_cons (exp, nbytes)
3824      expressionS *exp;
3825      unsigned int nbytes;
3826 {
3827   unsigned int bits_available = BITS_PER_CHAR * nbytes;
3828   char *hold = input_line_pointer;
3829
3830   (void) expression (exp);
3831
3832   if (*input_line_pointer == ':')
3833     {
3834       /* Bitfields.  */
3835       long value = 0;
3836
3837       for (;;)
3838         {
3839           unsigned long width;
3840
3841           if (*input_line_pointer != ':')
3842             {
3843               input_line_pointer = hold;
3844               break;
3845             }                   /* Next piece is not a bitfield.  */
3846
3847           /* In the general case, we can't allow
3848              full expressions with symbol
3849              differences and such.  The relocation
3850              entries for symbols not defined in this
3851              assembly would require arbitrary field
3852              widths, positions, and masks which most
3853              of our current object formats don't
3854              support.
3855
3856              In the specific case where a symbol
3857              *is* defined in this assembly, we
3858              *could* build fixups and track it, but
3859              this could lead to confusion for the
3860              backends.  I'm lazy. I'll take any
3861              SEG_ABSOLUTE. I think that means that
3862              you can use a previous .set or
3863              .equ type symbol.  xoxorich.  */
3864
3865           if (exp->X_op == O_absent)
3866             {
3867               as_warn (_("using a bit field width of zero"));
3868               exp->X_add_number = 0;
3869               exp->X_op = O_constant;
3870             }                   /* Implied zero width bitfield.  */
3871
3872           if (exp->X_op != O_constant)
3873             {
3874               *input_line_pointer = '\0';
3875               as_bad (_("field width \"%s\" too complex for a bitfield"), hold);
3876               *input_line_pointer = ':';
3877               demand_empty_rest_of_line ();
3878               return;
3879             }                   /* Too complex.  */
3880
3881           if ((width = exp->X_add_number) > (BITS_PER_CHAR * nbytes))
3882             {
3883               as_warn (_("field width %lu too big to fit in %d bytes: truncated to %d bits"),
3884                        width, nbytes, (BITS_PER_CHAR * nbytes));
3885               width = BITS_PER_CHAR * nbytes;
3886             }                   /* Too big.  */
3887
3888           if (width > bits_available)
3889             {
3890               /* FIXME-SOMEDAY: backing up and reparsing is wasteful.  */
3891               input_line_pointer = hold;
3892               exp->X_add_number = value;
3893               break;
3894             }                   /* Won't fit.  */
3895
3896           /* Skip ':'.  */
3897           hold = ++input_line_pointer;
3898
3899           (void) expression (exp);
3900           if (exp->X_op != O_constant)
3901             {
3902               char cache = *input_line_pointer;
3903
3904               *input_line_pointer = '\0';
3905               as_bad (_("field value \"%s\" too complex for a bitfield"), hold);
3906               *input_line_pointer = cache;
3907               demand_empty_rest_of_line ();
3908               return;
3909             }                   /* Too complex.  */
3910
3911           value |= ((~(-1 << width) & exp->X_add_number)
3912                     << ((BITS_PER_CHAR * nbytes) - bits_available));
3913
3914           if ((bits_available -= width) == 0
3915               || is_it_end_of_statement ()
3916               || *input_line_pointer != ',')
3917             {
3918               break;
3919             }                   /* All the bitfields we're gonna get.  */
3920
3921           hold = ++input_line_pointer;
3922           (void) expression (exp);
3923         }
3924
3925       exp->X_add_number = value;
3926       exp->X_op = O_constant;
3927       exp->X_unsigned = 1;
3928     }
3929 }
3930
3931 #endif /* BITFIELD_CONS_EXPRESSIONS */
3932 \f
3933 /* Handle an MRI style string expression.  */
3934
3935 #ifdef TC_M68K
3936 static void
3937 parse_mri_cons (exp, nbytes)
3938      expressionS *exp;
3939      unsigned int nbytes;
3940 {
3941   if (*input_line_pointer != '\''
3942       && (input_line_pointer[1] != '\''
3943           || (*input_line_pointer != 'A'
3944               && *input_line_pointer != 'E')))
3945     TC_PARSE_CONS_EXPRESSION (exp, nbytes);
3946   else
3947     {
3948       unsigned int scan;
3949       unsigned int result = 0;
3950
3951       /* An MRI style string.  Cut into as many bytes as will fit into
3952          a nbyte chunk, left justify if necessary, and separate with
3953          commas so we can try again later.  */
3954       if (*input_line_pointer == 'A')
3955         ++input_line_pointer;
3956       else if (*input_line_pointer == 'E')
3957         {
3958           as_bad (_("EBCDIC constants are not supported"));
3959           ++input_line_pointer;
3960         }
3961
3962       input_line_pointer++;
3963       for (scan = 0; scan < nbytes; scan++)
3964         {
3965           if (*input_line_pointer == '\'')
3966             {
3967               if (input_line_pointer[1] == '\'')
3968                 {
3969                   input_line_pointer++;
3970                 }
3971               else
3972                 break;
3973             }
3974           result = (result << 8) | (*input_line_pointer++);
3975         }
3976
3977       /* Left justify.  */
3978       while (scan < nbytes)
3979         {
3980           result <<= 8;
3981           scan++;
3982         }
3983
3984       /* Create correct expression.  */
3985       exp->X_op = O_constant;
3986       exp->X_add_number = result;
3987
3988       /* Fake it so that we can read the next char too.  */
3989       if (input_line_pointer[0] != '\'' ||
3990           (input_line_pointer[0] == '\'' && input_line_pointer[1] == '\''))
3991         {
3992           input_line_pointer -= 2;
3993           input_line_pointer[0] = ',';
3994           input_line_pointer[1] = '\'';
3995         }
3996       else
3997         input_line_pointer++;
3998     }
3999 }
4000 #endif /* TC_M68K */
4001 \f
4002 #ifdef REPEAT_CONS_EXPRESSIONS
4003
4004 /* Parse a repeat expression for cons.  This is used by the MIPS
4005    assembler.  The format is NUMBER:COUNT; NUMBER appears in the
4006    object file COUNT times.
4007
4008    To use this for a target, define REPEAT_CONS_EXPRESSIONS.  */
4009
4010 static void
4011 parse_repeat_cons (exp, nbytes)
4012      expressionS *exp;
4013      unsigned int nbytes;
4014 {
4015   expressionS count;
4016   register int i;
4017
4018   expression (exp);
4019
4020   if (*input_line_pointer != ':')
4021     {
4022       /* No repeat count.  */
4023       return;
4024     }
4025
4026   ++input_line_pointer;
4027   expression (&count);
4028   if (count.X_op != O_constant
4029       || count.X_add_number <= 0)
4030     {
4031       as_warn (_("unresolvable or nonpositive repeat count; using 1"));
4032       return;
4033     }
4034
4035   /* The cons function is going to output this expression once.  So we
4036      output it count - 1 times.  */
4037   for (i = count.X_add_number - 1; i > 0; i--)
4038     emit_expr (exp, nbytes);
4039 }
4040
4041 #endif /* REPEAT_CONS_EXPRESSIONS */
4042 \f
4043 /* Parse a floating point number represented as a hex constant.  This
4044    permits users to specify the exact bits they want in the floating
4045    point number.  */
4046
4047 static int
4048 hex_float (int float_type, char *bytes)
4049 {
4050   int length;
4051   int i;
4052
4053   switch (float_type)
4054     {
4055     case 'f':
4056     case 'F':
4057     case 's':
4058     case 'S':
4059       length = 4;
4060       break;
4061
4062     case 'd':
4063     case 'D':
4064     case 'r':
4065     case 'R':
4066       length = 8;
4067       break;
4068
4069     case 'x':
4070     case 'X':
4071       length = 12;
4072       break;
4073
4074     case 'p':
4075     case 'P':
4076       length = 12;
4077       break;
4078
4079     default:
4080       as_bad (_("unknown floating type type '%c'"), float_type);
4081       return -1;
4082     }
4083
4084   /* It would be nice if we could go through expression to parse the
4085      hex constant, but if we get a bignum it's a pain to sort it into
4086      the buffer correctly.  */
4087   i = 0;
4088   while (hex_p (*input_line_pointer) || *input_line_pointer == '_')
4089     {
4090       int d;
4091
4092       /* The MRI assembler accepts arbitrary underscores strewn about
4093          through the hex constant, so we ignore them as well.  */
4094       if (*input_line_pointer == '_')
4095         {
4096           ++input_line_pointer;
4097           continue;
4098         }
4099
4100       if (i >= length)
4101         {
4102           as_warn (_("floating point constant too large"));
4103           return -1;
4104         }
4105       d = hex_value (*input_line_pointer) << 4;
4106       ++input_line_pointer;
4107       while (*input_line_pointer == '_')
4108         ++input_line_pointer;
4109       if (hex_p (*input_line_pointer))
4110         {
4111           d += hex_value (*input_line_pointer);
4112           ++input_line_pointer;
4113         }
4114       if (target_big_endian)
4115         bytes[i] = d;
4116       else
4117         bytes[length - i - 1] = d;
4118       ++i;
4119     }
4120
4121   if (i < length)
4122     {
4123       if (target_big_endian)
4124         memset (bytes + i, 0, length - i);
4125       else
4126         memset (bytes, 0, length - i);
4127     }
4128
4129   return length;
4130 }
4131
4132 /*                      float_cons()
4133
4134    CONStruct some more frag chars of .floats .ffloats etc.
4135    Makes 0 or more new frags.
4136    If need_pass_2 == 1, no frags are emitted.
4137    This understands only floating literals, not expressions. Sorry.
4138
4139    A floating constant is defined by atof_generic(), except it is preceded
4140    by 0d 0f 0g or 0h. After observing the STRANGE way my BSD AS does its
4141    reading, I decided to be incompatible. This always tries to give you
4142    rounded bits to the precision of the pseudo-op. Former AS did premature
4143    truncation, restored noisy bits instead of trailing 0s AND gave you
4144    a choice of 2 flavours of noise according to which of 2 floating-point
4145    scanners you directed AS to use.
4146
4147    In:  input_line_pointer->whitespace before, or '0' of flonum.  */
4148
4149 void
4150 float_cons (/* Clobbers input_line-pointer, checks end-of-line.  */
4151             register int float_type     /* 'f':.ffloat ... 'F':.float ...  */)
4152 {
4153   register char *p;
4154   int length;                   /* Number of chars in an object.  */
4155   register char *err;           /* Error from scanning floating literal.  */
4156   char temp[MAXIMUM_NUMBER_OF_CHARS_FOR_FLOAT];
4157
4158   if (is_it_end_of_statement ())
4159     {
4160       demand_empty_rest_of_line ();
4161       return;
4162     }
4163
4164 #ifdef md_flush_pending_output
4165   md_flush_pending_output ();
4166 #endif
4167
4168   do
4169     {
4170       /* input_line_pointer->1st char of a flonum (we hope!).  */
4171       SKIP_WHITESPACE ();
4172
4173       /* Skip any 0{letter} that may be present. Don't even check if the
4174          letter is legal. Someone may invent a "z" format and this routine
4175          has no use for such information. Lusers beware: you get
4176          diagnostics if your input is ill-conditioned.  */
4177       if (input_line_pointer[0] == '0'
4178           && ISALPHA (input_line_pointer[1]))
4179         input_line_pointer += 2;
4180
4181       /* Accept :xxxx, where the x's are hex digits, for a floating
4182          point with the exact digits specified.  */
4183       if (input_line_pointer[0] == ':')
4184         {
4185           ++input_line_pointer;
4186           length = hex_float (float_type, temp);
4187           if (length < 0)
4188             {
4189               ignore_rest_of_line ();
4190               return;
4191             }
4192         }
4193       else
4194         {
4195           err = md_atof (float_type, temp, &length);
4196           know (length <= MAXIMUM_NUMBER_OF_CHARS_FOR_FLOAT);
4197           know (length > 0);
4198           if (err)
4199             {
4200               as_bad (_("bad floating literal: %s"), err);
4201               ignore_rest_of_line ();
4202               return;
4203             }
4204         }
4205
4206       if (!need_pass_2)
4207         {
4208           int count;
4209
4210           count = 1;
4211
4212 #ifdef REPEAT_CONS_EXPRESSIONS
4213           if (*input_line_pointer == ':')
4214             {
4215               expressionS count_exp;
4216
4217               ++input_line_pointer;
4218               expression (&count_exp);
4219
4220               if (count_exp.X_op != O_constant
4221                   || count_exp.X_add_number <= 0)
4222                 as_warn (_("unresolvable or nonpositive repeat count; using 1"));
4223               else
4224                 count = count_exp.X_add_number;
4225             }
4226 #endif
4227
4228           while (--count >= 0)
4229             {
4230               p = frag_more (length);
4231               memcpy (p, temp, (unsigned int) length);
4232             }
4233         }
4234       SKIP_WHITESPACE ();
4235     }
4236   while (*input_line_pointer++ == ',');
4237
4238   /* Put terminator back into stream.  */
4239   --input_line_pointer;
4240   demand_empty_rest_of_line ();
4241 }
4242 \f
4243 /* Return the size of a LEB128 value.  */
4244
4245 static inline int
4246 sizeof_sleb128 (offsetT value)
4247 {
4248   register int size = 0;
4249   register unsigned byte;
4250
4251   do
4252     {
4253       byte = (value & 0x7f);
4254       /* Sadly, we cannot rely on typical arithmetic right shift behaviour.
4255          Fortunately, we can structure things so that the extra work reduces
4256          to a noop on systems that do things "properly".  */
4257       value = (value >> 7) | ~(-(offsetT)1 >> 7);
4258       size += 1;
4259     }
4260   while (!(((value == 0) && ((byte & 0x40) == 0))
4261            || ((value == -1) && ((byte & 0x40) != 0))));
4262
4263   return size;
4264 }
4265
4266 static inline int
4267 sizeof_uleb128 (valueT value)
4268 {
4269   register int size = 0;
4270   register unsigned byte;
4271
4272   do
4273     {
4274       byte = (value & 0x7f);
4275       value >>= 7;
4276       size += 1;
4277     }
4278   while (value != 0);
4279
4280   return size;
4281 }
4282
4283 int
4284 sizeof_leb128 (valueT value, int sign)
4285 {
4286   if (sign)
4287     return sizeof_sleb128 ((offsetT) value);
4288   else
4289     return sizeof_uleb128 (value);
4290 }
4291
4292 /* Output a LEB128 value.  */
4293
4294 static inline int
4295 output_sleb128 (char *p, offsetT value)
4296 {
4297   register char *orig = p;
4298   register int more;
4299
4300   do
4301     {
4302       unsigned byte = (value & 0x7f);
4303
4304       /* Sadly, we cannot rely on typical arithmetic right shift behaviour.
4305          Fortunately, we can structure things so that the extra work reduces
4306          to a noop on systems that do things "properly".  */
4307       value = (value >> 7) | ~(-(offsetT)1 >> 7);
4308
4309       more = !((((value == 0) && ((byte & 0x40) == 0))
4310                 || ((value == -1) && ((byte & 0x40) != 0))));
4311       if (more)
4312         byte |= 0x80;
4313
4314       *p++ = byte;
4315     }
4316   while (more);
4317
4318   return p - orig;
4319 }
4320
4321 static inline int
4322 output_uleb128 (char *p, valueT value)
4323 {
4324   char *orig = p;
4325
4326   do
4327     {
4328       unsigned byte = (value & 0x7f);
4329       value >>= 7;
4330       if (value != 0)
4331         /* More bytes to follow.  */
4332         byte |= 0x80;
4333
4334       *p++ = byte;
4335     }
4336   while (value != 0);
4337
4338   return p - orig;
4339 }
4340
4341 int
4342 output_leb128 (char *p, valueT value, int sign)
4343 {
4344   if (sign)
4345     return output_sleb128 (p, (offsetT) value);
4346   else
4347     return output_uleb128 (p, value);
4348 }
4349
4350 /* Do the same for bignums.  We combine sizeof with output here in that
4351    we don't output for NULL values of P.  It isn't really as critical as
4352    for "normal" values that this be streamlined.  */
4353
4354 static inline int
4355 output_big_sleb128 (char *p, LITTLENUM_TYPE *bignum, int size)
4356 {
4357   char *orig = p;
4358   valueT val = 0;
4359   int loaded = 0;
4360   unsigned byte;
4361
4362   /* Strip leading sign extensions off the bignum.  */
4363   while (size > 1
4364          && bignum[size - 1] == LITTLENUM_MASK
4365          && bignum[size - 2] > LITTLENUM_MASK / 2)
4366     size--;
4367
4368   do
4369     {
4370       /* OR in the next part of the littlenum.  */
4371       val |= (*bignum << loaded);
4372       loaded += LITTLENUM_NUMBER_OF_BITS;
4373       size--;
4374       bignum++;
4375
4376       /* Add bytes until there are less than 7 bits left in VAL
4377          or until every non-sign bit has been written.  */
4378       do
4379         {
4380           byte = val & 0x7f;
4381           loaded -= 7;
4382           val >>= 7;
4383           if (size > 0
4384               || val != ((byte & 0x40) == 0 ? 0 : ((valueT) 1 << loaded) - 1))
4385             byte |= 0x80;
4386
4387           if (orig)
4388             *p = byte;
4389           p++;
4390         }
4391       while ((byte & 0x80) != 0 && loaded >= 7);
4392     }
4393   while (size > 0);
4394
4395   /* Mop up any left-over bits (of which there will be less than 7).  */
4396   if ((byte & 0x80) != 0)
4397     {
4398       /* Sign-extend VAL.  */
4399       if (val & (1 << (loaded - 1)))
4400         val |= ~0 << loaded;
4401       if (orig)
4402         *p = val & 0x7f;
4403       p++;
4404     }
4405
4406   return p - orig;
4407 }
4408
4409 static inline int
4410 output_big_uleb128 (char *p, LITTLENUM_TYPE *bignum, int size)
4411 {
4412   char *orig = p;
4413   valueT val = 0;
4414   int loaded = 0;
4415   unsigned byte;
4416
4417   /* Strip leading zeros off the bignum.  */
4418   /* XXX: Is this needed?  */
4419   while (size > 0 && bignum[size - 1] == 0)
4420     size--;
4421
4422   do
4423     {
4424       if (loaded < 7 && size > 0)
4425         {
4426           val |= (*bignum << loaded);
4427           loaded += 8 * CHARS_PER_LITTLENUM;
4428           size--;
4429           bignum++;
4430         }
4431
4432       byte = val & 0x7f;
4433       loaded -= 7;
4434       val >>= 7;
4435
4436       if (size > 0 || val)
4437         byte |= 0x80;
4438
4439       if (orig)
4440         *p = byte;
4441       p++;
4442     }
4443   while (byte & 0x80);
4444
4445   return p - orig;
4446 }
4447
4448 static int
4449 output_big_leb128 (char *p, LITTLENUM_TYPE *bignum, int size, int sign)
4450 {
4451   if (sign)
4452     return output_big_sleb128 (p, bignum, size);
4453   else
4454     return output_big_uleb128 (p, bignum, size);
4455 }
4456
4457 /* Generate the appropriate fragments for a given expression to emit a
4458    leb128 value.  */
4459
4460 void
4461 emit_leb128_expr (expressionS *exp, int sign)
4462 {
4463   operatorT op = exp->X_op;
4464   unsigned int nbytes;
4465
4466   if (op == O_absent || op == O_illegal)
4467     {
4468       as_warn (_("zero assumed for missing expression"));
4469       exp->X_add_number = 0;
4470       op = O_constant;
4471     }
4472   else if (op == O_big && exp->X_add_number <= 0)
4473     {
4474       as_bad (_("floating point number invalid"));
4475       exp->X_add_number = 0;
4476       op = O_constant;
4477     }
4478   else if (op == O_register)
4479     {
4480       as_warn (_("register value used as expression"));
4481       op = O_constant;
4482     }
4483   else if (op == O_constant
4484            && sign
4485            && (exp->X_add_number < 0) != !exp->X_unsigned)
4486     {
4487       /* We're outputting a signed leb128 and the sign of X_add_number
4488          doesn't reflect the sign of the original value.  Convert EXP
4489          to a correctly-extended bignum instead.  */
4490       convert_to_bignum (exp);
4491       op = O_big;
4492     }
4493
4494   /* Let check_eh_frame know that data is being emitted.  nbytes == -1 is
4495      a signal that this is leb128 data.  It shouldn't optimize this away.  */
4496   nbytes = (unsigned int) -1;
4497   if (check_eh_frame (exp, &nbytes))
4498     abort ();
4499
4500   /* Let the backend know that subsequent data may be byte aligned.  */
4501 #ifdef md_cons_align
4502   md_cons_align (1);
4503 #endif
4504
4505   if (op == O_constant)
4506     {
4507       /* If we've got a constant, emit the thing directly right now.  */
4508
4509       valueT value = exp->X_add_number;
4510       int size;
4511       char *p;
4512
4513       size = sizeof_leb128 (value, sign);
4514       p = frag_more (size);
4515       output_leb128 (p, value, sign);
4516     }
4517   else if (op == O_big)
4518     {
4519       /* O_big is a different sort of constant.  */
4520
4521       int size;
4522       char *p;
4523
4524       size = output_big_leb128 (NULL, generic_bignum, exp->X_add_number, sign);
4525       p = frag_more (size);
4526       output_big_leb128 (p, generic_bignum, exp->X_add_number, sign);
4527     }
4528   else
4529     {
4530       /* Otherwise, we have to create a variable sized fragment and
4531          resolve things later.  */
4532
4533       frag_var (rs_leb128, sizeof_uleb128 (~(valueT) 0), 0, sign,
4534                 make_expr_symbol (exp), 0, (char *) NULL);
4535     }
4536 }
4537
4538 /* Parse the .sleb128 and .uleb128 pseudos.  */
4539
4540 void
4541 s_leb128 (int sign)
4542 {
4543   expressionS exp;
4544
4545 #ifdef md_flush_pending_output
4546   md_flush_pending_output ();
4547 #endif
4548
4549   do
4550     {
4551       expression (&exp);
4552       emit_leb128_expr (&exp, sign);
4553     }
4554   while (*input_line_pointer++ == ',');
4555
4556   input_line_pointer--;
4557   demand_empty_rest_of_line ();
4558 }
4559 \f
4560 /* We read 0 or more ',' separated, double-quoted strings.
4561    Caller should have checked need_pass_2 is FALSE because we don't
4562    check it.  */
4563
4564 void
4565 stringer (/* Worker to do .ascii etc statements.  */
4566           /* Checks end-of-line.  */
4567           register int append_zero      /* 0: don't append '\0', else 1.  */)
4568 {
4569   register unsigned int c;
4570   char *start;
4571
4572 #ifdef md_flush_pending_output
4573   md_flush_pending_output ();
4574 #endif
4575
4576   /* The following awkward logic is to parse ZERO or more strings,
4577      comma separated. Recall a string expression includes spaces
4578      before the opening '\"' and spaces after the closing '\"'.
4579      We fake a leading ',' if there is (supposed to be)
4580      a 1st, expression. We keep demanding expressions for each ','.  */
4581   if (is_it_end_of_statement ())
4582     {
4583       c = 0;                    /* Skip loop.  */
4584       ++input_line_pointer;     /* Compensate for end of loop.  */
4585     }
4586   else
4587     {
4588       c = ',';                  /* Do loop.  */
4589     }
4590   /* If we have been switched into the abs_section then we
4591      will not have an obstack onto which we can hang strings.  */
4592   if (now_seg == absolute_section)
4593     {
4594       as_bad (_("strings must be placed into a section"));
4595       c = 0;
4596       ignore_rest_of_line ();
4597     }
4598
4599   while (c == ',' || c == '<' || c == '"')
4600     {
4601       SKIP_WHITESPACE ();
4602       switch (*input_line_pointer)
4603         {
4604         case '\"':
4605           ++input_line_pointer; /*->1st char of string.  */
4606           start = input_line_pointer;
4607           while (is_a_char (c = next_char_of_string ()))
4608             {
4609               FRAG_APPEND_1_CHAR (c);
4610             }
4611           if (append_zero)
4612             {
4613               FRAG_APPEND_1_CHAR (0);
4614             }
4615           know (input_line_pointer[-1] == '\"');
4616
4617 #ifndef NO_LISTING
4618 #ifdef OBJ_ELF
4619           /* In ELF, when gcc is emitting DWARF 1 debugging output, it
4620              will emit .string with a filename in the .debug section
4621              after a sequence of constants.  See the comment in
4622              emit_expr for the sequence.  emit_expr will set
4623              dwarf_file_string to non-zero if this string might be a
4624              source file name.  */
4625           if (strcmp (segment_name (now_seg), ".debug") != 0)
4626             dwarf_file_string = 0;
4627           else if (dwarf_file_string)
4628             {
4629               c = input_line_pointer[-1];
4630               input_line_pointer[-1] = '\0';
4631               listing_source_file (start);
4632               input_line_pointer[-1] = c;
4633             }
4634 #endif
4635 #endif
4636
4637           break;
4638         case '<':
4639           input_line_pointer++;
4640           c = get_single_number ();
4641           FRAG_APPEND_1_CHAR (c);
4642           if (*input_line_pointer != '>')
4643             {
4644               as_bad (_("expected <nn>"));
4645             }
4646           input_line_pointer++;
4647           break;
4648         case ',':
4649           input_line_pointer++;
4650           break;
4651         }
4652       SKIP_WHITESPACE ();
4653       c = *input_line_pointer;
4654     }
4655
4656   demand_empty_rest_of_line ();
4657 }                               /* stringer() */
4658 \f
4659 /* FIXME-SOMEDAY: I had trouble here on characters with the
4660     high bits set.  We'll probably also have trouble with
4661     multibyte chars, wide chars, etc.  Also be careful about
4662     returning values bigger than 1 byte.  xoxorich.  */
4663
4664 unsigned int
4665 next_char_of_string (void)
4666 {
4667   register unsigned int c;
4668
4669   c = *input_line_pointer++ & CHAR_MASK;
4670   switch (c)
4671     {
4672     case '\"':
4673       c = NOT_A_CHAR;
4674       break;
4675
4676     case '\n':
4677       as_warn (_("unterminated string; newline inserted"));
4678       bump_line_counters ();
4679       break;
4680
4681 #ifndef NO_STRING_ESCAPES
4682     case '\\':
4683       switch (c = *input_line_pointer++)
4684         {
4685         case 'b':
4686           c = '\b';
4687           break;
4688
4689         case 'f':
4690           c = '\f';
4691           break;
4692
4693         case 'n':
4694           c = '\n';
4695           break;
4696
4697         case 'r':
4698           c = '\r';
4699           break;
4700
4701         case 't':
4702           c = '\t';
4703           break;
4704
4705         case 'v':
4706           c = '\013';
4707           break;
4708
4709         case '\\':
4710         case '"':
4711           break;                /* As itself.  */
4712
4713         case '0':
4714         case '1':
4715         case '2':
4716         case '3':
4717         case '4':
4718         case '5':
4719         case '6':
4720         case '7':
4721         case '8':
4722         case '9':
4723           {
4724             long number;
4725             int i;
4726
4727             for (i = 0, number = 0;
4728                  ISDIGIT (c) && i < 3;
4729                  c = *input_line_pointer++, i++)
4730               {
4731                 number = number * 8 + c - '0';
4732               }
4733
4734             c = number & 0xff;
4735           }
4736           --input_line_pointer;
4737           break;
4738
4739         case 'x':
4740         case 'X':
4741           {
4742             long number;
4743
4744             number = 0;
4745             c = *input_line_pointer++;
4746             while (ISXDIGIT (c))
4747               {
4748                 if (ISDIGIT (c))
4749                   number = number * 16 + c - '0';
4750                 else if (ISUPPER (c))
4751                   number = number * 16 + c - 'A' + 10;
4752                 else
4753                   number = number * 16 + c - 'a' + 10;
4754                 c = *input_line_pointer++;
4755               }
4756             c = number & 0xff;
4757             --input_line_pointer;
4758           }
4759           break;
4760
4761         case '\n':
4762           /* To be compatible with BSD 4.2 as: give the luser a linefeed!!  */
4763           as_warn (_("unterminated string; newline inserted"));
4764           c = '\n';
4765           bump_line_counters ();
4766           break;
4767
4768         default:
4769
4770 #ifdef ONLY_STANDARD_ESCAPES
4771           as_bad (_("bad escaped character in string"));
4772           c = '?';
4773 #endif /* ONLY_STANDARD_ESCAPES */
4774
4775           break;
4776         }
4777       break;
4778 #endif /* ! defined (NO_STRING_ESCAPES) */
4779
4780     default:
4781       break;
4782     }
4783   return (c);
4784 }
4785 \f
4786 static segT
4787 get_segmented_expression (register expressionS *expP)
4788 {
4789   register segT retval;
4790
4791   retval = expression (expP);
4792   if (expP->X_op == O_illegal
4793       || expP->X_op == O_absent
4794       || expP->X_op == O_big)
4795     {
4796       as_bad (_("expected address expression"));
4797       expP->X_op = O_constant;
4798       expP->X_add_number = 0;
4799       retval = absolute_section;
4800     }
4801   return retval;
4802 }
4803
4804 static segT
4805 get_known_segmented_expression (register expressionS *expP)
4806 {
4807   register segT retval;
4808
4809   if ((retval = get_segmented_expression (expP)) == undefined_section)
4810     {
4811       /* There is no easy way to extract the undefined symbol from the
4812          expression.  */
4813       if (expP->X_add_symbol != NULL
4814           && S_GET_SEGMENT (expP->X_add_symbol) != expr_section)
4815         as_warn (_("symbol \"%s\" undefined; zero assumed"),
4816                  S_GET_NAME (expP->X_add_symbol));
4817       else
4818         as_warn (_("some symbol undefined; zero assumed"));
4819       retval = absolute_section;
4820       expP->X_op = O_constant;
4821       expP->X_add_number = 0;
4822     }
4823   know (retval == absolute_section || SEG_NORMAL (retval));
4824   return (retval);
4825 }
4826
4827 offsetT
4828 get_absolute_expr (expressionS *exp)
4829 {
4830   expression (exp);
4831   if (exp->X_op != O_constant)
4832     {
4833       if (exp->X_op != O_absent)
4834         as_bad (_("bad or irreducible absolute expression"));
4835       exp->X_add_number = 0;
4836     }
4837   return exp->X_add_number;
4838 }
4839
4840 offsetT
4841 get_absolute_expression (void)
4842 {
4843   expressionS exp;
4844
4845   return get_absolute_expr (&exp);
4846 }
4847
4848 char                            /* Return terminator.  */
4849 get_absolute_expression_and_terminator (long *val_pointer /* Return value of expression.  */)
4850 {
4851   /* FIXME: val_pointer should probably be offsetT *.  */
4852   *val_pointer = (long) get_absolute_expression ();
4853   return (*input_line_pointer++);
4854 }
4855 \f
4856 /* Like demand_copy_string, but return NULL if the string contains any '\0's.
4857    Give a warning if that happens.  */
4858
4859 char *
4860 demand_copy_C_string (int *len_pointer)
4861 {
4862   register char *s;
4863
4864   if ((s = demand_copy_string (len_pointer)) != 0)
4865     {
4866       register int len;
4867
4868       for (len = *len_pointer; len > 0; len--)
4869         {
4870           if (*s == 0)
4871             {
4872               s = 0;
4873               len = 1;
4874               *len_pointer = 0;
4875               as_bad (_("this string may not contain \'\\0\'"));
4876             }
4877         }
4878     }
4879
4880   return s;
4881 }
4882 \f
4883 /* Demand string, but return a safe (=private) copy of the string.
4884    Return NULL if we can't read a string here.  */
4885
4886 char *
4887 demand_copy_string (int *lenP)
4888 {
4889   register unsigned int c;
4890   register int len;
4891   char *retval;
4892
4893   len = 0;
4894   SKIP_WHITESPACE ();
4895   if (*input_line_pointer == '\"')
4896     {
4897       input_line_pointer++;     /* Skip opening quote.  */
4898
4899       while (is_a_char (c = next_char_of_string ()))
4900         {
4901           obstack_1grow (&notes, c);
4902           len++;
4903         }
4904       /* JF this next line is so demand_copy_C_string will return a
4905          null terminated string.  */
4906       obstack_1grow (&notes, '\0');
4907       retval = obstack_finish (&notes);
4908     }
4909   else
4910     {
4911       as_bad (_("missing string"));
4912       retval = NULL;
4913       ignore_rest_of_line ();
4914     }
4915   *lenP = len;
4916   return (retval);
4917 }
4918 \f
4919 /* In:  Input_line_pointer->next character.
4920
4921    Do:  Skip input_line_pointer over all whitespace.
4922
4923    Out: 1 if input_line_pointer->end-of-line.  */
4924
4925 int
4926 is_it_end_of_statement (void)
4927 {
4928   SKIP_WHITESPACE ();
4929   return (is_end_of_line[(unsigned char) *input_line_pointer]);
4930 }
4931
4932 void
4933 equals (char *sym_name, int reassign)
4934 {
4935   char *stop = NULL;
4936   char stopc;
4937
4938   input_line_pointer++;
4939   if (*input_line_pointer == '=')
4940     input_line_pointer++;
4941
4942   while (*input_line_pointer == ' ' || *input_line_pointer == '\t')
4943     input_line_pointer++;
4944
4945   if (flag_mri)
4946     stop = mri_comment_field (&stopc);
4947
4948   assign_symbol (sym_name, !reassign);
4949
4950   if (flag_mri)
4951     {
4952       demand_empty_rest_of_line ();
4953       mri_comment_end (stop, stopc);
4954     }
4955 }
4956
4957 /* .incbin -- include a file verbatim at the current location.  */
4958
4959 void
4960 s_incbin (int x ATTRIBUTE_UNUSED)
4961 {
4962   FILE * binfile;
4963   char * path;
4964   char * filename;
4965   char * binfrag;
4966   long   skip = 0;
4967   long   count = 0;
4968   long   bytes;
4969   int    len;
4970
4971 #ifdef md_flush_pending_output
4972   md_flush_pending_output ();
4973 #endif
4974
4975   SKIP_WHITESPACE ();
4976   filename = demand_copy_string (& len);
4977   if (filename == NULL)
4978     return;
4979
4980   SKIP_WHITESPACE ();
4981
4982   /* Look for optional skip and count.  */
4983   if (* input_line_pointer == ',')
4984     {
4985       ++ input_line_pointer;
4986       skip = get_absolute_expression ();
4987
4988       SKIP_WHITESPACE ();
4989
4990       if (* input_line_pointer == ',')
4991         {
4992           ++ input_line_pointer;
4993
4994           count = get_absolute_expression ();
4995           if (count == 0)
4996             as_warn (_(".incbin count zero, ignoring `%s'"), filename);
4997
4998           SKIP_WHITESPACE ();
4999         }
5000     }
5001
5002   demand_empty_rest_of_line ();
5003
5004   /* Try opening absolute path first, then try include dirs.  */
5005   binfile = fopen (filename, FOPEN_RB);
5006   if (binfile == NULL)
5007     {
5008       int i;
5009
5010       path = xmalloc ((unsigned long) len + include_dir_maxlen + 5);
5011
5012       for (i = 0; i < include_dir_count; i++)
5013         {
5014           sprintf (path, "%s/%s", include_dirs[i], filename);
5015
5016           binfile = fopen (path, FOPEN_RB);
5017           if (binfile != NULL)
5018             break;
5019         }
5020
5021       if (binfile == NULL)
5022         as_bad (_("file not found: %s"), filename);
5023     }
5024   else
5025     path = xstrdup (filename);
5026
5027   if (binfile)
5028     {
5029       long   file_len;
5030
5031       register_dependency (path);
5032
5033       /* Compute the length of the file.  */
5034       if (fseek (binfile, 0, SEEK_END) != 0)
5035         {
5036           as_bad (_("seek to end of .incbin file failed `%s'"), path);
5037           goto done;
5038         }
5039       file_len = ftell (binfile);
5040
5041       /* If a count was not specified use the remainder of the file.  */
5042       if (count == 0)
5043         count = file_len - skip;
5044
5045       if (skip < 0 || count < 0 || file_len < 0 || skip + count > file_len)
5046         {
5047           as_bad (_("skip (%ld) or count (%ld) invalid for file size (%ld)"),
5048                   skip, count, file_len);
5049           goto done;
5050         }
5051
5052       if (fseek (binfile, skip, SEEK_SET) != 0)
5053         {
5054           as_bad (_("could not skip to %ld in file `%s'"), skip, path);
5055           goto done;
5056         }
5057
5058       /* Allocate frag space and store file contents in it.  */
5059       binfrag = frag_more (count);
5060
5061       bytes = fread (binfrag, 1, count, binfile);
5062       if (bytes < count)
5063         as_warn (_("truncated file `%s', %ld of %ld bytes read"),
5064                  path, bytes, count);
5065     }
5066 done:
5067   if (binfile != NULL)
5068     fclose (binfile);
5069   if (path)
5070     free (path);
5071 }
5072
5073 /* .include -- include a file at this point.  */
5074
5075 void
5076 s_include (int arg ATTRIBUTE_UNUSED)
5077 {
5078   char *filename;
5079   int i;
5080   FILE *try;
5081   char *path;
5082
5083   if (!flag_m68k_mri)
5084     {
5085       filename = demand_copy_string (&i);
5086       if (filename == NULL)
5087         {
5088           /* demand_copy_string has already printed an error and
5089              called ignore_rest_of_line.  */
5090           return;
5091         }
5092     }
5093   else
5094     {
5095       SKIP_WHITESPACE ();
5096       i = 0;
5097       while (!is_end_of_line[(unsigned char) *input_line_pointer]
5098              && *input_line_pointer != ' '
5099              && *input_line_pointer != '\t')
5100         {
5101           obstack_1grow (&notes, *input_line_pointer);
5102           ++input_line_pointer;
5103           ++i;
5104         }
5105
5106       obstack_1grow (&notes, '\0');
5107       filename = obstack_finish (&notes);
5108       while (!is_end_of_line[(unsigned char) *input_line_pointer])
5109         ++input_line_pointer;
5110     }
5111
5112   demand_empty_rest_of_line ();
5113   path = xmalloc ((unsigned long) i + include_dir_maxlen + 5 /* slop */ );
5114
5115   for (i = 0; i < include_dir_count; i++)
5116     {
5117       strcpy (path, include_dirs[i]);
5118       strcat (path, "/");
5119       strcat (path, filename);
5120       if (0 != (try = fopen (path, FOPEN_RT)))
5121         {
5122           fclose (try);
5123           goto gotit;
5124         }
5125     }
5126
5127   free (path);
5128   path = filename;
5129 gotit:
5130   /* malloc Storage leak when file is found on path.  FIXME-SOMEDAY.  */
5131   register_dependency (path);
5132   input_scrub_insert_file (path);
5133 }
5134
5135 void
5136 add_include_dir (char *path)
5137 {
5138   int i;
5139
5140   if (include_dir_count == 0)
5141     {
5142       include_dirs = (char **) xmalloc (2 * sizeof (*include_dirs));
5143       include_dirs[0] = ".";    /* Current dir.  */
5144       include_dir_count = 2;
5145     }
5146   else
5147     {
5148       include_dir_count++;
5149       include_dirs =
5150         (char **) realloc (include_dirs,
5151                            include_dir_count * sizeof (*include_dirs));
5152     }
5153
5154   include_dirs[include_dir_count - 1] = path;   /* New one.  */
5155
5156   i = strlen (path);
5157   if (i > include_dir_maxlen)
5158     include_dir_maxlen = i;
5159 }
5160 \f
5161 /* Output debugging information to denote the source file.  */
5162
5163 static void
5164 generate_file_debug (void)
5165 {
5166   if (debug_type == DEBUG_STABS)
5167     stabs_generate_asm_file ();
5168 }
5169
5170 /* Output line number debugging information for the current source line.  */
5171
5172 void
5173 generate_lineno_debug (void)
5174 {
5175   switch (debug_type)
5176     {
5177     case DEBUG_UNSPECIFIED:
5178     case DEBUG_NONE:
5179     case DEBUG_DWARF:
5180       break;
5181     case DEBUG_STABS:
5182       stabs_generate_asm_lineno ();
5183       break;
5184     case DEBUG_ECOFF:
5185       ecoff_generate_asm_lineno ();
5186       break;
5187     case DEBUG_DWARF2:
5188       /* ??? We could here indicate to dwarf2dbg.c that something
5189          has changed.  However, since there is additional backend
5190          support that is required (calling dwarf2_emit_insn), we
5191          let dwarf2dbg.c call as_where on its own.  */
5192       break;
5193     }
5194 }
5195
5196 /* Output debugging information to mark a function entry point or end point.
5197    END_P is zero for .func, and non-zero for .endfunc.  */
5198
5199 void
5200 s_func (int end_p)
5201 {
5202   do_s_func (end_p, NULL);
5203 }
5204
5205 /* Subroutine of s_func so targets can choose a different default prefix.
5206    If DEFAULT_PREFIX is NULL, use the target's "leading char".  */
5207
5208 void
5209 do_s_func (int end_p, const char *default_prefix)
5210 {
5211   /* Record the current function so that we can issue an error message for
5212      misplaced .func,.endfunc, and also so that .endfunc needs no
5213      arguments.  */
5214   static char *current_name;
5215   static char *current_label;
5216
5217   if (end_p)
5218     {
5219       if (current_name == NULL)
5220         {
5221           as_bad (_("missing .func"));
5222           ignore_rest_of_line ();
5223           return;
5224         }
5225
5226       if (debug_type == DEBUG_STABS)
5227         stabs_generate_asm_endfunc (current_name, current_label);
5228
5229       current_name = current_label = NULL;
5230     }
5231   else /* ! end_p */
5232     {
5233       char *name, *label;
5234       char delim1, delim2;
5235
5236       if (current_name != NULL)
5237         {
5238           as_bad (_(".endfunc missing for previous .func"));
5239           ignore_rest_of_line ();
5240           return;
5241         }
5242
5243       name = input_line_pointer;
5244       delim1 = get_symbol_end ();
5245       name = xstrdup (name);
5246       *input_line_pointer = delim1;
5247       SKIP_WHITESPACE ();
5248       if (*input_line_pointer != ',')
5249         {
5250           if (default_prefix)
5251             asprintf (&label, "%s%s", default_prefix, name);
5252           else
5253             {
5254               char leading_char = 0;
5255 #ifdef BFD_ASSEMBLER
5256               leading_char = bfd_get_symbol_leading_char (stdoutput);
5257 #endif
5258               /* Missing entry point, use function's name with the leading
5259                  char prepended.  */
5260               if (leading_char)
5261                 asprintf (&label, "%c%s", leading_char, name);
5262               else
5263                 label = name;
5264             }
5265         }
5266       else
5267         {
5268           ++input_line_pointer;
5269           SKIP_WHITESPACE ();
5270           label = input_line_pointer;
5271           delim2 = get_symbol_end ();
5272           label = xstrdup (label);
5273           *input_line_pointer = delim2;
5274         }
5275
5276       if (debug_type == DEBUG_STABS)
5277         stabs_generate_asm_func (name, label);
5278
5279       current_name = name;
5280       current_label = label;
5281     }
5282
5283   demand_empty_rest_of_line ();
5284 }
5285 \f
5286 void
5287 s_ignore (int arg ATTRIBUTE_UNUSED)
5288 {
5289   while (!is_end_of_line[(unsigned char) *input_line_pointer])
5290     {
5291       ++input_line_pointer;
5292     }
5293   ++input_line_pointer;
5294 }
5295
5296 void
5297 read_print_statistics (FILE *file)
5298 {
5299   hash_print_statistics (file, "pseudo-op table", po_hash);
5300 }
5301
5302 /* Inserts the given line into the input stream.
5303
5304    This call avoids macro/conditionals nesting checking, since the contents of
5305    the line are assumed to replace the contents of a line already scanned.
5306
5307    An appropriate use of this function would be substitution of input lines when
5308    called by md_start_line_hook().  The given line is assumed to already be
5309    properly scrubbed.  */
5310
5311 void
5312 input_scrub_insert_line (const char *line)
5313 {
5314   sb newline;
5315   sb_new (&newline);
5316   sb_add_string (&newline, line);
5317   input_scrub_include_sb (&newline, input_line_pointer, 0);
5318   sb_kill (&newline);
5319   buffer_limit = input_scrub_next_buffer (&input_line_pointer);
5320 }
5321
5322 /* Insert a file into the input stream; the path must resolve to an actual
5323    file; no include path searching or dependency registering is performed.  */
5324
5325 void
5326 input_scrub_insert_file (char *path)
5327 {
5328   input_scrub_include_file (path, input_line_pointer);
5329   buffer_limit = input_scrub_next_buffer (&input_line_pointer);
5330 }