blob: adc52e236c1378d1e696caa0fc3d7866cda20688 [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
Eli Friedmand9f4bcd2008-07-27 05:46:18 +0000172 if (SubExpr->getType()->isIntegralType()) {
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000173 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 Lattner4c4867e2008-07-12 00:38:25 +0000229 bool VisitIntegerLiteral(const IntegerLiteral *E) {
230 Result = E->getValue();
231 Result.setIsUnsigned(E->getType()->isUnsignedIntegerType());
232 return true;
233 }
234 bool VisitCharacterLiteral(const CharacterLiteral *E) {
235 Result.zextOrTrunc(getIntTypeSizeInBits(E->getType()));
236 Result = E->getValue();
237 Result.setIsUnsigned(E->getType()->isUnsignedIntegerType());
238 return true;
239 }
240 bool VisitTypesCompatibleExpr(const TypesCompatibleExpr *E) {
241 Result.zextOrTrunc(getIntTypeSizeInBits(E->getType()));
242 Result = Info.Ctx.typesAreCompatible(E->getArgType1(), E->getArgType2());
243 return true;
244 }
245 bool VisitDeclRefExpr(const DeclRefExpr *E);
246 bool VisitCallExpr(const CallExpr *E);
Chris Lattnerb542afe2008-07-11 19:10:17 +0000247 bool VisitBinaryOperator(const BinaryOperator *E);
248 bool VisitUnaryOperator(const UnaryOperator *E);
Anders Carlsson06a36752008-07-08 05:49:43 +0000249
Chris Lattner732b2232008-07-12 01:15:53 +0000250 bool VisitCastExpr(CastExpr* E) {
251 return HandleCast(E->getLParenLoc(), E->getSubExpr(), E->getType());
Anders Carlsson650c92f2008-07-08 15:34:11 +0000252 }
Chris Lattner732b2232008-07-12 01:15:53 +0000253 bool VisitImplicitCastExpr(ImplicitCastExpr* E) {
254 return HandleCast(E->getLocStart(), E->getSubExpr(), E->getType());
Anders Carlsson650c92f2008-07-08 15:34:11 +0000255 }
Chris Lattnerfcee0012008-07-11 21:24:13 +0000256 bool VisitSizeOfAlignOfTypeExpr(const SizeOfAlignOfTypeExpr *E) {
Chris Lattner54176fd2008-07-12 00:14:42 +0000257 return EvaluateSizeAlignOf(E->isSizeOf(), E->getArgumentType(),
258 E->getType());
Chris Lattnerfcee0012008-07-11 21:24:13 +0000259 }
Chris Lattner4c4867e2008-07-12 00:38:25 +0000260
Chris Lattnerfcee0012008-07-11 21:24:13 +0000261private:
Chris Lattner732b2232008-07-12 01:15:53 +0000262 bool HandleCast(SourceLocation CastLoc, Expr *SubExpr, QualType DestType);
Chris Lattnerfcee0012008-07-11 21:24:13 +0000263 bool EvaluateSizeAlignOf(bool isSizeOf, QualType SrcTy, QualType DstTy);
Anders Carlssona25ae3d2008-07-08 14:35:21 +0000264};
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000265} // end anonymous namespace
Anders Carlsson650c92f2008-07-08 15:34:11 +0000266
Chris Lattner87eae5e2008-07-11 22:52:41 +0000267static bool EvaluateInteger(const Expr* E, APSInt &Result, EvalInfo &Info) {
268 return IntExprEvaluator(Info, Result).Visit(const_cast<Expr*>(E));
Anders Carlsson650c92f2008-07-08 15:34:11 +0000269}
Anders Carlsson650c92f2008-07-08 15:34:11 +0000270
Chris Lattner4c4867e2008-07-12 00:38:25 +0000271bool IntExprEvaluator::VisitDeclRefExpr(const DeclRefExpr *E) {
272 // Enums are integer constant exprs.
273 if (const EnumConstantDecl *D = dyn_cast<EnumConstantDecl>(E->getDecl())) {
274 Result = D->getInitVal();
275 return true;
276 }
277
278 // Otherwise, random variable references are not constants.
279 return Error(E->getLocStart(), diag::err_expr_not_constant);
280}
281
282
283bool IntExprEvaluator::VisitCallExpr(const CallExpr *E) {
284 Result.zextOrTrunc(getIntTypeSizeInBits(E->getType()));
285 // __builtin_type_compatible_p is a constant.
286 if (E->isBuiltinClassifyType(Result))
287 return true;
288
289 return Error(E->getLocStart(), diag::err_expr_not_constant);
290}
Anders Carlsson650c92f2008-07-08 15:34:11 +0000291
Chris Lattnerb542afe2008-07-11 19:10:17 +0000292bool IntExprEvaluator::VisitBinaryOperator(const BinaryOperator *E) {
Anders Carlssona25ae3d2008-07-08 14:35:21 +0000293 // The LHS of a constant expr is always evaluated and needed.
Anders Carlssona25ae3d2008-07-08 14:35:21 +0000294 llvm::APSInt RHS(32);
Chris Lattner54176fd2008-07-12 00:14:42 +0000295 if (!Visit(E->getLHS()))
296 return false; // error in subexpression.
297
298 bool OldEval = Info.isEvaluated;
299
300 // The short-circuiting &&/|| operators don't necessarily evaluate their
301 // RHS. Make sure to pass isEvaluated down correctly.
302 if ((E->getOpcode() == BinaryOperator::LAnd && Result == 0) ||
303 (E->getOpcode() == BinaryOperator::LOr && Result != 0))
304 Info.isEvaluated = false;
Eli Friedmand9f4bcd2008-07-27 05:46:18 +0000305
306 // FIXME: Handle pointer subtraction
307
308 // FIXME Maybe we want to succeed even where we can't evaluate the
309 // right side of LAnd/LOr?
310 // For example, see http://llvm.org/bugs/show_bug.cgi?id=2525
Chris Lattner54176fd2008-07-12 00:14:42 +0000311 if (!EvaluateInteger(E->getRHS(), RHS, Info))
Chris Lattnerb542afe2008-07-11 19:10:17 +0000312 return false;
Chris Lattner54176fd2008-07-12 00:14:42 +0000313 Info.isEvaluated = OldEval;
Anders Carlssona25ae3d2008-07-08 14:35:21 +0000314
315 switch (E->getOpcode()) {
Chris Lattner54176fd2008-07-12 00:14:42 +0000316 default: return Error(E->getOperatorLoc(), diag::err_expr_not_constant);
317 case BinaryOperator::Mul: Result *= RHS; return true;
318 case BinaryOperator::Add: Result += RHS; return true;
319 case BinaryOperator::Sub: Result -= RHS; return true;
320 case BinaryOperator::And: Result &= RHS; return true;
321 case BinaryOperator::Xor: Result ^= RHS; return true;
322 case BinaryOperator::Or: Result |= RHS; return true;
Chris Lattner75a48812008-07-11 22:15:16 +0000323 case BinaryOperator::Div:
Chris Lattner54176fd2008-07-12 00:14:42 +0000324 if (RHS == 0)
325 return Error(E->getOperatorLoc(), diag::err_expr_divide_by_zero);
Chris Lattner75a48812008-07-11 22:15:16 +0000326 Result /= RHS;
Chris Lattner54176fd2008-07-12 00:14:42 +0000327 return true;
Chris Lattner75a48812008-07-11 22:15:16 +0000328 case BinaryOperator::Rem:
Chris Lattner54176fd2008-07-12 00:14:42 +0000329 if (RHS == 0)
330 return Error(E->getOperatorLoc(), diag::err_expr_divide_by_zero);
Chris Lattner75a48812008-07-11 22:15:16 +0000331 Result %= RHS;
Chris Lattner54176fd2008-07-12 00:14:42 +0000332 return true;
Anders Carlssona25ae3d2008-07-08 14:35:21 +0000333 case BinaryOperator::Shl:
Chris Lattner54176fd2008-07-12 00:14:42 +0000334 // FIXME: Warn about out of range shift amounts!
Chris Lattnerb542afe2008-07-11 19:10:17 +0000335 Result <<= (unsigned)RHS.getLimitedValue(Result.getBitWidth()-1);
Anders Carlssona25ae3d2008-07-08 14:35:21 +0000336 break;
337 case BinaryOperator::Shr:
Chris Lattnerb542afe2008-07-11 19:10:17 +0000338 Result >>= (unsigned)RHS.getLimitedValue(Result.getBitWidth()-1);
Anders Carlssona25ae3d2008-07-08 14:35:21 +0000339 break;
Chris Lattnerb542afe2008-07-11 19:10:17 +0000340
Chris Lattnerac7cb602008-07-11 19:29:32 +0000341 case BinaryOperator::LT:
342 Result = Result < RHS;
343 Result.zextOrTrunc(getIntTypeSizeInBits(E->getType()));
344 break;
345 case BinaryOperator::GT:
346 Result = Result > RHS;
347 Result.zextOrTrunc(getIntTypeSizeInBits(E->getType()));
348 break;
349 case BinaryOperator::LE:
350 Result = Result <= RHS;
351 Result.zextOrTrunc(getIntTypeSizeInBits(E->getType()));
352 break;
353 case BinaryOperator::GE:
354 Result = Result >= RHS;
355 Result.zextOrTrunc(getIntTypeSizeInBits(E->getType()));
356 break;
357 case BinaryOperator::EQ:
358 Result = Result == RHS;
359 Result.zextOrTrunc(getIntTypeSizeInBits(E->getType()));
360 break;
361 case BinaryOperator::NE:
362 Result = Result != RHS;
363 Result.zextOrTrunc(getIntTypeSizeInBits(E->getType()));
364 break;
Chris Lattner54176fd2008-07-12 00:14:42 +0000365 case BinaryOperator::LAnd:
366 Result = Result != 0 && RHS != 0;
367 Result.zextOrTrunc(getIntTypeSizeInBits(E->getType()));
368 break;
369 case BinaryOperator::LOr:
370 Result = Result != 0 || RHS != 0;
371 Result.zextOrTrunc(getIntTypeSizeInBits(E->getType()));
372 break;
373
Anders Carlsson06a36752008-07-08 05:49:43 +0000374
Anders Carlssona25ae3d2008-07-08 14:35:21 +0000375 case BinaryOperator::Comma:
Chris Lattner54176fd2008-07-12 00:14:42 +0000376 // Result of the comma is just the result of the RHS.
377 Result = RHS;
378
Anders Carlssona25ae3d2008-07-08 14:35:21 +0000379 // C99 6.6p3: "shall not contain assignment, ..., or comma operators,
380 // *except* when they are contained within a subexpression that is not
381 // evaluated". Note that Assignment can never happen due to constraints
382 // on the LHS subexpr, so we don't need to check it here.
Chris Lattner54176fd2008-07-12 00:14:42 +0000383 if (!Info.isEvaluated)
384 return true;
385
386 // If the value is evaluated, we can accept it as an extension.
387 return Extension(E->getOperatorLoc(), diag::ext_comma_in_constant_expr);
Anders Carlssona25ae3d2008-07-08 14:35:21 +0000388 }
389
390 Result.setIsUnsigned(E->getType()->isUnsignedIntegerType());
Chris Lattnerb542afe2008-07-11 19:10:17 +0000391 return true;
Anders Carlssona25ae3d2008-07-08 14:35:21 +0000392}
393
Chris Lattnerfcee0012008-07-11 21:24:13 +0000394/// EvaluateSizeAlignOf - Evaluate sizeof(SrcTy) or alignof(SrcTy) with a result
395/// as a DstTy type.
396bool IntExprEvaluator::EvaluateSizeAlignOf(bool isSizeOf, QualType SrcTy,
397 QualType DstTy) {
398 // Return the result in the right width.
399 Result.zextOrTrunc(getIntTypeSizeInBits(DstTy));
400 Result.setIsUnsigned(DstTy->isUnsignedIntegerType());
401
402 // sizeof(void) and __alignof__(void) = 1 as a gcc extension.
403 if (SrcTy->isVoidType())
404 Result = 1;
405
406 // sizeof(vla) is not a constantexpr: C99 6.5.3.4p2.
407 if (!SrcTy->isConstantSizeType()) {
408 // FIXME: Should we attempt to evaluate this?
409 return false;
410 }
411
412 // GCC extension: sizeof(function) = 1.
413 if (SrcTy->isFunctionType()) {
414 // FIXME: AlignOf shouldn't be unconditionally 4!
415 Result = isSizeOf ? 1 : 4;
416 return true;
417 }
418
419 // Get information about the size or align.
Chris Lattner87eae5e2008-07-11 22:52:41 +0000420 unsigned CharSize = Info.Ctx.Target.getCharWidth();
Chris Lattnerfcee0012008-07-11 21:24:13 +0000421 if (isSizeOf)
422 Result = getIntTypeSizeInBits(SrcTy) / CharSize;
423 else
Chris Lattner87eae5e2008-07-11 22:52:41 +0000424 Result = Info.Ctx.getTypeAlign(SrcTy) / CharSize;
Chris Lattnerfcee0012008-07-11 21:24:13 +0000425 return true;
426}
427
Chris Lattnerb542afe2008-07-11 19:10:17 +0000428bool IntExprEvaluator::VisitUnaryOperator(const UnaryOperator *E) {
Chris Lattner4c4867e2008-07-12 00:38:25 +0000429 // Special case unary operators that do not need their subexpression
430 // evaluated. offsetof/sizeof/alignof are all special.
Chris Lattner75a48812008-07-11 22:15:16 +0000431 if (E->isOffsetOfOp()) {
Chris Lattner4c4867e2008-07-12 00:38:25 +0000432 Result.zextOrTrunc(getIntTypeSizeInBits(E->getType()));
Chris Lattner87eae5e2008-07-11 22:52:41 +0000433 Result = E->evaluateOffsetOf(Info.Ctx);
Chris Lattner75a48812008-07-11 22:15:16 +0000434 Result.setIsUnsigned(E->getType()->isUnsignedIntegerType());
435 return true;
436 }
437
438 if (E->isSizeOfAlignOfOp())
Chris Lattnerfcee0012008-07-11 21:24:13 +0000439 return EvaluateSizeAlignOf(E->getOpcode() == UnaryOperator::SizeOf,
440 E->getSubExpr()->getType(), E->getType());
Chris Lattner75a48812008-07-11 22:15:16 +0000441
Chris Lattner87eae5e2008-07-11 22:52:41 +0000442 // Get the operand value into 'Result'.
443 if (!Visit(E->getSubExpr()))
Chris Lattner75a48812008-07-11 22:15:16 +0000444 return false;
Anders Carlssona25ae3d2008-07-08 14:35:21 +0000445
Chris Lattner75a48812008-07-11 22:15:16 +0000446 switch (E->getOpcode()) {
Chris Lattner4c4867e2008-07-12 00:38:25 +0000447 default:
Chris Lattner75a48812008-07-11 22:15:16 +0000448 // Address, indirect, pre/post inc/dec, etc are not valid constant exprs.
449 // See C99 6.6p3.
Chris Lattner4c4867e2008-07-12 00:38:25 +0000450 return Error(E->getOperatorLoc(), diag::err_expr_not_constant);
Chris Lattner75a48812008-07-11 22:15:16 +0000451 case UnaryOperator::LNot: {
452 bool Val = Result == 0;
453 Result.zextOrTrunc(getIntTypeSizeInBits(E->getType()));
454 Result = Val;
455 break;
456 }
457 case UnaryOperator::Extension:
Chris Lattner4c4867e2008-07-12 00:38:25 +0000458 // FIXME: Should extension allow i-c-e extension expressions in its scope?
459 // If so, we could clear the diagnostic ID.
Chris Lattner75a48812008-07-11 22:15:16 +0000460 case UnaryOperator::Plus:
Chris Lattner4c4867e2008-07-12 00:38:25 +0000461 // The result is always just the subexpr.
Chris Lattner75a48812008-07-11 22:15:16 +0000462 break;
463 case UnaryOperator::Minus:
464 Result = -Result;
465 break;
466 case UnaryOperator::Not:
467 Result = ~Result;
468 break;
Anders Carlssona25ae3d2008-07-08 14:35:21 +0000469 }
470
471 Result.setIsUnsigned(E->getType()->isUnsignedIntegerType());
Chris Lattnerb542afe2008-07-11 19:10:17 +0000472 return true;
Anders Carlssona25ae3d2008-07-08 14:35:21 +0000473}
474
Chris Lattner732b2232008-07-12 01:15:53 +0000475/// HandleCast - This is used to evaluate implicit or explicit casts where the
476/// result type is integer.
477bool IntExprEvaluator::HandleCast(SourceLocation CastLoc,
478 Expr *SubExpr, QualType DestType) {
Chris Lattner7a767782008-07-11 19:24:49 +0000479 unsigned DestWidth = getIntTypeSizeInBits(DestType);
Anders Carlssona25ae3d2008-07-08 14:35:21 +0000480
481 // Handle simple integer->integer casts.
482 if (SubExpr->getType()->isIntegerType()) {
Chris Lattner732b2232008-07-12 01:15:53 +0000483 if (!Visit(SubExpr))
Chris Lattnerb542afe2008-07-11 19:10:17 +0000484 return false;
Anders Carlssona25ae3d2008-07-08 14:35:21 +0000485
486 // Figure out if this is a truncate, extend or noop cast.
487 // If the input is signed, do a sign extend, noop, or truncate.
488 if (DestType->isBooleanType()) {
489 // Conversion to bool compares against zero.
490 Result = Result != 0;
491 Result.zextOrTrunc(DestWidth);
Chris Lattner7a767782008-07-11 19:24:49 +0000492 } else
Anders Carlssona25ae3d2008-07-08 14:35:21 +0000493 Result.extOrTrunc(DestWidth);
Chris Lattner732b2232008-07-12 01:15:53 +0000494 Result.setIsUnsigned(DestType->isUnsignedIntegerType());
495 return true;
496 }
497
498 // FIXME: Clean this up!
499 if (SubExpr->getType()->isPointerType()) {
Anders Carlssona25ae3d2008-07-08 14:35:21 +0000500 APValue LV;
Chris Lattner87eae5e2008-07-11 22:52:41 +0000501 if (!EvaluatePointer(SubExpr, LV, Info))
Chris Lattnerb542afe2008-07-11 19:10:17 +0000502 return false;
Anders Carlssona25ae3d2008-07-08 14:35:21 +0000503 if (LV.getLValueBase())
Chris Lattnerb542afe2008-07-11 19:10:17 +0000504 return false;
Anders Carlsson06a36752008-07-08 05:49:43 +0000505
Anders Carlsson559e56b2008-07-08 16:49:00 +0000506 Result.extOrTrunc(DestWidth);
507 Result = LV.getLValueOffset();
Chris Lattner732b2232008-07-12 01:15:53 +0000508 Result.setIsUnsigned(DestType->isUnsignedIntegerType());
509 return true;
Anders Carlsson2bad1682008-07-08 14:30:00 +0000510 }
511
Chris Lattner732b2232008-07-12 01:15:53 +0000512 if (!SubExpr->getType()->isRealFloatingType())
513 return Error(CastLoc, diag::err_expr_not_constant);
514
515 // FIXME: Generalize floating point constant folding! For now we just permit
516 // which is allowed by integer constant expressions.
517
518 // Allow floating constants that are the immediate operands of casts or that
519 // are parenthesized.
520 const Expr *Operand = SubExpr;
521 while (const ParenExpr *PE = dyn_cast<ParenExpr>(Operand))
522 Operand = PE->getSubExpr();
523
524 // If this isn't a floating literal, we can't handle it.
525 const FloatingLiteral *FL = dyn_cast<FloatingLiteral>(Operand);
526 if (!FL)
527 return Error(CastLoc, diag::err_expr_not_constant);
528
529 // If the destination is boolean, compare against zero.
530 if (DestType->isBooleanType()) {
531 Result = !FL->getValue().isZero();
532 Result.zextOrTrunc(DestWidth);
533 Result.setIsUnsigned(DestType->isUnsignedIntegerType());
534 return true;
535 }
536
537 // Determine whether we are converting to unsigned or signed.
538 bool DestSigned = DestType->isSignedIntegerType();
539
540 // FIXME: Warning for overflow.
541 uint64_t Space[4];
542 (void)FL->getValue().convertToInteger(Space, DestWidth, DestSigned,
543 llvm::APFloat::rmTowardZero);
544 Result = llvm::APInt(DestWidth, 4, Space);
545 Result.setIsUnsigned(!DestSigned);
Chris Lattnerb542afe2008-07-11 19:10:17 +0000546 return true;
Anders Carlssona25ae3d2008-07-08 14:35:21 +0000547}
Anders Carlsson2bad1682008-07-08 14:30:00 +0000548
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000549//===----------------------------------------------------------------------===//
550// Top level TryEvaluate.
551//===----------------------------------------------------------------------===//
552
Chris Lattnerb542afe2008-07-11 19:10:17 +0000553bool Expr::tryEvaluate(APValue &Result, ASTContext &Ctx) const {
Chris Lattnercf0f51d2008-07-11 19:19:21 +0000554 llvm::APSInt sInt(32);
Anders Carlssonc754aa62008-07-08 05:13:58 +0000555#if USE_NEW_EVALUATOR
Chris Lattner87eae5e2008-07-11 22:52:41 +0000556 EvalInfo Info(Ctx);
Anders Carlsson06a36752008-07-08 05:49:43 +0000557 if (getType()->isIntegerType()) {
Chris Lattner87eae5e2008-07-11 22:52:41 +0000558 if (EvaluateInteger(this, sInt, Info)) {
Anders Carlsson06a36752008-07-08 05:49:43 +0000559 Result = APValue(sInt);
560 return true;
561 }
562 } else
Anders Carlssonc754aa62008-07-08 05:13:58 +0000563 return false;
564
565#else
Anders Carlssonc44eec62008-07-03 04:20:39 +0000566 if (CalcFakeICEVal(this, sInt, Ctx)) {
567 Result = APValue(sInt);
568 return true;
569 }
Anders Carlssonc754aa62008-07-08 05:13:58 +0000570#endif
Anders Carlssonc44eec62008-07-03 04:20:39 +0000571
572 return false;
573}