* read.c (s_set): Remove unused local ptr.
[binutils-gdb.git] / gas / read.c
1 /* read.c - read a source file -
2 Copyright (C) 1986, 1987, 1990, 1991, 1993, 1994
3 Free Software Foundation, Inc.
4
5 This file is part of GAS, the GNU Assembler.
6
7 GAS is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
11
12 GAS is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GAS; see the file COPYING. If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
20
21 #if 0
22 #define MASK_CHAR (0xFF) /* If your chars aren't 8 bits, you will
23 change this a bit. But then, GNU isn't
24 spozed to run on your machine anyway.
25 (RMS is so shortsighted sometimes.)
26 */
27 #else
28 #define MASK_CHAR ((int)(unsigned char)-1)
29 #endif
30
31
32 /* This is the largest known floating point format (for now). It will
33 grow when we do 4361 style flonums. */
34
35 #define MAXIMUM_NUMBER_OF_CHARS_FOR_FLOAT (16)
36
37 /* Routines that read assembler source text to build spagetti in memory.
38 Another group of these functions is in the expr.c module. */
39
40 /* for isdigit() */
41 #include <ctype.h>
42
43 #include "as.h"
44 #include "subsegs.h"
45 #include "libiberty.h"
46 #include "obstack.h"
47 #include "listing.h"
48
49 #ifndef TC_START_LABEL
50 #define TC_START_LABEL(x,y) (x==':')
51 #endif
52
53 /* The NOP_OPCODE is for the alignment fill value.
54 * fill it a nop instruction so that the disassembler does not choke
55 * on it
56 */
57 #ifndef NOP_OPCODE
58 #define NOP_OPCODE 0x00
59 #endif
60
61 char *input_line_pointer; /*->next char of source file to parse. */
62
63 int generate_asm_lineno = 0; /* flag to generate line stab for .s file */
64
65 #if BITS_PER_CHAR != 8
66 /* The following table is indexed by[(char)] and will break if
67 a char does not have exactly 256 states (hopefully 0:255!)! */
68 die horribly;
69 #endif
70
71 #ifndef LEX_AT
72 /* The m88k unfortunately uses @ as a label beginner. */
73 #define LEX_AT 0
74 #endif
75
76 #ifndef LEX_BR
77 /* The RS/6000 assembler uses {,},[,] as parts of symbol names. */
78 #define LEX_BR 0
79 #endif
80
81 #ifndef LEX_PCT
82 /* The Delta 68k assembler permits % inside label names. */
83 #define LEX_PCT 0
84 #endif
85
86 /* used by is_... macros. our ctype[] */
87 char lex_type[256] =
88 {
89 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* @ABCDEFGHIJKLMNO */
90 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* PQRSTUVWXYZ[\]^_ */
91 0, 0, 0, 0, 3, LEX_PCT, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, /* _!"#$%&'()*+,-./ */
92 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, /* 0123456789:;<=>? */
93 LEX_AT, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, /* @ABCDEFGHIJKLMNO */
94 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, LEX_BR, 0, LEX_BR, 0, 3, /* PQRSTUVWXYZ[\]^_ */
95 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, /* `abcdefghijklmno */
96 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, LEX_BR, 0, LEX_BR, 0, 0, /* pqrstuvwxyz{|}~. */
97 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
98 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
99 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
100 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
101 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
102 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
103 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
104 };
105
106
107 /*
108 * In: a character.
109 * Out: 1 if this character ends a line.
110 */
111 #define _ (0)
112 char is_end_of_line[256] =
113 {
114 #ifdef CR_EOL
115 _, _, _, _, _, _, _, _, _, _, 99, _, _, 99, _, _, /* @abcdefghijklmno */
116 #else
117 _, _, _, _, _, _, _, _, _, _, 99, _, _, _, _, _, /* @abcdefghijklmno */
118 #endif
119 _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, /* */
120 #ifdef TC_HPPA
121 _,99, _, _, _, _, _, _, _, _, _, _, _, _, _, _, /* _!"#$%&'()*+,-./ */
122 _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, /* 0123456789:;<=>? */
123 #else
124 _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, /* */
125 _, _, _, _, _, _, _, _, _, _, _, 99, _, _, _, _, /* 0123456789:;<=>? */
126 #endif
127 _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, /* */
128 _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, /* */
129 _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, /* */
130 _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, /* */
131 _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, /* */
132 _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, /* */
133 _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, /* */
134 _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, /* */
135 _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, /* */
136 };
137 #undef _
138
139 /* Functions private to this file. */
140
141 static char *buffer; /* 1st char of each buffer of lines is here. */
142 static char *buffer_limit; /*->1 + last char in buffer. */
143
144 #ifdef TARGET_BYTES_BIG_ENDIAN
145 /* Hack to deal with tc-*.h defining TARGET_BYTES_BIG_ENDIAN to empty
146 instead of to 0 or 1. */
147 #if 5 - TARGET_BYTES_BIG_ENDIAN - 5 == 10
148 #undef TARGET_BYTES_BIG_ENDIAN
149 #define TARGET_BYTES_BIG_ENDIAN 1
150 #endif
151 int target_big_endian = TARGET_BYTES_BIG_ENDIAN;
152 #else
153 int target_big_endian /* = 0 */;
154 #endif
155
156 static char *old_buffer; /* JF a hack */
157 static char *old_input;
158 static char *old_limit;
159
160 /* Variables for handling include file directory list. */
161
162 char **include_dirs; /* List of pointers to directories to
163 search for .include's */
164 int include_dir_count; /* How many are in the list */
165 int include_dir_maxlen = 1;/* Length of longest in list */
166
167 #ifndef WORKING_DOT_WORD
168 struct broken_word *broken_words;
169 int new_broken_words;
170 #endif
171
172 /* The current offset into the absolute section. We don't try to
173 build frags in the absolute section, since no data can be stored
174 there. We just keep track of the current offset. */
175 addressT abs_section_offset;
176
177 /* If this line had an MRI style label, it is stored in this variable.
178 This is used by some of the MRI pseudo-ops. */
179 symbolS *mri_line_label;
180
181 /* This global variable is used to support MRI common sections. We
182 translate such sections into a common symbol. This variable is
183 non-NULL when we are in an MRI common section. */
184 symbolS *mri_common_symbol;
185
186 /* In MRI mode, after a dc.b pseudo-op with an odd number of bytes, we
187 need to align to an even byte boundary unless the next pseudo-op is
188 dc.b, ds.b, or dcb.b. This variable is set to 1 if an alignment
189 may be needed. */
190 static int mri_pending_align;
191
192 static void do_align PARAMS ((int, char *));
193 static int hex_float PARAMS ((int, char *));
194 static void do_org PARAMS ((segT, expressionS *, int));
195 char *demand_copy_string PARAMS ((int *lenP));
196 int is_it_end_of_statement PARAMS ((void));
197 static segT get_segmented_expression PARAMS ((expressionS *expP));
198 static segT get_known_segmented_expression PARAMS ((expressionS * expP));
199 static void pobegin PARAMS ((void));
200 \f
201
202 void
203 read_begin ()
204 {
205 const char *p;
206
207 pobegin ();
208 obj_read_begin_hook ();
209
210 /* Something close -- but not too close -- to a multiple of 1024.
211 The debugging malloc I'm using has 24 bytes of overhead. */
212 obstack_begin (&notes, 5090);
213 obstack_begin (&cond_obstack, 990);
214
215 /* Use machine dependent syntax */
216 for (p = line_separator_chars; *p; p++)
217 is_end_of_line[(unsigned char) *p] = 1;
218 /* Use more. FIXME-SOMEDAY. */
219
220 if (flag_mri)
221 lex_type['?'] = 3;
222 }
223 \f
224 /* set up pseudo-op tables */
225
226 static struct hash_control *po_hash;
227
228 static const pseudo_typeS potable[] =
229 {
230 {"abort", s_abort, 0},
231 {"align", s_align_ptwo, 0},
232 {"ascii", stringer, 0},
233 {"asciz", stringer, 1},
234 {"balign", s_align_bytes, 0},
235 /* block */
236 {"byte", cons, 1},
237 {"comm", s_comm, 0},
238 {"common", s_mri_common, 0},
239 {"common.s", s_mri_common, 1},
240 {"data", s_data, 0},
241 {"dc", cons, 2},
242 {"dc.b", cons, 1},
243 {"dc.d", float_cons, 'd'},
244 {"dc.l", cons, 4},
245 {"dc.s", float_cons, 'f'},
246 {"dc.w", cons, 2},
247 {"dc.x", float_cons, 'x'},
248 {"dcb", s_space, 2},
249 {"dcb.b", s_space, 1},
250 {"dcb.d", s_float_space, 'd'},
251 {"dcb.l", s_space, 4},
252 {"dcb.s", s_float_space, 'f'},
253 {"dcb.w", s_space, 2},
254 {"dcb.x", s_float_space, 'x'},
255 {"ds", s_space, 2},
256 {"ds.b", s_space, 1},
257 {"ds.d", s_space, 8},
258 {"ds.l", s_space, 4},
259 {"ds.p", s_space, 12},
260 {"ds.s", s_space, 4},
261 {"ds.w", s_space, 2},
262 {"ds.x", s_space, 12},
263 #ifdef S_SET_DESC
264 {"desc", s_desc, 0},
265 #endif
266 /* dim */
267 {"double", float_cons, 'd'},
268 /* dsect */
269 {"eject", listing_eject, 0}, /* Formfeed listing */
270 {"else", s_else, 0},
271 {"elsec", s_else, 0},
272 {"end", s_end, 0},
273 {"endc", s_endif, 0},
274 {"endif", s_endif, 0},
275 /* endef */
276 {"equ", s_set, 0},
277 /* err */
278 /* extend */
279 {"extern", s_ignore, 0}, /* We treat all undef as ext */
280 {"appfile", s_app_file, 1},
281 {"appline", s_app_line, 0},
282 {"fail", s_fail, 0},
283 {"file", s_app_file, 0},
284 {"fill", s_fill, 0},
285 {"float", float_cons, 'f'},
286 {"format", s_ignore, 0},
287 {"global", s_globl, 0},
288 {"globl", s_globl, 0},
289 {"hword", cons, 2},
290 {"if", s_if, (int) O_ne},
291 {"ifdef", s_ifdef, 0},
292 {"ifeq", s_if, (int) O_eq},
293 {"ifeqs", s_ifeqs, 0},
294 {"ifge", s_if, (int) O_ge},
295 {"ifgt", s_if, (int) O_gt},
296 {"ifle", s_if, (int) O_le},
297 {"iflt", s_if, (int) O_lt},
298 {"ifndef", s_ifdef, 1},
299 {"ifne", s_if, (int) O_ne},
300 {"ifnes", s_ifeqs, 1},
301 {"ifnotdef", s_ifdef, 1},
302 {"include", s_include, 0},
303 {"int", cons, 4},
304 {"lcomm", s_lcomm, 0},
305 {"lflags", listing_flags, 0}, /* Listing flags */
306 {"list", listing_list, 1}, /* Turn listing on */
307 {"llen", listing_psize, 1},
308 {"long", cons, 4},
309 {"lsym", s_lsym, 0},
310 {"noformat", s_ignore, 0},
311 {"nolist", listing_list, 0}, /* Turn listing off */
312 {"nopage", listing_nopage, 0},
313 {"octa", cons, 16},
314 {"offset", s_struct, 0},
315 {"org", s_org, 0},
316 {"p2align", s_align_ptwo, 0},
317 {"page", listing_eject, 0},
318 {"plen", listing_psize, 0},
319 {"psize", listing_psize, 0}, /* set paper size */
320 /* print */
321 {"quad", cons, 8},
322 {"sbttl", listing_title, 1}, /* Subtitle of listing */
323 /* scl */
324 /* sect */
325 {"set", s_set, 0},
326 {"short", cons, 2},
327 {"single", float_cons, 'f'},
328 /* size */
329 {"space", s_space, 0},
330 {"stabd", s_stab, 'd'},
331 {"stabn", s_stab, 'n'},
332 {"stabs", s_stab, 's'},
333 {"string", stringer, 1},
334 {"struct", s_struct, 0},
335 /* tag */
336 {"text", s_text, 0},
337
338 /* This is for gcc to use. It's only just been added (2/94), so gcc
339 won't be able to use it for a while -- probably a year or more.
340 But once this has been released, check with gcc maintainers
341 before deleting it or even changing the spelling. */
342 {"this_GCC_requires_the_GNU_assembler", s_ignore, 0},
343 /* If we're folding case -- done for some targets, not necessarily
344 all -- the above string in an input file will be converted to
345 this one. Match it either way... */
346 {"this_gcc_requires_the_gnu_assembler", s_ignore, 0},
347
348 {"title", listing_title, 0}, /* Listing title */
349 /* type */
350 /* use */
351 /* val */
352 {"xdef", s_globl, 0},
353 {"xstabs", s_xstab, 's'},
354 {"word", cons, 2},
355 {"zero", s_space, 0},
356 {NULL} /* end sentinel */
357 };
358
359 static int pop_override_ok = 0;
360 static const char *pop_table_name;
361
362 void
363 pop_insert (table)
364 const pseudo_typeS *table;
365 {
366 const char *errtxt;
367 const pseudo_typeS *pop;
368 for (pop = table; pop->poc_name; pop++)
369 {
370 errtxt = hash_insert (po_hash, pop->poc_name, (char *) pop);
371 if (errtxt && (!pop_override_ok || strcmp (errtxt, "exists")))
372 as_fatal ("error constructing %s pseudo-op table", pop_table_name);
373 }
374 }
375
376 #ifndef md_pop_insert
377 #define md_pop_insert() pop_insert(md_pseudo_table)
378 #endif
379
380 #ifndef obj_pop_insert
381 #define obj_pop_insert() pop_insert(obj_pseudo_table)
382 #endif
383
384 static void
385 pobegin ()
386 {
387 po_hash = hash_new ();
388
389 /* Do the target-specific pseudo ops. */
390 pop_table_name = "md";
391 md_pop_insert ();
392
393 /* Now object specific. Skip any that were in the target table. */
394 pop_table_name = "obj";
395 pop_override_ok = 1;
396 obj_pop_insert ();
397
398 /* Now portable ones. Skip any that we've seen already. */
399 pop_table_name = "standard";
400 pop_insert (potable);
401 }
402 \f
403 #define HANDLE_CONDITIONAL_ASSEMBLY() \
404 if (ignore_input ()) \
405 { \
406 while (! is_end_of_line[(unsigned char) *input_line_pointer++]) \
407 if (input_line_pointer == buffer_limit) \
408 break; \
409 continue; \
410 }
411
412
413 /* read_a_source_file()
414 *
415 * We read the file, putting things into a web that
416 * represents what we have been reading.
417 */
418 void
419 read_a_source_file (name)
420 char *name;
421 {
422 register char c;
423 register char *s; /* string of symbol, '\0' appended */
424 register int temp;
425 pseudo_typeS *pop;
426
427 buffer = input_scrub_new_file (name);
428
429 listing_file (name);
430 listing_newline ("");
431
432 while ((buffer_limit = input_scrub_next_buffer (&input_line_pointer)) != 0)
433 { /* We have another line to parse. */
434 know (buffer_limit[-1] == '\n'); /* Must have a sentinel. */
435 contin: /* JF this goto is my fault I admit it.
436 Someone brave please re-write the whole
437 input section here? Pleeze??? */
438 while (input_line_pointer < buffer_limit)
439 {
440 /* We have more of this buffer to parse. */
441
442 /*
443 * We now have input_line_pointer->1st char of next line.
444 * If input_line_pointer [-1] == '\n' then we just
445 * scanned another line: so bump line counters.
446 */
447 if (is_end_of_line[(unsigned char) input_line_pointer[-1]])
448 {
449 #ifdef md_start_line_hook
450 md_start_line_hook ();
451 #endif
452
453 if (input_line_pointer[-1] == '\n')
454 bump_line_counters ();
455
456 if (flag_mri
457 #ifdef LABELS_WITHOUT_COLONS
458 || 1
459 #endif
460 )
461 {
462 mri_line_label = NULL;
463
464 /* Text at the start of a line must be a label, we
465 run down and stick a colon in. */
466 if (is_name_beginner (*input_line_pointer))
467 {
468 char *line_start = input_line_pointer;
469 char c = get_symbol_end ();
470
471 if (! ignore_input ())
472 {
473 /* In MRI mode, the EQU pseudoop must be
474 handled specially. */
475 if (flag_mri)
476 {
477 if (((strncasecmp (input_line_pointer + 1,
478 "EQU", 3) == 0)
479 || (strncasecmp (input_line_pointer + 1,
480 "SET", 3) == 0))
481 && (input_line_pointer[4] == ' '
482 || input_line_pointer[4] == '\t'))
483 {
484 input_line_pointer += 4;
485 equals (line_start);
486 continue;
487 }
488 }
489
490 mri_line_label = colon (line_start);
491 }
492
493 *input_line_pointer = c;
494 if (c == ':')
495 input_line_pointer++;
496 }
497 }
498 }
499
500 /*
501 * We are at the begining of a line, or similar place.
502 * We expect a well-formed assembler statement.
503 * A "symbol-name:" is a statement.
504 *
505 * Depending on what compiler is used, the order of these tests
506 * may vary to catch most common case 1st.
507 * Each test is independent of all other tests at the (top) level.
508 * PLEASE make a compiler that doesn't use this assembler.
509 * It is crufty to waste a compiler's time encoding things for this
510 * assembler, which then wastes more time decoding it.
511 * (And communicating via (linear) files is silly!
512 * If you must pass stuff, please pass a tree!)
513 */
514 if ((c = *input_line_pointer++) == '\t'
515 || c == ' '
516 || c == '\f'
517 || c == 0)
518 {
519 c = *input_line_pointer++;
520 }
521 know (c != ' '); /* No further leading whitespace. */
522 LISTING_NEWLINE ();
523 /*
524 * C is the 1st significant character.
525 * Input_line_pointer points after that character.
526 */
527 if (is_name_beginner (c))
528 {
529 /* want user-defined label or pseudo/opcode */
530 HANDLE_CONDITIONAL_ASSEMBLY ();
531
532 s = --input_line_pointer;
533 c = get_symbol_end (); /* name's delimiter */
534 /*
535 * C is character after symbol.
536 * That character's place in the input line is now '\0'.
537 * S points to the beginning of the symbol.
538 * [In case of pseudo-op, s->'.'.]
539 * Input_line_pointer->'\0' where c was.
540 */
541 if (TC_START_LABEL(c, input_line_pointer))
542 {
543 colon (s); /* user-defined label */
544 *input_line_pointer++ = ':'; /* Put ':' back for error messages' sake. */
545 /* Input_line_pointer->after ':'. */
546 SKIP_WHITESPACE ();
547
548
549 }
550 else if (c == '='
551 || (input_line_pointer[1] == '='
552 #ifdef TC_EQUAL_IN_INSN
553 && ! TC_EQUAL_IN_INSN (c, input_line_pointer)
554 #endif
555 ))
556 {
557 equals (s);
558 demand_empty_rest_of_line ();
559 }
560 else
561 { /* expect pseudo-op or machine instruction */
562 pop = NULL;
563
564 #define IGNORE_OPCODE_CASE
565 #ifdef IGNORE_OPCODE_CASE
566 {
567 char *s2 = s;
568 while (*s2)
569 {
570 if (isupper (*s2))
571 *s2 = tolower (*s2);
572 s2++;
573 }
574 }
575 #endif
576
577 if (flag_mri
578 #ifdef NO_PSEUDO_DOT
579 || 1
580 #endif
581 )
582 {
583 /* The MRI assembler and the m88k use pseudo-ops
584 without a period. */
585 pop = (pseudo_typeS *) hash_find (po_hash, s);
586 if (pop != NULL && pop->poc_handler == NULL)
587 pop = NULL;
588 }
589
590 if (pop != NULL || *s == '.')
591 {
592 /*
593 * PSEUDO - OP.
594 *
595 * WARNING: c has next char, which may be end-of-line.
596 * We lookup the pseudo-op table with s+1 because we
597 * already know that the pseudo-op begins with a '.'.
598 */
599
600 if (pop == NULL)
601 pop = (pseudo_typeS *) hash_find (po_hash, s + 1);
602
603 /* In MRI mode, we may need to insert an
604 automatic alignment directive. What a hack
605 this is. */
606 if (mri_pending_align
607 && (pop == NULL
608 || ! ((pop->poc_handler == cons
609 && pop->poc_val == 1)
610 || (pop->poc_handler == s_space
611 && pop->poc_val == 1))))
612 {
613 do_align (1, (char *) NULL);
614 mri_pending_align = 0;
615 }
616
617 /* Print the error msg now, while we still can */
618 if (pop == NULL)
619 {
620 as_bad ("Unknown pseudo-op: `%s'", s);
621 *input_line_pointer = c;
622 s_ignore (0);
623 continue;
624 }
625
626 /* Put it back for error messages etc. */
627 *input_line_pointer = c;
628 /* The following skip of whitespace is compulsory.
629 A well shaped space is sometimes all that separates
630 keyword from operands. */
631 if (c == ' ' || c == '\t')
632 input_line_pointer++;
633 /*
634 * Input_line is restored.
635 * Input_line_pointer->1st non-blank char
636 * after pseudo-operation.
637 */
638 (*pop->poc_handler) (pop->poc_val);
639
640 /* If that was .end, just get out now. */
641 if (pop->poc_handler == s_end)
642 goto quit;
643 }
644 else
645 { /* machine instruction */
646 if (mri_pending_align)
647 {
648 do_align (1, (char *) NULL);
649 mri_pending_align = 0;
650 }
651
652 /* WARNING: c has char, which may be end-of-line. */
653 /* Also: input_line_pointer->`\0` where c was. */
654 *input_line_pointer = c;
655 while (!is_end_of_line[(unsigned char) *input_line_pointer]
656 #ifdef TC_EOL_IN_INSN
657 || TC_EOL_IN_INSN (input_line_pointer)
658 #endif
659 )
660 {
661 input_line_pointer++;
662 }
663
664 c = *input_line_pointer;
665 *input_line_pointer = '\0';
666
667 #ifdef OBJ_GENERATE_ASM_LINENO
668 if (generate_asm_lineno == 0)
669 {
670 if (ecoff_no_current_file ())
671 generate_asm_lineno = 1;
672 }
673 if (generate_asm_lineno == 1)
674 {
675 unsigned int lineno;
676 char *s;
677
678 as_where (&s, &lineno);
679 OBJ_GENERATE_ASM_LINENO (s, lineno);
680 }
681 #endif
682
683 md_assemble (s); /* Assemble 1 instruction. */
684
685 *input_line_pointer++ = c;
686
687 /* We resume loop AFTER the end-of-line from
688 this instruction. */
689 } /* if (*s=='.') */
690 } /* if c==':' */
691 continue;
692 } /* if (is_name_beginner(c) */
693
694
695 /* Empty statement? */
696 if (is_end_of_line[(unsigned char) c])
697 continue;
698
699 if ((LOCAL_LABELS_DOLLAR || LOCAL_LABELS_FB)
700 && isdigit (c))
701 {
702 /* local label ("4:") */
703 char *backup = input_line_pointer;
704
705 HANDLE_CONDITIONAL_ASSEMBLY ();
706
707 temp = c - '0';
708
709 while (isdigit (*input_line_pointer))
710 {
711 temp = (temp * 10) + *input_line_pointer - '0';
712 ++input_line_pointer;
713 } /* read the whole number */
714
715 if (LOCAL_LABELS_DOLLAR
716 && *input_line_pointer == '$'
717 && *(input_line_pointer + 1) == ':')
718 {
719 input_line_pointer += 2;
720
721 if (dollar_label_defined (temp))
722 {
723 as_fatal ("label \"%d$\" redefined", temp);
724 }
725
726 define_dollar_label (temp);
727 colon (dollar_label_name (temp, 0));
728 continue;
729 }
730
731 if (LOCAL_LABELS_FB
732 && *input_line_pointer++ == ':')
733 {
734 fb_label_instance_inc (temp);
735 colon (fb_label_name (temp, 0));
736 continue;
737 }
738
739 input_line_pointer = backup;
740 } /* local label ("4:") */
741
742 if (c && strchr (line_comment_chars, c))
743 { /* Its a comment. Better say APP or NO_APP */
744 char *ends;
745 char *new_buf;
746 char *new_tmp;
747 unsigned int new_length;
748 char *tmp_buf = 0;
749 extern char *scrub_string, *scrub_last_string;
750
751 bump_line_counters ();
752 s = input_line_pointer;
753 if (strncmp (s, "APP\n", 4))
754 continue; /* We ignore it */
755 s += 4;
756
757 ends = strstr (s, "#NO_APP\n");
758
759 if (!ends)
760 {
761 unsigned int tmp_len;
762 unsigned int num;
763
764 /* The end of the #APP wasn't in this buffer. We
765 keep reading in buffers until we find the #NO_APP
766 that goes with this #APP There is one. The specs
767 guarentee it. . . */
768 tmp_len = buffer_limit - s;
769 tmp_buf = xmalloc (tmp_len + 1);
770 memcpy (tmp_buf, s, tmp_len);
771 do
772 {
773 new_tmp = input_scrub_next_buffer (&buffer);
774 if (!new_tmp)
775 break;
776 else
777 buffer_limit = new_tmp;
778 input_line_pointer = buffer;
779 ends = strstr (buffer, "#NO_APP\n");
780 if (ends)
781 num = ends - buffer;
782 else
783 num = buffer_limit - buffer;
784
785 tmp_buf = xrealloc (tmp_buf, tmp_len + num);
786 memcpy (tmp_buf + tmp_len, buffer, num);
787 tmp_len += num;
788 }
789 while (!ends);
790
791 input_line_pointer = ends ? ends + 8 : NULL;
792
793 s = tmp_buf;
794 ends = s + tmp_len;
795
796 }
797 else
798 {
799 input_line_pointer = ends + 8;
800 }
801 new_buf = xmalloc (100);
802 new_length = 100;
803 new_tmp = new_buf;
804
805 scrub_string = s;
806 scrub_last_string = ends;
807 for (;;)
808 {
809 int ch;
810
811 ch = do_scrub_next_char (scrub_from_string, scrub_to_string);
812 if (ch == EOF)
813 break;
814 *new_tmp++ = ch;
815 if (new_tmp == new_buf + new_length)
816 {
817 new_buf = xrealloc (new_buf, new_length + 100);
818 new_tmp = new_buf + new_length;
819 new_length += 100;
820 }
821 }
822
823 if (tmp_buf)
824 free (tmp_buf);
825 old_buffer = buffer;
826 old_input = input_line_pointer;
827 old_limit = buffer_limit;
828 buffer = new_buf;
829 input_line_pointer = new_buf;
830 buffer_limit = new_tmp;
831 continue;
832 }
833
834 HANDLE_CONDITIONAL_ASSEMBLY ();
835
836 /* as_warn("Junk character %d.",c); Now done by ignore_rest */
837 input_line_pointer--; /* Report unknown char as ignored. */
838 ignore_rest_of_line ();
839 } /* while (input_line_pointer<buffer_limit) */
840
841 #ifdef md_after_pass_hook
842 md_after_pass_hook ();
843 #endif
844
845 if (old_buffer)
846 {
847 bump_line_counters ();
848 if (old_input != 0)
849 {
850 buffer = old_buffer;
851 input_line_pointer = old_input;
852 buffer_limit = old_limit;
853 old_buffer = 0;
854 goto contin;
855 }
856 }
857 } /* while (more buffers to scan) */
858
859 quit:
860 input_scrub_close (); /* Close the input file */
861 }
862
863 void
864 s_abort (ignore)
865 int ignore;
866 {
867 as_fatal (".abort detected. Abandoning ship.");
868 }
869
870 /* Guts of .align directive. */
871 static void
872 do_align (n, fill)
873 int n;
874 char *fill;
875 {
876 #ifdef md_do_align
877 md_do_align (n, fill, just_record_alignment);
878 #endif
879 if (!fill)
880 {
881 /* @@ Fix this right for BFD! */
882 static char zero;
883 static char nop_opcode = NOP_OPCODE;
884
885 if (now_seg != data_section && now_seg != bss_section)
886 {
887 fill = &nop_opcode;
888 }
889 else
890 {
891 fill = &zero;
892 }
893 }
894 /* Only make a frag if we HAVE to. . . */
895 if (n && !need_pass_2)
896 frag_align (n, *fill);
897
898 #ifdef md_do_align
899 just_record_alignment:
900 #endif
901
902 record_alignment (now_seg, n);
903 }
904
905 /* For machines where ".align 4" means align to a 4 byte boundary. */
906 void
907 s_align_bytes (arg)
908 int arg;
909 {
910 register unsigned int temp;
911 char temp_fill;
912 unsigned int i = 0;
913 unsigned long max_alignment = 1 << 15;
914
915 if (is_end_of_line[(unsigned char) *input_line_pointer])
916 temp = arg; /* Default value from pseudo-op table */
917 else
918 temp = get_absolute_expression ();
919
920 if (temp > max_alignment)
921 {
922 as_bad ("Alignment too large: %d. assumed.", temp = max_alignment);
923 }
924
925 /* For the sparc, `.align (1<<n)' actually means `.align n' so we
926 have to convert it. */
927 if (temp != 0)
928 {
929 for (i = 0; (temp & 1) == 0; temp >>= 1, ++i)
930 ;
931 }
932 if (temp != 1)
933 as_bad ("Alignment not a power of 2");
934
935 temp = i;
936 if (*input_line_pointer == ',')
937 {
938 input_line_pointer++;
939 temp_fill = get_absolute_expression ();
940 do_align (temp, &temp_fill);
941 }
942 else
943 do_align (temp, (char *) 0);
944
945 demand_empty_rest_of_line ();
946 }
947
948 /* For machines where ".align 4" means align to 2**4 boundary. */
949 void
950 s_align_ptwo (ignore)
951 int ignore;
952 {
953 register int temp;
954 char temp_fill;
955 long max_alignment = 15;
956
957 temp = get_absolute_expression ();
958 if (temp > max_alignment)
959 as_bad ("Alignment too large: %d. assumed.", temp = max_alignment);
960 else if (temp < 0)
961 {
962 as_bad ("Alignment negative. 0 assumed.");
963 temp = 0;
964 }
965 if (*input_line_pointer == ',')
966 {
967 input_line_pointer++;
968 temp_fill = get_absolute_expression ();
969 do_align (temp, &temp_fill);
970 }
971 else
972 do_align (temp, (char *) 0);
973
974 demand_empty_rest_of_line ();
975 }
976
977 void
978 s_comm (ignore)
979 int ignore;
980 {
981 register char *name;
982 register char c;
983 register char *p;
984 offsetT temp;
985 register symbolS *symbolP;
986
987 name = input_line_pointer;
988 c = get_symbol_end ();
989 /* just after name is now '\0' */
990 p = input_line_pointer;
991 *p = c;
992 SKIP_WHITESPACE ();
993 if (*input_line_pointer != ',')
994 {
995 as_bad ("Expected comma after symbol-name: rest of line ignored.");
996 ignore_rest_of_line ();
997 return;
998 }
999 input_line_pointer++; /* skip ',' */
1000 if ((temp = get_absolute_expression ()) < 0)
1001 {
1002 as_warn (".COMMon length (%ld.) <0! Ignored.", (long) temp);
1003 ignore_rest_of_line ();
1004 return;
1005 }
1006 *p = 0;
1007 symbolP = symbol_find_or_make (name);
1008 *p = c;
1009 if (S_IS_DEFINED (symbolP))
1010 {
1011 as_bad ("Ignoring attempt to re-define symbol `%s'.",
1012 S_GET_NAME (symbolP));
1013 ignore_rest_of_line ();
1014 return;
1015 }
1016 if (S_GET_VALUE (symbolP))
1017 {
1018 if (S_GET_VALUE (symbolP) != (valueT) temp)
1019 as_bad ("Length of .comm \"%s\" is already %ld. Not changed to %ld.",
1020 S_GET_NAME (symbolP),
1021 (long) S_GET_VALUE (symbolP),
1022 (long) temp);
1023 }
1024 else
1025 {
1026 S_SET_VALUE (symbolP, (valueT) temp);
1027 S_SET_EXTERNAL (symbolP);
1028 }
1029 #ifdef OBJ_VMS
1030 {
1031 extern int flag_one;
1032 if ( (!temp) || !flag_one)
1033 S_GET_OTHER(symbolP) = const_flag;
1034 }
1035 #endif /* not OBJ_VMS */
1036 know (symbolP->sy_frag == &zero_address_frag);
1037 demand_empty_rest_of_line ();
1038 } /* s_comm() */
1039
1040 /* The MRI COMMON pseudo-op. We handle this by creating a common
1041 symbol with the appropriate name. We make s_space do the right
1042 thing by increasing the size. */
1043
1044 void
1045 s_mri_common (small)
1046 int small;
1047 {
1048 char *name;
1049 char c;
1050 char *alc = NULL;
1051 symbolS *sym;
1052 offsetT align;
1053
1054 if (! flag_mri)
1055 {
1056 s_comm (0);
1057 return;
1058 }
1059
1060 SKIP_WHITESPACE ();
1061
1062 name = input_line_pointer;
1063 if (! isdigit ((unsigned char) *name))
1064 c = get_symbol_end ();
1065 else
1066 {
1067 do
1068 {
1069 ++input_line_pointer;
1070 }
1071 while (isdigit ((unsigned char) *input_line_pointer));
1072 c = *input_line_pointer;
1073 *input_line_pointer = '\0';
1074
1075 if (mri_line_label != NULL)
1076 {
1077 alc = (char *) xmalloc (strlen (S_GET_NAME (mri_line_label))
1078 + (input_line_pointer - name)
1079 + 1);
1080 sprintf (alc, "%s%s", name, S_GET_NAME (mri_line_label));
1081 name = alc;
1082 }
1083 }
1084
1085 sym = symbol_find_or_make (name);
1086 *input_line_pointer = c;
1087 if (alc != NULL)
1088 free (alc);
1089
1090 if (*input_line_pointer != ',')
1091 align = 0;
1092 else
1093 {
1094 ++input_line_pointer;
1095 align = get_absolute_expression ();
1096 }
1097
1098 if (S_IS_DEFINED (sym))
1099 {
1100 #if defined (S_IS_COMMON) || defined (BFD_ASSEMBLER)
1101 if (! S_IS_COMMON (sym))
1102 #endif
1103 {
1104 as_bad ("attempt to re-define symbol `%s'", S_GET_NAME (sym));
1105 ignore_rest_of_line ();
1106 return;
1107 }
1108 }
1109
1110 S_SET_EXTERNAL (sym);
1111 mri_common_symbol = sym;
1112
1113 #ifdef S_SET_ALIGN
1114 if (align != 0)
1115 S_SET_ALIGN (sym, align);
1116 #endif
1117
1118 if (mri_line_label != NULL)
1119 {
1120 mri_line_label->sy_value.X_op = O_symbol;
1121 mri_line_label->sy_value.X_add_symbol = sym;
1122 mri_line_label->sy_value.X_add_number = S_GET_VALUE (sym);
1123 mri_line_label->sy_frag = &zero_address_frag;
1124 S_SET_SEGMENT (mri_line_label, expr_section);
1125 }
1126
1127 /* FIXME: We just ignore the small argument, which distinguishes
1128 COMMON and COMMON.S. I don't know what we can do about it. */
1129
1130 /* Ignore the type and hptype. */
1131 if (*input_line_pointer == ',')
1132 input_line_pointer += 2;
1133 if (*input_line_pointer == ',')
1134 input_line_pointer += 2;
1135 demand_empty_rest_of_line ();
1136 }
1137
1138 void
1139 s_data (ignore)
1140 int ignore;
1141 {
1142 segT section;
1143 register int temp;
1144
1145 temp = get_absolute_expression ();
1146 if (flag_readonly_data_in_text)
1147 {
1148 section = text_section;
1149 temp += 1000;
1150 }
1151 else
1152 section = data_section;
1153
1154 subseg_set (section, (subsegT) temp);
1155
1156 #ifdef OBJ_VMS
1157 const_flag = 0;
1158 #endif
1159 demand_empty_rest_of_line ();
1160 }
1161
1162 /* Handle the .appfile pseudo-op. This is automatically generated by
1163 do_scrub_next_char when a preprocessor # line comment is seen with
1164 a file name. This default definition may be overridden by the
1165 object or CPU specific pseudo-ops. This function is also the
1166 default definition for .file; the APPFILE argument is 1 for
1167 .appfile, 0 for .file. */
1168
1169 void
1170 s_app_file (appfile)
1171 int appfile;
1172 {
1173 register char *s;
1174 int length;
1175
1176 /* Some assemblers tolerate immediately following '"' */
1177 if ((s = demand_copy_string (&length)) != 0)
1178 {
1179 /* If this is a fake .appfile, a fake newline was inserted into
1180 the buffer. Passing -2 to new_logical_line tells it to
1181 account for it. */
1182 new_logical_line (s, appfile ? -2 : -1);
1183 demand_empty_rest_of_line ();
1184 #ifdef LISTING
1185 if (listing)
1186 listing_source_file (s);
1187 #endif
1188 }
1189 #ifdef obj_app_file
1190 obj_app_file (s);
1191 #endif
1192 }
1193
1194 /* Handle the .appline pseudo-op. This is automatically generated by
1195 do_scrub_next_char when a preprocessor # line comment is seen.
1196 This default definition may be overridden by the object or CPU
1197 specific pseudo-ops. */
1198
1199 void
1200 s_app_line (ignore)
1201 int ignore;
1202 {
1203 int l;
1204
1205 /* The given number is that of the next line. */
1206 l = get_absolute_expression () - 1;
1207 if (l < 0)
1208 /* Some of the back ends can't deal with non-positive line numbers.
1209 Besides, it's silly. */
1210 as_warn ("Line numbers must be positive; line number %d rejected.", l+1);
1211 else
1212 {
1213 new_logical_line ((char *) NULL, l);
1214 #ifdef LISTING
1215 if (listing)
1216 listing_source_line (l);
1217 #endif
1218 }
1219 demand_empty_rest_of_line ();
1220 }
1221
1222 /* Handle the .end pseudo-op. Actually, the real work is done in
1223 read_a_source_file. */
1224
1225 void
1226 s_end (ignore)
1227 int ignore;
1228 {
1229 if (flag_mri)
1230 {
1231 /* The MRI assembler permits the start symbol to follow .end,
1232 but we don't support that. */
1233 SKIP_WHITESPACE ();
1234 if (! is_end_of_line[(unsigned char) *input_line_pointer])
1235 as_warn ("start address not supported");
1236 }
1237 }
1238
1239 /* Handle the MRI fail pseudo-op. */
1240
1241 void
1242 s_fail (ignore)
1243 int ignore;
1244 {
1245 offsetT temp;
1246
1247 temp = get_absolute_expression ();
1248 if (temp >= 500)
1249 as_warn (".fail %ld encountered", (long) temp);
1250 else
1251 as_bad (".fail %ld encountered", (long) temp);
1252 demand_empty_rest_of_line ();
1253 }
1254
1255 void
1256 s_fill (ignore)
1257 int ignore;
1258 {
1259 long temp_repeat = 0;
1260 long temp_size = 1;
1261 register long temp_fill = 0;
1262 char *p;
1263
1264
1265 temp_repeat = get_absolute_expression ();
1266 if (*input_line_pointer == ',')
1267 {
1268 input_line_pointer++;
1269 temp_size = get_absolute_expression ();
1270 if (*input_line_pointer == ',')
1271 {
1272 input_line_pointer++;
1273 temp_fill = get_absolute_expression ();
1274 }
1275 }
1276 /* This is to be compatible with BSD 4.2 AS, not for any rational reason. */
1277 #define BSD_FILL_SIZE_CROCK_8 (8)
1278 if (temp_size > BSD_FILL_SIZE_CROCK_8)
1279 {
1280 as_warn (".fill size clamped to %d.", BSD_FILL_SIZE_CROCK_8);
1281 temp_size = BSD_FILL_SIZE_CROCK_8;
1282 }
1283 if (temp_size < 0)
1284 {
1285 as_warn ("Size negative: .fill ignored.");
1286 temp_size = 0;
1287 }
1288 else if (temp_repeat <= 0)
1289 {
1290 as_warn ("Repeat < 0, .fill ignored");
1291 temp_size = 0;
1292 }
1293
1294 if (temp_size && !need_pass_2)
1295 {
1296 p = frag_var (rs_fill, (int) temp_size, (int) temp_size, (relax_substateT) 0, (symbolS *) 0, temp_repeat, (char *) 0);
1297 memset (p, 0, (unsigned int) temp_size);
1298 /* The magic number BSD_FILL_SIZE_CROCK_4 is from BSD 4.2 VAX
1299 * flavoured AS. The following bizzare behaviour is to be
1300 * compatible with above. I guess they tried to take up to 8
1301 * bytes from a 4-byte expression and they forgot to sign
1302 * extend. Un*x Sux. */
1303 #define BSD_FILL_SIZE_CROCK_4 (4)
1304 md_number_to_chars (p, (valueT) temp_fill,
1305 (temp_size > BSD_FILL_SIZE_CROCK_4
1306 ? BSD_FILL_SIZE_CROCK_4
1307 : (int) temp_size));
1308 /* Note: .fill (),0 emits no frag (since we are asked to .fill 0 bytes)
1309 * but emits no error message because it seems a legal thing to do.
1310 * It is a degenerate case of .fill but could be emitted by a compiler.
1311 */
1312 }
1313 demand_empty_rest_of_line ();
1314 }
1315
1316 void
1317 s_globl (ignore)
1318 int ignore;
1319 {
1320 char *name;
1321 int c;
1322 symbolS *symbolP;
1323
1324 do
1325 {
1326 name = input_line_pointer;
1327 c = get_symbol_end ();
1328 symbolP = symbol_find_or_make (name);
1329 *input_line_pointer = c;
1330 SKIP_WHITESPACE ();
1331 S_SET_EXTERNAL (symbolP);
1332 if (c == ',')
1333 {
1334 input_line_pointer++;
1335 SKIP_WHITESPACE ();
1336 if (*input_line_pointer == '\n')
1337 c = '\n';
1338 }
1339 }
1340 while (c == ',');
1341 demand_empty_rest_of_line ();
1342 }
1343
1344 void
1345 s_lcomm (needs_align)
1346 /* 1 if this was a ".bss" directive, which may require a 3rd argument
1347 (alignment); 0 if it was an ".lcomm" (2 args only) */
1348 int needs_align;
1349 {
1350 register char *name;
1351 register char c;
1352 register char *p;
1353 register int temp;
1354 register symbolS *symbolP;
1355 segT current_seg = now_seg;
1356 subsegT current_subseg = now_subseg;
1357 const int max_alignment = 15;
1358 int align = 0;
1359 segT bss_seg = bss_section;
1360
1361 name = input_line_pointer;
1362 c = get_symbol_end ();
1363 p = input_line_pointer;
1364 *p = c;
1365 SKIP_WHITESPACE ();
1366
1367 /* Accept an optional comma after the name. The comma used to be
1368 required, but Irix 5 cc does not generate it. */
1369 if (*input_line_pointer == ',')
1370 {
1371 ++input_line_pointer;
1372 SKIP_WHITESPACE ();
1373 }
1374
1375 if (*input_line_pointer == '\n')
1376 {
1377 as_bad ("Missing size expression");
1378 return;
1379 }
1380
1381 if ((temp = get_absolute_expression ()) < 0)
1382 {
1383 as_warn ("BSS length (%d.) <0! Ignored.", temp);
1384 ignore_rest_of_line ();
1385 return;
1386 }
1387
1388 #if defined (TC_MIPS) || defined (TC_ALPHA)
1389 if (OUTPUT_FLAVOR == bfd_target_ecoff_flavour
1390 || OUTPUT_FLAVOR == bfd_target_elf_flavour)
1391 {
1392 /* For MIPS and Alpha ECOFF or ELF, small objects are put in .sbss. */
1393 if (temp <= bfd_get_gp_size (stdoutput))
1394 {
1395 bss_seg = subseg_new (".sbss", 1);
1396 seg_info (bss_seg)->bss = 1;
1397 }
1398 }
1399 #endif
1400 if (!needs_align)
1401 {
1402 /* FIXME. This needs to be machine independent. */
1403 if (temp >= 8)
1404 align = 3;
1405 else if (temp >= 4)
1406 align = 2;
1407 else if (temp >= 2)
1408 align = 1;
1409 else
1410 align = 0;
1411
1412 record_alignment(bss_seg, align);
1413 }
1414
1415 if (needs_align)
1416 {
1417 align = 0;
1418 SKIP_WHITESPACE ();
1419 if (*input_line_pointer != ',')
1420 {
1421 as_bad ("Expected comma after size");
1422 ignore_rest_of_line ();
1423 return;
1424 }
1425 input_line_pointer++;
1426 SKIP_WHITESPACE ();
1427 if (*input_line_pointer == '\n')
1428 {
1429 as_bad ("Missing alignment");
1430 return;
1431 }
1432 align = get_absolute_expression ();
1433 if (align > max_alignment)
1434 {
1435 align = max_alignment;
1436 as_warn ("Alignment too large: %d. assumed.", align);
1437 }
1438 else if (align < 0)
1439 {
1440 align = 0;
1441 as_warn ("Alignment negative. 0 assumed.");
1442 }
1443 record_alignment (bss_seg, align);
1444 } /* if needs align */
1445 else
1446 {
1447 /* Assume some objects may require alignment on some systems. */
1448 #ifdef TC_ALPHA
1449 if (temp > 1)
1450 {
1451 align = ffs (temp) - 1;
1452 if (temp % (1 << align))
1453 abort ();
1454 }
1455 #endif
1456 }
1457
1458 *p = 0;
1459 symbolP = symbol_find_or_make (name);
1460 *p = c;
1461
1462 if (
1463 #if defined(OBJ_AOUT) | defined(OBJ_BOUT)
1464 S_GET_OTHER (symbolP) == 0 &&
1465 S_GET_DESC (symbolP) == 0 &&
1466 #endif /* OBJ_AOUT or OBJ_BOUT */
1467 (S_GET_SEGMENT (symbolP) == bss_seg
1468 || (!S_IS_DEFINED (symbolP) && S_GET_VALUE (symbolP) == 0)))
1469 {
1470 char *pfrag;
1471
1472 subseg_set (bss_seg, 1);
1473
1474 if (align)
1475 frag_align (align, 0);
1476 /* detach from old frag */
1477 if (S_GET_SEGMENT (symbolP) == bss_seg)
1478 symbolP->sy_frag->fr_symbol = NULL;
1479
1480 symbolP->sy_frag = frag_now;
1481 pfrag = frag_var (rs_org, 1, 1, (relax_substateT)0, symbolP,
1482 temp, (char *)0);
1483 *pfrag = 0;
1484
1485 S_SET_SEGMENT (symbolP, bss_seg);
1486
1487 #ifdef OBJ_COFF
1488 /* The symbol may already have been created with a preceding
1489 ".globl" directive -- be careful not to step on storage class
1490 in that case. Otherwise, set it to static. */
1491 if (S_GET_STORAGE_CLASS (symbolP) != C_EXT)
1492 {
1493 S_SET_STORAGE_CLASS (symbolP, C_STAT);
1494 }
1495 #endif /* OBJ_COFF */
1496 }
1497 else
1498 as_bad ("Ignoring attempt to re-define symbol `%s'.",
1499 S_GET_NAME (symbolP));
1500
1501 subseg_set (current_seg, current_subseg);
1502
1503 demand_empty_rest_of_line ();
1504 } /* s_lcomm() */
1505
1506 void
1507 s_lsym (ignore)
1508 int ignore;
1509 {
1510 register char *name;
1511 register char c;
1512 register char *p;
1513 expressionS exp;
1514 register symbolS *symbolP;
1515
1516 /* we permit ANY defined expression: BSD4.2 demands constants */
1517 name = input_line_pointer;
1518 c = get_symbol_end ();
1519 p = input_line_pointer;
1520 *p = c;
1521 SKIP_WHITESPACE ();
1522 if (*input_line_pointer != ',')
1523 {
1524 *p = 0;
1525 as_bad ("Expected comma after name \"%s\"", name);
1526 *p = c;
1527 ignore_rest_of_line ();
1528 return;
1529 }
1530 input_line_pointer++;
1531 expression (&exp);
1532 if (exp.X_op != O_constant
1533 && exp.X_op != O_register)
1534 {
1535 as_bad ("bad expression");
1536 ignore_rest_of_line ();
1537 return;
1538 }
1539 *p = 0;
1540 symbolP = symbol_find_or_make (name);
1541
1542 /* FIXME-SOON I pulled a (&& symbolP->sy_other == 0 &&
1543 symbolP->sy_desc == 0) out of this test because coff doesn't have
1544 those fields, and I can't see when they'd ever be tripped. I
1545 don't think I understand why they were here so I may have
1546 introduced a bug. As recently as 1.37 didn't have this test
1547 anyway. xoxorich. */
1548
1549 if (S_GET_SEGMENT (symbolP) == undefined_section
1550 && S_GET_VALUE (symbolP) == 0)
1551 {
1552 /* The name might be an undefined .global symbol; be sure to
1553 keep the "external" bit. */
1554 S_SET_SEGMENT (symbolP,
1555 (exp.X_op == O_constant
1556 ? absolute_section
1557 : reg_section));
1558 S_SET_VALUE (symbolP, (valueT) exp.X_add_number);
1559 }
1560 else
1561 {
1562 as_bad ("Symbol %s already defined", name);
1563 }
1564 *p = c;
1565 demand_empty_rest_of_line ();
1566 } /* s_lsym() */
1567
1568 /* Handle changing the location counter. */
1569
1570 static void
1571 do_org (segment, exp, fill)
1572 segT segment;
1573 expressionS *exp;
1574 int fill;
1575 {
1576 if (segment != now_seg && segment != absolute_section)
1577 as_bad ("invalid segment \"%s\"; segment \"%s\" assumed",
1578 segment_name (segment), segment_name (now_seg));
1579
1580 if (now_seg == absolute_section)
1581 {
1582 if (fill != 0)
1583 as_warn ("ignoring fill value in absolute section");
1584 if (exp->X_op != O_constant)
1585 {
1586 as_bad ("only constant offsets supported in absolute section");
1587 exp->X_add_number = 0;
1588 }
1589 abs_section_offset = exp->X_add_number;
1590 }
1591 else
1592 {
1593 char *p;
1594
1595 p = frag_var (rs_org, 1, 1, (relax_substateT) 0, exp->X_add_symbol,
1596 exp->X_add_number, (char *) NULL);
1597 *p = fill;
1598 }
1599 }
1600
1601 void
1602 s_org (ignore)
1603 int ignore;
1604 {
1605 register segT segment;
1606 expressionS exp;
1607 register long temp_fill;
1608
1609 /* The MRI assembler has a different meaning for .org. It means to
1610 create an absolute section at a given address. We can't support
1611 that--use a linker script instead. */
1612 if (flag_mri)
1613 {
1614 as_bad ("MRI style ORG pseudo-op not supported");
1615 ignore_rest_of_line ();
1616 return;
1617 }
1618
1619 /* Don't believe the documentation of BSD 4.2 AS. There is no such
1620 thing as a sub-segment-relative origin. Any absolute origin is
1621 given a warning, then assumed to be segment-relative. Any
1622 segmented origin expression ("foo+42") had better be in the right
1623 segment or the .org is ignored.
1624
1625 BSD 4.2 AS warns if you try to .org backwards. We cannot because
1626 we never know sub-segment sizes when we are reading code. BSD
1627 will crash trying to emit negative numbers of filler bytes in
1628 certain .orgs. We don't crash, but see as-write for that code.
1629
1630 Don't make frag if need_pass_2==1. */
1631 segment = get_known_segmented_expression (&exp);
1632 if (*input_line_pointer == ',')
1633 {
1634 input_line_pointer++;
1635 temp_fill = get_absolute_expression ();
1636 }
1637 else
1638 temp_fill = 0;
1639
1640 if (!need_pass_2)
1641 do_org (segment, &exp, temp_fill);
1642
1643 demand_empty_rest_of_line ();
1644 } /* s_org() */
1645
1646 void
1647 s_set (ignore)
1648 int ignore;
1649 {
1650 register char *name;
1651 register char delim;
1652 register char *end_name;
1653 register symbolS *symbolP;
1654
1655 /*
1656 * Especial apologies for the random logic:
1657 * this just grew, and could be parsed much more simply!
1658 * Dean in haste.
1659 */
1660 name = input_line_pointer;
1661 delim = get_symbol_end ();
1662 end_name = input_line_pointer;
1663 *end_name = delim;
1664 SKIP_WHITESPACE ();
1665
1666 if (*input_line_pointer != ',')
1667 {
1668 *end_name = 0;
1669 as_bad ("Expected comma after name \"%s\"", name);
1670 *end_name = delim;
1671 ignore_rest_of_line ();
1672 return;
1673 }
1674
1675 input_line_pointer++;
1676 *end_name = 0;
1677
1678 if (name[0] == '.' && name[1] == '\0')
1679 {
1680 /* Turn '. = mumble' into a .org mumble */
1681 register segT segment;
1682 expressionS exp;
1683
1684 segment = get_known_segmented_expression (&exp);
1685
1686 if (!need_pass_2)
1687 do_org (segment, &exp, 0);
1688
1689 *end_name = delim;
1690 return;
1691 }
1692
1693 if ((symbolP = symbol_find (name)) == NULL
1694 && (symbolP = md_undefined_symbol (name)) == NULL)
1695 {
1696 symbolP = symbol_new (name, undefined_section, 0, &zero_address_frag);
1697 #ifdef OBJ_COFF
1698 /* "set" symbols are local unless otherwise specified. */
1699 SF_SET_LOCAL (symbolP);
1700 #endif /* OBJ_COFF */
1701
1702 } /* make a new symbol */
1703
1704 symbol_table_insert (symbolP);
1705
1706 *end_name = delim;
1707 pseudo_set (symbolP);
1708 demand_empty_rest_of_line ();
1709 } /* s_set() */
1710
1711 void
1712 s_space (mult)
1713 int mult;
1714 {
1715 expressionS exp;
1716 long temp_fill;
1717 char *p = 0;
1718
1719 #ifdef md_flush_pending_output
1720 md_flush_pending_output ();
1721 #endif
1722
1723 /* Just like .fill, but temp_size = 1 */
1724 expression (&exp);
1725 if (exp.X_op == O_constant)
1726 {
1727 long repeat;
1728
1729 repeat = exp.X_add_number;
1730 if (mult)
1731 repeat *= mult;
1732 if (repeat <= 0)
1733 {
1734 as_warn (".space repeat count is %s, ignored",
1735 repeat ? "negative" : "zero");
1736 ignore_rest_of_line ();
1737 return;
1738 }
1739
1740 /* If we are in the absolute section, just bump the offset. */
1741 if (now_seg == absolute_section)
1742 {
1743 abs_section_offset += repeat;
1744 demand_empty_rest_of_line ();
1745 return;
1746 }
1747
1748 /* If we are secretly in an MRI common section, then creating
1749 space just increases the size of the common symbol. */
1750 if (mri_common_symbol != NULL)
1751 {
1752 S_SET_VALUE (mri_common_symbol,
1753 S_GET_VALUE (mri_common_symbol) + repeat);
1754 demand_empty_rest_of_line ();
1755 return;
1756 }
1757
1758 if (!need_pass_2)
1759 p = frag_var (rs_fill, 1, 1, (relax_substateT) 0, (symbolS *) 0,
1760 repeat, (char *) 0);
1761 }
1762 else
1763 {
1764 if (now_seg == absolute_section)
1765 {
1766 as_bad ("space allocation too complex in absolute section");
1767 subseg_set (text_section, 0);
1768 }
1769 if (mri_common_symbol != NULL)
1770 {
1771 as_bad ("space allocation too complex in common section");
1772 mri_common_symbol = NULL;
1773 }
1774 if (!need_pass_2)
1775 p = frag_var (rs_space, 1, 1, (relax_substateT) 0,
1776 make_expr_symbol (&exp), 0L, (char *) 0);
1777 }
1778 SKIP_WHITESPACE ();
1779 if (*input_line_pointer == ',')
1780 {
1781 input_line_pointer++;
1782 temp_fill = get_absolute_expression ();
1783 }
1784 else
1785 {
1786 temp_fill = 0;
1787 }
1788 if (p)
1789 {
1790 *p = temp_fill;
1791 }
1792 demand_empty_rest_of_line ();
1793 }
1794
1795 /* This is like s_space, but the value is a floating point number with
1796 the given precision. This is for the MRI dcb.s pseudo-op and
1797 friends. */
1798
1799 void
1800 s_float_space (float_type)
1801 int float_type;
1802 {
1803 offsetT count;
1804 int flen;
1805 char temp[MAXIMUM_NUMBER_OF_CHARS_FOR_FLOAT];
1806
1807 count = get_absolute_expression ();
1808
1809 SKIP_WHITESPACE ();
1810 if (*input_line_pointer != ',')
1811 {
1812 as_bad ("missing value");
1813 ignore_rest_of_line ();
1814 return;
1815 }
1816
1817 ++input_line_pointer;
1818
1819 SKIP_WHITESPACE ();
1820
1821 /* Skip any 0{letter} that may be present. Don't even check if the
1822 * letter is legal. */
1823 if (input_line_pointer[0] == '0' && isalpha (input_line_pointer[1]))
1824 input_line_pointer += 2;
1825
1826 /* Accept :xxxx, where the x's are hex digits, for a floating point
1827 with the exact digits specified. */
1828 if (input_line_pointer[0] == ':')
1829 {
1830 flen = hex_float (float_type, temp);
1831 if (flen < 0)
1832 {
1833 ignore_rest_of_line ();
1834 return;
1835 }
1836 }
1837 else
1838 {
1839 char *err;
1840
1841 err = md_atof (float_type, temp, &flen);
1842 know (flen <= MAXIMUM_NUMBER_OF_CHARS_FOR_FLOAT);
1843 know (flen > 0);
1844 if (err)
1845 {
1846 as_bad ("Bad floating literal: %s", err);
1847 ignore_rest_of_line ();
1848 return;
1849 }
1850 }
1851
1852 while (--count >= 0)
1853 {
1854 char *p;
1855
1856 p = frag_more (flen);
1857 memcpy (p, temp, (unsigned int) flen);
1858 }
1859
1860 demand_empty_rest_of_line ();
1861 }
1862
1863 /* Handle the .struct pseudo-op, as found in MIPS assemblers. */
1864
1865 void
1866 s_struct (ignore)
1867 int ignore;
1868 {
1869 abs_section_offset = get_absolute_expression ();
1870 subseg_set (absolute_section, 0);
1871 demand_empty_rest_of_line ();
1872 }
1873
1874 void
1875 s_text (ignore)
1876 int ignore;
1877 {
1878 register int temp;
1879
1880 temp = get_absolute_expression ();
1881 subseg_set (text_section, (subsegT) temp);
1882 demand_empty_rest_of_line ();
1883 #ifdef OBJ_VMS
1884 const_flag &= ~IN_DEFAULT_SECTION;
1885 #endif
1886 } /* s_text() */
1887 \f
1888
1889 void
1890 demand_empty_rest_of_line ()
1891 {
1892 SKIP_WHITESPACE ();
1893 if (is_end_of_line[(unsigned char) *input_line_pointer])
1894 {
1895 input_line_pointer++;
1896 }
1897 else
1898 {
1899 ignore_rest_of_line ();
1900 }
1901 /* Return having already swallowed end-of-line. */
1902 } /* Return pointing just after end-of-line. */
1903
1904 void
1905 ignore_rest_of_line () /* For suspect lines: gives warning. */
1906 {
1907 if (!is_end_of_line[(unsigned char) *input_line_pointer])
1908 {
1909 if (isprint (*input_line_pointer))
1910 as_bad ("Rest of line ignored. First ignored character is `%c'.",
1911 *input_line_pointer);
1912 else
1913 as_bad ("Rest of line ignored. First ignored character valued 0x%x.",
1914 *input_line_pointer);
1915 while (input_line_pointer < buffer_limit
1916 && !is_end_of_line[(unsigned char) *input_line_pointer])
1917 {
1918 input_line_pointer++;
1919 }
1920 }
1921 input_line_pointer++; /* Return pointing just after end-of-line. */
1922 know (is_end_of_line[(unsigned char) input_line_pointer[-1]]);
1923 }
1924
1925 /*
1926 * pseudo_set()
1927 *
1928 * In: Pointer to a symbol.
1929 * Input_line_pointer->expression.
1930 *
1931 * Out: Input_line_pointer->just after any whitespace after expression.
1932 * Tried to set symbol to value of expression.
1933 * Will change symbols type, value, and frag;
1934 */
1935 void
1936 pseudo_set (symbolP)
1937 symbolS *symbolP;
1938 {
1939 expressionS exp;
1940 #if (defined (OBJ_AOUT) || defined (OBJ_BOUT)) && ! defined (BFD_ASSEMBLER)
1941 int ext;
1942 #endif /* OBJ_AOUT or OBJ_BOUT */
1943
1944 know (symbolP); /* NULL pointer is logic error. */
1945 #if (defined (OBJ_AOUT) || defined (OBJ_BOUT)) && ! defined (BFD_ASSEMBLER)
1946 ext = S_IS_EXTERNAL (symbolP);
1947 #endif /* OBJ_AOUT or OBJ_BOUT */
1948
1949 (void) expression (&exp);
1950
1951 if (exp.X_op == O_illegal)
1952 as_bad ("illegal expression; zero assumed");
1953 else if (exp.X_op == O_absent)
1954 as_bad ("missing expression; zero assumed");
1955 else if (exp.X_op == O_big)
1956 as_bad ("%s number invalid; zero assumed",
1957 exp.X_add_number > 0 ? "bignum" : "floating point");
1958 else if (exp.X_op == O_subtract
1959 && (S_GET_SEGMENT (exp.X_add_symbol)
1960 == S_GET_SEGMENT (exp.X_op_symbol))
1961 && SEG_NORMAL (S_GET_SEGMENT (exp.X_add_symbol))
1962 && exp.X_add_symbol->sy_frag == exp.X_op_symbol->sy_frag)
1963 {
1964 exp.X_op = O_constant;
1965 exp.X_add_number = (S_GET_VALUE (exp.X_add_symbol)
1966 - S_GET_VALUE (exp.X_op_symbol));
1967 }
1968
1969 switch (exp.X_op)
1970 {
1971 case O_illegal:
1972 case O_absent:
1973 case O_big:
1974 exp.X_add_number = 0;
1975 /* Fall through. */
1976 case O_constant:
1977 S_SET_SEGMENT (symbolP, absolute_section);
1978 #if (defined (OBJ_AOUT) || defined (OBJ_BOUT)) && ! defined (BFD_ASSEMBLER)
1979 if (ext)
1980 S_SET_EXTERNAL (symbolP);
1981 else
1982 S_CLEAR_EXTERNAL (symbolP);
1983 #endif /* OBJ_AOUT or OBJ_BOUT */
1984 S_SET_VALUE (symbolP, (valueT) exp.X_add_number);
1985 symbolP->sy_frag = &zero_address_frag;
1986 break;
1987
1988 case O_register:
1989 S_SET_SEGMENT (symbolP, reg_section);
1990 S_SET_VALUE (symbolP, (valueT) exp.X_add_number);
1991 symbolP->sy_frag = &zero_address_frag;
1992 break;
1993
1994 case O_symbol:
1995 if (S_GET_SEGMENT (exp.X_add_symbol) == undefined_section
1996 || exp.X_add_number != 0)
1997 symbolP->sy_value = exp;
1998 else
1999 {
2000 symbolS *s = exp.X_add_symbol;
2001
2002 S_SET_SEGMENT (symbolP, S_GET_SEGMENT (s));
2003 #if (defined (OBJ_AOUT) || defined (OBJ_BOUT)) && ! defined (BFD_ASSEMBLER)
2004 if (ext)
2005 S_SET_EXTERNAL (symbolP);
2006 else
2007 S_CLEAR_EXTERNAL (symbolP);
2008 #endif /* OBJ_AOUT or OBJ_BOUT */
2009 S_SET_VALUE (symbolP,
2010 exp.X_add_number + S_GET_VALUE (s));
2011 symbolP->sy_frag = s->sy_frag;
2012 copy_symbol_attributes (symbolP, s);
2013 }
2014 break;
2015
2016 default:
2017 /* The value is some complex expression.
2018 FIXME: Should we set the segment to anything? */
2019 symbolP->sy_value = exp;
2020 break;
2021 }
2022 }
2023 \f
2024 /*
2025 * cons()
2026 *
2027 * CONStruct more frag of .bytes, or .words etc.
2028 * Should need_pass_2 be 1 then emit no frag(s).
2029 * This understands EXPRESSIONS.
2030 *
2031 * Bug (?)
2032 *
2033 * This has a split personality. We use expression() to read the
2034 * value. We can detect if the value won't fit in a byte or word.
2035 * But we can't detect if expression() discarded significant digits
2036 * in the case of a long. Not worth the crocks required to fix it.
2037 */
2038
2039 /* Select a parser for cons expressions. */
2040
2041 /* Some targets need to parse the expression in various fancy ways.
2042 You can define TC_PARSE_CONS_EXPRESSION to do whatever you like
2043 (for example, the HPPA does this). Otherwise, you can define
2044 BITFIELD_CONS_EXPRESSIONS to permit bitfields to be specified, or
2045 REPEAT_CONS_EXPRESSIONS to permit repeat counts. If none of these
2046 are defined, which is the normal case, then only simple expressions
2047 are permitted. */
2048
2049 static void
2050 parse_mri_cons PARAMS ((expressionS *exp, unsigned int nbytes));
2051
2052 #ifndef TC_PARSE_CONS_EXPRESSION
2053 #ifdef BITFIELD_CONS_EXPRESSIONS
2054 #define TC_PARSE_CONS_EXPRESSION(EXP, NBYTES) parse_bitfield_cons (EXP, NBYTES)
2055 static void
2056 parse_bitfield_cons PARAMS ((expressionS *exp, unsigned int nbytes));
2057 #endif
2058 #ifdef REPEAT_CONS_EXPRESSIONS
2059 #define TC_PARSE_CONS_EXPRESSION(EXP, NBYTES) parse_repeat_cons (EXP, NBYTES)
2060 static void
2061 parse_repeat_cons PARAMS ((expressionS *exp, unsigned int nbytes));
2062 #endif
2063
2064 /* If we haven't gotten one yet, just call expression. */
2065 #ifndef TC_PARSE_CONS_EXPRESSION
2066 #define TC_PARSE_CONS_EXPRESSION(EXP, NBYTES) expression (EXP)
2067 #endif
2068 #endif
2069
2070 /* worker to do .byte etc statements */
2071 /* clobbers input_line_pointer, checks */
2072 /* end-of-line. */
2073 void
2074 cons (nbytes)
2075 register int nbytes; /* 1=.byte, 2=.word, 4=.long */
2076 {
2077 int c;
2078 expressionS exp;
2079
2080 #ifdef md_flush_pending_output
2081 md_flush_pending_output ();
2082 #endif
2083
2084 if (is_it_end_of_statement ())
2085 {
2086 demand_empty_rest_of_line ();
2087 return;
2088 }
2089
2090 c = 0;
2091 do
2092 {
2093 if (flag_mri)
2094 parse_mri_cons (&exp, (unsigned int) nbytes);
2095 else
2096 TC_PARSE_CONS_EXPRESSION (&exp, (unsigned int) nbytes);
2097 emit_expr (&exp, (unsigned int) nbytes);
2098 ++c;
2099 }
2100 while (*input_line_pointer++ == ',');
2101
2102 /* In MRI mode, after an odd number of bytes, we must align to an
2103 even word boundary, unless the next instruction is a dc.b, ds.b
2104 or dcb.b. */
2105 if (flag_mri && nbytes == 1 && (c & 1) != 0)
2106 mri_pending_align = 1;
2107
2108 input_line_pointer--; /* Put terminator back into stream. */
2109 demand_empty_rest_of_line ();
2110 }
2111
2112 /* Put the contents of expression EXP into the object file using
2113 NBYTES bytes. If need_pass_2 is 1, this does nothing. */
2114
2115 void
2116 emit_expr (exp, nbytes)
2117 expressionS *exp;
2118 unsigned int nbytes;
2119 {
2120 operatorT op;
2121 register char *p;
2122 valueT extra_digit = 0;
2123
2124 /* Don't do anything if we are going to make another pass. */
2125 if (need_pass_2)
2126 return;
2127
2128 op = exp->X_op;
2129
2130 /* Allow `.word 0' in the absolute section. */
2131 if (now_seg == absolute_section)
2132 {
2133 if (op != O_constant || exp->X_add_number != 0)
2134 as_bad ("attempt to store value in absolute section");
2135 abs_section_offset += nbytes;
2136 return;
2137 }
2138
2139 /* Handle a negative bignum. */
2140 if (op == O_uminus
2141 && exp->X_add_number == 0
2142 && exp->X_add_symbol->sy_value.X_op == O_big
2143 && exp->X_add_symbol->sy_value.X_add_number > 0)
2144 {
2145 int i;
2146 unsigned long carry;
2147
2148 exp = &exp->X_add_symbol->sy_value;
2149
2150 /* Negate the bignum: one's complement each digit and add 1. */
2151 carry = 1;
2152 for (i = 0; i < exp->X_add_number; i++)
2153 {
2154 unsigned long next;
2155
2156 next = (((~ (generic_bignum[i] & LITTLENUM_MASK))
2157 & LITTLENUM_MASK)
2158 + carry);
2159 generic_bignum[i] = next & LITTLENUM_MASK;
2160 carry = next >> LITTLENUM_NUMBER_OF_BITS;
2161 }
2162
2163 /* We can ignore any carry out, because it will be handled by
2164 extra_digit if it is needed. */
2165
2166 extra_digit = (valueT) -1;
2167 op = O_big;
2168 }
2169
2170 if (op == O_absent || op == O_illegal)
2171 {
2172 as_warn ("zero assumed for missing expression");
2173 exp->X_add_number = 0;
2174 op = O_constant;
2175 }
2176 else if (op == O_big && exp->X_add_number <= 0)
2177 {
2178 as_bad ("floating point number invalid; zero assumed");
2179 exp->X_add_number = 0;
2180 op = O_constant;
2181 }
2182 else if (op == O_register)
2183 {
2184 as_warn ("register value used as expression");
2185 op = O_constant;
2186 }
2187
2188 p = frag_more ((int) nbytes);
2189
2190 #ifndef WORKING_DOT_WORD
2191 /* If we have the difference of two symbols in a word, save it on
2192 the broken_words list. See the code in write.c. */
2193 if (op == O_subtract && nbytes == 2)
2194 {
2195 struct broken_word *x;
2196
2197 x = (struct broken_word *) xmalloc (sizeof (struct broken_word));
2198 x->next_broken_word = broken_words;
2199 broken_words = x;
2200 x->frag = frag_now;
2201 x->word_goes_here = p;
2202 x->dispfrag = 0;
2203 x->add = exp->X_add_symbol;
2204 x->sub = exp->X_op_symbol;
2205 x->addnum = exp->X_add_number;
2206 x->added = 0;
2207 new_broken_words++;
2208 return;
2209 }
2210 #endif
2211
2212 /* If we have an integer, but the number of bytes is too large to
2213 pass to md_number_to_chars, handle it as a bignum. */
2214 if (op == O_constant && nbytes > sizeof (valueT))
2215 {
2216 valueT val;
2217 int gencnt;
2218
2219 if (! exp->X_unsigned && exp->X_add_number < 0)
2220 extra_digit = (valueT) -1;
2221 val = (valueT) exp->X_add_number;
2222 gencnt = 0;
2223 do
2224 {
2225 generic_bignum[gencnt] = val & LITTLENUM_MASK;
2226 val >>= LITTLENUM_NUMBER_OF_BITS;
2227 ++gencnt;
2228 }
2229 while (val != 0);
2230 op = exp->X_op = O_big;
2231 exp->X_add_number = gencnt;
2232 }
2233
2234 if (op == O_constant)
2235 {
2236 register valueT get;
2237 register valueT use;
2238 register valueT mask;
2239 register valueT unmask;
2240
2241 /* JF << of >= number of bits in the object is undefined. In
2242 particular SPARC (Sun 4) has problems */
2243 if (nbytes >= sizeof (valueT))
2244 mask = 0;
2245 else
2246 mask = ~(valueT) 0 << (BITS_PER_CHAR * nbytes); /* Don't store these bits. */
2247
2248 unmask = ~mask; /* Do store these bits. */
2249
2250 #ifdef NEVER
2251 "Do this mod if you want every overflow check to assume SIGNED 2's complement data.";
2252 mask = ~(unmask >> 1); /* Includes sign bit now. */
2253 #endif
2254
2255 get = exp->X_add_number;
2256 use = get & unmask;
2257 if ((get & mask) != 0 && (get & mask) != mask)
2258 { /* Leading bits contain both 0s & 1s. */
2259 as_warn ("Value 0x%lx truncated to 0x%lx.", get, use);
2260 }
2261 /* put bytes in right order. */
2262 md_number_to_chars (p, use, (int) nbytes);
2263 }
2264 else if (op == O_big)
2265 {
2266 int size;
2267 LITTLENUM_TYPE *nums;
2268
2269 know (nbytes % CHARS_PER_LITTLENUM == 0);
2270
2271 size = exp->X_add_number * CHARS_PER_LITTLENUM;
2272 if (nbytes < size)
2273 {
2274 as_warn ("Bignum truncated to %d bytes", nbytes);
2275 size = nbytes;
2276 }
2277
2278 if (target_big_endian)
2279 {
2280 while (nbytes > size)
2281 {
2282 md_number_to_chars (p, extra_digit, CHARS_PER_LITTLENUM);
2283 nbytes -= CHARS_PER_LITTLENUM;
2284 p += CHARS_PER_LITTLENUM;
2285 }
2286
2287 nums = generic_bignum + size / CHARS_PER_LITTLENUM;
2288 while (size > 0)
2289 {
2290 --nums;
2291 md_number_to_chars (p, (valueT) *nums, CHARS_PER_LITTLENUM);
2292 size -= CHARS_PER_LITTLENUM;
2293 p += CHARS_PER_LITTLENUM;
2294 }
2295 }
2296 else
2297 {
2298 nums = generic_bignum;
2299 while (size > 0)
2300 {
2301 md_number_to_chars (p, (valueT) *nums, CHARS_PER_LITTLENUM);
2302 ++nums;
2303 size -= CHARS_PER_LITTLENUM;
2304 p += CHARS_PER_LITTLENUM;
2305 nbytes -= CHARS_PER_LITTLENUM;
2306 }
2307
2308 while (nbytes > 0)
2309 {
2310 md_number_to_chars (p, extra_digit, CHARS_PER_LITTLENUM);
2311 nbytes -= CHARS_PER_LITTLENUM;
2312 p += CHARS_PER_LITTLENUM;
2313 }
2314 }
2315 }
2316 else
2317 {
2318 memset (p, 0, nbytes);
2319
2320 /* Now we need to generate a fixS to record the symbol value.
2321 This is easy for BFD. For other targets it can be more
2322 complex. For very complex cases (currently, the HPPA and
2323 NS32K), you can define TC_CONS_FIX_NEW to do whatever you
2324 want. For simpler cases, you can define TC_CONS_RELOC to be
2325 the name of the reloc code that should be stored in the fixS.
2326 If neither is defined, the code uses NO_RELOC if it is
2327 defined, and otherwise uses 0. */
2328
2329 #ifdef BFD_ASSEMBLER
2330 #ifdef TC_CONS_FIX_NEW
2331 TC_CONS_FIX_NEW (frag_now, p - frag_now->fr_literal, nbytes, exp);
2332 #else
2333 fix_new_exp (frag_now, p - frag_now->fr_literal, (int) nbytes, exp, 0,
2334 /* @@ Should look at CPU word size. */
2335 nbytes == 2 ? BFD_RELOC_16
2336 : nbytes == 8 ? BFD_RELOC_64
2337 : BFD_RELOC_32);
2338 #endif
2339 #else
2340 #ifdef TC_CONS_FIX_NEW
2341 TC_CONS_FIX_NEW (frag_now, p - frag_now->fr_literal, nbytes, exp);
2342 #else
2343 /* Figure out which reloc number to use. Use TC_CONS_RELOC if
2344 it is defined, otherwise use NO_RELOC if it is defined,
2345 otherwise use 0. */
2346 #ifndef TC_CONS_RELOC
2347 #ifdef NO_RELOC
2348 #define TC_CONS_RELOC NO_RELOC
2349 #else
2350 #define TC_CONS_RELOC 0
2351 #endif
2352 #endif
2353 fix_new_exp (frag_now, p - frag_now->fr_literal, (int) nbytes, exp, 0,
2354 TC_CONS_RELOC);
2355 #endif /* TC_CONS_FIX_NEW */
2356 #endif /* BFD_ASSEMBLER */
2357 }
2358 }
2359 \f
2360 #ifdef BITFIELD_CONS_EXPRESSIONS
2361
2362 /* i960 assemblers, (eg, asm960), allow bitfields after ".byte" as
2363 w:x,y:z, where w and y are bitwidths and x and y are values. They
2364 then pack them all together. We do a little better in that we allow
2365 them in words, longs, etc. and we'll pack them in target byte order
2366 for you.
2367
2368 The rules are: pack least significat bit first, if a field doesn't
2369 entirely fit, put it in the next unit. Overflowing the bitfield is
2370 explicitly *not* even a warning. The bitwidth should be considered
2371 a "mask".
2372
2373 To use this function the tc-XXX.h file should define
2374 BITFIELD_CONS_EXPRESSIONS. */
2375
2376 static void
2377 parse_bitfield_cons (exp, nbytes)
2378 expressionS *exp;
2379 unsigned int nbytes;
2380 {
2381 unsigned int bits_available = BITS_PER_CHAR * nbytes;
2382 char *hold = input_line_pointer;
2383
2384 (void) expression (exp);
2385
2386 if (*input_line_pointer == ':')
2387 { /* bitfields */
2388 long value = 0;
2389
2390 for (;;)
2391 {
2392 unsigned long width;
2393
2394 if (*input_line_pointer != ':')
2395 {
2396 input_line_pointer = hold;
2397 break;
2398 } /* next piece is not a bitfield */
2399
2400 /* In the general case, we can't allow
2401 full expressions with symbol
2402 differences and such. The relocation
2403 entries for symbols not defined in this
2404 assembly would require arbitrary field
2405 widths, positions, and masks which most
2406 of our current object formats don't
2407 support.
2408
2409 In the specific case where a symbol
2410 *is* defined in this assembly, we
2411 *could* build fixups and track it, but
2412 this could lead to confusion for the
2413 backends. I'm lazy. I'll take any
2414 SEG_ABSOLUTE. I think that means that
2415 you can use a previous .set or
2416 .equ type symbol. xoxorich. */
2417
2418 if (exp->X_op == O_absent)
2419 {
2420 as_warn ("using a bit field width of zero");
2421 exp->X_add_number = 0;
2422 exp->X_op = O_constant;
2423 } /* implied zero width bitfield */
2424
2425 if (exp->X_op != O_constant)
2426 {
2427 *input_line_pointer = '\0';
2428 as_bad ("field width \"%s\" too complex for a bitfield", hold);
2429 *input_line_pointer = ':';
2430 demand_empty_rest_of_line ();
2431 return;
2432 } /* too complex */
2433
2434 if ((width = exp->X_add_number) > (BITS_PER_CHAR * nbytes))
2435 {
2436 as_warn ("field width %lu too big to fit in %d bytes: truncated to %d bits",
2437 width, nbytes, (BITS_PER_CHAR * nbytes));
2438 width = BITS_PER_CHAR * nbytes;
2439 } /* too big */
2440
2441 if (width > bits_available)
2442 {
2443 /* FIXME-SOMEDAY: backing up and reparsing is wasteful. */
2444 input_line_pointer = hold;
2445 exp->X_add_number = value;
2446 break;
2447 } /* won't fit */
2448
2449 hold = ++input_line_pointer; /* skip ':' */
2450
2451 (void) expression (exp);
2452 if (exp->X_op != O_constant)
2453 {
2454 char cache = *input_line_pointer;
2455
2456 *input_line_pointer = '\0';
2457 as_bad ("field value \"%s\" too complex for a bitfield", hold);
2458 *input_line_pointer = cache;
2459 demand_empty_rest_of_line ();
2460 return;
2461 } /* too complex */
2462
2463 value |= ((~(-1 << width) & exp->X_add_number)
2464 << ((BITS_PER_CHAR * nbytes) - bits_available));
2465
2466 if ((bits_available -= width) == 0
2467 || is_it_end_of_statement ()
2468 || *input_line_pointer != ',')
2469 {
2470 break;
2471 } /* all the bitfields we're gonna get */
2472
2473 hold = ++input_line_pointer;
2474 (void) expression (exp);
2475 } /* forever loop */
2476
2477 exp->X_add_number = value;
2478 exp->X_op = O_constant;
2479 exp->X_unsigned = 1;
2480 } /* if looks like a bitfield */
2481 } /* parse_bitfield_cons() */
2482
2483 #endif /* BITFIELD_CONS_EXPRESSIONS */
2484 \f
2485 /* Handle an MRI style string expression. */
2486
2487 static void
2488 parse_mri_cons (exp, nbytes)
2489 expressionS *exp;
2490 unsigned int nbytes;
2491 {
2492 if (*input_line_pointer != '\''
2493 && (input_line_pointer[1] != '\''
2494 || (*input_line_pointer != 'A'
2495 && *input_line_pointer != 'E')))
2496 TC_PARSE_CONS_EXPRESSION (exp, nbytes);
2497 else
2498 {
2499 int scan = 0;
2500 unsigned int result = 0;
2501
2502 /* An MRI style string. Cut into as many bytes as will fit into
2503 a nbyte chunk, left justify if necessary, and separate with
2504 commas so we can try again later. */
2505 if (*input_line_pointer == 'A')
2506 ++input_line_pointer;
2507 else if (*input_line_pointer == 'E')
2508 {
2509 as_bad ("EBCDIC constants are not supported");
2510 ++input_line_pointer;
2511 }
2512
2513 input_line_pointer++;
2514 for (scan = 0; scan < nbytes; scan++)
2515 {
2516 if (*input_line_pointer == '\'')
2517 {
2518 if (input_line_pointer[1] == '\'')
2519 {
2520 input_line_pointer++;
2521 }
2522 else
2523 break;
2524 }
2525 result = (result << 8) | (*input_line_pointer++);
2526 }
2527
2528 /* Left justify */
2529 while (scan < nbytes)
2530 {
2531 result <<= 8;
2532 scan++;
2533 }
2534 /* Create correct expression */
2535 exp->X_op = O_constant;
2536 exp->X_add_number = result;
2537 /* Fake it so that we can read the next char too */
2538 if (input_line_pointer[0] != '\'' ||
2539 (input_line_pointer[0] == '\'' && input_line_pointer[1] == '\''))
2540 {
2541 input_line_pointer -= 2;
2542 input_line_pointer[0] = ',';
2543 input_line_pointer[1] = '\'';
2544 }
2545 else
2546 input_line_pointer++;
2547 }
2548 }
2549 \f
2550 #ifdef REPEAT_CONS_EXPRESSIONS
2551
2552 /* Parse a repeat expression for cons. This is used by the MIPS
2553 assembler. The format is NUMBER:COUNT; NUMBER appears in the
2554 object file COUNT times.
2555
2556 To use this for a target, define REPEAT_CONS_EXPRESSIONS. */
2557
2558 static void
2559 parse_repeat_cons (exp, nbytes)
2560 expressionS *exp;
2561 unsigned int nbytes;
2562 {
2563 expressionS count;
2564 register int i;
2565
2566 expression (exp);
2567
2568 if (*input_line_pointer != ':')
2569 {
2570 /* No repeat count. */
2571 return;
2572 }
2573
2574 ++input_line_pointer;
2575 expression (&count);
2576 if (count.X_op != O_constant
2577 || count.X_add_number <= 0)
2578 {
2579 as_warn ("Unresolvable or nonpositive repeat count; using 1");
2580 return;
2581 }
2582
2583 /* The cons function is going to output this expression once. So we
2584 output it count - 1 times. */
2585 for (i = count.X_add_number - 1; i > 0; i--)
2586 emit_expr (exp, nbytes);
2587 }
2588
2589 #endif /* REPEAT_CONS_EXPRESSIONS */
2590 \f
2591 /* Parse a floating point number represented as a hex constant. This
2592 permits users to specify the exact bits they want in the floating
2593 point number. */
2594
2595 static int
2596 hex_float (float_type, bytes)
2597 int float_type;
2598 char *bytes;
2599 {
2600 int length;
2601 int i;
2602
2603 switch (float_type)
2604 {
2605 case 'f':
2606 case 'F':
2607 case 's':
2608 case 'S':
2609 length = 4;
2610 break;
2611
2612 case 'd':
2613 case 'D':
2614 case 'r':
2615 case 'R':
2616 length = 8;
2617 break;
2618
2619 case 'x':
2620 case 'X':
2621 length = 12;
2622 break;
2623
2624 case 'p':
2625 case 'P':
2626 length = 12;
2627 break;
2628
2629 default:
2630 as_bad ("Unknown floating type type '%c'", float_type);
2631 return -1;
2632 }
2633
2634 /* It would be nice if we could go through expression to parse the
2635 hex constant, but if we get a bignum it's a pain to sort it into
2636 the buffer correctly. */
2637 i = 0;
2638 while (hex_p (*input_line_pointer) || *input_line_pointer == '_')
2639 {
2640 int d;
2641
2642 /* The MRI assembler accepts arbitrary underscores strewn about
2643 through the hex constant, so we ignore them as well. */
2644 if (*input_line_pointer == '_')
2645 {
2646 ++input_line_pointer;
2647 continue;
2648 }
2649
2650 if (i >= length)
2651 {
2652 as_warn ("Floating point constant too large");
2653 return -1;
2654 }
2655 d = hex_value (*input_line_pointer) << 4;
2656 ++input_line_pointer;
2657 while (*input_line_pointer == '_')
2658 ++input_line_pointer;
2659 if (hex_p (*input_line_pointer))
2660 {
2661 d += hex_value (*input_line_pointer);
2662 ++input_line_pointer;
2663 }
2664 if (target_big_endian)
2665 bytes[i] = d;
2666 else
2667 bytes[length - i - 1] = d;
2668 ++i;
2669 }
2670
2671 if (i < length)
2672 {
2673 if (target_big_endian)
2674 memset (bytes + i, 0, length - i);
2675 else
2676 memset (bytes, 0, length - i);
2677 }
2678
2679 return length;
2680 }
2681
2682 /*
2683 * float_cons()
2684 *
2685 * CONStruct some more frag chars of .floats .ffloats etc.
2686 * Makes 0 or more new frags.
2687 * If need_pass_2 == 1, no frags are emitted.
2688 * This understands only floating literals, not expressions. Sorry.
2689 *
2690 * A floating constant is defined by atof_generic(), except it is preceded
2691 * by 0d 0f 0g or 0h. After observing the STRANGE way my BSD AS does its
2692 * reading, I decided to be incompatible. This always tries to give you
2693 * rounded bits to the precision of the pseudo-op. Former AS did premature
2694 * truncatation, restored noisy bits instead of trailing 0s AND gave you
2695 * a choice of 2 flavours of noise according to which of 2 floating-point
2696 * scanners you directed AS to use.
2697 *
2698 * In: input_line_pointer->whitespace before, or '0' of flonum.
2699 *
2700 */
2701
2702 void
2703 float_cons (float_type)
2704 /* Clobbers input_line-pointer, checks end-of-line. */
2705 register int float_type; /* 'f':.ffloat ... 'F':.float ... */
2706 {
2707 register char *p;
2708 int length; /* Number of chars in an object. */
2709 register char *err; /* Error from scanning floating literal. */
2710 char temp[MAXIMUM_NUMBER_OF_CHARS_FOR_FLOAT];
2711
2712 if (is_it_end_of_statement ())
2713 {
2714 demand_empty_rest_of_line ();
2715 return;
2716 }
2717
2718 do
2719 {
2720 /* input_line_pointer->1st char of a flonum (we hope!). */
2721 SKIP_WHITESPACE ();
2722
2723 /* Skip any 0{letter} that may be present. Don't even check if the
2724 * letter is legal. Someone may invent a "z" format and this routine
2725 * has no use for such information. Lusers beware: you get
2726 * diagnostics if your input is ill-conditioned.
2727 */
2728 if (input_line_pointer[0] == '0' && isalpha (input_line_pointer[1]))
2729 input_line_pointer += 2;
2730
2731 /* Accept :xxxx, where the x's are hex digits, for a floating
2732 point with the exact digits specified. */
2733 if (input_line_pointer[0] == ':')
2734 {
2735 ++input_line_pointer;
2736 length = hex_float (float_type, temp);
2737 if (length < 0)
2738 {
2739 ignore_rest_of_line ();
2740 return;
2741 }
2742 }
2743 else
2744 {
2745 err = md_atof (float_type, temp, &length);
2746 know (length <= MAXIMUM_NUMBER_OF_CHARS_FOR_FLOAT);
2747 know (length > 0);
2748 if (err)
2749 {
2750 as_bad ("Bad floating literal: %s", err);
2751 ignore_rest_of_line ();
2752 return;
2753 }
2754 }
2755
2756 if (!need_pass_2)
2757 {
2758 int count;
2759
2760 count = 1;
2761
2762 #ifdef REPEAT_CONS_EXPRESSIONS
2763 if (*input_line_pointer == ':')
2764 {
2765 expressionS count_exp;
2766
2767 ++input_line_pointer;
2768 expression (&count_exp);
2769 if (count_exp.X_op != O_constant
2770 || count_exp.X_add_number <= 0)
2771 {
2772 as_warn ("unresolvable or nonpositive repeat count; using 1");
2773 }
2774 else
2775 count = count_exp.X_add_number;
2776 }
2777 #endif
2778
2779 while (--count >= 0)
2780 {
2781 p = frag_more (length);
2782 memcpy (p, temp, (unsigned int) length);
2783 }
2784 }
2785 SKIP_WHITESPACE ();
2786 }
2787 while (*input_line_pointer++ == ',');
2788
2789 --input_line_pointer; /* Put terminator back into stream. */
2790 demand_empty_rest_of_line ();
2791 } /* float_cons() */
2792 \f
2793 /*
2794 * stringer()
2795 *
2796 * We read 0 or more ',' seperated, double-quoted strings.
2797 *
2798 * Caller should have checked need_pass_2 is FALSE because we don't check it.
2799 */
2800
2801
2802 void
2803 stringer (append_zero) /* Worker to do .ascii etc statements. */
2804 /* Checks end-of-line. */
2805 register int append_zero; /* 0: don't append '\0', else 1 */
2806 {
2807 register unsigned int c;
2808
2809 #ifdef md_flush_pending_output
2810 md_flush_pending_output ();
2811 #endif
2812
2813 /*
2814 * The following awkward logic is to parse ZERO or more strings,
2815 * comma seperated. Recall a string expression includes spaces
2816 * before the opening '\"' and spaces after the closing '\"'.
2817 * We fake a leading ',' if there is (supposed to be)
2818 * a 1st, expression. We keep demanding expressions for each
2819 * ','.
2820 */
2821 if (is_it_end_of_statement ())
2822 {
2823 c = 0; /* Skip loop. */
2824 ++input_line_pointer; /* Compensate for end of loop. */
2825 }
2826 else
2827 {
2828 c = ','; /* Do loop. */
2829 }
2830 while (c == ',' || c == '<' || c == '"')
2831 {
2832 SKIP_WHITESPACE ();
2833 switch (*input_line_pointer)
2834 {
2835 case '\"':
2836 ++input_line_pointer; /*->1st char of string. */
2837 while (is_a_char (c = next_char_of_string ()))
2838 {
2839 FRAG_APPEND_1_CHAR (c);
2840 }
2841 if (append_zero)
2842 {
2843 FRAG_APPEND_1_CHAR (0);
2844 }
2845 know (input_line_pointer[-1] == '\"');
2846 break;
2847 case '<':
2848 input_line_pointer++;
2849 c = get_single_number ();
2850 FRAG_APPEND_1_CHAR (c);
2851 if (*input_line_pointer != '>')
2852 {
2853 as_bad ("Expected <nn>");
2854 }
2855 input_line_pointer++;
2856 break;
2857 case ',':
2858 input_line_pointer++;
2859 break;
2860 }
2861 SKIP_WHITESPACE ();
2862 c = *input_line_pointer;
2863 }
2864
2865 demand_empty_rest_of_line ();
2866 } /* stringer() */
2867 \f
2868 /* FIXME-SOMEDAY: I had trouble here on characters with the
2869 high bits set. We'll probably also have trouble with
2870 multibyte chars, wide chars, etc. Also be careful about
2871 returning values bigger than 1 byte. xoxorich. */
2872
2873 unsigned int
2874 next_char_of_string ()
2875 {
2876 register unsigned int c;
2877
2878 c = *input_line_pointer++ & CHAR_MASK;
2879 switch (c)
2880 {
2881 case '\"':
2882 c = NOT_A_CHAR;
2883 break;
2884
2885 #ifndef NO_STRING_ESCAPES
2886 case '\\':
2887 switch (c = *input_line_pointer++)
2888 {
2889 case 'b':
2890 c = '\b';
2891 break;
2892
2893 case 'f':
2894 c = '\f';
2895 break;
2896
2897 case 'n':
2898 c = '\n';
2899 break;
2900
2901 case 'r':
2902 c = '\r';
2903 break;
2904
2905 case 't':
2906 c = '\t';
2907 break;
2908
2909 case 'v':
2910 c = '\013';
2911 break;
2912
2913 case '\\':
2914 case '"':
2915 break; /* As itself. */
2916
2917 case '0':
2918 case '1':
2919 case '2':
2920 case '3':
2921 case '4':
2922 case '5':
2923 case '6':
2924 case '7':
2925 case '8':
2926 case '9':
2927 {
2928 long number;
2929 int i;
2930
2931 for (i = 0, number = 0; isdigit (c) && i < 3; c = *input_line_pointer++, i++)
2932 {
2933 number = number * 8 + c - '0';
2934 }
2935 c = number & 0xff;
2936 }
2937 --input_line_pointer;
2938 break;
2939
2940 case 'x':
2941 case 'X':
2942 {
2943 long number;
2944
2945 number = 0;
2946 c = *input_line_pointer++;
2947 while (isxdigit (c))
2948 {
2949 if (isdigit (c))
2950 number = number * 16 + c - '0';
2951 else if (isupper (c))
2952 number = number * 16 + c - 'A' + 10;
2953 else
2954 number = number * 16 + c - 'a' + 10;
2955 c = *input_line_pointer++;
2956 }
2957 c = number & 0xff;
2958 --input_line_pointer;
2959 }
2960 break;
2961
2962 case '\n':
2963 /* To be compatible with BSD 4.2 as: give the luser a linefeed!! */
2964 as_warn ("Unterminated string: Newline inserted.");
2965 c = '\n';
2966 break;
2967
2968 default:
2969
2970 #ifdef ONLY_STANDARD_ESCAPES
2971 as_bad ("Bad escaped character in string, '?' assumed");
2972 c = '?';
2973 #endif /* ONLY_STANDARD_ESCAPES */
2974
2975 break;
2976 } /* switch on escaped char */
2977 break;
2978 #endif /* ! defined (NO_STRING_ESCAPES) */
2979
2980 default:
2981 break;
2982 } /* switch on char */
2983 return (c);
2984 } /* next_char_of_string() */
2985 \f
2986 static segT
2987 get_segmented_expression (expP)
2988 register expressionS *expP;
2989 {
2990 register segT retval;
2991
2992 retval = expression (expP);
2993 if (expP->X_op == O_illegal
2994 || expP->X_op == O_absent
2995 || expP->X_op == O_big)
2996 {
2997 as_bad ("expected address expression; zero assumed");
2998 expP->X_op = O_constant;
2999 expP->X_add_number = 0;
3000 retval = absolute_section;
3001 }
3002 return retval;
3003 }
3004
3005 static segT
3006 get_known_segmented_expression (expP)
3007 register expressionS *expP;
3008 {
3009 register segT retval;
3010
3011 if ((retval = get_segmented_expression (expP)) == undefined_section)
3012 {
3013 /* There is no easy way to extract the undefined symbol from the
3014 expression. */
3015 if (expP->X_add_symbol != NULL
3016 && S_GET_SEGMENT (expP->X_add_symbol) != expr_section)
3017 as_warn ("symbol \"%s\" undefined; zero assumed",
3018 S_GET_NAME (expP->X_add_symbol));
3019 else
3020 as_warn ("some symbol undefined; zero assumed");
3021 retval = absolute_section;
3022 expP->X_op = O_constant;
3023 expP->X_add_number = 0;
3024 }
3025 know (retval == absolute_section || SEG_NORMAL (retval));
3026 return (retval);
3027 } /* get_known_segmented_expression() */
3028
3029 offsetT
3030 get_absolute_expression ()
3031 {
3032 expressionS exp;
3033
3034 expression (&exp);
3035 if (exp.X_op != O_constant)
3036 {
3037 if (exp.X_op != O_absent)
3038 as_bad ("bad or irreducible absolute expression; zero assumed");
3039 exp.X_add_number = 0;
3040 }
3041 return exp.X_add_number;
3042 }
3043
3044 char /* return terminator */
3045 get_absolute_expression_and_terminator (val_pointer)
3046 long *val_pointer; /* return value of expression */
3047 {
3048 /* FIXME: val_pointer should probably be offsetT *. */
3049 *val_pointer = (long) get_absolute_expression ();
3050 return (*input_line_pointer++);
3051 }
3052 \f
3053 /*
3054 * demand_copy_C_string()
3055 *
3056 * Like demand_copy_string, but return NULL if the string contains any '\0's.
3057 * Give a warning if that happens.
3058 */
3059 char *
3060 demand_copy_C_string (len_pointer)
3061 int *len_pointer;
3062 {
3063 register char *s;
3064
3065 if ((s = demand_copy_string (len_pointer)) != 0)
3066 {
3067 register int len;
3068
3069 for (len = *len_pointer;
3070 len > 0;
3071 len--)
3072 {
3073 if (*s == 0)
3074 {
3075 s = 0;
3076 len = 1;
3077 *len_pointer = 0;
3078 as_bad ("This string may not contain \'\\0\'");
3079 }
3080 }
3081 }
3082 return (s);
3083 }
3084 \f
3085 /*
3086 * demand_copy_string()
3087 *
3088 * Demand string, but return a safe (=private) copy of the string.
3089 * Return NULL if we can't read a string here.
3090 */
3091 char *
3092 demand_copy_string (lenP)
3093 int *lenP;
3094 {
3095 register unsigned int c;
3096 register int len;
3097 char *retval;
3098
3099 len = 0;
3100 SKIP_WHITESPACE ();
3101 if (*input_line_pointer == '\"')
3102 {
3103 input_line_pointer++; /* Skip opening quote. */
3104
3105 while (is_a_char (c = next_char_of_string ()))
3106 {
3107 obstack_1grow (&notes, c);
3108 len++;
3109 }
3110 /* JF this next line is so demand_copy_C_string will return a null
3111 termanated string. */
3112 obstack_1grow (&notes, '\0');
3113 retval = obstack_finish (&notes);
3114 }
3115 else
3116 {
3117 as_warn ("Missing string");
3118 retval = NULL;
3119 ignore_rest_of_line ();
3120 }
3121 *lenP = len;
3122 return (retval);
3123 } /* demand_copy_string() */
3124 \f
3125 /*
3126 * is_it_end_of_statement()
3127 *
3128 * In: Input_line_pointer->next character.
3129 *
3130 * Do: Skip input_line_pointer over all whitespace.
3131 *
3132 * Out: 1 if input_line_pointer->end-of-line.
3133 */
3134 int
3135 is_it_end_of_statement ()
3136 {
3137 SKIP_WHITESPACE ();
3138 return (is_end_of_line[(unsigned char) *input_line_pointer]);
3139 } /* is_it_end_of_statement() */
3140
3141 void
3142 equals (sym_name)
3143 char *sym_name;
3144 {
3145 register symbolS *symbolP; /* symbol we are working with */
3146
3147 input_line_pointer++;
3148 if (*input_line_pointer == '=')
3149 input_line_pointer++;
3150
3151 while (*input_line_pointer == ' ' || *input_line_pointer == '\t')
3152 input_line_pointer++;
3153
3154 if (sym_name[0] == '.' && sym_name[1] == '\0')
3155 {
3156 /* Turn '. = mumble' into a .org mumble */
3157 register segT segment;
3158 expressionS exp;
3159
3160 segment = get_known_segmented_expression (&exp);
3161 if (!need_pass_2)
3162 do_org (segment, &exp, 0);
3163 }
3164 else
3165 {
3166 symbolP = symbol_find_or_make (sym_name);
3167 pseudo_set (symbolP);
3168 }
3169 } /* equals() */
3170
3171 /* .include -- include a file at this point. */
3172
3173 /* ARGSUSED */
3174 void
3175 s_include (arg)
3176 int arg;
3177 {
3178 char *newbuf;
3179 char *filename;
3180 int i;
3181 FILE *try;
3182 char *path;
3183
3184 filename = demand_copy_string (&i);
3185 demand_empty_rest_of_line ();
3186 path = xmalloc ((unsigned long) i + include_dir_maxlen + 5 /* slop */ );
3187 for (i = 0; i < include_dir_count; i++)
3188 {
3189 strcpy (path, include_dirs[i]);
3190 strcat (path, "/");
3191 strcat (path, filename);
3192 if (0 != (try = fopen (path, "r")))
3193 {
3194 fclose (try);
3195 goto gotit;
3196 }
3197 }
3198 free (path);
3199 path = filename;
3200 gotit:
3201 /* malloc Storage leak when file is found on path. FIXME-SOMEDAY. */
3202 newbuf = input_scrub_include_file (path, input_line_pointer);
3203 buffer_limit = input_scrub_next_buffer (&input_line_pointer);
3204 } /* s_include() */
3205
3206 void
3207 add_include_dir (path)
3208 char *path;
3209 {
3210 int i;
3211
3212 if (include_dir_count == 0)
3213 {
3214 include_dirs = (char **) xmalloc (2 * sizeof (*include_dirs));
3215 include_dirs[0] = "."; /* Current dir */
3216 include_dir_count = 2;
3217 }
3218 else
3219 {
3220 include_dir_count++;
3221 include_dirs = (char **) realloc (include_dirs,
3222 include_dir_count * sizeof (*include_dirs));
3223 }
3224
3225 include_dirs[include_dir_count - 1] = path; /* New one */
3226
3227 i = strlen (path);
3228 if (i > include_dir_maxlen)
3229 include_dir_maxlen = i;
3230 } /* add_include_dir() */
3231
3232 void
3233 s_ignore (arg)
3234 int arg;
3235 {
3236 while (!is_end_of_line[(unsigned char) *input_line_pointer])
3237 {
3238 ++input_line_pointer;
3239 }
3240 ++input_line_pointer;
3241 }
3242
3243
3244 /* end of read.c */