* expr.c, write.c: Ultrix native 4.2 cc requires assert condition
[deliverable/binutils-gdb.git] / gas / expr.c
CommitLineData
fecd2382 1/* expr.c -operands, expressions-
f2f7d044 2 Copyright (C) 1987, 1990, 1991, 1992, 1993 Free Software Foundation, Inc.
2ed83a59 3
a39116f1 4 This file is part of GAS, the GNU Assembler.
2ed83a59 5
a39116f1
RP
6 GAS is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
2ed83a59 10
a39116f1
RP
11 GAS is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
2ed83a59 15
a39116f1
RP
16 You should have received a copy of the GNU General Public License
17 along with GAS; see the file COPYING. If not, write to
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
fecd2382
RP
19
20/*
21 * This is really a branch office of as-read.c. I split it out to clearly
22 * distinguish the world of expressions from the world of statements.
23 * (It also gives smaller files to re-compile.)
24 * Here, "operand"s are of expressions, not instructions.
25 */
26
27#include <ctype.h>
28#include <string.h>
29
30#include "as.h"
31
32#include "obstack.h"
33
f2f7d044
ILT
34static void clean_up_expression PARAMS ((expressionS * expressionP));
35extern const char EXP_CHARS[], FLT_CHARS[];
fecd2382 36
fecd2382
RP
37/*
38 * Build any floating-point literal here.
39 * Also build any bignum literal here.
40 */
41
fecd2382
RP
42/* Seems atof_machine can backscan through generic_bignum and hit whatever
43 happens to be loaded before it in memory. And its way too complicated
44 for me to fix right. Thus a hack. JF: Just make generic_bignum bigger,
45 and never write into the early words, thus they'll always be zero.
f2f7d044 46 I hate Dean's floating-point code. Bleh. */
2ed83a59
KR
47LITTLENUM_TYPE generic_bignum[SIZE_OF_LARGE_NUMBER + 6];
48FLONUM_TYPE generic_floating_point_number =
fecd2382 49{
2ed83a59
KR
50 &generic_bignum[6], /* low (JF: Was 0) */
51 &generic_bignum[SIZE_OF_LARGE_NUMBER + 6 - 1], /* high JF: (added +6) */
52 0, /* leader */
53 0, /* exponent */
54 0 /* sign */
55};
fecd2382
RP
56/* If nonzero, we've been asked to assemble nan, +inf or -inf */
57int generic_floating_point_magic;
58\f
2ed83a59
KR
59floating_constant (expressionP)
60 expressionS *expressionP;
c593cf41
SC
61{
62 /* input_line_pointer->*/
63 /* floating-point constant. */
64 int error_code;
65
66 error_code = atof_generic
2ed83a59
KR
67 (&input_line_pointer, ".", EXP_CHARS,
68 &generic_floating_point_number);
c593cf41
SC
69
70 if (error_code)
c593cf41 71 {
2ed83a59
KR
72 if (error_code == ERROR_EXPONENT_OVERFLOW)
73 {
74 as_bad ("bad floating-point constant: exponent overflow, probably assembling junk");
75 }
76 else
77 {
78 as_bad ("bad floating-point constant: unknown error code=%d.", error_code);
79 }
c593cf41 80 }
f2f7d044 81 expressionP->X_seg = big_section;
c593cf41
SC
82 /* input_line_pointer->just after constant, */
83 /* which may point to whitespace. */
2ed83a59 84 expressionP->X_add_number = -1;
c593cf41
SC
85}
86
87
88
2ed83a59
KR
89integer_constant (radix, expressionP)
90 int radix;
91 expressionS *expressionP;
c593cf41 92{
2ed83a59 93 register char *digit_2; /*->2nd digit of number. */
c593cf41 94 char c;
2ed83a59
KR
95
96 register valueT number; /* offset or (absolute) value */
97 register short int digit; /* value of next digit in current radix */
98 register short int maxdig = 0;/* highest permitted digit value. */
99 register int too_many_digits = 0; /* if we see >= this number of */
100 register char *name; /* points to name of symbol */
101 register symbolS *symbolP; /* points to symbol */
102
103 int small; /* true if fits in 32 bits. */
f2f7d044 104 extern const char hex_value[]; /* in hex_value.c */
2ed83a59 105
c593cf41
SC
106 /* may be bignum, or may fit in 32 bits. */
107 /*
108 * most numbers fit into 32 bits, and we want this case to be fast.
109 * so we pretend it will fit into 32 bits. if, after making up a 32
110 * bit number, we realise that we have scanned more digits than
111 * comfortably fit into 32 bits, we re-scan the digits coding
112 * them into a bignum. for decimal and octal numbers we are conservative: some
113 * numbers may be assumed bignums when in fact they do fit into 32 bits.
114 * numbers of any radix can have excess leading zeros: we strive
115 * to recognise this and cast them back into 32 bits.
116 * we must check that the bignum really is more than 32
117 * bits, and change it back to a 32-bit number if it fits.
118 * the number we are looking for is expected to be positive, but
119 * if it fits into 32 bits as an unsigned number, we let it be a 32-bit
120 * number. the cavalier approach is for speed in ordinary cases.
121 */
2ed83a59
KR
122
123 switch (radix)
f8701a3f 124 {
2ed83a59 125
f8701a3f
SC
126 case 2:
127 maxdig = 2;
128 too_many_digits = 33;
129 break;
130 case 8:
131 maxdig = radix = 8;
132 too_many_digits = 11;
133 break;
134 case 16:
2ed83a59
KR
135
136
f8701a3f
SC
137 maxdig = radix = 16;
138 too_many_digits = 9;
139 break;
140 case 10:
141 maxdig = radix = 10;
142 too_many_digits = 11;
143 }
c593cf41
SC
144 c = *input_line_pointer;
145 input_line_pointer++;
146 digit_2 = input_line_pointer;
2ed83a59 147 for (number = 0; (digit = hex_value[c]) < maxdig; c = *input_line_pointer++)
f8701a3f
SC
148 {
149 number = number * radix + digit;
150 }
c593cf41
SC
151 /* c contains character after number. */
152 /* input_line_pointer->char after c. */
153 small = input_line_pointer - digit_2 < too_many_digits;
2ed83a59 154 if (!small)
c593cf41 155 {
f8701a3f
SC
156 /*
157 * we saw a lot of digits. manufacture a bignum the hard way.
158 */
2ed83a59
KR
159 LITTLENUM_TYPE *leader; /*->high order littlenum of the bignum. */
160 LITTLENUM_TYPE *pointer; /*->littlenum we are frobbing now. */
f8701a3f 161 long carry;
2ed83a59 162
f8701a3f 163 leader = generic_bignum;
2ed83a59
KR
164 generic_bignum[0] = 0;
165 generic_bignum[1] = 0;
f8701a3f 166 /* we could just use digit_2, but lets be mnemonic. */
2ed83a59 167 input_line_pointer = --digit_2; /*->1st digit. */
f8701a3f 168 c = *input_line_pointer++;
2ed83a59 169 for (; (carry = hex_value[c]) < maxdig; c = *input_line_pointer++)
f8701a3f
SC
170 {
171 for (pointer = generic_bignum;
172 pointer <= leader;
173 pointer++)
174 {
175 long work;
2ed83a59
KR
176
177 work = carry + radix * *pointer;
f8701a3f
SC
178 *pointer = work & LITTLENUM_MASK;
179 carry = work >> LITTLENUM_NUMBER_OF_BITS;
180 }
181 if (carry)
182 {
183 if (leader < generic_bignum + SIZE_OF_LARGE_NUMBER - 1)
2ed83a59 184 { /* room to grow a longer bignum. */
f8701a3f
SC
185 *++leader = carry;
186 }
187 }
188 }
189 /* again, c is char after number, */
190 /* input_line_pointer->after c. */
2ed83a59
KR
191 know (sizeof (int) * 8 == 32);
192 know (LITTLENUM_NUMBER_OF_BITS == 16);
f8701a3f
SC
193 /* hence the constant "2" in the next line. */
194 if (leader < generic_bignum + 2)
2ed83a59 195 { /* will fit into 32 bits. */
f8701a3f 196 number =
2ed83a59
KR
197 ((generic_bignum[1] & LITTLENUM_MASK) << LITTLENUM_NUMBER_OF_BITS)
198 | (generic_bignum[0] & LITTLENUM_MASK);
f8701a3f
SC
199 small = 1;
200 }
201 else
202 {
2ed83a59 203 number = leader - generic_bignum + 1; /* number of littlenums in the bignum. */
c593cf41 204 }
c593cf41 205 }
2ed83a59
KR
206 if (small)
207 {
f8701a3f 208 /*
2ed83a59
KR
209 * here with number, in correct radix. c is the next char.
210 * note that unlike un*x, we allow "011f" "0x9f" to
211 * both mean the same as the (conventional) "9f". this is simply easier
212 * than checking for strict canonical form. syntax sux!
f8701a3f 213 */
2ed83a59
KR
214
215 switch (c)
216 {
217
218#ifdef LOCAL_LABELS_FB
219 case 'b':
220 {
221 /*
222 * backward ref to local label.
223 * because it is backward, expect it to be defined.
224 */
225 /* Construct a local label. */
226 name = fb_label_name ((int) number, 0);
227
228 /* seen before, or symbol is defined: ok */
229 symbolP = symbol_find (name);
230 if ((symbolP != NULL) && (S_IS_DEFINED (symbolP)))
231 {
232
233 /* local labels are never absolute. don't waste time
234 checking absoluteness. */
235 know (SEG_NORMAL (S_GET_SEGMENT (symbolP)));
236
237 expressionP->X_add_symbol = symbolP;
238 expressionP->X_seg = S_GET_SEGMENT (symbolP);
239
240 }
241 else
242 { /* either not seen or not defined. */
243 as_bad ("backw. ref to unknown label \"%d:\", 0 assumed.", number);
f2f7d044 244 expressionP->X_seg = absolute_section;
2ed83a59
KR
245 }
246
247 expressionP->X_add_number = 0;
248 break;
249 } /* case 'b' */
250
251 case 'f':
252 {
253 /*
254 * forward reference. expect symbol to be undefined or
255 * unknown. undefined: seen it before. unknown: never seen
256 * it before.
257 * construct a local label name, then an undefined symbol.
258 * don't create a xseg frag for it: caller may do that.
259 * just return it as never seen before.
260 */
261 name = fb_label_name ((int) number, 1);
262 symbolP = symbol_find_or_make (name);
263 /* we have no need to check symbol properties. */
c593cf41 264#ifndef many_segments
2ed83a59
KR
265 /* since "know" puts its arg into a "string", we
266 can't have newlines in the argument. */
f2f7d044 267 know (S_GET_SEGMENT (symbolP) == undefined_section || S_GET_SEGMENT (symbolP) == text_section || S_GET_SEGMENT (symbolP) == data_section);
c593cf41 268#endif
2ed83a59 269 expressionP->X_add_symbol = symbolP;
f2f7d044 270 expressionP->X_seg = undefined_section;
2ed83a59
KR
271 expressionP->X_subtract_symbol = NULL;
272 expressionP->X_add_number = 0;
273
274 break;
275 } /* case 'f' */
276
f8701a3f 277#endif /* LOCAL_LABELS_FB */
2ed83a59 278
f8701a3f 279#ifdef LOCAL_LABELS_DOLLAR
f8701a3f 280
2ed83a59
KR
281 case '$':
282 {
283
284 /* If the dollar label is *currently* defined, then this is just
285 another reference to it. If it is not *currently* defined,
286 then this is a fresh instantiation of that number, so create
287 it. */
288
289 if (dollar_label_defined (number))
290 {
291 name = dollar_label_name (number, 0);
292 symbolP = symbol_find (name);
293 know (symbolP != NULL);
294 }
295 else
296 {
297 name = dollar_label_name (number, 1);
298 symbolP = symbol_find_or_make (name);
299 }
300
301 expressionP->X_add_symbol = symbolP;
302 expressionP->X_add_number = 0;
303 expressionP->X_seg = S_GET_SEGMENT (symbolP);
304
305 break;
306 } /* case '$' */
307
f8701a3f 308#endif /* LOCAL_LABELS_DOLLAR */
2ed83a59
KR
309
310 default:
311 {
312 expressionP->X_add_number = number;
f2f7d044 313 expressionP->X_seg = absolute_section;
2ed83a59
KR
314 input_line_pointer--; /* restore following character. */
315 break;
316 } /* really just a number */
317
318 } /* switch on char following the number */
319
320
321 }
322 else
323 { /* not a small number */
c593cf41 324 expressionP->X_add_number = number;
f2f7d044 325 expressionP->X_seg = big_section;
2ed83a59
KR
326 input_line_pointer--; /*->char following number. */
327 } /* if (small) */
328} /* integer_constant() */
c593cf41
SC
329
330
fecd2382
RP
331/*
332 * Summary of operand().
333 *
334 * in: Input_line_pointer points to 1st char of operand, which may
335 * be a space.
336 *
337 * out: A expressionS. X_seg determines how to understand the rest of the
338 * expressionS.
339 * The operand may have been empty: in this case X_seg == SEG_ABSENT.
340 * Input_line_pointer->(next non-blank) char after operand.
341 *
342 */
343\f
c593cf41
SC
344
345
fecd2382 346static segT
c593cf41 347operand (expressionP)
2ed83a59 348 register expressionS *expressionP;
fecd2382 349{
c593cf41 350 register char c;
2ed83a59
KR
351 register symbolS *symbolP; /* points to symbol */
352 register char *name; /* points to name of symbol */
c593cf41
SC
353 /* invented for humans only, hope */
354 /* optimising compiler flushes it! */
2ed83a59 355 register short int radix; /* 2, 8, 10 or 16, 0 when floating */
c593cf41
SC
356 /* 0 means we saw start of a floating- */
357 /* point constant. */
358
359 /* digits, assume it is a bignum. */
360
2ed83a59
KR
361 SKIP_WHITESPACE (); /* leading whitespace is part of operand. */
362 c = *input_line_pointer++; /* input_line_pointer->past char in c. */
c593cf41
SC
363
364 switch (c)
fecd2382 365 {
2ed83a59
KR
366#ifdef MRI
367 case '%':
368 integer_constant (2, expressionP);
c593cf41 369 break;
2ed83a59
KR
370 case '@':
371 integer_constant (8, expressionP);
c593cf41 372 break;
2ed83a59
KR
373 case '$':
374 integer_constant (16, expressionP);
c593cf41 375 break;
2ed83a59 376#endif
c593cf41
SC
377 case '1':
378 case '2':
379 case '3':
380 case '4':
381 case '5':
382 case '6':
383 case '7':
2ed83a59
KR
384 case '8':
385 case '9':
386 input_line_pointer--;
387
388 integer_constant (10, expressionP);
c593cf41
SC
389 break;
390
2ed83a59
KR
391 case '0':
392 /* non-decimal radix */
393
394
395 c = *input_line_pointer;
396 switch (c)
397 {
398
399 default:
400 if (c && strchr (FLT_CHARS, c))
401 {
402 input_line_pointer++;
403 floating_constant (expressionP);
404 }
405 else
406 {
407 /* The string was only zero */
408 expressionP->X_add_symbol = 0;
409 expressionP->X_add_number = 0;
f2f7d044 410 expressionP->X_seg = absolute_section;
2ed83a59
KR
411 }
412
413 break;
414
415 case 'x':
416 case 'X':
417 input_line_pointer++;
418 integer_constant (16, expressionP);
419 break;
420
421 case 'b':
422#ifdef LOCAL_LABELS_FB
423 if (!*input_line_pointer
424 || (!strchr ("+-.0123456789", *input_line_pointer)
425 && !strchr (EXP_CHARS, *input_line_pointer)))
426 {
427 input_line_pointer--;
428 integer_constant (10, expressionP);
429 break;
430 }
431#endif
432 case 'B':
433 input_line_pointer++;
434 integer_constant (2, expressionP);
435 break;
436
437 case '0':
438 case '1':
439 case '2':
440 case '3':
441 case '4':
442 case '5':
443 case '6':
444 case '7':
445 integer_constant (8, expressionP);
446 break;
447
448 case 'f':
449#ifdef LOCAL_LABELS_FB
450 /* if it says '0f' and the line ends or it doesn't look like
d841bc49 451 a floating point #, its a local label ref. dtrt */
2ed83a59
KR
452 /* likewise for the b's. xoxorich. */
453 if (c == 'f'
454 && (!*input_line_pointer ||
455 (!strchr ("+-.0123456789", *input_line_pointer) &&
456 !strchr (EXP_CHARS, *input_line_pointer))))
457 {
458 input_line_pointer -= 1;
459 integer_constant (10, expressionP);
460 break;
461 }
462#endif
463
464 case 'd':
465 case 'D':
466 case 'F':
467 case 'r':
468 case 'e':
469 case 'E':
470 case 'g':
471 case 'G':
472
473 input_line_pointer++;
474 floating_constant (expressionP);
f2f7d044 475 expressionP->X_add_number = -(isupper (c) ? tolower (c) : c);
2ed83a59
KR
476 break;
477
478#ifdef LOCAL_LABELS_DOLLAR
479 case '$':
480 integer_constant (10, expressionP);
481 break;
482#endif
483 }
484
c593cf41 485 break;
2ed83a59
KR
486 case '(':
487 /* didn't begin with digit & not a name */
488 {
489 (void) expression (expressionP);
490 /* Expression() will pass trailing whitespace */
491 if (*input_line_pointer++ != ')')
492 {
493 as_bad ("Missing ')' assumed");
494 input_line_pointer--;
495 }
496 /* here with input_line_pointer->char after "(...)" */
497 }
498 return expressionP->X_seg;
c593cf41
SC
499
500
2ed83a59 501 case '\'':
d841bc49
KR
502 /* Warning: to conform to other people's assemblers NO ESCAPEMENT is
503 permitted for a single quote. The next character, parity errors and
504 all, is taken as the value of the operand. VERY KINKY. */
2ed83a59 505 expressionP->X_add_number = *input_line_pointer++;
f2f7d044 506 expressionP->X_seg = absolute_section;
2ed83a59
KR
507 break;
508
509 case '~':
510 case '-':
511 case '+':
2ed83a59
KR
512 {
513 /* unary operator: hope for SEG_ABSOLUTE */
f2f7d044
ILT
514 segT opseg = operand (expressionP);
515 if (opseg == absolute_section)
2ed83a59 516 {
2ed83a59
KR
517 /* input_line_pointer -> char after operand */
518 if (c == '-')
519 {
520 expressionP->X_add_number = -expressionP->X_add_number;
d841bc49
KR
521 /* Notice: '-' may overflow: no warning is given. This is
522 compatible with other people's assemblers. Sigh. */
2ed83a59
KR
523 }
524 else
525 {
526 expressionP->X_add_number = ~expressionP->X_add_number;
527 }
f2f7d044
ILT
528 }
529 else if (opseg == text_section
530 || opseg == data_section
531 || opseg == bss_section
532 || opseg == pass1_section
533 || opseg == undefined_section)
534 {
2ed83a59 535 if (c == '-')
f2f7d044 536 {
2ed83a59
KR
537 expressionP->X_subtract_symbol = expressionP->X_add_symbol;
538 expressionP->X_add_symbol = 0;
f2f7d044 539 expressionP->X_seg = diff_section;
2ed83a59 540 }
f2f7d044
ILT
541 else
542 as_warn ("Unary operator %c ignored because bad operand follows",
543 c);
c593cf41 544 }
f2f7d044
ILT
545 else
546 as_warn ("Unary operator %c ignored because bad operand follows", c);
c593cf41 547 }
2ed83a59
KR
548 break;
549
550 case '.':
551 if (!is_part_of_name (*input_line_pointer))
552 {
85825401 553 char *fake;
2ed83a59
KR
554 extern struct obstack frags;
555
85825401
ILT
556 /* JF: '.' is pseudo symbol with value of current location
557 in current segment. */
558#ifdef DOT_LABEL_PREFIX
559 fake = ".L0\001";
560#else
561 fake = "L0\001";
562#endif
563 symbolP = symbol_new (fake,
2ed83a59
KR
564 now_seg,
565 (valueT) (obstack_next_free (&frags) - frag_now->fr_literal),
566 frag_now);
c593cf41 567
2ed83a59
KR
568 expressionP->X_add_number = 0;
569 expressionP->X_add_symbol = symbolP;
570 expressionP->X_seg = now_seg;
571 break;
572
573 }
574 else
575 {
576 goto isname;
577
578
579 }
580 case ',':
581 case '\n':
f2f7d044 582 case '\0':
0bd77bc4 583 eol:
2ed83a59 584 /* can't imagine any other kind of operand */
f2f7d044 585 expressionP->X_seg = absent_section;
2ed83a59
KR
586 input_line_pointer--;
587 md_operand (expressionP);
588 break;
0bd77bc4 589
2ed83a59 590 default:
0bd77bc4
KR
591 if (is_end_of_line[c])
592 goto eol;
2ed83a59
KR
593 if (is_name_beginner (c)) /* here if did not begin with a digit */
594 {
595 /*
d841bc49
KR
596 * Identifier begins here.
597 * This is kludged for speed, so code is repeated.
598 */
2ed83a59
KR
599 isname:
600 name = --input_line_pointer;
601 c = get_symbol_end ();
602 symbolP = symbol_find_or_make (name);
d841bc49
KR
603 /* If we have an absolute symbol or a reg, then we know its value
604 now. */
2ed83a59 605 expressionP->X_seg = S_GET_SEGMENT (symbolP);
f2f7d044
ILT
606 if (expressionP->X_seg == absolute_section
607 || expressionP->X_seg == reg_section)
608 expressionP->X_add_number = S_GET_VALUE (symbolP);
609 else
2ed83a59 610 {
2ed83a59
KR
611 expressionP->X_add_number = 0;
612 expressionP->X_add_symbol = symbolP;
613 }
614 *input_line_pointer = c;
615 expressionP->X_subtract_symbol = NULL;
616 }
617 else
618 {
619 as_bad ("Bad expression");
620 expressionP->X_add_number = 0;
f2f7d044 621 expressionP->X_seg = absolute_section;
2ed83a59 622 }
c593cf41 623 }
c593cf41 624
c593cf41
SC
625 /*
626 * It is more 'efficient' to clean up the expressionS when they are created.
627 * Doing it here saves lines of code.
628 */
629 clean_up_expression (expressionP);
2ed83a59
KR
630 SKIP_WHITESPACE (); /*->1st char after operand. */
631 know (*input_line_pointer != ' ');
c593cf41 632 return (expressionP->X_seg);
2ed83a59 633} /* operand() */
fecd2382 634\f
2ed83a59 635
fecd2382
RP
636/* Internal. Simplify a struct expression for use by expr() */
637
638/*
639 * In: address of a expressionS.
640 * The X_seg field of the expressionS may only take certain values.
641 * Now, we permit SEG_PASS1 to make code smaller & faster.
642 * Elsewise we waste time special-case testing. Sigh. Ditto SEG_ABSENT.
643 * Out: expressionS may have been modified:
644 * 'foo-foo' symbol references cancelled to 0,
645 * which changes X_seg from SEG_DIFFERENCE to SEG_ABSOLUTE;
646 * Unused fields zeroed to help expr().
647 */
648
649static void
c593cf41 650clean_up_expression (expressionP)
2ed83a59 651 register expressionS *expressionP;
fecd2382 652{
f2f7d044
ILT
653 segT s = expressionP->X_seg;
654 if (s == absent_section
655 || s == pass1_section)
2ed83a59 656 {
2ed83a59
KR
657 expressionP->X_add_symbol = NULL;
658 expressionP->X_subtract_symbol = NULL;
659 expressionP->X_add_number = 0;
f2f7d044
ILT
660 }
661 else if (s == big_section
662 || s == absolute_section)
663 {
2ed83a59
KR
664 expressionP->X_subtract_symbol = NULL;
665 expressionP->X_add_symbol = NULL;
f2f7d044
ILT
666 }
667 else if (s == undefined_section)
668 expressionP->X_subtract_symbol = NULL;
669 else if (s == diff_section)
670 {
2ed83a59 671 /*
f2f7d044
ILT
672 * It does not hurt to 'cancel' NULL==NULL
673 * when comparing symbols for 'eq'ness.
674 * It is faster to re-cancel them to NULL
675 * than to check for this special case.
676 */
2ed83a59
KR
677 if (expressionP->X_subtract_symbol == expressionP->X_add_symbol
678 || (expressionP->X_subtract_symbol
679 && expressionP->X_add_symbol
680 && expressionP->X_subtract_symbol->sy_frag == expressionP->X_add_symbol->sy_frag
681 && S_GET_VALUE (expressionP->X_subtract_symbol) == S_GET_VALUE (expressionP->X_add_symbol)))
682 {
683 expressionP->X_subtract_symbol = NULL;
684 expressionP->X_add_symbol = NULL;
f2f7d044 685 expressionP->X_seg = absolute_section;
a39116f1 686 }
f2f7d044
ILT
687 }
688 else if (s == reg_section)
689 {
2ed83a59
KR
690 expressionP->X_add_symbol = NULL;
691 expressionP->X_subtract_symbol = NULL;
f2f7d044
ILT
692 }
693 else
694 {
2ed83a59
KR
695 if (SEG_NORMAL (expressionP->X_seg))
696 {
697 expressionP->X_subtract_symbol = NULL;
a39116f1 698 }
2ed83a59
KR
699 else
700 {
701 BAD_CASE (expressionP->X_seg);
a39116f1 702 }
2ed83a59 703 }
f2f7d044 704}
fecd2382
RP
705\f
706/*
707 * expr_part ()
708 *
709 * Internal. Made a function because this code is used in 2 places.
710 * Generate error or correct X_?????_symbol of expressionS.
711 */
712
713/*
714 * symbol_1 += symbol_2 ... well ... sort of.
715 */
716
717static segT
c593cf41 718expr_part (symbol_1_PP, symbol_2_P)
2ed83a59
KR
719 symbolS **symbol_1_PP;
720 symbolS *symbol_2_P;
fecd2382 721{
2ed83a59 722 segT return_value;
a39116f1 723#ifndef MANY_SEGMENTS
f2f7d044
ILT
724 assert ((*symbol_1_PP) == NULL \
725 || (S_GET_SEGMENT (*symbol_1_PP) == text_section) \
726 || (S_GET_SEGMENT (*symbol_1_PP) == data_section) \
727 || (S_GET_SEGMENT (*symbol_1_PP) == bss_section) \
728 || (!S_IS_DEFINED (*symbol_1_PP)));
729 assert (symbol_2_P == NULL \
730 || (S_GET_SEGMENT (symbol_2_P) == text_section) \
731 || (S_GET_SEGMENT (symbol_2_P) == data_section) \
732 || (S_GET_SEGMENT (symbol_2_P) == bss_section) \
733 || (!S_IS_DEFINED (symbol_2_P)));
a39116f1 734#endif
2ed83a59 735 if (*symbol_1_PP)
fecd2382 736 {
2ed83a59 737 if (!S_IS_DEFINED (*symbol_1_PP))
fecd2382 738 {
c593cf41 739 if (symbol_2_P)
fecd2382 740 {
f2f7d044 741 return_value = pass1_section;
2ed83a59 742 *symbol_1_PP = NULL;
fecd2382 743 }
c593cf41 744 else
fecd2382 745 {
2ed83a59 746 know (!S_IS_DEFINED (*symbol_1_PP));
f2f7d044 747 return_value = undefined_section;
fecd2382
RP
748 }
749 }
c593cf41 750 else
fecd2382 751 {
c593cf41 752 if (symbol_2_P)
fecd2382 753 {
2ed83a59 754 if (!S_IS_DEFINED (symbol_2_P))
fecd2382 755 {
2ed83a59 756 *symbol_1_PP = NULL;
f2f7d044 757 return_value = pass1_section;
fecd2382 758 }
c593cf41 759 else
fecd2382 760 {
c593cf41 761 /* {seg1} - {seg2} */
2ed83a59
KR
762 as_bad ("Expression too complex, 2 symbolS forgotten: \"%s\" \"%s\"",
763 S_GET_NAME (*symbol_1_PP), S_GET_NAME (symbol_2_P));
764 *symbol_1_PP = NULL;
f2f7d044 765 return_value = absolute_section;
fecd2382
RP
766 }
767 }
c593cf41 768 else
fecd2382 769 {
2ed83a59 770 return_value = S_GET_SEGMENT (*symbol_1_PP);
fecd2382
RP
771 }
772 }
773 }
c593cf41 774 else
fecd2382 775 { /* (* symbol_1_PP) == NULL */
c593cf41 776 if (symbol_2_P)
fecd2382 777 {
2ed83a59
KR
778 *symbol_1_PP = symbol_2_P;
779 return_value = S_GET_SEGMENT (symbol_2_P);
fecd2382 780 }
c593cf41 781 else
fecd2382 782 {
2ed83a59 783 *symbol_1_PP = NULL;
f2f7d044 784 return_value = absolute_section;
fecd2382
RP
785 }
786 }
a39116f1 787#ifndef MANY_SEGMENTS
f2f7d044
ILT
788 assert (return_value == absolute_section \
789 || return_value == text_section \
790 || return_value == data_section \
791 || return_value == bss_section \
792 || return_value == undefined_section \
793 || return_value == pass1_section);
a39116f1 794#endif
f2f7d044
ILT
795 know ((*symbol_1_PP) == NULL
796 || (S_GET_SEGMENT (*symbol_1_PP) == return_value));
c593cf41 797 return (return_value);
f2f7d044 798}
fecd2382
RP
799\f
800/* Expression parser. */
801
802/*
803 * We allow an empty expression, and just assume (absolute,0) silently.
804 * Unary operators and parenthetical expressions are treated as operands.
805 * As usual, Q==quantity==operand, O==operator, X==expression mnemonics.
806 *
807 * We used to do a aho/ullman shift-reduce parser, but the logic got so
808 * warped that I flushed it and wrote a recursive-descent parser instead.
809 * Now things are stable, would anybody like to write a fast parser?
810 * Most expressions are either register (which does not even reach here)
811 * or 1 symbol. Then "symbol+constant" and "symbol-symbol" are common.
812 * So I guess it doesn't really matter how inefficient more complex expressions
813 * are parsed.
814 *
815 * After expr(RANK,resultP) input_line_pointer->operator of rank <= RANK.
816 * Also, we have consumed any leading or trailing spaces (operand does that)
817 * and done all intervening operators.
818 */
819
820typedef enum
821{
2ed83a59
KR
822 O_illegal, /* (0) what we get for illegal op */
823
824 O_multiply, /* (1) * */
825 O_divide, /* (2) / */
826 O_modulus, /* (3) % */
827 O_left_shift, /* (4) < */
828 O_right_shift, /* (5) > */
829 O_bit_inclusive_or, /* (6) | */
830 O_bit_or_not, /* (7) ! */
831 O_bit_exclusive_or, /* (8) ^ */
832 O_bit_and, /* (9) & */
833 O_add, /* (10) + */
834 O_subtract /* (11) - */
835}
836
fecd2382
RP
837operatorT;
838
839#define __ O_illegal
840
2ed83a59
KR
841static const operatorT op_encoding[256] =
842{ /* maps ASCII->operators */
843
844 __, __, __, __, __, __, __, __, __, __, __, __, __, __, __, __,
845 __, __, __, __, __, __, __, __, __, __, __, __, __, __, __, __,
846
847 __, O_bit_or_not, __, __, __, O_modulus, O_bit_and, __,
848 __, __, O_multiply, O_add, __, O_subtract, __, O_divide,
849 __, __, __, __, __, __, __, __,
850 __, __, __, __, O_left_shift, __, O_right_shift, __,
851 __, __, __, __, __, __, __, __,
852 __, __, __, __, __, __, __, __,
853 __, __, __, __, __, __, __, __,
854 __, __, __, __, __, __, O_bit_exclusive_or, __,
855 __, __, __, __, __, __, __, __,
856 __, __, __, __, __, __, __, __,
857 __, __, __, __, __, __, __, __,
858 __, __, __, __, O_bit_inclusive_or, __, __, __,
859
860 __, __, __, __, __, __, __, __, __, __, __, __, __, __, __, __,
861 __, __, __, __, __, __, __, __, __, __, __, __, __, __, __, __,
862 __, __, __, __, __, __, __, __, __, __, __, __, __, __, __, __,
863 __, __, __, __, __, __, __, __, __, __, __, __, __, __, __, __,
864 __, __, __, __, __, __, __, __, __, __, __, __, __, __, __, __,
865 __, __, __, __, __, __, __, __, __, __, __, __, __, __, __, __,
866 __, __, __, __, __, __, __, __, __, __, __, __, __, __, __, __,
867 __, __, __, __, __, __, __, __, __, __, __, __, __, __, __, __
868};
fecd2382
RP
869
870
871/*
872 * Rank Examples
873 * 0 operand, (expression)
874 * 1 + -
875 * 2 & ^ ! |
876 * 3 * / % << >>
877 */
878static const operator_rankT
2ed83a59
KR
879 op_rank[] =
880{0, 3, 3, 3, 3, 3, 2, 2, 2, 2, 1, 1};
fecd2382
RP
881\f
882/* Return resultP->X_seg. */
2ed83a59
KR
883segT
884expr (rank, resultP)
885 register operator_rankT rank; /* Larger # is higher rank. */
886 register expressionS *resultP; /* Deliver result here. */
fecd2382 887{
2ed83a59
KR
888 expressionS right;
889 register operatorT op_left;
890 register char c_left; /* 1st operator character. */
891 register operatorT op_right;
c593cf41
SC
892 register char c_right;
893
2ed83a59
KR
894 know (rank >= 0);
895 (void) operand (resultP);
896 know (*input_line_pointer != ' '); /* Operand() gobbles spaces. */
897 c_left = *input_line_pointer; /* Potential operator character. */
898 op_left = op_encoding[c_left];
899 while (op_left != O_illegal && op_rank[(int) op_left] > rank)
fecd2382 900 {
2ed83a59
KR
901 input_line_pointer++; /*->after 1st character of operator. */
902 /* Operators "<<" and ">>" have 2 characters. */
903 if (*input_line_pointer == c_left && (c_left == '<' || c_left == '>'))
fecd2382 904 {
2ed83a59 905 input_line_pointer++;
fecd2382 906 } /*->after operator. */
f2f7d044 907 if (absent_section == expr (op_rank[(int) op_left], &right))
fecd2382 908 {
2ed83a59
KR
909 as_warn ("Missing operand value assumed absolute 0.");
910 resultP->X_add_number = 0;
911 resultP->X_subtract_symbol = NULL;
912 resultP->X_add_symbol = NULL;
f2f7d044 913 resultP->X_seg = absolute_section;
fecd2382 914 }
2ed83a59
KR
915 know (*input_line_pointer != ' ');
916 c_right = *input_line_pointer;
917 op_right = op_encoding[c_right];
918 if (*input_line_pointer == c_right && (c_right == '<' || c_right == '>'))
fecd2382 919 {
2ed83a59 920 input_line_pointer++;
fecd2382 921 } /*->after operator. */
2ed83a59 922 know ((int) op_right == 0 || op_rank[(int) op_right] <= op_rank[(int) op_left]);
c593cf41
SC
923 /* input_line_pointer->after right-hand quantity. */
924 /* left-hand quantity in resultP */
925 /* right-hand quantity in right. */
926 /* operator in op_left. */
f2f7d044 927 if (resultP->X_seg == pass1_section || right.X_seg == pass1_section)
fecd2382 928 {
f2f7d044 929 resultP->X_seg = pass1_section;
fecd2382 930 }
c593cf41 931 else
fecd2382 932 {
f2f7d044 933 if (resultP->X_seg == big_section)
fecd2382 934 {
2ed83a59
KR
935 as_warn ("Left operand of %c is a %s. Integer 0 assumed.",
936 c_left, resultP->X_add_number > 0 ? "bignum" : "float");
f2f7d044 937 resultP->X_seg = absolute_section;
c593cf41
SC
938 resultP->X_add_symbol = 0;
939 resultP->X_subtract_symbol = 0;
940 resultP->X_add_number = 0;
fecd2382 941 }
f2f7d044 942 if (right.X_seg == big_section)
fecd2382 943 {
2ed83a59
KR
944 as_warn ("Right operand of %c is a %s. Integer 0 assumed.",
945 c_left, right.X_add_number > 0 ? "bignum" : "float");
f2f7d044 946 right.X_seg = absolute_section;
2ed83a59
KR
947 right.X_add_symbol = 0;
948 right.X_subtract_symbol = 0;
949 right.X_add_number = 0;
fecd2382 950 }
c593cf41 951 if (op_left == O_subtract)
fecd2382 952 {
c593cf41
SC
953 /*
954 * Convert - into + by exchanging symbolS and negating number.
955 * I know -infinity can't be negated in 2's complement:
956 * but then it can't be subtracted either. This trick
957 * does not cause any further inaccuracy.
958 */
959
2ed83a59 960 register symbolS *symbolP;
c593cf41 961
2ed83a59
KR
962 right.X_add_number = -right.X_add_number;
963 symbolP = right.X_add_symbol;
964 right.X_add_symbol = right.X_subtract_symbol;
965 right.X_subtract_symbol = symbolP;
c593cf41 966 if (symbolP)
fecd2382 967 {
f2f7d044 968 right.X_seg = diff_section;
fecd2382 969 }
c593cf41 970 op_left = O_add;
fecd2382 971 }
c593cf41
SC
972\f
973 if (op_left == O_add)
fecd2382 974 {
2ed83a59
KR
975 segT seg1;
976 segT seg2;
a39116f1 977#ifndef MANY_SEGMENTS
2ed83a59 978
f2f7d044 979 know (resultP->X_seg == data_section || resultP->X_seg == text_section || resultP->X_seg == bss_section || resultP->X_seg == undefined_section || resultP->X_seg == diff_section || resultP->X_seg == absolute_section || resultP->X_seg == pass1_section || resultP->X_seg == reg_section);
2ed83a59 980
f2f7d044 981 know (right.X_seg == data_section || right.X_seg == text_section || right.X_seg == bss_section || right.X_seg == undefined_section || right.X_seg == diff_section || right.X_seg == absolute_section || right.X_seg == pass1_section);
a39116f1 982#endif
2ed83a59 983 clean_up_expression (&right);
c593cf41
SC
984 clean_up_expression (resultP);
985
2ed83a59
KR
986 seg1 = expr_part (&resultP->X_add_symbol, right.X_add_symbol);
987 seg2 = expr_part (&resultP->X_subtract_symbol, right.X_subtract_symbol);
f2f7d044 988 if (seg1 == pass1_section || seg2 == pass1_section)
2ed83a59
KR
989 {
990 need_pass_2 = 1;
f2f7d044 991 resultP->X_seg = pass1_section;
2ed83a59 992 }
f2f7d044 993 else if (seg2 == absolute_section)
2ed83a59 994 resultP->X_seg = seg1;
f2f7d044
ILT
995 else if (seg1 != undefined_section
996 && seg1 != absolute_section
997 && seg2 != undefined_section
2ed83a59
KR
998 && seg1 != seg2)
999 {
f2f7d044 1000 know (seg2 != absolute_section);
2ed83a59 1001 know (resultP->X_subtract_symbol);
a39116f1 1002#ifndef MANY_SEGMENTS
f2f7d044
ILT
1003 know (seg1 == text_section || seg1 == data_section || seg1 == bss_section);
1004 know (seg2 == text_section || seg2 == data_section || seg2 == bss_section);
a39116f1 1005#endif
2ed83a59
KR
1006 know (resultP->X_add_symbol);
1007 know (resultP->X_subtract_symbol);
1008 as_bad ("Expression too complex: forgetting %s - %s",
1009 S_GET_NAME (resultP->X_add_symbol),
1010 S_GET_NAME (resultP->X_subtract_symbol));
f2f7d044 1011 resultP->X_seg = absolute_section;
2ed83a59
KR
1012 /* Clean_up_expression() will do the rest. */
1013 }
1014 else
f2f7d044 1015 resultP->X_seg = diff_section;
c593cf41 1016
2ed83a59 1017 resultP->X_add_number += right.X_add_number;
c593cf41 1018 clean_up_expression (resultP);
2ed83a59 1019 }
c593cf41 1020 else
fecd2382 1021 { /* Not +. */
f2f7d044 1022 if (resultP->X_seg == undefined_section || right.X_seg == undefined_section)
fecd2382 1023 {
f2f7d044 1024 resultP->X_seg = pass1_section;
c593cf41 1025 need_pass_2 = 1;
fecd2382 1026 }
c593cf41 1027 else
fecd2382 1028 {
c593cf41
SC
1029 resultP->X_subtract_symbol = NULL;
1030 resultP->X_add_symbol = NULL;
f2f7d044
ILT
1031 /* Will be absolute_section. */
1032 if (resultP->X_seg != absolute_section || right.X_seg != absolute_section)
fecd2382 1033 {
2ed83a59 1034 as_bad ("Relocation error. Absolute 0 assumed.");
f2f7d044 1035 resultP->X_seg = absolute_section;
c593cf41 1036 resultP->X_add_number = 0;
fecd2382 1037 }
c593cf41 1038 else
fecd2382 1039 {
c593cf41 1040 switch (op_left)
fecd2382
RP
1041 {
1042 case O_bit_inclusive_or:
2ed83a59 1043 resultP->X_add_number |= right.X_add_number;
c593cf41
SC
1044 break;
1045
fecd2382 1046 case O_modulus:
2ed83a59 1047 if (right.X_add_number)
fecd2382 1048 {
2ed83a59 1049 resultP->X_add_number %= right.X_add_number;
fecd2382 1050 }
c593cf41 1051 else
fecd2382 1052 {
2ed83a59 1053 as_warn ("Division by 0. 0 assumed.");
c593cf41 1054 resultP->X_add_number = 0;
fecd2382 1055 }
c593cf41
SC
1056 break;
1057
fecd2382 1058 case O_bit_and:
2ed83a59 1059 resultP->X_add_number &= right.X_add_number;
c593cf41
SC
1060 break;
1061
fecd2382 1062 case O_multiply:
2ed83a59 1063 resultP->X_add_number *= right.X_add_number;
c593cf41
SC
1064 break;
1065
fecd2382 1066 case O_divide:
2ed83a59 1067 if (right.X_add_number)
fecd2382 1068 {
2ed83a59 1069 resultP->X_add_number /= right.X_add_number;
fecd2382 1070 }
c593cf41 1071 else
fecd2382 1072 {
2ed83a59
KR
1073 as_warn ("Division by 0. 0 assumed.");
1074 resultP->X_add_number = 0;
fecd2382 1075 }
2ed83a59
KR
1076 break;
1077
fecd2382 1078 case O_left_shift:
2ed83a59
KR
1079 resultP->X_add_number <<= right.X_add_number;
1080 break;
1081
fecd2382 1082 case O_right_shift:
2ed83a59
KR
1083 resultP->X_add_number >>= right.X_add_number;
1084 break;
1085
fecd2382 1086 case O_bit_exclusive_or:
2ed83a59
KR
1087 resultP->X_add_number ^= right.X_add_number;
1088 break;
1089
fecd2382 1090 case O_bit_or_not:
2ed83a59
KR
1091 resultP->X_add_number |= ~right.X_add_number;
1092 break;
1093
fecd2382 1094 default:
2ed83a59
KR
1095 BAD_CASE (op_left);
1096 break;
1097 } /* switch(operator) */
fecd2382
RP
1098 }
1099 } /* If we have to force need_pass_2. */
1100 } /* If operator was +. */
1101 } /* If we didn't set need_pass_2. */
2ed83a59 1102 op_left = op_right;
fecd2382 1103 } /* While next operator is >= this rank. */
2ed83a59 1104 return (resultP->X_seg);
fecd2382
RP
1105}
1106\f
1107/*
1108 * get_symbol_end()
1109 *
1110 * This lives here because it belongs equally in expr.c & read.c.
1111 * Expr.c is just a branch office read.c anyway, and putting it
1112 * here lessens the crowd at read.c.
1113 *
1114 * Assume input_line_pointer is at start of symbol name.
1115 * Advance input_line_pointer past symbol name.
1116 * Turn that character into a '\0', returning its former value.
1117 * This allows a string compare (RMS wants symbol names to be strings)
1118 * of the symbol name.
1119 * There will always be a char following symbol name, because all good
1120 * lines end in end-of-line.
1121 */
1122char
2ed83a59 1123get_symbol_end ()
fecd2382 1124{
2ed83a59
KR
1125 register char c;
1126
1127 while (is_part_of_name (c = *input_line_pointer++))
1128 ;
1129 *--input_line_pointer = 0;
1130 return (c);
fecd2382
RP
1131}
1132
a39116f1 1133
2ed83a59
KR
1134unsigned int
1135get_single_number ()
a39116f1 1136{
2ed83a59
KR
1137 expressionS exp;
1138 operand (&exp);
1139 return exp.X_add_number;
1140
a39116f1 1141}
2ed83a59 1142
8b228fe9 1143/* end of expr.c */
This page took 0.117448 seconds and 4 git commands to generate.