blob: afce24e6254d58448d83d4e357f338e60cec2964 [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"
Ken Dyck199c3d62010-01-11 17:06:35 +000016#include "clang/AST/CharUnits.h"
Anders Carlsson19cc4ab2009-07-18 19:43:29 +000017#include "clang/AST/RecordLayout.h"
Seo Sanghyeon0fe52e12008-07-08 07:23:12 +000018#include "clang/AST/StmtVisitor.h"
Douglas Gregor8ecdb652010-04-28 22:16:22 +000019#include "clang/AST/TypeLoc.h"
Chris Lattner500d3292009-01-29 05:15:15 +000020#include "clang/AST/ASTDiagnostic.h"
Douglas Gregor8ecdb652010-04-28 22:16:22 +000021#include "clang/AST/Expr.h"
Chris Lattner1b63e4f2009-06-14 01:54:56 +000022#include "clang/Basic/Builtins.h"
Anders Carlsson06a36752008-07-08 05:49:43 +000023#include "clang/Basic/TargetInfo.h"
Mike Stump7462b392009-05-30 14:43:18 +000024#include "llvm/ADT/SmallString.h"
Mike Stump4572bab2009-05-30 03:56:50 +000025#include <cstring>
26
Anders Carlssonc44eec62008-07-03 04:20:39 +000027using namespace clang;
Chris Lattnerf5eeb052008-07-11 18:11:29 +000028using llvm::APSInt;
Eli Friedmand8bfe7f2008-08-22 00:06:13 +000029using llvm::APFloat;
Anders Carlssonc44eec62008-07-03 04:20:39 +000030
Chris Lattner87eae5e2008-07-11 22:52:41 +000031/// EvalInfo - This is a private struct used by the evaluator to capture
32/// information about a subexpression as it is folded. It retains information
33/// about the AST context, but also maintains information about the folded
34/// expression.
35///
36/// If an expression could be evaluated, it is still possible it is not a C
37/// "integer constant expression" or constant expression. If not, this struct
38/// captures information about how and why not.
39///
40/// One bit of information passed *into* the request for constant folding
41/// indicates whether the subexpression is "evaluated" or not according to C
42/// rules. For example, the RHS of (0 && foo()) is not evaluated. We can
43/// evaluate the expression regardless of what the RHS is, but C only allows
44/// certain things in certain situations.
45struct EvalInfo {
Jay Foad4ba2a172011-01-12 09:06:06 +000046 const ASTContext &Ctx;
Mike Stump1eb44332009-09-09 15:08:12 +000047
Anders Carlsson54da0492008-11-30 16:38:33 +000048 /// EvalResult - Contains information about the evaluation.
49 Expr::EvalResult &EvalResult;
Anders Carlssonf0c1e4b2008-11-30 18:26:25 +000050
Jay Foad4ba2a172011-01-12 09:06:06 +000051 EvalInfo(const ASTContext &ctx, Expr::EvalResult& evalresult)
John McCall42c8f872010-05-10 23:27:23 +000052 : Ctx(ctx), EvalResult(evalresult) {}
Chris Lattner87eae5e2008-07-11 22:52:41 +000053};
54
John McCallf4cf1a12010-05-07 17:22:02 +000055namespace {
56 struct ComplexValue {
57 private:
58 bool IsInt;
59
60 public:
61 APSInt IntReal, IntImag;
62 APFloat FloatReal, FloatImag;
63
64 ComplexValue() : FloatReal(APFloat::Bogus), FloatImag(APFloat::Bogus) {}
65
66 void makeComplexFloat() { IsInt = false; }
67 bool isComplexFloat() const { return !IsInt; }
68 APFloat &getComplexFloatReal() { return FloatReal; }
69 APFloat &getComplexFloatImag() { return FloatImag; }
70
71 void makeComplexInt() { IsInt = true; }
72 bool isComplexInt() const { return IsInt; }
73 APSInt &getComplexIntReal() { return IntReal; }
74 APSInt &getComplexIntImag() { return IntImag; }
75
76 void moveInto(APValue &v) {
77 if (isComplexFloat())
78 v = APValue(FloatReal, FloatImag);
79 else
80 v = APValue(IntReal, IntImag);
81 }
82 };
John McCallefdb83e2010-05-07 21:00:08 +000083
84 struct LValue {
85 Expr *Base;
86 CharUnits Offset;
87
88 Expr *getLValueBase() { return Base; }
89 CharUnits getLValueOffset() { return Offset; }
90
91 void moveInto(APValue &v) {
92 v = APValue(Base, Offset);
93 }
94 };
John McCallf4cf1a12010-05-07 17:22:02 +000095}
Chris Lattner87eae5e2008-07-11 22:52:41 +000096
John McCallefdb83e2010-05-07 21:00:08 +000097static bool EvaluateLValue(const Expr *E, LValue &Result, EvalInfo &Info);
98static bool EvaluatePointer(const Expr *E, LValue &Result, EvalInfo &Info);
Chris Lattner87eae5e2008-07-11 22:52:41 +000099static bool EvaluateInteger(const Expr *E, APSInt &Result, EvalInfo &Info);
Chris Lattnerd9becd12009-10-28 23:59:40 +0000100static bool EvaluateIntegerOrLValue(const Expr *E, APValue &Result,
101 EvalInfo &Info);
Eli Friedmand8bfe7f2008-08-22 00:06:13 +0000102static bool EvaluateFloat(const Expr *E, APFloat &Result, EvalInfo &Info);
John McCallf4cf1a12010-05-07 17:22:02 +0000103static bool EvaluateComplex(const Expr *E, ComplexValue &Res, EvalInfo &Info);
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000104
105//===----------------------------------------------------------------------===//
Eli Friedman4efaa272008-11-12 09:44:48 +0000106// Misc utilities
107//===----------------------------------------------------------------------===//
108
Abramo Bagnarae17a6432010-05-14 17:07:14 +0000109static bool IsGlobalLValue(const Expr* E) {
John McCall42c8f872010-05-10 23:27:23 +0000110 if (!E) return true;
111
112 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E)) {
113 if (isa<FunctionDecl>(DRE->getDecl()))
114 return true;
115 if (const VarDecl *VD = dyn_cast<VarDecl>(DRE->getDecl()))
116 return VD->hasGlobalStorage();
117 return false;
118 }
119
120 if (const CompoundLiteralExpr *CLE = dyn_cast<CompoundLiteralExpr>(E))
121 return CLE->isFileScope();
122
123 return true;
124}
125
John McCallefdb83e2010-05-07 21:00:08 +0000126static bool EvalPointerValueAsBool(LValue& Value, bool& Result) {
127 const Expr* Base = Value.Base;
Rafael Espindolaa7d3c042010-05-07 15:18:43 +0000128
John McCall35542832010-05-07 21:34:32 +0000129 // A null base expression indicates a null pointer. These are always
130 // evaluatable, and they are false unless the offset is zero.
131 if (!Base) {
132 Result = !Value.Offset.isZero();
133 return true;
134 }
Rafael Espindolaa7d3c042010-05-07 15:18:43 +0000135
John McCall42c8f872010-05-10 23:27:23 +0000136 // Require the base expression to be a global l-value.
Abramo Bagnarae17a6432010-05-14 17:07:14 +0000137 if (!IsGlobalLValue(Base)) return false;
John McCall42c8f872010-05-10 23:27:23 +0000138
John McCall35542832010-05-07 21:34:32 +0000139 // We have a non-null base expression. These are generally known to
140 // be true, but if it'a decl-ref to a weak symbol it can be null at
141 // runtime.
John McCall35542832010-05-07 21:34:32 +0000142 Result = true;
143
144 const DeclRefExpr* DeclRef = dyn_cast<DeclRefExpr>(Base);
Rafael Espindolaa7d3c042010-05-07 15:18:43 +0000145 if (!DeclRef)
146 return true;
147
John McCall35542832010-05-07 21:34:32 +0000148 // If it's a weak symbol, it isn't constant-evaluable.
Rafael Espindolaa7d3c042010-05-07 15:18:43 +0000149 const ValueDecl* Decl = DeclRef->getDecl();
150 if (Decl->hasAttr<WeakAttr>() ||
151 Decl->hasAttr<WeakRefAttr>() ||
152 Decl->hasAttr<WeakImportAttr>())
153 return false;
154
Eli Friedman5bc86102009-06-14 02:17:33 +0000155 return true;
156}
157
John McCallcd7a4452010-01-05 23:42:56 +0000158static bool HandleConversionToBool(const Expr* E, bool& Result,
159 EvalInfo &Info) {
Douglas Gregor2ade35e2010-06-16 00:17:44 +0000160 if (E->getType()->isIntegralOrEnumerationType()) {
Eli Friedman4efaa272008-11-12 09:44:48 +0000161 APSInt IntResult;
162 if (!EvaluateInteger(E, IntResult, Info))
163 return false;
164 Result = IntResult != 0;
165 return true;
166 } else if (E->getType()->isRealFloatingType()) {
167 APFloat FloatResult(0.0);
168 if (!EvaluateFloat(E, FloatResult, Info))
169 return false;
170 Result = !FloatResult.isZero();
171 return true;
Eli Friedmana1f47c42009-03-23 04:38:34 +0000172 } else if (E->getType()->hasPointerRepresentation()) {
John McCallefdb83e2010-05-07 21:00:08 +0000173 LValue PointerResult;
Eli Friedman4efaa272008-11-12 09:44:48 +0000174 if (!EvaluatePointer(E, PointerResult, Info))
175 return false;
Eli Friedman5bc86102009-06-14 02:17:33 +0000176 return EvalPointerValueAsBool(PointerResult, Result);
Eli Friedmana1f47c42009-03-23 04:38:34 +0000177 } else if (E->getType()->isAnyComplexType()) {
John McCallf4cf1a12010-05-07 17:22:02 +0000178 ComplexValue ComplexResult;
Eli Friedmana1f47c42009-03-23 04:38:34 +0000179 if (!EvaluateComplex(E, ComplexResult, Info))
180 return false;
181 if (ComplexResult.isComplexFloat()) {
182 Result = !ComplexResult.getComplexFloatReal().isZero() ||
183 !ComplexResult.getComplexFloatImag().isZero();
184 } else {
185 Result = ComplexResult.getComplexIntReal().getBoolValue() ||
186 ComplexResult.getComplexIntImag().getBoolValue();
187 }
188 return true;
Eli Friedman4efaa272008-11-12 09:44:48 +0000189 }
190
191 return false;
192}
193
Mike Stump1eb44332009-09-09 15:08:12 +0000194static APSInt HandleFloatToIntCast(QualType DestType, QualType SrcType,
Jay Foad4ba2a172011-01-12 09:06:06 +0000195 APFloat &Value, const ASTContext &Ctx) {
Daniel Dunbara2cfd342009-01-29 06:16:07 +0000196 unsigned DestWidth = Ctx.getIntWidth(DestType);
197 // Determine whether we are converting to unsigned or signed.
198 bool DestSigned = DestType->isSignedIntegerType();
Mike Stump1eb44332009-09-09 15:08:12 +0000199
Daniel Dunbara2cfd342009-01-29 06:16:07 +0000200 // FIXME: Warning for overflow.
201 uint64_t Space[4];
202 bool ignored;
203 (void)Value.convertToInteger(Space, DestWidth, DestSigned,
204 llvm::APFloat::rmTowardZero, &ignored);
205 return APSInt(llvm::APInt(DestWidth, 4, Space), !DestSigned);
206}
207
Mike Stump1eb44332009-09-09 15:08:12 +0000208static APFloat HandleFloatToFloatCast(QualType DestType, QualType SrcType,
Jay Foad4ba2a172011-01-12 09:06:06 +0000209 APFloat &Value, const ASTContext &Ctx) {
Daniel Dunbara2cfd342009-01-29 06:16:07 +0000210 bool ignored;
211 APFloat Result = Value;
Mike Stump1eb44332009-09-09 15:08:12 +0000212 Result.convert(Ctx.getFloatTypeSemantics(DestType),
Daniel Dunbara2cfd342009-01-29 06:16:07 +0000213 APFloat::rmNearestTiesToEven, &ignored);
214 return Result;
215}
216
Mike Stump1eb44332009-09-09 15:08:12 +0000217static APSInt HandleIntToIntCast(QualType DestType, QualType SrcType,
Jay Foad4ba2a172011-01-12 09:06:06 +0000218 APSInt &Value, const ASTContext &Ctx) {
Daniel Dunbara2cfd342009-01-29 06:16:07 +0000219 unsigned DestWidth = Ctx.getIntWidth(DestType);
220 APSInt Result = Value;
221 // Figure out if this is a truncate, extend or noop cast.
222 // If the input is signed, do a sign extend, noop, or truncate.
Jay Foad9f71a8f2010-12-07 08:25:34 +0000223 Result = Result.extOrTrunc(DestWidth);
Daniel Dunbara2cfd342009-01-29 06:16:07 +0000224 Result.setIsUnsigned(DestType->isUnsignedIntegerType());
225 return Result;
226}
227
Mike Stump1eb44332009-09-09 15:08:12 +0000228static APFloat HandleIntToFloatCast(QualType DestType, QualType SrcType,
Jay Foad4ba2a172011-01-12 09:06:06 +0000229 APSInt &Value, const ASTContext &Ctx) {
Daniel Dunbara2cfd342009-01-29 06:16:07 +0000230
231 APFloat Result(Ctx.getFloatTypeSemantics(DestType), 1);
232 Result.convertFromAPInt(Value, Value.isSigned(),
233 APFloat::rmNearestTiesToEven);
234 return Result;
235}
236
Mike Stumpc4c90452009-10-27 22:09:17 +0000237namespace {
Benjamin Kramer770b4a82009-11-28 19:03:38 +0000238class HasSideEffect
Mike Stumpc4c90452009-10-27 22:09:17 +0000239 : public StmtVisitor<HasSideEffect, bool> {
240 EvalInfo &Info;
241public:
242
243 HasSideEffect(EvalInfo &info) : Info(info) {}
244
245 // Unhandled nodes conservatively default to having side effects.
246 bool VisitStmt(Stmt *S) {
247 return true;
248 }
249
250 bool VisitParenExpr(ParenExpr *E) { return Visit(E->getSubExpr()); }
251 bool VisitDeclRefExpr(DeclRefExpr *E) {
Mike Stumpdf317bf2009-11-03 23:25:48 +0000252 if (Info.Ctx.getCanonicalType(E->getType()).isVolatileQualified())
Mike Stumpc4c90452009-10-27 22:09:17 +0000253 return true;
254 return false;
255 }
256 // We don't want to evaluate BlockExprs multiple times, as they generate
257 // a ton of code.
258 bool VisitBlockExpr(BlockExpr *E) { return true; }
259 bool VisitPredefinedExpr(PredefinedExpr *E) { return false; }
260 bool VisitCompoundLiteralExpr(CompoundLiteralExpr *E)
261 { return Visit(E->getInitializer()); }
262 bool VisitMemberExpr(MemberExpr *E) { return Visit(E->getBase()); }
263 bool VisitIntegerLiteral(IntegerLiteral *E) { return false; }
264 bool VisitFloatingLiteral(FloatingLiteral *E) { return false; }
265 bool VisitStringLiteral(StringLiteral *E) { return false; }
266 bool VisitCharacterLiteral(CharacterLiteral *E) { return false; }
267 bool VisitSizeOfAlignOfExpr(SizeOfAlignOfExpr *E) { return false; }
268 bool VisitArraySubscriptExpr(ArraySubscriptExpr *E)
Mike Stump980ca222009-10-29 20:48:09 +0000269 { return Visit(E->getLHS()) || Visit(E->getRHS()); }
Mike Stumpc4c90452009-10-27 22:09:17 +0000270 bool VisitChooseExpr(ChooseExpr *E)
271 { return Visit(E->getChosenSubExpr(Info.Ctx)); }
272 bool VisitCastExpr(CastExpr *E) { return Visit(E->getSubExpr()); }
273 bool VisitBinAssign(BinaryOperator *E) { return true; }
Mike Stump3f0147e2009-10-29 23:34:20 +0000274 bool VisitCompoundAssignOperator(BinaryOperator *E) { return true; }
Mike Stump980ca222009-10-29 20:48:09 +0000275 bool VisitBinaryOperator(BinaryOperator *E)
276 { return Visit(E->getLHS()) || Visit(E->getRHS()); }
Mike Stumpc4c90452009-10-27 22:09:17 +0000277 bool VisitUnaryPreInc(UnaryOperator *E) { return true; }
278 bool VisitUnaryPostInc(UnaryOperator *E) { return true; }
279 bool VisitUnaryPreDec(UnaryOperator *E) { return true; }
280 bool VisitUnaryPostDec(UnaryOperator *E) { return true; }
281 bool VisitUnaryDeref(UnaryOperator *E) {
Mike Stumpdf317bf2009-11-03 23:25:48 +0000282 if (Info.Ctx.getCanonicalType(E->getType()).isVolatileQualified())
Mike Stumpc4c90452009-10-27 22:09:17 +0000283 return true;
Mike Stump980ca222009-10-29 20:48:09 +0000284 return Visit(E->getSubExpr());
Mike Stumpc4c90452009-10-27 22:09:17 +0000285 }
286 bool VisitUnaryOperator(UnaryOperator *E) { return Visit(E->getSubExpr()); }
Chris Lattner363ff232010-04-13 17:34:23 +0000287
288 // Has side effects if any element does.
289 bool VisitInitListExpr(InitListExpr *E) {
290 for (unsigned i = 0, e = E->getNumInits(); i != e; ++i)
291 if (Visit(E->getInit(i))) return true;
292 return false;
293 }
Douglas Gregoree8aff02011-01-04 17:33:58 +0000294
295 bool VisitSizeOfPackExpr(SizeOfPackExpr *) { return false; }
Mike Stumpc4c90452009-10-27 22:09:17 +0000296};
297
Mike Stumpc4c90452009-10-27 22:09:17 +0000298} // end anonymous namespace
299
Eli Friedman4efaa272008-11-12 09:44:48 +0000300//===----------------------------------------------------------------------===//
301// LValue Evaluation
302//===----------------------------------------------------------------------===//
303namespace {
Benjamin Kramer770b4a82009-11-28 19:03:38 +0000304class LValueExprEvaluator
John McCallefdb83e2010-05-07 21:00:08 +0000305 : public StmtVisitor<LValueExprEvaluator, bool> {
Eli Friedman4efaa272008-11-12 09:44:48 +0000306 EvalInfo &Info;
John McCallefdb83e2010-05-07 21:00:08 +0000307 LValue &Result;
308
309 bool Success(Expr *E) {
310 Result.Base = E;
311 Result.Offset = CharUnits::Zero();
312 return true;
313 }
Eli Friedman4efaa272008-11-12 09:44:48 +0000314public:
Mike Stump1eb44332009-09-09 15:08:12 +0000315
John McCallefdb83e2010-05-07 21:00:08 +0000316 LValueExprEvaluator(EvalInfo &info, LValue &Result) :
317 Info(info), Result(Result) {}
Eli Friedman4efaa272008-11-12 09:44:48 +0000318
John McCallefdb83e2010-05-07 21:00:08 +0000319 bool VisitStmt(Stmt *S) {
320 return false;
Eli Friedman4efaa272008-11-12 09:44:48 +0000321 }
Douglas Gregor8ecdb652010-04-28 22:16:22 +0000322
John McCallefdb83e2010-05-07 21:00:08 +0000323 bool VisitParenExpr(ParenExpr *E) { return Visit(E->getSubExpr()); }
324 bool VisitDeclRefExpr(DeclRefExpr *E);
325 bool VisitPredefinedExpr(PredefinedExpr *E) { return Success(E); }
326 bool VisitCompoundLiteralExpr(CompoundLiteralExpr *E);
327 bool VisitMemberExpr(MemberExpr *E);
328 bool VisitStringLiteral(StringLiteral *E) { return Success(E); }
329 bool VisitObjCEncodeExpr(ObjCEncodeExpr *E) { return Success(E); }
330 bool VisitArraySubscriptExpr(ArraySubscriptExpr *E);
331 bool VisitUnaryDeref(UnaryOperator *E);
332 bool VisitUnaryExtension(const UnaryOperator *E)
Eli Friedmanba98d6b2009-03-23 04:56:01 +0000333 { return Visit(E->getSubExpr()); }
John McCallefdb83e2010-05-07 21:00:08 +0000334 bool VisitChooseExpr(const ChooseExpr *E)
Eli Friedmanba98d6b2009-03-23 04:56:01 +0000335 { return Visit(E->getChosenSubExpr(Info.Ctx)); }
Anders Carlsson26bc2202009-10-03 16:30:22 +0000336
John McCallefdb83e2010-05-07 21:00:08 +0000337 bool VisitCastExpr(CastExpr *E) {
Anders Carlsson26bc2202009-10-03 16:30:22 +0000338 switch (E->getCastKind()) {
339 default:
John McCallefdb83e2010-05-07 21:00:08 +0000340 return false;
Anders Carlsson26bc2202009-10-03 16:30:22 +0000341
John McCall2de56d12010-08-25 11:45:40 +0000342 case CK_NoOp:
Anders Carlsson26bc2202009-10-03 16:30:22 +0000343 return Visit(E->getSubExpr());
344 }
345 }
Eli Friedmanba98d6b2009-03-23 04:56:01 +0000346 // FIXME: Missing: __real__, __imag__
Eli Friedman4efaa272008-11-12 09:44:48 +0000347};
348} // end anonymous namespace
349
John McCallefdb83e2010-05-07 21:00:08 +0000350static bool EvaluateLValue(const Expr* E, LValue& Result, EvalInfo &Info) {
351 return LValueExprEvaluator(Info, Result).Visit(const_cast<Expr*>(E));
Eli Friedman4efaa272008-11-12 09:44:48 +0000352}
353
John McCallefdb83e2010-05-07 21:00:08 +0000354bool LValueExprEvaluator::VisitDeclRefExpr(DeclRefExpr *E) {
Eli Friedman50c39ea2009-05-27 06:04:58 +0000355 if (isa<FunctionDecl>(E->getDecl())) {
John McCallefdb83e2010-05-07 21:00:08 +0000356 return Success(E);
Eli Friedman50c39ea2009-05-27 06:04:58 +0000357 } else if (VarDecl* VD = dyn_cast<VarDecl>(E->getDecl())) {
358 if (!VD->getType()->isReferenceType())
John McCallefdb83e2010-05-07 21:00:08 +0000359 return Success(E);
Chandler Carruth761c94e2010-05-16 09:32:51 +0000360 // Reference parameters can refer to anything even if they have an
361 // "initializer" in the form of a default argument.
362 if (isa<ParmVarDecl>(VD))
363 return false;
Eli Friedmand933a012009-08-29 19:09:59 +0000364 // FIXME: Check whether VD might be overridden!
Sebastian Redl31310a22010-02-01 20:16:42 +0000365 if (const Expr *Init = VD->getAnyInitializer())
Douglas Gregorcf3293e2009-11-01 20:32:48 +0000366 return Visit(const_cast<Expr *>(Init));
Eli Friedman50c39ea2009-05-27 06:04:58 +0000367 }
368
John McCallefdb83e2010-05-07 21:00:08 +0000369 return false;
Anders Carlsson35873c42008-11-24 04:41:22 +0000370}
371
John McCallefdb83e2010-05-07 21:00:08 +0000372bool LValueExprEvaluator::VisitCompoundLiteralExpr(CompoundLiteralExpr *E) {
John McCallefdb83e2010-05-07 21:00:08 +0000373 return Success(E);
Eli Friedman4efaa272008-11-12 09:44:48 +0000374}
375
John McCallefdb83e2010-05-07 21:00:08 +0000376bool LValueExprEvaluator::VisitMemberExpr(MemberExpr *E) {
Eli Friedman4efaa272008-11-12 09:44:48 +0000377 QualType Ty;
378 if (E->isArrow()) {
John McCallefdb83e2010-05-07 21:00:08 +0000379 if (!EvaluatePointer(E->getBase(), Result, Info))
380 return false;
Ted Kremenek6217b802009-07-29 21:53:49 +0000381 Ty = E->getBase()->getType()->getAs<PointerType>()->getPointeeType();
Eli Friedman4efaa272008-11-12 09:44:48 +0000382 } else {
John McCallefdb83e2010-05-07 21:00:08 +0000383 if (!Visit(E->getBase()))
384 return false;
Eli Friedman4efaa272008-11-12 09:44:48 +0000385 Ty = E->getBase()->getType();
386 }
387
Ted Kremenek6217b802009-07-29 21:53:49 +0000388 RecordDecl *RD = Ty->getAs<RecordType>()->getDecl();
Eli Friedman4efaa272008-11-12 09:44:48 +0000389 const ASTRecordLayout &RL = Info.Ctx.getASTRecordLayout(RD);
Douglas Gregor86f19402008-12-20 23:49:58 +0000390
391 FieldDecl *FD = dyn_cast<FieldDecl>(E->getMemberDecl());
392 if (!FD) // FIXME: deal with other kinds of member expressions
John McCallefdb83e2010-05-07 21:00:08 +0000393 return false;
Eli Friedman2be58612009-05-30 21:09:44 +0000394
395 if (FD->getType()->isReferenceType())
John McCallefdb83e2010-05-07 21:00:08 +0000396 return false;
Eli Friedman2be58612009-05-30 21:09:44 +0000397
Eli Friedman4efaa272008-11-12 09:44:48 +0000398 // FIXME: This is linear time.
Douglas Gregor44b43212008-12-11 16:49:14 +0000399 unsigned i = 0;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000400 for (RecordDecl::field_iterator Field = RD->field_begin(),
401 FieldEnd = RD->field_end();
Douglas Gregor44b43212008-12-11 16:49:14 +0000402 Field != FieldEnd; (void)++Field, ++i) {
403 if (*Field == FD)
Eli Friedman4efaa272008-11-12 09:44:48 +0000404 break;
405 }
406
Ken Dyckfb1e3bc2011-01-18 01:56:16 +0000407 Result.Offset += Info.Ctx.toCharUnitsFromBits(RL.getFieldOffset(i));
John McCallefdb83e2010-05-07 21:00:08 +0000408 return true;
Eli Friedman4efaa272008-11-12 09:44:48 +0000409}
410
John McCallefdb83e2010-05-07 21:00:08 +0000411bool LValueExprEvaluator::VisitArraySubscriptExpr(ArraySubscriptExpr *E) {
Anders Carlsson3068d112008-11-16 19:01:22 +0000412 if (!EvaluatePointer(E->getBase(), Result, Info))
John McCallefdb83e2010-05-07 21:00:08 +0000413 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000414
Anders Carlsson3068d112008-11-16 19:01:22 +0000415 APSInt Index;
416 if (!EvaluateInteger(E->getIdx(), Index, Info))
John McCallefdb83e2010-05-07 21:00:08 +0000417 return false;
Anders Carlsson3068d112008-11-16 19:01:22 +0000418
Ken Dyck199c3d62010-01-11 17:06:35 +0000419 CharUnits ElementSize = Info.Ctx.getTypeSizeInChars(E->getType());
John McCallefdb83e2010-05-07 21:00:08 +0000420 Result.Offset += Index.getSExtValue() * ElementSize;
421 return true;
Anders Carlsson3068d112008-11-16 19:01:22 +0000422}
Eli Friedman4efaa272008-11-12 09:44:48 +0000423
John McCallefdb83e2010-05-07 21:00:08 +0000424bool LValueExprEvaluator::VisitUnaryDeref(UnaryOperator *E) {
425 return EvaluatePointer(E->getSubExpr(), Result, Info);
Eli Friedmane8761c82009-02-20 01:57:15 +0000426}
427
Eli Friedman4efaa272008-11-12 09:44:48 +0000428//===----------------------------------------------------------------------===//
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000429// Pointer Evaluation
430//===----------------------------------------------------------------------===//
431
Anders Carlssonc754aa62008-07-08 05:13:58 +0000432namespace {
Benjamin Kramer770b4a82009-11-28 19:03:38 +0000433class PointerExprEvaluator
John McCallefdb83e2010-05-07 21:00:08 +0000434 : public StmtVisitor<PointerExprEvaluator, bool> {
Chris Lattner87eae5e2008-07-11 22:52:41 +0000435 EvalInfo &Info;
John McCallefdb83e2010-05-07 21:00:08 +0000436 LValue &Result;
437
438 bool Success(Expr *E) {
439 Result.Base = E;
440 Result.Offset = CharUnits::Zero();
441 return true;
442 }
Anders Carlsson2bad1682008-07-08 14:30:00 +0000443public:
Mike Stump1eb44332009-09-09 15:08:12 +0000444
John McCallefdb83e2010-05-07 21:00:08 +0000445 PointerExprEvaluator(EvalInfo &info, LValue &Result)
446 : Info(info), Result(Result) {}
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000447
John McCallefdb83e2010-05-07 21:00:08 +0000448 bool VisitStmt(Stmt *S) {
449 return false;
Anders Carlsson2bad1682008-07-08 14:30:00 +0000450 }
451
John McCallefdb83e2010-05-07 21:00:08 +0000452 bool VisitParenExpr(ParenExpr *E) { return Visit(E->getSubExpr()); }
Anders Carlsson2bad1682008-07-08 14:30:00 +0000453
John McCallefdb83e2010-05-07 21:00:08 +0000454 bool VisitBinaryOperator(const BinaryOperator *E);
455 bool VisitCastExpr(CastExpr* E);
456 bool VisitUnaryExtension(const UnaryOperator *E)
Eli Friedman2217c872009-02-22 11:46:18 +0000457 { return Visit(E->getSubExpr()); }
John McCallefdb83e2010-05-07 21:00:08 +0000458 bool VisitUnaryAddrOf(const UnaryOperator *E);
459 bool VisitObjCStringLiteral(ObjCStringLiteral *E)
460 { return Success(E); }
461 bool VisitAddrLabelExpr(AddrLabelExpr *E)
462 { return Success(E); }
463 bool VisitCallExpr(CallExpr *E);
464 bool VisitBlockExpr(BlockExpr *E) {
Mike Stumpb83d2872009-02-19 22:01:56 +0000465 if (!E->hasBlockDeclRefExprs())
John McCallefdb83e2010-05-07 21:00:08 +0000466 return Success(E);
467 return false;
Mike Stumpb83d2872009-02-19 22:01:56 +0000468 }
John McCallefdb83e2010-05-07 21:00:08 +0000469 bool VisitImplicitValueInitExpr(ImplicitValueInitExpr *E)
470 { return Success((Expr*)0); }
471 bool VisitConditionalOperator(ConditionalOperator *E);
472 bool VisitChooseExpr(ChooseExpr *E)
Sebastian Redl6e8ed162009-05-10 18:38:11 +0000473 { return Visit(E->getChosenSubExpr(Info.Ctx)); }
John McCallefdb83e2010-05-07 21:00:08 +0000474 bool VisitCXXNullPtrLiteralExpr(CXXNullPtrLiteralExpr *E)
475 { return Success((Expr*)0); }
Eli Friedmanba98d6b2009-03-23 04:56:01 +0000476 // FIXME: Missing: @protocol, @selector
Anders Carlsson650c92f2008-07-08 15:34:11 +0000477};
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000478} // end anonymous namespace
Anders Carlsson650c92f2008-07-08 15:34:11 +0000479
John McCallefdb83e2010-05-07 21:00:08 +0000480static bool EvaluatePointer(const Expr* E, LValue& Result, EvalInfo &Info) {
John McCall7db7acb2010-05-07 05:46:35 +0000481 assert(E->getType()->hasPointerRepresentation());
John McCallefdb83e2010-05-07 21:00:08 +0000482 return PointerExprEvaluator(Info, Result).Visit(const_cast<Expr*>(E));
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000483}
484
John McCallefdb83e2010-05-07 21:00:08 +0000485bool PointerExprEvaluator::VisitBinaryOperator(const BinaryOperator *E) {
John McCall2de56d12010-08-25 11:45:40 +0000486 if (E->getOpcode() != BO_Add &&
487 E->getOpcode() != BO_Sub)
John McCallefdb83e2010-05-07 21:00:08 +0000488 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000489
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000490 const Expr *PExp = E->getLHS();
491 const Expr *IExp = E->getRHS();
492 if (IExp->getType()->isPointerType())
493 std::swap(PExp, IExp);
Mike Stump1eb44332009-09-09 15:08:12 +0000494
John McCallefdb83e2010-05-07 21:00:08 +0000495 if (!EvaluatePointer(PExp, Result, Info))
496 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000497
John McCallefdb83e2010-05-07 21:00:08 +0000498 llvm::APSInt Offset;
499 if (!EvaluateInteger(IExp, Offset, Info))
500 return false;
501 int64_t AdditionalOffset
502 = Offset.isSigned() ? Offset.getSExtValue()
503 : static_cast<int64_t>(Offset.getZExtValue());
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000504
Daniel Dunbare0cdb4e2010-03-20 05:53:45 +0000505 // Compute the new offset in the appropriate width.
506
507 QualType PointeeType =
508 PExp->getType()->getAs<PointerType>()->getPointeeType();
John McCallefdb83e2010-05-07 21:00:08 +0000509 CharUnits SizeOfPointee;
Mike Stump1eb44332009-09-09 15:08:12 +0000510
Anders Carlsson4d4c50d2009-02-19 04:55:58 +0000511 // Explicitly handle GNU void* and function pointer arithmetic extensions.
512 if (PointeeType->isVoidType() || PointeeType->isFunctionType())
John McCallefdb83e2010-05-07 21:00:08 +0000513 SizeOfPointee = CharUnits::One();
Anders Carlsson4d4c50d2009-02-19 04:55:58 +0000514 else
John McCallefdb83e2010-05-07 21:00:08 +0000515 SizeOfPointee = Info.Ctx.getTypeSizeInChars(PointeeType);
Eli Friedman4efaa272008-11-12 09:44:48 +0000516
John McCall2de56d12010-08-25 11:45:40 +0000517 if (E->getOpcode() == BO_Add)
John McCallefdb83e2010-05-07 21:00:08 +0000518 Result.Offset += AdditionalOffset * SizeOfPointee;
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000519 else
John McCallefdb83e2010-05-07 21:00:08 +0000520 Result.Offset -= AdditionalOffset * SizeOfPointee;
Eli Friedman4efaa272008-11-12 09:44:48 +0000521
John McCallefdb83e2010-05-07 21:00:08 +0000522 return true;
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000523}
Eli Friedman4efaa272008-11-12 09:44:48 +0000524
John McCallefdb83e2010-05-07 21:00:08 +0000525bool PointerExprEvaluator::VisitUnaryAddrOf(const UnaryOperator *E) {
526 return EvaluateLValue(E->getSubExpr(), Result, Info);
Eli Friedman4efaa272008-11-12 09:44:48 +0000527}
Mike Stump1eb44332009-09-09 15:08:12 +0000528
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000529
John McCallefdb83e2010-05-07 21:00:08 +0000530bool PointerExprEvaluator::VisitCastExpr(CastExpr* E) {
Eli Friedman09a8a0e2009-12-27 05:43:15 +0000531 Expr* SubExpr = E->getSubExpr();
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000532
Eli Friedman09a8a0e2009-12-27 05:43:15 +0000533 switch (E->getCastKind()) {
534 default:
535 break;
536
John McCall2de56d12010-08-25 11:45:40 +0000537 case CK_NoOp:
538 case CK_BitCast:
539 case CK_LValueBitCast:
540 case CK_AnyPointerToObjCPointerCast:
541 case CK_AnyPointerToBlockPointerCast:
Eli Friedman09a8a0e2009-12-27 05:43:15 +0000542 return Visit(SubExpr);
543
Anders Carlsson5c5a7642010-10-31 20:41:46 +0000544 case CK_DerivedToBase:
545 case CK_UncheckedDerivedToBase: {
546 LValue BaseLV;
547 if (!EvaluatePointer(E->getSubExpr(), BaseLV, Info))
548 return false;
549
550 // Now figure out the necessary offset to add to the baseLV to get from
551 // the derived class to the base class.
552 uint64_t Offset = 0;
553
554 QualType Ty = E->getSubExpr()->getType();
555 const CXXRecordDecl *DerivedDecl =
556 Ty->getAs<PointerType>()->getPointeeType()->getAsCXXRecordDecl();
557
558 for (CastExpr::path_const_iterator PathI = E->path_begin(),
559 PathE = E->path_end(); PathI != PathE; ++PathI) {
560 const CXXBaseSpecifier *Base = *PathI;
561
562 // FIXME: If the base is virtual, we'd need to determine the type of the
563 // most derived class and we don't support that right now.
564 if (Base->isVirtual())
565 return false;
566
567 const CXXRecordDecl *BaseDecl = Base->getType()->getAsCXXRecordDecl();
568 const ASTRecordLayout &Layout = Info.Ctx.getASTRecordLayout(DerivedDecl);
569
Anders Carlssona14f5972010-10-31 23:22:37 +0000570 Offset += Layout.getBaseClassOffsetInBits(BaseDecl);
Anders Carlsson5c5a7642010-10-31 20:41:46 +0000571 DerivedDecl = BaseDecl;
572 }
573
574 Result.Base = BaseLV.getLValueBase();
575 Result.Offset = BaseLV.getLValueOffset() +
Ken Dyckfb1e3bc2011-01-18 01:56:16 +0000576 Info.Ctx.toCharUnitsFromBits(Offset);
Anders Carlsson5c5a7642010-10-31 20:41:46 +0000577 return true;
578 }
579
John McCall404cd162010-11-13 01:35:44 +0000580 case CK_NullToPointer: {
581 Result.Base = 0;
582 Result.Offset = CharUnits::Zero();
583 return true;
584 }
585
John McCall2de56d12010-08-25 11:45:40 +0000586 case CK_IntegralToPointer: {
John McCallefdb83e2010-05-07 21:00:08 +0000587 APValue Value;
588 if (!EvaluateIntegerOrLValue(SubExpr, Value, Info))
Eli Friedman09a8a0e2009-12-27 05:43:15 +0000589 break;
Daniel Dunbar69ab26a2009-02-20 18:22:23 +0000590
John McCallefdb83e2010-05-07 21:00:08 +0000591 if (Value.isInt()) {
Jay Foad9f71a8f2010-12-07 08:25:34 +0000592 Value.getInt() = Value.getInt().extOrTrunc((unsigned)Info.Ctx.getTypeSize(E->getType()));
John McCallefdb83e2010-05-07 21:00:08 +0000593 Result.Base = 0;
594 Result.Offset = CharUnits::fromQuantity(Value.getInt().getZExtValue());
595 return true;
596 } else {
597 // Cast is of an lvalue, no need to change value.
598 Result.Base = Value.getLValueBase();
599 Result.Offset = Value.getLValueOffset();
600 return true;
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000601 }
602 }
John McCall2de56d12010-08-25 11:45:40 +0000603 case CK_ArrayToPointerDecay:
604 case CK_FunctionToPointerDecay:
John McCallefdb83e2010-05-07 21:00:08 +0000605 return EvaluateLValue(SubExpr, Result, Info);
Eli Friedman4efaa272008-11-12 09:44:48 +0000606 }
607
John McCallefdb83e2010-05-07 21:00:08 +0000608 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000609}
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000610
John McCallefdb83e2010-05-07 21:00:08 +0000611bool PointerExprEvaluator::VisitCallExpr(CallExpr *E) {
Mike Stump1eb44332009-09-09 15:08:12 +0000612 if (E->isBuiltinCall(Info.Ctx) ==
David Chisnall0d13f6f2010-01-23 02:40:42 +0000613 Builtin::BI__builtin___CFStringMakeConstantString ||
614 E->isBuiltinCall(Info.Ctx) ==
615 Builtin::BI__builtin___NSStringMakeConstantString)
John McCallefdb83e2010-05-07 21:00:08 +0000616 return Success(E);
617 return false;
Eli Friedman3941b182009-01-25 01:54:01 +0000618}
619
John McCallefdb83e2010-05-07 21:00:08 +0000620bool PointerExprEvaluator::VisitConditionalOperator(ConditionalOperator *E) {
Eli Friedman4efaa272008-11-12 09:44:48 +0000621 bool BoolResult;
622 if (!HandleConversionToBool(E->getCond(), BoolResult, Info))
John McCallefdb83e2010-05-07 21:00:08 +0000623 return false;
Eli Friedman4efaa272008-11-12 09:44:48 +0000624
625 Expr* EvalExpr = BoolResult ? E->getTrueExpr() : E->getFalseExpr();
John McCallefdb83e2010-05-07 21:00:08 +0000626 return Visit(EvalExpr);
Eli Friedman4efaa272008-11-12 09:44:48 +0000627}
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000628
629//===----------------------------------------------------------------------===//
Nate Begeman59b5da62009-01-18 03:20:47 +0000630// Vector Evaluation
631//===----------------------------------------------------------------------===//
632
633namespace {
Benjamin Kramer770b4a82009-11-28 19:03:38 +0000634 class VectorExprEvaluator
Nate Begeman59b5da62009-01-18 03:20:47 +0000635 : public StmtVisitor<VectorExprEvaluator, APValue> {
636 EvalInfo &Info;
Eli Friedman91110ee2009-02-23 04:23:56 +0000637 APValue GetZeroVector(QualType VecType);
Nate Begeman59b5da62009-01-18 03:20:47 +0000638 public:
Mike Stump1eb44332009-09-09 15:08:12 +0000639
Nate Begeman59b5da62009-01-18 03:20:47 +0000640 VectorExprEvaluator(EvalInfo &info) : Info(info) {}
Mike Stump1eb44332009-09-09 15:08:12 +0000641
Nate Begeman59b5da62009-01-18 03:20:47 +0000642 APValue VisitStmt(Stmt *S) {
643 return APValue();
644 }
Mike Stump1eb44332009-09-09 15:08:12 +0000645
Eli Friedman91110ee2009-02-23 04:23:56 +0000646 APValue VisitParenExpr(ParenExpr *E)
647 { return Visit(E->getSubExpr()); }
648 APValue VisitUnaryExtension(const UnaryOperator *E)
649 { return Visit(E->getSubExpr()); }
650 APValue VisitUnaryPlus(const UnaryOperator *E)
651 { return Visit(E->getSubExpr()); }
652 APValue VisitUnaryReal(const UnaryOperator *E)
653 { return Visit(E->getSubExpr()); }
654 APValue VisitImplicitValueInitExpr(const ImplicitValueInitExpr *E)
655 { return GetZeroVector(E->getType()); }
Nate Begeman59b5da62009-01-18 03:20:47 +0000656 APValue VisitCastExpr(const CastExpr* E);
657 APValue VisitCompoundLiteralExpr(const CompoundLiteralExpr *E);
658 APValue VisitInitListExpr(const InitListExpr *E);
Eli Friedman91110ee2009-02-23 04:23:56 +0000659 APValue VisitConditionalOperator(const ConditionalOperator *E);
Eli Friedmanba98d6b2009-03-23 04:56:01 +0000660 APValue VisitChooseExpr(const ChooseExpr *E)
661 { return Visit(E->getChosenSubExpr(Info.Ctx)); }
Eli Friedman91110ee2009-02-23 04:23:56 +0000662 APValue VisitUnaryImag(const UnaryOperator *E);
663 // FIXME: Missing: unary -, unary ~, binary add/sub/mul/div,
Eli Friedman2217c872009-02-22 11:46:18 +0000664 // binary comparisons, binary and/or/xor,
Eli Friedman91110ee2009-02-23 04:23:56 +0000665 // shufflevector, ExtVectorElementExpr
666 // (Note that these require implementing conversions
667 // between vector types.)
Nate Begeman59b5da62009-01-18 03:20:47 +0000668 };
669} // end anonymous namespace
670
671static bool EvaluateVector(const Expr* E, APValue& Result, EvalInfo &Info) {
672 if (!E->getType()->isVectorType())
673 return false;
674 Result = VectorExprEvaluator(Info).Visit(const_cast<Expr*>(E));
675 return !Result.isUninit();
676}
677
678APValue VectorExprEvaluator::VisitCastExpr(const CastExpr* E) {
John McCall183700f2009-09-21 23:43:11 +0000679 const VectorType *VTy = E->getType()->getAs<VectorType>();
Nate Begemanc0b8b192009-07-01 07:50:47 +0000680 QualType EltTy = VTy->getElementType();
681 unsigned NElts = VTy->getNumElements();
682 unsigned EltWidth = Info.Ctx.getTypeSize(EltTy);
Mike Stump1eb44332009-09-09 15:08:12 +0000683
Nate Begeman59b5da62009-01-18 03:20:47 +0000684 const Expr* SE = E->getSubExpr();
Nate Begemane8c9e922009-06-26 18:22:18 +0000685 QualType SETy = SE->getType();
686 APValue Result = APValue();
Nate Begeman59b5da62009-01-18 03:20:47 +0000687
Nate Begemane8c9e922009-06-26 18:22:18 +0000688 // Check for vector->vector bitcast and scalar->vector splat.
689 if (SETy->isVectorType()) {
Nate Begeman59b5da62009-01-18 03:20:47 +0000690 return this->Visit(const_cast<Expr*>(SE));
Nate Begemane8c9e922009-06-26 18:22:18 +0000691 } else if (SETy->isIntegerType()) {
692 APSInt IntResult;
Daniel Dunbard906dc72009-07-01 20:37:45 +0000693 if (!EvaluateInteger(SE, IntResult, Info))
694 return APValue();
695 Result = APValue(IntResult);
Nate Begemane8c9e922009-06-26 18:22:18 +0000696 } else if (SETy->isRealFloatingType()) {
697 APFloat F(0.0);
Daniel Dunbard906dc72009-07-01 20:37:45 +0000698 if (!EvaluateFloat(SE, F, Info))
699 return APValue();
700 Result = APValue(F);
701 } else
Nate Begemanc0b8b192009-07-01 07:50:47 +0000702 return APValue();
Nate Begeman59b5da62009-01-18 03:20:47 +0000703
Nate Begemanc0b8b192009-07-01 07:50:47 +0000704 // For casts of a scalar to ExtVector, convert the scalar to the element type
705 // and splat it to all elements.
706 if (E->getType()->isExtVectorType()) {
707 if (EltTy->isIntegerType() && Result.isInt())
708 Result = APValue(HandleIntToIntCast(EltTy, SETy, Result.getInt(),
709 Info.Ctx));
710 else if (EltTy->isIntegerType())
711 Result = APValue(HandleFloatToIntCast(EltTy, SETy, Result.getFloat(),
712 Info.Ctx));
713 else if (EltTy->isRealFloatingType() && Result.isInt())
714 Result = APValue(HandleIntToFloatCast(EltTy, SETy, Result.getInt(),
715 Info.Ctx));
716 else if (EltTy->isRealFloatingType())
717 Result = APValue(HandleFloatToFloatCast(EltTy, SETy, Result.getFloat(),
718 Info.Ctx));
719 else
720 return APValue();
721
722 // Splat and create vector APValue.
723 llvm::SmallVector<APValue, 4> Elts(NElts, Result);
724 return APValue(&Elts[0], Elts.size());
Nate Begemane8c9e922009-06-26 18:22:18 +0000725 }
Nate Begemanc0b8b192009-07-01 07:50:47 +0000726
727 // For casts of a scalar to regular gcc-style vector type, bitcast the scalar
728 // to the vector. To construct the APValue vector initializer, bitcast the
729 // initializing value to an APInt, and shift out the bits pertaining to each
730 // element.
731 APSInt Init;
732 Init = Result.isInt() ? Result.getInt() : Result.getFloat().bitcastToAPInt();
Mike Stump1eb44332009-09-09 15:08:12 +0000733
Nate Begemanc0b8b192009-07-01 07:50:47 +0000734 llvm::SmallVector<APValue, 4> Elts;
735 for (unsigned i = 0; i != NElts; ++i) {
Jay Foad9f71a8f2010-12-07 08:25:34 +0000736 APSInt Tmp = Init.extOrTrunc(EltWidth);
Mike Stump1eb44332009-09-09 15:08:12 +0000737
Nate Begemanc0b8b192009-07-01 07:50:47 +0000738 if (EltTy->isIntegerType())
739 Elts.push_back(APValue(Tmp));
740 else if (EltTy->isRealFloatingType())
741 Elts.push_back(APValue(APFloat(Tmp)));
742 else
743 return APValue();
744
745 Init >>= EltWidth;
746 }
747 return APValue(&Elts[0], Elts.size());
Nate Begeman59b5da62009-01-18 03:20:47 +0000748}
749
Mike Stump1eb44332009-09-09 15:08:12 +0000750APValue
Nate Begeman59b5da62009-01-18 03:20:47 +0000751VectorExprEvaluator::VisitCompoundLiteralExpr(const CompoundLiteralExpr *E) {
752 return this->Visit(const_cast<Expr*>(E->getInitializer()));
753}
754
Mike Stump1eb44332009-09-09 15:08:12 +0000755APValue
Nate Begeman59b5da62009-01-18 03:20:47 +0000756VectorExprEvaluator::VisitInitListExpr(const InitListExpr *E) {
John McCall183700f2009-09-21 23:43:11 +0000757 const VectorType *VT = E->getType()->getAs<VectorType>();
Nate Begeman59b5da62009-01-18 03:20:47 +0000758 unsigned NumInits = E->getNumInits();
Eli Friedman91110ee2009-02-23 04:23:56 +0000759 unsigned NumElements = VT->getNumElements();
Mike Stump1eb44332009-09-09 15:08:12 +0000760
Nate Begeman59b5da62009-01-18 03:20:47 +0000761 QualType EltTy = VT->getElementType();
762 llvm::SmallVector<APValue, 4> Elements;
763
John McCalla7d6c222010-06-11 17:54:15 +0000764 // If a vector is initialized with a single element, that value
765 // becomes every element of the vector, not just the first.
766 // This is the behavior described in the IBM AltiVec documentation.
767 if (NumInits == 1) {
768 APValue InitValue;
Nate Begeman59b5da62009-01-18 03:20:47 +0000769 if (EltTy->isIntegerType()) {
770 llvm::APSInt sInt(32);
John McCalla7d6c222010-06-11 17:54:15 +0000771 if (!EvaluateInteger(E->getInit(0), sInt, Info))
772 return APValue();
773 InitValue = APValue(sInt);
Nate Begeman59b5da62009-01-18 03:20:47 +0000774 } else {
775 llvm::APFloat f(0.0);
John McCalla7d6c222010-06-11 17:54:15 +0000776 if (!EvaluateFloat(E->getInit(0), f, Info))
777 return APValue();
778 InitValue = APValue(f);
779 }
780 for (unsigned i = 0; i < NumElements; i++) {
781 Elements.push_back(InitValue);
782 }
783 } else {
784 for (unsigned i = 0; i < NumElements; i++) {
785 if (EltTy->isIntegerType()) {
786 llvm::APSInt sInt(32);
787 if (i < NumInits) {
788 if (!EvaluateInteger(E->getInit(i), sInt, Info))
789 return APValue();
790 } else {
791 sInt = Info.Ctx.MakeIntValue(0, EltTy);
792 }
793 Elements.push_back(APValue(sInt));
Eli Friedman91110ee2009-02-23 04:23:56 +0000794 } else {
John McCalla7d6c222010-06-11 17:54:15 +0000795 llvm::APFloat f(0.0);
796 if (i < NumInits) {
797 if (!EvaluateFloat(E->getInit(i), f, Info))
798 return APValue();
799 } else {
800 f = APFloat::getZero(Info.Ctx.getFloatTypeSemantics(EltTy));
801 }
802 Elements.push_back(APValue(f));
Eli Friedman91110ee2009-02-23 04:23:56 +0000803 }
Nate Begeman59b5da62009-01-18 03:20:47 +0000804 }
805 }
806 return APValue(&Elements[0], Elements.size());
807}
808
Mike Stump1eb44332009-09-09 15:08:12 +0000809APValue
Eli Friedman91110ee2009-02-23 04:23:56 +0000810VectorExprEvaluator::GetZeroVector(QualType T) {
John McCall183700f2009-09-21 23:43:11 +0000811 const VectorType *VT = T->getAs<VectorType>();
Eli Friedman91110ee2009-02-23 04:23:56 +0000812 QualType EltTy = VT->getElementType();
813 APValue ZeroElement;
814 if (EltTy->isIntegerType())
815 ZeroElement = APValue(Info.Ctx.MakeIntValue(0, EltTy));
816 else
817 ZeroElement =
818 APValue(APFloat::getZero(Info.Ctx.getFloatTypeSemantics(EltTy)));
819
820 llvm::SmallVector<APValue, 4> Elements(VT->getNumElements(), ZeroElement);
821 return APValue(&Elements[0], Elements.size());
822}
823
824APValue VectorExprEvaluator::VisitConditionalOperator(const ConditionalOperator *E) {
825 bool BoolResult;
826 if (!HandleConversionToBool(E->getCond(), BoolResult, Info))
827 return APValue();
828
829 Expr* EvalExpr = BoolResult ? E->getTrueExpr() : E->getFalseExpr();
830
831 APValue Result;
832 if (EvaluateVector(EvalExpr, Result, Info))
833 return Result;
834 return APValue();
835}
836
Eli Friedman91110ee2009-02-23 04:23:56 +0000837APValue VectorExprEvaluator::VisitUnaryImag(const UnaryOperator *E) {
838 if (!E->getSubExpr()->isEvaluatable(Info.Ctx))
839 Info.EvalResult.HasSideEffects = true;
840 return GetZeroVector(E->getType());
841}
842
Nate Begeman59b5da62009-01-18 03:20:47 +0000843//===----------------------------------------------------------------------===//
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000844// Integer Evaluation
845//===----------------------------------------------------------------------===//
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000846
847namespace {
Benjamin Kramer770b4a82009-11-28 19:03:38 +0000848class IntExprEvaluator
Chris Lattnerb542afe2008-07-11 19:10:17 +0000849 : public StmtVisitor<IntExprEvaluator, bool> {
Chris Lattner87eae5e2008-07-11 22:52:41 +0000850 EvalInfo &Info;
Daniel Dunbar30c37f42009-02-19 20:17:33 +0000851 APValue &Result;
Anders Carlssonc754aa62008-07-08 05:13:58 +0000852public:
Daniel Dunbar30c37f42009-02-19 20:17:33 +0000853 IntExprEvaluator(EvalInfo &info, APValue &result)
Chris Lattner87eae5e2008-07-11 22:52:41 +0000854 : Info(info), Result(result) {}
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000855
Daniel Dunbar3f7d9952009-02-19 18:37:50 +0000856 bool Success(const llvm::APSInt &SI, const Expr *E) {
Douglas Gregor2ade35e2010-06-16 00:17:44 +0000857 assert(E->getType()->isIntegralOrEnumerationType() &&
858 "Invalid evaluation result.");
Daniel Dunbar30c37f42009-02-19 20:17:33 +0000859 assert(SI.isSigned() == E->getType()->isSignedIntegerType() &&
Daniel Dunbar3f7d9952009-02-19 18:37:50 +0000860 "Invalid evaluation result.");
Daniel Dunbar30c37f42009-02-19 20:17:33 +0000861 assert(SI.getBitWidth() == Info.Ctx.getIntWidth(E->getType()) &&
Daniel Dunbar3f7d9952009-02-19 18:37:50 +0000862 "Invalid evaluation result.");
Daniel Dunbar30c37f42009-02-19 20:17:33 +0000863 Result = APValue(SI);
Daniel Dunbar3f7d9952009-02-19 18:37:50 +0000864 return true;
865 }
866
Daniel Dunbar131eb432009-02-19 09:06:44 +0000867 bool Success(const llvm::APInt &I, const Expr *E) {
Douglas Gregor2ade35e2010-06-16 00:17:44 +0000868 assert(E->getType()->isIntegralOrEnumerationType() &&
869 "Invalid evaluation result.");
Daniel Dunbar30c37f42009-02-19 20:17:33 +0000870 assert(I.getBitWidth() == Info.Ctx.getIntWidth(E->getType()) &&
Daniel Dunbar3f7d9952009-02-19 18:37:50 +0000871 "Invalid evaluation result.");
Daniel Dunbar30c37f42009-02-19 20:17:33 +0000872 Result = APValue(APSInt(I));
873 Result.getInt().setIsUnsigned(E->getType()->isUnsignedIntegerType());
Daniel Dunbar131eb432009-02-19 09:06:44 +0000874 return true;
875 }
876
877 bool Success(uint64_t Value, const Expr *E) {
Douglas Gregor2ade35e2010-06-16 00:17:44 +0000878 assert(E->getType()->isIntegralOrEnumerationType() &&
879 "Invalid evaluation result.");
Daniel Dunbar30c37f42009-02-19 20:17:33 +0000880 Result = APValue(Info.Ctx.MakeIntValue(Value, E->getType()));
Daniel Dunbar131eb432009-02-19 09:06:44 +0000881 return true;
882 }
883
Anders Carlsson82206e22008-11-30 18:14:57 +0000884 bool Error(SourceLocation L, diag::kind D, const Expr *E) {
Chris Lattner32fea9d2008-11-12 07:43:42 +0000885 // Take the first error.
Anders Carlsson54da0492008-11-30 16:38:33 +0000886 if (Info.EvalResult.Diag == 0) {
887 Info.EvalResult.DiagLoc = L;
888 Info.EvalResult.Diag = D;
Anders Carlsson82206e22008-11-30 18:14:57 +0000889 Info.EvalResult.DiagExpr = E;
Chris Lattner32fea9d2008-11-12 07:43:42 +0000890 }
Chris Lattner54176fd2008-07-12 00:14:42 +0000891 return false;
Chris Lattner7a767782008-07-11 19:24:49 +0000892 }
Mike Stump1eb44332009-09-09 15:08:12 +0000893
Anders Carlssonc754aa62008-07-08 05:13:58 +0000894 //===--------------------------------------------------------------------===//
895 // Visitor Methods
896 //===--------------------------------------------------------------------===//
Mike Stump1eb44332009-09-09 15:08:12 +0000897
Chris Lattner32fea9d2008-11-12 07:43:42 +0000898 bool VisitStmt(Stmt *) {
899 assert(0 && "This should be called on integers, stmts are not integers");
900 return false;
901 }
Mike Stump1eb44332009-09-09 15:08:12 +0000902
Chris Lattner32fea9d2008-11-12 07:43:42 +0000903 bool VisitExpr(Expr *E) {
Anders Carlsson0e8acbb2008-11-30 18:37:00 +0000904 return Error(E->getLocStart(), diag::note_invalid_subexpr_in_ice, E);
Anders Carlssonc754aa62008-07-08 05:13:58 +0000905 }
Mike Stump1eb44332009-09-09 15:08:12 +0000906
Chris Lattnerb542afe2008-07-11 19:10:17 +0000907 bool VisitParenExpr(ParenExpr *E) { return Visit(E->getSubExpr()); }
Anders Carlssonc754aa62008-07-08 05:13:58 +0000908
Chris Lattner4c4867e2008-07-12 00:38:25 +0000909 bool VisitIntegerLiteral(const IntegerLiteral *E) {
Daniel Dunbar131eb432009-02-19 09:06:44 +0000910 return Success(E->getValue(), E);
Chris Lattner4c4867e2008-07-12 00:38:25 +0000911 }
912 bool VisitCharacterLiteral(const CharacterLiteral *E) {
Daniel Dunbar131eb432009-02-19 09:06:44 +0000913 return Success(E->getValue(), E);
Chris Lattner4c4867e2008-07-12 00:38:25 +0000914 }
Eli Friedman04309752009-11-24 05:28:59 +0000915
916 bool CheckReferencedDecl(const Expr *E, const Decl *D);
917 bool VisitDeclRefExpr(const DeclRefExpr *E) {
918 return CheckReferencedDecl(E, E->getDecl());
919 }
920 bool VisitMemberExpr(const MemberExpr *E) {
921 if (CheckReferencedDecl(E, E->getMemberDecl())) {
922 // Conservatively assume a MemberExpr will have side-effects
923 Info.EvalResult.HasSideEffects = true;
924 return true;
925 }
926 return false;
927 }
928
Eli Friedmanc4a26382010-02-13 00:10:10 +0000929 bool VisitCallExpr(CallExpr *E);
Chris Lattnerb542afe2008-07-11 19:10:17 +0000930 bool VisitBinaryOperator(const BinaryOperator *E);
Douglas Gregor8ecdb652010-04-28 22:16:22 +0000931 bool VisitOffsetOfExpr(const OffsetOfExpr *E);
Chris Lattnerb542afe2008-07-11 19:10:17 +0000932 bool VisitUnaryOperator(const UnaryOperator *E);
Nuno Lopesca7c2ea2008-11-16 19:28:31 +0000933 bool VisitConditionalOperator(const ConditionalOperator *E);
Anders Carlsson06a36752008-07-08 05:49:43 +0000934
Daniel Dunbara2cfd342009-01-29 06:16:07 +0000935 bool VisitCastExpr(CastExpr* E);
Sebastian Redl05189992008-11-11 17:56:53 +0000936 bool VisitSizeOfAlignOfExpr(const SizeOfAlignOfExpr *E);
937
Anders Carlsson3068d112008-11-16 19:01:22 +0000938 bool VisitCXXBoolLiteralExpr(const CXXBoolLiteralExpr *E) {
Daniel Dunbar131eb432009-02-19 09:06:44 +0000939 return Success(E->getValue(), E);
Anders Carlsson3068d112008-11-16 19:01:22 +0000940 }
Mike Stump1eb44332009-09-09 15:08:12 +0000941
Anders Carlsson3f704562008-12-21 22:39:40 +0000942 bool VisitGNUNullExpr(const GNUNullExpr *E) {
Daniel Dunbar131eb432009-02-19 09:06:44 +0000943 return Success(0, E);
Anders Carlsson3f704562008-12-21 22:39:40 +0000944 }
Mike Stump1eb44332009-09-09 15:08:12 +0000945
Douglas Gregored8abf12010-07-08 06:14:04 +0000946 bool VisitCXXScalarValueInitExpr(const CXXScalarValueInitExpr *E) {
Daniel Dunbar131eb432009-02-19 09:06:44 +0000947 return Success(0, E);
Anders Carlsson3068d112008-11-16 19:01:22 +0000948 }
949
Eli Friedman664a1042009-02-27 04:45:43 +0000950 bool VisitImplicitValueInitExpr(const ImplicitValueInitExpr *E) {
951 return Success(0, E);
952 }
953
Sebastian Redl64b45f72009-01-05 20:52:13 +0000954 bool VisitUnaryTypeTraitExpr(const UnaryTypeTraitExpr *E) {
Sebastian Redl0dfd8482010-09-13 20:56:31 +0000955 return Success(E->getValue(), E);
Sebastian Redl64b45f72009-01-05 20:52:13 +0000956 }
957
Francois Pichet6ad6f282010-12-07 00:08:36 +0000958 bool VisitBinaryTypeTraitExpr(const BinaryTypeTraitExpr *E) {
959 return Success(E->getValue(), E);
960 }
961
Eli Friedmanba98d6b2009-03-23 04:56:01 +0000962 bool VisitChooseExpr(const ChooseExpr *E) {
963 return Visit(E->getChosenSubExpr(Info.Ctx));
964 }
965
Eli Friedman722c7172009-02-28 03:59:05 +0000966 bool VisitUnaryReal(const UnaryOperator *E);
Eli Friedman664a1042009-02-27 04:45:43 +0000967 bool VisitUnaryImag(const UnaryOperator *E);
968
Sebastian Redl295995c2010-09-10 20:55:47 +0000969 bool VisitCXXNoexceptExpr(const CXXNoexceptExpr *E);
Douglas Gregoree8aff02011-01-04 17:33:58 +0000970 bool VisitSizeOfPackExpr(const SizeOfPackExpr *E);
971
Chris Lattnerfcee0012008-07-11 21:24:13 +0000972private:
Ken Dyck8b752f12010-01-27 17:10:57 +0000973 CharUnits GetAlignOfExpr(const Expr *E);
974 CharUnits GetAlignOfType(QualType T);
John McCall42c8f872010-05-10 23:27:23 +0000975 static QualType GetObjectType(const Expr *E);
976 bool TryEvaluateBuiltinObjectSize(CallExpr *E);
Eli Friedman664a1042009-02-27 04:45:43 +0000977 // FIXME: Missing: array subscript of vector, member of vector
Anders Carlssona25ae3d2008-07-08 14:35:21 +0000978};
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000979} // end anonymous namespace
Anders Carlsson650c92f2008-07-08 15:34:11 +0000980
Daniel Dunbar69ab26a2009-02-20 18:22:23 +0000981static bool EvaluateIntegerOrLValue(const Expr* E, APValue &Result, EvalInfo &Info) {
Douglas Gregor2ade35e2010-06-16 00:17:44 +0000982 assert(E->getType()->isIntegralOrEnumerationType());
Daniel Dunbar69ab26a2009-02-20 18:22:23 +0000983 return IntExprEvaluator(Info, Result).Visit(const_cast<Expr*>(E));
984}
Daniel Dunbar30c37f42009-02-19 20:17:33 +0000985
Daniel Dunbar69ab26a2009-02-20 18:22:23 +0000986static bool EvaluateInteger(const Expr* E, APSInt &Result, EvalInfo &Info) {
Douglas Gregor2ade35e2010-06-16 00:17:44 +0000987 assert(E->getType()->isIntegralOrEnumerationType());
John McCall7db7acb2010-05-07 05:46:35 +0000988
Daniel Dunbar69ab26a2009-02-20 18:22:23 +0000989 APValue Val;
990 if (!EvaluateIntegerOrLValue(E, Val, Info) || !Val.isInt())
991 return false;
Daniel Dunbar30c37f42009-02-19 20:17:33 +0000992 Result = Val.getInt();
993 return true;
Anders Carlsson650c92f2008-07-08 15:34:11 +0000994}
Anders Carlsson650c92f2008-07-08 15:34:11 +0000995
Eli Friedman04309752009-11-24 05:28:59 +0000996bool IntExprEvaluator::CheckReferencedDecl(const Expr* E, const Decl* D) {
Chris Lattner4c4867e2008-07-12 00:38:25 +0000997 // Enums are integer constant exprs.
Eli Friedman29a7f332009-12-10 22:29:29 +0000998 if (const EnumConstantDecl *ECD = dyn_cast<EnumConstantDecl>(D))
999 return Success(ECD->getInitVal(), E);
Sebastian Redlb2bc62b2009-02-08 15:51:17 +00001000
1001 // In C++, const, non-volatile integers initialized with ICEs are ICEs.
Eli Friedmane1646da2009-03-30 23:39:01 +00001002 // In C, they can also be folded, although they are not ICEs.
Douglas Gregorcf3293e2009-11-01 20:32:48 +00001003 if (Info.Ctx.getCanonicalType(E->getType()).getCVRQualifiers()
1004 == Qualifiers::Const) {
Anders Carlssonf6b60252010-02-03 21:58:41 +00001005
1006 if (isa<ParmVarDecl>(D))
1007 return Error(E->getLocStart(), diag::note_invalid_subexpr_in_ice, E);
1008
Eli Friedman04309752009-11-24 05:28:59 +00001009 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
Sebastian Redl31310a22010-02-01 20:16:42 +00001010 if (const Expr *Init = VD->getAnyInitializer()) {
Eli Friedmanc0131182009-12-03 20:31:57 +00001011 if (APValue *V = VD->getEvaluatedValue()) {
1012 if (V->isInt())
1013 return Success(V->getInt(), E);
1014 return Error(E->getLocStart(), diag::note_invalid_subexpr_in_ice, E);
1015 }
1016
1017 if (VD->isEvaluatingValue())
1018 return Error(E->getLocStart(), diag::note_invalid_subexpr_in_ice, E);
1019
1020 VD->setEvaluatingValue();
1021
Eli Friedmana7dedf72010-09-06 00:10:32 +00001022 Expr::EvalResult EResult;
1023 if (Init->Evaluate(EResult, Info.Ctx) && !EResult.HasSideEffects &&
1024 EResult.Val.isInt()) {
Douglas Gregor78d15832009-05-26 18:54:04 +00001025 // Cache the evaluated value in the variable declaration.
Eli Friedmana7dedf72010-09-06 00:10:32 +00001026 Result = EResult.Val;
Eli Friedmanc0131182009-12-03 20:31:57 +00001027 VD->setEvaluatedValue(Result);
Douglas Gregor78d15832009-05-26 18:54:04 +00001028 return true;
1029 }
1030
Eli Friedmanc0131182009-12-03 20:31:57 +00001031 VD->setEvaluatedValue(APValue());
Douglas Gregor78d15832009-05-26 18:54:04 +00001032 }
Sebastian Redlb2bc62b2009-02-08 15:51:17 +00001033 }
1034 }
1035
Chris Lattner4c4867e2008-07-12 00:38:25 +00001036 // Otherwise, random variable references are not constants.
Anders Carlsson0e8acbb2008-11-30 18:37:00 +00001037 return Error(E->getLocStart(), diag::note_invalid_subexpr_in_ice, E);
Chris Lattner4c4867e2008-07-12 00:38:25 +00001038}
1039
Chris Lattnera4d55d82008-10-06 06:40:35 +00001040/// EvaluateBuiltinClassifyType - Evaluate __builtin_classify_type the same way
1041/// as GCC.
1042static int EvaluateBuiltinClassifyType(const CallExpr *E) {
1043 // The following enum mimics the values returned by GCC.
Sebastian Redl7c80bd62009-03-16 23:22:08 +00001044 // FIXME: Does GCC differ between lvalue and rvalue references here?
Chris Lattnera4d55d82008-10-06 06:40:35 +00001045 enum gcc_type_class {
1046 no_type_class = -1,
1047 void_type_class, integer_type_class, char_type_class,
1048 enumeral_type_class, boolean_type_class,
1049 pointer_type_class, reference_type_class, offset_type_class,
1050 real_type_class, complex_type_class,
1051 function_type_class, method_type_class,
1052 record_type_class, union_type_class,
1053 array_type_class, string_type_class,
1054 lang_type_class
1055 };
Mike Stump1eb44332009-09-09 15:08:12 +00001056
1057 // If no argument was supplied, default to "no_type_class". This isn't
Chris Lattnera4d55d82008-10-06 06:40:35 +00001058 // ideal, however it is what gcc does.
1059 if (E->getNumArgs() == 0)
1060 return no_type_class;
Mike Stump1eb44332009-09-09 15:08:12 +00001061
Chris Lattnera4d55d82008-10-06 06:40:35 +00001062 QualType ArgTy = E->getArg(0)->getType();
1063 if (ArgTy->isVoidType())
1064 return void_type_class;
1065 else if (ArgTy->isEnumeralType())
1066 return enumeral_type_class;
1067 else if (ArgTy->isBooleanType())
1068 return boolean_type_class;
1069 else if (ArgTy->isCharType())
1070 return string_type_class; // gcc doesn't appear to use char_type_class
1071 else if (ArgTy->isIntegerType())
1072 return integer_type_class;
1073 else if (ArgTy->isPointerType())
1074 return pointer_type_class;
1075 else if (ArgTy->isReferenceType())
1076 return reference_type_class;
1077 else if (ArgTy->isRealType())
1078 return real_type_class;
1079 else if (ArgTy->isComplexType())
1080 return complex_type_class;
1081 else if (ArgTy->isFunctionType())
1082 return function_type_class;
Douglas Gregorfb87b892010-04-26 21:31:17 +00001083 else if (ArgTy->isStructureOrClassType())
Chris Lattnera4d55d82008-10-06 06:40:35 +00001084 return record_type_class;
1085 else if (ArgTy->isUnionType())
1086 return union_type_class;
1087 else if (ArgTy->isArrayType())
1088 return array_type_class;
1089 else if (ArgTy->isUnionType())
1090 return union_type_class;
1091 else // FIXME: offset_type_class, method_type_class, & lang_type_class?
1092 assert(0 && "CallExpr::isBuiltinClassifyType(): unimplemented type");
1093 return -1;
1094}
1095
John McCall42c8f872010-05-10 23:27:23 +00001096/// Retrieves the "underlying object type" of the given expression,
1097/// as used by __builtin_object_size.
1098QualType IntExprEvaluator::GetObjectType(const Expr *E) {
1099 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E)) {
1100 if (const VarDecl *VD = dyn_cast<VarDecl>(DRE->getDecl()))
1101 return VD->getType();
1102 } else if (isa<CompoundLiteralExpr>(E)) {
1103 return E->getType();
1104 }
1105
1106 return QualType();
1107}
1108
1109bool IntExprEvaluator::TryEvaluateBuiltinObjectSize(CallExpr *E) {
1110 // TODO: Perhaps we should let LLVM lower this?
1111 LValue Base;
1112 if (!EvaluatePointer(E->getArg(0), Base, Info))
1113 return false;
1114
1115 // If we can prove the base is null, lower to zero now.
1116 const Expr *LVBase = Base.getLValueBase();
1117 if (!LVBase) return Success(0, E);
1118
1119 QualType T = GetObjectType(LVBase);
1120 if (T.isNull() ||
1121 T->isIncompleteType() ||
Eli Friedman13578692010-08-05 02:49:48 +00001122 T->isFunctionType() ||
John McCall42c8f872010-05-10 23:27:23 +00001123 T->isVariablyModifiedType() ||
1124 T->isDependentType())
1125 return false;
1126
1127 CharUnits Size = Info.Ctx.getTypeSizeInChars(T);
1128 CharUnits Offset = Base.getLValueOffset();
1129
1130 if (!Offset.isNegative() && Offset <= Size)
1131 Size -= Offset;
1132 else
1133 Size = CharUnits::Zero();
1134 return Success(Size.getQuantity(), E);
1135}
1136
Eli Friedmanc4a26382010-02-13 00:10:10 +00001137bool IntExprEvaluator::VisitCallExpr(CallExpr *E) {
Douglas Gregor3c385e52009-02-14 18:57:46 +00001138 switch (E->isBuiltinCall(Info.Ctx)) {
Chris Lattner019f4e82008-10-06 05:28:25 +00001139 default:
Anders Carlsson0e8acbb2008-11-30 18:37:00 +00001140 return Error(E->getLocStart(), diag::note_invalid_subexpr_in_ice, E);
Mike Stump64eda9e2009-10-26 18:35:08 +00001141
1142 case Builtin::BI__builtin_object_size: {
John McCall42c8f872010-05-10 23:27:23 +00001143 if (TryEvaluateBuiltinObjectSize(E))
1144 return true;
Mike Stump64eda9e2009-10-26 18:35:08 +00001145
Eric Christopherb2aaf512010-01-19 22:58:35 +00001146 // If evaluating the argument has side-effects we can't determine
1147 // the size of the object and lower it to unknown now.
Fariborz Jahanian393c2472009-11-05 18:03:03 +00001148 if (E->getArg(0)->HasSideEffects(Info.Ctx)) {
Benjamin Kramer3f27b382010-01-03 18:18:37 +00001149 if (E->getArg(1)->EvaluateAsInt(Info.Ctx).getZExtValue() <= 1)
Chris Lattnercf184652009-11-03 19:48:51 +00001150 return Success(-1ULL, E);
Mike Stump64eda9e2009-10-26 18:35:08 +00001151 return Success(0, E);
1152 }
Mike Stumpc4c90452009-10-27 22:09:17 +00001153
Mike Stump64eda9e2009-10-26 18:35:08 +00001154 return Error(E->getLocStart(), diag::note_invalid_subexpr_in_ice, E);
1155 }
1156
Chris Lattner019f4e82008-10-06 05:28:25 +00001157 case Builtin::BI__builtin_classify_type:
Daniel Dunbar131eb432009-02-19 09:06:44 +00001158 return Success(EvaluateBuiltinClassifyType(E), E);
Mike Stump1eb44332009-09-09 15:08:12 +00001159
Anders Carlsson4bbc0e02008-11-24 04:21:33 +00001160 case Builtin::BI__builtin_constant_p:
Chris Lattner019f4e82008-10-06 05:28:25 +00001161 // __builtin_constant_p always has one operand: it returns true if that
1162 // operand can be folded, false otherwise.
Daniel Dunbar131eb432009-02-19 09:06:44 +00001163 return Success(E->getArg(0)->isEvaluatable(Info.Ctx), E);
Chris Lattner21fb98e2009-09-23 06:06:36 +00001164
1165 case Builtin::BI__builtin_eh_return_data_regno: {
1166 int Operand = E->getArg(0)->EvaluateAsInt(Info.Ctx).getZExtValue();
1167 Operand = Info.Ctx.Target.getEHDataRegisterNumber(Operand);
1168 return Success(Operand, E);
1169 }
Eli Friedmanc4a26382010-02-13 00:10:10 +00001170
1171 case Builtin::BI__builtin_expect:
1172 return Visit(E->getArg(0));
Douglas Gregor5726d402010-09-10 06:27:15 +00001173
1174 case Builtin::BIstrlen:
1175 case Builtin::BI__builtin_strlen:
1176 // As an extension, we support strlen() and __builtin_strlen() as constant
1177 // expressions when the argument is a string literal.
1178 if (StringLiteral *S
1179 = dyn_cast<StringLiteral>(E->getArg(0)->IgnoreParenImpCasts())) {
1180 // The string literal may have embedded null characters. Find the first
1181 // one and truncate there.
1182 llvm::StringRef Str = S->getString();
1183 llvm::StringRef::size_type Pos = Str.find(0);
1184 if (Pos != llvm::StringRef::npos)
1185 Str = Str.substr(0, Pos);
1186
1187 return Success(Str.size(), E);
1188 }
1189
1190 return Error(E->getLocStart(), diag::note_invalid_subexpr_in_ice, E);
Chris Lattner019f4e82008-10-06 05:28:25 +00001191 }
Chris Lattner4c4867e2008-07-12 00:38:25 +00001192}
Anders Carlsson650c92f2008-07-08 15:34:11 +00001193
Chris Lattnerb542afe2008-07-11 19:10:17 +00001194bool IntExprEvaluator::VisitBinaryOperator(const BinaryOperator *E) {
John McCall2de56d12010-08-25 11:45:40 +00001195 if (E->getOpcode() == BO_Comma) {
Anders Carlsson027f62e2008-12-01 02:07:06 +00001196 if (!Visit(E->getRHS()))
1197 return false;
Anders Carlsson4fdfb092008-12-01 06:44:05 +00001198
Eli Friedman33ef1452009-02-26 10:19:36 +00001199 // If we can't evaluate the LHS, it might have side effects;
1200 // conservatively mark it.
1201 if (!E->getLHS()->isEvaluatable(Info.Ctx))
1202 Info.EvalResult.HasSideEffects = true;
Eli Friedmana6afa762008-11-13 06:09:17 +00001203
Anders Carlsson027f62e2008-12-01 02:07:06 +00001204 return true;
Eli Friedmana6afa762008-11-13 06:09:17 +00001205 }
1206
1207 if (E->isLogicalOp()) {
1208 // These need to be handled specially because the operands aren't
1209 // necessarily integral
Anders Carlssonfcb4d092008-11-30 16:51:17 +00001210 bool lhsResult, rhsResult;
Mike Stump1eb44332009-09-09 15:08:12 +00001211
Anders Carlssonfcb4d092008-11-30 16:51:17 +00001212 if (HandleConversionToBool(E->getLHS(), lhsResult, Info)) {
Anders Carlsson51fe9962008-11-22 21:04:56 +00001213 // We were able to evaluate the LHS, see if we can get away with not
1214 // evaluating the RHS: 0 && X -> 0, 1 || X -> 1
John McCall2de56d12010-08-25 11:45:40 +00001215 if (lhsResult == (E->getOpcode() == BO_LOr))
Daniel Dunbar3f7d9952009-02-19 18:37:50 +00001216 return Success(lhsResult, E);
Anders Carlsson4bbc0e02008-11-24 04:21:33 +00001217
Anders Carlssonfcb4d092008-11-30 16:51:17 +00001218 if (HandleConversionToBool(E->getRHS(), rhsResult, Info)) {
John McCall2de56d12010-08-25 11:45:40 +00001219 if (E->getOpcode() == BO_LOr)
Daniel Dunbar131eb432009-02-19 09:06:44 +00001220 return Success(lhsResult || rhsResult, E);
Anders Carlsson4bbc0e02008-11-24 04:21:33 +00001221 else
Daniel Dunbar131eb432009-02-19 09:06:44 +00001222 return Success(lhsResult && rhsResult, E);
Anders Carlsson4bbc0e02008-11-24 04:21:33 +00001223 }
1224 } else {
Anders Carlssonfcb4d092008-11-30 16:51:17 +00001225 if (HandleConversionToBool(E->getRHS(), rhsResult, Info)) {
Anders Carlsson4bbc0e02008-11-24 04:21:33 +00001226 // We can't evaluate the LHS; however, sometimes the result
1227 // is determined by the RHS: X && 0 -> 0, X || 1 -> 1.
John McCall2de56d12010-08-25 11:45:40 +00001228 if (rhsResult == (E->getOpcode() == BO_LOr) ||
1229 !rhsResult == (E->getOpcode() == BO_LAnd)) {
Daniel Dunbar131eb432009-02-19 09:06:44 +00001230 // Since we weren't able to evaluate the left hand side, it
Anders Carlssonfcb4d092008-11-30 16:51:17 +00001231 // must have had side effects.
1232 Info.EvalResult.HasSideEffects = true;
Daniel Dunbar131eb432009-02-19 09:06:44 +00001233
1234 return Success(rhsResult, E);
Anders Carlsson4bbc0e02008-11-24 04:21:33 +00001235 }
1236 }
Anders Carlsson51fe9962008-11-22 21:04:56 +00001237 }
Eli Friedmana6afa762008-11-13 06:09:17 +00001238
Eli Friedmana6afa762008-11-13 06:09:17 +00001239 return false;
1240 }
1241
Anders Carlsson286f85e2008-11-16 07:17:21 +00001242 QualType LHSTy = E->getLHS()->getType();
1243 QualType RHSTy = E->getRHS()->getType();
Daniel Dunbar4087e242009-01-29 06:43:41 +00001244
1245 if (LHSTy->isAnyComplexType()) {
1246 assert(RHSTy->isAnyComplexType() && "Invalid comparison");
John McCallf4cf1a12010-05-07 17:22:02 +00001247 ComplexValue LHS, RHS;
Daniel Dunbar4087e242009-01-29 06:43:41 +00001248
1249 if (!EvaluateComplex(E->getLHS(), LHS, Info))
1250 return false;
1251
1252 if (!EvaluateComplex(E->getRHS(), RHS, Info))
1253 return false;
1254
1255 if (LHS.isComplexFloat()) {
Mike Stump1eb44332009-09-09 15:08:12 +00001256 APFloat::cmpResult CR_r =
Daniel Dunbar4087e242009-01-29 06:43:41 +00001257 LHS.getComplexFloatReal().compare(RHS.getComplexFloatReal());
Mike Stump1eb44332009-09-09 15:08:12 +00001258 APFloat::cmpResult CR_i =
Daniel Dunbar4087e242009-01-29 06:43:41 +00001259 LHS.getComplexFloatImag().compare(RHS.getComplexFloatImag());
1260
John McCall2de56d12010-08-25 11:45:40 +00001261 if (E->getOpcode() == BO_EQ)
Daniel Dunbar131eb432009-02-19 09:06:44 +00001262 return Success((CR_r == APFloat::cmpEqual &&
1263 CR_i == APFloat::cmpEqual), E);
1264 else {
John McCall2de56d12010-08-25 11:45:40 +00001265 assert(E->getOpcode() == BO_NE &&
Daniel Dunbar131eb432009-02-19 09:06:44 +00001266 "Invalid complex comparison.");
Mike Stump1eb44332009-09-09 15:08:12 +00001267 return Success(((CR_r == APFloat::cmpGreaterThan ||
Mon P Wangfc39dc42010-04-29 05:53:29 +00001268 CR_r == APFloat::cmpLessThan ||
1269 CR_r == APFloat::cmpUnordered) ||
Mike Stump1eb44332009-09-09 15:08:12 +00001270 (CR_i == APFloat::cmpGreaterThan ||
Mon P Wangfc39dc42010-04-29 05:53:29 +00001271 CR_i == APFloat::cmpLessThan ||
1272 CR_i == APFloat::cmpUnordered)), E);
Daniel Dunbar131eb432009-02-19 09:06:44 +00001273 }
Daniel Dunbar4087e242009-01-29 06:43:41 +00001274 } else {
John McCall2de56d12010-08-25 11:45:40 +00001275 if (E->getOpcode() == BO_EQ)
Daniel Dunbar131eb432009-02-19 09:06:44 +00001276 return Success((LHS.getComplexIntReal() == RHS.getComplexIntReal() &&
1277 LHS.getComplexIntImag() == RHS.getComplexIntImag()), E);
1278 else {
John McCall2de56d12010-08-25 11:45:40 +00001279 assert(E->getOpcode() == BO_NE &&
Daniel Dunbar131eb432009-02-19 09:06:44 +00001280 "Invalid compex comparison.");
1281 return Success((LHS.getComplexIntReal() != RHS.getComplexIntReal() ||
1282 LHS.getComplexIntImag() != RHS.getComplexIntImag()), E);
1283 }
Daniel Dunbar4087e242009-01-29 06:43:41 +00001284 }
1285 }
Mike Stump1eb44332009-09-09 15:08:12 +00001286
Anders Carlsson286f85e2008-11-16 07:17:21 +00001287 if (LHSTy->isRealFloatingType() &&
1288 RHSTy->isRealFloatingType()) {
1289 APFloat RHS(0.0), LHS(0.0);
Mike Stump1eb44332009-09-09 15:08:12 +00001290
Anders Carlsson286f85e2008-11-16 07:17:21 +00001291 if (!EvaluateFloat(E->getRHS(), RHS, Info))
1292 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00001293
Anders Carlsson286f85e2008-11-16 07:17:21 +00001294 if (!EvaluateFloat(E->getLHS(), LHS, Info))
1295 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00001296
Anders Carlsson286f85e2008-11-16 07:17:21 +00001297 APFloat::cmpResult CR = LHS.compare(RHS);
Anders Carlsson529569e2008-11-16 22:46:56 +00001298
Anders Carlsson286f85e2008-11-16 07:17:21 +00001299 switch (E->getOpcode()) {
1300 default:
1301 assert(0 && "Invalid binary operator!");
John McCall2de56d12010-08-25 11:45:40 +00001302 case BO_LT:
Daniel Dunbar131eb432009-02-19 09:06:44 +00001303 return Success(CR == APFloat::cmpLessThan, E);
John McCall2de56d12010-08-25 11:45:40 +00001304 case BO_GT:
Daniel Dunbar131eb432009-02-19 09:06:44 +00001305 return Success(CR == APFloat::cmpGreaterThan, E);
John McCall2de56d12010-08-25 11:45:40 +00001306 case BO_LE:
Daniel Dunbar131eb432009-02-19 09:06:44 +00001307 return Success(CR == APFloat::cmpLessThan || CR == APFloat::cmpEqual, E);
John McCall2de56d12010-08-25 11:45:40 +00001308 case BO_GE:
Mike Stump1eb44332009-09-09 15:08:12 +00001309 return Success(CR == APFloat::cmpGreaterThan || CR == APFloat::cmpEqual,
Daniel Dunbar131eb432009-02-19 09:06:44 +00001310 E);
John McCall2de56d12010-08-25 11:45:40 +00001311 case BO_EQ:
Daniel Dunbar131eb432009-02-19 09:06:44 +00001312 return Success(CR == APFloat::cmpEqual, E);
John McCall2de56d12010-08-25 11:45:40 +00001313 case BO_NE:
Mike Stump1eb44332009-09-09 15:08:12 +00001314 return Success(CR == APFloat::cmpGreaterThan
Mon P Wangfc39dc42010-04-29 05:53:29 +00001315 || CR == APFloat::cmpLessThan
1316 || CR == APFloat::cmpUnordered, E);
Anders Carlsson286f85e2008-11-16 07:17:21 +00001317 }
Anders Carlsson286f85e2008-11-16 07:17:21 +00001318 }
Mike Stump1eb44332009-09-09 15:08:12 +00001319
Eli Friedmanad02d7d2009-04-28 19:17:36 +00001320 if (LHSTy->isPointerType() && RHSTy->isPointerType()) {
John McCall2de56d12010-08-25 11:45:40 +00001321 if (E->getOpcode() == BO_Sub || E->isEqualityOp()) {
John McCallefdb83e2010-05-07 21:00:08 +00001322 LValue LHSValue;
Anders Carlsson3068d112008-11-16 19:01:22 +00001323 if (!EvaluatePointer(E->getLHS(), LHSValue, Info))
1324 return false;
Eli Friedmana1f47c42009-03-23 04:38:34 +00001325
John McCallefdb83e2010-05-07 21:00:08 +00001326 LValue RHSValue;
Anders Carlsson3068d112008-11-16 19:01:22 +00001327 if (!EvaluatePointer(E->getRHS(), RHSValue, Info))
1328 return false;
Eli Friedmana1f47c42009-03-23 04:38:34 +00001329
Eli Friedman5bc86102009-06-14 02:17:33 +00001330 // Reject any bases from the normal codepath; we special-case comparisons
1331 // to null.
1332 if (LHSValue.getLValueBase()) {
1333 if (!E->isEqualityOp())
1334 return false;
Ken Dycka7305832010-01-15 12:37:54 +00001335 if (RHSValue.getLValueBase() || !RHSValue.getLValueOffset().isZero())
Eli Friedman5bc86102009-06-14 02:17:33 +00001336 return false;
1337 bool bres;
1338 if (!EvalPointerValueAsBool(LHSValue, bres))
1339 return false;
John McCall2de56d12010-08-25 11:45:40 +00001340 return Success(bres ^ (E->getOpcode() == BO_EQ), E);
Eli Friedman5bc86102009-06-14 02:17:33 +00001341 } else if (RHSValue.getLValueBase()) {
1342 if (!E->isEqualityOp())
1343 return false;
Ken Dycka7305832010-01-15 12:37:54 +00001344 if (LHSValue.getLValueBase() || !LHSValue.getLValueOffset().isZero())
Eli Friedman5bc86102009-06-14 02:17:33 +00001345 return false;
1346 bool bres;
1347 if (!EvalPointerValueAsBool(RHSValue, bres))
1348 return false;
John McCall2de56d12010-08-25 11:45:40 +00001349 return Success(bres ^ (E->getOpcode() == BO_EQ), E);
Eli Friedman5bc86102009-06-14 02:17:33 +00001350 }
Eli Friedmana1f47c42009-03-23 04:38:34 +00001351
John McCall2de56d12010-08-25 11:45:40 +00001352 if (E->getOpcode() == BO_Sub) {
Chris Lattner4992bdd2010-04-20 17:13:14 +00001353 QualType Type = E->getLHS()->getType();
1354 QualType ElementType = Type->getAs<PointerType>()->getPointeeType();
Anders Carlsson3068d112008-11-16 19:01:22 +00001355
Ken Dycka7305832010-01-15 12:37:54 +00001356 CharUnits ElementSize = CharUnits::One();
Eli Friedmance1bca72009-06-04 20:23:20 +00001357 if (!ElementType->isVoidType() && !ElementType->isFunctionType())
Ken Dycka7305832010-01-15 12:37:54 +00001358 ElementSize = Info.Ctx.getTypeSizeInChars(ElementType);
Eli Friedmana1f47c42009-03-23 04:38:34 +00001359
Ken Dycka7305832010-01-15 12:37:54 +00001360 CharUnits Diff = LHSValue.getLValueOffset() -
1361 RHSValue.getLValueOffset();
1362 return Success(Diff / ElementSize, E);
Eli Friedmanad02d7d2009-04-28 19:17:36 +00001363 }
1364 bool Result;
John McCall2de56d12010-08-25 11:45:40 +00001365 if (E->getOpcode() == BO_EQ) {
Eli Friedmanad02d7d2009-04-28 19:17:36 +00001366 Result = LHSValue.getLValueOffset() == RHSValue.getLValueOffset();
Eli Friedman267c0ab2009-04-29 20:29:43 +00001367 } else {
Eli Friedmanad02d7d2009-04-28 19:17:36 +00001368 Result = LHSValue.getLValueOffset() != RHSValue.getLValueOffset();
1369 }
1370 return Success(Result, E);
Anders Carlsson3068d112008-11-16 19:01:22 +00001371 }
1372 }
Douglas Gregor2ade35e2010-06-16 00:17:44 +00001373 if (!LHSTy->isIntegralOrEnumerationType() ||
1374 !RHSTy->isIntegralOrEnumerationType()) {
Eli Friedmana6afa762008-11-13 06:09:17 +00001375 // We can't continue from here for non-integral types, and they
1376 // could potentially confuse the following operations.
Eli Friedmana6afa762008-11-13 06:09:17 +00001377 return false;
1378 }
1379
Anders Carlssona25ae3d2008-07-08 14:35:21 +00001380 // The LHS of a constant expr is always evaluated and needed.
Daniel Dunbar30c37f42009-02-19 20:17:33 +00001381 if (!Visit(E->getLHS()))
Chris Lattner54176fd2008-07-12 00:14:42 +00001382 return false; // error in subexpression.
Eli Friedmand9f4bcd2008-07-27 05:46:18 +00001383
Eli Friedman42edd0d2009-03-24 01:14:50 +00001384 APValue RHSVal;
1385 if (!EvaluateIntegerOrLValue(E->getRHS(), RHSVal, Info))
Daniel Dunbar30c37f42009-02-19 20:17:33 +00001386 return false;
Eli Friedman42edd0d2009-03-24 01:14:50 +00001387
1388 // Handle cases like (unsigned long)&a + 4.
1389 if (E->isAdditiveOp() && Result.isLValue() && RHSVal.isInt()) {
Ken Dycka7305832010-01-15 12:37:54 +00001390 CharUnits Offset = Result.getLValueOffset();
1391 CharUnits AdditionalOffset = CharUnits::fromQuantity(
1392 RHSVal.getInt().getZExtValue());
John McCall2de56d12010-08-25 11:45:40 +00001393 if (E->getOpcode() == BO_Add)
Ken Dycka7305832010-01-15 12:37:54 +00001394 Offset += AdditionalOffset;
Eli Friedman42edd0d2009-03-24 01:14:50 +00001395 else
Ken Dycka7305832010-01-15 12:37:54 +00001396 Offset -= AdditionalOffset;
1397 Result = APValue(Result.getLValueBase(), Offset);
Eli Friedman42edd0d2009-03-24 01:14:50 +00001398 return true;
1399 }
1400
1401 // Handle cases like 4 + (unsigned long)&a
John McCall2de56d12010-08-25 11:45:40 +00001402 if (E->getOpcode() == BO_Add &&
Eli Friedman42edd0d2009-03-24 01:14:50 +00001403 RHSVal.isLValue() && Result.isInt()) {
Ken Dycka7305832010-01-15 12:37:54 +00001404 CharUnits Offset = RHSVal.getLValueOffset();
1405 Offset += CharUnits::fromQuantity(Result.getInt().getZExtValue());
1406 Result = APValue(RHSVal.getLValueBase(), Offset);
Eli Friedman42edd0d2009-03-24 01:14:50 +00001407 return true;
1408 }
1409
1410 // All the following cases expect both operands to be an integer
1411 if (!Result.isInt() || !RHSVal.isInt())
Chris Lattnerb542afe2008-07-11 19:10:17 +00001412 return false;
Eli Friedmana6afa762008-11-13 06:09:17 +00001413
Eli Friedman42edd0d2009-03-24 01:14:50 +00001414 APSInt& RHS = RHSVal.getInt();
1415
Anders Carlssona25ae3d2008-07-08 14:35:21 +00001416 switch (E->getOpcode()) {
Chris Lattner32fea9d2008-11-12 07:43:42 +00001417 default:
Anders Carlsson0e8acbb2008-11-30 18:37:00 +00001418 return Error(E->getOperatorLoc(), diag::note_invalid_subexpr_in_ice, E);
John McCall2de56d12010-08-25 11:45:40 +00001419 case BO_Mul: return Success(Result.getInt() * RHS, E);
1420 case BO_Add: return Success(Result.getInt() + RHS, E);
1421 case BO_Sub: return Success(Result.getInt() - RHS, E);
1422 case BO_And: return Success(Result.getInt() & RHS, E);
1423 case BO_Xor: return Success(Result.getInt() ^ RHS, E);
1424 case BO_Or: return Success(Result.getInt() | RHS, E);
1425 case BO_Div:
Chris Lattner54176fd2008-07-12 00:14:42 +00001426 if (RHS == 0)
Anders Carlsson0e8acbb2008-11-30 18:37:00 +00001427 return Error(E->getOperatorLoc(), diag::note_expr_divide_by_zero, E);
Daniel Dunbar30c37f42009-02-19 20:17:33 +00001428 return Success(Result.getInt() / RHS, E);
John McCall2de56d12010-08-25 11:45:40 +00001429 case BO_Rem:
Chris Lattner54176fd2008-07-12 00:14:42 +00001430 if (RHS == 0)
Anders Carlsson0e8acbb2008-11-30 18:37:00 +00001431 return Error(E->getOperatorLoc(), diag::note_expr_divide_by_zero, E);
Daniel Dunbar30c37f42009-02-19 20:17:33 +00001432 return Success(Result.getInt() % RHS, E);
John McCall2de56d12010-08-25 11:45:40 +00001433 case BO_Shl: {
John McCall091f23f2010-11-09 22:22:12 +00001434 // During constant-folding, a negative shift is an opposite shift.
1435 if (RHS.isSigned() && RHS.isNegative()) {
1436 RHS = -RHS;
1437 goto shift_right;
1438 }
1439
1440 shift_left:
1441 unsigned SA
1442 = (unsigned) RHS.getLimitedValue(Result.getInt().getBitWidth()-1);
Daniel Dunbar30c37f42009-02-19 20:17:33 +00001443 return Success(Result.getInt() << SA, E);
Daniel Dunbar3f7d9952009-02-19 18:37:50 +00001444 }
John McCall2de56d12010-08-25 11:45:40 +00001445 case BO_Shr: {
John McCall091f23f2010-11-09 22:22:12 +00001446 // During constant-folding, a negative shift is an opposite shift.
1447 if (RHS.isSigned() && RHS.isNegative()) {
1448 RHS = -RHS;
1449 goto shift_left;
1450 }
1451
1452 shift_right:
Mike Stump1eb44332009-09-09 15:08:12 +00001453 unsigned SA =
Daniel Dunbar30c37f42009-02-19 20:17:33 +00001454 (unsigned) RHS.getLimitedValue(Result.getInt().getBitWidth()-1);
1455 return Success(Result.getInt() >> SA, E);
Daniel Dunbar3f7d9952009-02-19 18:37:50 +00001456 }
Mike Stump1eb44332009-09-09 15:08:12 +00001457
John McCall2de56d12010-08-25 11:45:40 +00001458 case BO_LT: return Success(Result.getInt() < RHS, E);
1459 case BO_GT: return Success(Result.getInt() > RHS, E);
1460 case BO_LE: return Success(Result.getInt() <= RHS, E);
1461 case BO_GE: return Success(Result.getInt() >= RHS, E);
1462 case BO_EQ: return Success(Result.getInt() == RHS, E);
1463 case BO_NE: return Success(Result.getInt() != RHS, E);
Eli Friedmanb11e7782008-11-13 02:13:11 +00001464 }
Anders Carlssona25ae3d2008-07-08 14:35:21 +00001465}
1466
Nuno Lopesca7c2ea2008-11-16 19:28:31 +00001467bool IntExprEvaluator::VisitConditionalOperator(const ConditionalOperator *E) {
Nuno Lopesa25bd552008-11-16 22:06:39 +00001468 bool Cond;
1469 if (!HandleConversionToBool(E->getCond(), Cond, Info))
Nuno Lopesca7c2ea2008-11-16 19:28:31 +00001470 return false;
1471
Nuno Lopesa25bd552008-11-16 22:06:39 +00001472 return Visit(Cond ? E->getTrueExpr() : E->getFalseExpr());
Nuno Lopesca7c2ea2008-11-16 19:28:31 +00001473}
1474
Ken Dyck8b752f12010-01-27 17:10:57 +00001475CharUnits IntExprEvaluator::GetAlignOfType(QualType T) {
Sebastian Redl5d484e82009-11-23 17:18:46 +00001476 // C++ [expr.sizeof]p2: "When applied to a reference or a reference type,
1477 // the result is the size of the referenced type."
1478 // C++ [expr.alignof]p3: "When alignof is applied to a reference type, the
1479 // result shall be the alignment of the referenced type."
1480 if (const ReferenceType *Ref = T->getAs<ReferenceType>())
1481 T = Ref->getPointeeType();
1482
Eli Friedman2be58612009-05-30 21:09:44 +00001483 // __alignof is defined to return the preferred alignment.
Ken Dyckfb1e3bc2011-01-18 01:56:16 +00001484 return Info.Ctx.toCharUnitsFromBits(
1485 Info.Ctx.getPreferredTypeAlign(T.getTypePtr()));
Chris Lattnere9feb472009-01-24 21:09:06 +00001486}
1487
Ken Dyck8b752f12010-01-27 17:10:57 +00001488CharUnits IntExprEvaluator::GetAlignOfExpr(const Expr *E) {
Chris Lattneraf707ab2009-01-24 21:53:27 +00001489 E = E->IgnoreParens();
1490
1491 // alignof decl is always accepted, even if it doesn't make sense: we default
Mike Stump1eb44332009-09-09 15:08:12 +00001492 // to 1 in those cases.
Chris Lattneraf707ab2009-01-24 21:53:27 +00001493 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E))
Ken Dyck8b752f12010-01-27 17:10:57 +00001494 return Info.Ctx.getDeclAlign(DRE->getDecl(),
1495 /*RefAsPointee*/true);
Eli Friedmana1f47c42009-03-23 04:38:34 +00001496
Chris Lattneraf707ab2009-01-24 21:53:27 +00001497 if (const MemberExpr *ME = dyn_cast<MemberExpr>(E))
Ken Dyck8b752f12010-01-27 17:10:57 +00001498 return Info.Ctx.getDeclAlign(ME->getMemberDecl(),
1499 /*RefAsPointee*/true);
Chris Lattneraf707ab2009-01-24 21:53:27 +00001500
Chris Lattnere9feb472009-01-24 21:09:06 +00001501 return GetAlignOfType(E->getType());
1502}
1503
1504
Sebastian Redl05189992008-11-11 17:56:53 +00001505/// VisitSizeAlignOfExpr - Evaluate a sizeof or alignof with a result as the
1506/// expression's type.
1507bool IntExprEvaluator::VisitSizeOfAlignOfExpr(const SizeOfAlignOfExpr *E) {
Chris Lattnere9feb472009-01-24 21:09:06 +00001508 // Handle alignof separately.
1509 if (!E->isSizeOf()) {
1510 if (E->isArgumentType())
Ken Dyck8b752f12010-01-27 17:10:57 +00001511 return Success(GetAlignOfType(E->getArgumentType()).getQuantity(), E);
Chris Lattnere9feb472009-01-24 21:09:06 +00001512 else
Ken Dyck8b752f12010-01-27 17:10:57 +00001513 return Success(GetAlignOfExpr(E->getArgumentExpr()).getQuantity(), E);
Chris Lattnere9feb472009-01-24 21:09:06 +00001514 }
Eli Friedmana1f47c42009-03-23 04:38:34 +00001515
Sebastian Redl05189992008-11-11 17:56:53 +00001516 QualType SrcTy = E->getTypeOfArgument();
Sebastian Redl5d484e82009-11-23 17:18:46 +00001517 // C++ [expr.sizeof]p2: "When applied to a reference or a reference type,
1518 // the result is the size of the referenced type."
1519 // C++ [expr.alignof]p3: "When alignof is applied to a reference type, the
1520 // result shall be the alignment of the referenced type."
1521 if (const ReferenceType *Ref = SrcTy->getAs<ReferenceType>())
1522 SrcTy = Ref->getPointeeType();
Sebastian Redl05189992008-11-11 17:56:53 +00001523
Daniel Dunbar131eb432009-02-19 09:06:44 +00001524 // sizeof(void), __alignof__(void), sizeof(function) = 1 as a gcc
1525 // extension.
1526 if (SrcTy->isVoidType() || SrcTy->isFunctionType())
1527 return Success(1, E);
Eli Friedmana1f47c42009-03-23 04:38:34 +00001528
Chris Lattnerfcee0012008-07-11 21:24:13 +00001529 // sizeof(vla) is not a constantexpr: C99 6.5.3.4p2.
Chris Lattnere9feb472009-01-24 21:09:06 +00001530 if (!SrcTy->isConstantSizeType())
Chris Lattnerfcee0012008-07-11 21:24:13 +00001531 return false;
Eli Friedmanf2da9df2009-01-24 22:19:05 +00001532
Chris Lattnere9feb472009-01-24 21:09:06 +00001533 // Get information about the size.
Ken Dyck199c3d62010-01-11 17:06:35 +00001534 return Success(Info.Ctx.getTypeSizeInChars(SrcTy).getQuantity(), E);
Chris Lattnerfcee0012008-07-11 21:24:13 +00001535}
1536
Douglas Gregor8ecdb652010-04-28 22:16:22 +00001537bool IntExprEvaluator::VisitOffsetOfExpr(const OffsetOfExpr *E) {
1538 CharUnits Result;
1539 unsigned n = E->getNumComponents();
1540 OffsetOfExpr* OOE = const_cast<OffsetOfExpr*>(E);
1541 if (n == 0)
1542 return false;
1543 QualType CurrentType = E->getTypeSourceInfo()->getType();
1544 for (unsigned i = 0; i != n; ++i) {
1545 OffsetOfExpr::OffsetOfNode ON = OOE->getComponent(i);
1546 switch (ON.getKind()) {
1547 case OffsetOfExpr::OffsetOfNode::Array: {
1548 Expr *Idx = OOE->getIndexExpr(ON.getArrayExprIndex());
1549 APSInt IdxResult;
1550 if (!EvaluateInteger(Idx, IdxResult, Info))
1551 return false;
1552 const ArrayType *AT = Info.Ctx.getAsArrayType(CurrentType);
1553 if (!AT)
1554 return false;
1555 CurrentType = AT->getElementType();
1556 CharUnits ElementSize = Info.Ctx.getTypeSizeInChars(CurrentType);
1557 Result += IdxResult.getSExtValue() * ElementSize;
1558 break;
1559 }
1560
1561 case OffsetOfExpr::OffsetOfNode::Field: {
1562 FieldDecl *MemberDecl = ON.getField();
1563 const RecordType *RT = CurrentType->getAs<RecordType>();
1564 if (!RT)
1565 return false;
1566 RecordDecl *RD = RT->getDecl();
1567 const ASTRecordLayout &RL = Info.Ctx.getASTRecordLayout(RD);
John McCallba4f5d52011-01-20 07:57:12 +00001568 unsigned i = MemberDecl->getFieldIndex();
Douglas Gregorcc8a5d52010-04-29 00:18:15 +00001569 assert(i < RL.getFieldCount() && "offsetof field in wrong type");
Ken Dyckfb1e3bc2011-01-18 01:56:16 +00001570 Result += Info.Ctx.toCharUnitsFromBits(RL.getFieldOffset(i));
Douglas Gregor8ecdb652010-04-28 22:16:22 +00001571 CurrentType = MemberDecl->getType().getNonReferenceType();
1572 break;
1573 }
1574
1575 case OffsetOfExpr::OffsetOfNode::Identifier:
1576 llvm_unreachable("dependent __builtin_offsetof");
Douglas Gregorcc8a5d52010-04-29 00:18:15 +00001577 return false;
1578
1579 case OffsetOfExpr::OffsetOfNode::Base: {
1580 CXXBaseSpecifier *BaseSpec = ON.getBase();
1581 if (BaseSpec->isVirtual())
1582 return false;
1583
1584 // Find the layout of the class whose base we are looking into.
1585 const RecordType *RT = CurrentType->getAs<RecordType>();
1586 if (!RT)
1587 return false;
1588 RecordDecl *RD = RT->getDecl();
1589 const ASTRecordLayout &RL = Info.Ctx.getASTRecordLayout(RD);
1590
1591 // Find the base class itself.
1592 CurrentType = BaseSpec->getType();
1593 const RecordType *BaseRT = CurrentType->getAs<RecordType>();
1594 if (!BaseRT)
1595 return false;
1596
1597 // Add the offset to the base.
Ken Dyckfb1e3bc2011-01-18 01:56:16 +00001598 Result += Info.Ctx.toCharUnitsFromBits(
1599 RL.getBaseClassOffsetInBits(
1600 cast<CXXRecordDecl>(BaseRT->getDecl())));
Douglas Gregorcc8a5d52010-04-29 00:18:15 +00001601 break;
1602 }
Douglas Gregor8ecdb652010-04-28 22:16:22 +00001603 }
1604 }
1605 return Success(Result.getQuantity(), E);
1606}
1607
Chris Lattnerb542afe2008-07-11 19:10:17 +00001608bool IntExprEvaluator::VisitUnaryOperator(const UnaryOperator *E) {
John McCall2de56d12010-08-25 11:45:40 +00001609 if (E->getOpcode() == UO_LNot) {
Eli Friedmana6afa762008-11-13 06:09:17 +00001610 // LNot's operand isn't necessarily an integer, so we handle it specially.
1611 bool bres;
1612 if (!HandleConversionToBool(E->getSubExpr(), bres, Info))
1613 return false;
Daniel Dunbar131eb432009-02-19 09:06:44 +00001614 return Success(!bres, E);
Eli Friedmana6afa762008-11-13 06:09:17 +00001615 }
1616
Daniel Dunbar4fff4812009-02-21 18:14:20 +00001617 // Only handle integral operations...
Douglas Gregor2ade35e2010-06-16 00:17:44 +00001618 if (!E->getSubExpr()->getType()->isIntegralOrEnumerationType())
Daniel Dunbar4fff4812009-02-21 18:14:20 +00001619 return false;
1620
Chris Lattner87eae5e2008-07-11 22:52:41 +00001621 // Get the operand value into 'Result'.
1622 if (!Visit(E->getSubExpr()))
Chris Lattner75a48812008-07-11 22:15:16 +00001623 return false;
Anders Carlssona25ae3d2008-07-08 14:35:21 +00001624
Chris Lattner75a48812008-07-11 22:15:16 +00001625 switch (E->getOpcode()) {
Chris Lattner4c4867e2008-07-12 00:38:25 +00001626 default:
Chris Lattner75a48812008-07-11 22:15:16 +00001627 // Address, indirect, pre/post inc/dec, etc are not valid constant exprs.
1628 // See C99 6.6p3.
Anders Carlsson0e8acbb2008-11-30 18:37:00 +00001629 return Error(E->getOperatorLoc(), diag::note_invalid_subexpr_in_ice, E);
John McCall2de56d12010-08-25 11:45:40 +00001630 case UO_Extension:
Chris Lattner4c4867e2008-07-12 00:38:25 +00001631 // FIXME: Should extension allow i-c-e extension expressions in its scope?
1632 // If so, we could clear the diagnostic ID.
Daniel Dunbar3f7d9952009-02-19 18:37:50 +00001633 return true;
John McCall2de56d12010-08-25 11:45:40 +00001634 case UO_Plus:
Mike Stump1eb44332009-09-09 15:08:12 +00001635 // The result is always just the subexpr.
Daniel Dunbar3f7d9952009-02-19 18:37:50 +00001636 return true;
John McCall2de56d12010-08-25 11:45:40 +00001637 case UO_Minus:
Daniel Dunbar30c37f42009-02-19 20:17:33 +00001638 if (!Result.isInt()) return false;
1639 return Success(-Result.getInt(), E);
John McCall2de56d12010-08-25 11:45:40 +00001640 case UO_Not:
Daniel Dunbar30c37f42009-02-19 20:17:33 +00001641 if (!Result.isInt()) return false;
1642 return Success(~Result.getInt(), E);
Anders Carlssona25ae3d2008-07-08 14:35:21 +00001643 }
Anders Carlssona25ae3d2008-07-08 14:35:21 +00001644}
Mike Stump1eb44332009-09-09 15:08:12 +00001645
Chris Lattner732b2232008-07-12 01:15:53 +00001646/// HandleCast - This is used to evaluate implicit or explicit casts where the
1647/// result type is integer.
Daniel Dunbara2cfd342009-01-29 06:16:07 +00001648bool IntExprEvaluator::VisitCastExpr(CastExpr *E) {
Anders Carlsson82206e22008-11-30 18:14:57 +00001649 Expr *SubExpr = E->getSubExpr();
1650 QualType DestType = E->getType();
Daniel Dunbarb92dac82009-02-19 22:16:29 +00001651 QualType SrcType = SubExpr->getType();
Anders Carlsson82206e22008-11-30 18:14:57 +00001652
Eli Friedman4efaa272008-11-12 09:44:48 +00001653 if (DestType->isBooleanType()) {
1654 bool BoolResult;
1655 if (!HandleConversionToBool(SubExpr, BoolResult, Info))
1656 return false;
Daniel Dunbar131eb432009-02-19 09:06:44 +00001657 return Success(BoolResult, E);
Eli Friedman4efaa272008-11-12 09:44:48 +00001658 }
1659
Anders Carlssona25ae3d2008-07-08 14:35:21 +00001660 // Handle simple integer->integer casts.
Douglas Gregor2ade35e2010-06-16 00:17:44 +00001661 if (SrcType->isIntegralOrEnumerationType()) {
Chris Lattner732b2232008-07-12 01:15:53 +00001662 if (!Visit(SubExpr))
Chris Lattnerb542afe2008-07-11 19:10:17 +00001663 return false;
Daniel Dunbara2cfd342009-01-29 06:16:07 +00001664
Eli Friedmanbe265702009-02-20 01:15:07 +00001665 if (!Result.isInt()) {
1666 // Only allow casts of lvalues if they are lossless.
1667 return Info.Ctx.getTypeSize(DestType) == Info.Ctx.getTypeSize(SrcType);
1668 }
Daniel Dunbar30c37f42009-02-19 20:17:33 +00001669
Daniel Dunbardd211642009-02-19 22:24:01 +00001670 return Success(HandleIntToIntCast(DestType, SrcType,
Daniel Dunbar30c37f42009-02-19 20:17:33 +00001671 Result.getInt(), Info.Ctx), E);
Chris Lattner732b2232008-07-12 01:15:53 +00001672 }
Mike Stump1eb44332009-09-09 15:08:12 +00001673
Chris Lattner732b2232008-07-12 01:15:53 +00001674 // FIXME: Clean this up!
Daniel Dunbarb92dac82009-02-19 22:16:29 +00001675 if (SrcType->isPointerType()) {
John McCallefdb83e2010-05-07 21:00:08 +00001676 LValue LV;
Chris Lattner87eae5e2008-07-11 22:52:41 +00001677 if (!EvaluatePointer(SubExpr, LV, Info))
Chris Lattnerb542afe2008-07-11 19:10:17 +00001678 return false;
Eli Friedman4efaa272008-11-12 09:44:48 +00001679
Daniel Dunbardd211642009-02-19 22:24:01 +00001680 if (LV.getLValueBase()) {
1681 // Only allow based lvalue casts if they are lossless.
1682 if (Info.Ctx.getTypeSize(DestType) != Info.Ctx.getTypeSize(SrcType))
1683 return false;
Eli Friedman4efaa272008-11-12 09:44:48 +00001684
John McCallefdb83e2010-05-07 21:00:08 +00001685 LV.moveInto(Result);
Daniel Dunbardd211642009-02-19 22:24:01 +00001686 return true;
1687 }
1688
Ken Dycka7305832010-01-15 12:37:54 +00001689 APSInt AsInt = Info.Ctx.MakeIntValue(LV.getLValueOffset().getQuantity(),
1690 SrcType);
Daniel Dunbardd211642009-02-19 22:24:01 +00001691 return Success(HandleIntToIntCast(DestType, SrcType, AsInt, Info.Ctx), E);
Anders Carlsson2bad1682008-07-08 14:30:00 +00001692 }
Eli Friedman4efaa272008-11-12 09:44:48 +00001693
Eli Friedmanbe265702009-02-20 01:15:07 +00001694 if (SrcType->isArrayType() || SrcType->isFunctionType()) {
1695 // This handles double-conversion cases, where there's both
1696 // an l-value promotion and an implicit conversion to int.
John McCallefdb83e2010-05-07 21:00:08 +00001697 LValue LV;
Eli Friedmanbe265702009-02-20 01:15:07 +00001698 if (!EvaluateLValue(SubExpr, LV, Info))
1699 return false;
1700
1701 if (Info.Ctx.getTypeSize(DestType) != Info.Ctx.getTypeSize(Info.Ctx.VoidPtrTy))
1702 return false;
1703
John McCallefdb83e2010-05-07 21:00:08 +00001704 LV.moveInto(Result);
Eli Friedmanbe265702009-02-20 01:15:07 +00001705 return true;
1706 }
1707
Eli Friedman1725f682009-04-22 19:23:09 +00001708 if (SrcType->isAnyComplexType()) {
John McCallf4cf1a12010-05-07 17:22:02 +00001709 ComplexValue C;
Eli Friedman1725f682009-04-22 19:23:09 +00001710 if (!EvaluateComplex(SubExpr, C, Info))
1711 return false;
1712 if (C.isComplexFloat())
1713 return Success(HandleFloatToIntCast(DestType, SrcType,
1714 C.getComplexFloatReal(), Info.Ctx),
1715 E);
1716 else
1717 return Success(HandleIntToIntCast(DestType, SrcType,
1718 C.getComplexIntReal(), Info.Ctx), E);
1719 }
Eli Friedman2217c872009-02-22 11:46:18 +00001720 // FIXME: Handle vectors
1721
Daniel Dunbarb92dac82009-02-19 22:16:29 +00001722 if (!SrcType->isRealFloatingType())
Anders Carlsson0e8acbb2008-11-30 18:37:00 +00001723 return Error(E->getExprLoc(), diag::note_invalid_subexpr_in_ice, E);
Chris Lattner732b2232008-07-12 01:15:53 +00001724
Eli Friedmand8bfe7f2008-08-22 00:06:13 +00001725 APFloat F(0.0);
1726 if (!EvaluateFloat(SubExpr, F, Info))
Anders Carlsson0e8acbb2008-11-30 18:37:00 +00001727 return Error(E->getExprLoc(), diag::note_invalid_subexpr_in_ice, E);
Mike Stump1eb44332009-09-09 15:08:12 +00001728
Daniel Dunbarb92dac82009-02-19 22:16:29 +00001729 return Success(HandleFloatToIntCast(DestType, SrcType, F, Info.Ctx), E);
Anders Carlssona25ae3d2008-07-08 14:35:21 +00001730}
Anders Carlsson2bad1682008-07-08 14:30:00 +00001731
Eli Friedman722c7172009-02-28 03:59:05 +00001732bool IntExprEvaluator::VisitUnaryReal(const UnaryOperator *E) {
1733 if (E->getSubExpr()->getType()->isAnyComplexType()) {
John McCallf4cf1a12010-05-07 17:22:02 +00001734 ComplexValue LV;
Eli Friedman722c7172009-02-28 03:59:05 +00001735 if (!EvaluateComplex(E->getSubExpr(), LV, Info) || !LV.isComplexInt())
1736 return Error(E->getExprLoc(), diag::note_invalid_subexpr_in_ice, E);
1737 return Success(LV.getComplexIntReal(), E);
1738 }
1739
1740 return Visit(E->getSubExpr());
1741}
1742
Eli Friedman664a1042009-02-27 04:45:43 +00001743bool IntExprEvaluator::VisitUnaryImag(const UnaryOperator *E) {
Eli Friedman722c7172009-02-28 03:59:05 +00001744 if (E->getSubExpr()->getType()->isComplexIntegerType()) {
John McCallf4cf1a12010-05-07 17:22:02 +00001745 ComplexValue LV;
Eli Friedman722c7172009-02-28 03:59:05 +00001746 if (!EvaluateComplex(E->getSubExpr(), LV, Info) || !LV.isComplexInt())
1747 return Error(E->getExprLoc(), diag::note_invalid_subexpr_in_ice, E);
1748 return Success(LV.getComplexIntImag(), E);
1749 }
1750
Eli Friedman664a1042009-02-27 04:45:43 +00001751 if (!E->getSubExpr()->isEvaluatable(Info.Ctx))
1752 Info.EvalResult.HasSideEffects = true;
1753 return Success(0, E);
1754}
1755
Douglas Gregoree8aff02011-01-04 17:33:58 +00001756bool IntExprEvaluator::VisitSizeOfPackExpr(const SizeOfPackExpr *E) {
1757 return Success(E->getPackLength(), E);
1758}
1759
Sebastian Redl295995c2010-09-10 20:55:47 +00001760bool IntExprEvaluator::VisitCXXNoexceptExpr(const CXXNoexceptExpr *E) {
1761 return Success(E->getValue(), E);
1762}
1763
Chris Lattnerf5eeb052008-07-11 18:11:29 +00001764//===----------------------------------------------------------------------===//
Eli Friedmand8bfe7f2008-08-22 00:06:13 +00001765// Float Evaluation
1766//===----------------------------------------------------------------------===//
1767
1768namespace {
Benjamin Kramer770b4a82009-11-28 19:03:38 +00001769class FloatExprEvaluator
Eli Friedmand8bfe7f2008-08-22 00:06:13 +00001770 : public StmtVisitor<FloatExprEvaluator, bool> {
1771 EvalInfo &Info;
1772 APFloat &Result;
1773public:
1774 FloatExprEvaluator(EvalInfo &info, APFloat &result)
1775 : Info(info), Result(result) {}
1776
1777 bool VisitStmt(Stmt *S) {
1778 return false;
1779 }
1780
1781 bool VisitParenExpr(ParenExpr *E) { return Visit(E->getSubExpr()); }
Chris Lattner019f4e82008-10-06 05:28:25 +00001782 bool VisitCallExpr(const CallExpr *E);
Eli Friedmand8bfe7f2008-08-22 00:06:13 +00001783
Daniel Dunbar5db4b3f2008-10-16 03:51:50 +00001784 bool VisitUnaryOperator(const UnaryOperator *E);
Eli Friedmand8bfe7f2008-08-22 00:06:13 +00001785 bool VisitBinaryOperator(const BinaryOperator *E);
1786 bool VisitFloatingLiteral(const FloatingLiteral *E);
Eli Friedman4efaa272008-11-12 09:44:48 +00001787 bool VisitCastExpr(CastExpr *E);
Douglas Gregored8abf12010-07-08 06:14:04 +00001788 bool VisitCXXScalarValueInitExpr(CXXScalarValueInitExpr *E);
Eli Friedman67f85fc2009-12-04 02:12:53 +00001789 bool VisitConditionalOperator(ConditionalOperator *E);
Eli Friedman2217c872009-02-22 11:46:18 +00001790
Eli Friedmanba98d6b2009-03-23 04:56:01 +00001791 bool VisitChooseExpr(const ChooseExpr *E)
1792 { return Visit(E->getChosenSubExpr(Info.Ctx)); }
1793 bool VisitUnaryExtension(const UnaryOperator *E)
1794 { return Visit(E->getSubExpr()); }
John McCallabd3a852010-05-07 22:08:54 +00001795 bool VisitUnaryReal(const UnaryOperator *E);
1796 bool VisitUnaryImag(const UnaryOperator *E);
Eli Friedmanba98d6b2009-03-23 04:56:01 +00001797
John McCall189d6ef2010-10-09 01:34:31 +00001798 bool VisitDeclRefExpr(const DeclRefExpr *E);
1799
John McCallabd3a852010-05-07 22:08:54 +00001800 // FIXME: Missing: array subscript of vector, member of vector,
1801 // ImplicitValueInitExpr
Eli Friedmand8bfe7f2008-08-22 00:06:13 +00001802};
1803} // end anonymous namespace
1804
1805static bool EvaluateFloat(const Expr* E, APFloat& Result, EvalInfo &Info) {
John McCall7db7acb2010-05-07 05:46:35 +00001806 assert(E->getType()->isRealFloatingType());
Eli Friedmand8bfe7f2008-08-22 00:06:13 +00001807 return FloatExprEvaluator(Info, Result).Visit(const_cast<Expr*>(E));
1808}
1809
Jay Foad4ba2a172011-01-12 09:06:06 +00001810static bool TryEvaluateBuiltinNaN(const ASTContext &Context,
John McCalldb7b72a2010-02-28 13:00:19 +00001811 QualType ResultTy,
1812 const Expr *Arg,
1813 bool SNaN,
1814 llvm::APFloat &Result) {
1815 const StringLiteral *S = dyn_cast<StringLiteral>(Arg->IgnoreParenCasts());
1816 if (!S) return false;
1817
1818 const llvm::fltSemantics &Sem = Context.getFloatTypeSemantics(ResultTy);
1819
1820 llvm::APInt fill;
1821
1822 // Treat empty strings as if they were zero.
1823 if (S->getString().empty())
1824 fill = llvm::APInt(32, 0);
1825 else if (S->getString().getAsInteger(0, fill))
1826 return false;
1827
1828 if (SNaN)
1829 Result = llvm::APFloat::getSNaN(Sem, false, &fill);
1830 else
1831 Result = llvm::APFloat::getQNaN(Sem, false, &fill);
1832 return true;
1833}
1834
Chris Lattner019f4e82008-10-06 05:28:25 +00001835bool FloatExprEvaluator::VisitCallExpr(const CallExpr *E) {
Douglas Gregor3c385e52009-02-14 18:57:46 +00001836 switch (E->isBuiltinCall(Info.Ctx)) {
Chris Lattner34a74ab2008-10-06 05:53:16 +00001837 default: return false;
Chris Lattner019f4e82008-10-06 05:28:25 +00001838 case Builtin::BI__builtin_huge_val:
1839 case Builtin::BI__builtin_huge_valf:
1840 case Builtin::BI__builtin_huge_vall:
1841 case Builtin::BI__builtin_inf:
1842 case Builtin::BI__builtin_inff:
Daniel Dunbar7cbed032008-10-14 05:41:12 +00001843 case Builtin::BI__builtin_infl: {
1844 const llvm::fltSemantics &Sem =
1845 Info.Ctx.getFloatTypeSemantics(E->getType());
Chris Lattner34a74ab2008-10-06 05:53:16 +00001846 Result = llvm::APFloat::getInf(Sem);
1847 return true;
Daniel Dunbar7cbed032008-10-14 05:41:12 +00001848 }
Mike Stump1eb44332009-09-09 15:08:12 +00001849
John McCalldb7b72a2010-02-28 13:00:19 +00001850 case Builtin::BI__builtin_nans:
1851 case Builtin::BI__builtin_nansf:
1852 case Builtin::BI__builtin_nansl:
1853 return TryEvaluateBuiltinNaN(Info.Ctx, E->getType(), E->getArg(0),
1854 true, Result);
1855
Chris Lattner9e621712008-10-06 06:31:58 +00001856 case Builtin::BI__builtin_nan:
1857 case Builtin::BI__builtin_nanf:
1858 case Builtin::BI__builtin_nanl:
Mike Stump4572bab2009-05-30 03:56:50 +00001859 // If this is __builtin_nan() turn this into a nan, otherwise we
Chris Lattner9e621712008-10-06 06:31:58 +00001860 // can't constant fold it.
John McCalldb7b72a2010-02-28 13:00:19 +00001861 return TryEvaluateBuiltinNaN(Info.Ctx, E->getType(), E->getArg(0),
1862 false, Result);
Daniel Dunbar5db4b3f2008-10-16 03:51:50 +00001863
1864 case Builtin::BI__builtin_fabs:
1865 case Builtin::BI__builtin_fabsf:
1866 case Builtin::BI__builtin_fabsl:
1867 if (!EvaluateFloat(E->getArg(0), Result, Info))
1868 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00001869
Daniel Dunbar5db4b3f2008-10-16 03:51:50 +00001870 if (Result.isNegative())
1871 Result.changeSign();
1872 return true;
1873
Mike Stump1eb44332009-09-09 15:08:12 +00001874 case Builtin::BI__builtin_copysign:
1875 case Builtin::BI__builtin_copysignf:
Daniel Dunbar5db4b3f2008-10-16 03:51:50 +00001876 case Builtin::BI__builtin_copysignl: {
1877 APFloat RHS(0.);
1878 if (!EvaluateFloat(E->getArg(0), Result, Info) ||
1879 !EvaluateFloat(E->getArg(1), RHS, Info))
1880 return false;
1881 Result.copySign(RHS);
1882 return true;
1883 }
Chris Lattner019f4e82008-10-06 05:28:25 +00001884 }
1885}
1886
John McCall189d6ef2010-10-09 01:34:31 +00001887bool FloatExprEvaluator::VisitDeclRefExpr(const DeclRefExpr *E) {
1888 const Decl *D = E->getDecl();
1889 if (!isa<VarDecl>(D) || isa<ParmVarDecl>(D)) return false;
1890 const VarDecl *VD = cast<VarDecl>(D);
1891
1892 // Require the qualifiers to be const and not volatile.
1893 CanQualType T = Info.Ctx.getCanonicalType(E->getType());
1894 if (!T.isConstQualified() || T.isVolatileQualified())
1895 return false;
1896
1897 const Expr *Init = VD->getAnyInitializer();
1898 if (!Init) return false;
1899
1900 if (APValue *V = VD->getEvaluatedValue()) {
1901 if (V->isFloat()) {
1902 Result = V->getFloat();
1903 return true;
1904 }
1905 return false;
1906 }
1907
1908 if (VD->isEvaluatingValue())
1909 return false;
1910
1911 VD->setEvaluatingValue();
1912
1913 Expr::EvalResult InitResult;
1914 if (Init->Evaluate(InitResult, Info.Ctx) && !InitResult.HasSideEffects &&
1915 InitResult.Val.isFloat()) {
1916 // Cache the evaluated value in the variable declaration.
1917 Result = InitResult.Val.getFloat();
1918 VD->setEvaluatedValue(InitResult.Val);
1919 return true;
1920 }
1921
1922 VD->setEvaluatedValue(APValue());
1923 return false;
1924}
1925
John McCallabd3a852010-05-07 22:08:54 +00001926bool FloatExprEvaluator::VisitUnaryReal(const UnaryOperator *E) {
Eli Friedman43efa312010-08-14 20:52:13 +00001927 if (E->getSubExpr()->getType()->isAnyComplexType()) {
1928 ComplexValue CV;
1929 if (!EvaluateComplex(E->getSubExpr(), CV, Info))
1930 return false;
1931 Result = CV.FloatReal;
1932 return true;
1933 }
1934
1935 return Visit(E->getSubExpr());
John McCallabd3a852010-05-07 22:08:54 +00001936}
1937
1938bool FloatExprEvaluator::VisitUnaryImag(const UnaryOperator *E) {
Eli Friedman43efa312010-08-14 20:52:13 +00001939 if (E->getSubExpr()->getType()->isAnyComplexType()) {
1940 ComplexValue CV;
1941 if (!EvaluateComplex(E->getSubExpr(), CV, Info))
1942 return false;
1943 Result = CV.FloatImag;
1944 return true;
1945 }
1946
1947 if (!E->getSubExpr()->isEvaluatable(Info.Ctx))
1948 Info.EvalResult.HasSideEffects = true;
1949 const llvm::fltSemantics &Sem = Info.Ctx.getFloatTypeSemantics(E->getType());
1950 Result = llvm::APFloat::getZero(Sem);
John McCallabd3a852010-05-07 22:08:54 +00001951 return true;
1952}
1953
Daniel Dunbar5db4b3f2008-10-16 03:51:50 +00001954bool FloatExprEvaluator::VisitUnaryOperator(const UnaryOperator *E) {
John McCall2de56d12010-08-25 11:45:40 +00001955 if (E->getOpcode() == UO_Deref)
Nuno Lopesa468d342008-11-19 17:44:31 +00001956 return false;
1957
Daniel Dunbar5db4b3f2008-10-16 03:51:50 +00001958 if (!EvaluateFloat(E->getSubExpr(), Result, Info))
1959 return false;
1960
1961 switch (E->getOpcode()) {
1962 default: return false;
John McCall2de56d12010-08-25 11:45:40 +00001963 case UO_Plus:
Daniel Dunbar5db4b3f2008-10-16 03:51:50 +00001964 return true;
John McCall2de56d12010-08-25 11:45:40 +00001965 case UO_Minus:
Daniel Dunbar5db4b3f2008-10-16 03:51:50 +00001966 Result.changeSign();
1967 return true;
1968 }
1969}
Chris Lattner019f4e82008-10-06 05:28:25 +00001970
Eli Friedmand8bfe7f2008-08-22 00:06:13 +00001971bool FloatExprEvaluator::VisitBinaryOperator(const BinaryOperator *E) {
John McCall2de56d12010-08-25 11:45:40 +00001972 if (E->getOpcode() == BO_Comma) {
Eli Friedman7f92f032009-11-16 04:25:37 +00001973 if (!EvaluateFloat(E->getRHS(), Result, Info))
1974 return false;
1975
1976 // If we can't evaluate the LHS, it might have side effects;
1977 // conservatively mark it.
1978 if (!E->getLHS()->isEvaluatable(Info.Ctx))
1979 Info.EvalResult.HasSideEffects = true;
1980
1981 return true;
1982 }
1983
Anders Carlsson96e93662010-10-31 01:21:47 +00001984 // We can't evaluate pointer-to-member operations.
1985 if (E->isPtrMemOp())
1986 return false;
1987
Eli Friedmand8bfe7f2008-08-22 00:06:13 +00001988 // FIXME: Diagnostics? I really don't understand how the warnings
1989 // and errors are supposed to work.
Daniel Dunbar5db4b3f2008-10-16 03:51:50 +00001990 APFloat RHS(0.0);
Eli Friedmand8bfe7f2008-08-22 00:06:13 +00001991 if (!EvaluateFloat(E->getLHS(), Result, Info))
1992 return false;
1993 if (!EvaluateFloat(E->getRHS(), RHS, Info))
1994 return false;
1995
1996 switch (E->getOpcode()) {
1997 default: return false;
John McCall2de56d12010-08-25 11:45:40 +00001998 case BO_Mul:
Eli Friedmand8bfe7f2008-08-22 00:06:13 +00001999 Result.multiply(RHS, APFloat::rmNearestTiesToEven);
2000 return true;
John McCall2de56d12010-08-25 11:45:40 +00002001 case BO_Add:
Eli Friedmand8bfe7f2008-08-22 00:06:13 +00002002 Result.add(RHS, APFloat::rmNearestTiesToEven);
2003 return true;
John McCall2de56d12010-08-25 11:45:40 +00002004 case BO_Sub:
Eli Friedmand8bfe7f2008-08-22 00:06:13 +00002005 Result.subtract(RHS, APFloat::rmNearestTiesToEven);
2006 return true;
John McCall2de56d12010-08-25 11:45:40 +00002007 case BO_Div:
Eli Friedmand8bfe7f2008-08-22 00:06:13 +00002008 Result.divide(RHS, APFloat::rmNearestTiesToEven);
2009 return true;
Eli Friedmand8bfe7f2008-08-22 00:06:13 +00002010 }
2011}
2012
2013bool FloatExprEvaluator::VisitFloatingLiteral(const FloatingLiteral *E) {
2014 Result = E->getValue();
2015 return true;
2016}
2017
Eli Friedman4efaa272008-11-12 09:44:48 +00002018bool FloatExprEvaluator::VisitCastExpr(CastExpr *E) {
2019 Expr* SubExpr = E->getSubExpr();
Mike Stump1eb44332009-09-09 15:08:12 +00002020
Douglas Gregor2ade35e2010-06-16 00:17:44 +00002021 if (SubExpr->getType()->isIntegralOrEnumerationType()) {
Eli Friedman4efaa272008-11-12 09:44:48 +00002022 APSInt IntResult;
Daniel Dunbar3f7d9952009-02-19 18:37:50 +00002023 if (!EvaluateInteger(SubExpr, IntResult, Info))
Eli Friedman4efaa272008-11-12 09:44:48 +00002024 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00002025 Result = HandleIntToFloatCast(E->getType(), SubExpr->getType(),
Daniel Dunbara2cfd342009-01-29 06:16:07 +00002026 IntResult, Info.Ctx);
Eli Friedman4efaa272008-11-12 09:44:48 +00002027 return true;
2028 }
2029 if (SubExpr->getType()->isRealFloatingType()) {
2030 if (!Visit(SubExpr))
2031 return false;
Daniel Dunbara2cfd342009-01-29 06:16:07 +00002032 Result = HandleFloatToFloatCast(E->getType(), SubExpr->getType(),
2033 Result, Info.Ctx);
Eli Friedman4efaa272008-11-12 09:44:48 +00002034 return true;
2035 }
John McCallf3ea8cf2010-11-14 08:17:51 +00002036
2037 if (E->getCastKind() == CK_FloatingComplexToReal) {
2038 ComplexValue V;
2039 if (!EvaluateComplex(SubExpr, V, Info))
2040 return false;
2041 Result = V.getComplexFloatReal();
2042 return true;
2043 }
Eli Friedman4efaa272008-11-12 09:44:48 +00002044
2045 return false;
2046}
2047
Douglas Gregored8abf12010-07-08 06:14:04 +00002048bool FloatExprEvaluator::VisitCXXScalarValueInitExpr(CXXScalarValueInitExpr *E) {
Eli Friedman4efaa272008-11-12 09:44:48 +00002049 Result = APFloat::getZero(Info.Ctx.getFloatTypeSemantics(E->getType()));
2050 return true;
2051}
2052
Eli Friedman67f85fc2009-12-04 02:12:53 +00002053bool FloatExprEvaluator::VisitConditionalOperator(ConditionalOperator *E) {
2054 bool Cond;
2055 if (!HandleConversionToBool(E->getCond(), Cond, Info))
2056 return false;
2057
2058 return Visit(Cond ? E->getTrueExpr() : E->getFalseExpr());
2059}
2060
Eli Friedmand8bfe7f2008-08-22 00:06:13 +00002061//===----------------------------------------------------------------------===//
Daniel Dunbara5fd07b2009-01-28 22:24:07 +00002062// Complex Evaluation (for float and integer)
Anders Carlsson9ad16ae2008-11-16 20:27:53 +00002063//===----------------------------------------------------------------------===//
2064
2065namespace {
Benjamin Kramer770b4a82009-11-28 19:03:38 +00002066class ComplexExprEvaluator
John McCallf4cf1a12010-05-07 17:22:02 +00002067 : public StmtVisitor<ComplexExprEvaluator, bool> {
Anders Carlsson9ad16ae2008-11-16 20:27:53 +00002068 EvalInfo &Info;
John McCallf4cf1a12010-05-07 17:22:02 +00002069 ComplexValue &Result;
Mike Stump1eb44332009-09-09 15:08:12 +00002070
Anders Carlsson9ad16ae2008-11-16 20:27:53 +00002071public:
John McCallf4cf1a12010-05-07 17:22:02 +00002072 ComplexExprEvaluator(EvalInfo &info, ComplexValue &Result)
2073 : Info(info), Result(Result) {}
Mike Stump1eb44332009-09-09 15:08:12 +00002074
Anders Carlsson9ad16ae2008-11-16 20:27:53 +00002075 //===--------------------------------------------------------------------===//
2076 // Visitor Methods
2077 //===--------------------------------------------------------------------===//
2078
John McCallf4cf1a12010-05-07 17:22:02 +00002079 bool VisitStmt(Stmt *S) {
2080 return false;
Anders Carlsson9ad16ae2008-11-16 20:27:53 +00002081 }
Mike Stump1eb44332009-09-09 15:08:12 +00002082
John McCallf4cf1a12010-05-07 17:22:02 +00002083 bool VisitParenExpr(ParenExpr *E) { return Visit(E->getSubExpr()); }
Anders Carlsson9ad16ae2008-11-16 20:27:53 +00002084
Eli Friedmanb2dc7f52010-08-16 23:27:44 +00002085 bool VisitImaginaryLiteral(ImaginaryLiteral *E);
Daniel Dunbara5fd07b2009-01-28 22:24:07 +00002086
Eli Friedmanb2dc7f52010-08-16 23:27:44 +00002087 bool VisitCastExpr(CastExpr *E);
Mike Stump1eb44332009-09-09 15:08:12 +00002088
John McCallf4cf1a12010-05-07 17:22:02 +00002089 bool VisitBinaryOperator(const BinaryOperator *E);
Abramo Bagnara96fc8e42010-12-11 16:05:48 +00002090 bool VisitUnaryOperator(const UnaryOperator *E);
2091 bool VisitConditionalOperator(const ConditionalOperator *E);
John McCallf4cf1a12010-05-07 17:22:02 +00002092 bool VisitChooseExpr(const ChooseExpr *E)
Eli Friedmanba98d6b2009-03-23 04:56:01 +00002093 { return Visit(E->getChosenSubExpr(Info.Ctx)); }
John McCallf4cf1a12010-05-07 17:22:02 +00002094 bool VisitUnaryExtension(const UnaryOperator *E)
Eli Friedmanba98d6b2009-03-23 04:56:01 +00002095 { return Visit(E->getSubExpr()); }
Abramo Bagnara96fc8e42010-12-11 16:05:48 +00002096 // FIXME Missing: ImplicitValueInitExpr
Anders Carlsson9ad16ae2008-11-16 20:27:53 +00002097};
2098} // end anonymous namespace
2099
John McCallf4cf1a12010-05-07 17:22:02 +00002100static bool EvaluateComplex(const Expr *E, ComplexValue &Result,
2101 EvalInfo &Info) {
John McCall7db7acb2010-05-07 05:46:35 +00002102 assert(E->getType()->isAnyComplexType());
John McCallf4cf1a12010-05-07 17:22:02 +00002103 return ComplexExprEvaluator(Info, Result).Visit(const_cast<Expr*>(E));
Anders Carlsson9ad16ae2008-11-16 20:27:53 +00002104}
2105
Eli Friedmanb2dc7f52010-08-16 23:27:44 +00002106bool ComplexExprEvaluator::VisitImaginaryLiteral(ImaginaryLiteral *E) {
2107 Expr* SubExpr = E->getSubExpr();
2108
2109 if (SubExpr->getType()->isRealFloatingType()) {
2110 Result.makeComplexFloat();
2111 APFloat &Imag = Result.FloatImag;
2112 if (!EvaluateFloat(SubExpr, Imag, Info))
2113 return false;
2114
2115 Result.FloatReal = APFloat(Imag.getSemantics());
2116 return true;
2117 } else {
2118 assert(SubExpr->getType()->isIntegerType() &&
2119 "Unexpected imaginary literal.");
2120
2121 Result.makeComplexInt();
2122 APSInt &Imag = Result.IntImag;
2123 if (!EvaluateInteger(SubExpr, Imag, Info))
2124 return false;
2125
2126 Result.IntReal = APSInt(Imag.getBitWidth(), !Imag.isSigned());
2127 return true;
2128 }
2129}
2130
2131bool ComplexExprEvaluator::VisitCastExpr(CastExpr *E) {
Eli Friedmanb2dc7f52010-08-16 23:27:44 +00002132
John McCall8786da72010-12-14 17:51:41 +00002133 switch (E->getCastKind()) {
2134 case CK_BitCast:
2135 case CK_LValueBitCast:
2136 case CK_BaseToDerived:
2137 case CK_DerivedToBase:
2138 case CK_UncheckedDerivedToBase:
2139 case CK_Dynamic:
2140 case CK_ToUnion:
2141 case CK_ArrayToPointerDecay:
2142 case CK_FunctionToPointerDecay:
2143 case CK_NullToPointer:
2144 case CK_NullToMemberPointer:
2145 case CK_BaseToDerivedMemberPointer:
2146 case CK_DerivedToBaseMemberPointer:
2147 case CK_MemberPointerToBoolean:
2148 case CK_ConstructorConversion:
2149 case CK_IntegralToPointer:
2150 case CK_PointerToIntegral:
2151 case CK_PointerToBoolean:
2152 case CK_ToVoid:
2153 case CK_VectorSplat:
2154 case CK_IntegralCast:
2155 case CK_IntegralToBoolean:
2156 case CK_IntegralToFloating:
2157 case CK_FloatingToIntegral:
2158 case CK_FloatingToBoolean:
2159 case CK_FloatingCast:
2160 case CK_AnyPointerToObjCPointerCast:
2161 case CK_AnyPointerToBlockPointerCast:
2162 case CK_ObjCObjectLValueCast:
2163 case CK_FloatingComplexToReal:
2164 case CK_FloatingComplexToBoolean:
2165 case CK_IntegralComplexToReal:
2166 case CK_IntegralComplexToBoolean:
2167 llvm_unreachable("invalid cast kind for complex value");
John McCall2bb5d002010-11-13 09:02:35 +00002168
John McCall8786da72010-12-14 17:51:41 +00002169 case CK_LValueToRValue:
2170 case CK_NoOp:
2171 return Visit(E->getSubExpr());
2172
2173 case CK_Dependent:
2174 case CK_GetObjCProperty:
2175 case CK_UserDefinedConversion:
2176 return false;
2177
2178 case CK_FloatingRealToComplex: {
Eli Friedmanb2dc7f52010-08-16 23:27:44 +00002179 APFloat &Real = Result.FloatReal;
John McCall8786da72010-12-14 17:51:41 +00002180 if (!EvaluateFloat(E->getSubExpr(), Real, Info))
Eli Friedmanb2dc7f52010-08-16 23:27:44 +00002181 return false;
2182
John McCall8786da72010-12-14 17:51:41 +00002183 Result.makeComplexFloat();
2184 Result.FloatImag = APFloat(Real.getSemantics());
2185 return true;
Eli Friedmanb2dc7f52010-08-16 23:27:44 +00002186 }
2187
John McCall8786da72010-12-14 17:51:41 +00002188 case CK_FloatingComplexCast: {
2189 if (!Visit(E->getSubExpr()))
2190 return false;
2191
2192 QualType To = E->getType()->getAs<ComplexType>()->getElementType();
2193 QualType From
2194 = E->getSubExpr()->getType()->getAs<ComplexType>()->getElementType();
2195
2196 Result.FloatReal
2197 = HandleFloatToFloatCast(To, From, Result.FloatReal, Info.Ctx);
2198 Result.FloatImag
2199 = HandleFloatToFloatCast(To, From, Result.FloatImag, Info.Ctx);
2200 return true;
2201 }
2202
2203 case CK_FloatingComplexToIntegralComplex: {
2204 if (!Visit(E->getSubExpr()))
2205 return false;
2206
2207 QualType To = E->getType()->getAs<ComplexType>()->getElementType();
2208 QualType From
2209 = E->getSubExpr()->getType()->getAs<ComplexType>()->getElementType();
2210 Result.makeComplexInt();
2211 Result.IntReal = HandleFloatToIntCast(To, From, Result.FloatReal, Info.Ctx);
2212 Result.IntImag = HandleFloatToIntCast(To, From, Result.FloatImag, Info.Ctx);
2213 return true;
2214 }
2215
2216 case CK_IntegralRealToComplex: {
2217 APSInt &Real = Result.IntReal;
2218 if (!EvaluateInteger(E->getSubExpr(), Real, Info))
2219 return false;
2220
2221 Result.makeComplexInt();
2222 Result.IntImag = APSInt(Real.getBitWidth(), !Real.isSigned());
2223 return true;
2224 }
2225
2226 case CK_IntegralComplexCast: {
2227 if (!Visit(E->getSubExpr()))
2228 return false;
2229
2230 QualType To = E->getType()->getAs<ComplexType>()->getElementType();
2231 QualType From
2232 = E->getSubExpr()->getType()->getAs<ComplexType>()->getElementType();
2233
2234 Result.IntReal = HandleIntToIntCast(To, From, Result.IntReal, Info.Ctx);
2235 Result.IntImag = HandleIntToIntCast(To, From, Result.IntImag, Info.Ctx);
2236 return true;
2237 }
2238
2239 case CK_IntegralComplexToFloatingComplex: {
2240 if (!Visit(E->getSubExpr()))
2241 return false;
2242
2243 QualType To = E->getType()->getAs<ComplexType>()->getElementType();
2244 QualType From
2245 = E->getSubExpr()->getType()->getAs<ComplexType>()->getElementType();
2246 Result.makeComplexFloat();
2247 Result.FloatReal = HandleIntToFloatCast(To, From, Result.IntReal, Info.Ctx);
2248 Result.FloatImag = HandleIntToFloatCast(To, From, Result.IntImag, Info.Ctx);
2249 return true;
2250 }
2251 }
2252
2253 llvm_unreachable("unknown cast resulting in complex value");
Eli Friedmanb2dc7f52010-08-16 23:27:44 +00002254 return false;
2255}
2256
John McCallf4cf1a12010-05-07 17:22:02 +00002257bool ComplexExprEvaluator::VisitBinaryOperator(const BinaryOperator *E) {
Abramo Bagnara96fc8e42010-12-11 16:05:48 +00002258 if (E->getOpcode() == BO_Comma) {
2259 if (!Visit(E->getRHS()))
2260 return false;
2261
2262 // If we can't evaluate the LHS, it might have side effects;
2263 // conservatively mark it.
2264 if (!E->getLHS()->isEvaluatable(Info.Ctx))
2265 Info.EvalResult.HasSideEffects = true;
2266
2267 return true;
2268 }
John McCallf4cf1a12010-05-07 17:22:02 +00002269 if (!Visit(E->getLHS()))
2270 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00002271
John McCallf4cf1a12010-05-07 17:22:02 +00002272 ComplexValue RHS;
Daniel Dunbara5fd07b2009-01-28 22:24:07 +00002273 if (!EvaluateComplex(E->getRHS(), RHS, Info))
John McCallf4cf1a12010-05-07 17:22:02 +00002274 return false;
Daniel Dunbara5fd07b2009-01-28 22:24:07 +00002275
Daniel Dunbar3f279872009-01-29 01:32:56 +00002276 assert(Result.isComplexFloat() == RHS.isComplexFloat() &&
2277 "Invalid operands to binary operator.");
Anders Carlssonccc3fce2008-11-16 21:51:21 +00002278 switch (E->getOpcode()) {
John McCallf4cf1a12010-05-07 17:22:02 +00002279 default: return false;
John McCall2de56d12010-08-25 11:45:40 +00002280 case BO_Add:
Daniel Dunbara5fd07b2009-01-28 22:24:07 +00002281 if (Result.isComplexFloat()) {
2282 Result.getComplexFloatReal().add(RHS.getComplexFloatReal(),
2283 APFloat::rmNearestTiesToEven);
2284 Result.getComplexFloatImag().add(RHS.getComplexFloatImag(),
2285 APFloat::rmNearestTiesToEven);
2286 } else {
2287 Result.getComplexIntReal() += RHS.getComplexIntReal();
2288 Result.getComplexIntImag() += RHS.getComplexIntImag();
2289 }
Daniel Dunbar3f279872009-01-29 01:32:56 +00002290 break;
John McCall2de56d12010-08-25 11:45:40 +00002291 case BO_Sub:
Daniel Dunbara5fd07b2009-01-28 22:24:07 +00002292 if (Result.isComplexFloat()) {
2293 Result.getComplexFloatReal().subtract(RHS.getComplexFloatReal(),
2294 APFloat::rmNearestTiesToEven);
2295 Result.getComplexFloatImag().subtract(RHS.getComplexFloatImag(),
2296 APFloat::rmNearestTiesToEven);
2297 } else {
2298 Result.getComplexIntReal() -= RHS.getComplexIntReal();
2299 Result.getComplexIntImag() -= RHS.getComplexIntImag();
2300 }
Daniel Dunbar3f279872009-01-29 01:32:56 +00002301 break;
John McCall2de56d12010-08-25 11:45:40 +00002302 case BO_Mul:
Daniel Dunbar3f279872009-01-29 01:32:56 +00002303 if (Result.isComplexFloat()) {
John McCallf4cf1a12010-05-07 17:22:02 +00002304 ComplexValue LHS = Result;
Daniel Dunbar3f279872009-01-29 01:32:56 +00002305 APFloat &LHS_r = LHS.getComplexFloatReal();
2306 APFloat &LHS_i = LHS.getComplexFloatImag();
2307 APFloat &RHS_r = RHS.getComplexFloatReal();
2308 APFloat &RHS_i = RHS.getComplexFloatImag();
Mike Stump1eb44332009-09-09 15:08:12 +00002309
Daniel Dunbar3f279872009-01-29 01:32:56 +00002310 APFloat Tmp = LHS_r;
2311 Tmp.multiply(RHS_r, APFloat::rmNearestTiesToEven);
2312 Result.getComplexFloatReal() = Tmp;
2313 Tmp = LHS_i;
2314 Tmp.multiply(RHS_i, APFloat::rmNearestTiesToEven);
2315 Result.getComplexFloatReal().subtract(Tmp, APFloat::rmNearestTiesToEven);
2316
2317 Tmp = LHS_r;
2318 Tmp.multiply(RHS_i, APFloat::rmNearestTiesToEven);
2319 Result.getComplexFloatImag() = Tmp;
2320 Tmp = LHS_i;
2321 Tmp.multiply(RHS_r, APFloat::rmNearestTiesToEven);
2322 Result.getComplexFloatImag().add(Tmp, APFloat::rmNearestTiesToEven);
2323 } else {
John McCallf4cf1a12010-05-07 17:22:02 +00002324 ComplexValue LHS = Result;
Mike Stump1eb44332009-09-09 15:08:12 +00002325 Result.getComplexIntReal() =
Daniel Dunbar3f279872009-01-29 01:32:56 +00002326 (LHS.getComplexIntReal() * RHS.getComplexIntReal() -
2327 LHS.getComplexIntImag() * RHS.getComplexIntImag());
Mike Stump1eb44332009-09-09 15:08:12 +00002328 Result.getComplexIntImag() =
Daniel Dunbar3f279872009-01-29 01:32:56 +00002329 (LHS.getComplexIntReal() * RHS.getComplexIntImag() +
2330 LHS.getComplexIntImag() * RHS.getComplexIntReal());
2331 }
2332 break;
Abramo Bagnara96fc8e42010-12-11 16:05:48 +00002333 case BO_Div:
2334 if (Result.isComplexFloat()) {
2335 ComplexValue LHS = Result;
2336 APFloat &LHS_r = LHS.getComplexFloatReal();
2337 APFloat &LHS_i = LHS.getComplexFloatImag();
2338 APFloat &RHS_r = RHS.getComplexFloatReal();
2339 APFloat &RHS_i = RHS.getComplexFloatImag();
2340 APFloat &Res_r = Result.getComplexFloatReal();
2341 APFloat &Res_i = Result.getComplexFloatImag();
2342
2343 APFloat Den = RHS_r;
2344 Den.multiply(RHS_r, APFloat::rmNearestTiesToEven);
2345 APFloat Tmp = RHS_i;
2346 Tmp.multiply(RHS_i, APFloat::rmNearestTiesToEven);
2347 Den.add(Tmp, APFloat::rmNearestTiesToEven);
2348
2349 Res_r = LHS_r;
2350 Res_r.multiply(RHS_r, APFloat::rmNearestTiesToEven);
2351 Tmp = LHS_i;
2352 Tmp.multiply(RHS_i, APFloat::rmNearestTiesToEven);
2353 Res_r.add(Tmp, APFloat::rmNearestTiesToEven);
2354 Res_r.divide(Den, APFloat::rmNearestTiesToEven);
2355
2356 Res_i = LHS_i;
2357 Res_i.multiply(RHS_r, APFloat::rmNearestTiesToEven);
2358 Tmp = LHS_r;
2359 Tmp.multiply(RHS_i, APFloat::rmNearestTiesToEven);
2360 Res_i.subtract(Tmp, APFloat::rmNearestTiesToEven);
2361 Res_i.divide(Den, APFloat::rmNearestTiesToEven);
2362 } else {
2363 if (RHS.getComplexIntReal() == 0 && RHS.getComplexIntImag() == 0) {
2364 // FIXME: what about diagnostics?
2365 return false;
2366 }
2367 ComplexValue LHS = Result;
2368 APSInt Den = RHS.getComplexIntReal() * RHS.getComplexIntReal() +
2369 RHS.getComplexIntImag() * RHS.getComplexIntImag();
2370 Result.getComplexIntReal() =
2371 (LHS.getComplexIntReal() * RHS.getComplexIntReal() +
2372 LHS.getComplexIntImag() * RHS.getComplexIntImag()) / Den;
2373 Result.getComplexIntImag() =
2374 (LHS.getComplexIntImag() * RHS.getComplexIntReal() -
2375 LHS.getComplexIntReal() * RHS.getComplexIntImag()) / Den;
2376 }
2377 break;
Anders Carlssonccc3fce2008-11-16 21:51:21 +00002378 }
2379
John McCallf4cf1a12010-05-07 17:22:02 +00002380 return true;
Anders Carlssonccc3fce2008-11-16 21:51:21 +00002381}
2382
Abramo Bagnara96fc8e42010-12-11 16:05:48 +00002383bool ComplexExprEvaluator::VisitUnaryOperator(const UnaryOperator *E) {
2384 // Get the operand value into 'Result'.
2385 if (!Visit(E->getSubExpr()))
2386 return false;
2387
2388 switch (E->getOpcode()) {
2389 default:
2390 // FIXME: what about diagnostics?
2391 return false;
2392 case UO_Extension:
2393 return true;
2394 case UO_Plus:
2395 // The result is always just the subexpr.
2396 return true;
2397 case UO_Minus:
2398 if (Result.isComplexFloat()) {
2399 Result.getComplexFloatReal().changeSign();
2400 Result.getComplexFloatImag().changeSign();
2401 }
2402 else {
2403 Result.getComplexIntReal() = -Result.getComplexIntReal();
2404 Result.getComplexIntImag() = -Result.getComplexIntImag();
2405 }
2406 return true;
2407 case UO_Not:
2408 if (Result.isComplexFloat())
2409 Result.getComplexFloatImag().changeSign();
2410 else
2411 Result.getComplexIntImag() = -Result.getComplexIntImag();
2412 return true;
2413 }
2414}
2415
2416bool ComplexExprEvaluator::VisitConditionalOperator(const ConditionalOperator *E) {
2417 bool Cond;
2418 if (!HandleConversionToBool(E->getCond(), Cond, Info))
2419 return false;
2420
2421 return Visit(Cond ? E->getTrueExpr() : E->getFalseExpr());
2422}
2423
Anders Carlsson9ad16ae2008-11-16 20:27:53 +00002424//===----------------------------------------------------------------------===//
Chris Lattner6ee7aa12008-11-16 21:24:15 +00002425// Top level Expr::Evaluate method.
Chris Lattnerf5eeb052008-07-11 18:11:29 +00002426//===----------------------------------------------------------------------===//
2427
John McCall42c8f872010-05-10 23:27:23 +00002428/// Evaluate - Return true if this is a constant which we can fold using
2429/// any crazy technique (that has nothing to do with language standards) that
2430/// we want to. If this function returns true, it returns the folded constant
2431/// in Result.
Jay Foad4ba2a172011-01-12 09:06:06 +00002432bool Expr::Evaluate(EvalResult &Result, const ASTContext &Ctx) const {
John McCall42c8f872010-05-10 23:27:23 +00002433 const Expr *E = this;
2434 EvalInfo Info(Ctx, Result);
John McCallefdb83e2010-05-07 21:00:08 +00002435 if (E->getType()->isVectorType()) {
2436 if (!EvaluateVector(E, Info.EvalResult.Val, Info))
Nate Begeman59b5da62009-01-18 03:20:47 +00002437 return false;
John McCallefdb83e2010-05-07 21:00:08 +00002438 } else if (E->getType()->isIntegerType()) {
2439 if (!IntExprEvaluator(Info, Info.EvalResult.Val).Visit(const_cast<Expr*>(E)))
Anders Carlsson6dde0d52008-11-22 21:50:49 +00002440 return false;
John McCall0f2b6922010-07-07 05:08:32 +00002441 if (Result.Val.isLValue() && !IsGlobalLValue(Result.Val.getLValueBase()))
2442 return false;
John McCallefdb83e2010-05-07 21:00:08 +00002443 } else if (E->getType()->hasPointerRepresentation()) {
2444 LValue LV;
2445 if (!EvaluatePointer(E, LV, Info))
Anders Carlsson6dde0d52008-11-22 21:50:49 +00002446 return false;
Abramo Bagnarae17a6432010-05-14 17:07:14 +00002447 if (!IsGlobalLValue(LV.Base))
John McCall42c8f872010-05-10 23:27:23 +00002448 return false;
John McCallefdb83e2010-05-07 21:00:08 +00002449 LV.moveInto(Info.EvalResult.Val);
2450 } else if (E->getType()->isRealFloatingType()) {
2451 llvm::APFloat F(0.0);
2452 if (!EvaluateFloat(E, F, Info))
Anders Carlsson6dde0d52008-11-22 21:50:49 +00002453 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00002454
John McCallefdb83e2010-05-07 21:00:08 +00002455 Info.EvalResult.Val = APValue(F);
2456 } else if (E->getType()->isAnyComplexType()) {
2457 ComplexValue C;
2458 if (!EvaluateComplex(E, C, Info))
Anders Carlsson6dde0d52008-11-22 21:50:49 +00002459 return false;
John McCallefdb83e2010-05-07 21:00:08 +00002460 C.moveInto(Info.EvalResult.Val);
Daniel Dunbara5fd07b2009-01-28 22:24:07 +00002461 } else
Anders Carlsson9d4c1572008-11-22 22:56:32 +00002462 return false;
Anders Carlsson6dde0d52008-11-22 21:50:49 +00002463
Anders Carlsson5b45d4e2008-11-30 16:58:53 +00002464 return true;
2465}
2466
Jay Foad4ba2a172011-01-12 09:06:06 +00002467bool Expr::EvaluateAsBooleanCondition(bool &Result,
2468 const ASTContext &Ctx) const {
John McCallcd7a4452010-01-05 23:42:56 +00002469 EvalResult Scratch;
2470 EvalInfo Info(Ctx, Scratch);
2471
2472 return HandleConversionToBool(this, Result, Info);
2473}
2474
Jay Foad4ba2a172011-01-12 09:06:06 +00002475bool Expr::EvaluateAsLValue(EvalResult &Result, const ASTContext &Ctx) const {
Anders Carlsson1b782762009-04-10 04:54:13 +00002476 EvalInfo Info(Ctx, Result);
2477
John McCallefdb83e2010-05-07 21:00:08 +00002478 LValue LV;
John McCall42c8f872010-05-10 23:27:23 +00002479 if (EvaluateLValue(this, LV, Info) &&
2480 !Result.HasSideEffects &&
Abramo Bagnarae17a6432010-05-14 17:07:14 +00002481 IsGlobalLValue(LV.Base)) {
2482 LV.moveInto(Result.Val);
2483 return true;
2484 }
2485 return false;
2486}
2487
Jay Foad4ba2a172011-01-12 09:06:06 +00002488bool Expr::EvaluateAsAnyLValue(EvalResult &Result,
2489 const ASTContext &Ctx) const {
Abramo Bagnarae17a6432010-05-14 17:07:14 +00002490 EvalInfo Info(Ctx, Result);
2491
2492 LValue LV;
2493 if (EvaluateLValue(this, LV, Info)) {
John McCallefdb83e2010-05-07 21:00:08 +00002494 LV.moveInto(Result.Val);
2495 return true;
2496 }
2497 return false;
Eli Friedmanb2f295c2009-09-13 10:17:44 +00002498}
2499
Chris Lattner6ee7aa12008-11-16 21:24:15 +00002500/// isEvaluatable - Call Evaluate to see if this expression can be constant
Chris Lattner45b6b9d2008-10-06 06:49:02 +00002501/// folded, but discard the result.
Jay Foad4ba2a172011-01-12 09:06:06 +00002502bool Expr::isEvaluatable(const ASTContext &Ctx) const {
Anders Carlsson4fdfb092008-12-01 06:44:05 +00002503 EvalResult Result;
2504 return Evaluate(Result, Ctx) && !Result.HasSideEffects;
Chris Lattner45b6b9d2008-10-06 06:49:02 +00002505}
Anders Carlsson51fe9962008-11-22 21:04:56 +00002506
Jay Foad4ba2a172011-01-12 09:06:06 +00002507bool Expr::HasSideEffects(const ASTContext &Ctx) const {
Fariborz Jahanian393c2472009-11-05 18:03:03 +00002508 Expr::EvalResult Result;
2509 EvalInfo Info(Ctx, Result);
2510 return HasSideEffect(Info).Visit(const_cast<Expr*>(this));
2511}
2512
Jay Foad4ba2a172011-01-12 09:06:06 +00002513APSInt Expr::EvaluateAsInt(const ASTContext &Ctx) const {
Anders Carlsson1c0cfd42008-12-19 20:58:05 +00002514 EvalResult EvalResult;
2515 bool Result = Evaluate(EvalResult, Ctx);
Jeffrey Yasskinc6ed7292010-12-23 01:01:28 +00002516 (void)Result;
Anders Carlsson51fe9962008-11-22 21:04:56 +00002517 assert(Result && "Could not evaluate expression");
Anders Carlsson1c0cfd42008-12-19 20:58:05 +00002518 assert(EvalResult.Val.isInt() && "Expression did not evaluate to integer");
Anders Carlsson51fe9962008-11-22 21:04:56 +00002519
Anders Carlsson1c0cfd42008-12-19 20:58:05 +00002520 return EvalResult.Val.getInt();
Anders Carlsson51fe9962008-11-22 21:04:56 +00002521}
John McCalld905f5a2010-05-07 05:32:02 +00002522
Abramo Bagnarae17a6432010-05-14 17:07:14 +00002523 bool Expr::EvalResult::isGlobalLValue() const {
2524 assert(Val.isLValue());
2525 return IsGlobalLValue(Val.getLValueBase());
2526 }
2527
2528
John McCalld905f5a2010-05-07 05:32:02 +00002529/// isIntegerConstantExpr - this recursive routine will test if an expression is
2530/// an integer constant expression.
2531
2532/// FIXME: Pass up a reason why! Invalid operation in i-c-e, division by zero,
2533/// comma, etc
2534///
2535/// FIXME: Handle offsetof. Two things to do: Handle GCC's __builtin_offsetof
2536/// to support gcc 4.0+ and handle the idiom GCC recognizes with a null pointer
2537/// cast+dereference.
2538
2539// CheckICE - This function does the fundamental ICE checking: the returned
2540// ICEDiag contains a Val of 0, 1, or 2, and a possibly null SourceLocation.
2541// Note that to reduce code duplication, this helper does no evaluation
2542// itself; the caller checks whether the expression is evaluatable, and
2543// in the rare cases where CheckICE actually cares about the evaluated
2544// value, it calls into Evalute.
2545//
2546// Meanings of Val:
2547// 0: This expression is an ICE if it can be evaluated by Evaluate.
2548// 1: This expression is not an ICE, but if it isn't evaluated, it's
2549// a legal subexpression for an ICE. This return value is used to handle
2550// the comma operator in C99 mode.
2551// 2: This expression is not an ICE, and is not a legal subexpression for one.
2552
Dan Gohman3c46e8d2010-07-26 21:25:24 +00002553namespace {
2554
John McCalld905f5a2010-05-07 05:32:02 +00002555struct ICEDiag {
2556 unsigned Val;
2557 SourceLocation Loc;
2558
2559 public:
2560 ICEDiag(unsigned v, SourceLocation l) : Val(v), Loc(l) {}
2561 ICEDiag() : Val(0) {}
2562};
2563
Dan Gohman3c46e8d2010-07-26 21:25:24 +00002564}
2565
2566static ICEDiag NoDiag() { return ICEDiag(); }
John McCalld905f5a2010-05-07 05:32:02 +00002567
2568static ICEDiag CheckEvalInICE(const Expr* E, ASTContext &Ctx) {
2569 Expr::EvalResult EVResult;
2570 if (!E->Evaluate(EVResult, Ctx) || EVResult.HasSideEffects ||
2571 !EVResult.Val.isInt()) {
2572 return ICEDiag(2, E->getLocStart());
2573 }
2574 return NoDiag();
2575}
2576
2577static ICEDiag CheckICE(const Expr* E, ASTContext &Ctx) {
2578 assert(!E->isValueDependent() && "Should not see value dependent exprs!");
Douglas Gregor2ade35e2010-06-16 00:17:44 +00002579 if (!E->getType()->isIntegralOrEnumerationType()) {
John McCalld905f5a2010-05-07 05:32:02 +00002580 return ICEDiag(2, E->getLocStart());
2581 }
2582
2583 switch (E->getStmtClass()) {
2584#define STMT(Node, Base) case Expr::Node##Class:
2585#define EXPR(Node, Base)
2586#include "clang/AST/StmtNodes.inc"
2587 case Expr::PredefinedExprClass:
2588 case Expr::FloatingLiteralClass:
2589 case Expr::ImaginaryLiteralClass:
2590 case Expr::StringLiteralClass:
2591 case Expr::ArraySubscriptExprClass:
2592 case Expr::MemberExprClass:
2593 case Expr::CompoundAssignOperatorClass:
2594 case Expr::CompoundLiteralExprClass:
2595 case Expr::ExtVectorElementExprClass:
2596 case Expr::InitListExprClass:
2597 case Expr::DesignatedInitExprClass:
2598 case Expr::ImplicitValueInitExprClass:
2599 case Expr::ParenListExprClass:
2600 case Expr::VAArgExprClass:
2601 case Expr::AddrLabelExprClass:
2602 case Expr::StmtExprClass:
2603 case Expr::CXXMemberCallExprClass:
2604 case Expr::CXXDynamicCastExprClass:
2605 case Expr::CXXTypeidExprClass:
Francois Pichet9be88402010-09-08 23:47:05 +00002606 case Expr::CXXUuidofExprClass:
John McCalld905f5a2010-05-07 05:32:02 +00002607 case Expr::CXXNullPtrLiteralExprClass:
2608 case Expr::CXXThisExprClass:
2609 case Expr::CXXThrowExprClass:
2610 case Expr::CXXNewExprClass:
2611 case Expr::CXXDeleteExprClass:
2612 case Expr::CXXPseudoDestructorExprClass:
2613 case Expr::UnresolvedLookupExprClass:
2614 case Expr::DependentScopeDeclRefExprClass:
2615 case Expr::CXXConstructExprClass:
2616 case Expr::CXXBindTemporaryExprClass:
John McCall4765fa02010-12-06 08:20:24 +00002617 case Expr::ExprWithCleanupsClass:
John McCalld905f5a2010-05-07 05:32:02 +00002618 case Expr::CXXTemporaryObjectExprClass:
2619 case Expr::CXXUnresolvedConstructExprClass:
2620 case Expr::CXXDependentScopeMemberExprClass:
2621 case Expr::UnresolvedMemberExprClass:
2622 case Expr::ObjCStringLiteralClass:
2623 case Expr::ObjCEncodeExprClass:
2624 case Expr::ObjCMessageExprClass:
2625 case Expr::ObjCSelectorExprClass:
2626 case Expr::ObjCProtocolExprClass:
2627 case Expr::ObjCIvarRefExprClass:
2628 case Expr::ObjCPropertyRefExprClass:
John McCalld905f5a2010-05-07 05:32:02 +00002629 case Expr::ObjCIsaExprClass:
2630 case Expr::ShuffleVectorExprClass:
2631 case Expr::BlockExprClass:
2632 case Expr::BlockDeclRefExprClass:
2633 case Expr::NoStmtClass:
John McCall7cd7d1a2010-11-15 23:31:06 +00002634 case Expr::OpaqueValueExprClass:
Douglas Gregorbe230c32011-01-03 17:17:50 +00002635 case Expr::PackExpansionExprClass:
Douglas Gregorc7793c72011-01-15 01:15:58 +00002636 case Expr::SubstNonTypeTemplateParmPackExprClass:
John McCalld905f5a2010-05-07 05:32:02 +00002637 return ICEDiag(2, E->getLocStart());
2638
Douglas Gregoree8aff02011-01-04 17:33:58 +00002639 case Expr::SizeOfPackExprClass:
John McCalld905f5a2010-05-07 05:32:02 +00002640 case Expr::GNUNullExprClass:
2641 // GCC considers the GNU __null value to be an integral constant expression.
2642 return NoDiag();
2643
2644 case Expr::ParenExprClass:
2645 return CheckICE(cast<ParenExpr>(E)->getSubExpr(), Ctx);
2646 case Expr::IntegerLiteralClass:
2647 case Expr::CharacterLiteralClass:
2648 case Expr::CXXBoolLiteralExprClass:
Douglas Gregored8abf12010-07-08 06:14:04 +00002649 case Expr::CXXScalarValueInitExprClass:
John McCalld905f5a2010-05-07 05:32:02 +00002650 case Expr::UnaryTypeTraitExprClass:
Francois Pichet6ad6f282010-12-07 00:08:36 +00002651 case Expr::BinaryTypeTraitExprClass:
Sebastian Redl2e156222010-09-10 20:55:43 +00002652 case Expr::CXXNoexceptExprClass:
John McCalld905f5a2010-05-07 05:32:02 +00002653 return NoDiag();
2654 case Expr::CallExprClass:
Sean Hunt6cf75022010-08-30 17:47:05 +00002655 case Expr::CXXOperatorCallExprClass: {
John McCalld905f5a2010-05-07 05:32:02 +00002656 const CallExpr *CE = cast<CallExpr>(E);
2657 if (CE->isBuiltinCall(Ctx))
2658 return CheckEvalInICE(E, Ctx);
2659 return ICEDiag(2, E->getLocStart());
2660 }
2661 case Expr::DeclRefExprClass:
2662 if (isa<EnumConstantDecl>(cast<DeclRefExpr>(E)->getDecl()))
2663 return NoDiag();
2664 if (Ctx.getLangOptions().CPlusPlus &&
2665 E->getType().getCVRQualifiers() == Qualifiers::Const) {
2666 const NamedDecl *D = cast<DeclRefExpr>(E)->getDecl();
2667
2668 // Parameter variables are never constants. Without this check,
2669 // getAnyInitializer() can find a default argument, which leads
2670 // to chaos.
2671 if (isa<ParmVarDecl>(D))
2672 return ICEDiag(2, cast<DeclRefExpr>(E)->getLocation());
2673
2674 // C++ 7.1.5.1p2
2675 // A variable of non-volatile const-qualified integral or enumeration
2676 // type initialized by an ICE can be used in ICEs.
2677 if (const VarDecl *Dcl = dyn_cast<VarDecl>(D)) {
2678 Qualifiers Quals = Ctx.getCanonicalType(Dcl->getType()).getQualifiers();
2679 if (Quals.hasVolatile() || !Quals.hasConst())
2680 return ICEDiag(2, cast<DeclRefExpr>(E)->getLocation());
2681
2682 // Look for a declaration of this variable that has an initializer.
2683 const VarDecl *ID = 0;
2684 const Expr *Init = Dcl->getAnyInitializer(ID);
2685 if (Init) {
2686 if (ID->isInitKnownICE()) {
2687 // We have already checked whether this subexpression is an
2688 // integral constant expression.
2689 if (ID->isInitICE())
2690 return NoDiag();
2691 else
2692 return ICEDiag(2, cast<DeclRefExpr>(E)->getLocation());
2693 }
2694
2695 // It's an ICE whether or not the definition we found is
2696 // out-of-line. See DR 721 and the discussion in Clang PR
2697 // 6206 for details.
2698
2699 if (Dcl->isCheckingICE()) {
2700 return ICEDiag(2, cast<DeclRefExpr>(E)->getLocation());
2701 }
2702
2703 Dcl->setCheckingICE();
2704 ICEDiag Result = CheckICE(Init, Ctx);
2705 // Cache the result of the ICE test.
2706 Dcl->setInitKnownICE(Result.Val == 0);
2707 return Result;
2708 }
2709 }
2710 }
2711 return ICEDiag(2, E->getLocStart());
2712 case Expr::UnaryOperatorClass: {
2713 const UnaryOperator *Exp = cast<UnaryOperator>(E);
2714 switch (Exp->getOpcode()) {
John McCall2de56d12010-08-25 11:45:40 +00002715 case UO_PostInc:
2716 case UO_PostDec:
2717 case UO_PreInc:
2718 case UO_PreDec:
2719 case UO_AddrOf:
2720 case UO_Deref:
John McCalld905f5a2010-05-07 05:32:02 +00002721 return ICEDiag(2, E->getLocStart());
John McCall2de56d12010-08-25 11:45:40 +00002722 case UO_Extension:
2723 case UO_LNot:
2724 case UO_Plus:
2725 case UO_Minus:
2726 case UO_Not:
2727 case UO_Real:
2728 case UO_Imag:
John McCalld905f5a2010-05-07 05:32:02 +00002729 return CheckICE(Exp->getSubExpr(), Ctx);
John McCalld905f5a2010-05-07 05:32:02 +00002730 }
2731
2732 // OffsetOf falls through here.
2733 }
2734 case Expr::OffsetOfExprClass: {
2735 // Note that per C99, offsetof must be an ICE. And AFAIK, using
2736 // Evaluate matches the proposed gcc behavior for cases like
2737 // "offsetof(struct s{int x[4];}, x[!.0])". This doesn't affect
2738 // compliance: we should warn earlier for offsetof expressions with
2739 // array subscripts that aren't ICEs, and if the array subscripts
2740 // are ICEs, the value of the offsetof must be an integer constant.
2741 return CheckEvalInICE(E, Ctx);
2742 }
2743 case Expr::SizeOfAlignOfExprClass: {
2744 const SizeOfAlignOfExpr *Exp = cast<SizeOfAlignOfExpr>(E);
2745 if (Exp->isSizeOf() && Exp->getTypeOfArgument()->isVariableArrayType())
2746 return ICEDiag(2, E->getLocStart());
2747 return NoDiag();
2748 }
2749 case Expr::BinaryOperatorClass: {
2750 const BinaryOperator *Exp = cast<BinaryOperator>(E);
2751 switch (Exp->getOpcode()) {
John McCall2de56d12010-08-25 11:45:40 +00002752 case BO_PtrMemD:
2753 case BO_PtrMemI:
2754 case BO_Assign:
2755 case BO_MulAssign:
2756 case BO_DivAssign:
2757 case BO_RemAssign:
2758 case BO_AddAssign:
2759 case BO_SubAssign:
2760 case BO_ShlAssign:
2761 case BO_ShrAssign:
2762 case BO_AndAssign:
2763 case BO_XorAssign:
2764 case BO_OrAssign:
John McCalld905f5a2010-05-07 05:32:02 +00002765 return ICEDiag(2, E->getLocStart());
2766
John McCall2de56d12010-08-25 11:45:40 +00002767 case BO_Mul:
2768 case BO_Div:
2769 case BO_Rem:
2770 case BO_Add:
2771 case BO_Sub:
2772 case BO_Shl:
2773 case BO_Shr:
2774 case BO_LT:
2775 case BO_GT:
2776 case BO_LE:
2777 case BO_GE:
2778 case BO_EQ:
2779 case BO_NE:
2780 case BO_And:
2781 case BO_Xor:
2782 case BO_Or:
2783 case BO_Comma: {
John McCalld905f5a2010-05-07 05:32:02 +00002784 ICEDiag LHSResult = CheckICE(Exp->getLHS(), Ctx);
2785 ICEDiag RHSResult = CheckICE(Exp->getRHS(), Ctx);
John McCall2de56d12010-08-25 11:45:40 +00002786 if (Exp->getOpcode() == BO_Div ||
2787 Exp->getOpcode() == BO_Rem) {
John McCalld905f5a2010-05-07 05:32:02 +00002788 // Evaluate gives an error for undefined Div/Rem, so make sure
2789 // we don't evaluate one.
2790 if (LHSResult.Val != 2 && RHSResult.Val != 2) {
2791 llvm::APSInt REval = Exp->getRHS()->EvaluateAsInt(Ctx);
2792 if (REval == 0)
2793 return ICEDiag(1, E->getLocStart());
2794 if (REval.isSigned() && REval.isAllOnesValue()) {
2795 llvm::APSInt LEval = Exp->getLHS()->EvaluateAsInt(Ctx);
2796 if (LEval.isMinSignedValue())
2797 return ICEDiag(1, E->getLocStart());
2798 }
2799 }
2800 }
John McCall2de56d12010-08-25 11:45:40 +00002801 if (Exp->getOpcode() == BO_Comma) {
John McCalld905f5a2010-05-07 05:32:02 +00002802 if (Ctx.getLangOptions().C99) {
2803 // C99 6.6p3 introduces a strange edge case: comma can be in an ICE
2804 // if it isn't evaluated.
2805 if (LHSResult.Val == 0 && RHSResult.Val == 0)
2806 return ICEDiag(1, E->getLocStart());
2807 } else {
2808 // In both C89 and C++, commas in ICEs are illegal.
2809 return ICEDiag(2, E->getLocStart());
2810 }
2811 }
2812 if (LHSResult.Val >= RHSResult.Val)
2813 return LHSResult;
2814 return RHSResult;
2815 }
John McCall2de56d12010-08-25 11:45:40 +00002816 case BO_LAnd:
2817 case BO_LOr: {
John McCalld905f5a2010-05-07 05:32:02 +00002818 ICEDiag LHSResult = CheckICE(Exp->getLHS(), Ctx);
2819 ICEDiag RHSResult = CheckICE(Exp->getRHS(), Ctx);
2820 if (LHSResult.Val == 0 && RHSResult.Val == 1) {
2821 // Rare case where the RHS has a comma "side-effect"; we need
2822 // to actually check the condition to see whether the side
2823 // with the comma is evaluated.
John McCall2de56d12010-08-25 11:45:40 +00002824 if ((Exp->getOpcode() == BO_LAnd) !=
John McCalld905f5a2010-05-07 05:32:02 +00002825 (Exp->getLHS()->EvaluateAsInt(Ctx) == 0))
2826 return RHSResult;
2827 return NoDiag();
2828 }
2829
2830 if (LHSResult.Val >= RHSResult.Val)
2831 return LHSResult;
2832 return RHSResult;
2833 }
2834 }
2835 }
2836 case Expr::ImplicitCastExprClass:
2837 case Expr::CStyleCastExprClass:
2838 case Expr::CXXFunctionalCastExprClass:
2839 case Expr::CXXStaticCastExprClass:
2840 case Expr::CXXReinterpretCastExprClass:
2841 case Expr::CXXConstCastExprClass: {
2842 const Expr *SubExpr = cast<CastExpr>(E)->getSubExpr();
Douglas Gregor2ade35e2010-06-16 00:17:44 +00002843 if (SubExpr->getType()->isIntegralOrEnumerationType())
John McCalld905f5a2010-05-07 05:32:02 +00002844 return CheckICE(SubExpr, Ctx);
2845 if (isa<FloatingLiteral>(SubExpr->IgnoreParens()))
2846 return NoDiag();
2847 return ICEDiag(2, E->getLocStart());
2848 }
2849 case Expr::ConditionalOperatorClass: {
2850 const ConditionalOperator *Exp = cast<ConditionalOperator>(E);
2851 // If the condition (ignoring parens) is a __builtin_constant_p call,
2852 // then only the true side is actually considered in an integer constant
2853 // expression, and it is fully evaluated. This is an important GNU
2854 // extension. See GCC PR38377 for discussion.
2855 if (const CallExpr *CallCE
2856 = dyn_cast<CallExpr>(Exp->getCond()->IgnoreParenCasts()))
2857 if (CallCE->isBuiltinCall(Ctx) == Builtin::BI__builtin_constant_p) {
2858 Expr::EvalResult EVResult;
2859 if (!E->Evaluate(EVResult, Ctx) || EVResult.HasSideEffects ||
2860 !EVResult.Val.isInt()) {
2861 return ICEDiag(2, E->getLocStart());
2862 }
2863 return NoDiag();
2864 }
2865 ICEDiag CondResult = CheckICE(Exp->getCond(), Ctx);
2866 ICEDiag TrueResult = CheckICE(Exp->getTrueExpr(), Ctx);
2867 ICEDiag FalseResult = CheckICE(Exp->getFalseExpr(), Ctx);
2868 if (CondResult.Val == 2)
2869 return CondResult;
2870 if (TrueResult.Val == 2)
2871 return TrueResult;
2872 if (FalseResult.Val == 2)
2873 return FalseResult;
2874 if (CondResult.Val == 1)
2875 return CondResult;
2876 if (TrueResult.Val == 0 && FalseResult.Val == 0)
2877 return NoDiag();
2878 // Rare case where the diagnostics depend on which side is evaluated
2879 // Note that if we get here, CondResult is 0, and at least one of
2880 // TrueResult and FalseResult is non-zero.
2881 if (Exp->getCond()->EvaluateAsInt(Ctx) == 0) {
2882 return FalseResult;
2883 }
2884 return TrueResult;
2885 }
2886 case Expr::CXXDefaultArgExprClass:
2887 return CheckICE(cast<CXXDefaultArgExpr>(E)->getExpr(), Ctx);
2888 case Expr::ChooseExprClass: {
2889 return CheckICE(cast<ChooseExpr>(E)->getChosenSubExpr(Ctx), Ctx);
2890 }
2891 }
2892
2893 // Silence a GCC warning
2894 return ICEDiag(2, E->getLocStart());
2895}
2896
2897bool Expr::isIntegerConstantExpr(llvm::APSInt &Result, ASTContext &Ctx,
2898 SourceLocation *Loc, bool isEvaluated) const {
2899 ICEDiag d = CheckICE(this, Ctx);
2900 if (d.Val != 0) {
2901 if (Loc) *Loc = d.Loc;
2902 return false;
2903 }
2904 EvalResult EvalResult;
2905 if (!Evaluate(EvalResult, Ctx))
2906 llvm_unreachable("ICE cannot be evaluated!");
2907 assert(!EvalResult.HasSideEffects && "ICE with side effects!");
2908 assert(EvalResult.Val.isInt() && "ICE that isn't integer!");
2909 Result = EvalResult.Val.getInt();
2910 return true;
2911}