blob: 0fcbdf12f06997cedf3c04b173996dd7b3997912 [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"
Eli Friedman4efaa272008-11-12 09:44:48 +000016#include "clang/AST/RecordLayout.h"
Seo Sanghyeon0fe52e12008-07-08 07:23:12 +000017#include "clang/AST/StmtVisitor.h"
Chris Lattner500d3292009-01-29 05:15:15 +000018#include "clang/AST/ASTDiagnostic.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;
Eli Friedmand8bfe7f2008-08-22 00:06:13 +000023using llvm::APFloat;
Anders Carlssonc44eec62008-07-03 04:20:39 +000024
Chris Lattner87eae5e2008-07-11 22:52:41 +000025/// EvalInfo - This is a private struct used by the evaluator to capture
26/// information about a subexpression as it is folded. It retains information
27/// about the AST context, but also maintains information about the folded
28/// expression.
29///
30/// If an expression could be evaluated, it is still possible it is not a C
31/// "integer constant expression" or constant expression. If not, this struct
32/// captures information about how and why not.
33///
34/// One bit of information passed *into* the request for constant folding
35/// indicates whether the subexpression is "evaluated" or not according to C
36/// rules. For example, the RHS of (0 && foo()) is not evaluated. We can
37/// evaluate the expression regardless of what the RHS is, but C only allows
38/// certain things in certain situations.
39struct EvalInfo {
40 ASTContext &Ctx;
41
Anders Carlsson54da0492008-11-30 16:38:33 +000042 /// EvalResult - Contains information about the evaluation.
43 Expr::EvalResult &EvalResult;
Anders Carlssonf0c1e4b2008-11-30 18:26:25 +000044
45 /// ShortCircuit - will be greater than zero if the current subexpression has
46 /// will not be evaluated because it's short-circuited (according to C rules).
47 unsigned ShortCircuit;
Chris Lattner87eae5e2008-07-11 22:52:41 +000048
Anders Carlsson54da0492008-11-30 16:38:33 +000049 EvalInfo(ASTContext &ctx, Expr::EvalResult& evalresult) : Ctx(ctx),
Anders Carlssonf0c1e4b2008-11-30 18:26:25 +000050 EvalResult(evalresult), ShortCircuit(0) {}
Chris Lattner87eae5e2008-07-11 22:52:41 +000051};
52
53
Eli Friedman4efaa272008-11-12 09:44:48 +000054static bool EvaluateLValue(const Expr *E, APValue &Result, EvalInfo &Info);
Chris Lattner87eae5e2008-07-11 22:52:41 +000055static bool EvaluatePointer(const Expr *E, APValue &Result, EvalInfo &Info);
56static bool EvaluateInteger(const Expr *E, APSInt &Result, EvalInfo &Info);
Eli Friedmand8bfe7f2008-08-22 00:06:13 +000057static bool EvaluateFloat(const Expr *E, APFloat &Result, EvalInfo &Info);
Daniel Dunbara5fd07b2009-01-28 22:24:07 +000058static bool EvaluateComplex(const Expr *E, APValue &Result, EvalInfo &Info);
Chris Lattnerf5eeb052008-07-11 18:11:29 +000059
60//===----------------------------------------------------------------------===//
Eli Friedman4efaa272008-11-12 09:44:48 +000061// Misc utilities
62//===----------------------------------------------------------------------===//
63
64static bool HandleConversionToBool(Expr* E, bool& Result, EvalInfo &Info) {
65 if (E->getType()->isIntegralType()) {
66 APSInt IntResult;
67 if (!EvaluateInteger(E, IntResult, Info))
68 return false;
69 Result = IntResult != 0;
70 return true;
71 } else if (E->getType()->isRealFloatingType()) {
72 APFloat FloatResult(0.0);
73 if (!EvaluateFloat(E, FloatResult, Info))
74 return false;
75 Result = !FloatResult.isZero();
76 return true;
77 } else if (E->getType()->isPointerType()) {
78 APValue PointerResult;
79 if (!EvaluatePointer(E, PointerResult, Info))
80 return false;
81 // FIXME: Is this accurate for all kinds of bases? If not, what would
82 // the check look like?
83 Result = PointerResult.getLValueBase() || PointerResult.getLValueOffset();
84 return true;
85 }
86
87 return false;
88}
89
Daniel Dunbara2cfd342009-01-29 06:16:07 +000090static APSInt HandleFloatToIntCast(QualType DestType, QualType SrcType,
91 APFloat &Value, ASTContext &Ctx) {
92 unsigned DestWidth = Ctx.getIntWidth(DestType);
93 // Determine whether we are converting to unsigned or signed.
94 bool DestSigned = DestType->isSignedIntegerType();
95
96 // FIXME: Warning for overflow.
97 uint64_t Space[4];
98 bool ignored;
99 (void)Value.convertToInteger(Space, DestWidth, DestSigned,
100 llvm::APFloat::rmTowardZero, &ignored);
101 return APSInt(llvm::APInt(DestWidth, 4, Space), !DestSigned);
102}
103
104static APFloat HandleFloatToFloatCast(QualType DestType, QualType SrcType,
105 APFloat &Value, ASTContext &Ctx) {
106 bool ignored;
107 APFloat Result = Value;
108 Result.convert(Ctx.getFloatTypeSemantics(DestType),
109 APFloat::rmNearestTiesToEven, &ignored);
110 return Result;
111}
112
113static APSInt HandleIntToIntCast(QualType DestType, QualType SrcType,
114 APSInt &Value, ASTContext &Ctx) {
115 unsigned DestWidth = Ctx.getIntWidth(DestType);
116 APSInt Result = Value;
117 // Figure out if this is a truncate, extend or noop cast.
118 // If the input is signed, do a sign extend, noop, or truncate.
119 Result.extOrTrunc(DestWidth);
120 Result.setIsUnsigned(DestType->isUnsignedIntegerType());
121 return Result;
122}
123
124static APFloat HandleIntToFloatCast(QualType DestType, QualType SrcType,
125 APSInt &Value, ASTContext &Ctx) {
126
127 APFloat Result(Ctx.getFloatTypeSemantics(DestType), 1);
128 Result.convertFromAPInt(Value, Value.isSigned(),
129 APFloat::rmNearestTiesToEven);
130 return Result;
131}
132
Eli Friedman4efaa272008-11-12 09:44:48 +0000133//===----------------------------------------------------------------------===//
134// LValue Evaluation
135//===----------------------------------------------------------------------===//
136namespace {
137class VISIBILITY_HIDDEN LValueExprEvaluator
138 : public StmtVisitor<LValueExprEvaluator, APValue> {
139 EvalInfo &Info;
140public:
141
142 LValueExprEvaluator(EvalInfo &info) : Info(info) {}
143
144 APValue VisitStmt(Stmt *S) {
Daniel Dunbar8a7b7c62008-11-12 21:52:46 +0000145#if 0
Eli Friedman4efaa272008-11-12 09:44:48 +0000146 // FIXME: Remove this when we support more expressions.
147 printf("Unhandled pointer statement\n");
148 S->dump();
Daniel Dunbar8a7b7c62008-11-12 21:52:46 +0000149#endif
Eli Friedman4efaa272008-11-12 09:44:48 +0000150 return APValue();
151 }
152
153 APValue VisitParenExpr(ParenExpr *E) { return Visit(E->getSubExpr()); }
Anders Carlsson35873c42008-11-24 04:41:22 +0000154 APValue VisitDeclRefExpr(DeclRefExpr *E);
Eli Friedman4efaa272008-11-12 09:44:48 +0000155 APValue VisitPredefinedExpr(PredefinedExpr *E) { return APValue(E, 0); }
156 APValue VisitCompoundLiteralExpr(CompoundLiteralExpr *E);
157 APValue VisitMemberExpr(MemberExpr *E);
158 APValue VisitStringLiteral(StringLiteral *E) { return APValue(E, 0); }
Anders Carlsson3068d112008-11-16 19:01:22 +0000159 APValue VisitArraySubscriptExpr(ArraySubscriptExpr *E);
Eli Friedmane8761c82009-02-20 01:57:15 +0000160 APValue VisitUnaryDeref(UnaryOperator *E);
Eli Friedman4efaa272008-11-12 09:44:48 +0000161};
162} // end anonymous namespace
163
164static bool EvaluateLValue(const Expr* E, APValue& Result, EvalInfo &Info) {
165 Result = LValueExprEvaluator(Info).Visit(const_cast<Expr*>(E));
166 return Result.isLValue();
167}
168
Anders Carlsson35873c42008-11-24 04:41:22 +0000169APValue LValueExprEvaluator::VisitDeclRefExpr(DeclRefExpr *E)
170{
171 if (!E->hasGlobalStorage())
172 return APValue();
173
174 return APValue(E, 0);
175}
176
Eli Friedman4efaa272008-11-12 09:44:48 +0000177APValue LValueExprEvaluator::VisitCompoundLiteralExpr(CompoundLiteralExpr *E) {
178 if (E->isFileScope())
179 return APValue(E, 0);
180 return APValue();
181}
182
183APValue LValueExprEvaluator::VisitMemberExpr(MemberExpr *E) {
184 APValue result;
185 QualType Ty;
186 if (E->isArrow()) {
187 if (!EvaluatePointer(E->getBase(), result, Info))
188 return APValue();
189 Ty = E->getBase()->getType()->getAsPointerType()->getPointeeType();
190 } else {
191 result = Visit(E->getBase());
192 if (result.isUninit())
193 return APValue();
194 Ty = E->getBase()->getType();
195 }
196
197 RecordDecl *RD = Ty->getAsRecordType()->getDecl();
198 const ASTRecordLayout &RL = Info.Ctx.getASTRecordLayout(RD);
Douglas Gregor86f19402008-12-20 23:49:58 +0000199
200 FieldDecl *FD = dyn_cast<FieldDecl>(E->getMemberDecl());
201 if (!FD) // FIXME: deal with other kinds of member expressions
202 return APValue();
Eli Friedman4efaa272008-11-12 09:44:48 +0000203
204 // FIXME: This is linear time.
Douglas Gregor44b43212008-12-11 16:49:14 +0000205 unsigned i = 0;
206 for (RecordDecl::field_iterator Field = RD->field_begin(),
207 FieldEnd = RD->field_end();
208 Field != FieldEnd; (void)++Field, ++i) {
209 if (*Field == FD)
Eli Friedman4efaa272008-11-12 09:44:48 +0000210 break;
211 }
212
213 result.setLValue(result.getLValueBase(),
214 result.getLValueOffset() + RL.getFieldOffset(i) / 8);
215
216 return result;
217}
218
Anders Carlsson3068d112008-11-16 19:01:22 +0000219APValue LValueExprEvaluator::VisitArraySubscriptExpr(ArraySubscriptExpr *E)
220{
221 APValue Result;
222
223 if (!EvaluatePointer(E->getBase(), Result, Info))
224 return APValue();
225
226 APSInt Index;
227 if (!EvaluateInteger(E->getIdx(), Index, Info))
228 return APValue();
229
230 uint64_t ElementSize = Info.Ctx.getTypeSize(E->getType()) / 8;
231
232 uint64_t Offset = Index.getSExtValue() * ElementSize;
233 Result.setLValue(Result.getLValueBase(),
234 Result.getLValueOffset() + Offset);
235 return Result;
236}
Eli Friedman4efaa272008-11-12 09:44:48 +0000237
Eli Friedmane8761c82009-02-20 01:57:15 +0000238APValue LValueExprEvaluator::VisitUnaryDeref(UnaryOperator *E)
239{
240 APValue Result;
241 if (!EvaluatePointer(E->getSubExpr(), Result, Info))
242 return APValue();
243 return Result;
244}
245
Eli Friedman4efaa272008-11-12 09:44:48 +0000246//===----------------------------------------------------------------------===//
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000247// Pointer Evaluation
248//===----------------------------------------------------------------------===//
249
Anders Carlssonc754aa62008-07-08 05:13:58 +0000250namespace {
Anders Carlsson2bad1682008-07-08 14:30:00 +0000251class VISIBILITY_HIDDEN PointerExprEvaluator
252 : public StmtVisitor<PointerExprEvaluator, APValue> {
Chris Lattner87eae5e2008-07-11 22:52:41 +0000253 EvalInfo &Info;
Anders Carlsson2bad1682008-07-08 14:30:00 +0000254public:
Anders Carlsson2bad1682008-07-08 14:30:00 +0000255
Chris Lattner87eae5e2008-07-11 22:52:41 +0000256 PointerExprEvaluator(EvalInfo &info) : Info(info) {}
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000257
Anders Carlsson2bad1682008-07-08 14:30:00 +0000258 APValue VisitStmt(Stmt *S) {
Anders Carlsson2bad1682008-07-08 14:30:00 +0000259 return APValue();
260 }
261
262 APValue VisitParenExpr(ParenExpr *E) { return Visit(E->getSubExpr()); }
263
Anders Carlsson650c92f2008-07-08 15:34:11 +0000264 APValue VisitBinaryOperator(const BinaryOperator *E);
265 APValue VisitCastExpr(const CastExpr* E);
Eli Friedman4efaa272008-11-12 09:44:48 +0000266 APValue VisitUnaryOperator(const UnaryOperator *E);
267 APValue VisitObjCStringLiteral(ObjCStringLiteral *E)
268 { return APValue(E, 0); }
Eli Friedmanf0115892009-01-25 01:21:06 +0000269 APValue VisitAddrLabelExpr(AddrLabelExpr *E)
270 { return APValue(E, 0); }
Eli Friedman3941b182009-01-25 01:54:01 +0000271 APValue VisitCallExpr(CallExpr *E);
Mike Stumpb83d2872009-02-19 22:01:56 +0000272 APValue VisitBlockExpr(BlockExpr *E) {
273 if (!E->hasBlockDeclRefExprs())
274 return APValue(E, 0);
275 return APValue();
276 }
Eli Friedman4efaa272008-11-12 09:44:48 +0000277 APValue VisitConditionalOperator(ConditionalOperator *E);
Anders Carlsson650c92f2008-07-08 15:34:11 +0000278};
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000279} // end anonymous namespace
Anders Carlsson650c92f2008-07-08 15:34:11 +0000280
Chris Lattner87eae5e2008-07-11 22:52:41 +0000281static bool EvaluatePointer(const Expr* E, APValue& Result, EvalInfo &Info) {
Mike Stumpca2f3fd2009-02-18 21:44:49 +0000282 if (!E->getType()->isPointerType()
283 && !E->getType()->isBlockPointerType())
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000284 return false;
Chris Lattner87eae5e2008-07-11 22:52:41 +0000285 Result = PointerExprEvaluator(Info).Visit(const_cast<Expr*>(E));
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000286 return Result.isLValue();
287}
288
289APValue PointerExprEvaluator::VisitBinaryOperator(const BinaryOperator *E) {
290 if (E->getOpcode() != BinaryOperator::Add &&
291 E->getOpcode() != BinaryOperator::Sub)
292 return APValue();
293
294 const Expr *PExp = E->getLHS();
295 const Expr *IExp = E->getRHS();
296 if (IExp->getType()->isPointerType())
297 std::swap(PExp, IExp);
298
299 APValue ResultLValue;
Chris Lattner87eae5e2008-07-11 22:52:41 +0000300 if (!EvaluatePointer(PExp, ResultLValue, Info))
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000301 return APValue();
302
303 llvm::APSInt AdditionalOffset(32);
Chris Lattner87eae5e2008-07-11 22:52:41 +0000304 if (!EvaluateInteger(IExp, AdditionalOffset, Info))
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000305 return APValue();
306
Eli Friedman4efaa272008-11-12 09:44:48 +0000307 QualType PointeeType = PExp->getType()->getAsPointerType()->getPointeeType();
Anders Carlsson4d4c50d2009-02-19 04:55:58 +0000308 uint64_t SizeOfPointee;
309
310 // Explicitly handle GNU void* and function pointer arithmetic extensions.
311 if (PointeeType->isVoidType() || PointeeType->isFunctionType())
312 SizeOfPointee = 1;
313 else
314 SizeOfPointee = Info.Ctx.getTypeSize(PointeeType) / 8;
Eli Friedman4efaa272008-11-12 09:44:48 +0000315
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000316 uint64_t Offset = ResultLValue.getLValueOffset();
Eli Friedman4efaa272008-11-12 09:44:48 +0000317
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000318 if (E->getOpcode() == BinaryOperator::Add)
Eli Friedman4efaa272008-11-12 09:44:48 +0000319 Offset += AdditionalOffset.getLimitedValue() * SizeOfPointee;
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000320 else
Eli Friedman4efaa272008-11-12 09:44:48 +0000321 Offset -= AdditionalOffset.getLimitedValue() * SizeOfPointee;
322
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000323 return APValue(ResultLValue.getLValueBase(), Offset);
324}
Eli Friedman4efaa272008-11-12 09:44:48 +0000325
326APValue PointerExprEvaluator::VisitUnaryOperator(const UnaryOperator *E) {
327 if (E->getOpcode() == UnaryOperator::Extension) {
328 // FIXME: Deal with warnings?
329 return Visit(E->getSubExpr());
330 }
331
332 if (E->getOpcode() == UnaryOperator::AddrOf) {
333 APValue result;
334 if (EvaluateLValue(E->getSubExpr(), result, Info))
335 return result;
336 }
337
338 return APValue();
339}
Anders Carlssond407a762008-12-05 05:24:13 +0000340
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000341
Chris Lattnerb542afe2008-07-11 19:10:17 +0000342APValue PointerExprEvaluator::VisitCastExpr(const CastExpr* E) {
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000343 const Expr* SubExpr = E->getSubExpr();
344
345 // Check for pointer->pointer cast
346 if (SubExpr->getType()->isPointerType()) {
347 APValue Result;
Chris Lattner87eae5e2008-07-11 22:52:41 +0000348 if (EvaluatePointer(SubExpr, Result, Info))
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000349 return Result;
350 return APValue();
351 }
352
Eli Friedmand9f4bcd2008-07-27 05:46:18 +0000353 if (SubExpr->getType()->isIntegralType()) {
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000354 llvm::APSInt Result(32);
Chris Lattner87eae5e2008-07-11 22:52:41 +0000355 if (EvaluateInteger(SubExpr, Result, Info)) {
356 Result.extOrTrunc((unsigned)Info.Ctx.getTypeSize(E->getType()));
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000357 return APValue(0, Result.getZExtValue());
358 }
359 }
Eli Friedman4efaa272008-11-12 09:44:48 +0000360
361 if (SubExpr->getType()->isFunctionType() ||
362 SubExpr->getType()->isArrayType()) {
363 APValue Result;
364 if (EvaluateLValue(SubExpr, Result, Info))
365 return Result;
366 return APValue();
367 }
368
369 //assert(0 && "Unhandled cast");
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000370 return APValue();
371}
372
Eli Friedman3941b182009-01-25 01:54:01 +0000373APValue PointerExprEvaluator::VisitCallExpr(CallExpr *E) {
Douglas Gregor3c385e52009-02-14 18:57:46 +0000374 if (E->isBuiltinCall(Info.Ctx) ==
375 Builtin::BI__builtin___CFStringMakeConstantString)
Eli Friedman3941b182009-01-25 01:54:01 +0000376 return APValue(E, 0);
377 return APValue();
378}
379
Eli Friedman4efaa272008-11-12 09:44:48 +0000380APValue PointerExprEvaluator::VisitConditionalOperator(ConditionalOperator *E) {
381 bool BoolResult;
382 if (!HandleConversionToBool(E->getCond(), BoolResult, Info))
383 return APValue();
384
385 Expr* EvalExpr = BoolResult ? E->getTrueExpr() : E->getFalseExpr();
386
387 APValue Result;
388 if (EvaluatePointer(EvalExpr, Result, Info))
389 return Result;
390 return APValue();
391}
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000392
393//===----------------------------------------------------------------------===//
Nate Begeman59b5da62009-01-18 03:20:47 +0000394// Vector Evaluation
395//===----------------------------------------------------------------------===//
396
397namespace {
398 class VISIBILITY_HIDDEN VectorExprEvaluator
399 : public StmtVisitor<VectorExprEvaluator, APValue> {
400 EvalInfo &Info;
401 public:
402
403 VectorExprEvaluator(EvalInfo &info) : Info(info) {}
404
405 APValue VisitStmt(Stmt *S) {
406 return APValue();
407 }
408
409 APValue VisitParenExpr(ParenExpr *E) { return Visit(E->getSubExpr()); }
410 APValue VisitCastExpr(const CastExpr* E);
411 APValue VisitCompoundLiteralExpr(const CompoundLiteralExpr *E);
412 APValue VisitInitListExpr(const InitListExpr *E);
413 };
414} // end anonymous namespace
415
416static bool EvaluateVector(const Expr* E, APValue& Result, EvalInfo &Info) {
417 if (!E->getType()->isVectorType())
418 return false;
419 Result = VectorExprEvaluator(Info).Visit(const_cast<Expr*>(E));
420 return !Result.isUninit();
421}
422
423APValue VectorExprEvaluator::VisitCastExpr(const CastExpr* E) {
424 const Expr* SE = E->getSubExpr();
425
426 // Check for vector->vector bitcast.
427 if (SE->getType()->isVectorType())
428 return this->Visit(const_cast<Expr*>(SE));
429
430 return APValue();
431}
432
433APValue
434VectorExprEvaluator::VisitCompoundLiteralExpr(const CompoundLiteralExpr *E) {
435 return this->Visit(const_cast<Expr*>(E->getInitializer()));
436}
437
438APValue
439VectorExprEvaluator::VisitInitListExpr(const InitListExpr *E) {
440 const VectorType *VT = E->getType()->getAsVectorType();
441 unsigned NumInits = E->getNumInits();
442
443 if (!VT || VT->getNumElements() != NumInits)
444 return APValue();
445
446 QualType EltTy = VT->getElementType();
447 llvm::SmallVector<APValue, 4> Elements;
448
449 for (unsigned i = 0; i < NumInits; i++) {
450 if (EltTy->isIntegerType()) {
451 llvm::APSInt sInt(32);
452 if (!EvaluateInteger(E->getInit(i), sInt, Info))
453 return APValue();
454 Elements.push_back(APValue(sInt));
455 } else {
456 llvm::APFloat f(0.0);
457 if (!EvaluateFloat(E->getInit(i), f, Info))
458 return APValue();
459 Elements.push_back(APValue(f));
460 }
461 }
462 return APValue(&Elements[0], Elements.size());
463}
464
465//===----------------------------------------------------------------------===//
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000466// Integer Evaluation
467//===----------------------------------------------------------------------===//
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000468
469namespace {
Anders Carlssonc754aa62008-07-08 05:13:58 +0000470class VISIBILITY_HIDDEN IntExprEvaluator
Chris Lattnerb542afe2008-07-11 19:10:17 +0000471 : public StmtVisitor<IntExprEvaluator, bool> {
Chris Lattner87eae5e2008-07-11 22:52:41 +0000472 EvalInfo &Info;
Daniel Dunbar30c37f42009-02-19 20:17:33 +0000473 APValue &Result;
Anders Carlssonc754aa62008-07-08 05:13:58 +0000474public:
Daniel Dunbar30c37f42009-02-19 20:17:33 +0000475 IntExprEvaluator(EvalInfo &info, APValue &result)
Chris Lattner87eae5e2008-07-11 22:52:41 +0000476 : Info(info), Result(result) {}
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000477
Anders Carlsson82206e22008-11-30 18:14:57 +0000478 bool Extension(SourceLocation L, diag::kind D, const Expr *E) {
Anders Carlsson54da0492008-11-30 16:38:33 +0000479 Info.EvalResult.DiagLoc = L;
480 Info.EvalResult.Diag = D;
Anders Carlsson82206e22008-11-30 18:14:57 +0000481 Info.EvalResult.DiagExpr = E;
Chris Lattner54176fd2008-07-12 00:14:42 +0000482 return true; // still a constant.
483 }
Daniel Dunbar131eb432009-02-19 09:06:44 +0000484
Daniel Dunbar3f7d9952009-02-19 18:37:50 +0000485 bool Success(const llvm::APSInt &SI, const Expr *E) {
Daniel Dunbar30c37f42009-02-19 20:17:33 +0000486 assert(SI.isSigned() == E->getType()->isSignedIntegerType() &&
Daniel Dunbar3f7d9952009-02-19 18:37:50 +0000487 "Invalid evaluation result.");
Daniel Dunbar30c37f42009-02-19 20:17:33 +0000488 assert(SI.getBitWidth() == Info.Ctx.getIntWidth(E->getType()) &&
Daniel Dunbar3f7d9952009-02-19 18:37:50 +0000489 "Invalid evaluation result.");
Daniel Dunbar30c37f42009-02-19 20:17:33 +0000490 Result = APValue(SI);
Daniel Dunbar3f7d9952009-02-19 18:37:50 +0000491 return true;
492 }
493
Daniel Dunbar131eb432009-02-19 09:06:44 +0000494 bool Success(const llvm::APInt &I, const Expr *E) {
Daniel Dunbar30c37f42009-02-19 20:17:33 +0000495 assert(I.getBitWidth() == Info.Ctx.getIntWidth(E->getType()) &&
Daniel Dunbar3f7d9952009-02-19 18:37:50 +0000496 "Invalid evaluation result.");
Daniel Dunbar30c37f42009-02-19 20:17:33 +0000497 Result = APValue(APSInt(I));
498 Result.getInt().setIsUnsigned(E->getType()->isUnsignedIntegerType());
Daniel Dunbar131eb432009-02-19 09:06:44 +0000499 return true;
500 }
501
502 bool Success(uint64_t Value, const Expr *E) {
Daniel Dunbar30c37f42009-02-19 20:17:33 +0000503 Result = APValue(Info.Ctx.MakeIntValue(Value, E->getType()));
Daniel Dunbar131eb432009-02-19 09:06:44 +0000504 return true;
505 }
506
Anders Carlsson82206e22008-11-30 18:14:57 +0000507 bool Error(SourceLocation L, diag::kind D, const Expr *E) {
Chris Lattner54176fd2008-07-12 00:14:42 +0000508 // If this is in an unevaluated portion of the subexpression, ignore the
509 // error.
Anders Carlssonf0c1e4b2008-11-30 18:26:25 +0000510 if (Info.ShortCircuit) {
Chris Lattner32fea9d2008-11-12 07:43:42 +0000511 // If error is ignored because the value isn't evaluated, get the real
512 // type at least to prevent errors downstream.
Daniel Dunbar131eb432009-02-19 09:06:44 +0000513 return Success(0, E);
Chris Lattner32fea9d2008-11-12 07:43:42 +0000514 }
Chris Lattner54176fd2008-07-12 00:14:42 +0000515
Chris Lattner32fea9d2008-11-12 07:43:42 +0000516 // Take the first error.
Daniel Dunbar30c37f42009-02-19 20:17:33 +0000517
518 // FIXME: This is wrong if we happen to have already emitted an
519 // extension diagnostic; in that case we should report this error.
Anders Carlsson54da0492008-11-30 16:38:33 +0000520 if (Info.EvalResult.Diag == 0) {
521 Info.EvalResult.DiagLoc = L;
522 Info.EvalResult.Diag = D;
Anders Carlsson82206e22008-11-30 18:14:57 +0000523 Info.EvalResult.DiagExpr = E;
Chris Lattner32fea9d2008-11-12 07:43:42 +0000524 }
Chris Lattner54176fd2008-07-12 00:14:42 +0000525 return false;
Chris Lattner7a767782008-07-11 19:24:49 +0000526 }
527
Anders Carlssonc754aa62008-07-08 05:13:58 +0000528 //===--------------------------------------------------------------------===//
529 // Visitor Methods
530 //===--------------------------------------------------------------------===//
Chris Lattner32fea9d2008-11-12 07:43:42 +0000531
532 bool VisitStmt(Stmt *) {
533 assert(0 && "This should be called on integers, stmts are not integers");
534 return false;
535 }
Chris Lattner7a767782008-07-11 19:24:49 +0000536
Chris Lattner32fea9d2008-11-12 07:43:42 +0000537 bool VisitExpr(Expr *E) {
Anders Carlsson0e8acbb2008-11-30 18:37:00 +0000538 return Error(E->getLocStart(), diag::note_invalid_subexpr_in_ice, E);
Anders Carlssonc754aa62008-07-08 05:13:58 +0000539 }
540
Chris Lattnerb542afe2008-07-11 19:10:17 +0000541 bool VisitParenExpr(ParenExpr *E) { return Visit(E->getSubExpr()); }
Anders Carlssonc754aa62008-07-08 05:13:58 +0000542
Chris Lattner4c4867e2008-07-12 00:38:25 +0000543 bool VisitIntegerLiteral(const IntegerLiteral *E) {
Daniel Dunbar131eb432009-02-19 09:06:44 +0000544 return Success(E->getValue(), E);
Chris Lattner4c4867e2008-07-12 00:38:25 +0000545 }
546 bool VisitCharacterLiteral(const CharacterLiteral *E) {
Daniel Dunbar131eb432009-02-19 09:06:44 +0000547 return Success(E->getValue(), E);
Chris Lattner4c4867e2008-07-12 00:38:25 +0000548 }
549 bool VisitTypesCompatibleExpr(const TypesCompatibleExpr *E) {
Daniel Dunbarac620de2008-10-24 08:07:57 +0000550 // Per gcc docs "this built-in function ignores top level
551 // qualifiers". We need to use the canonical version to properly
552 // be able to strip CRV qualifiers from the type.
553 QualType T0 = Info.Ctx.getCanonicalType(E->getArgType1());
554 QualType T1 = Info.Ctx.getCanonicalType(E->getArgType2());
Daniel Dunbar131eb432009-02-19 09:06:44 +0000555 return Success(Info.Ctx.typesAreCompatible(T0.getUnqualifiedType(),
556 T1.getUnqualifiedType()),
557 E);
Chris Lattner4c4867e2008-07-12 00:38:25 +0000558 }
559 bool VisitDeclRefExpr(const DeclRefExpr *E);
560 bool VisitCallExpr(const CallExpr *E);
Chris Lattnerb542afe2008-07-11 19:10:17 +0000561 bool VisitBinaryOperator(const BinaryOperator *E);
562 bool VisitUnaryOperator(const UnaryOperator *E);
Nuno Lopesca7c2ea2008-11-16 19:28:31 +0000563 bool VisitConditionalOperator(const ConditionalOperator *E);
Anders Carlsson06a36752008-07-08 05:49:43 +0000564
Daniel Dunbara2cfd342009-01-29 06:16:07 +0000565 bool VisitCastExpr(CastExpr* E);
Sebastian Redl05189992008-11-11 17:56:53 +0000566 bool VisitSizeOfAlignOfExpr(const SizeOfAlignOfExpr *E);
567
Anders Carlsson3068d112008-11-16 19:01:22 +0000568 bool VisitCXXBoolLiteralExpr(const CXXBoolLiteralExpr *E) {
Daniel Dunbar131eb432009-02-19 09:06:44 +0000569 return Success(E->getValue(), E);
Anders Carlsson3068d112008-11-16 19:01:22 +0000570 }
571
Anders Carlsson3f704562008-12-21 22:39:40 +0000572 bool VisitGNUNullExpr(const GNUNullExpr *E) {
Daniel Dunbar131eb432009-02-19 09:06:44 +0000573 return Success(0, E);
Anders Carlsson3f704562008-12-21 22:39:40 +0000574 }
575
Anders Carlsson3068d112008-11-16 19:01:22 +0000576 bool VisitCXXZeroInitValueExpr(const CXXZeroInitValueExpr *E) {
Daniel Dunbar131eb432009-02-19 09:06:44 +0000577 return Success(0, E);
Anders Carlsson3068d112008-11-16 19:01:22 +0000578 }
579
Sebastian Redl64b45f72009-01-05 20:52:13 +0000580 bool VisitUnaryTypeTraitExpr(const UnaryTypeTraitExpr *E) {
Daniel Dunbar131eb432009-02-19 09:06:44 +0000581 return Success(E->EvaluateTrait(), E);
Sebastian Redl64b45f72009-01-05 20:52:13 +0000582 }
583
Chris Lattnerfcee0012008-07-11 21:24:13 +0000584private:
Chris Lattneraf707ab2009-01-24 21:53:27 +0000585 unsigned GetAlignOfExpr(const Expr *E);
586 unsigned GetAlignOfType(QualType T);
Anders Carlssona25ae3d2008-07-08 14:35:21 +0000587};
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000588} // end anonymous namespace
Anders Carlsson650c92f2008-07-08 15:34:11 +0000589
Chris Lattner87eae5e2008-07-11 22:52:41 +0000590static bool EvaluateInteger(const Expr* E, APSInt &Result, EvalInfo &Info) {
Daniel Dunbar3f7d9952009-02-19 18:37:50 +0000591 if (!E->getType()->isIntegralType())
592 return false;
Daniel Dunbar30c37f42009-02-19 20:17:33 +0000593
594 APValue Val;
595 if (!IntExprEvaluator(Info, Val).Visit(const_cast<Expr*>(E)) ||
596 !Val.isInt())
597 return false;
598
599 Result = Val.getInt();
600 return true;
Anders Carlsson650c92f2008-07-08 15:34:11 +0000601}
Anders Carlsson650c92f2008-07-08 15:34:11 +0000602
Chris Lattner4c4867e2008-07-12 00:38:25 +0000603bool IntExprEvaluator::VisitDeclRefExpr(const DeclRefExpr *E) {
604 // Enums are integer constant exprs.
605 if (const EnumConstantDecl *D = dyn_cast<EnumConstantDecl>(E->getDecl())) {
Eli Friedmane9a0f432008-12-08 02:21:03 +0000606 // FIXME: This is an ugly hack around the fact that enums don't set their
Daniel Dunbar3f7d9952009-02-19 18:37:50 +0000607 // signedness consistently; see PR3173.
608 APSInt SI = D->getInitVal();
609 SI.setIsUnsigned(!E->getType()->isSignedIntegerType());
610 // FIXME: This is an ugly hack around the fact that enums don't
611 // set their width (!?!) consistently; see PR3173.
612 SI.extOrTrunc(Info.Ctx.getIntWidth(E->getType()));
613 return Success(SI, E);
Chris Lattner4c4867e2008-07-12 00:38:25 +0000614 }
Sebastian Redlb2bc62b2009-02-08 15:51:17 +0000615
616 // In C++, const, non-volatile integers initialized with ICEs are ICEs.
617 if (Info.Ctx.getLangOptions().CPlusPlus &&
618 E->getType().getCVRQualifiers() == QualType::Const) {
619 if (const VarDecl *D = dyn_cast<VarDecl>(E->getDecl())) {
620 if (const Expr *Init = D->getInit())
621 return Visit(const_cast<Expr*>(Init));
622 }
623 }
624
Chris Lattner4c4867e2008-07-12 00:38:25 +0000625 // Otherwise, random variable references are not constants.
Anders Carlsson0e8acbb2008-11-30 18:37:00 +0000626 return Error(E->getLocStart(), diag::note_invalid_subexpr_in_ice, E);
Chris Lattner4c4867e2008-07-12 00:38:25 +0000627}
628
Chris Lattnera4d55d82008-10-06 06:40:35 +0000629/// EvaluateBuiltinClassifyType - Evaluate __builtin_classify_type the same way
630/// as GCC.
631static int EvaluateBuiltinClassifyType(const CallExpr *E) {
632 // The following enum mimics the values returned by GCC.
633 enum gcc_type_class {
634 no_type_class = -1,
635 void_type_class, integer_type_class, char_type_class,
636 enumeral_type_class, boolean_type_class,
637 pointer_type_class, reference_type_class, offset_type_class,
638 real_type_class, complex_type_class,
639 function_type_class, method_type_class,
640 record_type_class, union_type_class,
641 array_type_class, string_type_class,
642 lang_type_class
643 };
644
645 // If no argument was supplied, default to "no_type_class". This isn't
646 // ideal, however it is what gcc does.
647 if (E->getNumArgs() == 0)
648 return no_type_class;
649
650 QualType ArgTy = E->getArg(0)->getType();
651 if (ArgTy->isVoidType())
652 return void_type_class;
653 else if (ArgTy->isEnumeralType())
654 return enumeral_type_class;
655 else if (ArgTy->isBooleanType())
656 return boolean_type_class;
657 else if (ArgTy->isCharType())
658 return string_type_class; // gcc doesn't appear to use char_type_class
659 else if (ArgTy->isIntegerType())
660 return integer_type_class;
661 else if (ArgTy->isPointerType())
662 return pointer_type_class;
663 else if (ArgTy->isReferenceType())
664 return reference_type_class;
665 else if (ArgTy->isRealType())
666 return real_type_class;
667 else if (ArgTy->isComplexType())
668 return complex_type_class;
669 else if (ArgTy->isFunctionType())
670 return function_type_class;
671 else if (ArgTy->isStructureType())
672 return record_type_class;
673 else if (ArgTy->isUnionType())
674 return union_type_class;
675 else if (ArgTy->isArrayType())
676 return array_type_class;
677 else if (ArgTy->isUnionType())
678 return union_type_class;
679 else // FIXME: offset_type_class, method_type_class, & lang_type_class?
680 assert(0 && "CallExpr::isBuiltinClassifyType(): unimplemented type");
681 return -1;
682}
683
Chris Lattner4c4867e2008-07-12 00:38:25 +0000684bool IntExprEvaluator::VisitCallExpr(const CallExpr *E) {
Douglas Gregor3c385e52009-02-14 18:57:46 +0000685 switch (E->isBuiltinCall(Info.Ctx)) {
Chris Lattner019f4e82008-10-06 05:28:25 +0000686 default:
Anders Carlsson0e8acbb2008-11-30 18:37:00 +0000687 return Error(E->getLocStart(), diag::note_invalid_subexpr_in_ice, E);
Chris Lattner019f4e82008-10-06 05:28:25 +0000688 case Builtin::BI__builtin_classify_type:
Daniel Dunbar131eb432009-02-19 09:06:44 +0000689 return Success(EvaluateBuiltinClassifyType(E), E);
Chris Lattner019f4e82008-10-06 05:28:25 +0000690
Anders Carlsson4bbc0e02008-11-24 04:21:33 +0000691 case Builtin::BI__builtin_constant_p:
Chris Lattner019f4e82008-10-06 05:28:25 +0000692 // __builtin_constant_p always has one operand: it returns true if that
693 // operand can be folded, false otherwise.
Daniel Dunbar131eb432009-02-19 09:06:44 +0000694 return Success(E->getArg(0)->isEvaluatable(Info.Ctx), E);
Chris Lattner019f4e82008-10-06 05:28:25 +0000695 }
Chris Lattner4c4867e2008-07-12 00:38:25 +0000696}
Anders Carlsson650c92f2008-07-08 15:34:11 +0000697
Chris Lattnerb542afe2008-07-11 19:10:17 +0000698bool IntExprEvaluator::VisitBinaryOperator(const BinaryOperator *E) {
Eli Friedmana6afa762008-11-13 06:09:17 +0000699 if (E->getOpcode() == BinaryOperator::Comma) {
Anders Carlsson027f62e2008-12-01 02:07:06 +0000700 if (!Visit(E->getRHS()))
701 return false;
Anders Carlsson4fdfb092008-12-01 06:44:05 +0000702
703 if (!Info.ShortCircuit) {
704 // If we can't evaluate the LHS, it must be because it has
705 // side effects.
706 if (!E->getLHS()->isEvaluatable(Info.Ctx))
707 Info.EvalResult.HasSideEffects = true;
708
Anders Carlsson0e8acbb2008-11-30 18:37:00 +0000709 return Extension(E->getOperatorLoc(), diag::note_comma_in_ice, E);
Anders Carlsson4fdfb092008-12-01 06:44:05 +0000710 }
Eli Friedmana6afa762008-11-13 06:09:17 +0000711
Anders Carlsson027f62e2008-12-01 02:07:06 +0000712 return true;
Eli Friedmana6afa762008-11-13 06:09:17 +0000713 }
714
715 if (E->isLogicalOp()) {
716 // These need to be handled specially because the operands aren't
717 // necessarily integral
Anders Carlssonfcb4d092008-11-30 16:51:17 +0000718 bool lhsResult, rhsResult;
Anders Carlsson51fe9962008-11-22 21:04:56 +0000719
Anders Carlssonfcb4d092008-11-30 16:51:17 +0000720 if (HandleConversionToBool(E->getLHS(), lhsResult, Info)) {
Anders Carlsson51fe9962008-11-22 21:04:56 +0000721 // We were able to evaluate the LHS, see if we can get away with not
722 // evaluating the RHS: 0 && X -> 0, 1 || X -> 1
Anders Carlssonfcb4d092008-11-30 16:51:17 +0000723 if (lhsResult == (E->getOpcode() == BinaryOperator::LOr) ||
724 !lhsResult == (E->getOpcode() == BinaryOperator::LAnd)) {
Anders Carlssonf0c1e4b2008-11-30 18:26:25 +0000725 Info.ShortCircuit++;
Anders Carlssonfcb4d092008-11-30 16:51:17 +0000726 bool rhsEvaluated = HandleConversionToBool(E->getRHS(), rhsResult, Info);
Anders Carlssonf0c1e4b2008-11-30 18:26:25 +0000727 Info.ShortCircuit--;
728
Anders Carlssonfcb4d092008-11-30 16:51:17 +0000729 // FIXME: Return an extension warning saying that the RHS could not be
730 // evaluated.
Daniel Dunbar3f7d9952009-02-19 18:37:50 +0000731 // if (!rhsEvaluated) ...
732 (void) rhsEvaluated;
733
734 return Success(lhsResult, E);
Eli Friedmana6afa762008-11-13 06:09:17 +0000735 }
Anders Carlsson4bbc0e02008-11-24 04:21:33 +0000736
Anders Carlssonfcb4d092008-11-30 16:51:17 +0000737 if (HandleConversionToBool(E->getRHS(), rhsResult, Info)) {
Anders Carlsson4bbc0e02008-11-24 04:21:33 +0000738 if (E->getOpcode() == BinaryOperator::LOr)
Daniel Dunbar131eb432009-02-19 09:06:44 +0000739 return Success(lhsResult || rhsResult, E);
Anders Carlsson4bbc0e02008-11-24 04:21:33 +0000740 else
Daniel Dunbar131eb432009-02-19 09:06:44 +0000741 return Success(lhsResult && rhsResult, E);
Anders Carlsson4bbc0e02008-11-24 04:21:33 +0000742 }
743 } else {
Anders Carlssonfcb4d092008-11-30 16:51:17 +0000744 if (HandleConversionToBool(E->getRHS(), rhsResult, Info)) {
Anders Carlsson4bbc0e02008-11-24 04:21:33 +0000745 // We can't evaluate the LHS; however, sometimes the result
746 // is determined by the RHS: X && 0 -> 0, X || 1 -> 1.
Anders Carlssonfcb4d092008-11-30 16:51:17 +0000747 if (rhsResult == (E->getOpcode() == BinaryOperator::LOr) ||
748 !rhsResult == (E->getOpcode() == BinaryOperator::LAnd)) {
Daniel Dunbar131eb432009-02-19 09:06:44 +0000749 // Since we weren't able to evaluate the left hand side, it
Anders Carlssonfcb4d092008-11-30 16:51:17 +0000750 // must have had side effects.
751 Info.EvalResult.HasSideEffects = true;
Daniel Dunbar131eb432009-02-19 09:06:44 +0000752
753 return Success(rhsResult, E);
Anders Carlsson4bbc0e02008-11-24 04:21:33 +0000754 }
755 }
Anders Carlsson51fe9962008-11-22 21:04:56 +0000756 }
Eli Friedmana6afa762008-11-13 06:09:17 +0000757
Eli Friedmana6afa762008-11-13 06:09:17 +0000758 return false;
759 }
760
Anders Carlsson286f85e2008-11-16 07:17:21 +0000761 QualType LHSTy = E->getLHS()->getType();
762 QualType RHSTy = E->getRHS()->getType();
Daniel Dunbar4087e242009-01-29 06:43:41 +0000763
764 if (LHSTy->isAnyComplexType()) {
765 assert(RHSTy->isAnyComplexType() && "Invalid comparison");
766 APValue LHS, RHS;
767
768 if (!EvaluateComplex(E->getLHS(), LHS, Info))
769 return false;
770
771 if (!EvaluateComplex(E->getRHS(), RHS, Info))
772 return false;
773
774 if (LHS.isComplexFloat()) {
775 APFloat::cmpResult CR_r =
776 LHS.getComplexFloatReal().compare(RHS.getComplexFloatReal());
777 APFloat::cmpResult CR_i =
778 LHS.getComplexFloatImag().compare(RHS.getComplexFloatImag());
779
Daniel Dunbar4087e242009-01-29 06:43:41 +0000780 if (E->getOpcode() == BinaryOperator::EQ)
Daniel Dunbar131eb432009-02-19 09:06:44 +0000781 return Success((CR_r == APFloat::cmpEqual &&
782 CR_i == APFloat::cmpEqual), E);
783 else {
784 assert(E->getOpcode() == BinaryOperator::NE &&
785 "Invalid complex comparison.");
786 return Success(((CR_r == APFloat::cmpGreaterThan ||
787 CR_r == APFloat::cmpLessThan) &&
788 (CR_i == APFloat::cmpGreaterThan ||
789 CR_i == APFloat::cmpLessThan)), E);
790 }
Daniel Dunbar4087e242009-01-29 06:43:41 +0000791 } else {
Daniel Dunbar4087e242009-01-29 06:43:41 +0000792 if (E->getOpcode() == BinaryOperator::EQ)
Daniel Dunbar131eb432009-02-19 09:06:44 +0000793 return Success((LHS.getComplexIntReal() == RHS.getComplexIntReal() &&
794 LHS.getComplexIntImag() == RHS.getComplexIntImag()), E);
795 else {
796 assert(E->getOpcode() == BinaryOperator::NE &&
797 "Invalid compex comparison.");
798 return Success((LHS.getComplexIntReal() != RHS.getComplexIntReal() ||
799 LHS.getComplexIntImag() != RHS.getComplexIntImag()), E);
800 }
Daniel Dunbar4087e242009-01-29 06:43:41 +0000801 }
802 }
Anders Carlsson286f85e2008-11-16 07:17:21 +0000803
804 if (LHSTy->isRealFloatingType() &&
805 RHSTy->isRealFloatingType()) {
806 APFloat RHS(0.0), LHS(0.0);
807
808 if (!EvaluateFloat(E->getRHS(), RHS, Info))
809 return false;
810
811 if (!EvaluateFloat(E->getLHS(), LHS, Info))
812 return false;
813
814 APFloat::cmpResult CR = LHS.compare(RHS);
Anders Carlsson529569e2008-11-16 22:46:56 +0000815
Anders Carlsson286f85e2008-11-16 07:17:21 +0000816 switch (E->getOpcode()) {
817 default:
818 assert(0 && "Invalid binary operator!");
819 case BinaryOperator::LT:
Daniel Dunbar131eb432009-02-19 09:06:44 +0000820 return Success(CR == APFloat::cmpLessThan, E);
Anders Carlsson286f85e2008-11-16 07:17:21 +0000821 case BinaryOperator::GT:
Daniel Dunbar131eb432009-02-19 09:06:44 +0000822 return Success(CR == APFloat::cmpGreaterThan, E);
Anders Carlsson286f85e2008-11-16 07:17:21 +0000823 case BinaryOperator::LE:
Daniel Dunbar131eb432009-02-19 09:06:44 +0000824 return Success(CR == APFloat::cmpLessThan || CR == APFloat::cmpEqual, E);
Anders Carlsson286f85e2008-11-16 07:17:21 +0000825 case BinaryOperator::GE:
Daniel Dunbar131eb432009-02-19 09:06:44 +0000826 return Success(CR == APFloat::cmpGreaterThan || CR == APFloat::cmpEqual,
827 E);
Anders Carlsson286f85e2008-11-16 07:17:21 +0000828 case BinaryOperator::EQ:
Daniel Dunbar131eb432009-02-19 09:06:44 +0000829 return Success(CR == APFloat::cmpEqual, E);
Anders Carlsson286f85e2008-11-16 07:17:21 +0000830 case BinaryOperator::NE:
Daniel Dunbar131eb432009-02-19 09:06:44 +0000831 return Success(CR == APFloat::cmpGreaterThan
832 || CR == APFloat::cmpLessThan, E);
Anders Carlsson286f85e2008-11-16 07:17:21 +0000833 }
Anders Carlsson286f85e2008-11-16 07:17:21 +0000834 }
835
Anders Carlsson3068d112008-11-16 19:01:22 +0000836 if (E->getOpcode() == BinaryOperator::Sub) {
Anders Carlsson529569e2008-11-16 22:46:56 +0000837 if (LHSTy->isPointerType() && RHSTy->isPointerType()) {
Anders Carlsson3068d112008-11-16 19:01:22 +0000838 APValue LHSValue;
839 if (!EvaluatePointer(E->getLHS(), LHSValue, Info))
840 return false;
841
842 APValue RHSValue;
843 if (!EvaluatePointer(E->getRHS(), RHSValue, Info))
844 return false;
845
846 // FIXME: Is this correct? What if only one of the operands has a base?
847 if (LHSValue.getLValueBase() || RHSValue.getLValueBase())
848 return false;
849
850 const QualType Type = E->getLHS()->getType();
851 const QualType ElementType = Type->getAsPointerType()->getPointeeType();
852
853 uint64_t D = LHSValue.getLValueOffset() - RHSValue.getLValueOffset();
854 D /= Info.Ctx.getTypeSize(ElementType) / 8;
855
Daniel Dunbar131eb432009-02-19 09:06:44 +0000856 return Success(D, E);
Anders Carlsson3068d112008-11-16 19:01:22 +0000857 }
858 }
Anders Carlsson286f85e2008-11-16 07:17:21 +0000859 if (!LHSTy->isIntegralType() ||
860 !RHSTy->isIntegralType()) {
Eli Friedmana6afa762008-11-13 06:09:17 +0000861 // We can't continue from here for non-integral types, and they
862 // could potentially confuse the following operations.
863 // FIXME: Deal with EQ and friends.
864 return false;
865 }
866
Anders Carlssona25ae3d2008-07-08 14:35:21 +0000867 // The LHS of a constant expr is always evaluated and needed.
Daniel Dunbar30c37f42009-02-19 20:17:33 +0000868 if (!Visit(E->getLHS()))
Chris Lattner54176fd2008-07-12 00:14:42 +0000869 return false; // error in subexpression.
Eli Friedmand9f4bcd2008-07-27 05:46:18 +0000870
Daniel Dunbar30c37f42009-02-19 20:17:33 +0000871 // Only support arithmetic on integers for now.
872 if (!Result.isInt())
873 return false;
874
Daniel Dunbar131eb432009-02-19 09:06:44 +0000875 llvm::APSInt RHS;
Chris Lattner54176fd2008-07-12 00:14:42 +0000876 if (!EvaluateInteger(E->getRHS(), RHS, Info))
Chris Lattnerb542afe2008-07-11 19:10:17 +0000877 return false;
Eli Friedmana6afa762008-11-13 06:09:17 +0000878
Anders Carlssona25ae3d2008-07-08 14:35:21 +0000879 switch (E->getOpcode()) {
Chris Lattner32fea9d2008-11-12 07:43:42 +0000880 default:
Anders Carlsson0e8acbb2008-11-30 18:37:00 +0000881 return Error(E->getOperatorLoc(), diag::note_invalid_subexpr_in_ice, E);
Daniel Dunbar30c37f42009-02-19 20:17:33 +0000882 case BinaryOperator::Mul: return Success(Result.getInt() * RHS, E);
883 case BinaryOperator::Add: return Success(Result.getInt() + RHS, E);
884 case BinaryOperator::Sub: return Success(Result.getInt() - RHS, E);
885 case BinaryOperator::And: return Success(Result.getInt() & RHS, E);
886 case BinaryOperator::Xor: return Success(Result.getInt() ^ RHS, E);
887 case BinaryOperator::Or: return Success(Result.getInt() | RHS, E);
Chris Lattner75a48812008-07-11 22:15:16 +0000888 case BinaryOperator::Div:
Chris Lattner54176fd2008-07-12 00:14:42 +0000889 if (RHS == 0)
Anders Carlsson0e8acbb2008-11-30 18:37:00 +0000890 return Error(E->getOperatorLoc(), diag::note_expr_divide_by_zero, E);
Daniel Dunbar30c37f42009-02-19 20:17:33 +0000891 return Success(Result.getInt() / RHS, E);
Chris Lattner75a48812008-07-11 22:15:16 +0000892 case BinaryOperator::Rem:
Chris Lattner54176fd2008-07-12 00:14:42 +0000893 if (RHS == 0)
Anders Carlsson0e8acbb2008-11-30 18:37:00 +0000894 return Error(E->getOperatorLoc(), diag::note_expr_divide_by_zero, E);
Daniel Dunbar30c37f42009-02-19 20:17:33 +0000895 return Success(Result.getInt() % RHS, E);
Daniel Dunbar3f7d9952009-02-19 18:37:50 +0000896 case BinaryOperator::Shl: {
Chris Lattner54176fd2008-07-12 00:14:42 +0000897 // FIXME: Warn about out of range shift amounts!
Daniel Dunbar30c37f42009-02-19 20:17:33 +0000898 unsigned SA =
899 (unsigned) RHS.getLimitedValue(Result.getInt().getBitWidth()-1);
900 return Success(Result.getInt() << SA, E);
Daniel Dunbar3f7d9952009-02-19 18:37:50 +0000901 }
902 case BinaryOperator::Shr: {
Daniel Dunbar30c37f42009-02-19 20:17:33 +0000903 unsigned SA =
904 (unsigned) RHS.getLimitedValue(Result.getInt().getBitWidth()-1);
905 return Success(Result.getInt() >> SA, E);
Daniel Dunbar3f7d9952009-02-19 18:37:50 +0000906 }
Chris Lattnerb542afe2008-07-11 19:10:17 +0000907
Daniel Dunbar30c37f42009-02-19 20:17:33 +0000908 case BinaryOperator::LT: return Success(Result.getInt() < RHS, E);
909 case BinaryOperator::GT: return Success(Result.getInt() > RHS, E);
910 case BinaryOperator::LE: return Success(Result.getInt() <= RHS, E);
911 case BinaryOperator::GE: return Success(Result.getInt() >= RHS, E);
912 case BinaryOperator::EQ: return Success(Result.getInt() == RHS, E);
913 case BinaryOperator::NE: return Success(Result.getInt() != RHS, E);
Eli Friedmanb11e7782008-11-13 02:13:11 +0000914 }
Anders Carlssona25ae3d2008-07-08 14:35:21 +0000915}
916
Nuno Lopesca7c2ea2008-11-16 19:28:31 +0000917bool IntExprEvaluator::VisitConditionalOperator(const ConditionalOperator *E) {
Nuno Lopesa25bd552008-11-16 22:06:39 +0000918 bool Cond;
919 if (!HandleConversionToBool(E->getCond(), Cond, Info))
Nuno Lopesca7c2ea2008-11-16 19:28:31 +0000920 return false;
921
Nuno Lopesa25bd552008-11-16 22:06:39 +0000922 return Visit(Cond ? E->getTrueExpr() : E->getFalseExpr());
Nuno Lopesca7c2ea2008-11-16 19:28:31 +0000923}
924
Chris Lattneraf707ab2009-01-24 21:53:27 +0000925unsigned IntExprEvaluator::GetAlignOfType(QualType T) {
Chris Lattnere9feb472009-01-24 21:09:06 +0000926 const Type *Ty = Info.Ctx.getCanonicalType(T).getTypePtr();
927
928 // __alignof__(void) = 1 as a gcc extension.
929 if (Ty->isVoidType())
930 return 1;
931
932 // GCC extension: alignof(function) = 4.
933 // FIXME: AlignOf shouldn't be unconditionally 4! It should listen to the
934 // attribute(align) directive.
935 if (Ty->isFunctionType())
936 return 4;
937
Fariborz Jahanianf11284a2009-02-17 18:27:45 +0000938 if (const ExtQualType *EXTQT = dyn_cast<ExtQualType>(Ty))
939 return GetAlignOfType(QualType(EXTQT->getBaseType(), 0));
Chris Lattnere9feb472009-01-24 21:09:06 +0000940
941 // alignof VLA/incomplete array.
942 if (const ArrayType *VAT = dyn_cast<ArrayType>(Ty))
943 return GetAlignOfType(VAT->getElementType());
944
945 // sizeof (objc class)?
946 if (isa<ObjCInterfaceType>(Ty))
947 return 1; // FIXME: This probably isn't right.
948
949 // Get information about the alignment.
950 unsigned CharSize = Info.Ctx.Target.getCharWidth();
951 return Info.Ctx.getTypeAlign(Ty) / CharSize;
952}
953
Chris Lattneraf707ab2009-01-24 21:53:27 +0000954unsigned IntExprEvaluator::GetAlignOfExpr(const Expr *E) {
955 E = E->IgnoreParens();
956
957 // alignof decl is always accepted, even if it doesn't make sense: we default
958 // to 1 in those cases.
959 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E))
Daniel Dunbarb7d08442009-02-17 22:16:19 +0000960 return Info.Ctx.getDeclAlignInBytes(DRE->getDecl());
Chris Lattneraf707ab2009-01-24 21:53:27 +0000961
962 if (const MemberExpr *ME = dyn_cast<MemberExpr>(E))
Daniel Dunbarb7d08442009-02-17 22:16:19 +0000963 return Info.Ctx.getDeclAlignInBytes(ME->getMemberDecl());
Chris Lattneraf707ab2009-01-24 21:53:27 +0000964
Chris Lattnere9feb472009-01-24 21:09:06 +0000965 return GetAlignOfType(E->getType());
966}
967
968
Sebastian Redl05189992008-11-11 17:56:53 +0000969/// VisitSizeAlignOfExpr - Evaluate a sizeof or alignof with a result as the
970/// expression's type.
971bool IntExprEvaluator::VisitSizeOfAlignOfExpr(const SizeOfAlignOfExpr *E) {
972 QualType DstTy = E->getType();
Chris Lattnerfcee0012008-07-11 21:24:13 +0000973
Chris Lattnere9feb472009-01-24 21:09:06 +0000974 // Handle alignof separately.
975 if (!E->isSizeOf()) {
976 if (E->isArgumentType())
Daniel Dunbar131eb432009-02-19 09:06:44 +0000977 return Success(GetAlignOfType(E->getArgumentType()), E);
Chris Lattnere9feb472009-01-24 21:09:06 +0000978 else
Daniel Dunbar131eb432009-02-19 09:06:44 +0000979 return Success(GetAlignOfExpr(E->getArgumentExpr()), E);
Chris Lattnere9feb472009-01-24 21:09:06 +0000980 }
981
Sebastian Redl05189992008-11-11 17:56:53 +0000982 QualType SrcTy = E->getTypeOfArgument();
983
Daniel Dunbar131eb432009-02-19 09:06:44 +0000984 // sizeof(void), __alignof__(void), sizeof(function) = 1 as a gcc
985 // extension.
986 if (SrcTy->isVoidType() || SrcTy->isFunctionType())
987 return Success(1, E);
Chris Lattnerfcee0012008-07-11 21:24:13 +0000988
989 // sizeof(vla) is not a constantexpr: C99 6.5.3.4p2.
Chris Lattnere9feb472009-01-24 21:09:06 +0000990 if (!SrcTy->isConstantSizeType())
Chris Lattnerfcee0012008-07-11 21:24:13 +0000991 return false;
Eli Friedmanf2da9df2009-01-24 22:19:05 +0000992
993 if (SrcTy->isObjCInterfaceType()) {
994 // Slightly unusual case: the size of an ObjC interface type is the
995 // size of the class. This code intentionally falls through to the normal
996 // case.
997 ObjCInterfaceDecl *OI = SrcTy->getAsObjCInterfaceType()->getDecl();
998 RecordDecl *RD = const_cast<RecordDecl*>(Info.Ctx.addRecordToClass(OI));
999 SrcTy = Info.Ctx.getTagDeclType(static_cast<TagDecl*>(RD));
1000 }
1001
Chris Lattnere9feb472009-01-24 21:09:06 +00001002 // Get information about the size.
Chris Lattner87eae5e2008-07-11 22:52:41 +00001003 unsigned CharSize = Info.Ctx.Target.getCharWidth();
Daniel Dunbar131eb432009-02-19 09:06:44 +00001004 return Success(Info.Ctx.getTypeSize(SrcTy) / CharSize, E);
Chris Lattnerfcee0012008-07-11 21:24:13 +00001005}
1006
Chris Lattnerb542afe2008-07-11 19:10:17 +00001007bool IntExprEvaluator::VisitUnaryOperator(const UnaryOperator *E) {
Chris Lattner4c4867e2008-07-12 00:38:25 +00001008 // Special case unary operators that do not need their subexpression
1009 // evaluated. offsetof/sizeof/alignof are all special.
Daniel Dunbar131eb432009-02-19 09:06:44 +00001010 if (E->isOffsetOfOp())
1011 return Success(E->evaluateOffsetOf(Info.Ctx), E);
Eli Friedmana6afa762008-11-13 06:09:17 +00001012
1013 if (E->getOpcode() == UnaryOperator::LNot) {
1014 // LNot's operand isn't necessarily an integer, so we handle it specially.
1015 bool bres;
1016 if (!HandleConversionToBool(E->getSubExpr(), bres, Info))
1017 return false;
Daniel Dunbar131eb432009-02-19 09:06:44 +00001018 return Success(!bres, E);
Eli Friedmana6afa762008-11-13 06:09:17 +00001019 }
1020
Chris Lattner87eae5e2008-07-11 22:52:41 +00001021 // Get the operand value into 'Result'.
1022 if (!Visit(E->getSubExpr()))
Chris Lattner75a48812008-07-11 22:15:16 +00001023 return false;
Anders Carlssona25ae3d2008-07-08 14:35:21 +00001024
Chris Lattner75a48812008-07-11 22:15:16 +00001025 switch (E->getOpcode()) {
Chris Lattner4c4867e2008-07-12 00:38:25 +00001026 default:
Chris Lattner75a48812008-07-11 22:15:16 +00001027 // Address, indirect, pre/post inc/dec, etc are not valid constant exprs.
1028 // See C99 6.6p3.
Anders Carlsson0e8acbb2008-11-30 18:37:00 +00001029 return Error(E->getOperatorLoc(), diag::note_invalid_subexpr_in_ice, E);
Chris Lattner75a48812008-07-11 22:15:16 +00001030 case UnaryOperator::Extension:
Chris Lattner4c4867e2008-07-12 00:38:25 +00001031 // FIXME: Should extension allow i-c-e extension expressions in its scope?
1032 // If so, we could clear the diagnostic ID.
Daniel Dunbar3f7d9952009-02-19 18:37:50 +00001033 return true;
Chris Lattner75a48812008-07-11 22:15:16 +00001034 case UnaryOperator::Plus:
Chris Lattner4c4867e2008-07-12 00:38:25 +00001035 // The result is always just the subexpr.
Daniel Dunbar3f7d9952009-02-19 18:37:50 +00001036 return true;
Chris Lattner75a48812008-07-11 22:15:16 +00001037 case UnaryOperator::Minus:
Daniel Dunbar30c37f42009-02-19 20:17:33 +00001038 if (!Result.isInt()) return false;
1039 return Success(-Result.getInt(), E);
Chris Lattner75a48812008-07-11 22:15:16 +00001040 case UnaryOperator::Not:
Daniel Dunbar30c37f42009-02-19 20:17:33 +00001041 if (!Result.isInt()) return false;
1042 return Success(~Result.getInt(), E);
Anders Carlssona25ae3d2008-07-08 14:35:21 +00001043 }
Anders Carlssona25ae3d2008-07-08 14:35:21 +00001044}
1045
Chris Lattner732b2232008-07-12 01:15:53 +00001046/// HandleCast - This is used to evaluate implicit or explicit casts where the
1047/// result type is integer.
Daniel Dunbara2cfd342009-01-29 06:16:07 +00001048bool IntExprEvaluator::VisitCastExpr(CastExpr *E) {
Anders Carlsson82206e22008-11-30 18:14:57 +00001049 Expr *SubExpr = E->getSubExpr();
1050 QualType DestType = E->getType();
Daniel Dunbarb92dac82009-02-19 22:16:29 +00001051 QualType SrcType = SubExpr->getType();
Anders Carlsson82206e22008-11-30 18:14:57 +00001052
Eli Friedman4efaa272008-11-12 09:44:48 +00001053 if (DestType->isBooleanType()) {
1054 bool BoolResult;
1055 if (!HandleConversionToBool(SubExpr, BoolResult, Info))
1056 return false;
Daniel Dunbar131eb432009-02-19 09:06:44 +00001057 return Success(BoolResult, E);
Eli Friedman4efaa272008-11-12 09:44:48 +00001058 }
1059
Anders Carlssona25ae3d2008-07-08 14:35:21 +00001060 // Handle simple integer->integer casts.
Daniel Dunbarb92dac82009-02-19 22:16:29 +00001061 if (SrcType->isIntegralType()) {
Chris Lattner732b2232008-07-12 01:15:53 +00001062 if (!Visit(SubExpr))
Chris Lattnerb542afe2008-07-11 19:10:17 +00001063 return false;
Daniel Dunbara2cfd342009-01-29 06:16:07 +00001064
Eli Friedmanbe265702009-02-20 01:15:07 +00001065 if (!Result.isInt()) {
1066 // Only allow casts of lvalues if they are lossless.
1067 return Info.Ctx.getTypeSize(DestType) == Info.Ctx.getTypeSize(SrcType);
1068 }
Daniel Dunbar30c37f42009-02-19 20:17:33 +00001069
Daniel Dunbardd211642009-02-19 22:24:01 +00001070 return Success(HandleIntToIntCast(DestType, SrcType,
Daniel Dunbar30c37f42009-02-19 20:17:33 +00001071 Result.getInt(), Info.Ctx), E);
Chris Lattner732b2232008-07-12 01:15:53 +00001072 }
1073
1074 // FIXME: Clean this up!
Daniel Dunbarb92dac82009-02-19 22:16:29 +00001075 if (SrcType->isPointerType()) {
Anders Carlssona25ae3d2008-07-08 14:35:21 +00001076 APValue LV;
Chris Lattner87eae5e2008-07-11 22:52:41 +00001077 if (!EvaluatePointer(SubExpr, LV, Info))
Chris Lattnerb542afe2008-07-11 19:10:17 +00001078 return false;
Eli Friedman4efaa272008-11-12 09:44:48 +00001079
Daniel Dunbardd211642009-02-19 22:24:01 +00001080 if (LV.getLValueBase()) {
1081 // Only allow based lvalue casts if they are lossless.
1082 if (Info.Ctx.getTypeSize(DestType) != Info.Ctx.getTypeSize(SrcType))
1083 return false;
Eli Friedman4efaa272008-11-12 09:44:48 +00001084
Daniel Dunbardd211642009-02-19 22:24:01 +00001085 Result = LV;
1086 return true;
1087 }
1088
1089 APSInt AsInt = Info.Ctx.MakeIntValue(LV.getLValueOffset(), SrcType);
1090 return Success(HandleIntToIntCast(DestType, SrcType, AsInt, Info.Ctx), E);
Anders Carlsson2bad1682008-07-08 14:30:00 +00001091 }
Eli Friedman4efaa272008-11-12 09:44:48 +00001092
Eli Friedmanbe265702009-02-20 01:15:07 +00001093 if (SrcType->isArrayType() || SrcType->isFunctionType()) {
1094 // This handles double-conversion cases, where there's both
1095 // an l-value promotion and an implicit conversion to int.
1096 APValue LV;
1097 if (!EvaluateLValue(SubExpr, LV, Info))
1098 return false;
1099
1100 if (Info.Ctx.getTypeSize(DestType) != Info.Ctx.getTypeSize(Info.Ctx.VoidPtrTy))
1101 return false;
1102
1103 Result = LV;
1104 return true;
1105 }
1106
Daniel Dunbarb92dac82009-02-19 22:16:29 +00001107 if (!SrcType->isRealFloatingType())
Anders Carlsson0e8acbb2008-11-30 18:37:00 +00001108 return Error(E->getExprLoc(), diag::note_invalid_subexpr_in_ice, E);
Chris Lattner732b2232008-07-12 01:15:53 +00001109
Eli Friedmand8bfe7f2008-08-22 00:06:13 +00001110 APFloat F(0.0);
1111 if (!EvaluateFloat(SubExpr, F, Info))
Anders Carlsson0e8acbb2008-11-30 18:37:00 +00001112 return Error(E->getExprLoc(), diag::note_invalid_subexpr_in_ice, E);
Chris Lattner732b2232008-07-12 01:15:53 +00001113
Daniel Dunbarb92dac82009-02-19 22:16:29 +00001114 return Success(HandleFloatToIntCast(DestType, SrcType, F, Info.Ctx), E);
Anders Carlssona25ae3d2008-07-08 14:35:21 +00001115}
Anders Carlsson2bad1682008-07-08 14:30:00 +00001116
Chris Lattnerf5eeb052008-07-11 18:11:29 +00001117//===----------------------------------------------------------------------===//
Eli Friedmand8bfe7f2008-08-22 00:06:13 +00001118// Float Evaluation
1119//===----------------------------------------------------------------------===//
1120
1121namespace {
1122class VISIBILITY_HIDDEN FloatExprEvaluator
1123 : public StmtVisitor<FloatExprEvaluator, bool> {
1124 EvalInfo &Info;
1125 APFloat &Result;
1126public:
1127 FloatExprEvaluator(EvalInfo &info, APFloat &result)
1128 : Info(info), Result(result) {}
1129
1130 bool VisitStmt(Stmt *S) {
1131 return false;
1132 }
1133
1134 bool VisitParenExpr(ParenExpr *E) { return Visit(E->getSubExpr()); }
Chris Lattner019f4e82008-10-06 05:28:25 +00001135 bool VisitCallExpr(const CallExpr *E);
Eli Friedmand8bfe7f2008-08-22 00:06:13 +00001136
Daniel Dunbar5db4b3f2008-10-16 03:51:50 +00001137 bool VisitUnaryOperator(const UnaryOperator *E);
Eli Friedmand8bfe7f2008-08-22 00:06:13 +00001138 bool VisitBinaryOperator(const BinaryOperator *E);
1139 bool VisitFloatingLiteral(const FloatingLiteral *E);
Eli Friedman4efaa272008-11-12 09:44:48 +00001140 bool VisitCastExpr(CastExpr *E);
1141 bool VisitCXXZeroInitValueExpr(CXXZeroInitValueExpr *E);
Eli Friedmand8bfe7f2008-08-22 00:06:13 +00001142};
1143} // end anonymous namespace
1144
1145static bool EvaluateFloat(const Expr* E, APFloat& Result, EvalInfo &Info) {
1146 return FloatExprEvaluator(Info, Result).Visit(const_cast<Expr*>(E));
1147}
1148
Chris Lattner019f4e82008-10-06 05:28:25 +00001149bool FloatExprEvaluator::VisitCallExpr(const CallExpr *E) {
Douglas Gregor3c385e52009-02-14 18:57:46 +00001150 switch (E->isBuiltinCall(Info.Ctx)) {
Chris Lattner34a74ab2008-10-06 05:53:16 +00001151 default: return false;
Chris Lattner019f4e82008-10-06 05:28:25 +00001152 case Builtin::BI__builtin_huge_val:
1153 case Builtin::BI__builtin_huge_valf:
1154 case Builtin::BI__builtin_huge_vall:
1155 case Builtin::BI__builtin_inf:
1156 case Builtin::BI__builtin_inff:
Daniel Dunbar7cbed032008-10-14 05:41:12 +00001157 case Builtin::BI__builtin_infl: {
1158 const llvm::fltSemantics &Sem =
1159 Info.Ctx.getFloatTypeSemantics(E->getType());
Chris Lattner34a74ab2008-10-06 05:53:16 +00001160 Result = llvm::APFloat::getInf(Sem);
1161 return true;
Daniel Dunbar7cbed032008-10-14 05:41:12 +00001162 }
Chris Lattner9e621712008-10-06 06:31:58 +00001163
1164 case Builtin::BI__builtin_nan:
1165 case Builtin::BI__builtin_nanf:
1166 case Builtin::BI__builtin_nanl:
1167 // If this is __builtin_nan("") turn this into a simple nan, otherwise we
1168 // can't constant fold it.
1169 if (const StringLiteral *S =
1170 dyn_cast<StringLiteral>(E->getArg(0)->IgnoreParenCasts())) {
1171 if (!S->isWide() && S->getByteLength() == 0) { // empty string.
Daniel Dunbar7cbed032008-10-14 05:41:12 +00001172 const llvm::fltSemantics &Sem =
1173 Info.Ctx.getFloatTypeSemantics(E->getType());
Chris Lattner9e621712008-10-06 06:31:58 +00001174 Result = llvm::APFloat::getNaN(Sem);
1175 return true;
1176 }
1177 }
1178 return false;
Daniel Dunbar5db4b3f2008-10-16 03:51:50 +00001179
1180 case Builtin::BI__builtin_fabs:
1181 case Builtin::BI__builtin_fabsf:
1182 case Builtin::BI__builtin_fabsl:
1183 if (!EvaluateFloat(E->getArg(0), Result, Info))
1184 return false;
1185
1186 if (Result.isNegative())
1187 Result.changeSign();
1188 return true;
1189
1190 case Builtin::BI__builtin_copysign:
1191 case Builtin::BI__builtin_copysignf:
1192 case Builtin::BI__builtin_copysignl: {
1193 APFloat RHS(0.);
1194 if (!EvaluateFloat(E->getArg(0), Result, Info) ||
1195 !EvaluateFloat(E->getArg(1), RHS, Info))
1196 return false;
1197 Result.copySign(RHS);
1198 return true;
1199 }
Chris Lattner019f4e82008-10-06 05:28:25 +00001200 }
1201}
1202
Daniel Dunbar5db4b3f2008-10-16 03:51:50 +00001203bool FloatExprEvaluator::VisitUnaryOperator(const UnaryOperator *E) {
Nuno Lopesa468d342008-11-19 17:44:31 +00001204 if (E->getOpcode() == UnaryOperator::Deref)
1205 return false;
1206
Daniel Dunbar5db4b3f2008-10-16 03:51:50 +00001207 if (!EvaluateFloat(E->getSubExpr(), Result, Info))
1208 return false;
1209
1210 switch (E->getOpcode()) {
1211 default: return false;
1212 case UnaryOperator::Plus:
1213 return true;
1214 case UnaryOperator::Minus:
1215 Result.changeSign();
1216 return true;
1217 }
1218}
Chris Lattner019f4e82008-10-06 05:28:25 +00001219
Eli Friedmand8bfe7f2008-08-22 00:06:13 +00001220bool FloatExprEvaluator::VisitBinaryOperator(const BinaryOperator *E) {
1221 // FIXME: Diagnostics? I really don't understand how the warnings
1222 // and errors are supposed to work.
Daniel Dunbar5db4b3f2008-10-16 03:51:50 +00001223 APFloat RHS(0.0);
Eli Friedmand8bfe7f2008-08-22 00:06:13 +00001224 if (!EvaluateFloat(E->getLHS(), Result, Info))
1225 return false;
1226 if (!EvaluateFloat(E->getRHS(), RHS, Info))
1227 return false;
1228
1229 switch (E->getOpcode()) {
1230 default: return false;
1231 case BinaryOperator::Mul:
1232 Result.multiply(RHS, APFloat::rmNearestTiesToEven);
1233 return true;
1234 case BinaryOperator::Add:
1235 Result.add(RHS, APFloat::rmNearestTiesToEven);
1236 return true;
1237 case BinaryOperator::Sub:
1238 Result.subtract(RHS, APFloat::rmNearestTiesToEven);
1239 return true;
1240 case BinaryOperator::Div:
1241 Result.divide(RHS, APFloat::rmNearestTiesToEven);
1242 return true;
1243 case BinaryOperator::Rem:
1244 Result.mod(RHS, APFloat::rmNearestTiesToEven);
1245 return true;
1246 }
1247}
1248
1249bool FloatExprEvaluator::VisitFloatingLiteral(const FloatingLiteral *E) {
1250 Result = E->getValue();
1251 return true;
1252}
1253
Eli Friedman4efaa272008-11-12 09:44:48 +00001254bool FloatExprEvaluator::VisitCastExpr(CastExpr *E) {
1255 Expr* SubExpr = E->getSubExpr();
Nate Begeman59b5da62009-01-18 03:20:47 +00001256
Eli Friedman4efaa272008-11-12 09:44:48 +00001257 if (SubExpr->getType()->isIntegralType()) {
1258 APSInt IntResult;
Daniel Dunbar3f7d9952009-02-19 18:37:50 +00001259 if (!EvaluateInteger(SubExpr, IntResult, Info))
Eli Friedman4efaa272008-11-12 09:44:48 +00001260 return false;
Daniel Dunbara2cfd342009-01-29 06:16:07 +00001261 Result = HandleIntToFloatCast(E->getType(), SubExpr->getType(),
1262 IntResult, Info.Ctx);
Eli Friedman4efaa272008-11-12 09:44:48 +00001263 return true;
1264 }
1265 if (SubExpr->getType()->isRealFloatingType()) {
1266 if (!Visit(SubExpr))
1267 return false;
Daniel Dunbara2cfd342009-01-29 06:16:07 +00001268 Result = HandleFloatToFloatCast(E->getType(), SubExpr->getType(),
1269 Result, Info.Ctx);
Eli Friedman4efaa272008-11-12 09:44:48 +00001270 return true;
1271 }
1272
1273 return false;
1274}
1275
1276bool FloatExprEvaluator::VisitCXXZeroInitValueExpr(CXXZeroInitValueExpr *E) {
1277 Result = APFloat::getZero(Info.Ctx.getFloatTypeSemantics(E->getType()));
1278 return true;
1279}
1280
Eli Friedmand8bfe7f2008-08-22 00:06:13 +00001281//===----------------------------------------------------------------------===//
Daniel Dunbara5fd07b2009-01-28 22:24:07 +00001282// Complex Evaluation (for float and integer)
Anders Carlsson9ad16ae2008-11-16 20:27:53 +00001283//===----------------------------------------------------------------------===//
1284
1285namespace {
Daniel Dunbara5fd07b2009-01-28 22:24:07 +00001286class VISIBILITY_HIDDEN ComplexExprEvaluator
1287 : public StmtVisitor<ComplexExprEvaluator, APValue> {
Anders Carlsson9ad16ae2008-11-16 20:27:53 +00001288 EvalInfo &Info;
1289
1290public:
Daniel Dunbara5fd07b2009-01-28 22:24:07 +00001291 ComplexExprEvaluator(EvalInfo &info) : Info(info) {}
Anders Carlsson9ad16ae2008-11-16 20:27:53 +00001292
1293 //===--------------------------------------------------------------------===//
1294 // Visitor Methods
1295 //===--------------------------------------------------------------------===//
1296
1297 APValue VisitStmt(Stmt *S) {
Anders Carlsson9ad16ae2008-11-16 20:27:53 +00001298 return APValue();
1299 }
1300
1301 APValue VisitParenExpr(ParenExpr *E) { return Visit(E->getSubExpr()); }
1302
1303 APValue VisitImaginaryLiteral(ImaginaryLiteral *E) {
Daniel Dunbara5fd07b2009-01-28 22:24:07 +00001304 Expr* SubExpr = E->getSubExpr();
1305
1306 if (SubExpr->getType()->isRealFloatingType()) {
1307 APFloat Result(0.0);
1308
1309 if (!EvaluateFloat(SubExpr, Result, Info))
1310 return APValue();
Anders Carlsson9ad16ae2008-11-16 20:27:53 +00001311
Daniel Dunbar3f279872009-01-29 01:32:56 +00001312 return APValue(APFloat(Result.getSemantics(), APFloat::fcZero, false),
Daniel Dunbara5fd07b2009-01-28 22:24:07 +00001313 Result);
1314 } else {
1315 assert(SubExpr->getType()->isIntegerType() &&
1316 "Unexpected imaginary literal.");
1317
1318 llvm::APSInt Result;
1319 if (!EvaluateInteger(SubExpr, Result, Info))
1320 return APValue();
1321
1322 llvm::APSInt Zero(Result.getBitWidth(), !Result.isSigned());
1323 Zero = 0;
1324 return APValue(Zero, Result);
1325 }
Anders Carlsson9ad16ae2008-11-16 20:27:53 +00001326 }
1327
Anders Carlssonccc3fce2008-11-16 21:51:21 +00001328 APValue VisitCastExpr(CastExpr *E) {
1329 Expr* SubExpr = E->getSubExpr();
Daniel Dunbara2cfd342009-01-29 06:16:07 +00001330 QualType EltType = E->getType()->getAsComplexType()->getElementType();
1331 QualType SubType = SubExpr->getType();
Anders Carlssonccc3fce2008-11-16 21:51:21 +00001332
Daniel Dunbara2cfd342009-01-29 06:16:07 +00001333 if (SubType->isRealFloatingType()) {
Anders Carlssonccc3fce2008-11-16 21:51:21 +00001334 APFloat Result(0.0);
1335
1336 if (!EvaluateFloat(SubExpr, Result, Info))
1337 return APValue();
1338
Daniel Dunbara2cfd342009-01-29 06:16:07 +00001339 // Apply float conversion if necessary.
1340 Result = HandleFloatToFloatCast(EltType, SubType, Result, Info.Ctx);
Daniel Dunbar8f826f02009-01-24 19:08:01 +00001341 return APValue(Result,
Daniel Dunbar3f279872009-01-29 01:32:56 +00001342 APFloat(Result.getSemantics(), APFloat::fcZero, false));
Daniel Dunbara2cfd342009-01-29 06:16:07 +00001343 } else if (SubType->isIntegerType()) {
Daniel Dunbara5fd07b2009-01-28 22:24:07 +00001344 APSInt Result;
1345
1346 if (!EvaluateInteger(SubExpr, Result, Info))
1347 return APValue();
Daniel Dunbara2cfd342009-01-29 06:16:07 +00001348
1349 // Apply integer conversion if necessary.
1350 Result = HandleIntToIntCast(EltType, SubType, Result, Info.Ctx);
Daniel Dunbara5fd07b2009-01-28 22:24:07 +00001351 llvm::APSInt Zero(Result.getBitWidth(), !Result.isSigned());
1352 Zero = 0;
1353 return APValue(Result, Zero);
Daniel Dunbara2cfd342009-01-29 06:16:07 +00001354 } else if (const ComplexType *CT = SubType->getAsComplexType()) {
1355 APValue Src;
1356
1357 if (!EvaluateComplex(SubExpr, Src, Info))
1358 return APValue();
1359
1360 QualType SrcType = CT->getElementType();
1361
1362 if (Src.isComplexFloat()) {
1363 if (EltType->isRealFloatingType()) {
1364 return APValue(HandleFloatToFloatCast(EltType, SrcType,
1365 Src.getComplexFloatReal(),
1366 Info.Ctx),
1367 HandleFloatToFloatCast(EltType, SrcType,
1368 Src.getComplexFloatImag(),
1369 Info.Ctx));
1370 } else {
1371 return APValue(HandleFloatToIntCast(EltType, SrcType,
1372 Src.getComplexFloatReal(),
1373 Info.Ctx),
1374 HandleFloatToIntCast(EltType, SrcType,
1375 Src.getComplexFloatImag(),
1376 Info.Ctx));
1377 }
1378 } else {
1379 assert(Src.isComplexInt() && "Invalid evaluate result.");
1380 if (EltType->isRealFloatingType()) {
1381 return APValue(HandleIntToFloatCast(EltType, SrcType,
1382 Src.getComplexIntReal(),
1383 Info.Ctx),
1384 HandleIntToFloatCast(EltType, SrcType,
1385 Src.getComplexIntImag(),
1386 Info.Ctx));
1387 } else {
1388 return APValue(HandleIntToIntCast(EltType, SrcType,
1389 Src.getComplexIntReal(),
1390 Info.Ctx),
1391 HandleIntToIntCast(EltType, SrcType,
1392 Src.getComplexIntImag(),
1393 Info.Ctx));
1394 }
1395 }
Anders Carlssonccc3fce2008-11-16 21:51:21 +00001396 }
1397
1398 // FIXME: Handle more casts.
1399 return APValue();
1400 }
1401
1402 APValue VisitBinaryOperator(const BinaryOperator *E);
1403
Anders Carlsson9ad16ae2008-11-16 20:27:53 +00001404};
1405} // end anonymous namespace
1406
Daniel Dunbara5fd07b2009-01-28 22:24:07 +00001407static bool EvaluateComplex(const Expr *E, APValue &Result, EvalInfo &Info)
Anders Carlsson9ad16ae2008-11-16 20:27:53 +00001408{
Daniel Dunbara5fd07b2009-01-28 22:24:07 +00001409 Result = ComplexExprEvaluator(Info).Visit(const_cast<Expr*>(E));
1410 assert((!Result.isComplexFloat() ||
1411 (&Result.getComplexFloatReal().getSemantics() ==
1412 &Result.getComplexFloatImag().getSemantics())) &&
1413 "Invalid complex evaluation.");
1414 return Result.isComplexFloat() || Result.isComplexInt();
Anders Carlsson9ad16ae2008-11-16 20:27:53 +00001415}
1416
Daniel Dunbara5fd07b2009-01-28 22:24:07 +00001417APValue ComplexExprEvaluator::VisitBinaryOperator(const BinaryOperator *E)
Anders Carlssonccc3fce2008-11-16 21:51:21 +00001418{
1419 APValue Result, RHS;
1420
Daniel Dunbara5fd07b2009-01-28 22:24:07 +00001421 if (!EvaluateComplex(E->getLHS(), Result, Info))
Anders Carlssonccc3fce2008-11-16 21:51:21 +00001422 return APValue();
1423
Daniel Dunbara5fd07b2009-01-28 22:24:07 +00001424 if (!EvaluateComplex(E->getRHS(), RHS, Info))
Anders Carlssonccc3fce2008-11-16 21:51:21 +00001425 return APValue();
Daniel Dunbara5fd07b2009-01-28 22:24:07 +00001426
Daniel Dunbar3f279872009-01-29 01:32:56 +00001427 assert(Result.isComplexFloat() == RHS.isComplexFloat() &&
1428 "Invalid operands to binary operator.");
Anders Carlssonccc3fce2008-11-16 21:51:21 +00001429 switch (E->getOpcode()) {
1430 default: return APValue();
1431 case BinaryOperator::Add:
Daniel Dunbara5fd07b2009-01-28 22:24:07 +00001432 if (Result.isComplexFloat()) {
1433 Result.getComplexFloatReal().add(RHS.getComplexFloatReal(),
1434 APFloat::rmNearestTiesToEven);
1435 Result.getComplexFloatImag().add(RHS.getComplexFloatImag(),
1436 APFloat::rmNearestTiesToEven);
1437 } else {
1438 Result.getComplexIntReal() += RHS.getComplexIntReal();
1439 Result.getComplexIntImag() += RHS.getComplexIntImag();
1440 }
Daniel Dunbar3f279872009-01-29 01:32:56 +00001441 break;
Anders Carlssonccc3fce2008-11-16 21:51:21 +00001442 case BinaryOperator::Sub:
Daniel Dunbara5fd07b2009-01-28 22:24:07 +00001443 if (Result.isComplexFloat()) {
1444 Result.getComplexFloatReal().subtract(RHS.getComplexFloatReal(),
1445 APFloat::rmNearestTiesToEven);
1446 Result.getComplexFloatImag().subtract(RHS.getComplexFloatImag(),
1447 APFloat::rmNearestTiesToEven);
1448 } else {
1449 Result.getComplexIntReal() -= RHS.getComplexIntReal();
1450 Result.getComplexIntImag() -= RHS.getComplexIntImag();
1451 }
Daniel Dunbar3f279872009-01-29 01:32:56 +00001452 break;
1453 case BinaryOperator::Mul:
1454 if (Result.isComplexFloat()) {
1455 APValue LHS = Result;
1456 APFloat &LHS_r = LHS.getComplexFloatReal();
1457 APFloat &LHS_i = LHS.getComplexFloatImag();
1458 APFloat &RHS_r = RHS.getComplexFloatReal();
1459 APFloat &RHS_i = RHS.getComplexFloatImag();
1460
1461 APFloat Tmp = LHS_r;
1462 Tmp.multiply(RHS_r, APFloat::rmNearestTiesToEven);
1463 Result.getComplexFloatReal() = Tmp;
1464 Tmp = LHS_i;
1465 Tmp.multiply(RHS_i, APFloat::rmNearestTiesToEven);
1466 Result.getComplexFloatReal().subtract(Tmp, APFloat::rmNearestTiesToEven);
1467
1468 Tmp = LHS_r;
1469 Tmp.multiply(RHS_i, APFloat::rmNearestTiesToEven);
1470 Result.getComplexFloatImag() = Tmp;
1471 Tmp = LHS_i;
1472 Tmp.multiply(RHS_r, APFloat::rmNearestTiesToEven);
1473 Result.getComplexFloatImag().add(Tmp, APFloat::rmNearestTiesToEven);
1474 } else {
1475 APValue LHS = Result;
1476 Result.getComplexIntReal() =
1477 (LHS.getComplexIntReal() * RHS.getComplexIntReal() -
1478 LHS.getComplexIntImag() * RHS.getComplexIntImag());
1479 Result.getComplexIntImag() =
1480 (LHS.getComplexIntReal() * RHS.getComplexIntImag() +
1481 LHS.getComplexIntImag() * RHS.getComplexIntReal());
1482 }
1483 break;
Anders Carlssonccc3fce2008-11-16 21:51:21 +00001484 }
1485
1486 return Result;
1487}
1488
Anders Carlsson9ad16ae2008-11-16 20:27:53 +00001489//===----------------------------------------------------------------------===//
Chris Lattner6ee7aa12008-11-16 21:24:15 +00001490// Top level Expr::Evaluate method.
Chris Lattnerf5eeb052008-07-11 18:11:29 +00001491//===----------------------------------------------------------------------===//
1492
Chris Lattner6ee7aa12008-11-16 21:24:15 +00001493/// Evaluate - Return true if this is a constant which we can fold using
Chris Lattner019f4e82008-10-06 05:28:25 +00001494/// any crazy technique (that has nothing to do with language standards) that
1495/// we want to. If this function returns true, it returns the folded constant
1496/// in Result.
Anders Carlsson5b45d4e2008-11-30 16:58:53 +00001497bool Expr::Evaluate(EvalResult &Result, ASTContext &Ctx) const {
1498 EvalInfo Info(Ctx, Result);
Anders Carlsson54da0492008-11-30 16:38:33 +00001499
Nate Begeman59b5da62009-01-18 03:20:47 +00001500 if (getType()->isVectorType()) {
1501 if (!EvaluateVector(this, Result.Val, Info))
1502 return false;
1503 } else if (getType()->isIntegerType()) {
Daniel Dunbar30c37f42009-02-19 20:17:33 +00001504 if (!IntExprEvaluator(Info, Result.Val).Visit(const_cast<Expr*>(this)))
Anders Carlsson6dde0d52008-11-22 21:50:49 +00001505 return false;
Mike Stumpca2f3fd2009-02-18 21:44:49 +00001506 } else if (getType()->isPointerType()
1507 || getType()->isBlockPointerType()) {
Anders Carlsson5b45d4e2008-11-30 16:58:53 +00001508 if (!EvaluatePointer(this, Result.Val, Info))
Anders Carlsson6dde0d52008-11-22 21:50:49 +00001509 return false;
Eli Friedmand8bfe7f2008-08-22 00:06:13 +00001510 } else if (getType()->isRealFloatingType()) {
1511 llvm::APFloat f(0.0);
Anders Carlsson6dde0d52008-11-22 21:50:49 +00001512 if (!EvaluateFloat(this, f, Info))
1513 return false;
1514
Anders Carlsson5b45d4e2008-11-30 16:58:53 +00001515 Result.Val = APValue(f);
Daniel Dunbara5fd07b2009-01-28 22:24:07 +00001516 } else if (getType()->isAnyComplexType()) {
1517 if (!EvaluateComplex(this, Result.Val, Info))
Anders Carlsson6dde0d52008-11-22 21:50:49 +00001518 return false;
Daniel Dunbara5fd07b2009-01-28 22:24:07 +00001519 } else
Anders Carlsson9d4c1572008-11-22 22:56:32 +00001520 return false;
Anders Carlsson6dde0d52008-11-22 21:50:49 +00001521
Anders Carlsson5b45d4e2008-11-30 16:58:53 +00001522 return true;
1523}
1524
Chris Lattner6ee7aa12008-11-16 21:24:15 +00001525/// isEvaluatable - Call Evaluate to see if this expression can be constant
Chris Lattner45b6b9d2008-10-06 06:49:02 +00001526/// folded, but discard the result.
1527bool Expr::isEvaluatable(ASTContext &Ctx) const {
Anders Carlsson4fdfb092008-12-01 06:44:05 +00001528 EvalResult Result;
1529 return Evaluate(Result, Ctx) && !Result.HasSideEffects;
Chris Lattner45b6b9d2008-10-06 06:49:02 +00001530}
Anders Carlsson51fe9962008-11-22 21:04:56 +00001531
1532APSInt Expr::EvaluateAsInt(ASTContext &Ctx) const {
Anders Carlsson1c0cfd42008-12-19 20:58:05 +00001533 EvalResult EvalResult;
1534 bool Result = Evaluate(EvalResult, Ctx);
Daniel Dunbarf1853192009-01-15 18:32:35 +00001535 Result = Result;
Anders Carlsson51fe9962008-11-22 21:04:56 +00001536 assert(Result && "Could not evaluate expression");
Anders Carlsson1c0cfd42008-12-19 20:58:05 +00001537 assert(EvalResult.Val.isInt() && "Expression did not evaluate to integer");
Anders Carlsson51fe9962008-11-22 21:04:56 +00001538
Anders Carlsson1c0cfd42008-12-19 20:58:05 +00001539 return EvalResult.Val.getInt();
Anders Carlsson51fe9962008-11-22 21:04:56 +00001540}