1 /* Parse C expressions for cpplib.
2 Copyright (C) 1987, 92, 94, 95, 97, 98, 1999, 2000 Free Software Foundation.
3 Contributed by Per Bothner, 1994.
5 This program is free software; you can redistribute it and/or modify it
6 under the terms of the GNU General Public License as published by the
7 Free Software Foundation; either version 2, or (at your option) any
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA. */
20 /* Parse a C expression from text in a string */
27 #ifndef CHAR_TYPE_SIZE
28 #define CHAR_TYPE_SIZE BITS_PER_UNIT
32 #define INT_TYPE_SIZE BITS_PER_WORD
35 #ifndef LONG_TYPE_SIZE
36 #define LONG_TYPE_SIZE BITS_PER_WORD
39 #ifndef WCHAR_TYPE_SIZE
40 #define WCHAR_TYPE_SIZE INT_TYPE_SIZE
43 #ifndef MAX_CHAR_TYPE_SIZE
44 #define MAX_CHAR_TYPE_SIZE CHAR_TYPE_SIZE
47 #ifndef MAX_INT_TYPE_SIZE
48 #define MAX_INT_TYPE_SIZE INT_TYPE_SIZE
51 #ifndef MAX_LONG_TYPE_SIZE
52 #define MAX_LONG_TYPE_SIZE LONG_TYPE_SIZE
55 #ifndef MAX_WCHAR_TYPE_SIZE
56 #define MAX_WCHAR_TYPE_SIZE WCHAR_TYPE_SIZE
59 #define MAX_CHAR_TYPE_MASK (MAX_CHAR_TYPE_SIZE < HOST_BITS_PER_WIDEST_INT \
60 ? (~(~(HOST_WIDEST_INT) 0 << MAX_CHAR_TYPE_SIZE)) \
61 : ~ (HOST_WIDEST_INT) 0)
63 #define MAX_WCHAR_TYPE_MASK (MAX_WCHAR_TYPE_SIZE < HOST_BITS_PER_WIDEST_INT \
64 ? ~(~(HOST_WIDEST_INT) 0 << MAX_WCHAR_TYPE_SIZE) \
65 : ~ (HOST_WIDEST_INT) 0)
67 /* Yield nonzero if adding two numbers with A's and B's signs can yield a
68 number with SUM's sign, where A, B, and SUM are all C integers. */
69 #define possible_sum_sign(a, b, sum) ((((a) ^ (b)) | ~ ((a) ^ (sum))) < 0)
71 static void integer_overflow
PARAMS ((cpp_reader
*));
72 static HOST_WIDEST_INT left_shift
PARAMS ((cpp_reader
*, HOST_WIDEST_INT
,
74 unsigned HOST_WIDEST_INT
));
75 static HOST_WIDEST_INT right_shift
PARAMS ((cpp_reader
*, HOST_WIDEST_INT
,
77 unsigned HOST_WIDEST_INT
));
78 static struct op parse_number
PARAMS ((cpp_reader
*, const cpp_token
*));
79 static struct op parse_charconst
PARAMS ((cpp_reader
*, const cpp_token
*));
80 static struct op parse_defined
PARAMS ((cpp_reader
*));
81 static struct op parse_assertion
PARAMS ((cpp_reader
*));
82 static HOST_WIDEST_INT parse_escape
PARAMS ((cpp_reader
*, const U_CHAR
**,
83 const U_CHAR
*, HOST_WIDEST_INT
));
84 static struct op lex
PARAMS ((cpp_reader
*, int));
89 U_CHAR prio
; /* Priority of op. */
91 U_CHAR unsignedp
; /* True if value should be treated as unsigned. */
92 HOST_WIDEST_INT value
; /* The value logically "right" of op. */
95 /* There is no "error" token, but we can't get comments in #if, so we can
96 abuse that token type. */
97 #define CPP_ERROR CPP_COMMENT
99 /* With -O2, gcc appears to produce nice code, moving the error
100 message load and subsequent jump completely out of the main path. */
101 #define CPP_ICE(msgid) \
102 do { cpp_ice (pfile, msgid); goto syntax_error; } while(0)
103 #define SYNTAX_ERROR(msgid) \
104 do { cpp_error (pfile, msgid); goto syntax_error; } while(0)
105 #define SYNTAX_ERROR2(msgid, arg) \
106 do { cpp_error (pfile, msgid, arg); goto syntax_error; } while(0)
108 /* Parse and convert an integer for #if. Accepts decimal, hex, or octal
109 with or without size suffixes. */
117 const struct suffix vsuf_1
[] = {
118 { "u", 1, 0 }, { "U", 1, 0 },
119 { "l", 0, 1 }, { "L", 0, 1 }
122 const struct suffix vsuf_2
[] = {
123 { "ul", 1, 1 }, { "UL", 1, 1 }, { "uL", 1, 1 }, { "Ul", 1, 1 },
124 { "lu", 1, 1 }, { "LU", 1, 1 }, { "Lu", 1, 1 }, { "lU", 1, 1 },
125 { "ll", 0, 2 }, { "LL", 0, 2 }
128 const struct suffix vsuf_3
[] = {
129 { "ull", 1, 2 }, { "ULL", 1, 2 }, { "uLL", 1, 2 }, { "Ull", 1, 2 },
130 { "llu", 1, 2 }, { "LLU", 1, 2 }, { "LLu", 1, 2 }, { "llU", 1, 2 }
132 #define Nsuff(tab) (sizeof tab / sizeof (struct suffix))
135 parse_number (pfile
, tok
)
137 const cpp_token
*tok
;
140 const U_CHAR
*start
= tok
->val
.str
.text
;
141 const U_CHAR
*end
= start
+ tok
->val
.str
.len
;
142 const U_CHAR
*p
= start
;
144 unsigned HOST_WIDEST_INT n
= 0, nd
, MAX_over_base
;
147 int digit
, largest_digit
= 0;
148 const struct suffix
*sufftab
;
154 if (end
- start
>= 3 && (p
[1] == 'x' || p
[1] == 'X'))
166 /* Some buggy compilers (e.g. MPW C) seem to need both casts. */
167 MAX_over_base
= (((unsigned HOST_WIDEST_INT
) -1)
168 / ((unsigned HOST_WIDEST_INT
) base
));
174 if (c
>= '0' && c
<= '9')
176 /* We believe that in all live character sets, a-f are
177 consecutive, and so are A-F. */
178 else if (base
== 16 && c
>= 'a' && c
<= 'f')
179 digit
= c
- 'a' + 10;
180 else if (base
== 16 && c
>= 'A' && c
<= 'F')
181 digit
= c
- 'A' + 10;
185 if (largest_digit
< digit
)
186 largest_digit
= digit
;
187 nd
= n
* base
+ digit
;
188 overflow
|= MAX_over_base
< n
|| nd
< n
;
194 /* Check for a floating point constant. Note that float constants
195 with an exponent or suffix but no decimal point are technically
196 illegal (C99 6.4.4.2) but accepted elsewhere. */
197 if ((c
== '.' || c
== 'F' || c
== 'f')
198 || (base
== 10 && (c
== 'E' || c
== 'e')
199 && p
+1 < end
&& (p
[1] == '+' || p
[1] == '-'))
200 || (base
== 16 && (c
== 'P' || c
== 'p')
201 && p
+1 < end
&& (p
[1] == '+' || p
[1] == '-')))
202 SYNTAX_ERROR ("floating point numbers are not valid in #if");
204 /* Determine the suffix. l means long, and u means unsigned.
205 See the suffix tables, above. */
208 case 1: sufftab
= vsuf_1
; nsuff
= Nsuff(vsuf_1
); break;
209 case 2: sufftab
= vsuf_2
; nsuff
= Nsuff(vsuf_2
); break;
210 case 3: sufftab
= vsuf_3
; nsuff
= Nsuff(vsuf_3
); break;
211 default: goto invalid_suffix
;
214 for (i
= 0; i
< nsuff
; i
++)
215 if (memcmp (p
, sufftab
[i
].s
, end
- p
) == 0)
219 op
.unsignedp
= sufftab
[i
].u
;
221 if (CPP_OPTION (pfile
, c89
) && sufftab
[i
].l
== 2)
222 SYNTAX_ERROR ("too many 'l' suffixes in integer constant");
225 if (base
<= largest_digit
)
226 cpp_pedwarn (pfile
, "integer constant contains digits beyond the radix");
229 cpp_pedwarn (pfile
, "integer constant out of range");
231 /* If too big to be signed, consider it unsigned. */
232 else if ((HOST_WIDEST_INT
) n
< 0 && ! op
.unsignedp
)
235 cpp_warning (pfile
, "integer constant is so large that it is unsigned");
244 cpp_error (pfile
, "invalid suffix '%.*s' on integer constant",
251 /* Parse and convert a character constant for #if. Understands backslash
252 escapes (\n, \031) and multibyte characters (if so configured). */
254 parse_charconst (pfile
, tok
)
256 const cpp_token
*tok
;
259 HOST_WIDEST_INT result
= 0;
262 unsigned int width
= MAX_CHAR_TYPE_SIZE
, mask
= MAX_CHAR_TYPE_MASK
;
264 const U_CHAR
*ptr
= tok
->val
.str
.text
;
265 const U_CHAR
*end
= ptr
+ tok
->val
.str
.len
;
269 if (tok
->type
== CPP_WCHAR
)
270 width
= MAX_WCHAR_TYPE_SIZE
, mask
= MAX_WCHAR_TYPE_MASK
;
271 max_chars
= MAX_LONG_TYPE_SIZE
/ width
;
277 CPP_ICE ("unescaped ' in character constant");
280 c
= parse_escape (pfile
, &ptr
, end
, mask
);
281 if (width
< HOST_BITS_PER_INT
282 && (unsigned int) c
>= (unsigned int)(1 << width
))
284 "escape sequence out of range for character");
287 /* Merge character into result; ignore excess chars. */
288 if (++num_chars
<= max_chars
)
290 if (width
< HOST_BITS_PER_INT
)
291 result
= (result
<< width
) | (c
& ((1 << width
) - 1));
298 SYNTAX_ERROR ("empty character constant");
299 else if (num_chars
> max_chars
)
300 SYNTAX_ERROR ("character constant too long");
301 else if (num_chars
!= 1)
302 cpp_warning (pfile
, "multi-character character constant");
304 /* If char type is signed, sign-extend the constant. */
305 num_bits
= num_chars
* width
;
307 if (pfile
->spec_nodes
->n__CHAR_UNSIGNED__
->type
!= T_VOID
308 || ((result
>> (num_bits
- 1)) & 1) == 0)
309 op
.value
= result
& ((unsigned HOST_WIDEST_INT
) ~0
310 >> (HOST_BITS_PER_WIDEST_INT
- num_bits
));
312 op
.value
= result
| ~((unsigned HOST_WIDEST_INT
) ~0
313 >> (HOST_BITS_PER_WIDEST_INT
- num_bits
));
315 /* This is always a signed type. */
326 parse_defined (pfile
)
330 const cpp_token
*tok
;
334 tok
= _cpp_get_raw_token (pfile
);
335 if (tok
->type
== CPP_OPEN_PAREN
)
338 tok
= _cpp_get_raw_token (pfile
);
341 if (tok
->type
!= CPP_NAME
)
342 SYNTAX_ERROR ("\"defined\" without an identifier");
344 if (paren
&& _cpp_get_raw_token (pfile
)->type
!= CPP_CLOSE_PAREN
)
345 SYNTAX_ERROR ("missing close paren after \"defined\"");
347 if (tok
->val
.node
->type
== T_POISON
)
348 SYNTAX_ERROR2 ("attempt to use poisoned \"%s\"", tok
->val
.node
->name
);
350 op
.value
= tok
->val
.node
->type
!= T_VOID
;
361 parse_assertion (pfile
)
365 struct answer
*answer
;
369 hp
= _cpp_parse_assertion (pfile
, &answer
);
372 /* If we get here, the syntax is valid. */
375 op
.value
= (hp
->type
== T_ASSERTION
&&
376 (answer
== 0 || *_cpp_find_answer (hp
, &answer
->list
) != 0));
379 FREE_ANSWER (answer
);
384 /* Read one token. */
387 lex (pfile
, skip_evaluation
)
392 const cpp_token
*tok
;
395 tok
= _cpp_get_token (pfile
);
399 case CPP_PLACEMARKER
:
404 return parse_number (pfile
, tok
);
407 return parse_charconst (pfile
, tok
);
411 SYNTAX_ERROR ("string constants are not valid in #if");
414 SYNTAX_ERROR ("floating point numbers are not valid in #if");
417 if (ISGRAPH (tok
->val
.aux
))
418 SYNTAX_ERROR2 ("invalid character '%c' in #if", tok
->val
.aux
);
420 SYNTAX_ERROR2 ("invalid character '\\%03o' in #if", tok
->val
.aux
);
423 return parse_defined (pfile
);
430 if (CPP_OPTION (pfile
, warn_undef
) && !skip_evaluation
)
431 cpp_warning (pfile
, "\"%s\" is not defined", tok
->val
.node
->name
);
435 return parse_assertion (pfile
);
438 if ((tok
->type
> CPP_EQ
&& tok
->type
< CPP_PLUS_EQ
)
439 || tok
->type
== CPP_EOF
)
445 SYNTAX_ERROR2("'%s' is not valid in #if expressions", TOKEN_NAME (tok
));
453 /* Parse a C escape sequence. STRING_PTR points to a variable
454 containing a pointer to the string to parse. That pointer
455 is updated past the characters we use. The value of the
456 escape sequence is returned.
458 If \ is followed by 000, we return 0 and leave the string pointer
459 after the zeros. A value of 0 does not mean end of string. */
461 static HOST_WIDEST_INT
462 parse_escape (pfile
, string_ptr
, limit
, result_mask
)
464 const U_CHAR
**string_ptr
;
466 HOST_WIDEST_INT result_mask
;
468 const U_CHAR
*ptr
= *string_ptr
;
469 /* We know we have at least one following character. */
473 case 'a': c
= TARGET_BELL
; break;
474 case 'b': c
= TARGET_BS
; break;
475 case 'f': c
= TARGET_FF
; break;
476 case 'n': c
= TARGET_NEWLINE
; break;
477 case 'r': c
= TARGET_CR
; break;
478 case 't': c
= TARGET_TAB
; break;
479 case 'v': c
= TARGET_VT
; break;
482 if (CPP_PEDANTIC (pfile
))
483 cpp_pedwarn (pfile
, "non-ISO-standard escape sequence, '\\%c'", c
);
487 case '0': case '1': case '2': case '3':
488 case '4': case '5': case '6': case '7':
490 unsigned int i
= c
- '0';
498 if (c
< '0' || c
> '7')
501 i
= (i
<< 3) + c
- '0';
503 if (i
!= (i
& result_mask
))
506 cpp_pedwarn (pfile
, "octal escape sequence out of range");
514 unsigned int i
= 0, overflow
= 0;
515 int digits_found
= 0, digit
;
521 if (c
>= '0' && c
<= '9')
523 else if (c
>= 'a' && c
<= 'f')
524 digit
= c
- 'a' + 10;
525 else if (c
>= 'A' && c
<= 'F')
526 digit
= c
- 'A' + 10;
530 overflow
|= i
^ (i
<< 4 >> 4);
531 i
= (i
<< 4) + digit
;
535 cpp_error (pfile
, "\\x used with no following hex digits");
536 if (overflow
| (i
!= (i
& result_mask
)))
539 cpp_pedwarn (pfile
, "hex escape sequence out of range");
550 integer_overflow (pfile
)
553 if (CPP_PEDANTIC (pfile
))
554 cpp_pedwarn (pfile
, "integer overflow in preprocessor expression");
557 static HOST_WIDEST_INT
558 left_shift (pfile
, a
, unsignedp
, b
)
561 unsigned int unsignedp
;
562 unsigned HOST_WIDEST_INT b
;
564 if (b
>= HOST_BITS_PER_WIDEST_INT
)
566 if (! unsignedp
&& a
!= 0)
567 integer_overflow (pfile
);
571 return (unsigned HOST_WIDEST_INT
) a
<< b
;
574 HOST_WIDEST_INT l
= a
<< b
;
576 integer_overflow (pfile
);
581 static HOST_WIDEST_INT
582 right_shift (pfile
, a
, unsignedp
, b
)
583 cpp_reader
*pfile ATTRIBUTE_UNUSED
;
585 unsigned int unsignedp
;
586 unsigned HOST_WIDEST_INT b
;
588 if (b
>= HOST_BITS_PER_WIDEST_INT
)
589 return unsignedp
? 0 : a
>> (HOST_BITS_PER_WIDEST_INT
- 1);
591 return (unsigned HOST_WIDEST_INT
) a
>> b
;
596 /* Operator precedence and flags table.
598 After an operator is returned from the lexer, if it has priority less
599 than or equal to the operator on the top of the stack, we reduce the
600 stack by one operator and repeat the test. Since equal priorities
601 reduce, this is naturally left-associative.
603 We handle right-associative operators by clearing the lower bit of all
604 left-associative operators, and setting it for right-associative ones.
605 After the reduction phase of a new operator, just before it is pushed
606 onto the stack, its RIGHT_ASSOC bit is cleared. The effect is that
607 during the reduction phase, the current right-associative operator has
608 a priority one greater than any other operator of otherwise equal
609 precedence that has been pushed on the top of the stack. This avoids
610 a reduction pass, and effectively makes the logic right-associative.
612 The remaining cases are '(' and ')'. We handle '(' by skipping the
613 reduction phase completely. ')' is given lower priority than
614 everything else, including '(', effectively forcing a reduction of the
615 parenthesised expression. If there is no matching '(', the stack will
616 be reduced all the way to the beginning, exiting the parser in the
617 same way as the ultra-low priority end-of-expression dummy operator.
618 The exit code checks to see if the operator that caused it is ')', and
619 if so outputs an appropriate error message.
621 The parser assumes all shifted operators require a right operand
622 unless the flag NO_R_OPERAND is set, and similarly for NO_L_OPERAND.
623 These semantics are automatically checked, any extra semantics need to
624 be handled with operator-specific code. */
627 #define FLAG_MASK ((1 << FLAG_BITS) - 1)
628 #define PRIO_SHIFT (FLAG_BITS + 1)
629 #define EXTRACT_PRIO(cnst) (cnst >> FLAG_BITS)
630 #define EXTRACT_FLAGS(cnst) (cnst & FLAG_MASK)
633 #define HAVE_VALUE (1 << 0)
634 #define NO_L_OPERAND (1 << 1)
635 #define NO_R_OPERAND (1 << 2)
636 #define SHORT_CIRCUIT (1 << 3)
638 /* Priority and flag combinations. */
639 #define RIGHT_ASSOC (1 << FLAG_BITS)
640 #define FORCE_REDUCE_PRIO (0 << PRIO_SHIFT)
641 #define CLOSE_PAREN_PRIO (1 << PRIO_SHIFT)
642 #define OPEN_PAREN_PRIO ((2 << PRIO_SHIFT) | NO_L_OPERAND)
643 #define COMMA_PRIO (3 << PRIO_SHIFT)
644 #define COND_PRIO ((4 << PRIO_SHIFT) | RIGHT_ASSOC | SHORT_CIRCUIT)
645 #define COLON_PRIO ((5 << PRIO_SHIFT) | SHORT_CIRCUIT)
646 #define OROR_PRIO ((6 << PRIO_SHIFT) | SHORT_CIRCUIT)
647 #define ANDAND_PRIO ((7 << PRIO_SHIFT) | SHORT_CIRCUIT)
648 #define OR_PRIO (8 << PRIO_SHIFT)
649 #define XOR_PRIO (9 << PRIO_SHIFT)
650 #define AND_PRIO (10 << PRIO_SHIFT)
651 #define MINMAX_PRIO (11 << PRIO_SHIFT)
652 #define EQUAL_PRIO (12 << PRIO_SHIFT)
653 #define LESS_PRIO (13 << PRIO_SHIFT)
654 #define SHIFT_PRIO (14 << PRIO_SHIFT)
655 #define PLUS_PRIO (15 << PRIO_SHIFT)
656 #define MUL_PRIO (16 << PRIO_SHIFT)
657 #define UNARY_PRIO ((17 << PRIO_SHIFT) | RIGHT_ASSOC | NO_L_OPERAND)
659 /* Operator to priority map. Must be in the same order as the first
660 N entries of enum cpp_ttype. */
664 /* EQ */ 0, /* dummy entry - can't happen */
665 /* NOT */ UNARY_PRIO
,
666 /* GREATER */ LESS_PRIO
,
667 /* LESS */ LESS_PRIO
,
668 /* PLUS */ UNARY_PRIO
, /* note these two can be unary */
669 /* MINUS */ UNARY_PRIO
, /* or binary */
676 /* RSHIFT */ SHIFT_PRIO
,
677 /* LSHIFT */ SHIFT_PRIO
,
678 /* MIN */ MINMAX_PRIO
, /* C++ specific */
679 /* MAX */ MINMAX_PRIO
, /* extensions */
681 /* COMPL */ UNARY_PRIO
,
682 /* AND_AND */ ANDAND_PRIO
,
683 /* OR_OR */ OROR_PRIO
,
684 /* QUERY */ COND_PRIO
,
685 /* COLON */ COLON_PRIO
,
686 /* COMMA */ COMMA_PRIO
,
687 /* OPEN_PAREN */ OPEN_PAREN_PRIO
,
688 /* CLOSE_PAREN */ CLOSE_PAREN_PRIO
,
689 /* EQ_EQ */ EQUAL_PRIO
,
690 /* NOT_EQ */ EQUAL_PRIO
,
691 /* GREATER_EQ */ LESS_PRIO
,
692 /* LESS_EQ */ LESS_PRIO
695 #define COMPARE(OP) \
696 top->unsignedp = 0; \
697 top->value = (unsigned1 | unsigned2) \
698 ? (unsigned HOST_WIDEST_INT) v1 OP (unsigned HOST_WIDEST_INT) v2 \
700 #define EQUALITY(OP) \
701 top->value = v1 OP v2; \
703 #define BITWISE(OP) \
704 top->value = v1 OP v2; \
705 top->unsignedp = unsigned1 | unsigned2;
707 top->value = (v1 OP v2) ? v1 : v2; \
708 top->unsignedp = unsigned1 | unsigned2;
710 top->value = OP v2; \
711 top->unsignedp = unsigned2; \
712 top->flags |= HAVE_VALUE;
713 #define SHIFT(PSH, MSH) \
714 if (skip_evaluation) \
716 top->unsignedp = unsigned1; \
717 if (v2 < 0 && ! unsigned2) \
718 top->value = MSH (pfile, v1, unsigned1, -v2); \
720 top->value = PSH (pfile, v1, unsigned1, v2);
722 /* Parse and evaluate a C expression, reading from PFILE.
723 Returns the truth value of the expression. */
725 #define TYPE_NAME(t) _cpp_token_spellings[t].name
728 _cpp_parse_expr (pfile
)
731 /* The implementation is an operator precedence parser, i.e. a
732 bottom-up parser, using a stack for not-yet-reduced tokens.
734 The stack base is 'stack', and the current stack pointer is 'top'.
735 There is a stack element for each operator (only),
736 and the most recently pushed operator is 'top->op'.
737 An operand (value) is stored in the 'value' field of the stack
738 element of the operator that precedes it.
739 In that case the 'flags' field has the HAVE_VALUE flag set. */
741 #define INIT_STACK_SIZE 20
742 struct op init_stack
[INIT_STACK_SIZE
];
743 struct op
*stack
= init_stack
;
744 struct op
*limit
= stack
+ INIT_STACK_SIZE
;
745 register struct op
*top
= stack
+ 1;
746 int skip_evaluation
= 0;
749 /* Save parser state and set it to something sane. */
750 int save_skipping
= pfile
->skipping
;
753 /* We've finished when we try to reduce this. */
755 /* Nifty way to catch missing '('. */
756 top
->prio
= EXTRACT_PRIO(CLOSE_PAREN_PRIO
);
757 /* Avoid missing right operand checks. */
758 top
->flags
= NO_R_OPERAND
;
767 op
= lex (pfile
, skip_evaluation
);
769 /* If the token is an operand, push its value and get next
770 token. If it is an operator, get its priority and flags, and
771 try to reduce the expression on the stack. */
778 /* Push a value onto the stack. */
779 if (top
->flags
& HAVE_VALUE
)
780 SYNTAX_ERROR ("missing binary operator");
781 top
->value
= op
.value
;
782 top
->unsignedp
= op
.unsignedp
;
783 top
->flags
|= HAVE_VALUE
;
786 case CPP_EOF
: prio
= FORCE_REDUCE_PRIO
; break;
788 case CPP_MINUS
: prio
= PLUS_PRIO
; if (top
->flags
& HAVE_VALUE
) break;
789 /* else unary; fall through */
790 default: prio
= op_to_prio
[op
.op
]; break;
793 /* Separate the operator's code into priority and flags. */
794 flags
= EXTRACT_FLAGS(prio
);
795 prio
= EXTRACT_PRIO(prio
);
796 if (prio
== EXTRACT_PRIO(OPEN_PAREN_PRIO
))
799 /* Check for reductions. Then push the operator. */
800 while (prio
<= top
->prio
)
802 HOST_WIDEST_INT v1
, v2
;
803 unsigned int unsigned1
, unsigned2
;
805 /* Most operators that can appear on the stack require a
806 right operand. Check this before trying to reduce. */
807 if ((top
->flags
& (HAVE_VALUE
| NO_R_OPERAND
)) == 0)
809 if (top
->op
== CPP_OPEN_PAREN
)
810 SYNTAX_ERROR ("void expression between '(' and ')'");
812 SYNTAX_ERROR2 ("operator '%s' has no right operand",
813 TYPE_NAME (top
->op
));
816 unsigned2
= top
->unsignedp
, v2
= top
->value
;
818 unsigned1
= top
->unsignedp
, v1
= top
->value
;
820 /* Now set top->value = (top[1].op)(v1, v2); */
824 cpp_ice (pfile
, "impossible operator type %s", TYPE_NAME (op
.op
));
827 case CPP_NOT
: UNARY(!); break;
828 case CPP_COMPL
: UNARY(~); break;
829 case CPP_LESS
: COMPARE(<); break;
830 case CPP_GREATER
: COMPARE(>); break;
831 case CPP_LESS_EQ
: COMPARE(<=); break;
832 case CPP_GREATER_EQ
: COMPARE(>=); break;
833 case CPP_EQ_EQ
: EQUALITY(==); break;
834 case CPP_NOT_EQ
: EQUALITY(!=); break;
835 case CPP_AND
: BITWISE(&); break;
836 case CPP_XOR
: BITWISE(^); break;
837 case CPP_OR
: BITWISE(|); break;
838 case CPP_LSHIFT
: SHIFT(left_shift
, right_shift
); break;
839 case CPP_RSHIFT
: SHIFT(right_shift
, left_shift
); break;
840 case CPP_MIN
: MINMAX(<); break;
841 case CPP_MAX
: MINMAX(>); break;
844 if (!(top
->flags
& HAVE_VALUE
))
846 /* Can't use UNARY(+) because K+R C did not have unary
847 plus. Can't use UNARY() because some compilers object
848 to the empty argument. */
850 top
->unsignedp
= unsigned2
;
851 top
->flags
|= HAVE_VALUE
;
853 if (CPP_WTRADITIONAL (pfile
))
855 "traditional C rejects the unary plus operator");
859 top
->value
= v1
+ v2
;
860 top
->unsignedp
= unsigned1
| unsigned2
;
861 if (! top
->unsignedp
&& ! skip_evaluation
862 && ! possible_sum_sign (v1
, v2
, top
->value
))
863 integer_overflow (pfile
);
867 if (!(top
->flags
& HAVE_VALUE
))
870 if (!skip_evaluation
&& (top
->value
& v2
) < 0 && !unsigned2
)
871 integer_overflow (pfile
);
875 top
->value
= v1
- v2
;
876 top
->unsignedp
= unsigned1
| unsigned2
;
877 if (! top
->unsignedp
&& ! skip_evaluation
878 && ! possible_sum_sign (top
->value
, v2
, v1
))
879 integer_overflow (pfile
);
883 top
->unsignedp
= unsigned1
| unsigned2
;
885 top
->value
= (unsigned HOST_WIDEST_INT
) v1
* v2
;
886 else if (!skip_evaluation
)
888 top
->value
= v1
* v2
;
889 if (v1
&& (top
->value
/ v1
!= v2
890 || (top
->value
& v1
& v2
) < 0))
891 integer_overflow (pfile
);
899 SYNTAX_ERROR ("division by zero in #if");
900 top
->unsignedp
= unsigned1
| unsigned2
;
901 if (top
[1].op
== CPP_DIV
)
904 top
->value
= (unsigned HOST_WIDEST_INT
) v1
/ v2
;
907 top
->value
= v1
/ v2
;
908 if ((top
->value
& v1
& v2
) < 0)
909 integer_overflow (pfile
);
915 top
->value
= (unsigned HOST_WIDEST_INT
) v1
% v2
;
917 top
->value
= v1
% v2
;
922 top
->value
= v1
|| v2
;
924 if (v1
) skip_evaluation
--;
927 top
->value
= v1
&& v2
;
929 if (!v1
) skip_evaluation
--;
932 if (CPP_PEDANTIC (pfile
))
933 cpp_pedwarn (pfile
, "comma operator in operand of #if");
935 top
->unsignedp
= unsigned2
;
938 SYNTAX_ERROR ("syntax error '?' without following ':'");
940 if (top
[0].op
!= CPP_QUERY
)
941 SYNTAX_ERROR ("syntax error ':' without preceding '?'");
943 if (top
->value
) skip_evaluation
--;
944 top
->value
= top
->value
? v1
: v2
;
945 top
->unsignedp
= unsigned1
| unsigned2
;
948 if (op
.op
!= CPP_CLOSE_PAREN
)
949 SYNTAX_ERROR ("missing ')' in expression");
951 op
.unsignedp
= unsigned2
;
954 /* Reducing this dummy operator indicates we've finished. */
955 if (op
.op
== CPP_CLOSE_PAREN
)
956 SYNTAX_ERROR ("missing '(' in expression");
961 /* Handle short-circuit evaluations. */
962 if (flags
& SHORT_CIRCUIT
)
965 case CPP_OR_OR
: if (top
->value
) skip_evaluation
++; break;
967 case CPP_QUERY
: if (!top
->value
) skip_evaluation
++; break;
969 if (top
[-1].value
) /* Was '?' condition true? */
978 /* Check we have a left operand iff we need one. */
979 if (flags
& NO_L_OPERAND
)
981 if (top
->flags
& HAVE_VALUE
)
982 SYNTAX_ERROR2 ("missing binary operator before '%s'",
987 if (!(top
->flags
& HAVE_VALUE
))
988 SYNTAX_ERROR2 ("operator '%s' has no left operand",
992 /* Check for and handle stack overflow. */
996 struct op
*new_stack
;
997 int old_size
= (char *) limit
- (char *) stack
;
998 int new_size
= 2 * old_size
;
999 if (stack
!= init_stack
)
1000 new_stack
= (struct op
*) xrealloc (stack
, new_size
);
1003 new_stack
= (struct op
*) xmalloc (new_size
);
1004 memcpy (new_stack
, stack
, old_size
);
1007 top
= (struct op
*) ((char *) new_stack
+ old_size
);
1008 limit
= (struct op
*) ((char *) new_stack
+ new_size
);
1012 top
->prio
= prio
& ~EXTRACT_PRIO(RIGHT_ASSOC
);
1017 result
= (top
[1].value
!= 0);
1019 CPP_ICE ("unbalanced stack in #if");
1020 else if (!(top
[1].flags
& HAVE_VALUE
))
1022 SYNTAX_ERROR ("#if with no expression");
1024 result
= 0; /* Return 0 on syntax error. */
1027 /* Free dynamic stack if we allocated one. */
1028 if (stack
!= init_stack
)
1030 pfile
->skipping
= save_skipping
;