1 /* expr.c -operands, expressions-
2 Copyright 1987, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
4 Free Software Foundation, Inc.
6 This file is part of GAS, the GNU Assembler.
8 GAS is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2, or (at your option)
13 GAS is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GAS; see the file COPYING. If not, write to the Free
20 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. */
30 #define min(a, b) ((a) < (b) ? (a) : (b))
35 static void floating_constant
PARAMS ((expressionS
* expressionP
));
36 static valueT generic_bignum_to_int32
PARAMS ((void));
38 static valueT generic_bignum_to_int64
PARAMS ((void));
40 static void integer_constant
PARAMS ((int radix
, expressionS
* expressionP
));
41 static void mri_char_constant
PARAMS ((expressionS
*));
42 static void current_location
PARAMS ((expressionS
*));
43 static void clean_up_expression
PARAMS ((expressionS
* expressionP
));
44 static segT operand
PARAMS ((expressionS
*));
45 static operatorT
operator PARAMS ((int *));
47 extern const char EXP_CHARS
[], FLT_CHARS
[];
49 /* We keep a mapping of expression symbols to file positions, so that
50 we can provide better error messages. */
52 struct expr_symbol_line
{
53 struct expr_symbol_line
*next
;
59 static struct expr_symbol_line
*expr_symbol_lines
;
61 /* Build a dummy symbol to hold a complex expression. This is how we
62 build expressions up out of other expressions. The symbol is put
63 into the fake section expr_section. */
66 make_expr_symbol (expressionP
)
67 expressionS
*expressionP
;
72 struct expr_symbol_line
*n
;
74 if (expressionP
->X_op
== O_symbol
75 && expressionP
->X_add_number
== 0)
76 return expressionP
->X_add_symbol
;
78 if (expressionP
->X_op
== O_big
)
80 /* This won't work, because the actual value is stored in
81 generic_floating_point_number or generic_bignum, and we are
82 going to lose it if we haven't already. */
83 if (expressionP
->X_add_number
> 0)
84 as_bad (_("bignum invalid"));
86 as_bad (_("floating point number invalid"));
87 zero
.X_op
= O_constant
;
88 zero
.X_add_number
= 0;
90 clean_up_expression (&zero
);
94 fake
= FAKE_LABEL_NAME
;
96 /* Putting constant symbols in absolute_section rather than
97 expr_section is convenient for the old a.out code, for which
98 S_GET_SEGMENT does not always retrieve the value put in by
100 symbolP
= symbol_create (fake
,
101 (expressionP
->X_op
== O_constant
104 0, &zero_address_frag
);
105 symbol_set_value_expression (symbolP
, expressionP
);
107 if (expressionP
->X_op
== O_constant
)
108 resolve_symbol_value (symbolP
);
110 n
= (struct expr_symbol_line
*) xmalloc (sizeof *n
);
112 as_where (&n
->file
, &n
->line
);
113 n
->next
= expr_symbol_lines
;
114 expr_symbol_lines
= n
;
119 /* Return the file and line number for an expr symbol. Return
120 non-zero if something was found, 0 if no information is known for
124 expr_symbol_where (sym
, pfile
, pline
)
129 register struct expr_symbol_line
*l
;
131 for (l
= expr_symbol_lines
; l
!= NULL
; l
= l
->next
)
144 /* Utilities for building expressions.
145 Since complex expressions are recorded as symbols for use in other
146 expressions these return a symbolS * and not an expressionS *.
147 These explicitly do not take an "add_number" argument. */
148 /* ??? For completeness' sake one might want expr_build_symbol.
149 It would just return its argument. */
151 /* Build an expression for an unsigned constant.
152 The corresponding one for signed constants is missing because
153 there's currently no need for it. One could add an unsigned_p flag
154 but that seems more clumsy. */
157 expr_build_uconstant (value
)
163 e
.X_add_number
= value
;
165 return make_expr_symbol (&e
);
168 /* Build an expression for OP s1. */
171 expr_build_unary (op
, s1
)
180 return make_expr_symbol (&e
);
183 /* Build an expression for s1 OP s2. */
186 expr_build_binary (op
, s1
, s2
)
197 return make_expr_symbol (&e
);
200 /* Build an expression for the current location ('.'). */
207 current_location (&e
);
208 return make_expr_symbol (&e
);
211 /* Build any floating-point literal here.
212 Also build any bignum literal here. */
214 /* Seems atof_machine can backscan through generic_bignum and hit whatever
215 happens to be loaded before it in memory. And its way too complicated
216 for me to fix right. Thus a hack. JF: Just make generic_bignum bigger,
217 and never write into the early words, thus they'll always be zero.
218 I hate Dean's floating-point code. Bleh. */
219 LITTLENUM_TYPE generic_bignum
[SIZE_OF_LARGE_NUMBER
+ 6];
221 FLONUM_TYPE generic_floating_point_number
= {
222 &generic_bignum
[6], /* low. (JF: Was 0) */
223 &generic_bignum
[SIZE_OF_LARGE_NUMBER
+ 6 - 1], /* high. JF: (added +6) */
229 /* If nonzero, we've been asked to assemble nan, +inf or -inf. */
230 int generic_floating_point_magic
;
233 floating_constant (expressionP
)
234 expressionS
*expressionP
;
236 /* input_line_pointer -> floating-point constant. */
239 error_code
= atof_generic (&input_line_pointer
, ".", EXP_CHARS
,
240 &generic_floating_point_number
);
244 if (error_code
== ERROR_EXPONENT_OVERFLOW
)
246 as_bad (_("bad floating-point constant: exponent overflow"));
250 as_bad (_("bad floating-point constant: unknown error code=%d"),
254 expressionP
->X_op
= O_big
;
255 /* input_line_pointer -> just after constant, which may point to
257 expressionP
->X_add_number
= -1;
261 generic_bignum_to_int32 ()
264 ((generic_bignum
[1] & LITTLENUM_MASK
) << LITTLENUM_NUMBER_OF_BITS
)
265 | (generic_bignum
[0] & LITTLENUM_MASK
);
266 number
&= 0xffffffff;
272 generic_bignum_to_int64 ()
275 ((((((((valueT
) generic_bignum
[3] & LITTLENUM_MASK
)
276 << LITTLENUM_NUMBER_OF_BITS
)
277 | ((valueT
) generic_bignum
[2] & LITTLENUM_MASK
))
278 << LITTLENUM_NUMBER_OF_BITS
)
279 | ((valueT
) generic_bignum
[1] & LITTLENUM_MASK
))
280 << LITTLENUM_NUMBER_OF_BITS
)
281 | ((valueT
) generic_bignum
[0] & LITTLENUM_MASK
));
287 integer_constant (radix
, expressionP
)
289 expressionS
*expressionP
;
291 char *start
; /* Start of number. */
294 valueT number
; /* Offset or (absolute) value. */
295 short int digit
; /* Value of next digit in current radix. */
296 short int maxdig
= 0; /* Highest permitted digit value. */
297 int too_many_digits
= 0; /* If we see >= this number of. */
298 char *name
; /* Points to name of symbol. */
299 symbolS
*symbolP
; /* Points to symbol. */
301 int small
; /* True if fits in 32 bits. */
303 /* May be bignum, or may fit in 32 bits. */
304 /* Most numbers fit into 32 bits, and we want this case to be fast.
305 so we pretend it will fit into 32 bits. If, after making up a 32
306 bit number, we realise that we have scanned more digits than
307 comfortably fit into 32 bits, we re-scan the digits coding them
308 into a bignum. For decimal and octal numbers we are
309 conservative: Some numbers may be assumed bignums when in fact
310 they do fit into 32 bits. Numbers of any radix can have excess
311 leading zeros: We strive to recognise this and cast them back
312 into 32 bits. We must check that the bignum really is more than
313 32 bits, and change it back to a 32-bit number if it fits. The
314 number we are looking for is expected to be positive, but if it
315 fits into 32 bits as an unsigned number, we let it be a 32-bit
316 number. The cavalier approach is for speed in ordinary cases. */
317 /* This has been extended for 64 bits. We blindly assume that if
318 you're compiling in 64-bit mode, the target is a 64-bit machine.
319 This should be cleaned up. */
323 #else /* includes non-bfd case, mostly */
327 if ((NUMBERS_WITH_SUFFIX
|| flag_m68k_mri
) && radix
== 0)
331 /* In MRI mode, the number may have a suffix indicating the
332 radix. For that matter, it might actually be a floating
334 for (suffix
= input_line_pointer
;
335 isalnum ((unsigned char) *suffix
);
338 if (*suffix
== 'e' || *suffix
== 'E')
342 if (suffix
== input_line_pointer
)
350 if (islower ((unsigned char) c
))
356 else if (c
== 'O' || c
== 'Q')
360 else if (suffix
[1] == '.' || c
== 'E' || flt
)
362 floating_constant (expressionP
);
377 too_many_digits
= valuesize
+ 1;
381 too_many_digits
= (valuesize
+ 2) / 3 + 1;
385 too_many_digits
= (valuesize
+ 3) / 4 + 1;
389 too_many_digits
= (valuesize
+ 11) / 4; /* Very rough. */
392 start
= input_line_pointer
;
393 c
= *input_line_pointer
++;
395 (digit
= hex_value (c
)) < maxdig
;
396 c
= *input_line_pointer
++)
398 number
= number
* radix
+ digit
;
400 /* c contains character after number. */
401 /* input_line_pointer->char after c. */
402 small
= (input_line_pointer
- start
- 1) < too_many_digits
;
404 if (radix
== 16 && c
== '_')
406 /* This is literal of the form 0x333_0_12345678_1.
407 This example is equivalent to 0x00000333000000001234567800000001. */
409 int num_little_digits
= 0;
411 input_line_pointer
= start
; /* -> 1st digit. */
413 know (LITTLENUM_NUMBER_OF_BITS
== 16);
415 for (c
= '_'; c
== '_'; num_little_digits
+= 2)
418 /* Convert one 64-bit word. */
421 for (c
= *input_line_pointer
++;
422 (digit
= hex_value (c
)) < maxdig
;
423 c
= *(input_line_pointer
++))
425 number
= number
* radix
+ digit
;
429 /* Check for 8 digit per word max. */
431 as_bad (_("a bignum with underscores may not have more than 8 hex digits in any word"));
433 /* Add this chunk to the bignum.
434 Shift things down 2 little digits. */
435 know (LITTLENUM_NUMBER_OF_BITS
== 16);
436 for (i
= min (num_little_digits
+ 1, SIZE_OF_LARGE_NUMBER
- 1);
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. */
458 while (generic_bignum
[num_little_digits
- 1] == 0
459 && 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 ();
480 /* Number of littlenums in the bignum. */
481 number
= num_little_digits
;
486 /* 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
++;
498 for (; (carry
= hex_value (c
)) < maxdig
; c
= *input_line_pointer
++)
500 for (pointer
= generic_bignum
; pointer
<= leader
; pointer
++)
504 work
= carry
+ radix
* *pointer
;
505 *pointer
= work
& LITTLENUM_MASK
;
506 carry
= work
>> LITTLENUM_NUMBER_OF_BITS
;
510 if (leader
< generic_bignum
+ SIZE_OF_LARGE_NUMBER
- 1)
512 /* Room to grow a longer bignum. */
517 /* Again, c is char after number. */
518 /* input_line_pointer -> after c. */
519 know (LITTLENUM_NUMBER_OF_BITS
== 16);
520 if (leader
< generic_bignum
+ 2)
522 /* Will fit into 32 bits. */
523 number
= generic_bignum_to_int32 ();
527 else if (leader
< generic_bignum
+ 4)
529 /* Will fit into 64 bits. */
530 number
= generic_bignum_to_int64 ();
536 /* Number of littlenums in the bignum. */
537 number
= leader
- generic_bignum
+ 1;
541 if ((NUMBERS_WITH_SUFFIX
|| flag_m68k_mri
)
543 && input_line_pointer
- 1 == suffix
)
544 c
= *input_line_pointer
++;
548 /* Here with number, in correct radix. c is the next char.
549 Note that unlike un*x, we allow "011f" "0x9f" to both mean
550 the same as the (conventional) "9f".
551 This is simply easier than checking for strict canonical
554 if (LOCAL_LABELS_FB
&& c
== 'b')
556 /* Backward ref to local label.
557 Because it is backward, expect it to be defined. */
558 /* Construct a local label. */
559 name
= fb_label_name ((int) number
, 0);
561 /* Seen before, or symbol is defined: OK. */
562 symbolP
= symbol_find (name
);
563 if ((symbolP
!= NULL
) && (S_IS_DEFINED (symbolP
)))
565 /* Local labels are never absolute. Don't waste time
566 checking absoluteness. */
567 know (SEG_NORMAL (S_GET_SEGMENT (symbolP
)));
569 expressionP
->X_op
= O_symbol
;
570 expressionP
->X_add_symbol
= symbolP
;
574 /* Either not seen or not defined. */
575 /* @@ Should print out the original string instead of
576 the parsed number. */
577 as_bad (_("backward ref to unknown label \"%d:\""),
579 expressionP
->X_op
= O_constant
;
582 expressionP
->X_add_number
= 0;
584 else if (LOCAL_LABELS_FB
&& c
== 'f')
586 /* Forward reference. Expect symbol to be undefined or
587 unknown. undefined: seen it before. unknown: never seen
590 Construct a local label name, then an undefined symbol.
591 Don't create a xseg frag for it: caller may do that.
592 Just return it as never seen before. */
593 name
= fb_label_name ((int) number
, 1);
594 symbolP
= symbol_find_or_make (name
);
595 /* We have no need to check symbol properties. */
596 #ifndef many_segments
597 /* Since "know" puts its arg into a "string", we
598 can't have newlines in the argument. */
599 know (S_GET_SEGMENT (symbolP
) == undefined_section
|| S_GET_SEGMENT (symbolP
) == text_section
|| S_GET_SEGMENT (symbolP
) == data_section
);
601 expressionP
->X_op
= O_symbol
;
602 expressionP
->X_add_symbol
= symbolP
;
603 expressionP
->X_add_number
= 0;
605 else if (LOCAL_LABELS_DOLLAR
&& c
== '$')
607 /* If the dollar label is *currently* defined, then this is just
608 another reference to it. If it is not *currently* defined,
609 then this is a fresh instantiation of that number, so create
612 if (dollar_label_defined ((long) number
))
614 name
= dollar_label_name ((long) number
, 0);
615 symbolP
= symbol_find (name
);
616 know (symbolP
!= NULL
);
620 name
= dollar_label_name ((long) number
, 1);
621 symbolP
= symbol_find_or_make (name
);
624 expressionP
->X_op
= O_symbol
;
625 expressionP
->X_add_symbol
= symbolP
;
626 expressionP
->X_add_number
= 0;
630 expressionP
->X_op
= O_constant
;
631 #ifdef TARGET_WORD_SIZE
632 /* Sign extend NUMBER. */
633 number
|= (-(number
>> (TARGET_WORD_SIZE
- 1))) << (TARGET_WORD_SIZE
- 1);
635 expressionP
->X_add_number
= number
;
636 input_line_pointer
--; /* Restore following character. */
637 } /* Really just a number. */
641 /* Not a small number. */
642 expressionP
->X_op
= O_big
;
643 expressionP
->X_add_number
= number
; /* Number of littlenums. */
644 input_line_pointer
--; /* -> char following number. */
648 /* Parse an MRI multi character constant. */
651 mri_char_constant (expressionP
)
652 expressionS
*expressionP
;
656 if (*input_line_pointer
== '\''
657 && input_line_pointer
[1] != '\'')
659 expressionP
->X_op
= O_constant
;
660 expressionP
->X_add_number
= 0;
664 /* In order to get the correct byte ordering, we must build the
665 number in reverse. */
666 for (i
= SIZE_OF_LARGE_NUMBER
- 1; i
>= 0; i
--)
670 generic_bignum
[i
] = 0;
671 for (j
= 0; j
< CHARS_PER_LITTLENUM
; j
++)
673 if (*input_line_pointer
== '\'')
675 if (input_line_pointer
[1] != '\'')
677 ++input_line_pointer
;
679 generic_bignum
[i
] <<= 8;
680 generic_bignum
[i
] += *input_line_pointer
;
681 ++input_line_pointer
;
684 if (i
< SIZE_OF_LARGE_NUMBER
- 1)
686 /* If there is more than one littlenum, left justify the
687 last one to make it match the earlier ones. If there is
688 only one, we can just use the value directly. */
689 for (; j
< CHARS_PER_LITTLENUM
; j
++)
690 generic_bignum
[i
] <<= 8;
693 if (*input_line_pointer
== '\''
694 && input_line_pointer
[1] != '\'')
700 as_bad (_("character constant too large"));
709 c
= SIZE_OF_LARGE_NUMBER
- i
;
710 for (j
= 0; j
< c
; j
++)
711 generic_bignum
[j
] = generic_bignum
[i
+ j
];
715 know (LITTLENUM_NUMBER_OF_BITS
== 16);
718 expressionP
->X_op
= O_big
;
719 expressionP
->X_add_number
= i
;
723 expressionP
->X_op
= O_constant
;
725 expressionP
->X_add_number
= generic_bignum
[0] & LITTLENUM_MASK
;
727 expressionP
->X_add_number
=
728 (((generic_bignum
[1] & LITTLENUM_MASK
)
729 << LITTLENUM_NUMBER_OF_BITS
)
730 | (generic_bignum
[0] & LITTLENUM_MASK
));
733 /* Skip the final closing quote. */
734 ++input_line_pointer
;
737 /* Return an expression representing the current location. This
738 handles the magic symbol `.'. */
741 current_location (expressionp
)
742 expressionS
*expressionp
;
744 if (now_seg
== absolute_section
)
746 expressionp
->X_op
= O_constant
;
747 expressionp
->X_add_number
= abs_section_offset
;
753 symbolp
= symbol_new (FAKE_LABEL_NAME
, now_seg
,
754 (valueT
) frag_now_fix (),
756 expressionp
->X_op
= O_symbol
;
757 expressionp
->X_add_symbol
= symbolp
;
758 expressionp
->X_add_number
= 0;
762 /* In: Input_line_pointer points to 1st char of operand, which may
766 The operand may have been empty: in this case X_op == O_absent.
767 Input_line_pointer->(next non-blank) char after operand. */
770 operand (expressionP
)
771 expressionS
*expressionP
;
774 symbolS
*symbolP
; /* Points to symbol. */
775 char *name
; /* Points to name of symbol. */
778 /* All integers are regarded as unsigned unless they are negated.
779 This is because the only thing which cares whether a number is
780 unsigned is the code in emit_expr which extends constants into
781 bignums. It should only sign extend negative numbers, so that
782 something like ``.quad 0x80000000'' is not sign extended even
783 though it appears negative if valueT is 32 bits. */
784 expressionP
->X_unsigned
= 1;
786 /* Digits, assume it is a bignum. */
788 SKIP_WHITESPACE (); /* Leading whitespace is part of operand. */
789 c
= *input_line_pointer
++; /* input_line_pointer -> past char in c. */
791 if (is_end_of_line
[(unsigned char) c
])
805 input_line_pointer
--;
807 integer_constant ((NUMBERS_WITH_SUFFIX
|| flag_m68k_mri
)
812 #ifdef LITERAL_PREFIXDOLLAR_HEX
814 /* $L is the start of a local label, not a hex constant. */
815 if (* input_line_pointer
== 'L')
817 integer_constant (16, expressionP
);
821 #ifdef LITERAL_PREFIXPERCENT_BIN
823 integer_constant (2, expressionP
);
828 /* Non-decimal radix. */
830 if (NUMBERS_WITH_SUFFIX
|| flag_m68k_mri
)
834 /* Check for a hex constant. */
835 for (s
= input_line_pointer
; hex_p (*s
); s
++)
837 if (*s
== 'h' || *s
== 'H')
839 --input_line_pointer
;
840 integer_constant (0, expressionP
);
844 c
= *input_line_pointer
;
853 if (NUMBERS_WITH_SUFFIX
|| flag_m68k_mri
)
855 integer_constant (0, expressionP
);
861 if (c
&& strchr (FLT_CHARS
, c
))
863 input_line_pointer
++;
864 floating_constant (expressionP
);
865 expressionP
->X_add_number
=
866 - (isupper ((unsigned char) c
) ? tolower (c
) : c
);
870 /* The string was only zero. */
871 expressionP
->X_op
= O_constant
;
872 expressionP
->X_add_number
= 0;
881 input_line_pointer
++;
882 integer_constant (16, expressionP
);
886 if (LOCAL_LABELS_FB
&& ! (flag_m68k_mri
|| NUMBERS_WITH_SUFFIX
))
888 /* This code used to check for '+' and '-' here, and, in
889 some conditions, fall through to call
890 integer_constant. However, that didn't make sense,
891 as integer_constant only accepts digits. */
892 /* Some of our code elsewhere does permit digits greater
893 than the expected base; for consistency, do the same
895 if (input_line_pointer
[1] < '0'
896 || input_line_pointer
[1] > '9')
898 /* Parse this as a back reference to label 0. */
899 input_line_pointer
--;
900 integer_constant (10, expressionP
);
903 /* Otherwise, parse this as a binary number. */
907 input_line_pointer
++;
908 if (flag_m68k_mri
|| NUMBERS_WITH_SUFFIX
)
910 integer_constant (2, expressionP
);
921 integer_constant ((flag_m68k_mri
|| NUMBERS_WITH_SUFFIX
)
929 /* If it says "0f" and it could possibly be a floating point
930 number, make it one. Otherwise, make it a local label,
931 and try to deal with parsing the rest later. */
932 if (!input_line_pointer
[1]
933 || (is_end_of_line
[0xff & input_line_pointer
[1]])
934 || strchr (FLT_CHARS
, 'f') == NULL
)
937 char *cp
= input_line_pointer
+ 1;
938 int r
= atof_generic (&cp
, ".", EXP_CHARS
,
939 &generic_floating_point_number
);
943 case ERROR_EXPONENT_OVERFLOW
:
944 if (*cp
== 'f' || *cp
== 'b')
945 /* Looks like a difference expression. */
947 else if (cp
== input_line_pointer
+ 1)
948 /* No characters has been accepted -- looks like
954 as_fatal (_("expr.c(operand): bad atof_generic return val %d"),
959 /* Okay, now we've sorted it out. We resume at one of these
960 two labels, depending on what we've decided we're probably
963 input_line_pointer
--;
964 integer_constant (10, expressionP
);
974 if (flag_m68k_mri
|| NUMBERS_WITH_SUFFIX
)
976 integer_constant (0, expressionP
);
986 input_line_pointer
++;
987 floating_constant (expressionP
);
988 expressionP
->X_add_number
=
989 - (isupper ((unsigned char) c
) ? tolower (c
) : c
);
993 if (LOCAL_LABELS_DOLLAR
)
995 integer_constant (10, expressionP
);
1005 #ifndef NEED_INDEX_OPERATOR
1008 /* Didn't begin with digit & not a name. */
1009 segment
= expression (expressionP
);
1010 /* expression () will pass trailing whitespace. */
1011 if ((c
== '(' && *input_line_pointer
!= ')')
1012 || (c
== '[' && *input_line_pointer
!= ']'))
1014 #ifdef RELAX_PAREN_GROUPING
1017 as_bad (_("missing '%c'"), c
== '(' ? ')' : ']');
1020 input_line_pointer
++;
1022 /* Here with input_line_pointer -> char after "(...)". */
1027 if (! flag_m68k_mri
|| *input_line_pointer
!= '\'')
1029 as_bad (_("EBCDIC constants are not supported"));
1032 if (! flag_m68k_mri
|| *input_line_pointer
!= '\'')
1034 ++input_line_pointer
;
1038 if (! flag_m68k_mri
)
1040 /* Warning: to conform to other people's assemblers NO
1041 ESCAPEMENT is permitted for a single quote. The next
1042 character, parity errors and all, is taken as the value
1043 of the operand. VERY KINKY. */
1044 expressionP
->X_op
= O_constant
;
1045 expressionP
->X_add_number
= *input_line_pointer
++;
1049 mri_char_constant (expressionP
);
1053 (void) operand (expressionP
);
1058 /* Double quote is the bitwise not operator in MRI mode. */
1059 if (! flag_m68k_mri
)
1064 /* '~' is permitted to start a label on the Delta. */
1065 if (is_name_beginner (c
))
1070 operand (expressionP
);
1071 if (expressionP
->X_op
== O_constant
)
1073 /* input_line_pointer -> char after operand. */
1076 expressionP
->X_add_number
= - expressionP
->X_add_number
;
1077 /* Notice: '-' may overflow: no warning is given.
1078 This is compatible with other people's
1079 assemblers. Sigh. */
1080 expressionP
->X_unsigned
= 0;
1082 else if (c
== '~' || c
== '"')
1083 expressionP
->X_add_number
= ~ expressionP
->X_add_number
;
1085 expressionP
->X_add_number
= ! expressionP
->X_add_number
;
1087 else if (expressionP
->X_op
!= O_illegal
1088 && expressionP
->X_op
!= O_absent
)
1090 expressionP
->X_add_symbol
= make_expr_symbol (expressionP
);
1092 expressionP
->X_op
= O_uminus
;
1093 else if (c
== '~' || c
== '"')
1094 expressionP
->X_op
= O_bit_not
;
1096 expressionP
->X_op
= O_logical_not
;
1097 expressionP
->X_add_number
= 0;
1100 as_warn (_("Unary operator %c ignored because bad operand follows"),
1105 #if defined (DOLLAR_DOT) || defined (TC_M68K)
1107 /* '$' is the program counter when in MRI mode, or when
1108 DOLLAR_DOT is defined. */
1110 if (! flag_m68k_mri
)
1113 if (flag_m68k_mri
&& hex_p (*input_line_pointer
))
1115 /* In MRI mode, '$' is also used as the prefix for a
1116 hexadecimal constant. */
1117 integer_constant (16, expressionP
);
1121 if (is_part_of_name (*input_line_pointer
))
1124 current_location (expressionP
);
1129 if (!is_part_of_name (*input_line_pointer
))
1131 current_location (expressionP
);
1134 else if ((strncasecmp (input_line_pointer
, "startof.", 8) == 0
1135 && ! is_part_of_name (input_line_pointer
[8]))
1136 || (strncasecmp (input_line_pointer
, "sizeof.", 7) == 0
1137 && ! is_part_of_name (input_line_pointer
[7])))
1141 start
= (input_line_pointer
[1] == 't'
1142 || input_line_pointer
[1] == 'T');
1143 input_line_pointer
+= start
? 8 : 7;
1145 if (*input_line_pointer
!= '(')
1146 as_bad (_("syntax error in .startof. or .sizeof."));
1151 ++input_line_pointer
;
1153 name
= input_line_pointer
;
1154 c
= get_symbol_end ();
1156 buf
= (char *) xmalloc (strlen (name
) + 10);
1158 sprintf (buf
, ".startof.%s", name
);
1160 sprintf (buf
, ".sizeof.%s", name
);
1161 symbolP
= symbol_make (buf
);
1164 expressionP
->X_op
= O_symbol
;
1165 expressionP
->X_add_symbol
= symbolP
;
1166 expressionP
->X_add_number
= 0;
1168 *input_line_pointer
= c
;
1170 if (*input_line_pointer
!= ')')
1171 as_bad (_("syntax error in .startof. or .sizeof."));
1173 ++input_line_pointer
;
1184 /* Can't imagine any other kind of operand. */
1185 expressionP
->X_op
= O_absent
;
1186 input_line_pointer
--;
1191 if (! flag_m68k_mri
)
1193 integer_constant (2, expressionP
);
1197 if (! flag_m68k_mri
)
1199 integer_constant (8, expressionP
);
1203 if (! flag_m68k_mri
)
1206 /* In MRI mode, this is a floating point constant represented
1207 using hexadecimal digits. */
1209 ++input_line_pointer
;
1210 integer_constant (16, expressionP
);
1214 if (! flag_m68k_mri
|| is_part_of_name (*input_line_pointer
))
1217 current_location (expressionP
);
1225 if (is_name_beginner (c
)) /* Here if did not begin with a digit. */
1227 /* Identifier begins here.
1228 This is kludged for speed, so code is repeated. */
1230 name
= --input_line_pointer
;
1231 c
= get_symbol_end ();
1233 #ifdef md_parse_name
1234 /* This is a hook for the backend to parse certain names
1235 specially in certain contexts. If a name always has a
1236 specific value, it can often be handled by simply
1237 entering it in the symbol table. */
1238 if (md_parse_name (name
, expressionP
, &c
))
1240 *input_line_pointer
= c
;
1246 /* The MRI i960 assembler permits
1248 FIXME: This should use md_parse_name. */
1250 && (strcasecmp (name
, "sizeof") == 0
1251 || strcasecmp (name
, "startof") == 0))
1256 start
= (name
[1] == 't'
1259 *input_line_pointer
= c
;
1262 name
= input_line_pointer
;
1263 c
= get_symbol_end ();
1265 buf
= (char *) xmalloc (strlen (name
) + 10);
1267 sprintf (buf
, ".startof.%s", name
);
1269 sprintf (buf
, ".sizeof.%s", name
);
1270 symbolP
= symbol_make (buf
);
1273 expressionP
->X_op
= O_symbol
;
1274 expressionP
->X_add_symbol
= symbolP
;
1275 expressionP
->X_add_number
= 0;
1277 *input_line_pointer
= c
;
1284 symbolP
= symbol_find_or_make (name
);
1286 /* If we have an absolute symbol or a reg, then we know its
1288 segment
= S_GET_SEGMENT (symbolP
);
1289 if (segment
== absolute_section
)
1291 expressionP
->X_op
= O_constant
;
1292 expressionP
->X_add_number
= S_GET_VALUE (symbolP
);
1294 else if (segment
== reg_section
)
1296 expressionP
->X_op
= O_register
;
1297 expressionP
->X_add_number
= S_GET_VALUE (symbolP
);
1301 expressionP
->X_op
= O_symbol
;
1302 expressionP
->X_add_symbol
= symbolP
;
1303 expressionP
->X_add_number
= 0;
1305 *input_line_pointer
= c
;
1309 /* Let the target try to parse it. Success is indicated by changing
1310 the X_op field to something other than O_absent and pointing
1311 input_line_pointer past the expression. If it can't parse the
1312 expression, X_op and input_line_pointer should be unchanged. */
1313 expressionP
->X_op
= O_absent
;
1314 --input_line_pointer
;
1315 md_operand (expressionP
);
1316 if (expressionP
->X_op
== O_absent
)
1318 ++input_line_pointer
;
1319 as_bad (_("bad expression"));
1320 expressionP
->X_op
= O_constant
;
1321 expressionP
->X_add_number
= 0;
1327 /* It is more 'efficient' to clean up the expressionS when they are
1328 created. Doing it here saves lines of code. */
1329 clean_up_expression (expressionP
);
1330 SKIP_WHITESPACE (); /* -> 1st char after operand. */
1331 know (*input_line_pointer
!= ' ');
1333 /* The PA port needs this information. */
1334 if (expressionP
->X_add_symbol
)
1335 symbol_mark_used (expressionP
->X_add_symbol
);
1337 switch (expressionP
->X_op
)
1340 return absolute_section
;
1342 return S_GET_SEGMENT (expressionP
->X_add_symbol
);
1348 /* Internal. Simplify a struct expression for use by expr (). */
1350 /* In: address of a expressionS.
1351 The X_op field of the expressionS may only take certain values.
1352 Elsewise we waste time special-case testing. Sigh. Ditto SEG_ABSENT.
1354 Out: expressionS may have been modified:
1355 'foo-foo' symbol references cancelled to 0, which changes X_op
1356 from O_subtract to O_constant.
1357 Unused fields zeroed to help expr (). */
1360 clean_up_expression (expressionP
)
1361 expressionS
*expressionP
;
1363 switch (expressionP
->X_op
)
1367 expressionP
->X_add_number
= 0;
1372 expressionP
->X_add_symbol
= NULL
;
1377 expressionP
->X_op_symbol
= NULL
;
1380 if (expressionP
->X_op_symbol
== expressionP
->X_add_symbol
1381 || ((symbol_get_frag (expressionP
->X_op_symbol
)
1382 == symbol_get_frag (expressionP
->X_add_symbol
))
1383 && SEG_NORMAL (S_GET_SEGMENT (expressionP
->X_add_symbol
))
1384 && (S_GET_VALUE (expressionP
->X_op_symbol
)
1385 == S_GET_VALUE (expressionP
->X_add_symbol
))))
1387 addressT diff
= (S_GET_VALUE (expressionP
->X_add_symbol
)
1388 - S_GET_VALUE (expressionP
->X_op_symbol
));
1390 expressionP
->X_op
= O_constant
;
1391 expressionP
->X_add_symbol
= NULL
;
1392 expressionP
->X_op_symbol
= NULL
;
1393 expressionP
->X_add_number
+= diff
;
1401 /* Expression parser. */
1403 /* We allow an empty expression, and just assume (absolute,0) silently.
1404 Unary operators and parenthetical expressions are treated as operands.
1405 As usual, Q==quantity==operand, O==operator, X==expression mnemonics.
1407 We used to do a aho/ullman shift-reduce parser, but the logic got so
1408 warped that I flushed it and wrote a recursive-descent parser instead.
1409 Now things are stable, would anybody like to write a fast parser?
1410 Most expressions are either register (which does not even reach here)
1411 or 1 symbol. Then "symbol+constant" and "symbol-symbol" are common.
1412 So I guess it doesn't really matter how inefficient more complex expressions
1415 After expr(RANK,resultP) input_line_pointer->operator of rank <= RANK.
1416 Also, we have consumed any leading or trailing spaces (operand does that)
1417 and done all intervening operators.
1419 This returns the segment of the result, which will be
1420 absolute_section or the segment of a symbol. */
1423 #define __ O_illegal
1425 /* Maps ASCII -> operators. */
1426 static const operatorT op_encoding
[256] = {
1427 __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
,
1428 __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
,
1430 __
, O_bit_or_not
, __
, __
, __
, O_modulus
, O_bit_and
, __
,
1431 __
, __
, O_multiply
, O_add
, __
, O_subtract
, __
, O_divide
,
1432 __
, __
, __
, __
, __
, __
, __
, __
,
1433 __
, __
, __
, __
, O_lt
, __
, O_gt
, __
,
1434 __
, __
, __
, __
, __
, __
, __
, __
,
1435 __
, __
, __
, __
, __
, __
, __
, __
,
1436 __
, __
, __
, __
, __
, __
, __
, __
,
1438 #ifdef NEED_INDEX_OPERATOR
1443 __
, __
, O_bit_exclusive_or
, __
,
1444 __
, __
, __
, __
, __
, __
, __
, __
,
1445 __
, __
, __
, __
, __
, __
, __
, __
,
1446 __
, __
, __
, __
, __
, __
, __
, __
,
1447 __
, __
, __
, __
, O_bit_inclusive_or
, __
, __
, __
,
1449 __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
,
1450 __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
,
1451 __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
,
1452 __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
,
1453 __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
,
1454 __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
,
1455 __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
,
1456 __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
1460 0 operand, (expression)
1465 5 used for * / % in MRI mode
1470 static operator_rankT op_rank
[] = {
1475 0, /* O_symbol_rva */
1480 9, /* O_logical_not */
1484 8, /* O_left_shift */
1485 8, /* O_right_shift */
1486 7, /* O_bit_inclusive_or */
1487 7, /* O_bit_or_not */
1488 7, /* O_bit_exclusive_or */
1498 3, /* O_logical_and */
1499 2, /* O_logical_or */
1519 /* Unfortunately, in MRI mode for the m68k, multiplication and
1520 division have lower precedence than the bit wise operators. This
1521 function sets the operator precedences correctly for the current
1522 mode. Also, MRI uses a different bit_not operator, and this fixes
1525 #define STANDARD_MUL_PRECEDENCE 8
1526 #define MRI_MUL_PRECEDENCE 6
1529 expr_set_precedence ()
1533 op_rank
[O_multiply
] = MRI_MUL_PRECEDENCE
;
1534 op_rank
[O_divide
] = MRI_MUL_PRECEDENCE
;
1535 op_rank
[O_modulus
] = MRI_MUL_PRECEDENCE
;
1539 op_rank
[O_multiply
] = STANDARD_MUL_PRECEDENCE
;
1540 op_rank
[O_divide
] = STANDARD_MUL_PRECEDENCE
;
1541 op_rank
[O_modulus
] = STANDARD_MUL_PRECEDENCE
;
1545 /* Initialize the expression parser. */
1550 expr_set_precedence ();
1552 /* Verify that X_op field is wide enough. */
1556 assert (e
.X_op
== O_max
);
1560 /* Return the encoding for the operator at INPUT_LINE_POINTER, and
1561 sets NUM_CHARS to the number of characters in the operator.
1562 Does not advance INPUT_LINE_POINTER. */
1564 static inline operatorT
1565 operator (num_chars
)
1571 c
= *input_line_pointer
& 0xff;
1574 if (is_end_of_line
[c
])
1580 return op_encoding
[c
];
1583 switch (input_line_pointer
[1])
1586 return op_encoding
[c
];
1601 if (input_line_pointer
[1] != '=')
1602 return op_encoding
[c
];
1608 switch (input_line_pointer
[1])
1611 return op_encoding
[c
];
1613 ret
= O_right_shift
;
1623 /* We accept !! as equivalent to ^ for MRI compatibility. */
1624 if (input_line_pointer
[1] != '!')
1627 return O_bit_inclusive_or
;
1628 return op_encoding
[c
];
1631 return O_bit_exclusive_or
;
1634 if (input_line_pointer
[1] != '|')
1635 return op_encoding
[c
];
1638 return O_logical_or
;
1641 if (input_line_pointer
[1] != '&')
1642 return op_encoding
[c
];
1645 return O_logical_and
;
1651 /* Parse an expression. */
1654 expr (rankarg
, resultP
)
1655 int rankarg
; /* Larger # is higher rank. */
1656 expressionS
*resultP
; /* Deliver result here. */
1658 operator_rankT rank
= (operator_rankT
) rankarg
;
1667 retval
= operand (resultP
);
1669 /* operand () gobbles spaces. */
1670 know (*input_line_pointer
!= ' ');
1672 op_left
= operator (&op_chars
);
1673 while (op_left
!= O_illegal
&& op_rank
[(int) op_left
] > rank
)
1677 input_line_pointer
+= op_chars
; /* -> after operator. */
1679 rightseg
= expr (op_rank
[(int) op_left
], &right
);
1680 if (right
.X_op
== O_absent
)
1682 as_warn (_("missing operand; zero assumed"));
1683 right
.X_op
= O_constant
;
1684 right
.X_add_number
= 0;
1685 right
.X_add_symbol
= NULL
;
1686 right
.X_op_symbol
= NULL
;
1689 know (*input_line_pointer
!= ' ');
1691 if (op_left
== O_index
)
1693 if (*input_line_pointer
!= ']')
1694 as_bad ("missing right bracket");
1697 ++input_line_pointer
;
1702 op_right
= operator (&op_chars
);
1704 know (op_right
== O_illegal
1705 || op_rank
[(int) op_right
] <= op_rank
[(int) op_left
]);
1706 know ((int) op_left
>= (int) O_multiply
1707 && (int) op_left
<= (int) O_logical_or
);
1709 /* input_line_pointer->after right-hand quantity. */
1710 /* left-hand quantity in resultP. */
1711 /* right-hand quantity in right. */
1712 /* operator in op_left. */
1714 if (resultP
->X_op
== O_big
)
1716 if (resultP
->X_add_number
> 0)
1717 as_warn (_("left operand is a bignum; integer 0 assumed"));
1719 as_warn (_("left operand is a float; integer 0 assumed"));
1720 resultP
->X_op
= O_constant
;
1721 resultP
->X_add_number
= 0;
1722 resultP
->X_add_symbol
= NULL
;
1723 resultP
->X_op_symbol
= NULL
;
1725 if (right
.X_op
== O_big
)
1727 if (right
.X_add_number
> 0)
1728 as_warn (_("right operand is a bignum; integer 0 assumed"));
1730 as_warn (_("right operand is a float; integer 0 assumed"));
1731 right
.X_op
= O_constant
;
1732 right
.X_add_number
= 0;
1733 right
.X_add_symbol
= NULL
;
1734 right
.X_op_symbol
= NULL
;
1737 /* Optimize common cases. */
1738 #ifdef md_optimize_expr
1739 if (md_optimize_expr (resultP
, op_left
, &right
))
1746 if (op_left
== O_add
&& right
.X_op
== O_constant
)
1749 resultP
->X_add_number
+= right
.X_add_number
;
1751 /* This case comes up in PIC code. */
1752 else if (op_left
== O_subtract
1753 && right
.X_op
== O_symbol
1754 && resultP
->X_op
== O_symbol
1755 && (symbol_get_frag (right
.X_add_symbol
)
1756 == symbol_get_frag (resultP
->X_add_symbol
))
1757 && SEG_NORMAL (rightseg
))
1759 resultP
->X_add_number
-= right
.X_add_number
;
1760 resultP
->X_add_number
+= (S_GET_VALUE (resultP
->X_add_symbol
)
1761 - S_GET_VALUE (right
.X_add_symbol
));
1762 resultP
->X_op
= O_constant
;
1763 resultP
->X_add_symbol
= 0;
1765 else if (op_left
== O_subtract
&& right
.X_op
== O_constant
)
1768 resultP
->X_add_number
-= right
.X_add_number
;
1770 else if (op_left
== O_add
&& resultP
->X_op
== O_constant
)
1773 resultP
->X_op
= right
.X_op
;
1774 resultP
->X_add_symbol
= right
.X_add_symbol
;
1775 resultP
->X_op_symbol
= right
.X_op_symbol
;
1776 resultP
->X_add_number
+= right
.X_add_number
;
1779 else if (resultP
->X_op
== O_constant
&& right
.X_op
== O_constant
)
1781 /* Constant OP constant. */
1782 offsetT v
= right
.X_add_number
;
1783 if (v
== 0 && (op_left
== O_divide
|| op_left
== O_modulus
))
1785 as_warn (_("division by zero"));
1791 case O_multiply
: resultP
->X_add_number
*= v
; break;
1792 case O_divide
: resultP
->X_add_number
/= v
; break;
1793 case O_modulus
: resultP
->X_add_number
%= v
; break;
1794 case O_left_shift
: resultP
->X_add_number
<<= v
; break;
1796 /* We always use unsigned shifts, to avoid relying on
1797 characteristics of the compiler used to compile gas. */
1798 resultP
->X_add_number
=
1799 (offsetT
) ((valueT
) resultP
->X_add_number
>> (valueT
) v
);
1801 case O_bit_inclusive_or
: resultP
->X_add_number
|= v
; break;
1802 case O_bit_or_not
: resultP
->X_add_number
|= ~v
; break;
1803 case O_bit_exclusive_or
: resultP
->X_add_number
^= v
; break;
1804 case O_bit_and
: resultP
->X_add_number
&= v
; break;
1805 case O_add
: resultP
->X_add_number
+= v
; break;
1806 case O_subtract
: resultP
->X_add_number
-= v
; break;
1808 resultP
->X_add_number
=
1809 resultP
->X_add_number
== v
? ~ (offsetT
) 0 : 0;
1812 resultP
->X_add_number
=
1813 resultP
->X_add_number
!= v
? ~ (offsetT
) 0 : 0;
1816 resultP
->X_add_number
=
1817 resultP
->X_add_number
< v
? ~ (offsetT
) 0 : 0;
1820 resultP
->X_add_number
=
1821 resultP
->X_add_number
<= v
? ~ (offsetT
) 0 : 0;
1824 resultP
->X_add_number
=
1825 resultP
->X_add_number
>= v
? ~ (offsetT
) 0 : 0;
1828 resultP
->X_add_number
=
1829 resultP
->X_add_number
> v
? ~ (offsetT
) 0 : 0;
1832 resultP
->X_add_number
= resultP
->X_add_number
&& v
;
1835 resultP
->X_add_number
= resultP
->X_add_number
|| v
;
1839 else if (resultP
->X_op
== O_symbol
1840 && right
.X_op
== O_symbol
1841 && (op_left
== O_add
1842 || op_left
== O_subtract
1843 || (resultP
->X_add_number
== 0
1844 && right
.X_add_number
== 0)))
1846 /* Symbol OP symbol. */
1847 resultP
->X_op
= op_left
;
1848 resultP
->X_op_symbol
= right
.X_add_symbol
;
1849 if (op_left
== O_add
)
1850 resultP
->X_add_number
+= right
.X_add_number
;
1851 else if (op_left
== O_subtract
)
1853 resultP
->X_add_number
-= right
.X_add_number
;
1854 if (retval
== rightseg
&& SEG_NORMAL (retval
))
1856 retval
= absolute_section
;
1857 rightseg
= absolute_section
;
1863 /* The general case. */
1864 resultP
->X_add_symbol
= make_expr_symbol (resultP
);
1865 resultP
->X_op_symbol
= make_expr_symbol (&right
);
1866 resultP
->X_op
= op_left
;
1867 resultP
->X_add_number
= 0;
1868 resultP
->X_unsigned
= 1;
1871 if (retval
!= rightseg
)
1873 if (! SEG_NORMAL (retval
))
1875 if (retval
!= undefined_section
|| SEG_NORMAL (rightseg
))
1878 else if (SEG_NORMAL (rightseg
)
1880 && op_left
!= O_subtract
1883 as_bad (_("operation combines symbols in different segments"));
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
;
1896 /* This lives here because it belongs equally in expr.c & read.c.
1897 expr.c is just a branch office read.c anyway, and putting it
1898 here lessens the crowd at read.c.
1900 Assume input_line_pointer is at start of symbol name.
1901 Advance input_line_pointer past symbol name.
1902 Turn that character into a '\0', returning its former value.
1903 This allows a string compare (RMS wants symbol names to be strings)
1905 There will always be a char following symbol name, because all good
1906 lines end in end-of-line. */
1913 /* We accept \001 in a name in case this is being called with a
1914 constructed string. */
1915 if (is_name_beginner (c
= *input_line_pointer
++) || c
== '\001')
1917 while (is_part_of_name (c
= *input_line_pointer
++)
1920 if (is_name_ender (c
))
1921 c
= *input_line_pointer
++;
1923 *--input_line_pointer
= 0;
1928 get_single_number ()
1932 return exp
.X_add_number
;