blob: 086249c811f9866e82f7adc4b2d7c56eedbc7bb1 [file] [log] [blame]
Chris Lattnere13042c2008-07-11 19:10:17 +00001//===--- ExprConstant.cpp - Expression Constant Evaluator -----------------===//
Anders Carlsson7a241ba2008-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 Dyck40775002010-01-11 17:06:35 +000016#include "clang/AST/CharUnits.h"
Anders Carlsson15b73de2009-07-18 19:43:29 +000017#include "clang/AST/RecordLayout.h"
Seo Sanghyeon1904f442008-07-08 07:23:12 +000018#include "clang/AST/StmtVisitor.h"
Chris Lattner60f36222009-01-29 05:15:15 +000019#include "clang/AST/ASTDiagnostic.h"
Chris Lattner15ba9492009-06-14 01:54:56 +000020#include "clang/Basic/Builtins.h"
Anders Carlsson374b93d2008-07-08 05:49:43 +000021#include "clang/Basic/TargetInfo.h"
Mike Stumpb807c9c2009-05-30 14:43:18 +000022#include "llvm/ADT/SmallString.h"
Mike Stump2346cd22009-05-30 03:56:50 +000023#include <cstring>
24
Anders Carlsson7a241ba2008-07-03 04:20:39 +000025using namespace clang;
Chris Lattner05706e882008-07-11 18:11:29 +000026using llvm::APSInt;
Eli Friedman24c01542008-08-22 00:06:13 +000027using llvm::APFloat;
Anders Carlsson7a241ba2008-07-03 04:20:39 +000028
Chris Lattnercdf34e72008-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 Stump11289f42009-09-09 15:08:12 +000045
Anders Carlssonbd1df8e2008-11-30 16:38:33 +000046 /// EvalResult - Contains information about the evaluation.
47 Expr::EvalResult &EvalResult;
Anders Carlsson58620012008-11-30 18:26:25 +000048
Eli Friedman7d45c482009-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 Lattnercdf34e72008-07-11 22:52:41 +000055};
56
57
Eli Friedman9a156e52008-11-12 09:44:48 +000058static bool EvaluateLValue(const Expr *E, APValue &Result, EvalInfo &Info);
Chris Lattnercdf34e72008-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 Lattner6c4d2552009-10-28 23:59:40 +000061static bool EvaluateIntegerOrLValue(const Expr *E, APValue &Result,
62 EvalInfo &Info);
Eli Friedman24c01542008-08-22 00:06:13 +000063static bool EvaluateFloat(const Expr *E, APFloat &Result, EvalInfo &Info);
Daniel Dunbarf50e60b2009-01-28 22:24:07 +000064static bool EvaluateComplex(const Expr *E, APValue &Result, EvalInfo &Info);
Chris Lattner05706e882008-07-11 18:11:29 +000065
66//===----------------------------------------------------------------------===//
Eli Friedman9a156e52008-11-12 09:44:48 +000067// Misc utilities
68//===----------------------------------------------------------------------===//
69
Eli Friedman334046a2009-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 Dyck02990832010-01-15 12:37:54 +000073 Result = Value.getLValueBase() || !Value.getLValueOffset().isZero();
Eli Friedman334046a2009-06-14 02:17:33 +000074 return true;
75}
76
John McCall1be1c632010-01-05 23:42:56 +000077static bool HandleConversionToBool(const Expr* E, bool& Result,
78 EvalInfo &Info) {
Eli Friedman9a156e52008-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 Friedman64004332009-03-23 04:38:34 +000091 } else if (E->getType()->hasPointerRepresentation()) {
Eli Friedman9a156e52008-11-12 09:44:48 +000092 APValue PointerResult;
93 if (!EvaluatePointer(E, PointerResult, Info))
94 return false;
Eli Friedman334046a2009-06-14 02:17:33 +000095 return EvalPointerValueAsBool(PointerResult, Result);
Eli Friedman64004332009-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 Friedman9a156e52008-11-12 09:44:48 +0000108 }
109
110 return false;
111}
112
Mike Stump11289f42009-09-09 15:08:12 +0000113static APSInt HandleFloatToIntCast(QualType DestType, QualType SrcType,
Daniel Dunbarb6f953e2009-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 Stump11289f42009-09-09 15:08:12 +0000118
Daniel Dunbarb6f953e2009-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 Stump11289f42009-09-09 15:08:12 +0000127static APFloat HandleFloatToFloatCast(QualType DestType, QualType SrcType,
Daniel Dunbarb6f953e2009-01-29 06:16:07 +0000128 APFloat &Value, ASTContext &Ctx) {
129 bool ignored;
130 APFloat Result = Value;
Mike Stump11289f42009-09-09 15:08:12 +0000131 Result.convert(Ctx.getFloatTypeSemantics(DestType),
Daniel Dunbarb6f953e2009-01-29 06:16:07 +0000132 APFloat::rmNearestTiesToEven, &ignored);
133 return Result;
134}
135
Mike Stump11289f42009-09-09 15:08:12 +0000136static APSInt HandleIntToIntCast(QualType DestType, QualType SrcType,
Daniel Dunbarb6f953e2009-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 Stump11289f42009-09-09 15:08:12 +0000147static APFloat HandleIntToFloatCast(QualType DestType, QualType SrcType,
Daniel Dunbarb6f953e2009-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 Stump876387b2009-10-27 22:09:17 +0000156namespace {
Benjamin Kramer26222b62009-11-28 19:03:38 +0000157class HasSideEffect
Mike Stump876387b2009-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 Stump53f9ded2009-11-03 23:25:48 +0000171 if (Info.Ctx.getCanonicalType(E->getType()).isVolatileQualified())
Mike Stump876387b2009-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 Stumpfa502902009-10-29 20:48:09 +0000188 { return Visit(E->getLHS()) || Visit(E->getRHS()); }
Mike Stump876387b2009-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 Stumpf3eb5ec2009-10-29 23:34:20 +0000193 bool VisitCompoundAssignOperator(BinaryOperator *E) { return true; }
Mike Stumpfa502902009-10-29 20:48:09 +0000194 bool VisitBinaryOperator(BinaryOperator *E)
195 { return Visit(E->getLHS()) || Visit(E->getRHS()); }
Mike Stump876387b2009-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 Stump53f9ded2009-11-03 23:25:48 +0000201 if (Info.Ctx.getCanonicalType(E->getType()).isVolatileQualified())
Mike Stump876387b2009-10-27 22:09:17 +0000202 return true;
Mike Stumpfa502902009-10-29 20:48:09 +0000203 return Visit(E->getSubExpr());
Mike Stump876387b2009-10-27 22:09:17 +0000204 }
205 bool VisitUnaryOperator(UnaryOperator *E) { return Visit(E->getSubExpr()); }
206};
207
Mike Stump876387b2009-10-27 22:09:17 +0000208} // end anonymous namespace
209
Eli Friedman9a156e52008-11-12 09:44:48 +0000210//===----------------------------------------------------------------------===//
211// LValue Evaluation
212//===----------------------------------------------------------------------===//
213namespace {
Benjamin Kramer26222b62009-11-28 19:03:38 +0000214class LValueExprEvaluator
Eli Friedman9a156e52008-11-12 09:44:48 +0000215 : public StmtVisitor<LValueExprEvaluator, APValue> {
216 EvalInfo &Info;
217public:
Mike Stump11289f42009-09-09 15:08:12 +0000218
Eli Friedman9a156e52008-11-12 09:44:48 +0000219 LValueExprEvaluator(EvalInfo &info) : Info(info) {}
220
221 APValue VisitStmt(Stmt *S) {
Eli Friedman9a156e52008-11-12 09:44:48 +0000222 return APValue();
223 }
224
225 APValue VisitParenExpr(ParenExpr *E) { return Visit(E->getSubExpr()); }
Anders Carlssona42ee442008-11-24 04:41:22 +0000226 APValue VisitDeclRefExpr(DeclRefExpr *E);
Ken Dyck02990832010-01-15 12:37:54 +0000227 APValue VisitPredefinedExpr(PredefinedExpr *E) { return APValue(E); }
Eli Friedman9a156e52008-11-12 09:44:48 +0000228 APValue VisitCompoundLiteralExpr(CompoundLiteralExpr *E);
229 APValue VisitMemberExpr(MemberExpr *E);
Ken Dyck02990832010-01-15 12:37:54 +0000230 APValue VisitStringLiteral(StringLiteral *E) { return APValue(E); }
231 APValue VisitObjCEncodeExpr(ObjCEncodeExpr *E) { return APValue(E); }
Anders Carlsson9f9e4242008-11-16 19:01:22 +0000232 APValue VisitArraySubscriptExpr(ArraySubscriptExpr *E);
Eli Friedman0b8337c2009-02-20 01:57:15 +0000233 APValue VisitUnaryDeref(UnaryOperator *E);
Eli Friedman449fe542009-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 Carlssonde55f642009-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 Friedman449fe542009-03-23 04:56:01 +0000248 // FIXME: Missing: __real__, __imag__
Eli Friedman9a156e52008-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 Stump11289f42009-09-09 15:08:12 +0000257APValue LValueExprEvaluator::VisitDeclRefExpr(DeclRefExpr *E) {
Eli Friedman751aa72b72009-05-27 06:04:58 +0000258 if (isa<FunctionDecl>(E->getDecl())) {
Ken Dyck02990832010-01-15 12:37:54 +0000259 return APValue(E);
Eli Friedman751aa72b72009-05-27 06:04:58 +0000260 } else if (VarDecl* VD = dyn_cast<VarDecl>(E->getDecl())) {
Eli Friedman7d45c482009-09-13 10:17:44 +0000261 if (!Info.AnyLValue && !VD->hasGlobalStorage())
Eli Friedman9ab03192009-08-29 19:09:59 +0000262 return APValue();
Eli Friedman751aa72b72009-05-27 06:04:58 +0000263 if (!VD->getType()->isReferenceType())
Ken Dyck02990832010-01-15 12:37:54 +0000264 return APValue(E);
Eli Friedman9ab03192009-08-29 19:09:59 +0000265 // FIXME: Check whether VD might be overridden!
Douglas Gregor0840cc02009-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 Friedman751aa72b72009-05-27 06:04:58 +0000269 }
270
271 return APValue();
Anders Carlssona42ee442008-11-24 04:41:22 +0000272}
273
Eli Friedman9a156e52008-11-12 09:44:48 +0000274APValue LValueExprEvaluator::VisitCompoundLiteralExpr(CompoundLiteralExpr *E) {
Eli Friedman7d45c482009-09-13 10:17:44 +0000275 if (!Info.AnyLValue && !E->isFileScope())
276 return APValue();
Ken Dyck02990832010-01-15 12:37:54 +0000277 return APValue(E);
Eli Friedman9a156e52008-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 Kremenekc23c7e62009-07-29 21:53:49 +0000286 Ty = E->getBase()->getType()->getAs<PointerType>()->getPointeeType();
Eli Friedman9a156e52008-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 Kremenekc23c7e62009-07-29 21:53:49 +0000294 RecordDecl *RD = Ty->getAs<RecordType>()->getDecl();
Eli Friedman9a156e52008-11-12 09:44:48 +0000295 const ASTRecordLayout &RL = Info.Ctx.getASTRecordLayout(RD);
Douglas Gregor2eedc3a2008-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 Friedmanf7f9f682009-05-30 21:09:44 +0000300
301 if (FD->getType()->isReferenceType())
302 return APValue();
303
Eli Friedman9a156e52008-11-12 09:44:48 +0000304 // FIXME: This is linear time.
Douglas Gregor91f84212008-12-11 16:49:14 +0000305 unsigned i = 0;
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +0000306 for (RecordDecl::field_iterator Field = RD->field_begin(),
307 FieldEnd = RD->field_end();
Douglas Gregor91f84212008-12-11 16:49:14 +0000308 Field != FieldEnd; (void)++Field, ++i) {
309 if (*Field == FD)
Eli Friedman9a156e52008-11-12 09:44:48 +0000310 break;
311 }
312
313 result.setLValue(result.getLValueBase(),
Ken Dyck02990832010-01-15 12:37:54 +0000314 result.getLValueOffset() +
315 CharUnits::fromQuantity(RL.getFieldOffset(i) / 8));
Eli Friedman9a156e52008-11-12 09:44:48 +0000316
317 return result;
318}
319
Mike Stump11289f42009-09-09 15:08:12 +0000320APValue LValueExprEvaluator::VisitArraySubscriptExpr(ArraySubscriptExpr *E) {
Anders Carlsson9f9e4242008-11-16 19:01:22 +0000321 APValue Result;
Mike Stump11289f42009-09-09 15:08:12 +0000322
Anders Carlsson9f9e4242008-11-16 19:01:22 +0000323 if (!EvaluatePointer(E->getBase(), Result, Info))
324 return APValue();
Mike Stump11289f42009-09-09 15:08:12 +0000325
Anders Carlsson9f9e4242008-11-16 19:01:22 +0000326 APSInt Index;
327 if (!EvaluateInteger(E->getIdx(), Index, Info))
328 return APValue();
329
Ken Dyck40775002010-01-11 17:06:35 +0000330 CharUnits ElementSize = Info.Ctx.getTypeSizeInChars(E->getType());
Anders Carlsson9f9e4242008-11-16 19:01:22 +0000331
Ken Dyck40775002010-01-11 17:06:35 +0000332 CharUnits Offset = Index.getSExtValue() * ElementSize;
Mike Stump11289f42009-09-09 15:08:12 +0000333 Result.setLValue(Result.getLValueBase(),
Ken Dyck02990832010-01-15 12:37:54 +0000334 Result.getLValueOffset() + Offset);
Anders Carlsson9f9e4242008-11-16 19:01:22 +0000335 return Result;
336}
Eli Friedman9a156e52008-11-12 09:44:48 +0000337
Mike Stump11289f42009-09-09 15:08:12 +0000338APValue LValueExprEvaluator::VisitUnaryDeref(UnaryOperator *E) {
Eli Friedman0b8337c2009-02-20 01:57:15 +0000339 APValue Result;
340 if (!EvaluatePointer(E->getSubExpr(), Result, Info))
341 return APValue();
342 return Result;
343}
344
Eli Friedman9a156e52008-11-12 09:44:48 +0000345//===----------------------------------------------------------------------===//
Chris Lattner05706e882008-07-11 18:11:29 +0000346// Pointer Evaluation
347//===----------------------------------------------------------------------===//
348
Anders Carlsson0a1707c2008-07-08 05:13:58 +0000349namespace {
Benjamin Kramer26222b62009-11-28 19:03:38 +0000350class PointerExprEvaluator
Anders Carlssonb5ad0212008-07-08 14:30:00 +0000351 : public StmtVisitor<PointerExprEvaluator, APValue> {
Chris Lattnercdf34e72008-07-11 22:52:41 +0000352 EvalInfo &Info;
Anders Carlssonb5ad0212008-07-08 14:30:00 +0000353public:
Mike Stump11289f42009-09-09 15:08:12 +0000354
Chris Lattnercdf34e72008-07-11 22:52:41 +0000355 PointerExprEvaluator(EvalInfo &info) : Info(info) {}
Chris Lattner05706e882008-07-11 18:11:29 +0000356
Anders Carlssonb5ad0212008-07-08 14:30:00 +0000357 APValue VisitStmt(Stmt *S) {
Anders Carlssonb5ad0212008-07-08 14:30:00 +0000358 return APValue();
359 }
360
361 APValue VisitParenExpr(ParenExpr *E) { return Visit(E->getSubExpr()); }
362
Anders Carlsson4a3585b2008-07-08 15:34:11 +0000363 APValue VisitBinaryOperator(const BinaryOperator *E);
Eli Friedman847a2bc2009-12-27 05:43:15 +0000364 APValue VisitCastExpr(CastExpr* E);
Eli Friedmanc2b50172009-02-22 11:46:18 +0000365 APValue VisitUnaryExtension(const UnaryOperator *E)
366 { return Visit(E->getSubExpr()); }
367 APValue VisitUnaryAddrOf(const UnaryOperator *E);
Eli Friedman9a156e52008-11-12 09:44:48 +0000368 APValue VisitObjCStringLiteral(ObjCStringLiteral *E)
Ken Dyck02990832010-01-15 12:37:54 +0000369 { return APValue(E); }
Eli Friedman529a99b2009-01-25 01:21:06 +0000370 APValue VisitAddrLabelExpr(AddrLabelExpr *E)
Ken Dyck02990832010-01-15 12:37:54 +0000371 { return APValue(E); }
Eli Friedmanc69d4542009-01-25 01:54:01 +0000372 APValue VisitCallExpr(CallExpr *E);
Mike Stumpa6703322009-02-19 22:01:56 +0000373 APValue VisitBlockExpr(BlockExpr *E) {
374 if (!E->hasBlockDeclRefExprs())
Ken Dyck02990832010-01-15 12:37:54 +0000375 return APValue(E);
Mike Stumpa6703322009-02-19 22:01:56 +0000376 return APValue();
377 }
Eli Friedman3ae59112009-02-23 04:23:56 +0000378 APValue VisitImplicitValueInitExpr(ImplicitValueInitExpr *E)
Ken Dyck02990832010-01-15 12:37:54 +0000379 { return APValue((Expr*)0); }
Eli Friedman9a156e52008-11-12 09:44:48 +0000380 APValue VisitConditionalOperator(ConditionalOperator *E);
Eli Friedman449fe542009-03-23 04:56:01 +0000381 APValue VisitChooseExpr(ChooseExpr *E)
Sebastian Redl576fd422009-05-10 18:38:11 +0000382 { return Visit(E->getChosenSubExpr(Info.Ctx)); }
383 APValue VisitCXXNullPtrLiteralExpr(CXXNullPtrLiteralExpr *E)
Ken Dyck02990832010-01-15 12:37:54 +0000384 { return APValue((Expr*)0); }
Eli Friedman449fe542009-03-23 04:56:01 +0000385 // FIXME: Missing: @protocol, @selector
Anders Carlsson4a3585b2008-07-08 15:34:11 +0000386};
Chris Lattner05706e882008-07-11 18:11:29 +0000387} // end anonymous namespace
Anders Carlsson4a3585b2008-07-08 15:34:11 +0000388
Chris Lattnercdf34e72008-07-11 22:52:41 +0000389static bool EvaluatePointer(const Expr* E, APValue& Result, EvalInfo &Info) {
Daniel Dunbar76ba41c2009-02-26 20:52:22 +0000390 if (!E->getType()->hasPointerRepresentation())
Chris Lattner05706e882008-07-11 18:11:29 +0000391 return false;
Chris Lattnercdf34e72008-07-11 22:52:41 +0000392 Result = PointerExprEvaluator(Info).Visit(const_cast<Expr*>(E));
Chris Lattner05706e882008-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 Stump11289f42009-09-09 15:08:12 +0000400
Chris Lattner05706e882008-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 Stump11289f42009-09-09 15:08:12 +0000405
Chris Lattner05706e882008-07-11 18:11:29 +0000406 APValue ResultLValue;
Chris Lattnercdf34e72008-07-11 22:52:41 +0000407 if (!EvaluatePointer(PExp, ResultLValue, Info))
Chris Lattner05706e882008-07-11 18:11:29 +0000408 return APValue();
Mike Stump11289f42009-09-09 15:08:12 +0000409
Chris Lattner05706e882008-07-11 18:11:29 +0000410 llvm::APSInt AdditionalOffset(32);
Chris Lattnercdf34e72008-07-11 22:52:41 +0000411 if (!EvaluateInteger(IExp, AdditionalOffset, Info))
Chris Lattner05706e882008-07-11 18:11:29 +0000412 return APValue();
413
Ted Kremenekc23c7e62009-07-29 21:53:49 +0000414 QualType PointeeType = PExp->getType()->getAs<PointerType>()->getPointeeType();
Ken Dyck40775002010-01-11 17:06:35 +0000415 CharUnits SizeOfPointee;
Mike Stump11289f42009-09-09 15:08:12 +0000416
Anders Carlssonef56fba2009-02-19 04:55:58 +0000417 // Explicitly handle GNU void* and function pointer arithmetic extensions.
418 if (PointeeType->isVoidType() || PointeeType->isFunctionType())
Ken Dyck40775002010-01-11 17:06:35 +0000419 SizeOfPointee = CharUnits::One();
Anders Carlssonef56fba2009-02-19 04:55:58 +0000420 else
Ken Dyck40775002010-01-11 17:06:35 +0000421 SizeOfPointee = Info.Ctx.getTypeSizeInChars(PointeeType);
Eli Friedman9a156e52008-11-12 09:44:48 +0000422
Ken Dyck02990832010-01-15 12:37:54 +0000423 CharUnits Offset = ResultLValue.getLValueOffset();
Eli Friedman9a156e52008-11-12 09:44:48 +0000424
Chris Lattner05706e882008-07-11 18:11:29 +0000425 if (E->getOpcode() == BinaryOperator::Add)
Eli Friedman9a156e52008-11-12 09:44:48 +0000426 Offset += AdditionalOffset.getLimitedValue() * SizeOfPointee;
Chris Lattner05706e882008-07-11 18:11:29 +0000427 else
Eli Friedman9a156e52008-11-12 09:44:48 +0000428 Offset -= AdditionalOffset.getLimitedValue() * SizeOfPointee;
429
Ken Dyck02990832010-01-15 12:37:54 +0000430 return APValue(ResultLValue.getLValueBase(), Offset);
Chris Lattner05706e882008-07-11 18:11:29 +0000431}
Eli Friedman9a156e52008-11-12 09:44:48 +0000432
Eli Friedmanc2b50172009-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 Friedman9a156e52008-11-12 09:44:48 +0000437 return APValue();
438}
Mike Stump11289f42009-09-09 15:08:12 +0000439
Chris Lattner05706e882008-07-11 18:11:29 +0000440
Eli Friedman847a2bc2009-12-27 05:43:15 +0000441APValue PointerExprEvaluator::VisitCastExpr(CastExpr* E) {
442 Expr* SubExpr = E->getSubExpr();
Chris Lattner05706e882008-07-11 18:11:29 +0000443
Eli Friedman847a2bc2009-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 Dyck02990832010-01-15 12:37:54 +0000465 return APValue(0,
466 CharUnits::fromQuantity(Result.getInt().getZExtValue()));
Eli Friedman847a2bc2009-12-27 05:43:15 +0000467 }
468
469 // Cast is of an lvalue, no need to change value.
Chris Lattner05706e882008-07-11 18:11:29 +0000470 return Result;
Eli Friedman847a2bc2009-12-27 05:43:15 +0000471 }
472 break;
Chris Lattner05706e882008-07-11 18:11:29 +0000473 }
Mike Stump11289f42009-09-09 15:08:12 +0000474
Eli Friedman847a2bc2009-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 Dunbarce399542009-02-20 18:22:23 +0000482 APValue Result;
483 if (!EvaluateIntegerOrLValue(SubExpr, Result, Info))
Eli Friedman847a2bc2009-12-27 05:43:15 +0000484 break;
Daniel Dunbarce399542009-02-20 18:22:23 +0000485
486 if (Result.isInt()) {
487 Result.getInt().extOrTrunc((unsigned)Info.Ctx.getTypeSize(E->getType()));
Ken Dyck02990832010-01-15 12:37:54 +0000488 return APValue(0,
489 CharUnits::fromQuantity(Result.getInt().getZExtValue()));
Chris Lattner05706e882008-07-11 18:11:29 +0000490 }
Mike Stump11289f42009-09-09 15:08:12 +0000491
Daniel Dunbarce399542009-02-20 18:22:23 +0000492 // Cast is of an lvalue, no need to change value.
493 return Result;
Chris Lattner05706e882008-07-11 18:11:29 +0000494 }
Eli Friedman847a2bc2009-12-27 05:43:15 +0000495 case CastExpr::CK_ArrayToPointerDecay:
496 case CastExpr::CK_FunctionToPointerDecay: {
Eli Friedman9a156e52008-11-12 09:44:48 +0000497 APValue Result;
498 if (EvaluateLValue(SubExpr, Result, Info))
499 return Result;
Eli Friedman847a2bc2009-12-27 05:43:15 +0000500 break;
501 }
Eli Friedman9a156e52008-11-12 09:44:48 +0000502 }
503
Chris Lattner05706e882008-07-11 18:11:29 +0000504 return APValue();
Mike Stump11289f42009-09-09 15:08:12 +0000505}
Chris Lattner05706e882008-07-11 18:11:29 +0000506
Eli Friedmanc69d4542009-01-25 01:54:01 +0000507APValue PointerExprEvaluator::VisitCallExpr(CallExpr *E) {
Mike Stump11289f42009-09-09 15:08:12 +0000508 if (E->isBuiltinCall(Info.Ctx) ==
David Chisnall481e3a82010-01-23 02:40:42 +0000509 Builtin::BI__builtin___CFStringMakeConstantString ||
510 E->isBuiltinCall(Info.Ctx) ==
511 Builtin::BI__builtin___NSStringMakeConstantString)
Ken Dyck02990832010-01-15 12:37:54 +0000512 return APValue(E);
Eli Friedmanc69d4542009-01-25 01:54:01 +0000513 return APValue();
514}
515
Eli Friedman9a156e52008-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 Lattner05706e882008-07-11 18:11:29 +0000528
529//===----------------------------------------------------------------------===//
Nate Begeman2f2bdeb2009-01-18 03:20:47 +0000530// Vector Evaluation
531//===----------------------------------------------------------------------===//
532
533namespace {
Benjamin Kramer26222b62009-11-28 19:03:38 +0000534 class VectorExprEvaluator
Nate Begeman2f2bdeb2009-01-18 03:20:47 +0000535 : public StmtVisitor<VectorExprEvaluator, APValue> {
536 EvalInfo &Info;
Eli Friedman3ae59112009-02-23 04:23:56 +0000537 APValue GetZeroVector(QualType VecType);
Nate Begeman2f2bdeb2009-01-18 03:20:47 +0000538 public:
Mike Stump11289f42009-09-09 15:08:12 +0000539
Nate Begeman2f2bdeb2009-01-18 03:20:47 +0000540 VectorExprEvaluator(EvalInfo &info) : Info(info) {}
Mike Stump11289f42009-09-09 15:08:12 +0000541
Nate Begeman2f2bdeb2009-01-18 03:20:47 +0000542 APValue VisitStmt(Stmt *S) {
543 return APValue();
544 }
Mike Stump11289f42009-09-09 15:08:12 +0000545
Eli Friedman3ae59112009-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 Begeman2f2bdeb2009-01-18 03:20:47 +0000556 APValue VisitCastExpr(const CastExpr* E);
557 APValue VisitCompoundLiteralExpr(const CompoundLiteralExpr *E);
558 APValue VisitInitListExpr(const InitListExpr *E);
Eli Friedman3ae59112009-02-23 04:23:56 +0000559 APValue VisitConditionalOperator(const ConditionalOperator *E);
Eli Friedman449fe542009-03-23 04:56:01 +0000560 APValue VisitChooseExpr(const ChooseExpr *E)
561 { return Visit(E->getChosenSubExpr(Info.Ctx)); }
Eli Friedman3ae59112009-02-23 04:23:56 +0000562 APValue VisitUnaryImag(const UnaryOperator *E);
563 // FIXME: Missing: unary -, unary ~, binary add/sub/mul/div,
Eli Friedmanc2b50172009-02-22 11:46:18 +0000564 // binary comparisons, binary and/or/xor,
Eli Friedman3ae59112009-02-23 04:23:56 +0000565 // shufflevector, ExtVectorElementExpr
566 // (Note that these require implementing conversions
567 // between vector types.)
Nate Begeman2f2bdeb2009-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 McCall9dd450b2009-09-21 23:43:11 +0000579 const VectorType *VTy = E->getType()->getAs<VectorType>();
Nate Begemanef1a7fa2009-07-01 07:50:47 +0000580 QualType EltTy = VTy->getElementType();
581 unsigned NElts = VTy->getNumElements();
582 unsigned EltWidth = Info.Ctx.getTypeSize(EltTy);
Mike Stump11289f42009-09-09 15:08:12 +0000583
Nate Begeman2f2bdeb2009-01-18 03:20:47 +0000584 const Expr* SE = E->getSubExpr();
Nate Begeman2ffd3842009-06-26 18:22:18 +0000585 QualType SETy = SE->getType();
586 APValue Result = APValue();
Nate Begeman2f2bdeb2009-01-18 03:20:47 +0000587
Nate Begeman2ffd3842009-06-26 18:22:18 +0000588 // Check for vector->vector bitcast and scalar->vector splat.
589 if (SETy->isVectorType()) {
Nate Begeman2f2bdeb2009-01-18 03:20:47 +0000590 return this->Visit(const_cast<Expr*>(SE));
Nate Begeman2ffd3842009-06-26 18:22:18 +0000591 } else if (SETy->isIntegerType()) {
592 APSInt IntResult;
Daniel Dunbardf4a58e2009-07-01 20:37:45 +0000593 if (!EvaluateInteger(SE, IntResult, Info))
594 return APValue();
595 Result = APValue(IntResult);
Nate Begeman2ffd3842009-06-26 18:22:18 +0000596 } else if (SETy->isRealFloatingType()) {
597 APFloat F(0.0);
Daniel Dunbardf4a58e2009-07-01 20:37:45 +0000598 if (!EvaluateFloat(SE, F, Info))
599 return APValue();
600 Result = APValue(F);
601 } else
Nate Begemanef1a7fa2009-07-01 07:50:47 +0000602 return APValue();
Nate Begeman2f2bdeb2009-01-18 03:20:47 +0000603
Nate Begemanef1a7fa2009-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 Begeman2ffd3842009-06-26 18:22:18 +0000625 }
Nate Begemanef1a7fa2009-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 Stump11289f42009-09-09 15:08:12 +0000633
Nate Begemanef1a7fa2009-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 Stump11289f42009-09-09 15:08:12 +0000638
Nate Begemanef1a7fa2009-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 Begeman2f2bdeb2009-01-18 03:20:47 +0000649}
650
Mike Stump11289f42009-09-09 15:08:12 +0000651APValue
Nate Begeman2f2bdeb2009-01-18 03:20:47 +0000652VectorExprEvaluator::VisitCompoundLiteralExpr(const CompoundLiteralExpr *E) {
653 return this->Visit(const_cast<Expr*>(E->getInitializer()));
654}
655
Mike Stump11289f42009-09-09 15:08:12 +0000656APValue
Nate Begeman2f2bdeb2009-01-18 03:20:47 +0000657VectorExprEvaluator::VisitInitListExpr(const InitListExpr *E) {
John McCall9dd450b2009-09-21 23:43:11 +0000658 const VectorType *VT = E->getType()->getAs<VectorType>();
Nate Begeman2f2bdeb2009-01-18 03:20:47 +0000659 unsigned NumInits = E->getNumInits();
Eli Friedman3ae59112009-02-23 04:23:56 +0000660 unsigned NumElements = VT->getNumElements();
Mike Stump11289f42009-09-09 15:08:12 +0000661
Nate Begeman2f2bdeb2009-01-18 03:20:47 +0000662 QualType EltTy = VT->getElementType();
663 llvm::SmallVector<APValue, 4> Elements;
664
Eli Friedman3ae59112009-02-23 04:23:56 +0000665 for (unsigned i = 0; i < NumElements; i++) {
Nate Begeman2f2bdeb2009-01-18 03:20:47 +0000666 if (EltTy->isIntegerType()) {
667 llvm::APSInt sInt(32);
Eli Friedman3ae59112009-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 Begeman2f2bdeb2009-01-18 03:20:47 +0000674 Elements.push_back(APValue(sInt));
675 } else {
676 llvm::APFloat f(0.0);
Eli Friedman3ae59112009-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 Begeman2f2bdeb2009-01-18 03:20:47 +0000683 Elements.push_back(APValue(f));
684 }
685 }
686 return APValue(&Elements[0], Elements.size());
687}
688
Mike Stump11289f42009-09-09 15:08:12 +0000689APValue
Eli Friedman3ae59112009-02-23 04:23:56 +0000690VectorExprEvaluator::GetZeroVector(QualType T) {
John McCall9dd450b2009-09-21 23:43:11 +0000691 const VectorType *VT = T->getAs<VectorType>();
Eli Friedman3ae59112009-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 Friedman3ae59112009-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 Begeman2f2bdeb2009-01-18 03:20:47 +0000723//===----------------------------------------------------------------------===//
Chris Lattner05706e882008-07-11 18:11:29 +0000724// Integer Evaluation
725//===----------------------------------------------------------------------===//
Chris Lattner05706e882008-07-11 18:11:29 +0000726
727namespace {
Benjamin Kramer26222b62009-11-28 19:03:38 +0000728class IntExprEvaluator
Chris Lattnere13042c2008-07-11 19:10:17 +0000729 : public StmtVisitor<IntExprEvaluator, bool> {
Chris Lattnercdf34e72008-07-11 22:52:41 +0000730 EvalInfo &Info;
Daniel Dunbarca097ad2009-02-19 20:17:33 +0000731 APValue &Result;
Anders Carlsson0a1707c2008-07-08 05:13:58 +0000732public:
Daniel Dunbarca097ad2009-02-19 20:17:33 +0000733 IntExprEvaluator(EvalInfo &info, APValue &result)
Chris Lattnercdf34e72008-07-11 22:52:41 +0000734 : Info(info), Result(result) {}
Chris Lattner05706e882008-07-11 18:11:29 +0000735
Daniel Dunbare3c92bc2009-02-19 18:37:50 +0000736 bool Success(const llvm::APSInt &SI, const Expr *E) {
Daniel Dunbar79e042a2009-02-21 18:14:20 +0000737 assert(E->getType()->isIntegralType() && "Invalid evaluation result.");
Daniel Dunbarca097ad2009-02-19 20:17:33 +0000738 assert(SI.isSigned() == E->getType()->isSignedIntegerType() &&
Daniel Dunbare3c92bc2009-02-19 18:37:50 +0000739 "Invalid evaluation result.");
Daniel Dunbarca097ad2009-02-19 20:17:33 +0000740 assert(SI.getBitWidth() == Info.Ctx.getIntWidth(E->getType()) &&
Daniel Dunbare3c92bc2009-02-19 18:37:50 +0000741 "Invalid evaluation result.");
Daniel Dunbarca097ad2009-02-19 20:17:33 +0000742 Result = APValue(SI);
Daniel Dunbare3c92bc2009-02-19 18:37:50 +0000743 return true;
744 }
745
Daniel Dunbar8aafc892009-02-19 09:06:44 +0000746 bool Success(const llvm::APInt &I, const Expr *E) {
Daniel Dunbar79e042a2009-02-21 18:14:20 +0000747 assert(E->getType()->isIntegralType() && "Invalid evaluation result.");
Daniel Dunbarca097ad2009-02-19 20:17:33 +0000748 assert(I.getBitWidth() == Info.Ctx.getIntWidth(E->getType()) &&
Daniel Dunbare3c92bc2009-02-19 18:37:50 +0000749 "Invalid evaluation result.");
Daniel Dunbarca097ad2009-02-19 20:17:33 +0000750 Result = APValue(APSInt(I));
751 Result.getInt().setIsUnsigned(E->getType()->isUnsignedIntegerType());
Daniel Dunbar8aafc892009-02-19 09:06:44 +0000752 return true;
753 }
754
755 bool Success(uint64_t Value, const Expr *E) {
Daniel Dunbar79e042a2009-02-21 18:14:20 +0000756 assert(E->getType()->isIntegralType() && "Invalid evaluation result.");
Daniel Dunbarca097ad2009-02-19 20:17:33 +0000757 Result = APValue(Info.Ctx.MakeIntValue(Value, E->getType()));
Daniel Dunbar8aafc892009-02-19 09:06:44 +0000758 return true;
759 }
760
Anders Carlsson27b8c5c2008-11-30 18:14:57 +0000761 bool Error(SourceLocation L, diag::kind D, const Expr *E) {
Chris Lattnerfac05ae2008-11-12 07:43:42 +0000762 // Take the first error.
Anders Carlssonbd1df8e2008-11-30 16:38:33 +0000763 if (Info.EvalResult.Diag == 0) {
764 Info.EvalResult.DiagLoc = L;
765 Info.EvalResult.Diag = D;
Anders Carlsson27b8c5c2008-11-30 18:14:57 +0000766 Info.EvalResult.DiagExpr = E;
Chris Lattnerfac05ae2008-11-12 07:43:42 +0000767 }
Chris Lattner99415702008-07-12 00:14:42 +0000768 return false;
Chris Lattnerae8cc152008-07-11 19:24:49 +0000769 }
Mike Stump11289f42009-09-09 15:08:12 +0000770
Anders Carlsson0a1707c2008-07-08 05:13:58 +0000771 //===--------------------------------------------------------------------===//
772 // Visitor Methods
773 //===--------------------------------------------------------------------===//
Mike Stump11289f42009-09-09 15:08:12 +0000774
Chris Lattnerfac05ae2008-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 Stump11289f42009-09-09 15:08:12 +0000779
Chris Lattnerfac05ae2008-11-12 07:43:42 +0000780 bool VisitExpr(Expr *E) {
Anders Carlssonb33d6c82008-11-30 18:37:00 +0000781 return Error(E->getLocStart(), diag::note_invalid_subexpr_in_ice, E);
Anders Carlsson0a1707c2008-07-08 05:13:58 +0000782 }
Mike Stump11289f42009-09-09 15:08:12 +0000783
Chris Lattnere13042c2008-07-11 19:10:17 +0000784 bool VisitParenExpr(ParenExpr *E) { return Visit(E->getSubExpr()); }
Anders Carlsson0a1707c2008-07-08 05:13:58 +0000785
Chris Lattner7174bf32008-07-12 00:38:25 +0000786 bool VisitIntegerLiteral(const IntegerLiteral *E) {
Daniel Dunbar8aafc892009-02-19 09:06:44 +0000787 return Success(E->getValue(), E);
Chris Lattner7174bf32008-07-12 00:38:25 +0000788 }
789 bool VisitCharacterLiteral(const CharacterLiteral *E) {
Daniel Dunbar8aafc892009-02-19 09:06:44 +0000790 return Success(E->getValue(), E);
Chris Lattner7174bf32008-07-12 00:38:25 +0000791 }
792 bool VisitTypesCompatibleExpr(const TypesCompatibleExpr *E) {
Daniel Dunbard7be95d2008-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 Stump11289f42009-09-09 15:08:12 +0000798 return Success(Info.Ctx.typesAreCompatible(T0.getUnqualifiedType(),
Daniel Dunbar8aafc892009-02-19 09:06:44 +0000799 T1.getUnqualifiedType()),
800 E);
Chris Lattner7174bf32008-07-12 00:38:25 +0000801 }
Eli Friedmanfb8a93f2009-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 Lattner7174bf32008-07-12 00:38:25 +0000816 bool VisitCallExpr(const CallExpr *E);
Chris Lattnere13042c2008-07-11 19:10:17 +0000817 bool VisitBinaryOperator(const BinaryOperator *E);
818 bool VisitUnaryOperator(const UnaryOperator *E);
Nuno Lopes42042612008-11-16 19:28:31 +0000819 bool VisitConditionalOperator(const ConditionalOperator *E);
Anders Carlsson374b93d2008-07-08 05:49:43 +0000820
Daniel Dunbarb6f953e2009-01-29 06:16:07 +0000821 bool VisitCastExpr(CastExpr* E);
Sebastian Redl6f282892008-11-11 17:56:53 +0000822 bool VisitSizeOfAlignOfExpr(const SizeOfAlignOfExpr *E);
823
Anders Carlsson9f9e4242008-11-16 19:01:22 +0000824 bool VisitCXXBoolLiteralExpr(const CXXBoolLiteralExpr *E) {
Daniel Dunbar8aafc892009-02-19 09:06:44 +0000825 return Success(E->getValue(), E);
Anders Carlsson9f9e4242008-11-16 19:01:22 +0000826 }
Mike Stump11289f42009-09-09 15:08:12 +0000827
Anders Carlsson39def3a2008-12-21 22:39:40 +0000828 bool VisitGNUNullExpr(const GNUNullExpr *E) {
Daniel Dunbar8aafc892009-02-19 09:06:44 +0000829 return Success(0, E);
Anders Carlsson39def3a2008-12-21 22:39:40 +0000830 }
Mike Stump11289f42009-09-09 15:08:12 +0000831
Anders Carlsson9f9e4242008-11-16 19:01:22 +0000832 bool VisitCXXZeroInitValueExpr(const CXXZeroInitValueExpr *E) {
Daniel Dunbar8aafc892009-02-19 09:06:44 +0000833 return Success(0, E);
Anders Carlsson9f9e4242008-11-16 19:01:22 +0000834 }
835
Eli Friedman4e7a2412009-02-27 04:45:43 +0000836 bool VisitImplicitValueInitExpr(const ImplicitValueInitExpr *E) {
837 return Success(0, E);
838 }
839
Sebastian Redlbaad4e72009-01-05 20:52:13 +0000840 bool VisitUnaryTypeTraitExpr(const UnaryTypeTraitExpr *E) {
Douglas Gregor79f83ed2009-07-23 23:49:00 +0000841 return Success(E->EvaluateTrait(Info.Ctx), E);
Sebastian Redlbaad4e72009-01-05 20:52:13 +0000842 }
843
Eli Friedman449fe542009-03-23 04:56:01 +0000844 bool VisitChooseExpr(const ChooseExpr *E) {
845 return Visit(E->getChosenSubExpr(Info.Ctx));
846 }
847
Eli Friedmana1c7b6c2009-02-28 03:59:05 +0000848 bool VisitUnaryReal(const UnaryOperator *E);
Eli Friedman4e7a2412009-02-27 04:45:43 +0000849 bool VisitUnaryImag(const UnaryOperator *E);
850
Chris Lattnerf8d7f722008-07-11 21:24:13 +0000851private:
Chris Lattner68061312009-01-24 21:53:27 +0000852 unsigned GetAlignOfExpr(const Expr *E);
853 unsigned GetAlignOfType(QualType T);
Eli Friedman4e7a2412009-02-27 04:45:43 +0000854 // FIXME: Missing: array subscript of vector, member of vector
Anders Carlsson9c181652008-07-08 14:35:21 +0000855};
Chris Lattner05706e882008-07-11 18:11:29 +0000856} // end anonymous namespace
Anders Carlsson4a3585b2008-07-08 15:34:11 +0000857
Daniel Dunbarce399542009-02-20 18:22:23 +0000858static bool EvaluateIntegerOrLValue(const Expr* E, APValue &Result, EvalInfo &Info) {
Daniel Dunbare3c92bc2009-02-19 18:37:50 +0000859 if (!E->getType()->isIntegralType())
860 return false;
Mike Stump11289f42009-09-09 15:08:12 +0000861
Daniel Dunbarce399542009-02-20 18:22:23 +0000862 return IntExprEvaluator(Info, Result).Visit(const_cast<Expr*>(E));
863}
Daniel Dunbarca097ad2009-02-19 20:17:33 +0000864
Daniel Dunbarce399542009-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 Dunbarca097ad2009-02-19 20:17:33 +0000869 Result = Val.getInt();
870 return true;
Anders Carlsson4a3585b2008-07-08 15:34:11 +0000871}
Anders Carlsson4a3585b2008-07-08 15:34:11 +0000872
Eli Friedmanfb8a93f2009-11-24 05:28:59 +0000873bool IntExprEvaluator::CheckReferencedDecl(const Expr* E, const Decl* D) {
Chris Lattner7174bf32008-07-12 00:38:25 +0000874 // Enums are integer constant exprs.
Eli Friedmanee275c82009-12-10 22:29:29 +0000875 if (const EnumConstantDecl *ECD = dyn_cast<EnumConstantDecl>(D))
876 return Success(ECD->getInitVal(), E);
Sebastian Redlc9ab3d42009-02-08 15:51:17 +0000877
878 // In C++, const, non-volatile integers initialized with ICEs are ICEs.
Eli Friedman29f80c32009-03-30 23:39:01 +0000879 // In C, they can also be folded, although they are not ICEs.
Douglas Gregor0840cc02009-11-01 20:32:48 +0000880 if (Info.Ctx.getCanonicalType(E->getType()).getCVRQualifiers()
881 == Qualifiers::Const) {
Eli Friedmanfb8a93f2009-11-24 05:28:59 +0000882 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
Douglas Gregor0840cc02009-11-01 20:32:48 +0000883 const VarDecl *Def = 0;
Eli Friedmanfb8a93f2009-11-24 05:28:59 +0000884 if (const Expr *Init = VD->getDefinition(Def)) {
Eli Friedman1d6fb162009-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 Gregor31cf12c2009-05-26 18:54:04 +0000896 if (Visit(const_cast<Expr*>(Init))) {
897 // Cache the evaluated value in the variable declaration.
Eli Friedman1d6fb162009-12-03 20:31:57 +0000898 VD->setEvaluatedValue(Result);
Douglas Gregor31cf12c2009-05-26 18:54:04 +0000899 return true;
900 }
901
Eli Friedman1d6fb162009-12-03 20:31:57 +0000902 VD->setEvaluatedValue(APValue());
Douglas Gregor31cf12c2009-05-26 18:54:04 +0000903 return false;
904 }
Sebastian Redlc9ab3d42009-02-08 15:51:17 +0000905 }
906 }
907
Chris Lattner7174bf32008-07-12 00:38:25 +0000908 // Otherwise, random variable references are not constants.
Anders Carlssonb33d6c82008-11-30 18:37:00 +0000909 return Error(E->getLocStart(), diag::note_invalid_subexpr_in_ice, E);
Chris Lattner7174bf32008-07-12 00:38:25 +0000910}
911
Chris Lattner86ee2862008-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 Redl0f8b23f2009-03-16 23:22:08 +0000916 // FIXME: Does GCC differ between lvalue and rvalue references here?
Chris Lattner86ee2862008-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 Stump11289f42009-09-09 15:08:12 +0000928
929 // If no argument was supplied, default to "no_type_class". This isn't
Chris Lattner86ee2862008-10-06 06:40:35 +0000930 // ideal, however it is what gcc does.
931 if (E->getNumArgs() == 0)
932 return no_type_class;
Mike Stump11289f42009-09-09 15:08:12 +0000933
Chris Lattner86ee2862008-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 Lattner7174bf32008-07-12 00:38:25 +0000968bool IntExprEvaluator::VisitCallExpr(const CallExpr *E) {
Douglas Gregore711f702009-02-14 18:57:46 +0000969 switch (E->isBuiltinCall(Info.Ctx)) {
Chris Lattner4deaa4e2008-10-06 05:28:25 +0000970 default:
Anders Carlssonb33d6c82008-11-30 18:37:00 +0000971 return Error(E->getLocStart(), diag::note_invalid_subexpr_in_ice, E);
Mike Stump722cedf2009-10-26 18:35:08 +0000972
973 case Builtin::BI__builtin_object_size: {
Mike Stump722cedf2009-10-26 18:35:08 +0000974 const Expr *Arg = E->getArg(0)->IgnoreParens();
975 Expr::EvalResult Base;
Eric Christopher99469702010-01-19 22:58:35 +0000976
977 // TODO: Perhaps we should let LLVM lower this?
Mike Stump5183a142009-10-26 23:05:19 +0000978 if (Arg->EvaluateAsAny(Base, Info.Ctx)
Mike Stump722cedf2009-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 Stump5179f302009-10-28 21:22:24 +0000984 if (!VD->getType()->isIncompleteType()
985 && VD->getType()->isObjectType()
986 && !VD->getType()->isVariablyModifiedType()
987 && !VD->getType()->isDependentType()) {
Ken Dyck40775002010-01-11 17:06:35 +0000988 CharUnits Size = Info.Ctx.getTypeSizeInChars(VD->getType());
Ken Dyck02990832010-01-15 12:37:54 +0000989 CharUnits Offset = Base.Val.getLValueOffset();
Ken Dyck40775002010-01-11 17:06:35 +0000990 if (!Offset.isNegative() && Offset <= Size)
991 Size -= Offset;
Mike Stump5179f302009-10-28 21:22:24 +0000992 else
Ken Dyck40775002010-01-11 17:06:35 +0000993 Size = CharUnits::Zero();
994 return Success(Size.getQuantity(), E);
Mike Stump5179f302009-10-28 21:22:24 +0000995 }
Mike Stump722cedf2009-10-26 18:35:08 +0000996 }
997 }
998
Eric Christopher99469702010-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 Jahanian4127b8e2009-11-05 18:03:03 +00001001 if (E->getArg(0)->HasSideEffects(Info.Ctx)) {
Benjamin Kramer0128f662010-01-03 18:18:37 +00001002 if (E->getArg(1)->EvaluateAsInt(Info.Ctx).getZExtValue() <= 1)
Chris Lattner4f105592009-11-03 19:48:51 +00001003 return Success(-1ULL, E);
Mike Stump722cedf2009-10-26 18:35:08 +00001004 return Success(0, E);
1005 }
Mike Stump876387b2009-10-27 22:09:17 +00001006
Mike Stump722cedf2009-10-26 18:35:08 +00001007 return Error(E->getLocStart(), diag::note_invalid_subexpr_in_ice, E);
1008 }
1009
Chris Lattner4deaa4e2008-10-06 05:28:25 +00001010 case Builtin::BI__builtin_classify_type:
Daniel Dunbar8aafc892009-02-19 09:06:44 +00001011 return Success(EvaluateBuiltinClassifyType(E), E);
Mike Stump11289f42009-09-09 15:08:12 +00001012
Anders Carlsson4c76e932008-11-24 04:21:33 +00001013 case Builtin::BI__builtin_constant_p:
Chris Lattner4deaa4e2008-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 Dunbar8aafc892009-02-19 09:06:44 +00001016 return Success(E->getArg(0)->isEvaluatable(Info.Ctx), E);
Chris Lattnerd545ad12009-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 Lattner4deaa4e2008-10-06 05:28:25 +00001023 }
Chris Lattner7174bf32008-07-12 00:38:25 +00001024}
Anders Carlsson4a3585b2008-07-08 15:34:11 +00001025
Chris Lattnere13042c2008-07-11 19:10:17 +00001026bool IntExprEvaluator::VisitBinaryOperator(const BinaryOperator *E) {
Eli Friedman5a332ea2008-11-13 06:09:17 +00001027 if (E->getOpcode() == BinaryOperator::Comma) {
Anders Carlsson564730a2008-12-01 02:07:06 +00001028 if (!Visit(E->getRHS()))
1029 return false;
Anders Carlsson5b3638b2008-12-01 06:44:05 +00001030
Eli Friedman9cb9ff42009-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 Friedman5a332ea2008-11-13 06:09:17 +00001035
Anders Carlsson564730a2008-12-01 02:07:06 +00001036 return true;
Eli Friedman5a332ea2008-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 Carlssonf50de0c2008-11-30 16:51:17 +00001042 bool lhsResult, rhsResult;
Mike Stump11289f42009-09-09 15:08:12 +00001043
Anders Carlssonf50de0c2008-11-30 16:51:17 +00001044 if (HandleConversionToBool(E->getLHS(), lhsResult, Info)) {
Anders Carlsson59689ed2008-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 Friedman9cb9ff42009-02-26 10:19:36 +00001047 if (lhsResult == (E->getOpcode() == BinaryOperator::LOr))
Daniel Dunbare3c92bc2009-02-19 18:37:50 +00001048 return Success(lhsResult, E);
Anders Carlsson4c76e932008-11-24 04:21:33 +00001049
Anders Carlssonf50de0c2008-11-30 16:51:17 +00001050 if (HandleConversionToBool(E->getRHS(), rhsResult, Info)) {
Anders Carlsson4c76e932008-11-24 04:21:33 +00001051 if (E->getOpcode() == BinaryOperator::LOr)
Daniel Dunbar8aafc892009-02-19 09:06:44 +00001052 return Success(lhsResult || rhsResult, E);
Anders Carlsson4c76e932008-11-24 04:21:33 +00001053 else
Daniel Dunbar8aafc892009-02-19 09:06:44 +00001054 return Success(lhsResult && rhsResult, E);
Anders Carlsson4c76e932008-11-24 04:21:33 +00001055 }
1056 } else {
Anders Carlssonf50de0c2008-11-30 16:51:17 +00001057 if (HandleConversionToBool(E->getRHS(), rhsResult, Info)) {
Anders Carlsson4c76e932008-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 Stump11289f42009-09-09 15:08:12 +00001060 if (rhsResult == (E->getOpcode() == BinaryOperator::LOr) ||
Anders Carlssonf50de0c2008-11-30 16:51:17 +00001061 !rhsResult == (E->getOpcode() == BinaryOperator::LAnd)) {
Daniel Dunbar8aafc892009-02-19 09:06:44 +00001062 // Since we weren't able to evaluate the left hand side, it
Anders Carlssonf50de0c2008-11-30 16:51:17 +00001063 // must have had side effects.
1064 Info.EvalResult.HasSideEffects = true;
Daniel Dunbar8aafc892009-02-19 09:06:44 +00001065
1066 return Success(rhsResult, E);
Anders Carlsson4c76e932008-11-24 04:21:33 +00001067 }
1068 }
Anders Carlsson59689ed2008-11-22 21:04:56 +00001069 }
Eli Friedman5a332ea2008-11-13 06:09:17 +00001070
Eli Friedman5a332ea2008-11-13 06:09:17 +00001071 return false;
1072 }
1073
Anders Carlssonacc79812008-11-16 07:17:21 +00001074 QualType LHSTy = E->getLHS()->getType();
1075 QualType RHSTy = E->getRHS()->getType();
Daniel Dunbar74f2425b2009-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 Stump11289f42009-09-09 15:08:12 +00001088 APFloat::cmpResult CR_r =
Daniel Dunbar74f2425b2009-01-29 06:43:41 +00001089 LHS.getComplexFloatReal().compare(RHS.getComplexFloatReal());
Mike Stump11289f42009-09-09 15:08:12 +00001090 APFloat::cmpResult CR_i =
Daniel Dunbar74f2425b2009-01-29 06:43:41 +00001091 LHS.getComplexFloatImag().compare(RHS.getComplexFloatImag());
1092
Daniel Dunbar74f2425b2009-01-29 06:43:41 +00001093 if (E->getOpcode() == BinaryOperator::EQ)
Daniel Dunbar8aafc892009-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 Stump11289f42009-09-09 15:08:12 +00001099 return Success(((CR_r == APFloat::cmpGreaterThan ||
Daniel Dunbar8aafc892009-02-19 09:06:44 +00001100 CR_r == APFloat::cmpLessThan) &&
Mike Stump11289f42009-09-09 15:08:12 +00001101 (CR_i == APFloat::cmpGreaterThan ||
Daniel Dunbar8aafc892009-02-19 09:06:44 +00001102 CR_i == APFloat::cmpLessThan)), E);
1103 }
Daniel Dunbar74f2425b2009-01-29 06:43:41 +00001104 } else {
Daniel Dunbar74f2425b2009-01-29 06:43:41 +00001105 if (E->getOpcode() == BinaryOperator::EQ)
Daniel Dunbar8aafc892009-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 Dunbar74f2425b2009-01-29 06:43:41 +00001114 }
1115 }
Mike Stump11289f42009-09-09 15:08:12 +00001116
Anders Carlssonacc79812008-11-16 07:17:21 +00001117 if (LHSTy->isRealFloatingType() &&
1118 RHSTy->isRealFloatingType()) {
1119 APFloat RHS(0.0), LHS(0.0);
Mike Stump11289f42009-09-09 15:08:12 +00001120
Anders Carlssonacc79812008-11-16 07:17:21 +00001121 if (!EvaluateFloat(E->getRHS(), RHS, Info))
1122 return false;
Mike Stump11289f42009-09-09 15:08:12 +00001123
Anders Carlssonacc79812008-11-16 07:17:21 +00001124 if (!EvaluateFloat(E->getLHS(), LHS, Info))
1125 return false;
Mike Stump11289f42009-09-09 15:08:12 +00001126
Anders Carlssonacc79812008-11-16 07:17:21 +00001127 APFloat::cmpResult CR = LHS.compare(RHS);
Anders Carlsson899c7052008-11-16 22:46:56 +00001128
Anders Carlssonacc79812008-11-16 07:17:21 +00001129 switch (E->getOpcode()) {
1130 default:
1131 assert(0 && "Invalid binary operator!");
1132 case BinaryOperator::LT:
Daniel Dunbar8aafc892009-02-19 09:06:44 +00001133 return Success(CR == APFloat::cmpLessThan, E);
Anders Carlssonacc79812008-11-16 07:17:21 +00001134 case BinaryOperator::GT:
Daniel Dunbar8aafc892009-02-19 09:06:44 +00001135 return Success(CR == APFloat::cmpGreaterThan, E);
Anders Carlssonacc79812008-11-16 07:17:21 +00001136 case BinaryOperator::LE:
Daniel Dunbar8aafc892009-02-19 09:06:44 +00001137 return Success(CR == APFloat::cmpLessThan || CR == APFloat::cmpEqual, E);
Anders Carlssonacc79812008-11-16 07:17:21 +00001138 case BinaryOperator::GE:
Mike Stump11289f42009-09-09 15:08:12 +00001139 return Success(CR == APFloat::cmpGreaterThan || CR == APFloat::cmpEqual,
Daniel Dunbar8aafc892009-02-19 09:06:44 +00001140 E);
Anders Carlssonacc79812008-11-16 07:17:21 +00001141 case BinaryOperator::EQ:
Daniel Dunbar8aafc892009-02-19 09:06:44 +00001142 return Success(CR == APFloat::cmpEqual, E);
Anders Carlssonacc79812008-11-16 07:17:21 +00001143 case BinaryOperator::NE:
Mike Stump11289f42009-09-09 15:08:12 +00001144 return Success(CR == APFloat::cmpGreaterThan
Daniel Dunbar8aafc892009-02-19 09:06:44 +00001145 || CR == APFloat::cmpLessThan, E);
Anders Carlssonacc79812008-11-16 07:17:21 +00001146 }
Anders Carlssonacc79812008-11-16 07:17:21 +00001147 }
Mike Stump11289f42009-09-09 15:08:12 +00001148
Eli Friedmana38da572009-04-28 19:17:36 +00001149 if (LHSTy->isPointerType() && RHSTy->isPointerType()) {
1150 if (E->getOpcode() == BinaryOperator::Sub || E->isEqualityOp()) {
Anders Carlsson9f9e4242008-11-16 19:01:22 +00001151 APValue LHSValue;
1152 if (!EvaluatePointer(E->getLHS(), LHSValue, Info))
1153 return false;
Eli Friedman64004332009-03-23 04:38:34 +00001154
Anders Carlsson9f9e4242008-11-16 19:01:22 +00001155 APValue RHSValue;
1156 if (!EvaluatePointer(E->getRHS(), RHSValue, Info))
1157 return false;
Eli Friedman64004332009-03-23 04:38:34 +00001158
Eli Friedman334046a2009-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 Dyck02990832010-01-15 12:37:54 +00001164 if (RHSValue.getLValueBase() || !RHSValue.getLValueOffset().isZero())
Eli Friedman334046a2009-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 Dyck02990832010-01-15 12:37:54 +00001173 if (LHSValue.getLValueBase() || !LHSValue.getLValueOffset().isZero())
Eli Friedman334046a2009-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 Friedman64004332009-03-23 04:38:34 +00001180
Eli Friedmana38da572009-04-28 19:17:36 +00001181 if (E->getOpcode() == BinaryOperator::Sub) {
1182 const QualType Type = E->getLHS()->getType();
Ted Kremenekc23c7e62009-07-29 21:53:49 +00001183 const QualType ElementType = Type->getAs<PointerType>()->getPointeeType();
Anders Carlsson9f9e4242008-11-16 19:01:22 +00001184
Ken Dyck02990832010-01-15 12:37:54 +00001185 CharUnits ElementSize = CharUnits::One();
Eli Friedmanfa90b152009-06-04 20:23:20 +00001186 if (!ElementType->isVoidType() && !ElementType->isFunctionType())
Ken Dyck02990832010-01-15 12:37:54 +00001187 ElementSize = Info.Ctx.getTypeSizeInChars(ElementType);
Eli Friedman64004332009-03-23 04:38:34 +00001188
Ken Dyck02990832010-01-15 12:37:54 +00001189 CharUnits Diff = LHSValue.getLValueOffset() -
1190 RHSValue.getLValueOffset();
1191 return Success(Diff / ElementSize, E);
Eli Friedmana38da572009-04-28 19:17:36 +00001192 }
1193 bool Result;
1194 if (E->getOpcode() == BinaryOperator::EQ) {
1195 Result = LHSValue.getLValueOffset() == RHSValue.getLValueOffset();
Eli Friedman8b171f62009-04-29 20:29:43 +00001196 } else {
Eli Friedmana38da572009-04-28 19:17:36 +00001197 Result = LHSValue.getLValueOffset() != RHSValue.getLValueOffset();
1198 }
1199 return Success(Result, E);
Anders Carlsson9f9e4242008-11-16 19:01:22 +00001200 }
1201 }
Anders Carlssonacc79812008-11-16 07:17:21 +00001202 if (!LHSTy->isIntegralType() ||
1203 !RHSTy->isIntegralType()) {
Eli Friedman5a332ea2008-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 Friedman5a332ea2008-11-13 06:09:17 +00001206 return false;
1207 }
1208
Anders Carlsson9c181652008-07-08 14:35:21 +00001209 // The LHS of a constant expr is always evaluated and needed.
Daniel Dunbarca097ad2009-02-19 20:17:33 +00001210 if (!Visit(E->getLHS()))
Chris Lattner99415702008-07-12 00:14:42 +00001211 return false; // error in subexpression.
Eli Friedmanbd840592008-07-27 05:46:18 +00001212
Eli Friedman94c25c62009-03-24 01:14:50 +00001213 APValue RHSVal;
1214 if (!EvaluateIntegerOrLValue(E->getRHS(), RHSVal, Info))
Daniel Dunbarca097ad2009-02-19 20:17:33 +00001215 return false;
Eli Friedman94c25c62009-03-24 01:14:50 +00001216
1217 // Handle cases like (unsigned long)&a + 4.
1218 if (E->isAdditiveOp() && Result.isLValue() && RHSVal.isInt()) {
Ken Dyck02990832010-01-15 12:37:54 +00001219 CharUnits Offset = Result.getLValueOffset();
1220 CharUnits AdditionalOffset = CharUnits::fromQuantity(
1221 RHSVal.getInt().getZExtValue());
Eli Friedman94c25c62009-03-24 01:14:50 +00001222 if (E->getOpcode() == BinaryOperator::Add)
Ken Dyck02990832010-01-15 12:37:54 +00001223 Offset += AdditionalOffset;
Eli Friedman94c25c62009-03-24 01:14:50 +00001224 else
Ken Dyck02990832010-01-15 12:37:54 +00001225 Offset -= AdditionalOffset;
1226 Result = APValue(Result.getLValueBase(), Offset);
Eli Friedman94c25c62009-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 Dyck02990832010-01-15 12:37:54 +00001233 CharUnits Offset = RHSVal.getLValueOffset();
1234 Offset += CharUnits::fromQuantity(Result.getInt().getZExtValue());
1235 Result = APValue(RHSVal.getLValueBase(), Offset);
Eli Friedman94c25c62009-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 Lattnere13042c2008-07-11 19:10:17 +00001241 return false;
Eli Friedman5a332ea2008-11-13 06:09:17 +00001242
Eli Friedman94c25c62009-03-24 01:14:50 +00001243 APSInt& RHS = RHSVal.getInt();
1244
Anders Carlsson9c181652008-07-08 14:35:21 +00001245 switch (E->getOpcode()) {
Chris Lattnerfac05ae2008-11-12 07:43:42 +00001246 default:
Anders Carlssonb33d6c82008-11-30 18:37:00 +00001247 return Error(E->getOperatorLoc(), diag::note_invalid_subexpr_in_ice, E);
Daniel Dunbarca097ad2009-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 Lattnerf09ad162008-07-11 22:15:16 +00001254 case BinaryOperator::Div:
Chris Lattner99415702008-07-12 00:14:42 +00001255 if (RHS == 0)
Anders Carlssonb33d6c82008-11-30 18:37:00 +00001256 return Error(E->getOperatorLoc(), diag::note_expr_divide_by_zero, E);
Daniel Dunbarca097ad2009-02-19 20:17:33 +00001257 return Success(Result.getInt() / RHS, E);
Chris Lattnerf09ad162008-07-11 22:15:16 +00001258 case BinaryOperator::Rem:
Chris Lattner99415702008-07-12 00:14:42 +00001259 if (RHS == 0)
Anders Carlssonb33d6c82008-11-30 18:37:00 +00001260 return Error(E->getOperatorLoc(), diag::note_expr_divide_by_zero, E);
Daniel Dunbarca097ad2009-02-19 20:17:33 +00001261 return Success(Result.getInt() % RHS, E);
Daniel Dunbare3c92bc2009-02-19 18:37:50 +00001262 case BinaryOperator::Shl: {
Chris Lattner99415702008-07-12 00:14:42 +00001263 // FIXME: Warn about out of range shift amounts!
Mike Stump11289f42009-09-09 15:08:12 +00001264 unsigned SA =
Daniel Dunbarca097ad2009-02-19 20:17:33 +00001265 (unsigned) RHS.getLimitedValue(Result.getInt().getBitWidth()-1);
1266 return Success(Result.getInt() << SA, E);
Daniel Dunbare3c92bc2009-02-19 18:37:50 +00001267 }
1268 case BinaryOperator::Shr: {
Mike Stump11289f42009-09-09 15:08:12 +00001269 unsigned SA =
Daniel Dunbarca097ad2009-02-19 20:17:33 +00001270 (unsigned) RHS.getLimitedValue(Result.getInt().getBitWidth()-1);
1271 return Success(Result.getInt() >> SA, E);
Daniel Dunbare3c92bc2009-02-19 18:37:50 +00001272 }
Mike Stump11289f42009-09-09 15:08:12 +00001273
Daniel Dunbarca097ad2009-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 Friedman8553a982008-11-13 02:13:11 +00001280 }
Anders Carlsson9c181652008-07-08 14:35:21 +00001281}
1282
Nuno Lopes42042612008-11-16 19:28:31 +00001283bool IntExprEvaluator::VisitConditionalOperator(const ConditionalOperator *E) {
Nuno Lopes527b5a62008-11-16 22:06:39 +00001284 bool Cond;
1285 if (!HandleConversionToBool(E->getCond(), Cond, Info))
Nuno Lopes42042612008-11-16 19:28:31 +00001286 return false;
1287
Nuno Lopes527b5a62008-11-16 22:06:39 +00001288 return Visit(Cond ? E->getTrueExpr() : E->getFalseExpr());
Nuno Lopes42042612008-11-16 19:28:31 +00001289}
1290
Chris Lattner68061312009-01-24 21:53:27 +00001291unsigned IntExprEvaluator::GetAlignOfType(QualType T) {
Sebastian Redl22e2e5c2009-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 Lattner24aeeab2009-01-24 21:09:06 +00001299 // Get information about the alignment.
1300 unsigned CharSize = Info.Ctx.Target.getCharWidth();
Douglas Gregoref462e62009-04-30 17:32:17 +00001301
Eli Friedmanf7f9f682009-05-30 21:09:44 +00001302 // __alignof is defined to return the preferred alignment.
Douglas Gregoref462e62009-04-30 17:32:17 +00001303 return Info.Ctx.getPreferredTypeAlign(T.getTypePtr()) / CharSize;
Chris Lattner24aeeab2009-01-24 21:09:06 +00001304}
1305
Chris Lattner68061312009-01-24 21:53:27 +00001306unsigned IntExprEvaluator::GetAlignOfExpr(const Expr *E) {
1307 E = E->IgnoreParens();
1308
1309 // alignof decl is always accepted, even if it doesn't make sense: we default
Mike Stump11289f42009-09-09 15:08:12 +00001310 // to 1 in those cases.
Chris Lattner68061312009-01-24 21:53:27 +00001311 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E))
Sebastian Redl22e2e5c2009-11-23 17:18:46 +00001312 return Info.Ctx.getDeclAlignInBytes(DRE->getDecl(), /*RefAsPointee*/true);
Eli Friedman64004332009-03-23 04:38:34 +00001313
Chris Lattner68061312009-01-24 21:53:27 +00001314 if (const MemberExpr *ME = dyn_cast<MemberExpr>(E))
Sebastian Redl22e2e5c2009-11-23 17:18:46 +00001315 return Info.Ctx.getDeclAlignInBytes(ME->getMemberDecl(),
1316 /*RefAsPointee*/true);
Chris Lattner68061312009-01-24 21:53:27 +00001317
Chris Lattner24aeeab2009-01-24 21:09:06 +00001318 return GetAlignOfType(E->getType());
1319}
1320
1321
Sebastian Redl6f282892008-11-11 17:56:53 +00001322/// VisitSizeAlignOfExpr - Evaluate a sizeof or alignof with a result as the
1323/// expression's type.
1324bool IntExprEvaluator::VisitSizeOfAlignOfExpr(const SizeOfAlignOfExpr *E) {
Chris Lattner24aeeab2009-01-24 21:09:06 +00001325 // Handle alignof separately.
1326 if (!E->isSizeOf()) {
1327 if (E->isArgumentType())
Daniel Dunbar8aafc892009-02-19 09:06:44 +00001328 return Success(GetAlignOfType(E->getArgumentType()), E);
Chris Lattner24aeeab2009-01-24 21:09:06 +00001329 else
Daniel Dunbar8aafc892009-02-19 09:06:44 +00001330 return Success(GetAlignOfExpr(E->getArgumentExpr()), E);
Chris Lattner24aeeab2009-01-24 21:09:06 +00001331 }
Eli Friedman64004332009-03-23 04:38:34 +00001332
Sebastian Redl6f282892008-11-11 17:56:53 +00001333 QualType SrcTy = E->getTypeOfArgument();
Sebastian Redl22e2e5c2009-11-23 17:18:46 +00001334 // C++ [expr.sizeof]p2: "When applied to a reference or a reference type,
1335 // the result is the size of the referenced type."
1336 // C++ [expr.alignof]p3: "When alignof is applied to a reference type, the
1337 // result shall be the alignment of the referenced type."
1338 if (const ReferenceType *Ref = SrcTy->getAs<ReferenceType>())
1339 SrcTy = Ref->getPointeeType();
Sebastian Redl6f282892008-11-11 17:56:53 +00001340
Daniel Dunbar8aafc892009-02-19 09:06:44 +00001341 // sizeof(void), __alignof__(void), sizeof(function) = 1 as a gcc
1342 // extension.
1343 if (SrcTy->isVoidType() || SrcTy->isFunctionType())
1344 return Success(1, E);
Eli Friedman64004332009-03-23 04:38:34 +00001345
Chris Lattnerf8d7f722008-07-11 21:24:13 +00001346 // sizeof(vla) is not a constantexpr: C99 6.5.3.4p2.
Chris Lattner24aeeab2009-01-24 21:09:06 +00001347 if (!SrcTy->isConstantSizeType())
Chris Lattnerf8d7f722008-07-11 21:24:13 +00001348 return false;
Eli Friedman2aa38fe2009-01-24 22:19:05 +00001349
Chris Lattner24aeeab2009-01-24 21:09:06 +00001350 // Get information about the size.
Ken Dyck40775002010-01-11 17:06:35 +00001351 return Success(Info.Ctx.getTypeSizeInChars(SrcTy).getQuantity(), E);
Chris Lattnerf8d7f722008-07-11 21:24:13 +00001352}
1353
Chris Lattnere13042c2008-07-11 19:10:17 +00001354bool IntExprEvaluator::VisitUnaryOperator(const UnaryOperator *E) {
Chris Lattner7174bf32008-07-12 00:38:25 +00001355 // Special case unary operators that do not need their subexpression
1356 // evaluated. offsetof/sizeof/alignof are all special.
Eli Friedman988a16b2009-02-27 06:44:11 +00001357 if (E->isOffsetOfOp()) {
1358 // The AST for offsetof is defined in such a way that we can just
1359 // directly Evaluate it as an l-value.
1360 APValue LV;
1361 if (!EvaluateLValue(E->getSubExpr(), LV, Info))
1362 return false;
1363 if (LV.getLValueBase())
1364 return false;
Ken Dyck02990832010-01-15 12:37:54 +00001365 return Success(LV.getLValueOffset().getQuantity(), E);
Eli Friedman988a16b2009-02-27 06:44:11 +00001366 }
Eli Friedman5a332ea2008-11-13 06:09:17 +00001367
1368 if (E->getOpcode() == UnaryOperator::LNot) {
1369 // LNot's operand isn't necessarily an integer, so we handle it specially.
1370 bool bres;
1371 if (!HandleConversionToBool(E->getSubExpr(), bres, Info))
1372 return false;
Daniel Dunbar8aafc892009-02-19 09:06:44 +00001373 return Success(!bres, E);
Eli Friedman5a332ea2008-11-13 06:09:17 +00001374 }
1375
Daniel Dunbar79e042a2009-02-21 18:14:20 +00001376 // Only handle integral operations...
1377 if (!E->getSubExpr()->getType()->isIntegralType())
1378 return false;
1379
Chris Lattnercdf34e72008-07-11 22:52:41 +00001380 // Get the operand value into 'Result'.
1381 if (!Visit(E->getSubExpr()))
Chris Lattnerf09ad162008-07-11 22:15:16 +00001382 return false;
Anders Carlsson9c181652008-07-08 14:35:21 +00001383
Chris Lattnerf09ad162008-07-11 22:15:16 +00001384 switch (E->getOpcode()) {
Chris Lattner7174bf32008-07-12 00:38:25 +00001385 default:
Chris Lattnerf09ad162008-07-11 22:15:16 +00001386 // Address, indirect, pre/post inc/dec, etc are not valid constant exprs.
1387 // See C99 6.6p3.
Anders Carlssonb33d6c82008-11-30 18:37:00 +00001388 return Error(E->getOperatorLoc(), diag::note_invalid_subexpr_in_ice, E);
Chris Lattnerf09ad162008-07-11 22:15:16 +00001389 case UnaryOperator::Extension:
Chris Lattner7174bf32008-07-12 00:38:25 +00001390 // FIXME: Should extension allow i-c-e extension expressions in its scope?
1391 // If so, we could clear the diagnostic ID.
Daniel Dunbare3c92bc2009-02-19 18:37:50 +00001392 return true;
Chris Lattnerf09ad162008-07-11 22:15:16 +00001393 case UnaryOperator::Plus:
Mike Stump11289f42009-09-09 15:08:12 +00001394 // The result is always just the subexpr.
Daniel Dunbare3c92bc2009-02-19 18:37:50 +00001395 return true;
Chris Lattnerf09ad162008-07-11 22:15:16 +00001396 case UnaryOperator::Minus:
Daniel Dunbarca097ad2009-02-19 20:17:33 +00001397 if (!Result.isInt()) return false;
1398 return Success(-Result.getInt(), E);
Chris Lattnerf09ad162008-07-11 22:15:16 +00001399 case UnaryOperator::Not:
Daniel Dunbarca097ad2009-02-19 20:17:33 +00001400 if (!Result.isInt()) return false;
1401 return Success(~Result.getInt(), E);
Anders Carlsson9c181652008-07-08 14:35:21 +00001402 }
Anders Carlsson9c181652008-07-08 14:35:21 +00001403}
Mike Stump11289f42009-09-09 15:08:12 +00001404
Chris Lattner477c4be2008-07-12 01:15:53 +00001405/// HandleCast - This is used to evaluate implicit or explicit casts where the
1406/// result type is integer.
Daniel Dunbarb6f953e2009-01-29 06:16:07 +00001407bool IntExprEvaluator::VisitCastExpr(CastExpr *E) {
Anders Carlsson27b8c5c2008-11-30 18:14:57 +00001408 Expr *SubExpr = E->getSubExpr();
1409 QualType DestType = E->getType();
Daniel Dunbarcf04aa12009-02-19 22:16:29 +00001410 QualType SrcType = SubExpr->getType();
Anders Carlsson27b8c5c2008-11-30 18:14:57 +00001411
Eli Friedman9a156e52008-11-12 09:44:48 +00001412 if (DestType->isBooleanType()) {
1413 bool BoolResult;
1414 if (!HandleConversionToBool(SubExpr, BoolResult, Info))
1415 return false;
Daniel Dunbar8aafc892009-02-19 09:06:44 +00001416 return Success(BoolResult, E);
Eli Friedman9a156e52008-11-12 09:44:48 +00001417 }
1418
Anders Carlsson9c181652008-07-08 14:35:21 +00001419 // Handle simple integer->integer casts.
Daniel Dunbarcf04aa12009-02-19 22:16:29 +00001420 if (SrcType->isIntegralType()) {
Chris Lattner477c4be2008-07-12 01:15:53 +00001421 if (!Visit(SubExpr))
Chris Lattnere13042c2008-07-11 19:10:17 +00001422 return false;
Daniel Dunbarb6f953e2009-01-29 06:16:07 +00001423
Eli Friedman742421e2009-02-20 01:15:07 +00001424 if (!Result.isInt()) {
1425 // Only allow casts of lvalues if they are lossless.
1426 return Info.Ctx.getTypeSize(DestType) == Info.Ctx.getTypeSize(SrcType);
1427 }
Daniel Dunbarca097ad2009-02-19 20:17:33 +00001428
Daniel Dunbar1c8560d2009-02-19 22:24:01 +00001429 return Success(HandleIntToIntCast(DestType, SrcType,
Daniel Dunbarca097ad2009-02-19 20:17:33 +00001430 Result.getInt(), Info.Ctx), E);
Chris Lattner477c4be2008-07-12 01:15:53 +00001431 }
Mike Stump11289f42009-09-09 15:08:12 +00001432
Chris Lattner477c4be2008-07-12 01:15:53 +00001433 // FIXME: Clean this up!
Daniel Dunbarcf04aa12009-02-19 22:16:29 +00001434 if (SrcType->isPointerType()) {
Anders Carlsson9c181652008-07-08 14:35:21 +00001435 APValue LV;
Chris Lattnercdf34e72008-07-11 22:52:41 +00001436 if (!EvaluatePointer(SubExpr, LV, Info))
Chris Lattnere13042c2008-07-11 19:10:17 +00001437 return false;
Eli Friedman9a156e52008-11-12 09:44:48 +00001438
Daniel Dunbar1c8560d2009-02-19 22:24:01 +00001439 if (LV.getLValueBase()) {
1440 // Only allow based lvalue casts if they are lossless.
1441 if (Info.Ctx.getTypeSize(DestType) != Info.Ctx.getTypeSize(SrcType))
1442 return false;
Eli Friedman9a156e52008-11-12 09:44:48 +00001443
Daniel Dunbar1c8560d2009-02-19 22:24:01 +00001444 Result = LV;
1445 return true;
1446 }
1447
Ken Dyck02990832010-01-15 12:37:54 +00001448 APSInt AsInt = Info.Ctx.MakeIntValue(LV.getLValueOffset().getQuantity(),
1449 SrcType);
Daniel Dunbar1c8560d2009-02-19 22:24:01 +00001450 return Success(HandleIntToIntCast(DestType, SrcType, AsInt, Info.Ctx), E);
Anders Carlssonb5ad0212008-07-08 14:30:00 +00001451 }
Eli Friedman9a156e52008-11-12 09:44:48 +00001452
Eli Friedman742421e2009-02-20 01:15:07 +00001453 if (SrcType->isArrayType() || SrcType->isFunctionType()) {
1454 // This handles double-conversion cases, where there's both
1455 // an l-value promotion and an implicit conversion to int.
1456 APValue LV;
1457 if (!EvaluateLValue(SubExpr, LV, Info))
1458 return false;
1459
1460 if (Info.Ctx.getTypeSize(DestType) != Info.Ctx.getTypeSize(Info.Ctx.VoidPtrTy))
1461 return false;
1462
1463 Result = LV;
1464 return true;
1465 }
1466
Eli Friedmand3a5a9d2009-04-22 19:23:09 +00001467 if (SrcType->isAnyComplexType()) {
1468 APValue C;
1469 if (!EvaluateComplex(SubExpr, C, Info))
1470 return false;
1471 if (C.isComplexFloat())
1472 return Success(HandleFloatToIntCast(DestType, SrcType,
1473 C.getComplexFloatReal(), Info.Ctx),
1474 E);
1475 else
1476 return Success(HandleIntToIntCast(DestType, SrcType,
1477 C.getComplexIntReal(), Info.Ctx), E);
1478 }
Eli Friedmanc2b50172009-02-22 11:46:18 +00001479 // FIXME: Handle vectors
1480
Daniel Dunbarcf04aa12009-02-19 22:16:29 +00001481 if (!SrcType->isRealFloatingType())
Anders Carlssonb33d6c82008-11-30 18:37:00 +00001482 return Error(E->getExprLoc(), diag::note_invalid_subexpr_in_ice, E);
Chris Lattner477c4be2008-07-12 01:15:53 +00001483
Eli Friedman24c01542008-08-22 00:06:13 +00001484 APFloat F(0.0);
1485 if (!EvaluateFloat(SubExpr, F, Info))
Anders Carlssonb33d6c82008-11-30 18:37:00 +00001486 return Error(E->getExprLoc(), diag::note_invalid_subexpr_in_ice, E);
Mike Stump11289f42009-09-09 15:08:12 +00001487
Daniel Dunbarcf04aa12009-02-19 22:16:29 +00001488 return Success(HandleFloatToIntCast(DestType, SrcType, F, Info.Ctx), E);
Anders Carlsson9c181652008-07-08 14:35:21 +00001489}
Anders Carlssonb5ad0212008-07-08 14:30:00 +00001490
Eli Friedmana1c7b6c2009-02-28 03:59:05 +00001491bool IntExprEvaluator::VisitUnaryReal(const UnaryOperator *E) {
1492 if (E->getSubExpr()->getType()->isAnyComplexType()) {
1493 APValue LV;
1494 if (!EvaluateComplex(E->getSubExpr(), LV, Info) || !LV.isComplexInt())
1495 return Error(E->getExprLoc(), diag::note_invalid_subexpr_in_ice, E);
1496 return Success(LV.getComplexIntReal(), E);
1497 }
1498
1499 return Visit(E->getSubExpr());
1500}
1501
Eli Friedman4e7a2412009-02-27 04:45:43 +00001502bool IntExprEvaluator::VisitUnaryImag(const UnaryOperator *E) {
Eli Friedmana1c7b6c2009-02-28 03:59:05 +00001503 if (E->getSubExpr()->getType()->isComplexIntegerType()) {
1504 APValue LV;
1505 if (!EvaluateComplex(E->getSubExpr(), LV, Info) || !LV.isComplexInt())
1506 return Error(E->getExprLoc(), diag::note_invalid_subexpr_in_ice, E);
1507 return Success(LV.getComplexIntImag(), E);
1508 }
1509
Eli Friedman4e7a2412009-02-27 04:45:43 +00001510 if (!E->getSubExpr()->isEvaluatable(Info.Ctx))
1511 Info.EvalResult.HasSideEffects = true;
1512 return Success(0, E);
1513}
1514
Chris Lattner05706e882008-07-11 18:11:29 +00001515//===----------------------------------------------------------------------===//
Eli Friedman24c01542008-08-22 00:06:13 +00001516// Float Evaluation
1517//===----------------------------------------------------------------------===//
1518
1519namespace {
Benjamin Kramer26222b62009-11-28 19:03:38 +00001520class FloatExprEvaluator
Eli Friedman24c01542008-08-22 00:06:13 +00001521 : public StmtVisitor<FloatExprEvaluator, bool> {
1522 EvalInfo &Info;
1523 APFloat &Result;
1524public:
1525 FloatExprEvaluator(EvalInfo &info, APFloat &result)
1526 : Info(info), Result(result) {}
1527
1528 bool VisitStmt(Stmt *S) {
1529 return false;
1530 }
1531
1532 bool VisitParenExpr(ParenExpr *E) { return Visit(E->getSubExpr()); }
Chris Lattner4deaa4e2008-10-06 05:28:25 +00001533 bool VisitCallExpr(const CallExpr *E);
Eli Friedman24c01542008-08-22 00:06:13 +00001534
Daniel Dunbarc3d79cf2008-10-16 03:51:50 +00001535 bool VisitUnaryOperator(const UnaryOperator *E);
Eli Friedman24c01542008-08-22 00:06:13 +00001536 bool VisitBinaryOperator(const BinaryOperator *E);
1537 bool VisitFloatingLiteral(const FloatingLiteral *E);
Eli Friedman9a156e52008-11-12 09:44:48 +00001538 bool VisitCastExpr(CastExpr *E);
1539 bool VisitCXXZeroInitValueExpr(CXXZeroInitValueExpr *E);
Eli Friedmanf3da3342009-12-04 02:12:53 +00001540 bool VisitConditionalOperator(ConditionalOperator *E);
Eli Friedmanc2b50172009-02-22 11:46:18 +00001541
Eli Friedman449fe542009-03-23 04:56:01 +00001542 bool VisitChooseExpr(const ChooseExpr *E)
1543 { return Visit(E->getChosenSubExpr(Info.Ctx)); }
1544 bool VisitUnaryExtension(const UnaryOperator *E)
1545 { return Visit(E->getSubExpr()); }
1546
1547 // FIXME: Missing: __real__/__imag__, array subscript of vector,
Eli Friedmanf3da3342009-12-04 02:12:53 +00001548 // member of vector, ImplicitValueInitExpr
Eli Friedman24c01542008-08-22 00:06:13 +00001549};
1550} // end anonymous namespace
1551
1552static bool EvaluateFloat(const Expr* E, APFloat& Result, EvalInfo &Info) {
1553 return FloatExprEvaluator(Info, Result).Visit(const_cast<Expr*>(E));
1554}
1555
Chris Lattner4deaa4e2008-10-06 05:28:25 +00001556bool FloatExprEvaluator::VisitCallExpr(const CallExpr *E) {
Douglas Gregore711f702009-02-14 18:57:46 +00001557 switch (E->isBuiltinCall(Info.Ctx)) {
Chris Lattner37346e02008-10-06 05:53:16 +00001558 default: return false;
Chris Lattner4deaa4e2008-10-06 05:28:25 +00001559 case Builtin::BI__builtin_huge_val:
1560 case Builtin::BI__builtin_huge_valf:
1561 case Builtin::BI__builtin_huge_vall:
1562 case Builtin::BI__builtin_inf:
1563 case Builtin::BI__builtin_inff:
Daniel Dunbar1be9f882008-10-14 05:41:12 +00001564 case Builtin::BI__builtin_infl: {
1565 const llvm::fltSemantics &Sem =
1566 Info.Ctx.getFloatTypeSemantics(E->getType());
Chris Lattner37346e02008-10-06 05:53:16 +00001567 Result = llvm::APFloat::getInf(Sem);
1568 return true;
Daniel Dunbar1be9f882008-10-14 05:41:12 +00001569 }
Mike Stump11289f42009-09-09 15:08:12 +00001570
Chris Lattner0b7282e2008-10-06 06:31:58 +00001571 case Builtin::BI__builtin_nan:
1572 case Builtin::BI__builtin_nanf:
1573 case Builtin::BI__builtin_nanl:
Mike Stump2346cd22009-05-30 03:56:50 +00001574 // If this is __builtin_nan() turn this into a nan, otherwise we
Chris Lattner0b7282e2008-10-06 06:31:58 +00001575 // can't constant fold it.
Mike Stump11289f42009-09-09 15:08:12 +00001576 if (const StringLiteral *S =
Chris Lattner0b7282e2008-10-06 06:31:58 +00001577 dyn_cast<StringLiteral>(E->getArg(0)->IgnoreParenCasts())) {
Mike Stump2346cd22009-05-30 03:56:50 +00001578 if (!S->isWide()) {
Daniel Dunbar1be9f882008-10-14 05:41:12 +00001579 const llvm::fltSemantics &Sem =
1580 Info.Ctx.getFloatTypeSemantics(E->getType());
Benjamin Kramer8a4ad4a2009-12-11 13:26:32 +00001581 unsigned Type = 0;
1582 if (!S->getString().empty() && S->getString().getAsInteger(0, Type))
Mike Stump2346cd22009-05-30 03:56:50 +00001583 return false;
Benjamin Kramer8a4ad4a2009-12-11 13:26:32 +00001584 Result = llvm::APFloat::getNaN(Sem, false, Type);
Chris Lattner0b7282e2008-10-06 06:31:58 +00001585 return true;
1586 }
1587 }
1588 return false;
Daniel Dunbarc3d79cf2008-10-16 03:51:50 +00001589
1590 case Builtin::BI__builtin_fabs:
1591 case Builtin::BI__builtin_fabsf:
1592 case Builtin::BI__builtin_fabsl:
1593 if (!EvaluateFloat(E->getArg(0), Result, Info))
1594 return false;
Mike Stump11289f42009-09-09 15:08:12 +00001595
Daniel Dunbarc3d79cf2008-10-16 03:51:50 +00001596 if (Result.isNegative())
1597 Result.changeSign();
1598 return true;
1599
Mike Stump11289f42009-09-09 15:08:12 +00001600 case Builtin::BI__builtin_copysign:
1601 case Builtin::BI__builtin_copysignf:
Daniel Dunbarc3d79cf2008-10-16 03:51:50 +00001602 case Builtin::BI__builtin_copysignl: {
1603 APFloat RHS(0.);
1604 if (!EvaluateFloat(E->getArg(0), Result, Info) ||
1605 !EvaluateFloat(E->getArg(1), RHS, Info))
1606 return false;
1607 Result.copySign(RHS);
1608 return true;
1609 }
Chris Lattner4deaa4e2008-10-06 05:28:25 +00001610 }
1611}
1612
Daniel Dunbarc3d79cf2008-10-16 03:51:50 +00001613bool FloatExprEvaluator::VisitUnaryOperator(const UnaryOperator *E) {
Nuno Lopes0e33c682008-11-19 17:44:31 +00001614 if (E->getOpcode() == UnaryOperator::Deref)
1615 return false;
1616
Daniel Dunbarc3d79cf2008-10-16 03:51:50 +00001617 if (!EvaluateFloat(E->getSubExpr(), Result, Info))
1618 return false;
1619
1620 switch (E->getOpcode()) {
1621 default: return false;
Mike Stump11289f42009-09-09 15:08:12 +00001622 case UnaryOperator::Plus:
Daniel Dunbarc3d79cf2008-10-16 03:51:50 +00001623 return true;
1624 case UnaryOperator::Minus:
1625 Result.changeSign();
1626 return true;
1627 }
1628}
Chris Lattner4deaa4e2008-10-06 05:28:25 +00001629
Eli Friedman24c01542008-08-22 00:06:13 +00001630bool FloatExprEvaluator::VisitBinaryOperator(const BinaryOperator *E) {
Eli Friedman141fbf32009-11-16 04:25:37 +00001631 if (E->getOpcode() == BinaryOperator::Comma) {
1632 if (!EvaluateFloat(E->getRHS(), Result, Info))
1633 return false;
1634
1635 // If we can't evaluate the LHS, it might have side effects;
1636 // conservatively mark it.
1637 if (!E->getLHS()->isEvaluatable(Info.Ctx))
1638 Info.EvalResult.HasSideEffects = true;
1639
1640 return true;
1641 }
1642
Eli Friedman24c01542008-08-22 00:06:13 +00001643 // FIXME: Diagnostics? I really don't understand how the warnings
1644 // and errors are supposed to work.
Daniel Dunbarc3d79cf2008-10-16 03:51:50 +00001645 APFloat RHS(0.0);
Eli Friedman24c01542008-08-22 00:06:13 +00001646 if (!EvaluateFloat(E->getLHS(), Result, Info))
1647 return false;
1648 if (!EvaluateFloat(E->getRHS(), RHS, Info))
1649 return false;
1650
1651 switch (E->getOpcode()) {
1652 default: return false;
1653 case BinaryOperator::Mul:
1654 Result.multiply(RHS, APFloat::rmNearestTiesToEven);
1655 return true;
1656 case BinaryOperator::Add:
1657 Result.add(RHS, APFloat::rmNearestTiesToEven);
1658 return true;
1659 case BinaryOperator::Sub:
1660 Result.subtract(RHS, APFloat::rmNearestTiesToEven);
1661 return true;
1662 case BinaryOperator::Div:
1663 Result.divide(RHS, APFloat::rmNearestTiesToEven);
1664 return true;
Eli Friedman24c01542008-08-22 00:06:13 +00001665 }
1666}
1667
1668bool FloatExprEvaluator::VisitFloatingLiteral(const FloatingLiteral *E) {
1669 Result = E->getValue();
1670 return true;
1671}
1672
Eli Friedman9a156e52008-11-12 09:44:48 +00001673bool FloatExprEvaluator::VisitCastExpr(CastExpr *E) {
1674 Expr* SubExpr = E->getSubExpr();
Mike Stump11289f42009-09-09 15:08:12 +00001675
Eli Friedman9a156e52008-11-12 09:44:48 +00001676 if (SubExpr->getType()->isIntegralType()) {
1677 APSInt IntResult;
Daniel Dunbare3c92bc2009-02-19 18:37:50 +00001678 if (!EvaluateInteger(SubExpr, IntResult, Info))
Eli Friedman9a156e52008-11-12 09:44:48 +00001679 return false;
Mike Stump11289f42009-09-09 15:08:12 +00001680 Result = HandleIntToFloatCast(E->getType(), SubExpr->getType(),
Daniel Dunbarb6f953e2009-01-29 06:16:07 +00001681 IntResult, Info.Ctx);
Eli Friedman9a156e52008-11-12 09:44:48 +00001682 return true;
1683 }
1684 if (SubExpr->getType()->isRealFloatingType()) {
1685 if (!Visit(SubExpr))
1686 return false;
Daniel Dunbarb6f953e2009-01-29 06:16:07 +00001687 Result = HandleFloatToFloatCast(E->getType(), SubExpr->getType(),
1688 Result, Info.Ctx);
Eli Friedman9a156e52008-11-12 09:44:48 +00001689 return true;
1690 }
Eli Friedmanc2b50172009-02-22 11:46:18 +00001691 // FIXME: Handle complex types
Eli Friedman9a156e52008-11-12 09:44:48 +00001692
1693 return false;
1694}
1695
1696bool FloatExprEvaluator::VisitCXXZeroInitValueExpr(CXXZeroInitValueExpr *E) {
1697 Result = APFloat::getZero(Info.Ctx.getFloatTypeSemantics(E->getType()));
1698 return true;
1699}
1700
Eli Friedmanf3da3342009-12-04 02:12:53 +00001701bool FloatExprEvaluator::VisitConditionalOperator(ConditionalOperator *E) {
1702 bool Cond;
1703 if (!HandleConversionToBool(E->getCond(), Cond, Info))
1704 return false;
1705
1706 return Visit(Cond ? E->getTrueExpr() : E->getFalseExpr());
1707}
1708
Eli Friedman24c01542008-08-22 00:06:13 +00001709//===----------------------------------------------------------------------===//
Daniel Dunbarf50e60b2009-01-28 22:24:07 +00001710// Complex Evaluation (for float and integer)
Anders Carlsson537969c2008-11-16 20:27:53 +00001711//===----------------------------------------------------------------------===//
1712
1713namespace {
Benjamin Kramer26222b62009-11-28 19:03:38 +00001714class ComplexExprEvaluator
Daniel Dunbarf50e60b2009-01-28 22:24:07 +00001715 : public StmtVisitor<ComplexExprEvaluator, APValue> {
Anders Carlsson537969c2008-11-16 20:27:53 +00001716 EvalInfo &Info;
Mike Stump11289f42009-09-09 15:08:12 +00001717
Anders Carlsson537969c2008-11-16 20:27:53 +00001718public:
Daniel Dunbarf50e60b2009-01-28 22:24:07 +00001719 ComplexExprEvaluator(EvalInfo &info) : Info(info) {}
Mike Stump11289f42009-09-09 15:08:12 +00001720
Anders Carlsson537969c2008-11-16 20:27:53 +00001721 //===--------------------------------------------------------------------===//
1722 // Visitor Methods
1723 //===--------------------------------------------------------------------===//
1724
1725 APValue VisitStmt(Stmt *S) {
Anders Carlsson537969c2008-11-16 20:27:53 +00001726 return APValue();
1727 }
Mike Stump11289f42009-09-09 15:08:12 +00001728
Anders Carlsson537969c2008-11-16 20:27:53 +00001729 APValue VisitParenExpr(ParenExpr *E) { return Visit(E->getSubExpr()); }
1730
1731 APValue VisitImaginaryLiteral(ImaginaryLiteral *E) {
Daniel Dunbarf50e60b2009-01-28 22:24:07 +00001732 Expr* SubExpr = E->getSubExpr();
1733
1734 if (SubExpr->getType()->isRealFloatingType()) {
1735 APFloat Result(0.0);
1736
1737 if (!EvaluateFloat(SubExpr, Result, Info))
1738 return APValue();
Mike Stump11289f42009-09-09 15:08:12 +00001739
1740 return APValue(APFloat(Result.getSemantics(), APFloat::fcZero, false),
Daniel Dunbarf50e60b2009-01-28 22:24:07 +00001741 Result);
1742 } else {
Mike Stump11289f42009-09-09 15:08:12 +00001743 assert(SubExpr->getType()->isIntegerType() &&
Daniel Dunbarf50e60b2009-01-28 22:24:07 +00001744 "Unexpected imaginary literal.");
1745
1746 llvm::APSInt Result;
1747 if (!EvaluateInteger(SubExpr, Result, Info))
1748 return APValue();
Mike Stump11289f42009-09-09 15:08:12 +00001749
Daniel Dunbarf50e60b2009-01-28 22:24:07 +00001750 llvm::APSInt Zero(Result.getBitWidth(), !Result.isSigned());
1751 Zero = 0;
1752 return APValue(Zero, Result);
1753 }
Anders Carlsson537969c2008-11-16 20:27:53 +00001754 }
1755
Anders Carlsson9ddf7be2008-11-16 21:51:21 +00001756 APValue VisitCastExpr(CastExpr *E) {
1757 Expr* SubExpr = E->getSubExpr();
John McCall9dd450b2009-09-21 23:43:11 +00001758 QualType EltType = E->getType()->getAs<ComplexType>()->getElementType();
Daniel Dunbarb6f953e2009-01-29 06:16:07 +00001759 QualType SubType = SubExpr->getType();
Anders Carlsson9ddf7be2008-11-16 21:51:21 +00001760
Daniel Dunbarb6f953e2009-01-29 06:16:07 +00001761 if (SubType->isRealFloatingType()) {
Anders Carlsson9ddf7be2008-11-16 21:51:21 +00001762 APFloat Result(0.0);
Eli Friedmand3a5a9d2009-04-22 19:23:09 +00001763
Anders Carlsson9ddf7be2008-11-16 21:51:21 +00001764 if (!EvaluateFloat(SubExpr, Result, Info))
1765 return APValue();
Eli Friedmand3a5a9d2009-04-22 19:23:09 +00001766
1767 if (EltType->isRealFloatingType()) {
1768 Result = HandleFloatToFloatCast(EltType, SubType, Result, Info.Ctx);
Mike Stump11289f42009-09-09 15:08:12 +00001769 return APValue(Result,
Eli Friedmand3a5a9d2009-04-22 19:23:09 +00001770 APFloat(Result.getSemantics(), APFloat::fcZero, false));
1771 } else {
1772 llvm::APSInt IResult;
1773 IResult = HandleFloatToIntCast(EltType, SubType, Result, Info.Ctx);
1774 llvm::APSInt Zero(IResult.getBitWidth(), !IResult.isSigned());
1775 Zero = 0;
1776 return APValue(IResult, Zero);
1777 }
Daniel Dunbarb6f953e2009-01-29 06:16:07 +00001778 } else if (SubType->isIntegerType()) {
Daniel Dunbarf50e60b2009-01-28 22:24:07 +00001779 APSInt Result;
Eli Friedmand3a5a9d2009-04-22 19:23:09 +00001780
Daniel Dunbarf50e60b2009-01-28 22:24:07 +00001781 if (!EvaluateInteger(SubExpr, Result, Info))
1782 return APValue();
Daniel Dunbarb6f953e2009-01-29 06:16:07 +00001783
Eli Friedmand3a5a9d2009-04-22 19:23:09 +00001784 if (EltType->isRealFloatingType()) {
1785 APFloat FResult =
1786 HandleIntToFloatCast(EltType, SubType, Result, Info.Ctx);
Mike Stump11289f42009-09-09 15:08:12 +00001787 return APValue(FResult,
Eli Friedmand3a5a9d2009-04-22 19:23:09 +00001788 APFloat(FResult.getSemantics(), APFloat::fcZero, false));
1789 } else {
1790 Result = HandleIntToIntCast(EltType, SubType, Result, Info.Ctx);
1791 llvm::APSInt Zero(Result.getBitWidth(), !Result.isSigned());
1792 Zero = 0;
1793 return APValue(Result, Zero);
1794 }
John McCall9dd450b2009-09-21 23:43:11 +00001795 } else if (const ComplexType *CT = SubType->getAs<ComplexType>()) {
Daniel Dunbarb6f953e2009-01-29 06:16:07 +00001796 APValue Src;
Eli Friedmand3a5a9d2009-04-22 19:23:09 +00001797
Daniel Dunbarb6f953e2009-01-29 06:16:07 +00001798 if (!EvaluateComplex(SubExpr, Src, Info))
1799 return APValue();
1800
1801 QualType SrcType = CT->getElementType();
1802
1803 if (Src.isComplexFloat()) {
1804 if (EltType->isRealFloatingType()) {
Mike Stump11289f42009-09-09 15:08:12 +00001805 return APValue(HandleFloatToFloatCast(EltType, SrcType,
Daniel Dunbarb6f953e2009-01-29 06:16:07 +00001806 Src.getComplexFloatReal(),
1807 Info.Ctx),
Mike Stump11289f42009-09-09 15:08:12 +00001808 HandleFloatToFloatCast(EltType, SrcType,
Daniel Dunbarb6f953e2009-01-29 06:16:07 +00001809 Src.getComplexFloatImag(),
1810 Info.Ctx));
1811 } else {
1812 return APValue(HandleFloatToIntCast(EltType, SrcType,
1813 Src.getComplexFloatReal(),
1814 Info.Ctx),
Mike Stump11289f42009-09-09 15:08:12 +00001815 HandleFloatToIntCast(EltType, SrcType,
Daniel Dunbarb6f953e2009-01-29 06:16:07 +00001816 Src.getComplexFloatImag(),
Mike Stump11289f42009-09-09 15:08:12 +00001817 Info.Ctx));
Daniel Dunbarb6f953e2009-01-29 06:16:07 +00001818 }
1819 } else {
1820 assert(Src.isComplexInt() && "Invalid evaluate result.");
1821 if (EltType->isRealFloatingType()) {
Mike Stump11289f42009-09-09 15:08:12 +00001822 return APValue(HandleIntToFloatCast(EltType, SrcType,
Daniel Dunbarb6f953e2009-01-29 06:16:07 +00001823 Src.getComplexIntReal(),
1824 Info.Ctx),
Mike Stump11289f42009-09-09 15:08:12 +00001825 HandleIntToFloatCast(EltType, SrcType,
Daniel Dunbarb6f953e2009-01-29 06:16:07 +00001826 Src.getComplexIntImag(),
1827 Info.Ctx));
1828 } else {
1829 return APValue(HandleIntToIntCast(EltType, SrcType,
1830 Src.getComplexIntReal(),
1831 Info.Ctx),
Mike Stump11289f42009-09-09 15:08:12 +00001832 HandleIntToIntCast(EltType, SrcType,
Daniel Dunbarb6f953e2009-01-29 06:16:07 +00001833 Src.getComplexIntImag(),
Mike Stump11289f42009-09-09 15:08:12 +00001834 Info.Ctx));
Daniel Dunbarb6f953e2009-01-29 06:16:07 +00001835 }
1836 }
Anders Carlsson9ddf7be2008-11-16 21:51:21 +00001837 }
1838
1839 // FIXME: Handle more casts.
1840 return APValue();
1841 }
Mike Stump11289f42009-09-09 15:08:12 +00001842
Anders Carlsson9ddf7be2008-11-16 21:51:21 +00001843 APValue VisitBinaryOperator(const BinaryOperator *E);
Eli Friedman449fe542009-03-23 04:56:01 +00001844 APValue VisitChooseExpr(const ChooseExpr *E)
1845 { return Visit(E->getChosenSubExpr(Info.Ctx)); }
1846 APValue VisitUnaryExtension(const UnaryOperator *E)
1847 { return Visit(E->getSubExpr()); }
1848 // FIXME Missing: unary +/-/~, binary div, ImplicitValueInitExpr,
Eli Friedmanc2b50172009-02-22 11:46:18 +00001849 // conditional ?:, comma
Anders Carlsson537969c2008-11-16 20:27:53 +00001850};
1851} // end anonymous namespace
1852
Mike Stump11289f42009-09-09 15:08:12 +00001853static bool EvaluateComplex(const Expr *E, APValue &Result, EvalInfo &Info) {
Daniel Dunbarf50e60b2009-01-28 22:24:07 +00001854 Result = ComplexExprEvaluator(Info).Visit(const_cast<Expr*>(E));
1855 assert((!Result.isComplexFloat() ||
Mike Stump11289f42009-09-09 15:08:12 +00001856 (&Result.getComplexFloatReal().getSemantics() ==
1857 &Result.getComplexFloatImag().getSemantics())) &&
Daniel Dunbarf50e60b2009-01-28 22:24:07 +00001858 "Invalid complex evaluation.");
1859 return Result.isComplexFloat() || Result.isComplexInt();
Anders Carlsson537969c2008-11-16 20:27:53 +00001860}
1861
Mike Stump11289f42009-09-09 15:08:12 +00001862APValue ComplexExprEvaluator::VisitBinaryOperator(const BinaryOperator *E) {
Anders Carlsson9ddf7be2008-11-16 21:51:21 +00001863 APValue Result, RHS;
Mike Stump11289f42009-09-09 15:08:12 +00001864
Daniel Dunbarf50e60b2009-01-28 22:24:07 +00001865 if (!EvaluateComplex(E->getLHS(), Result, Info))
Anders Carlsson9ddf7be2008-11-16 21:51:21 +00001866 return APValue();
Mike Stump11289f42009-09-09 15:08:12 +00001867
Daniel Dunbarf50e60b2009-01-28 22:24:07 +00001868 if (!EvaluateComplex(E->getRHS(), RHS, Info))
Anders Carlsson9ddf7be2008-11-16 21:51:21 +00001869 return APValue();
Daniel Dunbarf50e60b2009-01-28 22:24:07 +00001870
Daniel Dunbar0aa26062009-01-29 01:32:56 +00001871 assert(Result.isComplexFloat() == RHS.isComplexFloat() &&
1872 "Invalid operands to binary operator.");
Anders Carlsson9ddf7be2008-11-16 21:51:21 +00001873 switch (E->getOpcode()) {
1874 default: return APValue();
1875 case BinaryOperator::Add:
Daniel Dunbarf50e60b2009-01-28 22:24:07 +00001876 if (Result.isComplexFloat()) {
1877 Result.getComplexFloatReal().add(RHS.getComplexFloatReal(),
1878 APFloat::rmNearestTiesToEven);
1879 Result.getComplexFloatImag().add(RHS.getComplexFloatImag(),
1880 APFloat::rmNearestTiesToEven);
1881 } else {
1882 Result.getComplexIntReal() += RHS.getComplexIntReal();
1883 Result.getComplexIntImag() += RHS.getComplexIntImag();
1884 }
Daniel Dunbar0aa26062009-01-29 01:32:56 +00001885 break;
Anders Carlsson9ddf7be2008-11-16 21:51:21 +00001886 case BinaryOperator::Sub:
Daniel Dunbarf50e60b2009-01-28 22:24:07 +00001887 if (Result.isComplexFloat()) {
1888 Result.getComplexFloatReal().subtract(RHS.getComplexFloatReal(),
1889 APFloat::rmNearestTiesToEven);
1890 Result.getComplexFloatImag().subtract(RHS.getComplexFloatImag(),
1891 APFloat::rmNearestTiesToEven);
1892 } else {
1893 Result.getComplexIntReal() -= RHS.getComplexIntReal();
1894 Result.getComplexIntImag() -= RHS.getComplexIntImag();
1895 }
Daniel Dunbar0aa26062009-01-29 01:32:56 +00001896 break;
1897 case BinaryOperator::Mul:
1898 if (Result.isComplexFloat()) {
1899 APValue LHS = Result;
1900 APFloat &LHS_r = LHS.getComplexFloatReal();
1901 APFloat &LHS_i = LHS.getComplexFloatImag();
1902 APFloat &RHS_r = RHS.getComplexFloatReal();
1903 APFloat &RHS_i = RHS.getComplexFloatImag();
Mike Stump11289f42009-09-09 15:08:12 +00001904
Daniel Dunbar0aa26062009-01-29 01:32:56 +00001905 APFloat Tmp = LHS_r;
1906 Tmp.multiply(RHS_r, APFloat::rmNearestTiesToEven);
1907 Result.getComplexFloatReal() = Tmp;
1908 Tmp = LHS_i;
1909 Tmp.multiply(RHS_i, APFloat::rmNearestTiesToEven);
1910 Result.getComplexFloatReal().subtract(Tmp, APFloat::rmNearestTiesToEven);
1911
1912 Tmp = LHS_r;
1913 Tmp.multiply(RHS_i, APFloat::rmNearestTiesToEven);
1914 Result.getComplexFloatImag() = Tmp;
1915 Tmp = LHS_i;
1916 Tmp.multiply(RHS_r, APFloat::rmNearestTiesToEven);
1917 Result.getComplexFloatImag().add(Tmp, APFloat::rmNearestTiesToEven);
1918 } else {
1919 APValue LHS = Result;
Mike Stump11289f42009-09-09 15:08:12 +00001920 Result.getComplexIntReal() =
Daniel Dunbar0aa26062009-01-29 01:32:56 +00001921 (LHS.getComplexIntReal() * RHS.getComplexIntReal() -
1922 LHS.getComplexIntImag() * RHS.getComplexIntImag());
Mike Stump11289f42009-09-09 15:08:12 +00001923 Result.getComplexIntImag() =
Daniel Dunbar0aa26062009-01-29 01:32:56 +00001924 (LHS.getComplexIntReal() * RHS.getComplexIntImag() +
1925 LHS.getComplexIntImag() * RHS.getComplexIntReal());
1926 }
1927 break;
Anders Carlsson9ddf7be2008-11-16 21:51:21 +00001928 }
1929
1930 return Result;
1931}
1932
Anders Carlsson537969c2008-11-16 20:27:53 +00001933//===----------------------------------------------------------------------===//
Chris Lattner67d7b922008-11-16 21:24:15 +00001934// Top level Expr::Evaluate method.
Chris Lattner05706e882008-07-11 18:11:29 +00001935//===----------------------------------------------------------------------===//
1936
Chris Lattner67d7b922008-11-16 21:24:15 +00001937/// Evaluate - Return true if this is a constant which we can fold using
Chris Lattner4deaa4e2008-10-06 05:28:25 +00001938/// any crazy technique (that has nothing to do with language standards) that
1939/// we want to. If this function returns true, it returns the folded constant
1940/// in Result.
Anders Carlsson7b6f0af2008-11-30 16:58:53 +00001941bool Expr::Evaluate(EvalResult &Result, ASTContext &Ctx) const {
1942 EvalInfo Info(Ctx, Result);
Anders Carlssonbd1df8e2008-11-30 16:38:33 +00001943
Nate Begeman2f2bdeb2009-01-18 03:20:47 +00001944 if (getType()->isVectorType()) {
1945 if (!EvaluateVector(this, Result.Val, Info))
1946 return false;
1947 } else if (getType()->isIntegerType()) {
Daniel Dunbarca097ad2009-02-19 20:17:33 +00001948 if (!IntExprEvaluator(Info, Result.Val).Visit(const_cast<Expr*>(this)))
Anders Carlsson475f4bc2008-11-22 21:50:49 +00001949 return false;
Daniel Dunbar76ba41c2009-02-26 20:52:22 +00001950 } else if (getType()->hasPointerRepresentation()) {
Anders Carlsson7b6f0af2008-11-30 16:58:53 +00001951 if (!EvaluatePointer(this, Result.Val, Info))
Anders Carlsson475f4bc2008-11-22 21:50:49 +00001952 return false;
Eli Friedman24c01542008-08-22 00:06:13 +00001953 } else if (getType()->isRealFloatingType()) {
1954 llvm::APFloat f(0.0);
Anders Carlsson475f4bc2008-11-22 21:50:49 +00001955 if (!EvaluateFloat(this, f, Info))
1956 return false;
Mike Stump11289f42009-09-09 15:08:12 +00001957
Anders Carlsson7b6f0af2008-11-30 16:58:53 +00001958 Result.Val = APValue(f);
Daniel Dunbarf50e60b2009-01-28 22:24:07 +00001959 } else if (getType()->isAnyComplexType()) {
1960 if (!EvaluateComplex(this, Result.Val, Info))
Anders Carlsson475f4bc2008-11-22 21:50:49 +00001961 return false;
Daniel Dunbarf50e60b2009-01-28 22:24:07 +00001962 } else
Anders Carlsson7c282e42008-11-22 22:56:32 +00001963 return false;
Anders Carlsson475f4bc2008-11-22 21:50:49 +00001964
Anders Carlsson7b6f0af2008-11-30 16:58:53 +00001965 return true;
1966}
1967
Mike Stump5183a142009-10-26 23:05:19 +00001968bool Expr::EvaluateAsAny(EvalResult &Result, ASTContext &Ctx) const {
1969 EvalInfo Info(Ctx, Result, true);
1970
1971 if (getType()->isVectorType()) {
1972 if (!EvaluateVector(this, Result.Val, Info))
1973 return false;
1974 } else if (getType()->isIntegerType()) {
1975 if (!IntExprEvaluator(Info, Result.Val).Visit(const_cast<Expr*>(this)))
1976 return false;
1977 } else if (getType()->hasPointerRepresentation()) {
1978 if (!EvaluatePointer(this, Result.Val, Info))
1979 return false;
1980 } else if (getType()->isRealFloatingType()) {
1981 llvm::APFloat f(0.0);
1982 if (!EvaluateFloat(this, f, Info))
1983 return false;
1984
1985 Result.Val = APValue(f);
1986 } else if (getType()->isAnyComplexType()) {
1987 if (!EvaluateComplex(this, Result.Val, Info))
1988 return false;
1989 } else
1990 return false;
1991
1992 return true;
1993}
1994
John McCall1be1c632010-01-05 23:42:56 +00001995bool Expr::EvaluateAsBooleanCondition(bool &Result, ASTContext &Ctx) const {
1996 EvalResult Scratch;
1997 EvalInfo Info(Ctx, Scratch);
1998
1999 return HandleConversionToBool(this, Result, Info);
2000}
2001
Anders Carlsson43168122009-04-10 04:54:13 +00002002bool Expr::EvaluateAsLValue(EvalResult &Result, ASTContext &Ctx) const {
2003 EvalInfo Info(Ctx, Result);
2004
2005 return EvaluateLValue(this, Result.Val, Info) && !Result.HasSideEffects;
2006}
2007
Eli Friedman7d45c482009-09-13 10:17:44 +00002008bool Expr::EvaluateAsAnyLValue(EvalResult &Result, ASTContext &Ctx) const {
2009 EvalInfo Info(Ctx, Result, true);
2010
2011 return EvaluateLValue(this, Result.Val, Info) && !Result.HasSideEffects;
2012}
2013
Chris Lattner67d7b922008-11-16 21:24:15 +00002014/// isEvaluatable - Call Evaluate to see if this expression can be constant
Chris Lattnercb136912008-10-06 06:49:02 +00002015/// folded, but discard the result.
2016bool Expr::isEvaluatable(ASTContext &Ctx) const {
Anders Carlsson5b3638b2008-12-01 06:44:05 +00002017 EvalResult Result;
2018 return Evaluate(Result, Ctx) && !Result.HasSideEffects;
Chris Lattnercb136912008-10-06 06:49:02 +00002019}
Anders Carlsson59689ed2008-11-22 21:04:56 +00002020
Fariborz Jahanian4127b8e2009-11-05 18:03:03 +00002021bool Expr::HasSideEffects(ASTContext &Ctx) const {
2022 Expr::EvalResult Result;
2023 EvalInfo Info(Ctx, Result);
2024 return HasSideEffect(Info).Visit(const_cast<Expr*>(this));
2025}
2026
Anders Carlsson59689ed2008-11-22 21:04:56 +00002027APSInt Expr::EvaluateAsInt(ASTContext &Ctx) const {
Anders Carlsson6736d1a22008-12-19 20:58:05 +00002028 EvalResult EvalResult;
2029 bool Result = Evaluate(EvalResult, Ctx);
Daniel Dunbar435bbe02009-01-15 18:32:35 +00002030 Result = Result;
Anders Carlsson59689ed2008-11-22 21:04:56 +00002031 assert(Result && "Could not evaluate expression");
Anders Carlsson6736d1a22008-12-19 20:58:05 +00002032 assert(EvalResult.Val.isInt() && "Expression did not evaluate to integer");
Anders Carlsson59689ed2008-11-22 21:04:56 +00002033
Anders Carlsson6736d1a22008-12-19 20:58:05 +00002034 return EvalResult.Val.getInt();
Anders Carlsson59689ed2008-11-22 21:04:56 +00002035}