blob: 6d1d150c1c165f78ec74cfc45a93fec4993d6729 [file] [log] [blame]
Chris Lattnera42f09a2008-07-11 19:10:17 +00001//===--- ExprConstant.cpp - Expression Constant Evaluator -----------------===//
Anders Carlssonc7436af2008-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"
Eli Friedman7888b932008-11-12 09:44:48 +000016#include "clang/AST/RecordLayout.h"
Seo Sanghyeonefddb9c2008-07-08 07:23:12 +000017#include "clang/AST/StmtVisitor.h"
Chris Lattner82437da2008-07-12 00:14:42 +000018#include "clang/Basic/Diagnostic.h"
Anders Carlssonc0328012008-07-08 05:49:43 +000019#include "clang/Basic/TargetInfo.h"
Anders Carlssoncad17b52008-07-08 05:13:58 +000020#include "llvm/Support/Compiler.h"
Anders Carlssonc7436af2008-07-03 04:20:39 +000021using namespace clang;
Chris Lattnera823ccf2008-07-11 18:11:29 +000022using llvm::APSInt;
Eli Friedman2f445492008-08-22 00:06:13 +000023using llvm::APFloat;
Anders Carlssonc7436af2008-07-03 04:20:39 +000024
Chris Lattner422373c2008-07-11 22:52:41 +000025/// EvalInfo - This is a private struct used by the evaluator to capture
26/// information about a subexpression as it is folded. It retains information
27/// about the AST context, but also maintains information about the folded
28/// expression.
29///
30/// If an expression could be evaluated, it is still possible it is not a C
31/// "integer constant expression" or constant expression. If not, this struct
32/// captures information about how and why not.
33///
34/// One bit of information passed *into* the request for constant folding
35/// indicates whether the subexpression is "evaluated" or not according to C
36/// rules. For example, the RHS of (0 && foo()) is not evaluated. We can
37/// evaluate the expression regardless of what the RHS is, but C only allows
38/// certain things in certain situations.
39struct EvalInfo {
40 ASTContext &Ctx;
41
Anders Carlssondd8d41f2008-11-30 16:38:33 +000042 /// EvalResult - Contains information about the evaluation.
43 Expr::EvalResult &EvalResult;
Anders Carlsson6c1a9e22008-11-30 18:26:25 +000044
45 /// ShortCircuit - will be greater than zero if the current subexpression has
46 /// will not be evaluated because it's short-circuited (according to C rules).
47 unsigned ShortCircuit;
Chris Lattner422373c2008-07-11 22:52:41 +000048
Anders Carlssondd8d41f2008-11-30 16:38:33 +000049 EvalInfo(ASTContext &ctx, Expr::EvalResult& evalresult) : Ctx(ctx),
Anders Carlsson6c1a9e22008-11-30 18:26:25 +000050 EvalResult(evalresult), ShortCircuit(0) {}
Chris Lattner422373c2008-07-11 22:52:41 +000051};
52
53
Eli Friedman7888b932008-11-12 09:44:48 +000054static bool EvaluateLValue(const Expr *E, APValue &Result, EvalInfo &Info);
Chris Lattner422373c2008-07-11 22:52:41 +000055static bool EvaluatePointer(const Expr *E, APValue &Result, EvalInfo &Info);
56static bool EvaluateInteger(const Expr *E, APSInt &Result, EvalInfo &Info);
Eli Friedman2f445492008-08-22 00:06:13 +000057static bool EvaluateFloat(const Expr *E, APFloat &Result, EvalInfo &Info);
Anders Carlssonf1bb2962008-11-16 20:27:53 +000058static bool EvaluateComplexFloat(const Expr *E, APValue &Result,
59 EvalInfo &Info);
Chris Lattnera823ccf2008-07-11 18:11:29 +000060
61//===----------------------------------------------------------------------===//
Eli Friedman7888b932008-11-12 09:44:48 +000062// Misc utilities
63//===----------------------------------------------------------------------===//
64
65static bool HandleConversionToBool(Expr* E, bool& Result, EvalInfo &Info) {
66 if (E->getType()->isIntegralType()) {
67 APSInt IntResult;
68 if (!EvaluateInteger(E, IntResult, Info))
69 return false;
70 Result = IntResult != 0;
71 return true;
72 } else if (E->getType()->isRealFloatingType()) {
73 APFloat FloatResult(0.0);
74 if (!EvaluateFloat(E, FloatResult, Info))
75 return false;
76 Result = !FloatResult.isZero();
77 return true;
78 } else if (E->getType()->isPointerType()) {
79 APValue PointerResult;
80 if (!EvaluatePointer(E, PointerResult, Info))
81 return false;
82 // FIXME: Is this accurate for all kinds of bases? If not, what would
83 // the check look like?
84 Result = PointerResult.getLValueBase() || PointerResult.getLValueOffset();
85 return true;
86 }
87
88 return false;
89}
90
91//===----------------------------------------------------------------------===//
92// LValue Evaluation
93//===----------------------------------------------------------------------===//
94namespace {
95class VISIBILITY_HIDDEN LValueExprEvaluator
96 : public StmtVisitor<LValueExprEvaluator, APValue> {
97 EvalInfo &Info;
98public:
99
100 LValueExprEvaluator(EvalInfo &info) : Info(info) {}
101
102 APValue VisitStmt(Stmt *S) {
Daniel Dunbarff59ed82008-11-12 21:52:46 +0000103#if 0
Eli Friedman7888b932008-11-12 09:44:48 +0000104 // FIXME: Remove this when we support more expressions.
105 printf("Unhandled pointer statement\n");
106 S->dump();
Daniel Dunbarff59ed82008-11-12 21:52:46 +0000107#endif
Eli Friedman7888b932008-11-12 09:44:48 +0000108 return APValue();
109 }
110
111 APValue VisitParenExpr(ParenExpr *E) { return Visit(E->getSubExpr()); }
Anders Carlssone284ebe2008-11-24 04:41:22 +0000112 APValue VisitDeclRefExpr(DeclRefExpr *E);
Eli Friedman7888b932008-11-12 09:44:48 +0000113 APValue VisitPredefinedExpr(PredefinedExpr *E) { return APValue(E, 0); }
114 APValue VisitCompoundLiteralExpr(CompoundLiteralExpr *E);
115 APValue VisitMemberExpr(MemberExpr *E);
116 APValue VisitStringLiteral(StringLiteral *E) { return APValue(E, 0); }
Anders Carlsson027f2882008-11-16 19:01:22 +0000117 APValue VisitArraySubscriptExpr(ArraySubscriptExpr *E);
Eli Friedman7888b932008-11-12 09:44:48 +0000118};
119} // end anonymous namespace
120
121static bool EvaluateLValue(const Expr* E, APValue& Result, EvalInfo &Info) {
122 Result = LValueExprEvaluator(Info).Visit(const_cast<Expr*>(E));
123 return Result.isLValue();
124}
125
Anders Carlssone284ebe2008-11-24 04:41:22 +0000126APValue LValueExprEvaluator::VisitDeclRefExpr(DeclRefExpr *E)
127{
128 if (!E->hasGlobalStorage())
129 return APValue();
130
131 return APValue(E, 0);
132}
133
Eli Friedman7888b932008-11-12 09:44:48 +0000134APValue LValueExprEvaluator::VisitCompoundLiteralExpr(CompoundLiteralExpr *E) {
135 if (E->isFileScope())
136 return APValue(E, 0);
137 return APValue();
138}
139
140APValue LValueExprEvaluator::VisitMemberExpr(MemberExpr *E) {
141 APValue result;
142 QualType Ty;
143 if (E->isArrow()) {
144 if (!EvaluatePointer(E->getBase(), result, Info))
145 return APValue();
146 Ty = E->getBase()->getType()->getAsPointerType()->getPointeeType();
147 } else {
148 result = Visit(E->getBase());
149 if (result.isUninit())
150 return APValue();
151 Ty = E->getBase()->getType();
152 }
153
154 RecordDecl *RD = Ty->getAsRecordType()->getDecl();
155 const ASTRecordLayout &RL = Info.Ctx.getASTRecordLayout(RD);
Douglas Gregor82d44772008-12-20 23:49:58 +0000156
157 FieldDecl *FD = dyn_cast<FieldDecl>(E->getMemberDecl());
158 if (!FD) // FIXME: deal with other kinds of member expressions
159 return APValue();
Eli Friedman7888b932008-11-12 09:44:48 +0000160
161 // FIXME: This is linear time.
Douglas Gregor8acb7272008-12-11 16:49:14 +0000162 unsigned i = 0;
163 for (RecordDecl::field_iterator Field = RD->field_begin(),
164 FieldEnd = RD->field_end();
165 Field != FieldEnd; (void)++Field, ++i) {
166 if (*Field == FD)
Eli Friedman7888b932008-11-12 09:44:48 +0000167 break;
168 }
169
170 result.setLValue(result.getLValueBase(),
171 result.getLValueOffset() + RL.getFieldOffset(i) / 8);
172
173 return result;
174}
175
Anders Carlsson027f2882008-11-16 19:01:22 +0000176APValue LValueExprEvaluator::VisitArraySubscriptExpr(ArraySubscriptExpr *E)
177{
178 APValue Result;
179
180 if (!EvaluatePointer(E->getBase(), Result, Info))
181 return APValue();
182
183 APSInt Index;
184 if (!EvaluateInteger(E->getIdx(), Index, Info))
185 return APValue();
186
187 uint64_t ElementSize = Info.Ctx.getTypeSize(E->getType()) / 8;
188
189 uint64_t Offset = Index.getSExtValue() * ElementSize;
190 Result.setLValue(Result.getLValueBase(),
191 Result.getLValueOffset() + Offset);
192 return Result;
193}
Eli Friedman7888b932008-11-12 09:44:48 +0000194
195//===----------------------------------------------------------------------===//
Chris Lattnera823ccf2008-07-11 18:11:29 +0000196// Pointer Evaluation
197//===----------------------------------------------------------------------===//
198
Anders Carlssoncad17b52008-07-08 05:13:58 +0000199namespace {
Anders Carlsson02a34c32008-07-08 14:30:00 +0000200class VISIBILITY_HIDDEN PointerExprEvaluator
201 : public StmtVisitor<PointerExprEvaluator, APValue> {
Chris Lattner422373c2008-07-11 22:52:41 +0000202 EvalInfo &Info;
Anders Carlsson02a34c32008-07-08 14:30:00 +0000203public:
Anders Carlsson02a34c32008-07-08 14:30:00 +0000204
Chris Lattner422373c2008-07-11 22:52:41 +0000205 PointerExprEvaluator(EvalInfo &info) : Info(info) {}
Chris Lattnera823ccf2008-07-11 18:11:29 +0000206
Anders Carlsson02a34c32008-07-08 14:30:00 +0000207 APValue VisitStmt(Stmt *S) {
Anders Carlsson02a34c32008-07-08 14:30:00 +0000208 return APValue();
209 }
210
211 APValue VisitParenExpr(ParenExpr *E) { return Visit(E->getSubExpr()); }
212
Anders Carlssonc43f44b2008-07-08 15:34:11 +0000213 APValue VisitBinaryOperator(const BinaryOperator *E);
214 APValue VisitCastExpr(const CastExpr* E);
Eli Friedman7888b932008-11-12 09:44:48 +0000215 APValue VisitUnaryOperator(const UnaryOperator *E);
216 APValue VisitObjCStringLiteral(ObjCStringLiteral *E)
217 { return APValue(E, 0); }
218 APValue VisitConditionalOperator(ConditionalOperator *E);
Anders Carlssonc43f44b2008-07-08 15:34:11 +0000219};
Chris Lattnera823ccf2008-07-11 18:11:29 +0000220} // end anonymous namespace
Anders Carlssonc43f44b2008-07-08 15:34:11 +0000221
Chris Lattner422373c2008-07-11 22:52:41 +0000222static bool EvaluatePointer(const Expr* E, APValue& Result, EvalInfo &Info) {
Chris Lattnera823ccf2008-07-11 18:11:29 +0000223 if (!E->getType()->isPointerType())
224 return false;
Chris Lattner422373c2008-07-11 22:52:41 +0000225 Result = PointerExprEvaluator(Info).Visit(const_cast<Expr*>(E));
Chris Lattnera823ccf2008-07-11 18:11:29 +0000226 return Result.isLValue();
227}
228
229APValue PointerExprEvaluator::VisitBinaryOperator(const BinaryOperator *E) {
230 if (E->getOpcode() != BinaryOperator::Add &&
231 E->getOpcode() != BinaryOperator::Sub)
232 return APValue();
233
234 const Expr *PExp = E->getLHS();
235 const Expr *IExp = E->getRHS();
236 if (IExp->getType()->isPointerType())
237 std::swap(PExp, IExp);
238
239 APValue ResultLValue;
Chris Lattner422373c2008-07-11 22:52:41 +0000240 if (!EvaluatePointer(PExp, ResultLValue, Info))
Chris Lattnera823ccf2008-07-11 18:11:29 +0000241 return APValue();
242
243 llvm::APSInt AdditionalOffset(32);
Chris Lattner422373c2008-07-11 22:52:41 +0000244 if (!EvaluateInteger(IExp, AdditionalOffset, Info))
Chris Lattnera823ccf2008-07-11 18:11:29 +0000245 return APValue();
246
Eli Friedman7888b932008-11-12 09:44:48 +0000247 QualType PointeeType = PExp->getType()->getAsPointerType()->getPointeeType();
248 uint64_t SizeOfPointee = Info.Ctx.getTypeSize(PointeeType) / 8;
249
Chris Lattnera823ccf2008-07-11 18:11:29 +0000250 uint64_t Offset = ResultLValue.getLValueOffset();
Eli Friedman7888b932008-11-12 09:44:48 +0000251
Chris Lattnera823ccf2008-07-11 18:11:29 +0000252 if (E->getOpcode() == BinaryOperator::Add)
Eli Friedman7888b932008-11-12 09:44:48 +0000253 Offset += AdditionalOffset.getLimitedValue() * SizeOfPointee;
Chris Lattnera823ccf2008-07-11 18:11:29 +0000254 else
Eli Friedman7888b932008-11-12 09:44:48 +0000255 Offset -= AdditionalOffset.getLimitedValue() * SizeOfPointee;
256
Chris Lattnera823ccf2008-07-11 18:11:29 +0000257 return APValue(ResultLValue.getLValueBase(), Offset);
258}
Eli Friedman7888b932008-11-12 09:44:48 +0000259
260APValue PointerExprEvaluator::VisitUnaryOperator(const UnaryOperator *E) {
261 if (E->getOpcode() == UnaryOperator::Extension) {
262 // FIXME: Deal with warnings?
263 return Visit(E->getSubExpr());
264 }
265
266 if (E->getOpcode() == UnaryOperator::AddrOf) {
267 APValue result;
268 if (EvaluateLValue(E->getSubExpr(), result, Info))
269 return result;
270 }
271
272 return APValue();
273}
Anders Carlsson4ab88da2008-12-05 05:24:13 +0000274
Chris Lattnera823ccf2008-07-11 18:11:29 +0000275
Chris Lattnera42f09a2008-07-11 19:10:17 +0000276APValue PointerExprEvaluator::VisitCastExpr(const CastExpr* E) {
Chris Lattnera823ccf2008-07-11 18:11:29 +0000277 const Expr* SubExpr = E->getSubExpr();
278
279 // Check for pointer->pointer cast
280 if (SubExpr->getType()->isPointerType()) {
281 APValue Result;
Chris Lattner422373c2008-07-11 22:52:41 +0000282 if (EvaluatePointer(SubExpr, Result, Info))
Chris Lattnera823ccf2008-07-11 18:11:29 +0000283 return Result;
284 return APValue();
285 }
286
Eli Friedman3e64dd72008-07-27 05:46:18 +0000287 if (SubExpr->getType()->isIntegralType()) {
Chris Lattnera823ccf2008-07-11 18:11:29 +0000288 llvm::APSInt Result(32);
Chris Lattner422373c2008-07-11 22:52:41 +0000289 if (EvaluateInteger(SubExpr, Result, Info)) {
290 Result.extOrTrunc((unsigned)Info.Ctx.getTypeSize(E->getType()));
Chris Lattnera823ccf2008-07-11 18:11:29 +0000291 return APValue(0, Result.getZExtValue());
292 }
293 }
Eli Friedman7888b932008-11-12 09:44:48 +0000294
295 if (SubExpr->getType()->isFunctionType() ||
296 SubExpr->getType()->isArrayType()) {
297 APValue Result;
298 if (EvaluateLValue(SubExpr, Result, Info))
299 return Result;
300 return APValue();
301 }
302
303 //assert(0 && "Unhandled cast");
Chris Lattnera823ccf2008-07-11 18:11:29 +0000304 return APValue();
305}
306
Eli Friedman7888b932008-11-12 09:44:48 +0000307APValue PointerExprEvaluator::VisitConditionalOperator(ConditionalOperator *E) {
308 bool BoolResult;
309 if (!HandleConversionToBool(E->getCond(), BoolResult, Info))
310 return APValue();
311
312 Expr* EvalExpr = BoolResult ? E->getTrueExpr() : E->getFalseExpr();
313
314 APValue Result;
315 if (EvaluatePointer(EvalExpr, Result, Info))
316 return Result;
317 return APValue();
318}
Chris Lattnera823ccf2008-07-11 18:11:29 +0000319
320//===----------------------------------------------------------------------===//
Nate Begemand6d2f772009-01-18 03:20:47 +0000321// Vector Evaluation
322//===----------------------------------------------------------------------===//
323
324namespace {
325 class VISIBILITY_HIDDEN VectorExprEvaluator
326 : public StmtVisitor<VectorExprEvaluator, APValue> {
327 EvalInfo &Info;
328 public:
329
330 VectorExprEvaluator(EvalInfo &info) : Info(info) {}
331
332 APValue VisitStmt(Stmt *S) {
333 return APValue();
334 }
335
336 APValue VisitParenExpr(ParenExpr *E) { return Visit(E->getSubExpr()); }
337 APValue VisitCastExpr(const CastExpr* E);
338 APValue VisitCompoundLiteralExpr(const CompoundLiteralExpr *E);
339 APValue VisitInitListExpr(const InitListExpr *E);
340 };
341} // end anonymous namespace
342
343static bool EvaluateVector(const Expr* E, APValue& Result, EvalInfo &Info) {
344 if (!E->getType()->isVectorType())
345 return false;
346 Result = VectorExprEvaluator(Info).Visit(const_cast<Expr*>(E));
347 return !Result.isUninit();
348}
349
350APValue VectorExprEvaluator::VisitCastExpr(const CastExpr* E) {
351 const Expr* SE = E->getSubExpr();
352
353 // Check for vector->vector bitcast.
354 if (SE->getType()->isVectorType())
355 return this->Visit(const_cast<Expr*>(SE));
356
357 return APValue();
358}
359
360APValue
361VectorExprEvaluator::VisitCompoundLiteralExpr(const CompoundLiteralExpr *E) {
362 return this->Visit(const_cast<Expr*>(E->getInitializer()));
363}
364
365APValue
366VectorExprEvaluator::VisitInitListExpr(const InitListExpr *E) {
367 const VectorType *VT = E->getType()->getAsVectorType();
368 unsigned NumInits = E->getNumInits();
369
370 if (!VT || VT->getNumElements() != NumInits)
371 return APValue();
372
373 QualType EltTy = VT->getElementType();
374 llvm::SmallVector<APValue, 4> Elements;
375
376 for (unsigned i = 0; i < NumInits; i++) {
377 if (EltTy->isIntegerType()) {
378 llvm::APSInt sInt(32);
379 if (!EvaluateInteger(E->getInit(i), sInt, Info))
380 return APValue();
381 Elements.push_back(APValue(sInt));
382 } else {
383 llvm::APFloat f(0.0);
384 if (!EvaluateFloat(E->getInit(i), f, Info))
385 return APValue();
386 Elements.push_back(APValue(f));
387 }
388 }
389 return APValue(&Elements[0], Elements.size());
390}
391
392//===----------------------------------------------------------------------===//
Chris Lattnera823ccf2008-07-11 18:11:29 +0000393// Integer Evaluation
394//===----------------------------------------------------------------------===//
Chris Lattnera823ccf2008-07-11 18:11:29 +0000395
396namespace {
Anders Carlssoncad17b52008-07-08 05:13:58 +0000397class VISIBILITY_HIDDEN IntExprEvaluator
Chris Lattnera42f09a2008-07-11 19:10:17 +0000398 : public StmtVisitor<IntExprEvaluator, bool> {
Chris Lattner422373c2008-07-11 22:52:41 +0000399 EvalInfo &Info;
Chris Lattnera42f09a2008-07-11 19:10:17 +0000400 APSInt &Result;
Anders Carlssoncad17b52008-07-08 05:13:58 +0000401public:
Chris Lattner422373c2008-07-11 22:52:41 +0000402 IntExprEvaluator(EvalInfo &info, APSInt &result)
403 : Info(info), Result(result) {}
Chris Lattnera823ccf2008-07-11 18:11:29 +0000404
Chris Lattner2c99c712008-07-11 19:24:49 +0000405 unsigned getIntTypeSizeInBits(QualType T) const {
Chris Lattner82437da2008-07-12 00:14:42 +0000406 return (unsigned)Info.Ctx.getIntWidth(T);
407 }
408
Anders Carlssonfa76d822008-11-30 18:14:57 +0000409 bool Extension(SourceLocation L, diag::kind D, const Expr *E) {
Anders Carlssondd8d41f2008-11-30 16:38:33 +0000410 Info.EvalResult.DiagLoc = L;
411 Info.EvalResult.Diag = D;
Anders Carlssonfa76d822008-11-30 18:14:57 +0000412 Info.EvalResult.DiagExpr = E;
Chris Lattner82437da2008-07-12 00:14:42 +0000413 return true; // still a constant.
414 }
415
Anders Carlssonfa76d822008-11-30 18:14:57 +0000416 bool Error(SourceLocation L, diag::kind D, const Expr *E) {
Chris Lattner82437da2008-07-12 00:14:42 +0000417 // If this is in an unevaluated portion of the subexpression, ignore the
418 // error.
Anders Carlsson6c1a9e22008-11-30 18:26:25 +0000419 if (Info.ShortCircuit) {
Chris Lattner438f3b12008-11-12 07:43:42 +0000420 // If error is ignored because the value isn't evaluated, get the real
421 // type at least to prevent errors downstream.
Anders Carlssonfa76d822008-11-30 18:14:57 +0000422 Result.zextOrTrunc(getIntTypeSizeInBits(E->getType()));
423 Result.setIsUnsigned(E->getType()->isUnsignedIntegerType());
Chris Lattner82437da2008-07-12 00:14:42 +0000424 return true;
Chris Lattner438f3b12008-11-12 07:43:42 +0000425 }
Chris Lattner82437da2008-07-12 00:14:42 +0000426
Chris Lattner438f3b12008-11-12 07:43:42 +0000427 // Take the first error.
Anders Carlssondd8d41f2008-11-30 16:38:33 +0000428 if (Info.EvalResult.Diag == 0) {
429 Info.EvalResult.DiagLoc = L;
430 Info.EvalResult.Diag = D;
Anders Carlssonfa76d822008-11-30 18:14:57 +0000431 Info.EvalResult.DiagExpr = E;
Chris Lattner438f3b12008-11-12 07:43:42 +0000432 }
Chris Lattner82437da2008-07-12 00:14:42 +0000433 return false;
Chris Lattner2c99c712008-07-11 19:24:49 +0000434 }
435
Anders Carlssoncad17b52008-07-08 05:13:58 +0000436 //===--------------------------------------------------------------------===//
437 // Visitor Methods
438 //===--------------------------------------------------------------------===//
Chris Lattner438f3b12008-11-12 07:43:42 +0000439
440 bool VisitStmt(Stmt *) {
441 assert(0 && "This should be called on integers, stmts are not integers");
442 return false;
443 }
Chris Lattner2c99c712008-07-11 19:24:49 +0000444
Chris Lattner438f3b12008-11-12 07:43:42 +0000445 bool VisitExpr(Expr *E) {
Anders Carlsson38bb18c2008-11-30 18:37:00 +0000446 return Error(E->getLocStart(), diag::note_invalid_subexpr_in_ice, E);
Anders Carlssoncad17b52008-07-08 05:13:58 +0000447 }
448
Chris Lattnera42f09a2008-07-11 19:10:17 +0000449 bool VisitParenExpr(ParenExpr *E) { return Visit(E->getSubExpr()); }
Anders Carlssoncad17b52008-07-08 05:13:58 +0000450
Chris Lattner15e59112008-07-12 00:38:25 +0000451 bool VisitIntegerLiteral(const IntegerLiteral *E) {
452 Result = E->getValue();
453 Result.setIsUnsigned(E->getType()->isUnsignedIntegerType());
454 return true;
455 }
456 bool VisitCharacterLiteral(const CharacterLiteral *E) {
457 Result.zextOrTrunc(getIntTypeSizeInBits(E->getType()));
458 Result = E->getValue();
459 Result.setIsUnsigned(E->getType()->isUnsignedIntegerType());
460 return true;
461 }
462 bool VisitTypesCompatibleExpr(const TypesCompatibleExpr *E) {
463 Result.zextOrTrunc(getIntTypeSizeInBits(E->getType()));
Daniel Dunbarda8ebd22008-10-24 08:07:57 +0000464 // Per gcc docs "this built-in function ignores top level
465 // qualifiers". We need to use the canonical version to properly
466 // be able to strip CRV qualifiers from the type.
467 QualType T0 = Info.Ctx.getCanonicalType(E->getArgType1());
468 QualType T1 = Info.Ctx.getCanonicalType(E->getArgType2());
469 Result = Info.Ctx.typesAreCompatible(T0.getUnqualifiedType(),
470 T1.getUnqualifiedType());
Chris Lattner15e59112008-07-12 00:38:25 +0000471 return true;
472 }
473 bool VisitDeclRefExpr(const DeclRefExpr *E);
474 bool VisitCallExpr(const CallExpr *E);
Chris Lattnera42f09a2008-07-11 19:10:17 +0000475 bool VisitBinaryOperator(const BinaryOperator *E);
476 bool VisitUnaryOperator(const UnaryOperator *E);
Nuno Lopeseb35c0e2008-11-16 19:28:31 +0000477 bool VisitConditionalOperator(const ConditionalOperator *E);
Anders Carlssonc0328012008-07-08 05:49:43 +0000478
Chris Lattnerff579ff2008-07-12 01:15:53 +0000479 bool VisitCastExpr(CastExpr* E) {
Anders Carlssonfa76d822008-11-30 18:14:57 +0000480 return HandleCast(E);
Anders Carlssonc43f44b2008-07-08 15:34:11 +0000481 }
Sebastian Redl0cb7c872008-11-11 17:56:53 +0000482 bool VisitSizeOfAlignOfExpr(const SizeOfAlignOfExpr *E);
483
Anders Carlsson027f2882008-11-16 19:01:22 +0000484 bool VisitCXXBoolLiteralExpr(const CXXBoolLiteralExpr *E) {
Anders Carlsson02bb9c32008-11-16 22:46:56 +0000485 Result.zextOrTrunc(getIntTypeSizeInBits(E->getType()));
Anders Carlsson027f2882008-11-16 19:01:22 +0000486 Result = E->getValue();
487 Result.setIsUnsigned(E->getType()->isUnsignedIntegerType());
488 return true;
489 }
490
Anders Carlsson774f9c72008-12-21 22:39:40 +0000491 bool VisitGNUNullExpr(const GNUNullExpr *E) {
492 Result = APSInt::getNullValue(getIntTypeSizeInBits(E->getType()));
493 Result.setIsUnsigned(E->getType()->isUnsignedIntegerType());
494 return true;
495 }
496
Anders Carlsson027f2882008-11-16 19:01:22 +0000497 bool VisitCXXZeroInitValueExpr(const CXXZeroInitValueExpr *E) {
498 Result = APSInt::getNullValue(getIntTypeSizeInBits(E->getType()));
499 Result.setIsUnsigned(E->getType()->isUnsignedIntegerType());
500 return true;
501 }
502
Sebastian Redl39c0f6f2009-01-05 20:52:13 +0000503 bool VisitUnaryTypeTraitExpr(const UnaryTypeTraitExpr *E) {
504 Result.zextOrTrunc(getIntTypeSizeInBits(E->getType()));
505 Result = E->Evaluate();
506 return true;
507 }
508
Chris Lattner265a0892008-07-11 21:24:13 +0000509private:
Anders Carlssonfa76d822008-11-30 18:14:57 +0000510 bool HandleCast(CastExpr* E);
Chris Lattnere3f61e12009-01-24 21:09:06 +0000511 uint64_t GetAlignOfExpr(const Expr *E);
512 uint64_t GetAlignOfType(QualType T);
Anders Carlssond1aa5812008-07-08 14:35:21 +0000513};
Chris Lattnera823ccf2008-07-11 18:11:29 +0000514} // end anonymous namespace
Anders Carlssonc43f44b2008-07-08 15:34:11 +0000515
Chris Lattner422373c2008-07-11 22:52:41 +0000516static bool EvaluateInteger(const Expr* E, APSInt &Result, EvalInfo &Info) {
517 return IntExprEvaluator(Info, Result).Visit(const_cast<Expr*>(E));
Anders Carlssonc43f44b2008-07-08 15:34:11 +0000518}
Anders Carlssonc43f44b2008-07-08 15:34:11 +0000519
Chris Lattner15e59112008-07-12 00:38:25 +0000520bool IntExprEvaluator::VisitDeclRefExpr(const DeclRefExpr *E) {
521 // Enums are integer constant exprs.
522 if (const EnumConstantDecl *D = dyn_cast<EnumConstantDecl>(E->getDecl())) {
523 Result = D->getInitVal();
Eli Friedman8b10a232008-12-08 02:21:03 +0000524 // FIXME: This is an ugly hack around the fact that enums don't set their
525 // signedness consistently; see PR3173
526 Result.setIsUnsigned(!E->getType()->isSignedIntegerType());
Chris Lattner15e59112008-07-12 00:38:25 +0000527 return true;
528 }
529
530 // Otherwise, random variable references are not constants.
Anders Carlsson38bb18c2008-11-30 18:37:00 +0000531 return Error(E->getLocStart(), diag::note_invalid_subexpr_in_ice, E);
Chris Lattner15e59112008-07-12 00:38:25 +0000532}
533
Chris Lattner1eee9402008-10-06 06:40:35 +0000534/// EvaluateBuiltinClassifyType - Evaluate __builtin_classify_type the same way
535/// as GCC.
536static int EvaluateBuiltinClassifyType(const CallExpr *E) {
537 // The following enum mimics the values returned by GCC.
538 enum gcc_type_class {
539 no_type_class = -1,
540 void_type_class, integer_type_class, char_type_class,
541 enumeral_type_class, boolean_type_class,
542 pointer_type_class, reference_type_class, offset_type_class,
543 real_type_class, complex_type_class,
544 function_type_class, method_type_class,
545 record_type_class, union_type_class,
546 array_type_class, string_type_class,
547 lang_type_class
548 };
549
550 // If no argument was supplied, default to "no_type_class". This isn't
551 // ideal, however it is what gcc does.
552 if (E->getNumArgs() == 0)
553 return no_type_class;
554
555 QualType ArgTy = E->getArg(0)->getType();
556 if (ArgTy->isVoidType())
557 return void_type_class;
558 else if (ArgTy->isEnumeralType())
559 return enumeral_type_class;
560 else if (ArgTy->isBooleanType())
561 return boolean_type_class;
562 else if (ArgTy->isCharType())
563 return string_type_class; // gcc doesn't appear to use char_type_class
564 else if (ArgTy->isIntegerType())
565 return integer_type_class;
566 else if (ArgTy->isPointerType())
567 return pointer_type_class;
568 else if (ArgTy->isReferenceType())
569 return reference_type_class;
570 else if (ArgTy->isRealType())
571 return real_type_class;
572 else if (ArgTy->isComplexType())
573 return complex_type_class;
574 else if (ArgTy->isFunctionType())
575 return function_type_class;
576 else if (ArgTy->isStructureType())
577 return record_type_class;
578 else if (ArgTy->isUnionType())
579 return union_type_class;
580 else if (ArgTy->isArrayType())
581 return array_type_class;
582 else if (ArgTy->isUnionType())
583 return union_type_class;
584 else // FIXME: offset_type_class, method_type_class, & lang_type_class?
585 assert(0 && "CallExpr::isBuiltinClassifyType(): unimplemented type");
586 return -1;
587}
588
Chris Lattner15e59112008-07-12 00:38:25 +0000589bool IntExprEvaluator::VisitCallExpr(const CallExpr *E) {
590 Result.zextOrTrunc(getIntTypeSizeInBits(E->getType()));
Chris Lattner15e59112008-07-12 00:38:25 +0000591
Chris Lattner87293782008-10-06 05:28:25 +0000592 switch (E->isBuiltinCall()) {
593 default:
Anders Carlsson38bb18c2008-11-30 18:37:00 +0000594 return Error(E->getLocStart(), diag::note_invalid_subexpr_in_ice, E);
Chris Lattner87293782008-10-06 05:28:25 +0000595 case Builtin::BI__builtin_classify_type:
Chris Lattner1eee9402008-10-06 06:40:35 +0000596 Result.setIsSigned(true);
597 Result = EvaluateBuiltinClassifyType(E);
Chris Lattner87293782008-10-06 05:28:25 +0000598 return true;
599
Anders Carlsson8bce31a2008-11-24 04:21:33 +0000600 case Builtin::BI__builtin_constant_p:
Chris Lattner87293782008-10-06 05:28:25 +0000601 // __builtin_constant_p always has one operand: it returns true if that
602 // operand can be folded, false otherwise.
Anders Carlsson8bce31a2008-11-24 04:21:33 +0000603 Result = E->getArg(0)->isEvaluatable(Info.Ctx);
Chris Lattner87293782008-10-06 05:28:25 +0000604 return true;
605 }
Chris Lattner15e59112008-07-12 00:38:25 +0000606}
Anders Carlssonc43f44b2008-07-08 15:34:11 +0000607
Chris Lattnera42f09a2008-07-11 19:10:17 +0000608bool IntExprEvaluator::VisitBinaryOperator(const BinaryOperator *E) {
Eli Friedman14cc7542008-11-13 06:09:17 +0000609 if (E->getOpcode() == BinaryOperator::Comma) {
Anders Carlssonb1112ad2008-12-01 02:07:06 +0000610 if (!Visit(E->getRHS()))
611 return false;
Anders Carlsson197f6f72008-12-01 06:44:05 +0000612
613 if (!Info.ShortCircuit) {
614 // If we can't evaluate the LHS, it must be because it has
615 // side effects.
616 if (!E->getLHS()->isEvaluatable(Info.Ctx))
617 Info.EvalResult.HasSideEffects = true;
618
Anders Carlsson38bb18c2008-11-30 18:37:00 +0000619 return Extension(E->getOperatorLoc(), diag::note_comma_in_ice, E);
Anders Carlsson197f6f72008-12-01 06:44:05 +0000620 }
Eli Friedman14cc7542008-11-13 06:09:17 +0000621
Anders Carlssonb1112ad2008-12-01 02:07:06 +0000622 return true;
Eli Friedman14cc7542008-11-13 06:09:17 +0000623 }
624
625 if (E->isLogicalOp()) {
626 // These need to be handled specially because the operands aren't
627 // necessarily integral
Anders Carlsson501da1f2008-11-30 16:51:17 +0000628 bool lhsResult, rhsResult;
Anders Carlssone8bd9f22008-11-22 21:04:56 +0000629
Anders Carlsson501da1f2008-11-30 16:51:17 +0000630 if (HandleConversionToBool(E->getLHS(), lhsResult, Info)) {
Anders Carlssone8bd9f22008-11-22 21:04:56 +0000631 // We were able to evaluate the LHS, see if we can get away with not
632 // evaluating the RHS: 0 && X -> 0, 1 || X -> 1
Anders Carlsson501da1f2008-11-30 16:51:17 +0000633 if (lhsResult == (E->getOpcode() == BinaryOperator::LOr) ||
634 !lhsResult == (E->getOpcode() == BinaryOperator::LAnd)) {
Anders Carlsson8bce31a2008-11-24 04:21:33 +0000635 Result.zextOrTrunc(getIntTypeSizeInBits(E->getType()));
636 Result.setIsUnsigned(E->getType()->isUnsignedIntegerType());
Anders Carlsson501da1f2008-11-30 16:51:17 +0000637 Result = lhsResult;
Anders Carlsson8bce31a2008-11-24 04:21:33 +0000638
Anders Carlsson6c1a9e22008-11-30 18:26:25 +0000639 Info.ShortCircuit++;
Anders Carlsson501da1f2008-11-30 16:51:17 +0000640 bool rhsEvaluated = HandleConversionToBool(E->getRHS(), rhsResult, Info);
Anders Carlsson6c1a9e22008-11-30 18:26:25 +0000641 Info.ShortCircuit--;
642
Anders Carlsson501da1f2008-11-30 16:51:17 +0000643 if (rhsEvaluated)
644 return true;
645
646 // FIXME: Return an extension warning saying that the RHS could not be
647 // evaluated.
Anders Carlsson8bce31a2008-11-24 04:21:33 +0000648 return true;
Eli Friedman14cc7542008-11-13 06:09:17 +0000649 }
Anders Carlsson8bce31a2008-11-24 04:21:33 +0000650
Anders Carlsson501da1f2008-11-30 16:51:17 +0000651 if (HandleConversionToBool(E->getRHS(), rhsResult, Info)) {
Anders Carlsson8bce31a2008-11-24 04:21:33 +0000652 Result.zextOrTrunc(getIntTypeSizeInBits(E->getType()));
653 Result.setIsUnsigned(E->getType()->isUnsignedIntegerType());
654 if (E->getOpcode() == BinaryOperator::LOr)
Anders Carlsson501da1f2008-11-30 16:51:17 +0000655 Result = lhsResult || rhsResult;
Anders Carlsson8bce31a2008-11-24 04:21:33 +0000656 else
Anders Carlsson501da1f2008-11-30 16:51:17 +0000657 Result = lhsResult && rhsResult;
Anders Carlsson8bce31a2008-11-24 04:21:33 +0000658 return true;
659 }
660 } else {
Anders Carlsson501da1f2008-11-30 16:51:17 +0000661 if (HandleConversionToBool(E->getRHS(), rhsResult, Info)) {
Anders Carlsson8bce31a2008-11-24 04:21:33 +0000662 // We can't evaluate the LHS; however, sometimes the result
663 // is determined by the RHS: X && 0 -> 0, X || 1 -> 1.
Anders Carlsson501da1f2008-11-30 16:51:17 +0000664 if (rhsResult == (E->getOpcode() == BinaryOperator::LOr) ||
665 !rhsResult == (E->getOpcode() == BinaryOperator::LAnd)) {
Anders Carlsson8bce31a2008-11-24 04:21:33 +0000666 Result.zextOrTrunc(getIntTypeSizeInBits(E->getType()));
667 Result.setIsUnsigned(E->getType()->isUnsignedIntegerType());
Anders Carlsson501da1f2008-11-30 16:51:17 +0000668 Result = rhsResult;
669
670 // Since we werent able to evaluate the left hand side, it
671 // must have had side effects.
672 Info.EvalResult.HasSideEffects = true;
673
Anders Carlsson8bce31a2008-11-24 04:21:33 +0000674 return true;
675 }
676 }
Anders Carlssone8bd9f22008-11-22 21:04:56 +0000677 }
Eli Friedman14cc7542008-11-13 06:09:17 +0000678
Eli Friedman14cc7542008-11-13 06:09:17 +0000679 return false;
680 }
681
Anders Carlssonebfa6ed2008-11-16 07:17:21 +0000682 QualType LHSTy = E->getLHS()->getType();
683 QualType RHSTy = E->getRHS()->getType();
684
685 if (LHSTy->isRealFloatingType() &&
686 RHSTy->isRealFloatingType()) {
687 APFloat RHS(0.0), LHS(0.0);
688
689 if (!EvaluateFloat(E->getRHS(), RHS, Info))
690 return false;
691
692 if (!EvaluateFloat(E->getLHS(), LHS, Info))
693 return false;
694
695 APFloat::cmpResult CR = LHS.compare(RHS);
Anders Carlsson02bb9c32008-11-16 22:46:56 +0000696
697 Result.zextOrTrunc(getIntTypeSizeInBits(E->getType()));
698
Anders Carlssonebfa6ed2008-11-16 07:17:21 +0000699 switch (E->getOpcode()) {
700 default:
701 assert(0 && "Invalid binary operator!");
702 case BinaryOperator::LT:
703 Result = CR == APFloat::cmpLessThan;
704 break;
705 case BinaryOperator::GT:
706 Result = CR == APFloat::cmpGreaterThan;
707 break;
708 case BinaryOperator::LE:
709 Result = CR == APFloat::cmpLessThan || CR == APFloat::cmpEqual;
710 break;
711 case BinaryOperator::GE:
712 Result = CR == APFloat::cmpGreaterThan || CR == APFloat::cmpEqual;
713 break;
714 case BinaryOperator::EQ:
715 Result = CR == APFloat::cmpEqual;
716 break;
717 case BinaryOperator::NE:
718 Result = CR == APFloat::cmpGreaterThan || CR == APFloat::cmpLessThan;
719 break;
720 }
721
Anders Carlssonebfa6ed2008-11-16 07:17:21 +0000722 Result.setIsUnsigned(E->getType()->isUnsignedIntegerType());
723 return true;
724 }
725
Anders Carlsson027f2882008-11-16 19:01:22 +0000726 if (E->getOpcode() == BinaryOperator::Sub) {
Anders Carlsson02bb9c32008-11-16 22:46:56 +0000727 if (LHSTy->isPointerType() && RHSTy->isPointerType()) {
Anders Carlsson027f2882008-11-16 19:01:22 +0000728 APValue LHSValue;
729 if (!EvaluatePointer(E->getLHS(), LHSValue, Info))
730 return false;
731
732 APValue RHSValue;
733 if (!EvaluatePointer(E->getRHS(), RHSValue, Info))
734 return false;
735
736 // FIXME: Is this correct? What if only one of the operands has a base?
737 if (LHSValue.getLValueBase() || RHSValue.getLValueBase())
738 return false;
739
740 const QualType Type = E->getLHS()->getType();
741 const QualType ElementType = Type->getAsPointerType()->getPointeeType();
742
743 uint64_t D = LHSValue.getLValueOffset() - RHSValue.getLValueOffset();
744 D /= Info.Ctx.getTypeSize(ElementType) / 8;
745
Anders Carlsson027f2882008-11-16 19:01:22 +0000746 Result.zextOrTrunc(getIntTypeSizeInBits(E->getType()));
Anders Carlsson02bb9c32008-11-16 22:46:56 +0000747 Result = D;
Anders Carlsson027f2882008-11-16 19:01:22 +0000748 Result.setIsUnsigned(E->getType()->isUnsignedIntegerType());
749
750 return true;
751 }
752 }
Anders Carlssonebfa6ed2008-11-16 07:17:21 +0000753 if (!LHSTy->isIntegralType() ||
754 !RHSTy->isIntegralType()) {
Eli Friedman14cc7542008-11-13 06:09:17 +0000755 // We can't continue from here for non-integral types, and they
756 // could potentially confuse the following operations.
757 // FIXME: Deal with EQ and friends.
758 return false;
759 }
760
Anders Carlssond1aa5812008-07-08 14:35:21 +0000761 // The LHS of a constant expr is always evaluated and needed.
Anders Carlssond1aa5812008-07-08 14:35:21 +0000762 llvm::APSInt RHS(32);
Chris Lattner40d2ae82008-11-12 07:04:29 +0000763 if (!Visit(E->getLHS())) {
Chris Lattner82437da2008-07-12 00:14:42 +0000764 return false; // error in subexpression.
Chris Lattner40d2ae82008-11-12 07:04:29 +0000765 }
Eli Friedman3e64dd72008-07-27 05:46:18 +0000766
Eli Friedman3e64dd72008-07-27 05:46:18 +0000767
768 // FIXME Maybe we want to succeed even where we can't evaluate the
769 // right side of LAnd/LOr?
770 // For example, see http://llvm.org/bugs/show_bug.cgi?id=2525
Chris Lattner82437da2008-07-12 00:14:42 +0000771 if (!EvaluateInteger(E->getRHS(), RHS, Info))
Chris Lattnera42f09a2008-07-11 19:10:17 +0000772 return false;
Eli Friedman14cc7542008-11-13 06:09:17 +0000773
Anders Carlssond1aa5812008-07-08 14:35:21 +0000774 switch (E->getOpcode()) {
Chris Lattner438f3b12008-11-12 07:43:42 +0000775 default:
Anders Carlsson38bb18c2008-11-30 18:37:00 +0000776 return Error(E->getOperatorLoc(), diag::note_invalid_subexpr_in_ice, E);
Chris Lattner82437da2008-07-12 00:14:42 +0000777 case BinaryOperator::Mul: Result *= RHS; return true;
778 case BinaryOperator::Add: Result += RHS; return true;
779 case BinaryOperator::Sub: Result -= RHS; return true;
780 case BinaryOperator::And: Result &= RHS; return true;
781 case BinaryOperator::Xor: Result ^= RHS; return true;
782 case BinaryOperator::Or: Result |= RHS; return true;
Chris Lattner400d7402008-07-11 22:15:16 +0000783 case BinaryOperator::Div:
Chris Lattner82437da2008-07-12 00:14:42 +0000784 if (RHS == 0)
Anders Carlsson38bb18c2008-11-30 18:37:00 +0000785 return Error(E->getOperatorLoc(), diag::note_expr_divide_by_zero, E);
Chris Lattner400d7402008-07-11 22:15:16 +0000786 Result /= RHS;
Chris Lattner438f3b12008-11-12 07:43:42 +0000787 break;
Chris Lattner400d7402008-07-11 22:15:16 +0000788 case BinaryOperator::Rem:
Chris Lattner82437da2008-07-12 00:14:42 +0000789 if (RHS == 0)
Anders Carlsson38bb18c2008-11-30 18:37:00 +0000790 return Error(E->getOperatorLoc(), diag::note_expr_divide_by_zero, E);
Chris Lattner400d7402008-07-11 22:15:16 +0000791 Result %= RHS;
Chris Lattner438f3b12008-11-12 07:43:42 +0000792 break;
Anders Carlssond1aa5812008-07-08 14:35:21 +0000793 case BinaryOperator::Shl:
Chris Lattner82437da2008-07-12 00:14:42 +0000794 // FIXME: Warn about out of range shift amounts!
Chris Lattnera42f09a2008-07-11 19:10:17 +0000795 Result <<= (unsigned)RHS.getLimitedValue(Result.getBitWidth()-1);
Anders Carlssond1aa5812008-07-08 14:35:21 +0000796 break;
797 case BinaryOperator::Shr:
Chris Lattnera42f09a2008-07-11 19:10:17 +0000798 Result >>= (unsigned)RHS.getLimitedValue(Result.getBitWidth()-1);
Anders Carlssond1aa5812008-07-08 14:35:21 +0000799 break;
Chris Lattnera42f09a2008-07-11 19:10:17 +0000800
Chris Lattner045502c2008-07-11 19:29:32 +0000801 case BinaryOperator::LT:
802 Result = Result < RHS;
803 Result.zextOrTrunc(getIntTypeSizeInBits(E->getType()));
804 break;
805 case BinaryOperator::GT:
806 Result = Result > RHS;
807 Result.zextOrTrunc(getIntTypeSizeInBits(E->getType()));
808 break;
809 case BinaryOperator::LE:
810 Result = Result <= RHS;
811 Result.zextOrTrunc(getIntTypeSizeInBits(E->getType()));
812 break;
813 case BinaryOperator::GE:
814 Result = Result >= RHS;
815 Result.zextOrTrunc(getIntTypeSizeInBits(E->getType()));
816 break;
817 case BinaryOperator::EQ:
818 Result = Result == RHS;
819 Result.zextOrTrunc(getIntTypeSizeInBits(E->getType()));
820 break;
821 case BinaryOperator::NE:
822 Result = Result != RHS;
823 Result.zextOrTrunc(getIntTypeSizeInBits(E->getType()));
824 break;
Chris Lattner82437da2008-07-12 00:14:42 +0000825 case BinaryOperator::LAnd:
826 Result = Result != 0 && RHS != 0;
827 Result.zextOrTrunc(getIntTypeSizeInBits(E->getType()));
828 break;
829 case BinaryOperator::LOr:
830 Result = Result != 0 || RHS != 0;
831 Result.zextOrTrunc(getIntTypeSizeInBits(E->getType()));
832 break;
Eli Friedmanb2935ab2008-11-13 02:13:11 +0000833 }
Anders Carlssond1aa5812008-07-08 14:35:21 +0000834
835 Result.setIsUnsigned(E->getType()->isUnsignedIntegerType());
Chris Lattnera42f09a2008-07-11 19:10:17 +0000836 return true;
Anders Carlssond1aa5812008-07-08 14:35:21 +0000837}
838
Nuno Lopeseb35c0e2008-11-16 19:28:31 +0000839bool IntExprEvaluator::VisitConditionalOperator(const ConditionalOperator *E) {
Nuno Lopes308de752008-11-16 22:06:39 +0000840 bool Cond;
841 if (!HandleConversionToBool(E->getCond(), Cond, Info))
Nuno Lopeseb35c0e2008-11-16 19:28:31 +0000842 return false;
843
Nuno Lopes308de752008-11-16 22:06:39 +0000844 return Visit(Cond ? E->getTrueExpr() : E->getFalseExpr());
Nuno Lopeseb35c0e2008-11-16 19:28:31 +0000845}
846
Chris Lattnere3f61e12009-01-24 21:09:06 +0000847uint64_t IntExprEvaluator::GetAlignOfType(QualType T) {
848 const Type *Ty = Info.Ctx.getCanonicalType(T).getTypePtr();
849
850 // __alignof__(void) = 1 as a gcc extension.
851 if (Ty->isVoidType())
852 return 1;
853
854 // GCC extension: alignof(function) = 4.
855 // FIXME: AlignOf shouldn't be unconditionally 4! It should listen to the
856 // attribute(align) directive.
857 if (Ty->isFunctionType())
858 return 4;
859
860 if (const ASQualType *ASQT = dyn_cast<ASQualType>(Ty))
861 return GetAlignOfType(QualType(ASQT->getBaseType(), 0));
862
863 // alignof VLA/incomplete array.
864 if (const ArrayType *VAT = dyn_cast<ArrayType>(Ty))
865 return GetAlignOfType(VAT->getElementType());
866
867 // sizeof (objc class)?
868 if (isa<ObjCInterfaceType>(Ty))
869 return 1; // FIXME: This probably isn't right.
870
871 // Get information about the alignment.
872 unsigned CharSize = Info.Ctx.Target.getCharWidth();
873 return Info.Ctx.getTypeAlign(Ty) / CharSize;
874}
875
876uint64_t IntExprEvaluator::GetAlignOfExpr(const Expr *E) {
877
878 return GetAlignOfType(E->getType());
879}
880
881
Sebastian Redl0cb7c872008-11-11 17:56:53 +0000882/// VisitSizeAlignOfExpr - Evaluate a sizeof or alignof with a result as the
883/// expression's type.
884bool IntExprEvaluator::VisitSizeOfAlignOfExpr(const SizeOfAlignOfExpr *E) {
885 QualType DstTy = E->getType();
Chris Lattner265a0892008-07-11 21:24:13 +0000886 // Return the result in the right width.
887 Result.zextOrTrunc(getIntTypeSizeInBits(DstTy));
888 Result.setIsUnsigned(DstTy->isUnsignedIntegerType());
889
Chris Lattnere3f61e12009-01-24 21:09:06 +0000890 // Handle alignof separately.
891 if (!E->isSizeOf()) {
892 if (E->isArgumentType())
893 Result = GetAlignOfType(E->getArgumentType());
894 else
895 Result = GetAlignOfExpr(E->getArgumentExpr());
896 return true;
897 }
898
Sebastian Redl0cb7c872008-11-11 17:56:53 +0000899 QualType SrcTy = E->getTypeOfArgument();
900
Chris Lattner265a0892008-07-11 21:24:13 +0000901 // sizeof(void) and __alignof__(void) = 1 as a gcc extension.
Eli Friedman7888b932008-11-12 09:44:48 +0000902 if (SrcTy->isVoidType()) {
Chris Lattner265a0892008-07-11 21:24:13 +0000903 Result = 1;
Eli Friedman7888b932008-11-12 09:44:48 +0000904 return true;
905 }
Chris Lattner265a0892008-07-11 21:24:13 +0000906
907 // sizeof(vla) is not a constantexpr: C99 6.5.3.4p2.
Chris Lattnere3f61e12009-01-24 21:09:06 +0000908 if (!SrcTy->isConstantSizeType())
Chris Lattner265a0892008-07-11 21:24:13 +0000909 return false;
Sebastian Redl0cb7c872008-11-11 17:56:53 +0000910
Fariborz Jahanian2a032ec2009-01-16 01:42:12 +0000911 // sizeof (objc class) ?
912 if (SrcTy->isObjCInterfaceType())
913 return false;
914
Chris Lattner265a0892008-07-11 21:24:13 +0000915 // GCC extension: sizeof(function) = 1.
916 if (SrcTy->isFunctionType()) {
Chris Lattnere3f61e12009-01-24 21:09:06 +0000917 Result = 1;
Chris Lattner265a0892008-07-11 21:24:13 +0000918 return true;
919 }
920
Chris Lattnere3f61e12009-01-24 21:09:06 +0000921 // Get information about the size.
Chris Lattner422373c2008-07-11 22:52:41 +0000922 unsigned CharSize = Info.Ctx.Target.getCharWidth();
Chris Lattnere3f61e12009-01-24 21:09:06 +0000923 Result = Info.Ctx.getTypeSize(SrcTy) / CharSize;
Chris Lattner265a0892008-07-11 21:24:13 +0000924 return true;
925}
926
Chris Lattnera42f09a2008-07-11 19:10:17 +0000927bool IntExprEvaluator::VisitUnaryOperator(const UnaryOperator *E) {
Chris Lattner15e59112008-07-12 00:38:25 +0000928 // Special case unary operators that do not need their subexpression
929 // evaluated. offsetof/sizeof/alignof are all special.
Chris Lattner400d7402008-07-11 22:15:16 +0000930 if (E->isOffsetOfOp()) {
Chris Lattner15e59112008-07-12 00:38:25 +0000931 Result.zextOrTrunc(getIntTypeSizeInBits(E->getType()));
Chris Lattner422373c2008-07-11 22:52:41 +0000932 Result = E->evaluateOffsetOf(Info.Ctx);
Chris Lattner400d7402008-07-11 22:15:16 +0000933 Result.setIsUnsigned(E->getType()->isUnsignedIntegerType());
934 return true;
935 }
Eli Friedman14cc7542008-11-13 06:09:17 +0000936
937 if (E->getOpcode() == UnaryOperator::LNot) {
938 // LNot's operand isn't necessarily an integer, so we handle it specially.
939 bool bres;
940 if (!HandleConversionToBool(E->getSubExpr(), bres, Info))
941 return false;
942 Result.zextOrTrunc(getIntTypeSizeInBits(E->getType()));
943 Result.setIsUnsigned(E->getType()->isUnsignedIntegerType());
944 Result = !bres;
945 return true;
946 }
947
Chris Lattner422373c2008-07-11 22:52:41 +0000948 // Get the operand value into 'Result'.
949 if (!Visit(E->getSubExpr()))
Chris Lattner400d7402008-07-11 22:15:16 +0000950 return false;
Anders Carlssond1aa5812008-07-08 14:35:21 +0000951
Chris Lattner400d7402008-07-11 22:15:16 +0000952 switch (E->getOpcode()) {
Chris Lattner15e59112008-07-12 00:38:25 +0000953 default:
Chris Lattner400d7402008-07-11 22:15:16 +0000954 // Address, indirect, pre/post inc/dec, etc are not valid constant exprs.
955 // See C99 6.6p3.
Anders Carlsson38bb18c2008-11-30 18:37:00 +0000956 return Error(E->getOperatorLoc(), diag::note_invalid_subexpr_in_ice, E);
Chris Lattner400d7402008-07-11 22:15:16 +0000957 case UnaryOperator::Extension:
Chris Lattner15e59112008-07-12 00:38:25 +0000958 // FIXME: Should extension allow i-c-e extension expressions in its scope?
959 // If so, we could clear the diagnostic ID.
Chris Lattner400d7402008-07-11 22:15:16 +0000960 case UnaryOperator::Plus:
Chris Lattner15e59112008-07-12 00:38:25 +0000961 // The result is always just the subexpr.
Chris Lattner400d7402008-07-11 22:15:16 +0000962 break;
963 case UnaryOperator::Minus:
964 Result = -Result;
965 break;
966 case UnaryOperator::Not:
967 Result = ~Result;
968 break;
Anders Carlssond1aa5812008-07-08 14:35:21 +0000969 }
970
971 Result.setIsUnsigned(E->getType()->isUnsignedIntegerType());
Chris Lattnera42f09a2008-07-11 19:10:17 +0000972 return true;
Anders Carlssond1aa5812008-07-08 14:35:21 +0000973}
974
Chris Lattnerff579ff2008-07-12 01:15:53 +0000975/// HandleCast - This is used to evaluate implicit or explicit casts where the
976/// result type is integer.
Anders Carlssonfa76d822008-11-30 18:14:57 +0000977bool IntExprEvaluator::HandleCast(CastExpr *E) {
978 Expr *SubExpr = E->getSubExpr();
979 QualType DestType = E->getType();
980
Chris Lattner2c99c712008-07-11 19:24:49 +0000981 unsigned DestWidth = getIntTypeSizeInBits(DestType);
Anders Carlssond1aa5812008-07-08 14:35:21 +0000982
Eli Friedman7888b932008-11-12 09:44:48 +0000983 if (DestType->isBooleanType()) {
984 bool BoolResult;
985 if (!HandleConversionToBool(SubExpr, BoolResult, Info))
986 return false;
987 Result.zextOrTrunc(DestWidth);
988 Result.setIsUnsigned(DestType->isUnsignedIntegerType());
989 Result = BoolResult;
990 return true;
991 }
992
Anders Carlssond1aa5812008-07-08 14:35:21 +0000993 // Handle simple integer->integer casts.
Eli Friedman14cc7542008-11-13 06:09:17 +0000994 if (SubExpr->getType()->isIntegralType()) {
Chris Lattnerff579ff2008-07-12 01:15:53 +0000995 if (!Visit(SubExpr))
Chris Lattnera42f09a2008-07-11 19:10:17 +0000996 return false;
Anders Carlssond1aa5812008-07-08 14:35:21 +0000997
998 // Figure out if this is a truncate, extend or noop cast.
999 // If the input is signed, do a sign extend, noop, or truncate.
Eli Friedman7888b932008-11-12 09:44:48 +00001000 Result.extOrTrunc(DestWidth);
Chris Lattnerff579ff2008-07-12 01:15:53 +00001001 Result.setIsUnsigned(DestType->isUnsignedIntegerType());
1002 return true;
1003 }
1004
1005 // FIXME: Clean this up!
1006 if (SubExpr->getType()->isPointerType()) {
Anders Carlssond1aa5812008-07-08 14:35:21 +00001007 APValue LV;
Chris Lattner422373c2008-07-11 22:52:41 +00001008 if (!EvaluatePointer(SubExpr, LV, Info))
Chris Lattnera42f09a2008-07-11 19:10:17 +00001009 return false;
Eli Friedman7888b932008-11-12 09:44:48 +00001010
Anders Carlssond1aa5812008-07-08 14:35:21 +00001011 if (LV.getLValueBase())
Chris Lattnera42f09a2008-07-11 19:10:17 +00001012 return false;
Eli Friedman7888b932008-11-12 09:44:48 +00001013
Anders Carlsson8ab15c82008-07-08 16:49:00 +00001014 Result.extOrTrunc(DestWidth);
1015 Result = LV.getLValueOffset();
Chris Lattnerff579ff2008-07-12 01:15:53 +00001016 Result.setIsUnsigned(DestType->isUnsignedIntegerType());
1017 return true;
Anders Carlsson02a34c32008-07-08 14:30:00 +00001018 }
Eli Friedman7888b932008-11-12 09:44:48 +00001019
Chris Lattnerff579ff2008-07-12 01:15:53 +00001020 if (!SubExpr->getType()->isRealFloatingType())
Anders Carlsson38bb18c2008-11-30 18:37:00 +00001021 return Error(E->getExprLoc(), diag::note_invalid_subexpr_in_ice, E);
Chris Lattnerff579ff2008-07-12 01:15:53 +00001022
Eli Friedman2f445492008-08-22 00:06:13 +00001023 APFloat F(0.0);
1024 if (!EvaluateFloat(SubExpr, F, Info))
Anders Carlsson38bb18c2008-11-30 18:37:00 +00001025 return Error(E->getExprLoc(), diag::note_invalid_subexpr_in_ice, E);
Chris Lattnerff579ff2008-07-12 01:15:53 +00001026
1027 // Determine whether we are converting to unsigned or signed.
1028 bool DestSigned = DestType->isSignedIntegerType();
1029
1030 // FIXME: Warning for overflow.
Dale Johannesen2461f612008-10-09 23:02:32 +00001031 uint64_t Space[4];
1032 bool ignored;
Eli Friedman2f445492008-08-22 00:06:13 +00001033 (void)F.convertToInteger(Space, DestWidth, DestSigned,
Dale Johannesen2461f612008-10-09 23:02:32 +00001034 llvm::APFloat::rmTowardZero, &ignored);
Chris Lattnerff579ff2008-07-12 01:15:53 +00001035 Result = llvm::APInt(DestWidth, 4, Space);
1036 Result.setIsUnsigned(!DestSigned);
Chris Lattnera42f09a2008-07-11 19:10:17 +00001037 return true;
Anders Carlssond1aa5812008-07-08 14:35:21 +00001038}
Anders Carlsson02a34c32008-07-08 14:30:00 +00001039
Chris Lattnera823ccf2008-07-11 18:11:29 +00001040//===----------------------------------------------------------------------===//
Eli Friedman2f445492008-08-22 00:06:13 +00001041// Float Evaluation
1042//===----------------------------------------------------------------------===//
1043
1044namespace {
1045class VISIBILITY_HIDDEN FloatExprEvaluator
1046 : public StmtVisitor<FloatExprEvaluator, bool> {
1047 EvalInfo &Info;
1048 APFloat &Result;
1049public:
1050 FloatExprEvaluator(EvalInfo &info, APFloat &result)
1051 : Info(info), Result(result) {}
1052
1053 bool VisitStmt(Stmt *S) {
1054 return false;
1055 }
1056
1057 bool VisitParenExpr(ParenExpr *E) { return Visit(E->getSubExpr()); }
Chris Lattner87293782008-10-06 05:28:25 +00001058 bool VisitCallExpr(const CallExpr *E);
Eli Friedman2f445492008-08-22 00:06:13 +00001059
Daniel Dunbar804ead02008-10-16 03:51:50 +00001060 bool VisitUnaryOperator(const UnaryOperator *E);
Eli Friedman2f445492008-08-22 00:06:13 +00001061 bool VisitBinaryOperator(const BinaryOperator *E);
1062 bool VisitFloatingLiteral(const FloatingLiteral *E);
Eli Friedman7888b932008-11-12 09:44:48 +00001063 bool VisitCastExpr(CastExpr *E);
1064 bool VisitCXXZeroInitValueExpr(CXXZeroInitValueExpr *E);
Eli Friedman2f445492008-08-22 00:06:13 +00001065};
1066} // end anonymous namespace
1067
1068static bool EvaluateFloat(const Expr* E, APFloat& Result, EvalInfo &Info) {
1069 return FloatExprEvaluator(Info, Result).Visit(const_cast<Expr*>(E));
1070}
1071
Chris Lattner87293782008-10-06 05:28:25 +00001072bool FloatExprEvaluator::VisitCallExpr(const CallExpr *E) {
Chris Lattner87293782008-10-06 05:28:25 +00001073 switch (E->isBuiltinCall()) {
Chris Lattner27cde262008-10-06 05:53:16 +00001074 default: return false;
Chris Lattner87293782008-10-06 05:28:25 +00001075 case Builtin::BI__builtin_huge_val:
1076 case Builtin::BI__builtin_huge_valf:
1077 case Builtin::BI__builtin_huge_vall:
1078 case Builtin::BI__builtin_inf:
1079 case Builtin::BI__builtin_inff:
Daniel Dunbar0b3efb42008-10-14 05:41:12 +00001080 case Builtin::BI__builtin_infl: {
1081 const llvm::fltSemantics &Sem =
1082 Info.Ctx.getFloatTypeSemantics(E->getType());
Chris Lattner27cde262008-10-06 05:53:16 +00001083 Result = llvm::APFloat::getInf(Sem);
1084 return true;
Daniel Dunbar0b3efb42008-10-14 05:41:12 +00001085 }
Chris Lattner667e1ee2008-10-06 06:31:58 +00001086
1087 case Builtin::BI__builtin_nan:
1088 case Builtin::BI__builtin_nanf:
1089 case Builtin::BI__builtin_nanl:
1090 // If this is __builtin_nan("") turn this into a simple nan, otherwise we
1091 // can't constant fold it.
1092 if (const StringLiteral *S =
1093 dyn_cast<StringLiteral>(E->getArg(0)->IgnoreParenCasts())) {
1094 if (!S->isWide() && S->getByteLength() == 0) { // empty string.
Daniel Dunbar0b3efb42008-10-14 05:41:12 +00001095 const llvm::fltSemantics &Sem =
1096 Info.Ctx.getFloatTypeSemantics(E->getType());
Chris Lattner667e1ee2008-10-06 06:31:58 +00001097 Result = llvm::APFloat::getNaN(Sem);
1098 return true;
1099 }
1100 }
1101 return false;
Daniel Dunbar804ead02008-10-16 03:51:50 +00001102
1103 case Builtin::BI__builtin_fabs:
1104 case Builtin::BI__builtin_fabsf:
1105 case Builtin::BI__builtin_fabsl:
1106 if (!EvaluateFloat(E->getArg(0), Result, Info))
1107 return false;
1108
1109 if (Result.isNegative())
1110 Result.changeSign();
1111 return true;
1112
1113 case Builtin::BI__builtin_copysign:
1114 case Builtin::BI__builtin_copysignf:
1115 case Builtin::BI__builtin_copysignl: {
1116 APFloat RHS(0.);
1117 if (!EvaluateFloat(E->getArg(0), Result, Info) ||
1118 !EvaluateFloat(E->getArg(1), RHS, Info))
1119 return false;
1120 Result.copySign(RHS);
1121 return true;
1122 }
Chris Lattner87293782008-10-06 05:28:25 +00001123 }
1124}
1125
Daniel Dunbar804ead02008-10-16 03:51:50 +00001126bool FloatExprEvaluator::VisitUnaryOperator(const UnaryOperator *E) {
Nuno Lopes1cea4f42008-11-19 17:44:31 +00001127 if (E->getOpcode() == UnaryOperator::Deref)
1128 return false;
1129
Daniel Dunbar804ead02008-10-16 03:51:50 +00001130 if (!EvaluateFloat(E->getSubExpr(), Result, Info))
1131 return false;
1132
1133 switch (E->getOpcode()) {
1134 default: return false;
1135 case UnaryOperator::Plus:
1136 return true;
1137 case UnaryOperator::Minus:
1138 Result.changeSign();
1139 return true;
1140 }
1141}
Chris Lattner87293782008-10-06 05:28:25 +00001142
Eli Friedman2f445492008-08-22 00:06:13 +00001143bool FloatExprEvaluator::VisitBinaryOperator(const BinaryOperator *E) {
1144 // FIXME: Diagnostics? I really don't understand how the warnings
1145 // and errors are supposed to work.
Daniel Dunbar804ead02008-10-16 03:51:50 +00001146 APFloat RHS(0.0);
Eli Friedman2f445492008-08-22 00:06:13 +00001147 if (!EvaluateFloat(E->getLHS(), Result, Info))
1148 return false;
1149 if (!EvaluateFloat(E->getRHS(), RHS, Info))
1150 return false;
1151
1152 switch (E->getOpcode()) {
1153 default: return false;
1154 case BinaryOperator::Mul:
1155 Result.multiply(RHS, APFloat::rmNearestTiesToEven);
1156 return true;
1157 case BinaryOperator::Add:
1158 Result.add(RHS, APFloat::rmNearestTiesToEven);
1159 return true;
1160 case BinaryOperator::Sub:
1161 Result.subtract(RHS, APFloat::rmNearestTiesToEven);
1162 return true;
1163 case BinaryOperator::Div:
1164 Result.divide(RHS, APFloat::rmNearestTiesToEven);
1165 return true;
1166 case BinaryOperator::Rem:
1167 Result.mod(RHS, APFloat::rmNearestTiesToEven);
1168 return true;
1169 }
1170}
1171
1172bool FloatExprEvaluator::VisitFloatingLiteral(const FloatingLiteral *E) {
1173 Result = E->getValue();
1174 return true;
1175}
1176
Eli Friedman7888b932008-11-12 09:44:48 +00001177bool FloatExprEvaluator::VisitCastExpr(CastExpr *E) {
1178 Expr* SubExpr = E->getSubExpr();
Nate Begemand6d2f772009-01-18 03:20:47 +00001179
Eli Friedman7888b932008-11-12 09:44:48 +00001180 const llvm::fltSemantics& destSemantics =
1181 Info.Ctx.getFloatTypeSemantics(E->getType());
1182 if (SubExpr->getType()->isIntegralType()) {
1183 APSInt IntResult;
1184 if (!EvaluateInteger(E, IntResult, Info))
1185 return false;
1186 Result = APFloat(destSemantics, 1);
1187 Result.convertFromAPInt(IntResult, IntResult.isSigned(),
1188 APFloat::rmNearestTiesToEven);
1189 return true;
1190 }
1191 if (SubExpr->getType()->isRealFloatingType()) {
1192 if (!Visit(SubExpr))
1193 return false;
1194 bool ignored;
1195 Result.convert(destSemantics, APFloat::rmNearestTiesToEven, &ignored);
1196 return true;
1197 }
1198
1199 return false;
1200}
1201
1202bool FloatExprEvaluator::VisitCXXZeroInitValueExpr(CXXZeroInitValueExpr *E) {
1203 Result = APFloat::getZero(Info.Ctx.getFloatTypeSemantics(E->getType()));
1204 return true;
1205}
1206
Eli Friedman2f445492008-08-22 00:06:13 +00001207//===----------------------------------------------------------------------===//
Anders Carlssonf1bb2962008-11-16 20:27:53 +00001208// Complex Float Evaluation
1209//===----------------------------------------------------------------------===//
1210
1211namespace {
1212class VISIBILITY_HIDDEN ComplexFloatExprEvaluator
1213 : public StmtVisitor<ComplexFloatExprEvaluator, APValue> {
1214 EvalInfo &Info;
1215
1216public:
1217 ComplexFloatExprEvaluator(EvalInfo &info) : Info(info) {}
1218
1219 //===--------------------------------------------------------------------===//
1220 // Visitor Methods
1221 //===--------------------------------------------------------------------===//
1222
1223 APValue VisitStmt(Stmt *S) {
Anders Carlssonf1bb2962008-11-16 20:27:53 +00001224 return APValue();
1225 }
1226
1227 APValue VisitParenExpr(ParenExpr *E) { return Visit(E->getSubExpr()); }
1228
1229 APValue VisitImaginaryLiteral(ImaginaryLiteral *E) {
1230 APFloat Result(0.0);
1231 if (!EvaluateFloat(E->getSubExpr(), Result, Info))
1232 return APValue();
1233
Daniel Dunbarf8abb942009-01-24 19:08:01 +00001234 return APValue(APFloat(Result.getSemantics(), APFloat::fcZero),
1235 Result);
Anders Carlssonf1bb2962008-11-16 20:27:53 +00001236 }
1237
Anders Carlssonad2794c2008-11-16 21:51:21 +00001238 APValue VisitCastExpr(CastExpr *E) {
1239 Expr* SubExpr = E->getSubExpr();
1240
1241 if (SubExpr->getType()->isRealFloatingType()) {
1242 APFloat Result(0.0);
1243
1244 if (!EvaluateFloat(SubExpr, Result, Info))
1245 return APValue();
1246
Daniel Dunbarf8abb942009-01-24 19:08:01 +00001247 return APValue(Result,
1248 APFloat(Result.getSemantics(), APFloat::fcZero));
Anders Carlssonad2794c2008-11-16 21:51:21 +00001249 }
1250
1251 // FIXME: Handle more casts.
1252 return APValue();
1253 }
1254
1255 APValue VisitBinaryOperator(const BinaryOperator *E);
1256
Anders Carlssonf1bb2962008-11-16 20:27:53 +00001257};
1258} // end anonymous namespace
1259
1260static bool EvaluateComplexFloat(const Expr *E, APValue &Result, EvalInfo &Info)
1261{
1262 Result = ComplexFloatExprEvaluator(Info).Visit(const_cast<Expr*>(E));
Daniel Dunbarf8abb942009-01-24 19:08:01 +00001263 if (Result.isComplexFloat())
1264 assert(&Result.getComplexFloatReal().getSemantics() ==
1265 &Result.getComplexFloatImag().getSemantics() &&
1266 "Invalid complex evaluation.");
Anders Carlssonf1bb2962008-11-16 20:27:53 +00001267 return Result.isComplexFloat();
1268}
1269
Anders Carlssonad2794c2008-11-16 21:51:21 +00001270APValue ComplexFloatExprEvaluator::VisitBinaryOperator(const BinaryOperator *E)
1271{
1272 APValue Result, RHS;
1273
1274 if (!EvaluateComplexFloat(E->getLHS(), Result, Info))
1275 return APValue();
1276
1277 if (!EvaluateComplexFloat(E->getRHS(), RHS, Info))
1278 return APValue();
1279
1280 switch (E->getOpcode()) {
1281 default: return APValue();
1282 case BinaryOperator::Add:
1283 Result.getComplexFloatReal().add(RHS.getComplexFloatReal(),
1284 APFloat::rmNearestTiesToEven);
1285 Result.getComplexFloatImag().add(RHS.getComplexFloatImag(),
1286 APFloat::rmNearestTiesToEven);
1287 case BinaryOperator::Sub:
1288 Result.getComplexFloatReal().subtract(RHS.getComplexFloatReal(),
1289 APFloat::rmNearestTiesToEven);
1290 Result.getComplexFloatImag().subtract(RHS.getComplexFloatImag(),
1291 APFloat::rmNearestTiesToEven);
1292 }
1293
1294 return Result;
1295}
1296
Anders Carlssonf1bb2962008-11-16 20:27:53 +00001297//===----------------------------------------------------------------------===//
Chris Lattneref069662008-11-16 21:24:15 +00001298// Top level Expr::Evaluate method.
Chris Lattnera823ccf2008-07-11 18:11:29 +00001299//===----------------------------------------------------------------------===//
1300
Chris Lattneref069662008-11-16 21:24:15 +00001301/// Evaluate - Return true if this is a constant which we can fold using
Chris Lattner87293782008-10-06 05:28:25 +00001302/// any crazy technique (that has nothing to do with language standards) that
1303/// we want to. If this function returns true, it returns the folded constant
1304/// in Result.
Anders Carlsson7f5a96e2008-11-30 16:58:53 +00001305bool Expr::Evaluate(EvalResult &Result, ASTContext &Ctx) const {
1306 EvalInfo Info(Ctx, Result);
Anders Carlssondd8d41f2008-11-30 16:38:33 +00001307
Nate Begemand6d2f772009-01-18 03:20:47 +00001308 if (getType()->isVectorType()) {
1309 if (!EvaluateVector(this, Result.Val, Info))
1310 return false;
1311 } else if (getType()->isIntegerType()) {
Eli Friedman2f445492008-08-22 00:06:13 +00001312 llvm::APSInt sInt(32);
Anders Carlssonb96c2062008-11-22 21:50:49 +00001313 if (!EvaluateInteger(this, sInt, Info))
1314 return false;
1315
Anders Carlsson7f5a96e2008-11-30 16:58:53 +00001316 Result.Val = APValue(sInt);
Eli Friedman2f445492008-08-22 00:06:13 +00001317 } else if (getType()->isPointerType()) {
Anders Carlsson7f5a96e2008-11-30 16:58:53 +00001318 if (!EvaluatePointer(this, Result.Val, Info))
Anders Carlssonb96c2062008-11-22 21:50:49 +00001319 return false;
Eli Friedman2f445492008-08-22 00:06:13 +00001320 } else if (getType()->isRealFloatingType()) {
1321 llvm::APFloat f(0.0);
Anders Carlssonb96c2062008-11-22 21:50:49 +00001322 if (!EvaluateFloat(this, f, Info))
1323 return false;
1324
Anders Carlsson7f5a96e2008-11-30 16:58:53 +00001325 Result.Val = APValue(f);
Anders Carlssonf1bb2962008-11-16 20:27:53 +00001326 } else if (getType()->isComplexType()) {
Anders Carlsson7f5a96e2008-11-30 16:58:53 +00001327 if (!EvaluateComplexFloat(this, Result.Val, Info))
Anders Carlssonb96c2062008-11-22 21:50:49 +00001328 return false;
Anders Carlssoncb6a2e82008-11-22 22:56:32 +00001329 } else
1330 return false;
Anders Carlssonb96c2062008-11-22 21:50:49 +00001331
Anders Carlsson7f5a96e2008-11-30 16:58:53 +00001332 return true;
1333}
1334
Chris Lattneref069662008-11-16 21:24:15 +00001335/// isEvaluatable - Call Evaluate to see if this expression can be constant
Chris Lattner2d9a3f62008-10-06 06:49:02 +00001336/// folded, but discard the result.
1337bool Expr::isEvaluatable(ASTContext &Ctx) const {
Anders Carlsson197f6f72008-12-01 06:44:05 +00001338 EvalResult Result;
1339 return Evaluate(Result, Ctx) && !Result.HasSideEffects;
Chris Lattner2d9a3f62008-10-06 06:49:02 +00001340}
Anders Carlssone8bd9f22008-11-22 21:04:56 +00001341
1342APSInt Expr::EvaluateAsInt(ASTContext &Ctx) const {
Anders Carlsson8c3de802008-12-19 20:58:05 +00001343 EvalResult EvalResult;
1344 bool Result = Evaluate(EvalResult, Ctx);
Daniel Dunbarddebeca2009-01-15 18:32:35 +00001345 Result = Result;
Anders Carlssone8bd9f22008-11-22 21:04:56 +00001346 assert(Result && "Could not evaluate expression");
Anders Carlsson8c3de802008-12-19 20:58:05 +00001347 assert(EvalResult.Val.isInt() && "Expression did not evaluate to integer");
Anders Carlssone8bd9f22008-11-22 21:04:56 +00001348
Anders Carlsson8c3de802008-12-19 20:58:05 +00001349 return EvalResult.Val.getInt();
Anders Carlssone8bd9f22008-11-22 21:04:56 +00001350}