blob: 79ed8677da7a40032c373e0ce9a9d8f1eb3df786 [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- PPExpressions.cpp - Preprocessor Expression Evaluation -----------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencer5f016e22007-07-11 17:01:13 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the Preprocessor::EvaluateDirectiveExpression method,
11// which parses and evaluates integer constant expressions for #if directives.
12//
13//===----------------------------------------------------------------------===//
14//
15// FIXME: implement testing for #assert's.
16//
17//===----------------------------------------------------------------------===//
18
19#include "clang/Lex/Preprocessor.h"
20#include "clang/Lex/MacroInfo.h"
21#include "clang/Lex/LiteralSupport.h"
Douglas Gregor1fbb4472010-08-24 20:21:13 +000022#include "clang/Lex/CodeCompletionHandler.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000023#include "clang/Basic/TargetInfo.h"
Chris Lattner500d3292009-01-29 05:15:15 +000024#include "clang/Lex/LexDiagnostic.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000025#include "llvm/ADT/APSInt.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000026using namespace clang;
27
Dan Gohman3c46e8d2010-07-26 21:25:24 +000028namespace {
29
Chris Lattner8ed30442008-05-05 06:45:50 +000030/// PPValue - Represents the value of a subexpression of a preprocessor
31/// conditional and the source range covered by it.
32class PPValue {
33 SourceRange Range;
34public:
35 llvm::APSInt Val;
Mike Stump1eb44332009-09-09 15:08:12 +000036
Chris Lattner8ed30442008-05-05 06:45:50 +000037 // Default ctor - Construct an 'invalid' PPValue.
38 PPValue(unsigned BitWidth) : Val(BitWidth) {}
Mike Stump1eb44332009-09-09 15:08:12 +000039
Chris Lattner8ed30442008-05-05 06:45:50 +000040 unsigned getBitWidth() const { return Val.getBitWidth(); }
41 bool isUnsigned() const { return Val.isUnsigned(); }
Mike Stump1eb44332009-09-09 15:08:12 +000042
Chris Lattner8ed30442008-05-05 06:45:50 +000043 const SourceRange &getRange() const { return Range; }
Mike Stump1eb44332009-09-09 15:08:12 +000044
Chris Lattner8ed30442008-05-05 06:45:50 +000045 void setRange(SourceLocation L) { Range.setBegin(L); Range.setEnd(L); }
46 void setRange(SourceLocation B, SourceLocation E) {
Mike Stump1eb44332009-09-09 15:08:12 +000047 Range.setBegin(B); Range.setEnd(E);
Chris Lattner8ed30442008-05-05 06:45:50 +000048 }
49 void setBegin(SourceLocation L) { Range.setBegin(L); }
50 void setEnd(SourceLocation L) { Range.setEnd(L); }
51};
52
Dan Gohman3c46e8d2010-07-26 21:25:24 +000053}
54
Chris Lattner8ed30442008-05-05 06:45:50 +000055static bool EvaluateDirectiveSubExpr(PPValue &LHS, unsigned MinPrec,
Chris Lattnerd2177732007-07-20 16:59:19 +000056 Token &PeekTok, bool ValueLive,
Reid Spencer5f016e22007-07-11 17:01:13 +000057 Preprocessor &PP);
58
59/// DefinedTracker - This struct is used while parsing expressions to keep track
60/// of whether !defined(X) has been seen.
61///
62/// With this simple scheme, we handle the basic forms:
63/// !defined(X) and !defined X
64/// but we also trivially handle (silly) stuff like:
65/// !!!defined(X) and +!defined(X) and !+!+!defined(X) and !(defined(X)).
66struct DefinedTracker {
67 /// Each time a Value is evaluated, it returns information about whether the
68 /// parsed value is of the form defined(X), !defined(X) or is something else.
69 enum TrackerState {
70 DefinedMacro, // defined(X)
71 NotDefinedMacro, // !defined(X)
72 Unknown // Something else.
73 } State;
74 /// TheMacro - When the state is DefinedMacro or NotDefinedMacro, this
75 /// indicates the macro that was checked.
76 IdentifierInfo *TheMacro;
77};
78
John Thompsona28cc092009-10-30 13:49:06 +000079/// EvaluateDefined - Process a 'defined(sym)' expression.
Chris Lattnera3e008a2009-12-14 05:00:18 +000080static bool EvaluateDefined(PPValue &Result, Token &PeekTok, DefinedTracker &DT,
81 bool ValueLive, Preprocessor &PP) {
John Thompsona28cc092009-10-30 13:49:06 +000082 IdentifierInfo *II;
83 Result.setBegin(PeekTok.getLocation());
84
85 // Get the next token, don't expand it.
86 PP.LexUnexpandedToken(PeekTok);
87
88 // Two options, it can either be a pp-identifier or a (.
89 SourceLocation LParenLoc;
90 if (PeekTok.is(tok::l_paren)) {
91 // Found a paren, remember we saw it and skip it.
92 LParenLoc = PeekTok.getLocation();
93 PP.LexUnexpandedToken(PeekTok);
94 }
95
Douglas Gregor1fbb4472010-08-24 20:21:13 +000096 if (PeekTok.is(tok::code_completion)) {
97 if (PP.getCodeCompletionHandler())
98 PP.getCodeCompletionHandler()->CodeCompleteMacroName(false);
99 PP.LexUnexpandedToken(PeekTok);
100 }
101
John Thompsona28cc092009-10-30 13:49:06 +0000102 // If we don't have a pp-identifier now, this is an error.
103 if ((II = PeekTok.getIdentifierInfo()) == 0) {
104 PP.Diag(PeekTok, diag::err_pp_defined_requires_identifier);
105 return true;
106 }
107
108 // Otherwise, we got an identifier, is it defined to something?
109 Result.Val = II->hasMacroDefinition();
110 Result.Val.setIsUnsigned(false); // Result is signed intmax_t.
111
112 // If there is a macro, mark it used.
113 if (Result.Val != 0 && ValueLive) {
114 MacroInfo *Macro = PP.getMacroInfo(II);
115 Macro->setIsUsed(true);
116 }
117
118 // Consume identifier.
119 Result.setEnd(PeekTok.getLocation());
Chris Lattner19943152010-02-26 19:42:53 +0000120 PP.LexUnexpandedToken(PeekTok);
John Thompsona28cc092009-10-30 13:49:06 +0000121
122 // If we are in parens, ensure we have a trailing ).
123 if (LParenLoc.isValid()) {
124 if (PeekTok.isNot(tok::r_paren)) {
125 PP.Diag(PeekTok.getLocation(), diag::err_pp_missing_rparen) << "defined";
126 PP.Diag(LParenLoc, diag::note_matching) << "(";
127 return true;
128 }
129 // Consume the ).
130 Result.setEnd(PeekTok.getLocation());
131 PP.LexNonComment(PeekTok);
132 }
133
134 // Success, remember that we saw defined(X).
135 DT.State = DefinedTracker::DefinedMacro;
136 DT.TheMacro = II;
137 return false;
138}
139
Reid Spencer5f016e22007-07-11 17:01:13 +0000140/// EvaluateValue - Evaluate the token PeekTok (and any others needed) and
141/// return the computed value in Result. Return true if there was an error
142/// parsing. This function also returns information about the form of the
143/// expression in DT. See above for information on what DT means.
144///
145/// If ValueLive is false, then this value is being evaluated in a context where
146/// the result is not used. As such, avoid diagnostics that relate to
147/// evaluation.
Chris Lattner8ed30442008-05-05 06:45:50 +0000148static bool EvaluateValue(PPValue &Result, Token &PeekTok, DefinedTracker &DT,
149 bool ValueLive, Preprocessor &PP) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000150 DT.State = DefinedTracker::Unknown;
Mike Stump1eb44332009-09-09 15:08:12 +0000151
Douglas Gregorf29c5232010-08-24 22:20:20 +0000152 if (PeekTok.is(tok::code_completion)) {
153 if (PP.getCodeCompletionHandler())
154 PP.getCodeCompletionHandler()->CodeCompletePreprocessorExpression();
155 PP.LexUnexpandedToken(PeekTok);
156 }
157
Reid Spencer5f016e22007-07-11 17:01:13 +0000158 // If this token's spelling is a pp-identifier, check to see if it is
159 // 'defined' or if it is a macro. Note that we check here because many
160 // keywords are pp-identifiers, so we can't check the kind.
161 if (IdentifierInfo *II = PeekTok.getIdentifierInfo()) {
Chris Lattnerf8806622009-12-14 04:26:45 +0000162 // Handle "defined X" and "defined(X)".
163 if (II->isStr("defined"))
John Thompsona28cc092009-10-30 13:49:06 +0000164 return(EvaluateDefined(Result, PeekTok, DT, ValueLive, PP));
Chris Lattnerf8806622009-12-14 04:26:45 +0000165
166 // If this identifier isn't 'defined' or one of the special
167 // preprocessor keywords and it wasn't macro expanded, it turns
168 // into a simple 0, unless it is the C++ keyword "true", in which case it
169 // turns into "1".
170 if (ValueLive)
171 PP.Diag(PeekTok, diag::warn_pp_undef_identifier) << II;
172 Result.Val = II->getTokenID() == tok::kw_true;
173 Result.Val.setIsUnsigned(false); // "0" is signed intmax_t 0.
174 Result.setRange(PeekTok.getLocation());
175 PP.LexNonComment(PeekTok);
176 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000177 }
Mike Stump1eb44332009-09-09 15:08:12 +0000178
Reid Spencer5f016e22007-07-11 17:01:13 +0000179 switch (PeekTok.getKind()) {
180 default: // Non-value token.
Chris Lattnerd98d9752008-04-13 20:38:43 +0000181 PP.Diag(PeekTok, diag::err_pp_expr_bad_token_start_expr);
Reid Spencer5f016e22007-07-11 17:01:13 +0000182 return true;
183 case tok::eom:
184 case tok::r_paren:
185 // If there is no expression, report and exit.
186 PP.Diag(PeekTok, diag::err_pp_expected_value_in_expr);
187 return true;
188 case tok::numeric_constant: {
189 llvm::SmallString<64> IntegerBuffer;
Douglas Gregor50f6af72010-03-16 05:20:39 +0000190 bool NumberInvalid = false;
191 llvm::StringRef Spelling = PP.getSpelling(PeekTok, IntegerBuffer,
192 &NumberInvalid);
193 if (NumberInvalid)
194 return true; // a diagnostic was already reported
195
Benjamin Krameraeb863c2010-02-27 16:29:36 +0000196 NumericLiteralParser Literal(Spelling.begin(), Spelling.end(),
Reid Spencer5f016e22007-07-11 17:01:13 +0000197 PeekTok.getLocation(), PP);
198 if (Literal.hadError)
199 return true; // a diagnostic was already reported.
Mike Stump1eb44332009-09-09 15:08:12 +0000200
Chris Lattner6e400c22007-08-26 03:29:23 +0000201 if (Literal.isFloatingLiteral() || Literal.isImaginary) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000202 PP.Diag(PeekTok, diag::err_pp_illegal_floating_literal);
203 return true;
204 }
205 assert(Literal.isIntegerLiteral() && "Unknown ppnumber");
206
Neil Boothb9449512007-08-29 22:00:19 +0000207 // long long is a C99 feature.
208 if (!PP.getLangOptions().C99 && !PP.getLangOptions().CPlusPlus0x
Neil Booth79859c32007-08-29 22:13:52 +0000209 && Literal.isLongLong)
Neil Boothb9449512007-08-29 22:00:19 +0000210 PP.Diag(PeekTok, diag::ext_longlong);
211
Reid Spencer5f016e22007-07-11 17:01:13 +0000212 // Parse the integer literal into Result.
Chris Lattner8ed30442008-05-05 06:45:50 +0000213 if (Literal.GetIntegerValue(Result.Val)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000214 // Overflow parsing integer literal.
215 if (ValueLive) PP.Diag(PeekTok, diag::warn_integer_too_large);
Chris Lattner8ed30442008-05-05 06:45:50 +0000216 Result.Val.setIsUnsigned(true);
Reid Spencer5f016e22007-07-11 17:01:13 +0000217 } else {
218 // Set the signedness of the result to match whether there was a U suffix
219 // or not.
Chris Lattner8ed30442008-05-05 06:45:50 +0000220 Result.Val.setIsUnsigned(Literal.isUnsigned);
Mike Stump1eb44332009-09-09 15:08:12 +0000221
Reid Spencer5f016e22007-07-11 17:01:13 +0000222 // Detect overflow based on whether the value is signed. If signed
223 // and if the value is too large, emit a warning "integer constant is so
224 // large that it is unsigned" e.g. on 12345678901234567890 where intmax_t
225 // is 64-bits.
Chris Lattner8ed30442008-05-05 06:45:50 +0000226 if (!Literal.isUnsigned && Result.Val.isNegative()) {
Chris Lattnerb081a352008-07-03 03:47:30 +0000227 // Don't warn for a hex literal: 0x8000..0 shouldn't warn.
228 if (ValueLive && Literal.getRadix() != 16)
Chris Lattner8ed30442008-05-05 06:45:50 +0000229 PP.Diag(PeekTok, diag::warn_integer_too_large_for_signed);
230 Result.Val.setIsUnsigned(true);
Reid Spencer5f016e22007-07-11 17:01:13 +0000231 }
232 }
Mike Stump1eb44332009-09-09 15:08:12 +0000233
Reid Spencer5f016e22007-07-11 17:01:13 +0000234 // Consume the token.
Chris Lattner8ed30442008-05-05 06:45:50 +0000235 Result.setRange(PeekTok.getLocation());
Reid Spencer5f016e22007-07-11 17:01:13 +0000236 PP.LexNonComment(PeekTok);
237 return false;
238 }
239 case tok::char_constant: { // 'x'
240 llvm::SmallString<32> CharBuffer;
Douglas Gregor50f6af72010-03-16 05:20:39 +0000241 bool CharInvalid = false;
242 llvm::StringRef ThisTok = PP.getSpelling(PeekTok, CharBuffer, &CharInvalid);
243 if (CharInvalid)
244 return true;
Benjamin Kramerddeea562010-02-27 13:44:12 +0000245
246 CharLiteralParser Literal(ThisTok.begin(), ThisTok.end(),
Reid Spencer5f016e22007-07-11 17:01:13 +0000247 PeekTok.getLocation(), PP);
248 if (Literal.hadError())
249 return true; // A diagnostic was already emitted.
250
251 // Character literals are always int or wchar_t, expand to intmax_t.
Daniel Dunbar444be732009-11-13 05:51:54 +0000252 const TargetInfo &TI = PP.getTargetInfo();
Eli Friedman2a1c3632009-06-01 05:25:02 +0000253 unsigned NumBits;
254 if (Literal.isMultiChar())
255 NumBits = TI.getIntWidth();
Alisdair Meredithf5c209d2009-07-14 06:30:34 +0000256 else if (Literal.isWide())
257 NumBits = TI.getWCharWidth();
Eli Friedman2a1c3632009-06-01 05:25:02 +0000258 else
Alisdair Meredithf5c209d2009-07-14 06:30:34 +0000259 NumBits = TI.getCharWidth();
Eli Friedman2a1c3632009-06-01 05:25:02 +0000260
Reid Spencer5f016e22007-07-11 17:01:13 +0000261 // Set the width.
262 llvm::APSInt Val(NumBits);
263 // Set the value.
264 Val = Literal.getValue();
265 // Set the signedness.
Eli Friedman15b91762009-06-05 07:05:05 +0000266 Val.setIsUnsigned(!PP.getLangOptions().CharIsSigned);
Mike Stump1eb44332009-09-09 15:08:12 +0000267
Chris Lattner8ed30442008-05-05 06:45:50 +0000268 if (Result.Val.getBitWidth() > Val.getBitWidth()) {
269 Result.Val = Val.extend(Result.Val.getBitWidth());
Reid Spencer5f016e22007-07-11 17:01:13 +0000270 } else {
Chris Lattner8ed30442008-05-05 06:45:50 +0000271 assert(Result.Val.getBitWidth() == Val.getBitWidth() &&
Reid Spencer5f016e22007-07-11 17:01:13 +0000272 "intmax_t smaller than char/wchar_t?");
Chris Lattner8ed30442008-05-05 06:45:50 +0000273 Result.Val = Val;
Reid Spencer5f016e22007-07-11 17:01:13 +0000274 }
275
276 // Consume the token.
Chris Lattner8ed30442008-05-05 06:45:50 +0000277 Result.setRange(PeekTok.getLocation());
Reid Spencer5f016e22007-07-11 17:01:13 +0000278 PP.LexNonComment(PeekTok);
279 return false;
280 }
Chris Lattner8ed30442008-05-05 06:45:50 +0000281 case tok::l_paren: {
282 SourceLocation Start = PeekTok.getLocation();
Reid Spencer5f016e22007-07-11 17:01:13 +0000283 PP.LexNonComment(PeekTok); // Eat the (.
284 // Parse the value and if there are any binary operators involved, parse
285 // them.
286 if (EvaluateValue(Result, PeekTok, DT, ValueLive, PP)) return true;
287
288 // If this is a silly value like (X), which doesn't need parens, check for
289 // !(defined X).
Chris Lattner22f6bbc2007-10-09 18:02:16 +0000290 if (PeekTok.is(tok::r_paren)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000291 // Just use DT unmodified as our result.
292 } else {
Chris Lattner8ed30442008-05-05 06:45:50 +0000293 // Otherwise, we have something like (x+y), and we consumed '(x'.
Reid Spencer5f016e22007-07-11 17:01:13 +0000294 if (EvaluateDirectiveSubExpr(Result, 1, PeekTok, ValueLive, PP))
295 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000296
Chris Lattner22f6bbc2007-10-09 18:02:16 +0000297 if (PeekTok.isNot(tok::r_paren)) {
Chris Lattner204b2fe2008-11-18 21:48:13 +0000298 PP.Diag(PeekTok.getLocation(), diag::err_pp_expected_rparen)
299 << Result.getRange();
Chris Lattner28eb7e92008-11-23 23:17:07 +0000300 PP.Diag(Start, diag::note_matching) << "(";
Reid Spencer5f016e22007-07-11 17:01:13 +0000301 return true;
302 }
303 DT.State = DefinedTracker::Unknown;
304 }
Chris Lattner8ed30442008-05-05 06:45:50 +0000305 Result.setRange(Start, PeekTok.getLocation());
Reid Spencer5f016e22007-07-11 17:01:13 +0000306 PP.LexNonComment(PeekTok); // Eat the ).
307 return false;
Chris Lattner8ed30442008-05-05 06:45:50 +0000308 }
309 case tok::plus: {
310 SourceLocation Start = PeekTok.getLocation();
Reid Spencer5f016e22007-07-11 17:01:13 +0000311 // Unary plus doesn't modify the value.
312 PP.LexNonComment(PeekTok);
Chris Lattner8ed30442008-05-05 06:45:50 +0000313 if (EvaluateValue(Result, PeekTok, DT, ValueLive, PP)) return true;
314 Result.setBegin(Start);
315 return false;
316 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000317 case tok::minus: {
318 SourceLocation Loc = PeekTok.getLocation();
319 PP.LexNonComment(PeekTok);
320 if (EvaluateValue(Result, PeekTok, DT, ValueLive, PP)) return true;
Chris Lattner8ed30442008-05-05 06:45:50 +0000321 Result.setBegin(Loc);
Mike Stump1eb44332009-09-09 15:08:12 +0000322
Reid Spencer5f016e22007-07-11 17:01:13 +0000323 // C99 6.5.3.3p3: The sign of the result matches the sign of the operand.
Chris Lattner8ed30442008-05-05 06:45:50 +0000324 Result.Val = -Result.Val;
Mike Stump1eb44332009-09-09 15:08:12 +0000325
Chris Lattnerb081a352008-07-03 03:47:30 +0000326 // -MININT is the only thing that overflows. Unsigned never overflows.
327 bool Overflow = !Result.isUnsigned() && Result.Val.isMinSignedValue();
Mike Stump1eb44332009-09-09 15:08:12 +0000328
Reid Spencer5f016e22007-07-11 17:01:13 +0000329 // If this operator is live and overflowed, report the issue.
330 if (Overflow && ValueLive)
Chris Lattner204b2fe2008-11-18 21:48:13 +0000331 PP.Diag(Loc, diag::warn_pp_expr_overflow) << Result.getRange();
Mike Stump1eb44332009-09-09 15:08:12 +0000332
Reid Spencer5f016e22007-07-11 17:01:13 +0000333 DT.State = DefinedTracker::Unknown;
334 return false;
335 }
Mike Stump1eb44332009-09-09 15:08:12 +0000336
Chris Lattner8ed30442008-05-05 06:45:50 +0000337 case tok::tilde: {
338 SourceLocation Start = PeekTok.getLocation();
Reid Spencer5f016e22007-07-11 17:01:13 +0000339 PP.LexNonComment(PeekTok);
340 if (EvaluateValue(Result, PeekTok, DT, ValueLive, PP)) return true;
Chris Lattner8ed30442008-05-05 06:45:50 +0000341 Result.setBegin(Start);
342
Reid Spencer5f016e22007-07-11 17:01:13 +0000343 // C99 6.5.3.3p4: The sign of the result matches the sign of the operand.
Chris Lattner8ed30442008-05-05 06:45:50 +0000344 Result.Val = ~Result.Val;
Reid Spencer5f016e22007-07-11 17:01:13 +0000345 DT.State = DefinedTracker::Unknown;
346 return false;
Chris Lattner8ed30442008-05-05 06:45:50 +0000347 }
Mike Stump1eb44332009-09-09 15:08:12 +0000348
Chris Lattner8ed30442008-05-05 06:45:50 +0000349 case tok::exclaim: {
350 SourceLocation Start = PeekTok.getLocation();
Reid Spencer5f016e22007-07-11 17:01:13 +0000351 PP.LexNonComment(PeekTok);
352 if (EvaluateValue(Result, PeekTok, DT, ValueLive, PP)) return true;
Chris Lattner8ed30442008-05-05 06:45:50 +0000353 Result.setBegin(Start);
354 Result.Val = !Result.Val;
Reid Spencer5f016e22007-07-11 17:01:13 +0000355 // C99 6.5.3.3p5: The sign of the result is 'int', aka it is signed.
Chris Lattner8ed30442008-05-05 06:45:50 +0000356 Result.Val.setIsUnsigned(false);
Mike Stump1eb44332009-09-09 15:08:12 +0000357
Reid Spencer5f016e22007-07-11 17:01:13 +0000358 if (DT.State == DefinedTracker::DefinedMacro)
359 DT.State = DefinedTracker::NotDefinedMacro;
360 else if (DT.State == DefinedTracker::NotDefinedMacro)
361 DT.State = DefinedTracker::DefinedMacro;
362 return false;
Chris Lattner8ed30442008-05-05 06:45:50 +0000363 }
Mike Stump1eb44332009-09-09 15:08:12 +0000364
Reid Spencer5f016e22007-07-11 17:01:13 +0000365 // FIXME: Handle #assert
366 }
367}
368
369
370
371/// getPrecedence - Return the precedence of the specified binary operator
372/// token. This returns:
373/// ~0 - Invalid token.
Chris Lattner9e66ba62008-05-05 04:10:51 +0000374/// 14 -> 3 - various operators.
375/// 0 - 'eom' or ')'
Reid Spencer5f016e22007-07-11 17:01:13 +0000376static unsigned getPrecedence(tok::TokenKind Kind) {
377 switch (Kind) {
378 default: return ~0U;
379 case tok::percent:
380 case tok::slash:
381 case tok::star: return 14;
382 case tok::plus:
383 case tok::minus: return 13;
384 case tok::lessless:
385 case tok::greatergreater: return 12;
386 case tok::lessequal:
387 case tok::less:
388 case tok::greaterequal:
389 case tok::greater: return 11;
390 case tok::exclaimequal:
391 case tok::equalequal: return 10;
392 case tok::amp: return 9;
393 case tok::caret: return 8;
394 case tok::pipe: return 7;
395 case tok::ampamp: return 6;
396 case tok::pipepipe: return 5;
Chris Lattner98ed49f2008-05-05 20:07:41 +0000397 case tok::question: return 4;
398 case tok::comma: return 3;
Chris Lattner91891562008-05-04 18:36:18 +0000399 case tok::colon: return 2;
Reid Spencer5f016e22007-07-11 17:01:13 +0000400 case tok::r_paren: return 0; // Lowest priority, end of expr.
401 case tok::eom: return 0; // Lowest priority, end of macro.
402 }
403}
404
405
406/// EvaluateDirectiveSubExpr - Evaluate the subexpression whose first token is
Chris Lattner8ed30442008-05-05 06:45:50 +0000407/// PeekTok, and whose precedence is PeekPrec. This returns the result in LHS.
Reid Spencer5f016e22007-07-11 17:01:13 +0000408///
409/// If ValueLive is false, then this value is being evaluated in a context where
410/// the result is not used. As such, avoid diagnostics that relate to
Chris Lattner8ed30442008-05-05 06:45:50 +0000411/// evaluation, such as division by zero warnings.
412static bool EvaluateDirectiveSubExpr(PPValue &LHS, unsigned MinPrec,
Chris Lattnerd2177732007-07-20 16:59:19 +0000413 Token &PeekTok, bool ValueLive,
Reid Spencer5f016e22007-07-11 17:01:13 +0000414 Preprocessor &PP) {
415 unsigned PeekPrec = getPrecedence(PeekTok.getKind());
416 // If this token isn't valid, report the error.
417 if (PeekPrec == ~0U) {
Chris Lattner204b2fe2008-11-18 21:48:13 +0000418 PP.Diag(PeekTok.getLocation(), diag::err_pp_expr_bad_token_binop)
419 << LHS.getRange();
Reid Spencer5f016e22007-07-11 17:01:13 +0000420 return true;
421 }
Mike Stump1eb44332009-09-09 15:08:12 +0000422
Reid Spencer5f016e22007-07-11 17:01:13 +0000423 while (1) {
424 // If this token has a lower precedence than we are allowed to parse, return
425 // it so that higher levels of the recursion can parse it.
426 if (PeekPrec < MinPrec)
427 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000428
Reid Spencer5f016e22007-07-11 17:01:13 +0000429 tok::TokenKind Operator = PeekTok.getKind();
Mike Stump1eb44332009-09-09 15:08:12 +0000430
Reid Spencer5f016e22007-07-11 17:01:13 +0000431 // If this is a short-circuiting operator, see if the RHS of the operator is
Mike Stump1eb44332009-09-09 15:08:12 +0000432 // dead. Note that this cannot just clobber ValueLive. Consider
Reid Spencer5f016e22007-07-11 17:01:13 +0000433 // "0 && 1 ? 4 : 1 / 0", which is parsed as "(0 && 1) ? 4 : (1 / 0)". In
434 // this example, the RHS of the && being dead does not make the rest of the
435 // expr dead.
436 bool RHSIsLive;
Chris Lattner8ed30442008-05-05 06:45:50 +0000437 if (Operator == tok::ampamp && LHS.Val == 0)
Reid Spencer5f016e22007-07-11 17:01:13 +0000438 RHSIsLive = false; // RHS of "0 && x" is dead.
Chris Lattner8ed30442008-05-05 06:45:50 +0000439 else if (Operator == tok::pipepipe && LHS.Val != 0)
Reid Spencer5f016e22007-07-11 17:01:13 +0000440 RHSIsLive = false; // RHS of "1 || x" is dead.
Chris Lattner8ed30442008-05-05 06:45:50 +0000441 else if (Operator == tok::question && LHS.Val == 0)
Reid Spencer5f016e22007-07-11 17:01:13 +0000442 RHSIsLive = false; // RHS (x) of "0 ? x : y" is dead.
443 else
444 RHSIsLive = ValueLive;
445
Chris Lattner8ed30442008-05-05 06:45:50 +0000446 // Consume the operator, remembering the operator's location for reporting.
447 SourceLocation OpLoc = PeekTok.getLocation();
Reid Spencer5f016e22007-07-11 17:01:13 +0000448 PP.LexNonComment(PeekTok);
449
Chris Lattner8ed30442008-05-05 06:45:50 +0000450 PPValue RHS(LHS.getBitWidth());
Reid Spencer5f016e22007-07-11 17:01:13 +0000451 // Parse the RHS of the operator.
452 DefinedTracker DT;
453 if (EvaluateValue(RHS, PeekTok, DT, RHSIsLive, PP)) return true;
454
455 // Remember the precedence of this operator and get the precedence of the
456 // operator immediately to the right of the RHS.
457 unsigned ThisPrec = PeekPrec;
458 PeekPrec = getPrecedence(PeekTok.getKind());
459
460 // If this token isn't valid, report the error.
461 if (PeekPrec == ~0U) {
Chris Lattner204b2fe2008-11-18 21:48:13 +0000462 PP.Diag(PeekTok.getLocation(), diag::err_pp_expr_bad_token_binop)
463 << RHS.getRange();
Reid Spencer5f016e22007-07-11 17:01:13 +0000464 return true;
465 }
Mike Stump1eb44332009-09-09 15:08:12 +0000466
Chris Lattner98ed49f2008-05-05 20:07:41 +0000467 // Decide whether to include the next binop in this subexpression. For
468 // example, when parsing x+y*z and looking at '*', we want to recursively
Chris Lattner44cbbb02008-05-05 20:09:27 +0000469 // handle y*z as a single subexpression. We do this because the precedence
470 // of * is higher than that of +. The only strange case we have to handle
471 // here is for the ?: operator, where the precedence is actually lower than
472 // the LHS of the '?'. The grammar rule is:
Chris Lattner98ed49f2008-05-05 20:07:41 +0000473 //
474 // conditional-expression ::=
475 // logical-OR-expression ? expression : conditional-expression
476 // where 'expression' is actually comma-expression.
477 unsigned RHSPrec;
478 if (Operator == tok::question)
479 // The RHS of "?" should be maximally consumed as an expression.
480 RHSPrec = getPrecedence(tok::comma);
481 else // All others should munch while higher precedence.
482 RHSPrec = ThisPrec+1;
Mike Stump1eb44332009-09-09 15:08:12 +0000483
Chris Lattner98ed49f2008-05-05 20:07:41 +0000484 if (PeekPrec >= RHSPrec) {
485 if (EvaluateDirectiveSubExpr(RHS, RHSPrec, PeekTok, RHSIsLive, PP))
Reid Spencer5f016e22007-07-11 17:01:13 +0000486 return true;
487 PeekPrec = getPrecedence(PeekTok.getKind());
488 }
489 assert(PeekPrec <= ThisPrec && "Recursion didn't work!");
Mike Stump1eb44332009-09-09 15:08:12 +0000490
Reid Spencer5f016e22007-07-11 17:01:13 +0000491 // Usual arithmetic conversions (C99 6.3.1.8p1): result is unsigned if
Mike Stump1eb44332009-09-09 15:08:12 +0000492 // either operand is unsigned.
Reid Spencer5f016e22007-07-11 17:01:13 +0000493 llvm::APSInt Res(LHS.getBitWidth());
Chris Lattner019ef7e2008-05-04 23:46:17 +0000494 switch (Operator) {
495 case tok::question: // No UAC for x and y in "x ? y : z".
496 case tok::lessless: // Shift amount doesn't UAC with shift value.
497 case tok::greatergreater: // Shift amount doesn't UAC with shift value.
498 case tok::comma: // Comma operands are not subject to UACs.
499 case tok::pipepipe: // Logical || does not do UACs.
500 case tok::ampamp: // Logical && does not do UACs.
501 break; // No UAC
502 default:
Reid Spencer5f016e22007-07-11 17:01:13 +0000503 Res.setIsUnsigned(LHS.isUnsigned()|RHS.isUnsigned());
504 // If this just promoted something from signed to unsigned, and if the
505 // value was negative, warn about it.
506 if (ValueLive && Res.isUnsigned()) {
Chris Lattner8ed30442008-05-05 06:45:50 +0000507 if (!LHS.isUnsigned() && LHS.Val.isNegative())
Chris Lattner204b2fe2008-11-18 21:48:13 +0000508 PP.Diag(OpLoc, diag::warn_pp_convert_lhs_to_positive)
509 << LHS.Val.toString(10, true) + " to " +
510 LHS.Val.toString(10, false)
511 << LHS.getRange() << RHS.getRange();
Chris Lattner8ed30442008-05-05 06:45:50 +0000512 if (!RHS.isUnsigned() && RHS.Val.isNegative())
Chris Lattner204b2fe2008-11-18 21:48:13 +0000513 PP.Diag(OpLoc, diag::warn_pp_convert_rhs_to_positive)
514 << RHS.Val.toString(10, true) + " to " +
515 RHS.Val.toString(10, false)
516 << LHS.getRange() << RHS.getRange();
Reid Spencer5f016e22007-07-11 17:01:13 +0000517 }
Chris Lattner8ed30442008-05-05 06:45:50 +0000518 LHS.Val.setIsUnsigned(Res.isUnsigned());
519 RHS.Val.setIsUnsigned(Res.isUnsigned());
Reid Spencer5f016e22007-07-11 17:01:13 +0000520 }
Mike Stump1eb44332009-09-09 15:08:12 +0000521
Reid Spencer5f016e22007-07-11 17:01:13 +0000522 bool Overflow = false;
523 switch (Operator) {
524 default: assert(0 && "Unknown operator token!");
525 case tok::percent:
Chris Lattner8ed30442008-05-05 06:45:50 +0000526 if (RHS.Val != 0)
527 Res = LHS.Val % RHS.Val;
528 else if (ValueLive) {
Chris Lattner204b2fe2008-11-18 21:48:13 +0000529 PP.Diag(OpLoc, diag::err_pp_remainder_by_zero)
530 << LHS.getRange() << RHS.getRange();
Chris Lattner8ed30442008-05-05 06:45:50 +0000531 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000532 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000533 break;
534 case tok::slash:
Chris Lattner8ed30442008-05-05 06:45:50 +0000535 if (RHS.Val != 0) {
Chris Lattnerf9e77342010-10-13 23:46:56 +0000536 if (LHS.Val.isSigned())
537 Res = llvm::APSInt(LHS.Val.sdiv_ov(RHS.Val, Overflow), false);
538 else
539 Res = LHS.Val / RHS.Val;
Chris Lattner8ed30442008-05-05 06:45:50 +0000540 } else if (ValueLive) {
Chris Lattner204b2fe2008-11-18 21:48:13 +0000541 PP.Diag(OpLoc, diag::err_pp_division_by_zero)
542 << LHS.getRange() << RHS.getRange();
Chris Lattner8ed30442008-05-05 06:45:50 +0000543 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000544 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000545 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000546
Reid Spencer5f016e22007-07-11 17:01:13 +0000547 case tok::star:
Chris Lattnerf9e77342010-10-13 23:46:56 +0000548 if (Res.isSigned())
549 Res = llvm::APSInt(LHS.Val.smul_ov(RHS.Val, Overflow), false);
550 else
551 Res = LHS.Val * RHS.Val;
Reid Spencer5f016e22007-07-11 17:01:13 +0000552 break;
553 case tok::lessless: {
554 // Determine whether overflow is about to happen.
Chris Lattner8ed30442008-05-05 06:45:50 +0000555 unsigned ShAmt = static_cast<unsigned>(RHS.Val.getLimitedValue());
Chris Lattnerf9e77342010-10-13 23:46:56 +0000556 if (LHS.isUnsigned()) {
557 Overflow = ShAmt >= LHS.Val.getBitWidth();
558 if (Overflow)
559 ShAmt = LHS.Val.getBitWidth()-1;
560 Res = LHS.Val << ShAmt;
561 } else {
562 Res = llvm::APSInt(LHS.Val.sshl_ov(ShAmt, Overflow), false);
563 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000564 break;
565 }
566 case tok::greatergreater: {
567 // Determine whether overflow is about to happen.
Chris Lattner8ed30442008-05-05 06:45:50 +0000568 unsigned ShAmt = static_cast<unsigned>(RHS.Val.getLimitedValue());
Reid Spencer5f016e22007-07-11 17:01:13 +0000569 if (ShAmt >= LHS.getBitWidth())
570 Overflow = true, ShAmt = LHS.getBitWidth()-1;
Chris Lattner8ed30442008-05-05 06:45:50 +0000571 Res = LHS.Val >> ShAmt;
Reid Spencer5f016e22007-07-11 17:01:13 +0000572 break;
573 }
574 case tok::plus:
Reid Spencer5f016e22007-07-11 17:01:13 +0000575 if (LHS.isUnsigned())
Chris Lattnerf9e77342010-10-13 23:46:56 +0000576 Res = LHS.Val + RHS.Val;
577 else
578 Res = llvm::APSInt(LHS.Val.sadd_ov(RHS.Val, Overflow), false);
Reid Spencer5f016e22007-07-11 17:01:13 +0000579 break;
580 case tok::minus:
Reid Spencer5f016e22007-07-11 17:01:13 +0000581 if (LHS.isUnsigned())
Chris Lattnerf9e77342010-10-13 23:46:56 +0000582 Res = LHS.Val - RHS.Val;
583 else
584 Res = llvm::APSInt(LHS.Val.ssub_ov(RHS.Val, Overflow), false);
Reid Spencer5f016e22007-07-11 17:01:13 +0000585 break;
586 case tok::lessequal:
Chris Lattner8ed30442008-05-05 06:45:50 +0000587 Res = LHS.Val <= RHS.Val;
Reid Spencer5f016e22007-07-11 17:01:13 +0000588 Res.setIsUnsigned(false); // C99 6.5.8p6, result is always int (signed)
589 break;
590 case tok::less:
Chris Lattner8ed30442008-05-05 06:45:50 +0000591 Res = LHS.Val < RHS.Val;
Reid Spencer5f016e22007-07-11 17:01:13 +0000592 Res.setIsUnsigned(false); // C99 6.5.8p6, result is always int (signed)
593 break;
594 case tok::greaterequal:
Chris Lattner8ed30442008-05-05 06:45:50 +0000595 Res = LHS.Val >= RHS.Val;
Reid Spencer5f016e22007-07-11 17:01:13 +0000596 Res.setIsUnsigned(false); // C99 6.5.8p6, result is always int (signed)
597 break;
598 case tok::greater:
Chris Lattner8ed30442008-05-05 06:45:50 +0000599 Res = LHS.Val > RHS.Val;
Reid Spencer5f016e22007-07-11 17:01:13 +0000600 Res.setIsUnsigned(false); // C99 6.5.8p6, result is always int (signed)
601 break;
602 case tok::exclaimequal:
Chris Lattner8ed30442008-05-05 06:45:50 +0000603 Res = LHS.Val != RHS.Val;
Reid Spencer5f016e22007-07-11 17:01:13 +0000604 Res.setIsUnsigned(false); // C99 6.5.9p3, result is always int (signed)
605 break;
606 case tok::equalequal:
Chris Lattner8ed30442008-05-05 06:45:50 +0000607 Res = LHS.Val == RHS.Val;
Reid Spencer5f016e22007-07-11 17:01:13 +0000608 Res.setIsUnsigned(false); // C99 6.5.9p3, result is always int (signed)
609 break;
610 case tok::amp:
Chris Lattner8ed30442008-05-05 06:45:50 +0000611 Res = LHS.Val & RHS.Val;
Reid Spencer5f016e22007-07-11 17:01:13 +0000612 break;
613 case tok::caret:
Chris Lattner8ed30442008-05-05 06:45:50 +0000614 Res = LHS.Val ^ RHS.Val;
Reid Spencer5f016e22007-07-11 17:01:13 +0000615 break;
616 case tok::pipe:
Chris Lattner8ed30442008-05-05 06:45:50 +0000617 Res = LHS.Val | RHS.Val;
Reid Spencer5f016e22007-07-11 17:01:13 +0000618 break;
619 case tok::ampamp:
Chris Lattner8ed30442008-05-05 06:45:50 +0000620 Res = (LHS.Val != 0 && RHS.Val != 0);
Reid Spencer5f016e22007-07-11 17:01:13 +0000621 Res.setIsUnsigned(false); // C99 6.5.13p3, result is always int (signed)
622 break;
623 case tok::pipepipe:
Chris Lattner8ed30442008-05-05 06:45:50 +0000624 Res = (LHS.Val != 0 || RHS.Val != 0);
Reid Spencer5f016e22007-07-11 17:01:13 +0000625 Res.setIsUnsigned(false); // C99 6.5.14p3, result is always int (signed)
626 break;
627 case tok::comma:
Chris Lattner91891562008-05-04 18:36:18 +0000628 // Comma is invalid in pp expressions in c89/c++ mode, but is valid in C99
629 // if not being evaluated.
630 if (!PP.getLangOptions().C99 || ValueLive)
Chris Lattner204b2fe2008-11-18 21:48:13 +0000631 PP.Diag(OpLoc, diag::ext_pp_comma_expr)
632 << LHS.getRange() << RHS.getRange();
Chris Lattner8ed30442008-05-05 06:45:50 +0000633 Res = RHS.Val; // LHS = LHS,RHS -> RHS.
Mike Stump1eb44332009-09-09 15:08:12 +0000634 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000635 case tok::question: {
636 // Parse the : part of the expression.
Chris Lattner22f6bbc2007-10-09 18:02:16 +0000637 if (PeekTok.isNot(tok::colon)) {
Chris Lattner204b2fe2008-11-18 21:48:13 +0000638 PP.Diag(PeekTok.getLocation(), diag::err_expected_colon)
639 << LHS.getRange(), RHS.getRange();
Chris Lattner28eb7e92008-11-23 23:17:07 +0000640 PP.Diag(OpLoc, diag::note_matching) << "?";
Reid Spencer5f016e22007-07-11 17:01:13 +0000641 return true;
642 }
643 // Consume the :.
644 PP.LexNonComment(PeekTok);
645
646 // Evaluate the value after the :.
Chris Lattner8ed30442008-05-05 06:45:50 +0000647 bool AfterColonLive = ValueLive && LHS.Val == 0;
648 PPValue AfterColonVal(LHS.getBitWidth());
Reid Spencer5f016e22007-07-11 17:01:13 +0000649 DefinedTracker DT;
650 if (EvaluateValue(AfterColonVal, PeekTok, DT, AfterColonLive, PP))
651 return true;
652
Chris Lattner44cbbb02008-05-05 20:09:27 +0000653 // Parse anything after the : with the same precedence as ?. We allow
654 // things of equal precedence because ?: is right associative.
Chris Lattner98ed49f2008-05-05 20:07:41 +0000655 if (EvaluateDirectiveSubExpr(AfterColonVal, ThisPrec,
Reid Spencer5f016e22007-07-11 17:01:13 +0000656 PeekTok, AfterColonLive, PP))
657 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000658
Reid Spencer5f016e22007-07-11 17:01:13 +0000659 // Now that we have the condition, the LHS and the RHS of the :, evaluate.
Chris Lattner8ed30442008-05-05 06:45:50 +0000660 Res = LHS.Val != 0 ? RHS.Val : AfterColonVal.Val;
661 RHS.setEnd(AfterColonVal.getRange().getEnd());
Reid Spencer5f016e22007-07-11 17:01:13 +0000662
663 // Usual arithmetic conversions (C99 6.3.1.8p1): result is unsigned if
664 // either operand is unsigned.
665 Res.setIsUnsigned(RHS.isUnsigned() | AfterColonVal.isUnsigned());
Mike Stump1eb44332009-09-09 15:08:12 +0000666
Reid Spencer5f016e22007-07-11 17:01:13 +0000667 // Figure out the precedence of the token after the : part.
668 PeekPrec = getPrecedence(PeekTok.getKind());
669 break;
670 }
671 case tok::colon:
672 // Don't allow :'s to float around without being part of ?: exprs.
Chris Lattner204b2fe2008-11-18 21:48:13 +0000673 PP.Diag(OpLoc, diag::err_pp_colon_without_question)
674 << LHS.getRange() << RHS.getRange();
Reid Spencer5f016e22007-07-11 17:01:13 +0000675 return true;
676 }
677
678 // If this operator is live and overflowed, report the issue.
679 if (Overflow && ValueLive)
Chris Lattner204b2fe2008-11-18 21:48:13 +0000680 PP.Diag(OpLoc, diag::warn_pp_expr_overflow)
681 << LHS.getRange() << RHS.getRange();
Mike Stump1eb44332009-09-09 15:08:12 +0000682
Reid Spencer5f016e22007-07-11 17:01:13 +0000683 // Put the result back into 'LHS' for our next iteration.
Chris Lattner8ed30442008-05-05 06:45:50 +0000684 LHS.Val = Res;
685 LHS.setEnd(RHS.getRange().getEnd());
Reid Spencer5f016e22007-07-11 17:01:13 +0000686 }
Mike Stump1eb44332009-09-09 15:08:12 +0000687
Reid Spencer5f016e22007-07-11 17:01:13 +0000688 return false;
689}
690
691/// EvaluateDirectiveExpression - Evaluate an integer constant expression that
692/// may occur after a #if or #elif directive. If the expression is equivalent
693/// to "!defined(X)" return X in IfNDefMacro.
694bool Preprocessor::
695EvaluateDirectiveExpression(IdentifierInfo *&IfNDefMacro) {
Chris Lattnera3e008a2009-12-14 05:00:18 +0000696 // Save the current state of 'DisableMacroExpansion' and reset it to false. If
697 // 'DisableMacroExpansion' is true, then we must be in a macro argument list
698 // in which case a directive is undefined behavior. We want macros to be able
699 // to recursively expand in order to get more gcc-list behavior, so we force
700 // DisableMacroExpansion to false and restore it when we're done parsing the
701 // expression.
702 bool DisableMacroExpansionAtStartOfDirective = DisableMacroExpansion;
703 DisableMacroExpansion = false;
704
Reid Spencer5f016e22007-07-11 17:01:13 +0000705 // Peek ahead one token.
Chris Lattnerd2177732007-07-20 16:59:19 +0000706 Token Tok;
Reid Spencer5f016e22007-07-11 17:01:13 +0000707 Lex(Tok);
Douglas Gregor1fbb4472010-08-24 20:21:13 +0000708
Reid Spencer5f016e22007-07-11 17:01:13 +0000709 // C99 6.10.1p3 - All expressions are evaluated as intmax_t or uintmax_t.
Chris Lattner98be4942008-03-05 18:54:05 +0000710 unsigned BitWidth = getTargetInfo().getIntMaxTWidth();
Mike Stump1eb44332009-09-09 15:08:12 +0000711
Chris Lattner8ed30442008-05-05 06:45:50 +0000712 PPValue ResVal(BitWidth);
Reid Spencer5f016e22007-07-11 17:01:13 +0000713 DefinedTracker DT;
714 if (EvaluateValue(ResVal, Tok, DT, true, *this)) {
715 // Parse error, skip the rest of the macro line.
Chris Lattner22f6bbc2007-10-09 18:02:16 +0000716 if (Tok.isNot(tok::eom))
Reid Spencer5f016e22007-07-11 17:01:13 +0000717 DiscardUntilEndOfDirective();
Chris Lattnera3e008a2009-12-14 05:00:18 +0000718
719 // Restore 'DisableMacroExpansion'.
720 DisableMacroExpansion = DisableMacroExpansionAtStartOfDirective;
Reid Spencer5f016e22007-07-11 17:01:13 +0000721 return false;
722 }
Mike Stump1eb44332009-09-09 15:08:12 +0000723
Reid Spencer5f016e22007-07-11 17:01:13 +0000724 // If we are at the end of the expression after just parsing a value, there
725 // must be no (unparenthesized) binary operators involved, so we can exit
726 // directly.
Chris Lattner22f6bbc2007-10-09 18:02:16 +0000727 if (Tok.is(tok::eom)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000728 // If the expression we parsed was of the form !defined(macro), return the
729 // macro in IfNDefMacro.
730 if (DT.State == DefinedTracker::NotDefinedMacro)
731 IfNDefMacro = DT.TheMacro;
Mike Stump1eb44332009-09-09 15:08:12 +0000732
Chris Lattnera3e008a2009-12-14 05:00:18 +0000733 // Restore 'DisableMacroExpansion'.
734 DisableMacroExpansion = DisableMacroExpansionAtStartOfDirective;
Chris Lattner8ed30442008-05-05 06:45:50 +0000735 return ResVal.Val != 0;
Reid Spencer5f016e22007-07-11 17:01:13 +0000736 }
Mike Stump1eb44332009-09-09 15:08:12 +0000737
Reid Spencer5f016e22007-07-11 17:01:13 +0000738 // Otherwise, we must have a binary operator (e.g. "#if 1 < 2"), so parse the
739 // operator and the stuff after it.
Chris Lattner98ed49f2008-05-05 20:07:41 +0000740 if (EvaluateDirectiveSubExpr(ResVal, getPrecedence(tok::question),
741 Tok, true, *this)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000742 // Parse error, skip the rest of the macro line.
Chris Lattner22f6bbc2007-10-09 18:02:16 +0000743 if (Tok.isNot(tok::eom))
Reid Spencer5f016e22007-07-11 17:01:13 +0000744 DiscardUntilEndOfDirective();
Chris Lattnera3e008a2009-12-14 05:00:18 +0000745
746 // Restore 'DisableMacroExpansion'.
747 DisableMacroExpansion = DisableMacroExpansionAtStartOfDirective;
Reid Spencer5f016e22007-07-11 17:01:13 +0000748 return false;
749 }
Mike Stump1eb44332009-09-09 15:08:12 +0000750
Reid Spencer5f016e22007-07-11 17:01:13 +0000751 // If we aren't at the tok::eom token, something bad happened, like an extra
752 // ')' token.
Chris Lattner22f6bbc2007-10-09 18:02:16 +0000753 if (Tok.isNot(tok::eom)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000754 Diag(Tok, diag::err_pp_expected_eol);
755 DiscardUntilEndOfDirective();
756 }
Mike Stump1eb44332009-09-09 15:08:12 +0000757
Chris Lattnera3e008a2009-12-14 05:00:18 +0000758 // Restore 'DisableMacroExpansion'.
759 DisableMacroExpansion = DisableMacroExpansionAtStartOfDirective;
Chris Lattner8ed30442008-05-05 06:45:50 +0000760 return ResVal.Val != 0;
Reid Spencer5f016e22007-07-11 17:01:13 +0000761}
762