blob: caf22311ad288cd693f16aa269a0a1f207cb57a5 [file] [log] [blame]
Chris Lattnerb542afe2008-07-11 19:10:17 +00001//===--- ExprConstant.cpp - Expression Constant Evaluator -----------------===//
Anders Carlssonc44eec62008-07-03 04:20:39 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the Expr constant evaluator.
11//
12//===----------------------------------------------------------------------===//
13
14#include "clang/AST/APValue.h"
15#include "clang/AST/ASTContext.h"
16#include "clang/AST/Expr.h"
Seo Sanghyeon0fe52e12008-07-08 07:23:12 +000017#include "clang/AST/StmtVisitor.h"
Chris Lattner54176fd2008-07-12 00:14:42 +000018#include "clang/Basic/Diagnostic.h"
Anders Carlsson06a36752008-07-08 05:49:43 +000019#include "clang/Basic/TargetInfo.h"
Anders Carlssonc754aa62008-07-08 05:13:58 +000020#include "llvm/Support/Compiler.h"
Anders Carlssonc44eec62008-07-03 04:20:39 +000021using namespace clang;
Chris Lattnerf5eeb052008-07-11 18:11:29 +000022using llvm::APSInt;
Anders Carlssonc44eec62008-07-03 04:20:39 +000023
Anders Carlssonc754aa62008-07-08 05:13:58 +000024#define USE_NEW_EVALUATOR 0
Anders Carlssonc44eec62008-07-03 04:20:39 +000025
Chris Lattnerf5eeb052008-07-11 18:11:29 +000026static bool CalcFakeICEVal(const Expr *Expr,
27 llvm::APSInt &Result,
28 ASTContext &Context) {
Anders Carlssonc44eec62008-07-03 04:20:39 +000029 // Calculate the value of an expression that has a calculatable
30 // value, but isn't an ICE. Currently, this only supports
31 // a very narrow set of extensions, but it can be expanded if needed.
32 if (const ParenExpr *PE = dyn_cast<ParenExpr>(Expr))
33 return CalcFakeICEVal(PE->getSubExpr(), Result, Context);
34
35 if (const CastExpr *CE = dyn_cast<CastExpr>(Expr)) {
36 QualType CETy = CE->getType();
37 if ((CETy->isIntegralType() && !CETy->isBooleanType()) ||
38 CETy->isPointerType()) {
39 if (CalcFakeICEVal(CE->getSubExpr(), Result, Context)) {
40 Result.extOrTrunc(Context.getTypeSize(CETy));
41 // FIXME: This assumes pointers are signed.
42 Result.setIsSigned(CETy->isSignedIntegerType() ||
43 CETy->isPointerType());
44 return true;
45 }
46 }
47 }
48
49 if (Expr->getType()->isIntegralType())
50 return Expr->isIntegerConstantExpr(Result, Context);
51
52 return false;
53}
54
Chris Lattner87eae5e2008-07-11 22:52:41 +000055/// EvalInfo - This is a private struct used by the evaluator to capture
56/// information about a subexpression as it is folded. It retains information
57/// about the AST context, but also maintains information about the folded
58/// expression.
59///
60/// If an expression could be evaluated, it is still possible it is not a C
61/// "integer constant expression" or constant expression. If not, this struct
62/// captures information about how and why not.
63///
64/// One bit of information passed *into* the request for constant folding
65/// indicates whether the subexpression is "evaluated" or not according to C
66/// rules. For example, the RHS of (0 && foo()) is not evaluated. We can
67/// evaluate the expression regardless of what the RHS is, but C only allows
68/// certain things in certain situations.
69struct EvalInfo {
70 ASTContext &Ctx;
71
72 /// isEvaluated - True if the subexpression is required to be evaluated, false
73 /// if it is short-circuited (according to C rules).
74 bool isEvaluated;
75
Chris Lattner54176fd2008-07-12 00:14:42 +000076 /// ICEDiag - If the expression is unfoldable, then ICEDiag contains the
77 /// error diagnostic indicating why it is not foldable and DiagLoc indicates a
78 /// caret position for the error. If it is foldable, but the expression is
79 /// not an integer constant expression, ICEDiag contains the extension
80 /// diagnostic to emit which describes why it isn't an integer constant
81 /// expression. If this expression *is* an integer-constant-expr, then
82 /// ICEDiag is zero.
Chris Lattner87eae5e2008-07-11 22:52:41 +000083 ///
Chris Lattner54176fd2008-07-12 00:14:42 +000084 /// The caller can choose to emit this diagnostic or not, depending on whether
85 /// they require an i-c-e or a constant or not. DiagLoc indicates the caret
86 /// position for the report.
87 ///
88 /// If ICEDiag is zero, then this expression is an i-c-e.
Chris Lattner87eae5e2008-07-11 22:52:41 +000089 unsigned ICEDiag;
90 SourceLocation DiagLoc;
91
92 EvalInfo(ASTContext &ctx) : Ctx(ctx), isEvaluated(true), ICEDiag(0) {}
93};
94
95
96static bool EvaluatePointer(const Expr *E, APValue &Result, EvalInfo &Info);
97static bool EvaluateInteger(const Expr *E, APSInt &Result, EvalInfo &Info);
Chris Lattnerf5eeb052008-07-11 18:11:29 +000098
99
100//===----------------------------------------------------------------------===//
101// Pointer Evaluation
102//===----------------------------------------------------------------------===//
103
Anders Carlssonc754aa62008-07-08 05:13:58 +0000104namespace {
Anders Carlsson2bad1682008-07-08 14:30:00 +0000105class VISIBILITY_HIDDEN PointerExprEvaluator
106 : public StmtVisitor<PointerExprEvaluator, APValue> {
Chris Lattner87eae5e2008-07-11 22:52:41 +0000107 EvalInfo &Info;
Anders Carlsson2bad1682008-07-08 14:30:00 +0000108public:
Anders Carlsson2bad1682008-07-08 14:30:00 +0000109
Chris Lattner87eae5e2008-07-11 22:52:41 +0000110 PointerExprEvaluator(EvalInfo &info) : Info(info) {}
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000111
Anders Carlsson2bad1682008-07-08 14:30:00 +0000112 APValue VisitStmt(Stmt *S) {
113 // FIXME: Remove this when we support more expressions.
Anders Carlsson650c92f2008-07-08 15:34:11 +0000114 printf("Unhandled pointer statement\n");
Anders Carlsson2bad1682008-07-08 14:30:00 +0000115 S->dump();
116 return APValue();
117 }
118
119 APValue VisitParenExpr(ParenExpr *E) { return Visit(E->getSubExpr()); }
120
Anders Carlsson650c92f2008-07-08 15:34:11 +0000121 APValue VisitBinaryOperator(const BinaryOperator *E);
122 APValue VisitCastExpr(const CastExpr* E);
Anders Carlsson650c92f2008-07-08 15:34:11 +0000123};
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000124} // end anonymous namespace
Anders Carlsson650c92f2008-07-08 15:34:11 +0000125
Chris Lattner87eae5e2008-07-11 22:52:41 +0000126static bool EvaluatePointer(const Expr* E, APValue& Result, EvalInfo &Info) {
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000127 if (!E->getType()->isPointerType())
128 return false;
Chris Lattner87eae5e2008-07-11 22:52:41 +0000129 Result = PointerExprEvaluator(Info).Visit(const_cast<Expr*>(E));
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000130 return Result.isLValue();
131}
132
133APValue PointerExprEvaluator::VisitBinaryOperator(const BinaryOperator *E) {
134 if (E->getOpcode() != BinaryOperator::Add &&
135 E->getOpcode() != BinaryOperator::Sub)
136 return APValue();
137
138 const Expr *PExp = E->getLHS();
139 const Expr *IExp = E->getRHS();
140 if (IExp->getType()->isPointerType())
141 std::swap(PExp, IExp);
142
143 APValue ResultLValue;
Chris Lattner87eae5e2008-07-11 22:52:41 +0000144 if (!EvaluatePointer(PExp, ResultLValue, Info))
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000145 return APValue();
146
147 llvm::APSInt AdditionalOffset(32);
Chris Lattner87eae5e2008-07-11 22:52:41 +0000148 if (!EvaluateInteger(IExp, AdditionalOffset, Info))
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000149 return APValue();
150
151 uint64_t Offset = ResultLValue.getLValueOffset();
152 if (E->getOpcode() == BinaryOperator::Add)
153 Offset += AdditionalOffset.getZExtValue();
154 else
155 Offset -= AdditionalOffset.getZExtValue();
156
157 return APValue(ResultLValue.getLValueBase(), Offset);
158}
159
160
Chris Lattnerb542afe2008-07-11 19:10:17 +0000161APValue PointerExprEvaluator::VisitCastExpr(const CastExpr* E) {
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000162 const Expr* SubExpr = E->getSubExpr();
163
164 // Check for pointer->pointer cast
165 if (SubExpr->getType()->isPointerType()) {
166 APValue Result;
Chris Lattner87eae5e2008-07-11 22:52:41 +0000167 if (EvaluatePointer(SubExpr, Result, Info))
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000168 return Result;
169 return APValue();
170 }
171
172 if (SubExpr->getType()->isArithmeticType()) {
173 llvm::APSInt Result(32);
Chris Lattner87eae5e2008-07-11 22:52:41 +0000174 if (EvaluateInteger(SubExpr, Result, Info)) {
175 Result.extOrTrunc((unsigned)Info.Ctx.getTypeSize(E->getType()));
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000176 return APValue(0, Result.getZExtValue());
177 }
178 }
179
180 assert(0 && "Unhandled cast");
181 return APValue();
182}
183
184
185//===----------------------------------------------------------------------===//
186// Integer Evaluation
187//===----------------------------------------------------------------------===//
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000188
189namespace {
Anders Carlssonc754aa62008-07-08 05:13:58 +0000190class VISIBILITY_HIDDEN IntExprEvaluator
Chris Lattnerb542afe2008-07-11 19:10:17 +0000191 : public StmtVisitor<IntExprEvaluator, bool> {
Chris Lattner87eae5e2008-07-11 22:52:41 +0000192 EvalInfo &Info;
Chris Lattnerb542afe2008-07-11 19:10:17 +0000193 APSInt &Result;
Anders Carlssonc754aa62008-07-08 05:13:58 +0000194public:
Chris Lattner87eae5e2008-07-11 22:52:41 +0000195 IntExprEvaluator(EvalInfo &info, APSInt &result)
196 : Info(info), Result(result) {}
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000197
Chris Lattner7a767782008-07-11 19:24:49 +0000198 unsigned getIntTypeSizeInBits(QualType T) const {
Chris Lattner54176fd2008-07-12 00:14:42 +0000199 return (unsigned)Info.Ctx.getIntWidth(T);
200 }
201
202 bool Extension(SourceLocation L, diag::kind D) {
203 Info.DiagLoc = L;
204 Info.ICEDiag = D;
205 return true; // still a constant.
206 }
207
208 bool Error(SourceLocation L, diag::kind D) {
209 // If this is in an unevaluated portion of the subexpression, ignore the
210 // error.
211 if (!Info.isEvaluated)
212 return true;
213
214 Info.DiagLoc = L;
215 Info.ICEDiag = D;
216 return false;
Chris Lattner7a767782008-07-11 19:24:49 +0000217 }
218
Anders Carlssonc754aa62008-07-08 05:13:58 +0000219 //===--------------------------------------------------------------------===//
220 // Visitor Methods
221 //===--------------------------------------------------------------------===//
Chris Lattner7a767782008-07-11 19:24:49 +0000222
Chris Lattnerb542afe2008-07-11 19:10:17 +0000223 bool VisitStmt(Stmt *S) {
Chris Lattner54176fd2008-07-12 00:14:42 +0000224 return Error(S->getLocStart(), diag::err_expr_not_constant);
Anders Carlssonc754aa62008-07-08 05:13:58 +0000225 }
226
Chris Lattnerb542afe2008-07-11 19:10:17 +0000227 bool VisitParenExpr(ParenExpr *E) { return Visit(E->getSubExpr()); }
Anders Carlssonc754aa62008-07-08 05:13:58 +0000228
Chris Lattnerb542afe2008-07-11 19:10:17 +0000229 bool VisitBinaryOperator(const BinaryOperator *E);
Chris Lattner75a48812008-07-11 22:15:16 +0000230
Chris Lattnerb542afe2008-07-11 19:10:17 +0000231 bool VisitUnaryOperator(const UnaryOperator *E);
Anders Carlsson06a36752008-07-08 05:49:43 +0000232
Chris Lattnerb542afe2008-07-11 19:10:17 +0000233 bool VisitCastExpr(const CastExpr* E) {
Anders Carlsson650c92f2008-07-08 15:34:11 +0000234 return HandleCast(E->getSubExpr(), E->getType());
235 }
Chris Lattnerb542afe2008-07-11 19:10:17 +0000236 bool VisitImplicitCastExpr(const ImplicitCastExpr* E) {
Anders Carlsson650c92f2008-07-08 15:34:11 +0000237 return HandleCast(E->getSubExpr(), E->getType());
238 }
Chris Lattnerfcee0012008-07-11 21:24:13 +0000239 bool VisitSizeOfAlignOfTypeExpr(const SizeOfAlignOfTypeExpr *E) {
Chris Lattner54176fd2008-07-12 00:14:42 +0000240 return EvaluateSizeAlignOf(E->isSizeOf(), E->getArgumentType(),
241 E->getType());
Chris Lattnerfcee0012008-07-11 21:24:13 +0000242 }
Anders Carlsson650c92f2008-07-08 15:34:11 +0000243
Chris Lattnerb542afe2008-07-11 19:10:17 +0000244 bool VisitIntegerLiteral(const IntegerLiteral *E) {
Anders Carlsson650c92f2008-07-08 15:34:11 +0000245 Result = E->getValue();
Chris Lattner54176fd2008-07-12 00:14:42 +0000246 Result.setIsUnsigned(E->getType()->isUnsignedIntegerType());
247 return true;
248 }
249 bool VisitCharacterLiteral(const CharacterLiteral *E) {
250 Result.zextOrTrunc(getIntTypeSizeInBits(E->getType()));
251 Result = E->getValue();
252 Result.setIsUnsigned(E->getType()->isUnsignedIntegerType());
Chris Lattnerb542afe2008-07-11 19:10:17 +0000253 return true;
Anders Carlsson650c92f2008-07-08 15:34:11 +0000254 }
Chris Lattnerfcee0012008-07-11 21:24:13 +0000255private:
256 bool HandleCast(const Expr* SubExpr, QualType DestType);
257 bool EvaluateSizeAlignOf(bool isSizeOf, QualType SrcTy, QualType DstTy);
Anders Carlssona25ae3d2008-07-08 14:35:21 +0000258};
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000259} // end anonymous namespace
Anders Carlsson650c92f2008-07-08 15:34:11 +0000260
Chris Lattner87eae5e2008-07-11 22:52:41 +0000261static bool EvaluateInteger(const Expr* E, APSInt &Result, EvalInfo &Info) {
262 return IntExprEvaluator(Info, Result).Visit(const_cast<Expr*>(E));
Anders Carlsson650c92f2008-07-08 15:34:11 +0000263}
Anders Carlsson650c92f2008-07-08 15:34:11 +0000264
Anders Carlsson650c92f2008-07-08 15:34:11 +0000265
Chris Lattnerb542afe2008-07-11 19:10:17 +0000266bool IntExprEvaluator::VisitBinaryOperator(const BinaryOperator *E) {
Anders Carlssona25ae3d2008-07-08 14:35:21 +0000267 // The LHS of a constant expr is always evaluated and needed.
Anders Carlssona25ae3d2008-07-08 14:35:21 +0000268 llvm::APSInt RHS(32);
Chris Lattner54176fd2008-07-12 00:14:42 +0000269 if (!Visit(E->getLHS()))
270 return false; // error in subexpression.
271
272 bool OldEval = Info.isEvaluated;
273
274 // The short-circuiting &&/|| operators don't necessarily evaluate their
275 // RHS. Make sure to pass isEvaluated down correctly.
276 if ((E->getOpcode() == BinaryOperator::LAnd && Result == 0) ||
277 (E->getOpcode() == BinaryOperator::LOr && Result != 0))
278 Info.isEvaluated = false;
279
280 if (!EvaluateInteger(E->getRHS(), RHS, Info))
Chris Lattnerb542afe2008-07-11 19:10:17 +0000281 return false;
Chris Lattner54176fd2008-07-12 00:14:42 +0000282 Info.isEvaluated = OldEval;
Anders Carlssona25ae3d2008-07-08 14:35:21 +0000283
284 switch (E->getOpcode()) {
Chris Lattner54176fd2008-07-12 00:14:42 +0000285 default: return Error(E->getOperatorLoc(), diag::err_expr_not_constant);
286 case BinaryOperator::Mul: Result *= RHS; return true;
287 case BinaryOperator::Add: Result += RHS; return true;
288 case BinaryOperator::Sub: Result -= RHS; return true;
289 case BinaryOperator::And: Result &= RHS; return true;
290 case BinaryOperator::Xor: Result ^= RHS; return true;
291 case BinaryOperator::Or: Result |= RHS; return true;
Chris Lattner75a48812008-07-11 22:15:16 +0000292 case BinaryOperator::Div:
Chris Lattner54176fd2008-07-12 00:14:42 +0000293 if (RHS == 0)
294 return Error(E->getOperatorLoc(), diag::err_expr_divide_by_zero);
Chris Lattner75a48812008-07-11 22:15:16 +0000295 Result /= RHS;
Chris Lattner54176fd2008-07-12 00:14:42 +0000296 return true;
Chris Lattner75a48812008-07-11 22:15:16 +0000297 case BinaryOperator::Rem:
Chris Lattner54176fd2008-07-12 00:14:42 +0000298 if (RHS == 0)
299 return Error(E->getOperatorLoc(), diag::err_expr_divide_by_zero);
Chris Lattner75a48812008-07-11 22:15:16 +0000300 Result %= RHS;
Chris Lattner54176fd2008-07-12 00:14:42 +0000301 return true;
Anders Carlssona25ae3d2008-07-08 14:35:21 +0000302 case BinaryOperator::Shl:
Chris Lattner54176fd2008-07-12 00:14:42 +0000303 // FIXME: Warn about out of range shift amounts!
Chris Lattnerb542afe2008-07-11 19:10:17 +0000304 Result <<= (unsigned)RHS.getLimitedValue(Result.getBitWidth()-1);
Anders Carlssona25ae3d2008-07-08 14:35:21 +0000305 break;
306 case BinaryOperator::Shr:
Chris Lattnerb542afe2008-07-11 19:10:17 +0000307 Result >>= (unsigned)RHS.getLimitedValue(Result.getBitWidth()-1);
Anders Carlssona25ae3d2008-07-08 14:35:21 +0000308 break;
Chris Lattnerb542afe2008-07-11 19:10:17 +0000309
Chris Lattnerac7cb602008-07-11 19:29:32 +0000310 case BinaryOperator::LT:
311 Result = Result < RHS;
312 Result.zextOrTrunc(getIntTypeSizeInBits(E->getType()));
313 break;
314 case BinaryOperator::GT:
315 Result = Result > RHS;
316 Result.zextOrTrunc(getIntTypeSizeInBits(E->getType()));
317 break;
318 case BinaryOperator::LE:
319 Result = Result <= RHS;
320 Result.zextOrTrunc(getIntTypeSizeInBits(E->getType()));
321 break;
322 case BinaryOperator::GE:
323 Result = Result >= RHS;
324 Result.zextOrTrunc(getIntTypeSizeInBits(E->getType()));
325 break;
326 case BinaryOperator::EQ:
327 Result = Result == RHS;
328 Result.zextOrTrunc(getIntTypeSizeInBits(E->getType()));
329 break;
330 case BinaryOperator::NE:
331 Result = Result != RHS;
332 Result.zextOrTrunc(getIntTypeSizeInBits(E->getType()));
333 break;
Chris Lattner54176fd2008-07-12 00:14:42 +0000334 case BinaryOperator::LAnd:
335 Result = Result != 0 && RHS != 0;
336 Result.zextOrTrunc(getIntTypeSizeInBits(E->getType()));
337 break;
338 case BinaryOperator::LOr:
339 Result = Result != 0 || RHS != 0;
340 Result.zextOrTrunc(getIntTypeSizeInBits(E->getType()));
341 break;
342
Anders Carlsson06a36752008-07-08 05:49:43 +0000343
Anders Carlssona25ae3d2008-07-08 14:35:21 +0000344 case BinaryOperator::Comma:
Chris Lattner54176fd2008-07-12 00:14:42 +0000345 // Result of the comma is just the result of the RHS.
346 Result = RHS;
347
Anders Carlssona25ae3d2008-07-08 14:35:21 +0000348 // C99 6.6p3: "shall not contain assignment, ..., or comma operators,
349 // *except* when they are contained within a subexpression that is not
350 // evaluated". Note that Assignment can never happen due to constraints
351 // on the LHS subexpr, so we don't need to check it here.
Chris Lattner54176fd2008-07-12 00:14:42 +0000352 if (!Info.isEvaluated)
353 return true;
354
355 // If the value is evaluated, we can accept it as an extension.
356 return Extension(E->getOperatorLoc(), diag::ext_comma_in_constant_expr);
Anders Carlssona25ae3d2008-07-08 14:35:21 +0000357 }
358
359 Result.setIsUnsigned(E->getType()->isUnsignedIntegerType());
Chris Lattnerb542afe2008-07-11 19:10:17 +0000360 return true;
Anders Carlssona25ae3d2008-07-08 14:35:21 +0000361}
362
Chris Lattnerfcee0012008-07-11 21:24:13 +0000363/// EvaluateSizeAlignOf - Evaluate sizeof(SrcTy) or alignof(SrcTy) with a result
364/// as a DstTy type.
365bool IntExprEvaluator::EvaluateSizeAlignOf(bool isSizeOf, QualType SrcTy,
366 QualType DstTy) {
367 // Return the result in the right width.
368 Result.zextOrTrunc(getIntTypeSizeInBits(DstTy));
369 Result.setIsUnsigned(DstTy->isUnsignedIntegerType());
370
371 // sizeof(void) and __alignof__(void) = 1 as a gcc extension.
372 if (SrcTy->isVoidType())
373 Result = 1;
374
375 // sizeof(vla) is not a constantexpr: C99 6.5.3.4p2.
376 if (!SrcTy->isConstantSizeType()) {
377 // FIXME: Should we attempt to evaluate this?
378 return false;
379 }
380
381 // GCC extension: sizeof(function) = 1.
382 if (SrcTy->isFunctionType()) {
383 // FIXME: AlignOf shouldn't be unconditionally 4!
384 Result = isSizeOf ? 1 : 4;
385 return true;
386 }
387
388 // Get information about the size or align.
Chris Lattner87eae5e2008-07-11 22:52:41 +0000389 unsigned CharSize = Info.Ctx.Target.getCharWidth();
Chris Lattnerfcee0012008-07-11 21:24:13 +0000390 if (isSizeOf)
391 Result = getIntTypeSizeInBits(SrcTy) / CharSize;
392 else
Chris Lattner87eae5e2008-07-11 22:52:41 +0000393 Result = Info.Ctx.getTypeAlign(SrcTy) / CharSize;
Chris Lattnerfcee0012008-07-11 21:24:13 +0000394 return true;
395}
396
Chris Lattnerb542afe2008-07-11 19:10:17 +0000397bool IntExprEvaluator::VisitUnaryOperator(const UnaryOperator *E) {
Chris Lattner75a48812008-07-11 22:15:16 +0000398 if (E->isOffsetOfOp()) {
Chris Lattner87eae5e2008-07-11 22:52:41 +0000399 Result = E->evaluateOffsetOf(Info.Ctx);
Chris Lattner75a48812008-07-11 22:15:16 +0000400 Result.setIsUnsigned(E->getType()->isUnsignedIntegerType());
401 return true;
402 }
403
404 if (E->isSizeOfAlignOfOp())
Chris Lattnerfcee0012008-07-11 21:24:13 +0000405 return EvaluateSizeAlignOf(E->getOpcode() == UnaryOperator::SizeOf,
406 E->getSubExpr()->getType(), E->getType());
Chris Lattner75a48812008-07-11 22:15:16 +0000407
Chris Lattner87eae5e2008-07-11 22:52:41 +0000408 // Get the operand value into 'Result'.
409 if (!Visit(E->getSubExpr()))
Chris Lattner75a48812008-07-11 22:15:16 +0000410 return false;
Anders Carlssona25ae3d2008-07-08 14:35:21 +0000411
Chris Lattner75a48812008-07-11 22:15:16 +0000412 switch (E->getOpcode()) {
413 // Address, indirect, pre/post inc/dec, etc are not valid constant exprs.
414 // See C99 6.6p3.
415 default:
416 return false;
417 case UnaryOperator::LNot: {
418 bool Val = Result == 0;
419 Result.zextOrTrunc(getIntTypeSizeInBits(E->getType()));
420 Result = Val;
421 break;
422 }
423 case UnaryOperator::Extension:
424 case UnaryOperator::Plus:
425 // The result is always just the subexpr
426 break;
427 case UnaryOperator::Minus:
428 Result = -Result;
429 break;
430 case UnaryOperator::Not:
431 Result = ~Result;
432 break;
Anders Carlssona25ae3d2008-07-08 14:35:21 +0000433 }
434
435 Result.setIsUnsigned(E->getType()->isUnsignedIntegerType());
Chris Lattnerb542afe2008-07-11 19:10:17 +0000436 return true;
Anders Carlssona25ae3d2008-07-08 14:35:21 +0000437}
438
Chris Lattnerb542afe2008-07-11 19:10:17 +0000439bool IntExprEvaluator::HandleCast(const Expr* SubExpr, QualType DestType) {
Chris Lattner7a767782008-07-11 19:24:49 +0000440 unsigned DestWidth = getIntTypeSizeInBits(DestType);
Anders Carlssona25ae3d2008-07-08 14:35:21 +0000441
442 // Handle simple integer->integer casts.
443 if (SubExpr->getType()->isIntegerType()) {
Chris Lattner87eae5e2008-07-11 22:52:41 +0000444 if (!EvaluateInteger(SubExpr, Result, Info))
Chris Lattnerb542afe2008-07-11 19:10:17 +0000445 return false;
Anders Carlssona25ae3d2008-07-08 14:35:21 +0000446
447 // Figure out if this is a truncate, extend or noop cast.
448 // If the input is signed, do a sign extend, noop, or truncate.
449 if (DestType->isBooleanType()) {
450 // Conversion to bool compares against zero.
451 Result = Result != 0;
452 Result.zextOrTrunc(DestWidth);
Chris Lattner7a767782008-07-11 19:24:49 +0000453 } else
Anders Carlssona25ae3d2008-07-08 14:35:21 +0000454 Result.extOrTrunc(DestWidth);
455 } else if (SubExpr->getType()->isPointerType()) {
456 APValue LV;
Chris Lattner87eae5e2008-07-11 22:52:41 +0000457 if (!EvaluatePointer(SubExpr, LV, Info))
Chris Lattnerb542afe2008-07-11 19:10:17 +0000458 return false;
Anders Carlssona25ae3d2008-07-08 14:35:21 +0000459 if (LV.getLValueBase())
Chris Lattnerb542afe2008-07-11 19:10:17 +0000460 return false;
Anders Carlsson06a36752008-07-08 05:49:43 +0000461
Anders Carlsson559e56b2008-07-08 16:49:00 +0000462 Result.extOrTrunc(DestWidth);
463 Result = LV.getLValueOffset();
Anders Carlssona25ae3d2008-07-08 14:35:21 +0000464 } else {
465 assert(0 && "Unhandled cast!");
Anders Carlsson2bad1682008-07-08 14:30:00 +0000466 }
467
Anders Carlssona25ae3d2008-07-08 14:35:21 +0000468 Result.setIsUnsigned(DestType->isUnsignedIntegerType());
Chris Lattnerb542afe2008-07-11 19:10:17 +0000469 return true;
Anders Carlssona25ae3d2008-07-08 14:35:21 +0000470}
Anders Carlsson2bad1682008-07-08 14:30:00 +0000471
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000472//===----------------------------------------------------------------------===//
473// Top level TryEvaluate.
474//===----------------------------------------------------------------------===//
475
Chris Lattnerb542afe2008-07-11 19:10:17 +0000476bool Expr::tryEvaluate(APValue &Result, ASTContext &Ctx) const {
Chris Lattnercf0f51d2008-07-11 19:19:21 +0000477 llvm::APSInt sInt(32);
Anders Carlssonc754aa62008-07-08 05:13:58 +0000478#if USE_NEW_EVALUATOR
Chris Lattner87eae5e2008-07-11 22:52:41 +0000479 EvalInfo Info(Ctx);
Anders Carlsson06a36752008-07-08 05:49:43 +0000480 if (getType()->isIntegerType()) {
Chris Lattner87eae5e2008-07-11 22:52:41 +0000481 if (EvaluateInteger(this, sInt, Info)) {
Anders Carlsson06a36752008-07-08 05:49:43 +0000482 Result = APValue(sInt);
483 return true;
484 }
485 } else
Anders Carlssonc754aa62008-07-08 05:13:58 +0000486 return false;
487
488#else
Anders Carlssonc44eec62008-07-03 04:20:39 +0000489 if (CalcFakeICEVal(this, sInt, Ctx)) {
490 Result = APValue(sInt);
491 return true;
492 }
Anders Carlssonc754aa62008-07-08 05:13:58 +0000493#endif
Anders Carlssonc44eec62008-07-03 04:20:39 +0000494
495 return false;
496}