blob: 382bfe59b5b71a1d01406c4f2c8e543f47c29daa [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"
Chris Lattner500d3292009-01-29 05:15:15 +000019#include "clang/AST/ASTDiagnostic.h"
Chris Lattner1b63e4f2009-06-14 01:54:56 +000020#include "clang/Basic/Builtins.h"
Anders Carlsson06a36752008-07-08 05:49:43 +000021#include "clang/Basic/TargetInfo.h"
Mike Stump7462b392009-05-30 14:43:18 +000022#include "llvm/ADT/SmallString.h"
Mike Stump4572bab2009-05-30 03:56:50 +000023#include <cstring>
24
Anders Carlssonc44eec62008-07-03 04:20:39 +000025using namespace clang;
Chris Lattnerf5eeb052008-07-11 18:11:29 +000026using llvm::APSInt;
Eli Friedmand8bfe7f2008-08-22 00:06:13 +000027using llvm::APFloat;
Anders Carlssonc44eec62008-07-03 04:20:39 +000028
Chris Lattner87eae5e2008-07-11 22:52:41 +000029/// EvalInfo - This is a private struct used by the evaluator to capture
30/// information about a subexpression as it is folded. It retains information
31/// about the AST context, but also maintains information about the folded
32/// expression.
33///
34/// If an expression could be evaluated, it is still possible it is not a C
35/// "integer constant expression" or constant expression. If not, this struct
36/// captures information about how and why not.
37///
38/// One bit of information passed *into* the request for constant folding
39/// indicates whether the subexpression is "evaluated" or not according to C
40/// rules. For example, the RHS of (0 && foo()) is not evaluated. We can
41/// evaluate the expression regardless of what the RHS is, but C only allows
42/// certain things in certain situations.
43struct EvalInfo {
44 ASTContext &Ctx;
Mike Stump1eb44332009-09-09 15:08:12 +000045
Anders Carlsson54da0492008-11-30 16:38:33 +000046 /// EvalResult - Contains information about the evaluation.
47 Expr::EvalResult &EvalResult;
Anders Carlssonf0c1e4b2008-11-30 18:26:25 +000048
Eli Friedmanb2f295c2009-09-13 10:17:44 +000049 /// AnyLValue - Stack based LValue results are not discarded.
50 bool AnyLValue;
51
52 EvalInfo(ASTContext &ctx, Expr::EvalResult& evalresult,
53 bool anylvalue = false)
54 : Ctx(ctx), EvalResult(evalresult), AnyLValue(anylvalue) {}
Chris Lattner87eae5e2008-07-11 22:52:41 +000055};
56
57
Eli Friedman4efaa272008-11-12 09:44:48 +000058static bool EvaluateLValue(const Expr *E, APValue &Result, EvalInfo &Info);
Chris Lattner87eae5e2008-07-11 22:52:41 +000059static bool EvaluatePointer(const Expr *E, APValue &Result, EvalInfo &Info);
60static bool EvaluateInteger(const Expr *E, APSInt &Result, EvalInfo &Info);
Chris Lattnerd9becd12009-10-28 23:59:40 +000061static bool EvaluateIntegerOrLValue(const Expr *E, APValue &Result,
62 EvalInfo &Info);
Eli Friedmand8bfe7f2008-08-22 00:06:13 +000063static bool EvaluateFloat(const Expr *E, APFloat &Result, EvalInfo &Info);
Daniel Dunbara5fd07b2009-01-28 22:24:07 +000064static bool EvaluateComplex(const Expr *E, APValue &Result, EvalInfo &Info);
Chris Lattnerf5eeb052008-07-11 18:11:29 +000065
66//===----------------------------------------------------------------------===//
Eli Friedman4efaa272008-11-12 09:44:48 +000067// Misc utilities
68//===----------------------------------------------------------------------===//
69
Eli Friedman5bc86102009-06-14 02:17:33 +000070static bool EvalPointerValueAsBool(APValue& Value, bool& Result) {
71 // FIXME: Is this accurate for all kinds of bases? If not, what would
72 // the check look like?
Ken Dycka7305832010-01-15 12:37:54 +000073 Result = Value.getLValueBase() || !Value.getLValueOffset().isZero();
Eli Friedman5bc86102009-06-14 02:17:33 +000074 return true;
75}
76
John McCallcd7a4452010-01-05 23:42:56 +000077static bool HandleConversionToBool(const Expr* E, bool& Result,
78 EvalInfo &Info) {
Eli Friedman4efaa272008-11-12 09:44:48 +000079 if (E->getType()->isIntegralType()) {
80 APSInt IntResult;
81 if (!EvaluateInteger(E, IntResult, Info))
82 return false;
83 Result = IntResult != 0;
84 return true;
85 } else if (E->getType()->isRealFloatingType()) {
86 APFloat FloatResult(0.0);
87 if (!EvaluateFloat(E, FloatResult, Info))
88 return false;
89 Result = !FloatResult.isZero();
90 return true;
Eli Friedmana1f47c42009-03-23 04:38:34 +000091 } else if (E->getType()->hasPointerRepresentation()) {
Eli Friedman4efaa272008-11-12 09:44:48 +000092 APValue PointerResult;
93 if (!EvaluatePointer(E, PointerResult, Info))
94 return false;
Eli Friedman5bc86102009-06-14 02:17:33 +000095 return EvalPointerValueAsBool(PointerResult, Result);
Eli Friedmana1f47c42009-03-23 04:38:34 +000096 } else if (E->getType()->isAnyComplexType()) {
97 APValue ComplexResult;
98 if (!EvaluateComplex(E, ComplexResult, Info))
99 return false;
100 if (ComplexResult.isComplexFloat()) {
101 Result = !ComplexResult.getComplexFloatReal().isZero() ||
102 !ComplexResult.getComplexFloatImag().isZero();
103 } else {
104 Result = ComplexResult.getComplexIntReal().getBoolValue() ||
105 ComplexResult.getComplexIntImag().getBoolValue();
106 }
107 return true;
Eli Friedman4efaa272008-11-12 09:44:48 +0000108 }
109
110 return false;
111}
112
Mike Stump1eb44332009-09-09 15:08:12 +0000113static APSInt HandleFloatToIntCast(QualType DestType, QualType SrcType,
Daniel Dunbara2cfd342009-01-29 06:16:07 +0000114 APFloat &Value, ASTContext &Ctx) {
115 unsigned DestWidth = Ctx.getIntWidth(DestType);
116 // Determine whether we are converting to unsigned or signed.
117 bool DestSigned = DestType->isSignedIntegerType();
Mike Stump1eb44332009-09-09 15:08:12 +0000118
Daniel Dunbara2cfd342009-01-29 06:16:07 +0000119 // FIXME: Warning for overflow.
120 uint64_t Space[4];
121 bool ignored;
122 (void)Value.convertToInteger(Space, DestWidth, DestSigned,
123 llvm::APFloat::rmTowardZero, &ignored);
124 return APSInt(llvm::APInt(DestWidth, 4, Space), !DestSigned);
125}
126
Mike Stump1eb44332009-09-09 15:08:12 +0000127static APFloat HandleFloatToFloatCast(QualType DestType, QualType SrcType,
Daniel Dunbara2cfd342009-01-29 06:16:07 +0000128 APFloat &Value, ASTContext &Ctx) {
129 bool ignored;
130 APFloat Result = Value;
Mike Stump1eb44332009-09-09 15:08:12 +0000131 Result.convert(Ctx.getFloatTypeSemantics(DestType),
Daniel Dunbara2cfd342009-01-29 06:16:07 +0000132 APFloat::rmNearestTiesToEven, &ignored);
133 return Result;
134}
135
Mike Stump1eb44332009-09-09 15:08:12 +0000136static APSInt HandleIntToIntCast(QualType DestType, QualType SrcType,
Daniel Dunbara2cfd342009-01-29 06:16:07 +0000137 APSInt &Value, ASTContext &Ctx) {
138 unsigned DestWidth = Ctx.getIntWidth(DestType);
139 APSInt Result = Value;
140 // Figure out if this is a truncate, extend or noop cast.
141 // If the input is signed, do a sign extend, noop, or truncate.
142 Result.extOrTrunc(DestWidth);
143 Result.setIsUnsigned(DestType->isUnsignedIntegerType());
144 return Result;
145}
146
Mike Stump1eb44332009-09-09 15:08:12 +0000147static APFloat HandleIntToFloatCast(QualType DestType, QualType SrcType,
Daniel Dunbara2cfd342009-01-29 06:16:07 +0000148 APSInt &Value, ASTContext &Ctx) {
149
150 APFloat Result(Ctx.getFloatTypeSemantics(DestType), 1);
151 Result.convertFromAPInt(Value, Value.isSigned(),
152 APFloat::rmNearestTiesToEven);
153 return Result;
154}
155
Mike Stumpc4c90452009-10-27 22:09:17 +0000156namespace {
Benjamin Kramer770b4a82009-11-28 19:03:38 +0000157class HasSideEffect
Mike Stumpc4c90452009-10-27 22:09:17 +0000158 : public StmtVisitor<HasSideEffect, bool> {
159 EvalInfo &Info;
160public:
161
162 HasSideEffect(EvalInfo &info) : Info(info) {}
163
164 // Unhandled nodes conservatively default to having side effects.
165 bool VisitStmt(Stmt *S) {
166 return true;
167 }
168
169 bool VisitParenExpr(ParenExpr *E) { return Visit(E->getSubExpr()); }
170 bool VisitDeclRefExpr(DeclRefExpr *E) {
Mike Stumpdf317bf2009-11-03 23:25:48 +0000171 if (Info.Ctx.getCanonicalType(E->getType()).isVolatileQualified())
Mike Stumpc4c90452009-10-27 22:09:17 +0000172 return true;
173 return false;
174 }
175 // We don't want to evaluate BlockExprs multiple times, as they generate
176 // a ton of code.
177 bool VisitBlockExpr(BlockExpr *E) { return true; }
178 bool VisitPredefinedExpr(PredefinedExpr *E) { return false; }
179 bool VisitCompoundLiteralExpr(CompoundLiteralExpr *E)
180 { return Visit(E->getInitializer()); }
181 bool VisitMemberExpr(MemberExpr *E) { return Visit(E->getBase()); }
182 bool VisitIntegerLiteral(IntegerLiteral *E) { return false; }
183 bool VisitFloatingLiteral(FloatingLiteral *E) { return false; }
184 bool VisitStringLiteral(StringLiteral *E) { return false; }
185 bool VisitCharacterLiteral(CharacterLiteral *E) { return false; }
186 bool VisitSizeOfAlignOfExpr(SizeOfAlignOfExpr *E) { return false; }
187 bool VisitArraySubscriptExpr(ArraySubscriptExpr *E)
Mike Stump980ca222009-10-29 20:48:09 +0000188 { return Visit(E->getLHS()) || Visit(E->getRHS()); }
Mike Stumpc4c90452009-10-27 22:09:17 +0000189 bool VisitChooseExpr(ChooseExpr *E)
190 { return Visit(E->getChosenSubExpr(Info.Ctx)); }
191 bool VisitCastExpr(CastExpr *E) { return Visit(E->getSubExpr()); }
192 bool VisitBinAssign(BinaryOperator *E) { return true; }
Mike Stump3f0147e2009-10-29 23:34:20 +0000193 bool VisitCompoundAssignOperator(BinaryOperator *E) { return true; }
Mike Stump980ca222009-10-29 20:48:09 +0000194 bool VisitBinaryOperator(BinaryOperator *E)
195 { return Visit(E->getLHS()) || Visit(E->getRHS()); }
Mike Stumpc4c90452009-10-27 22:09:17 +0000196 bool VisitUnaryPreInc(UnaryOperator *E) { return true; }
197 bool VisitUnaryPostInc(UnaryOperator *E) { return true; }
198 bool VisitUnaryPreDec(UnaryOperator *E) { return true; }
199 bool VisitUnaryPostDec(UnaryOperator *E) { return true; }
200 bool VisitUnaryDeref(UnaryOperator *E) {
Mike Stumpdf317bf2009-11-03 23:25:48 +0000201 if (Info.Ctx.getCanonicalType(E->getType()).isVolatileQualified())
Mike Stumpc4c90452009-10-27 22:09:17 +0000202 return true;
Mike Stump980ca222009-10-29 20:48:09 +0000203 return Visit(E->getSubExpr());
Mike Stumpc4c90452009-10-27 22:09:17 +0000204 }
205 bool VisitUnaryOperator(UnaryOperator *E) { return Visit(E->getSubExpr()); }
206};
207
Mike Stumpc4c90452009-10-27 22:09:17 +0000208} // end anonymous namespace
209
Eli Friedman4efaa272008-11-12 09:44:48 +0000210//===----------------------------------------------------------------------===//
211// LValue Evaluation
212//===----------------------------------------------------------------------===//
213namespace {
Benjamin Kramer770b4a82009-11-28 19:03:38 +0000214class LValueExprEvaluator
Eli Friedman4efaa272008-11-12 09:44:48 +0000215 : public StmtVisitor<LValueExprEvaluator, APValue> {
216 EvalInfo &Info;
217public:
Mike Stump1eb44332009-09-09 15:08:12 +0000218
Eli Friedman4efaa272008-11-12 09:44:48 +0000219 LValueExprEvaluator(EvalInfo &info) : Info(info) {}
220
221 APValue VisitStmt(Stmt *S) {
Eli Friedman4efaa272008-11-12 09:44:48 +0000222 return APValue();
223 }
224
225 APValue VisitParenExpr(ParenExpr *E) { return Visit(E->getSubExpr()); }
Anders Carlsson35873c42008-11-24 04:41:22 +0000226 APValue VisitDeclRefExpr(DeclRefExpr *E);
Ken Dycka7305832010-01-15 12:37:54 +0000227 APValue VisitPredefinedExpr(PredefinedExpr *E) { return APValue(E); }
Eli Friedman4efaa272008-11-12 09:44:48 +0000228 APValue VisitCompoundLiteralExpr(CompoundLiteralExpr *E);
229 APValue VisitMemberExpr(MemberExpr *E);
Ken Dycka7305832010-01-15 12:37:54 +0000230 APValue VisitStringLiteral(StringLiteral *E) { return APValue(E); }
231 APValue VisitObjCEncodeExpr(ObjCEncodeExpr *E) { return APValue(E); }
Anders Carlsson3068d112008-11-16 19:01:22 +0000232 APValue VisitArraySubscriptExpr(ArraySubscriptExpr *E);
Eli Friedmane8761c82009-02-20 01:57:15 +0000233 APValue VisitUnaryDeref(UnaryOperator *E);
Eli Friedmanba98d6b2009-03-23 04:56:01 +0000234 APValue VisitUnaryExtension(const UnaryOperator *E)
235 { return Visit(E->getSubExpr()); }
236 APValue VisitChooseExpr(const ChooseExpr *E)
237 { return Visit(E->getChosenSubExpr(Info.Ctx)); }
Anders Carlsson26bc2202009-10-03 16:30:22 +0000238
239 APValue VisitCastExpr(CastExpr *E) {
240 switch (E->getCastKind()) {
241 default:
242 return APValue();
243
244 case CastExpr::CK_NoOp:
245 return Visit(E->getSubExpr());
246 }
247 }
Eli Friedmanba98d6b2009-03-23 04:56:01 +0000248 // FIXME: Missing: __real__, __imag__
Eli Friedman4efaa272008-11-12 09:44:48 +0000249};
250} // end anonymous namespace
251
252static bool EvaluateLValue(const Expr* E, APValue& Result, EvalInfo &Info) {
253 Result = LValueExprEvaluator(Info).Visit(const_cast<Expr*>(E));
254 return Result.isLValue();
255}
256
Mike Stump1eb44332009-09-09 15:08:12 +0000257APValue LValueExprEvaluator::VisitDeclRefExpr(DeclRefExpr *E) {
Eli Friedman50c39ea2009-05-27 06:04:58 +0000258 if (isa<FunctionDecl>(E->getDecl())) {
Ken Dycka7305832010-01-15 12:37:54 +0000259 return APValue(E);
Eli Friedman50c39ea2009-05-27 06:04:58 +0000260 } else if (VarDecl* VD = dyn_cast<VarDecl>(E->getDecl())) {
Eli Friedmanb2f295c2009-09-13 10:17:44 +0000261 if (!Info.AnyLValue && !VD->hasGlobalStorage())
Eli Friedmand933a012009-08-29 19:09:59 +0000262 return APValue();
Eli Friedman50c39ea2009-05-27 06:04:58 +0000263 if (!VD->getType()->isReferenceType())
Ken Dycka7305832010-01-15 12:37:54 +0000264 return APValue(E);
Eli Friedmand933a012009-08-29 19:09:59 +0000265 // FIXME: Check whether VD might be overridden!
Sebastian Redl31310a22010-02-01 20:16:42 +0000266 if (const Expr *Init = VD->getAnyInitializer())
Douglas Gregorcf3293e2009-11-01 20:32:48 +0000267 return Visit(const_cast<Expr *>(Init));
Eli Friedman50c39ea2009-05-27 06:04:58 +0000268 }
269
270 return APValue();
Anders Carlsson35873c42008-11-24 04:41:22 +0000271}
272
Eli Friedman4efaa272008-11-12 09:44:48 +0000273APValue LValueExprEvaluator::VisitCompoundLiteralExpr(CompoundLiteralExpr *E) {
Eli Friedmanb2f295c2009-09-13 10:17:44 +0000274 if (!Info.AnyLValue && !E->isFileScope())
275 return APValue();
Ken Dycka7305832010-01-15 12:37:54 +0000276 return APValue(E);
Eli Friedman4efaa272008-11-12 09:44:48 +0000277}
278
279APValue LValueExprEvaluator::VisitMemberExpr(MemberExpr *E) {
280 APValue result;
281 QualType Ty;
282 if (E->isArrow()) {
283 if (!EvaluatePointer(E->getBase(), result, Info))
284 return APValue();
Ted Kremenek6217b802009-07-29 21:53:49 +0000285 Ty = E->getBase()->getType()->getAs<PointerType>()->getPointeeType();
Eli Friedman4efaa272008-11-12 09:44:48 +0000286 } else {
287 result = Visit(E->getBase());
288 if (result.isUninit())
289 return APValue();
290 Ty = E->getBase()->getType();
291 }
292
Ted Kremenek6217b802009-07-29 21:53:49 +0000293 RecordDecl *RD = Ty->getAs<RecordType>()->getDecl();
Eli Friedman4efaa272008-11-12 09:44:48 +0000294 const ASTRecordLayout &RL = Info.Ctx.getASTRecordLayout(RD);
Douglas Gregor86f19402008-12-20 23:49:58 +0000295
296 FieldDecl *FD = dyn_cast<FieldDecl>(E->getMemberDecl());
297 if (!FD) // FIXME: deal with other kinds of member expressions
298 return APValue();
Eli Friedman2be58612009-05-30 21:09:44 +0000299
300 if (FD->getType()->isReferenceType())
301 return APValue();
302
Eli Friedman4efaa272008-11-12 09:44:48 +0000303 // FIXME: This is linear time.
Douglas Gregor44b43212008-12-11 16:49:14 +0000304 unsigned i = 0;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000305 for (RecordDecl::field_iterator Field = RD->field_begin(),
306 FieldEnd = RD->field_end();
Douglas Gregor44b43212008-12-11 16:49:14 +0000307 Field != FieldEnd; (void)++Field, ++i) {
308 if (*Field == FD)
Eli Friedman4efaa272008-11-12 09:44:48 +0000309 break;
310 }
311
312 result.setLValue(result.getLValueBase(),
Ken Dycka7305832010-01-15 12:37:54 +0000313 result.getLValueOffset() +
314 CharUnits::fromQuantity(RL.getFieldOffset(i) / 8));
Eli Friedman4efaa272008-11-12 09:44:48 +0000315
316 return result;
317}
318
Mike Stump1eb44332009-09-09 15:08:12 +0000319APValue LValueExprEvaluator::VisitArraySubscriptExpr(ArraySubscriptExpr *E) {
Anders Carlsson3068d112008-11-16 19:01:22 +0000320 APValue Result;
Mike Stump1eb44332009-09-09 15:08:12 +0000321
Anders Carlsson3068d112008-11-16 19:01:22 +0000322 if (!EvaluatePointer(E->getBase(), Result, Info))
323 return APValue();
Mike Stump1eb44332009-09-09 15:08:12 +0000324
Anders Carlsson3068d112008-11-16 19:01:22 +0000325 APSInt Index;
326 if (!EvaluateInteger(E->getIdx(), Index, Info))
327 return APValue();
328
Ken Dyck199c3d62010-01-11 17:06:35 +0000329 CharUnits ElementSize = Info.Ctx.getTypeSizeInChars(E->getType());
Anders Carlsson3068d112008-11-16 19:01:22 +0000330
Ken Dyck199c3d62010-01-11 17:06:35 +0000331 CharUnits Offset = Index.getSExtValue() * ElementSize;
Mike Stump1eb44332009-09-09 15:08:12 +0000332 Result.setLValue(Result.getLValueBase(),
Ken Dycka7305832010-01-15 12:37:54 +0000333 Result.getLValueOffset() + Offset);
Anders Carlsson3068d112008-11-16 19:01:22 +0000334 return Result;
335}
Eli Friedman4efaa272008-11-12 09:44:48 +0000336
Mike Stump1eb44332009-09-09 15:08:12 +0000337APValue LValueExprEvaluator::VisitUnaryDeref(UnaryOperator *E) {
Eli Friedmane8761c82009-02-20 01:57:15 +0000338 APValue Result;
339 if (!EvaluatePointer(E->getSubExpr(), Result, Info))
340 return APValue();
341 return Result;
342}
343
Eli Friedman4efaa272008-11-12 09:44:48 +0000344//===----------------------------------------------------------------------===//
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000345// Pointer Evaluation
346//===----------------------------------------------------------------------===//
347
Anders Carlssonc754aa62008-07-08 05:13:58 +0000348namespace {
Benjamin Kramer770b4a82009-11-28 19:03:38 +0000349class PointerExprEvaluator
Anders Carlsson2bad1682008-07-08 14:30:00 +0000350 : public StmtVisitor<PointerExprEvaluator, APValue> {
Chris Lattner87eae5e2008-07-11 22:52:41 +0000351 EvalInfo &Info;
Anders Carlsson2bad1682008-07-08 14:30:00 +0000352public:
Mike Stump1eb44332009-09-09 15:08:12 +0000353
Chris Lattner87eae5e2008-07-11 22:52:41 +0000354 PointerExprEvaluator(EvalInfo &info) : Info(info) {}
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000355
Anders Carlsson2bad1682008-07-08 14:30:00 +0000356 APValue VisitStmt(Stmt *S) {
Anders Carlsson2bad1682008-07-08 14:30:00 +0000357 return APValue();
358 }
359
360 APValue VisitParenExpr(ParenExpr *E) { return Visit(E->getSubExpr()); }
361
Anders Carlsson650c92f2008-07-08 15:34:11 +0000362 APValue VisitBinaryOperator(const BinaryOperator *E);
Eli Friedman09a8a0e2009-12-27 05:43:15 +0000363 APValue VisitCastExpr(CastExpr* E);
Eli Friedman2217c872009-02-22 11:46:18 +0000364 APValue VisitUnaryExtension(const UnaryOperator *E)
365 { return Visit(E->getSubExpr()); }
366 APValue VisitUnaryAddrOf(const UnaryOperator *E);
Eli Friedman4efaa272008-11-12 09:44:48 +0000367 APValue VisitObjCStringLiteral(ObjCStringLiteral *E)
Ken Dycka7305832010-01-15 12:37:54 +0000368 { return APValue(E); }
Eli Friedmanf0115892009-01-25 01:21:06 +0000369 APValue VisitAddrLabelExpr(AddrLabelExpr *E)
Ken Dycka7305832010-01-15 12:37:54 +0000370 { return APValue(E); }
Eli Friedman3941b182009-01-25 01:54:01 +0000371 APValue VisitCallExpr(CallExpr *E);
Mike Stumpb83d2872009-02-19 22:01:56 +0000372 APValue VisitBlockExpr(BlockExpr *E) {
373 if (!E->hasBlockDeclRefExprs())
Ken Dycka7305832010-01-15 12:37:54 +0000374 return APValue(E);
Mike Stumpb83d2872009-02-19 22:01:56 +0000375 return APValue();
376 }
Eli Friedman91110ee2009-02-23 04:23:56 +0000377 APValue VisitImplicitValueInitExpr(ImplicitValueInitExpr *E)
Ken Dycka7305832010-01-15 12:37:54 +0000378 { return APValue((Expr*)0); }
Eli Friedman4efaa272008-11-12 09:44:48 +0000379 APValue VisitConditionalOperator(ConditionalOperator *E);
Eli Friedmanba98d6b2009-03-23 04:56:01 +0000380 APValue VisitChooseExpr(ChooseExpr *E)
Sebastian Redl6e8ed162009-05-10 18:38:11 +0000381 { return Visit(E->getChosenSubExpr(Info.Ctx)); }
382 APValue VisitCXXNullPtrLiteralExpr(CXXNullPtrLiteralExpr *E)
Ken Dycka7305832010-01-15 12:37:54 +0000383 { return APValue((Expr*)0); }
Eli Friedmanba98d6b2009-03-23 04:56:01 +0000384 // FIXME: Missing: @protocol, @selector
Anders Carlsson650c92f2008-07-08 15:34:11 +0000385};
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000386} // end anonymous namespace
Anders Carlsson650c92f2008-07-08 15:34:11 +0000387
Chris Lattner87eae5e2008-07-11 22:52:41 +0000388static bool EvaluatePointer(const Expr* E, APValue& Result, EvalInfo &Info) {
Daniel Dunbar89588912009-02-26 20:52:22 +0000389 if (!E->getType()->hasPointerRepresentation())
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000390 return false;
Chris Lattner87eae5e2008-07-11 22:52:41 +0000391 Result = PointerExprEvaluator(Info).Visit(const_cast<Expr*>(E));
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000392 return Result.isLValue();
393}
394
395APValue PointerExprEvaluator::VisitBinaryOperator(const BinaryOperator *E) {
396 if (E->getOpcode() != BinaryOperator::Add &&
397 E->getOpcode() != BinaryOperator::Sub)
398 return APValue();
Mike Stump1eb44332009-09-09 15:08:12 +0000399
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000400 const Expr *PExp = E->getLHS();
401 const Expr *IExp = E->getRHS();
402 if (IExp->getType()->isPointerType())
403 std::swap(PExp, IExp);
Mike Stump1eb44332009-09-09 15:08:12 +0000404
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000405 APValue ResultLValue;
Chris Lattner87eae5e2008-07-11 22:52:41 +0000406 if (!EvaluatePointer(PExp, ResultLValue, Info))
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000407 return APValue();
Mike Stump1eb44332009-09-09 15:08:12 +0000408
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000409 llvm::APSInt AdditionalOffset(32);
Chris Lattner87eae5e2008-07-11 22:52:41 +0000410 if (!EvaluateInteger(IExp, AdditionalOffset, Info))
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000411 return APValue();
412
Ted Kremenek6217b802009-07-29 21:53:49 +0000413 QualType PointeeType = PExp->getType()->getAs<PointerType>()->getPointeeType();
Ken Dyck199c3d62010-01-11 17:06:35 +0000414 CharUnits SizeOfPointee;
Mike Stump1eb44332009-09-09 15:08:12 +0000415
Anders Carlsson4d4c50d2009-02-19 04:55:58 +0000416 // Explicitly handle GNU void* and function pointer arithmetic extensions.
417 if (PointeeType->isVoidType() || PointeeType->isFunctionType())
Ken Dyck199c3d62010-01-11 17:06:35 +0000418 SizeOfPointee = CharUnits::One();
Anders Carlsson4d4c50d2009-02-19 04:55:58 +0000419 else
Ken Dyck199c3d62010-01-11 17:06:35 +0000420 SizeOfPointee = Info.Ctx.getTypeSizeInChars(PointeeType);
Eli Friedman4efaa272008-11-12 09:44:48 +0000421
Ken Dycka7305832010-01-15 12:37:54 +0000422 CharUnits Offset = ResultLValue.getLValueOffset();
Eli Friedman4efaa272008-11-12 09:44:48 +0000423
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000424 if (E->getOpcode() == BinaryOperator::Add)
Eli Friedman4efaa272008-11-12 09:44:48 +0000425 Offset += AdditionalOffset.getLimitedValue() * SizeOfPointee;
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000426 else
Eli Friedman4efaa272008-11-12 09:44:48 +0000427 Offset -= AdditionalOffset.getLimitedValue() * SizeOfPointee;
428
Ken Dycka7305832010-01-15 12:37:54 +0000429 return APValue(ResultLValue.getLValueBase(), Offset);
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000430}
Eli Friedman4efaa272008-11-12 09:44:48 +0000431
Eli Friedman2217c872009-02-22 11:46:18 +0000432APValue PointerExprEvaluator::VisitUnaryAddrOf(const UnaryOperator *E) {
433 APValue result;
434 if (EvaluateLValue(E->getSubExpr(), result, Info))
435 return result;
Eli Friedman4efaa272008-11-12 09:44:48 +0000436 return APValue();
437}
Mike Stump1eb44332009-09-09 15:08:12 +0000438
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000439
Eli Friedman09a8a0e2009-12-27 05:43:15 +0000440APValue PointerExprEvaluator::VisitCastExpr(CastExpr* E) {
441 Expr* SubExpr = E->getSubExpr();
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000442
Eli Friedman09a8a0e2009-12-27 05:43:15 +0000443 switch (E->getCastKind()) {
444 default:
445 break;
446
447 case CastExpr::CK_Unknown: {
448 // FIXME: The handling for CK_Unknown is ugly/shouldn't be necessary!
449
450 // Check for pointer->pointer cast
451 if (SubExpr->getType()->isPointerType() ||
452 SubExpr->getType()->isObjCObjectPointerType() ||
453 SubExpr->getType()->isNullPtrType() ||
454 SubExpr->getType()->isBlockPointerType())
455 return Visit(SubExpr);
456
457 if (SubExpr->getType()->isIntegralType()) {
458 APValue Result;
459 if (!EvaluateIntegerOrLValue(SubExpr, Result, Info))
460 break;
461
462 if (Result.isInt()) {
463 Result.getInt().extOrTrunc((unsigned)Info.Ctx.getTypeSize(E->getType()));
Ken Dycka7305832010-01-15 12:37:54 +0000464 return APValue(0,
465 CharUnits::fromQuantity(Result.getInt().getZExtValue()));
Eli Friedman09a8a0e2009-12-27 05:43:15 +0000466 }
467
468 // Cast is of an lvalue, no need to change value.
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000469 return Result;
Eli Friedman09a8a0e2009-12-27 05:43:15 +0000470 }
471 break;
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000472 }
Mike Stump1eb44332009-09-09 15:08:12 +0000473
Eli Friedman09a8a0e2009-12-27 05:43:15 +0000474 case CastExpr::CK_NoOp:
475 case CastExpr::CK_BitCast:
476 case CastExpr::CK_AnyPointerToObjCPointerCast:
477 case CastExpr::CK_AnyPointerToBlockPointerCast:
478 return Visit(SubExpr);
479
480 case CastExpr::CK_IntegralToPointer: {
Daniel Dunbar69ab26a2009-02-20 18:22:23 +0000481 APValue Result;
482 if (!EvaluateIntegerOrLValue(SubExpr, Result, Info))
Eli Friedman09a8a0e2009-12-27 05:43:15 +0000483 break;
Daniel Dunbar69ab26a2009-02-20 18:22:23 +0000484
485 if (Result.isInt()) {
486 Result.getInt().extOrTrunc((unsigned)Info.Ctx.getTypeSize(E->getType()));
Ken Dycka7305832010-01-15 12:37:54 +0000487 return APValue(0,
488 CharUnits::fromQuantity(Result.getInt().getZExtValue()));
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000489 }
Mike Stump1eb44332009-09-09 15:08:12 +0000490
Daniel Dunbar69ab26a2009-02-20 18:22:23 +0000491 // Cast is of an lvalue, no need to change value.
492 return Result;
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000493 }
Eli Friedman09a8a0e2009-12-27 05:43:15 +0000494 case CastExpr::CK_ArrayToPointerDecay:
495 case CastExpr::CK_FunctionToPointerDecay: {
Eli Friedman4efaa272008-11-12 09:44:48 +0000496 APValue Result;
497 if (EvaluateLValue(SubExpr, Result, Info))
498 return Result;
Eli Friedman09a8a0e2009-12-27 05:43:15 +0000499 break;
500 }
Eli Friedman4efaa272008-11-12 09:44:48 +0000501 }
502
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000503 return APValue();
Mike Stump1eb44332009-09-09 15:08:12 +0000504}
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000505
Eli Friedman3941b182009-01-25 01:54:01 +0000506APValue PointerExprEvaluator::VisitCallExpr(CallExpr *E) {
Mike Stump1eb44332009-09-09 15:08:12 +0000507 if (E->isBuiltinCall(Info.Ctx) ==
David Chisnall0d13f6f2010-01-23 02:40:42 +0000508 Builtin::BI__builtin___CFStringMakeConstantString ||
509 E->isBuiltinCall(Info.Ctx) ==
510 Builtin::BI__builtin___NSStringMakeConstantString)
Ken Dycka7305832010-01-15 12:37:54 +0000511 return APValue(E);
Eli Friedman3941b182009-01-25 01:54:01 +0000512 return APValue();
513}
514
Eli Friedman4efaa272008-11-12 09:44:48 +0000515APValue PointerExprEvaluator::VisitConditionalOperator(ConditionalOperator *E) {
516 bool BoolResult;
517 if (!HandleConversionToBool(E->getCond(), BoolResult, Info))
518 return APValue();
519
520 Expr* EvalExpr = BoolResult ? E->getTrueExpr() : E->getFalseExpr();
521
522 APValue Result;
523 if (EvaluatePointer(EvalExpr, Result, Info))
524 return Result;
525 return APValue();
526}
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000527
528//===----------------------------------------------------------------------===//
Nate Begeman59b5da62009-01-18 03:20:47 +0000529// Vector Evaluation
530//===----------------------------------------------------------------------===//
531
532namespace {
Benjamin Kramer770b4a82009-11-28 19:03:38 +0000533 class VectorExprEvaluator
Nate Begeman59b5da62009-01-18 03:20:47 +0000534 : public StmtVisitor<VectorExprEvaluator, APValue> {
535 EvalInfo &Info;
Eli Friedman91110ee2009-02-23 04:23:56 +0000536 APValue GetZeroVector(QualType VecType);
Nate Begeman59b5da62009-01-18 03:20:47 +0000537 public:
Mike Stump1eb44332009-09-09 15:08:12 +0000538
Nate Begeman59b5da62009-01-18 03:20:47 +0000539 VectorExprEvaluator(EvalInfo &info) : Info(info) {}
Mike Stump1eb44332009-09-09 15:08:12 +0000540
Nate Begeman59b5da62009-01-18 03:20:47 +0000541 APValue VisitStmt(Stmt *S) {
542 return APValue();
543 }
Mike Stump1eb44332009-09-09 15:08:12 +0000544
Eli Friedman91110ee2009-02-23 04:23:56 +0000545 APValue VisitParenExpr(ParenExpr *E)
546 { return Visit(E->getSubExpr()); }
547 APValue VisitUnaryExtension(const UnaryOperator *E)
548 { return Visit(E->getSubExpr()); }
549 APValue VisitUnaryPlus(const UnaryOperator *E)
550 { return Visit(E->getSubExpr()); }
551 APValue VisitUnaryReal(const UnaryOperator *E)
552 { return Visit(E->getSubExpr()); }
553 APValue VisitImplicitValueInitExpr(const ImplicitValueInitExpr *E)
554 { return GetZeroVector(E->getType()); }
Nate Begeman59b5da62009-01-18 03:20:47 +0000555 APValue VisitCastExpr(const CastExpr* E);
556 APValue VisitCompoundLiteralExpr(const CompoundLiteralExpr *E);
557 APValue VisitInitListExpr(const InitListExpr *E);
Eli Friedman91110ee2009-02-23 04:23:56 +0000558 APValue VisitConditionalOperator(const ConditionalOperator *E);
Eli Friedmanba98d6b2009-03-23 04:56:01 +0000559 APValue VisitChooseExpr(const ChooseExpr *E)
560 { return Visit(E->getChosenSubExpr(Info.Ctx)); }
Eli Friedman91110ee2009-02-23 04:23:56 +0000561 APValue VisitUnaryImag(const UnaryOperator *E);
562 // FIXME: Missing: unary -, unary ~, binary add/sub/mul/div,
Eli Friedman2217c872009-02-22 11:46:18 +0000563 // binary comparisons, binary and/or/xor,
Eli Friedman91110ee2009-02-23 04:23:56 +0000564 // shufflevector, ExtVectorElementExpr
565 // (Note that these require implementing conversions
566 // between vector types.)
Nate Begeman59b5da62009-01-18 03:20:47 +0000567 };
568} // end anonymous namespace
569
570static bool EvaluateVector(const Expr* E, APValue& Result, EvalInfo &Info) {
571 if (!E->getType()->isVectorType())
572 return false;
573 Result = VectorExprEvaluator(Info).Visit(const_cast<Expr*>(E));
574 return !Result.isUninit();
575}
576
577APValue VectorExprEvaluator::VisitCastExpr(const CastExpr* E) {
John McCall183700f2009-09-21 23:43:11 +0000578 const VectorType *VTy = E->getType()->getAs<VectorType>();
Nate Begemanc0b8b192009-07-01 07:50:47 +0000579 QualType EltTy = VTy->getElementType();
580 unsigned NElts = VTy->getNumElements();
581 unsigned EltWidth = Info.Ctx.getTypeSize(EltTy);
Mike Stump1eb44332009-09-09 15:08:12 +0000582
Nate Begeman59b5da62009-01-18 03:20:47 +0000583 const Expr* SE = E->getSubExpr();
Nate Begemane8c9e922009-06-26 18:22:18 +0000584 QualType SETy = SE->getType();
585 APValue Result = APValue();
Nate Begeman59b5da62009-01-18 03:20:47 +0000586
Nate Begemane8c9e922009-06-26 18:22:18 +0000587 // Check for vector->vector bitcast and scalar->vector splat.
588 if (SETy->isVectorType()) {
Nate Begeman59b5da62009-01-18 03:20:47 +0000589 return this->Visit(const_cast<Expr*>(SE));
Nate Begemane8c9e922009-06-26 18:22:18 +0000590 } else if (SETy->isIntegerType()) {
591 APSInt IntResult;
Daniel Dunbard906dc72009-07-01 20:37:45 +0000592 if (!EvaluateInteger(SE, IntResult, Info))
593 return APValue();
594 Result = APValue(IntResult);
Nate Begemane8c9e922009-06-26 18:22:18 +0000595 } else if (SETy->isRealFloatingType()) {
596 APFloat F(0.0);
Daniel Dunbard906dc72009-07-01 20:37:45 +0000597 if (!EvaluateFloat(SE, F, Info))
598 return APValue();
599 Result = APValue(F);
600 } else
Nate Begemanc0b8b192009-07-01 07:50:47 +0000601 return APValue();
Nate Begeman59b5da62009-01-18 03:20:47 +0000602
Nate Begemanc0b8b192009-07-01 07:50:47 +0000603 // For casts of a scalar to ExtVector, convert the scalar to the element type
604 // and splat it to all elements.
605 if (E->getType()->isExtVectorType()) {
606 if (EltTy->isIntegerType() && Result.isInt())
607 Result = APValue(HandleIntToIntCast(EltTy, SETy, Result.getInt(),
608 Info.Ctx));
609 else if (EltTy->isIntegerType())
610 Result = APValue(HandleFloatToIntCast(EltTy, SETy, Result.getFloat(),
611 Info.Ctx));
612 else if (EltTy->isRealFloatingType() && Result.isInt())
613 Result = APValue(HandleIntToFloatCast(EltTy, SETy, Result.getInt(),
614 Info.Ctx));
615 else if (EltTy->isRealFloatingType())
616 Result = APValue(HandleFloatToFloatCast(EltTy, SETy, Result.getFloat(),
617 Info.Ctx));
618 else
619 return APValue();
620
621 // Splat and create vector APValue.
622 llvm::SmallVector<APValue, 4> Elts(NElts, Result);
623 return APValue(&Elts[0], Elts.size());
Nate Begemane8c9e922009-06-26 18:22:18 +0000624 }
Nate Begemanc0b8b192009-07-01 07:50:47 +0000625
626 // For casts of a scalar to regular gcc-style vector type, bitcast the scalar
627 // to the vector. To construct the APValue vector initializer, bitcast the
628 // initializing value to an APInt, and shift out the bits pertaining to each
629 // element.
630 APSInt Init;
631 Init = Result.isInt() ? Result.getInt() : Result.getFloat().bitcastToAPInt();
Mike Stump1eb44332009-09-09 15:08:12 +0000632
Nate Begemanc0b8b192009-07-01 07:50:47 +0000633 llvm::SmallVector<APValue, 4> Elts;
634 for (unsigned i = 0; i != NElts; ++i) {
635 APSInt Tmp = Init;
636 Tmp.extOrTrunc(EltWidth);
Mike Stump1eb44332009-09-09 15:08:12 +0000637
Nate Begemanc0b8b192009-07-01 07:50:47 +0000638 if (EltTy->isIntegerType())
639 Elts.push_back(APValue(Tmp));
640 else if (EltTy->isRealFloatingType())
641 Elts.push_back(APValue(APFloat(Tmp)));
642 else
643 return APValue();
644
645 Init >>= EltWidth;
646 }
647 return APValue(&Elts[0], Elts.size());
Nate Begeman59b5da62009-01-18 03:20:47 +0000648}
649
Mike Stump1eb44332009-09-09 15:08:12 +0000650APValue
Nate Begeman59b5da62009-01-18 03:20:47 +0000651VectorExprEvaluator::VisitCompoundLiteralExpr(const CompoundLiteralExpr *E) {
652 return this->Visit(const_cast<Expr*>(E->getInitializer()));
653}
654
Mike Stump1eb44332009-09-09 15:08:12 +0000655APValue
Nate Begeman59b5da62009-01-18 03:20:47 +0000656VectorExprEvaluator::VisitInitListExpr(const InitListExpr *E) {
John McCall183700f2009-09-21 23:43:11 +0000657 const VectorType *VT = E->getType()->getAs<VectorType>();
Nate Begeman59b5da62009-01-18 03:20:47 +0000658 unsigned NumInits = E->getNumInits();
Eli Friedman91110ee2009-02-23 04:23:56 +0000659 unsigned NumElements = VT->getNumElements();
Mike Stump1eb44332009-09-09 15:08:12 +0000660
Nate Begeman59b5da62009-01-18 03:20:47 +0000661 QualType EltTy = VT->getElementType();
662 llvm::SmallVector<APValue, 4> Elements;
663
Eli Friedman91110ee2009-02-23 04:23:56 +0000664 for (unsigned i = 0; i < NumElements; i++) {
Nate Begeman59b5da62009-01-18 03:20:47 +0000665 if (EltTy->isIntegerType()) {
666 llvm::APSInt sInt(32);
Eli Friedman91110ee2009-02-23 04:23:56 +0000667 if (i < NumInits) {
668 if (!EvaluateInteger(E->getInit(i), sInt, Info))
669 return APValue();
670 } else {
671 sInt = Info.Ctx.MakeIntValue(0, EltTy);
672 }
Nate Begeman59b5da62009-01-18 03:20:47 +0000673 Elements.push_back(APValue(sInt));
674 } else {
675 llvm::APFloat f(0.0);
Eli Friedman91110ee2009-02-23 04:23:56 +0000676 if (i < NumInits) {
677 if (!EvaluateFloat(E->getInit(i), f, Info))
678 return APValue();
679 } else {
680 f = APFloat::getZero(Info.Ctx.getFloatTypeSemantics(EltTy));
681 }
Nate Begeman59b5da62009-01-18 03:20:47 +0000682 Elements.push_back(APValue(f));
683 }
684 }
685 return APValue(&Elements[0], Elements.size());
686}
687
Mike Stump1eb44332009-09-09 15:08:12 +0000688APValue
Eli Friedman91110ee2009-02-23 04:23:56 +0000689VectorExprEvaluator::GetZeroVector(QualType T) {
John McCall183700f2009-09-21 23:43:11 +0000690 const VectorType *VT = T->getAs<VectorType>();
Eli Friedman91110ee2009-02-23 04:23:56 +0000691 QualType EltTy = VT->getElementType();
692 APValue ZeroElement;
693 if (EltTy->isIntegerType())
694 ZeroElement = APValue(Info.Ctx.MakeIntValue(0, EltTy));
695 else
696 ZeroElement =
697 APValue(APFloat::getZero(Info.Ctx.getFloatTypeSemantics(EltTy)));
698
699 llvm::SmallVector<APValue, 4> Elements(VT->getNumElements(), ZeroElement);
700 return APValue(&Elements[0], Elements.size());
701}
702
703APValue VectorExprEvaluator::VisitConditionalOperator(const ConditionalOperator *E) {
704 bool BoolResult;
705 if (!HandleConversionToBool(E->getCond(), BoolResult, Info))
706 return APValue();
707
708 Expr* EvalExpr = BoolResult ? E->getTrueExpr() : E->getFalseExpr();
709
710 APValue Result;
711 if (EvaluateVector(EvalExpr, Result, Info))
712 return Result;
713 return APValue();
714}
715
Eli Friedman91110ee2009-02-23 04:23:56 +0000716APValue VectorExprEvaluator::VisitUnaryImag(const UnaryOperator *E) {
717 if (!E->getSubExpr()->isEvaluatable(Info.Ctx))
718 Info.EvalResult.HasSideEffects = true;
719 return GetZeroVector(E->getType());
720}
721
Nate Begeman59b5da62009-01-18 03:20:47 +0000722//===----------------------------------------------------------------------===//
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000723// Integer Evaluation
724//===----------------------------------------------------------------------===//
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000725
726namespace {
Benjamin Kramer770b4a82009-11-28 19:03:38 +0000727class IntExprEvaluator
Chris Lattnerb542afe2008-07-11 19:10:17 +0000728 : public StmtVisitor<IntExprEvaluator, bool> {
Chris Lattner87eae5e2008-07-11 22:52:41 +0000729 EvalInfo &Info;
Daniel Dunbar30c37f42009-02-19 20:17:33 +0000730 APValue &Result;
Anders Carlssonc754aa62008-07-08 05:13:58 +0000731public:
Daniel Dunbar30c37f42009-02-19 20:17:33 +0000732 IntExprEvaluator(EvalInfo &info, APValue &result)
Chris Lattner87eae5e2008-07-11 22:52:41 +0000733 : Info(info), Result(result) {}
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000734
Daniel Dunbar3f7d9952009-02-19 18:37:50 +0000735 bool Success(const llvm::APSInt &SI, const Expr *E) {
Daniel Dunbar4fff4812009-02-21 18:14:20 +0000736 assert(E->getType()->isIntegralType() && "Invalid evaluation result.");
Daniel Dunbar30c37f42009-02-19 20:17:33 +0000737 assert(SI.isSigned() == E->getType()->isSignedIntegerType() &&
Daniel Dunbar3f7d9952009-02-19 18:37:50 +0000738 "Invalid evaluation result.");
Daniel Dunbar30c37f42009-02-19 20:17:33 +0000739 assert(SI.getBitWidth() == Info.Ctx.getIntWidth(E->getType()) &&
Daniel Dunbar3f7d9952009-02-19 18:37:50 +0000740 "Invalid evaluation result.");
Daniel Dunbar30c37f42009-02-19 20:17:33 +0000741 Result = APValue(SI);
Daniel Dunbar3f7d9952009-02-19 18:37:50 +0000742 return true;
743 }
744
Daniel Dunbar131eb432009-02-19 09:06:44 +0000745 bool Success(const llvm::APInt &I, const Expr *E) {
Daniel Dunbar4fff4812009-02-21 18:14:20 +0000746 assert(E->getType()->isIntegralType() && "Invalid evaluation result.");
Daniel Dunbar30c37f42009-02-19 20:17:33 +0000747 assert(I.getBitWidth() == Info.Ctx.getIntWidth(E->getType()) &&
Daniel Dunbar3f7d9952009-02-19 18:37:50 +0000748 "Invalid evaluation result.");
Daniel Dunbar30c37f42009-02-19 20:17:33 +0000749 Result = APValue(APSInt(I));
750 Result.getInt().setIsUnsigned(E->getType()->isUnsignedIntegerType());
Daniel Dunbar131eb432009-02-19 09:06:44 +0000751 return true;
752 }
753
754 bool Success(uint64_t Value, const Expr *E) {
Daniel Dunbar4fff4812009-02-21 18:14:20 +0000755 assert(E->getType()->isIntegralType() && "Invalid evaluation result.");
Daniel Dunbar30c37f42009-02-19 20:17:33 +0000756 Result = APValue(Info.Ctx.MakeIntValue(Value, E->getType()));
Daniel Dunbar131eb432009-02-19 09:06:44 +0000757 return true;
758 }
759
Anders Carlsson82206e22008-11-30 18:14:57 +0000760 bool Error(SourceLocation L, diag::kind D, const Expr *E) {
Chris Lattner32fea9d2008-11-12 07:43:42 +0000761 // Take the first error.
Anders Carlsson54da0492008-11-30 16:38:33 +0000762 if (Info.EvalResult.Diag == 0) {
763 Info.EvalResult.DiagLoc = L;
764 Info.EvalResult.Diag = D;
Anders Carlsson82206e22008-11-30 18:14:57 +0000765 Info.EvalResult.DiagExpr = E;
Chris Lattner32fea9d2008-11-12 07:43:42 +0000766 }
Chris Lattner54176fd2008-07-12 00:14:42 +0000767 return false;
Chris Lattner7a767782008-07-11 19:24:49 +0000768 }
Mike Stump1eb44332009-09-09 15:08:12 +0000769
Anders Carlssonc754aa62008-07-08 05:13:58 +0000770 //===--------------------------------------------------------------------===//
771 // Visitor Methods
772 //===--------------------------------------------------------------------===//
Mike Stump1eb44332009-09-09 15:08:12 +0000773
Chris Lattner32fea9d2008-11-12 07:43:42 +0000774 bool VisitStmt(Stmt *) {
775 assert(0 && "This should be called on integers, stmts are not integers");
776 return false;
777 }
Mike Stump1eb44332009-09-09 15:08:12 +0000778
Chris Lattner32fea9d2008-11-12 07:43:42 +0000779 bool VisitExpr(Expr *E) {
Anders Carlsson0e8acbb2008-11-30 18:37:00 +0000780 return Error(E->getLocStart(), diag::note_invalid_subexpr_in_ice, E);
Anders Carlssonc754aa62008-07-08 05:13:58 +0000781 }
Mike Stump1eb44332009-09-09 15:08:12 +0000782
Chris Lattnerb542afe2008-07-11 19:10:17 +0000783 bool VisitParenExpr(ParenExpr *E) { return Visit(E->getSubExpr()); }
Anders Carlssonc754aa62008-07-08 05:13:58 +0000784
Chris Lattner4c4867e2008-07-12 00:38:25 +0000785 bool VisitIntegerLiteral(const IntegerLiteral *E) {
Daniel Dunbar131eb432009-02-19 09:06:44 +0000786 return Success(E->getValue(), E);
Chris Lattner4c4867e2008-07-12 00:38:25 +0000787 }
788 bool VisitCharacterLiteral(const CharacterLiteral *E) {
Daniel Dunbar131eb432009-02-19 09:06:44 +0000789 return Success(E->getValue(), E);
Chris Lattner4c4867e2008-07-12 00:38:25 +0000790 }
791 bool VisitTypesCompatibleExpr(const TypesCompatibleExpr *E) {
Daniel Dunbarac620de2008-10-24 08:07:57 +0000792 // Per gcc docs "this built-in function ignores top level
793 // qualifiers". We need to use the canonical version to properly
794 // be able to strip CRV qualifiers from the type.
795 QualType T0 = Info.Ctx.getCanonicalType(E->getArgType1());
796 QualType T1 = Info.Ctx.getCanonicalType(E->getArgType2());
Mike Stump1eb44332009-09-09 15:08:12 +0000797 return Success(Info.Ctx.typesAreCompatible(T0.getUnqualifiedType(),
Daniel Dunbar131eb432009-02-19 09:06:44 +0000798 T1.getUnqualifiedType()),
799 E);
Chris Lattner4c4867e2008-07-12 00:38:25 +0000800 }
Eli Friedman04309752009-11-24 05:28:59 +0000801
802 bool CheckReferencedDecl(const Expr *E, const Decl *D);
803 bool VisitDeclRefExpr(const DeclRefExpr *E) {
804 return CheckReferencedDecl(E, E->getDecl());
805 }
806 bool VisitMemberExpr(const MemberExpr *E) {
807 if (CheckReferencedDecl(E, E->getMemberDecl())) {
808 // Conservatively assume a MemberExpr will have side-effects
809 Info.EvalResult.HasSideEffects = true;
810 return true;
811 }
812 return false;
813 }
814
Chris Lattner4c4867e2008-07-12 00:38:25 +0000815 bool VisitCallExpr(const CallExpr *E);
Chris Lattnerb542afe2008-07-11 19:10:17 +0000816 bool VisitBinaryOperator(const BinaryOperator *E);
817 bool VisitUnaryOperator(const UnaryOperator *E);
Nuno Lopesca7c2ea2008-11-16 19:28:31 +0000818 bool VisitConditionalOperator(const ConditionalOperator *E);
Anders Carlsson06a36752008-07-08 05:49:43 +0000819
Daniel Dunbara2cfd342009-01-29 06:16:07 +0000820 bool VisitCastExpr(CastExpr* E);
Sebastian Redl05189992008-11-11 17:56:53 +0000821 bool VisitSizeOfAlignOfExpr(const SizeOfAlignOfExpr *E);
822
Anders Carlsson3068d112008-11-16 19:01:22 +0000823 bool VisitCXXBoolLiteralExpr(const CXXBoolLiteralExpr *E) {
Daniel Dunbar131eb432009-02-19 09:06:44 +0000824 return Success(E->getValue(), E);
Anders Carlsson3068d112008-11-16 19:01:22 +0000825 }
Mike Stump1eb44332009-09-09 15:08:12 +0000826
Anders Carlsson3f704562008-12-21 22:39:40 +0000827 bool VisitGNUNullExpr(const GNUNullExpr *E) {
Daniel Dunbar131eb432009-02-19 09:06:44 +0000828 return Success(0, E);
Anders Carlsson3f704562008-12-21 22:39:40 +0000829 }
Mike Stump1eb44332009-09-09 15:08:12 +0000830
Anders Carlsson3068d112008-11-16 19:01:22 +0000831 bool VisitCXXZeroInitValueExpr(const CXXZeroInitValueExpr *E) {
Daniel Dunbar131eb432009-02-19 09:06:44 +0000832 return Success(0, E);
Anders Carlsson3068d112008-11-16 19:01:22 +0000833 }
834
Eli Friedman664a1042009-02-27 04:45:43 +0000835 bool VisitImplicitValueInitExpr(const ImplicitValueInitExpr *E) {
836 return Success(0, E);
837 }
838
Sebastian Redl64b45f72009-01-05 20:52:13 +0000839 bool VisitUnaryTypeTraitExpr(const UnaryTypeTraitExpr *E) {
Douglas Gregor5e03f9e2009-07-23 23:49:00 +0000840 return Success(E->EvaluateTrait(Info.Ctx), E);
Sebastian Redl64b45f72009-01-05 20:52:13 +0000841 }
842
Eli Friedmanba98d6b2009-03-23 04:56:01 +0000843 bool VisitChooseExpr(const ChooseExpr *E) {
844 return Visit(E->getChosenSubExpr(Info.Ctx));
845 }
846
Eli Friedman722c7172009-02-28 03:59:05 +0000847 bool VisitUnaryReal(const UnaryOperator *E);
Eli Friedman664a1042009-02-27 04:45:43 +0000848 bool VisitUnaryImag(const UnaryOperator *E);
849
Chris Lattnerfcee0012008-07-11 21:24:13 +0000850private:
Ken Dyck8b752f12010-01-27 17:10:57 +0000851 CharUnits GetAlignOfExpr(const Expr *E);
852 CharUnits GetAlignOfType(QualType T);
Eli Friedman664a1042009-02-27 04:45:43 +0000853 // FIXME: Missing: array subscript of vector, member of vector
Anders Carlssona25ae3d2008-07-08 14:35:21 +0000854};
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000855} // end anonymous namespace
Anders Carlsson650c92f2008-07-08 15:34:11 +0000856
Daniel Dunbar69ab26a2009-02-20 18:22:23 +0000857static bool EvaluateIntegerOrLValue(const Expr* E, APValue &Result, EvalInfo &Info) {
Daniel Dunbar3f7d9952009-02-19 18:37:50 +0000858 if (!E->getType()->isIntegralType())
859 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000860
Daniel Dunbar69ab26a2009-02-20 18:22:23 +0000861 return IntExprEvaluator(Info, Result).Visit(const_cast<Expr*>(E));
862}
Daniel Dunbar30c37f42009-02-19 20:17:33 +0000863
Daniel Dunbar69ab26a2009-02-20 18:22:23 +0000864static bool EvaluateInteger(const Expr* E, APSInt &Result, EvalInfo &Info) {
865 APValue Val;
866 if (!EvaluateIntegerOrLValue(E, Val, Info) || !Val.isInt())
867 return false;
Daniel Dunbar30c37f42009-02-19 20:17:33 +0000868 Result = Val.getInt();
869 return true;
Anders Carlsson650c92f2008-07-08 15:34:11 +0000870}
Anders Carlsson650c92f2008-07-08 15:34:11 +0000871
Eli Friedman04309752009-11-24 05:28:59 +0000872bool IntExprEvaluator::CheckReferencedDecl(const Expr* E, const Decl* D) {
Chris Lattner4c4867e2008-07-12 00:38:25 +0000873 // Enums are integer constant exprs.
Eli Friedman29a7f332009-12-10 22:29:29 +0000874 if (const EnumConstantDecl *ECD = dyn_cast<EnumConstantDecl>(D))
875 return Success(ECD->getInitVal(), E);
Sebastian Redlb2bc62b2009-02-08 15:51:17 +0000876
877 // In C++, const, non-volatile integers initialized with ICEs are ICEs.
Eli Friedmane1646da2009-03-30 23:39:01 +0000878 // In C, they can also be folded, although they are not ICEs.
Douglas Gregorcf3293e2009-11-01 20:32:48 +0000879 if (Info.Ctx.getCanonicalType(E->getType()).getCVRQualifiers()
880 == Qualifiers::Const) {
Anders Carlssonf6b60252010-02-03 21:58:41 +0000881
882 if (isa<ParmVarDecl>(D))
883 return Error(E->getLocStart(), diag::note_invalid_subexpr_in_ice, E);
884
Eli Friedman04309752009-11-24 05:28:59 +0000885 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
Sebastian Redl31310a22010-02-01 20:16:42 +0000886 if (const Expr *Init = VD->getAnyInitializer()) {
Eli Friedmanc0131182009-12-03 20:31:57 +0000887 if (APValue *V = VD->getEvaluatedValue()) {
888 if (V->isInt())
889 return Success(V->getInt(), E);
890 return Error(E->getLocStart(), diag::note_invalid_subexpr_in_ice, E);
891 }
892
893 if (VD->isEvaluatingValue())
894 return Error(E->getLocStart(), diag::note_invalid_subexpr_in_ice, E);
895
896 VD->setEvaluatingValue();
897
Douglas Gregor78d15832009-05-26 18:54:04 +0000898 if (Visit(const_cast<Expr*>(Init))) {
899 // Cache the evaluated value in the variable declaration.
Eli Friedmanc0131182009-12-03 20:31:57 +0000900 VD->setEvaluatedValue(Result);
Douglas Gregor78d15832009-05-26 18:54:04 +0000901 return true;
902 }
903
Eli Friedmanc0131182009-12-03 20:31:57 +0000904 VD->setEvaluatedValue(APValue());
Douglas Gregor78d15832009-05-26 18:54:04 +0000905 return false;
906 }
Sebastian Redlb2bc62b2009-02-08 15:51:17 +0000907 }
908 }
909
Chris Lattner4c4867e2008-07-12 00:38:25 +0000910 // Otherwise, random variable references are not constants.
Anders Carlsson0e8acbb2008-11-30 18:37:00 +0000911 return Error(E->getLocStart(), diag::note_invalid_subexpr_in_ice, E);
Chris Lattner4c4867e2008-07-12 00:38:25 +0000912}
913
Chris Lattnera4d55d82008-10-06 06:40:35 +0000914/// EvaluateBuiltinClassifyType - Evaluate __builtin_classify_type the same way
915/// as GCC.
916static int EvaluateBuiltinClassifyType(const CallExpr *E) {
917 // The following enum mimics the values returned by GCC.
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000918 // FIXME: Does GCC differ between lvalue and rvalue references here?
Chris Lattnera4d55d82008-10-06 06:40:35 +0000919 enum gcc_type_class {
920 no_type_class = -1,
921 void_type_class, integer_type_class, char_type_class,
922 enumeral_type_class, boolean_type_class,
923 pointer_type_class, reference_type_class, offset_type_class,
924 real_type_class, complex_type_class,
925 function_type_class, method_type_class,
926 record_type_class, union_type_class,
927 array_type_class, string_type_class,
928 lang_type_class
929 };
Mike Stump1eb44332009-09-09 15:08:12 +0000930
931 // If no argument was supplied, default to "no_type_class". This isn't
Chris Lattnera4d55d82008-10-06 06:40:35 +0000932 // ideal, however it is what gcc does.
933 if (E->getNumArgs() == 0)
934 return no_type_class;
Mike Stump1eb44332009-09-09 15:08:12 +0000935
Chris Lattnera4d55d82008-10-06 06:40:35 +0000936 QualType ArgTy = E->getArg(0)->getType();
937 if (ArgTy->isVoidType())
938 return void_type_class;
939 else if (ArgTy->isEnumeralType())
940 return enumeral_type_class;
941 else if (ArgTy->isBooleanType())
942 return boolean_type_class;
943 else if (ArgTy->isCharType())
944 return string_type_class; // gcc doesn't appear to use char_type_class
945 else if (ArgTy->isIntegerType())
946 return integer_type_class;
947 else if (ArgTy->isPointerType())
948 return pointer_type_class;
949 else if (ArgTy->isReferenceType())
950 return reference_type_class;
951 else if (ArgTy->isRealType())
952 return real_type_class;
953 else if (ArgTy->isComplexType())
954 return complex_type_class;
955 else if (ArgTy->isFunctionType())
956 return function_type_class;
957 else if (ArgTy->isStructureType())
958 return record_type_class;
959 else if (ArgTy->isUnionType())
960 return union_type_class;
961 else if (ArgTy->isArrayType())
962 return array_type_class;
963 else if (ArgTy->isUnionType())
964 return union_type_class;
965 else // FIXME: offset_type_class, method_type_class, & lang_type_class?
966 assert(0 && "CallExpr::isBuiltinClassifyType(): unimplemented type");
967 return -1;
968}
969
Chris Lattner4c4867e2008-07-12 00:38:25 +0000970bool IntExprEvaluator::VisitCallExpr(const CallExpr *E) {
Douglas Gregor3c385e52009-02-14 18:57:46 +0000971 switch (E->isBuiltinCall(Info.Ctx)) {
Chris Lattner019f4e82008-10-06 05:28:25 +0000972 default:
Anders Carlsson0e8acbb2008-11-30 18:37:00 +0000973 return Error(E->getLocStart(), diag::note_invalid_subexpr_in_ice, E);
Mike Stump64eda9e2009-10-26 18:35:08 +0000974
975 case Builtin::BI__builtin_object_size: {
Mike Stump64eda9e2009-10-26 18:35:08 +0000976 const Expr *Arg = E->getArg(0)->IgnoreParens();
977 Expr::EvalResult Base;
Eric Christopherb2aaf512010-01-19 22:58:35 +0000978
979 // TODO: Perhaps we should let LLVM lower this?
Mike Stump660e6f72009-10-26 23:05:19 +0000980 if (Arg->EvaluateAsAny(Base, Info.Ctx)
Mike Stump64eda9e2009-10-26 18:35:08 +0000981 && Base.Val.getKind() == APValue::LValue
982 && !Base.HasSideEffects)
983 if (const Expr *LVBase = Base.Val.getLValueBase())
984 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(LVBase)) {
985 if (const VarDecl *VD = dyn_cast<VarDecl>(DRE->getDecl())) {
Mike Stump460d1382009-10-28 21:22:24 +0000986 if (!VD->getType()->isIncompleteType()
987 && VD->getType()->isObjectType()
988 && !VD->getType()->isVariablyModifiedType()
989 && !VD->getType()->isDependentType()) {
Ken Dyck199c3d62010-01-11 17:06:35 +0000990 CharUnits Size = Info.Ctx.getTypeSizeInChars(VD->getType());
Ken Dycka7305832010-01-15 12:37:54 +0000991 CharUnits Offset = Base.Val.getLValueOffset();
Ken Dyck199c3d62010-01-11 17:06:35 +0000992 if (!Offset.isNegative() && Offset <= Size)
993 Size -= Offset;
Mike Stump460d1382009-10-28 21:22:24 +0000994 else
Ken Dyck199c3d62010-01-11 17:06:35 +0000995 Size = CharUnits::Zero();
996 return Success(Size.getQuantity(), E);
Mike Stump460d1382009-10-28 21:22:24 +0000997 }
Mike Stump64eda9e2009-10-26 18:35:08 +0000998 }
999 }
1000
Eric Christopherb2aaf512010-01-19 22:58:35 +00001001 // If evaluating the argument has side-effects we can't determine
1002 // the size of the object and lower it to unknown now.
Fariborz Jahanian393c2472009-11-05 18:03:03 +00001003 if (E->getArg(0)->HasSideEffects(Info.Ctx)) {
Benjamin Kramer3f27b382010-01-03 18:18:37 +00001004 if (E->getArg(1)->EvaluateAsInt(Info.Ctx).getZExtValue() <= 1)
Chris Lattnercf184652009-11-03 19:48:51 +00001005 return Success(-1ULL, E);
Mike Stump64eda9e2009-10-26 18:35:08 +00001006 return Success(0, E);
1007 }
Mike Stumpc4c90452009-10-27 22:09:17 +00001008
Mike Stump64eda9e2009-10-26 18:35:08 +00001009 return Error(E->getLocStart(), diag::note_invalid_subexpr_in_ice, E);
1010 }
1011
Chris Lattner019f4e82008-10-06 05:28:25 +00001012 case Builtin::BI__builtin_classify_type:
Daniel Dunbar131eb432009-02-19 09:06:44 +00001013 return Success(EvaluateBuiltinClassifyType(E), E);
Mike Stump1eb44332009-09-09 15:08:12 +00001014
Anders Carlsson4bbc0e02008-11-24 04:21:33 +00001015 case Builtin::BI__builtin_constant_p:
Chris Lattner019f4e82008-10-06 05:28:25 +00001016 // __builtin_constant_p always has one operand: it returns true if that
1017 // operand can be folded, false otherwise.
Daniel Dunbar131eb432009-02-19 09:06:44 +00001018 return Success(E->getArg(0)->isEvaluatable(Info.Ctx), E);
Chris Lattner21fb98e2009-09-23 06:06:36 +00001019
1020 case Builtin::BI__builtin_eh_return_data_regno: {
1021 int Operand = E->getArg(0)->EvaluateAsInt(Info.Ctx).getZExtValue();
1022 Operand = Info.Ctx.Target.getEHDataRegisterNumber(Operand);
1023 return Success(Operand, E);
1024 }
Chris Lattner019f4e82008-10-06 05:28:25 +00001025 }
Chris Lattner4c4867e2008-07-12 00:38:25 +00001026}
Anders Carlsson650c92f2008-07-08 15:34:11 +00001027
Chris Lattnerb542afe2008-07-11 19:10:17 +00001028bool IntExprEvaluator::VisitBinaryOperator(const BinaryOperator *E) {
Eli Friedmana6afa762008-11-13 06:09:17 +00001029 if (E->getOpcode() == BinaryOperator::Comma) {
Anders Carlsson027f62e2008-12-01 02:07:06 +00001030 if (!Visit(E->getRHS()))
1031 return false;
Anders Carlsson4fdfb092008-12-01 06:44:05 +00001032
Eli Friedman33ef1452009-02-26 10:19:36 +00001033 // If we can't evaluate the LHS, it might have side effects;
1034 // conservatively mark it.
1035 if (!E->getLHS()->isEvaluatable(Info.Ctx))
1036 Info.EvalResult.HasSideEffects = true;
Eli Friedmana6afa762008-11-13 06:09:17 +00001037
Anders Carlsson027f62e2008-12-01 02:07:06 +00001038 return true;
Eli Friedmana6afa762008-11-13 06:09:17 +00001039 }
1040
1041 if (E->isLogicalOp()) {
1042 // These need to be handled specially because the operands aren't
1043 // necessarily integral
Anders Carlssonfcb4d092008-11-30 16:51:17 +00001044 bool lhsResult, rhsResult;
Mike Stump1eb44332009-09-09 15:08:12 +00001045
Anders Carlssonfcb4d092008-11-30 16:51:17 +00001046 if (HandleConversionToBool(E->getLHS(), lhsResult, Info)) {
Anders Carlsson51fe9962008-11-22 21:04:56 +00001047 // We were able to evaluate the LHS, see if we can get away with not
1048 // evaluating the RHS: 0 && X -> 0, 1 || X -> 1
Eli Friedman33ef1452009-02-26 10:19:36 +00001049 if (lhsResult == (E->getOpcode() == BinaryOperator::LOr))
Daniel Dunbar3f7d9952009-02-19 18:37:50 +00001050 return Success(lhsResult, E);
Anders Carlsson4bbc0e02008-11-24 04:21:33 +00001051
Anders Carlssonfcb4d092008-11-30 16:51:17 +00001052 if (HandleConversionToBool(E->getRHS(), rhsResult, Info)) {
Anders Carlsson4bbc0e02008-11-24 04:21:33 +00001053 if (E->getOpcode() == BinaryOperator::LOr)
Daniel Dunbar131eb432009-02-19 09:06:44 +00001054 return Success(lhsResult || rhsResult, E);
Anders Carlsson4bbc0e02008-11-24 04:21:33 +00001055 else
Daniel Dunbar131eb432009-02-19 09:06:44 +00001056 return Success(lhsResult && rhsResult, E);
Anders Carlsson4bbc0e02008-11-24 04:21:33 +00001057 }
1058 } else {
Anders Carlssonfcb4d092008-11-30 16:51:17 +00001059 if (HandleConversionToBool(E->getRHS(), rhsResult, Info)) {
Anders Carlsson4bbc0e02008-11-24 04:21:33 +00001060 // We can't evaluate the LHS; however, sometimes the result
1061 // is determined by the RHS: X && 0 -> 0, X || 1 -> 1.
Mike Stump1eb44332009-09-09 15:08:12 +00001062 if (rhsResult == (E->getOpcode() == BinaryOperator::LOr) ||
Anders Carlssonfcb4d092008-11-30 16:51:17 +00001063 !rhsResult == (E->getOpcode() == BinaryOperator::LAnd)) {
Daniel Dunbar131eb432009-02-19 09:06:44 +00001064 // Since we weren't able to evaluate the left hand side, it
Anders Carlssonfcb4d092008-11-30 16:51:17 +00001065 // must have had side effects.
1066 Info.EvalResult.HasSideEffects = true;
Daniel Dunbar131eb432009-02-19 09:06:44 +00001067
1068 return Success(rhsResult, E);
Anders Carlsson4bbc0e02008-11-24 04:21:33 +00001069 }
1070 }
Anders Carlsson51fe9962008-11-22 21:04:56 +00001071 }
Eli Friedmana6afa762008-11-13 06:09:17 +00001072
Eli Friedmana6afa762008-11-13 06:09:17 +00001073 return false;
1074 }
1075
Anders Carlsson286f85e2008-11-16 07:17:21 +00001076 QualType LHSTy = E->getLHS()->getType();
1077 QualType RHSTy = E->getRHS()->getType();
Daniel Dunbar4087e242009-01-29 06:43:41 +00001078
1079 if (LHSTy->isAnyComplexType()) {
1080 assert(RHSTy->isAnyComplexType() && "Invalid comparison");
1081 APValue LHS, RHS;
1082
1083 if (!EvaluateComplex(E->getLHS(), LHS, Info))
1084 return false;
1085
1086 if (!EvaluateComplex(E->getRHS(), RHS, Info))
1087 return false;
1088
1089 if (LHS.isComplexFloat()) {
Mike Stump1eb44332009-09-09 15:08:12 +00001090 APFloat::cmpResult CR_r =
Daniel Dunbar4087e242009-01-29 06:43:41 +00001091 LHS.getComplexFloatReal().compare(RHS.getComplexFloatReal());
Mike Stump1eb44332009-09-09 15:08:12 +00001092 APFloat::cmpResult CR_i =
Daniel Dunbar4087e242009-01-29 06:43:41 +00001093 LHS.getComplexFloatImag().compare(RHS.getComplexFloatImag());
1094
Daniel Dunbar4087e242009-01-29 06:43:41 +00001095 if (E->getOpcode() == BinaryOperator::EQ)
Daniel Dunbar131eb432009-02-19 09:06:44 +00001096 return Success((CR_r == APFloat::cmpEqual &&
1097 CR_i == APFloat::cmpEqual), E);
1098 else {
1099 assert(E->getOpcode() == BinaryOperator::NE &&
1100 "Invalid complex comparison.");
Mike Stump1eb44332009-09-09 15:08:12 +00001101 return Success(((CR_r == APFloat::cmpGreaterThan ||
Daniel Dunbar131eb432009-02-19 09:06:44 +00001102 CR_r == APFloat::cmpLessThan) &&
Mike Stump1eb44332009-09-09 15:08:12 +00001103 (CR_i == APFloat::cmpGreaterThan ||
Daniel Dunbar131eb432009-02-19 09:06:44 +00001104 CR_i == APFloat::cmpLessThan)), E);
1105 }
Daniel Dunbar4087e242009-01-29 06:43:41 +00001106 } else {
Daniel Dunbar4087e242009-01-29 06:43:41 +00001107 if (E->getOpcode() == BinaryOperator::EQ)
Daniel Dunbar131eb432009-02-19 09:06:44 +00001108 return Success((LHS.getComplexIntReal() == RHS.getComplexIntReal() &&
1109 LHS.getComplexIntImag() == RHS.getComplexIntImag()), E);
1110 else {
1111 assert(E->getOpcode() == BinaryOperator::NE &&
1112 "Invalid compex comparison.");
1113 return Success((LHS.getComplexIntReal() != RHS.getComplexIntReal() ||
1114 LHS.getComplexIntImag() != RHS.getComplexIntImag()), E);
1115 }
Daniel Dunbar4087e242009-01-29 06:43:41 +00001116 }
1117 }
Mike Stump1eb44332009-09-09 15:08:12 +00001118
Anders Carlsson286f85e2008-11-16 07:17:21 +00001119 if (LHSTy->isRealFloatingType() &&
1120 RHSTy->isRealFloatingType()) {
1121 APFloat RHS(0.0), LHS(0.0);
Mike Stump1eb44332009-09-09 15:08:12 +00001122
Anders Carlsson286f85e2008-11-16 07:17:21 +00001123 if (!EvaluateFloat(E->getRHS(), RHS, Info))
1124 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00001125
Anders Carlsson286f85e2008-11-16 07:17:21 +00001126 if (!EvaluateFloat(E->getLHS(), LHS, Info))
1127 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00001128
Anders Carlsson286f85e2008-11-16 07:17:21 +00001129 APFloat::cmpResult CR = LHS.compare(RHS);
Anders Carlsson529569e2008-11-16 22:46:56 +00001130
Anders Carlsson286f85e2008-11-16 07:17:21 +00001131 switch (E->getOpcode()) {
1132 default:
1133 assert(0 && "Invalid binary operator!");
1134 case BinaryOperator::LT:
Daniel Dunbar131eb432009-02-19 09:06:44 +00001135 return Success(CR == APFloat::cmpLessThan, E);
Anders Carlsson286f85e2008-11-16 07:17:21 +00001136 case BinaryOperator::GT:
Daniel Dunbar131eb432009-02-19 09:06:44 +00001137 return Success(CR == APFloat::cmpGreaterThan, E);
Anders Carlsson286f85e2008-11-16 07:17:21 +00001138 case BinaryOperator::LE:
Daniel Dunbar131eb432009-02-19 09:06:44 +00001139 return Success(CR == APFloat::cmpLessThan || CR == APFloat::cmpEqual, E);
Anders Carlsson286f85e2008-11-16 07:17:21 +00001140 case BinaryOperator::GE:
Mike Stump1eb44332009-09-09 15:08:12 +00001141 return Success(CR == APFloat::cmpGreaterThan || CR == APFloat::cmpEqual,
Daniel Dunbar131eb432009-02-19 09:06:44 +00001142 E);
Anders Carlsson286f85e2008-11-16 07:17:21 +00001143 case BinaryOperator::EQ:
Daniel Dunbar131eb432009-02-19 09:06:44 +00001144 return Success(CR == APFloat::cmpEqual, E);
Anders Carlsson286f85e2008-11-16 07:17:21 +00001145 case BinaryOperator::NE:
Mike Stump1eb44332009-09-09 15:08:12 +00001146 return Success(CR == APFloat::cmpGreaterThan
Daniel Dunbar131eb432009-02-19 09:06:44 +00001147 || CR == APFloat::cmpLessThan, E);
Anders Carlsson286f85e2008-11-16 07:17:21 +00001148 }
Anders Carlsson286f85e2008-11-16 07:17:21 +00001149 }
Mike Stump1eb44332009-09-09 15:08:12 +00001150
Eli Friedmanad02d7d2009-04-28 19:17:36 +00001151 if (LHSTy->isPointerType() && RHSTy->isPointerType()) {
1152 if (E->getOpcode() == BinaryOperator::Sub || E->isEqualityOp()) {
Anders Carlsson3068d112008-11-16 19:01:22 +00001153 APValue LHSValue;
1154 if (!EvaluatePointer(E->getLHS(), LHSValue, Info))
1155 return false;
Eli Friedmana1f47c42009-03-23 04:38:34 +00001156
Anders Carlsson3068d112008-11-16 19:01:22 +00001157 APValue RHSValue;
1158 if (!EvaluatePointer(E->getRHS(), RHSValue, Info))
1159 return false;
Eli Friedmana1f47c42009-03-23 04:38:34 +00001160
Eli Friedman5bc86102009-06-14 02:17:33 +00001161 // Reject any bases from the normal codepath; we special-case comparisons
1162 // to null.
1163 if (LHSValue.getLValueBase()) {
1164 if (!E->isEqualityOp())
1165 return false;
Ken Dycka7305832010-01-15 12:37:54 +00001166 if (RHSValue.getLValueBase() || !RHSValue.getLValueOffset().isZero())
Eli Friedman5bc86102009-06-14 02:17:33 +00001167 return false;
1168 bool bres;
1169 if (!EvalPointerValueAsBool(LHSValue, bres))
1170 return false;
1171 return Success(bres ^ (E->getOpcode() == BinaryOperator::EQ), E);
1172 } else if (RHSValue.getLValueBase()) {
1173 if (!E->isEqualityOp())
1174 return false;
Ken Dycka7305832010-01-15 12:37:54 +00001175 if (LHSValue.getLValueBase() || !LHSValue.getLValueOffset().isZero())
Eli Friedman5bc86102009-06-14 02:17:33 +00001176 return false;
1177 bool bres;
1178 if (!EvalPointerValueAsBool(RHSValue, bres))
1179 return false;
1180 return Success(bres ^ (E->getOpcode() == BinaryOperator::EQ), E);
1181 }
Eli Friedmana1f47c42009-03-23 04:38:34 +00001182
Eli Friedmanad02d7d2009-04-28 19:17:36 +00001183 if (E->getOpcode() == BinaryOperator::Sub) {
1184 const QualType Type = E->getLHS()->getType();
Ted Kremenek6217b802009-07-29 21:53:49 +00001185 const QualType ElementType = Type->getAs<PointerType>()->getPointeeType();
Anders Carlsson3068d112008-11-16 19:01:22 +00001186
Ken Dycka7305832010-01-15 12:37:54 +00001187 CharUnits ElementSize = CharUnits::One();
Eli Friedmance1bca72009-06-04 20:23:20 +00001188 if (!ElementType->isVoidType() && !ElementType->isFunctionType())
Ken Dycka7305832010-01-15 12:37:54 +00001189 ElementSize = Info.Ctx.getTypeSizeInChars(ElementType);
Eli Friedmana1f47c42009-03-23 04:38:34 +00001190
Ken Dycka7305832010-01-15 12:37:54 +00001191 CharUnits Diff = LHSValue.getLValueOffset() -
1192 RHSValue.getLValueOffset();
1193 return Success(Diff / ElementSize, E);
Eli Friedmanad02d7d2009-04-28 19:17:36 +00001194 }
1195 bool Result;
1196 if (E->getOpcode() == BinaryOperator::EQ) {
1197 Result = LHSValue.getLValueOffset() == RHSValue.getLValueOffset();
Eli Friedman267c0ab2009-04-29 20:29:43 +00001198 } else {
Eli Friedmanad02d7d2009-04-28 19:17:36 +00001199 Result = LHSValue.getLValueOffset() != RHSValue.getLValueOffset();
1200 }
1201 return Success(Result, E);
Anders Carlsson3068d112008-11-16 19:01:22 +00001202 }
1203 }
Anders Carlsson286f85e2008-11-16 07:17:21 +00001204 if (!LHSTy->isIntegralType() ||
1205 !RHSTy->isIntegralType()) {
Eli Friedmana6afa762008-11-13 06:09:17 +00001206 // We can't continue from here for non-integral types, and they
1207 // could potentially confuse the following operations.
Eli Friedmana6afa762008-11-13 06:09:17 +00001208 return false;
1209 }
1210
Anders Carlssona25ae3d2008-07-08 14:35:21 +00001211 // The LHS of a constant expr is always evaluated and needed.
Daniel Dunbar30c37f42009-02-19 20:17:33 +00001212 if (!Visit(E->getLHS()))
Chris Lattner54176fd2008-07-12 00:14:42 +00001213 return false; // error in subexpression.
Eli Friedmand9f4bcd2008-07-27 05:46:18 +00001214
Eli Friedman42edd0d2009-03-24 01:14:50 +00001215 APValue RHSVal;
1216 if (!EvaluateIntegerOrLValue(E->getRHS(), RHSVal, Info))
Daniel Dunbar30c37f42009-02-19 20:17:33 +00001217 return false;
Eli Friedman42edd0d2009-03-24 01:14:50 +00001218
1219 // Handle cases like (unsigned long)&a + 4.
1220 if (E->isAdditiveOp() && Result.isLValue() && RHSVal.isInt()) {
Ken Dycka7305832010-01-15 12:37:54 +00001221 CharUnits Offset = Result.getLValueOffset();
1222 CharUnits AdditionalOffset = CharUnits::fromQuantity(
1223 RHSVal.getInt().getZExtValue());
Eli Friedman42edd0d2009-03-24 01:14:50 +00001224 if (E->getOpcode() == BinaryOperator::Add)
Ken Dycka7305832010-01-15 12:37:54 +00001225 Offset += AdditionalOffset;
Eli Friedman42edd0d2009-03-24 01:14:50 +00001226 else
Ken Dycka7305832010-01-15 12:37:54 +00001227 Offset -= AdditionalOffset;
1228 Result = APValue(Result.getLValueBase(), Offset);
Eli Friedman42edd0d2009-03-24 01:14:50 +00001229 return true;
1230 }
1231
1232 // Handle cases like 4 + (unsigned long)&a
1233 if (E->getOpcode() == BinaryOperator::Add &&
1234 RHSVal.isLValue() && Result.isInt()) {
Ken Dycka7305832010-01-15 12:37:54 +00001235 CharUnits Offset = RHSVal.getLValueOffset();
1236 Offset += CharUnits::fromQuantity(Result.getInt().getZExtValue());
1237 Result = APValue(RHSVal.getLValueBase(), Offset);
Eli Friedman42edd0d2009-03-24 01:14:50 +00001238 return true;
1239 }
1240
1241 // All the following cases expect both operands to be an integer
1242 if (!Result.isInt() || !RHSVal.isInt())
Chris Lattnerb542afe2008-07-11 19:10:17 +00001243 return false;
Eli Friedmana6afa762008-11-13 06:09:17 +00001244
Eli Friedman42edd0d2009-03-24 01:14:50 +00001245 APSInt& RHS = RHSVal.getInt();
1246
Anders Carlssona25ae3d2008-07-08 14:35:21 +00001247 switch (E->getOpcode()) {
Chris Lattner32fea9d2008-11-12 07:43:42 +00001248 default:
Anders Carlsson0e8acbb2008-11-30 18:37:00 +00001249 return Error(E->getOperatorLoc(), diag::note_invalid_subexpr_in_ice, E);
Daniel Dunbar30c37f42009-02-19 20:17:33 +00001250 case BinaryOperator::Mul: return Success(Result.getInt() * RHS, E);
1251 case BinaryOperator::Add: return Success(Result.getInt() + RHS, E);
1252 case BinaryOperator::Sub: return Success(Result.getInt() - RHS, E);
1253 case BinaryOperator::And: return Success(Result.getInt() & RHS, E);
1254 case BinaryOperator::Xor: return Success(Result.getInt() ^ RHS, E);
1255 case BinaryOperator::Or: return Success(Result.getInt() | RHS, E);
Chris Lattner75a48812008-07-11 22:15:16 +00001256 case BinaryOperator::Div:
Chris Lattner54176fd2008-07-12 00:14:42 +00001257 if (RHS == 0)
Anders Carlsson0e8acbb2008-11-30 18:37:00 +00001258 return Error(E->getOperatorLoc(), diag::note_expr_divide_by_zero, E);
Daniel Dunbar30c37f42009-02-19 20:17:33 +00001259 return Success(Result.getInt() / RHS, E);
Chris Lattner75a48812008-07-11 22:15:16 +00001260 case BinaryOperator::Rem:
Chris Lattner54176fd2008-07-12 00:14:42 +00001261 if (RHS == 0)
Anders Carlsson0e8acbb2008-11-30 18:37:00 +00001262 return Error(E->getOperatorLoc(), diag::note_expr_divide_by_zero, E);
Daniel Dunbar30c37f42009-02-19 20:17:33 +00001263 return Success(Result.getInt() % RHS, E);
Daniel Dunbar3f7d9952009-02-19 18:37:50 +00001264 case BinaryOperator::Shl: {
Chris Lattner54176fd2008-07-12 00:14:42 +00001265 // FIXME: Warn about out of range shift amounts!
Mike Stump1eb44332009-09-09 15:08:12 +00001266 unsigned SA =
Daniel Dunbar30c37f42009-02-19 20:17:33 +00001267 (unsigned) RHS.getLimitedValue(Result.getInt().getBitWidth()-1);
1268 return Success(Result.getInt() << SA, E);
Daniel Dunbar3f7d9952009-02-19 18:37:50 +00001269 }
1270 case BinaryOperator::Shr: {
Mike Stump1eb44332009-09-09 15:08:12 +00001271 unsigned SA =
Daniel Dunbar30c37f42009-02-19 20:17:33 +00001272 (unsigned) RHS.getLimitedValue(Result.getInt().getBitWidth()-1);
1273 return Success(Result.getInt() >> SA, E);
Daniel Dunbar3f7d9952009-02-19 18:37:50 +00001274 }
Mike Stump1eb44332009-09-09 15:08:12 +00001275
Daniel Dunbar30c37f42009-02-19 20:17:33 +00001276 case BinaryOperator::LT: return Success(Result.getInt() < RHS, E);
1277 case BinaryOperator::GT: return Success(Result.getInt() > RHS, E);
1278 case BinaryOperator::LE: return Success(Result.getInt() <= RHS, E);
1279 case BinaryOperator::GE: return Success(Result.getInt() >= RHS, E);
1280 case BinaryOperator::EQ: return Success(Result.getInt() == RHS, E);
1281 case BinaryOperator::NE: return Success(Result.getInt() != RHS, E);
Eli Friedmanb11e7782008-11-13 02:13:11 +00001282 }
Anders Carlssona25ae3d2008-07-08 14:35:21 +00001283}
1284
Nuno Lopesca7c2ea2008-11-16 19:28:31 +00001285bool IntExprEvaluator::VisitConditionalOperator(const ConditionalOperator *E) {
Nuno Lopesa25bd552008-11-16 22:06:39 +00001286 bool Cond;
1287 if (!HandleConversionToBool(E->getCond(), Cond, Info))
Nuno Lopesca7c2ea2008-11-16 19:28:31 +00001288 return false;
1289
Nuno Lopesa25bd552008-11-16 22:06:39 +00001290 return Visit(Cond ? E->getTrueExpr() : E->getFalseExpr());
Nuno Lopesca7c2ea2008-11-16 19:28:31 +00001291}
1292
Ken Dyck8b752f12010-01-27 17:10:57 +00001293CharUnits IntExprEvaluator::GetAlignOfType(QualType T) {
Sebastian Redl5d484e82009-11-23 17:18:46 +00001294 // C++ [expr.sizeof]p2: "When applied to a reference or a reference type,
1295 // the result is the size of the referenced type."
1296 // C++ [expr.alignof]p3: "When alignof is applied to a reference type, the
1297 // result shall be the alignment of the referenced type."
1298 if (const ReferenceType *Ref = T->getAs<ReferenceType>())
1299 T = Ref->getPointeeType();
1300
Chris Lattnere9feb472009-01-24 21:09:06 +00001301 // Get information about the alignment.
1302 unsigned CharSize = Info.Ctx.Target.getCharWidth();
Douglas Gregor18857642009-04-30 17:32:17 +00001303
Eli Friedman2be58612009-05-30 21:09:44 +00001304 // __alignof is defined to return the preferred alignment.
Ken Dyck8b752f12010-01-27 17:10:57 +00001305 return CharUnits::fromQuantity(
1306 Info.Ctx.getPreferredTypeAlign(T.getTypePtr()) / CharSize);
Chris Lattnere9feb472009-01-24 21:09:06 +00001307}
1308
Ken Dyck8b752f12010-01-27 17:10:57 +00001309CharUnits IntExprEvaluator::GetAlignOfExpr(const Expr *E) {
Chris Lattneraf707ab2009-01-24 21:53:27 +00001310 E = E->IgnoreParens();
1311
1312 // alignof decl is always accepted, even if it doesn't make sense: we default
Mike Stump1eb44332009-09-09 15:08:12 +00001313 // to 1 in those cases.
Chris Lattneraf707ab2009-01-24 21:53:27 +00001314 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E))
Ken Dyck8b752f12010-01-27 17:10:57 +00001315 return Info.Ctx.getDeclAlign(DRE->getDecl(),
1316 /*RefAsPointee*/true);
Eli Friedmana1f47c42009-03-23 04:38:34 +00001317
Chris Lattneraf707ab2009-01-24 21:53:27 +00001318 if (const MemberExpr *ME = dyn_cast<MemberExpr>(E))
Ken Dyck8b752f12010-01-27 17:10:57 +00001319 return Info.Ctx.getDeclAlign(ME->getMemberDecl(),
1320 /*RefAsPointee*/true);
Chris Lattneraf707ab2009-01-24 21:53:27 +00001321
Chris Lattnere9feb472009-01-24 21:09:06 +00001322 return GetAlignOfType(E->getType());
1323}
1324
1325
Sebastian Redl05189992008-11-11 17:56:53 +00001326/// VisitSizeAlignOfExpr - Evaluate a sizeof or alignof with a result as the
1327/// expression's type.
1328bool IntExprEvaluator::VisitSizeOfAlignOfExpr(const SizeOfAlignOfExpr *E) {
Chris Lattnere9feb472009-01-24 21:09:06 +00001329 // Handle alignof separately.
1330 if (!E->isSizeOf()) {
1331 if (E->isArgumentType())
Ken Dyck8b752f12010-01-27 17:10:57 +00001332 return Success(GetAlignOfType(E->getArgumentType()).getQuantity(), E);
Chris Lattnere9feb472009-01-24 21:09:06 +00001333 else
Ken Dyck8b752f12010-01-27 17:10:57 +00001334 return Success(GetAlignOfExpr(E->getArgumentExpr()).getQuantity(), E);
Chris Lattnere9feb472009-01-24 21:09:06 +00001335 }
Eli Friedmana1f47c42009-03-23 04:38:34 +00001336
Sebastian Redl05189992008-11-11 17:56:53 +00001337 QualType SrcTy = E->getTypeOfArgument();
Sebastian Redl5d484e82009-11-23 17:18:46 +00001338 // C++ [expr.sizeof]p2: "When applied to a reference or a reference type,
1339 // the result is the size of the referenced type."
1340 // C++ [expr.alignof]p3: "When alignof is applied to a reference type, the
1341 // result shall be the alignment of the referenced type."
1342 if (const ReferenceType *Ref = SrcTy->getAs<ReferenceType>())
1343 SrcTy = Ref->getPointeeType();
Sebastian Redl05189992008-11-11 17:56:53 +00001344
Daniel Dunbar131eb432009-02-19 09:06:44 +00001345 // sizeof(void), __alignof__(void), sizeof(function) = 1 as a gcc
1346 // extension.
1347 if (SrcTy->isVoidType() || SrcTy->isFunctionType())
1348 return Success(1, E);
Eli Friedmana1f47c42009-03-23 04:38:34 +00001349
Chris Lattnerfcee0012008-07-11 21:24:13 +00001350 // sizeof(vla) is not a constantexpr: C99 6.5.3.4p2.
Chris Lattnere9feb472009-01-24 21:09:06 +00001351 if (!SrcTy->isConstantSizeType())
Chris Lattnerfcee0012008-07-11 21:24:13 +00001352 return false;
Eli Friedmanf2da9df2009-01-24 22:19:05 +00001353
Chris Lattnere9feb472009-01-24 21:09:06 +00001354 // Get information about the size.
Ken Dyck199c3d62010-01-11 17:06:35 +00001355 return Success(Info.Ctx.getTypeSizeInChars(SrcTy).getQuantity(), E);
Chris Lattnerfcee0012008-07-11 21:24:13 +00001356}
1357
Chris Lattnerb542afe2008-07-11 19:10:17 +00001358bool IntExprEvaluator::VisitUnaryOperator(const UnaryOperator *E) {
Chris Lattner4c4867e2008-07-12 00:38:25 +00001359 // Special case unary operators that do not need their subexpression
1360 // evaluated. offsetof/sizeof/alignof are all special.
Eli Friedman35183ac2009-02-27 06:44:11 +00001361 if (E->isOffsetOfOp()) {
1362 // The AST for offsetof is defined in such a way that we can just
1363 // directly Evaluate it as an l-value.
1364 APValue LV;
1365 if (!EvaluateLValue(E->getSubExpr(), LV, Info))
1366 return false;
1367 if (LV.getLValueBase())
1368 return false;
Ken Dycka7305832010-01-15 12:37:54 +00001369 return Success(LV.getLValueOffset().getQuantity(), E);
Eli Friedman35183ac2009-02-27 06:44:11 +00001370 }
Eli Friedmana6afa762008-11-13 06:09:17 +00001371
1372 if (E->getOpcode() == UnaryOperator::LNot) {
1373 // LNot's operand isn't necessarily an integer, so we handle it specially.
1374 bool bres;
1375 if (!HandleConversionToBool(E->getSubExpr(), bres, Info))
1376 return false;
Daniel Dunbar131eb432009-02-19 09:06:44 +00001377 return Success(!bres, E);
Eli Friedmana6afa762008-11-13 06:09:17 +00001378 }
1379
Daniel Dunbar4fff4812009-02-21 18:14:20 +00001380 // Only handle integral operations...
1381 if (!E->getSubExpr()->getType()->isIntegralType())
1382 return false;
1383
Chris Lattner87eae5e2008-07-11 22:52:41 +00001384 // Get the operand value into 'Result'.
1385 if (!Visit(E->getSubExpr()))
Chris Lattner75a48812008-07-11 22:15:16 +00001386 return false;
Anders Carlssona25ae3d2008-07-08 14:35:21 +00001387
Chris Lattner75a48812008-07-11 22:15:16 +00001388 switch (E->getOpcode()) {
Chris Lattner4c4867e2008-07-12 00:38:25 +00001389 default:
Chris Lattner75a48812008-07-11 22:15:16 +00001390 // Address, indirect, pre/post inc/dec, etc are not valid constant exprs.
1391 // See C99 6.6p3.
Anders Carlsson0e8acbb2008-11-30 18:37:00 +00001392 return Error(E->getOperatorLoc(), diag::note_invalid_subexpr_in_ice, E);
Chris Lattner75a48812008-07-11 22:15:16 +00001393 case UnaryOperator::Extension:
Chris Lattner4c4867e2008-07-12 00:38:25 +00001394 // FIXME: Should extension allow i-c-e extension expressions in its scope?
1395 // If so, we could clear the diagnostic ID.
Daniel Dunbar3f7d9952009-02-19 18:37:50 +00001396 return true;
Chris Lattner75a48812008-07-11 22:15:16 +00001397 case UnaryOperator::Plus:
Mike Stump1eb44332009-09-09 15:08:12 +00001398 // The result is always just the subexpr.
Daniel Dunbar3f7d9952009-02-19 18:37:50 +00001399 return true;
Chris Lattner75a48812008-07-11 22:15:16 +00001400 case UnaryOperator::Minus:
Daniel Dunbar30c37f42009-02-19 20:17:33 +00001401 if (!Result.isInt()) return false;
1402 return Success(-Result.getInt(), E);
Chris Lattner75a48812008-07-11 22:15:16 +00001403 case UnaryOperator::Not:
Daniel Dunbar30c37f42009-02-19 20:17:33 +00001404 if (!Result.isInt()) return false;
1405 return Success(~Result.getInt(), E);
Anders Carlssona25ae3d2008-07-08 14:35:21 +00001406 }
Anders Carlssona25ae3d2008-07-08 14:35:21 +00001407}
Mike Stump1eb44332009-09-09 15:08:12 +00001408
Chris Lattner732b2232008-07-12 01:15:53 +00001409/// HandleCast - This is used to evaluate implicit or explicit casts where the
1410/// result type is integer.
Daniel Dunbara2cfd342009-01-29 06:16:07 +00001411bool IntExprEvaluator::VisitCastExpr(CastExpr *E) {
Anders Carlsson82206e22008-11-30 18:14:57 +00001412 Expr *SubExpr = E->getSubExpr();
1413 QualType DestType = E->getType();
Daniel Dunbarb92dac82009-02-19 22:16:29 +00001414 QualType SrcType = SubExpr->getType();
Anders Carlsson82206e22008-11-30 18:14:57 +00001415
Eli Friedman4efaa272008-11-12 09:44:48 +00001416 if (DestType->isBooleanType()) {
1417 bool BoolResult;
1418 if (!HandleConversionToBool(SubExpr, BoolResult, Info))
1419 return false;
Daniel Dunbar131eb432009-02-19 09:06:44 +00001420 return Success(BoolResult, E);
Eli Friedman4efaa272008-11-12 09:44:48 +00001421 }
1422
Anders Carlssona25ae3d2008-07-08 14:35:21 +00001423 // Handle simple integer->integer casts.
Daniel Dunbarb92dac82009-02-19 22:16:29 +00001424 if (SrcType->isIntegralType()) {
Chris Lattner732b2232008-07-12 01:15:53 +00001425 if (!Visit(SubExpr))
Chris Lattnerb542afe2008-07-11 19:10:17 +00001426 return false;
Daniel Dunbara2cfd342009-01-29 06:16:07 +00001427
Eli Friedmanbe265702009-02-20 01:15:07 +00001428 if (!Result.isInt()) {
1429 // Only allow casts of lvalues if they are lossless.
1430 return Info.Ctx.getTypeSize(DestType) == Info.Ctx.getTypeSize(SrcType);
1431 }
Daniel Dunbar30c37f42009-02-19 20:17:33 +00001432
Daniel Dunbardd211642009-02-19 22:24:01 +00001433 return Success(HandleIntToIntCast(DestType, SrcType,
Daniel Dunbar30c37f42009-02-19 20:17:33 +00001434 Result.getInt(), Info.Ctx), E);
Chris Lattner732b2232008-07-12 01:15:53 +00001435 }
Mike Stump1eb44332009-09-09 15:08:12 +00001436
Chris Lattner732b2232008-07-12 01:15:53 +00001437 // FIXME: Clean this up!
Daniel Dunbarb92dac82009-02-19 22:16:29 +00001438 if (SrcType->isPointerType()) {
Anders Carlssona25ae3d2008-07-08 14:35:21 +00001439 APValue LV;
Chris Lattner87eae5e2008-07-11 22:52:41 +00001440 if (!EvaluatePointer(SubExpr, LV, Info))
Chris Lattnerb542afe2008-07-11 19:10:17 +00001441 return false;
Eli Friedman4efaa272008-11-12 09:44:48 +00001442
Daniel Dunbardd211642009-02-19 22:24:01 +00001443 if (LV.getLValueBase()) {
1444 // Only allow based lvalue casts if they are lossless.
1445 if (Info.Ctx.getTypeSize(DestType) != Info.Ctx.getTypeSize(SrcType))
1446 return false;
Eli Friedman4efaa272008-11-12 09:44:48 +00001447
Daniel Dunbardd211642009-02-19 22:24:01 +00001448 Result = LV;
1449 return true;
1450 }
1451
Ken Dycka7305832010-01-15 12:37:54 +00001452 APSInt AsInt = Info.Ctx.MakeIntValue(LV.getLValueOffset().getQuantity(),
1453 SrcType);
Daniel Dunbardd211642009-02-19 22:24:01 +00001454 return Success(HandleIntToIntCast(DestType, SrcType, AsInt, Info.Ctx), E);
Anders Carlsson2bad1682008-07-08 14:30:00 +00001455 }
Eli Friedman4efaa272008-11-12 09:44:48 +00001456
Eli Friedmanbe265702009-02-20 01:15:07 +00001457 if (SrcType->isArrayType() || SrcType->isFunctionType()) {
1458 // This handles double-conversion cases, where there's both
1459 // an l-value promotion and an implicit conversion to int.
1460 APValue LV;
1461 if (!EvaluateLValue(SubExpr, LV, Info))
1462 return false;
1463
1464 if (Info.Ctx.getTypeSize(DestType) != Info.Ctx.getTypeSize(Info.Ctx.VoidPtrTy))
1465 return false;
1466
1467 Result = LV;
1468 return true;
1469 }
1470
Eli Friedman1725f682009-04-22 19:23:09 +00001471 if (SrcType->isAnyComplexType()) {
1472 APValue C;
1473 if (!EvaluateComplex(SubExpr, C, Info))
1474 return false;
1475 if (C.isComplexFloat())
1476 return Success(HandleFloatToIntCast(DestType, SrcType,
1477 C.getComplexFloatReal(), Info.Ctx),
1478 E);
1479 else
1480 return Success(HandleIntToIntCast(DestType, SrcType,
1481 C.getComplexIntReal(), Info.Ctx), E);
1482 }
Eli Friedman2217c872009-02-22 11:46:18 +00001483 // FIXME: Handle vectors
1484
Daniel Dunbarb92dac82009-02-19 22:16:29 +00001485 if (!SrcType->isRealFloatingType())
Anders Carlsson0e8acbb2008-11-30 18:37:00 +00001486 return Error(E->getExprLoc(), diag::note_invalid_subexpr_in_ice, E);
Chris Lattner732b2232008-07-12 01:15:53 +00001487
Eli Friedmand8bfe7f2008-08-22 00:06:13 +00001488 APFloat F(0.0);
1489 if (!EvaluateFloat(SubExpr, F, Info))
Anders Carlsson0e8acbb2008-11-30 18:37:00 +00001490 return Error(E->getExprLoc(), diag::note_invalid_subexpr_in_ice, E);
Mike Stump1eb44332009-09-09 15:08:12 +00001491
Daniel Dunbarb92dac82009-02-19 22:16:29 +00001492 return Success(HandleFloatToIntCast(DestType, SrcType, F, Info.Ctx), E);
Anders Carlssona25ae3d2008-07-08 14:35:21 +00001493}
Anders Carlsson2bad1682008-07-08 14:30:00 +00001494
Eli Friedman722c7172009-02-28 03:59:05 +00001495bool IntExprEvaluator::VisitUnaryReal(const UnaryOperator *E) {
1496 if (E->getSubExpr()->getType()->isAnyComplexType()) {
1497 APValue LV;
1498 if (!EvaluateComplex(E->getSubExpr(), LV, Info) || !LV.isComplexInt())
1499 return Error(E->getExprLoc(), diag::note_invalid_subexpr_in_ice, E);
1500 return Success(LV.getComplexIntReal(), E);
1501 }
1502
1503 return Visit(E->getSubExpr());
1504}
1505
Eli Friedman664a1042009-02-27 04:45:43 +00001506bool IntExprEvaluator::VisitUnaryImag(const UnaryOperator *E) {
Eli Friedman722c7172009-02-28 03:59:05 +00001507 if (E->getSubExpr()->getType()->isComplexIntegerType()) {
1508 APValue LV;
1509 if (!EvaluateComplex(E->getSubExpr(), LV, Info) || !LV.isComplexInt())
1510 return Error(E->getExprLoc(), diag::note_invalid_subexpr_in_ice, E);
1511 return Success(LV.getComplexIntImag(), E);
1512 }
1513
Eli Friedman664a1042009-02-27 04:45:43 +00001514 if (!E->getSubExpr()->isEvaluatable(Info.Ctx))
1515 Info.EvalResult.HasSideEffects = true;
1516 return Success(0, E);
1517}
1518
Chris Lattnerf5eeb052008-07-11 18:11:29 +00001519//===----------------------------------------------------------------------===//
Eli Friedmand8bfe7f2008-08-22 00:06:13 +00001520// Float Evaluation
1521//===----------------------------------------------------------------------===//
1522
1523namespace {
Benjamin Kramer770b4a82009-11-28 19:03:38 +00001524class FloatExprEvaluator
Eli Friedmand8bfe7f2008-08-22 00:06:13 +00001525 : public StmtVisitor<FloatExprEvaluator, bool> {
1526 EvalInfo &Info;
1527 APFloat &Result;
1528public:
1529 FloatExprEvaluator(EvalInfo &info, APFloat &result)
1530 : Info(info), Result(result) {}
1531
1532 bool VisitStmt(Stmt *S) {
1533 return false;
1534 }
1535
1536 bool VisitParenExpr(ParenExpr *E) { return Visit(E->getSubExpr()); }
Chris Lattner019f4e82008-10-06 05:28:25 +00001537 bool VisitCallExpr(const CallExpr *E);
Eli Friedmand8bfe7f2008-08-22 00:06:13 +00001538
Daniel Dunbar5db4b3f2008-10-16 03:51:50 +00001539 bool VisitUnaryOperator(const UnaryOperator *E);
Eli Friedmand8bfe7f2008-08-22 00:06:13 +00001540 bool VisitBinaryOperator(const BinaryOperator *E);
1541 bool VisitFloatingLiteral(const FloatingLiteral *E);
Eli Friedman4efaa272008-11-12 09:44:48 +00001542 bool VisitCastExpr(CastExpr *E);
1543 bool VisitCXXZeroInitValueExpr(CXXZeroInitValueExpr *E);
Eli Friedman67f85fc2009-12-04 02:12:53 +00001544 bool VisitConditionalOperator(ConditionalOperator *E);
Eli Friedman2217c872009-02-22 11:46:18 +00001545
Eli Friedmanba98d6b2009-03-23 04:56:01 +00001546 bool VisitChooseExpr(const ChooseExpr *E)
1547 { return Visit(E->getChosenSubExpr(Info.Ctx)); }
1548 bool VisitUnaryExtension(const UnaryOperator *E)
1549 { return Visit(E->getSubExpr()); }
1550
1551 // FIXME: Missing: __real__/__imag__, array subscript of vector,
Eli Friedman67f85fc2009-12-04 02:12:53 +00001552 // member of vector, ImplicitValueInitExpr
Eli Friedmand8bfe7f2008-08-22 00:06:13 +00001553};
1554} // end anonymous namespace
1555
1556static bool EvaluateFloat(const Expr* E, APFloat& Result, EvalInfo &Info) {
1557 return FloatExprEvaluator(Info, Result).Visit(const_cast<Expr*>(E));
1558}
1559
Chris Lattner019f4e82008-10-06 05:28:25 +00001560bool FloatExprEvaluator::VisitCallExpr(const CallExpr *E) {
Douglas Gregor3c385e52009-02-14 18:57:46 +00001561 switch (E->isBuiltinCall(Info.Ctx)) {
Chris Lattner34a74ab2008-10-06 05:53:16 +00001562 default: return false;
Chris Lattner019f4e82008-10-06 05:28:25 +00001563 case Builtin::BI__builtin_huge_val:
1564 case Builtin::BI__builtin_huge_valf:
1565 case Builtin::BI__builtin_huge_vall:
1566 case Builtin::BI__builtin_inf:
1567 case Builtin::BI__builtin_inff:
Daniel Dunbar7cbed032008-10-14 05:41:12 +00001568 case Builtin::BI__builtin_infl: {
1569 const llvm::fltSemantics &Sem =
1570 Info.Ctx.getFloatTypeSemantics(E->getType());
Chris Lattner34a74ab2008-10-06 05:53:16 +00001571 Result = llvm::APFloat::getInf(Sem);
1572 return true;
Daniel Dunbar7cbed032008-10-14 05:41:12 +00001573 }
Mike Stump1eb44332009-09-09 15:08:12 +00001574
Chris Lattner9e621712008-10-06 06:31:58 +00001575 case Builtin::BI__builtin_nan:
1576 case Builtin::BI__builtin_nanf:
1577 case Builtin::BI__builtin_nanl:
Mike Stump4572bab2009-05-30 03:56:50 +00001578 // If this is __builtin_nan() turn this into a nan, otherwise we
Chris Lattner9e621712008-10-06 06:31:58 +00001579 // can't constant fold it.
Mike Stump1eb44332009-09-09 15:08:12 +00001580 if (const StringLiteral *S =
Chris Lattner9e621712008-10-06 06:31:58 +00001581 dyn_cast<StringLiteral>(E->getArg(0)->IgnoreParenCasts())) {
Mike Stump4572bab2009-05-30 03:56:50 +00001582 if (!S->isWide()) {
Daniel Dunbar7cbed032008-10-14 05:41:12 +00001583 const llvm::fltSemantics &Sem =
1584 Info.Ctx.getFloatTypeSemantics(E->getType());
Benjamin Kramer33035802009-12-11 13:26:32 +00001585 unsigned Type = 0;
1586 if (!S->getString().empty() && S->getString().getAsInteger(0, Type))
Mike Stump4572bab2009-05-30 03:56:50 +00001587 return false;
Benjamin Kramer33035802009-12-11 13:26:32 +00001588 Result = llvm::APFloat::getNaN(Sem, false, Type);
Chris Lattner9e621712008-10-06 06:31:58 +00001589 return true;
1590 }
1591 }
1592 return false;
Daniel Dunbar5db4b3f2008-10-16 03:51:50 +00001593
1594 case Builtin::BI__builtin_fabs:
1595 case Builtin::BI__builtin_fabsf:
1596 case Builtin::BI__builtin_fabsl:
1597 if (!EvaluateFloat(E->getArg(0), Result, Info))
1598 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00001599
Daniel Dunbar5db4b3f2008-10-16 03:51:50 +00001600 if (Result.isNegative())
1601 Result.changeSign();
1602 return true;
1603
Mike Stump1eb44332009-09-09 15:08:12 +00001604 case Builtin::BI__builtin_copysign:
1605 case Builtin::BI__builtin_copysignf:
Daniel Dunbar5db4b3f2008-10-16 03:51:50 +00001606 case Builtin::BI__builtin_copysignl: {
1607 APFloat RHS(0.);
1608 if (!EvaluateFloat(E->getArg(0), Result, Info) ||
1609 !EvaluateFloat(E->getArg(1), RHS, Info))
1610 return false;
1611 Result.copySign(RHS);
1612 return true;
1613 }
Chris Lattner019f4e82008-10-06 05:28:25 +00001614 }
1615}
1616
Daniel Dunbar5db4b3f2008-10-16 03:51:50 +00001617bool FloatExprEvaluator::VisitUnaryOperator(const UnaryOperator *E) {
Nuno Lopesa468d342008-11-19 17:44:31 +00001618 if (E->getOpcode() == UnaryOperator::Deref)
1619 return false;
1620
Daniel Dunbar5db4b3f2008-10-16 03:51:50 +00001621 if (!EvaluateFloat(E->getSubExpr(), Result, Info))
1622 return false;
1623
1624 switch (E->getOpcode()) {
1625 default: return false;
Mike Stump1eb44332009-09-09 15:08:12 +00001626 case UnaryOperator::Plus:
Daniel Dunbar5db4b3f2008-10-16 03:51:50 +00001627 return true;
1628 case UnaryOperator::Minus:
1629 Result.changeSign();
1630 return true;
1631 }
1632}
Chris Lattner019f4e82008-10-06 05:28:25 +00001633
Eli Friedmand8bfe7f2008-08-22 00:06:13 +00001634bool FloatExprEvaluator::VisitBinaryOperator(const BinaryOperator *E) {
Eli Friedman7f92f032009-11-16 04:25:37 +00001635 if (E->getOpcode() == BinaryOperator::Comma) {
1636 if (!EvaluateFloat(E->getRHS(), Result, Info))
1637 return false;
1638
1639 // If we can't evaluate the LHS, it might have side effects;
1640 // conservatively mark it.
1641 if (!E->getLHS()->isEvaluatable(Info.Ctx))
1642 Info.EvalResult.HasSideEffects = true;
1643
1644 return true;
1645 }
1646
Eli Friedmand8bfe7f2008-08-22 00:06:13 +00001647 // FIXME: Diagnostics? I really don't understand how the warnings
1648 // and errors are supposed to work.
Daniel Dunbar5db4b3f2008-10-16 03:51:50 +00001649 APFloat RHS(0.0);
Eli Friedmand8bfe7f2008-08-22 00:06:13 +00001650 if (!EvaluateFloat(E->getLHS(), Result, Info))
1651 return false;
1652 if (!EvaluateFloat(E->getRHS(), RHS, Info))
1653 return false;
1654
1655 switch (E->getOpcode()) {
1656 default: return false;
1657 case BinaryOperator::Mul:
1658 Result.multiply(RHS, APFloat::rmNearestTiesToEven);
1659 return true;
1660 case BinaryOperator::Add:
1661 Result.add(RHS, APFloat::rmNearestTiesToEven);
1662 return true;
1663 case BinaryOperator::Sub:
1664 Result.subtract(RHS, APFloat::rmNearestTiesToEven);
1665 return true;
1666 case BinaryOperator::Div:
1667 Result.divide(RHS, APFloat::rmNearestTiesToEven);
1668 return true;
Eli Friedmand8bfe7f2008-08-22 00:06:13 +00001669 }
1670}
1671
1672bool FloatExprEvaluator::VisitFloatingLiteral(const FloatingLiteral *E) {
1673 Result = E->getValue();
1674 return true;
1675}
1676
Eli Friedman4efaa272008-11-12 09:44:48 +00001677bool FloatExprEvaluator::VisitCastExpr(CastExpr *E) {
1678 Expr* SubExpr = E->getSubExpr();
Mike Stump1eb44332009-09-09 15:08:12 +00001679
Eli Friedman4efaa272008-11-12 09:44:48 +00001680 if (SubExpr->getType()->isIntegralType()) {
1681 APSInt IntResult;
Daniel Dunbar3f7d9952009-02-19 18:37:50 +00001682 if (!EvaluateInteger(SubExpr, IntResult, Info))
Eli Friedman4efaa272008-11-12 09:44:48 +00001683 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00001684 Result = HandleIntToFloatCast(E->getType(), SubExpr->getType(),
Daniel Dunbara2cfd342009-01-29 06:16:07 +00001685 IntResult, Info.Ctx);
Eli Friedman4efaa272008-11-12 09:44:48 +00001686 return true;
1687 }
1688 if (SubExpr->getType()->isRealFloatingType()) {
1689 if (!Visit(SubExpr))
1690 return false;
Daniel Dunbara2cfd342009-01-29 06:16:07 +00001691 Result = HandleFloatToFloatCast(E->getType(), SubExpr->getType(),
1692 Result, Info.Ctx);
Eli Friedman4efaa272008-11-12 09:44:48 +00001693 return true;
1694 }
Eli Friedman2217c872009-02-22 11:46:18 +00001695 // FIXME: Handle complex types
Eli Friedman4efaa272008-11-12 09:44:48 +00001696
1697 return false;
1698}
1699
1700bool FloatExprEvaluator::VisitCXXZeroInitValueExpr(CXXZeroInitValueExpr *E) {
1701 Result = APFloat::getZero(Info.Ctx.getFloatTypeSemantics(E->getType()));
1702 return true;
1703}
1704
Eli Friedman67f85fc2009-12-04 02:12:53 +00001705bool FloatExprEvaluator::VisitConditionalOperator(ConditionalOperator *E) {
1706 bool Cond;
1707 if (!HandleConversionToBool(E->getCond(), Cond, Info))
1708 return false;
1709
1710 return Visit(Cond ? E->getTrueExpr() : E->getFalseExpr());
1711}
1712
Eli Friedmand8bfe7f2008-08-22 00:06:13 +00001713//===----------------------------------------------------------------------===//
Daniel Dunbara5fd07b2009-01-28 22:24:07 +00001714// Complex Evaluation (for float and integer)
Anders Carlsson9ad16ae2008-11-16 20:27:53 +00001715//===----------------------------------------------------------------------===//
1716
1717namespace {
Benjamin Kramer770b4a82009-11-28 19:03:38 +00001718class ComplexExprEvaluator
Daniel Dunbara5fd07b2009-01-28 22:24:07 +00001719 : public StmtVisitor<ComplexExprEvaluator, APValue> {
Anders Carlsson9ad16ae2008-11-16 20:27:53 +00001720 EvalInfo &Info;
Mike Stump1eb44332009-09-09 15:08:12 +00001721
Anders Carlsson9ad16ae2008-11-16 20:27:53 +00001722public:
Daniel Dunbara5fd07b2009-01-28 22:24:07 +00001723 ComplexExprEvaluator(EvalInfo &info) : Info(info) {}
Mike Stump1eb44332009-09-09 15:08:12 +00001724
Anders Carlsson9ad16ae2008-11-16 20:27:53 +00001725 //===--------------------------------------------------------------------===//
1726 // Visitor Methods
1727 //===--------------------------------------------------------------------===//
1728
1729 APValue VisitStmt(Stmt *S) {
Anders Carlsson9ad16ae2008-11-16 20:27:53 +00001730 return APValue();
1731 }
Mike Stump1eb44332009-09-09 15:08:12 +00001732
Anders Carlsson9ad16ae2008-11-16 20:27:53 +00001733 APValue VisitParenExpr(ParenExpr *E) { return Visit(E->getSubExpr()); }
1734
1735 APValue VisitImaginaryLiteral(ImaginaryLiteral *E) {
Daniel Dunbara5fd07b2009-01-28 22:24:07 +00001736 Expr* SubExpr = E->getSubExpr();
1737
1738 if (SubExpr->getType()->isRealFloatingType()) {
1739 APFloat Result(0.0);
1740
1741 if (!EvaluateFloat(SubExpr, Result, Info))
1742 return APValue();
Mike Stump1eb44332009-09-09 15:08:12 +00001743
1744 return APValue(APFloat(Result.getSemantics(), APFloat::fcZero, false),
Daniel Dunbara5fd07b2009-01-28 22:24:07 +00001745 Result);
1746 } else {
Mike Stump1eb44332009-09-09 15:08:12 +00001747 assert(SubExpr->getType()->isIntegerType() &&
Daniel Dunbara5fd07b2009-01-28 22:24:07 +00001748 "Unexpected imaginary literal.");
1749
1750 llvm::APSInt Result;
1751 if (!EvaluateInteger(SubExpr, Result, Info))
1752 return APValue();
Mike Stump1eb44332009-09-09 15:08:12 +00001753
Daniel Dunbara5fd07b2009-01-28 22:24:07 +00001754 llvm::APSInt Zero(Result.getBitWidth(), !Result.isSigned());
1755 Zero = 0;
1756 return APValue(Zero, Result);
1757 }
Anders Carlsson9ad16ae2008-11-16 20:27:53 +00001758 }
1759
Anders Carlssonccc3fce2008-11-16 21:51:21 +00001760 APValue VisitCastExpr(CastExpr *E) {
1761 Expr* SubExpr = E->getSubExpr();
John McCall183700f2009-09-21 23:43:11 +00001762 QualType EltType = E->getType()->getAs<ComplexType>()->getElementType();
Daniel Dunbara2cfd342009-01-29 06:16:07 +00001763 QualType SubType = SubExpr->getType();
Anders Carlssonccc3fce2008-11-16 21:51:21 +00001764
Daniel Dunbara2cfd342009-01-29 06:16:07 +00001765 if (SubType->isRealFloatingType()) {
Anders Carlssonccc3fce2008-11-16 21:51:21 +00001766 APFloat Result(0.0);
Eli Friedman1725f682009-04-22 19:23:09 +00001767
Anders Carlssonccc3fce2008-11-16 21:51:21 +00001768 if (!EvaluateFloat(SubExpr, Result, Info))
1769 return APValue();
Eli Friedman1725f682009-04-22 19:23:09 +00001770
1771 if (EltType->isRealFloatingType()) {
1772 Result = HandleFloatToFloatCast(EltType, SubType, Result, Info.Ctx);
Mike Stump1eb44332009-09-09 15:08:12 +00001773 return APValue(Result,
Eli Friedman1725f682009-04-22 19:23:09 +00001774 APFloat(Result.getSemantics(), APFloat::fcZero, false));
1775 } else {
1776 llvm::APSInt IResult;
1777 IResult = HandleFloatToIntCast(EltType, SubType, Result, Info.Ctx);
1778 llvm::APSInt Zero(IResult.getBitWidth(), !IResult.isSigned());
1779 Zero = 0;
1780 return APValue(IResult, Zero);
1781 }
Daniel Dunbara2cfd342009-01-29 06:16:07 +00001782 } else if (SubType->isIntegerType()) {
Daniel Dunbara5fd07b2009-01-28 22:24:07 +00001783 APSInt Result;
Eli Friedman1725f682009-04-22 19:23:09 +00001784
Daniel Dunbara5fd07b2009-01-28 22:24:07 +00001785 if (!EvaluateInteger(SubExpr, Result, Info))
1786 return APValue();
Daniel Dunbara2cfd342009-01-29 06:16:07 +00001787
Eli Friedman1725f682009-04-22 19:23:09 +00001788 if (EltType->isRealFloatingType()) {
1789 APFloat FResult =
1790 HandleIntToFloatCast(EltType, SubType, Result, Info.Ctx);
Mike Stump1eb44332009-09-09 15:08:12 +00001791 return APValue(FResult,
Eli Friedman1725f682009-04-22 19:23:09 +00001792 APFloat(FResult.getSemantics(), APFloat::fcZero, false));
1793 } else {
1794 Result = HandleIntToIntCast(EltType, SubType, Result, Info.Ctx);
1795 llvm::APSInt Zero(Result.getBitWidth(), !Result.isSigned());
1796 Zero = 0;
1797 return APValue(Result, Zero);
1798 }
John McCall183700f2009-09-21 23:43:11 +00001799 } else if (const ComplexType *CT = SubType->getAs<ComplexType>()) {
Daniel Dunbara2cfd342009-01-29 06:16:07 +00001800 APValue Src;
Eli Friedman1725f682009-04-22 19:23:09 +00001801
Daniel Dunbara2cfd342009-01-29 06:16:07 +00001802 if (!EvaluateComplex(SubExpr, Src, Info))
1803 return APValue();
1804
1805 QualType SrcType = CT->getElementType();
1806
1807 if (Src.isComplexFloat()) {
1808 if (EltType->isRealFloatingType()) {
Mike Stump1eb44332009-09-09 15:08:12 +00001809 return APValue(HandleFloatToFloatCast(EltType, SrcType,
Daniel Dunbara2cfd342009-01-29 06:16:07 +00001810 Src.getComplexFloatReal(),
1811 Info.Ctx),
Mike Stump1eb44332009-09-09 15:08:12 +00001812 HandleFloatToFloatCast(EltType, SrcType,
Daniel Dunbara2cfd342009-01-29 06:16:07 +00001813 Src.getComplexFloatImag(),
1814 Info.Ctx));
1815 } else {
1816 return APValue(HandleFloatToIntCast(EltType, SrcType,
1817 Src.getComplexFloatReal(),
1818 Info.Ctx),
Mike Stump1eb44332009-09-09 15:08:12 +00001819 HandleFloatToIntCast(EltType, SrcType,
Daniel Dunbara2cfd342009-01-29 06:16:07 +00001820 Src.getComplexFloatImag(),
Mike Stump1eb44332009-09-09 15:08:12 +00001821 Info.Ctx));
Daniel Dunbara2cfd342009-01-29 06:16:07 +00001822 }
1823 } else {
1824 assert(Src.isComplexInt() && "Invalid evaluate result.");
1825 if (EltType->isRealFloatingType()) {
Mike Stump1eb44332009-09-09 15:08:12 +00001826 return APValue(HandleIntToFloatCast(EltType, SrcType,
Daniel Dunbara2cfd342009-01-29 06:16:07 +00001827 Src.getComplexIntReal(),
1828 Info.Ctx),
Mike Stump1eb44332009-09-09 15:08:12 +00001829 HandleIntToFloatCast(EltType, SrcType,
Daniel Dunbara2cfd342009-01-29 06:16:07 +00001830 Src.getComplexIntImag(),
1831 Info.Ctx));
1832 } else {
1833 return APValue(HandleIntToIntCast(EltType, SrcType,
1834 Src.getComplexIntReal(),
1835 Info.Ctx),
Mike Stump1eb44332009-09-09 15:08:12 +00001836 HandleIntToIntCast(EltType, SrcType,
Daniel Dunbara2cfd342009-01-29 06:16:07 +00001837 Src.getComplexIntImag(),
Mike Stump1eb44332009-09-09 15:08:12 +00001838 Info.Ctx));
Daniel Dunbara2cfd342009-01-29 06:16:07 +00001839 }
1840 }
Anders Carlssonccc3fce2008-11-16 21:51:21 +00001841 }
1842
1843 // FIXME: Handle more casts.
1844 return APValue();
1845 }
Mike Stump1eb44332009-09-09 15:08:12 +00001846
Anders Carlssonccc3fce2008-11-16 21:51:21 +00001847 APValue VisitBinaryOperator(const BinaryOperator *E);
Eli Friedmanba98d6b2009-03-23 04:56:01 +00001848 APValue VisitChooseExpr(const ChooseExpr *E)
1849 { return Visit(E->getChosenSubExpr(Info.Ctx)); }
1850 APValue VisitUnaryExtension(const UnaryOperator *E)
1851 { return Visit(E->getSubExpr()); }
1852 // FIXME Missing: unary +/-/~, binary div, ImplicitValueInitExpr,
Eli Friedman2217c872009-02-22 11:46:18 +00001853 // conditional ?:, comma
Anders Carlsson9ad16ae2008-11-16 20:27:53 +00001854};
1855} // end anonymous namespace
1856
Mike Stump1eb44332009-09-09 15:08:12 +00001857static bool EvaluateComplex(const Expr *E, APValue &Result, EvalInfo &Info) {
Daniel Dunbara5fd07b2009-01-28 22:24:07 +00001858 Result = ComplexExprEvaluator(Info).Visit(const_cast<Expr*>(E));
1859 assert((!Result.isComplexFloat() ||
Mike Stump1eb44332009-09-09 15:08:12 +00001860 (&Result.getComplexFloatReal().getSemantics() ==
1861 &Result.getComplexFloatImag().getSemantics())) &&
Daniel Dunbara5fd07b2009-01-28 22:24:07 +00001862 "Invalid complex evaluation.");
1863 return Result.isComplexFloat() || Result.isComplexInt();
Anders Carlsson9ad16ae2008-11-16 20:27:53 +00001864}
1865
Mike Stump1eb44332009-09-09 15:08:12 +00001866APValue ComplexExprEvaluator::VisitBinaryOperator(const BinaryOperator *E) {
Anders Carlssonccc3fce2008-11-16 21:51:21 +00001867 APValue Result, RHS;
Mike Stump1eb44332009-09-09 15:08:12 +00001868
Daniel Dunbara5fd07b2009-01-28 22:24:07 +00001869 if (!EvaluateComplex(E->getLHS(), Result, Info))
Anders Carlssonccc3fce2008-11-16 21:51:21 +00001870 return APValue();
Mike Stump1eb44332009-09-09 15:08:12 +00001871
Daniel Dunbara5fd07b2009-01-28 22:24:07 +00001872 if (!EvaluateComplex(E->getRHS(), RHS, Info))
Anders Carlssonccc3fce2008-11-16 21:51:21 +00001873 return APValue();
Daniel Dunbara5fd07b2009-01-28 22:24:07 +00001874
Daniel Dunbar3f279872009-01-29 01:32:56 +00001875 assert(Result.isComplexFloat() == RHS.isComplexFloat() &&
1876 "Invalid operands to binary operator.");
Anders Carlssonccc3fce2008-11-16 21:51:21 +00001877 switch (E->getOpcode()) {
1878 default: return APValue();
1879 case BinaryOperator::Add:
Daniel Dunbara5fd07b2009-01-28 22:24:07 +00001880 if (Result.isComplexFloat()) {
1881 Result.getComplexFloatReal().add(RHS.getComplexFloatReal(),
1882 APFloat::rmNearestTiesToEven);
1883 Result.getComplexFloatImag().add(RHS.getComplexFloatImag(),
1884 APFloat::rmNearestTiesToEven);
1885 } else {
1886 Result.getComplexIntReal() += RHS.getComplexIntReal();
1887 Result.getComplexIntImag() += RHS.getComplexIntImag();
1888 }
Daniel Dunbar3f279872009-01-29 01:32:56 +00001889 break;
Anders Carlssonccc3fce2008-11-16 21:51:21 +00001890 case BinaryOperator::Sub:
Daniel Dunbara5fd07b2009-01-28 22:24:07 +00001891 if (Result.isComplexFloat()) {
1892 Result.getComplexFloatReal().subtract(RHS.getComplexFloatReal(),
1893 APFloat::rmNearestTiesToEven);
1894 Result.getComplexFloatImag().subtract(RHS.getComplexFloatImag(),
1895 APFloat::rmNearestTiesToEven);
1896 } else {
1897 Result.getComplexIntReal() -= RHS.getComplexIntReal();
1898 Result.getComplexIntImag() -= RHS.getComplexIntImag();
1899 }
Daniel Dunbar3f279872009-01-29 01:32:56 +00001900 break;
1901 case BinaryOperator::Mul:
1902 if (Result.isComplexFloat()) {
1903 APValue LHS = Result;
1904 APFloat &LHS_r = LHS.getComplexFloatReal();
1905 APFloat &LHS_i = LHS.getComplexFloatImag();
1906 APFloat &RHS_r = RHS.getComplexFloatReal();
1907 APFloat &RHS_i = RHS.getComplexFloatImag();
Mike Stump1eb44332009-09-09 15:08:12 +00001908
Daniel Dunbar3f279872009-01-29 01:32:56 +00001909 APFloat Tmp = LHS_r;
1910 Tmp.multiply(RHS_r, APFloat::rmNearestTiesToEven);
1911 Result.getComplexFloatReal() = Tmp;
1912 Tmp = LHS_i;
1913 Tmp.multiply(RHS_i, APFloat::rmNearestTiesToEven);
1914 Result.getComplexFloatReal().subtract(Tmp, APFloat::rmNearestTiesToEven);
1915
1916 Tmp = LHS_r;
1917 Tmp.multiply(RHS_i, APFloat::rmNearestTiesToEven);
1918 Result.getComplexFloatImag() = Tmp;
1919 Tmp = LHS_i;
1920 Tmp.multiply(RHS_r, APFloat::rmNearestTiesToEven);
1921 Result.getComplexFloatImag().add(Tmp, APFloat::rmNearestTiesToEven);
1922 } else {
1923 APValue LHS = Result;
Mike Stump1eb44332009-09-09 15:08:12 +00001924 Result.getComplexIntReal() =
Daniel Dunbar3f279872009-01-29 01:32:56 +00001925 (LHS.getComplexIntReal() * RHS.getComplexIntReal() -
1926 LHS.getComplexIntImag() * RHS.getComplexIntImag());
Mike Stump1eb44332009-09-09 15:08:12 +00001927 Result.getComplexIntImag() =
Daniel Dunbar3f279872009-01-29 01:32:56 +00001928 (LHS.getComplexIntReal() * RHS.getComplexIntImag() +
1929 LHS.getComplexIntImag() * RHS.getComplexIntReal());
1930 }
1931 break;
Anders Carlssonccc3fce2008-11-16 21:51:21 +00001932 }
1933
1934 return Result;
1935}
1936
Anders Carlsson9ad16ae2008-11-16 20:27:53 +00001937//===----------------------------------------------------------------------===//
Chris Lattner6ee7aa12008-11-16 21:24:15 +00001938// Top level Expr::Evaluate method.
Chris Lattnerf5eeb052008-07-11 18:11:29 +00001939//===----------------------------------------------------------------------===//
1940
Chris Lattner6ee7aa12008-11-16 21:24:15 +00001941/// Evaluate - Return true if this is a constant which we can fold using
Chris Lattner019f4e82008-10-06 05:28:25 +00001942/// any crazy technique (that has nothing to do with language standards) that
1943/// we want to. If this function returns true, it returns the folded constant
1944/// in Result.
Anders Carlsson5b45d4e2008-11-30 16:58:53 +00001945bool Expr::Evaluate(EvalResult &Result, ASTContext &Ctx) const {
1946 EvalInfo Info(Ctx, Result);
Anders Carlsson54da0492008-11-30 16:38:33 +00001947
Nate Begeman59b5da62009-01-18 03:20:47 +00001948 if (getType()->isVectorType()) {
1949 if (!EvaluateVector(this, Result.Val, Info))
1950 return false;
1951 } else if (getType()->isIntegerType()) {
Daniel Dunbar30c37f42009-02-19 20:17:33 +00001952 if (!IntExprEvaluator(Info, Result.Val).Visit(const_cast<Expr*>(this)))
Anders Carlsson6dde0d52008-11-22 21:50:49 +00001953 return false;
Daniel Dunbar89588912009-02-26 20:52:22 +00001954 } else if (getType()->hasPointerRepresentation()) {
Anders Carlsson5b45d4e2008-11-30 16:58:53 +00001955 if (!EvaluatePointer(this, Result.Val, Info))
Anders Carlsson6dde0d52008-11-22 21:50:49 +00001956 return false;
Eli Friedmand8bfe7f2008-08-22 00:06:13 +00001957 } else if (getType()->isRealFloatingType()) {
1958 llvm::APFloat f(0.0);
Anders Carlsson6dde0d52008-11-22 21:50:49 +00001959 if (!EvaluateFloat(this, f, Info))
1960 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00001961
Anders Carlsson5b45d4e2008-11-30 16:58:53 +00001962 Result.Val = APValue(f);
Daniel Dunbara5fd07b2009-01-28 22:24:07 +00001963 } else if (getType()->isAnyComplexType()) {
1964 if (!EvaluateComplex(this, Result.Val, Info))
Anders Carlsson6dde0d52008-11-22 21:50:49 +00001965 return false;
Daniel Dunbara5fd07b2009-01-28 22:24:07 +00001966 } else
Anders Carlsson9d4c1572008-11-22 22:56:32 +00001967 return false;
Anders Carlsson6dde0d52008-11-22 21:50:49 +00001968
Anders Carlsson5b45d4e2008-11-30 16:58:53 +00001969 return true;
1970}
1971
Mike Stump660e6f72009-10-26 23:05:19 +00001972bool Expr::EvaluateAsAny(EvalResult &Result, ASTContext &Ctx) const {
1973 EvalInfo Info(Ctx, Result, true);
1974
1975 if (getType()->isVectorType()) {
1976 if (!EvaluateVector(this, Result.Val, Info))
1977 return false;
1978 } else if (getType()->isIntegerType()) {
1979 if (!IntExprEvaluator(Info, Result.Val).Visit(const_cast<Expr*>(this)))
1980 return false;
1981 } else if (getType()->hasPointerRepresentation()) {
1982 if (!EvaluatePointer(this, Result.Val, Info))
1983 return false;
1984 } else if (getType()->isRealFloatingType()) {
1985 llvm::APFloat f(0.0);
1986 if (!EvaluateFloat(this, f, Info))
1987 return false;
1988
1989 Result.Val = APValue(f);
1990 } else if (getType()->isAnyComplexType()) {
1991 if (!EvaluateComplex(this, Result.Val, Info))
1992 return false;
1993 } else
1994 return false;
1995
1996 return true;
1997}
1998
John McCallcd7a4452010-01-05 23:42:56 +00001999bool Expr::EvaluateAsBooleanCondition(bool &Result, ASTContext &Ctx) const {
2000 EvalResult Scratch;
2001 EvalInfo Info(Ctx, Scratch);
2002
2003 return HandleConversionToBool(this, Result, Info);
2004}
2005
Anders Carlsson1b782762009-04-10 04:54:13 +00002006bool Expr::EvaluateAsLValue(EvalResult &Result, ASTContext &Ctx) const {
2007 EvalInfo Info(Ctx, Result);
2008
2009 return EvaluateLValue(this, Result.Val, Info) && !Result.HasSideEffects;
2010}
2011
Eli Friedmanb2f295c2009-09-13 10:17:44 +00002012bool Expr::EvaluateAsAnyLValue(EvalResult &Result, ASTContext &Ctx) const {
2013 EvalInfo Info(Ctx, Result, true);
2014
2015 return EvaluateLValue(this, Result.Val, Info) && !Result.HasSideEffects;
2016}
2017
Chris Lattner6ee7aa12008-11-16 21:24:15 +00002018/// isEvaluatable - Call Evaluate to see if this expression can be constant
Chris Lattner45b6b9d2008-10-06 06:49:02 +00002019/// folded, but discard the result.
2020bool Expr::isEvaluatable(ASTContext &Ctx) const {
Anders Carlsson4fdfb092008-12-01 06:44:05 +00002021 EvalResult Result;
2022 return Evaluate(Result, Ctx) && !Result.HasSideEffects;
Chris Lattner45b6b9d2008-10-06 06:49:02 +00002023}
Anders Carlsson51fe9962008-11-22 21:04:56 +00002024
Fariborz Jahanian393c2472009-11-05 18:03:03 +00002025bool Expr::HasSideEffects(ASTContext &Ctx) const {
2026 Expr::EvalResult Result;
2027 EvalInfo Info(Ctx, Result);
2028 return HasSideEffect(Info).Visit(const_cast<Expr*>(this));
2029}
2030
Anders Carlsson51fe9962008-11-22 21:04:56 +00002031APSInt Expr::EvaluateAsInt(ASTContext &Ctx) const {
Anders Carlsson1c0cfd42008-12-19 20:58:05 +00002032 EvalResult EvalResult;
2033 bool Result = Evaluate(EvalResult, Ctx);
Daniel Dunbarf1853192009-01-15 18:32:35 +00002034 Result = Result;
Anders Carlsson51fe9962008-11-22 21:04:56 +00002035 assert(Result && "Could not evaluate expression");
Anders Carlsson1c0cfd42008-12-19 20:58:05 +00002036 assert(EvalResult.Val.isInt() && "Expression did not evaluate to integer");
Anders Carlsson51fe9962008-11-22 21:04:56 +00002037
Anders Carlsson1c0cfd42008-12-19 20:58:05 +00002038 return EvalResult.Val.getInt();
Anders Carlsson51fe9962008-11-22 21:04:56 +00002039}