1 /* expr.c -operands, expressions-
2 Copyright (C) 1987-2015 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 3, 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 the Free
18 Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
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. */
26 #define min(a, b) ((a) < (b) ? (a) : (b))
29 #include "safe-ctype.h"
38 static void floating_constant (expressionS
* expressionP
);
39 static valueT
generic_bignum_to_int32 (void);
41 static valueT
generic_bignum_to_int64 (void);
43 static void integer_constant (int radix
, expressionS
* expressionP
);
44 static void mri_char_constant (expressionS
*);
45 static void clean_up_expression (expressionS
* expressionP
);
46 static segT
operand (expressionS
*, enum expr_mode
);
47 static operatorT
operatorf (int *);
49 extern const char EXP_CHARS
[], FLT_CHARS
[];
51 /* We keep a mapping of expression symbols to file positions, so that
52 we can provide better error messages. */
54 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 (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;
91 clean_up_expression (&zero
);
95 /* Putting constant symbols in absolute_section rather than
96 expr_section is convenient for the old a.out code, for which
97 S_GET_SEGMENT does not always retrieve the value put in by
99 symbolP
= symbol_create (FAKE_LABEL_NAME
,
100 (expressionP
->X_op
== O_constant
102 : expressionP
->X_op
== O_register
105 0, &zero_address_frag
);
106 symbol_set_value_expression (symbolP
, expressionP
);
108 if (expressionP
->X_op
== O_constant
)
109 resolve_symbol_value (symbolP
);
111 n
= (struct expr_symbol_line
*) xmalloc (sizeof *n
);
113 as_where (&n
->file
, &n
->line
);
114 n
->next
= expr_symbol_lines
;
115 expr_symbol_lines
= n
;
120 /* Return the file and line number for an expr symbol. Return
121 non-zero if something was found, 0 if no information is known for
125 expr_symbol_where (symbolS
*sym
, char **pfile
, unsigned int *pline
)
127 struct expr_symbol_line
*l
;
129 for (l
= expr_symbol_lines
; l
!= NULL
; l
= l
->next
)
142 /* Utilities for building expressions.
143 Since complex expressions are recorded as symbols for use in other
144 expressions these return a symbolS * and not an expressionS *.
145 These explicitly do not take an "add_number" argument. */
146 /* ??? For completeness' sake one might want expr_build_symbol.
147 It would just return its argument. */
149 /* Build an expression for an unsigned constant.
150 The corresponding one for signed constants is missing because
151 there's currently no need for it. One could add an unsigned_p flag
152 but that seems more clumsy. */
155 expr_build_uconstant (offsetT value
)
160 e
.X_add_number
= value
;
163 return make_expr_symbol (&e
);
166 /* Build an expression for the current location ('.'). */
169 expr_build_dot (void)
173 current_location (&e
);
174 return symbol_clone_if_forward_ref (make_expr_symbol (&e
));
177 /* Build any floating-point literal here.
178 Also build any bignum literal here. */
180 /* Seems atof_machine can backscan through generic_bignum and hit whatever
181 happens to be loaded before it in memory. And its way too complicated
182 for me to fix right. Thus a hack. JF: Just make generic_bignum bigger,
183 and never write into the early words, thus they'll always be zero.
184 I hate Dean's floating-point code. Bleh. */
185 LITTLENUM_TYPE generic_bignum
[SIZE_OF_LARGE_NUMBER
+ 6];
187 FLONUM_TYPE generic_floating_point_number
= {
188 &generic_bignum
[6], /* low. (JF: Was 0) */
189 &generic_bignum
[SIZE_OF_LARGE_NUMBER
+ 6 - 1], /* high. JF: (added +6) */
197 floating_constant (expressionS
*expressionP
)
199 /* input_line_pointer -> floating-point constant. */
202 error_code
= atof_generic (&input_line_pointer
, ".", EXP_CHARS
,
203 &generic_floating_point_number
);
207 if (error_code
== ERROR_EXPONENT_OVERFLOW
)
209 as_bad (_("bad floating-point constant: exponent overflow"));
213 as_bad (_("bad floating-point constant: unknown error code=%d"),
217 expressionP
->X_op
= O_big
;
218 /* input_line_pointer -> just after constant, which may point to
220 expressionP
->X_add_number
= -1;
224 generic_bignum_to_int32 (void)
227 ((generic_bignum
[1] & LITTLENUM_MASK
) << LITTLENUM_NUMBER_OF_BITS
)
228 | (generic_bignum
[0] & LITTLENUM_MASK
);
229 number
&= 0xffffffff;
235 generic_bignum_to_int64 (void)
238 ((((((((valueT
) generic_bignum
[3] & LITTLENUM_MASK
)
239 << LITTLENUM_NUMBER_OF_BITS
)
240 | ((valueT
) generic_bignum
[2] & LITTLENUM_MASK
))
241 << LITTLENUM_NUMBER_OF_BITS
)
242 | ((valueT
) generic_bignum
[1] & LITTLENUM_MASK
))
243 << LITTLENUM_NUMBER_OF_BITS
)
244 | ((valueT
) generic_bignum
[0] & LITTLENUM_MASK
));
250 integer_constant (int radix
, expressionS
*expressionP
)
252 char *start
; /* Start of number. */
255 valueT number
; /* Offset or (absolute) value. */
256 short int digit
; /* Value of next digit in current radix. */
257 short int maxdig
= 0; /* Highest permitted digit value. */
258 int too_many_digits
= 0; /* If we see >= this number of. */
259 char *name
; /* Points to name of symbol. */
260 symbolS
*symbolP
; /* Points to symbol. */
262 int small
; /* True if fits in 32 bits. */
264 /* May be bignum, or may fit in 32 bits. */
265 /* Most numbers fit into 32 bits, and we want this case to be fast.
266 so we pretend it will fit into 32 bits. If, after making up a 32
267 bit number, we realise that we have scanned more digits than
268 comfortably fit into 32 bits, we re-scan the digits coding them
269 into a bignum. For decimal and octal numbers we are
270 conservative: Some numbers may be assumed bignums when in fact
271 they do fit into 32 bits. Numbers of any radix can have excess
272 leading zeros: We strive to recognise this and cast them back
273 into 32 bits. We must check that the bignum really is more than
274 32 bits, and change it back to a 32-bit number if it fits. The
275 number we are looking for is expected to be positive, but if it
276 fits into 32 bits as an unsigned number, we let it be a 32-bit
277 number. The cavalier approach is for speed in ordinary cases. */
278 /* This has been extended for 64 bits. We blindly assume that if
279 you're compiling in 64-bit mode, the target is a 64-bit machine.
280 This should be cleaned up. */
284 #else /* includes non-bfd case, mostly */
288 if (is_end_of_line
[(unsigned char) *input_line_pointer
])
290 expressionP
->X_op
= O_absent
;
294 if ((NUMBERS_WITH_SUFFIX
|| flag_m68k_mri
) && radix
== 0)
298 /* In MRI mode, the number may have a suffix indicating the
299 radix. For that matter, it might actually be a floating
301 for (suffix
= input_line_pointer
; ISALNUM (*suffix
); suffix
++)
303 if (*suffix
== 'e' || *suffix
== 'E')
307 if (suffix
== input_line_pointer
)
316 /* If we have both NUMBERS_WITH_SUFFIX and LOCAL_LABELS_FB,
317 we distinguish between 'B' and 'b'. This is the case for
319 if ((NUMBERS_WITH_SUFFIX
&& LOCAL_LABELS_FB
? *suffix
: c
) == 'B')
323 else if (c
== 'O' || c
== 'Q')
327 else if (suffix
[1] == '.' || c
== 'E' || flt
)
329 floating_constant (expressionP
);
344 too_many_digits
= valuesize
+ 1;
348 too_many_digits
= (valuesize
+ 2) / 3 + 1;
352 too_many_digits
= (valuesize
+ 3) / 4 + 1;
356 too_many_digits
= (valuesize
+ 11) / 4; /* Very rough. */
359 start
= input_line_pointer
;
360 c
= *input_line_pointer
++;
362 (digit
= hex_value (c
)) < maxdig
;
363 c
= *input_line_pointer
++)
365 number
= number
* radix
+ digit
;
367 /* c contains character after number. */
368 /* input_line_pointer->char after c. */
369 small
= (input_line_pointer
- start
- 1) < too_many_digits
;
371 if (radix
== 16 && c
== '_')
373 /* This is literal of the form 0x333_0_12345678_1.
374 This example is equivalent to 0x00000333000000001234567800000001. */
376 int num_little_digits
= 0;
378 input_line_pointer
= start
; /* -> 1st digit. */
380 know (LITTLENUM_NUMBER_OF_BITS
== 16);
382 for (c
= '_'; c
== '_'; num_little_digits
+= 2)
385 /* Convert one 64-bit word. */
388 for (c
= *input_line_pointer
++;
389 (digit
= hex_value (c
)) < maxdig
;
390 c
= *(input_line_pointer
++))
392 number
= number
* radix
+ digit
;
396 /* Check for 8 digit per word max. */
398 as_bad (_("a bignum with underscores may not have more than 8 hex digits in any word"));
400 /* Add this chunk to the bignum.
401 Shift things down 2 little digits. */
402 know (LITTLENUM_NUMBER_OF_BITS
== 16);
403 for (i
= min (num_little_digits
+ 1, SIZE_OF_LARGE_NUMBER
- 1);
406 generic_bignum
[i
] = generic_bignum
[i
- 2];
408 /* Add the new digits as the least significant new ones. */
409 generic_bignum
[0] = number
& 0xffffffff;
410 generic_bignum
[1] = number
>> 16;
413 /* Again, c is char after number, input_line_pointer->after c. */
415 if (num_little_digits
> SIZE_OF_LARGE_NUMBER
- 1)
416 num_little_digits
= SIZE_OF_LARGE_NUMBER
- 1;
418 gas_assert (num_little_digits
>= 4);
420 if (num_little_digits
!= 8)
421 as_bad (_("a bignum with underscores must have exactly 4 words"));
423 /* We might have some leading zeros. These can be trimmed to give
424 us a change to fit this constant into a small number. */
425 while (generic_bignum
[num_little_digits
- 1] == 0
426 && num_little_digits
> 1)
429 if (num_little_digits
<= 2)
431 /* will fit into 32 bits. */
432 number
= generic_bignum_to_int32 ();
436 else if (num_little_digits
<= 4)
438 /* Will fit into 64 bits. */
439 number
= generic_bignum_to_int64 ();
447 /* Number of littlenums in the bignum. */
448 number
= num_little_digits
;
453 /* We saw a lot of digits. manufacture a bignum the hard way. */
454 LITTLENUM_TYPE
*leader
; /* -> high order littlenum of the bignum. */
455 LITTLENUM_TYPE
*pointer
; /* -> littlenum we are frobbing now. */
458 leader
= generic_bignum
;
459 generic_bignum
[0] = 0;
460 generic_bignum
[1] = 0;
461 generic_bignum
[2] = 0;
462 generic_bignum
[3] = 0;
463 input_line_pointer
= start
; /* -> 1st digit. */
464 c
= *input_line_pointer
++;
465 for (; (carry
= hex_value (c
)) < maxdig
; c
= *input_line_pointer
++)
467 for (pointer
= generic_bignum
; pointer
<= leader
; pointer
++)
471 work
= carry
+ radix
* *pointer
;
472 *pointer
= work
& LITTLENUM_MASK
;
473 carry
= work
>> LITTLENUM_NUMBER_OF_BITS
;
477 if (leader
< generic_bignum
+ SIZE_OF_LARGE_NUMBER
- 1)
479 /* Room to grow a longer bignum. */
484 /* Again, c is char after number. */
485 /* input_line_pointer -> after c. */
486 know (LITTLENUM_NUMBER_OF_BITS
== 16);
487 if (leader
< generic_bignum
+ 2)
489 /* Will fit into 32 bits. */
490 number
= generic_bignum_to_int32 ();
494 else if (leader
< generic_bignum
+ 4)
496 /* Will fit into 64 bits. */
497 number
= generic_bignum_to_int64 ();
503 /* Number of littlenums in the bignum. */
504 number
= leader
- generic_bignum
+ 1;
508 if ((NUMBERS_WITH_SUFFIX
|| flag_m68k_mri
)
510 && input_line_pointer
- 1 == suffix
)
511 c
= *input_line_pointer
++;
515 /* Here with number, in correct radix. c is the next char.
516 Note that unlike un*x, we allow "011f" "0x9f" to both mean
517 the same as the (conventional) "9f".
518 This is simply easier than checking for strict canonical
521 if (LOCAL_LABELS_FB
&& c
== 'b')
523 /* Backward ref to local label.
524 Because it is backward, expect it to be defined. */
525 /* Construct a local label. */
526 name
= fb_label_name ((int) number
, 0);
528 /* Seen before, or symbol is defined: OK. */
529 symbolP
= symbol_find (name
);
530 if ((symbolP
!= NULL
) && (S_IS_DEFINED (symbolP
)))
532 /* Local labels are never absolute. Don't waste time
533 checking absoluteness. */
534 know (SEG_NORMAL (S_GET_SEGMENT (symbolP
)));
536 expressionP
->X_op
= O_symbol
;
537 expressionP
->X_add_symbol
= symbolP
;
541 /* Either not seen or not defined. */
542 /* @@ Should print out the original string instead of
543 the parsed number. */
544 as_bad (_("backward ref to unknown label \"%d:\""),
546 expressionP
->X_op
= O_constant
;
549 expressionP
->X_add_number
= 0;
551 else if (LOCAL_LABELS_FB
&& c
== 'f')
553 /* Forward reference. Expect symbol to be undefined or
554 unknown. undefined: seen it before. unknown: never seen
557 Construct a local label name, then an undefined symbol.
558 Don't create a xseg frag for it: caller may do that.
559 Just return it as never seen before. */
560 name
= fb_label_name ((int) number
, 1);
561 symbolP
= symbol_find_or_make (name
);
562 /* We have no need to check symbol properties. */
563 #ifndef many_segments
564 /* Since "know" puts its arg into a "string", we
565 can't have newlines in the argument. */
566 know (S_GET_SEGMENT (symbolP
) == undefined_section
|| S_GET_SEGMENT (symbolP
) == text_section
|| S_GET_SEGMENT (symbolP
) == data_section
);
568 expressionP
->X_op
= O_symbol
;
569 expressionP
->X_add_symbol
= symbolP
;
570 expressionP
->X_add_number
= 0;
572 else if (LOCAL_LABELS_DOLLAR
&& c
== '$')
574 /* If the dollar label is *currently* defined, then this is just
575 another reference to it. If it is not *currently* defined,
576 then this is a fresh instantiation of that number, so create
579 if (dollar_label_defined ((long) number
))
581 name
= dollar_label_name ((long) number
, 0);
582 symbolP
= symbol_find (name
);
583 know (symbolP
!= NULL
);
587 name
= dollar_label_name ((long) number
, 1);
588 symbolP
= symbol_find_or_make (name
);
591 expressionP
->X_op
= O_symbol
;
592 expressionP
->X_add_symbol
= symbolP
;
593 expressionP
->X_add_number
= 0;
597 expressionP
->X_op
= O_constant
;
598 expressionP
->X_add_number
= number
;
599 input_line_pointer
--; /* Restore following character. */
600 } /* Really just a number. */
604 /* Not a small number. */
605 expressionP
->X_op
= O_big
;
606 expressionP
->X_add_number
= number
; /* Number of littlenums. */
607 input_line_pointer
--; /* -> char following number. */
611 /* Parse an MRI multi character constant. */
614 mri_char_constant (expressionS
*expressionP
)
618 if (*input_line_pointer
== '\''
619 && input_line_pointer
[1] != '\'')
621 expressionP
->X_op
= O_constant
;
622 expressionP
->X_add_number
= 0;
626 /* In order to get the correct byte ordering, we must build the
627 number in reverse. */
628 for (i
= SIZE_OF_LARGE_NUMBER
- 1; i
>= 0; i
--)
632 generic_bignum
[i
] = 0;
633 for (j
= 0; j
< CHARS_PER_LITTLENUM
; j
++)
635 if (*input_line_pointer
== '\'')
637 if (input_line_pointer
[1] != '\'')
639 ++input_line_pointer
;
641 generic_bignum
[i
] <<= 8;
642 generic_bignum
[i
] += *input_line_pointer
;
643 ++input_line_pointer
;
646 if (i
< SIZE_OF_LARGE_NUMBER
- 1)
648 /* If there is more than one littlenum, left justify the
649 last one to make it match the earlier ones. If there is
650 only one, we can just use the value directly. */
651 for (; j
< CHARS_PER_LITTLENUM
; j
++)
652 generic_bignum
[i
] <<= 8;
655 if (*input_line_pointer
== '\''
656 && input_line_pointer
[1] != '\'')
662 as_bad (_("character constant too large"));
671 c
= SIZE_OF_LARGE_NUMBER
- i
;
672 for (j
= 0; j
< c
; j
++)
673 generic_bignum
[j
] = generic_bignum
[i
+ j
];
677 know (LITTLENUM_NUMBER_OF_BITS
== 16);
680 expressionP
->X_op
= O_big
;
681 expressionP
->X_add_number
= i
;
685 expressionP
->X_op
= O_constant
;
687 expressionP
->X_add_number
= generic_bignum
[0] & LITTLENUM_MASK
;
689 expressionP
->X_add_number
=
690 (((generic_bignum
[1] & LITTLENUM_MASK
)
691 << LITTLENUM_NUMBER_OF_BITS
)
692 | (generic_bignum
[0] & LITTLENUM_MASK
));
695 /* Skip the final closing quote. */
696 ++input_line_pointer
;
699 /* Return an expression representing the current location. This
700 handles the magic symbol `.'. */
703 current_location (expressionS
*expressionp
)
705 if (now_seg
== absolute_section
)
707 expressionp
->X_op
= O_constant
;
708 expressionp
->X_add_number
= abs_section_offset
;
712 expressionp
->X_op
= O_symbol
;
713 expressionp
->X_add_symbol
= &dot_symbol
;
714 expressionp
->X_add_number
= 0;
718 /* In: Input_line_pointer points to 1st char of operand, which may
722 The operand may have been empty: in this case X_op == O_absent.
723 Input_line_pointer->(next non-blank) char after operand. */
726 operand (expressionS
*expressionP
, enum expr_mode mode
)
729 symbolS
*symbolP
; /* Points to symbol. */
730 char *name
; /* Points to name of symbol. */
733 /* All integers are regarded as unsigned unless they are negated.
734 This is because the only thing which cares whether a number is
735 unsigned is the code in emit_expr which extends constants into
736 bignums. It should only sign extend negative numbers, so that
737 something like ``.quad 0x80000000'' is not sign extended even
738 though it appears negative if valueT is 32 bits. */
739 expressionP
->X_unsigned
= 1;
740 expressionP
->X_extrabit
= 0;
742 /* Digits, assume it is a bignum. */
744 SKIP_WHITESPACE (); /* Leading whitespace is part of operand. */
745 c
= *input_line_pointer
++; /* input_line_pointer -> past char in c. */
747 if (is_end_of_line
[(unsigned char) c
])
761 input_line_pointer
--;
763 integer_constant ((NUMBERS_WITH_SUFFIX
|| flag_m68k_mri
)
768 #ifdef LITERAL_PREFIXDOLLAR_HEX
770 /* $L is the start of a local label, not a hex constant. */
771 if (* input_line_pointer
== 'L')
773 integer_constant (16, expressionP
);
777 #ifdef LITERAL_PREFIXPERCENT_BIN
779 integer_constant (2, expressionP
);
784 /* Non-decimal radix. */
786 if (NUMBERS_WITH_SUFFIX
|| flag_m68k_mri
)
790 /* Check for a hex or float constant. */
791 for (s
= input_line_pointer
; hex_p (*s
); s
++)
793 if (*s
== 'h' || *s
== 'H' || *input_line_pointer
== '.')
795 --input_line_pointer
;
796 integer_constant (0, expressionP
);
800 c
= *input_line_pointer
;
809 if (NUMBERS_WITH_SUFFIX
|| flag_m68k_mri
)
811 integer_constant (0, expressionP
);
817 if (c
&& strchr (FLT_CHARS
, c
))
819 input_line_pointer
++;
820 floating_constant (expressionP
);
821 expressionP
->X_add_number
= - TOLOWER (c
);
825 /* The string was only zero. */
826 expressionP
->X_op
= O_constant
;
827 expressionP
->X_add_number
= 0;
836 input_line_pointer
++;
837 integer_constant (16, expressionP
);
841 if (LOCAL_LABELS_FB
&& !flag_m68k_mri
842 && input_line_pointer
[1] != '0'
843 && input_line_pointer
[1] != '1')
845 /* Parse this as a back reference to label 0. */
846 input_line_pointer
--;
847 integer_constant (10, expressionP
);
850 /* Otherwise, parse this as a binary number. */
853 if (input_line_pointer
[1] == '0'
854 || input_line_pointer
[1] == '1')
856 input_line_pointer
++;
857 integer_constant (2, expressionP
);
860 if (flag_m68k_mri
|| NUMBERS_WITH_SUFFIX
)
861 input_line_pointer
++;
872 integer_constant ((flag_m68k_mri
|| NUMBERS_WITH_SUFFIX
)
882 /* If it says "0f" and it could possibly be a floating point
883 number, make it one. Otherwise, make it a local label,
884 and try to deal with parsing the rest later. */
885 if (!is_end_of_line
[(unsigned char) input_line_pointer
[1]]
886 && strchr (FLT_CHARS
, 'f') != NULL
)
888 char *cp
= input_line_pointer
+ 1;
890 atof_generic (&cp
, ".", EXP_CHARS
,
891 &generic_floating_point_number
);
893 /* Was nothing parsed, or does it look like an
895 is_label
= (cp
== input_line_pointer
+ 1
896 || (cp
== input_line_pointer
+ 2
897 && (cp
[-1] == '-' || cp
[-1] == '+'))
903 input_line_pointer
--;
904 integer_constant (10, expressionP
);
912 if (flag_m68k_mri
|| NUMBERS_WITH_SUFFIX
)
914 integer_constant (0, expressionP
);
924 input_line_pointer
++;
925 floating_constant (expressionP
);
926 expressionP
->X_add_number
= - TOLOWER (c
);
930 if (LOCAL_LABELS_DOLLAR
)
932 integer_constant (10, expressionP
);
941 #ifndef NEED_INDEX_OPERATOR
943 # ifdef md_need_index_operator
944 if (md_need_index_operator())
950 /* Didn't begin with digit & not a name. */
951 segment
= expr (0, expressionP
, mode
);
952 /* expression () will pass trailing whitespace. */
953 if ((c
== '(' && *input_line_pointer
!= ')')
954 || (c
== '[' && *input_line_pointer
!= ']'))
955 as_bad (_("missing '%c'"), c
== '(' ? ')' : ']');
957 input_line_pointer
++;
959 /* Here with input_line_pointer -> char after "(...)". */
964 if (! flag_m68k_mri
|| *input_line_pointer
!= '\'')
966 as_bad (_("EBCDIC constants are not supported"));
969 if (! flag_m68k_mri
|| *input_line_pointer
!= '\'')
971 ++input_line_pointer
;
977 /* Warning: to conform to other people's assemblers NO
978 ESCAPEMENT is permitted for a single quote. The next
979 character, parity errors and all, is taken as the value
980 of the operand. VERY KINKY. */
981 expressionP
->X_op
= O_constant
;
982 expressionP
->X_add_number
= *input_line_pointer
++;
986 mri_char_constant (expressionP
);
991 /* Double quote is the bitwise not operator in MRI mode. */
997 /* '~' is permitted to start a label on the Delta. */
998 if (is_name_beginner (c
))
1007 operand (expressionP
, mode
);
1008 if (expressionP
->X_op
== O_constant
)
1010 /* input_line_pointer -> char after operand. */
1013 expressionP
->X_add_number
1014 = - (addressT
) expressionP
->X_add_number
;
1015 /* Notice: '-' may overflow: no warning is given.
1016 This is compatible with other people's
1017 assemblers. Sigh. */
1018 expressionP
->X_unsigned
= 0;
1019 if (expressionP
->X_add_number
)
1020 expressionP
->X_extrabit
^= 1;
1022 else if (c
== '~' || c
== '"')
1023 expressionP
->X_add_number
= ~ expressionP
->X_add_number
;
1025 expressionP
->X_add_number
= ! expressionP
->X_add_number
;
1027 else if (expressionP
->X_op
== O_big
1028 && expressionP
->X_add_number
<= 0
1030 && (generic_floating_point_number
.sign
== '+'
1031 || generic_floating_point_number
.sign
== 'P'))
1033 /* Negative flonum (eg, -1.000e0). */
1034 if (generic_floating_point_number
.sign
== '+')
1035 generic_floating_point_number
.sign
= '-';
1037 generic_floating_point_number
.sign
= 'N';
1039 else if (expressionP
->X_op
== O_big
1040 && expressionP
->X_add_number
> 0)
1044 if (c
== '~' || c
== '-')
1046 for (i
= 0; i
< expressionP
->X_add_number
; ++i
)
1047 generic_bignum
[i
] = ~generic_bignum
[i
];
1049 /* Extend the bignum to at least the size of .octa. */
1050 if (expressionP
->X_add_number
< SIZE_OF_LARGE_NUMBER
)
1052 expressionP
->X_add_number
= SIZE_OF_LARGE_NUMBER
;
1053 for (; i
< expressionP
->X_add_number
; ++i
)
1054 generic_bignum
[i
] = ~(LITTLENUM_TYPE
) 0;
1058 for (i
= 0; i
< expressionP
->X_add_number
; ++i
)
1060 generic_bignum
[i
] += 1;
1061 if (generic_bignum
[i
])
1067 for (i
= 0; i
< expressionP
->X_add_number
; ++i
)
1068 if (generic_bignum
[i
] != 0)
1070 expressionP
->X_add_number
= i
>= expressionP
->X_add_number
;
1071 expressionP
->X_op
= O_constant
;
1072 expressionP
->X_unsigned
= 1;
1073 expressionP
->X_extrabit
= 0;
1076 else if (expressionP
->X_op
!= O_illegal
1077 && expressionP
->X_op
!= O_absent
)
1081 expressionP
->X_add_symbol
= make_expr_symbol (expressionP
);
1083 expressionP
->X_op
= O_uminus
;
1084 else if (c
== '~' || c
== '"')
1085 expressionP
->X_op
= O_bit_not
;
1087 expressionP
->X_op
= O_logical_not
;
1088 expressionP
->X_add_number
= 0;
1092 as_warn (_("Unary operator %c ignored because bad operand follows"),
1097 #if defined (DOLLAR_DOT) || defined (TC_M68K)
1099 /* '$' is the program counter when in MRI mode, or when
1100 DOLLAR_DOT is defined. */
1102 if (! flag_m68k_mri
)
1105 if (DOLLAR_AMBIGU
&& hex_p (*input_line_pointer
))
1107 /* In MRI mode and on Z80, '$' is also used as the prefix
1108 for a hexadecimal constant. */
1109 integer_constant (16, expressionP
);
1113 if (is_part_of_name (*input_line_pointer
))
1116 current_location (expressionP
);
1121 if (!is_part_of_name (*input_line_pointer
))
1123 current_location (expressionP
);
1126 else if ((strncasecmp (input_line_pointer
, "startof.", 8) == 0
1127 && ! is_part_of_name (input_line_pointer
[8]))
1128 || (strncasecmp (input_line_pointer
, "sizeof.", 7) == 0
1129 && ! is_part_of_name (input_line_pointer
[7])))
1133 start
= (input_line_pointer
[1] == 't'
1134 || input_line_pointer
[1] == 'T');
1135 input_line_pointer
+= start
? 8 : 7;
1137 if (*input_line_pointer
!= '(')
1138 as_bad (_("syntax error in .startof. or .sizeof."));
1143 ++input_line_pointer
;
1145 c
= get_symbol_name (& name
);
1147 buf
= (char *) xmalloc (strlen (name
) + 10);
1149 sprintf (buf
, ".startof.%s", name
);
1151 sprintf (buf
, ".sizeof.%s", name
);
1152 symbolP
= symbol_make (buf
);
1155 expressionP
->X_op
= O_symbol
;
1156 expressionP
->X_add_symbol
= symbolP
;
1157 expressionP
->X_add_number
= 0;
1159 *input_line_pointer
= c
;
1160 SKIP_WHITESPACE_AFTER_NAME ();
1161 if (*input_line_pointer
!= ')')
1162 as_bad (_("syntax error in .startof. or .sizeof."));
1164 ++input_line_pointer
;
1175 /* Can't imagine any other kind of operand. */
1176 expressionP
->X_op
= O_absent
;
1177 input_line_pointer
--;
1182 if (! flag_m68k_mri
)
1184 integer_constant (2, expressionP
);
1188 if (! flag_m68k_mri
)
1190 integer_constant (8, expressionP
);
1194 if (! flag_m68k_mri
)
1197 /* In MRI mode, this is a floating point constant represented
1198 using hexadecimal digits. */
1200 ++input_line_pointer
;
1201 integer_constant (16, expressionP
);
1205 if (! flag_m68k_mri
|| is_part_of_name (*input_line_pointer
))
1208 current_location (expressionP
);
1213 #if defined(md_need_index_operator) || defined(TC_M68K)
1216 if (is_name_beginner (c
) || c
== '"') /* Here if did not begin with a digit. */
1218 /* Identifier begins here.
1219 This is kludged for speed, so code is repeated. */
1221 -- input_line_pointer
;
1222 c
= get_symbol_name (&name
);
1226 operatorT op
= md_operator (name
, 1, &c
);
1231 restore_line_pointer (c
);
1235 restore_line_pointer (c
);
1239 restore_line_pointer (c
);
1243 as_bad (_("invalid use of operator \"%s\""), name
);
1249 if (op
!= O_absent
&& op
!= O_illegal
)
1251 restore_line_pointer (c
);
1252 expr (9, expressionP
, mode
);
1253 expressionP
->X_add_symbol
= make_expr_symbol (expressionP
);
1254 expressionP
->X_op_symbol
= NULL
;
1255 expressionP
->X_add_number
= 0;
1256 expressionP
->X_op
= op
;
1262 #ifdef md_parse_name
1263 /* This is a hook for the backend to parse certain names
1264 specially in certain contexts. If a name always has a
1265 specific value, it can often be handled by simply
1266 entering it in the symbol table. */
1267 if (md_parse_name (name
, expressionP
, mode
, &c
))
1269 restore_line_pointer (c
);
1275 /* The MRI i960 assembler permits
1277 FIXME: This should use md_parse_name. */
1279 && (strcasecmp (name
, "sizeof") == 0
1280 || strcasecmp (name
, "startof") == 0))
1285 start
= (name
[1] == 't'
1288 *input_line_pointer
= c
;
1289 SKIP_WHITESPACE_AFTER_NAME ();
1291 c
= get_symbol_name (& name
);
1293 buf
= (char *) xmalloc (strlen (name
) + 10);
1295 sprintf (buf
, ".startof.%s", name
);
1297 sprintf (buf
, ".sizeof.%s", name
);
1298 symbolP
= symbol_make (buf
);
1301 expressionP
->X_op
= O_symbol
;
1302 expressionP
->X_add_symbol
= symbolP
;
1303 expressionP
->X_add_number
= 0;
1305 *input_line_pointer
= c
;
1306 SKIP_WHITESPACE_AFTER_NAME ();
1311 symbolP
= symbol_find_or_make (name
);
1313 /* If we have an absolute symbol or a reg, then we know its
1315 segment
= S_GET_SEGMENT (symbolP
);
1316 if (mode
!= expr_defer
1317 && segment
== absolute_section
1318 && !S_FORCE_RELOC (symbolP
, 0))
1320 expressionP
->X_op
= O_constant
;
1321 expressionP
->X_add_number
= S_GET_VALUE (symbolP
);
1323 else if (mode
!= expr_defer
&& segment
== reg_section
)
1325 expressionP
->X_op
= O_register
;
1326 expressionP
->X_add_number
= S_GET_VALUE (symbolP
);
1330 expressionP
->X_op
= O_symbol
;
1331 expressionP
->X_add_symbol
= symbolP
;
1332 expressionP
->X_add_number
= 0;
1335 restore_line_pointer (c
);
1339 /* Let the target try to parse it. Success is indicated by changing
1340 the X_op field to something other than O_absent and pointing
1341 input_line_pointer past the expression. If it can't parse the
1342 expression, X_op and input_line_pointer should be unchanged. */
1343 expressionP
->X_op
= O_absent
;
1344 --input_line_pointer
;
1345 md_operand (expressionP
);
1346 if (expressionP
->X_op
== O_absent
)
1348 ++input_line_pointer
;
1349 as_bad (_("bad expression"));
1350 expressionP
->X_op
= O_constant
;
1351 expressionP
->X_add_number
= 0;
1357 /* It is more 'efficient' to clean up the expressionS when they are
1358 created. Doing it here saves lines of code. */
1359 clean_up_expression (expressionP
);
1360 SKIP_WHITESPACE (); /* -> 1st char after operand. */
1361 know (*input_line_pointer
!= ' ');
1363 /* The PA port needs this information. */
1364 if (expressionP
->X_add_symbol
)
1365 symbol_mark_used (expressionP
->X_add_symbol
);
1367 if (mode
!= expr_defer
)
1369 expressionP
->X_add_symbol
1370 = symbol_clone_if_forward_ref (expressionP
->X_add_symbol
);
1371 expressionP
->X_op_symbol
1372 = symbol_clone_if_forward_ref (expressionP
->X_op_symbol
);
1375 switch (expressionP
->X_op
)
1378 return absolute_section
;
1380 return S_GET_SEGMENT (expressionP
->X_add_symbol
);
1386 /* Internal. Simplify a struct expression for use by expr (). */
1388 /* In: address of an expressionS.
1389 The X_op field of the expressionS may only take certain values.
1390 Elsewise we waste time special-case testing. Sigh. Ditto SEG_ABSENT.
1392 Out: expressionS may have been modified:
1393 Unused fields zeroed to help expr (). */
1396 clean_up_expression (expressionS
*expressionP
)
1398 switch (expressionP
->X_op
)
1402 expressionP
->X_add_number
= 0;
1407 expressionP
->X_add_symbol
= NULL
;
1412 expressionP
->X_op_symbol
= NULL
;
1419 /* Expression parser. */
1421 /* We allow an empty expression, and just assume (absolute,0) silently.
1422 Unary operators and parenthetical expressions are treated as operands.
1423 As usual, Q==quantity==operand, O==operator, X==expression mnemonics.
1425 We used to do an aho/ullman shift-reduce parser, but the logic got so
1426 warped that I flushed it and wrote a recursive-descent parser instead.
1427 Now things are stable, would anybody like to write a fast parser?
1428 Most expressions are either register (which does not even reach here)
1429 or 1 symbol. Then "symbol+constant" and "symbol-symbol" are common.
1430 So I guess it doesn't really matter how inefficient more complex expressions
1433 After expr(RANK,resultP) input_line_pointer->operator of rank <= RANK.
1434 Also, we have consumed any leading or trailing spaces (operand does that)
1435 and done all intervening operators.
1437 This returns the segment of the result, which will be
1438 absolute_section or the segment of a symbol. */
1441 #define __ O_illegal
1443 #define O_SINGLE_EQ O_illegal
1446 /* Maps ASCII -> operators. */
1447 static const operatorT op_encoding
[256] = {
1448 __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
,
1449 __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
,
1451 __
, O_bit_or_not
, __
, __
, __
, O_modulus
, O_bit_and
, __
,
1452 __
, __
, O_multiply
, O_add
, __
, O_subtract
, __
, O_divide
,
1453 __
, __
, __
, __
, __
, __
, __
, __
,
1454 __
, __
, __
, __
, O_lt
, O_SINGLE_EQ
, O_gt
, __
,
1455 __
, __
, __
, __
, __
, __
, __
, __
,
1456 __
, __
, __
, __
, __
, __
, __
, __
,
1457 __
, __
, __
, __
, __
, __
, __
, __
,
1459 #ifdef NEED_INDEX_OPERATOR
1464 __
, __
, O_bit_exclusive_or
, __
,
1465 __
, __
, __
, __
, __
, __
, __
, __
,
1466 __
, __
, __
, __
, __
, __
, __
, __
,
1467 __
, __
, __
, __
, __
, __
, __
, __
,
1468 __
, __
, __
, __
, O_bit_inclusive_or
, __
, __
, __
,
1470 __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
,
1471 __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
,
1472 __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
,
1473 __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
,
1474 __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
,
1475 __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
,
1476 __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
,
1477 __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
, __
1481 0 operand, (expression)
1486 5 used for * / % in MRI mode
1491 static operator_rankT op_rank
[O_max
] = {
1496 0, /* O_symbol_rva */
1501 9, /* O_logical_not */
1505 8, /* O_left_shift */
1506 8, /* O_right_shift */
1507 7, /* O_bit_inclusive_or */
1508 7, /* O_bit_or_not */
1509 7, /* O_bit_exclusive_or */
1519 3, /* O_logical_and */
1520 2, /* O_logical_or */
1524 /* Unfortunately, in MRI mode for the m68k, multiplication and
1525 division have lower precedence than the bit wise operators. This
1526 function sets the operator precedences correctly for the current
1527 mode. Also, MRI uses a different bit_not operator, and this fixes
1530 #define STANDARD_MUL_PRECEDENCE 8
1531 #define MRI_MUL_PRECEDENCE 6
1534 expr_set_precedence (void)
1538 op_rank
[O_multiply
] = MRI_MUL_PRECEDENCE
;
1539 op_rank
[O_divide
] = MRI_MUL_PRECEDENCE
;
1540 op_rank
[O_modulus
] = MRI_MUL_PRECEDENCE
;
1544 op_rank
[O_multiply
] = STANDARD_MUL_PRECEDENCE
;
1545 op_rank
[O_divide
] = STANDARD_MUL_PRECEDENCE
;
1546 op_rank
[O_modulus
] = STANDARD_MUL_PRECEDENCE
;
1551 expr_set_rank (operatorT op
, operator_rankT rank
)
1553 gas_assert (op
>= O_md1
&& op
< ARRAY_SIZE (op_rank
));
1557 /* Initialize the expression parser. */
1562 expr_set_precedence ();
1564 /* Verify that X_op field is wide enough. */
1568 gas_assert (e
.X_op
== O_max
);
1572 /* Return the encoding for the operator at INPUT_LINE_POINTER, and
1573 sets NUM_CHARS to the number of characters in the operator.
1574 Does not advance INPUT_LINE_POINTER. */
1576 static inline operatorT
1577 operatorf (int *num_chars
)
1582 c
= *input_line_pointer
& 0xff;
1585 if (is_end_of_line
[c
])
1589 if (is_name_beginner (c
))
1592 char ec
= get_symbol_name (& name
);
1594 ret
= md_operator (name
, 2, &ec
);
1598 *input_line_pointer
= ec
;
1599 input_line_pointer
= name
;
1604 as_bad (_("invalid use of operator \"%s\""), name
);
1608 *input_line_pointer
= ec
;
1609 *num_chars
= input_line_pointer
- name
;
1610 input_line_pointer
= name
;
1619 ret
= op_encoding
[c
];
1621 if (ret
== O_illegal
)
1623 char *start
= input_line_pointer
;
1625 ret
= md_operator (NULL
, 2, NULL
);
1626 if (ret
!= O_illegal
)
1627 *num_chars
= input_line_pointer
- start
;
1628 input_line_pointer
= start
;
1635 return op_encoding
[c
];
1638 switch (input_line_pointer
[1])
1641 return op_encoding
[c
];
1656 if (input_line_pointer
[1] != '=')
1657 return op_encoding
[c
];
1663 switch (input_line_pointer
[1])
1666 return op_encoding
[c
];
1668 ret
= O_right_shift
;
1678 switch (input_line_pointer
[1])
1681 /* We accept !! as equivalent to ^ for MRI compatibility. */
1683 return O_bit_exclusive_or
;
1685 /* We accept != as equivalent to <>. */
1690 return O_bit_inclusive_or
;
1691 return op_encoding
[c
];
1695 if (input_line_pointer
[1] != '|')
1696 return op_encoding
[c
];
1699 return O_logical_or
;
1702 if (input_line_pointer
[1] != '&')
1703 return op_encoding
[c
];
1706 return O_logical_and
;
1712 /* Implement "word-size + 1 bit" addition for
1713 {resultP->X_extrabit:resultP->X_add_number} + {rhs_highbit:amount}. This
1714 is used so that the full range of unsigned word values and the full range of
1715 signed word values can be represented in an O_constant expression, which is
1716 useful e.g. for .sleb128 directives. */
1719 add_to_result (expressionS
*resultP
, offsetT amount
, int rhs_highbit
)
1721 valueT ures
= resultP
->X_add_number
;
1722 valueT uamount
= amount
;
1724 resultP
->X_add_number
+= amount
;
1726 resultP
->X_extrabit
^= rhs_highbit
;
1728 if (ures
+ uamount
< ures
)
1729 resultP
->X_extrabit
^= 1;
1732 /* Similarly, for subtraction. */
1735 subtract_from_result (expressionS
*resultP
, offsetT amount
, int rhs_highbit
)
1737 valueT ures
= resultP
->X_add_number
;
1738 valueT uamount
= amount
;
1740 resultP
->X_add_number
-= amount
;
1742 resultP
->X_extrabit
^= rhs_highbit
;
1745 resultP
->X_extrabit
^= 1;
1748 /* Parse an expression. */
1751 expr (int rankarg
, /* Larger # is higher rank. */
1752 expressionS
*resultP
, /* Deliver result here. */
1753 enum expr_mode mode
/* Controls behavior. */)
1755 operator_rankT rank
= (operator_rankT
) rankarg
;
1762 know (rankarg
>= 0);
1764 /* Save the value of dot for the fixup code. */
1767 dot_value
= frag_now_fix ();
1768 dot_frag
= frag_now
;
1771 retval
= operand (resultP
, mode
);
1773 /* operand () gobbles spaces. */
1774 know (*input_line_pointer
!= ' ');
1776 op_left
= operatorf (&op_chars
);
1777 while (op_left
!= O_illegal
&& op_rank
[(int) op_left
] > rank
)
1782 input_line_pointer
+= op_chars
; /* -> after operator. */
1785 rightseg
= expr (op_rank
[(int) op_left
], &right
, mode
);
1786 if (right
.X_op
== O_absent
)
1788 as_warn (_("missing operand; zero assumed"));
1789 right
.X_op
= O_constant
;
1790 right
.X_add_number
= 0;
1791 right
.X_add_symbol
= NULL
;
1792 right
.X_op_symbol
= NULL
;
1795 know (*input_line_pointer
!= ' ');
1797 if (op_left
== O_index
)
1799 if (*input_line_pointer
!= ']')
1800 as_bad ("missing right bracket");
1803 ++input_line_pointer
;
1808 op_right
= operatorf (&op_chars
);
1810 know (op_right
== O_illegal
|| op_left
== O_index
1811 || op_rank
[(int) op_right
] <= op_rank
[(int) op_left
]);
1812 know ((int) op_left
>= (int) O_multiply
);
1814 know ((int) op_left
<= (int) O_index
);
1816 know ((int) op_left
< (int) O_max
);
1819 /* input_line_pointer->after right-hand quantity. */
1820 /* left-hand quantity in resultP. */
1821 /* right-hand quantity in right. */
1822 /* operator in op_left. */
1824 if (resultP
->X_op
== O_big
)
1826 if (resultP
->X_add_number
> 0)
1827 as_warn (_("left operand is a bignum; integer 0 assumed"));
1829 as_warn (_("left operand is a float; integer 0 assumed"));
1830 resultP
->X_op
= O_constant
;
1831 resultP
->X_add_number
= 0;
1832 resultP
->X_add_symbol
= NULL
;
1833 resultP
->X_op_symbol
= NULL
;
1835 if (right
.X_op
== O_big
)
1837 if (right
.X_add_number
> 0)
1838 as_warn (_("right operand is a bignum; integer 0 assumed"));
1840 as_warn (_("right operand is a float; integer 0 assumed"));
1841 right
.X_op
= O_constant
;
1842 right
.X_add_number
= 0;
1843 right
.X_add_symbol
= NULL
;
1844 right
.X_op_symbol
= NULL
;
1847 /* Optimize common cases. */
1848 #ifdef md_optimize_expr
1849 if (md_optimize_expr (resultP
, op_left
, &right
))
1856 #ifndef md_register_arithmetic
1857 # define md_register_arithmetic 1
1859 if (op_left
== O_add
&& right
.X_op
== O_constant
1860 && (md_register_arithmetic
|| resultP
->X_op
!= O_register
))
1863 add_to_result (resultP
, right
.X_add_number
, right
.X_extrabit
);
1865 /* This case comes up in PIC code. */
1866 else if (op_left
== O_subtract
1867 && right
.X_op
== O_symbol
1868 && resultP
->X_op
== O_symbol
1869 && retval
== rightseg
1870 #ifdef md_allow_local_subtract
1871 && md_allow_local_subtract (resultP
, & right
, rightseg
)
1873 && ((SEG_NORMAL (rightseg
)
1874 && !S_FORCE_RELOC (resultP
->X_add_symbol
, 0)
1875 && !S_FORCE_RELOC (right
.X_add_symbol
, 0))
1876 || right
.X_add_symbol
== resultP
->X_add_symbol
)
1877 && frag_offset_fixed_p (symbol_get_frag (resultP
->X_add_symbol
),
1878 symbol_get_frag (right
.X_add_symbol
),
1881 offsetT symval_diff
= S_GET_VALUE (resultP
->X_add_symbol
)
1882 - S_GET_VALUE (right
.X_add_symbol
);
1883 subtract_from_result (resultP
, right
.X_add_number
, right
.X_extrabit
);
1884 subtract_from_result (resultP
, frag_off
/ OCTETS_PER_BYTE
, 0);
1885 add_to_result (resultP
, symval_diff
, symval_diff
< 0);
1886 resultP
->X_op
= O_constant
;
1887 resultP
->X_add_symbol
= 0;
1889 else if (op_left
== O_subtract
&& right
.X_op
== O_constant
1890 && (md_register_arithmetic
|| resultP
->X_op
!= O_register
))
1893 subtract_from_result (resultP
, right
.X_add_number
, right
.X_extrabit
);
1895 else if (op_left
== O_add
&& resultP
->X_op
== O_constant
1896 && (md_register_arithmetic
|| right
.X_op
!= O_register
))
1899 resultP
->X_op
= right
.X_op
;
1900 resultP
->X_add_symbol
= right
.X_add_symbol
;
1901 resultP
->X_op_symbol
= right
.X_op_symbol
;
1902 add_to_result (resultP
, right
.X_add_number
, right
.X_extrabit
);
1905 else if (resultP
->X_op
== O_constant
&& right
.X_op
== O_constant
)
1907 /* Constant OP constant. */
1908 offsetT v
= right
.X_add_number
;
1909 if (v
== 0 && (op_left
== O_divide
|| op_left
== O_modulus
))
1911 as_warn (_("division by zero"));
1914 if ((valueT
) v
>= sizeof(valueT
) * CHAR_BIT
1915 && (op_left
== O_left_shift
|| op_left
== O_right_shift
))
1917 as_warn_value_out_of_range (_("shift count"), v
, 0,
1918 sizeof(valueT
) * CHAR_BIT
- 1,
1920 resultP
->X_add_number
= v
= 0;
1924 default: goto general
;
1925 case O_multiply
: resultP
->X_add_number
*= v
; break;
1926 case O_divide
: resultP
->X_add_number
/= v
; break;
1927 case O_modulus
: resultP
->X_add_number
%= v
; break;
1928 case O_left_shift
: resultP
->X_add_number
<<= v
; break;
1930 /* We always use unsigned shifts, to avoid relying on
1931 characteristics of the compiler used to compile gas. */
1932 resultP
->X_add_number
=
1933 (offsetT
) ((valueT
) resultP
->X_add_number
>> (valueT
) v
);
1935 case O_bit_inclusive_or
: resultP
->X_add_number
|= v
; break;
1936 case O_bit_or_not
: resultP
->X_add_number
|= ~v
; break;
1937 case O_bit_exclusive_or
: resultP
->X_add_number
^= v
; break;
1938 case O_bit_and
: resultP
->X_add_number
&= v
; break;
1939 /* Constant + constant (O_add) is handled by the
1940 previous if statement for constant + X, so is omitted
1943 subtract_from_result (resultP
, v
, 0);
1946 resultP
->X_add_number
=
1947 resultP
->X_add_number
== v
? ~ (offsetT
) 0 : 0;
1950 resultP
->X_add_number
=
1951 resultP
->X_add_number
!= v
? ~ (offsetT
) 0 : 0;
1954 resultP
->X_add_number
=
1955 resultP
->X_add_number
< v
? ~ (offsetT
) 0 : 0;
1958 resultP
->X_add_number
=
1959 resultP
->X_add_number
<= v
? ~ (offsetT
) 0 : 0;
1962 resultP
->X_add_number
=
1963 resultP
->X_add_number
>= v
? ~ (offsetT
) 0 : 0;
1966 resultP
->X_add_number
=
1967 resultP
->X_add_number
> v
? ~ (offsetT
) 0 : 0;
1970 resultP
->X_add_number
= resultP
->X_add_number
&& v
;
1973 resultP
->X_add_number
= resultP
->X_add_number
|| v
;
1977 else if (resultP
->X_op
== O_symbol
1978 && right
.X_op
== O_symbol
1979 && (op_left
== O_add
1980 || op_left
== O_subtract
1981 || (resultP
->X_add_number
== 0
1982 && right
.X_add_number
== 0)))
1984 /* Symbol OP symbol. */
1985 resultP
->X_op
= op_left
;
1986 resultP
->X_op_symbol
= right
.X_add_symbol
;
1987 if (op_left
== O_add
)
1988 add_to_result (resultP
, right
.X_add_number
, right
.X_extrabit
);
1989 else if (op_left
== O_subtract
)
1991 subtract_from_result (resultP
, right
.X_add_number
,
1993 if (retval
== rightseg
1994 && SEG_NORMAL (retval
)
1995 && !S_FORCE_RELOC (resultP
->X_add_symbol
, 0)
1996 && !S_FORCE_RELOC (right
.X_add_symbol
, 0))
1998 retval
= absolute_section
;
1999 rightseg
= absolute_section
;
2006 /* The general case. */
2007 resultP
->X_add_symbol
= make_expr_symbol (resultP
);
2008 resultP
->X_op_symbol
= make_expr_symbol (&right
);
2009 resultP
->X_op
= op_left
;
2010 resultP
->X_add_number
= 0;
2011 resultP
->X_unsigned
= 1;
2012 resultP
->X_extrabit
= 0;
2015 if (retval
!= rightseg
)
2017 if (retval
== undefined_section
)
2019 else if (rightseg
== undefined_section
)
2021 else if (retval
== expr_section
)
2023 else if (rightseg
== expr_section
)
2025 else if (retval
== reg_section
)
2027 else if (rightseg
== reg_section
)
2029 else if (rightseg
== absolute_section
)
2031 else if (retval
== absolute_section
)
2034 else if (op_left
== O_subtract
)
2038 as_bad (_("operation combines symbols in different segments"));
2042 } /* While next operator is >= this rank. */
2044 /* The PA port needs this information. */
2045 if (resultP
->X_add_symbol
)
2046 symbol_mark_used (resultP
->X_add_symbol
);
2048 if (rank
== 0 && mode
== expr_evaluate
)
2049 resolve_expression (resultP
);
2051 return resultP
->X_op
== O_constant
? absolute_section
: retval
;
2054 /* Resolve an expression without changing any symbols/sub-expressions
2058 resolve_expression (expressionS
*expressionP
)
2060 /* Help out with CSE. */
2061 valueT final_val
= expressionP
->X_add_number
;
2062 symbolS
*add_symbol
= expressionP
->X_add_symbol
;
2063 symbolS
*orig_add_symbol
= add_symbol
;
2064 symbolS
*op_symbol
= expressionP
->X_op_symbol
;
2065 operatorT op
= expressionP
->X_op
;
2067 segT seg_left
, seg_right
;
2068 fragS
*frag_left
, *frag_right
;
2083 if (!snapshot_symbol (&add_symbol
, &left
, &seg_left
, &frag_left
))
2091 if (!snapshot_symbol (&add_symbol
, &left
, &seg_left
, &frag_left
))
2094 if (seg_left
!= absolute_section
)
2097 if (op
== O_logical_not
)
2099 else if (op
== O_uminus
)
2111 case O_bit_inclusive_or
:
2113 case O_bit_exclusive_or
:
2125 if (!snapshot_symbol (&add_symbol
, &left
, &seg_left
, &frag_left
)
2126 || !snapshot_symbol (&op_symbol
, &right
, &seg_right
, &frag_right
))
2129 /* Simplify addition or subtraction of a constant by folding the
2130 constant into X_add_number. */
2133 if (seg_right
== absolute_section
)
2139 else if (seg_left
== absolute_section
)
2143 seg_left
= seg_right
;
2144 add_symbol
= op_symbol
;
2145 orig_add_symbol
= expressionP
->X_op_symbol
;
2150 else if (op
== O_subtract
)
2152 if (seg_right
== absolute_section
)
2160 /* Equality and non-equality tests are permitted on anything.
2161 Subtraction, and other comparison operators are permitted if
2162 both operands are in the same section.
2163 Shifts by constant zero are permitted on anything.
2164 Multiplies, bit-ors, and bit-ands with constant zero are
2165 permitted on anything.
2166 Multiplies and divides by constant one are permitted on
2168 Binary operations with both operands being the same register
2169 or undefined symbol are permitted if the result doesn't depend
2171 Otherwise, both operands must be absolute. We already handled
2172 the case of addition or subtraction of a constant above. */
2174 if (!(seg_left
== absolute_section
2175 && seg_right
== absolute_section
)
2176 && !(op
== O_eq
|| op
== O_ne
)
2177 && !((op
== O_subtract
2178 || op
== O_lt
|| op
== O_le
|| op
== O_ge
|| op
== O_gt
)
2179 && seg_left
== seg_right
2181 || frag_offset_fixed_p (frag_left
, frag_right
, &frag_off
))
2182 && (seg_left
!= reg_section
|| left
== right
)
2183 && (seg_left
!= undefined_section
|| add_symbol
== op_symbol
)))
2185 if ((seg_left
== absolute_section
&& left
== 0)
2186 || (seg_right
== absolute_section
&& right
== 0))
2188 if (op
== O_bit_exclusive_or
|| op
== O_bit_inclusive_or
)
2190 if (!(seg_right
== absolute_section
&& right
== 0))
2192 seg_left
= seg_right
;
2194 add_symbol
= op_symbol
;
2195 orig_add_symbol
= expressionP
->X_op_symbol
;
2200 else if (op
== O_left_shift
|| op
== O_right_shift
)
2202 if (!(seg_left
== absolute_section
&& left
== 0))
2208 else if (op
!= O_multiply
2209 && op
!= O_bit_or_not
&& op
!= O_bit_and
)
2212 else if (op
== O_multiply
2213 && seg_left
== absolute_section
&& left
== 1)
2215 seg_left
= seg_right
;
2217 add_symbol
= op_symbol
;
2218 orig_add_symbol
= expressionP
->X_op_symbol
;
2222 else if ((op
== O_multiply
|| op
== O_divide
)
2223 && seg_right
== absolute_section
&& right
== 1)
2228 else if (!(left
== right
2229 && ((seg_left
== reg_section
&& seg_right
== reg_section
)
2230 || (seg_left
== undefined_section
2231 && seg_right
== undefined_section
2232 && add_symbol
== op_symbol
))))
2234 else if (op
== O_bit_and
|| op
== O_bit_inclusive_or
)
2239 else if (op
!= O_bit_exclusive_or
&& op
!= O_bit_or_not
)
2243 right
+= frag_off
/ OCTETS_PER_BYTE
;
2246 case O_add
: left
+= right
; break;
2247 case O_subtract
: left
-= right
; break;
2248 case O_multiply
: left
*= right
; break;
2252 left
= (offsetT
) left
/ (offsetT
) right
;
2257 left
= (offsetT
) left
% (offsetT
) right
;
2259 case O_left_shift
: left
<<= right
; break;
2260 case O_right_shift
: left
>>= right
; break;
2261 case O_bit_inclusive_or
: left
|= right
; break;
2262 case O_bit_or_not
: left
|= ~right
; break;
2263 case O_bit_exclusive_or
: left
^= right
; break;
2264 case O_bit_and
: left
&= right
; break;
2267 left
= (left
== right
2268 && seg_left
== seg_right
2269 && (finalize_syms
|| frag_left
== frag_right
)
2270 && (seg_left
!= undefined_section
2271 || add_symbol
== op_symbol
)
2272 ? ~ (valueT
) 0 : 0);
2277 left
= (offsetT
) left
< (offsetT
) right
? ~ (valueT
) 0 : 0;
2280 left
= (offsetT
) left
<= (offsetT
) right
? ~ (valueT
) 0 : 0;
2283 left
= (offsetT
) left
>= (offsetT
) right
? ~ (valueT
) 0 : 0;
2286 left
= (offsetT
) left
> (offsetT
) right
? ~ (valueT
) 0 : 0;
2288 case O_logical_and
: left
= left
&& right
; break;
2289 case O_logical_or
: left
= left
|| right
; break;
2299 if (seg_left
== absolute_section
)
2301 else if (seg_left
== reg_section
&& final_val
== 0)
2303 else if (!symbol_same_p (add_symbol
, orig_add_symbol
))
2305 expressionP
->X_add_symbol
= add_symbol
;
2307 expressionP
->X_op
= op
;
2309 if (op
== O_constant
|| op
== O_register
)
2311 expressionP
->X_add_number
= final_val
;
2316 /* This lives here because it belongs equally in expr.c & read.c.
2317 expr.c is just a branch office read.c anyway, and putting it
2318 here lessens the crowd at read.c.
2320 Assume input_line_pointer is at start of symbol name, or the
2321 start of a double quote enclosed symbol name.
2322 Advance input_line_pointer past symbol name.
2323 Turn that character into a '\0', returning its former value,
2324 which may be the closing double quote.
2325 This allows a string compare (RMS wants symbol names to be strings)
2327 There will always be a char following symbol name, because all good
2328 lines end in end-of-line. */
2331 get_symbol_name (char ** ilp_return
)
2335 * ilp_return
= input_line_pointer
;
2336 /* We accept \001 in a name in case this is being called with a
2337 constructed string. */
2338 if (is_name_beginner (c
= *input_line_pointer
++) || c
== '\001')
2340 while (is_part_of_name (c
= *input_line_pointer
++)
2343 if (is_name_ender (c
))
2344 c
= *input_line_pointer
++;
2348 bfd_boolean backslash_seen
;
2350 * ilp_return
= input_line_pointer
;
2353 backslash_seen
= c
== '\\';
2354 c
= * input_line_pointer
++;
2356 while (c
!= 0 && (c
!= '"' || backslash_seen
));
2359 as_warn (_("missing closing '\"'"));
2361 *--input_line_pointer
= 0;
2365 /* Replace the NUL character pointed to by input_line_pointer
2366 with C. If C is \" then advance past it. Return the character
2367 now pointed to by input_line_pointer. */
2370 restore_line_pointer (char c
)
2372 * input_line_pointer
= c
;
2374 c
= * ++ input_line_pointer
;
2379 get_single_number (void)
2382 operand (&exp
, expr_normal
);
2383 return exp
.X_add_number
;