1 /* expr.c -operands, expressions-
2 Copyright (C) 1987, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 2000
3 Free Software Foundation, Inc.
5 This file is part of GAS, the GNU Assembler.
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)
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.
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
23 * This is really a branch office of as-read.c. I split it out to clearly
24 * distinguish the world of expressions from the world of statements.
25 * (It also gives smaller files to re-compile.)
26 * Here, "operand"s are of expressions, not instructions.
31 #define min(a, b) ((a) < (b) ? (a) : (b))
36 static void floating_constant PARAMS ((expressionS * expressionP));
37 static valueT generic_bignum_to_int32 PARAMS ((void));
39 static valueT generic_bignum_to_int64 PARAMS ((void));
41 static void integer_constant PARAMS ((int radix, expressionS * expressionP));
42 static void mri_char_constant PARAMS ((expressionS *));
43 static void current_location PARAMS ((expressionS *));
44 static void clean_up_expression PARAMS ((expressionS * expressionP));
45 static segT operand PARAMS ((expressionS *));
46 static operatorT operator PARAMS ((void));
48 extern const char EXP_CHARS[], FLT_CHARS[];
50 /* We keep a mapping of expression symbols to file positions, so that
51 we can provide better error messages. */
53 struct expr_symbol_line
55 struct expr_symbol_line *next;
61 static struct expr_symbol_line *expr_symbol_lines;
63 /* Build a dummy symbol to hold a complex expression. This is how we
64 build expressions up out of other expressions. The symbol is put
65 into the fake section expr_section. */
68 make_expr_symbol (expressionP)
69 expressionS *expressionP;
74 struct expr_symbol_line *n;
76 if (expressionP->X_op == O_symbol
77 && expressionP->X_add_number == 0)
78 return expressionP->X_add_symbol;
80 if (expressionP->X_op == O_big)
82 /* This won't work, because the actual value is stored in
83 generic_floating_point_number or generic_bignum, and we are
84 going to lose it if we haven't already. */
85 if (expressionP->X_add_number > 0)
86 as_bad (_("bignum invalid; zero assumed"));
88 as_bad (_("floating point number invalid; zero assumed"));
89 zero.X_op = O_constant;
90 zero.X_add_number = 0;
92 clean_up_expression (&zero);
96 fake = FAKE_LABEL_NAME;
98 /* Putting constant symbols in absolute_section rather than
99 expr_section is convenient for the old a.out code, for which
100 S_GET_SEGMENT does not always retrieve the value put in by
102 symbolP = symbol_create (fake,
103 (expressionP->X_op == O_constant
106 0, &zero_address_frag);
107 symbol_set_value_expression (symbolP, expressionP);
109 if (expressionP->X_op == O_constant)
110 resolve_symbol_value (symbolP, 1);
112 n = (struct expr_symbol_line *) xmalloc (sizeof *n);
114 as_where (&n->file, &n->line);
115 n->next = expr_symbol_lines;
116 expr_symbol_lines = n;
121 /* Return the file and line number for an expr symbol. Return
122 non-zero if something was found, 0 if no information is known for
126 expr_symbol_where (sym, pfile, pline)
131 register struct expr_symbol_line *l;
133 for (l = expr_symbol_lines; l != NULL; l = l->next)
146 /* Utilities for building expressions.
147 Since complex expressions are recorded as symbols for use in other
148 expressions these return a symbolS * and not an expressionS *.
149 These explicitly do not take an "add_number" argument. */
150 /* ??? For completeness' sake one might want expr_build_symbol.
151 It would just return its argument. */
153 /* Build an expression for an unsigned constant.
154 The corresponding one for signed constants is missing because
155 there's currently no need for it. One could add an unsigned_p flag
156 but that seems more clumsy. */
159 expr_build_uconstant (value)
165 e.X_add_number = value;
167 return make_expr_symbol (&e);
170 /* Build an expression for OP s1. */
173 expr_build_unary (op, s1)
182 return make_expr_symbol (&e);
185 /* Build an expression for s1 OP s2. */
188 expr_build_binary (op, s1, s2)
199 return make_expr_symbol (&e);
202 /* Build an expression for the current location ('.'). */
209 current_location (&e);
210 return make_expr_symbol (&e);
214 * Build any floating-point literal here.
215 * Also build any bignum literal here.
218 /* Seems atof_machine can backscan through generic_bignum and hit whatever
219 happens to be loaded before it in memory. And its way too complicated
220 for me to fix right. Thus a hack. JF: Just make generic_bignum bigger,
221 and never write into the early words, thus they'll always be zero.
222 I hate Dean's floating-point code. Bleh. */
223 LITTLENUM_TYPE generic_bignum[SIZE_OF_LARGE_NUMBER + 6];
224 FLONUM_TYPE generic_floating_point_number =
226 &generic_bignum[6], /* low (JF: Was 0) */
227 &generic_bignum[SIZE_OF_LARGE_NUMBER + 6 - 1], /* high JF: (added +6) */
232 /* If nonzero, we've been asked to assemble nan, +inf or -inf */
233 int generic_floating_point_magic;
236 floating_constant (expressionP)
237 expressionS *expressionP;
239 /* input_line_pointer->*/
240 /* floating-point constant. */
243 error_code = atof_generic (&input_line_pointer, ".", EXP_CHARS,
244 &generic_floating_point_number);
248 if (error_code == ERROR_EXPONENT_OVERFLOW)
250 as_bad (_("bad floating-point constant: exponent overflow, probably assembling junk"));
254 as_bad (_("bad floating-point constant: unknown error code=%d."), error_code);
257 expressionP->X_op = O_big;
258 /* input_line_pointer->just after constant, */
259 /* which may point to whitespace. */
260 expressionP->X_add_number = -1;
264 generic_bignum_to_int32 ()
267 ((generic_bignum[1] & LITTLENUM_MASK) << LITTLENUM_NUMBER_OF_BITS)
268 | (generic_bignum[0] & LITTLENUM_MASK);
269 number &= 0xffffffff;
275 generic_bignum_to_int64 ()
278 ((((((((valueT) generic_bignum[3] & LITTLENUM_MASK)
279 << LITTLENUM_NUMBER_OF_BITS)
280 | ((valueT) generic_bignum[2] & LITTLENUM_MASK))
281 << LITTLENUM_NUMBER_OF_BITS)
282 | ((valueT) generic_bignum[1] & LITTLENUM_MASK))
283 << LITTLENUM_NUMBER_OF_BITS)
284 | ((valueT) generic_bignum[0] & LITTLENUM_MASK));
290 integer_constant (radix, expressionP)
292 expressionS *expressionP;
294 char *start; /* start of number. */
297 valueT number; /* offset or (absolute) value */
298 short int digit; /* value of next digit in current radix */
299 short int maxdig = 0;/* highest permitted digit value. */
300 int too_many_digits = 0; /* if we see >= this number of */
301 char *name; /* points to name of symbol */
302 symbolS *symbolP; /* points to symbol */
304 int small; /* true if fits in 32 bits. */
306 /* May be bignum, or may fit in 32 bits. */
307 /* Most numbers fit into 32 bits, and we want this case to be fast.
308 so we pretend it will fit into 32 bits. If, after making up a 32
309 bit number, we realise that we have scanned more digits than
310 comfortably fit into 32 bits, we re-scan the digits coding them
311 into a bignum. For decimal and octal numbers we are
312 conservative: Some numbers may be assumed bignums when in fact
313 they do fit into 32 bits. Numbers of any radix can have excess
314 leading zeros: We strive to recognise this and cast them back
315 into 32 bits. We must check that the bignum really is more than
316 32 bits, and change it back to a 32-bit number if it fits. The
317 number we are looking for is expected to be positive, but if it
318 fits into 32 bits as an unsigned number, we let it be a 32-bit
319 number. The cavalier approach is for speed in ordinary cases. */
320 /* This has been extended for 64 bits. We blindly assume that if
321 you're compiling in 64-bit mode, the target is a 64-bit machine.
322 This should be cleaned up. */
326 #else /* includes non-bfd case, mostly */
330 if ((NUMBERS_WITH_SUFFIX || flag_m68k_mri) && radix == 0)
334 /* In MRI mode, the number may have a suffix indicating the
335 radix. For that matter, it might actually be a floating
337 for (suffix = input_line_pointer;
338 isalnum ((unsigned char) *suffix);
341 if (*suffix == 'e' || *suffix == 'E')
345 if (suffix == input_line_pointer)
353 if (islower ((unsigned char) c))
359 else if (c == 'O' || c == 'Q')
363 else if (suffix[1] == '.' || c == 'E' || flt)
365 floating_constant (expressionP);
380 too_many_digits = valuesize + 1;
384 too_many_digits = (valuesize + 2) / 3 + 1;
388 too_many_digits = (valuesize + 3) / 4 + 1;
392 too_many_digits = (valuesize + 11) / 4; /* very rough */
395 start = input_line_pointer;
396 c = *input_line_pointer++;
398 (digit = hex_value (c)) < maxdig;
399 c = *input_line_pointer++)
401 number = number * radix + digit;
403 /* c contains character after number. */
404 /* input_line_pointer->char after c. */
405 small = (input_line_pointer - start - 1) < too_many_digits;
407 if (radix == 16 && c == '_')
409 /* This is literal of the form 0x333_0_12345678_1.
410 This example is equivalent to 0x00000333000000001234567800000001. */
412 int num_little_digits = 0;
414 input_line_pointer = start; /*->1st digit. */
416 know (LITTLENUM_NUMBER_OF_BITS == 16);
418 for (c = '_'; c == '_'; num_little_digits+=2)
421 /* Convert one 64-bit word. */
424 for (c = *input_line_pointer++;
425 (digit = hex_value (c)) < maxdig;
426 c = *(input_line_pointer++))
428 number = number * radix + digit;
432 /* Check for 8 digit per word max. */
434 as_bad (_("A bignum with underscores may not have more than 8 hex digits in any word."));
436 /* Add this chunk to the bignum. Shift things down 2 little digits.*/
437 know (LITTLENUM_NUMBER_OF_BITS == 16);
438 for (i = min (num_little_digits + 1, SIZE_OF_LARGE_NUMBER - 1); i >= 2; i--)
439 generic_bignum[i] = generic_bignum[i-2];
441 /* Add the new digits as the least significant new ones. */
442 generic_bignum[0] = number & 0xffffffff;
443 generic_bignum[1] = number >> 16;
446 /* Again, c is char after number, input_line_pointer->after c. */
448 if (num_little_digits > SIZE_OF_LARGE_NUMBER - 1)
449 num_little_digits = SIZE_OF_LARGE_NUMBER - 1;
451 assert (num_little_digits >= 4);
453 if (num_little_digits != 8)
454 as_bad (_("A bignum with underscores must have exactly 4 words."));
456 /* We might have some leading zeros. These can be trimmed to give
457 * us a change to fit this constant into a small number.
459 while (generic_bignum[num_little_digits-1] == 0 && num_little_digits > 1)
462 if (num_little_digits <= 2)
464 /* will fit into 32 bits. */
465 number = generic_bignum_to_int32 ();
469 else if (num_little_digits <= 4)
471 /* Will fit into 64 bits. */
472 number = generic_bignum_to_int64 ();
479 number = num_little_digits; /* number of littlenums in the bignum. */
485 * we saw a lot of digits. manufacture a bignum the hard way.
487 LITTLENUM_TYPE *leader; /*->high order littlenum of the bignum. */
488 LITTLENUM_TYPE *pointer; /*->littlenum we are frobbing now. */
491 leader = generic_bignum;
492 generic_bignum[0] = 0;
493 generic_bignum[1] = 0;
494 generic_bignum[2] = 0;
495 generic_bignum[3] = 0;
496 input_line_pointer = start; /*->1st digit. */
497 c = *input_line_pointer++;
499 (carry = hex_value (c)) < maxdig;
500 c = *input_line_pointer++)
502 for (pointer = generic_bignum;
508 work = carry + radix * *pointer;
509 *pointer = work & LITTLENUM_MASK;
510 carry = work >> LITTLENUM_NUMBER_OF_BITS;
514 if (leader < generic_bignum + SIZE_OF_LARGE_NUMBER - 1)
516 /* room to grow a longer bignum. */
521 /* again, c is char after number, */
522 /* input_line_pointer->after c. */
523 know (LITTLENUM_NUMBER_OF_BITS == 16);
524 if (leader < generic_bignum + 2)
526 /* will fit into 32 bits. */
527 number = generic_bignum_to_int32 ();
531 else if (leader < generic_bignum + 4)
533 /* Will fit into 64 bits. */
534 number = generic_bignum_to_int64 ();
540 number = leader - generic_bignum + 1; /* number of littlenums in the bignum. */
544 if ((NUMBERS_WITH_SUFFIX || flag_m68k_mri)
546 && input_line_pointer - 1 == suffix)
547 c = *input_line_pointer++;
552 * here with number, in correct radix. c is the next char.
553 * note that unlike un*x, we allow "011f" "0x9f" to
554 * both mean the same as the (conventional) "9f". this is simply easier
555 * than checking for strict canonical form. syntax sux!
558 if (LOCAL_LABELS_FB && c == 'b')
561 * backward ref to local label.
562 * because it is backward, expect it to be defined.
564 /* Construct a local label. */
565 name = fb_label_name ((int) number, 0);
567 /* seen before, or symbol is defined: ok */
568 symbolP = symbol_find (name);
569 if ((symbolP != NULL) && (S_IS_DEFINED (symbolP)))
571 /* local labels are never absolute. don't waste time
572 checking absoluteness. */
573 know (SEG_NORMAL (S_GET_SEGMENT (symbolP)));
575 expressionP->X_op = O_symbol;
576 expressionP->X_add_symbol = symbolP;
580 /* either not seen or not defined. */
581 /* @@ Should print out the original string instead of
582 the parsed number. */
583 as_bad (_("backw. ref to unknown label \"%d:\", 0 assumed."),
585 expressionP->X_op = O_constant;
588 expressionP->X_add_number = 0;
590 else if (LOCAL_LABELS_FB && c == 'f')
593 * forward reference. expect symbol to be undefined or
594 * unknown. undefined: seen it before. unknown: never seen
596 * construct a local label name, then an undefined symbol.
597 * don't create a xseg frag for it: caller may do that.
598 * just return it as never seen before.
600 name = fb_label_name ((int) number, 1);
601 symbolP = symbol_find_or_make (name);
602 /* we have no need to check symbol properties. */
603 #ifndef many_segments
604 /* since "know" puts its arg into a "string", we
605 can't have newlines in the argument. */
606 know (S_GET_SEGMENT (symbolP) == undefined_section || S_GET_SEGMENT (symbolP) == text_section || S_GET_SEGMENT (symbolP) == data_section);
608 expressionP->X_op = O_symbol;
609 expressionP->X_add_symbol = symbolP;
610 expressionP->X_add_number = 0;
612 else if (LOCAL_LABELS_DOLLAR && c == '$')
614 /* If the dollar label is *currently* defined, then this is just
615 another reference to it. If it is not *currently* defined,
616 then this is a fresh instantiation of that number, so create
619 if (dollar_label_defined ((long) number))
621 name = dollar_label_name ((long) number, 0);
622 symbolP = symbol_find (name);
623 know (symbolP != NULL);
627 name = dollar_label_name ((long) number, 1);
628 symbolP = symbol_find_or_make (name);
631 expressionP->X_op = O_symbol;
632 expressionP->X_add_symbol = symbolP;
633 expressionP->X_add_number = 0;
637 expressionP->X_op = O_constant;
638 #ifdef TARGET_WORD_SIZE
639 /* Sign extend NUMBER. */
640 number |= (-(number >> (TARGET_WORD_SIZE - 1))) << (TARGET_WORD_SIZE - 1);
642 expressionP->X_add_number = number;
643 input_line_pointer--; /* restore following character. */
644 } /* really just a number */
648 /* not a small number */
649 expressionP->X_op = O_big;
650 expressionP->X_add_number = number; /* number of littlenums */
651 input_line_pointer--; /*->char following number. */
655 /* Parse an MRI multi character constant. */
658 mri_char_constant (expressionP)
659 expressionS *expressionP;
663 if (*input_line_pointer == '\''
664 && input_line_pointer[1] != '\'')
666 expressionP->X_op = O_constant;
667 expressionP->X_add_number = 0;
671 /* In order to get the correct byte ordering, we must build the
672 number in reverse. */
673 for (i = SIZE_OF_LARGE_NUMBER - 1; i >= 0; i--)
677 generic_bignum[i] = 0;
678 for (j = 0; j < CHARS_PER_LITTLENUM; j++)
680 if (*input_line_pointer == '\'')
682 if (input_line_pointer[1] != '\'')
684 ++input_line_pointer;
686 generic_bignum[i] <<= 8;
687 generic_bignum[i] += *input_line_pointer;
688 ++input_line_pointer;
691 if (i < SIZE_OF_LARGE_NUMBER - 1)
693 /* If there is more than one littlenum, left justify the
694 last one to make it match the earlier ones. If there is
695 only one, we can just use the value directly. */
696 for (; j < CHARS_PER_LITTLENUM; j++)
697 generic_bignum[i] <<= 8;
700 if (*input_line_pointer == '\''
701 && input_line_pointer[1] != '\'')
707 as_bad (_("Character constant too large"));
716 c = SIZE_OF_LARGE_NUMBER - i;
717 for (j = 0; j < c; j++)
718 generic_bignum[j] = generic_bignum[i + j];
722 know (LITTLENUM_NUMBER_OF_BITS == 16);
725 expressionP->X_op = O_big;
726 expressionP->X_add_number = i;
730 expressionP->X_op = O_constant;
732 expressionP->X_add_number = generic_bignum[0] & LITTLENUM_MASK;
734 expressionP->X_add_number =
735 (((generic_bignum[1] & LITTLENUM_MASK)
736 << LITTLENUM_NUMBER_OF_BITS)
737 | (generic_bignum[0] & LITTLENUM_MASK));
740 /* Skip the final closing quote. */
741 ++input_line_pointer;
744 /* Return an expression representing the current location. This
745 handles the magic symbol `.'. */
748 current_location (expressionp)
749 expressionS *expressionp;
751 if (now_seg == absolute_section)
753 expressionp->X_op = O_constant;
754 expressionp->X_add_number = abs_section_offset;
760 symbolp = symbol_new (FAKE_LABEL_NAME, now_seg,
761 (valueT) frag_now_fix (),
763 expressionp->X_op = O_symbol;
764 expressionp->X_add_symbol = symbolp;
765 expressionp->X_add_number = 0;
770 * Summary of operand().
772 * in: Input_line_pointer points to 1st char of operand, which may
775 * out: A expressionS.
776 * The operand may have been empty: in this case X_op == O_absent.
777 * Input_line_pointer->(next non-blank) char after operand.
781 operand (expressionP)
782 expressionS *expressionP;
785 symbolS *symbolP; /* points to symbol */
786 char *name; /* points to name of symbol */
789 /* All integers are regarded as unsigned unless they are negated.
790 This is because the only thing which cares whether a number is
791 unsigned is the code in emit_expr which extends constants into
792 bignums. It should only sign extend negative numbers, so that
793 something like ``.quad 0x80000000'' is not sign extended even
794 though it appears negative if valueT is 32 bits. */
795 expressionP->X_unsigned = 1;
797 /* digits, assume it is a bignum. */
799 SKIP_WHITESPACE (); /* leading whitespace is part of operand. */
800 c = *input_line_pointer++; /* input_line_pointer->past char in c. */
802 if (is_end_of_line[(unsigned char) c])
816 input_line_pointer--;
818 integer_constant ((NUMBERS_WITH_SUFFIX || flag_m68k_mri)
823 #ifdef LITERAL_PREFIXDOLLAR_HEX
825 integer_constant (16, expressionP);
830 /* non-decimal radix */
832 if (NUMBERS_WITH_SUFFIX || flag_m68k_mri)
836 /* Check for a hex constant. */
837 for (s = input_line_pointer; hex_p (*s); s++)
839 if (*s == 'h' || *s == 'H')
841 --input_line_pointer;
842 integer_constant (0, expressionP);
846 c = *input_line_pointer;
855 if (NUMBERS_WITH_SUFFIX || flag_m68k_mri)
857 integer_constant (0, expressionP);
863 if (c && strchr (FLT_CHARS, c))
865 input_line_pointer++;
866 floating_constant (expressionP);
867 expressionP->X_add_number =
868 - (isupper ((unsigned char) c) ? tolower (c) : c);
872 /* The string was only zero */
873 expressionP->X_op = O_constant;
874 expressionP->X_add_number = 0;
883 input_line_pointer++;
884 integer_constant (16, expressionP);
888 if (LOCAL_LABELS_FB && ! (flag_m68k_mri || NUMBERS_WITH_SUFFIX))
890 /* This code used to check for '+' and '-' here, and, in
891 some conditions, fall through to call
892 integer_constant. However, that didn't make sense,
893 as integer_constant only accepts digits. */
894 /* Some of our code elsewhere does permit digits greater
895 than the expected base; for consistency, do the same
897 if (input_line_pointer[1] < '0'
898 || input_line_pointer[1] > '9')
900 /* Parse this as a back reference to label 0. */
901 input_line_pointer--;
902 integer_constant (10, expressionP);
905 /* Otherwise, parse this as a binary number. */
909 input_line_pointer++;
910 if (flag_m68k_mri || NUMBERS_WITH_SUFFIX)
912 integer_constant (2, expressionP);
923 integer_constant ((flag_m68k_mri || NUMBERS_WITH_SUFFIX)
931 /* If it says "0f" and it could possibly be a floating point
932 number, make it one. Otherwise, make it a local label,
933 and try to deal with parsing the rest later. */
934 if (!input_line_pointer[1]
935 || (is_end_of_line[0xff & input_line_pointer[1]])
936 || strchr (FLT_CHARS, 'f') == NULL)
939 char *cp = input_line_pointer + 1;
940 int r = atof_generic (&cp, ".", EXP_CHARS,
941 &generic_floating_point_number);
945 case ERROR_EXPONENT_OVERFLOW:
946 if (*cp == 'f' || *cp == 'b')
947 /* looks like a difference expression */
949 else if (cp == input_line_pointer + 1)
950 /* No characters has been accepted -- looks like
956 as_fatal (_("expr.c(operand): bad atof_generic return val %d"),
961 /* Okay, now we've sorted it out. We resume at one of these
962 two labels, depending on what we've decided we're probably
965 input_line_pointer--;
966 integer_constant (10, expressionP);
976 if (flag_m68k_mri || NUMBERS_WITH_SUFFIX)
978 integer_constant (0, expressionP);
988 input_line_pointer++;
989 floating_constant (expressionP);
990 expressionP->X_add_number =
991 - (isupper ((unsigned char) c) ? tolower (c) : c);
995 if (LOCAL_LABELS_DOLLAR)
997 integer_constant (10, expressionP);
1007 #ifndef NEED_INDEX_OPERATOR
1010 /* didn't begin with digit & not a name */
1011 segment = expression (expressionP);
1012 /* Expression() will pass trailing whitespace */
1013 if ((c == '(' && *input_line_pointer != ')')
1014 || (c == '[' && *input_line_pointer != ']'))
1016 #ifdef RELAX_PAREN_GROUPING
1019 as_bad (_("Missing '%c' assumed"), c == '(' ? ')' : ']');
1022 input_line_pointer++;
1024 /* here with input_line_pointer->char after "(...)" */
1029 if (! flag_m68k_mri || *input_line_pointer != '\'')
1031 as_bad (_("EBCDIC constants are not supported"));
1034 if (! flag_m68k_mri || *input_line_pointer != '\'')
1036 ++input_line_pointer;
1040 if (! flag_m68k_mri)
1042 /* Warning: to conform to other people's assemblers NO
1043 ESCAPEMENT is permitted for a single quote. The next
1044 character, parity errors and all, is taken as the value
1045 of the operand. VERY KINKY. */
1046 expressionP->X_op = O_constant;
1047 expressionP->X_add_number = *input_line_pointer++;
1051 mri_char_constant (expressionP);
1055 (void) operand (expressionP);
1060 /* Double quote is the bitwise not operator in MRI mode. */
1061 if (! flag_m68k_mri)
1066 /* ~ is permitted to start a label on the Delta. */
1067 if (is_name_beginner (c))
1072 operand (expressionP);
1073 if (expressionP->X_op == O_constant)
1075 /* input_line_pointer -> char after operand */
1078 expressionP->X_add_number = - expressionP->X_add_number;
1079 /* Notice: '-' may overflow: no warning is given. This is
1080 compatible with other people's assemblers. Sigh. */
1081 expressionP->X_unsigned = 0;
1083 else if (c == '~' || c == '"')
1084 expressionP->X_add_number = ~ expressionP->X_add_number;
1086 expressionP->X_add_number = ! expressionP->X_add_number;
1088 else if (expressionP->X_op != O_illegal
1089 && expressionP->X_op != O_absent)
1091 expressionP->X_add_symbol = make_expr_symbol (expressionP);
1093 expressionP->X_op = O_uminus;
1094 else if (c == '~' || c == '"')
1095 expressionP->X_op = O_bit_not;
1097 expressionP->X_op = O_logical_not;
1098 expressionP->X_add_number = 0;
1101 as_warn (_("Unary operator %c ignored because bad operand follows"),
1106 #if defined (DOLLAR_DOT) || defined (TC_M68K)
1108 /* $ is the program counter when in MRI mode, or when DOLLAR_DOT
1111 if (! flag_m68k_mri)
1114 if (flag_m68k_mri && hex_p (*input_line_pointer))
1116 /* In MRI mode, $ is also used as the prefix for a
1117 hexadecimal constant. */
1118 integer_constant (16, expressionP);
1122 if (is_part_of_name (*input_line_pointer))
1125 current_location (expressionP);
1130 if (!is_part_of_name (*input_line_pointer))
1132 current_location (expressionP);
1135 else if ((strncasecmp (input_line_pointer, "startof.", 8) == 0
1136 && ! is_part_of_name (input_line_pointer[8]))
1137 || (strncasecmp (input_line_pointer, "sizeof.", 7) == 0
1138 && ! is_part_of_name (input_line_pointer[7])))
1142 start = (input_line_pointer[1] == 't'
1143 || input_line_pointer[1] == 'T');
1144 input_line_pointer += start ? 8 : 7;
1146 if (*input_line_pointer != '(')
1147 as_bad (_("syntax error in .startof. or .sizeof."));
1152 ++input_line_pointer;
1154 name = input_line_pointer;
1155 c = get_symbol_end ();
1157 buf = (char *) xmalloc (strlen (name) + 10);
1159 sprintf (buf, ".startof.%s", name);
1161 sprintf (buf, ".sizeof.%s", name);
1162 symbolP = symbol_make (buf);
1165 expressionP->X_op = O_symbol;
1166 expressionP->X_add_symbol = symbolP;
1167 expressionP->X_add_number = 0;
1169 *input_line_pointer = c;
1171 if (*input_line_pointer != ')')
1172 as_bad (_("syntax error in .startof. or .sizeof."));
1174 ++input_line_pointer;
1185 /* can't imagine any other kind of operand */
1186 expressionP->X_op = O_absent;
1187 input_line_pointer--;
1192 if (! flag_m68k_mri)
1194 integer_constant (2, expressionP);
1198 if (! flag_m68k_mri)
1200 integer_constant (8, expressionP);
1204 if (! flag_m68k_mri)
1207 /* In MRI mode, this is a floating point constant represented
1208 using hexadecimal digits. */
1210 ++input_line_pointer;
1211 integer_constant (16, expressionP);
1215 if (! flag_m68k_mri || is_part_of_name (*input_line_pointer))
1218 current_location (expressionP);
1226 if (is_name_beginner (c)) /* here if did not begin with a digit */
1229 * Identifier begins here.
1230 * This is kludged for speed, so code is repeated.
1233 name = --input_line_pointer;
1234 c = get_symbol_end ();
1236 #ifdef md_parse_name
1237 /* This is a hook for the backend to parse certain names
1238 specially in certain contexts. If a name always has a
1239 specific value, it can often be handled by simply
1240 entering it in the symbol table. */
1241 if (md_parse_name (name, expressionP))
1243 *input_line_pointer = c;
1249 /* The MRI i960 assembler permits
1251 FIXME: This should use md_parse_name. */
1253 && (strcasecmp (name, "sizeof") == 0
1254 || strcasecmp (name, "startof") == 0))
1259 start = (name[1] == 't'
1262 *input_line_pointer = c;
1265 name = input_line_pointer;
1266 c = get_symbol_end ();
1268 buf = (char *) xmalloc (strlen (name) + 10);
1270 sprintf (buf, ".startof.%s", name);
1272 sprintf (buf, ".sizeof.%s", name);
1273 symbolP = symbol_make (buf);
1276 expressionP->X_op = O_symbol;
1277 expressionP->X_add_symbol = symbolP;
1278 expressionP->X_add_number = 0;
1280 *input_line_pointer = c;
1287 symbolP = symbol_find_or_make (name);
1289 /* If we have an absolute symbol or a reg, then we know its
1291 segment = S_GET_SEGMENT (symbolP);
1292 if (segment == absolute_section)
1294 expressionP->X_op = O_constant;
1295 expressionP->X_add_number = S_GET_VALUE (symbolP);
1297 else if (segment == reg_section)
1299 expressionP->X_op = O_register;
1300 expressionP->X_add_number = S_GET_VALUE (symbolP);
1304 expressionP->X_op = O_symbol;
1305 expressionP->X_add_symbol = symbolP;
1306 expressionP->X_add_number = 0;
1308 *input_line_pointer = c;
1312 /* Let the target try to parse it. Success is indicated by changing
1313 the X_op field to something other than O_absent and pointing
1314 input_line_pointer passed the expression. If it can't parse the
1315 expression, X_op and input_line_pointer should be unchanged. */
1316 expressionP->X_op = O_absent;
1317 --input_line_pointer;
1318 md_operand (expressionP);
1319 if (expressionP->X_op == O_absent)
1321 ++input_line_pointer;
1322 as_bad (_("Bad expression"));
1323 expressionP->X_op = O_constant;
1324 expressionP->X_add_number = 0;
1331 * It is more 'efficient' to clean up the expressionS when they are created.
1332 * Doing it here saves lines of code.
1334 clean_up_expression (expressionP);
1335 SKIP_WHITESPACE (); /*->1st char after operand. */
1336 know (*input_line_pointer != ' ');
1338 /* The PA port needs this information. */
1339 if (expressionP->X_add_symbol)
1340 symbol_mark_used (expressionP->X_add_symbol);
1342 switch (expressionP->X_op)
1345 return absolute_section;
1347 return S_GET_SEGMENT (expressionP->X_add_symbol);
1353 /* Internal. Simplify a struct expression for use by expr() */
1356 * In: address of a expressionS.
1357 * The X_op field of the expressionS may only take certain values.
1358 * Elsewise we waste time special-case testing. Sigh. Ditto SEG_ABSENT.
1359 * Out: expressionS may have been modified:
1360 * 'foo-foo' symbol references cancelled to 0,
1361 * which changes X_op from O_subtract to O_constant.
1362 * Unused fields zeroed to help expr().
1366 clean_up_expression (expressionP)
1367 expressionS *expressionP;
1369 switch (expressionP->X_op)
1373 expressionP->X_add_number = 0;
1378 expressionP->X_add_symbol = NULL;
1383 expressionP->X_op_symbol = NULL;
1386 if (expressionP->X_op_symbol == expressionP->X_add_symbol
1387 || ((symbol_get_frag (expressionP->X_op_symbol)
1388 == symbol_get_frag (expressionP->X_add_symbol))
1389 && SEG_NORMAL (S_GET_SEGMENT (expressionP->X_add_symbol))
1390 && (S_GET_VALUE (expressionP->X_op_symbol)
1391 == S_GET_VALUE (expressionP->X_add_symbol))))
1393 addressT diff = (S_GET_VALUE (expressionP->X_add_symbol)
1394 - S_GET_VALUE (expressionP->X_op_symbol));
1396 expressionP->X_op = O_constant;
1397 expressionP->X_add_symbol = NULL;
1398 expressionP->X_op_symbol = NULL;
1399 expressionP->X_add_number += diff;
1407 /* Expression parser. */
1410 * We allow an empty expression, and just assume (absolute,0) silently.
1411 * Unary operators and parenthetical expressions are treated as operands.
1412 * As usual, Q==quantity==operand, O==operator, X==expression mnemonics.
1414 * We used to do a aho/ullman shift-reduce parser, but the logic got so
1415 * warped that I flushed it and wrote a recursive-descent parser instead.
1416 * Now things are stable, would anybody like to write a fast parser?
1417 * Most expressions are either register (which does not even reach here)
1418 * or 1 symbol. Then "symbol+constant" and "symbol-symbol" are common.
1419 * So I guess it doesn't really matter how inefficient more complex expressions
1422 * After expr(RANK,resultP) input_line_pointer->operator of rank <= RANK.
1423 * Also, we have consumed any leading or trailing spaces (operand does that)
1424 * and done all intervening operators.
1426 * This returns the segment of the result, which will be
1427 * absolute_section or the segment of a symbol.
1431 #define __ O_illegal
1433 static const operatorT op_encoding[256] =
1434 { /* maps ASCII->operators */
1436 __, __, __, __, __, __, __, __, __, __, __, __, __, __, __, __,
1437 __, __, __, __, __, __, __, __, __, __, __, __, __, __, __, __,
1439 __, O_bit_or_not, __, __, __, O_modulus, O_bit_and, __,
1440 __, __, O_multiply, O_add, __, O_subtract, __, O_divide,
1441 __, __, __, __, __, __, __, __,
1442 __, __, __, __, O_lt, __, O_gt, __,
1443 __, __, __, __, __, __, __, __,
1444 __, __, __, __, __, __, __, __,
1445 __, __, __, __, __, __, __, __,
1447 #ifdef NEED_INDEX_OPERATOR
1452 __, __, O_bit_exclusive_or, __,
1453 __, __, __, __, __, __, __, __,
1454 __, __, __, __, __, __, __, __,
1455 __, __, __, __, __, __, __, __,
1456 __, __, __, __, O_bit_inclusive_or, __, __, __,
1458 __, __, __, __, __, __, __, __, __, __, __, __, __, __, __, __,
1459 __, __, __, __, __, __, __, __, __, __, __, __, __, __, __, __,
1460 __, __, __, __, __, __, __, __, __, __, __, __, __, __, __, __,
1461 __, __, __, __, __, __, __, __, __, __, __, __, __, __, __, __,
1462 __, __, __, __, __, __, __, __, __, __, __, __, __, __, __, __,
1463 __, __, __, __, __, __, __, __, __, __, __, __, __, __, __, __,
1464 __, __, __, __, __, __, __, __, __, __, __, __, __, __, __, __,
1465 __, __, __, __, __, __, __, __, __, __, __, __, __, __, __, __
1471 * 0 operand, (expression)
1476 * 5 used for * / % in MRI mode
1481 static operator_rankT op_rank[] =
1487 0, /* O_symbol_rva */
1492 9, /* O_logical_not */
1496 8, /* O_left_shift */
1497 8, /* O_right_shift */
1498 7, /* O_bit_inclusive_or */
1499 7, /* O_bit_or_not */
1500 7, /* O_bit_exclusive_or */
1510 3, /* O_logical_and */
1511 2, /* O_logical_or */
1531 /* Unfortunately, in MRI mode for the m68k, multiplication and
1532 division have lower precedence than the bit wise operators. This
1533 function sets the operator precedences correctly for the current
1534 mode. Also, MRI uses a different bit_not operator, and this fixes
1537 #define STANDARD_MUL_PRECEDENCE (7)
1538 #define MRI_MUL_PRECEDENCE (5)
1541 expr_set_precedence ()
1545 op_rank[O_multiply] = MRI_MUL_PRECEDENCE;
1546 op_rank[O_divide] = MRI_MUL_PRECEDENCE;
1547 op_rank[O_modulus] = MRI_MUL_PRECEDENCE;
1551 op_rank[O_multiply] = STANDARD_MUL_PRECEDENCE;
1552 op_rank[O_divide] = STANDARD_MUL_PRECEDENCE;
1553 op_rank[O_modulus] = STANDARD_MUL_PRECEDENCE;
1557 /* Initialize the expression parser. */
1562 expr_set_precedence ();
1564 /* Verify that X_op field is wide enough. */
1568 assert (e.X_op == O_max);
1572 /* Return the encoding for the operator at INPUT_LINE_POINTER.
1573 Advance INPUT_LINE_POINTER to the last character in the operator
1574 (i.e., don't change it for a single character operator). */
1576 static inline operatorT
1582 c = *input_line_pointer & 0xff;
1584 if (is_end_of_line[c])
1590 return op_encoding[c];
1593 switch (input_line_pointer[1])
1596 return op_encoding[c];
1607 ++input_line_pointer;
1611 if (input_line_pointer[1] != '=')
1612 return op_encoding[c];
1614 ++input_line_pointer;
1618 switch (input_line_pointer[1])
1621 return op_encoding[c];
1623 ret = O_right_shift;
1629 ++input_line_pointer;
1633 /* We accept !! as equivalent to ^ for MRI compatibility. */
1634 if (input_line_pointer[1] != '!')
1637 return O_bit_inclusive_or;
1638 return op_encoding[c];
1640 ++input_line_pointer;
1641 return O_bit_exclusive_or;
1644 if (input_line_pointer[1] != '|')
1645 return op_encoding[c];
1647 ++input_line_pointer;
1648 return O_logical_or;
1651 if (input_line_pointer[1] != '&')
1652 return op_encoding[c];
1654 ++input_line_pointer;
1655 return O_logical_and;
1661 /* Parse an expression. */
1664 expr (rankarg, resultP)
1665 int rankarg; /* Larger # is higher rank. */
1666 expressionS *resultP; /* Deliver result here. */
1668 operator_rankT rank = (operator_rankT) rankarg;
1676 retval = operand (resultP);
1678 know (*input_line_pointer != ' '); /* Operand() gobbles spaces. */
1680 op_left = operator ();
1681 while (op_left != O_illegal && op_rank[(int) op_left] > rank)
1685 input_line_pointer++; /*->after 1st character of operator. */
1687 rightseg = expr (op_rank[(int) op_left], &right);
1688 if (right.X_op == O_absent)
1690 as_warn (_("missing operand; zero assumed"));
1691 right.X_op = O_constant;
1692 right.X_add_number = 0;
1693 right.X_add_symbol = NULL;
1694 right.X_op_symbol = NULL;
1697 know (*input_line_pointer != ' ');
1699 if (op_left == O_index)
1701 if (*input_line_pointer != ']')
1702 as_bad ("missing right bracket");
1705 ++input_line_pointer;
1710 if (retval == undefined_section)
1712 if (SEG_NORMAL (rightseg))
1715 else if (! SEG_NORMAL (retval))
1717 else if (SEG_NORMAL (rightseg)
1718 && retval != rightseg
1720 && op_left != O_subtract
1723 as_bad (_("operation combines symbols in different segments"));
1725 op_right = operator ();
1727 know (op_right == O_illegal || op_rank[(int) op_right] <= op_rank[(int) op_left]);
1728 know ((int) op_left >= (int) O_multiply
1729 && (int) op_left <= (int) O_logical_or);
1731 /* input_line_pointer->after right-hand quantity. */
1732 /* left-hand quantity in resultP */
1733 /* right-hand quantity in right. */
1734 /* operator in op_left. */
1736 if (resultP->X_op == O_big)
1738 if (resultP->X_add_number > 0)
1739 as_warn (_("left operand is a bignum; integer 0 assumed"));
1741 as_warn (_("left operand is a float; integer 0 assumed"));
1742 resultP->X_op = O_constant;
1743 resultP->X_add_number = 0;
1744 resultP->X_add_symbol = NULL;
1745 resultP->X_op_symbol = NULL;
1747 if (right.X_op == O_big)
1749 if (right.X_add_number > 0)
1750 as_warn (_("right operand is a bignum; integer 0 assumed"));
1752 as_warn (_("right operand is a float; integer 0 assumed"));
1753 right.X_op = O_constant;
1754 right.X_add_number = 0;
1755 right.X_add_symbol = NULL;
1756 right.X_op_symbol = NULL;
1759 /* Optimize common cases. */
1760 #ifdef md_optimize_expr
1761 if (md_optimize_expr (resultP, op_left, &right))
1767 if (op_left == O_add && right.X_op == O_constant)
1770 resultP->X_add_number += right.X_add_number;
1772 /* This case comes up in PIC code. */
1773 else if (op_left == O_subtract
1774 && right.X_op == O_symbol
1775 && resultP->X_op == O_symbol
1776 && (symbol_get_frag (right.X_add_symbol)
1777 == symbol_get_frag (resultP->X_add_symbol))
1778 && SEG_NORMAL (S_GET_SEGMENT (right.X_add_symbol)))
1781 resultP->X_add_number -= right.X_add_number;
1782 resultP->X_add_number += (S_GET_VALUE (resultP->X_add_symbol)
1783 - S_GET_VALUE (right.X_add_symbol));
1784 resultP->X_op = O_constant;
1785 resultP->X_add_symbol = 0;
1787 else if (op_left == O_subtract && right.X_op == O_constant)
1790 resultP->X_add_number -= right.X_add_number;
1792 else if (op_left == O_add && resultP->X_op == O_constant)
1795 resultP->X_op = right.X_op;
1796 resultP->X_add_symbol = right.X_add_symbol;
1797 resultP->X_op_symbol = right.X_op_symbol;
1798 resultP->X_add_number += right.X_add_number;
1801 else if (resultP->X_op == O_constant && right.X_op == O_constant)
1803 /* Constant OP constant. */
1804 offsetT v = right.X_add_number;
1805 if (v == 0 && (op_left == O_divide || op_left == O_modulus))
1807 as_warn (_("division by zero"));
1813 case O_multiply: resultP->X_add_number *= v; break;
1814 case O_divide: resultP->X_add_number /= v; break;
1815 case O_modulus: resultP->X_add_number %= v; break;
1816 case O_left_shift: resultP->X_add_number <<= v; break;
1818 /* We always use unsigned shifts, to avoid relying on
1819 characteristics of the compiler used to compile gas. */
1820 resultP->X_add_number =
1821 (offsetT) ((valueT) resultP->X_add_number >> (valueT) v);
1823 case O_bit_inclusive_or: resultP->X_add_number |= v; break;
1824 case O_bit_or_not: resultP->X_add_number |= ~v; break;
1825 case O_bit_exclusive_or: resultP->X_add_number ^= v; break;
1826 case O_bit_and: resultP->X_add_number &= v; break;
1827 case O_add: resultP->X_add_number += v; break;
1828 case O_subtract: resultP->X_add_number -= v; break;
1830 resultP->X_add_number =
1831 resultP->X_add_number == v ? ~ (offsetT) 0 : 0;
1834 resultP->X_add_number =
1835 resultP->X_add_number != v ? ~ (offsetT) 0 : 0;
1838 resultP->X_add_number =
1839 resultP->X_add_number < v ? ~ (offsetT) 0 : 0;
1842 resultP->X_add_number =
1843 resultP->X_add_number <= v ? ~ (offsetT) 0 : 0;
1846 resultP->X_add_number =
1847 resultP->X_add_number >= v ? ~ (offsetT) 0 : 0;
1850 resultP->X_add_number =
1851 resultP->X_add_number > v ? ~ (offsetT) 0 : 0;
1854 resultP->X_add_number = resultP->X_add_number && v;
1857 resultP->X_add_number = resultP->X_add_number || v;
1861 else if (resultP->X_op == O_symbol
1862 && right.X_op == O_symbol
1863 && (op_left == O_add
1864 || op_left == O_subtract
1865 || (resultP->X_add_number == 0
1866 && right.X_add_number == 0)))
1868 /* Symbol OP symbol. */
1869 resultP->X_op = op_left;
1870 resultP->X_op_symbol = right.X_add_symbol;
1871 if (op_left == O_add)
1872 resultP->X_add_number += right.X_add_number;
1873 else if (op_left == O_subtract)
1874 resultP->X_add_number -= right.X_add_number;
1878 /* The general case. */
1879 resultP->X_add_symbol = make_expr_symbol (resultP);
1880 resultP->X_op_symbol = make_expr_symbol (&right);
1881 resultP->X_op = op_left;
1882 resultP->X_add_number = 0;
1883 resultP->X_unsigned = 1;
1887 } /* While next operator is >= this rank. */
1889 /* The PA port needs this information. */
1890 if (resultP->X_add_symbol)
1891 symbol_mark_used (resultP->X_add_symbol);
1893 return resultP->X_op == O_constant ? absolute_section : retval;
1899 * This lives here because it belongs equally in expr.c & read.c.
1900 * Expr.c is just a branch office read.c anyway, and putting it
1901 * here lessens the crowd at read.c.
1903 * Assume input_line_pointer is at start of symbol name.
1904 * Advance input_line_pointer past symbol name.
1905 * Turn that character into a '\0', returning its former value.
1906 * This allows a string compare (RMS wants symbol names to be strings)
1907 * of the symbol name.
1908 * There will always be a char following symbol name, because all good
1909 * lines end in end-of-line.
1916 /* We accept \001 in a name in case this is being called with a
1917 constructed string. */
1918 if (is_name_beginner (c = *input_line_pointer++) || c == '\001')
1920 while (is_part_of_name (c = *input_line_pointer++)
1923 if (is_name_ender (c))
1924 c = *input_line_pointer++;
1926 *--input_line_pointer = 0;
1932 get_single_number ()
1936 return exp.X_add_number;