blob: d64e6f1297d1e4735ba0cb61ae6d48f0c219af44 [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!
Douglas Gregorcf3293e2009-11-01 20:32:48 +0000266 const VarDecl *Def = 0;
267 if (const Expr *Init = VD->getDefinition(Def))
268 return Visit(const_cast<Expr *>(Init));
Eli Friedman50c39ea2009-05-27 06:04:58 +0000269 }
270
271 return APValue();
Anders Carlsson35873c42008-11-24 04:41:22 +0000272}
273
Eli Friedman4efaa272008-11-12 09:44:48 +0000274APValue LValueExprEvaluator::VisitCompoundLiteralExpr(CompoundLiteralExpr *E) {
Eli Friedmanb2f295c2009-09-13 10:17:44 +0000275 if (!Info.AnyLValue && !E->isFileScope())
276 return APValue();
Ken Dycka7305832010-01-15 12:37:54 +0000277 return APValue(E);
Eli Friedman4efaa272008-11-12 09:44:48 +0000278}
279
280APValue LValueExprEvaluator::VisitMemberExpr(MemberExpr *E) {
281 APValue result;
282 QualType Ty;
283 if (E->isArrow()) {
284 if (!EvaluatePointer(E->getBase(), result, Info))
285 return APValue();
Ted Kremenek6217b802009-07-29 21:53:49 +0000286 Ty = E->getBase()->getType()->getAs<PointerType>()->getPointeeType();
Eli Friedman4efaa272008-11-12 09:44:48 +0000287 } else {
288 result = Visit(E->getBase());
289 if (result.isUninit())
290 return APValue();
291 Ty = E->getBase()->getType();
292 }
293
Ted Kremenek6217b802009-07-29 21:53:49 +0000294 RecordDecl *RD = Ty->getAs<RecordType>()->getDecl();
Eli Friedman4efaa272008-11-12 09:44:48 +0000295 const ASTRecordLayout &RL = Info.Ctx.getASTRecordLayout(RD);
Douglas Gregor86f19402008-12-20 23:49:58 +0000296
297 FieldDecl *FD = dyn_cast<FieldDecl>(E->getMemberDecl());
298 if (!FD) // FIXME: deal with other kinds of member expressions
299 return APValue();
Eli Friedman2be58612009-05-30 21:09:44 +0000300
301 if (FD->getType()->isReferenceType())
302 return APValue();
303
Eli Friedman4efaa272008-11-12 09:44:48 +0000304 // FIXME: This is linear time.
Douglas Gregor44b43212008-12-11 16:49:14 +0000305 unsigned i = 0;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000306 for (RecordDecl::field_iterator Field = RD->field_begin(),
307 FieldEnd = RD->field_end();
Douglas Gregor44b43212008-12-11 16:49:14 +0000308 Field != FieldEnd; (void)++Field, ++i) {
309 if (*Field == FD)
Eli Friedman4efaa272008-11-12 09:44:48 +0000310 break;
311 }
312
313 result.setLValue(result.getLValueBase(),
Ken Dycka7305832010-01-15 12:37:54 +0000314 result.getLValueOffset() +
315 CharUnits::fromQuantity(RL.getFieldOffset(i) / 8));
Eli Friedman4efaa272008-11-12 09:44:48 +0000316
317 return result;
318}
319
Mike Stump1eb44332009-09-09 15:08:12 +0000320APValue LValueExprEvaluator::VisitArraySubscriptExpr(ArraySubscriptExpr *E) {
Anders Carlsson3068d112008-11-16 19:01:22 +0000321 APValue Result;
Mike Stump1eb44332009-09-09 15:08:12 +0000322
Anders Carlsson3068d112008-11-16 19:01:22 +0000323 if (!EvaluatePointer(E->getBase(), Result, Info))
324 return APValue();
Mike Stump1eb44332009-09-09 15:08:12 +0000325
Anders Carlsson3068d112008-11-16 19:01:22 +0000326 APSInt Index;
327 if (!EvaluateInteger(E->getIdx(), Index, Info))
328 return APValue();
329
Ken Dyck199c3d62010-01-11 17:06:35 +0000330 CharUnits ElementSize = Info.Ctx.getTypeSizeInChars(E->getType());
Anders Carlsson3068d112008-11-16 19:01:22 +0000331
Ken Dyck199c3d62010-01-11 17:06:35 +0000332 CharUnits Offset = Index.getSExtValue() * ElementSize;
Mike Stump1eb44332009-09-09 15:08:12 +0000333 Result.setLValue(Result.getLValueBase(),
Ken Dycka7305832010-01-15 12:37:54 +0000334 Result.getLValueOffset() + Offset);
Anders Carlsson3068d112008-11-16 19:01:22 +0000335 return Result;
336}
Eli Friedman4efaa272008-11-12 09:44:48 +0000337
Mike Stump1eb44332009-09-09 15:08:12 +0000338APValue LValueExprEvaluator::VisitUnaryDeref(UnaryOperator *E) {
Eli Friedmane8761c82009-02-20 01:57:15 +0000339 APValue Result;
340 if (!EvaluatePointer(E->getSubExpr(), Result, Info))
341 return APValue();
342 return Result;
343}
344
Eli Friedman4efaa272008-11-12 09:44:48 +0000345//===----------------------------------------------------------------------===//
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000346// Pointer Evaluation
347//===----------------------------------------------------------------------===//
348
Anders Carlssonc754aa62008-07-08 05:13:58 +0000349namespace {
Benjamin Kramer770b4a82009-11-28 19:03:38 +0000350class PointerExprEvaluator
Anders Carlsson2bad1682008-07-08 14:30:00 +0000351 : public StmtVisitor<PointerExprEvaluator, APValue> {
Chris Lattner87eae5e2008-07-11 22:52:41 +0000352 EvalInfo &Info;
Anders Carlsson2bad1682008-07-08 14:30:00 +0000353public:
Mike Stump1eb44332009-09-09 15:08:12 +0000354
Chris Lattner87eae5e2008-07-11 22:52:41 +0000355 PointerExprEvaluator(EvalInfo &info) : Info(info) {}
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000356
Anders Carlsson2bad1682008-07-08 14:30:00 +0000357 APValue VisitStmt(Stmt *S) {
Anders Carlsson2bad1682008-07-08 14:30:00 +0000358 return APValue();
359 }
360
361 APValue VisitParenExpr(ParenExpr *E) { return Visit(E->getSubExpr()); }
362
Anders Carlsson650c92f2008-07-08 15:34:11 +0000363 APValue VisitBinaryOperator(const BinaryOperator *E);
Eli Friedman09a8a0e2009-12-27 05:43:15 +0000364 APValue VisitCastExpr(CastExpr* E);
Eli Friedman2217c872009-02-22 11:46:18 +0000365 APValue VisitUnaryExtension(const UnaryOperator *E)
366 { return Visit(E->getSubExpr()); }
367 APValue VisitUnaryAddrOf(const UnaryOperator *E);
Eli Friedman4efaa272008-11-12 09:44:48 +0000368 APValue VisitObjCStringLiteral(ObjCStringLiteral *E)
Ken Dycka7305832010-01-15 12:37:54 +0000369 { return APValue(E); }
Eli Friedmanf0115892009-01-25 01:21:06 +0000370 APValue VisitAddrLabelExpr(AddrLabelExpr *E)
Ken Dycka7305832010-01-15 12:37:54 +0000371 { return APValue(E); }
Eli Friedman3941b182009-01-25 01:54:01 +0000372 APValue VisitCallExpr(CallExpr *E);
Mike Stumpb83d2872009-02-19 22:01:56 +0000373 APValue VisitBlockExpr(BlockExpr *E) {
374 if (!E->hasBlockDeclRefExprs())
Ken Dycka7305832010-01-15 12:37:54 +0000375 return APValue(E);
Mike Stumpb83d2872009-02-19 22:01:56 +0000376 return APValue();
377 }
Eli Friedman91110ee2009-02-23 04:23:56 +0000378 APValue VisitImplicitValueInitExpr(ImplicitValueInitExpr *E)
Ken Dycka7305832010-01-15 12:37:54 +0000379 { return APValue((Expr*)0); }
Eli Friedman4efaa272008-11-12 09:44:48 +0000380 APValue VisitConditionalOperator(ConditionalOperator *E);
Eli Friedmanba98d6b2009-03-23 04:56:01 +0000381 APValue VisitChooseExpr(ChooseExpr *E)
Sebastian Redl6e8ed162009-05-10 18:38:11 +0000382 { return Visit(E->getChosenSubExpr(Info.Ctx)); }
383 APValue VisitCXXNullPtrLiteralExpr(CXXNullPtrLiteralExpr *E)
Ken Dycka7305832010-01-15 12:37:54 +0000384 { return APValue((Expr*)0); }
Eli Friedmanba98d6b2009-03-23 04:56:01 +0000385 // FIXME: Missing: @protocol, @selector
Anders Carlsson650c92f2008-07-08 15:34:11 +0000386};
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000387} // end anonymous namespace
Anders Carlsson650c92f2008-07-08 15:34:11 +0000388
Chris Lattner87eae5e2008-07-11 22:52:41 +0000389static bool EvaluatePointer(const Expr* E, APValue& Result, EvalInfo &Info) {
Daniel Dunbar89588912009-02-26 20:52:22 +0000390 if (!E->getType()->hasPointerRepresentation())
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000391 return false;
Chris Lattner87eae5e2008-07-11 22:52:41 +0000392 Result = PointerExprEvaluator(Info).Visit(const_cast<Expr*>(E));
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000393 return Result.isLValue();
394}
395
396APValue PointerExprEvaluator::VisitBinaryOperator(const BinaryOperator *E) {
397 if (E->getOpcode() != BinaryOperator::Add &&
398 E->getOpcode() != BinaryOperator::Sub)
399 return APValue();
Mike Stump1eb44332009-09-09 15:08:12 +0000400
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000401 const Expr *PExp = E->getLHS();
402 const Expr *IExp = E->getRHS();
403 if (IExp->getType()->isPointerType())
404 std::swap(PExp, IExp);
Mike Stump1eb44332009-09-09 15:08:12 +0000405
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000406 APValue ResultLValue;
Chris Lattner87eae5e2008-07-11 22:52:41 +0000407 if (!EvaluatePointer(PExp, ResultLValue, Info))
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000408 return APValue();
Mike Stump1eb44332009-09-09 15:08:12 +0000409
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000410 llvm::APSInt AdditionalOffset(32);
Chris Lattner87eae5e2008-07-11 22:52:41 +0000411 if (!EvaluateInteger(IExp, AdditionalOffset, Info))
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000412 return APValue();
413
Ted Kremenek6217b802009-07-29 21:53:49 +0000414 QualType PointeeType = PExp->getType()->getAs<PointerType>()->getPointeeType();
Ken Dyck199c3d62010-01-11 17:06:35 +0000415 CharUnits SizeOfPointee;
Mike Stump1eb44332009-09-09 15:08:12 +0000416
Anders Carlsson4d4c50d2009-02-19 04:55:58 +0000417 // Explicitly handle GNU void* and function pointer arithmetic extensions.
418 if (PointeeType->isVoidType() || PointeeType->isFunctionType())
Ken Dyck199c3d62010-01-11 17:06:35 +0000419 SizeOfPointee = CharUnits::One();
Anders Carlsson4d4c50d2009-02-19 04:55:58 +0000420 else
Ken Dyck199c3d62010-01-11 17:06:35 +0000421 SizeOfPointee = Info.Ctx.getTypeSizeInChars(PointeeType);
Eli Friedman4efaa272008-11-12 09:44:48 +0000422
Ken Dycka7305832010-01-15 12:37:54 +0000423 CharUnits Offset = ResultLValue.getLValueOffset();
Eli Friedman4efaa272008-11-12 09:44:48 +0000424
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000425 if (E->getOpcode() == BinaryOperator::Add)
Eli Friedman4efaa272008-11-12 09:44:48 +0000426 Offset += AdditionalOffset.getLimitedValue() * SizeOfPointee;
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000427 else
Eli Friedman4efaa272008-11-12 09:44:48 +0000428 Offset -= AdditionalOffset.getLimitedValue() * SizeOfPointee;
429
Ken Dycka7305832010-01-15 12:37:54 +0000430 return APValue(ResultLValue.getLValueBase(), Offset);
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000431}
Eli Friedman4efaa272008-11-12 09:44:48 +0000432
Eli Friedman2217c872009-02-22 11:46:18 +0000433APValue PointerExprEvaluator::VisitUnaryAddrOf(const UnaryOperator *E) {
434 APValue result;
435 if (EvaluateLValue(E->getSubExpr(), result, Info))
436 return result;
Eli Friedman4efaa272008-11-12 09:44:48 +0000437 return APValue();
438}
Mike Stump1eb44332009-09-09 15:08:12 +0000439
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000440
Eli Friedman09a8a0e2009-12-27 05:43:15 +0000441APValue PointerExprEvaluator::VisitCastExpr(CastExpr* E) {
442 Expr* SubExpr = E->getSubExpr();
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000443
Eli Friedman09a8a0e2009-12-27 05:43:15 +0000444 switch (E->getCastKind()) {
445 default:
446 break;
447
448 case CastExpr::CK_Unknown: {
449 // FIXME: The handling for CK_Unknown is ugly/shouldn't be necessary!
450
451 // Check for pointer->pointer cast
452 if (SubExpr->getType()->isPointerType() ||
453 SubExpr->getType()->isObjCObjectPointerType() ||
454 SubExpr->getType()->isNullPtrType() ||
455 SubExpr->getType()->isBlockPointerType())
456 return Visit(SubExpr);
457
458 if (SubExpr->getType()->isIntegralType()) {
459 APValue Result;
460 if (!EvaluateIntegerOrLValue(SubExpr, Result, Info))
461 break;
462
463 if (Result.isInt()) {
464 Result.getInt().extOrTrunc((unsigned)Info.Ctx.getTypeSize(E->getType()));
Ken Dycka7305832010-01-15 12:37:54 +0000465 return APValue(0,
466 CharUnits::fromQuantity(Result.getInt().getZExtValue()));
Eli Friedman09a8a0e2009-12-27 05:43:15 +0000467 }
468
469 // Cast is of an lvalue, no need to change value.
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000470 return Result;
Eli Friedman09a8a0e2009-12-27 05:43:15 +0000471 }
472 break;
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000473 }
Mike Stump1eb44332009-09-09 15:08:12 +0000474
Eli Friedman09a8a0e2009-12-27 05:43:15 +0000475 case CastExpr::CK_NoOp:
476 case CastExpr::CK_BitCast:
477 case CastExpr::CK_AnyPointerToObjCPointerCast:
478 case CastExpr::CK_AnyPointerToBlockPointerCast:
479 return Visit(SubExpr);
480
481 case CastExpr::CK_IntegralToPointer: {
Daniel Dunbar69ab26a2009-02-20 18:22:23 +0000482 APValue Result;
483 if (!EvaluateIntegerOrLValue(SubExpr, Result, Info))
Eli Friedman09a8a0e2009-12-27 05:43:15 +0000484 break;
Daniel Dunbar69ab26a2009-02-20 18:22:23 +0000485
486 if (Result.isInt()) {
487 Result.getInt().extOrTrunc((unsigned)Info.Ctx.getTypeSize(E->getType()));
Ken Dycka7305832010-01-15 12:37:54 +0000488 return APValue(0,
489 CharUnits::fromQuantity(Result.getInt().getZExtValue()));
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000490 }
Mike Stump1eb44332009-09-09 15:08:12 +0000491
Daniel Dunbar69ab26a2009-02-20 18:22:23 +0000492 // Cast is of an lvalue, no need to change value.
493 return Result;
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000494 }
Eli Friedman09a8a0e2009-12-27 05:43:15 +0000495 case CastExpr::CK_ArrayToPointerDecay:
496 case CastExpr::CK_FunctionToPointerDecay: {
Eli Friedman4efaa272008-11-12 09:44:48 +0000497 APValue Result;
498 if (EvaluateLValue(SubExpr, Result, Info))
499 return Result;
Eli Friedman09a8a0e2009-12-27 05:43:15 +0000500 break;
501 }
Eli Friedman4efaa272008-11-12 09:44:48 +0000502 }
503
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000504 return APValue();
Mike Stump1eb44332009-09-09 15:08:12 +0000505}
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000506
Eli Friedman3941b182009-01-25 01:54:01 +0000507APValue PointerExprEvaluator::VisitCallExpr(CallExpr *E) {
Mike Stump1eb44332009-09-09 15:08:12 +0000508 if (E->isBuiltinCall(Info.Ctx) ==
David Chisnall0d13f6f2010-01-23 02:40:42 +0000509 Builtin::BI__builtin___CFStringMakeConstantString ||
510 E->isBuiltinCall(Info.Ctx) ==
511 Builtin::BI__builtin___NSStringMakeConstantString)
Ken Dycka7305832010-01-15 12:37:54 +0000512 return APValue(E);
Eli Friedman3941b182009-01-25 01:54:01 +0000513 return APValue();
514}
515
Eli Friedman4efaa272008-11-12 09:44:48 +0000516APValue PointerExprEvaluator::VisitConditionalOperator(ConditionalOperator *E) {
517 bool BoolResult;
518 if (!HandleConversionToBool(E->getCond(), BoolResult, Info))
519 return APValue();
520
521 Expr* EvalExpr = BoolResult ? E->getTrueExpr() : E->getFalseExpr();
522
523 APValue Result;
524 if (EvaluatePointer(EvalExpr, Result, Info))
525 return Result;
526 return APValue();
527}
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000528
529//===----------------------------------------------------------------------===//
Nate Begeman59b5da62009-01-18 03:20:47 +0000530// Vector Evaluation
531//===----------------------------------------------------------------------===//
532
533namespace {
Benjamin Kramer770b4a82009-11-28 19:03:38 +0000534 class VectorExprEvaluator
Nate Begeman59b5da62009-01-18 03:20:47 +0000535 : public StmtVisitor<VectorExprEvaluator, APValue> {
536 EvalInfo &Info;
Eli Friedman91110ee2009-02-23 04:23:56 +0000537 APValue GetZeroVector(QualType VecType);
Nate Begeman59b5da62009-01-18 03:20:47 +0000538 public:
Mike Stump1eb44332009-09-09 15:08:12 +0000539
Nate Begeman59b5da62009-01-18 03:20:47 +0000540 VectorExprEvaluator(EvalInfo &info) : Info(info) {}
Mike Stump1eb44332009-09-09 15:08:12 +0000541
Nate Begeman59b5da62009-01-18 03:20:47 +0000542 APValue VisitStmt(Stmt *S) {
543 return APValue();
544 }
Mike Stump1eb44332009-09-09 15:08:12 +0000545
Eli Friedman91110ee2009-02-23 04:23:56 +0000546 APValue VisitParenExpr(ParenExpr *E)
547 { return Visit(E->getSubExpr()); }
548 APValue VisitUnaryExtension(const UnaryOperator *E)
549 { return Visit(E->getSubExpr()); }
550 APValue VisitUnaryPlus(const UnaryOperator *E)
551 { return Visit(E->getSubExpr()); }
552 APValue VisitUnaryReal(const UnaryOperator *E)
553 { return Visit(E->getSubExpr()); }
554 APValue VisitImplicitValueInitExpr(const ImplicitValueInitExpr *E)
555 { return GetZeroVector(E->getType()); }
Nate Begeman59b5da62009-01-18 03:20:47 +0000556 APValue VisitCastExpr(const CastExpr* E);
557 APValue VisitCompoundLiteralExpr(const CompoundLiteralExpr *E);
558 APValue VisitInitListExpr(const InitListExpr *E);
Eli Friedman91110ee2009-02-23 04:23:56 +0000559 APValue VisitConditionalOperator(const ConditionalOperator *E);
Eli Friedmanba98d6b2009-03-23 04:56:01 +0000560 APValue VisitChooseExpr(const ChooseExpr *E)
561 { return Visit(E->getChosenSubExpr(Info.Ctx)); }
Eli Friedman91110ee2009-02-23 04:23:56 +0000562 APValue VisitUnaryImag(const UnaryOperator *E);
563 // FIXME: Missing: unary -, unary ~, binary add/sub/mul/div,
Eli Friedman2217c872009-02-22 11:46:18 +0000564 // binary comparisons, binary and/or/xor,
Eli Friedman91110ee2009-02-23 04:23:56 +0000565 // shufflevector, ExtVectorElementExpr
566 // (Note that these require implementing conversions
567 // between vector types.)
Nate Begeman59b5da62009-01-18 03:20:47 +0000568 };
569} // end anonymous namespace
570
571static bool EvaluateVector(const Expr* E, APValue& Result, EvalInfo &Info) {
572 if (!E->getType()->isVectorType())
573 return false;
574 Result = VectorExprEvaluator(Info).Visit(const_cast<Expr*>(E));
575 return !Result.isUninit();
576}
577
578APValue VectorExprEvaluator::VisitCastExpr(const CastExpr* E) {
John McCall183700f2009-09-21 23:43:11 +0000579 const VectorType *VTy = E->getType()->getAs<VectorType>();
Nate Begemanc0b8b192009-07-01 07:50:47 +0000580 QualType EltTy = VTy->getElementType();
581 unsigned NElts = VTy->getNumElements();
582 unsigned EltWidth = Info.Ctx.getTypeSize(EltTy);
Mike Stump1eb44332009-09-09 15:08:12 +0000583
Nate Begeman59b5da62009-01-18 03:20:47 +0000584 const Expr* SE = E->getSubExpr();
Nate Begemane8c9e922009-06-26 18:22:18 +0000585 QualType SETy = SE->getType();
586 APValue Result = APValue();
Nate Begeman59b5da62009-01-18 03:20:47 +0000587
Nate Begemane8c9e922009-06-26 18:22:18 +0000588 // Check for vector->vector bitcast and scalar->vector splat.
589 if (SETy->isVectorType()) {
Nate Begeman59b5da62009-01-18 03:20:47 +0000590 return this->Visit(const_cast<Expr*>(SE));
Nate Begemane8c9e922009-06-26 18:22:18 +0000591 } else if (SETy->isIntegerType()) {
592 APSInt IntResult;
Daniel Dunbard906dc72009-07-01 20:37:45 +0000593 if (!EvaluateInteger(SE, IntResult, Info))
594 return APValue();
595 Result = APValue(IntResult);
Nate Begemane8c9e922009-06-26 18:22:18 +0000596 } else if (SETy->isRealFloatingType()) {
597 APFloat F(0.0);
Daniel Dunbard906dc72009-07-01 20:37:45 +0000598 if (!EvaluateFloat(SE, F, Info))
599 return APValue();
600 Result = APValue(F);
601 } else
Nate Begemanc0b8b192009-07-01 07:50:47 +0000602 return APValue();
Nate Begeman59b5da62009-01-18 03:20:47 +0000603
Nate Begemanc0b8b192009-07-01 07:50:47 +0000604 // For casts of a scalar to ExtVector, convert the scalar to the element type
605 // and splat it to all elements.
606 if (E->getType()->isExtVectorType()) {
607 if (EltTy->isIntegerType() && Result.isInt())
608 Result = APValue(HandleIntToIntCast(EltTy, SETy, Result.getInt(),
609 Info.Ctx));
610 else if (EltTy->isIntegerType())
611 Result = APValue(HandleFloatToIntCast(EltTy, SETy, Result.getFloat(),
612 Info.Ctx));
613 else if (EltTy->isRealFloatingType() && Result.isInt())
614 Result = APValue(HandleIntToFloatCast(EltTy, SETy, Result.getInt(),
615 Info.Ctx));
616 else if (EltTy->isRealFloatingType())
617 Result = APValue(HandleFloatToFloatCast(EltTy, SETy, Result.getFloat(),
618 Info.Ctx));
619 else
620 return APValue();
621
622 // Splat and create vector APValue.
623 llvm::SmallVector<APValue, 4> Elts(NElts, Result);
624 return APValue(&Elts[0], Elts.size());
Nate Begemane8c9e922009-06-26 18:22:18 +0000625 }
Nate Begemanc0b8b192009-07-01 07:50:47 +0000626
627 // For casts of a scalar to regular gcc-style vector type, bitcast the scalar
628 // to the vector. To construct the APValue vector initializer, bitcast the
629 // initializing value to an APInt, and shift out the bits pertaining to each
630 // element.
631 APSInt Init;
632 Init = Result.isInt() ? Result.getInt() : Result.getFloat().bitcastToAPInt();
Mike Stump1eb44332009-09-09 15:08:12 +0000633
Nate Begemanc0b8b192009-07-01 07:50:47 +0000634 llvm::SmallVector<APValue, 4> Elts;
635 for (unsigned i = 0; i != NElts; ++i) {
636 APSInt Tmp = Init;
637 Tmp.extOrTrunc(EltWidth);
Mike Stump1eb44332009-09-09 15:08:12 +0000638
Nate Begemanc0b8b192009-07-01 07:50:47 +0000639 if (EltTy->isIntegerType())
640 Elts.push_back(APValue(Tmp));
641 else if (EltTy->isRealFloatingType())
642 Elts.push_back(APValue(APFloat(Tmp)));
643 else
644 return APValue();
645
646 Init >>= EltWidth;
647 }
648 return APValue(&Elts[0], Elts.size());
Nate Begeman59b5da62009-01-18 03:20:47 +0000649}
650
Mike Stump1eb44332009-09-09 15:08:12 +0000651APValue
Nate Begeman59b5da62009-01-18 03:20:47 +0000652VectorExprEvaluator::VisitCompoundLiteralExpr(const CompoundLiteralExpr *E) {
653 return this->Visit(const_cast<Expr*>(E->getInitializer()));
654}
655
Mike Stump1eb44332009-09-09 15:08:12 +0000656APValue
Nate Begeman59b5da62009-01-18 03:20:47 +0000657VectorExprEvaluator::VisitInitListExpr(const InitListExpr *E) {
John McCall183700f2009-09-21 23:43:11 +0000658 const VectorType *VT = E->getType()->getAs<VectorType>();
Nate Begeman59b5da62009-01-18 03:20:47 +0000659 unsigned NumInits = E->getNumInits();
Eli Friedman91110ee2009-02-23 04:23:56 +0000660 unsigned NumElements = VT->getNumElements();
Mike Stump1eb44332009-09-09 15:08:12 +0000661
Nate Begeman59b5da62009-01-18 03:20:47 +0000662 QualType EltTy = VT->getElementType();
663 llvm::SmallVector<APValue, 4> Elements;
664
Eli Friedman91110ee2009-02-23 04:23:56 +0000665 for (unsigned i = 0; i < NumElements; i++) {
Nate Begeman59b5da62009-01-18 03:20:47 +0000666 if (EltTy->isIntegerType()) {
667 llvm::APSInt sInt(32);
Eli Friedman91110ee2009-02-23 04:23:56 +0000668 if (i < NumInits) {
669 if (!EvaluateInteger(E->getInit(i), sInt, Info))
670 return APValue();
671 } else {
672 sInt = Info.Ctx.MakeIntValue(0, EltTy);
673 }
Nate Begeman59b5da62009-01-18 03:20:47 +0000674 Elements.push_back(APValue(sInt));
675 } else {
676 llvm::APFloat f(0.0);
Eli Friedman91110ee2009-02-23 04:23:56 +0000677 if (i < NumInits) {
678 if (!EvaluateFloat(E->getInit(i), f, Info))
679 return APValue();
680 } else {
681 f = APFloat::getZero(Info.Ctx.getFloatTypeSemantics(EltTy));
682 }
Nate Begeman59b5da62009-01-18 03:20:47 +0000683 Elements.push_back(APValue(f));
684 }
685 }
686 return APValue(&Elements[0], Elements.size());
687}
688
Mike Stump1eb44332009-09-09 15:08:12 +0000689APValue
Eli Friedman91110ee2009-02-23 04:23:56 +0000690VectorExprEvaluator::GetZeroVector(QualType T) {
John McCall183700f2009-09-21 23:43:11 +0000691 const VectorType *VT = T->getAs<VectorType>();
Eli Friedman91110ee2009-02-23 04:23:56 +0000692 QualType EltTy = VT->getElementType();
693 APValue ZeroElement;
694 if (EltTy->isIntegerType())
695 ZeroElement = APValue(Info.Ctx.MakeIntValue(0, EltTy));
696 else
697 ZeroElement =
698 APValue(APFloat::getZero(Info.Ctx.getFloatTypeSemantics(EltTy)));
699
700 llvm::SmallVector<APValue, 4> Elements(VT->getNumElements(), ZeroElement);
701 return APValue(&Elements[0], Elements.size());
702}
703
704APValue VectorExprEvaluator::VisitConditionalOperator(const ConditionalOperator *E) {
705 bool BoolResult;
706 if (!HandleConversionToBool(E->getCond(), BoolResult, Info))
707 return APValue();
708
709 Expr* EvalExpr = BoolResult ? E->getTrueExpr() : E->getFalseExpr();
710
711 APValue Result;
712 if (EvaluateVector(EvalExpr, Result, Info))
713 return Result;
714 return APValue();
715}
716
Eli Friedman91110ee2009-02-23 04:23:56 +0000717APValue VectorExprEvaluator::VisitUnaryImag(const UnaryOperator *E) {
718 if (!E->getSubExpr()->isEvaluatable(Info.Ctx))
719 Info.EvalResult.HasSideEffects = true;
720 return GetZeroVector(E->getType());
721}
722
Nate Begeman59b5da62009-01-18 03:20:47 +0000723//===----------------------------------------------------------------------===//
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000724// Integer Evaluation
725//===----------------------------------------------------------------------===//
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000726
727namespace {
Benjamin Kramer770b4a82009-11-28 19:03:38 +0000728class IntExprEvaluator
Chris Lattnerb542afe2008-07-11 19:10:17 +0000729 : public StmtVisitor<IntExprEvaluator, bool> {
Chris Lattner87eae5e2008-07-11 22:52:41 +0000730 EvalInfo &Info;
Daniel Dunbar30c37f42009-02-19 20:17:33 +0000731 APValue &Result;
Anders Carlssonc754aa62008-07-08 05:13:58 +0000732public:
Daniel Dunbar30c37f42009-02-19 20:17:33 +0000733 IntExprEvaluator(EvalInfo &info, APValue &result)
Chris Lattner87eae5e2008-07-11 22:52:41 +0000734 : Info(info), Result(result) {}
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000735
Daniel Dunbar3f7d9952009-02-19 18:37:50 +0000736 bool Success(const llvm::APSInt &SI, const Expr *E) {
Daniel Dunbar4fff4812009-02-21 18:14:20 +0000737 assert(E->getType()->isIntegralType() && "Invalid evaluation result.");
Daniel Dunbar30c37f42009-02-19 20:17:33 +0000738 assert(SI.isSigned() == E->getType()->isSignedIntegerType() &&
Daniel Dunbar3f7d9952009-02-19 18:37:50 +0000739 "Invalid evaluation result.");
Daniel Dunbar30c37f42009-02-19 20:17:33 +0000740 assert(SI.getBitWidth() == Info.Ctx.getIntWidth(E->getType()) &&
Daniel Dunbar3f7d9952009-02-19 18:37:50 +0000741 "Invalid evaluation result.");
Daniel Dunbar30c37f42009-02-19 20:17:33 +0000742 Result = APValue(SI);
Daniel Dunbar3f7d9952009-02-19 18:37:50 +0000743 return true;
744 }
745
Daniel Dunbar131eb432009-02-19 09:06:44 +0000746 bool Success(const llvm::APInt &I, const Expr *E) {
Daniel Dunbar4fff4812009-02-21 18:14:20 +0000747 assert(E->getType()->isIntegralType() && "Invalid evaluation result.");
Daniel Dunbar30c37f42009-02-19 20:17:33 +0000748 assert(I.getBitWidth() == Info.Ctx.getIntWidth(E->getType()) &&
Daniel Dunbar3f7d9952009-02-19 18:37:50 +0000749 "Invalid evaluation result.");
Daniel Dunbar30c37f42009-02-19 20:17:33 +0000750 Result = APValue(APSInt(I));
751 Result.getInt().setIsUnsigned(E->getType()->isUnsignedIntegerType());
Daniel Dunbar131eb432009-02-19 09:06:44 +0000752 return true;
753 }
754
755 bool Success(uint64_t Value, const Expr *E) {
Daniel Dunbar4fff4812009-02-21 18:14:20 +0000756 assert(E->getType()->isIntegralType() && "Invalid evaluation result.");
Daniel Dunbar30c37f42009-02-19 20:17:33 +0000757 Result = APValue(Info.Ctx.MakeIntValue(Value, E->getType()));
Daniel Dunbar131eb432009-02-19 09:06:44 +0000758 return true;
759 }
760
Anders Carlsson82206e22008-11-30 18:14:57 +0000761 bool Error(SourceLocation L, diag::kind D, const Expr *E) {
Chris Lattner32fea9d2008-11-12 07:43:42 +0000762 // Take the first error.
Anders Carlsson54da0492008-11-30 16:38:33 +0000763 if (Info.EvalResult.Diag == 0) {
764 Info.EvalResult.DiagLoc = L;
765 Info.EvalResult.Diag = D;
Anders Carlsson82206e22008-11-30 18:14:57 +0000766 Info.EvalResult.DiagExpr = E;
Chris Lattner32fea9d2008-11-12 07:43:42 +0000767 }
Chris Lattner54176fd2008-07-12 00:14:42 +0000768 return false;
Chris Lattner7a767782008-07-11 19:24:49 +0000769 }
Mike Stump1eb44332009-09-09 15:08:12 +0000770
Anders Carlssonc754aa62008-07-08 05:13:58 +0000771 //===--------------------------------------------------------------------===//
772 // Visitor Methods
773 //===--------------------------------------------------------------------===//
Mike Stump1eb44332009-09-09 15:08:12 +0000774
Chris Lattner32fea9d2008-11-12 07:43:42 +0000775 bool VisitStmt(Stmt *) {
776 assert(0 && "This should be called on integers, stmts are not integers");
777 return false;
778 }
Mike Stump1eb44332009-09-09 15:08:12 +0000779
Chris Lattner32fea9d2008-11-12 07:43:42 +0000780 bool VisitExpr(Expr *E) {
Anders Carlsson0e8acbb2008-11-30 18:37:00 +0000781 return Error(E->getLocStart(), diag::note_invalid_subexpr_in_ice, E);
Anders Carlssonc754aa62008-07-08 05:13:58 +0000782 }
Mike Stump1eb44332009-09-09 15:08:12 +0000783
Chris Lattnerb542afe2008-07-11 19:10:17 +0000784 bool VisitParenExpr(ParenExpr *E) { return Visit(E->getSubExpr()); }
Anders Carlssonc754aa62008-07-08 05:13:58 +0000785
Chris Lattner4c4867e2008-07-12 00:38:25 +0000786 bool VisitIntegerLiteral(const IntegerLiteral *E) {
Daniel Dunbar131eb432009-02-19 09:06:44 +0000787 return Success(E->getValue(), E);
Chris Lattner4c4867e2008-07-12 00:38:25 +0000788 }
789 bool VisitCharacterLiteral(const CharacterLiteral *E) {
Daniel Dunbar131eb432009-02-19 09:06:44 +0000790 return Success(E->getValue(), E);
Chris Lattner4c4867e2008-07-12 00:38:25 +0000791 }
792 bool VisitTypesCompatibleExpr(const TypesCompatibleExpr *E) {
Daniel Dunbarac620de2008-10-24 08:07:57 +0000793 // Per gcc docs "this built-in function ignores top level
794 // qualifiers". We need to use the canonical version to properly
795 // be able to strip CRV qualifiers from the type.
796 QualType T0 = Info.Ctx.getCanonicalType(E->getArgType1());
797 QualType T1 = Info.Ctx.getCanonicalType(E->getArgType2());
Mike Stump1eb44332009-09-09 15:08:12 +0000798 return Success(Info.Ctx.typesAreCompatible(T0.getUnqualifiedType(),
Daniel Dunbar131eb432009-02-19 09:06:44 +0000799 T1.getUnqualifiedType()),
800 E);
Chris Lattner4c4867e2008-07-12 00:38:25 +0000801 }
Eli Friedman04309752009-11-24 05:28:59 +0000802
803 bool CheckReferencedDecl(const Expr *E, const Decl *D);
804 bool VisitDeclRefExpr(const DeclRefExpr *E) {
805 return CheckReferencedDecl(E, E->getDecl());
806 }
807 bool VisitMemberExpr(const MemberExpr *E) {
808 if (CheckReferencedDecl(E, E->getMemberDecl())) {
809 // Conservatively assume a MemberExpr will have side-effects
810 Info.EvalResult.HasSideEffects = true;
811 return true;
812 }
813 return false;
814 }
815
Chris Lattner4c4867e2008-07-12 00:38:25 +0000816 bool VisitCallExpr(const CallExpr *E);
Chris Lattnerb542afe2008-07-11 19:10:17 +0000817 bool VisitBinaryOperator(const BinaryOperator *E);
818 bool VisitUnaryOperator(const UnaryOperator *E);
Nuno Lopesca7c2ea2008-11-16 19:28:31 +0000819 bool VisitConditionalOperator(const ConditionalOperator *E);
Anders Carlsson06a36752008-07-08 05:49:43 +0000820
Daniel Dunbara2cfd342009-01-29 06:16:07 +0000821 bool VisitCastExpr(CastExpr* E);
Sebastian Redl05189992008-11-11 17:56:53 +0000822 bool VisitSizeOfAlignOfExpr(const SizeOfAlignOfExpr *E);
823
Anders Carlsson3068d112008-11-16 19:01:22 +0000824 bool VisitCXXBoolLiteralExpr(const CXXBoolLiteralExpr *E) {
Daniel Dunbar131eb432009-02-19 09:06:44 +0000825 return Success(E->getValue(), E);
Anders Carlsson3068d112008-11-16 19:01:22 +0000826 }
Mike Stump1eb44332009-09-09 15:08:12 +0000827
Anders Carlsson3f704562008-12-21 22:39:40 +0000828 bool VisitGNUNullExpr(const GNUNullExpr *E) {
Daniel Dunbar131eb432009-02-19 09:06:44 +0000829 return Success(0, E);
Anders Carlsson3f704562008-12-21 22:39:40 +0000830 }
Mike Stump1eb44332009-09-09 15:08:12 +0000831
Anders Carlsson3068d112008-11-16 19:01:22 +0000832 bool VisitCXXZeroInitValueExpr(const CXXZeroInitValueExpr *E) {
Daniel Dunbar131eb432009-02-19 09:06:44 +0000833 return Success(0, E);
Anders Carlsson3068d112008-11-16 19:01:22 +0000834 }
835
Eli Friedman664a1042009-02-27 04:45:43 +0000836 bool VisitImplicitValueInitExpr(const ImplicitValueInitExpr *E) {
837 return Success(0, E);
838 }
839
Sebastian Redl64b45f72009-01-05 20:52:13 +0000840 bool VisitUnaryTypeTraitExpr(const UnaryTypeTraitExpr *E) {
Douglas Gregor5e03f9e2009-07-23 23:49:00 +0000841 return Success(E->EvaluateTrait(Info.Ctx), E);
Sebastian Redl64b45f72009-01-05 20:52:13 +0000842 }
843
Eli Friedmanba98d6b2009-03-23 04:56:01 +0000844 bool VisitChooseExpr(const ChooseExpr *E) {
845 return Visit(E->getChosenSubExpr(Info.Ctx));
846 }
847
Eli Friedman722c7172009-02-28 03:59:05 +0000848 bool VisitUnaryReal(const UnaryOperator *E);
Eli Friedman664a1042009-02-27 04:45:43 +0000849 bool VisitUnaryImag(const UnaryOperator *E);
850
Chris Lattnerfcee0012008-07-11 21:24:13 +0000851private:
Ken Dyck8b752f12010-01-27 17:10:57 +0000852 CharUnits GetAlignOfExpr(const Expr *E);
853 CharUnits GetAlignOfType(QualType T);
Eli Friedman664a1042009-02-27 04:45:43 +0000854 // FIXME: Missing: array subscript of vector, member of vector
Anders Carlssona25ae3d2008-07-08 14:35:21 +0000855};
Chris Lattnerf5eeb052008-07-11 18:11:29 +0000856} // end anonymous namespace
Anders Carlsson650c92f2008-07-08 15:34:11 +0000857
Daniel Dunbar69ab26a2009-02-20 18:22:23 +0000858static bool EvaluateIntegerOrLValue(const Expr* E, APValue &Result, EvalInfo &Info) {
Daniel Dunbar3f7d9952009-02-19 18:37:50 +0000859 if (!E->getType()->isIntegralType())
860 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000861
Daniel Dunbar69ab26a2009-02-20 18:22:23 +0000862 return IntExprEvaluator(Info, Result).Visit(const_cast<Expr*>(E));
863}
Daniel Dunbar30c37f42009-02-19 20:17:33 +0000864
Daniel Dunbar69ab26a2009-02-20 18:22:23 +0000865static bool EvaluateInteger(const Expr* E, APSInt &Result, EvalInfo &Info) {
866 APValue Val;
867 if (!EvaluateIntegerOrLValue(E, Val, Info) || !Val.isInt())
868 return false;
Daniel Dunbar30c37f42009-02-19 20:17:33 +0000869 Result = Val.getInt();
870 return true;
Anders Carlsson650c92f2008-07-08 15:34:11 +0000871}
Anders Carlsson650c92f2008-07-08 15:34:11 +0000872
Eli Friedman04309752009-11-24 05:28:59 +0000873bool IntExprEvaluator::CheckReferencedDecl(const Expr* E, const Decl* D) {
Chris Lattner4c4867e2008-07-12 00:38:25 +0000874 // Enums are integer constant exprs.
Eli Friedman29a7f332009-12-10 22:29:29 +0000875 if (const EnumConstantDecl *ECD = dyn_cast<EnumConstantDecl>(D))
876 return Success(ECD->getInitVal(), E);
Sebastian Redlb2bc62b2009-02-08 15:51:17 +0000877
878 // In C++, const, non-volatile integers initialized with ICEs are ICEs.
Eli Friedmane1646da2009-03-30 23:39:01 +0000879 // In C, they can also be folded, although they are not ICEs.
Douglas Gregorcf3293e2009-11-01 20:32:48 +0000880 if (Info.Ctx.getCanonicalType(E->getType()).getCVRQualifiers()
881 == Qualifiers::Const) {
Eli Friedman04309752009-11-24 05:28:59 +0000882 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
Douglas Gregorcf3293e2009-11-01 20:32:48 +0000883 const VarDecl *Def = 0;
Eli Friedman04309752009-11-24 05:28:59 +0000884 if (const Expr *Init = VD->getDefinition(Def)) {
Eli Friedmanc0131182009-12-03 20:31:57 +0000885 if (APValue *V = VD->getEvaluatedValue()) {
886 if (V->isInt())
887 return Success(V->getInt(), E);
888 return Error(E->getLocStart(), diag::note_invalid_subexpr_in_ice, E);
889 }
890
891 if (VD->isEvaluatingValue())
892 return Error(E->getLocStart(), diag::note_invalid_subexpr_in_ice, E);
893
894 VD->setEvaluatingValue();
895
Douglas Gregor78d15832009-05-26 18:54:04 +0000896 if (Visit(const_cast<Expr*>(Init))) {
897 // Cache the evaluated value in the variable declaration.
Eli Friedmanc0131182009-12-03 20:31:57 +0000898 VD->setEvaluatedValue(Result);
Douglas Gregor78d15832009-05-26 18:54:04 +0000899 return true;
900 }
901
Eli Friedmanc0131182009-12-03 20:31:57 +0000902 VD->setEvaluatedValue(APValue());
Douglas Gregor78d15832009-05-26 18:54:04 +0000903 return false;
904 }
Sebastian Redlb2bc62b2009-02-08 15:51:17 +0000905 }
906 }
907
Chris Lattner4c4867e2008-07-12 00:38:25 +0000908 // Otherwise, random variable references are not constants.
Anders Carlsson0e8acbb2008-11-30 18:37:00 +0000909 return Error(E->getLocStart(), diag::note_invalid_subexpr_in_ice, E);
Chris Lattner4c4867e2008-07-12 00:38:25 +0000910}
911
Chris Lattnera4d55d82008-10-06 06:40:35 +0000912/// EvaluateBuiltinClassifyType - Evaluate __builtin_classify_type the same way
913/// as GCC.
914static int EvaluateBuiltinClassifyType(const CallExpr *E) {
915 // The following enum mimics the values returned by GCC.
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000916 // FIXME: Does GCC differ between lvalue and rvalue references here?
Chris Lattnera4d55d82008-10-06 06:40:35 +0000917 enum gcc_type_class {
918 no_type_class = -1,
919 void_type_class, integer_type_class, char_type_class,
920 enumeral_type_class, boolean_type_class,
921 pointer_type_class, reference_type_class, offset_type_class,
922 real_type_class, complex_type_class,
923 function_type_class, method_type_class,
924 record_type_class, union_type_class,
925 array_type_class, string_type_class,
926 lang_type_class
927 };
Mike Stump1eb44332009-09-09 15:08:12 +0000928
929 // If no argument was supplied, default to "no_type_class". This isn't
Chris Lattnera4d55d82008-10-06 06:40:35 +0000930 // ideal, however it is what gcc does.
931 if (E->getNumArgs() == 0)
932 return no_type_class;
Mike Stump1eb44332009-09-09 15:08:12 +0000933
Chris Lattnera4d55d82008-10-06 06:40:35 +0000934 QualType ArgTy = E->getArg(0)->getType();
935 if (ArgTy->isVoidType())
936 return void_type_class;
937 else if (ArgTy->isEnumeralType())
938 return enumeral_type_class;
939 else if (ArgTy->isBooleanType())
940 return boolean_type_class;
941 else if (ArgTy->isCharType())
942 return string_type_class; // gcc doesn't appear to use char_type_class
943 else if (ArgTy->isIntegerType())
944 return integer_type_class;
945 else if (ArgTy->isPointerType())
946 return pointer_type_class;
947 else if (ArgTy->isReferenceType())
948 return reference_type_class;
949 else if (ArgTy->isRealType())
950 return real_type_class;
951 else if (ArgTy->isComplexType())
952 return complex_type_class;
953 else if (ArgTy->isFunctionType())
954 return function_type_class;
955 else if (ArgTy->isStructureType())
956 return record_type_class;
957 else if (ArgTy->isUnionType())
958 return union_type_class;
959 else if (ArgTy->isArrayType())
960 return array_type_class;
961 else if (ArgTy->isUnionType())
962 return union_type_class;
963 else // FIXME: offset_type_class, method_type_class, & lang_type_class?
964 assert(0 && "CallExpr::isBuiltinClassifyType(): unimplemented type");
965 return -1;
966}
967
Chris Lattner4c4867e2008-07-12 00:38:25 +0000968bool IntExprEvaluator::VisitCallExpr(const CallExpr *E) {
Douglas Gregor3c385e52009-02-14 18:57:46 +0000969 switch (E->isBuiltinCall(Info.Ctx)) {
Chris Lattner019f4e82008-10-06 05:28:25 +0000970 default:
Anders Carlsson0e8acbb2008-11-30 18:37:00 +0000971 return Error(E->getLocStart(), diag::note_invalid_subexpr_in_ice, E);
Mike Stump64eda9e2009-10-26 18:35:08 +0000972
973 case Builtin::BI__builtin_object_size: {
Mike Stump64eda9e2009-10-26 18:35:08 +0000974 const Expr *Arg = E->getArg(0)->IgnoreParens();
975 Expr::EvalResult Base;
Eric Christopherb2aaf512010-01-19 22:58:35 +0000976
977 // TODO: Perhaps we should let LLVM lower this?
Mike Stump660e6f72009-10-26 23:05:19 +0000978 if (Arg->EvaluateAsAny(Base, Info.Ctx)
Mike Stump64eda9e2009-10-26 18:35:08 +0000979 && Base.Val.getKind() == APValue::LValue
980 && !Base.HasSideEffects)
981 if (const Expr *LVBase = Base.Val.getLValueBase())
982 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(LVBase)) {
983 if (const VarDecl *VD = dyn_cast<VarDecl>(DRE->getDecl())) {
Mike Stump460d1382009-10-28 21:22:24 +0000984 if (!VD->getType()->isIncompleteType()
985 && VD->getType()->isObjectType()
986 && !VD->getType()->isVariablyModifiedType()
987 && !VD->getType()->isDependentType()) {
Ken Dyck199c3d62010-01-11 17:06:35 +0000988 CharUnits Size = Info.Ctx.getTypeSizeInChars(VD->getType());
Ken Dycka7305832010-01-15 12:37:54 +0000989 CharUnits Offset = Base.Val.getLValueOffset();
Ken Dyck199c3d62010-01-11 17:06:35 +0000990 if (!Offset.isNegative() && Offset <= Size)
991 Size -= Offset;
Mike Stump460d1382009-10-28 21:22:24 +0000992 else
Ken Dyck199c3d62010-01-11 17:06:35 +0000993 Size = CharUnits::Zero();
994 return Success(Size.getQuantity(), E);
Mike Stump460d1382009-10-28 21:22:24 +0000995 }
Mike Stump64eda9e2009-10-26 18:35:08 +0000996 }
997 }
998
Eric Christopherb2aaf512010-01-19 22:58:35 +0000999 // If evaluating the argument has side-effects we can't determine
1000 // the size of the object and lower it to unknown now.
Fariborz Jahanian393c2472009-11-05 18:03:03 +00001001 if (E->getArg(0)->HasSideEffects(Info.Ctx)) {
Benjamin Kramer3f27b382010-01-03 18:18:37 +00001002 if (E->getArg(1)->EvaluateAsInt(Info.Ctx).getZExtValue() <= 1)
Chris Lattnercf184652009-11-03 19:48:51 +00001003 return Success(-1ULL, E);
Mike Stump64eda9e2009-10-26 18:35:08 +00001004 return Success(0, E);
1005 }
Mike Stumpc4c90452009-10-27 22:09:17 +00001006
Mike Stump64eda9e2009-10-26 18:35:08 +00001007 return Error(E->getLocStart(), diag::note_invalid_subexpr_in_ice, E);
1008 }
1009
Chris Lattner019f4e82008-10-06 05:28:25 +00001010 case Builtin::BI__builtin_classify_type:
Daniel Dunbar131eb432009-02-19 09:06:44 +00001011 return Success(EvaluateBuiltinClassifyType(E), E);
Mike Stump1eb44332009-09-09 15:08:12 +00001012
Anders Carlsson4bbc0e02008-11-24 04:21:33 +00001013 case Builtin::BI__builtin_constant_p:
Chris Lattner019f4e82008-10-06 05:28:25 +00001014 // __builtin_constant_p always has one operand: it returns true if that
1015 // operand can be folded, false otherwise.
Daniel Dunbar131eb432009-02-19 09:06:44 +00001016 return Success(E->getArg(0)->isEvaluatable(Info.Ctx), E);
Chris Lattner21fb98e2009-09-23 06:06:36 +00001017
1018 case Builtin::BI__builtin_eh_return_data_regno: {
1019 int Operand = E->getArg(0)->EvaluateAsInt(Info.Ctx).getZExtValue();
1020 Operand = Info.Ctx.Target.getEHDataRegisterNumber(Operand);
1021 return Success(Operand, E);
1022 }
Chris Lattner019f4e82008-10-06 05:28:25 +00001023 }
Chris Lattner4c4867e2008-07-12 00:38:25 +00001024}
Anders Carlsson650c92f2008-07-08 15:34:11 +00001025
Chris Lattnerb542afe2008-07-11 19:10:17 +00001026bool IntExprEvaluator::VisitBinaryOperator(const BinaryOperator *E) {
Eli Friedmana6afa762008-11-13 06:09:17 +00001027 if (E->getOpcode() == BinaryOperator::Comma) {
Anders Carlsson027f62e2008-12-01 02:07:06 +00001028 if (!Visit(E->getRHS()))
1029 return false;
Anders Carlsson4fdfb092008-12-01 06:44:05 +00001030
Eli Friedman33ef1452009-02-26 10:19:36 +00001031 // If we can't evaluate the LHS, it might have side effects;
1032 // conservatively mark it.
1033 if (!E->getLHS()->isEvaluatable(Info.Ctx))
1034 Info.EvalResult.HasSideEffects = true;
Eli Friedmana6afa762008-11-13 06:09:17 +00001035
Anders Carlsson027f62e2008-12-01 02:07:06 +00001036 return true;
Eli Friedmana6afa762008-11-13 06:09:17 +00001037 }
1038
1039 if (E->isLogicalOp()) {
1040 // These need to be handled specially because the operands aren't
1041 // necessarily integral
Anders Carlssonfcb4d092008-11-30 16:51:17 +00001042 bool lhsResult, rhsResult;
Mike Stump1eb44332009-09-09 15:08:12 +00001043
Anders Carlssonfcb4d092008-11-30 16:51:17 +00001044 if (HandleConversionToBool(E->getLHS(), lhsResult, Info)) {
Anders Carlsson51fe9962008-11-22 21:04:56 +00001045 // We were able to evaluate the LHS, see if we can get away with not
1046 // evaluating the RHS: 0 && X -> 0, 1 || X -> 1
Eli Friedman33ef1452009-02-26 10:19:36 +00001047 if (lhsResult == (E->getOpcode() == BinaryOperator::LOr))
Daniel Dunbar3f7d9952009-02-19 18:37:50 +00001048 return Success(lhsResult, E);
Anders Carlsson4bbc0e02008-11-24 04:21:33 +00001049
Anders Carlssonfcb4d092008-11-30 16:51:17 +00001050 if (HandleConversionToBool(E->getRHS(), rhsResult, Info)) {
Anders Carlsson4bbc0e02008-11-24 04:21:33 +00001051 if (E->getOpcode() == BinaryOperator::LOr)
Daniel Dunbar131eb432009-02-19 09:06:44 +00001052 return Success(lhsResult || rhsResult, E);
Anders Carlsson4bbc0e02008-11-24 04:21:33 +00001053 else
Daniel Dunbar131eb432009-02-19 09:06:44 +00001054 return Success(lhsResult && rhsResult, E);
Anders Carlsson4bbc0e02008-11-24 04:21:33 +00001055 }
1056 } else {
Anders Carlssonfcb4d092008-11-30 16:51:17 +00001057 if (HandleConversionToBool(E->getRHS(), rhsResult, Info)) {
Anders Carlsson4bbc0e02008-11-24 04:21:33 +00001058 // We can't evaluate the LHS; however, sometimes the result
1059 // is determined by the RHS: X && 0 -> 0, X || 1 -> 1.
Mike Stump1eb44332009-09-09 15:08:12 +00001060 if (rhsResult == (E->getOpcode() == BinaryOperator::LOr) ||
Anders Carlssonfcb4d092008-11-30 16:51:17 +00001061 !rhsResult == (E->getOpcode() == BinaryOperator::LAnd)) {
Daniel Dunbar131eb432009-02-19 09:06:44 +00001062 // Since we weren't able to evaluate the left hand side, it
Anders Carlssonfcb4d092008-11-30 16:51:17 +00001063 // must have had side effects.
1064 Info.EvalResult.HasSideEffects = true;
Daniel Dunbar131eb432009-02-19 09:06:44 +00001065
1066 return Success(rhsResult, E);
Anders Carlsson4bbc0e02008-11-24 04:21:33 +00001067 }
1068 }
Anders Carlsson51fe9962008-11-22 21:04:56 +00001069 }
Eli Friedmana6afa762008-11-13 06:09:17 +00001070
Eli Friedmana6afa762008-11-13 06:09:17 +00001071 return false;
1072 }
1073
Anders Carlsson286f85e2008-11-16 07:17:21 +00001074 QualType LHSTy = E->getLHS()->getType();
1075 QualType RHSTy = E->getRHS()->getType();
Daniel Dunbar4087e242009-01-29 06:43:41 +00001076
1077 if (LHSTy->isAnyComplexType()) {
1078 assert(RHSTy->isAnyComplexType() && "Invalid comparison");
1079 APValue LHS, RHS;
1080
1081 if (!EvaluateComplex(E->getLHS(), LHS, Info))
1082 return false;
1083
1084 if (!EvaluateComplex(E->getRHS(), RHS, Info))
1085 return false;
1086
1087 if (LHS.isComplexFloat()) {
Mike Stump1eb44332009-09-09 15:08:12 +00001088 APFloat::cmpResult CR_r =
Daniel Dunbar4087e242009-01-29 06:43:41 +00001089 LHS.getComplexFloatReal().compare(RHS.getComplexFloatReal());
Mike Stump1eb44332009-09-09 15:08:12 +00001090 APFloat::cmpResult CR_i =
Daniel Dunbar4087e242009-01-29 06:43:41 +00001091 LHS.getComplexFloatImag().compare(RHS.getComplexFloatImag());
1092
Daniel Dunbar4087e242009-01-29 06:43:41 +00001093 if (E->getOpcode() == BinaryOperator::EQ)
Daniel Dunbar131eb432009-02-19 09:06:44 +00001094 return Success((CR_r == APFloat::cmpEqual &&
1095 CR_i == APFloat::cmpEqual), E);
1096 else {
1097 assert(E->getOpcode() == BinaryOperator::NE &&
1098 "Invalid complex comparison.");
Mike Stump1eb44332009-09-09 15:08:12 +00001099 return Success(((CR_r == APFloat::cmpGreaterThan ||
Daniel Dunbar131eb432009-02-19 09:06:44 +00001100 CR_r == APFloat::cmpLessThan) &&
Mike Stump1eb44332009-09-09 15:08:12 +00001101 (CR_i == APFloat::cmpGreaterThan ||
Daniel Dunbar131eb432009-02-19 09:06:44 +00001102 CR_i == APFloat::cmpLessThan)), E);
1103 }
Daniel Dunbar4087e242009-01-29 06:43:41 +00001104 } else {
Daniel Dunbar4087e242009-01-29 06:43:41 +00001105 if (E->getOpcode() == BinaryOperator::EQ)
Daniel Dunbar131eb432009-02-19 09:06:44 +00001106 return Success((LHS.getComplexIntReal() == RHS.getComplexIntReal() &&
1107 LHS.getComplexIntImag() == RHS.getComplexIntImag()), E);
1108 else {
1109 assert(E->getOpcode() == BinaryOperator::NE &&
1110 "Invalid compex comparison.");
1111 return Success((LHS.getComplexIntReal() != RHS.getComplexIntReal() ||
1112 LHS.getComplexIntImag() != RHS.getComplexIntImag()), E);
1113 }
Daniel Dunbar4087e242009-01-29 06:43:41 +00001114 }
1115 }
Mike Stump1eb44332009-09-09 15:08:12 +00001116
Anders Carlsson286f85e2008-11-16 07:17:21 +00001117 if (LHSTy->isRealFloatingType() &&
1118 RHSTy->isRealFloatingType()) {
1119 APFloat RHS(0.0), LHS(0.0);
Mike Stump1eb44332009-09-09 15:08:12 +00001120
Anders Carlsson286f85e2008-11-16 07:17:21 +00001121 if (!EvaluateFloat(E->getRHS(), RHS, Info))
1122 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00001123
Anders Carlsson286f85e2008-11-16 07:17:21 +00001124 if (!EvaluateFloat(E->getLHS(), LHS, Info))
1125 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00001126
Anders Carlsson286f85e2008-11-16 07:17:21 +00001127 APFloat::cmpResult CR = LHS.compare(RHS);
Anders Carlsson529569e2008-11-16 22:46:56 +00001128
Anders Carlsson286f85e2008-11-16 07:17:21 +00001129 switch (E->getOpcode()) {
1130 default:
1131 assert(0 && "Invalid binary operator!");
1132 case BinaryOperator::LT:
Daniel Dunbar131eb432009-02-19 09:06:44 +00001133 return Success(CR == APFloat::cmpLessThan, E);
Anders Carlsson286f85e2008-11-16 07:17:21 +00001134 case BinaryOperator::GT:
Daniel Dunbar131eb432009-02-19 09:06:44 +00001135 return Success(CR == APFloat::cmpGreaterThan, E);
Anders Carlsson286f85e2008-11-16 07:17:21 +00001136 case BinaryOperator::LE:
Daniel Dunbar131eb432009-02-19 09:06:44 +00001137 return Success(CR == APFloat::cmpLessThan || CR == APFloat::cmpEqual, E);
Anders Carlsson286f85e2008-11-16 07:17:21 +00001138 case BinaryOperator::GE:
Mike Stump1eb44332009-09-09 15:08:12 +00001139 return Success(CR == APFloat::cmpGreaterThan || CR == APFloat::cmpEqual,
Daniel Dunbar131eb432009-02-19 09:06:44 +00001140 E);
Anders Carlsson286f85e2008-11-16 07:17:21 +00001141 case BinaryOperator::EQ:
Daniel Dunbar131eb432009-02-19 09:06:44 +00001142 return Success(CR == APFloat::cmpEqual, E);
Anders Carlsson286f85e2008-11-16 07:17:21 +00001143 case BinaryOperator::NE:
Mike Stump1eb44332009-09-09 15:08:12 +00001144 return Success(CR == APFloat::cmpGreaterThan
Daniel Dunbar131eb432009-02-19 09:06:44 +00001145 || CR == APFloat::cmpLessThan, E);
Anders Carlsson286f85e2008-11-16 07:17:21 +00001146 }
Anders Carlsson286f85e2008-11-16 07:17:21 +00001147 }
Mike Stump1eb44332009-09-09 15:08:12 +00001148
Eli Friedmanad02d7d2009-04-28 19:17:36 +00001149 if (LHSTy->isPointerType() && RHSTy->isPointerType()) {
1150 if (E->getOpcode() == BinaryOperator::Sub || E->isEqualityOp()) {
Anders Carlsson3068d112008-11-16 19:01:22 +00001151 APValue LHSValue;
1152 if (!EvaluatePointer(E->getLHS(), LHSValue, Info))
1153 return false;
Eli Friedmana1f47c42009-03-23 04:38:34 +00001154
Anders Carlsson3068d112008-11-16 19:01:22 +00001155 APValue RHSValue;
1156 if (!EvaluatePointer(E->getRHS(), RHSValue, Info))
1157 return false;
Eli Friedmana1f47c42009-03-23 04:38:34 +00001158
Eli Friedman5bc86102009-06-14 02:17:33 +00001159 // Reject any bases from the normal codepath; we special-case comparisons
1160 // to null.
1161 if (LHSValue.getLValueBase()) {
1162 if (!E->isEqualityOp())
1163 return false;
Ken Dycka7305832010-01-15 12:37:54 +00001164 if (RHSValue.getLValueBase() || !RHSValue.getLValueOffset().isZero())
Eli Friedman5bc86102009-06-14 02:17:33 +00001165 return false;
1166 bool bres;
1167 if (!EvalPointerValueAsBool(LHSValue, bres))
1168 return false;
1169 return Success(bres ^ (E->getOpcode() == BinaryOperator::EQ), E);
1170 } else if (RHSValue.getLValueBase()) {
1171 if (!E->isEqualityOp())
1172 return false;
Ken Dycka7305832010-01-15 12:37:54 +00001173 if (LHSValue.getLValueBase() || !LHSValue.getLValueOffset().isZero())
Eli Friedman5bc86102009-06-14 02:17:33 +00001174 return false;
1175 bool bres;
1176 if (!EvalPointerValueAsBool(RHSValue, bres))
1177 return false;
1178 return Success(bres ^ (E->getOpcode() == BinaryOperator::EQ), E);
1179 }
Eli Friedmana1f47c42009-03-23 04:38:34 +00001180
Eli Friedmanad02d7d2009-04-28 19:17:36 +00001181 if (E->getOpcode() == BinaryOperator::Sub) {
1182 const QualType Type = E->getLHS()->getType();
Ted Kremenek6217b802009-07-29 21:53:49 +00001183 const QualType ElementType = Type->getAs<PointerType>()->getPointeeType();
Anders Carlsson3068d112008-11-16 19:01:22 +00001184
Ken Dycka7305832010-01-15 12:37:54 +00001185 CharUnits ElementSize = CharUnits::One();
Eli Friedmance1bca72009-06-04 20:23:20 +00001186 if (!ElementType->isVoidType() && !ElementType->isFunctionType())
Ken Dycka7305832010-01-15 12:37:54 +00001187 ElementSize = Info.Ctx.getTypeSizeInChars(ElementType);
Eli Friedmana1f47c42009-03-23 04:38:34 +00001188
Ken Dycka7305832010-01-15 12:37:54 +00001189 CharUnits Diff = LHSValue.getLValueOffset() -
1190 RHSValue.getLValueOffset();
1191 return Success(Diff / ElementSize, E);
Eli Friedmanad02d7d2009-04-28 19:17:36 +00001192 }
1193 bool Result;
1194 if (E->getOpcode() == BinaryOperator::EQ) {
1195 Result = LHSValue.getLValueOffset() == RHSValue.getLValueOffset();
Eli Friedman267c0ab2009-04-29 20:29:43 +00001196 } else {
Eli Friedmanad02d7d2009-04-28 19:17:36 +00001197 Result = LHSValue.getLValueOffset() != RHSValue.getLValueOffset();
1198 }
1199 return Success(Result, E);
Anders Carlsson3068d112008-11-16 19:01:22 +00001200 }
1201 }
Anders Carlsson286f85e2008-11-16 07:17:21 +00001202 if (!LHSTy->isIntegralType() ||
1203 !RHSTy->isIntegralType()) {
Eli Friedmana6afa762008-11-13 06:09:17 +00001204 // We can't continue from here for non-integral types, and they
1205 // could potentially confuse the following operations.
Eli Friedmana6afa762008-11-13 06:09:17 +00001206 return false;
1207 }
1208
Anders Carlssona25ae3d2008-07-08 14:35:21 +00001209 // The LHS of a constant expr is always evaluated and needed.
Daniel Dunbar30c37f42009-02-19 20:17:33 +00001210 if (!Visit(E->getLHS()))
Chris Lattner54176fd2008-07-12 00:14:42 +00001211 return false; // error in subexpression.
Eli Friedmand9f4bcd2008-07-27 05:46:18 +00001212
Eli Friedman42edd0d2009-03-24 01:14:50 +00001213 APValue RHSVal;
1214 if (!EvaluateIntegerOrLValue(E->getRHS(), RHSVal, Info))
Daniel Dunbar30c37f42009-02-19 20:17:33 +00001215 return false;
Eli Friedman42edd0d2009-03-24 01:14:50 +00001216
1217 // Handle cases like (unsigned long)&a + 4.
1218 if (E->isAdditiveOp() && Result.isLValue() && RHSVal.isInt()) {
Ken Dycka7305832010-01-15 12:37:54 +00001219 CharUnits Offset = Result.getLValueOffset();
1220 CharUnits AdditionalOffset = CharUnits::fromQuantity(
1221 RHSVal.getInt().getZExtValue());
Eli Friedman42edd0d2009-03-24 01:14:50 +00001222 if (E->getOpcode() == BinaryOperator::Add)
Ken Dycka7305832010-01-15 12:37:54 +00001223 Offset += AdditionalOffset;
Eli Friedman42edd0d2009-03-24 01:14:50 +00001224 else
Ken Dycka7305832010-01-15 12:37:54 +00001225 Offset -= AdditionalOffset;
1226 Result = APValue(Result.getLValueBase(), Offset);
Eli Friedman42edd0d2009-03-24 01:14:50 +00001227 return true;
1228 }
1229
1230 // Handle cases like 4 + (unsigned long)&a
1231 if (E->getOpcode() == BinaryOperator::Add &&
1232 RHSVal.isLValue() && Result.isInt()) {
Ken Dycka7305832010-01-15 12:37:54 +00001233 CharUnits Offset = RHSVal.getLValueOffset();
1234 Offset += CharUnits::fromQuantity(Result.getInt().getZExtValue());
1235 Result = APValue(RHSVal.getLValueBase(), Offset);
Eli Friedman42edd0d2009-03-24 01:14:50 +00001236 return true;
1237 }
1238
1239 // All the following cases expect both operands to be an integer
1240 if (!Result.isInt() || !RHSVal.isInt())
Chris Lattnerb542afe2008-07-11 19:10:17 +00001241 return false;
Eli Friedmana6afa762008-11-13 06:09:17 +00001242
Eli Friedman42edd0d2009-03-24 01:14:50 +00001243 APSInt& RHS = RHSVal.getInt();
1244
Anders Carlssona25ae3d2008-07-08 14:35:21 +00001245 switch (E->getOpcode()) {
Chris Lattner32fea9d2008-11-12 07:43:42 +00001246 default:
Anders Carlsson0e8acbb2008-11-30 18:37:00 +00001247 return Error(E->getOperatorLoc(), diag::note_invalid_subexpr_in_ice, E);
Daniel Dunbar30c37f42009-02-19 20:17:33 +00001248 case BinaryOperator::Mul: return Success(Result.getInt() * RHS, E);
1249 case BinaryOperator::Add: return Success(Result.getInt() + RHS, E);
1250 case BinaryOperator::Sub: return Success(Result.getInt() - RHS, E);
1251 case BinaryOperator::And: return Success(Result.getInt() & RHS, E);
1252 case BinaryOperator::Xor: return Success(Result.getInt() ^ RHS, E);
1253 case BinaryOperator::Or: return Success(Result.getInt() | RHS, E);
Chris Lattner75a48812008-07-11 22:15:16 +00001254 case BinaryOperator::Div:
Chris Lattner54176fd2008-07-12 00:14:42 +00001255 if (RHS == 0)
Anders Carlsson0e8acbb2008-11-30 18:37:00 +00001256 return Error(E->getOperatorLoc(), diag::note_expr_divide_by_zero, E);
Daniel Dunbar30c37f42009-02-19 20:17:33 +00001257 return Success(Result.getInt() / RHS, E);
Chris Lattner75a48812008-07-11 22:15:16 +00001258 case BinaryOperator::Rem:
Chris Lattner54176fd2008-07-12 00:14:42 +00001259 if (RHS == 0)
Anders Carlsson0e8acbb2008-11-30 18:37:00 +00001260 return Error(E->getOperatorLoc(), diag::note_expr_divide_by_zero, E);
Daniel Dunbar30c37f42009-02-19 20:17:33 +00001261 return Success(Result.getInt() % RHS, E);
Daniel Dunbar3f7d9952009-02-19 18:37:50 +00001262 case BinaryOperator::Shl: {
Chris Lattner54176fd2008-07-12 00:14:42 +00001263 // FIXME: Warn about out of range shift amounts!
Mike Stump1eb44332009-09-09 15:08:12 +00001264 unsigned SA =
Daniel Dunbar30c37f42009-02-19 20:17:33 +00001265 (unsigned) RHS.getLimitedValue(Result.getInt().getBitWidth()-1);
1266 return Success(Result.getInt() << SA, E);
Daniel Dunbar3f7d9952009-02-19 18:37:50 +00001267 }
1268 case BinaryOperator::Shr: {
Mike Stump1eb44332009-09-09 15:08:12 +00001269 unsigned SA =
Daniel Dunbar30c37f42009-02-19 20:17:33 +00001270 (unsigned) RHS.getLimitedValue(Result.getInt().getBitWidth()-1);
1271 return Success(Result.getInt() >> SA, E);
Daniel Dunbar3f7d9952009-02-19 18:37:50 +00001272 }
Mike Stump1eb44332009-09-09 15:08:12 +00001273
Daniel Dunbar30c37f42009-02-19 20:17:33 +00001274 case BinaryOperator::LT: return Success(Result.getInt() < RHS, E);
1275 case BinaryOperator::GT: return Success(Result.getInt() > RHS, E);
1276 case BinaryOperator::LE: return Success(Result.getInt() <= RHS, E);
1277 case BinaryOperator::GE: return Success(Result.getInt() >= RHS, E);
1278 case BinaryOperator::EQ: return Success(Result.getInt() == RHS, E);
1279 case BinaryOperator::NE: return Success(Result.getInt() != RHS, E);
Eli Friedmanb11e7782008-11-13 02:13:11 +00001280 }
Anders Carlssona25ae3d2008-07-08 14:35:21 +00001281}
1282
Nuno Lopesca7c2ea2008-11-16 19:28:31 +00001283bool IntExprEvaluator::VisitConditionalOperator(const ConditionalOperator *E) {
Nuno Lopesa25bd552008-11-16 22:06:39 +00001284 bool Cond;
1285 if (!HandleConversionToBool(E->getCond(), Cond, Info))
Nuno Lopesca7c2ea2008-11-16 19:28:31 +00001286 return false;
1287
Nuno Lopesa25bd552008-11-16 22:06:39 +00001288 return Visit(Cond ? E->getTrueExpr() : E->getFalseExpr());
Nuno Lopesca7c2ea2008-11-16 19:28:31 +00001289}
1290
Ken Dyck8b752f12010-01-27 17:10:57 +00001291CharUnits IntExprEvaluator::GetAlignOfType(QualType T) {
Sebastian Redl5d484e82009-11-23 17:18:46 +00001292 // C++ [expr.sizeof]p2: "When applied to a reference or a reference type,
1293 // the result is the size of the referenced type."
1294 // C++ [expr.alignof]p3: "When alignof is applied to a reference type, the
1295 // result shall be the alignment of the referenced type."
1296 if (const ReferenceType *Ref = T->getAs<ReferenceType>())
1297 T = Ref->getPointeeType();
1298
Chris Lattnere9feb472009-01-24 21:09:06 +00001299 // Get information about the alignment.
1300 unsigned CharSize = Info.Ctx.Target.getCharWidth();
Douglas Gregor18857642009-04-30 17:32:17 +00001301
Eli Friedman2be58612009-05-30 21:09:44 +00001302 // __alignof is defined to return the preferred alignment.
Ken Dyck8b752f12010-01-27 17:10:57 +00001303 return CharUnits::fromQuantity(
1304 Info.Ctx.getPreferredTypeAlign(T.getTypePtr()) / CharSize);
Chris Lattnere9feb472009-01-24 21:09:06 +00001305}
1306
Ken Dyck8b752f12010-01-27 17:10:57 +00001307CharUnits IntExprEvaluator::GetAlignOfExpr(const Expr *E) {
Chris Lattneraf707ab2009-01-24 21:53:27 +00001308 E = E->IgnoreParens();
1309
1310 // alignof decl is always accepted, even if it doesn't make sense: we default
Mike Stump1eb44332009-09-09 15:08:12 +00001311 // to 1 in those cases.
Chris Lattneraf707ab2009-01-24 21:53:27 +00001312 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E))
Ken Dyck8b752f12010-01-27 17:10:57 +00001313 return Info.Ctx.getDeclAlign(DRE->getDecl(),
1314 /*RefAsPointee*/true);
Eli Friedmana1f47c42009-03-23 04:38:34 +00001315
Chris Lattneraf707ab2009-01-24 21:53:27 +00001316 if (const MemberExpr *ME = dyn_cast<MemberExpr>(E))
Ken Dyck8b752f12010-01-27 17:10:57 +00001317 return Info.Ctx.getDeclAlign(ME->getMemberDecl(),
1318 /*RefAsPointee*/true);
Chris Lattneraf707ab2009-01-24 21:53:27 +00001319
Chris Lattnere9feb472009-01-24 21:09:06 +00001320 return GetAlignOfType(E->getType());
1321}
1322
1323
Sebastian Redl05189992008-11-11 17:56:53 +00001324/// VisitSizeAlignOfExpr - Evaluate a sizeof or alignof with a result as the
1325/// expression's type.
1326bool IntExprEvaluator::VisitSizeOfAlignOfExpr(const SizeOfAlignOfExpr *E) {
Chris Lattnere9feb472009-01-24 21:09:06 +00001327 // Handle alignof separately.
1328 if (!E->isSizeOf()) {
1329 if (E->isArgumentType())
Ken Dyck8b752f12010-01-27 17:10:57 +00001330 return Success(GetAlignOfType(E->getArgumentType()).getQuantity(), E);
Chris Lattnere9feb472009-01-24 21:09:06 +00001331 else
Ken Dyck8b752f12010-01-27 17:10:57 +00001332 return Success(GetAlignOfExpr(E->getArgumentExpr()).getQuantity(), E);
Chris Lattnere9feb472009-01-24 21:09:06 +00001333 }
Eli Friedmana1f47c42009-03-23 04:38:34 +00001334
Sebastian Redl05189992008-11-11 17:56:53 +00001335 QualType SrcTy = E->getTypeOfArgument();
Sebastian Redl5d484e82009-11-23 17:18:46 +00001336 // C++ [expr.sizeof]p2: "When applied to a reference or a reference type,
1337 // the result is the size of the referenced type."
1338 // C++ [expr.alignof]p3: "When alignof is applied to a reference type, the
1339 // result shall be the alignment of the referenced type."
1340 if (const ReferenceType *Ref = SrcTy->getAs<ReferenceType>())
1341 SrcTy = Ref->getPointeeType();
Sebastian Redl05189992008-11-11 17:56:53 +00001342
Daniel Dunbar131eb432009-02-19 09:06:44 +00001343 // sizeof(void), __alignof__(void), sizeof(function) = 1 as a gcc
1344 // extension.
1345 if (SrcTy->isVoidType() || SrcTy->isFunctionType())
1346 return Success(1, E);
Eli Friedmana1f47c42009-03-23 04:38:34 +00001347
Chris Lattnerfcee0012008-07-11 21:24:13 +00001348 // sizeof(vla) is not a constantexpr: C99 6.5.3.4p2.
Chris Lattnere9feb472009-01-24 21:09:06 +00001349 if (!SrcTy->isConstantSizeType())
Chris Lattnerfcee0012008-07-11 21:24:13 +00001350 return false;
Eli Friedmanf2da9df2009-01-24 22:19:05 +00001351
Chris Lattnere9feb472009-01-24 21:09:06 +00001352 // Get information about the size.
Ken Dyck199c3d62010-01-11 17:06:35 +00001353 return Success(Info.Ctx.getTypeSizeInChars(SrcTy).getQuantity(), E);
Chris Lattnerfcee0012008-07-11 21:24:13 +00001354}
1355
Chris Lattnerb542afe2008-07-11 19:10:17 +00001356bool IntExprEvaluator::VisitUnaryOperator(const UnaryOperator *E) {
Chris Lattner4c4867e2008-07-12 00:38:25 +00001357 // Special case unary operators that do not need their subexpression
1358 // evaluated. offsetof/sizeof/alignof are all special.
Eli Friedman35183ac2009-02-27 06:44:11 +00001359 if (E->isOffsetOfOp()) {
1360 // The AST for offsetof is defined in such a way that we can just
1361 // directly Evaluate it as an l-value.
1362 APValue LV;
1363 if (!EvaluateLValue(E->getSubExpr(), LV, Info))
1364 return false;
1365 if (LV.getLValueBase())
1366 return false;
Ken Dycka7305832010-01-15 12:37:54 +00001367 return Success(LV.getLValueOffset().getQuantity(), E);
Eli Friedman35183ac2009-02-27 06:44:11 +00001368 }
Eli Friedmana6afa762008-11-13 06:09:17 +00001369
1370 if (E->getOpcode() == UnaryOperator::LNot) {
1371 // LNot's operand isn't necessarily an integer, so we handle it specially.
1372 bool bres;
1373 if (!HandleConversionToBool(E->getSubExpr(), bres, Info))
1374 return false;
Daniel Dunbar131eb432009-02-19 09:06:44 +00001375 return Success(!bres, E);
Eli Friedmana6afa762008-11-13 06:09:17 +00001376 }
1377
Daniel Dunbar4fff4812009-02-21 18:14:20 +00001378 // Only handle integral operations...
1379 if (!E->getSubExpr()->getType()->isIntegralType())
1380 return false;
1381
Chris Lattner87eae5e2008-07-11 22:52:41 +00001382 // Get the operand value into 'Result'.
1383 if (!Visit(E->getSubExpr()))
Chris Lattner75a48812008-07-11 22:15:16 +00001384 return false;
Anders Carlssona25ae3d2008-07-08 14:35:21 +00001385
Chris Lattner75a48812008-07-11 22:15:16 +00001386 switch (E->getOpcode()) {
Chris Lattner4c4867e2008-07-12 00:38:25 +00001387 default:
Chris Lattner75a48812008-07-11 22:15:16 +00001388 // Address, indirect, pre/post inc/dec, etc are not valid constant exprs.
1389 // See C99 6.6p3.
Anders Carlsson0e8acbb2008-11-30 18:37:00 +00001390 return Error(E->getOperatorLoc(), diag::note_invalid_subexpr_in_ice, E);
Chris Lattner75a48812008-07-11 22:15:16 +00001391 case UnaryOperator::Extension:
Chris Lattner4c4867e2008-07-12 00:38:25 +00001392 // FIXME: Should extension allow i-c-e extension expressions in its scope?
1393 // If so, we could clear the diagnostic ID.
Daniel Dunbar3f7d9952009-02-19 18:37:50 +00001394 return true;
Chris Lattner75a48812008-07-11 22:15:16 +00001395 case UnaryOperator::Plus:
Mike Stump1eb44332009-09-09 15:08:12 +00001396 // The result is always just the subexpr.
Daniel Dunbar3f7d9952009-02-19 18:37:50 +00001397 return true;
Chris Lattner75a48812008-07-11 22:15:16 +00001398 case UnaryOperator::Minus:
Daniel Dunbar30c37f42009-02-19 20:17:33 +00001399 if (!Result.isInt()) return false;
1400 return Success(-Result.getInt(), E);
Chris Lattner75a48812008-07-11 22:15:16 +00001401 case UnaryOperator::Not:
Daniel Dunbar30c37f42009-02-19 20:17:33 +00001402 if (!Result.isInt()) return false;
1403 return Success(~Result.getInt(), E);
Anders Carlssona25ae3d2008-07-08 14:35:21 +00001404 }
Anders Carlssona25ae3d2008-07-08 14:35:21 +00001405}
Mike Stump1eb44332009-09-09 15:08:12 +00001406
Chris Lattner732b2232008-07-12 01:15:53 +00001407/// HandleCast - This is used to evaluate implicit or explicit casts where the
1408/// result type is integer.
Daniel Dunbara2cfd342009-01-29 06:16:07 +00001409bool IntExprEvaluator::VisitCastExpr(CastExpr *E) {
Anders Carlsson82206e22008-11-30 18:14:57 +00001410 Expr *SubExpr = E->getSubExpr();
1411 QualType DestType = E->getType();
Daniel Dunbarb92dac82009-02-19 22:16:29 +00001412 QualType SrcType = SubExpr->getType();
Anders Carlsson82206e22008-11-30 18:14:57 +00001413
Eli Friedman4efaa272008-11-12 09:44:48 +00001414 if (DestType->isBooleanType()) {
1415 bool BoolResult;
1416 if (!HandleConversionToBool(SubExpr, BoolResult, Info))
1417 return false;
Daniel Dunbar131eb432009-02-19 09:06:44 +00001418 return Success(BoolResult, E);
Eli Friedman4efaa272008-11-12 09:44:48 +00001419 }
1420
Anders Carlssona25ae3d2008-07-08 14:35:21 +00001421 // Handle simple integer->integer casts.
Daniel Dunbarb92dac82009-02-19 22:16:29 +00001422 if (SrcType->isIntegralType()) {
Chris Lattner732b2232008-07-12 01:15:53 +00001423 if (!Visit(SubExpr))
Chris Lattnerb542afe2008-07-11 19:10:17 +00001424 return false;
Daniel Dunbara2cfd342009-01-29 06:16:07 +00001425
Eli Friedmanbe265702009-02-20 01:15:07 +00001426 if (!Result.isInt()) {
1427 // Only allow casts of lvalues if they are lossless.
1428 return Info.Ctx.getTypeSize(DestType) == Info.Ctx.getTypeSize(SrcType);
1429 }
Daniel Dunbar30c37f42009-02-19 20:17:33 +00001430
Daniel Dunbardd211642009-02-19 22:24:01 +00001431 return Success(HandleIntToIntCast(DestType, SrcType,
Daniel Dunbar30c37f42009-02-19 20:17:33 +00001432 Result.getInt(), Info.Ctx), E);
Chris Lattner732b2232008-07-12 01:15:53 +00001433 }
Mike Stump1eb44332009-09-09 15:08:12 +00001434
Chris Lattner732b2232008-07-12 01:15:53 +00001435 // FIXME: Clean this up!
Daniel Dunbarb92dac82009-02-19 22:16:29 +00001436 if (SrcType->isPointerType()) {
Anders Carlssona25ae3d2008-07-08 14:35:21 +00001437 APValue LV;
Chris Lattner87eae5e2008-07-11 22:52:41 +00001438 if (!EvaluatePointer(SubExpr, LV, Info))
Chris Lattnerb542afe2008-07-11 19:10:17 +00001439 return false;
Eli Friedman4efaa272008-11-12 09:44:48 +00001440
Daniel Dunbardd211642009-02-19 22:24:01 +00001441 if (LV.getLValueBase()) {
1442 // Only allow based lvalue casts if they are lossless.
1443 if (Info.Ctx.getTypeSize(DestType) != Info.Ctx.getTypeSize(SrcType))
1444 return false;
Eli Friedman4efaa272008-11-12 09:44:48 +00001445
Daniel Dunbardd211642009-02-19 22:24:01 +00001446 Result = LV;
1447 return true;
1448 }
1449
Ken Dycka7305832010-01-15 12:37:54 +00001450 APSInt AsInt = Info.Ctx.MakeIntValue(LV.getLValueOffset().getQuantity(),
1451 SrcType);
Daniel Dunbardd211642009-02-19 22:24:01 +00001452 return Success(HandleIntToIntCast(DestType, SrcType, AsInt, Info.Ctx), E);
Anders Carlsson2bad1682008-07-08 14:30:00 +00001453 }
Eli Friedman4efaa272008-11-12 09:44:48 +00001454
Eli Friedmanbe265702009-02-20 01:15:07 +00001455 if (SrcType->isArrayType() || SrcType->isFunctionType()) {
1456 // This handles double-conversion cases, where there's both
1457 // an l-value promotion and an implicit conversion to int.
1458 APValue LV;
1459 if (!EvaluateLValue(SubExpr, LV, Info))
1460 return false;
1461
1462 if (Info.Ctx.getTypeSize(DestType) != Info.Ctx.getTypeSize(Info.Ctx.VoidPtrTy))
1463 return false;
1464
1465 Result = LV;
1466 return true;
1467 }
1468
Eli Friedman1725f682009-04-22 19:23:09 +00001469 if (SrcType->isAnyComplexType()) {
1470 APValue C;
1471 if (!EvaluateComplex(SubExpr, C, Info))
1472 return false;
1473 if (C.isComplexFloat())
1474 return Success(HandleFloatToIntCast(DestType, SrcType,
1475 C.getComplexFloatReal(), Info.Ctx),
1476 E);
1477 else
1478 return Success(HandleIntToIntCast(DestType, SrcType,
1479 C.getComplexIntReal(), Info.Ctx), E);
1480 }
Eli Friedman2217c872009-02-22 11:46:18 +00001481 // FIXME: Handle vectors
1482
Daniel Dunbarb92dac82009-02-19 22:16:29 +00001483 if (!SrcType->isRealFloatingType())
Anders Carlsson0e8acbb2008-11-30 18:37:00 +00001484 return Error(E->getExprLoc(), diag::note_invalid_subexpr_in_ice, E);
Chris Lattner732b2232008-07-12 01:15:53 +00001485
Eli Friedmand8bfe7f2008-08-22 00:06:13 +00001486 APFloat F(0.0);
1487 if (!EvaluateFloat(SubExpr, F, Info))
Anders Carlsson0e8acbb2008-11-30 18:37:00 +00001488 return Error(E->getExprLoc(), diag::note_invalid_subexpr_in_ice, E);
Mike Stump1eb44332009-09-09 15:08:12 +00001489
Daniel Dunbarb92dac82009-02-19 22:16:29 +00001490 return Success(HandleFloatToIntCast(DestType, SrcType, F, Info.Ctx), E);
Anders Carlssona25ae3d2008-07-08 14:35:21 +00001491}
Anders Carlsson2bad1682008-07-08 14:30:00 +00001492
Eli Friedman722c7172009-02-28 03:59:05 +00001493bool IntExprEvaluator::VisitUnaryReal(const UnaryOperator *E) {
1494 if (E->getSubExpr()->getType()->isAnyComplexType()) {
1495 APValue LV;
1496 if (!EvaluateComplex(E->getSubExpr(), LV, Info) || !LV.isComplexInt())
1497 return Error(E->getExprLoc(), diag::note_invalid_subexpr_in_ice, E);
1498 return Success(LV.getComplexIntReal(), E);
1499 }
1500
1501 return Visit(E->getSubExpr());
1502}
1503
Eli Friedman664a1042009-02-27 04:45:43 +00001504bool IntExprEvaluator::VisitUnaryImag(const UnaryOperator *E) {
Eli Friedman722c7172009-02-28 03:59:05 +00001505 if (E->getSubExpr()->getType()->isComplexIntegerType()) {
1506 APValue LV;
1507 if (!EvaluateComplex(E->getSubExpr(), LV, Info) || !LV.isComplexInt())
1508 return Error(E->getExprLoc(), diag::note_invalid_subexpr_in_ice, E);
1509 return Success(LV.getComplexIntImag(), E);
1510 }
1511
Eli Friedman664a1042009-02-27 04:45:43 +00001512 if (!E->getSubExpr()->isEvaluatable(Info.Ctx))
1513 Info.EvalResult.HasSideEffects = true;
1514 return Success(0, E);
1515}
1516
Chris Lattnerf5eeb052008-07-11 18:11:29 +00001517//===----------------------------------------------------------------------===//
Eli Friedmand8bfe7f2008-08-22 00:06:13 +00001518// Float Evaluation
1519//===----------------------------------------------------------------------===//
1520
1521namespace {
Benjamin Kramer770b4a82009-11-28 19:03:38 +00001522class FloatExprEvaluator
Eli Friedmand8bfe7f2008-08-22 00:06:13 +00001523 : public StmtVisitor<FloatExprEvaluator, bool> {
1524 EvalInfo &Info;
1525 APFloat &Result;
1526public:
1527 FloatExprEvaluator(EvalInfo &info, APFloat &result)
1528 : Info(info), Result(result) {}
1529
1530 bool VisitStmt(Stmt *S) {
1531 return false;
1532 }
1533
1534 bool VisitParenExpr(ParenExpr *E) { return Visit(E->getSubExpr()); }
Chris Lattner019f4e82008-10-06 05:28:25 +00001535 bool VisitCallExpr(const CallExpr *E);
Eli Friedmand8bfe7f2008-08-22 00:06:13 +00001536
Daniel Dunbar5db4b3f2008-10-16 03:51:50 +00001537 bool VisitUnaryOperator(const UnaryOperator *E);
Eli Friedmand8bfe7f2008-08-22 00:06:13 +00001538 bool VisitBinaryOperator(const BinaryOperator *E);
1539 bool VisitFloatingLiteral(const FloatingLiteral *E);
Eli Friedman4efaa272008-11-12 09:44:48 +00001540 bool VisitCastExpr(CastExpr *E);
1541 bool VisitCXXZeroInitValueExpr(CXXZeroInitValueExpr *E);
Eli Friedman67f85fc2009-12-04 02:12:53 +00001542 bool VisitConditionalOperator(ConditionalOperator *E);
Eli Friedman2217c872009-02-22 11:46:18 +00001543
Eli Friedmanba98d6b2009-03-23 04:56:01 +00001544 bool VisitChooseExpr(const ChooseExpr *E)
1545 { return Visit(E->getChosenSubExpr(Info.Ctx)); }
1546 bool VisitUnaryExtension(const UnaryOperator *E)
1547 { return Visit(E->getSubExpr()); }
1548
1549 // FIXME: Missing: __real__/__imag__, array subscript of vector,
Eli Friedman67f85fc2009-12-04 02:12:53 +00001550 // member of vector, ImplicitValueInitExpr
Eli Friedmand8bfe7f2008-08-22 00:06:13 +00001551};
1552} // end anonymous namespace
1553
1554static bool EvaluateFloat(const Expr* E, APFloat& Result, EvalInfo &Info) {
1555 return FloatExprEvaluator(Info, Result).Visit(const_cast<Expr*>(E));
1556}
1557
Chris Lattner019f4e82008-10-06 05:28:25 +00001558bool FloatExprEvaluator::VisitCallExpr(const CallExpr *E) {
Douglas Gregor3c385e52009-02-14 18:57:46 +00001559 switch (E->isBuiltinCall(Info.Ctx)) {
Chris Lattner34a74ab2008-10-06 05:53:16 +00001560 default: return false;
Chris Lattner019f4e82008-10-06 05:28:25 +00001561 case Builtin::BI__builtin_huge_val:
1562 case Builtin::BI__builtin_huge_valf:
1563 case Builtin::BI__builtin_huge_vall:
1564 case Builtin::BI__builtin_inf:
1565 case Builtin::BI__builtin_inff:
Daniel Dunbar7cbed032008-10-14 05:41:12 +00001566 case Builtin::BI__builtin_infl: {
1567 const llvm::fltSemantics &Sem =
1568 Info.Ctx.getFloatTypeSemantics(E->getType());
Chris Lattner34a74ab2008-10-06 05:53:16 +00001569 Result = llvm::APFloat::getInf(Sem);
1570 return true;
Daniel Dunbar7cbed032008-10-14 05:41:12 +00001571 }
Mike Stump1eb44332009-09-09 15:08:12 +00001572
Chris Lattner9e621712008-10-06 06:31:58 +00001573 case Builtin::BI__builtin_nan:
1574 case Builtin::BI__builtin_nanf:
1575 case Builtin::BI__builtin_nanl:
Mike Stump4572bab2009-05-30 03:56:50 +00001576 // If this is __builtin_nan() turn this into a nan, otherwise we
Chris Lattner9e621712008-10-06 06:31:58 +00001577 // can't constant fold it.
Mike Stump1eb44332009-09-09 15:08:12 +00001578 if (const StringLiteral *S =
Chris Lattner9e621712008-10-06 06:31:58 +00001579 dyn_cast<StringLiteral>(E->getArg(0)->IgnoreParenCasts())) {
Mike Stump4572bab2009-05-30 03:56:50 +00001580 if (!S->isWide()) {
Daniel Dunbar7cbed032008-10-14 05:41:12 +00001581 const llvm::fltSemantics &Sem =
1582 Info.Ctx.getFloatTypeSemantics(E->getType());
Benjamin Kramer33035802009-12-11 13:26:32 +00001583 unsigned Type = 0;
1584 if (!S->getString().empty() && S->getString().getAsInteger(0, Type))
Mike Stump4572bab2009-05-30 03:56:50 +00001585 return false;
Benjamin Kramer33035802009-12-11 13:26:32 +00001586 Result = llvm::APFloat::getNaN(Sem, false, Type);
Chris Lattner9e621712008-10-06 06:31:58 +00001587 return true;
1588 }
1589 }
1590 return false;
Daniel Dunbar5db4b3f2008-10-16 03:51:50 +00001591
1592 case Builtin::BI__builtin_fabs:
1593 case Builtin::BI__builtin_fabsf:
1594 case Builtin::BI__builtin_fabsl:
1595 if (!EvaluateFloat(E->getArg(0), Result, Info))
1596 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00001597
Daniel Dunbar5db4b3f2008-10-16 03:51:50 +00001598 if (Result.isNegative())
1599 Result.changeSign();
1600 return true;
1601
Mike Stump1eb44332009-09-09 15:08:12 +00001602 case Builtin::BI__builtin_copysign:
1603 case Builtin::BI__builtin_copysignf:
Daniel Dunbar5db4b3f2008-10-16 03:51:50 +00001604 case Builtin::BI__builtin_copysignl: {
1605 APFloat RHS(0.);
1606 if (!EvaluateFloat(E->getArg(0), Result, Info) ||
1607 !EvaluateFloat(E->getArg(1), RHS, Info))
1608 return false;
1609 Result.copySign(RHS);
1610 return true;
1611 }
Chris Lattner019f4e82008-10-06 05:28:25 +00001612 }
1613}
1614
Daniel Dunbar5db4b3f2008-10-16 03:51:50 +00001615bool FloatExprEvaluator::VisitUnaryOperator(const UnaryOperator *E) {
Nuno Lopesa468d342008-11-19 17:44:31 +00001616 if (E->getOpcode() == UnaryOperator::Deref)
1617 return false;
1618
Daniel Dunbar5db4b3f2008-10-16 03:51:50 +00001619 if (!EvaluateFloat(E->getSubExpr(), Result, Info))
1620 return false;
1621
1622 switch (E->getOpcode()) {
1623 default: return false;
Mike Stump1eb44332009-09-09 15:08:12 +00001624 case UnaryOperator::Plus:
Daniel Dunbar5db4b3f2008-10-16 03:51:50 +00001625 return true;
1626 case UnaryOperator::Minus:
1627 Result.changeSign();
1628 return true;
1629 }
1630}
Chris Lattner019f4e82008-10-06 05:28:25 +00001631
Eli Friedmand8bfe7f2008-08-22 00:06:13 +00001632bool FloatExprEvaluator::VisitBinaryOperator(const BinaryOperator *E) {
Eli Friedman7f92f032009-11-16 04:25:37 +00001633 if (E->getOpcode() == BinaryOperator::Comma) {
1634 if (!EvaluateFloat(E->getRHS(), Result, Info))
1635 return false;
1636
1637 // If we can't evaluate the LHS, it might have side effects;
1638 // conservatively mark it.
1639 if (!E->getLHS()->isEvaluatable(Info.Ctx))
1640 Info.EvalResult.HasSideEffects = true;
1641
1642 return true;
1643 }
1644
Eli Friedmand8bfe7f2008-08-22 00:06:13 +00001645 // FIXME: Diagnostics? I really don't understand how the warnings
1646 // and errors are supposed to work.
Daniel Dunbar5db4b3f2008-10-16 03:51:50 +00001647 APFloat RHS(0.0);
Eli Friedmand8bfe7f2008-08-22 00:06:13 +00001648 if (!EvaluateFloat(E->getLHS(), Result, Info))
1649 return false;
1650 if (!EvaluateFloat(E->getRHS(), RHS, Info))
1651 return false;
1652
1653 switch (E->getOpcode()) {
1654 default: return false;
1655 case BinaryOperator::Mul:
1656 Result.multiply(RHS, APFloat::rmNearestTiesToEven);
1657 return true;
1658 case BinaryOperator::Add:
1659 Result.add(RHS, APFloat::rmNearestTiesToEven);
1660 return true;
1661 case BinaryOperator::Sub:
1662 Result.subtract(RHS, APFloat::rmNearestTiesToEven);
1663 return true;
1664 case BinaryOperator::Div:
1665 Result.divide(RHS, APFloat::rmNearestTiesToEven);
1666 return true;
Eli Friedmand8bfe7f2008-08-22 00:06:13 +00001667 }
1668}
1669
1670bool FloatExprEvaluator::VisitFloatingLiteral(const FloatingLiteral *E) {
1671 Result = E->getValue();
1672 return true;
1673}
1674
Eli Friedman4efaa272008-11-12 09:44:48 +00001675bool FloatExprEvaluator::VisitCastExpr(CastExpr *E) {
1676 Expr* SubExpr = E->getSubExpr();
Mike Stump1eb44332009-09-09 15:08:12 +00001677
Eli Friedman4efaa272008-11-12 09:44:48 +00001678 if (SubExpr->getType()->isIntegralType()) {
1679 APSInt IntResult;
Daniel Dunbar3f7d9952009-02-19 18:37:50 +00001680 if (!EvaluateInteger(SubExpr, IntResult, Info))
Eli Friedman4efaa272008-11-12 09:44:48 +00001681 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00001682 Result = HandleIntToFloatCast(E->getType(), SubExpr->getType(),
Daniel Dunbara2cfd342009-01-29 06:16:07 +00001683 IntResult, Info.Ctx);
Eli Friedman4efaa272008-11-12 09:44:48 +00001684 return true;
1685 }
1686 if (SubExpr->getType()->isRealFloatingType()) {
1687 if (!Visit(SubExpr))
1688 return false;
Daniel Dunbara2cfd342009-01-29 06:16:07 +00001689 Result = HandleFloatToFloatCast(E->getType(), SubExpr->getType(),
1690 Result, Info.Ctx);
Eli Friedman4efaa272008-11-12 09:44:48 +00001691 return true;
1692 }
Eli Friedman2217c872009-02-22 11:46:18 +00001693 // FIXME: Handle complex types
Eli Friedman4efaa272008-11-12 09:44:48 +00001694
1695 return false;
1696}
1697
1698bool FloatExprEvaluator::VisitCXXZeroInitValueExpr(CXXZeroInitValueExpr *E) {
1699 Result = APFloat::getZero(Info.Ctx.getFloatTypeSemantics(E->getType()));
1700 return true;
1701}
1702
Eli Friedman67f85fc2009-12-04 02:12:53 +00001703bool FloatExprEvaluator::VisitConditionalOperator(ConditionalOperator *E) {
1704 bool Cond;
1705 if (!HandleConversionToBool(E->getCond(), Cond, Info))
1706 return false;
1707
1708 return Visit(Cond ? E->getTrueExpr() : E->getFalseExpr());
1709}
1710
Eli Friedmand8bfe7f2008-08-22 00:06:13 +00001711//===----------------------------------------------------------------------===//
Daniel Dunbara5fd07b2009-01-28 22:24:07 +00001712// Complex Evaluation (for float and integer)
Anders Carlsson9ad16ae2008-11-16 20:27:53 +00001713//===----------------------------------------------------------------------===//
1714
1715namespace {
Benjamin Kramer770b4a82009-11-28 19:03:38 +00001716class ComplexExprEvaluator
Daniel Dunbara5fd07b2009-01-28 22:24:07 +00001717 : public StmtVisitor<ComplexExprEvaluator, APValue> {
Anders Carlsson9ad16ae2008-11-16 20:27:53 +00001718 EvalInfo &Info;
Mike Stump1eb44332009-09-09 15:08:12 +00001719
Anders Carlsson9ad16ae2008-11-16 20:27:53 +00001720public:
Daniel Dunbara5fd07b2009-01-28 22:24:07 +00001721 ComplexExprEvaluator(EvalInfo &info) : Info(info) {}
Mike Stump1eb44332009-09-09 15:08:12 +00001722
Anders Carlsson9ad16ae2008-11-16 20:27:53 +00001723 //===--------------------------------------------------------------------===//
1724 // Visitor Methods
1725 //===--------------------------------------------------------------------===//
1726
1727 APValue VisitStmt(Stmt *S) {
Anders Carlsson9ad16ae2008-11-16 20:27:53 +00001728 return APValue();
1729 }
Mike Stump1eb44332009-09-09 15:08:12 +00001730
Anders Carlsson9ad16ae2008-11-16 20:27:53 +00001731 APValue VisitParenExpr(ParenExpr *E) { return Visit(E->getSubExpr()); }
1732
1733 APValue VisitImaginaryLiteral(ImaginaryLiteral *E) {
Daniel Dunbara5fd07b2009-01-28 22:24:07 +00001734 Expr* SubExpr = E->getSubExpr();
1735
1736 if (SubExpr->getType()->isRealFloatingType()) {
1737 APFloat Result(0.0);
1738
1739 if (!EvaluateFloat(SubExpr, Result, Info))
1740 return APValue();
Mike Stump1eb44332009-09-09 15:08:12 +00001741
1742 return APValue(APFloat(Result.getSemantics(), APFloat::fcZero, false),
Daniel Dunbara5fd07b2009-01-28 22:24:07 +00001743 Result);
1744 } else {
Mike Stump1eb44332009-09-09 15:08:12 +00001745 assert(SubExpr->getType()->isIntegerType() &&
Daniel Dunbara5fd07b2009-01-28 22:24:07 +00001746 "Unexpected imaginary literal.");
1747
1748 llvm::APSInt Result;
1749 if (!EvaluateInteger(SubExpr, Result, Info))
1750 return APValue();
Mike Stump1eb44332009-09-09 15:08:12 +00001751
Daniel Dunbara5fd07b2009-01-28 22:24:07 +00001752 llvm::APSInt Zero(Result.getBitWidth(), !Result.isSigned());
1753 Zero = 0;
1754 return APValue(Zero, Result);
1755 }
Anders Carlsson9ad16ae2008-11-16 20:27:53 +00001756 }
1757
Anders Carlssonccc3fce2008-11-16 21:51:21 +00001758 APValue VisitCastExpr(CastExpr *E) {
1759 Expr* SubExpr = E->getSubExpr();
John McCall183700f2009-09-21 23:43:11 +00001760 QualType EltType = E->getType()->getAs<ComplexType>()->getElementType();
Daniel Dunbara2cfd342009-01-29 06:16:07 +00001761 QualType SubType = SubExpr->getType();
Anders Carlssonccc3fce2008-11-16 21:51:21 +00001762
Daniel Dunbara2cfd342009-01-29 06:16:07 +00001763 if (SubType->isRealFloatingType()) {
Anders Carlssonccc3fce2008-11-16 21:51:21 +00001764 APFloat Result(0.0);
Eli Friedman1725f682009-04-22 19:23:09 +00001765
Anders Carlssonccc3fce2008-11-16 21:51:21 +00001766 if (!EvaluateFloat(SubExpr, Result, Info))
1767 return APValue();
Eli Friedman1725f682009-04-22 19:23:09 +00001768
1769 if (EltType->isRealFloatingType()) {
1770 Result = HandleFloatToFloatCast(EltType, SubType, Result, Info.Ctx);
Mike Stump1eb44332009-09-09 15:08:12 +00001771 return APValue(Result,
Eli Friedman1725f682009-04-22 19:23:09 +00001772 APFloat(Result.getSemantics(), APFloat::fcZero, false));
1773 } else {
1774 llvm::APSInt IResult;
1775 IResult = HandleFloatToIntCast(EltType, SubType, Result, Info.Ctx);
1776 llvm::APSInt Zero(IResult.getBitWidth(), !IResult.isSigned());
1777 Zero = 0;
1778 return APValue(IResult, Zero);
1779 }
Daniel Dunbara2cfd342009-01-29 06:16:07 +00001780 } else if (SubType->isIntegerType()) {
Daniel Dunbara5fd07b2009-01-28 22:24:07 +00001781 APSInt Result;
Eli Friedman1725f682009-04-22 19:23:09 +00001782
Daniel Dunbara5fd07b2009-01-28 22:24:07 +00001783 if (!EvaluateInteger(SubExpr, Result, Info))
1784 return APValue();
Daniel Dunbara2cfd342009-01-29 06:16:07 +00001785
Eli Friedman1725f682009-04-22 19:23:09 +00001786 if (EltType->isRealFloatingType()) {
1787 APFloat FResult =
1788 HandleIntToFloatCast(EltType, SubType, Result, Info.Ctx);
Mike Stump1eb44332009-09-09 15:08:12 +00001789 return APValue(FResult,
Eli Friedman1725f682009-04-22 19:23:09 +00001790 APFloat(FResult.getSemantics(), APFloat::fcZero, false));
1791 } else {
1792 Result = HandleIntToIntCast(EltType, SubType, Result, Info.Ctx);
1793 llvm::APSInt Zero(Result.getBitWidth(), !Result.isSigned());
1794 Zero = 0;
1795 return APValue(Result, Zero);
1796 }
John McCall183700f2009-09-21 23:43:11 +00001797 } else if (const ComplexType *CT = SubType->getAs<ComplexType>()) {
Daniel Dunbara2cfd342009-01-29 06:16:07 +00001798 APValue Src;
Eli Friedman1725f682009-04-22 19:23:09 +00001799
Daniel Dunbara2cfd342009-01-29 06:16:07 +00001800 if (!EvaluateComplex(SubExpr, Src, Info))
1801 return APValue();
1802
1803 QualType SrcType = CT->getElementType();
1804
1805 if (Src.isComplexFloat()) {
1806 if (EltType->isRealFloatingType()) {
Mike Stump1eb44332009-09-09 15:08:12 +00001807 return APValue(HandleFloatToFloatCast(EltType, SrcType,
Daniel Dunbara2cfd342009-01-29 06:16:07 +00001808 Src.getComplexFloatReal(),
1809 Info.Ctx),
Mike Stump1eb44332009-09-09 15:08:12 +00001810 HandleFloatToFloatCast(EltType, SrcType,
Daniel Dunbara2cfd342009-01-29 06:16:07 +00001811 Src.getComplexFloatImag(),
1812 Info.Ctx));
1813 } else {
1814 return APValue(HandleFloatToIntCast(EltType, SrcType,
1815 Src.getComplexFloatReal(),
1816 Info.Ctx),
Mike Stump1eb44332009-09-09 15:08:12 +00001817 HandleFloatToIntCast(EltType, SrcType,
Daniel Dunbara2cfd342009-01-29 06:16:07 +00001818 Src.getComplexFloatImag(),
Mike Stump1eb44332009-09-09 15:08:12 +00001819 Info.Ctx));
Daniel Dunbara2cfd342009-01-29 06:16:07 +00001820 }
1821 } else {
1822 assert(Src.isComplexInt() && "Invalid evaluate result.");
1823 if (EltType->isRealFloatingType()) {
Mike Stump1eb44332009-09-09 15:08:12 +00001824 return APValue(HandleIntToFloatCast(EltType, SrcType,
Daniel Dunbara2cfd342009-01-29 06:16:07 +00001825 Src.getComplexIntReal(),
1826 Info.Ctx),
Mike Stump1eb44332009-09-09 15:08:12 +00001827 HandleIntToFloatCast(EltType, SrcType,
Daniel Dunbara2cfd342009-01-29 06:16:07 +00001828 Src.getComplexIntImag(),
1829 Info.Ctx));
1830 } else {
1831 return APValue(HandleIntToIntCast(EltType, SrcType,
1832 Src.getComplexIntReal(),
1833 Info.Ctx),
Mike Stump1eb44332009-09-09 15:08:12 +00001834 HandleIntToIntCast(EltType, SrcType,
Daniel Dunbara2cfd342009-01-29 06:16:07 +00001835 Src.getComplexIntImag(),
Mike Stump1eb44332009-09-09 15:08:12 +00001836 Info.Ctx));
Daniel Dunbara2cfd342009-01-29 06:16:07 +00001837 }
1838 }
Anders Carlssonccc3fce2008-11-16 21:51:21 +00001839 }
1840
1841 // FIXME: Handle more casts.
1842 return APValue();
1843 }
Mike Stump1eb44332009-09-09 15:08:12 +00001844
Anders Carlssonccc3fce2008-11-16 21:51:21 +00001845 APValue VisitBinaryOperator(const BinaryOperator *E);
Eli Friedmanba98d6b2009-03-23 04:56:01 +00001846 APValue VisitChooseExpr(const ChooseExpr *E)
1847 { return Visit(E->getChosenSubExpr(Info.Ctx)); }
1848 APValue VisitUnaryExtension(const UnaryOperator *E)
1849 { return Visit(E->getSubExpr()); }
1850 // FIXME Missing: unary +/-/~, binary div, ImplicitValueInitExpr,
Eli Friedman2217c872009-02-22 11:46:18 +00001851 // conditional ?:, comma
Anders Carlsson9ad16ae2008-11-16 20:27:53 +00001852};
1853} // end anonymous namespace
1854
Mike Stump1eb44332009-09-09 15:08:12 +00001855static bool EvaluateComplex(const Expr *E, APValue &Result, EvalInfo &Info) {
Daniel Dunbara5fd07b2009-01-28 22:24:07 +00001856 Result = ComplexExprEvaluator(Info).Visit(const_cast<Expr*>(E));
1857 assert((!Result.isComplexFloat() ||
Mike Stump1eb44332009-09-09 15:08:12 +00001858 (&Result.getComplexFloatReal().getSemantics() ==
1859 &Result.getComplexFloatImag().getSemantics())) &&
Daniel Dunbara5fd07b2009-01-28 22:24:07 +00001860 "Invalid complex evaluation.");
1861 return Result.isComplexFloat() || Result.isComplexInt();
Anders Carlsson9ad16ae2008-11-16 20:27:53 +00001862}
1863
Mike Stump1eb44332009-09-09 15:08:12 +00001864APValue ComplexExprEvaluator::VisitBinaryOperator(const BinaryOperator *E) {
Anders Carlssonccc3fce2008-11-16 21:51:21 +00001865 APValue Result, RHS;
Mike Stump1eb44332009-09-09 15:08:12 +00001866
Daniel Dunbara5fd07b2009-01-28 22:24:07 +00001867 if (!EvaluateComplex(E->getLHS(), Result, Info))
Anders Carlssonccc3fce2008-11-16 21:51:21 +00001868 return APValue();
Mike Stump1eb44332009-09-09 15:08:12 +00001869
Daniel Dunbara5fd07b2009-01-28 22:24:07 +00001870 if (!EvaluateComplex(E->getRHS(), RHS, Info))
Anders Carlssonccc3fce2008-11-16 21:51:21 +00001871 return APValue();
Daniel Dunbara5fd07b2009-01-28 22:24:07 +00001872
Daniel Dunbar3f279872009-01-29 01:32:56 +00001873 assert(Result.isComplexFloat() == RHS.isComplexFloat() &&
1874 "Invalid operands to binary operator.");
Anders Carlssonccc3fce2008-11-16 21:51:21 +00001875 switch (E->getOpcode()) {
1876 default: return APValue();
1877 case BinaryOperator::Add:
Daniel Dunbara5fd07b2009-01-28 22:24:07 +00001878 if (Result.isComplexFloat()) {
1879 Result.getComplexFloatReal().add(RHS.getComplexFloatReal(),
1880 APFloat::rmNearestTiesToEven);
1881 Result.getComplexFloatImag().add(RHS.getComplexFloatImag(),
1882 APFloat::rmNearestTiesToEven);
1883 } else {
1884 Result.getComplexIntReal() += RHS.getComplexIntReal();
1885 Result.getComplexIntImag() += RHS.getComplexIntImag();
1886 }
Daniel Dunbar3f279872009-01-29 01:32:56 +00001887 break;
Anders Carlssonccc3fce2008-11-16 21:51:21 +00001888 case BinaryOperator::Sub:
Daniel Dunbara5fd07b2009-01-28 22:24:07 +00001889 if (Result.isComplexFloat()) {
1890 Result.getComplexFloatReal().subtract(RHS.getComplexFloatReal(),
1891 APFloat::rmNearestTiesToEven);
1892 Result.getComplexFloatImag().subtract(RHS.getComplexFloatImag(),
1893 APFloat::rmNearestTiesToEven);
1894 } else {
1895 Result.getComplexIntReal() -= RHS.getComplexIntReal();
1896 Result.getComplexIntImag() -= RHS.getComplexIntImag();
1897 }
Daniel Dunbar3f279872009-01-29 01:32:56 +00001898 break;
1899 case BinaryOperator::Mul:
1900 if (Result.isComplexFloat()) {
1901 APValue LHS = Result;
1902 APFloat &LHS_r = LHS.getComplexFloatReal();
1903 APFloat &LHS_i = LHS.getComplexFloatImag();
1904 APFloat &RHS_r = RHS.getComplexFloatReal();
1905 APFloat &RHS_i = RHS.getComplexFloatImag();
Mike Stump1eb44332009-09-09 15:08:12 +00001906
Daniel Dunbar3f279872009-01-29 01:32:56 +00001907 APFloat Tmp = LHS_r;
1908 Tmp.multiply(RHS_r, APFloat::rmNearestTiesToEven);
1909 Result.getComplexFloatReal() = Tmp;
1910 Tmp = LHS_i;
1911 Tmp.multiply(RHS_i, APFloat::rmNearestTiesToEven);
1912 Result.getComplexFloatReal().subtract(Tmp, APFloat::rmNearestTiesToEven);
1913
1914 Tmp = LHS_r;
1915 Tmp.multiply(RHS_i, APFloat::rmNearestTiesToEven);
1916 Result.getComplexFloatImag() = Tmp;
1917 Tmp = LHS_i;
1918 Tmp.multiply(RHS_r, APFloat::rmNearestTiesToEven);
1919 Result.getComplexFloatImag().add(Tmp, APFloat::rmNearestTiesToEven);
1920 } else {
1921 APValue LHS = Result;
Mike Stump1eb44332009-09-09 15:08:12 +00001922 Result.getComplexIntReal() =
Daniel Dunbar3f279872009-01-29 01:32:56 +00001923 (LHS.getComplexIntReal() * RHS.getComplexIntReal() -
1924 LHS.getComplexIntImag() * RHS.getComplexIntImag());
Mike Stump1eb44332009-09-09 15:08:12 +00001925 Result.getComplexIntImag() =
Daniel Dunbar3f279872009-01-29 01:32:56 +00001926 (LHS.getComplexIntReal() * RHS.getComplexIntImag() +
1927 LHS.getComplexIntImag() * RHS.getComplexIntReal());
1928 }
1929 break;
Anders Carlssonccc3fce2008-11-16 21:51:21 +00001930 }
1931
1932 return Result;
1933}
1934
Anders Carlsson9ad16ae2008-11-16 20:27:53 +00001935//===----------------------------------------------------------------------===//
Chris Lattner6ee7aa12008-11-16 21:24:15 +00001936// Top level Expr::Evaluate method.
Chris Lattnerf5eeb052008-07-11 18:11:29 +00001937//===----------------------------------------------------------------------===//
1938
Chris Lattner6ee7aa12008-11-16 21:24:15 +00001939/// Evaluate - Return true if this is a constant which we can fold using
Chris Lattner019f4e82008-10-06 05:28:25 +00001940/// any crazy technique (that has nothing to do with language standards) that
1941/// we want to. If this function returns true, it returns the folded constant
1942/// in Result.
Anders Carlsson5b45d4e2008-11-30 16:58:53 +00001943bool Expr::Evaluate(EvalResult &Result, ASTContext &Ctx) const {
1944 EvalInfo Info(Ctx, Result);
Anders Carlsson54da0492008-11-30 16:38:33 +00001945
Nate Begeman59b5da62009-01-18 03:20:47 +00001946 if (getType()->isVectorType()) {
1947 if (!EvaluateVector(this, Result.Val, Info))
1948 return false;
1949 } else if (getType()->isIntegerType()) {
Daniel Dunbar30c37f42009-02-19 20:17:33 +00001950 if (!IntExprEvaluator(Info, Result.Val).Visit(const_cast<Expr*>(this)))
Anders Carlsson6dde0d52008-11-22 21:50:49 +00001951 return false;
Daniel Dunbar89588912009-02-26 20:52:22 +00001952 } else if (getType()->hasPointerRepresentation()) {
Anders Carlsson5b45d4e2008-11-30 16:58:53 +00001953 if (!EvaluatePointer(this, Result.Val, Info))
Anders Carlsson6dde0d52008-11-22 21:50:49 +00001954 return false;
Eli Friedmand8bfe7f2008-08-22 00:06:13 +00001955 } else if (getType()->isRealFloatingType()) {
1956 llvm::APFloat f(0.0);
Anders Carlsson6dde0d52008-11-22 21:50:49 +00001957 if (!EvaluateFloat(this, f, Info))
1958 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00001959
Anders Carlsson5b45d4e2008-11-30 16:58:53 +00001960 Result.Val = APValue(f);
Daniel Dunbara5fd07b2009-01-28 22:24:07 +00001961 } else if (getType()->isAnyComplexType()) {
1962 if (!EvaluateComplex(this, Result.Val, Info))
Anders Carlsson6dde0d52008-11-22 21:50:49 +00001963 return false;
Daniel Dunbara5fd07b2009-01-28 22:24:07 +00001964 } else
Anders Carlsson9d4c1572008-11-22 22:56:32 +00001965 return false;
Anders Carlsson6dde0d52008-11-22 21:50:49 +00001966
Anders Carlsson5b45d4e2008-11-30 16:58:53 +00001967 return true;
1968}
1969
Mike Stump660e6f72009-10-26 23:05:19 +00001970bool Expr::EvaluateAsAny(EvalResult &Result, ASTContext &Ctx) const {
1971 EvalInfo Info(Ctx, Result, true);
1972
1973 if (getType()->isVectorType()) {
1974 if (!EvaluateVector(this, Result.Val, Info))
1975 return false;
1976 } else if (getType()->isIntegerType()) {
1977 if (!IntExprEvaluator(Info, Result.Val).Visit(const_cast<Expr*>(this)))
1978 return false;
1979 } else if (getType()->hasPointerRepresentation()) {
1980 if (!EvaluatePointer(this, Result.Val, Info))
1981 return false;
1982 } else if (getType()->isRealFloatingType()) {
1983 llvm::APFloat f(0.0);
1984 if (!EvaluateFloat(this, f, Info))
1985 return false;
1986
1987 Result.Val = APValue(f);
1988 } else if (getType()->isAnyComplexType()) {
1989 if (!EvaluateComplex(this, Result.Val, Info))
1990 return false;
1991 } else
1992 return false;
1993
1994 return true;
1995}
1996
John McCallcd7a4452010-01-05 23:42:56 +00001997bool Expr::EvaluateAsBooleanCondition(bool &Result, ASTContext &Ctx) const {
1998 EvalResult Scratch;
1999 EvalInfo Info(Ctx, Scratch);
2000
2001 return HandleConversionToBool(this, Result, Info);
2002}
2003
Anders Carlsson1b782762009-04-10 04:54:13 +00002004bool Expr::EvaluateAsLValue(EvalResult &Result, ASTContext &Ctx) const {
2005 EvalInfo Info(Ctx, Result);
2006
2007 return EvaluateLValue(this, Result.Val, Info) && !Result.HasSideEffects;
2008}
2009
Eli Friedmanb2f295c2009-09-13 10:17:44 +00002010bool Expr::EvaluateAsAnyLValue(EvalResult &Result, ASTContext &Ctx) const {
2011 EvalInfo Info(Ctx, Result, true);
2012
2013 return EvaluateLValue(this, Result.Val, Info) && !Result.HasSideEffects;
2014}
2015
Chris Lattner6ee7aa12008-11-16 21:24:15 +00002016/// isEvaluatable - Call Evaluate to see if this expression can be constant
Chris Lattner45b6b9d2008-10-06 06:49:02 +00002017/// folded, but discard the result.
2018bool Expr::isEvaluatable(ASTContext &Ctx) const {
Anders Carlsson4fdfb092008-12-01 06:44:05 +00002019 EvalResult Result;
2020 return Evaluate(Result, Ctx) && !Result.HasSideEffects;
Chris Lattner45b6b9d2008-10-06 06:49:02 +00002021}
Anders Carlsson51fe9962008-11-22 21:04:56 +00002022
Fariborz Jahanian393c2472009-11-05 18:03:03 +00002023bool Expr::HasSideEffects(ASTContext &Ctx) const {
2024 Expr::EvalResult Result;
2025 EvalInfo Info(Ctx, Result);
2026 return HasSideEffect(Info).Visit(const_cast<Expr*>(this));
2027}
2028
Anders Carlsson51fe9962008-11-22 21:04:56 +00002029APSInt Expr::EvaluateAsInt(ASTContext &Ctx) const {
Anders Carlsson1c0cfd42008-12-19 20:58:05 +00002030 EvalResult EvalResult;
2031 bool Result = Evaluate(EvalResult, Ctx);
Daniel Dunbarf1853192009-01-15 18:32:35 +00002032 Result = Result;
Anders Carlsson51fe9962008-11-22 21:04:56 +00002033 assert(Result && "Could not evaluate expression");
Anders Carlsson1c0cfd42008-12-19 20:58:05 +00002034 assert(EvalResult.Val.isInt() && "Expression did not evaluate to integer");
Anders Carlsson51fe9962008-11-22 21:04:56 +00002035
Anders Carlsson1c0cfd42008-12-19 20:58:05 +00002036 return EvalResult.Val.getInt();
Anders Carlsson51fe9962008-11-22 21:04:56 +00002037}