blob: 6fba884028da3a3d180244119b8a9b0676a920ee [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
42 /// isEvaluated - True if the subexpression is required to be evaluated, false
43 /// if it is short-circuited (according to C rules).
44 bool isEvaluated;
45
Chris Lattner82437da2008-07-12 00:14:42 +000046 /// ICEDiag - If the expression is unfoldable, then ICEDiag contains the
47 /// error diagnostic indicating why it is not foldable and DiagLoc indicates a
48 /// caret position for the error. If it is foldable, but the expression is
49 /// not an integer constant expression, ICEDiag contains the extension
50 /// diagnostic to emit which describes why it isn't an integer constant
51 /// expression. If this expression *is* an integer-constant-expr, then
52 /// ICEDiag is zero.
Chris Lattner422373c2008-07-11 22:52:41 +000053 ///
Chris Lattner82437da2008-07-12 00:14:42 +000054 /// The caller can choose to emit this diagnostic or not, depending on whether
55 /// they require an i-c-e or a constant or not. DiagLoc indicates the caret
56 /// position for the report.
57 ///
58 /// If ICEDiag is zero, then this expression is an i-c-e.
Chris Lattner422373c2008-07-11 22:52:41 +000059 unsigned ICEDiag;
60 SourceLocation DiagLoc;
61
62 EvalInfo(ASTContext &ctx) : Ctx(ctx), isEvaluated(true), ICEDiag(0) {}
63};
64
65
Eli Friedman7888b932008-11-12 09:44:48 +000066static bool EvaluateLValue(const Expr *E, APValue &Result, EvalInfo &Info);
Chris Lattner422373c2008-07-11 22:52:41 +000067static bool EvaluatePointer(const Expr *E, APValue &Result, EvalInfo &Info);
68static bool EvaluateInteger(const Expr *E, APSInt &Result, EvalInfo &Info);
Eli Friedman2f445492008-08-22 00:06:13 +000069static bool EvaluateFloat(const Expr *E, APFloat &Result, EvalInfo &Info);
Anders Carlssonf1bb2962008-11-16 20:27:53 +000070static bool EvaluateComplexFloat(const Expr *E, APValue &Result,
71 EvalInfo &Info);
Chris Lattnera823ccf2008-07-11 18:11:29 +000072
73//===----------------------------------------------------------------------===//
Eli Friedman7888b932008-11-12 09:44:48 +000074// Misc utilities
75//===----------------------------------------------------------------------===//
76
77static bool HandleConversionToBool(Expr* E, bool& Result, EvalInfo &Info) {
78 if (E->getType()->isIntegralType()) {
79 APSInt IntResult;
80 if (!EvaluateInteger(E, IntResult, Info))
81 return false;
82 Result = IntResult != 0;
83 return true;
84 } else if (E->getType()->isRealFloatingType()) {
85 APFloat FloatResult(0.0);
86 if (!EvaluateFloat(E, FloatResult, Info))
87 return false;
88 Result = !FloatResult.isZero();
89 return true;
90 } else if (E->getType()->isPointerType()) {
91 APValue PointerResult;
92 if (!EvaluatePointer(E, PointerResult, Info))
93 return false;
94 // FIXME: Is this accurate for all kinds of bases? If not, what would
95 // the check look like?
96 Result = PointerResult.getLValueBase() || PointerResult.getLValueOffset();
97 return true;
98 }
99
100 return false;
101}
102
103//===----------------------------------------------------------------------===//
104// LValue Evaluation
105//===----------------------------------------------------------------------===//
106namespace {
107class VISIBILITY_HIDDEN LValueExprEvaluator
108 : public StmtVisitor<LValueExprEvaluator, APValue> {
109 EvalInfo &Info;
110public:
111
112 LValueExprEvaluator(EvalInfo &info) : Info(info) {}
113
114 APValue VisitStmt(Stmt *S) {
Daniel Dunbarff59ed82008-11-12 21:52:46 +0000115#if 0
Eli Friedman7888b932008-11-12 09:44:48 +0000116 // FIXME: Remove this when we support more expressions.
117 printf("Unhandled pointer statement\n");
118 S->dump();
Daniel Dunbarff59ed82008-11-12 21:52:46 +0000119#endif
Eli Friedman7888b932008-11-12 09:44:48 +0000120 return APValue();
121 }
122
123 APValue VisitParenExpr(ParenExpr *E) { return Visit(E->getSubExpr()); }
124 APValue VisitDeclRefExpr(DeclRefExpr *E) { return APValue(E, 0); }
125 APValue VisitPredefinedExpr(PredefinedExpr *E) { return APValue(E, 0); }
126 APValue VisitCompoundLiteralExpr(CompoundLiteralExpr *E);
127 APValue VisitMemberExpr(MemberExpr *E);
128 APValue VisitStringLiteral(StringLiteral *E) { return APValue(E, 0); }
Anders Carlsson027f2882008-11-16 19:01:22 +0000129 APValue VisitArraySubscriptExpr(ArraySubscriptExpr *E);
Eli Friedman7888b932008-11-12 09:44:48 +0000130};
131} // end anonymous namespace
132
133static bool EvaluateLValue(const Expr* E, APValue& Result, EvalInfo &Info) {
134 Result = LValueExprEvaluator(Info).Visit(const_cast<Expr*>(E));
135 return Result.isLValue();
136}
137
138APValue LValueExprEvaluator::VisitCompoundLiteralExpr(CompoundLiteralExpr *E) {
139 if (E->isFileScope())
140 return APValue(E, 0);
141 return APValue();
142}
143
144APValue LValueExprEvaluator::VisitMemberExpr(MemberExpr *E) {
145 APValue result;
146 QualType Ty;
147 if (E->isArrow()) {
148 if (!EvaluatePointer(E->getBase(), result, Info))
149 return APValue();
150 Ty = E->getBase()->getType()->getAsPointerType()->getPointeeType();
151 } else {
152 result = Visit(E->getBase());
153 if (result.isUninit())
154 return APValue();
155 Ty = E->getBase()->getType();
156 }
157
158 RecordDecl *RD = Ty->getAsRecordType()->getDecl();
159 const ASTRecordLayout &RL = Info.Ctx.getASTRecordLayout(RD);
160 FieldDecl *FD = E->getMemberDecl();
161
162 // FIXME: This is linear time.
163 unsigned i = 0, e = 0;
164 for (i = 0, e = RD->getNumMembers(); i != e; i++) {
165 if (RD->getMember(i) == FD)
166 break;
167 }
168
169 result.setLValue(result.getLValueBase(),
170 result.getLValueOffset() + RL.getFieldOffset(i) / 8);
171
172 return result;
173}
174
Anders Carlsson027f2882008-11-16 19:01:22 +0000175APValue LValueExprEvaluator::VisitArraySubscriptExpr(ArraySubscriptExpr *E)
176{
177 APValue Result;
178
179 if (!EvaluatePointer(E->getBase(), Result, Info))
180 return APValue();
181
182 APSInt Index;
183 if (!EvaluateInteger(E->getIdx(), Index, Info))
184 return APValue();
185
186 uint64_t ElementSize = Info.Ctx.getTypeSize(E->getType()) / 8;
187
188 uint64_t Offset = Index.getSExtValue() * ElementSize;
189 Result.setLValue(Result.getLValueBase(),
190 Result.getLValueOffset() + Offset);
191 return Result;
192}
Eli Friedman7888b932008-11-12 09:44:48 +0000193
194//===----------------------------------------------------------------------===//
Chris Lattnera823ccf2008-07-11 18:11:29 +0000195// Pointer Evaluation
196//===----------------------------------------------------------------------===//
197
Anders Carlssoncad17b52008-07-08 05:13:58 +0000198namespace {
Anders Carlsson02a34c32008-07-08 14:30:00 +0000199class VISIBILITY_HIDDEN PointerExprEvaluator
200 : public StmtVisitor<PointerExprEvaluator, APValue> {
Chris Lattner422373c2008-07-11 22:52:41 +0000201 EvalInfo &Info;
Anders Carlsson02a34c32008-07-08 14:30:00 +0000202public:
Anders Carlsson02a34c32008-07-08 14:30:00 +0000203
Chris Lattner422373c2008-07-11 22:52:41 +0000204 PointerExprEvaluator(EvalInfo &info) : Info(info) {}
Chris Lattnera823ccf2008-07-11 18:11:29 +0000205
Anders Carlsson02a34c32008-07-08 14:30:00 +0000206 APValue VisitStmt(Stmt *S) {
Anders Carlsson02a34c32008-07-08 14:30:00 +0000207 return APValue();
208 }
209
210 APValue VisitParenExpr(ParenExpr *E) { return Visit(E->getSubExpr()); }
211
Anders Carlssonc43f44b2008-07-08 15:34:11 +0000212 APValue VisitBinaryOperator(const BinaryOperator *E);
213 APValue VisitCastExpr(const CastExpr* E);
Eli Friedman7888b932008-11-12 09:44:48 +0000214 APValue VisitUnaryOperator(const UnaryOperator *E);
215 APValue VisitObjCStringLiteral(ObjCStringLiteral *E)
216 { return APValue(E, 0); }
217 APValue VisitConditionalOperator(ConditionalOperator *E);
Anders Carlssonc43f44b2008-07-08 15:34:11 +0000218};
Chris Lattnera823ccf2008-07-11 18:11:29 +0000219} // end anonymous namespace
Anders Carlssonc43f44b2008-07-08 15:34:11 +0000220
Chris Lattner422373c2008-07-11 22:52:41 +0000221static bool EvaluatePointer(const Expr* E, APValue& Result, EvalInfo &Info) {
Chris Lattnera823ccf2008-07-11 18:11:29 +0000222 if (!E->getType()->isPointerType())
223 return false;
Chris Lattner422373c2008-07-11 22:52:41 +0000224 Result = PointerExprEvaluator(Info).Visit(const_cast<Expr*>(E));
Chris Lattnera823ccf2008-07-11 18:11:29 +0000225 return Result.isLValue();
226}
227
228APValue PointerExprEvaluator::VisitBinaryOperator(const BinaryOperator *E) {
229 if (E->getOpcode() != BinaryOperator::Add &&
230 E->getOpcode() != BinaryOperator::Sub)
231 return APValue();
232
233 const Expr *PExp = E->getLHS();
234 const Expr *IExp = E->getRHS();
235 if (IExp->getType()->isPointerType())
236 std::swap(PExp, IExp);
237
238 APValue ResultLValue;
Chris Lattner422373c2008-07-11 22:52:41 +0000239 if (!EvaluatePointer(PExp, ResultLValue, Info))
Chris Lattnera823ccf2008-07-11 18:11:29 +0000240 return APValue();
241
242 llvm::APSInt AdditionalOffset(32);
Chris Lattner422373c2008-07-11 22:52:41 +0000243 if (!EvaluateInteger(IExp, AdditionalOffset, Info))
Chris Lattnera823ccf2008-07-11 18:11:29 +0000244 return APValue();
245
Eli Friedman7888b932008-11-12 09:44:48 +0000246 QualType PointeeType = PExp->getType()->getAsPointerType()->getPointeeType();
247 uint64_t SizeOfPointee = Info.Ctx.getTypeSize(PointeeType) / 8;
248
Chris Lattnera823ccf2008-07-11 18:11:29 +0000249 uint64_t Offset = ResultLValue.getLValueOffset();
Eli Friedman7888b932008-11-12 09:44:48 +0000250
Chris Lattnera823ccf2008-07-11 18:11:29 +0000251 if (E->getOpcode() == BinaryOperator::Add)
Eli Friedman7888b932008-11-12 09:44:48 +0000252 Offset += AdditionalOffset.getLimitedValue() * SizeOfPointee;
Chris Lattnera823ccf2008-07-11 18:11:29 +0000253 else
Eli Friedman7888b932008-11-12 09:44:48 +0000254 Offset -= AdditionalOffset.getLimitedValue() * SizeOfPointee;
255
Chris Lattnera823ccf2008-07-11 18:11:29 +0000256 return APValue(ResultLValue.getLValueBase(), Offset);
257}
Eli Friedman7888b932008-11-12 09:44:48 +0000258
259APValue PointerExprEvaluator::VisitUnaryOperator(const UnaryOperator *E) {
260 if (E->getOpcode() == UnaryOperator::Extension) {
261 // FIXME: Deal with warnings?
262 return Visit(E->getSubExpr());
263 }
264
265 if (E->getOpcode() == UnaryOperator::AddrOf) {
266 APValue result;
267 if (EvaluateLValue(E->getSubExpr(), result, Info))
268 return result;
269 }
270
271 return APValue();
272}
Chris Lattnera823ccf2008-07-11 18:11:29 +0000273
274
Chris Lattnera42f09a2008-07-11 19:10:17 +0000275APValue PointerExprEvaluator::VisitCastExpr(const CastExpr* E) {
Chris Lattnera823ccf2008-07-11 18:11:29 +0000276 const Expr* SubExpr = E->getSubExpr();
277
278 // Check for pointer->pointer cast
279 if (SubExpr->getType()->isPointerType()) {
280 APValue Result;
Chris Lattner422373c2008-07-11 22:52:41 +0000281 if (EvaluatePointer(SubExpr, Result, Info))
Chris Lattnera823ccf2008-07-11 18:11:29 +0000282 return Result;
283 return APValue();
284 }
285
Eli Friedman3e64dd72008-07-27 05:46:18 +0000286 if (SubExpr->getType()->isIntegralType()) {
Chris Lattnera823ccf2008-07-11 18:11:29 +0000287 llvm::APSInt Result(32);
Chris Lattner422373c2008-07-11 22:52:41 +0000288 if (EvaluateInteger(SubExpr, Result, Info)) {
289 Result.extOrTrunc((unsigned)Info.Ctx.getTypeSize(E->getType()));
Chris Lattnera823ccf2008-07-11 18:11:29 +0000290 return APValue(0, Result.getZExtValue());
291 }
292 }
Eli Friedman7888b932008-11-12 09:44:48 +0000293
294 if (SubExpr->getType()->isFunctionType() ||
295 SubExpr->getType()->isArrayType()) {
296 APValue Result;
297 if (EvaluateLValue(SubExpr, Result, Info))
298 return Result;
299 return APValue();
300 }
301
302 //assert(0 && "Unhandled cast");
Chris Lattnera823ccf2008-07-11 18:11:29 +0000303 return APValue();
304}
305
Eli Friedman7888b932008-11-12 09:44:48 +0000306APValue PointerExprEvaluator::VisitConditionalOperator(ConditionalOperator *E) {
307 bool BoolResult;
308 if (!HandleConversionToBool(E->getCond(), BoolResult, Info))
309 return APValue();
310
311 Expr* EvalExpr = BoolResult ? E->getTrueExpr() : E->getFalseExpr();
312
313 APValue Result;
314 if (EvaluatePointer(EvalExpr, Result, Info))
315 return Result;
316 return APValue();
317}
Chris Lattnera823ccf2008-07-11 18:11:29 +0000318
319//===----------------------------------------------------------------------===//
320// Integer Evaluation
321//===----------------------------------------------------------------------===//
Chris Lattnera823ccf2008-07-11 18:11:29 +0000322
323namespace {
Anders Carlssoncad17b52008-07-08 05:13:58 +0000324class VISIBILITY_HIDDEN IntExprEvaluator
Chris Lattnera42f09a2008-07-11 19:10:17 +0000325 : public StmtVisitor<IntExprEvaluator, bool> {
Chris Lattner422373c2008-07-11 22:52:41 +0000326 EvalInfo &Info;
Chris Lattnera42f09a2008-07-11 19:10:17 +0000327 APSInt &Result;
Anders Carlssoncad17b52008-07-08 05:13:58 +0000328public:
Chris Lattner422373c2008-07-11 22:52:41 +0000329 IntExprEvaluator(EvalInfo &info, APSInt &result)
330 : Info(info), Result(result) {}
Chris Lattnera823ccf2008-07-11 18:11:29 +0000331
Chris Lattner2c99c712008-07-11 19:24:49 +0000332 unsigned getIntTypeSizeInBits(QualType T) const {
Chris Lattner82437da2008-07-12 00:14:42 +0000333 return (unsigned)Info.Ctx.getIntWidth(T);
334 }
335
336 bool Extension(SourceLocation L, diag::kind D) {
337 Info.DiagLoc = L;
338 Info.ICEDiag = D;
339 return true; // still a constant.
340 }
341
Chris Lattner438f3b12008-11-12 07:43:42 +0000342 bool Error(SourceLocation L, diag::kind D, QualType ExprTy) {
Chris Lattner82437da2008-07-12 00:14:42 +0000343 // If this is in an unevaluated portion of the subexpression, ignore the
344 // error.
Chris Lattner438f3b12008-11-12 07:43:42 +0000345 if (!Info.isEvaluated) {
346 // If error is ignored because the value isn't evaluated, get the real
347 // type at least to prevent errors downstream.
348 Result.zextOrTrunc(getIntTypeSizeInBits(ExprTy));
349 Result.setIsUnsigned(ExprTy->isUnsignedIntegerType());
Chris Lattner82437da2008-07-12 00:14:42 +0000350 return true;
Chris Lattner438f3b12008-11-12 07:43:42 +0000351 }
Chris Lattner82437da2008-07-12 00:14:42 +0000352
Chris Lattner438f3b12008-11-12 07:43:42 +0000353 // Take the first error.
354 if (Info.ICEDiag == 0) {
355 Info.DiagLoc = L;
356 Info.ICEDiag = D;
357 }
Chris Lattner82437da2008-07-12 00:14:42 +0000358 return false;
Chris Lattner2c99c712008-07-11 19:24:49 +0000359 }
360
Anders Carlssoncad17b52008-07-08 05:13:58 +0000361 //===--------------------------------------------------------------------===//
362 // Visitor Methods
363 //===--------------------------------------------------------------------===//
Chris Lattner438f3b12008-11-12 07:43:42 +0000364
365 bool VisitStmt(Stmt *) {
366 assert(0 && "This should be called on integers, stmts are not integers");
367 return false;
368 }
Chris Lattner2c99c712008-07-11 19:24:49 +0000369
Chris Lattner438f3b12008-11-12 07:43:42 +0000370 bool VisitExpr(Expr *E) {
371 return Error(E->getLocStart(), diag::err_expr_not_constant, E->getType());
Anders Carlssoncad17b52008-07-08 05:13:58 +0000372 }
373
Chris Lattnera42f09a2008-07-11 19:10:17 +0000374 bool VisitParenExpr(ParenExpr *E) { return Visit(E->getSubExpr()); }
Anders Carlssoncad17b52008-07-08 05:13:58 +0000375
Chris Lattner15e59112008-07-12 00:38:25 +0000376 bool VisitIntegerLiteral(const IntegerLiteral *E) {
377 Result = E->getValue();
378 Result.setIsUnsigned(E->getType()->isUnsignedIntegerType());
379 return true;
380 }
381 bool VisitCharacterLiteral(const CharacterLiteral *E) {
382 Result.zextOrTrunc(getIntTypeSizeInBits(E->getType()));
383 Result = E->getValue();
384 Result.setIsUnsigned(E->getType()->isUnsignedIntegerType());
385 return true;
386 }
387 bool VisitTypesCompatibleExpr(const TypesCompatibleExpr *E) {
388 Result.zextOrTrunc(getIntTypeSizeInBits(E->getType()));
Daniel Dunbarda8ebd22008-10-24 08:07:57 +0000389 // Per gcc docs "this built-in function ignores top level
390 // qualifiers". We need to use the canonical version to properly
391 // be able to strip CRV qualifiers from the type.
392 QualType T0 = Info.Ctx.getCanonicalType(E->getArgType1());
393 QualType T1 = Info.Ctx.getCanonicalType(E->getArgType2());
394 Result = Info.Ctx.typesAreCompatible(T0.getUnqualifiedType(),
395 T1.getUnqualifiedType());
Chris Lattner15e59112008-07-12 00:38:25 +0000396 return true;
397 }
398 bool VisitDeclRefExpr(const DeclRefExpr *E);
399 bool VisitCallExpr(const CallExpr *E);
Chris Lattnera42f09a2008-07-11 19:10:17 +0000400 bool VisitBinaryOperator(const BinaryOperator *E);
401 bool VisitUnaryOperator(const UnaryOperator *E);
Nuno Lopeseb35c0e2008-11-16 19:28:31 +0000402 bool VisitConditionalOperator(const ConditionalOperator *E);
Anders Carlssonc0328012008-07-08 05:49:43 +0000403
Chris Lattnerff579ff2008-07-12 01:15:53 +0000404 bool VisitCastExpr(CastExpr* E) {
Chris Lattnerff579ff2008-07-12 01:15:53 +0000405 return HandleCast(E->getLocStart(), E->getSubExpr(), E->getType());
Anders Carlssonc43f44b2008-07-08 15:34:11 +0000406 }
Sebastian Redl0cb7c872008-11-11 17:56:53 +0000407 bool VisitSizeOfAlignOfExpr(const SizeOfAlignOfExpr *E);
408
Anders Carlsson027f2882008-11-16 19:01:22 +0000409 bool VisitCXXBoolLiteralExpr(const CXXBoolLiteralExpr *E) {
Anders Carlsson02bb9c32008-11-16 22:46:56 +0000410 Result.zextOrTrunc(getIntTypeSizeInBits(E->getType()));
Anders Carlsson027f2882008-11-16 19:01:22 +0000411 Result = E->getValue();
412 Result.setIsUnsigned(E->getType()->isUnsignedIntegerType());
413 return true;
414 }
415
416 bool VisitCXXZeroInitValueExpr(const CXXZeroInitValueExpr *E) {
417 Result = APSInt::getNullValue(getIntTypeSizeInBits(E->getType()));
418 Result.setIsUnsigned(E->getType()->isUnsignedIntegerType());
419 return true;
420 }
421
Chris Lattner265a0892008-07-11 21:24:13 +0000422private:
Chris Lattnerff579ff2008-07-12 01:15:53 +0000423 bool HandleCast(SourceLocation CastLoc, Expr *SubExpr, QualType DestType);
Anders Carlssond1aa5812008-07-08 14:35:21 +0000424};
Chris Lattnera823ccf2008-07-11 18:11:29 +0000425} // end anonymous namespace
Anders Carlssonc43f44b2008-07-08 15:34:11 +0000426
Chris Lattner422373c2008-07-11 22:52:41 +0000427static bool EvaluateInteger(const Expr* E, APSInt &Result, EvalInfo &Info) {
428 return IntExprEvaluator(Info, Result).Visit(const_cast<Expr*>(E));
Anders Carlssonc43f44b2008-07-08 15:34:11 +0000429}
Anders Carlssonc43f44b2008-07-08 15:34:11 +0000430
Chris Lattner15e59112008-07-12 00:38:25 +0000431bool IntExprEvaluator::VisitDeclRefExpr(const DeclRefExpr *E) {
432 // Enums are integer constant exprs.
433 if (const EnumConstantDecl *D = dyn_cast<EnumConstantDecl>(E->getDecl())) {
434 Result = D->getInitVal();
435 return true;
436 }
437
438 // Otherwise, random variable references are not constants.
Chris Lattner438f3b12008-11-12 07:43:42 +0000439 return Error(E->getLocStart(), diag::err_expr_not_constant, E->getType());
Chris Lattner15e59112008-07-12 00:38:25 +0000440}
441
Chris Lattner1eee9402008-10-06 06:40:35 +0000442/// EvaluateBuiltinClassifyType - Evaluate __builtin_classify_type the same way
443/// as GCC.
444static int EvaluateBuiltinClassifyType(const CallExpr *E) {
445 // The following enum mimics the values returned by GCC.
446 enum gcc_type_class {
447 no_type_class = -1,
448 void_type_class, integer_type_class, char_type_class,
449 enumeral_type_class, boolean_type_class,
450 pointer_type_class, reference_type_class, offset_type_class,
451 real_type_class, complex_type_class,
452 function_type_class, method_type_class,
453 record_type_class, union_type_class,
454 array_type_class, string_type_class,
455 lang_type_class
456 };
457
458 // If no argument was supplied, default to "no_type_class". This isn't
459 // ideal, however it is what gcc does.
460 if (E->getNumArgs() == 0)
461 return no_type_class;
462
463 QualType ArgTy = E->getArg(0)->getType();
464 if (ArgTy->isVoidType())
465 return void_type_class;
466 else if (ArgTy->isEnumeralType())
467 return enumeral_type_class;
468 else if (ArgTy->isBooleanType())
469 return boolean_type_class;
470 else if (ArgTy->isCharType())
471 return string_type_class; // gcc doesn't appear to use char_type_class
472 else if (ArgTy->isIntegerType())
473 return integer_type_class;
474 else if (ArgTy->isPointerType())
475 return pointer_type_class;
476 else if (ArgTy->isReferenceType())
477 return reference_type_class;
478 else if (ArgTy->isRealType())
479 return real_type_class;
480 else if (ArgTy->isComplexType())
481 return complex_type_class;
482 else if (ArgTy->isFunctionType())
483 return function_type_class;
484 else if (ArgTy->isStructureType())
485 return record_type_class;
486 else if (ArgTy->isUnionType())
487 return union_type_class;
488 else if (ArgTy->isArrayType())
489 return array_type_class;
490 else if (ArgTy->isUnionType())
491 return union_type_class;
492 else // FIXME: offset_type_class, method_type_class, & lang_type_class?
493 assert(0 && "CallExpr::isBuiltinClassifyType(): unimplemented type");
494 return -1;
495}
496
Chris Lattner15e59112008-07-12 00:38:25 +0000497bool IntExprEvaluator::VisitCallExpr(const CallExpr *E) {
498 Result.zextOrTrunc(getIntTypeSizeInBits(E->getType()));
Chris Lattner15e59112008-07-12 00:38:25 +0000499
Chris Lattner87293782008-10-06 05:28:25 +0000500 switch (E->isBuiltinCall()) {
501 default:
Chris Lattner438f3b12008-11-12 07:43:42 +0000502 return Error(E->getLocStart(), diag::err_expr_not_constant, E->getType());
Chris Lattner87293782008-10-06 05:28:25 +0000503 case Builtin::BI__builtin_classify_type:
Chris Lattner1eee9402008-10-06 06:40:35 +0000504 Result.setIsSigned(true);
505 Result = EvaluateBuiltinClassifyType(E);
Chris Lattner87293782008-10-06 05:28:25 +0000506 return true;
507
508 case Builtin::BI__builtin_constant_p: {
509 // __builtin_constant_p always has one operand: it returns true if that
510 // operand can be folded, false otherwise.
511 APValue Res;
Chris Lattneref069662008-11-16 21:24:15 +0000512 Result = E->getArg(0)->Evaluate(Res, Info.Ctx);
Chris Lattner87293782008-10-06 05:28:25 +0000513 return true;
514 }
515 }
Chris Lattner15e59112008-07-12 00:38:25 +0000516}
Anders Carlssonc43f44b2008-07-08 15:34:11 +0000517
Chris Lattnera42f09a2008-07-11 19:10:17 +0000518bool IntExprEvaluator::VisitBinaryOperator(const BinaryOperator *E) {
Eli Friedman14cc7542008-11-13 06:09:17 +0000519 if (E->getOpcode() == BinaryOperator::Comma) {
520 // Evaluate the side that actually matters; this needs to be
521 // handled specially because calling Visit() on the LHS can
522 // have strange results when it doesn't have an integral type.
Nuno Lopesd88cb9c2008-11-16 20:09:07 +0000523 if (Visit(E->getRHS()))
524 return true;
Eli Friedman14cc7542008-11-13 06:09:17 +0000525
526 // Check for isEvaluated; the idea is that this might eventually
527 // be useful for isICE and other similar uses that care about
528 // whether a comma is evaluated. This isn't really used yet, though,
529 // and I'm not sure it really works as intended.
530 if (!Info.isEvaluated)
Nuno Lopesd88cb9c2008-11-16 20:09:07 +0000531 return Extension(E->getOperatorLoc(), diag::ext_comma_in_constant_expr);
Eli Friedman14cc7542008-11-13 06:09:17 +0000532
Nuno Lopesd88cb9c2008-11-16 20:09:07 +0000533 return false;
Eli Friedman14cc7542008-11-13 06:09:17 +0000534 }
535
536 if (E->isLogicalOp()) {
537 // These need to be handled specially because the operands aren't
538 // necessarily integral
539 bool bres;
Anders Carlssonb96c2062008-11-22 21:50:49 +0000540 bool isEvaluated = true;
Anders Carlssone8bd9f22008-11-22 21:04:56 +0000541
542 if (HandleConversionToBool(E->getLHS(), bres, Info)) {
543 // We were able to evaluate the LHS, see if we can get away with not
544 // evaluating the RHS: 0 && X -> 0, 1 || X -> 1
545 } else {
Eli Friedman14cc7542008-11-13 06:09:17 +0000546 // We can't evaluate the LHS; however, sometimes the result
547 // is determined by the RHS: X && 0 -> 0, X || 1 -> 1.
Anders Carlssone8bd9f22008-11-22 21:04:56 +0000548 if (!HandleConversionToBool(E->getRHS(), bres, Info)) {
549 // We can't evaluate.
550 return false;
Eli Friedman14cc7542008-11-13 06:09:17 +0000551 }
Anders Carlssonb96c2062008-11-22 21:50:49 +0000552
553 // We did not evaluate the LHS
554 isEvaluated = false;
Anders Carlssone8bd9f22008-11-22 21:04:56 +0000555 }
Eli Friedman14cc7542008-11-13 06:09:17 +0000556
Anders Carlssone8bd9f22008-11-22 21:04:56 +0000557 if (bres == (E->getOpcode() == BinaryOperator::LOr) ||
558 !bres == (E->getOpcode() == BinaryOperator::LAnd)) {
559 Result.zextOrTrunc(getIntTypeSizeInBits(E->getType()));
560 Result.setIsUnsigned(E->getType()->isUnsignedIntegerType());
561 Result = bres;
Anders Carlssonb96c2062008-11-22 21:50:49 +0000562 Info.isEvaluated = isEvaluated;
563
Anders Carlssone8bd9f22008-11-22 21:04:56 +0000564 return true;
Eli Friedman14cc7542008-11-13 06:09:17 +0000565 }
566
567 bool bres2;
568 if (HandleConversionToBool(E->getRHS(), bres2, Info)) {
569 Result.zextOrTrunc(getIntTypeSizeInBits(E->getType()));
570 Result.setIsUnsigned(E->getType()->isUnsignedIntegerType());
571 if (E->getOpcode() == BinaryOperator::LOr)
572 Result = bres || bres2;
573 else
574 Result = bres && bres2;
575 return true;
576 }
577 return false;
578 }
579
Anders Carlssonebfa6ed2008-11-16 07:17:21 +0000580 QualType LHSTy = E->getLHS()->getType();
581 QualType RHSTy = E->getRHS()->getType();
582
583 if (LHSTy->isRealFloatingType() &&
584 RHSTy->isRealFloatingType()) {
585 APFloat RHS(0.0), LHS(0.0);
586
587 if (!EvaluateFloat(E->getRHS(), RHS, Info))
588 return false;
589
590 if (!EvaluateFloat(E->getLHS(), LHS, Info))
591 return false;
592
593 APFloat::cmpResult CR = LHS.compare(RHS);
Anders Carlsson02bb9c32008-11-16 22:46:56 +0000594
595 Result.zextOrTrunc(getIntTypeSizeInBits(E->getType()));
596
Anders Carlssonebfa6ed2008-11-16 07:17:21 +0000597 switch (E->getOpcode()) {
598 default:
599 assert(0 && "Invalid binary operator!");
600 case BinaryOperator::LT:
601 Result = CR == APFloat::cmpLessThan;
602 break;
603 case BinaryOperator::GT:
604 Result = CR == APFloat::cmpGreaterThan;
605 break;
606 case BinaryOperator::LE:
607 Result = CR == APFloat::cmpLessThan || CR == APFloat::cmpEqual;
608 break;
609 case BinaryOperator::GE:
610 Result = CR == APFloat::cmpGreaterThan || CR == APFloat::cmpEqual;
611 break;
612 case BinaryOperator::EQ:
613 Result = CR == APFloat::cmpEqual;
614 break;
615 case BinaryOperator::NE:
616 Result = CR == APFloat::cmpGreaterThan || CR == APFloat::cmpLessThan;
617 break;
618 }
619
Anders Carlssonebfa6ed2008-11-16 07:17:21 +0000620 Result.setIsUnsigned(E->getType()->isUnsignedIntegerType());
621 return true;
622 }
623
Anders Carlsson027f2882008-11-16 19:01:22 +0000624 if (E->getOpcode() == BinaryOperator::Sub) {
Anders Carlsson02bb9c32008-11-16 22:46:56 +0000625 if (LHSTy->isPointerType() && RHSTy->isPointerType()) {
Anders Carlsson027f2882008-11-16 19:01:22 +0000626 APValue LHSValue;
627 if (!EvaluatePointer(E->getLHS(), LHSValue, Info))
628 return false;
629
630 APValue RHSValue;
631 if (!EvaluatePointer(E->getRHS(), RHSValue, Info))
632 return false;
633
634 // FIXME: Is this correct? What if only one of the operands has a base?
635 if (LHSValue.getLValueBase() || RHSValue.getLValueBase())
636 return false;
637
638 const QualType Type = E->getLHS()->getType();
639 const QualType ElementType = Type->getAsPointerType()->getPointeeType();
640
641 uint64_t D = LHSValue.getLValueOffset() - RHSValue.getLValueOffset();
642 D /= Info.Ctx.getTypeSize(ElementType) / 8;
643
Anders Carlsson027f2882008-11-16 19:01:22 +0000644 Result.zextOrTrunc(getIntTypeSizeInBits(E->getType()));
Anders Carlsson02bb9c32008-11-16 22:46:56 +0000645 Result = D;
Anders Carlsson027f2882008-11-16 19:01:22 +0000646 Result.setIsUnsigned(E->getType()->isUnsignedIntegerType());
647
648 return true;
649 }
650 }
Anders Carlssonebfa6ed2008-11-16 07:17:21 +0000651 if (!LHSTy->isIntegralType() ||
652 !RHSTy->isIntegralType()) {
Eli Friedman14cc7542008-11-13 06:09:17 +0000653 // We can't continue from here for non-integral types, and they
654 // could potentially confuse the following operations.
655 // FIXME: Deal with EQ and friends.
656 return false;
657 }
658
Anders Carlssond1aa5812008-07-08 14:35:21 +0000659 // The LHS of a constant expr is always evaluated and needed.
Anders Carlssond1aa5812008-07-08 14:35:21 +0000660 llvm::APSInt RHS(32);
Chris Lattner40d2ae82008-11-12 07:04:29 +0000661 if (!Visit(E->getLHS())) {
Chris Lattner82437da2008-07-12 00:14:42 +0000662 return false; // error in subexpression.
Chris Lattner40d2ae82008-11-12 07:04:29 +0000663 }
Eli Friedman3e64dd72008-07-27 05:46:18 +0000664
Eli Friedman3e64dd72008-07-27 05:46:18 +0000665
666 // FIXME Maybe we want to succeed even where we can't evaluate the
667 // right side of LAnd/LOr?
668 // For example, see http://llvm.org/bugs/show_bug.cgi?id=2525
Chris Lattner82437da2008-07-12 00:14:42 +0000669 if (!EvaluateInteger(E->getRHS(), RHS, Info))
Chris Lattnera42f09a2008-07-11 19:10:17 +0000670 return false;
Eli Friedman14cc7542008-11-13 06:09:17 +0000671
Anders Carlssond1aa5812008-07-08 14:35:21 +0000672 switch (E->getOpcode()) {
Chris Lattner438f3b12008-11-12 07:43:42 +0000673 default:
674 return Error(E->getOperatorLoc(), diag::err_expr_not_constant,E->getType());
Chris Lattner82437da2008-07-12 00:14:42 +0000675 case BinaryOperator::Mul: Result *= RHS; return true;
676 case BinaryOperator::Add: Result += RHS; return true;
677 case BinaryOperator::Sub: Result -= RHS; return true;
678 case BinaryOperator::And: Result &= RHS; return true;
679 case BinaryOperator::Xor: Result ^= RHS; return true;
680 case BinaryOperator::Or: Result |= RHS; return true;
Chris Lattner400d7402008-07-11 22:15:16 +0000681 case BinaryOperator::Div:
Chris Lattner82437da2008-07-12 00:14:42 +0000682 if (RHS == 0)
Chris Lattner438f3b12008-11-12 07:43:42 +0000683 return Error(E->getOperatorLoc(), diag::err_expr_divide_by_zero,
684 E->getType());
Chris Lattner400d7402008-07-11 22:15:16 +0000685 Result /= RHS;
Chris Lattner438f3b12008-11-12 07:43:42 +0000686 break;
Chris Lattner400d7402008-07-11 22:15:16 +0000687 case BinaryOperator::Rem:
Chris Lattner82437da2008-07-12 00:14:42 +0000688 if (RHS == 0)
Chris Lattner438f3b12008-11-12 07:43:42 +0000689 return Error(E->getOperatorLoc(), diag::err_expr_divide_by_zero,
690 E->getType());
Chris Lattner400d7402008-07-11 22:15:16 +0000691 Result %= RHS;
Chris Lattner438f3b12008-11-12 07:43:42 +0000692 break;
Anders Carlssond1aa5812008-07-08 14:35:21 +0000693 case BinaryOperator::Shl:
Chris Lattner82437da2008-07-12 00:14:42 +0000694 // FIXME: Warn about out of range shift amounts!
Chris Lattnera42f09a2008-07-11 19:10:17 +0000695 Result <<= (unsigned)RHS.getLimitedValue(Result.getBitWidth()-1);
Anders Carlssond1aa5812008-07-08 14:35:21 +0000696 break;
697 case BinaryOperator::Shr:
Chris Lattnera42f09a2008-07-11 19:10:17 +0000698 Result >>= (unsigned)RHS.getLimitedValue(Result.getBitWidth()-1);
Anders Carlssond1aa5812008-07-08 14:35:21 +0000699 break;
Chris Lattnera42f09a2008-07-11 19:10:17 +0000700
Chris Lattner045502c2008-07-11 19:29:32 +0000701 case BinaryOperator::LT:
702 Result = Result < RHS;
703 Result.zextOrTrunc(getIntTypeSizeInBits(E->getType()));
704 break;
705 case BinaryOperator::GT:
706 Result = Result > RHS;
707 Result.zextOrTrunc(getIntTypeSizeInBits(E->getType()));
708 break;
709 case BinaryOperator::LE:
710 Result = Result <= RHS;
711 Result.zextOrTrunc(getIntTypeSizeInBits(E->getType()));
712 break;
713 case BinaryOperator::GE:
714 Result = Result >= RHS;
715 Result.zextOrTrunc(getIntTypeSizeInBits(E->getType()));
716 break;
717 case BinaryOperator::EQ:
718 Result = Result == RHS;
719 Result.zextOrTrunc(getIntTypeSizeInBits(E->getType()));
720 break;
721 case BinaryOperator::NE:
722 Result = Result != RHS;
723 Result.zextOrTrunc(getIntTypeSizeInBits(E->getType()));
724 break;
Chris Lattner82437da2008-07-12 00:14:42 +0000725 case BinaryOperator::LAnd:
726 Result = Result != 0 && RHS != 0;
727 Result.zextOrTrunc(getIntTypeSizeInBits(E->getType()));
728 break;
729 case BinaryOperator::LOr:
730 Result = Result != 0 || RHS != 0;
731 Result.zextOrTrunc(getIntTypeSizeInBits(E->getType()));
732 break;
Eli Friedmanb2935ab2008-11-13 02:13:11 +0000733 }
Anders Carlssond1aa5812008-07-08 14:35:21 +0000734
735 Result.setIsUnsigned(E->getType()->isUnsignedIntegerType());
Chris Lattnera42f09a2008-07-11 19:10:17 +0000736 return true;
Anders Carlssond1aa5812008-07-08 14:35:21 +0000737}
738
Nuno Lopeseb35c0e2008-11-16 19:28:31 +0000739bool IntExprEvaluator::VisitConditionalOperator(const ConditionalOperator *E) {
Nuno Lopes308de752008-11-16 22:06:39 +0000740 bool Cond;
741 if (!HandleConversionToBool(E->getCond(), Cond, Info))
Nuno Lopeseb35c0e2008-11-16 19:28:31 +0000742 return false;
743
Nuno Lopes308de752008-11-16 22:06:39 +0000744 return Visit(Cond ? E->getTrueExpr() : E->getFalseExpr());
Nuno Lopeseb35c0e2008-11-16 19:28:31 +0000745}
746
Sebastian Redl0cb7c872008-11-11 17:56:53 +0000747/// VisitSizeAlignOfExpr - Evaluate a sizeof or alignof with a result as the
748/// expression's type.
749bool IntExprEvaluator::VisitSizeOfAlignOfExpr(const SizeOfAlignOfExpr *E) {
750 QualType DstTy = E->getType();
Chris Lattner265a0892008-07-11 21:24:13 +0000751 // Return the result in the right width.
752 Result.zextOrTrunc(getIntTypeSizeInBits(DstTy));
753 Result.setIsUnsigned(DstTy->isUnsignedIntegerType());
754
Sebastian Redl0cb7c872008-11-11 17:56:53 +0000755 QualType SrcTy = E->getTypeOfArgument();
756
Chris Lattner265a0892008-07-11 21:24:13 +0000757 // sizeof(void) and __alignof__(void) = 1 as a gcc extension.
Eli Friedman7888b932008-11-12 09:44:48 +0000758 if (SrcTy->isVoidType()) {
Chris Lattner265a0892008-07-11 21:24:13 +0000759 Result = 1;
Eli Friedman7888b932008-11-12 09:44:48 +0000760 return true;
761 }
Chris Lattner265a0892008-07-11 21:24:13 +0000762
763 // sizeof(vla) is not a constantexpr: C99 6.5.3.4p2.
Eli Friedman7888b932008-11-12 09:44:48 +0000764 // FIXME: But alignof(vla) is!
Chris Lattner265a0892008-07-11 21:24:13 +0000765 if (!SrcTy->isConstantSizeType()) {
766 // FIXME: Should we attempt to evaluate this?
767 return false;
768 }
Sebastian Redl0cb7c872008-11-11 17:56:53 +0000769
770 bool isSizeOf = E->isSizeOf();
Chris Lattner265a0892008-07-11 21:24:13 +0000771
772 // GCC extension: sizeof(function) = 1.
773 if (SrcTy->isFunctionType()) {
774 // FIXME: AlignOf shouldn't be unconditionally 4!
775 Result = isSizeOf ? 1 : 4;
776 return true;
777 }
778
779 // Get information about the size or align.
Chris Lattner422373c2008-07-11 22:52:41 +0000780 unsigned CharSize = Info.Ctx.Target.getCharWidth();
Chris Lattner265a0892008-07-11 21:24:13 +0000781 if (isSizeOf)
Eli Friedman7888b932008-11-12 09:44:48 +0000782 Result = Info.Ctx.getTypeSize(SrcTy) / CharSize;
Chris Lattner265a0892008-07-11 21:24:13 +0000783 else
Chris Lattner422373c2008-07-11 22:52:41 +0000784 Result = Info.Ctx.getTypeAlign(SrcTy) / CharSize;
Chris Lattner265a0892008-07-11 21:24:13 +0000785 return true;
786}
787
Chris Lattnera42f09a2008-07-11 19:10:17 +0000788bool IntExprEvaluator::VisitUnaryOperator(const UnaryOperator *E) {
Chris Lattner15e59112008-07-12 00:38:25 +0000789 // Special case unary operators that do not need their subexpression
790 // evaluated. offsetof/sizeof/alignof are all special.
Chris Lattner400d7402008-07-11 22:15:16 +0000791 if (E->isOffsetOfOp()) {
Chris Lattner15e59112008-07-12 00:38:25 +0000792 Result.zextOrTrunc(getIntTypeSizeInBits(E->getType()));
Chris Lattner422373c2008-07-11 22:52:41 +0000793 Result = E->evaluateOffsetOf(Info.Ctx);
Chris Lattner400d7402008-07-11 22:15:16 +0000794 Result.setIsUnsigned(E->getType()->isUnsignedIntegerType());
795 return true;
796 }
Eli Friedman14cc7542008-11-13 06:09:17 +0000797
798 if (E->getOpcode() == UnaryOperator::LNot) {
799 // LNot's operand isn't necessarily an integer, so we handle it specially.
800 bool bres;
801 if (!HandleConversionToBool(E->getSubExpr(), bres, Info))
802 return false;
803 Result.zextOrTrunc(getIntTypeSizeInBits(E->getType()));
804 Result.setIsUnsigned(E->getType()->isUnsignedIntegerType());
805 Result = !bres;
806 return true;
807 }
808
Chris Lattner422373c2008-07-11 22:52:41 +0000809 // Get the operand value into 'Result'.
810 if (!Visit(E->getSubExpr()))
Chris Lattner400d7402008-07-11 22:15:16 +0000811 return false;
Anders Carlssond1aa5812008-07-08 14:35:21 +0000812
Chris Lattner400d7402008-07-11 22:15:16 +0000813 switch (E->getOpcode()) {
Chris Lattner15e59112008-07-12 00:38:25 +0000814 default:
Chris Lattner400d7402008-07-11 22:15:16 +0000815 // Address, indirect, pre/post inc/dec, etc are not valid constant exprs.
816 // See C99 6.6p3.
Chris Lattner438f3b12008-11-12 07:43:42 +0000817 return Error(E->getOperatorLoc(), diag::err_expr_not_constant,
818 E->getType());
Chris Lattner400d7402008-07-11 22:15:16 +0000819 case UnaryOperator::Extension:
Chris Lattner15e59112008-07-12 00:38:25 +0000820 // FIXME: Should extension allow i-c-e extension expressions in its scope?
821 // If so, we could clear the diagnostic ID.
Chris Lattner400d7402008-07-11 22:15:16 +0000822 case UnaryOperator::Plus:
Chris Lattner15e59112008-07-12 00:38:25 +0000823 // The result is always just the subexpr.
Chris Lattner400d7402008-07-11 22:15:16 +0000824 break;
825 case UnaryOperator::Minus:
826 Result = -Result;
827 break;
828 case UnaryOperator::Not:
829 Result = ~Result;
830 break;
Anders Carlssond1aa5812008-07-08 14:35:21 +0000831 }
832
833 Result.setIsUnsigned(E->getType()->isUnsignedIntegerType());
Chris Lattnera42f09a2008-07-11 19:10:17 +0000834 return true;
Anders Carlssond1aa5812008-07-08 14:35:21 +0000835}
836
Chris Lattnerff579ff2008-07-12 01:15:53 +0000837/// HandleCast - This is used to evaluate implicit or explicit casts where the
838/// result type is integer.
839bool IntExprEvaluator::HandleCast(SourceLocation CastLoc,
840 Expr *SubExpr, QualType DestType) {
Chris Lattner2c99c712008-07-11 19:24:49 +0000841 unsigned DestWidth = getIntTypeSizeInBits(DestType);
Anders Carlssond1aa5812008-07-08 14:35:21 +0000842
Eli Friedman7888b932008-11-12 09:44:48 +0000843 if (DestType->isBooleanType()) {
844 bool BoolResult;
845 if (!HandleConversionToBool(SubExpr, BoolResult, Info))
846 return false;
847 Result.zextOrTrunc(DestWidth);
848 Result.setIsUnsigned(DestType->isUnsignedIntegerType());
849 Result = BoolResult;
850 return true;
851 }
852
Anders Carlssond1aa5812008-07-08 14:35:21 +0000853 // Handle simple integer->integer casts.
Eli Friedman14cc7542008-11-13 06:09:17 +0000854 if (SubExpr->getType()->isIntegralType()) {
Chris Lattnerff579ff2008-07-12 01:15:53 +0000855 if (!Visit(SubExpr))
Chris Lattnera42f09a2008-07-11 19:10:17 +0000856 return false;
Anders Carlssond1aa5812008-07-08 14:35:21 +0000857
858 // Figure out if this is a truncate, extend or noop cast.
859 // If the input is signed, do a sign extend, noop, or truncate.
Eli Friedman7888b932008-11-12 09:44:48 +0000860 Result.extOrTrunc(DestWidth);
Chris Lattnerff579ff2008-07-12 01:15:53 +0000861 Result.setIsUnsigned(DestType->isUnsignedIntegerType());
862 return true;
863 }
864
865 // FIXME: Clean this up!
866 if (SubExpr->getType()->isPointerType()) {
Anders Carlssond1aa5812008-07-08 14:35:21 +0000867 APValue LV;
Chris Lattner422373c2008-07-11 22:52:41 +0000868 if (!EvaluatePointer(SubExpr, LV, Info))
Chris Lattnera42f09a2008-07-11 19:10:17 +0000869 return false;
Eli Friedman7888b932008-11-12 09:44:48 +0000870
Anders Carlssond1aa5812008-07-08 14:35:21 +0000871 if (LV.getLValueBase())
Chris Lattnera42f09a2008-07-11 19:10:17 +0000872 return false;
Eli Friedman7888b932008-11-12 09:44:48 +0000873
Anders Carlsson8ab15c82008-07-08 16:49:00 +0000874 Result.extOrTrunc(DestWidth);
875 Result = LV.getLValueOffset();
Chris Lattnerff579ff2008-07-12 01:15:53 +0000876 Result.setIsUnsigned(DestType->isUnsignedIntegerType());
877 return true;
Anders Carlsson02a34c32008-07-08 14:30:00 +0000878 }
Eli Friedman7888b932008-11-12 09:44:48 +0000879
Chris Lattnerff579ff2008-07-12 01:15:53 +0000880 if (!SubExpr->getType()->isRealFloatingType())
Chris Lattner438f3b12008-11-12 07:43:42 +0000881 return Error(CastLoc, diag::err_expr_not_constant, DestType);
Chris Lattnerff579ff2008-07-12 01:15:53 +0000882
Eli Friedman2f445492008-08-22 00:06:13 +0000883 APFloat F(0.0);
884 if (!EvaluateFloat(SubExpr, F, Info))
Chris Lattner438f3b12008-11-12 07:43:42 +0000885 return Error(CastLoc, diag::err_expr_not_constant, DestType);
Chris Lattnerff579ff2008-07-12 01:15:53 +0000886
887 // Determine whether we are converting to unsigned or signed.
888 bool DestSigned = DestType->isSignedIntegerType();
889
890 // FIXME: Warning for overflow.
Dale Johannesen2461f612008-10-09 23:02:32 +0000891 uint64_t Space[4];
892 bool ignored;
Eli Friedman2f445492008-08-22 00:06:13 +0000893 (void)F.convertToInteger(Space, DestWidth, DestSigned,
Dale Johannesen2461f612008-10-09 23:02:32 +0000894 llvm::APFloat::rmTowardZero, &ignored);
Chris Lattnerff579ff2008-07-12 01:15:53 +0000895 Result = llvm::APInt(DestWidth, 4, Space);
896 Result.setIsUnsigned(!DestSigned);
Chris Lattnera42f09a2008-07-11 19:10:17 +0000897 return true;
Anders Carlssond1aa5812008-07-08 14:35:21 +0000898}
Anders Carlsson02a34c32008-07-08 14:30:00 +0000899
Chris Lattnera823ccf2008-07-11 18:11:29 +0000900//===----------------------------------------------------------------------===//
Eli Friedman2f445492008-08-22 00:06:13 +0000901// Float Evaluation
902//===----------------------------------------------------------------------===//
903
904namespace {
905class VISIBILITY_HIDDEN FloatExprEvaluator
906 : public StmtVisitor<FloatExprEvaluator, bool> {
907 EvalInfo &Info;
908 APFloat &Result;
909public:
910 FloatExprEvaluator(EvalInfo &info, APFloat &result)
911 : Info(info), Result(result) {}
912
913 bool VisitStmt(Stmt *S) {
914 return false;
915 }
916
917 bool VisitParenExpr(ParenExpr *E) { return Visit(E->getSubExpr()); }
Chris Lattner87293782008-10-06 05:28:25 +0000918 bool VisitCallExpr(const CallExpr *E);
Eli Friedman2f445492008-08-22 00:06:13 +0000919
Daniel Dunbar804ead02008-10-16 03:51:50 +0000920 bool VisitUnaryOperator(const UnaryOperator *E);
Eli Friedman2f445492008-08-22 00:06:13 +0000921 bool VisitBinaryOperator(const BinaryOperator *E);
922 bool VisitFloatingLiteral(const FloatingLiteral *E);
Eli Friedman7888b932008-11-12 09:44:48 +0000923 bool VisitCastExpr(CastExpr *E);
924 bool VisitCXXZeroInitValueExpr(CXXZeroInitValueExpr *E);
Eli Friedman2f445492008-08-22 00:06:13 +0000925};
926} // end anonymous namespace
927
928static bool EvaluateFloat(const Expr* E, APFloat& Result, EvalInfo &Info) {
929 return FloatExprEvaluator(Info, Result).Visit(const_cast<Expr*>(E));
930}
931
Chris Lattner87293782008-10-06 05:28:25 +0000932bool FloatExprEvaluator::VisitCallExpr(const CallExpr *E) {
Chris Lattner87293782008-10-06 05:28:25 +0000933 switch (E->isBuiltinCall()) {
Chris Lattner27cde262008-10-06 05:53:16 +0000934 default: return false;
Chris Lattner87293782008-10-06 05:28:25 +0000935 case Builtin::BI__builtin_huge_val:
936 case Builtin::BI__builtin_huge_valf:
937 case Builtin::BI__builtin_huge_vall:
938 case Builtin::BI__builtin_inf:
939 case Builtin::BI__builtin_inff:
Daniel Dunbar0b3efb42008-10-14 05:41:12 +0000940 case Builtin::BI__builtin_infl: {
941 const llvm::fltSemantics &Sem =
942 Info.Ctx.getFloatTypeSemantics(E->getType());
Chris Lattner27cde262008-10-06 05:53:16 +0000943 Result = llvm::APFloat::getInf(Sem);
944 return true;
Daniel Dunbar0b3efb42008-10-14 05:41:12 +0000945 }
Chris Lattner667e1ee2008-10-06 06:31:58 +0000946
947 case Builtin::BI__builtin_nan:
948 case Builtin::BI__builtin_nanf:
949 case Builtin::BI__builtin_nanl:
950 // If this is __builtin_nan("") turn this into a simple nan, otherwise we
951 // can't constant fold it.
952 if (const StringLiteral *S =
953 dyn_cast<StringLiteral>(E->getArg(0)->IgnoreParenCasts())) {
954 if (!S->isWide() && S->getByteLength() == 0) { // empty string.
Daniel Dunbar0b3efb42008-10-14 05:41:12 +0000955 const llvm::fltSemantics &Sem =
956 Info.Ctx.getFloatTypeSemantics(E->getType());
Chris Lattner667e1ee2008-10-06 06:31:58 +0000957 Result = llvm::APFloat::getNaN(Sem);
958 return true;
959 }
960 }
961 return false;
Daniel Dunbar804ead02008-10-16 03:51:50 +0000962
963 case Builtin::BI__builtin_fabs:
964 case Builtin::BI__builtin_fabsf:
965 case Builtin::BI__builtin_fabsl:
966 if (!EvaluateFloat(E->getArg(0), Result, Info))
967 return false;
968
969 if (Result.isNegative())
970 Result.changeSign();
971 return true;
972
973 case Builtin::BI__builtin_copysign:
974 case Builtin::BI__builtin_copysignf:
975 case Builtin::BI__builtin_copysignl: {
976 APFloat RHS(0.);
977 if (!EvaluateFloat(E->getArg(0), Result, Info) ||
978 !EvaluateFloat(E->getArg(1), RHS, Info))
979 return false;
980 Result.copySign(RHS);
981 return true;
982 }
Chris Lattner87293782008-10-06 05:28:25 +0000983 }
984}
985
Daniel Dunbar804ead02008-10-16 03:51:50 +0000986bool FloatExprEvaluator::VisitUnaryOperator(const UnaryOperator *E) {
Nuno Lopes1cea4f42008-11-19 17:44:31 +0000987 if (E->getOpcode() == UnaryOperator::Deref)
988 return false;
989
Daniel Dunbar804ead02008-10-16 03:51:50 +0000990 if (!EvaluateFloat(E->getSubExpr(), Result, Info))
991 return false;
992
993 switch (E->getOpcode()) {
994 default: return false;
995 case UnaryOperator::Plus:
996 return true;
997 case UnaryOperator::Minus:
998 Result.changeSign();
999 return true;
1000 }
1001}
Chris Lattner87293782008-10-06 05:28:25 +00001002
Eli Friedman2f445492008-08-22 00:06:13 +00001003bool FloatExprEvaluator::VisitBinaryOperator(const BinaryOperator *E) {
1004 // FIXME: Diagnostics? I really don't understand how the warnings
1005 // and errors are supposed to work.
Daniel Dunbar804ead02008-10-16 03:51:50 +00001006 APFloat RHS(0.0);
Eli Friedman2f445492008-08-22 00:06:13 +00001007 if (!EvaluateFloat(E->getLHS(), Result, Info))
1008 return false;
1009 if (!EvaluateFloat(E->getRHS(), RHS, Info))
1010 return false;
1011
1012 switch (E->getOpcode()) {
1013 default: return false;
1014 case BinaryOperator::Mul:
1015 Result.multiply(RHS, APFloat::rmNearestTiesToEven);
1016 return true;
1017 case BinaryOperator::Add:
1018 Result.add(RHS, APFloat::rmNearestTiesToEven);
1019 return true;
1020 case BinaryOperator::Sub:
1021 Result.subtract(RHS, APFloat::rmNearestTiesToEven);
1022 return true;
1023 case BinaryOperator::Div:
1024 Result.divide(RHS, APFloat::rmNearestTiesToEven);
1025 return true;
1026 case BinaryOperator::Rem:
1027 Result.mod(RHS, APFloat::rmNearestTiesToEven);
1028 return true;
1029 }
1030}
1031
1032bool FloatExprEvaluator::VisitFloatingLiteral(const FloatingLiteral *E) {
1033 Result = E->getValue();
1034 return true;
1035}
1036
Eli Friedman7888b932008-11-12 09:44:48 +00001037bool FloatExprEvaluator::VisitCastExpr(CastExpr *E) {
1038 Expr* SubExpr = E->getSubExpr();
1039 const llvm::fltSemantics& destSemantics =
1040 Info.Ctx.getFloatTypeSemantics(E->getType());
1041 if (SubExpr->getType()->isIntegralType()) {
1042 APSInt IntResult;
1043 if (!EvaluateInteger(E, IntResult, Info))
1044 return false;
1045 Result = APFloat(destSemantics, 1);
1046 Result.convertFromAPInt(IntResult, IntResult.isSigned(),
1047 APFloat::rmNearestTiesToEven);
1048 return true;
1049 }
1050 if (SubExpr->getType()->isRealFloatingType()) {
1051 if (!Visit(SubExpr))
1052 return false;
1053 bool ignored;
1054 Result.convert(destSemantics, APFloat::rmNearestTiesToEven, &ignored);
1055 return true;
1056 }
1057
1058 return false;
1059}
1060
1061bool FloatExprEvaluator::VisitCXXZeroInitValueExpr(CXXZeroInitValueExpr *E) {
1062 Result = APFloat::getZero(Info.Ctx.getFloatTypeSemantics(E->getType()));
1063 return true;
1064}
1065
Eli Friedman2f445492008-08-22 00:06:13 +00001066//===----------------------------------------------------------------------===//
Anders Carlssonf1bb2962008-11-16 20:27:53 +00001067// Complex Float Evaluation
1068//===----------------------------------------------------------------------===//
1069
1070namespace {
1071class VISIBILITY_HIDDEN ComplexFloatExprEvaluator
1072 : public StmtVisitor<ComplexFloatExprEvaluator, APValue> {
1073 EvalInfo &Info;
1074
1075public:
1076 ComplexFloatExprEvaluator(EvalInfo &info) : Info(info) {}
1077
1078 //===--------------------------------------------------------------------===//
1079 // Visitor Methods
1080 //===--------------------------------------------------------------------===//
1081
1082 APValue VisitStmt(Stmt *S) {
1083 assert(0 && "This should be called on complex floats");
1084 return APValue();
1085 }
1086
1087 APValue VisitParenExpr(ParenExpr *E) { return Visit(E->getSubExpr()); }
1088
1089 APValue VisitImaginaryLiteral(ImaginaryLiteral *E) {
1090 APFloat Result(0.0);
1091 if (!EvaluateFloat(E->getSubExpr(), Result, Info))
1092 return APValue();
1093
1094 return APValue(APFloat(0.0), Result);
1095 }
1096
Anders Carlssonad2794c2008-11-16 21:51:21 +00001097 APValue VisitCastExpr(CastExpr *E) {
1098 Expr* SubExpr = E->getSubExpr();
1099
1100 if (SubExpr->getType()->isRealFloatingType()) {
1101 APFloat Result(0.0);
1102
1103 if (!EvaluateFloat(SubExpr, Result, Info))
1104 return APValue();
1105
1106 return APValue(Result, APFloat(0.0));
1107 }
1108
1109 // FIXME: Handle more casts.
1110 return APValue();
1111 }
1112
1113 APValue VisitBinaryOperator(const BinaryOperator *E);
1114
Anders Carlssonf1bb2962008-11-16 20:27:53 +00001115};
1116} // end anonymous namespace
1117
1118static bool EvaluateComplexFloat(const Expr *E, APValue &Result, EvalInfo &Info)
1119{
1120 Result = ComplexFloatExprEvaluator(Info).Visit(const_cast<Expr*>(E));
1121 return Result.isComplexFloat();
1122}
1123
Anders Carlssonad2794c2008-11-16 21:51:21 +00001124APValue ComplexFloatExprEvaluator::VisitBinaryOperator(const BinaryOperator *E)
1125{
1126 APValue Result, RHS;
1127
1128 if (!EvaluateComplexFloat(E->getLHS(), Result, Info))
1129 return APValue();
1130
1131 if (!EvaluateComplexFloat(E->getRHS(), RHS, Info))
1132 return APValue();
1133
1134 switch (E->getOpcode()) {
1135 default: return APValue();
1136 case BinaryOperator::Add:
1137 Result.getComplexFloatReal().add(RHS.getComplexFloatReal(),
1138 APFloat::rmNearestTiesToEven);
1139 Result.getComplexFloatImag().add(RHS.getComplexFloatImag(),
1140 APFloat::rmNearestTiesToEven);
1141 case BinaryOperator::Sub:
1142 Result.getComplexFloatReal().subtract(RHS.getComplexFloatReal(),
1143 APFloat::rmNearestTiesToEven);
1144 Result.getComplexFloatImag().subtract(RHS.getComplexFloatImag(),
1145 APFloat::rmNearestTiesToEven);
1146 }
1147
1148 return Result;
1149}
1150
Anders Carlssonf1bb2962008-11-16 20:27:53 +00001151//===----------------------------------------------------------------------===//
Chris Lattneref069662008-11-16 21:24:15 +00001152// Top level Expr::Evaluate method.
Chris Lattnera823ccf2008-07-11 18:11:29 +00001153//===----------------------------------------------------------------------===//
1154
Chris Lattneref069662008-11-16 21:24:15 +00001155/// Evaluate - Return true if this is a constant which we can fold using
Chris Lattner87293782008-10-06 05:28:25 +00001156/// any crazy technique (that has nothing to do with language standards) that
1157/// we want to. If this function returns true, it returns the folded constant
1158/// in Result.
Anders Carlssonb96c2062008-11-22 21:50:49 +00001159bool Expr::Evaluate(APValue &Result, ASTContext &Ctx, bool *isEvaluated) const {
Chris Lattner422373c2008-07-11 22:52:41 +00001160 EvalInfo Info(Ctx);
Anders Carlssonc0328012008-07-08 05:49:43 +00001161 if (getType()->isIntegerType()) {
Eli Friedman2f445492008-08-22 00:06:13 +00001162 llvm::APSInt sInt(32);
Anders Carlssonb96c2062008-11-22 21:50:49 +00001163 if (!EvaluateInteger(this, sInt, Info))
1164 return false;
1165
1166 Result = APValue(sInt);
Eli Friedman2f445492008-08-22 00:06:13 +00001167 } else if (getType()->isPointerType()) {
Anders Carlssonb96c2062008-11-22 21:50:49 +00001168 if (!EvaluatePointer(this, Result, Info))
1169 return false;
Eli Friedman2f445492008-08-22 00:06:13 +00001170 } else if (getType()->isRealFloatingType()) {
1171 llvm::APFloat f(0.0);
Anders Carlssonb96c2062008-11-22 21:50:49 +00001172 if (!EvaluateFloat(this, f, Info))
1173 return false;
1174
1175 Result = APValue(f);
Anders Carlssonf1bb2962008-11-16 20:27:53 +00001176 } else if (getType()->isComplexType()) {
Anders Carlssonb96c2062008-11-22 21:50:49 +00001177 if (!EvaluateComplexFloat(this, Result, Info))
1178 return false;
Anders Carlssoncb6a2e82008-11-22 22:56:32 +00001179 } else
1180 return false;
Anders Carlssonb96c2062008-11-22 21:50:49 +00001181
1182 if (isEvaluated)
1183 *isEvaluated = Info.isEvaluated;
1184 return true;
Anders Carlssonc7436af2008-07-03 04:20:39 +00001185}
Chris Lattner2d9a3f62008-10-06 06:49:02 +00001186
Chris Lattneref069662008-11-16 21:24:15 +00001187/// isEvaluatable - Call Evaluate to see if this expression can be constant
Chris Lattner2d9a3f62008-10-06 06:49:02 +00001188/// folded, but discard the result.
1189bool Expr::isEvaluatable(ASTContext &Ctx) const {
1190 APValue V;
Chris Lattneref069662008-11-16 21:24:15 +00001191 return Evaluate(V, Ctx);
Chris Lattner2d9a3f62008-10-06 06:49:02 +00001192}
Anders Carlssone8bd9f22008-11-22 21:04:56 +00001193
1194APSInt Expr::EvaluateAsInt(ASTContext &Ctx) const {
1195 APValue V;
1196 bool Result = Evaluate(V, Ctx);
1197 assert(Result && "Could not evaluate expression");
1198 assert(V.isInt() && "Expression did not evaluate to integer");
1199
1200 return V.getInt();
1201}