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