* emulparams/hppa64linux.sh: Define PLT_BEFORE_GOT.
[binutils.git] / gas / read.c
blob93e3ec41b171154d8db1fdcd52281237ec487eff
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 Free Software Foundation, Inc.
5 This file is part of GAS, the GNU Assembler.
7 GAS is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
12 GAS is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GAS; see the file COPYING. If not, write to the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
20 02111-1307, USA. */
22 #if 0
23 /* If your chars aren't 8 bits, you will change this a bit.
24 But then, GNU isn't spozed to run on your machine anyway.
25 (RMS is so shortsighted sometimes.) */
26 #define MASK_CHAR (0xFF)
27 #else
28 #define MASK_CHAR ((int)(unsigned char) -1)
29 #endif
31 /* This is the largest known floating point format (for now). It will
32 grow when we do 4361 style flonums. */
33 #define MAXIMUM_NUMBER_OF_CHARS_FOR_FLOAT (16)
35 /* Routines that read assembler source text to build spaghetti in memory.
36 Another group of these functions is in the expr.c module. */
38 #include "as.h"
39 #include "safe-ctype.h"
40 #include "subsegs.h"
41 #include "sb.h"
42 #include "macro.h"
43 #include "obstack.h"
44 #include "listing.h"
45 #include "ecoff.h"
46 #include "dw2gencfi.h"
48 #ifndef TC_START_LABEL
49 #define TC_START_LABEL(x,y) (x == ':')
50 #endif
52 /* Set by the object-format or the target. */
53 #ifndef TC_IMPLICIT_LCOMM_ALIGNMENT
54 #define TC_IMPLICIT_LCOMM_ALIGNMENT(SIZE, P2VAR) \
55 do \
56 { \
57 if ((SIZE) >= 8) \
58 (P2VAR) = 3; \
59 else if ((SIZE) >= 4) \
60 (P2VAR) = 2; \
61 else if ((SIZE) >= 2) \
62 (P2VAR) = 1; \
63 else \
64 (P2VAR) = 0; \
65 } \
66 while (0)
67 #endif
69 char *input_line_pointer; /*->next char of source file to parse. */
71 #if BITS_PER_CHAR != 8
72 /* The following table is indexed by[(char)] and will break if
73 a char does not have exactly 256 states (hopefully 0:255!)! */
74 die horribly;
75 #endif
77 #ifndef LEX_AT
78 /* The m88k unfortunately uses @ as a label beginner. */
79 #define LEX_AT 0
80 #endif
82 #ifndef LEX_BR
83 /* The RS/6000 assembler uses {,},[,] as parts of symbol names. */
84 #define LEX_BR 0
85 #endif
87 #ifndef LEX_PCT
88 /* The Delta 68k assembler permits % inside label names. */
89 #define LEX_PCT 0
90 #endif
92 #ifndef LEX_QM
93 /* The PowerPC Windows NT assemblers permits ? inside label names. */
94 #define LEX_QM 0
95 #endif
97 #ifndef LEX_HASH
98 /* The IA-64 assembler uses # as a suffix designating a symbol. We include
99 it in the symbol and strip it out in tc_canonicalize_symbol_name. */
100 #define LEX_HASH 0
101 #endif
103 #ifndef LEX_DOLLAR
104 /* The a29k assembler does not permits labels to start with $. */
105 #define LEX_DOLLAR 3
106 #endif
108 #ifndef LEX_TILDE
109 /* The Delta 68k assembler permits ~ at start of label names. */
110 #define LEX_TILDE 0
111 #endif
113 /* Used by is_... macros. our ctype[]. */
114 char lex_type[256] = {
115 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* @ABCDEFGHIJKLMNO */
116 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* PQRSTUVWXYZ[\]^_ */
117 0, 0, 0, LEX_HASH, LEX_DOLLAR, LEX_PCT, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, /* _!"#$%&'()*+,-./ */
118 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, LEX_QM, /* 0123456789:;<=>? */
119 LEX_AT, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, /* @ABCDEFGHIJKLMNO */
120 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, LEX_BR, 0, LEX_BR, 0, 3, /* PQRSTUVWXYZ[\]^_ */
121 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, /* `abcdefghijklmno */
122 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, LEX_BR, 0, LEX_BR, LEX_TILDE, 0, /* pqrstuvwxyz{|}~. */
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 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
129 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
130 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3
133 /* In: a character.
134 Out: 1 if this character ends a line. */
135 char is_end_of_line[256] = {
136 #ifdef CR_EOL
137 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, /* @abcdefghijklmno */
138 #else
139 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, /* @abcdefghijklmno */
140 #endif
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, /* 0123456789:;<=>? */
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 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* */
154 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* */
155 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 /* */
158 #ifndef TC_CASE_SENSITIVE
159 char original_case_string[128];
160 #endif
162 /* Functions private to this file. */
164 static char *buffer; /* 1st char of each buffer of lines is here. */
165 static char *buffer_limit; /*->1 + last char in buffer. */
167 /* TARGET_BYTES_BIG_ENDIAN is required to be defined to either 0 or 1
168 in the tc-<CPU>.h file. See the "Porting GAS" section of the
169 internals manual. */
170 int target_big_endian = TARGET_BYTES_BIG_ENDIAN;
172 /* Variables for handling include file directory table. */
174 /* Table of pointers to directories to search for .include's. */
175 char **include_dirs;
177 /* How many are in the table. */
178 int include_dir_count;
180 /* Length of longest in table. */
181 int include_dir_maxlen = 1;
183 #ifndef WORKING_DOT_WORD
184 struct broken_word *broken_words;
185 int new_broken_words;
186 #endif
188 /* The current offset into the absolute section. We don't try to
189 build frags in the absolute section, since no data can be stored
190 there. We just keep track of the current offset. */
191 addressT abs_section_offset;
193 /* If this line had an MRI style label, it is stored in this variable.
194 This is used by some of the MRI pseudo-ops. */
195 symbolS *line_label;
197 /* This global variable is used to support MRI common sections. We
198 translate such sections into a common symbol. This variable is
199 non-NULL when we are in an MRI common section. */
200 symbolS *mri_common_symbol;
202 /* In MRI mode, after a dc.b pseudo-op with an odd number of bytes, we
203 need to align to an even byte boundary unless the next pseudo-op is
204 dc.b, ds.b, or dcb.b. This variable is set to 1 if an alignment
205 may be needed. */
206 static int mri_pending_align;
208 #ifndef NO_LISTING
209 #ifdef OBJ_ELF
210 /* This variable is set to be non-zero if the next string we see might
211 be the name of the source file in DWARF debugging information. See
212 the comment in emit_expr for the format we look for. */
213 static int dwarf_file_string;
214 #endif
215 #endif
217 static void do_align (int, char *, int, int);
218 static void s_align (int, int);
219 static int hex_float (int, char *);
220 static segT get_known_segmented_expression (expressionS * expP);
221 static void pobegin (void);
222 static int get_line_sb (sb *);
223 static void generate_file_debug (void);
225 void
226 read_begin (void)
228 const char *p;
230 pobegin ();
231 obj_read_begin_hook ();
233 /* Something close -- but not too close -- to a multiple of 1024.
234 The debugging malloc I'm using has 24 bytes of overhead. */
235 obstack_begin (&notes, chunksize);
236 obstack_begin (&cond_obstack, chunksize);
238 /* Use machine dependent syntax. */
239 for (p = line_separator_chars; *p; p++)
240 is_end_of_line[(unsigned char) *p] = 1;
241 /* Use more. FIXME-SOMEDAY. */
243 if (flag_mri)
244 lex_type['?'] = 3;
247 /* Set up pseudo-op tables. */
249 static struct hash_control *po_hash;
251 static const pseudo_typeS potable[] = {
252 {"abort", s_abort, 0},
253 {"align", s_align_ptwo, 0},
254 {"ascii", stringer, 0},
255 {"asciz", stringer, 1},
256 {"balign", s_align_bytes, 0},
257 {"balignw", s_align_bytes, -2},
258 {"balignl", s_align_bytes, -4},
259 /* block */
260 {"byte", cons, 1},
261 {"comm", s_comm, 0},
262 {"common", s_mri_common, 0},
263 {"common.s", s_mri_common, 1},
264 {"data", s_data, 0},
265 {"dc", cons, 2},
266 {"dc.b", cons, 1},
267 {"dc.d", float_cons, 'd'},
268 {"dc.l", cons, 4},
269 {"dc.s", float_cons, 'f'},
270 {"dc.w", cons, 2},
271 {"dc.x", float_cons, 'x'},
272 {"dcb", s_space, 2},
273 {"dcb.b", s_space, 1},
274 {"dcb.d", s_float_space, 'd'},
275 {"dcb.l", s_space, 4},
276 {"dcb.s", s_float_space, 'f'},
277 {"dcb.w", s_space, 2},
278 {"dcb.x", s_float_space, 'x'},
279 {"ds", s_space, 2},
280 {"ds.b", s_space, 1},
281 {"ds.d", s_space, 8},
282 {"ds.l", s_space, 4},
283 {"ds.p", s_space, 12},
284 {"ds.s", s_space, 4},
285 {"ds.w", s_space, 2},
286 {"ds.x", s_space, 12},
287 {"debug", s_ignore, 0},
288 #ifdef S_SET_DESC
289 {"desc", s_desc, 0},
290 #endif
291 /* dim */
292 {"double", float_cons, 'd'},
293 /* dsect */
294 {"eject", listing_eject, 0}, /* Formfeed listing. */
295 {"else", s_else, 0},
296 {"elsec", s_else, 0},
297 {"elseif", s_elseif, (int) O_ne},
298 {"end", s_end, 0},
299 {"endc", s_endif, 0},
300 {"endfunc", s_func, 1},
301 {"endif", s_endif, 0},
302 {"endr", s_bad_endr, 0},
303 /* endef */
304 {"equ", s_set, 0},
305 {"equiv", s_set, 1},
306 {"err", s_err, 0},
307 {"exitm", s_mexit, 0},
308 /* extend */
309 {"extern", s_ignore, 0}, /* We treat all undef as ext. */
310 {"appfile", s_app_file, 1},
311 {"appline", s_app_line, 0},
312 {"fail", s_fail, 0},
313 {"file", s_app_file, 0},
314 {"fill", s_fill, 0},
315 {"float", float_cons, 'f'},
316 {"format", s_ignore, 0},
317 {"func", s_func, 0},
318 {"global", s_globl, 0},
319 {"globl", s_globl, 0},
320 {"hword", cons, 2},
321 {"if", s_if, (int) O_ne},
322 {"ifc", s_ifc, 0},
323 {"ifdef", s_ifdef, 0},
324 {"ifeq", s_if, (int) O_eq},
325 {"ifeqs", s_ifeqs, 0},
326 {"ifge", s_if, (int) O_ge},
327 {"ifgt", s_if, (int) O_gt},
328 {"ifle", s_if, (int) O_le},
329 {"iflt", s_if, (int) O_lt},
330 {"ifnc", s_ifc, 1},
331 {"ifndef", s_ifdef, 1},
332 {"ifne", s_if, (int) O_ne},
333 {"ifnes", s_ifeqs, 1},
334 {"ifnotdef", s_ifdef, 1},
335 {"incbin", s_incbin, 0},
336 {"include", s_include, 0},
337 {"int", cons, 4},
338 {"irp", s_irp, 0},
339 {"irep", s_irp, 0},
340 {"irpc", s_irp, 1},
341 {"irepc", s_irp, 1},
342 {"lcomm", s_lcomm, 0},
343 {"lflags", listing_flags, 0}, /* Listing flags. */
344 {"linkonce", s_linkonce, 0},
345 {"list", listing_list, 1}, /* Turn listing on. */
346 {"llen", listing_psize, 1},
347 {"long", cons, 4},
348 {"lsym", s_lsym, 0},
349 {"macro", s_macro, 0},
350 {"mexit", s_mexit, 0},
351 {"mri", s_mri, 0},
352 {".mri", s_mri, 0}, /* Special case so .mri works in MRI mode. */
353 {"name", s_ignore, 0},
354 {"noformat", s_ignore, 0},
355 {"nolist", listing_list, 0}, /* Turn listing off. */
356 {"nopage", listing_nopage, 0},
357 {"octa", cons, 16},
358 {"offset", s_struct, 0},
359 {"org", s_org, 0},
360 {"p2align", s_align_ptwo, 0},
361 {"p2alignw", s_align_ptwo, -2},
362 {"p2alignl", s_align_ptwo, -4},
363 {"page", listing_eject, 0},
364 {"plen", listing_psize, 0},
365 {"print", s_print, 0},
366 {"psize", listing_psize, 0}, /* Set paper size. */
367 {"purgem", s_purgem, 0},
368 {"quad", cons, 8},
369 {"rep", s_rept, 0},
370 {"rept", s_rept, 0},
371 {"rva", s_rva, 4},
372 {"sbttl", listing_title, 1}, /* Subtitle of listing. */
373 /* scl */
374 /* sect */
375 {"set", s_set, 0},
376 {"short", cons, 2},
377 {"single", float_cons, 'f'},
378 /* size */
379 {"space", s_space, 0},
380 {"skip", s_space, 0},
381 {"sleb128", s_leb128, 1},
382 {"spc", s_ignore, 0},
383 {"stabd", s_stab, 'd'},
384 {"stabn", s_stab, 'n'},
385 {"stabs", s_stab, 's'},
386 {"string", stringer, 1},
387 {"struct", s_struct, 0},
388 /* tag */
389 {"text", s_text, 0},
391 /* This is for gcc to use. It's only just been added (2/94), so gcc
392 won't be able to use it for a while -- probably a year or more.
393 But once this has been released, check with gcc maintainers
394 before deleting it or even changing the spelling. */
395 {"this_GCC_requires_the_GNU_assembler", s_ignore, 0},
396 /* If we're folding case -- done for some targets, not necessarily
397 all -- the above string in an input file will be converted to
398 this one. Match it either way... */
399 {"this_gcc_requires_the_gnu_assembler", s_ignore, 0},
401 {"title", listing_title, 0}, /* Listing title. */
402 {"ttl", listing_title, 0},
403 /* type */
404 {"uleb128", s_leb128, 0},
405 /* use */
406 /* val */
407 {"xcom", s_comm, 0},
408 {"xdef", s_globl, 0},
409 {"xref", s_ignore, 0},
410 {"xstabs", s_xstab, 's'},
411 {"word", cons, 2},
412 {"zero", s_space, 0},
413 {NULL, NULL, 0} /* End sentinel. */
416 static int pop_override_ok = 0;
417 static const char *pop_table_name;
419 void
420 pop_insert (const pseudo_typeS *table)
422 const char *errtxt;
423 const pseudo_typeS *pop;
424 for (pop = table; pop->poc_name; pop++)
426 errtxt = hash_insert (po_hash, pop->poc_name, (char *) pop);
427 if (errtxt && (!pop_override_ok || strcmp (errtxt, "exists")))
428 as_fatal (_("error constructing %s pseudo-op table: %s"), pop_table_name,
429 errtxt);
433 #ifndef md_pop_insert
434 #define md_pop_insert() pop_insert(md_pseudo_table)
435 #endif
437 #ifndef obj_pop_insert
438 #define obj_pop_insert() pop_insert(obj_pseudo_table)
439 #endif
441 #ifndef cfi_pop_insert
442 #define cfi_pop_insert() pop_insert(cfi_pseudo_table)
443 #endif
445 static void
446 pobegin (void)
448 po_hash = hash_new ();
450 /* Do the target-specific pseudo ops. */
451 pop_table_name = "md";
452 md_pop_insert ();
454 /* Now object specific. Skip any that were in the target table. */
455 pop_table_name = "obj";
456 pop_override_ok = 1;
457 obj_pop_insert ();
459 /* Now portable ones. Skip any that we've seen already. */
460 pop_table_name = "standard";
461 pop_insert (potable);
463 #ifdef TARGET_USE_CFIPOP
464 pop_table_name = "cfi";
465 pop_override_ok = 1;
466 cfi_pop_insert ();
467 #endif
470 #define HANDLE_CONDITIONAL_ASSEMBLY() \
471 if (ignore_input ()) \
473 while (!is_end_of_line[(unsigned char) *input_line_pointer++]) \
474 if (input_line_pointer == buffer_limit) \
475 break; \
476 continue; \
479 /* This function is used when scrubbing the characters between #APP
480 and #NO_APP. */
482 static char *scrub_string;
483 static char *scrub_string_end;
485 static int
486 scrub_from_string (char *buf, int buflen)
488 int copy;
490 copy = scrub_string_end - scrub_string;
491 if (copy > buflen)
492 copy = buflen;
493 memcpy (buf, scrub_string, copy);
494 scrub_string += copy;
495 return copy;
498 /* We read the file, putting things into a web that represents what we
499 have been reading. */
500 void
501 read_a_source_file (char *name)
503 register char c;
504 register char *s; /* String of symbol, '\0' appended. */
505 register int temp;
506 pseudo_typeS *pop;
508 #ifdef WARN_COMMENTS
509 found_comment = 0;
510 #endif
512 buffer = input_scrub_new_file (name);
514 listing_file (name);
515 listing_newline (NULL);
516 register_dependency (name);
518 /* Generate debugging information before we've read anything in to denote
519 this file as the "main" source file and not a subordinate one
520 (e.g. N_SO vs N_SOL in stabs). */
521 generate_file_debug ();
523 while ((buffer_limit = input_scrub_next_buffer (&input_line_pointer)) != 0)
524 { /* We have another line to parse. */
525 know (buffer_limit[-1] == '\n'); /* Must have a sentinel. */
527 while (input_line_pointer < buffer_limit)
529 /* We have more of this buffer to parse. */
531 /* We now have input_line_pointer->1st char of next line.
532 If input_line_pointer [-1] == '\n' then we just
533 scanned another line: so bump line counters. */
534 if (is_end_of_line[(unsigned char) input_line_pointer[-1]])
536 #ifdef md_start_line_hook
537 md_start_line_hook ();
538 #endif
539 if (input_line_pointer[-1] == '\n')
540 bump_line_counters ();
542 line_label = NULL;
544 if (LABELS_WITHOUT_COLONS || flag_m68k_mri)
546 /* Text at the start of a line must be a label, we
547 run down and stick a colon in. */
548 if (is_name_beginner (*input_line_pointer))
550 char *line_start = input_line_pointer;
551 char c;
552 int mri_line_macro;
554 LISTING_NEWLINE ();
555 HANDLE_CONDITIONAL_ASSEMBLY ();
557 c = get_symbol_end ();
559 /* In MRI mode, the EQU and MACRO pseudoops must
560 be handled specially. */
561 mri_line_macro = 0;
562 if (flag_m68k_mri)
564 char *rest = input_line_pointer + 1;
566 if (*rest == ':')
567 ++rest;
568 if (*rest == ' ' || *rest == '\t')
569 ++rest;
570 if ((strncasecmp (rest, "EQU", 3) == 0
571 || strncasecmp (rest, "SET", 3) == 0)
572 && (rest[3] == ' ' || rest[3] == '\t'))
574 input_line_pointer = rest + 3;
575 equals (line_start,
576 strncasecmp (rest, "SET", 3) == 0);
577 continue;
579 if (strncasecmp (rest, "MACRO", 5) == 0
580 && (rest[5] == ' '
581 || rest[5] == '\t'
582 || is_end_of_line[(unsigned char) rest[5]]))
583 mri_line_macro = 1;
586 /* In MRI mode, we need to handle the MACRO
587 pseudo-op specially: we don't want to put the
588 symbol in the symbol table. */
589 if (!mri_line_macro
590 #ifdef TC_START_LABEL_WITHOUT_COLON
591 && TC_START_LABEL_WITHOUT_COLON(c,
592 input_line_pointer)
593 #endif
595 line_label = colon (line_start);
596 else
597 line_label = symbol_create (line_start,
598 absolute_section,
599 (valueT) 0,
600 &zero_address_frag);
602 *input_line_pointer = c;
603 if (c == ':')
604 input_line_pointer++;
609 /* We are at the beginning of a line, or similar place.
610 We expect a well-formed assembler statement.
611 A "symbol-name:" is a statement.
613 Depending on what compiler is used, the order of these tests
614 may vary to catch most common case 1st.
615 Each test is independent of all other tests at the (top) level.
616 PLEASE make a compiler that doesn't use this assembler.
617 It is crufty to waste a compiler's time encoding things for this
618 assembler, which then wastes more time decoding it.
619 (And communicating via (linear) files is silly!
620 If you must pass stuff, please pass a tree!) */
621 if ((c = *input_line_pointer++) == '\t'
622 || c == ' '
623 || c == '\f'
624 || c == 0)
625 c = *input_line_pointer++;
627 know (c != ' '); /* No further leading whitespace. */
629 #ifndef NO_LISTING
630 /* If listing is on, and we are expanding a macro, then give
631 the listing code the contents of the expanded line. */
632 if (listing)
634 if ((listing & LISTING_MACEXP) && macro_nest > 0)
636 char *copy;
637 int len;
639 /* Find the end of the current expanded macro line. */
640 for (s = input_line_pointer - 1; *s; ++s)
641 if (is_end_of_line[(unsigned char) *s])
642 break;
644 /* Copy it for safe keeping. Also give an indication of
645 how much macro nesting is involved at this point. */
646 len = s - (input_line_pointer - 1);
647 copy = (char *) xmalloc (len + macro_nest + 2);
648 memset (copy, '>', macro_nest);
649 copy[macro_nest] = ' ';
650 memcpy (copy + macro_nest + 1, input_line_pointer - 1, len);
651 copy[macro_nest + 1 + len] = '\0';
653 /* Install the line with the listing facility. */
654 listing_newline (copy);
656 else
657 listing_newline (NULL);
659 #endif
660 /* C is the 1st significant character.
661 Input_line_pointer points after that character. */
662 if (is_name_beginner (c))
664 /* Want user-defined label or pseudo/opcode. */
665 HANDLE_CONDITIONAL_ASSEMBLY ();
667 s = --input_line_pointer;
668 c = get_symbol_end (); /* name's delimiter. */
670 /* C is character after symbol.
671 That character's place in the input line is now '\0'.
672 S points to the beginning of the symbol.
673 [In case of pseudo-op, s->'.'.]
674 Input_line_pointer->'\0' where c was. */
675 if (TC_START_LABEL (c, input_line_pointer))
677 if (flag_m68k_mri)
679 char *rest = input_line_pointer + 1;
681 /* In MRI mode, \tsym: set 0 is permitted. */
682 if (*rest == ':')
683 ++rest;
685 if (*rest == ' ' || *rest == '\t')
686 ++rest;
688 if ((strncasecmp (rest, "EQU", 3) == 0
689 || strncasecmp (rest, "SET", 3) == 0)
690 && (rest[3] == ' ' || rest[3] == '\t'))
692 input_line_pointer = rest + 3;
693 equals (s, 1);
694 continue;
698 line_label = colon (s); /* User-defined label. */
699 /* Put ':' back for error messages' sake. */
700 *input_line_pointer++ = ':';
701 #ifdef tc_check_label
702 tc_check_label (line_label);
703 #endif
704 /* Input_line_pointer->after ':'. */
705 SKIP_WHITESPACE ();
707 else if (c == '='
708 || ((c == ' ' || c == '\t')
709 && input_line_pointer[1] == '='
710 #ifdef TC_EQUAL_IN_INSN
711 && !TC_EQUAL_IN_INSN (c, input_line_pointer)
712 #endif
715 equals (s, 1);
716 demand_empty_rest_of_line ();
718 else
720 /* Expect pseudo-op or machine instruction. */
721 pop = NULL;
723 #ifndef TC_CASE_SENSITIVE
725 char *s2 = s;
727 strncpy (original_case_string, s2, sizeof (original_case_string));
728 original_case_string[sizeof (original_case_string) - 1] = 0;
730 while (*s2)
732 *s2 = TOLOWER (*s2);
733 s2++;
736 #endif
737 if (NO_PSEUDO_DOT || flag_m68k_mri)
739 /* The MRI assembler and the m88k use pseudo-ops
740 without a period. */
741 pop = (pseudo_typeS *) hash_find (po_hash, s);
742 if (pop != NULL && pop->poc_handler == NULL)
743 pop = NULL;
746 if (pop != NULL
747 || (!flag_m68k_mri && *s == '.'))
749 /* PSEUDO - OP.
751 WARNING: c has next char, which may be end-of-line.
752 We lookup the pseudo-op table with s+1 because we
753 already know that the pseudo-op begins with a '.'. */
755 if (pop == NULL)
756 pop = (pseudo_typeS *) hash_find (po_hash, s + 1);
757 if (pop && !pop->poc_handler)
758 pop = NULL;
760 /* In MRI mode, we may need to insert an
761 automatic alignment directive. What a hack
762 this is. */
763 if (mri_pending_align
764 && (pop == NULL
765 || !((pop->poc_handler == cons
766 && pop->poc_val == 1)
767 || (pop->poc_handler == s_space
768 && pop->poc_val == 1)
769 #ifdef tc_conditional_pseudoop
770 || tc_conditional_pseudoop (pop)
771 #endif
772 || pop->poc_handler == s_if
773 || pop->poc_handler == s_ifdef
774 || pop->poc_handler == s_ifc
775 || pop->poc_handler == s_ifeqs
776 || pop->poc_handler == s_else
777 || pop->poc_handler == s_endif
778 || pop->poc_handler == s_globl
779 || pop->poc_handler == s_ignore)))
781 do_align (1, (char *) NULL, 0, 0);
782 mri_pending_align = 0;
784 if (line_label != NULL)
786 symbol_set_frag (line_label, frag_now);
787 S_SET_VALUE (line_label, frag_now_fix ());
791 /* Print the error msg now, while we still can. */
792 if (pop == NULL)
794 as_bad (_("unknown pseudo-op: `%s'"), s);
795 *input_line_pointer = c;
796 s_ignore (0);
797 continue;
800 /* Put it back for error messages etc. */
801 *input_line_pointer = c;
802 /* The following skip of whitespace is compulsory.
803 A well shaped space is sometimes all that separates
804 keyword from operands. */
805 if (c == ' ' || c == '\t')
806 input_line_pointer++;
808 /* Input_line is restored.
809 Input_line_pointer->1st non-blank char
810 after pseudo-operation. */
811 (*pop->poc_handler) (pop->poc_val);
813 /* If that was .end, just get out now. */
814 if (pop->poc_handler == s_end)
815 goto quit;
817 else
819 int inquote = 0;
820 #ifdef QUOTES_IN_INSN
821 int inescape = 0;
822 #endif
824 /* WARNING: c has char, which may be end-of-line. */
825 /* Also: input_line_pointer->`\0` where c was. */
826 *input_line_pointer = c;
827 while (!is_end_of_line[(unsigned char) *input_line_pointer]
828 || inquote
829 #ifdef TC_EOL_IN_INSN
830 || TC_EOL_IN_INSN (input_line_pointer)
831 #endif
834 if (flag_m68k_mri && *input_line_pointer == '\'')
835 inquote = !inquote;
836 #ifdef QUOTES_IN_INSN
837 if (inescape)
838 inescape = 0;
839 else if (*input_line_pointer == '"')
840 inquote = !inquote;
841 else if (*input_line_pointer == '\\')
842 inescape = 1;
843 #endif
844 input_line_pointer++;
847 c = *input_line_pointer;
848 *input_line_pointer = '\0';
850 generate_lineno_debug ();
852 if (macro_defined)
854 sb out;
855 const char *err;
856 macro_entry *macro;
858 if (check_macro (s, &out, &err, &macro))
860 if (err != NULL)
861 as_bad ("%s", err);
862 *input_line_pointer++ = c;
863 input_scrub_include_sb (&out,
864 input_line_pointer, 1);
865 sb_kill (&out);
866 buffer_limit =
867 input_scrub_next_buffer (&input_line_pointer);
868 #ifdef md_macro_info
869 md_macro_info (macro);
870 #endif
871 continue;
875 if (mri_pending_align)
877 do_align (1, (char *) NULL, 0, 0);
878 mri_pending_align = 0;
879 if (line_label != NULL)
881 symbol_set_frag (line_label, frag_now);
882 S_SET_VALUE (line_label, frag_now_fix ());
886 md_assemble (s); /* Assemble 1 instruction. */
888 *input_line_pointer++ = c;
890 /* We resume loop AFTER the end-of-line from
891 this instruction. */
894 continue;
897 /* Empty statement? */
898 if (is_end_of_line[(unsigned char) c])
899 continue;
901 if ((LOCAL_LABELS_DOLLAR || LOCAL_LABELS_FB) && ISDIGIT (c))
903 /* local label ("4:") */
904 char *backup = input_line_pointer;
906 HANDLE_CONDITIONAL_ASSEMBLY ();
908 temp = c - '0';
910 /* Read the whole number. */
911 while (ISDIGIT (*input_line_pointer))
913 temp = (temp * 10) + *input_line_pointer - '0';
914 ++input_line_pointer;
917 if (LOCAL_LABELS_DOLLAR
918 && *input_line_pointer == '$'
919 && *(input_line_pointer + 1) == ':')
921 input_line_pointer += 2;
923 if (dollar_label_defined (temp))
925 as_fatal (_("label \"%d$\" redefined"), temp);
928 define_dollar_label (temp);
929 colon (dollar_label_name (temp, 0));
930 continue;
933 if (LOCAL_LABELS_FB
934 && *input_line_pointer++ == ':')
936 fb_label_instance_inc (temp);
937 colon (fb_label_name (temp, 0));
938 continue;
941 input_line_pointer = backup;
942 } /* local label ("4:") */
944 if (c && strchr (line_comment_chars, c))
945 { /* Its a comment. Better say APP or NO_APP. */
946 sb sbuf;
947 char *ends;
948 char *new_buf;
949 char *new_tmp;
950 unsigned int new_length;
951 char *tmp_buf = 0;
953 bump_line_counters ();
954 s = input_line_pointer;
955 if (strncmp (s, "APP\n", 4))
956 continue; /* We ignore it */
957 s += 4;
959 sb_new (&sbuf);
960 ends = strstr (s, "#NO_APP\n");
962 if (!ends)
964 unsigned int tmp_len;
965 unsigned int num;
967 /* The end of the #APP wasn't in this buffer. We
968 keep reading in buffers until we find the #NO_APP
969 that goes with this #APP There is one. The specs
970 guarantee it... */
971 tmp_len = buffer_limit - s;
972 tmp_buf = xmalloc (tmp_len + 1);
973 memcpy (tmp_buf, s, tmp_len);
976 new_tmp = input_scrub_next_buffer (&buffer);
977 if (!new_tmp)
978 break;
979 else
980 buffer_limit = new_tmp;
981 input_line_pointer = buffer;
982 ends = strstr (buffer, "#NO_APP\n");
983 if (ends)
984 num = ends - buffer;
985 else
986 num = buffer_limit - buffer;
988 tmp_buf = xrealloc (tmp_buf, tmp_len + num);
989 memcpy (tmp_buf + tmp_len, buffer, num);
990 tmp_len += num;
992 while (!ends);
994 input_line_pointer = ends ? ends + 8 : NULL;
996 s = tmp_buf;
997 ends = s + tmp_len;
1000 else
1002 input_line_pointer = ends + 8;
1005 scrub_string = s;
1006 scrub_string_end = ends;
1008 new_length = ends - s;
1009 new_buf = (char *) xmalloc (new_length);
1010 new_tmp = new_buf;
1011 for (;;)
1013 int space;
1014 int size;
1016 space = (new_buf + new_length) - new_tmp;
1017 size = do_scrub_chars (scrub_from_string, new_tmp, space);
1019 if (size < space)
1021 new_tmp[size] = 0;
1022 break;
1025 new_buf = xrealloc (new_buf, new_length + 100);
1026 new_tmp = new_buf + new_length;
1027 new_length += 100;
1030 if (tmp_buf)
1031 free (tmp_buf);
1033 /* We've "scrubbed" input to the preferred format. In the
1034 process we may have consumed the whole of the remaining
1035 file (and included files). We handle this formatted
1036 input similar to that of macro expansion, letting
1037 actual macro expansion (possibly nested) and other
1038 input expansion work. Beware that in messages, line
1039 numbers and possibly file names will be incorrect. */
1040 sb_add_string (&sbuf, new_buf);
1041 input_scrub_include_sb (&sbuf, input_line_pointer, 0);
1042 sb_kill (&sbuf);
1043 buffer_limit = input_scrub_next_buffer (&input_line_pointer);
1044 free (new_buf);
1045 continue;
1048 HANDLE_CONDITIONAL_ASSEMBLY ();
1050 #ifdef tc_unrecognized_line
1051 if (tc_unrecognized_line (c))
1052 continue;
1053 #endif
1054 input_line_pointer--;
1055 /* Report unknown char as ignored. */
1056 demand_empty_rest_of_line ();
1059 #ifdef md_after_pass_hook
1060 md_after_pass_hook ();
1061 #endif
1064 quit:
1066 #ifdef md_cleanup
1067 md_cleanup ();
1068 #endif
1069 /* Close the input file. */
1070 input_scrub_close ();
1071 #ifdef WARN_COMMENTS
1073 if (warn_comment && found_comment)
1074 as_warn_where (found_comment_file, found_comment,
1075 "first comment found here");
1077 #endif
1080 /* For most MRI pseudo-ops, the line actually ends at the first
1081 nonquoted space. This function looks for that point, stuffs a null
1082 in, and sets *STOPCP to the character that used to be there, and
1083 returns the location.
1085 Until I hear otherwise, I am going to assume that this is only true
1086 for the m68k MRI assembler. */
1088 char *
1089 mri_comment_field (char *stopcp)
1091 char *s;
1092 #ifdef TC_M68K
1093 int inquote = 0;
1095 know (flag_m68k_mri);
1097 for (s = input_line_pointer;
1098 ((!is_end_of_line[(unsigned char) *s] && *s != ' ' && *s != '\t')
1099 || inquote);
1100 s++)
1102 if (*s == '\'')
1103 inquote = !inquote;
1105 #else
1106 for (s = input_line_pointer;
1107 !is_end_of_line[(unsigned char) *s];
1108 s++)
1110 #endif
1111 *stopcp = *s;
1112 *s = '\0';
1114 return s;
1117 /* Skip to the end of an MRI comment field. */
1119 void
1120 mri_comment_end (char *stop, int stopc)
1122 know (flag_mri);
1124 input_line_pointer = stop;
1125 *stop = stopc;
1126 while (!is_end_of_line[(unsigned char) *input_line_pointer])
1127 ++input_line_pointer;
1130 void
1131 s_abort (int ignore ATTRIBUTE_UNUSED)
1133 as_fatal (_(".abort detected. Abandoning ship."));
1136 /* Guts of .align directive. N is the power of two to which to align.
1137 FILL may be NULL, or it may point to the bytes of the fill pattern.
1138 LEN is the length of whatever FILL points to, if anything. MAX is
1139 the maximum number of characters to skip when doing the alignment,
1140 or 0 if there is no maximum. */
1142 static void
1143 do_align (int n, char *fill, int len, int max)
1145 if (now_seg == absolute_section)
1147 if (fill != NULL)
1148 while (len-- > 0)
1149 if (*fill++ != '\0')
1151 as_warn (_("ignoring fill value in absolute section"));
1152 break;
1154 fill = NULL;
1155 len = 0;
1158 #ifdef md_flush_pending_output
1159 md_flush_pending_output ();
1160 #endif
1161 #ifdef md_do_align
1162 md_do_align (n, fill, len, max, just_record_alignment);
1163 #endif
1165 /* Only make a frag if we HAVE to... */
1166 if (n != 0 && !need_pass_2)
1168 if (fill == NULL)
1170 if (subseg_text_p (now_seg))
1171 frag_align_code (n, max);
1172 else
1173 frag_align (n, 0, max);
1175 else if (len <= 1)
1176 frag_align (n, *fill, max);
1177 else
1178 frag_align_pattern (n, fill, len, max);
1181 #ifdef md_do_align
1182 just_record_alignment: ATTRIBUTE_UNUSED_LABEL
1183 #endif
1185 record_alignment (now_seg, n - OCTETS_PER_BYTE_POWER);
1188 /* Handle the .align pseudo-op. A positive ARG is a default alignment
1189 (in bytes). A negative ARG is the negative of the length of the
1190 fill pattern. BYTES_P is non-zero if the alignment value should be
1191 interpreted as the byte boundary, rather than the power of 2. */
1193 static void
1194 s_align (int arg, int bytes_p)
1196 register unsigned int align;
1197 char *stop = NULL;
1198 char stopc;
1199 offsetT fill = 0;
1200 int max;
1201 int fill_p;
1203 if (flag_mri)
1204 stop = mri_comment_field (&stopc);
1206 if (is_end_of_line[(unsigned char) *input_line_pointer])
1208 if (arg < 0)
1209 align = 0;
1210 else
1211 align = arg; /* Default value from pseudo-op table. */
1213 else
1215 align = get_absolute_expression ();
1216 SKIP_WHITESPACE ();
1219 if (bytes_p)
1221 /* Convert to a power of 2. */
1222 if (align != 0)
1224 unsigned int i;
1226 for (i = 0; (align & 1) == 0; align >>= 1, ++i)
1228 if (align != 1)
1229 as_bad (_("alignment not a power of 2"));
1231 align = i;
1235 if (align > 15)
1237 align = 15;
1238 as_warn (_("alignment too large: %u assumed"), align);
1241 if (*input_line_pointer != ',')
1243 fill_p = 0;
1244 max = 0;
1246 else
1248 ++input_line_pointer;
1249 if (*input_line_pointer == ',')
1250 fill_p = 0;
1251 else
1253 fill = get_absolute_expression ();
1254 SKIP_WHITESPACE ();
1255 fill_p = 1;
1258 if (*input_line_pointer != ',')
1259 max = 0;
1260 else
1262 ++input_line_pointer;
1263 max = get_absolute_expression ();
1267 if (!fill_p)
1269 if (arg < 0)
1270 as_warn (_("expected fill pattern missing"));
1271 do_align (align, (char *) NULL, 0, max);
1273 else
1275 int fill_len;
1277 if (arg >= 0)
1278 fill_len = 1;
1279 else
1280 fill_len = -arg;
1281 if (fill_len <= 1)
1283 char fill_char;
1285 fill_char = fill;
1286 do_align (align, &fill_char, fill_len, max);
1288 else
1290 char ab[16];
1292 if ((size_t) fill_len > sizeof ab)
1293 abort ();
1294 md_number_to_chars (ab, fill, fill_len);
1295 do_align (align, ab, fill_len, max);
1299 demand_empty_rest_of_line ();
1301 if (flag_mri)
1302 mri_comment_end (stop, stopc);
1305 /* Handle the .align pseudo-op on machines where ".align 4" means
1306 align to a 4 byte boundary. */
1308 void
1309 s_align_bytes (int arg)
1311 s_align (arg, 1);
1314 /* Handle the .align pseudo-op on machines where ".align 4" means align
1315 to a 2**4 boundary. */
1317 void
1318 s_align_ptwo (int arg)
1320 s_align (arg, 0);
1323 symbolS *
1324 s_comm_internal (int param,
1325 symbolS *(*comm_parse_extra) (int, symbolS *, addressT))
1327 char *name;
1328 char c;
1329 char *p;
1330 offsetT temp, size;
1331 symbolS *symbolP = NULL;
1332 char *stop = NULL;
1333 char stopc;
1334 expressionS exp;
1336 if (flag_mri)
1337 stop = mri_comment_field (&stopc);
1339 name = input_line_pointer;
1340 c = get_symbol_end ();
1341 /* Just after name is now '\0'. */
1342 p = input_line_pointer;
1343 *p = c;
1345 if (name == p)
1347 as_bad (_("expected symbol name"));
1348 discard_rest_of_line ();
1349 goto out;
1352 SKIP_WHITESPACE ();
1354 /* Accept an optional comma after the name. The comma used to be
1355 required, but Irix 5 cc does not generate it for .lcomm. */
1356 if (*input_line_pointer == ',')
1357 input_line_pointer++;
1359 *p = 0;
1360 temp = get_absolute_expr (&exp);
1361 size = temp;
1362 #ifdef BFD_ASSEMBLER
1363 size &= ((offsetT) 2 << (stdoutput->arch_info->bits_per_address - 1)) - 1;
1364 #endif
1365 if (exp.X_op == O_absent)
1367 as_bad (_("missing size expression"));
1368 *p = c;
1369 ignore_rest_of_line ();
1370 goto out;
1372 else if (temp != size || !exp.X_unsigned)
1374 as_warn (_("size (%ld) out of range, ignored"), (long) temp);
1375 *p = c;
1376 ignore_rest_of_line ();
1377 goto out;
1380 symbolP = symbol_find_or_make (name);
1381 if (S_IS_DEFINED (symbolP) && !S_IS_COMMON (symbolP))
1383 symbolP = NULL;
1384 as_bad (_("symbol `%s' is already defined"), name);
1385 *p = c;
1386 ignore_rest_of_line ();
1387 goto out;
1390 size = S_GET_VALUE (symbolP);
1391 if (size == 0)
1392 size = temp;
1393 else if (size != temp)
1394 as_warn (_("size of \"%s\" is already %ld; not changing to %ld"),
1395 name, (long) size, (long) temp);
1397 *p = c;
1398 if (comm_parse_extra != NULL)
1399 symbolP = (*comm_parse_extra) (param, symbolP, size);
1400 else
1402 S_SET_VALUE (symbolP, (valueT) size);
1403 S_SET_EXTERNAL (symbolP);
1404 #ifdef OBJ_VMS
1406 extern int flag_one;
1407 if (size == 0 || !flag_one)
1408 S_GET_OTHER (symbolP) = const_flag;
1410 #endif
1413 know (symbolP == NULL || symbolP->sy_frag == &zero_address_frag);
1414 demand_empty_rest_of_line ();
1415 out:
1416 if (flag_mri)
1417 mri_comment_end (stop, stopc);
1418 return symbolP;
1421 void
1422 s_comm (int ignore)
1424 s_comm_internal (ignore, NULL);
1427 /* The MRI COMMON pseudo-op. We handle this by creating a common
1428 symbol with the appropriate name. We make s_space do the right
1429 thing by increasing the size. */
1431 void
1432 s_mri_common (int small ATTRIBUTE_UNUSED)
1434 char *name;
1435 char c;
1436 char *alc = NULL;
1437 symbolS *sym;
1438 offsetT align;
1439 char *stop = NULL;
1440 char stopc;
1442 if (!flag_mri)
1444 s_comm (0);
1445 return;
1448 stop = mri_comment_field (&stopc);
1450 SKIP_WHITESPACE ();
1452 name = input_line_pointer;
1453 if (!ISDIGIT (*name))
1454 c = get_symbol_end ();
1455 else
1459 ++input_line_pointer;
1461 while (ISDIGIT (*input_line_pointer));
1463 c = *input_line_pointer;
1464 *input_line_pointer = '\0';
1466 if (line_label != NULL)
1468 alc = (char *) xmalloc (strlen (S_GET_NAME (line_label))
1469 + (input_line_pointer - name)
1470 + 1);
1471 sprintf (alc, "%s%s", name, S_GET_NAME (line_label));
1472 name = alc;
1476 sym = symbol_find_or_make (name);
1477 *input_line_pointer = c;
1478 if (alc != NULL)
1479 free (alc);
1481 if (*input_line_pointer != ',')
1482 align = 0;
1483 else
1485 ++input_line_pointer;
1486 align = get_absolute_expression ();
1489 if (S_IS_DEFINED (sym) && !S_IS_COMMON (sym))
1491 as_bad (_("symbol `%s' is already defined"), S_GET_NAME (sym));
1492 ignore_rest_of_line ();
1493 mri_comment_end (stop, stopc);
1494 return;
1497 S_SET_EXTERNAL (sym);
1498 mri_common_symbol = sym;
1500 #ifdef S_SET_ALIGN
1501 if (align != 0)
1502 S_SET_ALIGN (sym, align);
1503 #endif
1505 if (line_label != NULL)
1507 expressionS exp;
1508 exp.X_op = O_symbol;
1509 exp.X_add_symbol = sym;
1510 exp.X_add_number = 0;
1511 symbol_set_value_expression (line_label, &exp);
1512 symbol_set_frag (line_label, &zero_address_frag);
1513 S_SET_SEGMENT (line_label, expr_section);
1516 /* FIXME: We just ignore the small argument, which distinguishes
1517 COMMON and COMMON.S. I don't know what we can do about it. */
1519 /* Ignore the type and hptype. */
1520 if (*input_line_pointer == ',')
1521 input_line_pointer += 2;
1522 if (*input_line_pointer == ',')
1523 input_line_pointer += 2;
1525 demand_empty_rest_of_line ();
1527 mri_comment_end (stop, stopc);
1530 void
1531 s_data (int ignore ATTRIBUTE_UNUSED)
1533 segT section;
1534 register int temp;
1536 temp = get_absolute_expression ();
1537 if (flag_readonly_data_in_text)
1539 section = text_section;
1540 temp += 1000;
1542 else
1543 section = data_section;
1545 subseg_set (section, (subsegT) temp);
1547 #ifdef OBJ_VMS
1548 const_flag = 0;
1549 #endif
1550 demand_empty_rest_of_line ();
1553 /* Handle the .appfile pseudo-op. This is automatically generated by
1554 do_scrub_chars when a preprocessor # line comment is seen with a
1555 file name. This default definition may be overridden by the object
1556 or CPU specific pseudo-ops. This function is also the default
1557 definition for .file; the APPFILE argument is 1 for .appfile, 0 for
1558 .file. */
1560 void
1561 s_app_file_string (char *file)
1563 #ifdef LISTING
1564 if (listing)
1565 listing_source_file (file);
1566 #endif
1567 register_dependency (file);
1568 #ifdef obj_app_file
1569 obj_app_file (file);
1570 #endif
1573 void
1574 s_app_file (int appfile)
1576 register char *s;
1577 int length;
1579 /* Some assemblers tolerate immediately following '"'. */
1580 if ((s = demand_copy_string (&length)) != 0)
1582 /* If this is a fake .appfile, a fake newline was inserted into
1583 the buffer. Passing -2 to new_logical_line tells it to
1584 account for it. */
1585 int may_omit
1586 = (!new_logical_line (s, appfile ? -2 : -1) && appfile);
1588 /* In MRI mode, the preprocessor may have inserted an extraneous
1589 backquote. */
1590 if (flag_m68k_mri
1591 && *input_line_pointer == '\''
1592 && is_end_of_line[(unsigned char) input_line_pointer[1]])
1593 ++input_line_pointer;
1595 demand_empty_rest_of_line ();
1596 if (!may_omit)
1597 s_app_file_string (s);
1601 /* Handle the .appline pseudo-op. This is automatically generated by
1602 do_scrub_chars when a preprocessor # line comment is seen. This
1603 default definition may be overridden by the object or CPU specific
1604 pseudo-ops. */
1606 void
1607 s_app_line (int ignore ATTRIBUTE_UNUSED)
1609 int l;
1611 /* The given number is that of the next line. */
1612 l = get_absolute_expression () - 1;
1613 if (l < 0)
1614 /* Some of the back ends can't deal with non-positive line numbers.
1615 Besides, it's silly. */
1616 as_warn (_("line numbers must be positive; line number %d rejected"),
1617 l + 1);
1618 else
1620 new_logical_line ((char *) NULL, l);
1621 #ifdef LISTING
1622 if (listing)
1623 listing_source_line (l);
1624 #endif
1626 demand_empty_rest_of_line ();
1629 /* Handle the .end pseudo-op. Actually, the real work is done in
1630 read_a_source_file. */
1632 void
1633 s_end (int ignore ATTRIBUTE_UNUSED)
1635 if (flag_mri)
1637 /* The MRI assembler permits the start symbol to follow .end,
1638 but we don't support that. */
1639 SKIP_WHITESPACE ();
1640 if (!is_end_of_line[(unsigned char) *input_line_pointer]
1641 && *input_line_pointer != '*'
1642 && *input_line_pointer != '!')
1643 as_warn (_("start address not supported"));
1647 /* Handle the .err pseudo-op. */
1649 void
1650 s_err (int ignore ATTRIBUTE_UNUSED)
1652 as_bad (_(".err encountered"));
1653 demand_empty_rest_of_line ();
1656 /* Handle the MRI fail pseudo-op. */
1658 void
1659 s_fail (int ignore ATTRIBUTE_UNUSED)
1661 offsetT temp;
1662 char *stop = NULL;
1663 char stopc;
1665 if (flag_mri)
1666 stop = mri_comment_field (&stopc);
1668 temp = get_absolute_expression ();
1669 if (temp >= 500)
1670 as_warn (_(".fail %ld encountered"), (long) temp);
1671 else
1672 as_bad (_(".fail %ld encountered"), (long) temp);
1674 demand_empty_rest_of_line ();
1676 if (flag_mri)
1677 mri_comment_end (stop, stopc);
1680 void
1681 s_fill (int ignore ATTRIBUTE_UNUSED)
1683 expressionS rep_exp;
1684 long size = 1;
1685 register long fill = 0;
1686 char *p;
1688 #ifdef md_flush_pending_output
1689 md_flush_pending_output ();
1690 #endif
1692 get_known_segmented_expression (&rep_exp);
1693 if (*input_line_pointer == ',')
1695 input_line_pointer++;
1696 size = get_absolute_expression ();
1697 if (*input_line_pointer == ',')
1699 input_line_pointer++;
1700 fill = get_absolute_expression ();
1704 /* This is to be compatible with BSD 4.2 AS, not for any rational reason. */
1705 #define BSD_FILL_SIZE_CROCK_8 (8)
1706 if (size > BSD_FILL_SIZE_CROCK_8)
1708 as_warn (_(".fill size clamped to %d"), BSD_FILL_SIZE_CROCK_8);
1709 size = BSD_FILL_SIZE_CROCK_8;
1711 if (size < 0)
1713 as_warn (_("size negative; .fill ignored"));
1714 size = 0;
1716 else if (rep_exp.X_op == O_constant && rep_exp.X_add_number <= 0)
1718 if (rep_exp.X_add_number < 0)
1719 as_warn (_("repeat < 0; .fill ignored"));
1720 size = 0;
1723 if (size && !need_pass_2)
1725 if (rep_exp.X_op == O_constant)
1727 p = frag_var (rs_fill, (int) size, (int) size,
1728 (relax_substateT) 0, (symbolS *) 0,
1729 (offsetT) rep_exp.X_add_number,
1730 (char *) 0);
1732 else
1734 /* We don't have a constant repeat count, so we can't use
1735 rs_fill. We can get the same results out of rs_space,
1736 but its argument is in bytes, so we must multiply the
1737 repeat count by size. */
1739 symbolS *rep_sym;
1740 rep_sym = make_expr_symbol (&rep_exp);
1741 if (size != 1)
1743 expressionS size_exp;
1744 size_exp.X_op = O_constant;
1745 size_exp.X_add_number = size;
1747 rep_exp.X_op = O_multiply;
1748 rep_exp.X_add_symbol = rep_sym;
1749 rep_exp.X_op_symbol = make_expr_symbol (&size_exp);
1750 rep_exp.X_add_number = 0;
1751 rep_sym = make_expr_symbol (&rep_exp);
1754 p = frag_var (rs_space, (int) size, (int) size,
1755 (relax_substateT) 0, rep_sym, (offsetT) 0, (char *) 0);
1758 memset (p, 0, (unsigned int) size);
1760 /* The magic number BSD_FILL_SIZE_CROCK_4 is from BSD 4.2 VAX
1761 flavoured AS. The following bizarre behaviour is to be
1762 compatible with above. I guess they tried to take up to 8
1763 bytes from a 4-byte expression and they forgot to sign
1764 extend. */
1765 #define BSD_FILL_SIZE_CROCK_4 (4)
1766 md_number_to_chars (p, (valueT) fill,
1767 (size > BSD_FILL_SIZE_CROCK_4
1768 ? BSD_FILL_SIZE_CROCK_4
1769 : (int) size));
1770 /* Note: .fill (),0 emits no frag (since we are asked to .fill 0 bytes)
1771 but emits no error message because it seems a legal thing to do.
1772 It is a degenerate case of .fill but could be emitted by a
1773 compiler. */
1775 demand_empty_rest_of_line ();
1778 void
1779 s_globl (int ignore ATTRIBUTE_UNUSED)
1781 char *name;
1782 int c;
1783 symbolS *symbolP;
1784 char *stop = NULL;
1785 char stopc;
1787 if (flag_mri)
1788 stop = mri_comment_field (&stopc);
1792 name = input_line_pointer;
1793 c = get_symbol_end ();
1794 symbolP = symbol_find_or_make (name);
1795 S_SET_EXTERNAL (symbolP);
1797 *input_line_pointer = c;
1798 SKIP_WHITESPACE ();
1799 c = *input_line_pointer;
1800 if (c == ',')
1802 input_line_pointer++;
1803 SKIP_WHITESPACE ();
1804 if (is_end_of_line[(unsigned char) *input_line_pointer])
1805 c = '\n';
1808 while (c == ',');
1810 demand_empty_rest_of_line ();
1812 if (flag_mri)
1813 mri_comment_end (stop, stopc);
1816 /* Handle the MRI IRP and IRPC pseudo-ops. */
1818 void
1819 s_irp (int irpc)
1821 char *file;
1822 unsigned int line;
1823 sb s;
1824 const char *err;
1825 sb out;
1827 as_where (&file, &line);
1829 sb_new (&s);
1830 while (!is_end_of_line[(unsigned char) *input_line_pointer])
1831 sb_add_char (&s, *input_line_pointer++);
1833 sb_new (&out);
1835 err = expand_irp (irpc, 0, &s, &out, get_line_sb);
1836 if (err != NULL)
1837 as_bad_where (file, line, "%s", err);
1839 sb_kill (&s);
1841 input_scrub_include_sb (&out, input_line_pointer, 1);
1842 sb_kill (&out);
1843 buffer_limit = input_scrub_next_buffer (&input_line_pointer);
1846 /* Handle the .linkonce pseudo-op. This tells the assembler to mark
1847 the section to only be linked once. However, this is not supported
1848 by most object file formats. This takes an optional argument,
1849 which is what to do about duplicates. */
1851 void
1852 s_linkonce (int ignore ATTRIBUTE_UNUSED)
1854 enum linkonce_type type;
1856 SKIP_WHITESPACE ();
1858 type = LINKONCE_DISCARD;
1860 if (!is_end_of_line[(unsigned char) *input_line_pointer])
1862 char *s;
1863 char c;
1865 s = input_line_pointer;
1866 c = get_symbol_end ();
1867 if (strcasecmp (s, "discard") == 0)
1868 type = LINKONCE_DISCARD;
1869 else if (strcasecmp (s, "one_only") == 0)
1870 type = LINKONCE_ONE_ONLY;
1871 else if (strcasecmp (s, "same_size") == 0)
1872 type = LINKONCE_SAME_SIZE;
1873 else if (strcasecmp (s, "same_contents") == 0)
1874 type = LINKONCE_SAME_CONTENTS;
1875 else
1876 as_warn (_("unrecognized .linkonce type `%s'"), s);
1878 *input_line_pointer = c;
1881 #ifdef obj_handle_link_once
1882 obj_handle_link_once (type);
1883 #else /* ! defined (obj_handle_link_once) */
1884 #ifdef BFD_ASSEMBLER
1886 flagword flags;
1888 if ((bfd_applicable_section_flags (stdoutput) & SEC_LINK_ONCE) == 0)
1889 as_warn (_(".linkonce is not supported for this object file format"));
1891 flags = bfd_get_section_flags (stdoutput, now_seg);
1892 flags |= SEC_LINK_ONCE;
1893 switch (type)
1895 default:
1896 abort ();
1897 case LINKONCE_DISCARD:
1898 flags |= SEC_LINK_DUPLICATES_DISCARD;
1899 break;
1900 case LINKONCE_ONE_ONLY:
1901 flags |= SEC_LINK_DUPLICATES_ONE_ONLY;
1902 break;
1903 case LINKONCE_SAME_SIZE:
1904 flags |= SEC_LINK_DUPLICATES_SAME_SIZE;
1905 break;
1906 case LINKONCE_SAME_CONTENTS:
1907 flags |= SEC_LINK_DUPLICATES_SAME_CONTENTS;
1908 break;
1910 if (!bfd_set_section_flags (stdoutput, now_seg, flags))
1911 as_bad (_("bfd_set_section_flags: %s"),
1912 bfd_errmsg (bfd_get_error ()));
1914 #else /* ! defined (BFD_ASSEMBLER) */
1915 as_warn (_(".linkonce is not supported for this object file format"));
1916 #endif /* ! defined (BFD_ASSEMBLER) */
1917 #endif /* ! defined (obj_handle_link_once) */
1919 demand_empty_rest_of_line ();
1922 void
1923 bss_alloc (symbolS *symbolP, addressT size, int align)
1925 char *pfrag;
1926 segT current_seg = now_seg;
1927 subsegT current_subseg = now_subseg;
1928 segT bss_seg = bss_section;
1930 #if defined (TC_MIPS) || defined (TC_ALPHA)
1931 if (OUTPUT_FLAVOR == bfd_target_ecoff_flavour
1932 || OUTPUT_FLAVOR == bfd_target_elf_flavour)
1934 /* For MIPS and Alpha ECOFF or ELF, small objects are put in .sbss. */
1935 if (size <= bfd_get_gp_size (stdoutput))
1937 bss_seg = subseg_new (".sbss", 1);
1938 seg_info (bss_seg)->bss = 1;
1939 #ifdef BFD_ASSEMBLER
1940 if (!bfd_set_section_flags (stdoutput, bss_seg, SEC_ALLOC))
1941 as_warn (_("error setting flags for \".sbss\": %s"),
1942 bfd_errmsg (bfd_get_error ()));
1943 #endif
1946 #endif
1947 subseg_set (bss_seg, 1);
1949 if (align)
1951 record_alignment (bss_seg, align);
1952 frag_align (align, 0, 0);
1955 /* Detach from old frag. */
1956 if (S_GET_SEGMENT (symbolP) == bss_seg)
1957 symbol_get_frag (symbolP)->fr_symbol = NULL;
1959 symbol_set_frag (symbolP, frag_now);
1960 pfrag = frag_var (rs_org, 1, 1, 0, symbolP, size, NULL);
1961 *pfrag = 0;
1963 #ifdef S_SET_SIZE
1964 S_SET_SIZE (symbolP, size);
1965 #endif
1966 S_SET_SEGMENT (symbolP, bss_seg);
1968 #ifdef OBJ_COFF
1969 /* The symbol may already have been created with a preceding
1970 ".globl" directive -- be careful not to step on storage class
1971 in that case. Otherwise, set it to static. */
1972 if (S_GET_STORAGE_CLASS (symbolP) != C_EXT)
1973 S_SET_STORAGE_CLASS (symbolP, C_STAT);
1974 #endif /* OBJ_COFF */
1976 subseg_set (current_seg, current_subseg);
1979 offsetT
1980 parse_align (int align_bytes)
1982 expressionS exp;
1983 addressT align;
1985 SKIP_WHITESPACE ();
1986 if (*input_line_pointer != ',')
1988 no_align:
1989 as_bad (_("expected alignment after size"));
1990 ignore_rest_of_line ();
1991 return -1;
1994 input_line_pointer++;
1995 SKIP_WHITESPACE ();
1997 align = get_absolute_expr (&exp);
1998 if (exp.X_op == O_absent)
1999 goto no_align;
2001 if (!exp.X_unsigned)
2003 as_warn (_("alignment negative; 0 assumed"));
2004 align = 0;
2007 if (align_bytes && align != 0)
2009 /* convert to a power of 2 alignment */
2010 unsigned int alignp2 = 0;
2011 while ((align & 1) == 0)
2012 align >>= 1, ++alignp2;
2013 if (align != 1)
2015 as_bad (_("alignment not a power of 2"));
2016 ignore_rest_of_line ();
2017 return -1;
2019 align = alignp2;
2021 return align;
2024 /* Called from s_comm_internal after symbol name and size have been
2025 parsed. NEEDS_ALIGN is 0 if it was an ".lcomm" (2 args only),
2026 1 if this was a ".bss" directive which has a 3rd argument
2027 (alignment as a power of 2), or 2 if this was a ".bss" directive
2028 with alignment in bytes. */
2030 symbolS *
2031 s_lcomm_internal (int needs_align, symbolS *symbolP, addressT size)
2033 addressT align = 0;
2035 if (needs_align)
2037 align = parse_align (needs_align - 1);
2038 if (align == (addressT) -1)
2039 return NULL;
2041 else
2042 /* Assume some objects may require alignment on some systems. */
2043 TC_IMPLICIT_LCOMM_ALIGNMENT (size, align);
2045 bss_alloc (symbolP, size, align);
2046 return symbolP;
2049 void
2050 s_lcomm (int needs_align)
2052 s_comm_internal (needs_align, s_lcomm_internal);
2055 void
2056 s_lcomm_bytes (int needs_align)
2058 s_comm_internal (needs_align * 2, s_lcomm_internal);
2061 void
2062 s_lsym (int ignore ATTRIBUTE_UNUSED)
2064 register char *name;
2065 register char c;
2066 register char *p;
2067 expressionS exp;
2068 register symbolS *symbolP;
2070 /* We permit ANY defined expression: BSD4.2 demands constants. */
2071 name = input_line_pointer;
2072 c = get_symbol_end ();
2073 p = input_line_pointer;
2074 *p = c;
2076 if (name == p)
2078 as_bad (_("expected symbol name"));
2079 discard_rest_of_line ();
2080 return;
2083 SKIP_WHITESPACE ();
2085 if (*input_line_pointer != ',')
2087 *p = 0;
2088 as_bad (_("expected comma after \"%s\""), name);
2089 *p = c;
2090 ignore_rest_of_line ();
2091 return;
2094 input_line_pointer++;
2095 expression (&exp);
2097 if (exp.X_op != O_constant
2098 && exp.X_op != O_register)
2100 as_bad (_("bad expression"));
2101 ignore_rest_of_line ();
2102 return;
2105 *p = 0;
2106 symbolP = symbol_find_or_make (name);
2108 /* FIXME-SOON I pulled a (&& symbolP->sy_other == 0 &&
2109 symbolP->sy_desc == 0) out of this test because coff doesn't have
2110 those fields, and I can't see when they'd ever be tripped. I
2111 don't think I understand why they were here so I may have
2112 introduced a bug. As recently as 1.37 didn't have this test
2113 anyway. xoxorich. */
2115 if (S_GET_SEGMENT (symbolP) == undefined_section
2116 && S_GET_VALUE (symbolP) == 0)
2118 /* The name might be an undefined .global symbol; be sure to
2119 keep the "external" bit. */
2120 S_SET_SEGMENT (symbolP,
2121 (exp.X_op == O_constant
2122 ? absolute_section
2123 : reg_section));
2124 S_SET_VALUE (symbolP, (valueT) exp.X_add_number);
2126 else
2128 as_bad (_("symbol `%s' is already defined"), name);
2131 *p = c;
2132 demand_empty_rest_of_line ();
2135 /* Read a line into an sb. Returns the character that ended the line
2136 or zero if there are no more lines. */
2138 static int
2139 get_line_sb (sb *line)
2141 char quote1, quote2, inquote;
2142 unsigned char c;
2144 if (input_line_pointer[-1] == '\n')
2145 bump_line_counters ();
2147 if (input_line_pointer >= buffer_limit)
2149 buffer_limit = input_scrub_next_buffer (&input_line_pointer);
2150 if (buffer_limit == 0)
2151 return 0;
2154 /* If app.c sets any other characters to LEX_IS_STRINGQUOTE, this
2155 code needs to be changed. */
2156 if (!flag_m68k_mri)
2157 quote1 = '"';
2158 else
2159 quote1 = '\0';
2161 quote2 = '\0';
2162 if (flag_m68k_mri)
2163 quote2 = '\'';
2164 #ifdef LEX_IS_STRINGQUOTE
2165 quote2 = '\'';
2166 #endif
2168 inquote = '\0';
2170 while ((c = * input_line_pointer ++) != 0
2171 && (!is_end_of_line[c]
2172 || (inquote != '\0' && c != '\n')))
2174 if (inquote == c)
2175 inquote = '\0';
2176 else if (inquote == '\0')
2178 if (c == quote1)
2179 inquote = quote1;
2180 else if (c == quote2)
2181 inquote = quote2;
2184 sb_add_char (line, c);
2187 /* Don't skip multiple end-of-line characters, because that breaks support
2188 for the IA-64 stop bit (;;) which looks like two consecutive end-of-line
2189 characters but isn't. Instead just skip one end of line character and
2190 return the character skipped so that the caller can re-insert it if
2191 necessary. */
2192 return c;
2195 /* Define a macro. This is an interface to macro.c. */
2197 void
2198 s_macro (int ignore ATTRIBUTE_UNUSED)
2200 char *file;
2201 unsigned int line;
2202 sb s;
2203 sb label;
2204 const char *err;
2205 const char *name;
2207 as_where (&file, &line);
2209 sb_new (&s);
2210 while (!is_end_of_line[(unsigned char) *input_line_pointer])
2211 sb_add_char (&s, *input_line_pointer++);
2213 sb_new (&label);
2214 if (line_label != NULL)
2215 sb_add_string (&label, S_GET_NAME (line_label));
2217 err = define_macro (0, &s, &label, get_line_sb, &name);
2218 if (err != NULL)
2219 as_bad_where (file, line, "%s", err);
2220 else
2222 if (line_label != NULL)
2224 S_SET_SEGMENT (line_label, undefined_section);
2225 S_SET_VALUE (line_label, 0);
2226 symbol_set_frag (line_label, &zero_address_frag);
2229 if (((NO_PSEUDO_DOT || flag_m68k_mri)
2230 && hash_find (po_hash, name) != NULL)
2231 || (!flag_m68k_mri
2232 && *name == '.'
2233 && hash_find (po_hash, name + 1) != NULL))
2234 as_warn (_("attempt to redefine pseudo-op `%s' ignored"),
2235 name);
2238 sb_kill (&s);
2241 /* Handle the .mexit pseudo-op, which immediately exits a macro
2242 expansion. */
2244 void
2245 s_mexit (int ignore ATTRIBUTE_UNUSED)
2247 cond_exit_macro (macro_nest);
2248 buffer_limit = input_scrub_next_buffer (&input_line_pointer);
2251 /* Switch in and out of MRI mode. */
2253 void
2254 s_mri (int ignore ATTRIBUTE_UNUSED)
2256 int on, old_flag;
2258 on = get_absolute_expression ();
2259 old_flag = flag_mri;
2260 if (on != 0)
2262 flag_mri = 1;
2263 #ifdef TC_M68K
2264 flag_m68k_mri = 1;
2265 #endif
2266 macro_mri_mode (1);
2268 else
2270 flag_mri = 0;
2271 #ifdef TC_M68K
2272 flag_m68k_mri = 0;
2273 #endif
2274 macro_mri_mode (0);
2277 /* Operator precedence changes in m68k MRI mode, so we need to
2278 update the operator rankings. */
2279 expr_set_precedence ();
2281 #ifdef MRI_MODE_CHANGE
2282 if (on != old_flag)
2283 MRI_MODE_CHANGE (on);
2284 #endif
2286 demand_empty_rest_of_line ();
2289 /* Handle changing the location counter. */
2291 static void
2292 do_org (segT segment, expressionS *exp, int fill)
2294 if (segment != now_seg && segment != absolute_section)
2295 as_bad (_("invalid segment \"%s\""), segment_name (segment));
2297 if (now_seg == absolute_section)
2299 if (fill != 0)
2300 as_warn (_("ignoring fill value in absolute section"));
2301 if (exp->X_op != O_constant)
2303 as_bad (_("only constant offsets supported in absolute section"));
2304 exp->X_add_number = 0;
2306 abs_section_offset = exp->X_add_number;
2308 else
2310 char *p;
2311 symbolS *sym = exp->X_add_symbol;
2312 offsetT off = exp->X_add_number * OCTETS_PER_BYTE;
2314 if (exp->X_op != O_constant && exp->X_op != O_symbol)
2316 /* Handle complex expressions. */
2317 sym = make_expr_symbol (exp);
2318 off = 0;
2321 p = frag_var (rs_org, 1, 1, (relax_substateT) 0, sym, off, (char *) 0);
2322 *p = fill;
2326 void
2327 s_org (int ignore ATTRIBUTE_UNUSED)
2329 register segT segment;
2330 expressionS exp;
2331 register long temp_fill;
2333 #ifdef md_flush_pending_output
2334 md_flush_pending_output ();
2335 #endif
2337 /* The m68k MRI assembler has a different meaning for .org. It
2338 means to create an absolute section at a given address. We can't
2339 support that--use a linker script instead. */
2340 if (flag_m68k_mri)
2342 as_bad (_("MRI style ORG pseudo-op not supported"));
2343 ignore_rest_of_line ();
2344 return;
2347 /* Don't believe the documentation of BSD 4.2 AS. There is no such
2348 thing as a sub-segment-relative origin. Any absolute origin is
2349 given a warning, then assumed to be segment-relative. Any
2350 segmented origin expression ("foo+42") had better be in the right
2351 segment or the .org is ignored.
2353 BSD 4.2 AS warns if you try to .org backwards. We cannot because
2354 we never know sub-segment sizes when we are reading code. BSD
2355 will crash trying to emit negative numbers of filler bytes in
2356 certain .orgs. We don't crash, but see as-write for that code.
2358 Don't make frag if need_pass_2==1. */
2359 segment = get_known_segmented_expression (&exp);
2360 if (*input_line_pointer == ',')
2362 input_line_pointer++;
2363 temp_fill = get_absolute_expression ();
2365 else
2366 temp_fill = 0;
2368 if (!need_pass_2)
2369 do_org (segment, &exp, temp_fill);
2371 demand_empty_rest_of_line ();
2374 /* Handle parsing for the MRI SECT/SECTION pseudo-op. This should be
2375 called by the obj-format routine which handles section changing
2376 when in MRI mode. It will create a new section, and return it. It
2377 will set *TYPE to the section type: one of 'C' (code), 'D' (data),
2378 'M' (mixed), or 'R' (romable). If BFD_ASSEMBLER is defined, the
2379 flags will be set in the section. */
2381 void
2382 s_mri_sect (char *type ATTRIBUTE_UNUSED)
2384 #ifdef TC_M68K
2386 char *name;
2387 char c;
2388 segT seg;
2390 SKIP_WHITESPACE ();
2392 name = input_line_pointer;
2393 if (!ISDIGIT (*name))
2394 c = get_symbol_end ();
2395 else
2399 ++input_line_pointer;
2401 while (ISDIGIT (*input_line_pointer));
2403 c = *input_line_pointer;
2404 *input_line_pointer = '\0';
2407 name = xstrdup (name);
2409 *input_line_pointer = c;
2411 seg = subseg_new (name, 0);
2413 if (*input_line_pointer == ',')
2415 int align;
2417 ++input_line_pointer;
2418 align = get_absolute_expression ();
2419 record_alignment (seg, align);
2422 *type = 'C';
2423 if (*input_line_pointer == ',')
2425 c = *++input_line_pointer;
2426 c = TOUPPER (c);
2427 if (c == 'C' || c == 'D' || c == 'M' || c == 'R')
2428 *type = c;
2429 else
2430 as_bad (_("unrecognized section type"));
2431 ++input_line_pointer;
2433 #ifdef BFD_ASSEMBLER
2435 flagword flags;
2437 flags = SEC_NO_FLAGS;
2438 if (*type == 'C')
2439 flags = SEC_ALLOC | SEC_LOAD | SEC_READONLY | SEC_CODE;
2440 else if (*type == 'D' || *type == 'M')
2441 flags = SEC_ALLOC | SEC_LOAD | SEC_DATA;
2442 else if (*type == 'R')
2443 flags = SEC_ALLOC | SEC_LOAD | SEC_DATA | SEC_READONLY | SEC_ROM;
2444 if (flags != SEC_NO_FLAGS)
2446 if (!bfd_set_section_flags (stdoutput, seg, flags))
2447 as_warn (_("error setting flags for \"%s\": %s"),
2448 bfd_section_name (stdoutput, seg),
2449 bfd_errmsg (bfd_get_error ()));
2452 #endif
2455 /* Ignore the HP type. */
2456 if (*input_line_pointer == ',')
2457 input_line_pointer += 2;
2459 demand_empty_rest_of_line ();
2461 #else /* ! TC_M68K */
2462 #ifdef TC_I960
2464 char *name;
2465 char c;
2466 segT seg;
2468 SKIP_WHITESPACE ();
2470 name = input_line_pointer;
2471 c = get_symbol_end ();
2473 name = xstrdup (name);
2475 *input_line_pointer = c;
2477 seg = subseg_new (name, 0);
2479 if (*input_line_pointer != ',')
2480 *type = 'C';
2481 else
2483 char *sectype;
2485 ++input_line_pointer;
2486 SKIP_WHITESPACE ();
2487 sectype = input_line_pointer;
2488 c = get_symbol_end ();
2489 if (*sectype == '\0')
2490 *type = 'C';
2491 else if (strcasecmp (sectype, "text") == 0)
2492 *type = 'C';
2493 else if (strcasecmp (sectype, "data") == 0)
2494 *type = 'D';
2495 else if (strcasecmp (sectype, "romdata") == 0)
2496 *type = 'R';
2497 else
2498 as_warn (_("unrecognized section type `%s'"), sectype);
2499 *input_line_pointer = c;
2502 if (*input_line_pointer == ',')
2504 char *seccmd;
2506 ++input_line_pointer;
2507 SKIP_WHITESPACE ();
2508 seccmd = input_line_pointer;
2509 c = get_symbol_end ();
2510 if (strcasecmp (seccmd, "absolute") == 0)
2512 as_bad (_("absolute sections are not supported"));
2513 *input_line_pointer = c;
2514 ignore_rest_of_line ();
2515 return;
2517 else if (strcasecmp (seccmd, "align") == 0)
2519 int align;
2521 *input_line_pointer = c;
2522 align = get_absolute_expression ();
2523 record_alignment (seg, align);
2525 else
2527 as_warn (_("unrecognized section command `%s'"), seccmd);
2528 *input_line_pointer = c;
2532 demand_empty_rest_of_line ();
2534 #else /* ! TC_I960 */
2535 /* The MRI assembler seems to use different forms of .sect for
2536 different targets. */
2537 as_bad ("MRI mode not supported for this target");
2538 ignore_rest_of_line ();
2539 #endif /* ! TC_I960 */
2540 #endif /* ! TC_M68K */
2543 /* Handle the .print pseudo-op. */
2545 void
2546 s_print (int ignore ATTRIBUTE_UNUSED)
2548 char *s;
2549 int len;
2551 s = demand_copy_C_string (&len);
2552 if (s != NULL)
2553 printf ("%s\n", s);
2554 demand_empty_rest_of_line ();
2557 /* Handle the .purgem pseudo-op. */
2559 void
2560 s_purgem (int ignore ATTRIBUTE_UNUSED)
2562 if (is_it_end_of_statement ())
2564 demand_empty_rest_of_line ();
2565 return;
2570 char *name;
2571 char c;
2573 SKIP_WHITESPACE ();
2574 name = input_line_pointer;
2575 c = get_symbol_end ();
2576 delete_macro (name);
2577 *input_line_pointer = c;
2578 SKIP_WHITESPACE ();
2580 while (*input_line_pointer++ == ',');
2582 --input_line_pointer;
2583 demand_empty_rest_of_line ();
2586 /* Handle the .rept pseudo-op. */
2588 void
2589 s_bad_endr (int ignore ATTRIBUTE_UNUSED)
2591 as_warn (_(".endr encountered without preceeding .rept, .irc, or .irp"));
2592 demand_empty_rest_of_line ();
2595 /* Handle the .rept pseudo-op. */
2597 void
2598 s_rept (int ignore ATTRIBUTE_UNUSED)
2600 int count;
2602 count = get_absolute_expression ();
2604 do_repeat (count, "REPT", "ENDR");
2607 /* This function provides a generic repeat block implementation. It allows
2608 different directives to be used as the start/end keys. */
2610 void
2611 do_repeat (int count, const char *start, const char *end)
2613 sb one;
2614 sb many;
2616 sb_new (&one);
2617 if (!buffer_and_nest (start, end, &one, get_line_sb))
2619 as_bad (_("%s without %s"), start, end);
2620 return;
2623 sb_new (&many);
2624 while (count-- > 0)
2625 sb_add_sb (&many, &one);
2627 sb_kill (&one);
2629 input_scrub_include_sb (&many, input_line_pointer, 1);
2630 sb_kill (&many);
2631 buffer_limit = input_scrub_next_buffer (&input_line_pointer);
2634 /* Skip to end of current repeat loop; EXTRA indicates how many additional
2635 input buffers to skip. Assumes that conditionals preceding the loop end
2636 are properly nested.
2638 This function makes it easier to implement a premature "break" out of the
2639 loop. The EXTRA arg accounts for other buffers we might have inserted,
2640 such as line substitutions. */
2642 void
2643 end_repeat (int extra)
2645 cond_exit_macro (macro_nest);
2646 while (extra-- >= 0)
2647 buffer_limit = input_scrub_next_buffer (&input_line_pointer);
2650 /* Handle the .equ, .equiv and .set directives. If EQUIV is 1, then
2651 this is .equiv, and it is an error if the symbol is already
2652 defined. */
2654 void
2655 s_set (int equiv)
2657 register char *name;
2658 register char delim;
2659 register char *end_name;
2660 register symbolS *symbolP;
2662 /* Especial apologies for the random logic:
2663 this just grew, and could be parsed much more simply!
2664 Dean in haste. */
2665 name = input_line_pointer;
2666 delim = get_symbol_end ();
2667 end_name = input_line_pointer;
2668 *end_name = delim;
2670 if (name == end_name)
2672 as_bad (_("expected symbol name"));
2673 discard_rest_of_line ();
2674 return;
2677 SKIP_WHITESPACE ();
2679 if (*input_line_pointer != ',')
2681 *end_name = 0;
2682 as_bad (_("expected comma after \"%s\""), name);
2683 *end_name = delim;
2684 ignore_rest_of_line ();
2685 return;
2688 input_line_pointer++;
2689 *end_name = 0;
2691 if (name[0] == '.' && name[1] == '\0')
2693 /* Turn '. = mumble' into a .org mumble. */
2694 register segT segment;
2695 expressionS exp;
2697 segment = get_known_segmented_expression (&exp);
2699 if (!need_pass_2)
2700 do_org (segment, &exp, 0);
2702 *end_name = delim;
2703 return;
2706 if ((symbolP = symbol_find (name)) == NULL
2707 && (symbolP = md_undefined_symbol (name)) == NULL)
2709 #ifndef NO_LISTING
2710 /* When doing symbol listings, play games with dummy fragments living
2711 outside the normal fragment chain to record the file and line info
2712 for this symbol. */
2713 if (listing & LISTING_SYMBOLS)
2715 extern struct list_info_struct *listing_tail;
2716 fragS *dummy_frag = (fragS *) xmalloc (sizeof (fragS));
2717 memset (dummy_frag, 0, sizeof (fragS));
2718 dummy_frag->fr_type = rs_fill;
2719 dummy_frag->line = listing_tail;
2720 symbolP = symbol_new (name, undefined_section, 0, dummy_frag);
2721 dummy_frag->fr_symbol = symbolP;
2723 else
2724 #endif
2725 symbolP = symbol_new (name, undefined_section, 0, &zero_address_frag);
2727 #ifdef OBJ_COFF
2728 /* "set" symbols are local unless otherwise specified. */
2729 SF_SET_LOCAL (symbolP);
2730 #endif /* OBJ_COFF */
2733 symbol_table_insert (symbolP);
2735 *end_name = delim;
2737 if (equiv
2738 && S_IS_DEFINED (symbolP)
2739 && S_GET_SEGMENT (symbolP) != reg_section)
2740 as_bad (_("symbol `%s' is already defined"), S_GET_NAME (symbolP));
2742 pseudo_set (symbolP);
2743 demand_empty_rest_of_line ();
2746 void
2747 s_space (int mult)
2749 expressionS exp;
2750 expressionS val;
2751 char *p = 0;
2752 char *stop = NULL;
2753 char stopc;
2754 int bytes;
2756 #ifdef md_flush_pending_output
2757 md_flush_pending_output ();
2758 #endif
2760 if (flag_mri)
2761 stop = mri_comment_field (&stopc);
2763 /* In m68k MRI mode, we need to align to a word boundary, unless
2764 this is ds.b. */
2765 if (flag_m68k_mri && mult > 1)
2767 if (now_seg == absolute_section)
2769 abs_section_offset += abs_section_offset & 1;
2770 if (line_label != NULL)
2771 S_SET_VALUE (line_label, abs_section_offset);
2773 else if (mri_common_symbol != NULL)
2775 valueT val;
2777 val = S_GET_VALUE (mri_common_symbol);
2778 if ((val & 1) != 0)
2780 S_SET_VALUE (mri_common_symbol, val + 1);
2781 if (line_label != NULL)
2783 expressionS *symexp;
2785 symexp = symbol_get_value_expression (line_label);
2786 know (symexp->X_op == O_symbol);
2787 know (symexp->X_add_symbol == mri_common_symbol);
2788 symexp->X_add_number += 1;
2792 else
2794 do_align (1, (char *) NULL, 0, 0);
2795 if (line_label != NULL)
2797 symbol_set_frag (line_label, frag_now);
2798 S_SET_VALUE (line_label, frag_now_fix ());
2803 bytes = mult;
2805 expression (&exp);
2807 SKIP_WHITESPACE ();
2808 if (*input_line_pointer == ',')
2810 ++input_line_pointer;
2811 expression (&val);
2813 else
2815 val.X_op = O_constant;
2816 val.X_add_number = 0;
2819 if (val.X_op != O_constant
2820 || val.X_add_number < - 0x80
2821 || val.X_add_number > 0xff
2822 || (mult != 0 && mult != 1 && val.X_add_number != 0))
2824 if (exp.X_op != O_constant)
2825 as_bad (_("unsupported variable size or fill value"));
2826 else
2828 offsetT i;
2830 if (mult == 0)
2831 mult = 1;
2832 bytes = mult * exp.X_add_number;
2833 for (i = 0; i < exp.X_add_number; i++)
2834 emit_expr (&val, mult);
2837 else
2839 if (exp.X_op == O_constant)
2841 long repeat;
2843 repeat = exp.X_add_number;
2844 if (mult)
2845 repeat *= mult;
2846 bytes = repeat;
2847 if (repeat <= 0)
2849 if (!flag_mri)
2850 as_warn (_(".space repeat count is zero, ignored"));
2851 else if (repeat < 0)
2852 as_warn (_(".space repeat count is negative, ignored"));
2853 goto getout;
2856 /* If we are in the absolute section, just bump the offset. */
2857 if (now_seg == absolute_section)
2859 abs_section_offset += repeat;
2860 goto getout;
2863 /* If we are secretly in an MRI common section, then
2864 creating space just increases the size of the common
2865 symbol. */
2866 if (mri_common_symbol != NULL)
2868 S_SET_VALUE (mri_common_symbol,
2869 S_GET_VALUE (mri_common_symbol) + repeat);
2870 goto getout;
2873 if (!need_pass_2)
2874 p = frag_var (rs_fill, 1, 1, (relax_substateT) 0, (symbolS *) 0,
2875 (offsetT) repeat, (char *) 0);
2877 else
2879 if (now_seg == absolute_section)
2881 as_bad (_("space allocation too complex in absolute section"));
2882 subseg_set (text_section, 0);
2885 if (mri_common_symbol != NULL)
2887 as_bad (_("space allocation too complex in common section"));
2888 mri_common_symbol = NULL;
2891 if (!need_pass_2)
2892 p = frag_var (rs_space, 1, 1, (relax_substateT) 0,
2893 make_expr_symbol (&exp), (offsetT) 0, (char *) 0);
2896 if (p)
2897 *p = val.X_add_number;
2900 getout:
2902 /* In MRI mode, after an odd number of bytes, we must align to an
2903 even word boundary, unless the next instruction is a dc.b, ds.b
2904 or dcb.b. */
2905 if (flag_mri && (bytes & 1) != 0)
2906 mri_pending_align = 1;
2908 demand_empty_rest_of_line ();
2910 if (flag_mri)
2911 mri_comment_end (stop, stopc);
2914 /* This is like s_space, but the value is a floating point number with
2915 the given precision. This is for the MRI dcb.s pseudo-op and
2916 friends. */
2918 void
2919 s_float_space (int float_type)
2921 offsetT count;
2922 int flen;
2923 char temp[MAXIMUM_NUMBER_OF_CHARS_FOR_FLOAT];
2924 char *stop = NULL;
2925 char stopc;
2927 if (flag_mri)
2928 stop = mri_comment_field (&stopc);
2930 count = get_absolute_expression ();
2932 SKIP_WHITESPACE ();
2933 if (*input_line_pointer != ',')
2935 as_bad (_("missing value"));
2936 ignore_rest_of_line ();
2937 if (flag_mri)
2938 mri_comment_end (stop, stopc);
2939 return;
2942 ++input_line_pointer;
2944 SKIP_WHITESPACE ();
2946 /* Skip any 0{letter} that may be present. Don't even check if the
2947 * letter is legal. */
2948 if (input_line_pointer[0] == '0'
2949 && ISALPHA (input_line_pointer[1]))
2950 input_line_pointer += 2;
2952 /* Accept :xxxx, where the x's are hex digits, for a floating point
2953 with the exact digits specified. */
2954 if (input_line_pointer[0] == ':')
2956 flen = hex_float (float_type, temp);
2957 if (flen < 0)
2959 ignore_rest_of_line ();
2960 if (flag_mri)
2961 mri_comment_end (stop, stopc);
2962 return;
2965 else
2967 char *err;
2969 err = md_atof (float_type, temp, &flen);
2970 know (flen <= MAXIMUM_NUMBER_OF_CHARS_FOR_FLOAT);
2971 know (flen > 0);
2972 if (err)
2974 as_bad (_("bad floating literal: %s"), err);
2975 ignore_rest_of_line ();
2976 if (flag_mri)
2977 mri_comment_end (stop, stopc);
2978 return;
2982 while (--count >= 0)
2984 char *p;
2986 p = frag_more (flen);
2987 memcpy (p, temp, (unsigned int) flen);
2990 demand_empty_rest_of_line ();
2992 if (flag_mri)
2993 mri_comment_end (stop, stopc);
2996 /* Handle the .struct pseudo-op, as found in MIPS assemblers. */
2998 void
2999 s_struct (int ignore ATTRIBUTE_UNUSED)
3001 char *stop = NULL;
3002 char stopc;
3004 if (flag_mri)
3005 stop = mri_comment_field (&stopc);
3006 abs_section_offset = get_absolute_expression ();
3007 subseg_set (absolute_section, 0);
3008 demand_empty_rest_of_line ();
3009 if (flag_mri)
3010 mri_comment_end (stop, stopc);
3013 void
3014 s_text (int ignore ATTRIBUTE_UNUSED)
3016 register int temp;
3018 temp = get_absolute_expression ();
3019 subseg_set (text_section, (subsegT) temp);
3020 demand_empty_rest_of_line ();
3021 #ifdef OBJ_VMS
3022 const_flag &= ~IN_DEFAULT_SECTION;
3023 #endif
3027 /* Verify that we are at the end of a line. If not, issue an error and
3028 skip to EOL. */
3030 void
3031 demand_empty_rest_of_line (void)
3033 SKIP_WHITESPACE ();
3034 if (is_end_of_line[(unsigned char) *input_line_pointer])
3035 input_line_pointer++;
3036 else
3038 if (ISPRINT (*input_line_pointer))
3039 as_bad (_("junk at end of line, first unrecognized character is `%c'"),
3040 *input_line_pointer);
3041 else
3042 as_bad (_("junk at end of line, first unrecognized character valued 0x%x"),
3043 *input_line_pointer);
3044 ignore_rest_of_line ();
3047 /* Return pointing just after end-of-line. */
3048 know (is_end_of_line[(unsigned char) input_line_pointer[-1]]);
3051 /* Silently advance to the end of line. Use this after already having
3052 issued an error about something bad. */
3054 void
3055 ignore_rest_of_line (void)
3057 while (input_line_pointer < buffer_limit
3058 && !is_end_of_line[(unsigned char) *input_line_pointer])
3059 input_line_pointer++;
3061 input_line_pointer++;
3063 /* Return pointing just after end-of-line. */
3064 know (is_end_of_line[(unsigned char) input_line_pointer[-1]]);
3067 void
3068 discard_rest_of_line (void)
3070 while (input_line_pointer < buffer_limit
3071 && !is_end_of_line[(unsigned char) *input_line_pointer])
3072 input_line_pointer++;
3074 input_line_pointer++;
3076 /* Return pointing just after end-of-line. */
3077 know (is_end_of_line[(unsigned char) input_line_pointer[-1]]);
3080 /* In: Pointer to a symbol.
3081 Input_line_pointer->expression.
3083 Out: Input_line_pointer->just after any whitespace after expression.
3084 Tried to set symbol to value of expression.
3085 Will change symbols type, value, and frag; */
3087 void
3088 pseudo_set (symbolS *symbolP)
3090 expressionS exp;
3091 #if (defined (OBJ_AOUT) || defined (OBJ_BOUT)) && ! defined (BFD_ASSEMBLER)
3092 int ext;
3093 #endif /* OBJ_AOUT or OBJ_BOUT */
3095 know (symbolP); /* NULL pointer is logic error. */
3096 #if (defined (OBJ_AOUT) || defined (OBJ_BOUT)) && ! defined (BFD_ASSEMBLER)
3097 ext = S_IS_EXTERNAL (symbolP);
3098 #endif /* OBJ_AOUT or OBJ_BOUT */
3100 (void) expression (&exp);
3102 if (exp.X_op == O_illegal)
3103 as_bad (_("illegal expression"));
3104 else if (exp.X_op == O_absent)
3105 as_bad (_("missing expression"));
3106 else if (exp.X_op == O_big)
3108 if (exp.X_add_number > 0)
3109 as_bad (_("bignum invalid"));
3110 else
3111 as_bad (_("floating point number invalid"));
3113 else if (exp.X_op == O_subtract
3114 && SEG_NORMAL (S_GET_SEGMENT (exp.X_add_symbol))
3115 && (symbol_get_frag (exp.X_add_symbol)
3116 == symbol_get_frag (exp.X_op_symbol)))
3118 exp.X_op = O_constant;
3119 exp.X_add_number = (S_GET_VALUE (exp.X_add_symbol)
3120 - S_GET_VALUE (exp.X_op_symbol));
3123 switch (exp.X_op)
3125 case O_illegal:
3126 case O_absent:
3127 case O_big:
3128 exp.X_add_number = 0;
3129 /* Fall through. */
3130 case O_constant:
3131 S_SET_SEGMENT (symbolP, absolute_section);
3132 #if (defined (OBJ_AOUT) || defined (OBJ_BOUT)) && ! defined (BFD_ASSEMBLER)
3133 if (ext)
3134 S_SET_EXTERNAL (symbolP);
3135 else
3136 S_CLEAR_EXTERNAL (symbolP);
3137 #endif /* OBJ_AOUT or OBJ_BOUT */
3138 S_SET_VALUE (symbolP, (valueT) exp.X_add_number);
3139 if (exp.X_op != O_constant)
3140 symbol_set_frag (symbolP, &zero_address_frag);
3141 break;
3143 case O_register:
3144 S_SET_SEGMENT (symbolP, reg_section);
3145 S_SET_VALUE (symbolP, (valueT) exp.X_add_number);
3146 symbol_set_frag (symbolP, &zero_address_frag);
3147 break;
3149 case O_symbol:
3150 if (S_GET_SEGMENT (exp.X_add_symbol) == undefined_section
3151 || exp.X_add_number != 0)
3152 symbol_set_value_expression (symbolP, &exp);
3153 else if (symbol_section_p (symbolP))
3154 as_bad ("attempt to set value of section symbol");
3155 else
3157 symbolS *s = exp.X_add_symbol;
3159 S_SET_SEGMENT (symbolP, S_GET_SEGMENT (s));
3160 #if (defined (OBJ_AOUT) || defined (OBJ_BOUT)) && ! defined (BFD_ASSEMBLER)
3161 if (ext)
3162 S_SET_EXTERNAL (symbolP);
3163 else
3164 S_CLEAR_EXTERNAL (symbolP);
3165 #endif /* OBJ_AOUT or OBJ_BOUT */
3166 S_SET_VALUE (symbolP,
3167 exp.X_add_number + S_GET_VALUE (s));
3168 symbol_set_frag (symbolP, symbol_get_frag (s));
3169 copy_symbol_attributes (symbolP, s);
3171 break;
3173 default:
3174 /* The value is some complex expression.
3175 FIXME: Should we set the segment to anything? */
3176 symbol_set_value_expression (symbolP, &exp);
3177 break;
3181 /* cons()
3183 CONStruct more frag of .bytes, or .words etc.
3184 Should need_pass_2 be 1 then emit no frag(s).
3185 This understands EXPRESSIONS.
3187 Bug (?)
3189 This has a split personality. We use expression() to read the
3190 value. We can detect if the value won't fit in a byte or word.
3191 But we can't detect if expression() discarded significant digits
3192 in the case of a long. Not worth the crocks required to fix it. */
3194 /* Select a parser for cons expressions. */
3196 /* Some targets need to parse the expression in various fancy ways.
3197 You can define TC_PARSE_CONS_EXPRESSION to do whatever you like
3198 (for example, the HPPA does this). Otherwise, you can define
3199 BITFIELD_CONS_EXPRESSIONS to permit bitfields to be specified, or
3200 REPEAT_CONS_EXPRESSIONS to permit repeat counts. If none of these
3201 are defined, which is the normal case, then only simple expressions
3202 are permitted. */
3204 #ifdef TC_M68K
3205 static void
3206 parse_mri_cons (expressionS *exp, unsigned int nbytes);
3207 #endif
3209 #ifndef TC_PARSE_CONS_EXPRESSION
3210 #ifdef BITFIELD_CONS_EXPRESSIONS
3211 #define TC_PARSE_CONS_EXPRESSION(EXP, NBYTES) parse_bitfield_cons (EXP, NBYTES)
3212 static void
3213 parse_bitfield_cons (expressionS *exp, unsigned int nbytes);
3214 #endif
3215 #ifdef REPEAT_CONS_EXPRESSIONS
3216 #define TC_PARSE_CONS_EXPRESSION(EXP, NBYTES) parse_repeat_cons (EXP, NBYTES)
3217 static void
3218 parse_repeat_cons (expressionS *exp, unsigned int nbytes);
3219 #endif
3221 /* If we haven't gotten one yet, just call expression. */
3222 #ifndef TC_PARSE_CONS_EXPRESSION
3223 #define TC_PARSE_CONS_EXPRESSION(EXP, NBYTES) expression (EXP)
3224 #endif
3225 #endif
3227 void
3228 do_parse_cons_expression (expressionS *exp,
3229 int nbytes ATTRIBUTE_UNUSED)
3231 TC_PARSE_CONS_EXPRESSION (exp, nbytes);
3235 /* Worker to do .byte etc statements.
3236 Clobbers input_line_pointer and checks end-of-line. */
3238 static void
3239 cons_worker (register int nbytes, /* 1=.byte, 2=.word, 4=.long. */
3240 int rva)
3242 int c;
3243 expressionS exp;
3244 char *stop = NULL;
3245 char stopc;
3247 #ifdef md_flush_pending_output
3248 md_flush_pending_output ();
3249 #endif
3251 if (flag_mri)
3252 stop = mri_comment_field (&stopc);
3254 if (is_it_end_of_statement ())
3256 demand_empty_rest_of_line ();
3257 if (flag_mri)
3258 mri_comment_end (stop, stopc);
3259 return;
3262 #ifdef md_cons_align
3263 md_cons_align (nbytes);
3264 #endif
3266 c = 0;
3269 #ifdef TC_M68K
3270 if (flag_m68k_mri)
3271 parse_mri_cons (&exp, (unsigned int) nbytes);
3272 else
3273 #endif
3274 TC_PARSE_CONS_EXPRESSION (&exp, (unsigned int) nbytes);
3276 if (rva)
3278 if (exp.X_op == O_symbol)
3279 exp.X_op = O_symbol_rva;
3280 else
3281 as_fatal (_("rva without symbol"));
3283 emit_expr (&exp, (unsigned int) nbytes);
3284 ++c;
3286 while (*input_line_pointer++ == ',');
3288 /* In MRI mode, after an odd number of bytes, we must align to an
3289 even word boundary, unless the next instruction is a dc.b, ds.b
3290 or dcb.b. */
3291 if (flag_mri && nbytes == 1 && (c & 1) != 0)
3292 mri_pending_align = 1;
3294 input_line_pointer--; /* Put terminator back into stream. */
3296 demand_empty_rest_of_line ();
3298 if (flag_mri)
3299 mri_comment_end (stop, stopc);
3302 void
3303 cons (int size)
3305 cons_worker (size, 0);
3308 void
3309 s_rva (int size)
3311 cons_worker (size, 1);
3314 /* Put the contents of expression EXP into the object file using
3315 NBYTES bytes. If need_pass_2 is 1, this does nothing. */
3317 void
3318 emit_expr (expressionS *exp, unsigned int nbytes)
3320 operatorT op;
3321 register char *p;
3322 valueT extra_digit = 0;
3324 /* Don't do anything if we are going to make another pass. */
3325 if (need_pass_2)
3326 return;
3328 dot_value = frag_now_fix ();
3330 #ifndef NO_LISTING
3331 #ifdef OBJ_ELF
3332 /* When gcc emits DWARF 1 debugging pseudo-ops, a line number will
3333 appear as a four byte positive constant in the .line section,
3334 followed by a 2 byte 0xffff. Look for that case here. */
3336 static int dwarf_line = -1;
3338 if (strcmp (segment_name (now_seg), ".line") != 0)
3339 dwarf_line = -1;
3340 else if (dwarf_line >= 0
3341 && nbytes == 2
3342 && exp->X_op == O_constant
3343 && (exp->X_add_number == -1 || exp->X_add_number == 0xffff))
3344 listing_source_line ((unsigned int) dwarf_line);
3345 else if (nbytes == 4
3346 && exp->X_op == O_constant
3347 && exp->X_add_number >= 0)
3348 dwarf_line = exp->X_add_number;
3349 else
3350 dwarf_line = -1;
3353 /* When gcc emits DWARF 1 debugging pseudo-ops, a file name will
3354 appear as a 2 byte TAG_compile_unit (0x11) followed by a 2 byte
3355 AT_sibling (0x12) followed by a four byte address of the sibling
3356 followed by a 2 byte AT_name (0x38) followed by the name of the
3357 file. We look for that case here. */
3359 static int dwarf_file = 0;
3361 if (strcmp (segment_name (now_seg), ".debug") != 0)
3362 dwarf_file = 0;
3363 else if (dwarf_file == 0
3364 && nbytes == 2
3365 && exp->X_op == O_constant
3366 && exp->X_add_number == 0x11)
3367 dwarf_file = 1;
3368 else if (dwarf_file == 1
3369 && nbytes == 2
3370 && exp->X_op == O_constant
3371 && exp->X_add_number == 0x12)
3372 dwarf_file = 2;
3373 else if (dwarf_file == 2
3374 && nbytes == 4)
3375 dwarf_file = 3;
3376 else if (dwarf_file == 3
3377 && nbytes == 2
3378 && exp->X_op == O_constant
3379 && exp->X_add_number == 0x38)
3380 dwarf_file = 4;
3381 else
3382 dwarf_file = 0;
3384 /* The variable dwarf_file_string tells stringer that the string
3385 may be the name of the source file. */
3386 if (dwarf_file == 4)
3387 dwarf_file_string = 1;
3388 else
3389 dwarf_file_string = 0;
3391 #endif
3392 #endif
3394 if (check_eh_frame (exp, &nbytes))
3395 return;
3397 op = exp->X_op;
3399 /* Allow `.word 0' in the absolute section. */
3400 if (now_seg == absolute_section)
3402 if (op != O_constant || exp->X_add_number != 0)
3403 as_bad (_("attempt to store value in absolute section"));
3404 abs_section_offset += nbytes;
3405 return;
3408 /* Handle a negative bignum. */
3409 if (op == O_uminus
3410 && exp->X_add_number == 0
3411 && symbol_get_value_expression (exp->X_add_symbol)->X_op == O_big
3412 && symbol_get_value_expression (exp->X_add_symbol)->X_add_number > 0)
3414 int i;
3415 unsigned long carry;
3417 exp = symbol_get_value_expression (exp->X_add_symbol);
3419 /* Negate the bignum: one's complement each digit and add 1. */
3420 carry = 1;
3421 for (i = 0; i < exp->X_add_number; i++)
3423 unsigned long next;
3425 next = (((~(generic_bignum[i] & LITTLENUM_MASK))
3426 & LITTLENUM_MASK)
3427 + carry);
3428 generic_bignum[i] = next & LITTLENUM_MASK;
3429 carry = next >> LITTLENUM_NUMBER_OF_BITS;
3432 /* We can ignore any carry out, because it will be handled by
3433 extra_digit if it is needed. */
3435 extra_digit = (valueT) -1;
3436 op = O_big;
3439 if (op == O_absent || op == O_illegal)
3441 as_warn (_("zero assumed for missing expression"));
3442 exp->X_add_number = 0;
3443 op = O_constant;
3445 else if (op == O_big && exp->X_add_number <= 0)
3447 as_bad (_("floating point number invalid"));
3448 exp->X_add_number = 0;
3449 op = O_constant;
3451 else if (op == O_register)
3453 as_warn (_("register value used as expression"));
3454 op = O_constant;
3457 p = frag_more ((int) nbytes);
3459 #ifndef WORKING_DOT_WORD
3460 /* If we have the difference of two symbols in a word, save it on
3461 the broken_words list. See the code in write.c. */
3462 if (op == O_subtract && nbytes == 2)
3464 struct broken_word *x;
3466 x = (struct broken_word *) xmalloc (sizeof (struct broken_word));
3467 x->next_broken_word = broken_words;
3468 broken_words = x;
3469 x->seg = now_seg;
3470 x->subseg = now_subseg;
3471 x->frag = frag_now;
3472 x->word_goes_here = p;
3473 x->dispfrag = 0;
3474 x->add = exp->X_add_symbol;
3475 x->sub = exp->X_op_symbol;
3476 x->addnum = exp->X_add_number;
3477 x->added = 0;
3478 x->use_jump = 0;
3479 new_broken_words++;
3480 return;
3482 #endif
3484 /* If we have an integer, but the number of bytes is too large to
3485 pass to md_number_to_chars, handle it as a bignum. */
3486 if (op == O_constant && nbytes > sizeof (valueT))
3488 valueT val;
3489 int gencnt;
3491 if (!exp->X_unsigned && exp->X_add_number < 0)
3492 extra_digit = (valueT) -1;
3493 val = (valueT) exp->X_add_number;
3494 gencnt = 0;
3497 generic_bignum[gencnt] = val & LITTLENUM_MASK;
3498 val >>= LITTLENUM_NUMBER_OF_BITS;
3499 ++gencnt;
3501 while (val != 0);
3502 op = exp->X_op = O_big;
3503 exp->X_add_number = gencnt;
3506 if (op == O_constant)
3508 register valueT get;
3509 register valueT use;
3510 register valueT mask;
3511 valueT hibit;
3512 register valueT unmask;
3514 /* JF << of >= number of bits in the object is undefined. In
3515 particular SPARC (Sun 4) has problems. */
3516 if (nbytes >= sizeof (valueT))
3518 mask = 0;
3519 if (nbytes > sizeof (valueT))
3520 hibit = 0;
3521 else
3522 hibit = (valueT) 1 << (nbytes * BITS_PER_CHAR - 1);
3524 else
3526 /* Don't store these bits. */
3527 mask = ~(valueT) 0 << (BITS_PER_CHAR * nbytes);
3528 hibit = (valueT) 1 << (nbytes * BITS_PER_CHAR - 1);
3531 unmask = ~mask; /* Do store these bits. */
3533 #ifdef NEVER
3534 "Do this mod if you want every overflow check to assume SIGNED 2's complement data.";
3535 mask = ~(unmask >> 1); /* Includes sign bit now. */
3536 #endif
3538 get = exp->X_add_number;
3539 use = get & unmask;
3540 if ((get & mask) != 0
3541 && ((get & mask) != mask
3542 || (get & hibit) == 0))
3543 { /* Leading bits contain both 0s & 1s. */
3544 as_warn (_("value 0x%lx truncated to 0x%lx"),
3545 (unsigned long) get, (unsigned long) use);
3547 /* Put bytes in right order. */
3548 md_number_to_chars (p, use, (int) nbytes);
3550 else if (op == O_big)
3552 unsigned int size;
3553 LITTLENUM_TYPE *nums;
3555 know (nbytes % CHARS_PER_LITTLENUM == 0);
3557 size = exp->X_add_number * CHARS_PER_LITTLENUM;
3558 if (nbytes < size)
3560 as_warn (_("bignum truncated to %d bytes"), nbytes);
3561 size = nbytes;
3564 if (target_big_endian)
3566 while (nbytes > size)
3568 md_number_to_chars (p, extra_digit, CHARS_PER_LITTLENUM);
3569 nbytes -= CHARS_PER_LITTLENUM;
3570 p += CHARS_PER_LITTLENUM;
3573 nums = generic_bignum + size / CHARS_PER_LITTLENUM;
3574 while (size >= CHARS_PER_LITTLENUM)
3576 --nums;
3577 md_number_to_chars (p, (valueT) *nums, CHARS_PER_LITTLENUM);
3578 size -= CHARS_PER_LITTLENUM;
3579 p += CHARS_PER_LITTLENUM;
3582 else
3584 nums = generic_bignum;
3585 while (size >= CHARS_PER_LITTLENUM)
3587 md_number_to_chars (p, (valueT) *nums, CHARS_PER_LITTLENUM);
3588 ++nums;
3589 size -= CHARS_PER_LITTLENUM;
3590 p += CHARS_PER_LITTLENUM;
3591 nbytes -= CHARS_PER_LITTLENUM;
3594 while (nbytes >= CHARS_PER_LITTLENUM)
3596 md_number_to_chars (p, extra_digit, CHARS_PER_LITTLENUM);
3597 nbytes -= CHARS_PER_LITTLENUM;
3598 p += CHARS_PER_LITTLENUM;
3602 else
3604 memset (p, 0, nbytes);
3606 /* Now we need to generate a fixS to record the symbol value.
3607 This is easy for BFD. For other targets it can be more
3608 complex. For very complex cases (currently, the HPPA and
3609 NS32K), you can define TC_CONS_FIX_NEW to do whatever you
3610 want. For simpler cases, you can define TC_CONS_RELOC to be
3611 the name of the reloc code that should be stored in the fixS.
3612 If neither is defined, the code uses NO_RELOC if it is
3613 defined, and otherwise uses 0. */
3615 #ifdef BFD_ASSEMBLER
3616 #ifdef TC_CONS_FIX_NEW
3617 TC_CONS_FIX_NEW (frag_now, p - frag_now->fr_literal, nbytes, exp);
3618 #else
3620 bfd_reloc_code_real_type r;
3622 switch (nbytes)
3624 case 1:
3625 r = BFD_RELOC_8;
3626 break;
3627 case 2:
3628 r = BFD_RELOC_16;
3629 break;
3630 case 4:
3631 r = BFD_RELOC_32;
3632 break;
3633 case 8:
3634 r = BFD_RELOC_64;
3635 break;
3636 default:
3637 as_bad (_("unsupported BFD relocation size %u"), nbytes);
3638 r = BFD_RELOC_32;
3639 break;
3641 fix_new_exp (frag_now, p - frag_now->fr_literal, (int) nbytes, exp,
3642 0, r);
3644 #endif
3645 #else
3646 #ifdef TC_CONS_FIX_NEW
3647 TC_CONS_FIX_NEW (frag_now, p - frag_now->fr_literal, nbytes, exp);
3648 #else
3649 /* Figure out which reloc number to use. Use TC_CONS_RELOC if
3650 it is defined, otherwise use NO_RELOC if it is defined,
3651 otherwise use 0. */
3652 #ifndef TC_CONS_RELOC
3653 #ifdef NO_RELOC
3654 #define TC_CONS_RELOC NO_RELOC
3655 #else
3656 #define TC_CONS_RELOC 0
3657 #endif
3658 #endif
3659 fix_new_exp (frag_now, p - frag_now->fr_literal, (int) nbytes, exp, 0,
3660 TC_CONS_RELOC);
3661 #endif /* TC_CONS_FIX_NEW */
3662 #endif /* BFD_ASSEMBLER */
3666 #ifdef BITFIELD_CONS_EXPRESSIONS
3668 /* i960 assemblers, (eg, asm960), allow bitfields after ".byte" as
3669 w:x,y:z, where w and y are bitwidths and x and y are values. They
3670 then pack them all together. We do a little better in that we allow
3671 them in words, longs, etc. and we'll pack them in target byte order
3672 for you.
3674 The rules are: pack least significant bit first, if a field doesn't
3675 entirely fit, put it in the next unit. Overflowing the bitfield is
3676 explicitly *not* even a warning. The bitwidth should be considered
3677 a "mask".
3679 To use this function the tc-XXX.h file should define
3680 BITFIELD_CONS_EXPRESSIONS. */
3682 static void
3683 parse_bitfield_cons (exp, nbytes)
3684 expressionS *exp;
3685 unsigned int nbytes;
3687 unsigned int bits_available = BITS_PER_CHAR * nbytes;
3688 char *hold = input_line_pointer;
3690 (void) expression (exp);
3692 if (*input_line_pointer == ':')
3694 /* Bitfields. */
3695 long value = 0;
3697 for (;;)
3699 unsigned long width;
3701 if (*input_line_pointer != ':')
3703 input_line_pointer = hold;
3704 break;
3705 } /* Next piece is not a bitfield. */
3707 /* In the general case, we can't allow
3708 full expressions with symbol
3709 differences and such. The relocation
3710 entries for symbols not defined in this
3711 assembly would require arbitrary field
3712 widths, positions, and masks which most
3713 of our current object formats don't
3714 support.
3716 In the specific case where a symbol
3717 *is* defined in this assembly, we
3718 *could* build fixups and track it, but
3719 this could lead to confusion for the
3720 backends. I'm lazy. I'll take any
3721 SEG_ABSOLUTE. I think that means that
3722 you can use a previous .set or
3723 .equ type symbol. xoxorich. */
3725 if (exp->X_op == O_absent)
3727 as_warn (_("using a bit field width of zero"));
3728 exp->X_add_number = 0;
3729 exp->X_op = O_constant;
3730 } /* Implied zero width bitfield. */
3732 if (exp->X_op != O_constant)
3734 *input_line_pointer = '\0';
3735 as_bad (_("field width \"%s\" too complex for a bitfield"), hold);
3736 *input_line_pointer = ':';
3737 demand_empty_rest_of_line ();
3738 return;
3739 } /* Too complex. */
3741 if ((width = exp->X_add_number) > (BITS_PER_CHAR * nbytes))
3743 as_warn (_("field width %lu too big to fit in %d bytes: truncated to %d bits"),
3744 width, nbytes, (BITS_PER_CHAR * nbytes));
3745 width = BITS_PER_CHAR * nbytes;
3746 } /* Too big. */
3748 if (width > bits_available)
3750 /* FIXME-SOMEDAY: backing up and reparsing is wasteful. */
3751 input_line_pointer = hold;
3752 exp->X_add_number = value;
3753 break;
3754 } /* Won't fit. */
3756 /* Skip ':'. */
3757 hold = ++input_line_pointer;
3759 (void) expression (exp);
3760 if (exp->X_op != O_constant)
3762 char cache = *input_line_pointer;
3764 *input_line_pointer = '\0';
3765 as_bad (_("field value \"%s\" too complex for a bitfield"), hold);
3766 *input_line_pointer = cache;
3767 demand_empty_rest_of_line ();
3768 return;
3769 } /* Too complex. */
3771 value |= ((~(-1 << width) & exp->X_add_number)
3772 << ((BITS_PER_CHAR * nbytes) - bits_available));
3774 if ((bits_available -= width) == 0
3775 || is_it_end_of_statement ()
3776 || *input_line_pointer != ',')
3778 break;
3779 } /* All the bitfields we're gonna get. */
3781 hold = ++input_line_pointer;
3782 (void) expression (exp);
3785 exp->X_add_number = value;
3786 exp->X_op = O_constant;
3787 exp->X_unsigned = 1;
3791 #endif /* BITFIELD_CONS_EXPRESSIONS */
3793 /* Handle an MRI style string expression. */
3795 #ifdef TC_M68K
3796 static void
3797 parse_mri_cons (exp, nbytes)
3798 expressionS *exp;
3799 unsigned int nbytes;
3801 if (*input_line_pointer != '\''
3802 && (input_line_pointer[1] != '\''
3803 || (*input_line_pointer != 'A'
3804 && *input_line_pointer != 'E')))
3805 TC_PARSE_CONS_EXPRESSION (exp, nbytes);
3806 else
3808 unsigned int scan;
3809 unsigned int result = 0;
3811 /* An MRI style string. Cut into as many bytes as will fit into
3812 a nbyte chunk, left justify if necessary, and separate with
3813 commas so we can try again later. */
3814 if (*input_line_pointer == 'A')
3815 ++input_line_pointer;
3816 else if (*input_line_pointer == 'E')
3818 as_bad (_("EBCDIC constants are not supported"));
3819 ++input_line_pointer;
3822 input_line_pointer++;
3823 for (scan = 0; scan < nbytes; scan++)
3825 if (*input_line_pointer == '\'')
3827 if (input_line_pointer[1] == '\'')
3829 input_line_pointer++;
3831 else
3832 break;
3834 result = (result << 8) | (*input_line_pointer++);
3837 /* Left justify. */
3838 while (scan < nbytes)
3840 result <<= 8;
3841 scan++;
3844 /* Create correct expression. */
3845 exp->X_op = O_constant;
3846 exp->X_add_number = result;
3848 /* Fake it so that we can read the next char too. */
3849 if (input_line_pointer[0] != '\'' ||
3850 (input_line_pointer[0] == '\'' && input_line_pointer[1] == '\''))
3852 input_line_pointer -= 2;
3853 input_line_pointer[0] = ',';
3854 input_line_pointer[1] = '\'';
3856 else
3857 input_line_pointer++;
3860 #endif /* TC_M68K */
3862 #ifdef REPEAT_CONS_EXPRESSIONS
3864 /* Parse a repeat expression for cons. This is used by the MIPS
3865 assembler. The format is NUMBER:COUNT; NUMBER appears in the
3866 object file COUNT times.
3868 To use this for a target, define REPEAT_CONS_EXPRESSIONS. */
3870 static void
3871 parse_repeat_cons (exp, nbytes)
3872 expressionS *exp;
3873 unsigned int nbytes;
3875 expressionS count;
3876 register int i;
3878 expression (exp);
3880 if (*input_line_pointer != ':')
3882 /* No repeat count. */
3883 return;
3886 ++input_line_pointer;
3887 expression (&count);
3888 if (count.X_op != O_constant
3889 || count.X_add_number <= 0)
3891 as_warn (_("unresolvable or nonpositive repeat count; using 1"));
3892 return;
3895 /* The cons function is going to output this expression once. So we
3896 output it count - 1 times. */
3897 for (i = count.X_add_number - 1; i > 0; i--)
3898 emit_expr (exp, nbytes);
3901 #endif /* REPEAT_CONS_EXPRESSIONS */
3903 /* Parse a floating point number represented as a hex constant. This
3904 permits users to specify the exact bits they want in the floating
3905 point number. */
3907 static int
3908 hex_float (int float_type, char *bytes)
3910 int length;
3911 int i;
3913 switch (float_type)
3915 case 'f':
3916 case 'F':
3917 case 's':
3918 case 'S':
3919 length = 4;
3920 break;
3922 case 'd':
3923 case 'D':
3924 case 'r':
3925 case 'R':
3926 length = 8;
3927 break;
3929 case 'x':
3930 case 'X':
3931 length = 12;
3932 break;
3934 case 'p':
3935 case 'P':
3936 length = 12;
3937 break;
3939 default:
3940 as_bad (_("unknown floating type type '%c'"), float_type);
3941 return -1;
3944 /* It would be nice if we could go through expression to parse the
3945 hex constant, but if we get a bignum it's a pain to sort it into
3946 the buffer correctly. */
3947 i = 0;
3948 while (hex_p (*input_line_pointer) || *input_line_pointer == '_')
3950 int d;
3952 /* The MRI assembler accepts arbitrary underscores strewn about
3953 through the hex constant, so we ignore them as well. */
3954 if (*input_line_pointer == '_')
3956 ++input_line_pointer;
3957 continue;
3960 if (i >= length)
3962 as_warn (_("floating point constant too large"));
3963 return -1;
3965 d = hex_value (*input_line_pointer) << 4;
3966 ++input_line_pointer;
3967 while (*input_line_pointer == '_')
3968 ++input_line_pointer;
3969 if (hex_p (*input_line_pointer))
3971 d += hex_value (*input_line_pointer);
3972 ++input_line_pointer;
3974 if (target_big_endian)
3975 bytes[i] = d;
3976 else
3977 bytes[length - i - 1] = d;
3978 ++i;
3981 if (i < length)
3983 if (target_big_endian)
3984 memset (bytes + i, 0, length - i);
3985 else
3986 memset (bytes, 0, length - i);
3989 return length;
3992 /* float_cons()
3994 CONStruct some more frag chars of .floats .ffloats etc.
3995 Makes 0 or more new frags.
3996 If need_pass_2 == 1, no frags are emitted.
3997 This understands only floating literals, not expressions. Sorry.
3999 A floating constant is defined by atof_generic(), except it is preceded
4000 by 0d 0f 0g or 0h. After observing the STRANGE way my BSD AS does its
4001 reading, I decided to be incompatible. This always tries to give you
4002 rounded bits to the precision of the pseudo-op. Former AS did premature
4003 truncation, restored noisy bits instead of trailing 0s AND gave you
4004 a choice of 2 flavours of noise according to which of 2 floating-point
4005 scanners you directed AS to use.
4007 In: input_line_pointer->whitespace before, or '0' of flonum. */
4009 void
4010 float_cons (/* Clobbers input_line-pointer, checks end-of-line. */
4011 register int float_type /* 'f':.ffloat ... 'F':.float ... */)
4013 register char *p;
4014 int length; /* Number of chars in an object. */
4015 register char *err; /* Error from scanning floating literal. */
4016 char temp[MAXIMUM_NUMBER_OF_CHARS_FOR_FLOAT];
4018 if (is_it_end_of_statement ())
4020 demand_empty_rest_of_line ();
4021 return;
4024 #ifdef md_flush_pending_output
4025 md_flush_pending_output ();
4026 #endif
4030 /* input_line_pointer->1st char of a flonum (we hope!). */
4031 SKIP_WHITESPACE ();
4033 /* Skip any 0{letter} that may be present. Don't even check if the
4034 letter is legal. Someone may invent a "z" format and this routine
4035 has no use for such information. Lusers beware: you get
4036 diagnostics if your input is ill-conditioned. */
4037 if (input_line_pointer[0] == '0'
4038 && ISALPHA (input_line_pointer[1]))
4039 input_line_pointer += 2;
4041 /* Accept :xxxx, where the x's are hex digits, for a floating
4042 point with the exact digits specified. */
4043 if (input_line_pointer[0] == ':')
4045 ++input_line_pointer;
4046 length = hex_float (float_type, temp);
4047 if (length < 0)
4049 ignore_rest_of_line ();
4050 return;
4053 else
4055 err = md_atof (float_type, temp, &length);
4056 know (length <= MAXIMUM_NUMBER_OF_CHARS_FOR_FLOAT);
4057 know (length > 0);
4058 if (err)
4060 as_bad (_("bad floating literal: %s"), err);
4061 ignore_rest_of_line ();
4062 return;
4066 if (!need_pass_2)
4068 int count;
4070 count = 1;
4072 #ifdef REPEAT_CONS_EXPRESSIONS
4073 if (*input_line_pointer == ':')
4075 expressionS count_exp;
4077 ++input_line_pointer;
4078 expression (&count_exp);
4080 if (count_exp.X_op != O_constant
4081 || count_exp.X_add_number <= 0)
4082 as_warn (_("unresolvable or nonpositive repeat count; using 1"));
4083 else
4084 count = count_exp.X_add_number;
4086 #endif
4088 while (--count >= 0)
4090 p = frag_more (length);
4091 memcpy (p, temp, (unsigned int) length);
4094 SKIP_WHITESPACE ();
4096 while (*input_line_pointer++ == ',');
4098 /* Put terminator back into stream. */
4099 --input_line_pointer;
4100 demand_empty_rest_of_line ();
4103 /* Return the size of a LEB128 value. */
4105 static inline int
4106 sizeof_sleb128 (offsetT value)
4108 register int size = 0;
4109 register unsigned byte;
4113 byte = (value & 0x7f);
4114 /* Sadly, we cannot rely on typical arithmetic right shift behaviour.
4115 Fortunately, we can structure things so that the extra work reduces
4116 to a noop on systems that do things "properly". */
4117 value = (value >> 7) | ~(-(offsetT)1 >> 7);
4118 size += 1;
4120 while (!(((value == 0) && ((byte & 0x40) == 0))
4121 || ((value == -1) && ((byte & 0x40) != 0))));
4123 return size;
4126 static inline int
4127 sizeof_uleb128 (valueT value)
4129 register int size = 0;
4130 register unsigned byte;
4134 byte = (value & 0x7f);
4135 value >>= 7;
4136 size += 1;
4138 while (value != 0);
4140 return size;
4144 sizeof_leb128 (valueT value, int sign)
4146 if (sign)
4147 return sizeof_sleb128 ((offsetT) value);
4148 else
4149 return sizeof_uleb128 (value);
4152 /* Output a LEB128 value. */
4154 static inline int
4155 output_sleb128 (char *p, offsetT value)
4157 register char *orig = p;
4158 register int more;
4162 unsigned byte = (value & 0x7f);
4164 /* Sadly, we cannot rely on typical arithmetic right shift behaviour.
4165 Fortunately, we can structure things so that the extra work reduces
4166 to a noop on systems that do things "properly". */
4167 value = (value >> 7) | ~(-(offsetT)1 >> 7);
4169 more = !((((value == 0) && ((byte & 0x40) == 0))
4170 || ((value == -1) && ((byte & 0x40) != 0))));
4171 if (more)
4172 byte |= 0x80;
4174 *p++ = byte;
4176 while (more);
4178 return p - orig;
4181 static inline int
4182 output_uleb128 (char *p, valueT value)
4184 char *orig = p;
4188 unsigned byte = (value & 0x7f);
4189 value >>= 7;
4190 if (value != 0)
4191 /* More bytes to follow. */
4192 byte |= 0x80;
4194 *p++ = byte;
4196 while (value != 0);
4198 return p - orig;
4202 output_leb128 (char *p, valueT value, int sign)
4204 if (sign)
4205 return output_sleb128 (p, (offsetT) value);
4206 else
4207 return output_uleb128 (p, value);
4210 /* Do the same for bignums. We combine sizeof with output here in that
4211 we don't output for NULL values of P. It isn't really as critical as
4212 for "normal" values that this be streamlined. */
4214 static inline int
4215 output_big_sleb128 (char *p, LITTLENUM_TYPE *bignum, int size)
4217 char *orig = p;
4218 valueT val = 0;
4219 int loaded = 0;
4220 unsigned byte;
4222 /* Strip leading sign extensions off the bignum. */
4223 while (size > 0 && bignum[size - 1] == (LITTLENUM_TYPE) -1)
4224 size--;
4228 if (loaded < 7 && size > 0)
4230 val |= (*bignum << loaded);
4231 loaded += 8 * CHARS_PER_LITTLENUM;
4232 size--;
4233 bignum++;
4236 byte = val & 0x7f;
4237 loaded -= 7;
4238 val >>= 7;
4240 if (size == 0)
4242 if ((val == 0 && (byte & 0x40) == 0)
4243 || (~(val | ~(((valueT) 1 << loaded) - 1)) == 0
4244 && (byte & 0x40) != 0))
4245 byte |= 0x80;
4248 if (orig)
4249 *p = byte;
4250 p++;
4252 while (byte & 0x80);
4254 return p - orig;
4257 static inline int
4258 output_big_uleb128 (char *p, LITTLENUM_TYPE *bignum, int size)
4260 char *orig = p;
4261 valueT val = 0;
4262 int loaded = 0;
4263 unsigned byte;
4265 /* Strip leading zeros off the bignum. */
4266 /* XXX: Is this needed? */
4267 while (size > 0 && bignum[size - 1] == 0)
4268 size--;
4272 if (loaded < 7 && size > 0)
4274 val |= (*bignum << loaded);
4275 loaded += 8 * CHARS_PER_LITTLENUM;
4276 size--;
4277 bignum++;
4280 byte = val & 0x7f;
4281 loaded -= 7;
4282 val >>= 7;
4284 if (size > 0 || val)
4285 byte |= 0x80;
4287 if (orig)
4288 *p = byte;
4289 p++;
4291 while (byte & 0x80);
4293 return p - orig;
4296 static int
4297 output_big_leb128 (char *p, LITTLENUM_TYPE *bignum, int size, int sign)
4299 if (sign)
4300 return output_big_sleb128 (p, bignum, size);
4301 else
4302 return output_big_uleb128 (p, bignum, size);
4305 /* Generate the appropriate fragments for a given expression to emit a
4306 leb128 value. */
4308 void
4309 emit_leb128_expr (expressionS *exp, int sign)
4311 operatorT op = exp->X_op;
4312 int nbytes;
4314 if (op == O_absent || op == O_illegal)
4316 as_warn (_("zero assumed for missing expression"));
4317 exp->X_add_number = 0;
4318 op = O_constant;
4320 else if (op == O_big && exp->X_add_number <= 0)
4322 as_bad (_("floating point number invalid"));
4323 exp->X_add_number = 0;
4324 op = O_constant;
4326 else if (op == O_register)
4328 as_warn (_("register value used as expression"));
4329 op = O_constant;
4332 /* Let check_eh_frame know that data is being emitted. nbytes == -1 is
4333 a signal that this is leb128 data. It shouldn't optimize this away. */
4334 nbytes = -1;
4335 if (check_eh_frame (exp, &nbytes))
4336 abort ();
4338 /* Let the backend know that subsequent data may be byte aligned. */
4339 #ifdef md_cons_align
4340 md_cons_align (1);
4341 #endif
4343 if (op == O_constant)
4345 /* If we've got a constant, emit the thing directly right now. */
4347 valueT value = exp->X_add_number;
4348 int size;
4349 char *p;
4351 size = sizeof_leb128 (value, sign);
4352 p = frag_more (size);
4353 output_leb128 (p, value, sign);
4355 else if (op == O_big)
4357 /* O_big is a different sort of constant. */
4359 int size;
4360 char *p;
4362 size = output_big_leb128 (NULL, generic_bignum, exp->X_add_number, sign);
4363 p = frag_more (size);
4364 output_big_leb128 (p, generic_bignum, exp->X_add_number, sign);
4366 else
4368 /* Otherwise, we have to create a variable sized fragment and
4369 resolve things later. */
4371 frag_var (rs_leb128, sizeof_uleb128 (~(valueT) 0), 0, sign,
4372 make_expr_symbol (exp), 0, (char *) NULL);
4376 /* Parse the .sleb128 and .uleb128 pseudos. */
4378 void
4379 s_leb128 (int sign)
4381 expressionS exp;
4383 #ifdef md_flush_pending_output
4384 md_flush_pending_output ();
4385 #endif
4389 expression (&exp);
4390 emit_leb128_expr (&exp, sign);
4392 while (*input_line_pointer++ == ',');
4394 input_line_pointer--;
4395 demand_empty_rest_of_line ();
4398 /* We read 0 or more ',' separated, double-quoted strings.
4399 Caller should have checked need_pass_2 is FALSE because we don't
4400 check it. */
4402 void
4403 stringer (/* Worker to do .ascii etc statements. */
4404 /* Checks end-of-line. */
4405 register int append_zero /* 0: don't append '\0', else 1. */)
4407 register unsigned int c;
4408 char *start;
4410 #ifdef md_flush_pending_output
4411 md_flush_pending_output ();
4412 #endif
4414 /* The following awkward logic is to parse ZERO or more strings,
4415 comma separated. Recall a string expression includes spaces
4416 before the opening '\"' and spaces after the closing '\"'.
4417 We fake a leading ',' if there is (supposed to be)
4418 a 1st, expression. We keep demanding expressions for each ','. */
4419 if (is_it_end_of_statement ())
4421 c = 0; /* Skip loop. */
4422 ++input_line_pointer; /* Compensate for end of loop. */
4424 else
4426 c = ','; /* Do loop. */
4428 /* If we have been switched into the abs_section then we
4429 will not have an obstack onto which we can hang strings. */
4430 if (now_seg == absolute_section)
4432 as_bad (_("strings must be placed into a section"));
4433 c = 0;
4434 ignore_rest_of_line ();
4437 while (c == ',' || c == '<' || c == '"')
4439 SKIP_WHITESPACE ();
4440 switch (*input_line_pointer)
4442 case '\"':
4443 ++input_line_pointer; /*->1st char of string. */
4444 start = input_line_pointer;
4445 while (is_a_char (c = next_char_of_string ()))
4447 FRAG_APPEND_1_CHAR (c);
4449 if (append_zero)
4451 FRAG_APPEND_1_CHAR (0);
4453 know (input_line_pointer[-1] == '\"');
4455 #ifndef NO_LISTING
4456 #ifdef OBJ_ELF
4457 /* In ELF, when gcc is emitting DWARF 1 debugging output, it
4458 will emit .string with a filename in the .debug section
4459 after a sequence of constants. See the comment in
4460 emit_expr for the sequence. emit_expr will set
4461 dwarf_file_string to non-zero if this string might be a
4462 source file name. */
4463 if (strcmp (segment_name (now_seg), ".debug") != 0)
4464 dwarf_file_string = 0;
4465 else if (dwarf_file_string)
4467 c = input_line_pointer[-1];
4468 input_line_pointer[-1] = '\0';
4469 listing_source_file (start);
4470 input_line_pointer[-1] = c;
4472 #endif
4473 #endif
4475 break;
4476 case '<':
4477 input_line_pointer++;
4478 c = get_single_number ();
4479 FRAG_APPEND_1_CHAR (c);
4480 if (*input_line_pointer != '>')
4482 as_bad (_("expected <nn>"));
4484 input_line_pointer++;
4485 break;
4486 case ',':
4487 input_line_pointer++;
4488 break;
4490 SKIP_WHITESPACE ();
4491 c = *input_line_pointer;
4494 demand_empty_rest_of_line ();
4495 } /* stringer() */
4497 /* FIXME-SOMEDAY: I had trouble here on characters with the
4498 high bits set. We'll probably also have trouble with
4499 multibyte chars, wide chars, etc. Also be careful about
4500 returning values bigger than 1 byte. xoxorich. */
4502 unsigned int
4503 next_char_of_string (void)
4505 register unsigned int c;
4507 c = *input_line_pointer++ & CHAR_MASK;
4508 switch (c)
4510 case '\"':
4511 c = NOT_A_CHAR;
4512 break;
4514 case '\n':
4515 as_warn (_("unterminated string; newline inserted"));
4516 bump_line_counters ();
4517 break;
4519 #ifndef NO_STRING_ESCAPES
4520 case '\\':
4521 switch (c = *input_line_pointer++)
4523 case 'b':
4524 c = '\b';
4525 break;
4527 case 'f':
4528 c = '\f';
4529 break;
4531 case 'n':
4532 c = '\n';
4533 break;
4535 case 'r':
4536 c = '\r';
4537 break;
4539 case 't':
4540 c = '\t';
4541 break;
4543 case 'v':
4544 c = '\013';
4545 break;
4547 case '\\':
4548 case '"':
4549 break; /* As itself. */
4551 case '0':
4552 case '1':
4553 case '2':
4554 case '3':
4555 case '4':
4556 case '5':
4557 case '6':
4558 case '7':
4559 case '8':
4560 case '9':
4562 long number;
4563 int i;
4565 for (i = 0, number = 0;
4566 ISDIGIT (c) && i < 3;
4567 c = *input_line_pointer++, i++)
4569 number = number * 8 + c - '0';
4572 c = number & 0xff;
4574 --input_line_pointer;
4575 break;
4577 case 'x':
4578 case 'X':
4580 long number;
4582 number = 0;
4583 c = *input_line_pointer++;
4584 while (ISXDIGIT (c))
4586 if (ISDIGIT (c))
4587 number = number * 16 + c - '0';
4588 else if (ISUPPER (c))
4589 number = number * 16 + c - 'A' + 10;
4590 else
4591 number = number * 16 + c - 'a' + 10;
4592 c = *input_line_pointer++;
4594 c = number & 0xff;
4595 --input_line_pointer;
4597 break;
4599 case '\n':
4600 /* To be compatible with BSD 4.2 as: give the luser a linefeed!! */
4601 as_warn (_("unterminated string; newline inserted"));
4602 c = '\n';
4603 bump_line_counters ();
4604 break;
4606 default:
4608 #ifdef ONLY_STANDARD_ESCAPES
4609 as_bad (_("bad escaped character in string"));
4610 c = '?';
4611 #endif /* ONLY_STANDARD_ESCAPES */
4613 break;
4615 break;
4616 #endif /* ! defined (NO_STRING_ESCAPES) */
4618 default:
4619 break;
4621 return (c);
4624 static segT
4625 get_segmented_expression (register expressionS *expP)
4627 register segT retval;
4629 retval = expression (expP);
4630 if (expP->X_op == O_illegal
4631 || expP->X_op == O_absent
4632 || expP->X_op == O_big)
4634 as_bad (_("expected address expression"));
4635 expP->X_op = O_constant;
4636 expP->X_add_number = 0;
4637 retval = absolute_section;
4639 return retval;
4642 static segT
4643 get_known_segmented_expression (register expressionS *expP)
4645 register segT retval;
4647 if ((retval = get_segmented_expression (expP)) == undefined_section)
4649 /* There is no easy way to extract the undefined symbol from the
4650 expression. */
4651 if (expP->X_add_symbol != NULL
4652 && S_GET_SEGMENT (expP->X_add_symbol) != expr_section)
4653 as_warn (_("symbol \"%s\" undefined; zero assumed"),
4654 S_GET_NAME (expP->X_add_symbol));
4655 else
4656 as_warn (_("some symbol undefined; zero assumed"));
4657 retval = absolute_section;
4658 expP->X_op = O_constant;
4659 expP->X_add_number = 0;
4661 know (retval == absolute_section || SEG_NORMAL (retval));
4662 return (retval);
4665 offsetT
4666 get_absolute_expr (expressionS *exp)
4668 expression (exp);
4669 if (exp->X_op != O_constant)
4671 if (exp->X_op != O_absent)
4672 as_bad (_("bad or irreducible absolute expression"));
4673 exp->X_add_number = 0;
4675 return exp->X_add_number;
4678 offsetT
4679 get_absolute_expression (void)
4681 expressionS exp;
4683 return get_absolute_expr (&exp);
4686 char /* Return terminator. */
4687 get_absolute_expression_and_terminator (long *val_pointer /* Return value of expression. */)
4689 /* FIXME: val_pointer should probably be offsetT *. */
4690 *val_pointer = (long) get_absolute_expression ();
4691 return (*input_line_pointer++);
4694 /* Like demand_copy_string, but return NULL if the string contains any '\0's.
4695 Give a warning if that happens. */
4697 char *
4698 demand_copy_C_string (int *len_pointer)
4700 register char *s;
4702 if ((s = demand_copy_string (len_pointer)) != 0)
4704 register int len;
4706 for (len = *len_pointer; len > 0; len--)
4708 if (*s == 0)
4710 s = 0;
4711 len = 1;
4712 *len_pointer = 0;
4713 as_bad (_("this string may not contain \'\\0\'"));
4718 return s;
4721 /* Demand string, but return a safe (=private) copy of the string.
4722 Return NULL if we can't read a string here. */
4724 char *
4725 demand_copy_string (int *lenP)
4727 register unsigned int c;
4728 register int len;
4729 char *retval;
4731 len = 0;
4732 SKIP_WHITESPACE ();
4733 if (*input_line_pointer == '\"')
4735 input_line_pointer++; /* Skip opening quote. */
4737 while (is_a_char (c = next_char_of_string ()))
4739 obstack_1grow (&notes, c);
4740 len++;
4742 /* JF this next line is so demand_copy_C_string will return a
4743 null terminated string. */
4744 obstack_1grow (&notes, '\0');
4745 retval = obstack_finish (&notes);
4747 else
4749 as_bad (_("missing string"));
4750 retval = NULL;
4751 ignore_rest_of_line ();
4753 *lenP = len;
4754 return (retval);
4757 /* In: Input_line_pointer->next character.
4759 Do: Skip input_line_pointer over all whitespace.
4761 Out: 1 if input_line_pointer->end-of-line. */
4764 is_it_end_of_statement (void)
4766 SKIP_WHITESPACE ();
4767 return (is_end_of_line[(unsigned char) *input_line_pointer]);
4770 void
4771 equals (char *sym_name, int reassign)
4773 register symbolS *symbolP; /* Symbol we are working with. */
4774 char *stop = NULL;
4775 char stopc;
4777 input_line_pointer++;
4778 if (*input_line_pointer == '=')
4779 input_line_pointer++;
4781 while (*input_line_pointer == ' ' || *input_line_pointer == '\t')
4782 input_line_pointer++;
4784 if (flag_mri)
4785 stop = mri_comment_field (&stopc);
4787 if (sym_name[0] == '.' && sym_name[1] == '\0')
4789 /* Turn '. = mumble' into a .org mumble. */
4790 register segT segment;
4791 expressionS exp;
4793 segment = get_known_segmented_expression (&exp);
4794 if (!need_pass_2)
4795 do_org (segment, &exp, 0);
4797 else
4799 #ifdef OBJ_COFF
4800 int local;
4802 symbolP = symbol_find (sym_name);
4803 local = symbolP == NULL;
4804 if (local)
4805 #endif /* OBJ_COFF */
4806 symbolP = symbol_find_or_make (sym_name);
4807 /* Permit register names to be redefined. */
4808 if (!reassign
4809 && S_IS_DEFINED (symbolP)
4810 && S_GET_SEGMENT (symbolP) != reg_section)
4811 as_bad (_("symbol `%s' is already defined"), S_GET_NAME (symbolP));
4813 #ifdef OBJ_COFF
4814 /* "set" symbols are local unless otherwise specified. */
4815 if (local)
4816 SF_SET_LOCAL (symbolP);
4817 #endif /* OBJ_COFF */
4819 pseudo_set (symbolP);
4822 if (flag_mri)
4824 /* Check garbage after the expression. */
4825 demand_empty_rest_of_line ();
4826 mri_comment_end (stop, stopc);
4830 /* .incbin -- include a file verbatim at the current location. */
4832 void
4833 s_incbin (int x ATTRIBUTE_UNUSED)
4835 FILE * binfile;
4836 char * path;
4837 char * filename;
4838 char * binfrag;
4839 long skip = 0;
4840 long count = 0;
4841 long bytes;
4842 int len;
4844 #ifdef md_flush_pending_output
4845 md_flush_pending_output ();
4846 #endif
4848 SKIP_WHITESPACE ();
4849 filename = demand_copy_string (& len);
4850 if (filename == NULL)
4851 return;
4853 SKIP_WHITESPACE ();
4855 /* Look for optional skip and count. */
4856 if (* input_line_pointer == ',')
4858 ++ input_line_pointer;
4859 skip = get_absolute_expression ();
4861 SKIP_WHITESPACE ();
4863 if (* input_line_pointer == ',')
4865 ++ input_line_pointer;
4867 count = get_absolute_expression ();
4868 if (count == 0)
4869 as_warn (_(".incbin count zero, ignoring `%s'"), filename);
4871 SKIP_WHITESPACE ();
4875 demand_empty_rest_of_line ();
4877 /* Try opening absolute path first, then try include dirs. */
4878 binfile = fopen (filename, FOPEN_RB);
4879 if (binfile == NULL)
4881 int i;
4883 path = xmalloc ((unsigned long) len + include_dir_maxlen + 5);
4885 for (i = 0; i < include_dir_count; i++)
4887 sprintf (path, "%s/%s", include_dirs[i], filename);
4889 binfile = fopen (path, FOPEN_RB);
4890 if (binfile != NULL)
4891 break;
4894 if (binfile == NULL)
4895 as_bad (_("file not found: %s"), filename);
4897 else
4898 path = xstrdup (filename);
4900 if (binfile)
4902 long file_len;
4904 register_dependency (path);
4906 /* Compute the length of the file. */
4907 if (fseek (binfile, 0, SEEK_END) != 0)
4909 as_bad (_("seek to end of .incbin file failed `%s'"), path);
4910 goto done;
4912 file_len = ftell (binfile);
4914 /* If a count was not specified use the size of the file. */
4915 if (count == 0)
4916 count = file_len;
4918 if (skip + count > file_len)
4920 as_bad (_("skip (%ld) + count (%ld) larger than file size (%ld)"),
4921 skip, count, file_len);
4922 goto done;
4925 if (fseek (binfile, skip, SEEK_SET) != 0)
4927 as_bad (_("could not skip to %ld in file `%s'"), skip, path);
4928 goto done;
4931 /* Allocate frag space and store file contents in it. */
4932 binfrag = frag_more (count);
4934 bytes = fread (binfrag, 1, count, binfile);
4935 if (bytes < count)
4936 as_warn (_("truncated file `%s', %ld of %ld bytes read"),
4937 path, bytes, count);
4939 done:
4940 if (binfile != NULL)
4941 fclose (binfile);
4942 if (path)
4943 free (path);
4946 /* .include -- include a file at this point. */
4948 void
4949 s_include (int arg ATTRIBUTE_UNUSED)
4951 char *filename;
4952 int i;
4953 FILE *try;
4954 char *path;
4956 if (!flag_m68k_mri)
4958 filename = demand_copy_string (&i);
4959 if (filename == NULL)
4961 /* demand_copy_string has already printed an error and
4962 called ignore_rest_of_line. */
4963 return;
4966 else
4968 SKIP_WHITESPACE ();
4969 i = 0;
4970 while (!is_end_of_line[(unsigned char) *input_line_pointer]
4971 && *input_line_pointer != ' '
4972 && *input_line_pointer != '\t')
4974 obstack_1grow (&notes, *input_line_pointer);
4975 ++input_line_pointer;
4976 ++i;
4979 obstack_1grow (&notes, '\0');
4980 filename = obstack_finish (&notes);
4981 while (!is_end_of_line[(unsigned char) *input_line_pointer])
4982 ++input_line_pointer;
4985 demand_empty_rest_of_line ();
4986 path = xmalloc ((unsigned long) i + include_dir_maxlen + 5 /* slop */ );
4988 for (i = 0; i < include_dir_count; i++)
4990 strcpy (path, include_dirs[i]);
4991 strcat (path, "/");
4992 strcat (path, filename);
4993 if (0 != (try = fopen (path, FOPEN_RT)))
4995 fclose (try);
4996 goto gotit;
5000 free (path);
5001 path = filename;
5002 gotit:
5003 /* malloc Storage leak when file is found on path. FIXME-SOMEDAY. */
5004 register_dependency (path);
5005 input_scrub_insert_file (path);
5008 void
5009 add_include_dir (char *path)
5011 int i;
5013 if (include_dir_count == 0)
5015 include_dirs = (char **) xmalloc (2 * sizeof (*include_dirs));
5016 include_dirs[0] = "."; /* Current dir. */
5017 include_dir_count = 2;
5019 else
5021 include_dir_count++;
5022 include_dirs =
5023 (char **) realloc (include_dirs,
5024 include_dir_count * sizeof (*include_dirs));
5027 include_dirs[include_dir_count - 1] = path; /* New one. */
5029 i = strlen (path);
5030 if (i > include_dir_maxlen)
5031 include_dir_maxlen = i;
5034 /* Output debugging information to denote the source file. */
5036 static void
5037 generate_file_debug (void)
5039 if (debug_type == DEBUG_STABS)
5040 stabs_generate_asm_file ();
5043 /* Output line number debugging information for the current source line. */
5045 void
5046 generate_lineno_debug (void)
5048 switch (debug_type)
5050 case DEBUG_UNSPECIFIED:
5051 case DEBUG_NONE:
5052 case DEBUG_DWARF:
5053 break;
5054 case DEBUG_STABS:
5055 stabs_generate_asm_lineno ();
5056 break;
5057 case DEBUG_ECOFF:
5058 ecoff_generate_asm_lineno ();
5059 break;
5060 case DEBUG_DWARF2:
5061 /* ??? We could here indicate to dwarf2dbg.c that something
5062 has changed. However, since there is additional backend
5063 support that is required (calling dwarf2_emit_insn), we
5064 let dwarf2dbg.c call as_where on its own. */
5065 break;
5069 /* Output debugging information to mark a function entry point or end point.
5070 END_P is zero for .func, and non-zero for .endfunc. */
5072 void
5073 s_func (int end_p)
5075 do_s_func (end_p, NULL);
5078 /* Subroutine of s_func so targets can choose a different default prefix.
5079 If DEFAULT_PREFIX is NULL, use the target's "leading char". */
5081 void
5082 do_s_func (int end_p, const char *default_prefix)
5084 /* Record the current function so that we can issue an error message for
5085 misplaced .func,.endfunc, and also so that .endfunc needs no
5086 arguments. */
5087 static char *current_name;
5088 static char *current_label;
5090 if (end_p)
5092 if (current_name == NULL)
5094 as_bad (_("missing .func"));
5095 ignore_rest_of_line ();
5096 return;
5099 if (debug_type == DEBUG_STABS)
5100 stabs_generate_asm_endfunc (current_name, current_label);
5102 current_name = current_label = NULL;
5104 else /* ! end_p */
5106 char *name, *label;
5107 char delim1, delim2;
5109 if (current_name != NULL)
5111 as_bad (_(".endfunc missing for previous .func"));
5112 ignore_rest_of_line ();
5113 return;
5116 name = input_line_pointer;
5117 delim1 = get_symbol_end ();
5118 name = xstrdup (name);
5119 *input_line_pointer = delim1;
5120 SKIP_WHITESPACE ();
5121 if (*input_line_pointer != ',')
5123 if (default_prefix)
5124 asprintf (&label, "%s%s", default_prefix, name);
5125 else
5127 char leading_char = 0;
5128 #ifdef BFD_ASSEMBLER
5129 leading_char = bfd_get_symbol_leading_char (stdoutput);
5130 #endif
5131 /* Missing entry point, use function's name with the leading
5132 char prepended. */
5133 if (leading_char)
5134 asprintf (&label, "%c%s", leading_char, name);
5135 else
5136 label = name;
5139 else
5141 ++input_line_pointer;
5142 SKIP_WHITESPACE ();
5143 label = input_line_pointer;
5144 delim2 = get_symbol_end ();
5145 label = xstrdup (label);
5146 *input_line_pointer = delim2;
5149 if (debug_type == DEBUG_STABS)
5150 stabs_generate_asm_func (name, label);
5152 current_name = name;
5153 current_label = label;
5156 demand_empty_rest_of_line ();
5159 void
5160 s_ignore (int arg ATTRIBUTE_UNUSED)
5162 while (!is_end_of_line[(unsigned char) *input_line_pointer])
5164 ++input_line_pointer;
5166 ++input_line_pointer;
5169 void
5170 read_print_statistics (FILE *file)
5172 hash_print_statistics (file, "pseudo-op table", po_hash);
5175 /* Inserts the given line into the input stream.
5177 This call avoids macro/conditionals nesting checking, since the contents of
5178 the line are assumed to replace the contents of a line already scanned.
5180 An appropriate use of this function would be substitution of input lines when
5181 called by md_start_line_hook(). The given line is assumed to already be
5182 properly scrubbed. */
5184 void
5185 input_scrub_insert_line (const char *line)
5187 sb newline;
5188 sb_new (&newline);
5189 sb_add_string (&newline, line);
5190 input_scrub_include_sb (&newline, input_line_pointer, 0);
5191 sb_kill (&newline);
5192 buffer_limit = input_scrub_next_buffer (&input_line_pointer);
5195 /* Insert a file into the input stream; the path must resolve to an actual
5196 file; no include path searching or dependency registering is performed. */
5198 void
5199 input_scrub_insert_file (char *path)
5201 input_scrub_include_file (path, input_line_pointer);
5202 buffer_limit = input_scrub_next_buffer (&input_line_pointer);