blob: 451aa2a25329d142e61f9360bfe3fd7e4875e930 [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 {
46 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
John McCall42c8f872010-05-10 23:27:23 +000051 EvalInfo(ASTContext &ctx, Expr::EvalResult& evalresult)
52 : 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,
Daniel Dunbara2cfd342009-01-29 06:16:07 +0000195 APFloat &Value, ASTContext &Ctx) {
196 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,
Daniel Dunbara2cfd342009-01-29 06:16:07 +0000209 APFloat &Value, ASTContext &Ctx) {
210 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,
Daniel Dunbara2cfd342009-01-29 06:16:07 +0000218 APSInt &Value, ASTContext &Ctx) {
219 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.
223 Result.extOrTrunc(DestWidth);
224 Result.setIsUnsigned(DestType->isUnsignedIntegerType());
225 return Result;
226}
227
Mike Stump1eb44332009-09-09 15:08:12 +0000228static APFloat HandleIntToFloatCast(QualType DestType, QualType SrcType,
Daniel Dunbara2cfd342009-01-29 06:16:07 +0000229 APSInt &Value, ASTContext &Ctx) {
230
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 }
Mike Stumpc4c90452009-10-27 22:09:17 +0000294};
295
Mike Stumpc4c90452009-10-27 22:09:17 +0000296} // end anonymous namespace
297
Eli Friedman4efaa272008-11-12 09:44:48 +0000298//===----------------------------------------------------------------------===//
299// LValue Evaluation
300//===----------------------------------------------------------------------===//
301namespace {
Benjamin Kramer770b4a82009-11-28 19:03:38 +0000302class LValueExprEvaluator
John McCallefdb83e2010-05-07 21:00:08 +0000303 : public StmtVisitor<LValueExprEvaluator, bool> {
Eli Friedman4efaa272008-11-12 09:44:48 +0000304 EvalInfo &Info;
John McCallefdb83e2010-05-07 21:00:08 +0000305 LValue &Result;
306
307 bool Success(Expr *E) {
308 Result.Base = E;
309 Result.Offset = CharUnits::Zero();
310 return true;
311 }
Eli Friedman4efaa272008-11-12 09:44:48 +0000312public:
Mike Stump1eb44332009-09-09 15:08:12 +0000313
John McCallefdb83e2010-05-07 21:00:08 +0000314 LValueExprEvaluator(EvalInfo &info, LValue &Result) :
315 Info(info), Result(Result) {}
Eli Friedman4efaa272008-11-12 09:44:48 +0000316
John McCallefdb83e2010-05-07 21:00:08 +0000317 bool VisitStmt(Stmt *S) {
318 return false;
Eli Friedman4efaa272008-11-12 09:44:48 +0000319 }
Douglas Gregor8ecdb652010-04-28 22:16:22 +0000320
John McCallefdb83e2010-05-07 21:00:08 +0000321 bool VisitParenExpr(ParenExpr *E) { return Visit(E->getSubExpr()); }
322 bool VisitDeclRefExpr(DeclRefExpr *E);
323 bool VisitPredefinedExpr(PredefinedExpr *E) { return Success(E); }
324 bool VisitCompoundLiteralExpr(CompoundLiteralExpr *E);
325 bool VisitMemberExpr(MemberExpr *E);
326 bool VisitStringLiteral(StringLiteral *E) { return Success(E); }
327 bool VisitObjCEncodeExpr(ObjCEncodeExpr *E) { return Success(E); }
328 bool VisitArraySubscriptExpr(ArraySubscriptExpr *E);
329 bool VisitUnaryDeref(UnaryOperator *E);
330 bool VisitUnaryExtension(const UnaryOperator *E)
Eli Friedmanba98d6b2009-03-23 04:56:01 +0000331 { return Visit(E->getSubExpr()); }
John McCallefdb83e2010-05-07 21:00:08 +0000332 bool VisitChooseExpr(const ChooseExpr *E)
Eli Friedmanba98d6b2009-03-23 04:56:01 +0000333 { return Visit(E->getChosenSubExpr(Info.Ctx)); }
Anders Carlsson26bc2202009-10-03 16:30:22 +0000334
John McCallefdb83e2010-05-07 21:00:08 +0000335 bool VisitCastExpr(CastExpr *E) {
Anders Carlsson26bc2202009-10-03 16:30:22 +0000336 switch (E->getCastKind()) {
337 default:
John McCallefdb83e2010-05-07 21:00:08 +0000338 return false;
Anders Carlsson26bc2202009-10-03 16:30:22 +0000339
John McCall2de56d12010-08-25 11:45:40 +0000340 case CK_NoOp:
Anders Carlsson26bc2202009-10-03 16:30:22 +0000341 return Visit(E->getSubExpr());
342 }
343 }
Eli Friedmanba98d6b2009-03-23 04:56:01 +0000344 // FIXME: Missing: __real__, __imag__
Eli Friedman4efaa272008-11-12 09:44:48 +0000345};
346} // end anonymous namespace
347
John McCallefdb83e2010-05-07 21:00:08 +0000348static bool EvaluateLValue(const Expr* E, LValue& Result, EvalInfo &Info) {
349 return LValueExprEvaluator(Info, Result).Visit(const_cast<Expr*>(E));
Eli Friedman4efaa272008-11-12 09:44:48 +0000350}
351
John McCallefdb83e2010-05-07 21:00:08 +0000352bool LValueExprEvaluator::VisitDeclRefExpr(DeclRefExpr *E) {
Eli Friedman50c39ea2009-05-27 06:04:58 +0000353 if (isa<FunctionDecl>(E->getDecl())) {
John McCallefdb83e2010-05-07 21:00:08 +0000354 return Success(E);
Eli Friedman50c39ea2009-05-27 06:04:58 +0000355 } else if (VarDecl* VD = dyn_cast<VarDecl>(E->getDecl())) {
356 if (!VD->getType()->isReferenceType())
John McCallefdb83e2010-05-07 21:00:08 +0000357 return Success(E);
Chandler Carruth761c94e2010-05-16 09:32:51 +0000358 // Reference parameters can refer to anything even if they have an
359 // "initializer" in the form of a default argument.
360 if (isa<ParmVarDecl>(VD))
361 return false;
Eli Friedmand933a012009-08-29 19:09:59 +0000362 // FIXME: Check whether VD might be overridden!
Sebastian Redl31310a22010-02-01 20:16:42 +0000363 if (const Expr *Init = VD->getAnyInitializer())
Douglas Gregorcf3293e2009-11-01 20:32:48 +0000364 return Visit(const_cast<Expr *>(Init));
Eli Friedman50c39ea2009-05-27 06:04:58 +0000365 }
366
John McCallefdb83e2010-05-07 21:00:08 +0000367 return false;
Anders Carlsson35873c42008-11-24 04:41:22 +0000368}
369
John McCallefdb83e2010-05-07 21:00:08 +0000370bool LValueExprEvaluator::VisitCompoundLiteralExpr(CompoundLiteralExpr *E) {
John McCallefdb83e2010-05-07 21:00:08 +0000371 return Success(E);
Eli Friedman4efaa272008-11-12 09:44:48 +0000372}
373
John McCallefdb83e2010-05-07 21:00:08 +0000374bool LValueExprEvaluator::VisitMemberExpr(MemberExpr *E) {
Eli Friedman4efaa272008-11-12 09:44:48 +0000375 QualType Ty;
376 if (E->isArrow()) {
John McCallefdb83e2010-05-07 21:00:08 +0000377 if (!EvaluatePointer(E->getBase(), Result, Info))
378 return false;
Ted Kremenek6217b802009-07-29 21:53:49 +0000379 Ty = E->getBase()->getType()->getAs<PointerType>()->getPointeeType();
Eli Friedman4efaa272008-11-12 09:44:48 +0000380 } else {
John McCallefdb83e2010-05-07 21:00:08 +0000381 if (!Visit(E->getBase()))
382 return false;
Eli Friedman4efaa272008-11-12 09:44:48 +0000383 Ty = E->getBase()->getType();
384 }
385
Ted Kremenek6217b802009-07-29 21:53:49 +0000386 RecordDecl *RD = Ty->getAs<RecordType>()->getDecl();
Eli Friedman4efaa272008-11-12 09:44:48 +0000387 const ASTRecordLayout &RL = Info.Ctx.getASTRecordLayout(RD);
Douglas Gregor86f19402008-12-20 23:49:58 +0000388
389 FieldDecl *FD = dyn_cast<FieldDecl>(E->getMemberDecl());
390 if (!FD) // FIXME: deal with other kinds of member expressions
John McCallefdb83e2010-05-07 21:00:08 +0000391 return false;
Eli Friedman2be58612009-05-30 21:09:44 +0000392
393 if (FD->getType()->isReferenceType())
John McCallefdb83e2010-05-07 21:00:08 +0000394 return false;
Eli Friedman2be58612009-05-30 21:09:44 +0000395
Eli Friedman4efaa272008-11-12 09:44:48 +0000396 // FIXME: This is linear time.
Douglas Gregor44b43212008-12-11 16:49:14 +0000397 unsigned i = 0;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000398 for (RecordDecl::field_iterator Field = RD->field_begin(),
399 FieldEnd = RD->field_end();
Douglas Gregor44b43212008-12-11 16:49:14 +0000400 Field != FieldEnd; (void)++Field, ++i) {
401 if (*Field == FD)
Eli Friedman4efaa272008-11-12 09:44:48 +0000402 break;
403 }
404
John McCallefdb83e2010-05-07 21:00:08 +0000405 Result.Offset += CharUnits::fromQuantity(RL.getFieldOffset(i) / 8);
406 return true;
Eli Friedman4efaa272008-11-12 09:44:48 +0000407}
408
John McCallefdb83e2010-05-07 21:00:08 +0000409bool LValueExprEvaluator::VisitArraySubscriptExpr(ArraySubscriptExpr *E) {
Anders Carlsson3068d112008-11-16 19:01:22 +0000410 if (!EvaluatePointer(E->getBase(), Result, Info))
John McCallefdb83e2010-05-07 21:00:08 +0000411 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000412
Anders Carlsson3068d112008-11-16 19:01:22 +0000413 APSInt Index;
414 if (!EvaluateInteger(E->getIdx(), Index, Info))
John McCallefdb83e2010-05-07 21:00:08 +0000415 return false;
Anders Carlsson3068d112008-11-16 19:01:22 +0000416
Ken Dyck199c3d62010-01-11 17:06:35 +0000417 CharUnits ElementSize = Info.Ctx.getTypeSizeInChars(E->getType());
John McCallefdb83e2010-05-07 21:00:08 +0000418 Result.Offset += Index.getSExtValue() * ElementSize;
419 return true;
Anders Carlsson3068d112008-11-16 19:01:22 +0000420}
Eli Friedman4efaa272008-11-12 09:44:48 +0000421
John McCallefdb83e2010-05-07 21:00:08 +0000422bool LValueExprEvaluator::VisitUnaryDeref(UnaryOperator *E) {
423 return EvaluatePointer(E->getSubExpr(), Result, Info);
Eli Friedmane8761c82009-02-20 01:57:15 +0000424}
425
Eli Friedman4efaa272008-11-12 09:44:48 +0000426//===----------------------------------------------------------------------===//
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000427// Pointer Evaluation
428//===----------------------------------------------------------------------===//
429
Anders Carlssonc754aa62008-07-08 05:13:58 +0000430namespace {
Benjamin Kramer770b4a82009-11-28 19:03:38 +0000431class PointerExprEvaluator
John McCallefdb83e2010-05-07 21:00:08 +0000432 : public StmtVisitor<PointerExprEvaluator, bool> {
Chris Lattner87eae5e2008-07-11 22:52:41 +0000433 EvalInfo &Info;
John McCallefdb83e2010-05-07 21:00:08 +0000434 LValue &Result;
435
436 bool Success(Expr *E) {
437 Result.Base = E;
438 Result.Offset = CharUnits::Zero();
439 return true;
440 }
Anders Carlsson2bad1682008-07-08 14:30:00 +0000441public:
Mike Stump1eb44332009-09-09 15:08:12 +0000442
John McCallefdb83e2010-05-07 21:00:08 +0000443 PointerExprEvaluator(EvalInfo &info, LValue &Result)
444 : Info(info), Result(Result) {}
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000445
John McCallefdb83e2010-05-07 21:00:08 +0000446 bool VisitStmt(Stmt *S) {
447 return false;
Anders Carlsson2bad1682008-07-08 14:30:00 +0000448 }
449
John McCallefdb83e2010-05-07 21:00:08 +0000450 bool VisitParenExpr(ParenExpr *E) { return Visit(E->getSubExpr()); }
Anders Carlsson2bad1682008-07-08 14:30:00 +0000451
John McCallefdb83e2010-05-07 21:00:08 +0000452 bool VisitBinaryOperator(const BinaryOperator *E);
453 bool VisitCastExpr(CastExpr* E);
454 bool VisitUnaryExtension(const UnaryOperator *E)
Eli Friedman2217c872009-02-22 11:46:18 +0000455 { return Visit(E->getSubExpr()); }
John McCallefdb83e2010-05-07 21:00:08 +0000456 bool VisitUnaryAddrOf(const UnaryOperator *E);
457 bool VisitObjCStringLiteral(ObjCStringLiteral *E)
458 { return Success(E); }
459 bool VisitAddrLabelExpr(AddrLabelExpr *E)
460 { return Success(E); }
461 bool VisitCallExpr(CallExpr *E);
462 bool VisitBlockExpr(BlockExpr *E) {
Mike Stumpb83d2872009-02-19 22:01:56 +0000463 if (!E->hasBlockDeclRefExprs())
John McCallefdb83e2010-05-07 21:00:08 +0000464 return Success(E);
465 return false;
Mike Stumpb83d2872009-02-19 22:01:56 +0000466 }
John McCallefdb83e2010-05-07 21:00:08 +0000467 bool VisitImplicitValueInitExpr(ImplicitValueInitExpr *E)
468 { return Success((Expr*)0); }
469 bool VisitConditionalOperator(ConditionalOperator *E);
470 bool VisitChooseExpr(ChooseExpr *E)
Sebastian Redl6e8ed162009-05-10 18:38:11 +0000471 { return Visit(E->getChosenSubExpr(Info.Ctx)); }
John McCallefdb83e2010-05-07 21:00:08 +0000472 bool VisitCXXNullPtrLiteralExpr(CXXNullPtrLiteralExpr *E)
473 { return Success((Expr*)0); }
Eli Friedmanba98d6b2009-03-23 04:56:01 +0000474 // FIXME: Missing: @protocol, @selector
Anders Carlsson650c92f2008-07-08 15:34:11 +0000475};
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000476} // end anonymous namespace
Anders Carlsson650c92f2008-07-08 15:34:11 +0000477
John McCallefdb83e2010-05-07 21:00:08 +0000478static bool EvaluatePointer(const Expr* E, LValue& Result, EvalInfo &Info) {
John McCall7db7acb2010-05-07 05:46:35 +0000479 assert(E->getType()->hasPointerRepresentation());
John McCallefdb83e2010-05-07 21:00:08 +0000480 return PointerExprEvaluator(Info, Result).Visit(const_cast<Expr*>(E));
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000481}
482
John McCallefdb83e2010-05-07 21:00:08 +0000483bool PointerExprEvaluator::VisitBinaryOperator(const BinaryOperator *E) {
John McCall2de56d12010-08-25 11:45:40 +0000484 if (E->getOpcode() != BO_Add &&
485 E->getOpcode() != BO_Sub)
John McCallefdb83e2010-05-07 21:00:08 +0000486 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000487
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000488 const Expr *PExp = E->getLHS();
489 const Expr *IExp = E->getRHS();
490 if (IExp->getType()->isPointerType())
491 std::swap(PExp, IExp);
Mike Stump1eb44332009-09-09 15:08:12 +0000492
John McCallefdb83e2010-05-07 21:00:08 +0000493 if (!EvaluatePointer(PExp, Result, Info))
494 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000495
John McCallefdb83e2010-05-07 21:00:08 +0000496 llvm::APSInt Offset;
497 if (!EvaluateInteger(IExp, Offset, Info))
498 return false;
499 int64_t AdditionalOffset
500 = Offset.isSigned() ? Offset.getSExtValue()
501 : static_cast<int64_t>(Offset.getZExtValue());
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000502
Daniel Dunbare0cdb4e2010-03-20 05:53:45 +0000503 // Compute the new offset in the appropriate width.
504
505 QualType PointeeType =
506 PExp->getType()->getAs<PointerType>()->getPointeeType();
John McCallefdb83e2010-05-07 21:00:08 +0000507 CharUnits SizeOfPointee;
Mike Stump1eb44332009-09-09 15:08:12 +0000508
Anders Carlsson4d4c50d2009-02-19 04:55:58 +0000509 // Explicitly handle GNU void* and function pointer arithmetic extensions.
510 if (PointeeType->isVoidType() || PointeeType->isFunctionType())
John McCallefdb83e2010-05-07 21:00:08 +0000511 SizeOfPointee = CharUnits::One();
Anders Carlsson4d4c50d2009-02-19 04:55:58 +0000512 else
John McCallefdb83e2010-05-07 21:00:08 +0000513 SizeOfPointee = Info.Ctx.getTypeSizeInChars(PointeeType);
Eli Friedman4efaa272008-11-12 09:44:48 +0000514
John McCall2de56d12010-08-25 11:45:40 +0000515 if (E->getOpcode() == BO_Add)
John McCallefdb83e2010-05-07 21:00:08 +0000516 Result.Offset += AdditionalOffset * SizeOfPointee;
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000517 else
John McCallefdb83e2010-05-07 21:00:08 +0000518 Result.Offset -= AdditionalOffset * SizeOfPointee;
Eli Friedman4efaa272008-11-12 09:44:48 +0000519
John McCallefdb83e2010-05-07 21:00:08 +0000520 return true;
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000521}
Eli Friedman4efaa272008-11-12 09:44:48 +0000522
John McCallefdb83e2010-05-07 21:00:08 +0000523bool PointerExprEvaluator::VisitUnaryAddrOf(const UnaryOperator *E) {
524 return EvaluateLValue(E->getSubExpr(), Result, Info);
Eli Friedman4efaa272008-11-12 09:44:48 +0000525}
Mike Stump1eb44332009-09-09 15:08:12 +0000526
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000527
John McCallefdb83e2010-05-07 21:00:08 +0000528bool PointerExprEvaluator::VisitCastExpr(CastExpr* E) {
Eli Friedman09a8a0e2009-12-27 05:43:15 +0000529 Expr* SubExpr = E->getSubExpr();
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000530
Eli Friedman09a8a0e2009-12-27 05:43:15 +0000531 switch (E->getCastKind()) {
532 default:
533 break;
534
John McCall2de56d12010-08-25 11:45:40 +0000535 case CK_Unknown: {
Eli Friedman09a8a0e2009-12-27 05:43:15 +0000536 // FIXME: The handling for CK_Unknown is ugly/shouldn't be necessary!
537
538 // Check for pointer->pointer cast
539 if (SubExpr->getType()->isPointerType() ||
540 SubExpr->getType()->isObjCObjectPointerType() ||
541 SubExpr->getType()->isNullPtrType() ||
542 SubExpr->getType()->isBlockPointerType())
543 return Visit(SubExpr);
544
Douglas Gregor2ade35e2010-06-16 00:17:44 +0000545 if (SubExpr->getType()->isIntegralOrEnumerationType()) {
John McCallefdb83e2010-05-07 21:00:08 +0000546 APValue Value;
547 if (!EvaluateIntegerOrLValue(SubExpr, Value, Info))
Eli Friedman09a8a0e2009-12-27 05:43:15 +0000548 break;
549
John McCallefdb83e2010-05-07 21:00:08 +0000550 if (Value.isInt()) {
551 Value.getInt().extOrTrunc((unsigned)Info.Ctx.getTypeSize(E->getType()));
552 Result.Base = 0;
553 Result.Offset = CharUnits::fromQuantity(Value.getInt().getZExtValue());
554 return true;
555 } else {
556 Result.Base = Value.getLValueBase();
557 Result.Offset = Value.getLValueOffset();
558 return true;
Eli Friedman09a8a0e2009-12-27 05:43:15 +0000559 }
Eli Friedman09a8a0e2009-12-27 05:43:15 +0000560 }
561 break;
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000562 }
Mike Stump1eb44332009-09-09 15:08:12 +0000563
John McCall2de56d12010-08-25 11:45:40 +0000564 case CK_NoOp:
565 case CK_BitCast:
566 case CK_LValueBitCast:
567 case CK_AnyPointerToObjCPointerCast:
568 case CK_AnyPointerToBlockPointerCast:
Eli Friedman09a8a0e2009-12-27 05:43:15 +0000569 return Visit(SubExpr);
570
Anders Carlsson5c5a7642010-10-31 20:41:46 +0000571 case CK_DerivedToBase:
572 case CK_UncheckedDerivedToBase: {
573 LValue BaseLV;
574 if (!EvaluatePointer(E->getSubExpr(), BaseLV, Info))
575 return false;
576
577 // Now figure out the necessary offset to add to the baseLV to get from
578 // the derived class to the base class.
579 uint64_t Offset = 0;
580
581 QualType Ty = E->getSubExpr()->getType();
582 const CXXRecordDecl *DerivedDecl =
583 Ty->getAs<PointerType>()->getPointeeType()->getAsCXXRecordDecl();
584
585 for (CastExpr::path_const_iterator PathI = E->path_begin(),
586 PathE = E->path_end(); PathI != PathE; ++PathI) {
587 const CXXBaseSpecifier *Base = *PathI;
588
589 // FIXME: If the base is virtual, we'd need to determine the type of the
590 // most derived class and we don't support that right now.
591 if (Base->isVirtual())
592 return false;
593
594 const CXXRecordDecl *BaseDecl = Base->getType()->getAsCXXRecordDecl();
595 const ASTRecordLayout &Layout = Info.Ctx.getASTRecordLayout(DerivedDecl);
596
Anders Carlssona14f5972010-10-31 23:22:37 +0000597 Offset += Layout.getBaseClassOffsetInBits(BaseDecl);
Anders Carlsson5c5a7642010-10-31 20:41:46 +0000598 DerivedDecl = BaseDecl;
599 }
600
601 Result.Base = BaseLV.getLValueBase();
602 Result.Offset = BaseLV.getLValueOffset() +
603 CharUnits::fromQuantity(Offset / Info.Ctx.getCharWidth());
604 return true;
605 }
606
John McCall2de56d12010-08-25 11:45:40 +0000607 case CK_IntegralToPointer: {
John McCallefdb83e2010-05-07 21:00:08 +0000608 APValue Value;
609 if (!EvaluateIntegerOrLValue(SubExpr, Value, Info))
Eli Friedman09a8a0e2009-12-27 05:43:15 +0000610 break;
Daniel Dunbar69ab26a2009-02-20 18:22:23 +0000611
John McCallefdb83e2010-05-07 21:00:08 +0000612 if (Value.isInt()) {
613 Value.getInt().extOrTrunc((unsigned)Info.Ctx.getTypeSize(E->getType()));
614 Result.Base = 0;
615 Result.Offset = CharUnits::fromQuantity(Value.getInt().getZExtValue());
616 return true;
617 } else {
618 // Cast is of an lvalue, no need to change value.
619 Result.Base = Value.getLValueBase();
620 Result.Offset = Value.getLValueOffset();
621 return true;
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000622 }
623 }
John McCall2de56d12010-08-25 11:45:40 +0000624 case CK_ArrayToPointerDecay:
625 case CK_FunctionToPointerDecay:
John McCallefdb83e2010-05-07 21:00:08 +0000626 return EvaluateLValue(SubExpr, Result, Info);
Eli Friedman4efaa272008-11-12 09:44:48 +0000627 }
628
John McCallefdb83e2010-05-07 21:00:08 +0000629 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000630}
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000631
John McCallefdb83e2010-05-07 21:00:08 +0000632bool PointerExprEvaluator::VisitCallExpr(CallExpr *E) {
Mike Stump1eb44332009-09-09 15:08:12 +0000633 if (E->isBuiltinCall(Info.Ctx) ==
David Chisnall0d13f6f2010-01-23 02:40:42 +0000634 Builtin::BI__builtin___CFStringMakeConstantString ||
635 E->isBuiltinCall(Info.Ctx) ==
636 Builtin::BI__builtin___NSStringMakeConstantString)
John McCallefdb83e2010-05-07 21:00:08 +0000637 return Success(E);
638 return false;
Eli Friedman3941b182009-01-25 01:54:01 +0000639}
640
John McCallefdb83e2010-05-07 21:00:08 +0000641bool PointerExprEvaluator::VisitConditionalOperator(ConditionalOperator *E) {
Eli Friedman4efaa272008-11-12 09:44:48 +0000642 bool BoolResult;
643 if (!HandleConversionToBool(E->getCond(), BoolResult, Info))
John McCallefdb83e2010-05-07 21:00:08 +0000644 return false;
Eli Friedman4efaa272008-11-12 09:44:48 +0000645
646 Expr* EvalExpr = BoolResult ? E->getTrueExpr() : E->getFalseExpr();
John McCallefdb83e2010-05-07 21:00:08 +0000647 return Visit(EvalExpr);
Eli Friedman4efaa272008-11-12 09:44:48 +0000648}
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000649
650//===----------------------------------------------------------------------===//
Nate Begeman59b5da62009-01-18 03:20:47 +0000651// Vector Evaluation
652//===----------------------------------------------------------------------===//
653
654namespace {
Benjamin Kramer770b4a82009-11-28 19:03:38 +0000655 class VectorExprEvaluator
Nate Begeman59b5da62009-01-18 03:20:47 +0000656 : public StmtVisitor<VectorExprEvaluator, APValue> {
657 EvalInfo &Info;
Eli Friedman91110ee2009-02-23 04:23:56 +0000658 APValue GetZeroVector(QualType VecType);
Nate Begeman59b5da62009-01-18 03:20:47 +0000659 public:
Mike Stump1eb44332009-09-09 15:08:12 +0000660
Nate Begeman59b5da62009-01-18 03:20:47 +0000661 VectorExprEvaluator(EvalInfo &info) : Info(info) {}
Mike Stump1eb44332009-09-09 15:08:12 +0000662
Nate Begeman59b5da62009-01-18 03:20:47 +0000663 APValue VisitStmt(Stmt *S) {
664 return APValue();
665 }
Mike Stump1eb44332009-09-09 15:08:12 +0000666
Eli Friedman91110ee2009-02-23 04:23:56 +0000667 APValue VisitParenExpr(ParenExpr *E)
668 { return Visit(E->getSubExpr()); }
669 APValue VisitUnaryExtension(const UnaryOperator *E)
670 { return Visit(E->getSubExpr()); }
671 APValue VisitUnaryPlus(const UnaryOperator *E)
672 { return Visit(E->getSubExpr()); }
673 APValue VisitUnaryReal(const UnaryOperator *E)
674 { return Visit(E->getSubExpr()); }
675 APValue VisitImplicitValueInitExpr(const ImplicitValueInitExpr *E)
676 { return GetZeroVector(E->getType()); }
Nate Begeman59b5da62009-01-18 03:20:47 +0000677 APValue VisitCastExpr(const CastExpr* E);
678 APValue VisitCompoundLiteralExpr(const CompoundLiteralExpr *E);
679 APValue VisitInitListExpr(const InitListExpr *E);
Eli Friedman91110ee2009-02-23 04:23:56 +0000680 APValue VisitConditionalOperator(const ConditionalOperator *E);
Eli Friedmanba98d6b2009-03-23 04:56:01 +0000681 APValue VisitChooseExpr(const ChooseExpr *E)
682 { return Visit(E->getChosenSubExpr(Info.Ctx)); }
Eli Friedman91110ee2009-02-23 04:23:56 +0000683 APValue VisitUnaryImag(const UnaryOperator *E);
684 // FIXME: Missing: unary -, unary ~, binary add/sub/mul/div,
Eli Friedman2217c872009-02-22 11:46:18 +0000685 // binary comparisons, binary and/or/xor,
Eli Friedman91110ee2009-02-23 04:23:56 +0000686 // shufflevector, ExtVectorElementExpr
687 // (Note that these require implementing conversions
688 // between vector types.)
Nate Begeman59b5da62009-01-18 03:20:47 +0000689 };
690} // end anonymous namespace
691
692static bool EvaluateVector(const Expr* E, APValue& Result, EvalInfo &Info) {
693 if (!E->getType()->isVectorType())
694 return false;
695 Result = VectorExprEvaluator(Info).Visit(const_cast<Expr*>(E));
696 return !Result.isUninit();
697}
698
699APValue VectorExprEvaluator::VisitCastExpr(const CastExpr* E) {
John McCall183700f2009-09-21 23:43:11 +0000700 const VectorType *VTy = E->getType()->getAs<VectorType>();
Nate Begemanc0b8b192009-07-01 07:50:47 +0000701 QualType EltTy = VTy->getElementType();
702 unsigned NElts = VTy->getNumElements();
703 unsigned EltWidth = Info.Ctx.getTypeSize(EltTy);
Mike Stump1eb44332009-09-09 15:08:12 +0000704
Nate Begeman59b5da62009-01-18 03:20:47 +0000705 const Expr* SE = E->getSubExpr();
Nate Begemane8c9e922009-06-26 18:22:18 +0000706 QualType SETy = SE->getType();
707 APValue Result = APValue();
Nate Begeman59b5da62009-01-18 03:20:47 +0000708
Nate Begemane8c9e922009-06-26 18:22:18 +0000709 // Check for vector->vector bitcast and scalar->vector splat.
710 if (SETy->isVectorType()) {
Nate Begeman59b5da62009-01-18 03:20:47 +0000711 return this->Visit(const_cast<Expr*>(SE));
Nate Begemane8c9e922009-06-26 18:22:18 +0000712 } else if (SETy->isIntegerType()) {
713 APSInt IntResult;
Daniel Dunbard906dc72009-07-01 20:37:45 +0000714 if (!EvaluateInteger(SE, IntResult, Info))
715 return APValue();
716 Result = APValue(IntResult);
Nate Begemane8c9e922009-06-26 18:22:18 +0000717 } else if (SETy->isRealFloatingType()) {
718 APFloat F(0.0);
Daniel Dunbard906dc72009-07-01 20:37:45 +0000719 if (!EvaluateFloat(SE, F, Info))
720 return APValue();
721 Result = APValue(F);
722 } else
Nate Begemanc0b8b192009-07-01 07:50:47 +0000723 return APValue();
Nate Begeman59b5da62009-01-18 03:20:47 +0000724
Nate Begemanc0b8b192009-07-01 07:50:47 +0000725 // For casts of a scalar to ExtVector, convert the scalar to the element type
726 // and splat it to all elements.
727 if (E->getType()->isExtVectorType()) {
728 if (EltTy->isIntegerType() && Result.isInt())
729 Result = APValue(HandleIntToIntCast(EltTy, SETy, Result.getInt(),
730 Info.Ctx));
731 else if (EltTy->isIntegerType())
732 Result = APValue(HandleFloatToIntCast(EltTy, SETy, Result.getFloat(),
733 Info.Ctx));
734 else if (EltTy->isRealFloatingType() && Result.isInt())
735 Result = APValue(HandleIntToFloatCast(EltTy, SETy, Result.getInt(),
736 Info.Ctx));
737 else if (EltTy->isRealFloatingType())
738 Result = APValue(HandleFloatToFloatCast(EltTy, SETy, Result.getFloat(),
739 Info.Ctx));
740 else
741 return APValue();
742
743 // Splat and create vector APValue.
744 llvm::SmallVector<APValue, 4> Elts(NElts, Result);
745 return APValue(&Elts[0], Elts.size());
Nate Begemane8c9e922009-06-26 18:22:18 +0000746 }
Nate Begemanc0b8b192009-07-01 07:50:47 +0000747
748 // For casts of a scalar to regular gcc-style vector type, bitcast the scalar
749 // to the vector. To construct the APValue vector initializer, bitcast the
750 // initializing value to an APInt, and shift out the bits pertaining to each
751 // element.
752 APSInt Init;
753 Init = Result.isInt() ? Result.getInt() : Result.getFloat().bitcastToAPInt();
Mike Stump1eb44332009-09-09 15:08:12 +0000754
Nate Begemanc0b8b192009-07-01 07:50:47 +0000755 llvm::SmallVector<APValue, 4> Elts;
756 for (unsigned i = 0; i != NElts; ++i) {
757 APSInt Tmp = Init;
758 Tmp.extOrTrunc(EltWidth);
Mike Stump1eb44332009-09-09 15:08:12 +0000759
Nate Begemanc0b8b192009-07-01 07:50:47 +0000760 if (EltTy->isIntegerType())
761 Elts.push_back(APValue(Tmp));
762 else if (EltTy->isRealFloatingType())
763 Elts.push_back(APValue(APFloat(Tmp)));
764 else
765 return APValue();
766
767 Init >>= EltWidth;
768 }
769 return APValue(&Elts[0], Elts.size());
Nate Begeman59b5da62009-01-18 03:20:47 +0000770}
771
Mike Stump1eb44332009-09-09 15:08:12 +0000772APValue
Nate Begeman59b5da62009-01-18 03:20:47 +0000773VectorExprEvaluator::VisitCompoundLiteralExpr(const CompoundLiteralExpr *E) {
774 return this->Visit(const_cast<Expr*>(E->getInitializer()));
775}
776
Mike Stump1eb44332009-09-09 15:08:12 +0000777APValue
Nate Begeman59b5da62009-01-18 03:20:47 +0000778VectorExprEvaluator::VisitInitListExpr(const InitListExpr *E) {
John McCall183700f2009-09-21 23:43:11 +0000779 const VectorType *VT = E->getType()->getAs<VectorType>();
Nate Begeman59b5da62009-01-18 03:20:47 +0000780 unsigned NumInits = E->getNumInits();
Eli Friedman91110ee2009-02-23 04:23:56 +0000781 unsigned NumElements = VT->getNumElements();
Mike Stump1eb44332009-09-09 15:08:12 +0000782
Nate Begeman59b5da62009-01-18 03:20:47 +0000783 QualType EltTy = VT->getElementType();
784 llvm::SmallVector<APValue, 4> Elements;
785
John McCalla7d6c222010-06-11 17:54:15 +0000786 // If a vector is initialized with a single element, that value
787 // becomes every element of the vector, not just the first.
788 // This is the behavior described in the IBM AltiVec documentation.
789 if (NumInits == 1) {
790 APValue InitValue;
Nate Begeman59b5da62009-01-18 03:20:47 +0000791 if (EltTy->isIntegerType()) {
792 llvm::APSInt sInt(32);
John McCalla7d6c222010-06-11 17:54:15 +0000793 if (!EvaluateInteger(E->getInit(0), sInt, Info))
794 return APValue();
795 InitValue = APValue(sInt);
Nate Begeman59b5da62009-01-18 03:20:47 +0000796 } else {
797 llvm::APFloat f(0.0);
John McCalla7d6c222010-06-11 17:54:15 +0000798 if (!EvaluateFloat(E->getInit(0), f, Info))
799 return APValue();
800 InitValue = APValue(f);
801 }
802 for (unsigned i = 0; i < NumElements; i++) {
803 Elements.push_back(InitValue);
804 }
805 } else {
806 for (unsigned i = 0; i < NumElements; i++) {
807 if (EltTy->isIntegerType()) {
808 llvm::APSInt sInt(32);
809 if (i < NumInits) {
810 if (!EvaluateInteger(E->getInit(i), sInt, Info))
811 return APValue();
812 } else {
813 sInt = Info.Ctx.MakeIntValue(0, EltTy);
814 }
815 Elements.push_back(APValue(sInt));
Eli Friedman91110ee2009-02-23 04:23:56 +0000816 } else {
John McCalla7d6c222010-06-11 17:54:15 +0000817 llvm::APFloat f(0.0);
818 if (i < NumInits) {
819 if (!EvaluateFloat(E->getInit(i), f, Info))
820 return APValue();
821 } else {
822 f = APFloat::getZero(Info.Ctx.getFloatTypeSemantics(EltTy));
823 }
824 Elements.push_back(APValue(f));
Eli Friedman91110ee2009-02-23 04:23:56 +0000825 }
Nate Begeman59b5da62009-01-18 03:20:47 +0000826 }
827 }
828 return APValue(&Elements[0], Elements.size());
829}
830
Mike Stump1eb44332009-09-09 15:08:12 +0000831APValue
Eli Friedman91110ee2009-02-23 04:23:56 +0000832VectorExprEvaluator::GetZeroVector(QualType T) {
John McCall183700f2009-09-21 23:43:11 +0000833 const VectorType *VT = T->getAs<VectorType>();
Eli Friedman91110ee2009-02-23 04:23:56 +0000834 QualType EltTy = VT->getElementType();
835 APValue ZeroElement;
836 if (EltTy->isIntegerType())
837 ZeroElement = APValue(Info.Ctx.MakeIntValue(0, EltTy));
838 else
839 ZeroElement =
840 APValue(APFloat::getZero(Info.Ctx.getFloatTypeSemantics(EltTy)));
841
842 llvm::SmallVector<APValue, 4> Elements(VT->getNumElements(), ZeroElement);
843 return APValue(&Elements[0], Elements.size());
844}
845
846APValue VectorExprEvaluator::VisitConditionalOperator(const ConditionalOperator *E) {
847 bool BoolResult;
848 if (!HandleConversionToBool(E->getCond(), BoolResult, Info))
849 return APValue();
850
851 Expr* EvalExpr = BoolResult ? E->getTrueExpr() : E->getFalseExpr();
852
853 APValue Result;
854 if (EvaluateVector(EvalExpr, Result, Info))
855 return Result;
856 return APValue();
857}
858
Eli Friedman91110ee2009-02-23 04:23:56 +0000859APValue VectorExprEvaluator::VisitUnaryImag(const UnaryOperator *E) {
860 if (!E->getSubExpr()->isEvaluatable(Info.Ctx))
861 Info.EvalResult.HasSideEffects = true;
862 return GetZeroVector(E->getType());
863}
864
Nate Begeman59b5da62009-01-18 03:20:47 +0000865//===----------------------------------------------------------------------===//
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000866// Integer Evaluation
867//===----------------------------------------------------------------------===//
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000868
869namespace {
Benjamin Kramer770b4a82009-11-28 19:03:38 +0000870class IntExprEvaluator
Chris Lattnerb542afe2008-07-11 19:10:17 +0000871 : public StmtVisitor<IntExprEvaluator, bool> {
Chris Lattner87eae5e2008-07-11 22:52:41 +0000872 EvalInfo &Info;
Daniel Dunbar30c37f42009-02-19 20:17:33 +0000873 APValue &Result;
Anders Carlssonc754aa62008-07-08 05:13:58 +0000874public:
Daniel Dunbar30c37f42009-02-19 20:17:33 +0000875 IntExprEvaluator(EvalInfo &info, APValue &result)
Chris Lattner87eae5e2008-07-11 22:52:41 +0000876 : Info(info), Result(result) {}
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000877
Daniel Dunbar3f7d9952009-02-19 18:37:50 +0000878 bool Success(const llvm::APSInt &SI, const Expr *E) {
Douglas Gregor2ade35e2010-06-16 00:17:44 +0000879 assert(E->getType()->isIntegralOrEnumerationType() &&
880 "Invalid evaluation result.");
Daniel Dunbar30c37f42009-02-19 20:17:33 +0000881 assert(SI.isSigned() == E->getType()->isSignedIntegerType() &&
Daniel Dunbar3f7d9952009-02-19 18:37:50 +0000882 "Invalid evaluation result.");
Daniel Dunbar30c37f42009-02-19 20:17:33 +0000883 assert(SI.getBitWidth() == Info.Ctx.getIntWidth(E->getType()) &&
Daniel Dunbar3f7d9952009-02-19 18:37:50 +0000884 "Invalid evaluation result.");
Daniel Dunbar30c37f42009-02-19 20:17:33 +0000885 Result = APValue(SI);
Daniel Dunbar3f7d9952009-02-19 18:37:50 +0000886 return true;
887 }
888
Daniel Dunbar131eb432009-02-19 09:06:44 +0000889 bool Success(const llvm::APInt &I, const Expr *E) {
Douglas Gregor2ade35e2010-06-16 00:17:44 +0000890 assert(E->getType()->isIntegralOrEnumerationType() &&
891 "Invalid evaluation result.");
Daniel Dunbar30c37f42009-02-19 20:17:33 +0000892 assert(I.getBitWidth() == Info.Ctx.getIntWidth(E->getType()) &&
Daniel Dunbar3f7d9952009-02-19 18:37:50 +0000893 "Invalid evaluation result.");
Daniel Dunbar30c37f42009-02-19 20:17:33 +0000894 Result = APValue(APSInt(I));
895 Result.getInt().setIsUnsigned(E->getType()->isUnsignedIntegerType());
Daniel Dunbar131eb432009-02-19 09:06:44 +0000896 return true;
897 }
898
899 bool Success(uint64_t Value, const Expr *E) {
Douglas Gregor2ade35e2010-06-16 00:17:44 +0000900 assert(E->getType()->isIntegralOrEnumerationType() &&
901 "Invalid evaluation result.");
Daniel Dunbar30c37f42009-02-19 20:17:33 +0000902 Result = APValue(Info.Ctx.MakeIntValue(Value, E->getType()));
Daniel Dunbar131eb432009-02-19 09:06:44 +0000903 return true;
904 }
905
Anders Carlsson82206e22008-11-30 18:14:57 +0000906 bool Error(SourceLocation L, diag::kind D, const Expr *E) {
Chris Lattner32fea9d2008-11-12 07:43:42 +0000907 // Take the first error.
Anders Carlsson54da0492008-11-30 16:38:33 +0000908 if (Info.EvalResult.Diag == 0) {
909 Info.EvalResult.DiagLoc = L;
910 Info.EvalResult.Diag = D;
Anders Carlsson82206e22008-11-30 18:14:57 +0000911 Info.EvalResult.DiagExpr = E;
Chris Lattner32fea9d2008-11-12 07:43:42 +0000912 }
Chris Lattner54176fd2008-07-12 00:14:42 +0000913 return false;
Chris Lattner7a767782008-07-11 19:24:49 +0000914 }
Mike Stump1eb44332009-09-09 15:08:12 +0000915
Anders Carlssonc754aa62008-07-08 05:13:58 +0000916 //===--------------------------------------------------------------------===//
917 // Visitor Methods
918 //===--------------------------------------------------------------------===//
Mike Stump1eb44332009-09-09 15:08:12 +0000919
Chris Lattner32fea9d2008-11-12 07:43:42 +0000920 bool VisitStmt(Stmt *) {
921 assert(0 && "This should be called on integers, stmts are not integers");
922 return false;
923 }
Mike Stump1eb44332009-09-09 15:08:12 +0000924
Chris Lattner32fea9d2008-11-12 07:43:42 +0000925 bool VisitExpr(Expr *E) {
Anders Carlsson0e8acbb2008-11-30 18:37:00 +0000926 return Error(E->getLocStart(), diag::note_invalid_subexpr_in_ice, E);
Anders Carlssonc754aa62008-07-08 05:13:58 +0000927 }
Mike Stump1eb44332009-09-09 15:08:12 +0000928
Chris Lattnerb542afe2008-07-11 19:10:17 +0000929 bool VisitParenExpr(ParenExpr *E) { return Visit(E->getSubExpr()); }
Anders Carlssonc754aa62008-07-08 05:13:58 +0000930
Chris Lattner4c4867e2008-07-12 00:38:25 +0000931 bool VisitIntegerLiteral(const IntegerLiteral *E) {
Daniel Dunbar131eb432009-02-19 09:06:44 +0000932 return Success(E->getValue(), E);
Chris Lattner4c4867e2008-07-12 00:38:25 +0000933 }
934 bool VisitCharacterLiteral(const CharacterLiteral *E) {
Daniel Dunbar131eb432009-02-19 09:06:44 +0000935 return Success(E->getValue(), E);
Chris Lattner4c4867e2008-07-12 00:38:25 +0000936 }
937 bool VisitTypesCompatibleExpr(const TypesCompatibleExpr *E) {
Daniel Dunbarac620de2008-10-24 08:07:57 +0000938 // Per gcc docs "this built-in function ignores top level
939 // qualifiers". We need to use the canonical version to properly
940 // be able to strip CRV qualifiers from the type.
941 QualType T0 = Info.Ctx.getCanonicalType(E->getArgType1());
942 QualType T1 = Info.Ctx.getCanonicalType(E->getArgType2());
Mike Stump1eb44332009-09-09 15:08:12 +0000943 return Success(Info.Ctx.typesAreCompatible(T0.getUnqualifiedType(),
Daniel Dunbar131eb432009-02-19 09:06:44 +0000944 T1.getUnqualifiedType()),
945 E);
Chris Lattner4c4867e2008-07-12 00:38:25 +0000946 }
Eli Friedman04309752009-11-24 05:28:59 +0000947
948 bool CheckReferencedDecl(const Expr *E, const Decl *D);
949 bool VisitDeclRefExpr(const DeclRefExpr *E) {
950 return CheckReferencedDecl(E, E->getDecl());
951 }
952 bool VisitMemberExpr(const MemberExpr *E) {
953 if (CheckReferencedDecl(E, E->getMemberDecl())) {
954 // Conservatively assume a MemberExpr will have side-effects
955 Info.EvalResult.HasSideEffects = true;
956 return true;
957 }
958 return false;
959 }
960
Eli Friedmanc4a26382010-02-13 00:10:10 +0000961 bool VisitCallExpr(CallExpr *E);
Chris Lattnerb542afe2008-07-11 19:10:17 +0000962 bool VisitBinaryOperator(const BinaryOperator *E);
Douglas Gregor8ecdb652010-04-28 22:16:22 +0000963 bool VisitOffsetOfExpr(const OffsetOfExpr *E);
Chris Lattnerb542afe2008-07-11 19:10:17 +0000964 bool VisitUnaryOperator(const UnaryOperator *E);
Nuno Lopesca7c2ea2008-11-16 19:28:31 +0000965 bool VisitConditionalOperator(const ConditionalOperator *E);
Anders Carlsson06a36752008-07-08 05:49:43 +0000966
Daniel Dunbara2cfd342009-01-29 06:16:07 +0000967 bool VisitCastExpr(CastExpr* E);
Sebastian Redl05189992008-11-11 17:56:53 +0000968 bool VisitSizeOfAlignOfExpr(const SizeOfAlignOfExpr *E);
969
Anders Carlsson3068d112008-11-16 19:01:22 +0000970 bool VisitCXXBoolLiteralExpr(const CXXBoolLiteralExpr *E) {
Daniel Dunbar131eb432009-02-19 09:06:44 +0000971 return Success(E->getValue(), E);
Anders Carlsson3068d112008-11-16 19:01:22 +0000972 }
Mike Stump1eb44332009-09-09 15:08:12 +0000973
Anders Carlsson3f704562008-12-21 22:39:40 +0000974 bool VisitGNUNullExpr(const GNUNullExpr *E) {
Daniel Dunbar131eb432009-02-19 09:06:44 +0000975 return Success(0, E);
Anders Carlsson3f704562008-12-21 22:39:40 +0000976 }
Mike Stump1eb44332009-09-09 15:08:12 +0000977
Douglas Gregored8abf12010-07-08 06:14:04 +0000978 bool VisitCXXScalarValueInitExpr(const CXXScalarValueInitExpr *E) {
Daniel Dunbar131eb432009-02-19 09:06:44 +0000979 return Success(0, E);
Anders Carlsson3068d112008-11-16 19:01:22 +0000980 }
981
Eli Friedman664a1042009-02-27 04:45:43 +0000982 bool VisitImplicitValueInitExpr(const ImplicitValueInitExpr *E) {
983 return Success(0, E);
984 }
985
Sebastian Redl64b45f72009-01-05 20:52:13 +0000986 bool VisitUnaryTypeTraitExpr(const UnaryTypeTraitExpr *E) {
Sebastian Redl0dfd8482010-09-13 20:56:31 +0000987 return Success(E->getValue(), E);
Sebastian Redl64b45f72009-01-05 20:52:13 +0000988 }
989
Eli Friedmanba98d6b2009-03-23 04:56:01 +0000990 bool VisitChooseExpr(const ChooseExpr *E) {
991 return Visit(E->getChosenSubExpr(Info.Ctx));
992 }
993
Eli Friedman722c7172009-02-28 03:59:05 +0000994 bool VisitUnaryReal(const UnaryOperator *E);
Eli Friedman664a1042009-02-27 04:45:43 +0000995 bool VisitUnaryImag(const UnaryOperator *E);
996
Sebastian Redl295995c2010-09-10 20:55:47 +0000997 bool VisitCXXNoexceptExpr(const CXXNoexceptExpr *E);
998
Chris Lattnerfcee0012008-07-11 21:24:13 +0000999private:
Ken Dyck8b752f12010-01-27 17:10:57 +00001000 CharUnits GetAlignOfExpr(const Expr *E);
1001 CharUnits GetAlignOfType(QualType T);
John McCall42c8f872010-05-10 23:27:23 +00001002 static QualType GetObjectType(const Expr *E);
1003 bool TryEvaluateBuiltinObjectSize(CallExpr *E);
Eli Friedman664a1042009-02-27 04:45:43 +00001004 // FIXME: Missing: array subscript of vector, member of vector
Anders Carlssona25ae3d2008-07-08 14:35:21 +00001005};
Chris Lattnerf5eeb052008-07-11 18:11:29 +00001006} // end anonymous namespace
Anders Carlsson650c92f2008-07-08 15:34:11 +00001007
Daniel Dunbar69ab26a2009-02-20 18:22:23 +00001008static bool EvaluateIntegerOrLValue(const Expr* E, APValue &Result, EvalInfo &Info) {
Douglas Gregor2ade35e2010-06-16 00:17:44 +00001009 assert(E->getType()->isIntegralOrEnumerationType());
Daniel Dunbar69ab26a2009-02-20 18:22:23 +00001010 return IntExprEvaluator(Info, Result).Visit(const_cast<Expr*>(E));
1011}
Daniel Dunbar30c37f42009-02-19 20:17:33 +00001012
Daniel Dunbar69ab26a2009-02-20 18:22:23 +00001013static bool EvaluateInteger(const Expr* E, APSInt &Result, EvalInfo &Info) {
Douglas Gregor2ade35e2010-06-16 00:17:44 +00001014 assert(E->getType()->isIntegralOrEnumerationType());
John McCall7db7acb2010-05-07 05:46:35 +00001015
Daniel Dunbar69ab26a2009-02-20 18:22:23 +00001016 APValue Val;
1017 if (!EvaluateIntegerOrLValue(E, Val, Info) || !Val.isInt())
1018 return false;
Daniel Dunbar30c37f42009-02-19 20:17:33 +00001019 Result = Val.getInt();
1020 return true;
Anders Carlsson650c92f2008-07-08 15:34:11 +00001021}
Anders Carlsson650c92f2008-07-08 15:34:11 +00001022
Eli Friedman04309752009-11-24 05:28:59 +00001023bool IntExprEvaluator::CheckReferencedDecl(const Expr* E, const Decl* D) {
Chris Lattner4c4867e2008-07-12 00:38:25 +00001024 // Enums are integer constant exprs.
Eli Friedman29a7f332009-12-10 22:29:29 +00001025 if (const EnumConstantDecl *ECD = dyn_cast<EnumConstantDecl>(D))
1026 return Success(ECD->getInitVal(), E);
Sebastian Redlb2bc62b2009-02-08 15:51:17 +00001027
1028 // In C++, const, non-volatile integers initialized with ICEs are ICEs.
Eli Friedmane1646da2009-03-30 23:39:01 +00001029 // In C, they can also be folded, although they are not ICEs.
Douglas Gregorcf3293e2009-11-01 20:32:48 +00001030 if (Info.Ctx.getCanonicalType(E->getType()).getCVRQualifiers()
1031 == Qualifiers::Const) {
Anders Carlssonf6b60252010-02-03 21:58:41 +00001032
1033 if (isa<ParmVarDecl>(D))
1034 return Error(E->getLocStart(), diag::note_invalid_subexpr_in_ice, E);
1035
Eli Friedman04309752009-11-24 05:28:59 +00001036 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
Sebastian Redl31310a22010-02-01 20:16:42 +00001037 if (const Expr *Init = VD->getAnyInitializer()) {
Eli Friedmanc0131182009-12-03 20:31:57 +00001038 if (APValue *V = VD->getEvaluatedValue()) {
1039 if (V->isInt())
1040 return Success(V->getInt(), E);
1041 return Error(E->getLocStart(), diag::note_invalid_subexpr_in_ice, E);
1042 }
1043
1044 if (VD->isEvaluatingValue())
1045 return Error(E->getLocStart(), diag::note_invalid_subexpr_in_ice, E);
1046
1047 VD->setEvaluatingValue();
1048
Eli Friedmana7dedf72010-09-06 00:10:32 +00001049 Expr::EvalResult EResult;
1050 if (Init->Evaluate(EResult, Info.Ctx) && !EResult.HasSideEffects &&
1051 EResult.Val.isInt()) {
Douglas Gregor78d15832009-05-26 18:54:04 +00001052 // Cache the evaluated value in the variable declaration.
Eli Friedmana7dedf72010-09-06 00:10:32 +00001053 Result = EResult.Val;
Eli Friedmanc0131182009-12-03 20:31:57 +00001054 VD->setEvaluatedValue(Result);
Douglas Gregor78d15832009-05-26 18:54:04 +00001055 return true;
1056 }
1057
Eli Friedmanc0131182009-12-03 20:31:57 +00001058 VD->setEvaluatedValue(APValue());
Douglas Gregor78d15832009-05-26 18:54:04 +00001059 }
Sebastian Redlb2bc62b2009-02-08 15:51:17 +00001060 }
1061 }
1062
Chris Lattner4c4867e2008-07-12 00:38:25 +00001063 // Otherwise, random variable references are not constants.
Anders Carlsson0e8acbb2008-11-30 18:37:00 +00001064 return Error(E->getLocStart(), diag::note_invalid_subexpr_in_ice, E);
Chris Lattner4c4867e2008-07-12 00:38:25 +00001065}
1066
Chris Lattnera4d55d82008-10-06 06:40:35 +00001067/// EvaluateBuiltinClassifyType - Evaluate __builtin_classify_type the same way
1068/// as GCC.
1069static int EvaluateBuiltinClassifyType(const CallExpr *E) {
1070 // The following enum mimics the values returned by GCC.
Sebastian Redl7c80bd62009-03-16 23:22:08 +00001071 // FIXME: Does GCC differ between lvalue and rvalue references here?
Chris Lattnera4d55d82008-10-06 06:40:35 +00001072 enum gcc_type_class {
1073 no_type_class = -1,
1074 void_type_class, integer_type_class, char_type_class,
1075 enumeral_type_class, boolean_type_class,
1076 pointer_type_class, reference_type_class, offset_type_class,
1077 real_type_class, complex_type_class,
1078 function_type_class, method_type_class,
1079 record_type_class, union_type_class,
1080 array_type_class, string_type_class,
1081 lang_type_class
1082 };
Mike Stump1eb44332009-09-09 15:08:12 +00001083
1084 // If no argument was supplied, default to "no_type_class". This isn't
Chris Lattnera4d55d82008-10-06 06:40:35 +00001085 // ideal, however it is what gcc does.
1086 if (E->getNumArgs() == 0)
1087 return no_type_class;
Mike Stump1eb44332009-09-09 15:08:12 +00001088
Chris Lattnera4d55d82008-10-06 06:40:35 +00001089 QualType ArgTy = E->getArg(0)->getType();
1090 if (ArgTy->isVoidType())
1091 return void_type_class;
1092 else if (ArgTy->isEnumeralType())
1093 return enumeral_type_class;
1094 else if (ArgTy->isBooleanType())
1095 return boolean_type_class;
1096 else if (ArgTy->isCharType())
1097 return string_type_class; // gcc doesn't appear to use char_type_class
1098 else if (ArgTy->isIntegerType())
1099 return integer_type_class;
1100 else if (ArgTy->isPointerType())
1101 return pointer_type_class;
1102 else if (ArgTy->isReferenceType())
1103 return reference_type_class;
1104 else if (ArgTy->isRealType())
1105 return real_type_class;
1106 else if (ArgTy->isComplexType())
1107 return complex_type_class;
1108 else if (ArgTy->isFunctionType())
1109 return function_type_class;
Douglas Gregorfb87b892010-04-26 21:31:17 +00001110 else if (ArgTy->isStructureOrClassType())
Chris Lattnera4d55d82008-10-06 06:40:35 +00001111 return record_type_class;
1112 else if (ArgTy->isUnionType())
1113 return union_type_class;
1114 else if (ArgTy->isArrayType())
1115 return array_type_class;
1116 else if (ArgTy->isUnionType())
1117 return union_type_class;
1118 else // FIXME: offset_type_class, method_type_class, & lang_type_class?
1119 assert(0 && "CallExpr::isBuiltinClassifyType(): unimplemented type");
1120 return -1;
1121}
1122
John McCall42c8f872010-05-10 23:27:23 +00001123/// Retrieves the "underlying object type" of the given expression,
1124/// as used by __builtin_object_size.
1125QualType IntExprEvaluator::GetObjectType(const Expr *E) {
1126 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E)) {
1127 if (const VarDecl *VD = dyn_cast<VarDecl>(DRE->getDecl()))
1128 return VD->getType();
1129 } else if (isa<CompoundLiteralExpr>(E)) {
1130 return E->getType();
1131 }
1132
1133 return QualType();
1134}
1135
1136bool IntExprEvaluator::TryEvaluateBuiltinObjectSize(CallExpr *E) {
1137 // TODO: Perhaps we should let LLVM lower this?
1138 LValue Base;
1139 if (!EvaluatePointer(E->getArg(0), Base, Info))
1140 return false;
1141
1142 // If we can prove the base is null, lower to zero now.
1143 const Expr *LVBase = Base.getLValueBase();
1144 if (!LVBase) return Success(0, E);
1145
1146 QualType T = GetObjectType(LVBase);
1147 if (T.isNull() ||
1148 T->isIncompleteType() ||
Eli Friedman13578692010-08-05 02:49:48 +00001149 T->isFunctionType() ||
John McCall42c8f872010-05-10 23:27:23 +00001150 T->isVariablyModifiedType() ||
1151 T->isDependentType())
1152 return false;
1153
1154 CharUnits Size = Info.Ctx.getTypeSizeInChars(T);
1155 CharUnits Offset = Base.getLValueOffset();
1156
1157 if (!Offset.isNegative() && Offset <= Size)
1158 Size -= Offset;
1159 else
1160 Size = CharUnits::Zero();
1161 return Success(Size.getQuantity(), E);
1162}
1163
Eli Friedmanc4a26382010-02-13 00:10:10 +00001164bool IntExprEvaluator::VisitCallExpr(CallExpr *E) {
Douglas Gregor3c385e52009-02-14 18:57:46 +00001165 switch (E->isBuiltinCall(Info.Ctx)) {
Chris Lattner019f4e82008-10-06 05:28:25 +00001166 default:
Anders Carlsson0e8acbb2008-11-30 18:37:00 +00001167 return Error(E->getLocStart(), diag::note_invalid_subexpr_in_ice, E);
Mike Stump64eda9e2009-10-26 18:35:08 +00001168
1169 case Builtin::BI__builtin_object_size: {
John McCall42c8f872010-05-10 23:27:23 +00001170 if (TryEvaluateBuiltinObjectSize(E))
1171 return true;
Mike Stump64eda9e2009-10-26 18:35:08 +00001172
Eric Christopherb2aaf512010-01-19 22:58:35 +00001173 // If evaluating the argument has side-effects we can't determine
1174 // the size of the object and lower it to unknown now.
Fariborz Jahanian393c2472009-11-05 18:03:03 +00001175 if (E->getArg(0)->HasSideEffects(Info.Ctx)) {
Benjamin Kramer3f27b382010-01-03 18:18:37 +00001176 if (E->getArg(1)->EvaluateAsInt(Info.Ctx).getZExtValue() <= 1)
Chris Lattnercf184652009-11-03 19:48:51 +00001177 return Success(-1ULL, E);
Mike Stump64eda9e2009-10-26 18:35:08 +00001178 return Success(0, E);
1179 }
Mike Stumpc4c90452009-10-27 22:09:17 +00001180
Mike Stump64eda9e2009-10-26 18:35:08 +00001181 return Error(E->getLocStart(), diag::note_invalid_subexpr_in_ice, E);
1182 }
1183
Chris Lattner019f4e82008-10-06 05:28:25 +00001184 case Builtin::BI__builtin_classify_type:
Daniel Dunbar131eb432009-02-19 09:06:44 +00001185 return Success(EvaluateBuiltinClassifyType(E), E);
Mike Stump1eb44332009-09-09 15:08:12 +00001186
Anders Carlsson4bbc0e02008-11-24 04:21:33 +00001187 case Builtin::BI__builtin_constant_p:
Chris Lattner019f4e82008-10-06 05:28:25 +00001188 // __builtin_constant_p always has one operand: it returns true if that
1189 // operand can be folded, false otherwise.
Daniel Dunbar131eb432009-02-19 09:06:44 +00001190 return Success(E->getArg(0)->isEvaluatable(Info.Ctx), E);
Chris Lattner21fb98e2009-09-23 06:06:36 +00001191
1192 case Builtin::BI__builtin_eh_return_data_regno: {
1193 int Operand = E->getArg(0)->EvaluateAsInt(Info.Ctx).getZExtValue();
1194 Operand = Info.Ctx.Target.getEHDataRegisterNumber(Operand);
1195 return Success(Operand, E);
1196 }
Eli Friedmanc4a26382010-02-13 00:10:10 +00001197
1198 case Builtin::BI__builtin_expect:
1199 return Visit(E->getArg(0));
Douglas Gregor5726d402010-09-10 06:27:15 +00001200
1201 case Builtin::BIstrlen:
1202 case Builtin::BI__builtin_strlen:
1203 // As an extension, we support strlen() and __builtin_strlen() as constant
1204 // expressions when the argument is a string literal.
1205 if (StringLiteral *S
1206 = dyn_cast<StringLiteral>(E->getArg(0)->IgnoreParenImpCasts())) {
1207 // The string literal may have embedded null characters. Find the first
1208 // one and truncate there.
1209 llvm::StringRef Str = S->getString();
1210 llvm::StringRef::size_type Pos = Str.find(0);
1211 if (Pos != llvm::StringRef::npos)
1212 Str = Str.substr(0, Pos);
1213
1214 return Success(Str.size(), E);
1215 }
1216
1217 return Error(E->getLocStart(), diag::note_invalid_subexpr_in_ice, E);
Chris Lattner019f4e82008-10-06 05:28:25 +00001218 }
Chris Lattner4c4867e2008-07-12 00:38:25 +00001219}
Anders Carlsson650c92f2008-07-08 15:34:11 +00001220
Chris Lattnerb542afe2008-07-11 19:10:17 +00001221bool IntExprEvaluator::VisitBinaryOperator(const BinaryOperator *E) {
John McCall2de56d12010-08-25 11:45:40 +00001222 if (E->getOpcode() == BO_Comma) {
Anders Carlsson027f62e2008-12-01 02:07:06 +00001223 if (!Visit(E->getRHS()))
1224 return false;
Anders Carlsson4fdfb092008-12-01 06:44:05 +00001225
Eli Friedman33ef1452009-02-26 10:19:36 +00001226 // If we can't evaluate the LHS, it might have side effects;
1227 // conservatively mark it.
1228 if (!E->getLHS()->isEvaluatable(Info.Ctx))
1229 Info.EvalResult.HasSideEffects = true;
Eli Friedmana6afa762008-11-13 06:09:17 +00001230
Anders Carlsson027f62e2008-12-01 02:07:06 +00001231 return true;
Eli Friedmana6afa762008-11-13 06:09:17 +00001232 }
1233
1234 if (E->isLogicalOp()) {
1235 // These need to be handled specially because the operands aren't
1236 // necessarily integral
Anders Carlssonfcb4d092008-11-30 16:51:17 +00001237 bool lhsResult, rhsResult;
Mike Stump1eb44332009-09-09 15:08:12 +00001238
Anders Carlssonfcb4d092008-11-30 16:51:17 +00001239 if (HandleConversionToBool(E->getLHS(), lhsResult, Info)) {
Anders Carlsson51fe9962008-11-22 21:04:56 +00001240 // We were able to evaluate the LHS, see if we can get away with not
1241 // evaluating the RHS: 0 && X -> 0, 1 || X -> 1
John McCall2de56d12010-08-25 11:45:40 +00001242 if (lhsResult == (E->getOpcode() == BO_LOr))
Daniel Dunbar3f7d9952009-02-19 18:37:50 +00001243 return Success(lhsResult, E);
Anders Carlsson4bbc0e02008-11-24 04:21:33 +00001244
Anders Carlssonfcb4d092008-11-30 16:51:17 +00001245 if (HandleConversionToBool(E->getRHS(), rhsResult, Info)) {
John McCall2de56d12010-08-25 11:45:40 +00001246 if (E->getOpcode() == BO_LOr)
Daniel Dunbar131eb432009-02-19 09:06:44 +00001247 return Success(lhsResult || rhsResult, E);
Anders Carlsson4bbc0e02008-11-24 04:21:33 +00001248 else
Daniel Dunbar131eb432009-02-19 09:06:44 +00001249 return Success(lhsResult && rhsResult, E);
Anders Carlsson4bbc0e02008-11-24 04:21:33 +00001250 }
1251 } else {
Anders Carlssonfcb4d092008-11-30 16:51:17 +00001252 if (HandleConversionToBool(E->getRHS(), rhsResult, Info)) {
Anders Carlsson4bbc0e02008-11-24 04:21:33 +00001253 // We can't evaluate the LHS; however, sometimes the result
1254 // is determined by the RHS: X && 0 -> 0, X || 1 -> 1.
John McCall2de56d12010-08-25 11:45:40 +00001255 if (rhsResult == (E->getOpcode() == BO_LOr) ||
1256 !rhsResult == (E->getOpcode() == BO_LAnd)) {
Daniel Dunbar131eb432009-02-19 09:06:44 +00001257 // Since we weren't able to evaluate the left hand side, it
Anders Carlssonfcb4d092008-11-30 16:51:17 +00001258 // must have had side effects.
1259 Info.EvalResult.HasSideEffects = true;
Daniel Dunbar131eb432009-02-19 09:06:44 +00001260
1261 return Success(rhsResult, E);
Anders Carlsson4bbc0e02008-11-24 04:21:33 +00001262 }
1263 }
Anders Carlsson51fe9962008-11-22 21:04:56 +00001264 }
Eli Friedmana6afa762008-11-13 06:09:17 +00001265
Eli Friedmana6afa762008-11-13 06:09:17 +00001266 return false;
1267 }
1268
Anders Carlsson286f85e2008-11-16 07:17:21 +00001269 QualType LHSTy = E->getLHS()->getType();
1270 QualType RHSTy = E->getRHS()->getType();
Daniel Dunbar4087e242009-01-29 06:43:41 +00001271
1272 if (LHSTy->isAnyComplexType()) {
1273 assert(RHSTy->isAnyComplexType() && "Invalid comparison");
John McCallf4cf1a12010-05-07 17:22:02 +00001274 ComplexValue LHS, RHS;
Daniel Dunbar4087e242009-01-29 06:43:41 +00001275
1276 if (!EvaluateComplex(E->getLHS(), LHS, Info))
1277 return false;
1278
1279 if (!EvaluateComplex(E->getRHS(), RHS, Info))
1280 return false;
1281
1282 if (LHS.isComplexFloat()) {
Mike Stump1eb44332009-09-09 15:08:12 +00001283 APFloat::cmpResult CR_r =
Daniel Dunbar4087e242009-01-29 06:43:41 +00001284 LHS.getComplexFloatReal().compare(RHS.getComplexFloatReal());
Mike Stump1eb44332009-09-09 15:08:12 +00001285 APFloat::cmpResult CR_i =
Daniel Dunbar4087e242009-01-29 06:43:41 +00001286 LHS.getComplexFloatImag().compare(RHS.getComplexFloatImag());
1287
John McCall2de56d12010-08-25 11:45:40 +00001288 if (E->getOpcode() == BO_EQ)
Daniel Dunbar131eb432009-02-19 09:06:44 +00001289 return Success((CR_r == APFloat::cmpEqual &&
1290 CR_i == APFloat::cmpEqual), E);
1291 else {
John McCall2de56d12010-08-25 11:45:40 +00001292 assert(E->getOpcode() == BO_NE &&
Daniel Dunbar131eb432009-02-19 09:06:44 +00001293 "Invalid complex comparison.");
Mike Stump1eb44332009-09-09 15:08:12 +00001294 return Success(((CR_r == APFloat::cmpGreaterThan ||
Mon P Wangfc39dc42010-04-29 05:53:29 +00001295 CR_r == APFloat::cmpLessThan ||
1296 CR_r == APFloat::cmpUnordered) ||
Mike Stump1eb44332009-09-09 15:08:12 +00001297 (CR_i == APFloat::cmpGreaterThan ||
Mon P Wangfc39dc42010-04-29 05:53:29 +00001298 CR_i == APFloat::cmpLessThan ||
1299 CR_i == APFloat::cmpUnordered)), E);
Daniel Dunbar131eb432009-02-19 09:06:44 +00001300 }
Daniel Dunbar4087e242009-01-29 06:43:41 +00001301 } else {
John McCall2de56d12010-08-25 11:45:40 +00001302 if (E->getOpcode() == BO_EQ)
Daniel Dunbar131eb432009-02-19 09:06:44 +00001303 return Success((LHS.getComplexIntReal() == RHS.getComplexIntReal() &&
1304 LHS.getComplexIntImag() == RHS.getComplexIntImag()), E);
1305 else {
John McCall2de56d12010-08-25 11:45:40 +00001306 assert(E->getOpcode() == BO_NE &&
Daniel Dunbar131eb432009-02-19 09:06:44 +00001307 "Invalid compex comparison.");
1308 return Success((LHS.getComplexIntReal() != RHS.getComplexIntReal() ||
1309 LHS.getComplexIntImag() != RHS.getComplexIntImag()), E);
1310 }
Daniel Dunbar4087e242009-01-29 06:43:41 +00001311 }
1312 }
Mike Stump1eb44332009-09-09 15:08:12 +00001313
Anders Carlsson286f85e2008-11-16 07:17:21 +00001314 if (LHSTy->isRealFloatingType() &&
1315 RHSTy->isRealFloatingType()) {
1316 APFloat RHS(0.0), LHS(0.0);
Mike Stump1eb44332009-09-09 15:08:12 +00001317
Anders Carlsson286f85e2008-11-16 07:17:21 +00001318 if (!EvaluateFloat(E->getRHS(), RHS, Info))
1319 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00001320
Anders Carlsson286f85e2008-11-16 07:17:21 +00001321 if (!EvaluateFloat(E->getLHS(), LHS, Info))
1322 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00001323
Anders Carlsson286f85e2008-11-16 07:17:21 +00001324 APFloat::cmpResult CR = LHS.compare(RHS);
Anders Carlsson529569e2008-11-16 22:46:56 +00001325
Anders Carlsson286f85e2008-11-16 07:17:21 +00001326 switch (E->getOpcode()) {
1327 default:
1328 assert(0 && "Invalid binary operator!");
John McCall2de56d12010-08-25 11:45:40 +00001329 case BO_LT:
Daniel Dunbar131eb432009-02-19 09:06:44 +00001330 return Success(CR == APFloat::cmpLessThan, E);
John McCall2de56d12010-08-25 11:45:40 +00001331 case BO_GT:
Daniel Dunbar131eb432009-02-19 09:06:44 +00001332 return Success(CR == APFloat::cmpGreaterThan, E);
John McCall2de56d12010-08-25 11:45:40 +00001333 case BO_LE:
Daniel Dunbar131eb432009-02-19 09:06:44 +00001334 return Success(CR == APFloat::cmpLessThan || CR == APFloat::cmpEqual, E);
John McCall2de56d12010-08-25 11:45:40 +00001335 case BO_GE:
Mike Stump1eb44332009-09-09 15:08:12 +00001336 return Success(CR == APFloat::cmpGreaterThan || CR == APFloat::cmpEqual,
Daniel Dunbar131eb432009-02-19 09:06:44 +00001337 E);
John McCall2de56d12010-08-25 11:45:40 +00001338 case BO_EQ:
Daniel Dunbar131eb432009-02-19 09:06:44 +00001339 return Success(CR == APFloat::cmpEqual, E);
John McCall2de56d12010-08-25 11:45:40 +00001340 case BO_NE:
Mike Stump1eb44332009-09-09 15:08:12 +00001341 return Success(CR == APFloat::cmpGreaterThan
Mon P Wangfc39dc42010-04-29 05:53:29 +00001342 || CR == APFloat::cmpLessThan
1343 || CR == APFloat::cmpUnordered, E);
Anders Carlsson286f85e2008-11-16 07:17:21 +00001344 }
Anders Carlsson286f85e2008-11-16 07:17:21 +00001345 }
Mike Stump1eb44332009-09-09 15:08:12 +00001346
Eli Friedmanad02d7d2009-04-28 19:17:36 +00001347 if (LHSTy->isPointerType() && RHSTy->isPointerType()) {
John McCall2de56d12010-08-25 11:45:40 +00001348 if (E->getOpcode() == BO_Sub || E->isEqualityOp()) {
John McCallefdb83e2010-05-07 21:00:08 +00001349 LValue LHSValue;
Anders Carlsson3068d112008-11-16 19:01:22 +00001350 if (!EvaluatePointer(E->getLHS(), LHSValue, Info))
1351 return false;
Eli Friedmana1f47c42009-03-23 04:38:34 +00001352
John McCallefdb83e2010-05-07 21:00:08 +00001353 LValue RHSValue;
Anders Carlsson3068d112008-11-16 19:01:22 +00001354 if (!EvaluatePointer(E->getRHS(), RHSValue, Info))
1355 return false;
Eli Friedmana1f47c42009-03-23 04:38:34 +00001356
Eli Friedman5bc86102009-06-14 02:17:33 +00001357 // Reject any bases from the normal codepath; we special-case comparisons
1358 // to null.
1359 if (LHSValue.getLValueBase()) {
1360 if (!E->isEqualityOp())
1361 return false;
Ken Dycka7305832010-01-15 12:37:54 +00001362 if (RHSValue.getLValueBase() || !RHSValue.getLValueOffset().isZero())
Eli Friedman5bc86102009-06-14 02:17:33 +00001363 return false;
1364 bool bres;
1365 if (!EvalPointerValueAsBool(LHSValue, bres))
1366 return false;
John McCall2de56d12010-08-25 11:45:40 +00001367 return Success(bres ^ (E->getOpcode() == BO_EQ), E);
Eli Friedman5bc86102009-06-14 02:17:33 +00001368 } else if (RHSValue.getLValueBase()) {
1369 if (!E->isEqualityOp())
1370 return false;
Ken Dycka7305832010-01-15 12:37:54 +00001371 if (LHSValue.getLValueBase() || !LHSValue.getLValueOffset().isZero())
Eli Friedman5bc86102009-06-14 02:17:33 +00001372 return false;
1373 bool bres;
1374 if (!EvalPointerValueAsBool(RHSValue, bres))
1375 return false;
John McCall2de56d12010-08-25 11:45:40 +00001376 return Success(bres ^ (E->getOpcode() == BO_EQ), E);
Eli Friedman5bc86102009-06-14 02:17:33 +00001377 }
Eli Friedmana1f47c42009-03-23 04:38:34 +00001378
John McCall2de56d12010-08-25 11:45:40 +00001379 if (E->getOpcode() == BO_Sub) {
Chris Lattner4992bdd2010-04-20 17:13:14 +00001380 QualType Type = E->getLHS()->getType();
1381 QualType ElementType = Type->getAs<PointerType>()->getPointeeType();
Anders Carlsson3068d112008-11-16 19:01:22 +00001382
Ken Dycka7305832010-01-15 12:37:54 +00001383 CharUnits ElementSize = CharUnits::One();
Eli Friedmance1bca72009-06-04 20:23:20 +00001384 if (!ElementType->isVoidType() && !ElementType->isFunctionType())
Ken Dycka7305832010-01-15 12:37:54 +00001385 ElementSize = Info.Ctx.getTypeSizeInChars(ElementType);
Eli Friedmana1f47c42009-03-23 04:38:34 +00001386
Ken Dycka7305832010-01-15 12:37:54 +00001387 CharUnits Diff = LHSValue.getLValueOffset() -
1388 RHSValue.getLValueOffset();
1389 return Success(Diff / ElementSize, E);
Eli Friedmanad02d7d2009-04-28 19:17:36 +00001390 }
1391 bool Result;
John McCall2de56d12010-08-25 11:45:40 +00001392 if (E->getOpcode() == BO_EQ) {
Eli Friedmanad02d7d2009-04-28 19:17:36 +00001393 Result = LHSValue.getLValueOffset() == RHSValue.getLValueOffset();
Eli Friedman267c0ab2009-04-29 20:29:43 +00001394 } else {
Eli Friedmanad02d7d2009-04-28 19:17:36 +00001395 Result = LHSValue.getLValueOffset() != RHSValue.getLValueOffset();
1396 }
1397 return Success(Result, E);
Anders Carlsson3068d112008-11-16 19:01:22 +00001398 }
1399 }
Douglas Gregor2ade35e2010-06-16 00:17:44 +00001400 if (!LHSTy->isIntegralOrEnumerationType() ||
1401 !RHSTy->isIntegralOrEnumerationType()) {
Eli Friedmana6afa762008-11-13 06:09:17 +00001402 // We can't continue from here for non-integral types, and they
1403 // could potentially confuse the following operations.
Eli Friedmana6afa762008-11-13 06:09:17 +00001404 return false;
1405 }
1406
Anders Carlssona25ae3d2008-07-08 14:35:21 +00001407 // The LHS of a constant expr is always evaluated and needed.
Daniel Dunbar30c37f42009-02-19 20:17:33 +00001408 if (!Visit(E->getLHS()))
Chris Lattner54176fd2008-07-12 00:14:42 +00001409 return false; // error in subexpression.
Eli Friedmand9f4bcd2008-07-27 05:46:18 +00001410
Eli Friedman42edd0d2009-03-24 01:14:50 +00001411 APValue RHSVal;
1412 if (!EvaluateIntegerOrLValue(E->getRHS(), RHSVal, Info))
Daniel Dunbar30c37f42009-02-19 20:17:33 +00001413 return false;
Eli Friedman42edd0d2009-03-24 01:14:50 +00001414
1415 // Handle cases like (unsigned long)&a + 4.
1416 if (E->isAdditiveOp() && Result.isLValue() && RHSVal.isInt()) {
Ken Dycka7305832010-01-15 12:37:54 +00001417 CharUnits Offset = Result.getLValueOffset();
1418 CharUnits AdditionalOffset = CharUnits::fromQuantity(
1419 RHSVal.getInt().getZExtValue());
John McCall2de56d12010-08-25 11:45:40 +00001420 if (E->getOpcode() == BO_Add)
Ken Dycka7305832010-01-15 12:37:54 +00001421 Offset += AdditionalOffset;
Eli Friedman42edd0d2009-03-24 01:14:50 +00001422 else
Ken Dycka7305832010-01-15 12:37:54 +00001423 Offset -= AdditionalOffset;
1424 Result = APValue(Result.getLValueBase(), Offset);
Eli Friedman42edd0d2009-03-24 01:14:50 +00001425 return true;
1426 }
1427
1428 // Handle cases like 4 + (unsigned long)&a
John McCall2de56d12010-08-25 11:45:40 +00001429 if (E->getOpcode() == BO_Add &&
Eli Friedman42edd0d2009-03-24 01:14:50 +00001430 RHSVal.isLValue() && Result.isInt()) {
Ken Dycka7305832010-01-15 12:37:54 +00001431 CharUnits Offset = RHSVal.getLValueOffset();
1432 Offset += CharUnits::fromQuantity(Result.getInt().getZExtValue());
1433 Result = APValue(RHSVal.getLValueBase(), Offset);
Eli Friedman42edd0d2009-03-24 01:14:50 +00001434 return true;
1435 }
1436
1437 // All the following cases expect both operands to be an integer
1438 if (!Result.isInt() || !RHSVal.isInt())
Chris Lattnerb542afe2008-07-11 19:10:17 +00001439 return false;
Eli Friedmana6afa762008-11-13 06:09:17 +00001440
Eli Friedman42edd0d2009-03-24 01:14:50 +00001441 APSInt& RHS = RHSVal.getInt();
1442
Anders Carlssona25ae3d2008-07-08 14:35:21 +00001443 switch (E->getOpcode()) {
Chris Lattner32fea9d2008-11-12 07:43:42 +00001444 default:
Anders Carlsson0e8acbb2008-11-30 18:37:00 +00001445 return Error(E->getOperatorLoc(), diag::note_invalid_subexpr_in_ice, E);
John McCall2de56d12010-08-25 11:45:40 +00001446 case BO_Mul: return Success(Result.getInt() * RHS, E);
1447 case BO_Add: return Success(Result.getInt() + RHS, E);
1448 case BO_Sub: return Success(Result.getInt() - RHS, E);
1449 case BO_And: return Success(Result.getInt() & RHS, E);
1450 case BO_Xor: return Success(Result.getInt() ^ RHS, E);
1451 case BO_Or: return Success(Result.getInt() | RHS, E);
1452 case BO_Div:
Chris Lattner54176fd2008-07-12 00:14:42 +00001453 if (RHS == 0)
Anders Carlsson0e8acbb2008-11-30 18:37:00 +00001454 return Error(E->getOperatorLoc(), diag::note_expr_divide_by_zero, E);
Daniel Dunbar30c37f42009-02-19 20:17:33 +00001455 return Success(Result.getInt() / RHS, E);
John McCall2de56d12010-08-25 11:45:40 +00001456 case BO_Rem:
Chris Lattner54176fd2008-07-12 00:14:42 +00001457 if (RHS == 0)
Anders Carlsson0e8acbb2008-11-30 18:37:00 +00001458 return Error(E->getOperatorLoc(), diag::note_expr_divide_by_zero, E);
Daniel Dunbar30c37f42009-02-19 20:17:33 +00001459 return Success(Result.getInt() % RHS, E);
John McCall2de56d12010-08-25 11:45:40 +00001460 case BO_Shl: {
John McCall091f23f2010-11-09 22:22:12 +00001461 // During constant-folding, a negative shift is an opposite shift.
1462 if (RHS.isSigned() && RHS.isNegative()) {
1463 RHS = -RHS;
1464 goto shift_right;
1465 }
1466
1467 shift_left:
1468 unsigned SA
1469 = (unsigned) RHS.getLimitedValue(Result.getInt().getBitWidth()-1);
Daniel Dunbar30c37f42009-02-19 20:17:33 +00001470 return Success(Result.getInt() << SA, E);
Daniel Dunbar3f7d9952009-02-19 18:37:50 +00001471 }
John McCall2de56d12010-08-25 11:45:40 +00001472 case BO_Shr: {
John McCall091f23f2010-11-09 22:22:12 +00001473 // During constant-folding, a negative shift is an opposite shift.
1474 if (RHS.isSigned() && RHS.isNegative()) {
1475 RHS = -RHS;
1476 goto shift_left;
1477 }
1478
1479 shift_right:
Mike Stump1eb44332009-09-09 15:08:12 +00001480 unsigned SA =
Daniel Dunbar30c37f42009-02-19 20:17:33 +00001481 (unsigned) RHS.getLimitedValue(Result.getInt().getBitWidth()-1);
1482 return Success(Result.getInt() >> SA, E);
Daniel Dunbar3f7d9952009-02-19 18:37:50 +00001483 }
Mike Stump1eb44332009-09-09 15:08:12 +00001484
John McCall2de56d12010-08-25 11:45:40 +00001485 case BO_LT: return Success(Result.getInt() < RHS, E);
1486 case BO_GT: return Success(Result.getInt() > RHS, E);
1487 case BO_LE: return Success(Result.getInt() <= RHS, E);
1488 case BO_GE: return Success(Result.getInt() >= RHS, E);
1489 case BO_EQ: return Success(Result.getInt() == RHS, E);
1490 case BO_NE: return Success(Result.getInt() != RHS, E);
Eli Friedmanb11e7782008-11-13 02:13:11 +00001491 }
Anders Carlssona25ae3d2008-07-08 14:35:21 +00001492}
1493
Nuno Lopesca7c2ea2008-11-16 19:28:31 +00001494bool IntExprEvaluator::VisitConditionalOperator(const ConditionalOperator *E) {
Nuno Lopesa25bd552008-11-16 22:06:39 +00001495 bool Cond;
1496 if (!HandleConversionToBool(E->getCond(), Cond, Info))
Nuno Lopesca7c2ea2008-11-16 19:28:31 +00001497 return false;
1498
Nuno Lopesa25bd552008-11-16 22:06:39 +00001499 return Visit(Cond ? E->getTrueExpr() : E->getFalseExpr());
Nuno Lopesca7c2ea2008-11-16 19:28:31 +00001500}
1501
Ken Dyck8b752f12010-01-27 17:10:57 +00001502CharUnits IntExprEvaluator::GetAlignOfType(QualType T) {
Sebastian Redl5d484e82009-11-23 17:18:46 +00001503 // C++ [expr.sizeof]p2: "When applied to a reference or a reference type,
1504 // the result is the size of the referenced type."
1505 // C++ [expr.alignof]p3: "When alignof is applied to a reference type, the
1506 // result shall be the alignment of the referenced type."
1507 if (const ReferenceType *Ref = T->getAs<ReferenceType>())
1508 T = Ref->getPointeeType();
1509
Chris Lattnere9feb472009-01-24 21:09:06 +00001510 // Get information about the alignment.
1511 unsigned CharSize = Info.Ctx.Target.getCharWidth();
Douglas Gregor18857642009-04-30 17:32:17 +00001512
Eli Friedman2be58612009-05-30 21:09:44 +00001513 // __alignof is defined to return the preferred alignment.
Ken Dyck8b752f12010-01-27 17:10:57 +00001514 return CharUnits::fromQuantity(
1515 Info.Ctx.getPreferredTypeAlign(T.getTypePtr()) / CharSize);
Chris Lattnere9feb472009-01-24 21:09:06 +00001516}
1517
Ken Dyck8b752f12010-01-27 17:10:57 +00001518CharUnits IntExprEvaluator::GetAlignOfExpr(const Expr *E) {
Chris Lattneraf707ab2009-01-24 21:53:27 +00001519 E = E->IgnoreParens();
1520
1521 // alignof decl is always accepted, even if it doesn't make sense: we default
Mike Stump1eb44332009-09-09 15:08:12 +00001522 // to 1 in those cases.
Chris Lattneraf707ab2009-01-24 21:53:27 +00001523 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E))
Ken Dyck8b752f12010-01-27 17:10:57 +00001524 return Info.Ctx.getDeclAlign(DRE->getDecl(),
1525 /*RefAsPointee*/true);
Eli Friedmana1f47c42009-03-23 04:38:34 +00001526
Chris Lattneraf707ab2009-01-24 21:53:27 +00001527 if (const MemberExpr *ME = dyn_cast<MemberExpr>(E))
Ken Dyck8b752f12010-01-27 17:10:57 +00001528 return Info.Ctx.getDeclAlign(ME->getMemberDecl(),
1529 /*RefAsPointee*/true);
Chris Lattneraf707ab2009-01-24 21:53:27 +00001530
Chris Lattnere9feb472009-01-24 21:09:06 +00001531 return GetAlignOfType(E->getType());
1532}
1533
1534
Sebastian Redl05189992008-11-11 17:56:53 +00001535/// VisitSizeAlignOfExpr - Evaluate a sizeof or alignof with a result as the
1536/// expression's type.
1537bool IntExprEvaluator::VisitSizeOfAlignOfExpr(const SizeOfAlignOfExpr *E) {
Chris Lattnere9feb472009-01-24 21:09:06 +00001538 // Handle alignof separately.
1539 if (!E->isSizeOf()) {
1540 if (E->isArgumentType())
Ken Dyck8b752f12010-01-27 17:10:57 +00001541 return Success(GetAlignOfType(E->getArgumentType()).getQuantity(), E);
Chris Lattnere9feb472009-01-24 21:09:06 +00001542 else
Ken Dyck8b752f12010-01-27 17:10:57 +00001543 return Success(GetAlignOfExpr(E->getArgumentExpr()).getQuantity(), E);
Chris Lattnere9feb472009-01-24 21:09:06 +00001544 }
Eli Friedmana1f47c42009-03-23 04:38:34 +00001545
Sebastian Redl05189992008-11-11 17:56:53 +00001546 QualType SrcTy = E->getTypeOfArgument();
Sebastian Redl5d484e82009-11-23 17:18:46 +00001547 // C++ [expr.sizeof]p2: "When applied to a reference or a reference type,
1548 // the result is the size of the referenced type."
1549 // C++ [expr.alignof]p3: "When alignof is applied to a reference type, the
1550 // result shall be the alignment of the referenced type."
1551 if (const ReferenceType *Ref = SrcTy->getAs<ReferenceType>())
1552 SrcTy = Ref->getPointeeType();
Sebastian Redl05189992008-11-11 17:56:53 +00001553
Daniel Dunbar131eb432009-02-19 09:06:44 +00001554 // sizeof(void), __alignof__(void), sizeof(function) = 1 as a gcc
1555 // extension.
1556 if (SrcTy->isVoidType() || SrcTy->isFunctionType())
1557 return Success(1, E);
Eli Friedmana1f47c42009-03-23 04:38:34 +00001558
Chris Lattnerfcee0012008-07-11 21:24:13 +00001559 // sizeof(vla) is not a constantexpr: C99 6.5.3.4p2.
Chris Lattnere9feb472009-01-24 21:09:06 +00001560 if (!SrcTy->isConstantSizeType())
Chris Lattnerfcee0012008-07-11 21:24:13 +00001561 return false;
Eli Friedmanf2da9df2009-01-24 22:19:05 +00001562
Chris Lattnere9feb472009-01-24 21:09:06 +00001563 // Get information about the size.
Ken Dyck199c3d62010-01-11 17:06:35 +00001564 return Success(Info.Ctx.getTypeSizeInChars(SrcTy).getQuantity(), E);
Chris Lattnerfcee0012008-07-11 21:24:13 +00001565}
1566
Douglas Gregor8ecdb652010-04-28 22:16:22 +00001567bool IntExprEvaluator::VisitOffsetOfExpr(const OffsetOfExpr *E) {
1568 CharUnits Result;
1569 unsigned n = E->getNumComponents();
1570 OffsetOfExpr* OOE = const_cast<OffsetOfExpr*>(E);
1571 if (n == 0)
1572 return false;
1573 QualType CurrentType = E->getTypeSourceInfo()->getType();
1574 for (unsigned i = 0; i != n; ++i) {
1575 OffsetOfExpr::OffsetOfNode ON = OOE->getComponent(i);
1576 switch (ON.getKind()) {
1577 case OffsetOfExpr::OffsetOfNode::Array: {
1578 Expr *Idx = OOE->getIndexExpr(ON.getArrayExprIndex());
1579 APSInt IdxResult;
1580 if (!EvaluateInteger(Idx, IdxResult, Info))
1581 return false;
1582 const ArrayType *AT = Info.Ctx.getAsArrayType(CurrentType);
1583 if (!AT)
1584 return false;
1585 CurrentType = AT->getElementType();
1586 CharUnits ElementSize = Info.Ctx.getTypeSizeInChars(CurrentType);
1587 Result += IdxResult.getSExtValue() * ElementSize;
1588 break;
1589 }
1590
1591 case OffsetOfExpr::OffsetOfNode::Field: {
1592 FieldDecl *MemberDecl = ON.getField();
1593 const RecordType *RT = CurrentType->getAs<RecordType>();
1594 if (!RT)
1595 return false;
1596 RecordDecl *RD = RT->getDecl();
1597 const ASTRecordLayout &RL = Info.Ctx.getASTRecordLayout(RD);
1598 unsigned i = 0;
1599 // FIXME: It would be nice if we didn't have to loop here!
1600 for (RecordDecl::field_iterator Field = RD->field_begin(),
1601 FieldEnd = RD->field_end();
1602 Field != FieldEnd; (void)++Field, ++i) {
1603 if (*Field == MemberDecl)
1604 break;
1605 }
Douglas Gregorcc8a5d52010-04-29 00:18:15 +00001606 assert(i < RL.getFieldCount() && "offsetof field in wrong type");
1607 Result += CharUnits::fromQuantity(
1608 RL.getFieldOffset(i) / Info.Ctx.getCharWidth());
Douglas Gregor8ecdb652010-04-28 22:16:22 +00001609 CurrentType = MemberDecl->getType().getNonReferenceType();
1610 break;
1611 }
1612
1613 case OffsetOfExpr::OffsetOfNode::Identifier:
1614 llvm_unreachable("dependent __builtin_offsetof");
Douglas Gregorcc8a5d52010-04-29 00:18:15 +00001615 return false;
1616
1617 case OffsetOfExpr::OffsetOfNode::Base: {
1618 CXXBaseSpecifier *BaseSpec = ON.getBase();
1619 if (BaseSpec->isVirtual())
1620 return false;
1621
1622 // Find the layout of the class whose base we are looking into.
1623 const RecordType *RT = CurrentType->getAs<RecordType>();
1624 if (!RT)
1625 return false;
1626 RecordDecl *RD = RT->getDecl();
1627 const ASTRecordLayout &RL = Info.Ctx.getASTRecordLayout(RD);
1628
1629 // Find the base class itself.
1630 CurrentType = BaseSpec->getType();
1631 const RecordType *BaseRT = CurrentType->getAs<RecordType>();
1632 if (!BaseRT)
1633 return false;
1634
1635 // Add the offset to the base.
1636 Result += CharUnits::fromQuantity(
Anders Carlssona14f5972010-10-31 23:22:37 +00001637 RL.getBaseClassOffsetInBits(cast<CXXRecordDecl>(BaseRT->getDecl()))
Douglas Gregorcc8a5d52010-04-29 00:18:15 +00001638 / Info.Ctx.getCharWidth());
1639 break;
1640 }
Douglas Gregor8ecdb652010-04-28 22:16:22 +00001641 }
1642 }
1643 return Success(Result.getQuantity(), E);
1644}
1645
Chris Lattnerb542afe2008-07-11 19:10:17 +00001646bool IntExprEvaluator::VisitUnaryOperator(const UnaryOperator *E) {
John McCall2de56d12010-08-25 11:45:40 +00001647 if (E->getOpcode() == UO_LNot) {
Eli Friedmana6afa762008-11-13 06:09:17 +00001648 // LNot's operand isn't necessarily an integer, so we handle it specially.
1649 bool bres;
1650 if (!HandleConversionToBool(E->getSubExpr(), bres, Info))
1651 return false;
Daniel Dunbar131eb432009-02-19 09:06:44 +00001652 return Success(!bres, E);
Eli Friedmana6afa762008-11-13 06:09:17 +00001653 }
1654
Daniel Dunbar4fff4812009-02-21 18:14:20 +00001655 // Only handle integral operations...
Douglas Gregor2ade35e2010-06-16 00:17:44 +00001656 if (!E->getSubExpr()->getType()->isIntegralOrEnumerationType())
Daniel Dunbar4fff4812009-02-21 18:14:20 +00001657 return false;
1658
Chris Lattner87eae5e2008-07-11 22:52:41 +00001659 // Get the operand value into 'Result'.
1660 if (!Visit(E->getSubExpr()))
Chris Lattner75a48812008-07-11 22:15:16 +00001661 return false;
Anders Carlssona25ae3d2008-07-08 14:35:21 +00001662
Chris Lattner75a48812008-07-11 22:15:16 +00001663 switch (E->getOpcode()) {
Chris Lattner4c4867e2008-07-12 00:38:25 +00001664 default:
Chris Lattner75a48812008-07-11 22:15:16 +00001665 // Address, indirect, pre/post inc/dec, etc are not valid constant exprs.
1666 // See C99 6.6p3.
Anders Carlsson0e8acbb2008-11-30 18:37:00 +00001667 return Error(E->getOperatorLoc(), diag::note_invalid_subexpr_in_ice, E);
John McCall2de56d12010-08-25 11:45:40 +00001668 case UO_Extension:
Chris Lattner4c4867e2008-07-12 00:38:25 +00001669 // FIXME: Should extension allow i-c-e extension expressions in its scope?
1670 // If so, we could clear the diagnostic ID.
Daniel Dunbar3f7d9952009-02-19 18:37:50 +00001671 return true;
John McCall2de56d12010-08-25 11:45:40 +00001672 case UO_Plus:
Mike Stump1eb44332009-09-09 15:08:12 +00001673 // The result is always just the subexpr.
Daniel Dunbar3f7d9952009-02-19 18:37:50 +00001674 return true;
John McCall2de56d12010-08-25 11:45:40 +00001675 case UO_Minus:
Daniel Dunbar30c37f42009-02-19 20:17:33 +00001676 if (!Result.isInt()) return false;
1677 return Success(-Result.getInt(), E);
John McCall2de56d12010-08-25 11:45:40 +00001678 case UO_Not:
Daniel Dunbar30c37f42009-02-19 20:17:33 +00001679 if (!Result.isInt()) return false;
1680 return Success(~Result.getInt(), E);
Anders Carlssona25ae3d2008-07-08 14:35:21 +00001681 }
Anders Carlssona25ae3d2008-07-08 14:35:21 +00001682}
Mike Stump1eb44332009-09-09 15:08:12 +00001683
Chris Lattner732b2232008-07-12 01:15:53 +00001684/// HandleCast - This is used to evaluate implicit or explicit casts where the
1685/// result type is integer.
Daniel Dunbara2cfd342009-01-29 06:16:07 +00001686bool IntExprEvaluator::VisitCastExpr(CastExpr *E) {
Anders Carlsson82206e22008-11-30 18:14:57 +00001687 Expr *SubExpr = E->getSubExpr();
1688 QualType DestType = E->getType();
Daniel Dunbarb92dac82009-02-19 22:16:29 +00001689 QualType SrcType = SubExpr->getType();
Anders Carlsson82206e22008-11-30 18:14:57 +00001690
Eli Friedman4efaa272008-11-12 09:44:48 +00001691 if (DestType->isBooleanType()) {
1692 bool BoolResult;
1693 if (!HandleConversionToBool(SubExpr, BoolResult, Info))
1694 return false;
Daniel Dunbar131eb432009-02-19 09:06:44 +00001695 return Success(BoolResult, E);
Eli Friedman4efaa272008-11-12 09:44:48 +00001696 }
1697
Anders Carlssona25ae3d2008-07-08 14:35:21 +00001698 // Handle simple integer->integer casts.
Douglas Gregor2ade35e2010-06-16 00:17:44 +00001699 if (SrcType->isIntegralOrEnumerationType()) {
Chris Lattner732b2232008-07-12 01:15:53 +00001700 if (!Visit(SubExpr))
Chris Lattnerb542afe2008-07-11 19:10:17 +00001701 return false;
Daniel Dunbara2cfd342009-01-29 06:16:07 +00001702
Eli Friedmanbe265702009-02-20 01:15:07 +00001703 if (!Result.isInt()) {
1704 // Only allow casts of lvalues if they are lossless.
1705 return Info.Ctx.getTypeSize(DestType) == Info.Ctx.getTypeSize(SrcType);
1706 }
Daniel Dunbar30c37f42009-02-19 20:17:33 +00001707
Daniel Dunbardd211642009-02-19 22:24:01 +00001708 return Success(HandleIntToIntCast(DestType, SrcType,
Daniel Dunbar30c37f42009-02-19 20:17:33 +00001709 Result.getInt(), Info.Ctx), E);
Chris Lattner732b2232008-07-12 01:15:53 +00001710 }
Mike Stump1eb44332009-09-09 15:08:12 +00001711
Chris Lattner732b2232008-07-12 01:15:53 +00001712 // FIXME: Clean this up!
Daniel Dunbarb92dac82009-02-19 22:16:29 +00001713 if (SrcType->isPointerType()) {
John McCallefdb83e2010-05-07 21:00:08 +00001714 LValue LV;
Chris Lattner87eae5e2008-07-11 22:52:41 +00001715 if (!EvaluatePointer(SubExpr, LV, Info))
Chris Lattnerb542afe2008-07-11 19:10:17 +00001716 return false;
Eli Friedman4efaa272008-11-12 09:44:48 +00001717
Daniel Dunbardd211642009-02-19 22:24:01 +00001718 if (LV.getLValueBase()) {
1719 // Only allow based lvalue casts if they are lossless.
1720 if (Info.Ctx.getTypeSize(DestType) != Info.Ctx.getTypeSize(SrcType))
1721 return false;
Eli Friedman4efaa272008-11-12 09:44:48 +00001722
John McCallefdb83e2010-05-07 21:00:08 +00001723 LV.moveInto(Result);
Daniel Dunbardd211642009-02-19 22:24:01 +00001724 return true;
1725 }
1726
Ken Dycka7305832010-01-15 12:37:54 +00001727 APSInt AsInt = Info.Ctx.MakeIntValue(LV.getLValueOffset().getQuantity(),
1728 SrcType);
Daniel Dunbardd211642009-02-19 22:24:01 +00001729 return Success(HandleIntToIntCast(DestType, SrcType, AsInt, Info.Ctx), E);
Anders Carlsson2bad1682008-07-08 14:30:00 +00001730 }
Eli Friedman4efaa272008-11-12 09:44:48 +00001731
Eli Friedmanbe265702009-02-20 01:15:07 +00001732 if (SrcType->isArrayType() || SrcType->isFunctionType()) {
1733 // This handles double-conversion cases, where there's both
1734 // an l-value promotion and an implicit conversion to int.
John McCallefdb83e2010-05-07 21:00:08 +00001735 LValue LV;
Eli Friedmanbe265702009-02-20 01:15:07 +00001736 if (!EvaluateLValue(SubExpr, LV, Info))
1737 return false;
1738
1739 if (Info.Ctx.getTypeSize(DestType) != Info.Ctx.getTypeSize(Info.Ctx.VoidPtrTy))
1740 return false;
1741
John McCallefdb83e2010-05-07 21:00:08 +00001742 LV.moveInto(Result);
Eli Friedmanbe265702009-02-20 01:15:07 +00001743 return true;
1744 }
1745
Eli Friedman1725f682009-04-22 19:23:09 +00001746 if (SrcType->isAnyComplexType()) {
John McCallf4cf1a12010-05-07 17:22:02 +00001747 ComplexValue C;
Eli Friedman1725f682009-04-22 19:23:09 +00001748 if (!EvaluateComplex(SubExpr, C, Info))
1749 return false;
1750 if (C.isComplexFloat())
1751 return Success(HandleFloatToIntCast(DestType, SrcType,
1752 C.getComplexFloatReal(), Info.Ctx),
1753 E);
1754 else
1755 return Success(HandleIntToIntCast(DestType, SrcType,
1756 C.getComplexIntReal(), Info.Ctx), E);
1757 }
Eli Friedman2217c872009-02-22 11:46:18 +00001758 // FIXME: Handle vectors
1759
Daniel Dunbarb92dac82009-02-19 22:16:29 +00001760 if (!SrcType->isRealFloatingType())
Anders Carlsson0e8acbb2008-11-30 18:37:00 +00001761 return Error(E->getExprLoc(), diag::note_invalid_subexpr_in_ice, E);
Chris Lattner732b2232008-07-12 01:15:53 +00001762
Eli Friedmand8bfe7f2008-08-22 00:06:13 +00001763 APFloat F(0.0);
1764 if (!EvaluateFloat(SubExpr, F, Info))
Anders Carlsson0e8acbb2008-11-30 18:37:00 +00001765 return Error(E->getExprLoc(), diag::note_invalid_subexpr_in_ice, E);
Mike Stump1eb44332009-09-09 15:08:12 +00001766
Daniel Dunbarb92dac82009-02-19 22:16:29 +00001767 return Success(HandleFloatToIntCast(DestType, SrcType, F, Info.Ctx), E);
Anders Carlssona25ae3d2008-07-08 14:35:21 +00001768}
Anders Carlsson2bad1682008-07-08 14:30:00 +00001769
Eli Friedman722c7172009-02-28 03:59:05 +00001770bool IntExprEvaluator::VisitUnaryReal(const UnaryOperator *E) {
1771 if (E->getSubExpr()->getType()->isAnyComplexType()) {
John McCallf4cf1a12010-05-07 17:22:02 +00001772 ComplexValue LV;
Eli Friedman722c7172009-02-28 03:59:05 +00001773 if (!EvaluateComplex(E->getSubExpr(), LV, Info) || !LV.isComplexInt())
1774 return Error(E->getExprLoc(), diag::note_invalid_subexpr_in_ice, E);
1775 return Success(LV.getComplexIntReal(), E);
1776 }
1777
1778 return Visit(E->getSubExpr());
1779}
1780
Eli Friedman664a1042009-02-27 04:45:43 +00001781bool IntExprEvaluator::VisitUnaryImag(const UnaryOperator *E) {
Eli Friedman722c7172009-02-28 03:59:05 +00001782 if (E->getSubExpr()->getType()->isComplexIntegerType()) {
John McCallf4cf1a12010-05-07 17:22:02 +00001783 ComplexValue LV;
Eli Friedman722c7172009-02-28 03:59:05 +00001784 if (!EvaluateComplex(E->getSubExpr(), LV, Info) || !LV.isComplexInt())
1785 return Error(E->getExprLoc(), diag::note_invalid_subexpr_in_ice, E);
1786 return Success(LV.getComplexIntImag(), E);
1787 }
1788
Eli Friedman664a1042009-02-27 04:45:43 +00001789 if (!E->getSubExpr()->isEvaluatable(Info.Ctx))
1790 Info.EvalResult.HasSideEffects = true;
1791 return Success(0, E);
1792}
1793
Sebastian Redl295995c2010-09-10 20:55:47 +00001794bool IntExprEvaluator::VisitCXXNoexceptExpr(const CXXNoexceptExpr *E) {
1795 return Success(E->getValue(), E);
1796}
1797
Chris Lattnerf5eeb052008-07-11 18:11:29 +00001798//===----------------------------------------------------------------------===//
Eli Friedmand8bfe7f2008-08-22 00:06:13 +00001799// Float Evaluation
1800//===----------------------------------------------------------------------===//
1801
1802namespace {
Benjamin Kramer770b4a82009-11-28 19:03:38 +00001803class FloatExprEvaluator
Eli Friedmand8bfe7f2008-08-22 00:06:13 +00001804 : public StmtVisitor<FloatExprEvaluator, bool> {
1805 EvalInfo &Info;
1806 APFloat &Result;
1807public:
1808 FloatExprEvaluator(EvalInfo &info, APFloat &result)
1809 : Info(info), Result(result) {}
1810
1811 bool VisitStmt(Stmt *S) {
1812 return false;
1813 }
1814
1815 bool VisitParenExpr(ParenExpr *E) { return Visit(E->getSubExpr()); }
Chris Lattner019f4e82008-10-06 05:28:25 +00001816 bool VisitCallExpr(const CallExpr *E);
Eli Friedmand8bfe7f2008-08-22 00:06:13 +00001817
Daniel Dunbar5db4b3f2008-10-16 03:51:50 +00001818 bool VisitUnaryOperator(const UnaryOperator *E);
Eli Friedmand8bfe7f2008-08-22 00:06:13 +00001819 bool VisitBinaryOperator(const BinaryOperator *E);
1820 bool VisitFloatingLiteral(const FloatingLiteral *E);
Eli Friedman4efaa272008-11-12 09:44:48 +00001821 bool VisitCastExpr(CastExpr *E);
Douglas Gregored8abf12010-07-08 06:14:04 +00001822 bool VisitCXXScalarValueInitExpr(CXXScalarValueInitExpr *E);
Eli Friedman67f85fc2009-12-04 02:12:53 +00001823 bool VisitConditionalOperator(ConditionalOperator *E);
Eli Friedman2217c872009-02-22 11:46:18 +00001824
Eli Friedmanba98d6b2009-03-23 04:56:01 +00001825 bool VisitChooseExpr(const ChooseExpr *E)
1826 { return Visit(E->getChosenSubExpr(Info.Ctx)); }
1827 bool VisitUnaryExtension(const UnaryOperator *E)
1828 { return Visit(E->getSubExpr()); }
John McCallabd3a852010-05-07 22:08:54 +00001829 bool VisitUnaryReal(const UnaryOperator *E);
1830 bool VisitUnaryImag(const UnaryOperator *E);
Eli Friedmanba98d6b2009-03-23 04:56:01 +00001831
John McCall189d6ef2010-10-09 01:34:31 +00001832 bool VisitDeclRefExpr(const DeclRefExpr *E);
1833
John McCallabd3a852010-05-07 22:08:54 +00001834 // FIXME: Missing: array subscript of vector, member of vector,
1835 // ImplicitValueInitExpr
Eli Friedmand8bfe7f2008-08-22 00:06:13 +00001836};
1837} // end anonymous namespace
1838
1839static bool EvaluateFloat(const Expr* E, APFloat& Result, EvalInfo &Info) {
John McCall7db7acb2010-05-07 05:46:35 +00001840 assert(E->getType()->isRealFloatingType());
Eli Friedmand8bfe7f2008-08-22 00:06:13 +00001841 return FloatExprEvaluator(Info, Result).Visit(const_cast<Expr*>(E));
1842}
1843
John McCalldb7b72a2010-02-28 13:00:19 +00001844static bool TryEvaluateBuiltinNaN(ASTContext &Context,
1845 QualType ResultTy,
1846 const Expr *Arg,
1847 bool SNaN,
1848 llvm::APFloat &Result) {
1849 const StringLiteral *S = dyn_cast<StringLiteral>(Arg->IgnoreParenCasts());
1850 if (!S) return false;
1851
1852 const llvm::fltSemantics &Sem = Context.getFloatTypeSemantics(ResultTy);
1853
1854 llvm::APInt fill;
1855
1856 // Treat empty strings as if they were zero.
1857 if (S->getString().empty())
1858 fill = llvm::APInt(32, 0);
1859 else if (S->getString().getAsInteger(0, fill))
1860 return false;
1861
1862 if (SNaN)
1863 Result = llvm::APFloat::getSNaN(Sem, false, &fill);
1864 else
1865 Result = llvm::APFloat::getQNaN(Sem, false, &fill);
1866 return true;
1867}
1868
Chris Lattner019f4e82008-10-06 05:28:25 +00001869bool FloatExprEvaluator::VisitCallExpr(const CallExpr *E) {
Douglas Gregor3c385e52009-02-14 18:57:46 +00001870 switch (E->isBuiltinCall(Info.Ctx)) {
Chris Lattner34a74ab2008-10-06 05:53:16 +00001871 default: return false;
Chris Lattner019f4e82008-10-06 05:28:25 +00001872 case Builtin::BI__builtin_huge_val:
1873 case Builtin::BI__builtin_huge_valf:
1874 case Builtin::BI__builtin_huge_vall:
1875 case Builtin::BI__builtin_inf:
1876 case Builtin::BI__builtin_inff:
Daniel Dunbar7cbed032008-10-14 05:41:12 +00001877 case Builtin::BI__builtin_infl: {
1878 const llvm::fltSemantics &Sem =
1879 Info.Ctx.getFloatTypeSemantics(E->getType());
Chris Lattner34a74ab2008-10-06 05:53:16 +00001880 Result = llvm::APFloat::getInf(Sem);
1881 return true;
Daniel Dunbar7cbed032008-10-14 05:41:12 +00001882 }
Mike Stump1eb44332009-09-09 15:08:12 +00001883
John McCalldb7b72a2010-02-28 13:00:19 +00001884 case Builtin::BI__builtin_nans:
1885 case Builtin::BI__builtin_nansf:
1886 case Builtin::BI__builtin_nansl:
1887 return TryEvaluateBuiltinNaN(Info.Ctx, E->getType(), E->getArg(0),
1888 true, Result);
1889
Chris Lattner9e621712008-10-06 06:31:58 +00001890 case Builtin::BI__builtin_nan:
1891 case Builtin::BI__builtin_nanf:
1892 case Builtin::BI__builtin_nanl:
Mike Stump4572bab2009-05-30 03:56:50 +00001893 // If this is __builtin_nan() turn this into a nan, otherwise we
Chris Lattner9e621712008-10-06 06:31:58 +00001894 // can't constant fold it.
John McCalldb7b72a2010-02-28 13:00:19 +00001895 return TryEvaluateBuiltinNaN(Info.Ctx, E->getType(), E->getArg(0),
1896 false, Result);
Daniel Dunbar5db4b3f2008-10-16 03:51:50 +00001897
1898 case Builtin::BI__builtin_fabs:
1899 case Builtin::BI__builtin_fabsf:
1900 case Builtin::BI__builtin_fabsl:
1901 if (!EvaluateFloat(E->getArg(0), Result, Info))
1902 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00001903
Daniel Dunbar5db4b3f2008-10-16 03:51:50 +00001904 if (Result.isNegative())
1905 Result.changeSign();
1906 return true;
1907
Mike Stump1eb44332009-09-09 15:08:12 +00001908 case Builtin::BI__builtin_copysign:
1909 case Builtin::BI__builtin_copysignf:
Daniel Dunbar5db4b3f2008-10-16 03:51:50 +00001910 case Builtin::BI__builtin_copysignl: {
1911 APFloat RHS(0.);
1912 if (!EvaluateFloat(E->getArg(0), Result, Info) ||
1913 !EvaluateFloat(E->getArg(1), RHS, Info))
1914 return false;
1915 Result.copySign(RHS);
1916 return true;
1917 }
Chris Lattner019f4e82008-10-06 05:28:25 +00001918 }
1919}
1920
John McCall189d6ef2010-10-09 01:34:31 +00001921bool FloatExprEvaluator::VisitDeclRefExpr(const DeclRefExpr *E) {
1922 const Decl *D = E->getDecl();
1923 if (!isa<VarDecl>(D) || isa<ParmVarDecl>(D)) return false;
1924 const VarDecl *VD = cast<VarDecl>(D);
1925
1926 // Require the qualifiers to be const and not volatile.
1927 CanQualType T = Info.Ctx.getCanonicalType(E->getType());
1928 if (!T.isConstQualified() || T.isVolatileQualified())
1929 return false;
1930
1931 const Expr *Init = VD->getAnyInitializer();
1932 if (!Init) return false;
1933
1934 if (APValue *V = VD->getEvaluatedValue()) {
1935 if (V->isFloat()) {
1936 Result = V->getFloat();
1937 return true;
1938 }
1939 return false;
1940 }
1941
1942 if (VD->isEvaluatingValue())
1943 return false;
1944
1945 VD->setEvaluatingValue();
1946
1947 Expr::EvalResult InitResult;
1948 if (Init->Evaluate(InitResult, Info.Ctx) && !InitResult.HasSideEffects &&
1949 InitResult.Val.isFloat()) {
1950 // Cache the evaluated value in the variable declaration.
1951 Result = InitResult.Val.getFloat();
1952 VD->setEvaluatedValue(InitResult.Val);
1953 return true;
1954 }
1955
1956 VD->setEvaluatedValue(APValue());
1957 return false;
1958}
1959
John McCallabd3a852010-05-07 22:08:54 +00001960bool FloatExprEvaluator::VisitUnaryReal(const UnaryOperator *E) {
Eli Friedman43efa312010-08-14 20:52:13 +00001961 if (E->getSubExpr()->getType()->isAnyComplexType()) {
1962 ComplexValue CV;
1963 if (!EvaluateComplex(E->getSubExpr(), CV, Info))
1964 return false;
1965 Result = CV.FloatReal;
1966 return true;
1967 }
1968
1969 return Visit(E->getSubExpr());
John McCallabd3a852010-05-07 22:08:54 +00001970}
1971
1972bool FloatExprEvaluator::VisitUnaryImag(const UnaryOperator *E) {
Eli Friedman43efa312010-08-14 20:52:13 +00001973 if (E->getSubExpr()->getType()->isAnyComplexType()) {
1974 ComplexValue CV;
1975 if (!EvaluateComplex(E->getSubExpr(), CV, Info))
1976 return false;
1977 Result = CV.FloatImag;
1978 return true;
1979 }
1980
1981 if (!E->getSubExpr()->isEvaluatable(Info.Ctx))
1982 Info.EvalResult.HasSideEffects = true;
1983 const llvm::fltSemantics &Sem = Info.Ctx.getFloatTypeSemantics(E->getType());
1984 Result = llvm::APFloat::getZero(Sem);
John McCallabd3a852010-05-07 22:08:54 +00001985 return true;
1986}
1987
Daniel Dunbar5db4b3f2008-10-16 03:51:50 +00001988bool FloatExprEvaluator::VisitUnaryOperator(const UnaryOperator *E) {
John McCall2de56d12010-08-25 11:45:40 +00001989 if (E->getOpcode() == UO_Deref)
Nuno Lopesa468d342008-11-19 17:44:31 +00001990 return false;
1991
Daniel Dunbar5db4b3f2008-10-16 03:51:50 +00001992 if (!EvaluateFloat(E->getSubExpr(), Result, Info))
1993 return false;
1994
1995 switch (E->getOpcode()) {
1996 default: return false;
John McCall2de56d12010-08-25 11:45:40 +00001997 case UO_Plus:
Daniel Dunbar5db4b3f2008-10-16 03:51:50 +00001998 return true;
John McCall2de56d12010-08-25 11:45:40 +00001999 case UO_Minus:
Daniel Dunbar5db4b3f2008-10-16 03:51:50 +00002000 Result.changeSign();
2001 return true;
2002 }
2003}
Chris Lattner019f4e82008-10-06 05:28:25 +00002004
Eli Friedmand8bfe7f2008-08-22 00:06:13 +00002005bool FloatExprEvaluator::VisitBinaryOperator(const BinaryOperator *E) {
John McCall2de56d12010-08-25 11:45:40 +00002006 if (E->getOpcode() == BO_Comma) {
Eli Friedman7f92f032009-11-16 04:25:37 +00002007 if (!EvaluateFloat(E->getRHS(), Result, Info))
2008 return false;
2009
2010 // If we can't evaluate the LHS, it might have side effects;
2011 // conservatively mark it.
2012 if (!E->getLHS()->isEvaluatable(Info.Ctx))
2013 Info.EvalResult.HasSideEffects = true;
2014
2015 return true;
2016 }
2017
Anders Carlsson96e93662010-10-31 01:21:47 +00002018 // We can't evaluate pointer-to-member operations.
2019 if (E->isPtrMemOp())
2020 return false;
2021
Eli Friedmand8bfe7f2008-08-22 00:06:13 +00002022 // FIXME: Diagnostics? I really don't understand how the warnings
2023 // and errors are supposed to work.
Daniel Dunbar5db4b3f2008-10-16 03:51:50 +00002024 APFloat RHS(0.0);
Eli Friedmand8bfe7f2008-08-22 00:06:13 +00002025 if (!EvaluateFloat(E->getLHS(), Result, Info))
2026 return false;
2027 if (!EvaluateFloat(E->getRHS(), RHS, Info))
2028 return false;
2029
2030 switch (E->getOpcode()) {
2031 default: return false;
John McCall2de56d12010-08-25 11:45:40 +00002032 case BO_Mul:
Eli Friedmand8bfe7f2008-08-22 00:06:13 +00002033 Result.multiply(RHS, APFloat::rmNearestTiesToEven);
2034 return true;
John McCall2de56d12010-08-25 11:45:40 +00002035 case BO_Add:
Eli Friedmand8bfe7f2008-08-22 00:06:13 +00002036 Result.add(RHS, APFloat::rmNearestTiesToEven);
2037 return true;
John McCall2de56d12010-08-25 11:45:40 +00002038 case BO_Sub:
Eli Friedmand8bfe7f2008-08-22 00:06:13 +00002039 Result.subtract(RHS, APFloat::rmNearestTiesToEven);
2040 return true;
John McCall2de56d12010-08-25 11:45:40 +00002041 case BO_Div:
Eli Friedmand8bfe7f2008-08-22 00:06:13 +00002042 Result.divide(RHS, APFloat::rmNearestTiesToEven);
2043 return true;
Eli Friedmand8bfe7f2008-08-22 00:06:13 +00002044 }
2045}
2046
2047bool FloatExprEvaluator::VisitFloatingLiteral(const FloatingLiteral *E) {
2048 Result = E->getValue();
2049 return true;
2050}
2051
Eli Friedman4efaa272008-11-12 09:44:48 +00002052bool FloatExprEvaluator::VisitCastExpr(CastExpr *E) {
2053 Expr* SubExpr = E->getSubExpr();
Mike Stump1eb44332009-09-09 15:08:12 +00002054
Douglas Gregor2ade35e2010-06-16 00:17:44 +00002055 if (SubExpr->getType()->isIntegralOrEnumerationType()) {
Eli Friedman4efaa272008-11-12 09:44:48 +00002056 APSInt IntResult;
Daniel Dunbar3f7d9952009-02-19 18:37:50 +00002057 if (!EvaluateInteger(SubExpr, IntResult, Info))
Eli Friedman4efaa272008-11-12 09:44:48 +00002058 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00002059 Result = HandleIntToFloatCast(E->getType(), SubExpr->getType(),
Daniel Dunbara2cfd342009-01-29 06:16:07 +00002060 IntResult, Info.Ctx);
Eli Friedman4efaa272008-11-12 09:44:48 +00002061 return true;
2062 }
2063 if (SubExpr->getType()->isRealFloatingType()) {
2064 if (!Visit(SubExpr))
2065 return false;
Daniel Dunbara2cfd342009-01-29 06:16:07 +00002066 Result = HandleFloatToFloatCast(E->getType(), SubExpr->getType(),
2067 Result, Info.Ctx);
Eli Friedman4efaa272008-11-12 09:44:48 +00002068 return true;
2069 }
Eli Friedman2217c872009-02-22 11:46:18 +00002070 // FIXME: Handle complex types
Eli Friedman4efaa272008-11-12 09:44:48 +00002071
2072 return false;
2073}
2074
Douglas Gregored8abf12010-07-08 06:14:04 +00002075bool FloatExprEvaluator::VisitCXXScalarValueInitExpr(CXXScalarValueInitExpr *E) {
Eli Friedman4efaa272008-11-12 09:44:48 +00002076 Result = APFloat::getZero(Info.Ctx.getFloatTypeSemantics(E->getType()));
2077 return true;
2078}
2079
Eli Friedman67f85fc2009-12-04 02:12:53 +00002080bool FloatExprEvaluator::VisitConditionalOperator(ConditionalOperator *E) {
2081 bool Cond;
2082 if (!HandleConversionToBool(E->getCond(), Cond, Info))
2083 return false;
2084
2085 return Visit(Cond ? E->getTrueExpr() : E->getFalseExpr());
2086}
2087
Eli Friedmand8bfe7f2008-08-22 00:06:13 +00002088//===----------------------------------------------------------------------===//
Daniel Dunbara5fd07b2009-01-28 22:24:07 +00002089// Complex Evaluation (for float and integer)
Anders Carlsson9ad16ae2008-11-16 20:27:53 +00002090//===----------------------------------------------------------------------===//
2091
2092namespace {
Benjamin Kramer770b4a82009-11-28 19:03:38 +00002093class ComplexExprEvaluator
John McCallf4cf1a12010-05-07 17:22:02 +00002094 : public StmtVisitor<ComplexExprEvaluator, bool> {
Anders Carlsson9ad16ae2008-11-16 20:27:53 +00002095 EvalInfo &Info;
John McCallf4cf1a12010-05-07 17:22:02 +00002096 ComplexValue &Result;
Mike Stump1eb44332009-09-09 15:08:12 +00002097
Anders Carlsson9ad16ae2008-11-16 20:27:53 +00002098public:
John McCallf4cf1a12010-05-07 17:22:02 +00002099 ComplexExprEvaluator(EvalInfo &info, ComplexValue &Result)
2100 : Info(info), Result(Result) {}
Mike Stump1eb44332009-09-09 15:08:12 +00002101
Anders Carlsson9ad16ae2008-11-16 20:27:53 +00002102 //===--------------------------------------------------------------------===//
2103 // Visitor Methods
2104 //===--------------------------------------------------------------------===//
2105
John McCallf4cf1a12010-05-07 17:22:02 +00002106 bool VisitStmt(Stmt *S) {
2107 return false;
Anders Carlsson9ad16ae2008-11-16 20:27:53 +00002108 }
Mike Stump1eb44332009-09-09 15:08:12 +00002109
John McCallf4cf1a12010-05-07 17:22:02 +00002110 bool VisitParenExpr(ParenExpr *E) { return Visit(E->getSubExpr()); }
Anders Carlsson9ad16ae2008-11-16 20:27:53 +00002111
Eli Friedmanb2dc7f52010-08-16 23:27:44 +00002112 bool VisitImaginaryLiteral(ImaginaryLiteral *E);
Daniel Dunbara5fd07b2009-01-28 22:24:07 +00002113
Eli Friedmanb2dc7f52010-08-16 23:27:44 +00002114 bool VisitCastExpr(CastExpr *E);
Mike Stump1eb44332009-09-09 15:08:12 +00002115
John McCallf4cf1a12010-05-07 17:22:02 +00002116 bool VisitBinaryOperator(const BinaryOperator *E);
2117 bool VisitChooseExpr(const ChooseExpr *E)
Eli Friedmanba98d6b2009-03-23 04:56:01 +00002118 { return Visit(E->getChosenSubExpr(Info.Ctx)); }
John McCallf4cf1a12010-05-07 17:22:02 +00002119 bool VisitUnaryExtension(const UnaryOperator *E)
Eli Friedmanba98d6b2009-03-23 04:56:01 +00002120 { return Visit(E->getSubExpr()); }
2121 // FIXME Missing: unary +/-/~, binary div, ImplicitValueInitExpr,
Eli Friedman2217c872009-02-22 11:46:18 +00002122 // conditional ?:, comma
Anders Carlsson9ad16ae2008-11-16 20:27:53 +00002123};
2124} // end anonymous namespace
2125
John McCallf4cf1a12010-05-07 17:22:02 +00002126static bool EvaluateComplex(const Expr *E, ComplexValue &Result,
2127 EvalInfo &Info) {
John McCall7db7acb2010-05-07 05:46:35 +00002128 assert(E->getType()->isAnyComplexType());
John McCallf4cf1a12010-05-07 17:22:02 +00002129 return ComplexExprEvaluator(Info, Result).Visit(const_cast<Expr*>(E));
Anders Carlsson9ad16ae2008-11-16 20:27:53 +00002130}
2131
Eli Friedmanb2dc7f52010-08-16 23:27:44 +00002132bool ComplexExprEvaluator::VisitImaginaryLiteral(ImaginaryLiteral *E) {
2133 Expr* SubExpr = E->getSubExpr();
2134
2135 if (SubExpr->getType()->isRealFloatingType()) {
2136 Result.makeComplexFloat();
2137 APFloat &Imag = Result.FloatImag;
2138 if (!EvaluateFloat(SubExpr, Imag, Info))
2139 return false;
2140
2141 Result.FloatReal = APFloat(Imag.getSemantics());
2142 return true;
2143 } else {
2144 assert(SubExpr->getType()->isIntegerType() &&
2145 "Unexpected imaginary literal.");
2146
2147 Result.makeComplexInt();
2148 APSInt &Imag = Result.IntImag;
2149 if (!EvaluateInteger(SubExpr, Imag, Info))
2150 return false;
2151
2152 Result.IntReal = APSInt(Imag.getBitWidth(), !Imag.isSigned());
2153 return true;
2154 }
2155}
2156
2157bool ComplexExprEvaluator::VisitCastExpr(CastExpr *E) {
2158 Expr* SubExpr = E->getSubExpr();
2159 QualType EltType = E->getType()->getAs<ComplexType>()->getElementType();
2160 QualType SubType = SubExpr->getType();
2161
2162 if (SubType->isRealFloatingType()) {
2163 APFloat &Real = Result.FloatReal;
2164 if (!EvaluateFloat(SubExpr, Real, Info))
2165 return false;
2166
2167 if (EltType->isRealFloatingType()) {
2168 Result.makeComplexFloat();
2169 Real = HandleFloatToFloatCast(EltType, SubType, Real, Info.Ctx);
2170 Result.FloatImag = APFloat(Real.getSemantics());
2171 return true;
2172 } else {
2173 Result.makeComplexInt();
2174 Result.IntReal = HandleFloatToIntCast(EltType, SubType, Real, Info.Ctx);
2175 Result.IntImag = APSInt(Result.IntReal.getBitWidth(),
2176 !Result.IntReal.isSigned());
2177 return true;
2178 }
2179 } else if (SubType->isIntegerType()) {
2180 APSInt &Real = Result.IntReal;
2181 if (!EvaluateInteger(SubExpr, Real, Info))
2182 return false;
2183
2184 if (EltType->isRealFloatingType()) {
2185 Result.makeComplexFloat();
2186 Result.FloatReal
2187 = HandleIntToFloatCast(EltType, SubType, Real, Info.Ctx);
2188 Result.FloatImag = APFloat(Result.FloatReal.getSemantics());
2189 return true;
2190 } else {
2191 Result.makeComplexInt();
2192 Real = HandleIntToIntCast(EltType, SubType, Real, Info.Ctx);
2193 Result.IntImag = APSInt(Real.getBitWidth(), !Real.isSigned());
2194 return true;
2195 }
2196 } else if (const ComplexType *CT = SubType->getAs<ComplexType>()) {
2197 if (!Visit(SubExpr))
2198 return false;
2199
2200 QualType SrcType = CT->getElementType();
2201
2202 if (Result.isComplexFloat()) {
2203 if (EltType->isRealFloatingType()) {
2204 Result.makeComplexFloat();
2205 Result.FloatReal = HandleFloatToFloatCast(EltType, SrcType,
2206 Result.FloatReal,
2207 Info.Ctx);
2208 Result.FloatImag = HandleFloatToFloatCast(EltType, SrcType,
2209 Result.FloatImag,
2210 Info.Ctx);
2211 return true;
2212 } else {
2213 Result.makeComplexInt();
2214 Result.IntReal = HandleFloatToIntCast(EltType, SrcType,
2215 Result.FloatReal,
2216 Info.Ctx);
2217 Result.IntImag = HandleFloatToIntCast(EltType, SrcType,
2218 Result.FloatImag,
2219 Info.Ctx);
2220 return true;
2221 }
2222 } else {
2223 assert(Result.isComplexInt() && "Invalid evaluate result.");
2224 if (EltType->isRealFloatingType()) {
2225 Result.makeComplexFloat();
2226 Result.FloatReal = HandleIntToFloatCast(EltType, SrcType,
2227 Result.IntReal,
2228 Info.Ctx);
2229 Result.FloatImag = HandleIntToFloatCast(EltType, SrcType,
2230 Result.IntImag,
2231 Info.Ctx);
2232 return true;
2233 } else {
2234 Result.makeComplexInt();
2235 Result.IntReal = HandleIntToIntCast(EltType, SrcType,
2236 Result.IntReal,
2237 Info.Ctx);
2238 Result.IntImag = HandleIntToIntCast(EltType, SrcType,
2239 Result.IntImag,
2240 Info.Ctx);
2241 return true;
2242 }
2243 }
2244 }
2245
2246 // FIXME: Handle more casts.
2247 return false;
2248}
2249
John McCallf4cf1a12010-05-07 17:22:02 +00002250bool ComplexExprEvaluator::VisitBinaryOperator(const BinaryOperator *E) {
2251 if (!Visit(E->getLHS()))
2252 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00002253
John McCallf4cf1a12010-05-07 17:22:02 +00002254 ComplexValue RHS;
Daniel Dunbara5fd07b2009-01-28 22:24:07 +00002255 if (!EvaluateComplex(E->getRHS(), RHS, Info))
John McCallf4cf1a12010-05-07 17:22:02 +00002256 return false;
Daniel Dunbara5fd07b2009-01-28 22:24:07 +00002257
Daniel Dunbar3f279872009-01-29 01:32:56 +00002258 assert(Result.isComplexFloat() == RHS.isComplexFloat() &&
2259 "Invalid operands to binary operator.");
Anders Carlssonccc3fce2008-11-16 21:51:21 +00002260 switch (E->getOpcode()) {
John McCallf4cf1a12010-05-07 17:22:02 +00002261 default: return false;
John McCall2de56d12010-08-25 11:45:40 +00002262 case BO_Add:
Daniel Dunbara5fd07b2009-01-28 22:24:07 +00002263 if (Result.isComplexFloat()) {
2264 Result.getComplexFloatReal().add(RHS.getComplexFloatReal(),
2265 APFloat::rmNearestTiesToEven);
2266 Result.getComplexFloatImag().add(RHS.getComplexFloatImag(),
2267 APFloat::rmNearestTiesToEven);
2268 } else {
2269 Result.getComplexIntReal() += RHS.getComplexIntReal();
2270 Result.getComplexIntImag() += RHS.getComplexIntImag();
2271 }
Daniel Dunbar3f279872009-01-29 01:32:56 +00002272 break;
John McCall2de56d12010-08-25 11:45:40 +00002273 case BO_Sub:
Daniel Dunbara5fd07b2009-01-28 22:24:07 +00002274 if (Result.isComplexFloat()) {
2275 Result.getComplexFloatReal().subtract(RHS.getComplexFloatReal(),
2276 APFloat::rmNearestTiesToEven);
2277 Result.getComplexFloatImag().subtract(RHS.getComplexFloatImag(),
2278 APFloat::rmNearestTiesToEven);
2279 } else {
2280 Result.getComplexIntReal() -= RHS.getComplexIntReal();
2281 Result.getComplexIntImag() -= RHS.getComplexIntImag();
2282 }
Daniel Dunbar3f279872009-01-29 01:32:56 +00002283 break;
John McCall2de56d12010-08-25 11:45:40 +00002284 case BO_Mul:
Daniel Dunbar3f279872009-01-29 01:32:56 +00002285 if (Result.isComplexFloat()) {
John McCallf4cf1a12010-05-07 17:22:02 +00002286 ComplexValue LHS = Result;
Daniel Dunbar3f279872009-01-29 01:32:56 +00002287 APFloat &LHS_r = LHS.getComplexFloatReal();
2288 APFloat &LHS_i = LHS.getComplexFloatImag();
2289 APFloat &RHS_r = RHS.getComplexFloatReal();
2290 APFloat &RHS_i = RHS.getComplexFloatImag();
Mike Stump1eb44332009-09-09 15:08:12 +00002291
Daniel Dunbar3f279872009-01-29 01:32:56 +00002292 APFloat Tmp = LHS_r;
2293 Tmp.multiply(RHS_r, APFloat::rmNearestTiesToEven);
2294 Result.getComplexFloatReal() = Tmp;
2295 Tmp = LHS_i;
2296 Tmp.multiply(RHS_i, APFloat::rmNearestTiesToEven);
2297 Result.getComplexFloatReal().subtract(Tmp, APFloat::rmNearestTiesToEven);
2298
2299 Tmp = LHS_r;
2300 Tmp.multiply(RHS_i, APFloat::rmNearestTiesToEven);
2301 Result.getComplexFloatImag() = Tmp;
2302 Tmp = LHS_i;
2303 Tmp.multiply(RHS_r, APFloat::rmNearestTiesToEven);
2304 Result.getComplexFloatImag().add(Tmp, APFloat::rmNearestTiesToEven);
2305 } else {
John McCallf4cf1a12010-05-07 17:22:02 +00002306 ComplexValue LHS = Result;
Mike Stump1eb44332009-09-09 15:08:12 +00002307 Result.getComplexIntReal() =
Daniel Dunbar3f279872009-01-29 01:32:56 +00002308 (LHS.getComplexIntReal() * RHS.getComplexIntReal() -
2309 LHS.getComplexIntImag() * RHS.getComplexIntImag());
Mike Stump1eb44332009-09-09 15:08:12 +00002310 Result.getComplexIntImag() =
Daniel Dunbar3f279872009-01-29 01:32:56 +00002311 (LHS.getComplexIntReal() * RHS.getComplexIntImag() +
2312 LHS.getComplexIntImag() * RHS.getComplexIntReal());
2313 }
2314 break;
Anders Carlssonccc3fce2008-11-16 21:51:21 +00002315 }
2316
John McCallf4cf1a12010-05-07 17:22:02 +00002317 return true;
Anders Carlssonccc3fce2008-11-16 21:51:21 +00002318}
2319
Anders Carlsson9ad16ae2008-11-16 20:27:53 +00002320//===----------------------------------------------------------------------===//
Chris Lattner6ee7aa12008-11-16 21:24:15 +00002321// Top level Expr::Evaluate method.
Chris Lattnerf5eeb052008-07-11 18:11:29 +00002322//===----------------------------------------------------------------------===//
2323
John McCall42c8f872010-05-10 23:27:23 +00002324/// Evaluate - Return true if this is a constant which we can fold using
2325/// any crazy technique (that has nothing to do with language standards) that
2326/// we want to. If this function returns true, it returns the folded constant
2327/// in Result.
2328bool Expr::Evaluate(EvalResult &Result, ASTContext &Ctx) const {
2329 const Expr *E = this;
2330 EvalInfo Info(Ctx, Result);
John McCallefdb83e2010-05-07 21:00:08 +00002331 if (E->getType()->isVectorType()) {
2332 if (!EvaluateVector(E, Info.EvalResult.Val, Info))
Nate Begeman59b5da62009-01-18 03:20:47 +00002333 return false;
John McCallefdb83e2010-05-07 21:00:08 +00002334 } else if (E->getType()->isIntegerType()) {
2335 if (!IntExprEvaluator(Info, Info.EvalResult.Val).Visit(const_cast<Expr*>(E)))
Anders Carlsson6dde0d52008-11-22 21:50:49 +00002336 return false;
John McCall0f2b6922010-07-07 05:08:32 +00002337 if (Result.Val.isLValue() && !IsGlobalLValue(Result.Val.getLValueBase()))
2338 return false;
John McCallefdb83e2010-05-07 21:00:08 +00002339 } else if (E->getType()->hasPointerRepresentation()) {
2340 LValue LV;
2341 if (!EvaluatePointer(E, LV, Info))
Anders Carlsson6dde0d52008-11-22 21:50:49 +00002342 return false;
Abramo Bagnarae17a6432010-05-14 17:07:14 +00002343 if (!IsGlobalLValue(LV.Base))
John McCall42c8f872010-05-10 23:27:23 +00002344 return false;
John McCallefdb83e2010-05-07 21:00:08 +00002345 LV.moveInto(Info.EvalResult.Val);
2346 } else if (E->getType()->isRealFloatingType()) {
2347 llvm::APFloat F(0.0);
2348 if (!EvaluateFloat(E, F, Info))
Anders Carlsson6dde0d52008-11-22 21:50:49 +00002349 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00002350
John McCallefdb83e2010-05-07 21:00:08 +00002351 Info.EvalResult.Val = APValue(F);
2352 } else if (E->getType()->isAnyComplexType()) {
2353 ComplexValue C;
2354 if (!EvaluateComplex(E, C, Info))
Anders Carlsson6dde0d52008-11-22 21:50:49 +00002355 return false;
John McCallefdb83e2010-05-07 21:00:08 +00002356 C.moveInto(Info.EvalResult.Val);
Daniel Dunbara5fd07b2009-01-28 22:24:07 +00002357 } else
Anders Carlsson9d4c1572008-11-22 22:56:32 +00002358 return false;
Anders Carlsson6dde0d52008-11-22 21:50:49 +00002359
Anders Carlsson5b45d4e2008-11-30 16:58:53 +00002360 return true;
2361}
2362
John McCallcd7a4452010-01-05 23:42:56 +00002363bool Expr::EvaluateAsBooleanCondition(bool &Result, ASTContext &Ctx) const {
2364 EvalResult Scratch;
2365 EvalInfo Info(Ctx, Scratch);
2366
2367 return HandleConversionToBool(this, Result, Info);
2368}
2369
Anders Carlsson1b782762009-04-10 04:54:13 +00002370bool Expr::EvaluateAsLValue(EvalResult &Result, ASTContext &Ctx) const {
2371 EvalInfo Info(Ctx, Result);
2372
John McCallefdb83e2010-05-07 21:00:08 +00002373 LValue LV;
John McCall42c8f872010-05-10 23:27:23 +00002374 if (EvaluateLValue(this, LV, Info) &&
2375 !Result.HasSideEffects &&
Abramo Bagnarae17a6432010-05-14 17:07:14 +00002376 IsGlobalLValue(LV.Base)) {
2377 LV.moveInto(Result.Val);
2378 return true;
2379 }
2380 return false;
2381}
2382
2383bool Expr::EvaluateAsAnyLValue(EvalResult &Result, ASTContext &Ctx) const {
2384 EvalInfo Info(Ctx, Result);
2385
2386 LValue LV;
2387 if (EvaluateLValue(this, LV, Info)) {
John McCallefdb83e2010-05-07 21:00:08 +00002388 LV.moveInto(Result.Val);
2389 return true;
2390 }
2391 return false;
Eli Friedmanb2f295c2009-09-13 10:17:44 +00002392}
2393
Chris Lattner6ee7aa12008-11-16 21:24:15 +00002394/// isEvaluatable - Call Evaluate to see if this expression can be constant
Chris Lattner45b6b9d2008-10-06 06:49:02 +00002395/// folded, but discard the result.
2396bool Expr::isEvaluatable(ASTContext &Ctx) const {
Anders Carlsson4fdfb092008-12-01 06:44:05 +00002397 EvalResult Result;
2398 return Evaluate(Result, Ctx) && !Result.HasSideEffects;
Chris Lattner45b6b9d2008-10-06 06:49:02 +00002399}
Anders Carlsson51fe9962008-11-22 21:04:56 +00002400
Fariborz Jahanian393c2472009-11-05 18:03:03 +00002401bool Expr::HasSideEffects(ASTContext &Ctx) const {
2402 Expr::EvalResult Result;
2403 EvalInfo Info(Ctx, Result);
2404 return HasSideEffect(Info).Visit(const_cast<Expr*>(this));
2405}
2406
Anders Carlsson51fe9962008-11-22 21:04:56 +00002407APSInt Expr::EvaluateAsInt(ASTContext &Ctx) const {
Anders Carlsson1c0cfd42008-12-19 20:58:05 +00002408 EvalResult EvalResult;
2409 bool Result = Evaluate(EvalResult, Ctx);
Daniel Dunbarf1853192009-01-15 18:32:35 +00002410 Result = Result;
Anders Carlsson51fe9962008-11-22 21:04:56 +00002411 assert(Result && "Could not evaluate expression");
Anders Carlsson1c0cfd42008-12-19 20:58:05 +00002412 assert(EvalResult.Val.isInt() && "Expression did not evaluate to integer");
Anders Carlsson51fe9962008-11-22 21:04:56 +00002413
Anders Carlsson1c0cfd42008-12-19 20:58:05 +00002414 return EvalResult.Val.getInt();
Anders Carlsson51fe9962008-11-22 21:04:56 +00002415}
John McCalld905f5a2010-05-07 05:32:02 +00002416
Abramo Bagnarae17a6432010-05-14 17:07:14 +00002417 bool Expr::EvalResult::isGlobalLValue() const {
2418 assert(Val.isLValue());
2419 return IsGlobalLValue(Val.getLValueBase());
2420 }
2421
2422
John McCalld905f5a2010-05-07 05:32:02 +00002423/// isIntegerConstantExpr - this recursive routine will test if an expression is
2424/// an integer constant expression.
2425
2426/// FIXME: Pass up a reason why! Invalid operation in i-c-e, division by zero,
2427/// comma, etc
2428///
2429/// FIXME: Handle offsetof. Two things to do: Handle GCC's __builtin_offsetof
2430/// to support gcc 4.0+ and handle the idiom GCC recognizes with a null pointer
2431/// cast+dereference.
2432
2433// CheckICE - This function does the fundamental ICE checking: the returned
2434// ICEDiag contains a Val of 0, 1, or 2, and a possibly null SourceLocation.
2435// Note that to reduce code duplication, this helper does no evaluation
2436// itself; the caller checks whether the expression is evaluatable, and
2437// in the rare cases where CheckICE actually cares about the evaluated
2438// value, it calls into Evalute.
2439//
2440// Meanings of Val:
2441// 0: This expression is an ICE if it can be evaluated by Evaluate.
2442// 1: This expression is not an ICE, but if it isn't evaluated, it's
2443// a legal subexpression for an ICE. This return value is used to handle
2444// the comma operator in C99 mode.
2445// 2: This expression is not an ICE, and is not a legal subexpression for one.
2446
Dan Gohman3c46e8d2010-07-26 21:25:24 +00002447namespace {
2448
John McCalld905f5a2010-05-07 05:32:02 +00002449struct ICEDiag {
2450 unsigned Val;
2451 SourceLocation Loc;
2452
2453 public:
2454 ICEDiag(unsigned v, SourceLocation l) : Val(v), Loc(l) {}
2455 ICEDiag() : Val(0) {}
2456};
2457
Dan Gohman3c46e8d2010-07-26 21:25:24 +00002458}
2459
2460static ICEDiag NoDiag() { return ICEDiag(); }
John McCalld905f5a2010-05-07 05:32:02 +00002461
2462static ICEDiag CheckEvalInICE(const Expr* E, ASTContext &Ctx) {
2463 Expr::EvalResult EVResult;
2464 if (!E->Evaluate(EVResult, Ctx) || EVResult.HasSideEffects ||
2465 !EVResult.Val.isInt()) {
2466 return ICEDiag(2, E->getLocStart());
2467 }
2468 return NoDiag();
2469}
2470
2471static ICEDiag CheckICE(const Expr* E, ASTContext &Ctx) {
2472 assert(!E->isValueDependent() && "Should not see value dependent exprs!");
Douglas Gregor2ade35e2010-06-16 00:17:44 +00002473 if (!E->getType()->isIntegralOrEnumerationType()) {
John McCalld905f5a2010-05-07 05:32:02 +00002474 return ICEDiag(2, E->getLocStart());
2475 }
2476
2477 switch (E->getStmtClass()) {
2478#define STMT(Node, Base) case Expr::Node##Class:
2479#define EXPR(Node, Base)
2480#include "clang/AST/StmtNodes.inc"
2481 case Expr::PredefinedExprClass:
2482 case Expr::FloatingLiteralClass:
2483 case Expr::ImaginaryLiteralClass:
2484 case Expr::StringLiteralClass:
2485 case Expr::ArraySubscriptExprClass:
2486 case Expr::MemberExprClass:
2487 case Expr::CompoundAssignOperatorClass:
2488 case Expr::CompoundLiteralExprClass:
2489 case Expr::ExtVectorElementExprClass:
2490 case Expr::InitListExprClass:
2491 case Expr::DesignatedInitExprClass:
2492 case Expr::ImplicitValueInitExprClass:
2493 case Expr::ParenListExprClass:
2494 case Expr::VAArgExprClass:
2495 case Expr::AddrLabelExprClass:
2496 case Expr::StmtExprClass:
2497 case Expr::CXXMemberCallExprClass:
2498 case Expr::CXXDynamicCastExprClass:
2499 case Expr::CXXTypeidExprClass:
Francois Pichet9be88402010-09-08 23:47:05 +00002500 case Expr::CXXUuidofExprClass:
John McCalld905f5a2010-05-07 05:32:02 +00002501 case Expr::CXXNullPtrLiteralExprClass:
2502 case Expr::CXXThisExprClass:
2503 case Expr::CXXThrowExprClass:
2504 case Expr::CXXNewExprClass:
2505 case Expr::CXXDeleteExprClass:
2506 case Expr::CXXPseudoDestructorExprClass:
2507 case Expr::UnresolvedLookupExprClass:
2508 case Expr::DependentScopeDeclRefExprClass:
2509 case Expr::CXXConstructExprClass:
2510 case Expr::CXXBindTemporaryExprClass:
John McCalld905f5a2010-05-07 05:32:02 +00002511 case Expr::CXXExprWithTemporariesClass:
2512 case Expr::CXXTemporaryObjectExprClass:
2513 case Expr::CXXUnresolvedConstructExprClass:
2514 case Expr::CXXDependentScopeMemberExprClass:
2515 case Expr::UnresolvedMemberExprClass:
2516 case Expr::ObjCStringLiteralClass:
2517 case Expr::ObjCEncodeExprClass:
2518 case Expr::ObjCMessageExprClass:
2519 case Expr::ObjCSelectorExprClass:
2520 case Expr::ObjCProtocolExprClass:
2521 case Expr::ObjCIvarRefExprClass:
2522 case Expr::ObjCPropertyRefExprClass:
2523 case Expr::ObjCImplicitSetterGetterRefExprClass:
John McCalld905f5a2010-05-07 05:32:02 +00002524 case Expr::ObjCIsaExprClass:
2525 case Expr::ShuffleVectorExprClass:
2526 case Expr::BlockExprClass:
2527 case Expr::BlockDeclRefExprClass:
2528 case Expr::NoStmtClass:
2529 return ICEDiag(2, E->getLocStart());
2530
2531 case Expr::GNUNullExprClass:
2532 // GCC considers the GNU __null value to be an integral constant expression.
2533 return NoDiag();
2534
2535 case Expr::ParenExprClass:
2536 return CheckICE(cast<ParenExpr>(E)->getSubExpr(), Ctx);
2537 case Expr::IntegerLiteralClass:
2538 case Expr::CharacterLiteralClass:
2539 case Expr::CXXBoolLiteralExprClass:
Douglas Gregored8abf12010-07-08 06:14:04 +00002540 case Expr::CXXScalarValueInitExprClass:
John McCalld905f5a2010-05-07 05:32:02 +00002541 case Expr::TypesCompatibleExprClass:
2542 case Expr::UnaryTypeTraitExprClass:
Sebastian Redl2e156222010-09-10 20:55:43 +00002543 case Expr::CXXNoexceptExprClass:
John McCalld905f5a2010-05-07 05:32:02 +00002544 return NoDiag();
2545 case Expr::CallExprClass:
Sean Hunt6cf75022010-08-30 17:47:05 +00002546 case Expr::CXXOperatorCallExprClass: {
John McCalld905f5a2010-05-07 05:32:02 +00002547 const CallExpr *CE = cast<CallExpr>(E);
2548 if (CE->isBuiltinCall(Ctx))
2549 return CheckEvalInICE(E, Ctx);
2550 return ICEDiag(2, E->getLocStart());
2551 }
2552 case Expr::DeclRefExprClass:
2553 if (isa<EnumConstantDecl>(cast<DeclRefExpr>(E)->getDecl()))
2554 return NoDiag();
2555 if (Ctx.getLangOptions().CPlusPlus &&
2556 E->getType().getCVRQualifiers() == Qualifiers::Const) {
2557 const NamedDecl *D = cast<DeclRefExpr>(E)->getDecl();
2558
2559 // Parameter variables are never constants. Without this check,
2560 // getAnyInitializer() can find a default argument, which leads
2561 // to chaos.
2562 if (isa<ParmVarDecl>(D))
2563 return ICEDiag(2, cast<DeclRefExpr>(E)->getLocation());
2564
2565 // C++ 7.1.5.1p2
2566 // A variable of non-volatile const-qualified integral or enumeration
2567 // type initialized by an ICE can be used in ICEs.
2568 if (const VarDecl *Dcl = dyn_cast<VarDecl>(D)) {
2569 Qualifiers Quals = Ctx.getCanonicalType(Dcl->getType()).getQualifiers();
2570 if (Quals.hasVolatile() || !Quals.hasConst())
2571 return ICEDiag(2, cast<DeclRefExpr>(E)->getLocation());
2572
2573 // Look for a declaration of this variable that has an initializer.
2574 const VarDecl *ID = 0;
2575 const Expr *Init = Dcl->getAnyInitializer(ID);
2576 if (Init) {
2577 if (ID->isInitKnownICE()) {
2578 // We have already checked whether this subexpression is an
2579 // integral constant expression.
2580 if (ID->isInitICE())
2581 return NoDiag();
2582 else
2583 return ICEDiag(2, cast<DeclRefExpr>(E)->getLocation());
2584 }
2585
2586 // It's an ICE whether or not the definition we found is
2587 // out-of-line. See DR 721 and the discussion in Clang PR
2588 // 6206 for details.
2589
2590 if (Dcl->isCheckingICE()) {
2591 return ICEDiag(2, cast<DeclRefExpr>(E)->getLocation());
2592 }
2593
2594 Dcl->setCheckingICE();
2595 ICEDiag Result = CheckICE(Init, Ctx);
2596 // Cache the result of the ICE test.
2597 Dcl->setInitKnownICE(Result.Val == 0);
2598 return Result;
2599 }
2600 }
2601 }
2602 return ICEDiag(2, E->getLocStart());
2603 case Expr::UnaryOperatorClass: {
2604 const UnaryOperator *Exp = cast<UnaryOperator>(E);
2605 switch (Exp->getOpcode()) {
John McCall2de56d12010-08-25 11:45:40 +00002606 case UO_PostInc:
2607 case UO_PostDec:
2608 case UO_PreInc:
2609 case UO_PreDec:
2610 case UO_AddrOf:
2611 case UO_Deref:
John McCalld905f5a2010-05-07 05:32:02 +00002612 return ICEDiag(2, E->getLocStart());
John McCall2de56d12010-08-25 11:45:40 +00002613 case UO_Extension:
2614 case UO_LNot:
2615 case UO_Plus:
2616 case UO_Minus:
2617 case UO_Not:
2618 case UO_Real:
2619 case UO_Imag:
John McCalld905f5a2010-05-07 05:32:02 +00002620 return CheckICE(Exp->getSubExpr(), Ctx);
John McCalld905f5a2010-05-07 05:32:02 +00002621 }
2622
2623 // OffsetOf falls through here.
2624 }
2625 case Expr::OffsetOfExprClass: {
2626 // Note that per C99, offsetof must be an ICE. And AFAIK, using
2627 // Evaluate matches the proposed gcc behavior for cases like
2628 // "offsetof(struct s{int x[4];}, x[!.0])". This doesn't affect
2629 // compliance: we should warn earlier for offsetof expressions with
2630 // array subscripts that aren't ICEs, and if the array subscripts
2631 // are ICEs, the value of the offsetof must be an integer constant.
2632 return CheckEvalInICE(E, Ctx);
2633 }
2634 case Expr::SizeOfAlignOfExprClass: {
2635 const SizeOfAlignOfExpr *Exp = cast<SizeOfAlignOfExpr>(E);
2636 if (Exp->isSizeOf() && Exp->getTypeOfArgument()->isVariableArrayType())
2637 return ICEDiag(2, E->getLocStart());
2638 return NoDiag();
2639 }
2640 case Expr::BinaryOperatorClass: {
2641 const BinaryOperator *Exp = cast<BinaryOperator>(E);
2642 switch (Exp->getOpcode()) {
John McCall2de56d12010-08-25 11:45:40 +00002643 case BO_PtrMemD:
2644 case BO_PtrMemI:
2645 case BO_Assign:
2646 case BO_MulAssign:
2647 case BO_DivAssign:
2648 case BO_RemAssign:
2649 case BO_AddAssign:
2650 case BO_SubAssign:
2651 case BO_ShlAssign:
2652 case BO_ShrAssign:
2653 case BO_AndAssign:
2654 case BO_XorAssign:
2655 case BO_OrAssign:
John McCalld905f5a2010-05-07 05:32:02 +00002656 return ICEDiag(2, E->getLocStart());
2657
John McCall2de56d12010-08-25 11:45:40 +00002658 case BO_Mul:
2659 case BO_Div:
2660 case BO_Rem:
2661 case BO_Add:
2662 case BO_Sub:
2663 case BO_Shl:
2664 case BO_Shr:
2665 case BO_LT:
2666 case BO_GT:
2667 case BO_LE:
2668 case BO_GE:
2669 case BO_EQ:
2670 case BO_NE:
2671 case BO_And:
2672 case BO_Xor:
2673 case BO_Or:
2674 case BO_Comma: {
John McCalld905f5a2010-05-07 05:32:02 +00002675 ICEDiag LHSResult = CheckICE(Exp->getLHS(), Ctx);
2676 ICEDiag RHSResult = CheckICE(Exp->getRHS(), Ctx);
John McCall2de56d12010-08-25 11:45:40 +00002677 if (Exp->getOpcode() == BO_Div ||
2678 Exp->getOpcode() == BO_Rem) {
John McCalld905f5a2010-05-07 05:32:02 +00002679 // Evaluate gives an error for undefined Div/Rem, so make sure
2680 // we don't evaluate one.
2681 if (LHSResult.Val != 2 && RHSResult.Val != 2) {
2682 llvm::APSInt REval = Exp->getRHS()->EvaluateAsInt(Ctx);
2683 if (REval == 0)
2684 return ICEDiag(1, E->getLocStart());
2685 if (REval.isSigned() && REval.isAllOnesValue()) {
2686 llvm::APSInt LEval = Exp->getLHS()->EvaluateAsInt(Ctx);
2687 if (LEval.isMinSignedValue())
2688 return ICEDiag(1, E->getLocStart());
2689 }
2690 }
2691 }
John McCall2de56d12010-08-25 11:45:40 +00002692 if (Exp->getOpcode() == BO_Comma) {
John McCalld905f5a2010-05-07 05:32:02 +00002693 if (Ctx.getLangOptions().C99) {
2694 // C99 6.6p3 introduces a strange edge case: comma can be in an ICE
2695 // if it isn't evaluated.
2696 if (LHSResult.Val == 0 && RHSResult.Val == 0)
2697 return ICEDiag(1, E->getLocStart());
2698 } else {
2699 // In both C89 and C++, commas in ICEs are illegal.
2700 return ICEDiag(2, E->getLocStart());
2701 }
2702 }
2703 if (LHSResult.Val >= RHSResult.Val)
2704 return LHSResult;
2705 return RHSResult;
2706 }
John McCall2de56d12010-08-25 11:45:40 +00002707 case BO_LAnd:
2708 case BO_LOr: {
John McCalld905f5a2010-05-07 05:32:02 +00002709 ICEDiag LHSResult = CheckICE(Exp->getLHS(), Ctx);
2710 ICEDiag RHSResult = CheckICE(Exp->getRHS(), Ctx);
2711 if (LHSResult.Val == 0 && RHSResult.Val == 1) {
2712 // Rare case where the RHS has a comma "side-effect"; we need
2713 // to actually check the condition to see whether the side
2714 // with the comma is evaluated.
John McCall2de56d12010-08-25 11:45:40 +00002715 if ((Exp->getOpcode() == BO_LAnd) !=
John McCalld905f5a2010-05-07 05:32:02 +00002716 (Exp->getLHS()->EvaluateAsInt(Ctx) == 0))
2717 return RHSResult;
2718 return NoDiag();
2719 }
2720
2721 if (LHSResult.Val >= RHSResult.Val)
2722 return LHSResult;
2723 return RHSResult;
2724 }
2725 }
2726 }
2727 case Expr::ImplicitCastExprClass:
2728 case Expr::CStyleCastExprClass:
2729 case Expr::CXXFunctionalCastExprClass:
2730 case Expr::CXXStaticCastExprClass:
2731 case Expr::CXXReinterpretCastExprClass:
2732 case Expr::CXXConstCastExprClass: {
2733 const Expr *SubExpr = cast<CastExpr>(E)->getSubExpr();
Douglas Gregor2ade35e2010-06-16 00:17:44 +00002734 if (SubExpr->getType()->isIntegralOrEnumerationType())
John McCalld905f5a2010-05-07 05:32:02 +00002735 return CheckICE(SubExpr, Ctx);
2736 if (isa<FloatingLiteral>(SubExpr->IgnoreParens()))
2737 return NoDiag();
2738 return ICEDiag(2, E->getLocStart());
2739 }
2740 case Expr::ConditionalOperatorClass: {
2741 const ConditionalOperator *Exp = cast<ConditionalOperator>(E);
2742 // If the condition (ignoring parens) is a __builtin_constant_p call,
2743 // then only the true side is actually considered in an integer constant
2744 // expression, and it is fully evaluated. This is an important GNU
2745 // extension. See GCC PR38377 for discussion.
2746 if (const CallExpr *CallCE
2747 = dyn_cast<CallExpr>(Exp->getCond()->IgnoreParenCasts()))
2748 if (CallCE->isBuiltinCall(Ctx) == Builtin::BI__builtin_constant_p) {
2749 Expr::EvalResult EVResult;
2750 if (!E->Evaluate(EVResult, Ctx) || EVResult.HasSideEffects ||
2751 !EVResult.Val.isInt()) {
2752 return ICEDiag(2, E->getLocStart());
2753 }
2754 return NoDiag();
2755 }
2756 ICEDiag CondResult = CheckICE(Exp->getCond(), Ctx);
2757 ICEDiag TrueResult = CheckICE(Exp->getTrueExpr(), Ctx);
2758 ICEDiag FalseResult = CheckICE(Exp->getFalseExpr(), Ctx);
2759 if (CondResult.Val == 2)
2760 return CondResult;
2761 if (TrueResult.Val == 2)
2762 return TrueResult;
2763 if (FalseResult.Val == 2)
2764 return FalseResult;
2765 if (CondResult.Val == 1)
2766 return CondResult;
2767 if (TrueResult.Val == 0 && FalseResult.Val == 0)
2768 return NoDiag();
2769 // Rare case where the diagnostics depend on which side is evaluated
2770 // Note that if we get here, CondResult is 0, and at least one of
2771 // TrueResult and FalseResult is non-zero.
2772 if (Exp->getCond()->EvaluateAsInt(Ctx) == 0) {
2773 return FalseResult;
2774 }
2775 return TrueResult;
2776 }
2777 case Expr::CXXDefaultArgExprClass:
2778 return CheckICE(cast<CXXDefaultArgExpr>(E)->getExpr(), Ctx);
2779 case Expr::ChooseExprClass: {
2780 return CheckICE(cast<ChooseExpr>(E)->getChosenSubExpr(Ctx), Ctx);
2781 }
2782 }
2783
2784 // Silence a GCC warning
2785 return ICEDiag(2, E->getLocStart());
2786}
2787
2788bool Expr::isIntegerConstantExpr(llvm::APSInt &Result, ASTContext &Ctx,
2789 SourceLocation *Loc, bool isEvaluated) const {
2790 ICEDiag d = CheckICE(this, Ctx);
2791 if (d.Val != 0) {
2792 if (Loc) *Loc = d.Loc;
2793 return false;
2794 }
2795 EvalResult EvalResult;
2796 if (!Evaluate(EvalResult, Ctx))
2797 llvm_unreachable("ICE cannot be evaluated!");
2798 assert(!EvalResult.HasSideEffects && "ICE with side effects!");
2799 assert(EvalResult.Val.isInt() && "ICE that isn't integer!");
2800 Result = EvalResult.Val.getInt();
2801 return true;
2802}