1 /* expr.c -operands, expressions-
2 Copyright (C) 1987, 1990, 1991, 1992, 1993 Free Software Foundation, Inc.
4 This file is part of GAS, the GNU Assembler.
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)
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.
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. */
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.
34 static void clean_up_expression PARAMS ((expressionS * expressionP));
35 static symbolS *make_expr_symbol PARAMS ((expressionS * expressionP));
37 extern const char EXP_CHARS[], FLT_CHARS[];
39 /* Build a dummy symbol to hold a complex expression. This is how we
40 build expressions up out of other expressions. The symbol is put
41 into the fake section expr_section. */
44 make_expr_symbol (expressionP)
45 expressionS *expressionP;
50 /* FIXME: This should be something which decode_local_label_name
52 #ifdef DOT_LABEL_PREFIX
57 /* Putting constant symbols in absolute_section rather than
58 expr_section is convenient for the old a.out code, for which
59 S_GET_SEGMENT does not always retrieve the value put in by
61 symbolP = symbol_new (fake,
62 (expressionP->X_op == O_constant
65 0, &zero_address_frag);
66 symbolP->sy_value = *expressionP;
71 * Build any floating-point literal here.
72 * Also build any bignum literal here.
75 /* Seems atof_machine can backscan through generic_bignum and hit whatever
76 happens to be loaded before it in memory. And its way too complicated
77 for me to fix right. Thus a hack. JF: Just make generic_bignum bigger,
78 and never write into the early words, thus they'll always be zero.
79 I hate Dean's floating-point code. Bleh. */
80 LITTLENUM_TYPE generic_bignum[SIZE_OF_LARGE_NUMBER + 6];
81 FLONUM_TYPE generic_floating_point_number =
83 &generic_bignum[6], /* low (JF: Was 0) */
84 &generic_bignum[SIZE_OF_LARGE_NUMBER + 6 - 1], /* high JF: (added +6) */
89 /* If nonzero, we've been asked to assemble nan, +inf or -inf */
90 int generic_floating_point_magic;
93 floating_constant (expressionP)
94 expressionS *expressionP;
96 /* input_line_pointer->*/
97 /* floating-point constant. */
100 error_code = atof_generic
101 (&input_line_pointer, ".", EXP_CHARS,
102 &generic_floating_point_number);
106 if (error_code == ERROR_EXPONENT_OVERFLOW)
108 as_bad ("bad floating-point constant: exponent overflow, probably assembling junk");
112 as_bad ("bad floating-point constant: unknown error code=%d.", error_code);
115 expressionP->X_op = O_big;
116 /* input_line_pointer->just after constant, */
117 /* which may point to whitespace. */
118 expressionP->X_add_number = -1;
122 integer_constant (radix, expressionP)
124 expressionS *expressionP;
126 char *digit_2; /*->2nd digit of number. */
129 valueT number; /* offset or (absolute) value */
130 short int digit; /* value of next digit in current radix */
131 short int maxdig = 0;/* highest permitted digit value. */
132 int too_many_digits = 0; /* if we see >= this number of */
133 char *name; /* points to name of symbol */
134 symbolS *symbolP; /* points to symbol */
136 int small; /* true if fits in 32 bits. */
137 extern const char hex_value[]; /* in hex_value.c */
139 /* May be bignum, or may fit in 32 bits. */
140 /* Most numbers fit into 32 bits, and we want this case to be fast.
141 so we pretend it will fit into 32 bits. If, after making up a 32
142 bit number, we realise that we have scanned more digits than
143 comfortably fit into 32 bits, we re-scan the digits coding them
144 into a bignum. For decimal and octal numbers we are
145 conservative: Some numbers may be assumed bignums when in fact
146 they do fit into 32 bits. Numbers of any radix can have excess
147 leading zeros: We strive to recognise this and cast them back
148 into 32 bits. We must check that the bignum really is more than
149 32 bits, and change it back to a 32-bit number if it fits. The
150 number we are looking for is expected to be positive, but if it
151 fits into 32 bits as an unsigned number, we let it be a 32-bit
152 number. The cavalier approach is for speed in ordinary cases. */
159 too_many_digits = 33;
163 too_many_digits = 11;
173 too_many_digits = 11;
175 c = *input_line_pointer;
176 input_line_pointer++;
177 digit_2 = input_line_pointer;
178 for (number = 0; (digit = hex_value[c]) < maxdig; c = *input_line_pointer++)
180 number = number * radix + digit;
182 /* c contains character after number. */
183 /* input_line_pointer->char after c. */
184 small = input_line_pointer - digit_2 < too_many_digits;
188 * we saw a lot of digits. manufacture a bignum the hard way.
190 LITTLENUM_TYPE *leader; /*->high order littlenum of the bignum. */
191 LITTLENUM_TYPE *pointer; /*->littlenum we are frobbing now. */
194 leader = generic_bignum;
195 generic_bignum[0] = 0;
196 generic_bignum[1] = 0;
197 /* we could just use digit_2, but lets be mnemonic. */
198 input_line_pointer = --digit_2; /*->1st digit. */
199 c = *input_line_pointer++;
200 for (; (carry = hex_value[c]) < maxdig; c = *input_line_pointer++)
202 for (pointer = generic_bignum;
208 work = carry + radix * *pointer;
209 *pointer = work & LITTLENUM_MASK;
210 carry = work >> LITTLENUM_NUMBER_OF_BITS;
214 if (leader < generic_bignum + SIZE_OF_LARGE_NUMBER - 1)
215 { /* room to grow a longer bignum. */
220 /* again, c is char after number, */
221 /* input_line_pointer->after c. */
222 know (sizeof (int) * 8 == 32);
223 know (LITTLENUM_NUMBER_OF_BITS == 16);
224 /* hence the constant "2" in the next line. */
225 if (leader < generic_bignum + 2)
226 { /* will fit into 32 bits. */
228 ((generic_bignum[1] & LITTLENUM_MASK) << LITTLENUM_NUMBER_OF_BITS)
229 | (generic_bignum[0] & LITTLENUM_MASK);
234 number = leader - generic_bignum + 1; /* number of littlenums in the bignum. */
240 * here with number, in correct radix. c is the next char.
241 * note that unlike un*x, we allow "011f" "0x9f" to
242 * both mean the same as the (conventional) "9f". this is simply easier
243 * than checking for strict canonical form. syntax sux!
249 #ifdef LOCAL_LABELS_FB
253 * backward ref to local label.
254 * because it is backward, expect it to be defined.
256 /* Construct a local label. */
257 name = fb_label_name ((int) number, 0);
259 /* seen before, or symbol is defined: ok */
260 symbolP = symbol_find (name);
261 if ((symbolP != NULL) && (S_IS_DEFINED (symbolP)))
264 /* local labels are never absolute. don't waste time
265 checking absoluteness. */
266 know (SEG_NORMAL (S_GET_SEGMENT (symbolP)));
268 expressionP->X_op = O_symbol;
269 expressionP->X_add_symbol = symbolP;
274 /* either not seen or not defined. */
275 /* @@ Should print out the original string instead of
276 the parsed number. */
277 as_bad ("backw. ref to unknown label \"%d:\", 0 assumed.",
279 expressionP->X_op = O_constant;
282 expressionP->X_add_number = 0;
289 * forward reference. expect symbol to be undefined or
290 * unknown. undefined: seen it before. unknown: never seen
292 * construct a local label name, then an undefined symbol.
293 * don't create a xseg frag for it: caller may do that.
294 * just return it as never seen before.
296 name = fb_label_name ((int) number, 1);
297 symbolP = symbol_find_or_make (name);
298 /* we have no need to check symbol properties. */
299 #ifndef many_segments
300 /* since "know" puts its arg into a "string", we
301 can't have newlines in the argument. */
302 know (S_GET_SEGMENT (symbolP) == undefined_section || S_GET_SEGMENT (symbolP) == text_section || S_GET_SEGMENT (symbolP) == data_section);
304 expressionP->X_op = O_symbol;
305 expressionP->X_add_symbol = symbolP;
306 expressionP->X_add_number = 0;
311 #endif /* LOCAL_LABELS_FB */
313 #ifdef LOCAL_LABELS_DOLLAR
318 /* If the dollar label is *currently* defined, then this is just
319 another reference to it. If it is not *currently* defined,
320 then this is a fresh instantiation of that number, so create
323 if (dollar_label_defined (number))
325 name = dollar_label_name (number, 0);
326 symbolP = symbol_find (name);
327 know (symbolP != NULL);
331 name = dollar_label_name (number, 1);
332 symbolP = symbol_find_or_make (name);
335 expressionP->X_op = O_symbol;
336 expressionP->X_add_symbol = symbolP;
337 expressionP->X_add_number = 0;
342 #endif /* LOCAL_LABELS_DOLLAR */
346 expressionP->X_op = O_constant;
347 expressionP->X_add_number = number;
348 input_line_pointer--; /* restore following character. */
350 } /* really just a number */
352 } /* switch on char following the number */
358 /* not a small number */
359 expressionP->X_op = O_big;
360 expressionP->X_add_number = number;
361 input_line_pointer--; /*->char following number. */
363 } /* integer_constant() */
367 * Summary of operand().
369 * in: Input_line_pointer points to 1st char of operand, which may
372 * out: A expressionS.
373 * The operand may have been empty: in this case X_op == O_absent.
374 * Input_line_pointer->(next non-blank) char after operand.
378 operand (expressionP)
379 expressionS *expressionP;
382 symbolS *symbolP; /* points to symbol */
383 char *name; /* points to name of symbol */
384 segT retval = absolute_section;
386 /* digits, assume it is a bignum. */
388 SKIP_WHITESPACE (); /* leading whitespace is part of operand. */
389 c = *input_line_pointer++; /* input_line_pointer->past char in c. */
395 integer_constant (2, expressionP);
398 integer_constant (8, expressionP);
401 integer_constant (16, expressionP);
413 input_line_pointer--;
415 integer_constant (10, expressionP);
419 /* non-decimal radix */
421 c = *input_line_pointer;
426 if (c && strchr (FLT_CHARS, c))
428 input_line_pointer++;
429 floating_constant (expressionP);
433 /* The string was only zero */
434 expressionP->X_op = O_constant;
435 expressionP->X_add_number = 0;
442 input_line_pointer++;
443 integer_constant (16, expressionP);
447 #ifdef LOCAL_LABELS_FB
448 /* FIXME: This seems to be nonsense. At this point we know
449 for sure that *input_line_pointer is 'b'. So why are we
450 checking it? What is this code supposed to do? */
451 if (!*input_line_pointer
452 || (!strchr ("+-.0123456789", *input_line_pointer)
453 && !strchr (EXP_CHARS, *input_line_pointer)))
455 input_line_pointer--;
456 integer_constant (10, expressionP);
461 input_line_pointer++;
462 integer_constant (2, expressionP);
473 integer_constant (8, expressionP);
477 #ifdef LOCAL_LABELS_FB
478 /* if it says '0f' and the line ends or it doesn't look like
479 a floating point #, its a local label ref. dtrt */
480 /* likewise for the b's. xoxorich. */
481 /* FIXME: As in the 'b' case, we know that the
482 *input_line_pointer is 'f'. What is this code really
485 && (!*input_line_pointer ||
486 (!strchr ("+-.0123456789", *input_line_pointer) &&
487 !strchr (EXP_CHARS, *input_line_pointer))))
489 input_line_pointer -= 1;
490 integer_constant (10, expressionP);
504 input_line_pointer++;
505 floating_constant (expressionP);
506 expressionP->X_add_number = -(isupper (c) ? tolower (c) : c);
509 #ifdef LOCAL_LABELS_DOLLAR
511 integer_constant (10, expressionP);
519 /* didn't begin with digit & not a name */
520 retval = expression (expressionP);
521 /* Expression() will pass trailing whitespace */
522 if (*input_line_pointer++ != ')')
524 as_bad ("Missing ')' assumed");
525 input_line_pointer--;
527 /* here with input_line_pointer->char after "(...)" */
531 /* Warning: to conform to other people's assemblers NO ESCAPEMENT is
532 permitted for a single quote. The next character, parity errors and
533 all, is taken as the value of the operand. VERY KINKY. */
534 expressionP->X_op = O_constant;
535 expressionP->X_add_number = *input_line_pointer++;
539 retval = operand (expressionP);
545 /* When computing - foo, ignore the segment of foo. It has
546 nothing to do with the segment of the result, which is
548 operand (expressionP);
549 if (expressionP->X_op == O_constant)
551 /* input_line_pointer -> char after operand */
554 expressionP->X_add_number = - expressionP->X_add_number;
555 /* Notice: '-' may overflow: no warning is given. This is
556 compatible with other people's assemblers. Sigh. */
559 expressionP->X_add_number = ~ expressionP->X_add_number;
561 else if (expressionP->X_op != O_illegal
562 && expressionP->X_op != O_absent)
564 expressionP->X_add_symbol = make_expr_symbol (expressionP);
566 expressionP->X_op = O_uminus;
568 expressionP->X_op = O_bit_not;
569 expressionP->X_add_number = 0;
572 as_warn ("Unary operator %c ignored because bad operand follows",
578 if (!is_part_of_name (*input_line_pointer))
582 /* JF: '.' is pseudo symbol with value of current location
583 in current segment. */
584 #ifdef DOT_LABEL_PREFIX
589 symbolP = symbol_new (fake,
591 (valueT) frag_now_fix (),
594 expressionP->X_op = O_symbol;
595 expressionP->X_add_symbol = symbolP;
596 expressionP->X_add_number = 0;
608 /* can't imagine any other kind of operand */
609 expressionP->X_op = O_absent;
610 input_line_pointer--;
611 md_operand (expressionP);
615 if (is_end_of_line[c])
617 if (is_name_beginner (c)) /* here if did not begin with a digit */
620 * Identifier begins here.
621 * This is kludged for speed, so code is repeated.
624 name = --input_line_pointer;
625 c = get_symbol_end ();
626 symbolP = symbol_find_or_make (name);
628 /* If we have an absolute symbol or a reg, then we know its
630 retval = S_GET_SEGMENT (symbolP);
631 if (retval == absolute_section)
633 expressionP->X_op = O_constant;
634 expressionP->X_add_number = S_GET_VALUE (symbolP);
636 else if (retval == reg_section)
638 expressionP->X_op = O_register;
639 expressionP->X_add_number = S_GET_VALUE (symbolP);
643 expressionP->X_op = O_symbol;
644 expressionP->X_add_symbol = symbolP;
645 expressionP->X_add_number = 0;
647 *input_line_pointer = c;
651 as_bad ("Bad expression");
652 expressionP->X_op = O_constant;
653 expressionP->X_add_number = 0;
658 * It is more 'efficient' to clean up the expressionS when they are created.
659 * Doing it here saves lines of code.
661 clean_up_expression (expressionP);
662 SKIP_WHITESPACE (); /*->1st char after operand. */
663 know (*input_line_pointer != ' ');
664 return expressionP->X_op == O_constant ? absolute_section : retval;
667 /* Internal. Simplify a struct expression for use by expr() */
670 * In: address of a expressionS.
671 * The X_op field of the expressionS may only take certain values.
672 * Elsewise we waste time special-case testing. Sigh. Ditto SEG_ABSENT.
673 * Out: expressionS may have been modified:
674 * 'foo-foo' symbol references cancelled to 0,
675 * which changes X_op from O_subtract to O_constant.
676 * Unused fields zeroed to help expr().
680 clean_up_expression (expressionP)
681 expressionS *expressionP;
683 switch (expressionP->X_op)
687 expressionP->X_add_number = 0;
692 expressionP->X_add_symbol = NULL;
697 expressionP->X_op_symbol = NULL;
700 if (expressionP->X_op_symbol == expressionP->X_add_symbol
701 || ((expressionP->X_op_symbol->sy_frag
702 == expressionP->X_add_symbol->sy_frag)
703 && SEG_NORMAL (S_GET_SEGMENT (expressionP->X_add_symbol))
704 && (S_GET_VALUE (expressionP->X_op_symbol)
705 == S_GET_VALUE (expressionP->X_add_symbol))))
707 expressionP->X_op = O_constant;
708 expressionP->X_add_symbol = NULL;
709 expressionP->X_op_symbol = NULL;
717 /* Expression parser. */
720 * We allow an empty expression, and just assume (absolute,0) silently.
721 * Unary operators and parenthetical expressions are treated as operands.
722 * As usual, Q==quantity==operand, O==operator, X==expression mnemonics.
724 * We used to do a aho/ullman shift-reduce parser, but the logic got so
725 * warped that I flushed it and wrote a recursive-descent parser instead.
726 * Now things are stable, would anybody like to write a fast parser?
727 * Most expressions are either register (which does not even reach here)
728 * or 1 symbol. Then "symbol+constant" and "symbol-symbol" are common.
729 * So I guess it doesn't really matter how inefficient more complex expressions
732 * After expr(RANK,resultP) input_line_pointer->operator of rank <= RANK.
733 * Also, we have consumed any leading or trailing spaces (operand does that)
734 * and done all intervening operators.
736 * This returns the segment of the result, which will be
737 * absolute_section or the segment of a symbol.
743 static const operatorT op_encoding[256] =
744 { /* maps ASCII->operators */
746 __, __, __, __, __, __, __, __, __, __, __, __, __, __, __, __,
747 __, __, __, __, __, __, __, __, __, __, __, __, __, __, __, __,
749 __, O_bit_or_not, __, __, __, O_modulus, O_bit_and, __,
750 __, __, O_multiply, O_add, __, O_subtract, __, O_divide,
751 __, __, __, __, __, __, __, __,
752 __, __, __, __, O_left_shift, __, O_right_shift, __,
753 __, __, __, __, __, __, __, __,
754 __, __, __, __, __, __, __, __,
755 __, __, __, __, __, __, __, __,
756 __, __, __, __, __, __, O_bit_exclusive_or, __,
757 __, __, __, __, __, __, __, __,
758 __, __, __, __, __, __, __, __,
759 __, __, __, __, __, __, __, __,
760 __, __, __, __, O_bit_inclusive_or, __, __, __,
762 __, __, __, __, __, __, __, __, __, __, __, __, __, __, __, __,
763 __, __, __, __, __, __, __, __, __, __, __, __, __, __, __, __,
764 __, __, __, __, __, __, __, __, __, __, __, __, __, __, __, __,
765 __, __, __, __, __, __, __, __, __, __, __, __, __, __, __, __,
766 __, __, __, __, __, __, __, __, __, __, __, __, __, __, __, __,
767 __, __, __, __, __, __, __, __, __, __, __, __, __, __, __, __,
768 __, __, __, __, __, __, __, __, __, __, __, __, __, __, __, __,
769 __, __, __, __, __, __, __, __, __, __, __, __, __, __, __, __
775 * 0 operand, (expression)
781 static const operator_rankT op_rank[] =
794 3, /* O_left_shift */
795 3, /* O_right_shift */
796 2, /* O_bit_inclusive_or */
797 2, /* O_bit_or_not */
798 2, /* O_bit_exclusive_or */
806 operator_rankT rank; /* Larger # is higher rank. */
807 expressionS *resultP; /* Deliver result here. */
812 char c_left; /* 1st operator character. */
818 retval = operand (resultP);
820 know (*input_line_pointer != ' '); /* Operand() gobbles spaces. */
822 c_left = *input_line_pointer; /* Potential operator character. */
823 op_left = op_encoding[c_left];
824 while (op_left != O_illegal && op_rank[(int) op_left] > rank)
828 input_line_pointer++; /*->after 1st character of operator. */
829 /* Operators "<<" and ">>" have 2 characters. */
830 if (*input_line_pointer == c_left && (c_left == '<' || c_left == '>'))
831 ++input_line_pointer;
833 rightseg = expr (op_rank[(int) op_left], &right);
834 if (right.X_op == O_absent)
836 as_warn ("missing operand; zero assumed");
837 right.X_op = O_constant;
838 right.X_add_number = 0;
839 resultP->X_add_symbol = NULL;
840 resultP->X_op_symbol = NULL;
843 know (*input_line_pointer != ' ');
845 if (! SEG_NORMAL (retval))
847 else if (SEG_NORMAL (rightseg)
848 && retval != rightseg)
849 as_bad ("operation combines symbols in different segments");
851 c_right = *input_line_pointer;
852 op_right = op_encoding[c_right];
853 if (*input_line_pointer == c_right && (c_right == '<' || c_right == '>'))
854 ++input_line_pointer;
856 know (op_right == O_illegal || op_rank[(int) op_right] <= op_rank[(int) op_left]);
857 know ((int) op_left >= (int) O_multiply && (int) op_left <= (int) O_subtract);
859 /* input_line_pointer->after right-hand quantity. */
860 /* left-hand quantity in resultP */
861 /* right-hand quantity in right. */
862 /* operator in op_left. */
864 if (resultP->X_op == O_big)
866 as_warn ("left operand of %c is a %s; integer 0 assumed",
867 c_left, resultP->X_add_number > 0 ? "bignum" : "float");
868 resultP->X_op = O_constant;
869 resultP->X_add_number = 0;
870 resultP->X_add_symbol = NULL;
871 resultP->X_op_symbol = NULL;
873 if (right.X_op == O_big)
875 as_warn ("right operand of %c is a %s; integer 0 assumed",
876 c_left, right.X_add_number > 0 ? "bignum" : "float");
877 right.X_op = O_constant;
878 right.X_add_number = 0;
879 right.X_add_symbol = NULL;
880 right.X_op_symbol = NULL;
883 /* Optimize common cases. */
884 if (op_left == O_add && right.X_op == O_constant)
887 resultP->X_add_number += right.X_add_number;
889 else if (op_left == O_subtract && right.X_op == O_constant)
892 resultP->X_add_number -= right.X_add_number;
894 else if (op_left == O_add && resultP->X_op == O_constant)
897 resultP->X_op = right.X_op;
898 resultP->X_add_symbol = right.X_add_symbol;
899 resultP->X_op_symbol = right.X_op_symbol;
900 resultP->X_add_number += right.X_add_number;
903 else if (resultP->X_op == O_constant && right.X_op == O_constant)
905 /* Constant OP constant. */
906 offsetT v = right.X_add_number;
907 if (v == 0 && (op_left == O_divide || op_left == O_modulus))
909 as_warn ("division by zero");
914 case O_multiply: resultP->X_add_number *= v; break;
915 case O_divide: resultP->X_add_number /= v; break;
916 case O_modulus: resultP->X_add_number %= v; break;
917 case O_left_shift: resultP->X_add_number <<= v; break;
918 case O_right_shift: resultP->X_add_number >>= v; break;
919 case O_bit_inclusive_or: resultP->X_add_number |= v; break;
920 case O_bit_or_not: resultP->X_add_number |= ~v; break;
921 case O_bit_exclusive_or: resultP->X_add_number ^= v; break;
922 case O_bit_and: resultP->X_add_number &= v; break;
923 case O_add: resultP->X_add_number += v; break;
924 case O_subtract: resultP->X_add_number -= v; break;
928 else if (resultP->X_op == O_symbol
929 && right.X_op == O_symbol
931 || op_left == O_subtract
932 || (resultP->X_add_number == 0
933 && right.X_add_number == 0)))
935 /* Symbol OP symbol. */
936 resultP->X_op = op_left;
937 resultP->X_op_symbol = right.X_add_symbol;
938 if (op_left == O_add)
939 resultP->X_add_number += right.X_add_number;
940 else if (op_left == O_subtract)
941 resultP->X_add_number -= right.X_add_number;
945 /* The general case. */
946 resultP->X_add_symbol = make_expr_symbol (resultP);
947 resultP->X_op_symbol = make_expr_symbol (&right);
948 resultP->X_op = op_left;
949 resultP->X_add_number = 0;
953 } /* While next operator is >= this rank. */
955 return resultP->X_op == O_constant ? absolute_section : retval;
961 * This lives here because it belongs equally in expr.c & read.c.
962 * Expr.c is just a branch office read.c anyway, and putting it
963 * here lessens the crowd at read.c.
965 * Assume input_line_pointer is at start of symbol name.
966 * Advance input_line_pointer past symbol name.
967 * Turn that character into a '\0', returning its former value.
968 * This allows a string compare (RMS wants symbol names to be strings)
969 * of the symbol name.
970 * There will always be a char following symbol name, because all good
971 * lines end in end-of-line.
978 while (is_part_of_name (c = *input_line_pointer++))
980 *--input_line_pointer = 0;
990 return exp.X_add_number;