]>
Commit | Line | Data |
---|---|---|
252b5132 | 1 | /* expr.c -operands, expressions- |
abd63a32 | 2 | Copyright (C) 1987, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 2000 |
252b5132 RH |
3 | Free Software Foundation, Inc. |
4 | ||
5 | This file is part of GAS, the GNU Assembler. | |
6 | ||
7 | GAS is free software; you can redistribute it and/or modify | |
8 | it under the terms of the GNU General Public License as published by | |
9 | the Free Software Foundation; either version 2, or (at your option) | |
10 | any later version. | |
11 | ||
12 | GAS is distributed in the hope that it will be useful, | |
13 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 | GNU General Public License for more details. | |
16 | ||
17 | You should have received a copy of the GNU General Public License | |
18 | along with GAS; see the file COPYING. If not, write to the Free | |
19 | Software Foundation, 59 Temple Place - Suite 330, Boston, MA | |
929b12bc | 20 | 02111-1307, USA. */ |
252b5132 | 21 | |
929b12bc KH |
22 | /* This is really a branch office of as-read.c. I split it out to clearly |
23 | distinguish the world of expressions from the world of statements. | |
24 | (It also gives smaller files to re-compile.) | |
25 | Here, "operand"s are of expressions, not instructions. */ | |
252b5132 RH |
26 | |
27 | #include <ctype.h> | |
28 | #include <string.h> | |
29 | #define min(a, b) ((a) < (b) ? (a) : (b)) | |
30 | ||
31 | #include "as.h" | |
32 | #include "obstack.h" | |
33 | ||
34 | static void floating_constant PARAMS ((expressionS * expressionP)); | |
6d4d30bb AM |
35 | static valueT generic_bignum_to_int32 PARAMS ((void)); |
36 | #ifdef BFD64 | |
37 | static valueT generic_bignum_to_int64 PARAMS ((void)); | |
38 | #endif | |
252b5132 RH |
39 | static void integer_constant PARAMS ((int radix, expressionS * expressionP)); |
40 | static void mri_char_constant PARAMS ((expressionS *)); | |
41 | static void current_location PARAMS ((expressionS *)); | |
42 | static void clean_up_expression PARAMS ((expressionS * expressionP)); | |
43 | static segT operand PARAMS ((expressionS *)); | |
44 | static operatorT operator PARAMS ((void)); | |
45 | ||
46 | extern const char EXP_CHARS[], FLT_CHARS[]; | |
47 | ||
48 | /* We keep a mapping of expression symbols to file positions, so that | |
49 | we can provide better error messages. */ | |
50 | ||
51 | struct expr_symbol_line | |
52 | { | |
53 | struct expr_symbol_line *next; | |
54 | symbolS *sym; | |
55 | char *file; | |
56 | unsigned int line; | |
57 | }; | |
58 | ||
59 | static struct expr_symbol_line *expr_symbol_lines; | |
60 | \f | |
61 | /* Build a dummy symbol to hold a complex expression. This is how we | |
62 | build expressions up out of other expressions. The symbol is put | |
63 | into the fake section expr_section. */ | |
64 | ||
65 | symbolS * | |
66 | make_expr_symbol (expressionP) | |
67 | expressionS *expressionP; | |
68 | { | |
69 | expressionS zero; | |
70 | const char *fake; | |
71 | symbolS *symbolP; | |
72 | struct expr_symbol_line *n; | |
73 | ||
74 | if (expressionP->X_op == O_symbol | |
75 | && expressionP->X_add_number == 0) | |
76 | return expressionP->X_add_symbol; | |
77 | ||
78 | if (expressionP->X_op == O_big) | |
79 | { | |
80 | /* This won't work, because the actual value is stored in | |
81 | generic_floating_point_number or generic_bignum, and we are | |
82 | going to lose it if we haven't already. */ | |
83 | if (expressionP->X_add_number > 0) | |
84 | as_bad (_("bignum invalid; zero assumed")); | |
85 | else | |
86 | as_bad (_("floating point number invalid; zero assumed")); | |
87 | zero.X_op = O_constant; | |
88 | zero.X_add_number = 0; | |
89 | zero.X_unsigned = 0; | |
90 | clean_up_expression (&zero); | |
91 | expressionP = &zero; | |
92 | } | |
93 | ||
94 | fake = FAKE_LABEL_NAME; | |
95 | ||
96 | /* Putting constant symbols in absolute_section rather than | |
97 | expr_section is convenient for the old a.out code, for which | |
98 | S_GET_SEGMENT does not always retrieve the value put in by | |
99 | S_SET_SEGMENT. */ | |
100 | symbolP = symbol_create (fake, | |
101 | (expressionP->X_op == O_constant | |
102 | ? absolute_section | |
103 | : expr_section), | |
104 | 0, &zero_address_frag); | |
49309057 | 105 | symbol_set_value_expression (symbolP, expressionP); |
252b5132 RH |
106 | |
107 | if (expressionP->X_op == O_constant) | |
108 | resolve_symbol_value (symbolP, 1); | |
109 | ||
110 | n = (struct expr_symbol_line *) xmalloc (sizeof *n); | |
111 | n->sym = symbolP; | |
112 | as_where (&n->file, &n->line); | |
113 | n->next = expr_symbol_lines; | |
114 | expr_symbol_lines = n; | |
115 | ||
116 | return symbolP; | |
117 | } | |
118 | ||
119 | /* Return the file and line number for an expr symbol. Return | |
120 | non-zero if something was found, 0 if no information is known for | |
121 | the symbol. */ | |
122 | ||
123 | int | |
124 | expr_symbol_where (sym, pfile, pline) | |
125 | symbolS *sym; | |
126 | char **pfile; | |
127 | unsigned int *pline; | |
128 | { | |
129 | register struct expr_symbol_line *l; | |
130 | ||
131 | for (l = expr_symbol_lines; l != NULL; l = l->next) | |
132 | { | |
133 | if (l->sym == sym) | |
134 | { | |
135 | *pfile = l->file; | |
136 | *pline = l->line; | |
137 | return 1; | |
138 | } | |
139 | } | |
140 | ||
141 | return 0; | |
142 | } | |
143 | \f | |
144 | /* Utilities for building expressions. | |
145 | Since complex expressions are recorded as symbols for use in other | |
146 | expressions these return a symbolS * and not an expressionS *. | |
147 | These explicitly do not take an "add_number" argument. */ | |
148 | /* ??? For completeness' sake one might want expr_build_symbol. | |
149 | It would just return its argument. */ | |
150 | ||
151 | /* Build an expression for an unsigned constant. | |
152 | The corresponding one for signed constants is missing because | |
153 | there's currently no need for it. One could add an unsigned_p flag | |
154 | but that seems more clumsy. */ | |
155 | ||
156 | symbolS * | |
157 | expr_build_uconstant (value) | |
158 | offsetT value; | |
159 | { | |
160 | expressionS e; | |
161 | ||
162 | e.X_op = O_constant; | |
163 | e.X_add_number = value; | |
164 | e.X_unsigned = 1; | |
165 | return make_expr_symbol (&e); | |
166 | } | |
167 | ||
168 | /* Build an expression for OP s1. */ | |
169 | ||
170 | symbolS * | |
171 | expr_build_unary (op, s1) | |
172 | operatorT op; | |
173 | symbolS *s1; | |
174 | { | |
175 | expressionS e; | |
176 | ||
177 | e.X_op = op; | |
178 | e.X_add_symbol = s1; | |
179 | e.X_add_number = 0; | |
180 | return make_expr_symbol (&e); | |
181 | } | |
182 | ||
183 | /* Build an expression for s1 OP s2. */ | |
184 | ||
185 | symbolS * | |
186 | expr_build_binary (op, s1, s2) | |
187 | operatorT op; | |
188 | symbolS *s1; | |
189 | symbolS *s2; | |
190 | { | |
191 | expressionS e; | |
192 | ||
193 | e.X_op = op; | |
194 | e.X_add_symbol = s1; | |
195 | e.X_op_symbol = s2; | |
196 | e.X_add_number = 0; | |
197 | return make_expr_symbol (&e); | |
198 | } | |
199 | ||
200 | /* Build an expression for the current location ('.'). */ | |
201 | ||
202 | symbolS * | |
203 | expr_build_dot () | |
204 | { | |
205 | expressionS e; | |
206 | ||
207 | current_location (&e); | |
208 | return make_expr_symbol (&e); | |
209 | } | |
210 | \f | |
929b12bc KH |
211 | /* Build any floating-point literal here. |
212 | Also build any bignum literal here. */ | |
252b5132 RH |
213 | |
214 | /* Seems atof_machine can backscan through generic_bignum and hit whatever | |
215 | happens to be loaded before it in memory. And its way too complicated | |
216 | for me to fix right. Thus a hack. JF: Just make generic_bignum bigger, | |
217 | and never write into the early words, thus they'll always be zero. | |
218 | I hate Dean's floating-point code. Bleh. */ | |
219 | LITTLENUM_TYPE generic_bignum[SIZE_OF_LARGE_NUMBER + 6]; | |
220 | FLONUM_TYPE generic_floating_point_number = | |
221 | { | |
bc4466dc KH |
222 | &generic_bignum[6], /* low. (JF: Was 0) */ |
223 | &generic_bignum[SIZE_OF_LARGE_NUMBER + 6 - 1], /* high. JF: (added +6) */ | |
224 | 0, /* leader. */ | |
225 | 0, /* exponent. */ | |
226 | 0 /* sign. */ | |
252b5132 | 227 | }; |
929b12bc KH |
228 | |
229 | /* If nonzero, we've been asked to assemble nan, +inf or -inf. */ | |
252b5132 RH |
230 | int generic_floating_point_magic; |
231 | \f | |
232 | static void | |
233 | floating_constant (expressionP) | |
234 | expressionS *expressionP; | |
235 | { | |
929b12bc | 236 | /* input_line_pointer -> floating-point constant. */ |
252b5132 RH |
237 | int error_code; |
238 | ||
239 | error_code = atof_generic (&input_line_pointer, ".", EXP_CHARS, | |
240 | &generic_floating_point_number); | |
241 | ||
242 | if (error_code) | |
243 | { | |
244 | if (error_code == ERROR_EXPONENT_OVERFLOW) | |
245 | { | |
246 | as_bad (_("bad floating-point constant: exponent overflow, probably assembling junk")); | |
247 | } | |
248 | else | |
249 | { | |
250 | as_bad (_("bad floating-point constant: unknown error code=%d."), error_code); | |
251 | } | |
252 | } | |
253 | expressionP->X_op = O_big; | |
929b12bc KH |
254 | /* input_line_pointer -> just after constant, which may point to |
255 | whitespace. */ | |
252b5132 RH |
256 | expressionP->X_add_number = -1; |
257 | } | |
258 | ||
929b12bc KH |
259 | static valueT |
260 | generic_bignum_to_int32 () | |
252b5132 RH |
261 | { |
262 | valueT number = | |
263 | ((generic_bignum[1] & LITTLENUM_MASK) << LITTLENUM_NUMBER_OF_BITS) | |
264 | | (generic_bignum[0] & LITTLENUM_MASK); | |
265 | number &= 0xffffffff; | |
266 | return number; | |
267 | } | |
268 | ||
269 | #ifdef BFD64 | |
929b12bc KH |
270 | static valueT |
271 | generic_bignum_to_int64 () | |
252b5132 | 272 | { |
929b12bc KH |
273 | valueT number = |
274 | ((((((((valueT) generic_bignum[3] & LITTLENUM_MASK) | |
275 | << LITTLENUM_NUMBER_OF_BITS) | |
276 | | ((valueT) generic_bignum[2] & LITTLENUM_MASK)) | |
277 | << LITTLENUM_NUMBER_OF_BITS) | |
278 | | ((valueT) generic_bignum[1] & LITTLENUM_MASK)) | |
279 | << LITTLENUM_NUMBER_OF_BITS) | |
280 | | ((valueT) generic_bignum[0] & LITTLENUM_MASK)); | |
252b5132 RH |
281 | return number; |
282 | } | |
283 | #endif | |
284 | ||
285 | static void | |
286 | integer_constant (radix, expressionP) | |
287 | int radix; | |
288 | expressionS *expressionP; | |
289 | { | |
929b12bc | 290 | char *start; /* Start of number. */ |
252b5132 RH |
291 | char *suffix = NULL; |
292 | char c; | |
929b12bc KH |
293 | valueT number; /* Offset or (absolute) value. */ |
294 | short int digit; /* Value of next digit in current radix. */ | |
295 | short int maxdig = 0; /* Highest permitted digit value. */ | |
296 | int too_many_digits = 0; /* If we see >= this number of. */ | |
297 | char *name; /* Points to name of symbol. */ | |
298 | symbolS *symbolP; /* Points to symbol. */ | |
252b5132 | 299 | |
929b12bc | 300 | int small; /* True if fits in 32 bits. */ |
252b5132 | 301 | |
929b12bc | 302 | /* May be bignum, or may fit in 32 bits. */ |
252b5132 RH |
303 | /* Most numbers fit into 32 bits, and we want this case to be fast. |
304 | so we pretend it will fit into 32 bits. If, after making up a 32 | |
305 | bit number, we realise that we have scanned more digits than | |
306 | comfortably fit into 32 bits, we re-scan the digits coding them | |
307 | into a bignum. For decimal and octal numbers we are | |
308 | conservative: Some numbers may be assumed bignums when in fact | |
309 | they do fit into 32 bits. Numbers of any radix can have excess | |
310 | leading zeros: We strive to recognise this and cast them back | |
311 | into 32 bits. We must check that the bignum really is more than | |
312 | 32 bits, and change it back to a 32-bit number if it fits. The | |
313 | number we are looking for is expected to be positive, but if it | |
314 | fits into 32 bits as an unsigned number, we let it be a 32-bit | |
929b12bc | 315 | number. The cavalier approach is for speed in ordinary cases. */ |
252b5132 RH |
316 | /* This has been extended for 64 bits. We blindly assume that if |
317 | you're compiling in 64-bit mode, the target is a 64-bit machine. | |
318 | This should be cleaned up. */ | |
319 | ||
320 | #ifdef BFD64 | |
321 | #define valuesize 64 | |
322 | #else /* includes non-bfd case, mostly */ | |
323 | #define valuesize 32 | |
324 | #endif | |
325 | ||
f805106c | 326 | if ((NUMBERS_WITH_SUFFIX || flag_m68k_mri) && radix == 0) |
252b5132 RH |
327 | { |
328 | int flt = 0; | |
329 | ||
330 | /* In MRI mode, the number may have a suffix indicating the | |
331 | radix. For that matter, it might actually be a floating | |
332 | point constant. */ | |
333 | for (suffix = input_line_pointer; | |
334 | isalnum ((unsigned char) *suffix); | |
335 | suffix++) | |
336 | { | |
337 | if (*suffix == 'e' || *suffix == 'E') | |
338 | flt = 1; | |
339 | } | |
340 | ||
341 | if (suffix == input_line_pointer) | |
342 | { | |
343 | radix = 10; | |
344 | suffix = NULL; | |
345 | } | |
346 | else | |
347 | { | |
348 | c = *--suffix; | |
349 | if (islower ((unsigned char) c)) | |
350 | c = toupper (c); | |
351 | if (c == 'B') | |
352 | radix = 2; | |
353 | else if (c == 'D') | |
354 | radix = 10; | |
355 | else if (c == 'O' || c == 'Q') | |
356 | radix = 8; | |
357 | else if (c == 'H') | |
358 | radix = 16; | |
359 | else if (suffix[1] == '.' || c == 'E' || flt) | |
360 | { | |
361 | floating_constant (expressionP); | |
362 | return; | |
363 | } | |
364 | else | |
365 | { | |
366 | radix = 10; | |
367 | suffix = NULL; | |
368 | } | |
369 | } | |
370 | } | |
371 | ||
372 | switch (radix) | |
373 | { | |
374 | case 2: | |
375 | maxdig = 2; | |
376 | too_many_digits = valuesize + 1; | |
377 | break; | |
378 | case 8: | |
379 | maxdig = radix = 8; | |
380 | too_many_digits = (valuesize + 2) / 3 + 1; | |
381 | break; | |
382 | case 16: | |
383 | maxdig = radix = 16; | |
384 | too_many_digits = (valuesize + 3) / 4 + 1; | |
385 | break; | |
386 | case 10: | |
387 | maxdig = radix = 10; | |
929b12bc | 388 | too_many_digits = (valuesize + 11) / 4; /* Very rough. */ |
252b5132 RH |
389 | } |
390 | #undef valuesize | |
391 | start = input_line_pointer; | |
392 | c = *input_line_pointer++; | |
393 | for (number = 0; | |
394 | (digit = hex_value (c)) < maxdig; | |
395 | c = *input_line_pointer++) | |
396 | { | |
397 | number = number * radix + digit; | |
398 | } | |
929b12bc KH |
399 | /* c contains character after number. */ |
400 | /* input_line_pointer->char after c. */ | |
252b5132 RH |
401 | small = (input_line_pointer - start - 1) < too_many_digits; |
402 | ||
929b12bc | 403 | if (radix == 16 && c == '_') |
252b5132 RH |
404 | { |
405 | /* This is literal of the form 0x333_0_12345678_1. | |
406 | This example is equivalent to 0x00000333000000001234567800000001. */ | |
407 | ||
408 | int num_little_digits = 0; | |
409 | int i; | |
929b12bc | 410 | input_line_pointer = start; /* -> 1st digit. */ |
252b5132 RH |
411 | |
412 | know (LITTLENUM_NUMBER_OF_BITS == 16); | |
413 | ||
929b12bc | 414 | for (c = '_'; c == '_'; num_little_digits += 2) |
252b5132 RH |
415 | { |
416 | ||
929b12bc KH |
417 | /* Convert one 64-bit word. */ |
418 | int ndigit = 0; | |
252b5132 RH |
419 | number = 0; |
420 | for (c = *input_line_pointer++; | |
421 | (digit = hex_value (c)) < maxdig; | |
422 | c = *(input_line_pointer++)) | |
423 | { | |
424 | number = number * radix + digit; | |
425 | ndigit++; | |
426 | } | |
427 | ||
428 | /* Check for 8 digit per word max. */ | |
929b12bc | 429 | if (ndigit > 8) |
252b5132 RH |
430 | as_bad (_("A bignum with underscores may not have more than 8 hex digits in any word.")); |
431 | ||
929b12bc KH |
432 | /* Add this chunk to the bignum. |
433 | Shift things down 2 little digits. */ | |
252b5132 | 434 | know (LITTLENUM_NUMBER_OF_BITS == 16); |
929b12bc KH |
435 | for (i = min (num_little_digits + 1, SIZE_OF_LARGE_NUMBER - 1); |
436 | i >= 2; | |
437 | i--) | |
438 | generic_bignum[i] = generic_bignum[i - 2]; | |
252b5132 | 439 | |
929b12bc | 440 | /* Add the new digits as the least significant new ones. */ |
252b5132 RH |
441 | generic_bignum[0] = number & 0xffffffff; |
442 | generic_bignum[1] = number >> 16; | |
443 | } | |
444 | ||
929b12bc | 445 | /* Again, c is char after number, input_line_pointer->after c. */ |
252b5132 RH |
446 | |
447 | if (num_little_digits > SIZE_OF_LARGE_NUMBER - 1) | |
448 | num_little_digits = SIZE_OF_LARGE_NUMBER - 1; | |
449 | ||
450 | assert (num_little_digits >= 4); | |
451 | ||
452 | if (num_little_digits != 8) | |
453 | as_bad (_("A bignum with underscores must have exactly 4 words.")); | |
454 | ||
455 | /* We might have some leading zeros. These can be trimmed to give | |
929b12bc KH |
456 | us a change to fit this constant into a small number. */ |
457 | while (generic_bignum[num_little_digits - 1] == 0 | |
458 | && num_little_digits > 1) | |
252b5132 | 459 | num_little_digits--; |
929b12bc | 460 | |
252b5132 RH |
461 | if (num_little_digits <= 2) |
462 | { | |
929b12bc | 463 | /* will fit into 32 bits. */ |
252b5132 RH |
464 | number = generic_bignum_to_int32 (); |
465 | small = 1; | |
466 | } | |
467 | #ifdef BFD64 | |
468 | else if (num_little_digits <= 4) | |
469 | { | |
470 | /* Will fit into 64 bits. */ | |
471 | number = generic_bignum_to_int64 (); | |
472 | small = 1; | |
473 | } | |
474 | #endif | |
475 | else | |
476 | { | |
477 | small = 0; | |
929b12bc KH |
478 | |
479 | /* Number of littlenums in the bignum. */ | |
480 | number = num_little_digits; | |
252b5132 RH |
481 | } |
482 | } | |
483 | else if (!small) | |
484 | { | |
929b12bc KH |
485 | /* We saw a lot of digits. manufacture a bignum the hard way. */ |
486 | LITTLENUM_TYPE *leader; /* -> high order littlenum of the bignum. */ | |
487 | LITTLENUM_TYPE *pointer; /* -> littlenum we are frobbing now. */ | |
252b5132 RH |
488 | long carry; |
489 | ||
490 | leader = generic_bignum; | |
491 | generic_bignum[0] = 0; | |
492 | generic_bignum[1] = 0; | |
493 | generic_bignum[2] = 0; | |
494 | generic_bignum[3] = 0; | |
929b12bc | 495 | input_line_pointer = start; /* -> 1st digit. */ |
252b5132 | 496 | c = *input_line_pointer++; |
929b12bc | 497 | for (; (carry = hex_value (c)) < maxdig; c = *input_line_pointer++) |
252b5132 | 498 | { |
929b12bc | 499 | for (pointer = generic_bignum; pointer <= leader; pointer++) |
252b5132 RH |
500 | { |
501 | long work; | |
502 | ||
503 | work = carry + radix * *pointer; | |
504 | *pointer = work & LITTLENUM_MASK; | |
505 | carry = work >> LITTLENUM_NUMBER_OF_BITS; | |
506 | } | |
507 | if (carry) | |
508 | { | |
509 | if (leader < generic_bignum + SIZE_OF_LARGE_NUMBER - 1) | |
510 | { | |
929b12bc | 511 | /* Room to grow a longer bignum. */ |
252b5132 RH |
512 | *++leader = carry; |
513 | } | |
514 | } | |
515 | } | |
929b12bc KH |
516 | /* Again, c is char after number. */ |
517 | /* input_line_pointer -> after c. */ | |
252b5132 RH |
518 | know (LITTLENUM_NUMBER_OF_BITS == 16); |
519 | if (leader < generic_bignum + 2) | |
520 | { | |
929b12bc | 521 | /* Will fit into 32 bits. */ |
252b5132 RH |
522 | number = generic_bignum_to_int32 (); |
523 | small = 1; | |
524 | } | |
525 | #ifdef BFD64 | |
526 | else if (leader < generic_bignum + 4) | |
527 | { | |
528 | /* Will fit into 64 bits. */ | |
529 | number = generic_bignum_to_int64 (); | |
530 | small = 1; | |
531 | } | |
532 | #endif | |
533 | else | |
534 | { | |
929b12bc KH |
535 | /* Number of littlenums in the bignum. */ |
536 | number = leader - generic_bignum + 1; | |
252b5132 RH |
537 | } |
538 | } | |
539 | ||
60bcf0fa NC |
540 | if ((NUMBERS_WITH_SUFFIX || flag_m68k_mri) |
541 | && suffix != NULL | |
f805106c | 542 | && input_line_pointer - 1 == suffix) |
252b5132 RH |
543 | c = *input_line_pointer++; |
544 | ||
545 | if (small) | |
546 | { | |
929b12bc KH |
547 | /* Here with number, in correct radix. c is the next char. |
548 | Note that unlike un*x, we allow "011f" "0x9f" to both mean | |
549 | the same as the (conventional) "9f". | |
550 | This is simply easier than checking for strict canonical | |
551 | form. Syntax sux! */ | |
252b5132 RH |
552 | |
553 | if (LOCAL_LABELS_FB && c == 'b') | |
554 | { | |
929b12bc KH |
555 | /* Backward ref to local label. |
556 | Because it is backward, expect it to be defined. */ | |
252b5132 RH |
557 | /* Construct a local label. */ |
558 | name = fb_label_name ((int) number, 0); | |
559 | ||
929b12bc | 560 | /* Seen before, or symbol is defined: OK. */ |
252b5132 RH |
561 | symbolP = symbol_find (name); |
562 | if ((symbolP != NULL) && (S_IS_DEFINED (symbolP))) | |
563 | { | |
929b12bc KH |
564 | /* Local labels are never absolute. Don't waste time |
565 | checking absoluteness. */ | |
252b5132 RH |
566 | know (SEG_NORMAL (S_GET_SEGMENT (symbolP))); |
567 | ||
568 | expressionP->X_op = O_symbol; | |
569 | expressionP->X_add_symbol = symbolP; | |
570 | } | |
571 | else | |
572 | { | |
929b12bc | 573 | /* Either not seen or not defined. */ |
252b5132 RH |
574 | /* @@ Should print out the original string instead of |
575 | the parsed number. */ | |
576 | as_bad (_("backw. ref to unknown label \"%d:\", 0 assumed."), | |
577 | (int) number); | |
578 | expressionP->X_op = O_constant; | |
579 | } | |
580 | ||
581 | expressionP->X_add_number = 0; | |
582 | } /* case 'b' */ | |
583 | else if (LOCAL_LABELS_FB && c == 'f') | |
584 | { | |
929b12bc KH |
585 | /* Forward reference. Expect symbol to be undefined or |
586 | unknown. undefined: seen it before. unknown: never seen | |
587 | it before. | |
588 | ||
589 | Construct a local label name, then an undefined symbol. | |
590 | Don't create a xseg frag for it: caller may do that. | |
591 | Just return it as never seen before. */ | |
252b5132 RH |
592 | name = fb_label_name ((int) number, 1); |
593 | symbolP = symbol_find_or_make (name); | |
929b12bc | 594 | /* We have no need to check symbol properties. */ |
252b5132 | 595 | #ifndef many_segments |
929b12bc | 596 | /* Since "know" puts its arg into a "string", we |
252b5132 RH |
597 | can't have newlines in the argument. */ |
598 | know (S_GET_SEGMENT (symbolP) == undefined_section || S_GET_SEGMENT (symbolP) == text_section || S_GET_SEGMENT (symbolP) == data_section); | |
599 | #endif | |
600 | expressionP->X_op = O_symbol; | |
601 | expressionP->X_add_symbol = symbolP; | |
602 | expressionP->X_add_number = 0; | |
603 | } /* case 'f' */ | |
604 | else if (LOCAL_LABELS_DOLLAR && c == '$') | |
605 | { | |
606 | /* If the dollar label is *currently* defined, then this is just | |
607 | another reference to it. If it is not *currently* defined, | |
608 | then this is a fresh instantiation of that number, so create | |
609 | it. */ | |
610 | ||
611 | if (dollar_label_defined ((long) number)) | |
612 | { | |
613 | name = dollar_label_name ((long) number, 0); | |
614 | symbolP = symbol_find (name); | |
615 | know (symbolP != NULL); | |
616 | } | |
617 | else | |
618 | { | |
619 | name = dollar_label_name ((long) number, 1); | |
620 | symbolP = symbol_find_or_make (name); | |
621 | } | |
622 | ||
623 | expressionP->X_op = O_symbol; | |
624 | expressionP->X_add_symbol = symbolP; | |
625 | expressionP->X_add_number = 0; | |
626 | } /* case '$' */ | |
627 | else | |
628 | { | |
629 | expressionP->X_op = O_constant; | |
630 | #ifdef TARGET_WORD_SIZE | |
631 | /* Sign extend NUMBER. */ | |
632 | number |= (-(number >> (TARGET_WORD_SIZE - 1))) << (TARGET_WORD_SIZE - 1); | |
633 | #endif | |
634 | expressionP->X_add_number = number; | |
bc4466dc | 635 | input_line_pointer--; /* Restore following character. */ |
929b12bc | 636 | } /* Really just a number. */ |
252b5132 RH |
637 | } |
638 | else | |
639 | { | |
bc4466dc | 640 | /* Not a small number. */ |
252b5132 | 641 | expressionP->X_op = O_big; |
929b12bc KH |
642 | expressionP->X_add_number = number; /* Number of littlenums. */ |
643 | input_line_pointer--; /* -> char following number. */ | |
252b5132 RH |
644 | } |
645 | } | |
646 | ||
647 | /* Parse an MRI multi character constant. */ | |
648 | ||
649 | static void | |
650 | mri_char_constant (expressionP) | |
651 | expressionS *expressionP; | |
652 | { | |
653 | int i; | |
654 | ||
655 | if (*input_line_pointer == '\'' | |
656 | && input_line_pointer[1] != '\'') | |
657 | { | |
658 | expressionP->X_op = O_constant; | |
659 | expressionP->X_add_number = 0; | |
660 | return; | |
661 | } | |
662 | ||
663 | /* In order to get the correct byte ordering, we must build the | |
664 | number in reverse. */ | |
665 | for (i = SIZE_OF_LARGE_NUMBER - 1; i >= 0; i--) | |
666 | { | |
667 | int j; | |
668 | ||
669 | generic_bignum[i] = 0; | |
670 | for (j = 0; j < CHARS_PER_LITTLENUM; j++) | |
671 | { | |
672 | if (*input_line_pointer == '\'') | |
673 | { | |
674 | if (input_line_pointer[1] != '\'') | |
675 | break; | |
676 | ++input_line_pointer; | |
677 | } | |
678 | generic_bignum[i] <<= 8; | |
679 | generic_bignum[i] += *input_line_pointer; | |
680 | ++input_line_pointer; | |
681 | } | |
682 | ||
683 | if (i < SIZE_OF_LARGE_NUMBER - 1) | |
684 | { | |
685 | /* If there is more than one littlenum, left justify the | |
686 | last one to make it match the earlier ones. If there is | |
687 | only one, we can just use the value directly. */ | |
688 | for (; j < CHARS_PER_LITTLENUM; j++) | |
689 | generic_bignum[i] <<= 8; | |
690 | } | |
691 | ||
692 | if (*input_line_pointer == '\'' | |
693 | && input_line_pointer[1] != '\'') | |
694 | break; | |
695 | } | |
696 | ||
697 | if (i < 0) | |
698 | { | |
699 | as_bad (_("Character constant too large")); | |
700 | i = 0; | |
701 | } | |
702 | ||
703 | if (i > 0) | |
704 | { | |
705 | int c; | |
706 | int j; | |
707 | ||
708 | c = SIZE_OF_LARGE_NUMBER - i; | |
709 | for (j = 0; j < c; j++) | |
710 | generic_bignum[j] = generic_bignum[i + j]; | |
711 | i = c; | |
712 | } | |
713 | ||
714 | know (LITTLENUM_NUMBER_OF_BITS == 16); | |
715 | if (i > 2) | |
716 | { | |
717 | expressionP->X_op = O_big; | |
718 | expressionP->X_add_number = i; | |
719 | } | |
720 | else | |
721 | { | |
722 | expressionP->X_op = O_constant; | |
723 | if (i < 2) | |
724 | expressionP->X_add_number = generic_bignum[0] & LITTLENUM_MASK; | |
725 | else | |
726 | expressionP->X_add_number = | |
727 | (((generic_bignum[1] & LITTLENUM_MASK) | |
728 | << LITTLENUM_NUMBER_OF_BITS) | |
729 | | (generic_bignum[0] & LITTLENUM_MASK)); | |
730 | } | |
731 | ||
732 | /* Skip the final closing quote. */ | |
733 | ++input_line_pointer; | |
734 | } | |
735 | ||
736 | /* Return an expression representing the current location. This | |
737 | handles the magic symbol `.'. */ | |
738 | ||
739 | static void | |
740 | current_location (expressionp) | |
741 | expressionS *expressionp; | |
742 | { | |
743 | if (now_seg == absolute_section) | |
744 | { | |
745 | expressionp->X_op = O_constant; | |
746 | expressionp->X_add_number = abs_section_offset; | |
747 | } | |
748 | else | |
749 | { | |
750 | symbolS *symbolp; | |
751 | ||
752 | symbolp = symbol_new (FAKE_LABEL_NAME, now_seg, | |
753 | (valueT) frag_now_fix (), | |
754 | frag_now); | |
755 | expressionp->X_op = O_symbol; | |
756 | expressionp->X_add_symbol = symbolp; | |
757 | expressionp->X_add_number = 0; | |
758 | } | |
759 | } | |
760 | ||
929b12bc KH |
761 | /* In: Input_line_pointer points to 1st char of operand, which may |
762 | be a space. | |
763 | ||
764 | Out: A expressionS. | |
765 | The operand may have been empty: in this case X_op == O_absent. | |
766 | Input_line_pointer->(next non-blank) char after operand. */ | |
252b5132 RH |
767 | |
768 | static segT | |
769 | operand (expressionP) | |
770 | expressionS *expressionP; | |
771 | { | |
772 | char c; | |
929b12bc KH |
773 | symbolS *symbolP; /* Points to symbol. */ |
774 | char *name; /* Points to name of symbol. */ | |
252b5132 RH |
775 | segT segment; |
776 | ||
777 | /* All integers are regarded as unsigned unless they are negated. | |
778 | This is because the only thing which cares whether a number is | |
779 | unsigned is the code in emit_expr which extends constants into | |
780 | bignums. It should only sign extend negative numbers, so that | |
781 | something like ``.quad 0x80000000'' is not sign extended even | |
782 | though it appears negative if valueT is 32 bits. */ | |
783 | expressionP->X_unsigned = 1; | |
784 | ||
929b12bc | 785 | /* Digits, assume it is a bignum. */ |
252b5132 | 786 | |
929b12bc | 787 | SKIP_WHITESPACE (); /* Leading whitespace is part of operand. */ |
bc4466dc | 788 | c = *input_line_pointer++; /* input_line_pointer -> past char in c. */ |
252b5132 | 789 | |
b75c0c92 AM |
790 | if (is_end_of_line[(unsigned char) c]) |
791 | goto eol; | |
792 | ||
252b5132 RH |
793 | switch (c) |
794 | { | |
795 | case '1': | |
796 | case '2': | |
797 | case '3': | |
798 | case '4': | |
799 | case '5': | |
800 | case '6': | |
801 | case '7': | |
802 | case '8': | |
803 | case '9': | |
804 | input_line_pointer--; | |
805 | ||
60bcf0fa | 806 | integer_constant ((NUMBERS_WITH_SUFFIX || flag_m68k_mri) |
929b12bc | 807 | ? 0 : 10, |
f805106c | 808 | expressionP); |
252b5132 RH |
809 | break; |
810 | ||
ed6d6fd3 FCE |
811 | #ifdef LITERAL_PREFIXDOLLAR_HEX |
812 | case '$': | |
813 | integer_constant (16, expressionP); | |
814 | break; | |
815 | #endif | |
816 | ||
977e771a FCE |
817 | #ifdef LITERAL_PREFIXPERCENT_BIN |
818 | case '%': | |
819 | integer_constant (2, expressionP); | |
820 | break; | |
821 | #endif | |
822 | ||
252b5132 | 823 | case '0': |
929b12bc | 824 | /* Non-decimal radix. */ |
252b5132 | 825 | |
f805106c | 826 | if (NUMBERS_WITH_SUFFIX || flag_m68k_mri) |
252b5132 RH |
827 | { |
828 | char *s; | |
829 | ||
830 | /* Check for a hex constant. */ | |
831 | for (s = input_line_pointer; hex_p (*s); s++) | |
832 | ; | |
833 | if (*s == 'h' || *s == 'H') | |
834 | { | |
835 | --input_line_pointer; | |
836 | integer_constant (0, expressionP); | |
837 | break; | |
838 | } | |
929b12bc | 839 | } |
252b5132 RH |
840 | c = *input_line_pointer; |
841 | switch (c) | |
842 | { | |
843 | case 'o': | |
844 | case 'O': | |
845 | case 'q': | |
846 | case 'Q': | |
847 | case '8': | |
848 | case '9': | |
f805106c | 849 | if (NUMBERS_WITH_SUFFIX || flag_m68k_mri) |
252b5132 RH |
850 | { |
851 | integer_constant (0, expressionP); | |
852 | break; | |
853 | } | |
854 | /* Fall through. */ | |
855 | default: | |
856 | default_case: | |
857 | if (c && strchr (FLT_CHARS, c)) | |
858 | { | |
859 | input_line_pointer++; | |
860 | floating_constant (expressionP); | |
861 | expressionP->X_add_number = | |
929b12bc | 862 | -(isupper ((unsigned char) c) ? tolower (c) : c); |
252b5132 RH |
863 | } |
864 | else | |
865 | { | |
929b12bc | 866 | /* The string was only zero. */ |
252b5132 RH |
867 | expressionP->X_op = O_constant; |
868 | expressionP->X_add_number = 0; | |
869 | } | |
870 | ||
871 | break; | |
872 | ||
873 | case 'x': | |
874 | case 'X': | |
ab266a97 | 875 | if (flag_m68k_mri) |
252b5132 RH |
876 | goto default_case; |
877 | input_line_pointer++; | |
878 | integer_constant (16, expressionP); | |
879 | break; | |
880 | ||
881 | case 'b': | |
6dc19fc4 | 882 | if (LOCAL_LABELS_FB && ! (flag_m68k_mri || NUMBERS_WITH_SUFFIX)) |
252b5132 RH |
883 | { |
884 | /* This code used to check for '+' and '-' here, and, in | |
885 | some conditions, fall through to call | |
886 | integer_constant. However, that didn't make sense, | |
887 | as integer_constant only accepts digits. */ | |
888 | /* Some of our code elsewhere does permit digits greater | |
889 | than the expected base; for consistency, do the same | |
890 | here. */ | |
891 | if (input_line_pointer[1] < '0' | |
892 | || input_line_pointer[1] > '9') | |
893 | { | |
894 | /* Parse this as a back reference to label 0. */ | |
895 | input_line_pointer--; | |
896 | integer_constant (10, expressionP); | |
897 | break; | |
898 | } | |
899 | /* Otherwise, parse this as a binary number. */ | |
900 | } | |
901 | /* Fall through. */ | |
902 | case 'B': | |
903 | input_line_pointer++; | |
6dc19fc4 | 904 | if (flag_m68k_mri || NUMBERS_WITH_SUFFIX) |
252b5132 RH |
905 | goto default_case; |
906 | integer_constant (2, expressionP); | |
907 | break; | |
908 | ||
909 | case '0': | |
910 | case '1': | |
911 | case '2': | |
912 | case '3': | |
913 | case '4': | |
914 | case '5': | |
915 | case '6': | |
916 | case '7': | |
6dc19fc4 | 917 | integer_constant ((flag_m68k_mri || NUMBERS_WITH_SUFFIX) |
929b12bc KH |
918 | ? 0 : 8, |
919 | expressionP); | |
252b5132 RH |
920 | break; |
921 | ||
922 | case 'f': | |
923 | if (LOCAL_LABELS_FB) | |
924 | { | |
925 | /* If it says "0f" and it could possibly be a floating point | |
926 | number, make it one. Otherwise, make it a local label, | |
927 | and try to deal with parsing the rest later. */ | |
928 | if (!input_line_pointer[1] | |
271bb601 HPN |
929 | || (is_end_of_line[0xff & input_line_pointer[1]]) |
930 | || strchr (FLT_CHARS, 'f') == NULL) | |
252b5132 RH |
931 | goto is_0f_label; |
932 | { | |
933 | char *cp = input_line_pointer + 1; | |
934 | int r = atof_generic (&cp, ".", EXP_CHARS, | |
935 | &generic_floating_point_number); | |
936 | switch (r) | |
937 | { | |
938 | case 0: | |
939 | case ERROR_EXPONENT_OVERFLOW: | |
940 | if (*cp == 'f' || *cp == 'b') | |
929b12bc | 941 | /* Looks like a difference expression. */ |
252b5132 RH |
942 | goto is_0f_label; |
943 | else if (cp == input_line_pointer + 1) | |
944 | /* No characters has been accepted -- looks like | |
929b12bc | 945 | end of operand. */ |
252b5132 RH |
946 | goto is_0f_label; |
947 | else | |
948 | goto is_0f_float; | |
949 | default: | |
950 | as_fatal (_("expr.c(operand): bad atof_generic return val %d"), | |
951 | r); | |
952 | } | |
953 | } | |
954 | ||
955 | /* Okay, now we've sorted it out. We resume at one of these | |
956 | two labels, depending on what we've decided we're probably | |
957 | looking at. */ | |
958 | is_0f_label: | |
959 | input_line_pointer--; | |
960 | integer_constant (10, expressionP); | |
961 | break; | |
962 | ||
963 | is_0f_float: | |
929b12bc | 964 | /* Fall through. */ |
252b5132 RH |
965 | ; |
966 | } | |
967 | ||
968 | case 'd': | |
969 | case 'D': | |
6dc19fc4 | 970 | if (flag_m68k_mri || NUMBERS_WITH_SUFFIX) |
252b5132 RH |
971 | { |
972 | integer_constant (0, expressionP); | |
973 | break; | |
974 | } | |
975 | /* Fall through. */ | |
976 | case 'F': | |
977 | case 'r': | |
978 | case 'e': | |
979 | case 'E': | |
980 | case 'g': | |
981 | case 'G': | |
982 | input_line_pointer++; | |
983 | floating_constant (expressionP); | |
984 | expressionP->X_add_number = | |
929b12bc | 985 | -(isupper ((unsigned char) c) ? tolower (c) : c); |
252b5132 RH |
986 | break; |
987 | ||
988 | case '$': | |
989 | if (LOCAL_LABELS_DOLLAR) | |
990 | { | |
991 | integer_constant (10, expressionP); | |
992 | break; | |
993 | } | |
994 | else | |
995 | goto default_case; | |
996 | } | |
997 | ||
998 | break; | |
999 | ||
1000 | case '(': | |
b585bc2c | 1001 | #ifndef NEED_INDEX_OPERATOR |
252b5132 | 1002 | case '[': |
b585bc2c | 1003 | #endif |
929b12bc | 1004 | /* Didn't begin with digit & not a name. */ |
252b5132 | 1005 | segment = expression (expressionP); |
929b12bc | 1006 | /* expression () will pass trailing whitespace. */ |
f7c88872 AM |
1007 | if ((c == '(' && *input_line_pointer != ')') |
1008 | || (c == '[' && *input_line_pointer != ']')) | |
252b5132 | 1009 | { |
f7c88872 AM |
1010 | #ifdef RELAX_PAREN_GROUPING |
1011 | if (c != '(') | |
1012 | #endif | |
1013 | as_bad (_("Missing '%c' assumed"), c == '(' ? ')' : ']'); | |
252b5132 | 1014 | } |
f7c88872 | 1015 | else |
929b12bc | 1016 | input_line_pointer++; |
252b5132 | 1017 | SKIP_WHITESPACE (); |
929b12bc | 1018 | /* Here with input_line_pointer -> char after "(...)". */ |
252b5132 RH |
1019 | return segment; |
1020 | ||
abd63a32 | 1021 | #ifdef TC_M68K |
252b5132 RH |
1022 | case 'E': |
1023 | if (! flag_m68k_mri || *input_line_pointer != '\'') | |
1024 | goto de_fault; | |
1025 | as_bad (_("EBCDIC constants are not supported")); | |
1026 | /* Fall through. */ | |
1027 | case 'A': | |
1028 | if (! flag_m68k_mri || *input_line_pointer != '\'') | |
1029 | goto de_fault; | |
1030 | ++input_line_pointer; | |
1031 | /* Fall through. */ | |
abd63a32 | 1032 | #endif |
252b5132 RH |
1033 | case '\'': |
1034 | if (! flag_m68k_mri) | |
1035 | { | |
1036 | /* Warning: to conform to other people's assemblers NO | |
929b12bc | 1037 | ESCAPEMENT is permitted for a single quote. The next |
252b5132 | 1038 | character, parity errors and all, is taken as the value |
929b12bc | 1039 | of the operand. VERY KINKY. */ |
252b5132 RH |
1040 | expressionP->X_op = O_constant; |
1041 | expressionP->X_add_number = *input_line_pointer++; | |
1042 | break; | |
1043 | } | |
1044 | ||
1045 | mri_char_constant (expressionP); | |
1046 | break; | |
1047 | ||
1048 | case '+': | |
1049 | (void) operand (expressionP); | |
1050 | break; | |
1051 | ||
abd63a32 | 1052 | #ifdef TC_M68K |
252b5132 RH |
1053 | case '"': |
1054 | /* Double quote is the bitwise not operator in MRI mode. */ | |
1055 | if (! flag_m68k_mri) | |
1056 | goto de_fault; | |
1057 | /* Fall through. */ | |
abd63a32 | 1058 | #endif |
252b5132 | 1059 | case '~': |
929b12bc | 1060 | /* '~' is permitted to start a label on the Delta. */ |
252b5132 RH |
1061 | if (is_name_beginner (c)) |
1062 | goto isname; | |
1063 | case '!': | |
1064 | case '-': | |
1065 | { | |
1066 | operand (expressionP); | |
1067 | if (expressionP->X_op == O_constant) | |
1068 | { | |
929b12bc | 1069 | /* input_line_pointer -> char after operand. */ |
252b5132 RH |
1070 | if (c == '-') |
1071 | { | |
929b12bc KH |
1072 | expressionP->X_add_number = -expressionP->X_add_number; |
1073 | /* Notice: '-' may overflow: no warning is given. | |
1074 | This is compatible with other people's | |
1075 | assemblers. Sigh. */ | |
252b5132 RH |
1076 | expressionP->X_unsigned = 0; |
1077 | } | |
1078 | else if (c == '~' || c == '"') | |
1079 | expressionP->X_add_number = ~ expressionP->X_add_number; | |
1080 | else | |
1081 | expressionP->X_add_number = ! expressionP->X_add_number; | |
1082 | } | |
1083 | else if (expressionP->X_op != O_illegal | |
1084 | && expressionP->X_op != O_absent) | |
1085 | { | |
1086 | expressionP->X_add_symbol = make_expr_symbol (expressionP); | |
1087 | if (c == '-') | |
1088 | expressionP->X_op = O_uminus; | |
1089 | else if (c == '~' || c == '"') | |
1090 | expressionP->X_op = O_bit_not; | |
1091 | else | |
1092 | expressionP->X_op = O_logical_not; | |
1093 | expressionP->X_add_number = 0; | |
1094 | } | |
1095 | else | |
1096 | as_warn (_("Unary operator %c ignored because bad operand follows"), | |
1097 | c); | |
1098 | } | |
1099 | break; | |
1100 | ||
abd63a32 | 1101 | #if defined (DOLLAR_DOT) || defined (TC_M68K) |
252b5132 | 1102 | case '$': |
929b12bc KH |
1103 | /* '$' is the program counter when in MRI mode, or when |
1104 | DOLLAR_DOT is defined. */ | |
252b5132 RH |
1105 | #ifndef DOLLAR_DOT |
1106 | if (! flag_m68k_mri) | |
1107 | goto de_fault; | |
1108 | #endif | |
1109 | if (flag_m68k_mri && hex_p (*input_line_pointer)) | |
1110 | { | |
929b12bc | 1111 | /* In MRI mode, '$' is also used as the prefix for a |
252b5132 RH |
1112 | hexadecimal constant. */ |
1113 | integer_constant (16, expressionP); | |
1114 | break; | |
1115 | } | |
1116 | ||
1117 | if (is_part_of_name (*input_line_pointer)) | |
1118 | goto isname; | |
1119 | ||
1120 | current_location (expressionP); | |
1121 | break; | |
abd63a32 | 1122 | #endif |
252b5132 RH |
1123 | |
1124 | case '.': | |
1125 | if (!is_part_of_name (*input_line_pointer)) | |
1126 | { | |
1127 | current_location (expressionP); | |
1128 | break; | |
1129 | } | |
1130 | else if ((strncasecmp (input_line_pointer, "startof.", 8) == 0 | |
1131 | && ! is_part_of_name (input_line_pointer[8])) | |
1132 | || (strncasecmp (input_line_pointer, "sizeof.", 7) == 0 | |
1133 | && ! is_part_of_name (input_line_pointer[7]))) | |
1134 | { | |
1135 | int start; | |
1136 | ||
1137 | start = (input_line_pointer[1] == 't' | |
1138 | || input_line_pointer[1] == 'T'); | |
1139 | input_line_pointer += start ? 8 : 7; | |
1140 | SKIP_WHITESPACE (); | |
1141 | if (*input_line_pointer != '(') | |
1142 | as_bad (_("syntax error in .startof. or .sizeof.")); | |
1143 | else | |
1144 | { | |
1145 | char *buf; | |
1146 | ||
1147 | ++input_line_pointer; | |
1148 | SKIP_WHITESPACE (); | |
1149 | name = input_line_pointer; | |
1150 | c = get_symbol_end (); | |
1151 | ||
1152 | buf = (char *) xmalloc (strlen (name) + 10); | |
1153 | if (start) | |
1154 | sprintf (buf, ".startof.%s", name); | |
1155 | else | |
1156 | sprintf (buf, ".sizeof.%s", name); | |
1157 | symbolP = symbol_make (buf); | |
1158 | free (buf); | |
1159 | ||
1160 | expressionP->X_op = O_symbol; | |
1161 | expressionP->X_add_symbol = symbolP; | |
1162 | expressionP->X_add_number = 0; | |
1163 | ||
1164 | *input_line_pointer = c; | |
1165 | SKIP_WHITESPACE (); | |
1166 | if (*input_line_pointer != ')') | |
1167 | as_bad (_("syntax error in .startof. or .sizeof.")); | |
1168 | else | |
1169 | ++input_line_pointer; | |
1170 | } | |
1171 | break; | |
1172 | } | |
1173 | else | |
1174 | { | |
1175 | goto isname; | |
1176 | } | |
b75c0c92 | 1177 | |
252b5132 | 1178 | case ',': |
252b5132 | 1179 | eol: |
929b12bc | 1180 | /* Can't imagine any other kind of operand. */ |
252b5132 RH |
1181 | expressionP->X_op = O_absent; |
1182 | input_line_pointer--; | |
1183 | break; | |
1184 | ||
abd63a32 | 1185 | #ifdef TC_M68K |
252b5132 RH |
1186 | case '%': |
1187 | if (! flag_m68k_mri) | |
1188 | goto de_fault; | |
1189 | integer_constant (2, expressionP); | |
1190 | break; | |
1191 | ||
1192 | case '@': | |
1193 | if (! flag_m68k_mri) | |
1194 | goto de_fault; | |
1195 | integer_constant (8, expressionP); | |
1196 | break; | |
1197 | ||
1198 | case ':': | |
1199 | if (! flag_m68k_mri) | |
1200 | goto de_fault; | |
1201 | ||
1202 | /* In MRI mode, this is a floating point constant represented | |
1203 | using hexadecimal digits. */ | |
1204 | ||
1205 | ++input_line_pointer; | |
1206 | integer_constant (16, expressionP); | |
1207 | break; | |
1208 | ||
1209 | case '*': | |
1210 | if (! flag_m68k_mri || is_part_of_name (*input_line_pointer)) | |
1211 | goto de_fault; | |
1212 | ||
1213 | current_location (expressionP); | |
1214 | break; | |
abd63a32 | 1215 | #endif |
252b5132 RH |
1216 | |
1217 | default: | |
abd63a32 | 1218 | #ifdef TC_M68K |
252b5132 | 1219 | de_fault: |
abd63a32 | 1220 | #endif |
929b12bc | 1221 | if (is_name_beginner (c)) /* Here if did not begin with a digit. */ |
252b5132 | 1222 | { |
929b12bc KH |
1223 | /* Identifier begins here. |
1224 | This is kludged for speed, so code is repeated. */ | |
252b5132 RH |
1225 | isname: |
1226 | name = --input_line_pointer; | |
1227 | c = get_symbol_end (); | |
1228 | ||
1229 | #ifdef md_parse_name | |
1230 | /* This is a hook for the backend to parse certain names | |
1231 | specially in certain contexts. If a name always has a | |
1232 | specific value, it can often be handled by simply | |
1233 | entering it in the symbol table. */ | |
1234 | if (md_parse_name (name, expressionP)) | |
1235 | { | |
1236 | *input_line_pointer = c; | |
1237 | break; | |
1238 | } | |
1239 | #endif | |
1240 | ||
1241 | #ifdef TC_I960 | |
1242 | /* The MRI i960 assembler permits | |
1243 | lda sizeof code,g13 | |
1244 | FIXME: This should use md_parse_name. */ | |
1245 | if (flag_mri | |
1246 | && (strcasecmp (name, "sizeof") == 0 | |
1247 | || strcasecmp (name, "startof") == 0)) | |
1248 | { | |
1249 | int start; | |
1250 | char *buf; | |
1251 | ||
1252 | start = (name[1] == 't' | |
1253 | || name[1] == 'T'); | |
1254 | ||
1255 | *input_line_pointer = c; | |
1256 | SKIP_WHITESPACE (); | |
1257 | ||
1258 | name = input_line_pointer; | |
1259 | c = get_symbol_end (); | |
1260 | ||
1261 | buf = (char *) xmalloc (strlen (name) + 10); | |
1262 | if (start) | |
1263 | sprintf (buf, ".startof.%s", name); | |
1264 | else | |
1265 | sprintf (buf, ".sizeof.%s", name); | |
1266 | symbolP = symbol_make (buf); | |
1267 | free (buf); | |
1268 | ||
1269 | expressionP->X_op = O_symbol; | |
1270 | expressionP->X_add_symbol = symbolP; | |
1271 | expressionP->X_add_number = 0; | |
1272 | ||
1273 | *input_line_pointer = c; | |
1274 | SKIP_WHITESPACE (); | |
1275 | ||
1276 | break; | |
929b12bc | 1277 | } |
252b5132 RH |
1278 | #endif |
1279 | ||
1280 | symbolP = symbol_find_or_make (name); | |
1281 | ||
1282 | /* If we have an absolute symbol or a reg, then we know its | |
1283 | value now. */ | |
1284 | segment = S_GET_SEGMENT (symbolP); | |
1285 | if (segment == absolute_section) | |
1286 | { | |
1287 | expressionP->X_op = O_constant; | |
1288 | expressionP->X_add_number = S_GET_VALUE (symbolP); | |
1289 | } | |
1290 | else if (segment == reg_section) | |
1291 | { | |
1292 | expressionP->X_op = O_register; | |
1293 | expressionP->X_add_number = S_GET_VALUE (symbolP); | |
1294 | } | |
1295 | else | |
1296 | { | |
1297 | expressionP->X_op = O_symbol; | |
1298 | expressionP->X_add_symbol = symbolP; | |
1299 | expressionP->X_add_number = 0; | |
1300 | } | |
1301 | *input_line_pointer = c; | |
1302 | } | |
1303 | else | |
1304 | { | |
1305 | /* Let the target try to parse it. Success is indicated by changing | |
1306 | the X_op field to something other than O_absent and pointing | |
1307 | input_line_pointer passed the expression. If it can't parse the | |
1308 | expression, X_op and input_line_pointer should be unchanged. */ | |
1309 | expressionP->X_op = O_absent; | |
1310 | --input_line_pointer; | |
1311 | md_operand (expressionP); | |
1312 | if (expressionP->X_op == O_absent) | |
1313 | { | |
1314 | ++input_line_pointer; | |
1315 | as_bad (_("Bad expression")); | |
1316 | expressionP->X_op = O_constant; | |
1317 | expressionP->X_add_number = 0; | |
1318 | } | |
1319 | } | |
1320 | break; | |
1321 | } | |
1322 | ||
929b12bc KH |
1323 | /* It is more 'efficient' to clean up the expressionS when they are |
1324 | created. Doing it here saves lines of code. */ | |
252b5132 | 1325 | clean_up_expression (expressionP); |
929b12bc | 1326 | SKIP_WHITESPACE (); /* -> 1st char after operand. */ |
252b5132 RH |
1327 | know (*input_line_pointer != ' '); |
1328 | ||
1329 | /* The PA port needs this information. */ | |
1330 | if (expressionP->X_add_symbol) | |
49309057 | 1331 | symbol_mark_used (expressionP->X_add_symbol); |
252b5132 RH |
1332 | |
1333 | switch (expressionP->X_op) | |
1334 | { | |
1335 | default: | |
1336 | return absolute_section; | |
1337 | case O_symbol: | |
1338 | return S_GET_SEGMENT (expressionP->X_add_symbol); | |
1339 | case O_register: | |
1340 | return reg_section; | |
1341 | } | |
929b12bc | 1342 | } |
252b5132 | 1343 | \f |
929b12bc KH |
1344 | /* Internal. Simplify a struct expression for use by expr (). */ |
1345 | ||
1346 | /* In: address of a expressionS. | |
1347 | The X_op field of the expressionS may only take certain values. | |
1348 | Elsewise we waste time special-case testing. Sigh. Ditto SEG_ABSENT. | |
1349 | ||
1350 | Out: expressionS may have been modified: | |
1351 | 'foo-foo' symbol references cancelled to 0, which changes X_op | |
1352 | from O_subtract to O_constant. | |
1353 | Unused fields zeroed to help expr (). */ | |
252b5132 RH |
1354 | |
1355 | static void | |
1356 | clean_up_expression (expressionP) | |
1357 | expressionS *expressionP; | |
1358 | { | |
1359 | switch (expressionP->X_op) | |
1360 | { | |
1361 | case O_illegal: | |
1362 | case O_absent: | |
1363 | expressionP->X_add_number = 0; | |
1364 | /* Fall through. */ | |
1365 | case O_big: | |
1366 | case O_constant: | |
1367 | case O_register: | |
1368 | expressionP->X_add_symbol = NULL; | |
1369 | /* Fall through. */ | |
1370 | case O_symbol: | |
1371 | case O_uminus: | |
1372 | case O_bit_not: | |
1373 | expressionP->X_op_symbol = NULL; | |
1374 | break; | |
1375 | case O_subtract: | |
1376 | if (expressionP->X_op_symbol == expressionP->X_add_symbol | |
49309057 ILT |
1377 | || ((symbol_get_frag (expressionP->X_op_symbol) |
1378 | == symbol_get_frag (expressionP->X_add_symbol)) | |
252b5132 RH |
1379 | && SEG_NORMAL (S_GET_SEGMENT (expressionP->X_add_symbol)) |
1380 | && (S_GET_VALUE (expressionP->X_op_symbol) | |
1381 | == S_GET_VALUE (expressionP->X_add_symbol)))) | |
1382 | { | |
1383 | addressT diff = (S_GET_VALUE (expressionP->X_add_symbol) | |
1384 | - S_GET_VALUE (expressionP->X_op_symbol)); | |
1385 | ||
1386 | expressionP->X_op = O_constant; | |
1387 | expressionP->X_add_symbol = NULL; | |
1388 | expressionP->X_op_symbol = NULL; | |
1389 | expressionP->X_add_number += diff; | |
1390 | } | |
1391 | break; | |
1392 | default: | |
1393 | break; | |
1394 | } | |
1395 | } | |
1396 | \f | |
929b12bc KH |
1397 | /* Expression parser. */ |
1398 | ||
1399 | /* We allow an empty expression, and just assume (absolute,0) silently. | |
1400 | Unary operators and parenthetical expressions are treated as operands. | |
1401 | As usual, Q==quantity==operand, O==operator, X==expression mnemonics. | |
1402 | ||
1403 | We used to do a aho/ullman shift-reduce parser, but the logic got so | |
1404 | warped that I flushed it and wrote a recursive-descent parser instead. | |
1405 | Now things are stable, would anybody like to write a fast parser? | |
1406 | Most expressions are either register (which does not even reach here) | |
1407 | or 1 symbol. Then "symbol+constant" and "symbol-symbol" are common. | |
1408 | So I guess it doesn't really matter how inefficient more complex expressions | |
1409 | are parsed. | |
1410 | ||
1411 | After expr(RANK,resultP) input_line_pointer->operator of rank <= RANK. | |
1412 | Also, we have consumed any leading or trailing spaces (operand does that) | |
1413 | and done all intervening operators. | |
1414 | ||
1415 | This returns the segment of the result, which will be | |
1416 | absolute_section or the segment of a symbol. */ | |
252b5132 RH |
1417 | |
1418 | #undef __ | |
1419 | #define __ O_illegal | |
1420 | ||
1421 | static const operatorT op_encoding[256] = | |
929b12bc | 1422 | { /* Maps ASCII -> operators. */ |
252b5132 RH |
1423 | |
1424 | __, __, __, __, __, __, __, __, __, __, __, __, __, __, __, __, | |
1425 | __, __, __, __, __, __, __, __, __, __, __, __, __, __, __, __, | |
1426 | ||
1427 | __, O_bit_or_not, __, __, __, O_modulus, O_bit_and, __, | |
1428 | __, __, O_multiply, O_add, __, O_subtract, __, O_divide, | |
1429 | __, __, __, __, __, __, __, __, | |
1430 | __, __, __, __, O_lt, __, O_gt, __, | |
1431 | __, __, __, __, __, __, __, __, | |
1432 | __, __, __, __, __, __, __, __, | |
1433 | __, __, __, __, __, __, __, __, | |
b585bc2c RH |
1434 | __, __, __, |
1435 | #ifdef NEED_INDEX_OPERATOR | |
1436 | O_index, | |
1437 | #else | |
1438 | __, | |
1439 | #endif | |
1440 | __, __, O_bit_exclusive_or, __, | |
252b5132 RH |
1441 | __, __, __, __, __, __, __, __, |
1442 | __, __, __, __, __, __, __, __, | |
1443 | __, __, __, __, __, __, __, __, | |
1444 | __, __, __, __, O_bit_inclusive_or, __, __, __, | |
1445 | ||
1446 | __, __, __, __, __, __, __, __, __, __, __, __, __, __, __, __, | |
1447 | __, __, __, __, __, __, __, __, __, __, __, __, __, __, __, __, | |
1448 | __, __, __, __, __, __, __, __, __, __, __, __, __, __, __, __, | |
1449 | __, __, __, __, __, __, __, __, __, __, __, __, __, __, __, __, | |
1450 | __, __, __, __, __, __, __, __, __, __, __, __, __, __, __, __, | |
1451 | __, __, __, __, __, __, __, __, __, __, __, __, __, __, __, __, | |
1452 | __, __, __, __, __, __, __, __, __, __, __, __, __, __, __, __, | |
1453 | __, __, __, __, __, __, __, __, __, __, __, __, __, __, __, __ | |
1454 | }; | |
1455 | ||
929b12bc KH |
1456 | /* Rank Examples |
1457 | 0 operand, (expression) | |
1458 | 1 || | |
1459 | 2 && | |
1460 | 3 = <> < <= >= > | |
1461 | 4 + - | |
1462 | 5 used for * / % in MRI mode | |
1463 | 6 & ^ ! | | |
1464 | 7 * / % << >> | |
1465 | 8 unary - unary ~ | |
1466 | */ | |
252b5132 RH |
1467 | static operator_rankT op_rank[] = |
1468 | { | |
1469 | 0, /* O_illegal */ | |
1470 | 0, /* O_absent */ | |
1471 | 0, /* O_constant */ | |
1472 | 0, /* O_symbol */ | |
1473 | 0, /* O_symbol_rva */ | |
1474 | 0, /* O_register */ | |
1475 | 0, /* O_bit */ | |
b585bc2c RH |
1476 | 9, /* O_uminus */ |
1477 | 9, /* O_bit_not */ | |
1478 | 9, /* O_logical_not */ | |
1479 | 8, /* O_multiply */ | |
1480 | 8, /* O_divide */ | |
1481 | 8, /* O_modulus */ | |
1482 | 8, /* O_left_shift */ | |
1483 | 8, /* O_right_shift */ | |
1484 | 7, /* O_bit_inclusive_or */ | |
1485 | 7, /* O_bit_or_not */ | |
1486 | 7, /* O_bit_exclusive_or */ | |
1487 | 7, /* O_bit_and */ | |
1488 | 5, /* O_add */ | |
1489 | 5, /* O_subtract */ | |
1490 | 4, /* O_eq */ | |
1491 | 4, /* O_ne */ | |
1492 | 4, /* O_lt */ | |
1493 | 4, /* O_le */ | |
1494 | 4, /* O_ge */ | |
1495 | 4, /* O_gt */ | |
1496 | 3, /* O_logical_and */ | |
1497 | 2, /* O_logical_or */ | |
1498 | 1, /* O_index */ | |
446a06c9 MM |
1499 | 0, /* O_md1 */ |
1500 | 0, /* O_md2 */ | |
1501 | 0, /* O_md3 */ | |
1502 | 0, /* O_md4 */ | |
1503 | 0, /* O_md5 */ | |
1504 | 0, /* O_md6 */ | |
1505 | 0, /* O_md7 */ | |
1506 | 0, /* O_md8 */ | |
dd33dc0f MM |
1507 | 0, /* O_md9 */ |
1508 | 0, /* O_md10 */ | |
1509 | 0, /* O_md11 */ | |
1510 | 0, /* O_md12 */ | |
1511 | 0, /* O_md13 */ | |
1512 | 0, /* O_md14 */ | |
1513 | 0, /* O_md15 */ | |
1514 | 0, /* O_md16 */ | |
252b5132 RH |
1515 | }; |
1516 | ||
1517 | /* Unfortunately, in MRI mode for the m68k, multiplication and | |
1518 | division have lower precedence than the bit wise operators. This | |
1519 | function sets the operator precedences correctly for the current | |
1520 | mode. Also, MRI uses a different bit_not operator, and this fixes | |
1521 | that as well. */ | |
1522 | ||
1523 | #define STANDARD_MUL_PRECEDENCE (7) | |
1524 | #define MRI_MUL_PRECEDENCE (5) | |
1525 | ||
1526 | void | |
1527 | expr_set_precedence () | |
1528 | { | |
1529 | if (flag_m68k_mri) | |
1530 | { | |
1531 | op_rank[O_multiply] = MRI_MUL_PRECEDENCE; | |
1532 | op_rank[O_divide] = MRI_MUL_PRECEDENCE; | |
1533 | op_rank[O_modulus] = MRI_MUL_PRECEDENCE; | |
1534 | } | |
1535 | else | |
1536 | { | |
1537 | op_rank[O_multiply] = STANDARD_MUL_PRECEDENCE; | |
1538 | op_rank[O_divide] = STANDARD_MUL_PRECEDENCE; | |
1539 | op_rank[O_modulus] = STANDARD_MUL_PRECEDENCE; | |
1540 | } | |
1541 | } | |
1542 | ||
1543 | /* Initialize the expression parser. */ | |
1544 | ||
1545 | void | |
1546 | expr_begin () | |
1547 | { | |
1548 | expr_set_precedence (); | |
1549 | ||
1550 | /* Verify that X_op field is wide enough. */ | |
1551 | { | |
1552 | expressionS e; | |
1553 | e.X_op = O_max; | |
1554 | assert (e.X_op == O_max); | |
1555 | } | |
1556 | } | |
1557 | \f | |
1558 | /* Return the encoding for the operator at INPUT_LINE_POINTER. | |
1559 | Advance INPUT_LINE_POINTER to the last character in the operator | |
1560 | (i.e., don't change it for a single character operator). */ | |
1561 | ||
1562 | static inline operatorT | |
1563 | operator () | |
1564 | { | |
1565 | int c; | |
1566 | operatorT ret; | |
1567 | ||
1568 | c = *input_line_pointer & 0xff; | |
1569 | ||
b75c0c92 AM |
1570 | if (is_end_of_line[c]) |
1571 | return O_illegal; | |
1572 | ||
252b5132 RH |
1573 | switch (c) |
1574 | { | |
1575 | default: | |
1576 | return op_encoding[c]; | |
1577 | ||
1578 | case '<': | |
1579 | switch (input_line_pointer[1]) | |
1580 | { | |
1581 | default: | |
1582 | return op_encoding[c]; | |
1583 | case '<': | |
1584 | ret = O_left_shift; | |
1585 | break; | |
1586 | case '>': | |
1587 | ret = O_ne; | |
1588 | break; | |
1589 | case '=': | |
1590 | ret = O_le; | |
1591 | break; | |
1592 | } | |
1593 | ++input_line_pointer; | |
1594 | return ret; | |
1595 | ||
1596 | case '=': | |
1597 | if (input_line_pointer[1] != '=') | |
1598 | return op_encoding[c]; | |
1599 | ||
1600 | ++input_line_pointer; | |
1601 | return O_eq; | |
1602 | ||
1603 | case '>': | |
1604 | switch (input_line_pointer[1]) | |
1605 | { | |
1606 | default: | |
1607 | return op_encoding[c]; | |
1608 | case '>': | |
1609 | ret = O_right_shift; | |
1610 | break; | |
1611 | case '=': | |
1612 | ret = O_ge; | |
1613 | break; | |
1614 | } | |
1615 | ++input_line_pointer; | |
1616 | return ret; | |
1617 | ||
1618 | case '!': | |
1619 | /* We accept !! as equivalent to ^ for MRI compatibility. */ | |
1620 | if (input_line_pointer[1] != '!') | |
1621 | { | |
1622 | if (flag_m68k_mri) | |
1623 | return O_bit_inclusive_or; | |
1624 | return op_encoding[c]; | |
1625 | } | |
1626 | ++input_line_pointer; | |
1627 | return O_bit_exclusive_or; | |
1628 | ||
1629 | case '|': | |
1630 | if (input_line_pointer[1] != '|') | |
1631 | return op_encoding[c]; | |
1632 | ||
1633 | ++input_line_pointer; | |
1634 | return O_logical_or; | |
1635 | ||
1636 | case '&': | |
1637 | if (input_line_pointer[1] != '&') | |
1638 | return op_encoding[c]; | |
1639 | ||
1640 | ++input_line_pointer; | |
1641 | return O_logical_and; | |
1642 | } | |
1643 | ||
929b12bc | 1644 | /* NOTREACHED */ |
252b5132 RH |
1645 | } |
1646 | ||
1647 | /* Parse an expression. */ | |
1648 | ||
1649 | segT | |
0561a208 | 1650 | expr (rankarg, resultP) |
929b12bc KH |
1651 | int rankarg; /* Larger # is higher rank. */ |
1652 | expressionS *resultP; /* Deliver result here. */ | |
252b5132 | 1653 | { |
0561a208 | 1654 | operator_rankT rank = (operator_rankT) rankarg; |
252b5132 RH |
1655 | segT retval; |
1656 | expressionS right; | |
1657 | operatorT op_left; | |
1658 | operatorT op_right; | |
1659 | ||
1660 | know (rank >= 0); | |
1661 | ||
1662 | retval = operand (resultP); | |
1663 | ||
929b12bc KH |
1664 | /* operand () gobbles spaces. */ |
1665 | know (*input_line_pointer != ' '); | |
252b5132 RH |
1666 | |
1667 | op_left = operator (); | |
1668 | while (op_left != O_illegal && op_rank[(int) op_left] > rank) | |
1669 | { | |
1670 | segT rightseg; | |
1671 | ||
929b12bc | 1672 | input_line_pointer++; /* -> after 1st character of operator. */ |
252b5132 RH |
1673 | |
1674 | rightseg = expr (op_rank[(int) op_left], &right); | |
1675 | if (right.X_op == O_absent) | |
1676 | { | |
1677 | as_warn (_("missing operand; zero assumed")); | |
1678 | right.X_op = O_constant; | |
1679 | right.X_add_number = 0; | |
1680 | right.X_add_symbol = NULL; | |
1681 | right.X_op_symbol = NULL; | |
1682 | } | |
1683 | ||
1684 | know (*input_line_pointer != ' '); | |
1685 | ||
b585bc2c RH |
1686 | if (op_left == O_index) |
1687 | { | |
1688 | if (*input_line_pointer != ']') | |
1689 | as_bad ("missing right bracket"); | |
1690 | else | |
1691 | { | |
1692 | ++input_line_pointer; | |
1693 | SKIP_WHITESPACE (); | |
1694 | } | |
1695 | } | |
1696 | ||
252b5132 RH |
1697 | if (retval == undefined_section) |
1698 | { | |
1699 | if (SEG_NORMAL (rightseg)) | |
1700 | retval = rightseg; | |
1701 | } | |
1702 | else if (! SEG_NORMAL (retval)) | |
1703 | retval = rightseg; | |
1704 | else if (SEG_NORMAL (rightseg) | |
1705 | && retval != rightseg | |
1706 | #ifdef DIFF_EXPR_OK | |
1707 | && op_left != O_subtract | |
1708 | #endif | |
1709 | ) | |
1710 | as_bad (_("operation combines symbols in different segments")); | |
1711 | ||
1712 | op_right = operator (); | |
1713 | ||
929b12bc KH |
1714 | know (op_right == O_illegal |
1715 | || op_rank[(int) op_right] <= op_rank[(int) op_left]); | |
252b5132 RH |
1716 | know ((int) op_left >= (int) O_multiply |
1717 | && (int) op_left <= (int) O_logical_or); | |
1718 | ||
929b12bc KH |
1719 | /* input_line_pointer->after right-hand quantity. */ |
1720 | /* left-hand quantity in resultP. */ | |
1721 | /* right-hand quantity in right. */ | |
1722 | /* operator in op_left. */ | |
252b5132 RH |
1723 | |
1724 | if (resultP->X_op == O_big) | |
1725 | { | |
1726 | if (resultP->X_add_number > 0) | |
1727 | as_warn (_("left operand is a bignum; integer 0 assumed")); | |
1728 | else | |
1729 | as_warn (_("left operand is a float; integer 0 assumed")); | |
1730 | resultP->X_op = O_constant; | |
1731 | resultP->X_add_number = 0; | |
1732 | resultP->X_add_symbol = NULL; | |
1733 | resultP->X_op_symbol = NULL; | |
1734 | } | |
1735 | if (right.X_op == O_big) | |
1736 | { | |
1737 | if (right.X_add_number > 0) | |
1738 | as_warn (_("right operand is a bignum; integer 0 assumed")); | |
1739 | else | |
1740 | as_warn (_("right operand is a float; integer 0 assumed")); | |
1741 | right.X_op = O_constant; | |
1742 | right.X_add_number = 0; | |
1743 | right.X_add_symbol = NULL; | |
1744 | right.X_op_symbol = NULL; | |
1745 | } | |
1746 | ||
1747 | /* Optimize common cases. */ | |
800eeca4 JW |
1748 | #ifdef md_optimize_expr |
1749 | if (md_optimize_expr (resultP, op_left, &right)) | |
1750 | { | |
929b12bc KH |
1751 | /* Skip. */ |
1752 | ; | |
800eeca4 JW |
1753 | } |
1754 | else | |
1755 | #endif | |
252b5132 RH |
1756 | if (op_left == O_add && right.X_op == O_constant) |
1757 | { | |
1758 | /* X + constant. */ | |
1759 | resultP->X_add_number += right.X_add_number; | |
1760 | } | |
1761 | /* This case comes up in PIC code. */ | |
1762 | else if (op_left == O_subtract | |
1763 | && right.X_op == O_symbol | |
1764 | && resultP->X_op == O_symbol | |
49309057 ILT |
1765 | && (symbol_get_frag (right.X_add_symbol) |
1766 | == symbol_get_frag (resultP->X_add_symbol)) | |
252b5132 RH |
1767 | && SEG_NORMAL (S_GET_SEGMENT (right.X_add_symbol))) |
1768 | ||
1769 | { | |
1770 | resultP->X_add_number -= right.X_add_number; | |
1771 | resultP->X_add_number += (S_GET_VALUE (resultP->X_add_symbol) | |
1772 | - S_GET_VALUE (right.X_add_symbol)); | |
1773 | resultP->X_op = O_constant; | |
1774 | resultP->X_add_symbol = 0; | |
1775 | } | |
1776 | else if (op_left == O_subtract && right.X_op == O_constant) | |
1777 | { | |
1778 | /* X - constant. */ | |
1779 | resultP->X_add_number -= right.X_add_number; | |
1780 | } | |
1781 | else if (op_left == O_add && resultP->X_op == O_constant) | |
1782 | { | |
1783 | /* Constant + X. */ | |
1784 | resultP->X_op = right.X_op; | |
1785 | resultP->X_add_symbol = right.X_add_symbol; | |
1786 | resultP->X_op_symbol = right.X_op_symbol; | |
1787 | resultP->X_add_number += right.X_add_number; | |
1788 | retval = rightseg; | |
1789 | } | |
1790 | else if (resultP->X_op == O_constant && right.X_op == O_constant) | |
1791 | { | |
1792 | /* Constant OP constant. */ | |
1793 | offsetT v = right.X_add_number; | |
1794 | if (v == 0 && (op_left == O_divide || op_left == O_modulus)) | |
1795 | { | |
1796 | as_warn (_("division by zero")); | |
1797 | v = 1; | |
1798 | } | |
1799 | switch (op_left) | |
1800 | { | |
1801 | default: abort (); | |
1802 | case O_multiply: resultP->X_add_number *= v; break; | |
1803 | case O_divide: resultP->X_add_number /= v; break; | |
1804 | case O_modulus: resultP->X_add_number %= v; break; | |
1805 | case O_left_shift: resultP->X_add_number <<= v; break; | |
1806 | case O_right_shift: | |
1807 | /* We always use unsigned shifts, to avoid relying on | |
1808 | characteristics of the compiler used to compile gas. */ | |
1809 | resultP->X_add_number = | |
1810 | (offsetT) ((valueT) resultP->X_add_number >> (valueT) v); | |
1811 | break; | |
1812 | case O_bit_inclusive_or: resultP->X_add_number |= v; break; | |
1813 | case O_bit_or_not: resultP->X_add_number |= ~v; break; | |
1814 | case O_bit_exclusive_or: resultP->X_add_number ^= v; break; | |
1815 | case O_bit_and: resultP->X_add_number &= v; break; | |
1816 | case O_add: resultP->X_add_number += v; break; | |
1817 | case O_subtract: resultP->X_add_number -= v; break; | |
1818 | case O_eq: | |
1819 | resultP->X_add_number = | |
929b12bc | 1820 | resultP->X_add_number == v ? ~(offsetT) 0 : 0; |
252b5132 RH |
1821 | break; |
1822 | case O_ne: | |
1823 | resultP->X_add_number = | |
929b12bc | 1824 | resultP->X_add_number != v ? ~(offsetT) 0 : 0; |
252b5132 RH |
1825 | break; |
1826 | case O_lt: | |
1827 | resultP->X_add_number = | |
929b12bc | 1828 | resultP->X_add_number < v ? ~(offsetT) 0 : 0; |
252b5132 RH |
1829 | break; |
1830 | case O_le: | |
1831 | resultP->X_add_number = | |
929b12bc | 1832 | resultP->X_add_number <= v ? ~(offsetT) 0 : 0; |
252b5132 RH |
1833 | break; |
1834 | case O_ge: | |
1835 | resultP->X_add_number = | |
929b12bc | 1836 | resultP->X_add_number >= v ? ~(offsetT) 0 : 0; |
252b5132 RH |
1837 | break; |
1838 | case O_gt: | |
1839 | resultP->X_add_number = | |
929b12bc | 1840 | resultP->X_add_number > v ? ~(offsetT) 0 : 0; |
252b5132 RH |
1841 | break; |
1842 | case O_logical_and: | |
1843 | resultP->X_add_number = resultP->X_add_number && v; | |
1844 | break; | |
1845 | case O_logical_or: | |
1846 | resultP->X_add_number = resultP->X_add_number || v; | |
1847 | break; | |
1848 | } | |
1849 | } | |
1850 | else if (resultP->X_op == O_symbol | |
1851 | && right.X_op == O_symbol | |
1852 | && (op_left == O_add | |
1853 | || op_left == O_subtract | |
1854 | || (resultP->X_add_number == 0 | |
1855 | && right.X_add_number == 0))) | |
1856 | { | |
1857 | /* Symbol OP symbol. */ | |
1858 | resultP->X_op = op_left; | |
1859 | resultP->X_op_symbol = right.X_add_symbol; | |
1860 | if (op_left == O_add) | |
1861 | resultP->X_add_number += right.X_add_number; | |
1862 | else if (op_left == O_subtract) | |
1863 | resultP->X_add_number -= right.X_add_number; | |
1864 | } | |
1865 | else | |
1866 | { | |
1867 | /* The general case. */ | |
1868 | resultP->X_add_symbol = make_expr_symbol (resultP); | |
1869 | resultP->X_op_symbol = make_expr_symbol (&right); | |
1870 | resultP->X_op = op_left; | |
1871 | resultP->X_add_number = 0; | |
1872 | resultP->X_unsigned = 1; | |
1873 | } | |
1874 | ||
1875 | op_left = op_right; | |
929b12bc | 1876 | } /* While next operator is >= this rank. */ |
252b5132 RH |
1877 | |
1878 | /* The PA port needs this information. */ | |
1879 | if (resultP->X_add_symbol) | |
49309057 | 1880 | symbol_mark_used (resultP->X_add_symbol); |
252b5132 RH |
1881 | |
1882 | return resultP->X_op == O_constant ? absolute_section : retval; | |
1883 | } | |
1884 | \f | |
929b12bc KH |
1885 | /* This lives here because it belongs equally in expr.c & read.c. |
1886 | expr.c is just a branch office read.c anyway, and putting it | |
1887 | here lessens the crowd at read.c. | |
1888 | ||
1889 | Assume input_line_pointer is at start of symbol name. | |
1890 | Advance input_line_pointer past symbol name. | |
1891 | Turn that character into a '\0', returning its former value. | |
1892 | This allows a string compare (RMS wants symbol names to be strings) | |
1893 | of the symbol name. | |
1894 | There will always be a char following symbol name, because all good | |
1895 | lines end in end-of-line. */ | |
1896 | ||
252b5132 RH |
1897 | char |
1898 | get_symbol_end () | |
1899 | { | |
1900 | char c; | |
1901 | ||
1902 | /* We accept \001 in a name in case this is being called with a | |
1903 | constructed string. */ | |
1904 | if (is_name_beginner (c = *input_line_pointer++) || c == '\001') | |
58b5739a RH |
1905 | { |
1906 | while (is_part_of_name (c = *input_line_pointer++) | |
1907 | || c == '\001') | |
1908 | ; | |
1909 | if (is_name_ender (c)) | |
1910 | c = *input_line_pointer++; | |
1911 | } | |
252b5132 RH |
1912 | *--input_line_pointer = 0; |
1913 | return (c); | |
1914 | } | |
1915 | ||
252b5132 RH |
1916 | unsigned int |
1917 | get_single_number () | |
1918 | { | |
1919 | expressionS exp; | |
1920 | operand (&exp); | |
1921 | return exp.X_add_number; | |
252b5132 | 1922 | } |