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