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