blob: c0d0e453fc802cd516d4c01ff7f1ee6b5931f413 [file] [log] [blame]
Chris Lattnere13042c2008-07-11 19:10:17 +00001//===--- ExprConstant.cpp - Expression Constant Evaluator -----------------===//
Anders Carlsson7a241ba2008-07-03 04:20:39 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the Expr constant evaluator.
11//
Richard Smith253c2a32012-01-27 01:14:48 +000012// Constant expression evaluation produces four main results:
13//
14// * A success/failure flag indicating whether constant folding was successful.
15// This is the 'bool' return value used by most of the code in this file. A
16// 'false' return value indicates that constant folding has failed, and any
17// appropriate diagnostic has already been produced.
18//
19// * An evaluated result, valid only if constant folding has not failed.
20//
21// * A flag indicating if evaluation encountered (unevaluated) side-effects.
22// These arise in cases such as (sideEffect(), 0) and (sideEffect() || 1),
23// where it is possible to determine the evaluated result regardless.
24//
25// * A set of notes indicating why the evaluation was not a constant expression
Richard Smith861b5b52013-05-07 23:34:45 +000026// (under the C++11 / C++1y rules only, at the moment), or, if folding failed
27// too, why the expression could not be folded.
Richard Smith253c2a32012-01-27 01:14:48 +000028//
29// If we are checking for a potential constant expression, failure to constant
30// fold a potential constant sub-expression will be indicated by a 'false'
31// return value (the expression could not be folded) and no diagnostic (the
32// expression is not necessarily non-constant).
33//
Anders Carlsson7a241ba2008-07-03 04:20:39 +000034//===----------------------------------------------------------------------===//
35
36#include "clang/AST/APValue.h"
37#include "clang/AST/ASTContext.h"
Benjamin Kramer444a1302012-12-01 17:12:56 +000038#include "clang/AST/ASTDiagnostic.h"
Faisal Valia734ab92016-03-26 16:11:37 +000039#include "clang/AST/ASTLambda.h"
Ken Dyck40775002010-01-11 17:06:35 +000040#include "clang/AST/CharUnits.h"
Benjamin Kramer444a1302012-12-01 17:12:56 +000041#include "clang/AST/Expr.h"
Anders Carlsson15b73de2009-07-18 19:43:29 +000042#include "clang/AST/RecordLayout.h"
Seo Sanghyeon1904f442008-07-08 07:23:12 +000043#include "clang/AST/StmtVisitor.h"
Douglas Gregor882211c2010-04-28 22:16:22 +000044#include "clang/AST/TypeLoc.h"
Chris Lattner15ba9492009-06-14 01:54:56 +000045#include "clang/Basic/Builtins.h"
Anders Carlsson374b93d2008-07-08 05:49:43 +000046#include "clang/Basic/TargetInfo.h"
Benjamin Kramer444a1302012-12-01 17:12:56 +000047#include "llvm/Support/raw_ostream.h"
Mike Stump2346cd22009-05-30 03:56:50 +000048#include <cstring>
Richard Smithc8042322012-02-01 05:53:12 +000049#include <functional>
Mike Stump2346cd22009-05-30 03:56:50 +000050
Ivan A. Kosarev01df5192018-02-14 13:10:35 +000051#define DEBUG_TYPE "exprconstant"
52
Anders Carlsson7a241ba2008-07-03 04:20:39 +000053using namespace clang;
Chris Lattner05706e882008-07-11 18:11:29 +000054using llvm::APSInt;
Eli Friedman24c01542008-08-22 00:06:13 +000055using llvm::APFloat;
Anders Carlsson7a241ba2008-07-03 04:20:39 +000056
Richard Smithb228a862012-02-15 02:18:13 +000057static bool IsGlobalLValue(APValue::LValueBase B);
58
John McCall93d91dc2010-05-07 17:22:02 +000059namespace {
Richard Smithd62306a2011-11-10 06:34:14 +000060 struct LValue;
Richard Smith254a73d2011-10-28 22:34:42 +000061 struct CallStackFrame;
Richard Smith4e4c78ff2011-10-31 05:52:43 +000062 struct EvalInfo;
Richard Smith254a73d2011-10-28 22:34:42 +000063
Richard Smithb228a862012-02-15 02:18:13 +000064 static QualType getType(APValue::LValueBase B) {
Richard Smithce40ad62011-11-12 22:28:03 +000065 if (!B) return QualType();
Richard Smith69cf59e2018-03-09 02:00:01 +000066 if (const ValueDecl *D = B.dyn_cast<const ValueDecl*>()) {
Richard Smith6f4f0f12017-10-20 22:56:25 +000067 // FIXME: It's unclear where we're supposed to take the type from, and
Richard Smith69cf59e2018-03-09 02:00:01 +000068 // this actually matters for arrays of unknown bound. Eg:
Richard Smith6f4f0f12017-10-20 22:56:25 +000069 //
70 // extern int arr[]; void f() { extern int arr[3]; };
71 // constexpr int *p = &arr[1]; // valid?
Richard Smith69cf59e2018-03-09 02:00:01 +000072 //
73 // For now, we take the array bound from the most recent declaration.
74 for (auto *Redecl = cast<ValueDecl>(D->getMostRecentDecl()); Redecl;
75 Redecl = cast_or_null<ValueDecl>(Redecl->getPreviousDecl())) {
76 QualType T = Redecl->getType();
77 if (!T->isIncompleteArrayType())
78 return T;
79 }
80 return D->getType();
81 }
Richard Smith84401042013-06-03 05:03:02 +000082
83 const Expr *Base = B.get<const Expr*>();
84
85 // For a materialized temporary, the type of the temporary we materialized
86 // may not be the type of the expression.
87 if (const MaterializeTemporaryExpr *MTE =
88 dyn_cast<MaterializeTemporaryExpr>(Base)) {
89 SmallVector<const Expr *, 2> CommaLHSs;
90 SmallVector<SubobjectAdjustment, 2> Adjustments;
91 const Expr *Temp = MTE->GetTemporaryExpr();
92 const Expr *Inner = Temp->skipRValueSubobjectAdjustments(CommaLHSs,
93 Adjustments);
94 // Keep any cv-qualifiers from the reference if we generated a temporary
Richard Smithb8c0f552016-12-09 18:49:13 +000095 // for it directly. Otherwise use the type after adjustment.
96 if (!Adjustments.empty())
Richard Smith84401042013-06-03 05:03:02 +000097 return Inner->getType();
98 }
99
100 return Base->getType();
Richard Smithce40ad62011-11-12 22:28:03 +0000101 }
102
Richard Smithd62306a2011-11-10 06:34:14 +0000103 /// Get an LValue path entry, which is known to not be an array index, as a
Richard Smith84f6dcf2012-02-02 01:16:57 +0000104 /// field or base class.
Richard Smithb228a862012-02-15 02:18:13 +0000105 static
Richard Smith84f6dcf2012-02-02 01:16:57 +0000106 APValue::BaseOrMemberType getAsBaseOrMember(APValue::LValuePathEntry E) {
Richard Smithd62306a2011-11-10 06:34:14 +0000107 APValue::BaseOrMemberType Value;
108 Value.setFromOpaqueValue(E.BaseOrMember);
Richard Smith84f6dcf2012-02-02 01:16:57 +0000109 return Value;
110 }
111
112 /// Get an LValue path entry, which is known to not be an array index, as a
113 /// field declaration.
Richard Smithb228a862012-02-15 02:18:13 +0000114 static const FieldDecl *getAsField(APValue::LValuePathEntry E) {
Richard Smith84f6dcf2012-02-02 01:16:57 +0000115 return dyn_cast<FieldDecl>(getAsBaseOrMember(E).getPointer());
Richard Smithd62306a2011-11-10 06:34:14 +0000116 }
117 /// Get an LValue path entry, which is known to not be an array index, as a
118 /// base class declaration.
Richard Smithb228a862012-02-15 02:18:13 +0000119 static const CXXRecordDecl *getAsBaseClass(APValue::LValuePathEntry E) {
Richard Smith84f6dcf2012-02-02 01:16:57 +0000120 return dyn_cast<CXXRecordDecl>(getAsBaseOrMember(E).getPointer());
Richard Smithd62306a2011-11-10 06:34:14 +0000121 }
122 /// Determine whether this LValue path entry for a base class names a virtual
123 /// base class.
Richard Smithb228a862012-02-15 02:18:13 +0000124 static bool isVirtualBaseClass(APValue::LValuePathEntry E) {
Richard Smith84f6dcf2012-02-02 01:16:57 +0000125 return getAsBaseOrMember(E).getInt();
Richard Smithd62306a2011-11-10 06:34:14 +0000126 }
127
George Burgess IVe3763372016-12-22 02:50:20 +0000128 /// Given a CallExpr, try to get the alloc_size attribute. May return null.
129 static const AllocSizeAttr *getAllocSizeAttr(const CallExpr *CE) {
130 const FunctionDecl *Callee = CE->getDirectCallee();
131 return Callee ? Callee->getAttr<AllocSizeAttr>() : nullptr;
132 }
133
134 /// Attempts to unwrap a CallExpr (with an alloc_size attribute) from an Expr.
135 /// This will look through a single cast.
136 ///
137 /// Returns null if we couldn't unwrap a function with alloc_size.
138 static const CallExpr *tryUnwrapAllocSizeCall(const Expr *E) {
139 if (!E->getType()->isPointerType())
140 return nullptr;
141
142 E = E->IgnoreParens();
143 // If we're doing a variable assignment from e.g. malloc(N), there will
George Burgess IV47638762018-03-07 04:52:34 +0000144 // probably be a cast of some kind. In exotic cases, we might also see a
145 // top-level ExprWithCleanups. Ignore them either way.
146 if (const auto *EC = dyn_cast<ExprWithCleanups>(E))
147 E = EC->getSubExpr()->IgnoreParens();
148
George Burgess IVe3763372016-12-22 02:50:20 +0000149 if (const auto *Cast = dyn_cast<CastExpr>(E))
150 E = Cast->getSubExpr()->IgnoreParens();
151
152 if (const auto *CE = dyn_cast<CallExpr>(E))
153 return getAllocSizeAttr(CE) ? CE : nullptr;
154 return nullptr;
155 }
156
157 /// Determines whether or not the given Base contains a call to a function
158 /// with the alloc_size attribute.
159 static bool isBaseAnAllocSizeCall(APValue::LValueBase Base) {
160 const auto *E = Base.dyn_cast<const Expr *>();
161 return E && E->getType()->isPointerType() && tryUnwrapAllocSizeCall(E);
162 }
163
Richard Smith6f4f0f12017-10-20 22:56:25 +0000164 /// The bound to claim that an array of unknown bound has.
165 /// The value in MostDerivedArraySize is undefined in this case. So, set it
166 /// to an arbitrary value that's likely to loudly break things if it's used.
167 static const uint64_t AssumedSizeForUnsizedArray =
168 std::numeric_limits<uint64_t>::max() / 2;
169
George Burgess IVe3763372016-12-22 02:50:20 +0000170 /// Determines if an LValue with the given LValueBase will have an unsized
171 /// array in its designator.
Richard Smitha8105bc2012-01-06 16:39:00 +0000172 /// Find the path length and type of the most-derived subobject in the given
173 /// path, and find the size of the containing array, if any.
George Burgess IVe3763372016-12-22 02:50:20 +0000174 static unsigned
175 findMostDerivedSubobject(ASTContext &Ctx, APValue::LValueBase Base,
176 ArrayRef<APValue::LValuePathEntry> Path,
Richard Smith6f4f0f12017-10-20 22:56:25 +0000177 uint64_t &ArraySize, QualType &Type, bool &IsArray,
178 bool &FirstEntryIsUnsizedArray) {
George Burgess IVe3763372016-12-22 02:50:20 +0000179 // This only accepts LValueBases from APValues, and APValues don't support
180 // arrays that lack size info.
181 assert(!isBaseAnAllocSizeCall(Base) &&
182 "Unsized arrays shouldn't appear here");
Richard Smitha8105bc2012-01-06 16:39:00 +0000183 unsigned MostDerivedLength = 0;
George Burgess IVe3763372016-12-22 02:50:20 +0000184 Type = getType(Base);
185
Richard Smith80815602011-11-07 05:07:52 +0000186 for (unsigned I = 0, N = Path.size(); I != N; ++I) {
Daniel Jasperffdee092017-05-02 19:21:42 +0000187 if (Type->isArrayType()) {
Richard Smith6f4f0f12017-10-20 22:56:25 +0000188 const ArrayType *AT = Ctx.getAsArrayType(Type);
189 Type = AT->getElementType();
Richard Smitha8105bc2012-01-06 16:39:00 +0000190 MostDerivedLength = I + 1;
George Burgess IVa51c4072015-10-16 01:49:01 +0000191 IsArray = true;
Richard Smith6f4f0f12017-10-20 22:56:25 +0000192
193 if (auto *CAT = dyn_cast<ConstantArrayType>(AT)) {
194 ArraySize = CAT->getSize().getZExtValue();
195 } else {
196 assert(I == 0 && "unexpected unsized array designator");
197 FirstEntryIsUnsizedArray = true;
198 ArraySize = AssumedSizeForUnsizedArray;
199 }
Richard Smith66c96992012-02-18 22:04:06 +0000200 } else if (Type->isAnyComplexType()) {
201 const ComplexType *CT = Type->castAs<ComplexType>();
202 Type = CT->getElementType();
203 ArraySize = 2;
204 MostDerivedLength = I + 1;
George Burgess IVa51c4072015-10-16 01:49:01 +0000205 IsArray = true;
Richard Smitha8105bc2012-01-06 16:39:00 +0000206 } else if (const FieldDecl *FD = getAsField(Path[I])) {
207 Type = FD->getType();
208 ArraySize = 0;
209 MostDerivedLength = I + 1;
George Burgess IVa51c4072015-10-16 01:49:01 +0000210 IsArray = false;
Richard Smitha8105bc2012-01-06 16:39:00 +0000211 } else {
Richard Smith80815602011-11-07 05:07:52 +0000212 // Path[I] describes a base class.
Richard Smitha8105bc2012-01-06 16:39:00 +0000213 ArraySize = 0;
George Burgess IVa51c4072015-10-16 01:49:01 +0000214 IsArray = false;
Richard Smitha8105bc2012-01-06 16:39:00 +0000215 }
Richard Smith80815602011-11-07 05:07:52 +0000216 }
Richard Smitha8105bc2012-01-06 16:39:00 +0000217 return MostDerivedLength;
Richard Smith80815602011-11-07 05:07:52 +0000218 }
219
Richard Smitha8105bc2012-01-06 16:39:00 +0000220 // The order of this enum is important for diagnostics.
221 enum CheckSubobjectKind {
Richard Smith47b34932012-02-01 02:39:43 +0000222 CSK_Base, CSK_Derived, CSK_Field, CSK_ArrayToPointer, CSK_ArrayIndex,
Richard Smith66c96992012-02-18 22:04:06 +0000223 CSK_This, CSK_Real, CSK_Imag
Richard Smitha8105bc2012-01-06 16:39:00 +0000224 };
225
Richard Smith96e0c102011-11-04 02:25:55 +0000226 /// A path from a glvalue to a subobject of that glvalue.
227 struct SubobjectDesignator {
228 /// True if the subobject was named in a manner not supported by C++11. Such
229 /// lvalues can still be folded, but they are not core constant expressions
230 /// and we cannot perform lvalue-to-rvalue conversions on them.
Akira Hatanaka3a944772016-06-30 00:07:17 +0000231 unsigned Invalid : 1;
Richard Smith96e0c102011-11-04 02:25:55 +0000232
Richard Smitha8105bc2012-01-06 16:39:00 +0000233 /// Is this a pointer one past the end of an object?
Akira Hatanaka3a944772016-06-30 00:07:17 +0000234 unsigned IsOnePastTheEnd : 1;
Richard Smith96e0c102011-11-04 02:25:55 +0000235
Daniel Jasperffdee092017-05-02 19:21:42 +0000236 /// Indicator of whether the first entry is an unsized array.
237 unsigned FirstEntryIsAnUnsizedArray : 1;
George Burgess IVe3763372016-12-22 02:50:20 +0000238
George Burgess IVa51c4072015-10-16 01:49:01 +0000239 /// Indicator of whether the most-derived object is an array element.
Akira Hatanaka3a944772016-06-30 00:07:17 +0000240 unsigned MostDerivedIsArrayElement : 1;
George Burgess IVa51c4072015-10-16 01:49:01 +0000241
Richard Smitha8105bc2012-01-06 16:39:00 +0000242 /// The length of the path to the most-derived object of which this is a
243 /// subobject.
George Burgess IVe3763372016-12-22 02:50:20 +0000244 unsigned MostDerivedPathLength : 28;
Richard Smitha8105bc2012-01-06 16:39:00 +0000245
George Burgess IVa51c4072015-10-16 01:49:01 +0000246 /// The size of the array of which the most-derived object is an element.
247 /// This will always be 0 if the most-derived object is not an array
248 /// element. 0 is not an indicator of whether or not the most-derived object
249 /// is an array, however, because 0-length arrays are allowed.
George Burgess IVe3763372016-12-22 02:50:20 +0000250 ///
251 /// If the current array is an unsized array, the value of this is
252 /// undefined.
Richard Smitha8105bc2012-01-06 16:39:00 +0000253 uint64_t MostDerivedArraySize;
254
255 /// The type of the most derived object referred to by this address.
256 QualType MostDerivedType;
Richard Smith96e0c102011-11-04 02:25:55 +0000257
Richard Smith80815602011-11-07 05:07:52 +0000258 typedef APValue::LValuePathEntry PathEntry;
259
Richard Smith96e0c102011-11-04 02:25:55 +0000260 /// The entries on the path from the glvalue to the designated subobject.
261 SmallVector<PathEntry, 8> Entries;
262
Richard Smitha8105bc2012-01-06 16:39:00 +0000263 SubobjectDesignator() : Invalid(true) {}
Richard Smith96e0c102011-11-04 02:25:55 +0000264
Richard Smitha8105bc2012-01-06 16:39:00 +0000265 explicit SubobjectDesignator(QualType T)
George Burgess IVa51c4072015-10-16 01:49:01 +0000266 : Invalid(false), IsOnePastTheEnd(false),
Daniel Jasperffdee092017-05-02 19:21:42 +0000267 FirstEntryIsAnUnsizedArray(false), MostDerivedIsArrayElement(false),
George Burgess IVe3763372016-12-22 02:50:20 +0000268 MostDerivedPathLength(0), MostDerivedArraySize(0),
269 MostDerivedType(T) {}
Richard Smitha8105bc2012-01-06 16:39:00 +0000270
271 SubobjectDesignator(ASTContext &Ctx, const APValue &V)
George Burgess IVa51c4072015-10-16 01:49:01 +0000272 : Invalid(!V.isLValue() || !V.hasLValuePath()), IsOnePastTheEnd(false),
Daniel Jasperffdee092017-05-02 19:21:42 +0000273 FirstEntryIsAnUnsizedArray(false), MostDerivedIsArrayElement(false),
George Burgess IVe3763372016-12-22 02:50:20 +0000274 MostDerivedPathLength(0), MostDerivedArraySize(0) {
275 assert(V.isLValue() && "Non-LValue used to make an LValue designator?");
Richard Smith80815602011-11-07 05:07:52 +0000276 if (!Invalid) {
Richard Smitha8105bc2012-01-06 16:39:00 +0000277 IsOnePastTheEnd = V.isLValueOnePastTheEnd();
Richard Smith80815602011-11-07 05:07:52 +0000278 ArrayRef<PathEntry> VEntries = V.getLValuePath();
279 Entries.insert(Entries.end(), VEntries.begin(), VEntries.end());
Daniel Jasperffdee092017-05-02 19:21:42 +0000280 if (V.getLValueBase()) {
281 bool IsArray = false;
Richard Smith6f4f0f12017-10-20 22:56:25 +0000282 bool FirstIsUnsizedArray = false;
George Burgess IVe3763372016-12-22 02:50:20 +0000283 MostDerivedPathLength = findMostDerivedSubobject(
Daniel Jasperffdee092017-05-02 19:21:42 +0000284 Ctx, V.getLValueBase(), V.getLValuePath(), MostDerivedArraySize,
Richard Smith6f4f0f12017-10-20 22:56:25 +0000285 MostDerivedType, IsArray, FirstIsUnsizedArray);
Daniel Jasperffdee092017-05-02 19:21:42 +0000286 MostDerivedIsArrayElement = IsArray;
Richard Smith6f4f0f12017-10-20 22:56:25 +0000287 FirstEntryIsAnUnsizedArray = FirstIsUnsizedArray;
George Burgess IVa51c4072015-10-16 01:49:01 +0000288 }
Richard Smith80815602011-11-07 05:07:52 +0000289 }
290 }
291
Richard Smith96e0c102011-11-04 02:25:55 +0000292 void setInvalid() {
293 Invalid = true;
294 Entries.clear();
295 }
Richard Smitha8105bc2012-01-06 16:39:00 +0000296
George Burgess IVe3763372016-12-22 02:50:20 +0000297 /// Determine whether the most derived subobject is an array without a
298 /// known bound.
299 bool isMostDerivedAnUnsizedArray() const {
300 assert(!Invalid && "Calling this makes no sense on invalid designators");
Daniel Jasperffdee092017-05-02 19:21:42 +0000301 return Entries.size() == 1 && FirstEntryIsAnUnsizedArray;
George Burgess IVe3763372016-12-22 02:50:20 +0000302 }
303
304 /// Determine what the most derived array's size is. Results in an assertion
305 /// failure if the most derived array lacks a size.
306 uint64_t getMostDerivedArraySize() const {
307 assert(!isMostDerivedAnUnsizedArray() && "Unsized array has no size");
308 return MostDerivedArraySize;
309 }
310
Richard Smitha8105bc2012-01-06 16:39:00 +0000311 /// Determine whether this is a one-past-the-end pointer.
312 bool isOnePastTheEnd() const {
Richard Smith33b44ab2014-07-23 23:50:25 +0000313 assert(!Invalid);
Richard Smitha8105bc2012-01-06 16:39:00 +0000314 if (IsOnePastTheEnd)
315 return true;
George Burgess IVe3763372016-12-22 02:50:20 +0000316 if (!isMostDerivedAnUnsizedArray() && MostDerivedIsArrayElement &&
Richard Smitha8105bc2012-01-06 16:39:00 +0000317 Entries[MostDerivedPathLength - 1].ArrayIndex == MostDerivedArraySize)
318 return true;
319 return false;
320 }
321
Richard Smith06f71b52018-08-04 00:57:17 +0000322 /// Get the range of valid index adjustments in the form
323 /// {maximum value that can be subtracted from this pointer,
324 /// maximum value that can be added to this pointer}
325 std::pair<uint64_t, uint64_t> validIndexAdjustments() {
326 if (Invalid || isMostDerivedAnUnsizedArray())
327 return {0, 0};
328
329 // [expr.add]p4: For the purposes of these operators, a pointer to a
330 // nonarray object behaves the same as a pointer to the first element of
331 // an array of length one with the type of the object as its element type.
332 bool IsArray = MostDerivedPathLength == Entries.size() &&
333 MostDerivedIsArrayElement;
334 uint64_t ArrayIndex =
335 IsArray ? Entries.back().ArrayIndex : (uint64_t)IsOnePastTheEnd;
336 uint64_t ArraySize =
337 IsArray ? getMostDerivedArraySize() : (uint64_t)1;
338 return {ArrayIndex, ArraySize - ArrayIndex};
339 }
340
Richard Smitha8105bc2012-01-06 16:39:00 +0000341 /// Check that this refers to a valid subobject.
342 bool isValidSubobject() const {
343 if (Invalid)
344 return false;
345 return !isOnePastTheEnd();
346 }
347 /// Check that this refers to a valid subobject, and if not, produce a
348 /// relevant diagnostic and set the designator as invalid.
349 bool checkSubobject(EvalInfo &Info, const Expr *E, CheckSubobjectKind CSK);
350
Richard Smith06f71b52018-08-04 00:57:17 +0000351 /// Get the type of the designated object.
352 QualType getType(ASTContext &Ctx) const {
353 assert(!Invalid && "invalid designator has no subobject type");
354 return MostDerivedPathLength == Entries.size()
355 ? MostDerivedType
356 : Ctx.getRecordType(getAsBaseClass(Entries.back()));
357 }
358
Richard Smitha8105bc2012-01-06 16:39:00 +0000359 /// Update this designator to refer to the first element within this array.
360 void addArrayUnchecked(const ConstantArrayType *CAT) {
Richard Smith96e0c102011-11-04 02:25:55 +0000361 PathEntry Entry;
Richard Smitha8105bc2012-01-06 16:39:00 +0000362 Entry.ArrayIndex = 0;
Richard Smith96e0c102011-11-04 02:25:55 +0000363 Entries.push_back(Entry);
Richard Smitha8105bc2012-01-06 16:39:00 +0000364
365 // This is a most-derived object.
366 MostDerivedType = CAT->getElementType();
George Burgess IVa51c4072015-10-16 01:49:01 +0000367 MostDerivedIsArrayElement = true;
Richard Smitha8105bc2012-01-06 16:39:00 +0000368 MostDerivedArraySize = CAT->getSize().getZExtValue();
369 MostDerivedPathLength = Entries.size();
Richard Smith96e0c102011-11-04 02:25:55 +0000370 }
George Burgess IVe3763372016-12-22 02:50:20 +0000371 /// Update this designator to refer to the first element within the array of
372 /// elements of type T. This is an array of unknown size.
373 void addUnsizedArrayUnchecked(QualType ElemTy) {
374 PathEntry Entry;
375 Entry.ArrayIndex = 0;
376 Entries.push_back(Entry);
377
378 MostDerivedType = ElemTy;
379 MostDerivedIsArrayElement = true;
380 // The value in MostDerivedArraySize is undefined in this case. So, set it
381 // to an arbitrary value that's likely to loudly break things if it's
382 // used.
Richard Smith6f4f0f12017-10-20 22:56:25 +0000383 MostDerivedArraySize = AssumedSizeForUnsizedArray;
George Burgess IVe3763372016-12-22 02:50:20 +0000384 MostDerivedPathLength = Entries.size();
385 }
Richard Smith96e0c102011-11-04 02:25:55 +0000386 /// Update this designator to refer to the given base or member of this
387 /// object.
Richard Smitha8105bc2012-01-06 16:39:00 +0000388 void addDeclUnchecked(const Decl *D, bool Virtual = false) {
Richard Smith96e0c102011-11-04 02:25:55 +0000389 PathEntry Entry;
Richard Smithd62306a2011-11-10 06:34:14 +0000390 APValue::BaseOrMemberType Value(D, Virtual);
391 Entry.BaseOrMember = Value.getOpaqueValue();
Richard Smith96e0c102011-11-04 02:25:55 +0000392 Entries.push_back(Entry);
Richard Smitha8105bc2012-01-06 16:39:00 +0000393
394 // If this isn't a base class, it's a new most-derived object.
395 if (const FieldDecl *FD = dyn_cast<FieldDecl>(D)) {
396 MostDerivedType = FD->getType();
George Burgess IVa51c4072015-10-16 01:49:01 +0000397 MostDerivedIsArrayElement = false;
Richard Smitha8105bc2012-01-06 16:39:00 +0000398 MostDerivedArraySize = 0;
399 MostDerivedPathLength = Entries.size();
400 }
Richard Smith96e0c102011-11-04 02:25:55 +0000401 }
Richard Smith66c96992012-02-18 22:04:06 +0000402 /// Update this designator to refer to the given complex component.
403 void addComplexUnchecked(QualType EltTy, bool Imag) {
404 PathEntry Entry;
405 Entry.ArrayIndex = Imag;
406 Entries.push_back(Entry);
407
408 // This is technically a most-derived object, though in practice this
409 // is unlikely to matter.
410 MostDerivedType = EltTy;
George Burgess IVa51c4072015-10-16 01:49:01 +0000411 MostDerivedIsArrayElement = true;
Richard Smith66c96992012-02-18 22:04:06 +0000412 MostDerivedArraySize = 2;
413 MostDerivedPathLength = Entries.size();
414 }
Richard Smith6f4f0f12017-10-20 22:56:25 +0000415 void diagnoseUnsizedArrayPointerArithmetic(EvalInfo &Info, const Expr *E);
Benjamin Kramerf6021ec2017-03-21 21:35:04 +0000416 void diagnosePointerArithmetic(EvalInfo &Info, const Expr *E,
417 const APSInt &N);
Richard Smith96e0c102011-11-04 02:25:55 +0000418 /// Add N to the address of this subobject.
Daniel Jasperffdee092017-05-02 19:21:42 +0000419 void adjustIndex(EvalInfo &Info, const Expr *E, APSInt N) {
420 if (Invalid || !N) return;
421 uint64_t TruncatedN = N.extOrTrunc(64).getZExtValue();
422 if (isMostDerivedAnUnsizedArray()) {
Richard Smith6f4f0f12017-10-20 22:56:25 +0000423 diagnoseUnsizedArrayPointerArithmetic(Info, E);
Daniel Jasperffdee092017-05-02 19:21:42 +0000424 // Can't verify -- trust that the user is doing the right thing (or if
425 // not, trust that the caller will catch the bad behavior).
426 // FIXME: Should we reject if this overflows, at least?
427 Entries.back().ArrayIndex += TruncatedN;
428 return;
429 }
430
431 // [expr.add]p4: For the purposes of these operators, a pointer to a
432 // nonarray object behaves the same as a pointer to the first element of
433 // an array of length one with the type of the object as its element type.
434 bool IsArray = MostDerivedPathLength == Entries.size() &&
435 MostDerivedIsArrayElement;
436 uint64_t ArrayIndex =
437 IsArray ? Entries.back().ArrayIndex : (uint64_t)IsOnePastTheEnd;
438 uint64_t ArraySize =
439 IsArray ? getMostDerivedArraySize() : (uint64_t)1;
440
441 if (N < -(int64_t)ArrayIndex || N > ArraySize - ArrayIndex) {
442 // Calculate the actual index in a wide enough type, so we can include
443 // it in the note.
444 N = N.extend(std::max<unsigned>(N.getBitWidth() + 1, 65));
445 (llvm::APInt&)N += ArrayIndex;
446 assert(N.ugt(ArraySize) && "bounds check failed for in-bounds index");
447 diagnosePointerArithmetic(Info, E, N);
448 setInvalid();
449 return;
450 }
451
452 ArrayIndex += TruncatedN;
453 assert(ArrayIndex <= ArraySize &&
454 "bounds check succeeded for out-of-bounds index");
455
456 if (IsArray)
457 Entries.back().ArrayIndex = ArrayIndex;
458 else
459 IsOnePastTheEnd = (ArrayIndex != 0);
460 }
Richard Smith96e0c102011-11-04 02:25:55 +0000461 };
462
Richard Smith254a73d2011-10-28 22:34:42 +0000463 /// A stack frame in the constexpr call stack.
464 struct CallStackFrame {
465 EvalInfo &Info;
466
467 /// Parent - The caller of this stack frame.
Richard Smith4e4c78ff2011-10-31 05:52:43 +0000468 CallStackFrame *Caller;
Richard Smith254a73d2011-10-28 22:34:42 +0000469
Richard Smithf6f003a2011-12-16 19:06:07 +0000470 /// Callee - The function which was called.
471 const FunctionDecl *Callee;
472
Richard Smithd62306a2011-11-10 06:34:14 +0000473 /// This - The binding for the this pointer in this call, if any.
474 const LValue *This;
475
Nick Lewyckye2b2caa2013-09-22 10:07:22 +0000476 /// Arguments - Parameter bindings for this function call, indexed by
Richard Smith254a73d2011-10-28 22:34:42 +0000477 /// parameters' function scope indices.
Richard Smith3da88fa2013-04-26 14:36:30 +0000478 APValue *Arguments;
Richard Smith254a73d2011-10-28 22:34:42 +0000479
Eli Friedman4830ec82012-06-25 21:21:08 +0000480 // Note that we intentionally use std::map here so that references to
481 // values are stable.
Akira Hatanaka4e2698c2018-04-10 05:15:01 +0000482 typedef std::pair<const void *, unsigned> MapKeyTy;
483 typedef std::map<MapKeyTy, APValue> MapTy;
Richard Smith4e4c78ff2011-10-31 05:52:43 +0000484 /// Temporaries - Temporary lvalues materialized within this stack frame.
485 MapTy Temporaries;
486
Alexander Shaposhnikovfbcf29b2016-09-19 15:57:29 +0000487 /// CallLoc - The location of the call expression for this call.
488 SourceLocation CallLoc;
489
490 /// Index - The call index of this call.
491 unsigned Index;
492
Akira Hatanaka4e2698c2018-04-10 05:15:01 +0000493 /// The stack of integers for tracking version numbers for temporaries.
494 SmallVector<unsigned, 2> TempVersionStack = {1};
495 unsigned CurTempVersion = TempVersionStack.back();
496
497 unsigned getTempVersion() const { return TempVersionStack.back(); }
498
499 void pushTempVersion() {
500 TempVersionStack.push_back(++CurTempVersion);
501 }
502
503 void popTempVersion() {
504 TempVersionStack.pop_back();
505 }
506
Faisal Vali051e3a22017-02-16 04:12:21 +0000507 // FIXME: Adding this to every 'CallStackFrame' may have a nontrivial impact
508 // on the overall stack usage of deeply-recursing constexpr evaluataions.
509 // (We should cache this map rather than recomputing it repeatedly.)
510 // But let's try this and see how it goes; we can look into caching the map
511 // as a later change.
512
513 /// LambdaCaptureFields - Mapping from captured variables/this to
514 /// corresponding data members in the closure class.
515 llvm::DenseMap<const VarDecl *, FieldDecl *> LambdaCaptureFields;
516 FieldDecl *LambdaThisCaptureField;
517
Richard Smithf6f003a2011-12-16 19:06:07 +0000518 CallStackFrame(EvalInfo &Info, SourceLocation CallLoc,
519 const FunctionDecl *Callee, const LValue *This,
Richard Smith3da88fa2013-04-26 14:36:30 +0000520 APValue *Arguments);
Richard Smith4e4c78ff2011-10-31 05:52:43 +0000521 ~CallStackFrame();
Richard Smith08d6a2c2013-07-24 07:11:57 +0000522
Akira Hatanaka4e2698c2018-04-10 05:15:01 +0000523 // Return the temporary for Key whose version number is Version.
524 APValue *getTemporary(const void *Key, unsigned Version) {
525 MapKeyTy KV(Key, Version);
526 auto LB = Temporaries.lower_bound(KV);
527 if (LB != Temporaries.end() && LB->first == KV)
528 return &LB->second;
529 // Pair (Key,Version) wasn't found in the map. Check that no elements
530 // in the map have 'Key' as their key.
531 assert((LB == Temporaries.end() || LB->first.first != Key) &&
532 (LB == Temporaries.begin() || std::prev(LB)->first.first != Key) &&
533 "Element with key 'Key' found in map");
534 return nullptr;
Richard Smith08d6a2c2013-07-24 07:11:57 +0000535 }
Akira Hatanaka4e2698c2018-04-10 05:15:01 +0000536
537 // Return the current temporary for Key in the map.
538 APValue *getCurrentTemporary(const void *Key) {
539 auto UB = Temporaries.upper_bound(MapKeyTy(Key, UINT_MAX));
540 if (UB != Temporaries.begin() && std::prev(UB)->first.first == Key)
541 return &std::prev(UB)->second;
542 return nullptr;
543 }
544
545 // Return the version number of the current temporary for Key.
546 unsigned getCurrentTemporaryVersion(const void *Key) const {
547 auto UB = Temporaries.upper_bound(MapKeyTy(Key, UINT_MAX));
548 if (UB != Temporaries.begin() && std::prev(UB)->first.first == Key)
549 return std::prev(UB)->first.second;
550 return 0;
551 }
552
Richard Smith08d6a2c2013-07-24 07:11:57 +0000553 APValue &createTemporary(const void *Key, bool IsLifetimeExtended);
Richard Smith254a73d2011-10-28 22:34:42 +0000554 };
555
Richard Smith852c9db2013-04-20 22:23:05 +0000556 /// Temporarily override 'this'.
557 class ThisOverrideRAII {
558 public:
559 ThisOverrideRAII(CallStackFrame &Frame, const LValue *NewThis, bool Enable)
560 : Frame(Frame), OldThis(Frame.This) {
561 if (Enable)
562 Frame.This = NewThis;
563 }
564 ~ThisOverrideRAII() {
565 Frame.This = OldThis;
566 }
567 private:
568 CallStackFrame &Frame;
569 const LValue *OldThis;
570 };
571
Richard Smith92b1ce02011-12-12 09:28:41 +0000572 /// A partial diagnostic which we might know in advance that we are not going
573 /// to emit.
574 class OptionalDiagnostic {
575 PartialDiagnostic *Diag;
576
577 public:
Craig Topper36250ad2014-05-12 05:36:57 +0000578 explicit OptionalDiagnostic(PartialDiagnostic *Diag = nullptr)
579 : Diag(Diag) {}
Richard Smith92b1ce02011-12-12 09:28:41 +0000580
581 template<typename T>
582 OptionalDiagnostic &operator<<(const T &v) {
583 if (Diag)
584 *Diag << v;
585 return *this;
586 }
Richard Smithfe800032012-01-31 04:08:20 +0000587
588 OptionalDiagnostic &operator<<(const APSInt &I) {
589 if (Diag) {
Dmitri Gribenkof8579502013-01-12 19:30:44 +0000590 SmallVector<char, 32> Buffer;
Richard Smithfe800032012-01-31 04:08:20 +0000591 I.toString(Buffer);
592 *Diag << StringRef(Buffer.data(), Buffer.size());
593 }
594 return *this;
595 }
596
597 OptionalDiagnostic &operator<<(const APFloat &F) {
598 if (Diag) {
Eli Friedman07185912013-08-29 23:44:43 +0000599 // FIXME: Force the precision of the source value down so we don't
600 // print digits which are usually useless (we don't really care here if
601 // we truncate a digit by accident in edge cases). Ideally,
Fangrui Song6907ce22018-07-30 19:24:48 +0000602 // APFloat::toString would automatically print the shortest
Eli Friedman07185912013-08-29 23:44:43 +0000603 // representation which rounds to the correct value, but it's a bit
604 // tricky to implement.
605 unsigned precision =
606 llvm::APFloat::semanticsPrecision(F.getSemantics());
607 precision = (precision * 59 + 195) / 196;
Dmitri Gribenkof8579502013-01-12 19:30:44 +0000608 SmallVector<char, 32> Buffer;
Eli Friedman07185912013-08-29 23:44:43 +0000609 F.toString(Buffer, precision);
Richard Smithfe800032012-01-31 04:08:20 +0000610 *Diag << StringRef(Buffer.data(), Buffer.size());
611 }
612 return *this;
613 }
Richard Smith92b1ce02011-12-12 09:28:41 +0000614 };
615
Richard Smith08d6a2c2013-07-24 07:11:57 +0000616 /// A cleanup, and a flag indicating whether it is lifetime-extended.
617 class Cleanup {
618 llvm::PointerIntPair<APValue*, 1, bool> Value;
619
620 public:
621 Cleanup(APValue *Val, bool IsLifetimeExtended)
622 : Value(Val, IsLifetimeExtended) {}
623
624 bool isLifetimeExtended() const { return Value.getInt(); }
625 void endLifetime() {
626 *Value.getPointer() = APValue();
627 }
628 };
629
Richard Smithb228a862012-02-15 02:18:13 +0000630 /// EvalInfo - This is a private struct used by the evaluator to capture
631 /// information about a subexpression as it is folded. It retains information
632 /// about the AST context, but also maintains information about the folded
633 /// expression.
634 ///
635 /// If an expression could be evaluated, it is still possible it is not a C
636 /// "integer constant expression" or constant expression. If not, this struct
637 /// captures information about how and why not.
638 ///
639 /// One bit of information passed *into* the request for constant folding
640 /// indicates whether the subexpression is "evaluated" or not according to C
641 /// rules. For example, the RHS of (0 && foo()) is not evaluated. We can
642 /// evaluate the expression regardless of what the RHS is, but C only allows
643 /// certain things in certain situations.
Reid Klecknerfdb3df62017-08-15 01:17:47 +0000644 struct EvalInfo {
Richard Smith92b1ce02011-12-12 09:28:41 +0000645 ASTContext &Ctx;
Argyrios Kyrtzidis91d00982012-02-27 20:21:34 +0000646
Richard Smith4e4c78ff2011-10-31 05:52:43 +0000647 /// EvalStatus - Contains information about the evaluation.
648 Expr::EvalStatus &EvalStatus;
649
650 /// CurrentCall - The top of the constexpr call stack.
651 CallStackFrame *CurrentCall;
652
Richard Smith4e4c78ff2011-10-31 05:52:43 +0000653 /// CallStackDepth - The number of calls in the call stack right now.
654 unsigned CallStackDepth;
655
Richard Smithb228a862012-02-15 02:18:13 +0000656 /// NextCallIndex - The next call index to assign.
657 unsigned NextCallIndex;
658
Richard Smitha3d3bd22013-05-08 02:12:03 +0000659 /// StepsLeft - The remaining number of evaluation steps we're permitted
660 /// to perform. This is essentially a limit for the number of statements
661 /// we will evaluate.
662 unsigned StepsLeft;
663
Richard Smith4e4c78ff2011-10-31 05:52:43 +0000664 /// BottomFrame - The frame in which evaluation started. This must be
Richard Smith253c2a32012-01-27 01:14:48 +0000665 /// initialized after CurrentCall and CallStackDepth.
Richard Smith4e4c78ff2011-10-31 05:52:43 +0000666 CallStackFrame BottomFrame;
667
Richard Smith08d6a2c2013-07-24 07:11:57 +0000668 /// A stack of values whose lifetimes end at the end of some surrounding
669 /// evaluation frame.
670 llvm::SmallVector<Cleanup, 16> CleanupStack;
671
Richard Smithd62306a2011-11-10 06:34:14 +0000672 /// EvaluatingDecl - This is the declaration whose initializer is being
673 /// evaluated, if any.
Richard Smith7525ff62013-05-09 07:14:00 +0000674 APValue::LValueBase EvaluatingDecl;
Richard Smithd62306a2011-11-10 06:34:14 +0000675
676 /// EvaluatingDeclValue - This is the value being constructed for the
677 /// declaration whose initializer is being evaluated, if any.
678 APValue *EvaluatingDeclValue;
679
Erik Pilkington42925492017-10-04 00:18:55 +0000680 /// EvaluatingObject - Pair of the AST node that an lvalue represents and
681 /// the call index that that lvalue was allocated in.
Akira Hatanaka4e2698c2018-04-10 05:15:01 +0000682 typedef std::pair<APValue::LValueBase, std::pair<unsigned, unsigned>>
683 EvaluatingObject;
Erik Pilkington42925492017-10-04 00:18:55 +0000684
685 /// EvaluatingConstructors - Set of objects that are currently being
686 /// constructed.
687 llvm::DenseSet<EvaluatingObject> EvaluatingConstructors;
688
689 struct EvaluatingConstructorRAII {
690 EvalInfo &EI;
691 EvaluatingObject Object;
692 bool DidInsert;
693 EvaluatingConstructorRAII(EvalInfo &EI, EvaluatingObject Object)
694 : EI(EI), Object(Object) {
695 DidInsert = EI.EvaluatingConstructors.insert(Object).second;
696 }
697 ~EvaluatingConstructorRAII() {
698 if (DidInsert) EI.EvaluatingConstructors.erase(Object);
699 }
700 };
701
Akira Hatanaka4e2698c2018-04-10 05:15:01 +0000702 bool isEvaluatingConstructor(APValue::LValueBase Decl, unsigned CallIndex,
703 unsigned Version) {
704 return EvaluatingConstructors.count(
705 EvaluatingObject(Decl, {CallIndex, Version}));
Erik Pilkington42925492017-10-04 00:18:55 +0000706 }
707
Richard Smith410306b2016-12-12 02:53:20 +0000708 /// The current array initialization index, if we're performing array
709 /// initialization.
710 uint64_t ArrayInitIndex = -1;
711
Richard Smith357362d2011-12-13 06:39:58 +0000712 /// HasActiveDiagnostic - Was the previous diagnostic stored? If so, further
713 /// notes attached to it will also be stored, otherwise they will not be.
714 bool HasActiveDiagnostic;
715
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000716 /// Have we emitted a diagnostic explaining why we couldn't constant
Richard Smith0c6124b2015-12-03 01:36:22 +0000717 /// fold (not just why it's not strictly a constant expression)?
718 bool HasFoldFailureDiagnostic;
719
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000720 /// Whether or not we're currently speculatively evaluating.
George Burgess IV8c892b52016-05-25 22:31:54 +0000721 bool IsSpeculativelyEvaluating;
722
Richard Smith6d4c6582013-11-05 22:18:15 +0000723 enum EvaluationMode {
724 /// Evaluate as a constant expression. Stop if we find that the expression
725 /// is not a constant expression.
726 EM_ConstantExpression,
Richard Smith08d6a2c2013-07-24 07:11:57 +0000727
Richard Smith6d4c6582013-11-05 22:18:15 +0000728 /// Evaluate as a potential constant expression. Keep going if we hit a
729 /// construct that we can't evaluate yet (because we don't yet know the
730 /// value of something) but stop if we hit something that could never be
731 /// a constant expression.
732 EM_PotentialConstantExpression,
Richard Smith253c2a32012-01-27 01:14:48 +0000733
Richard Smith6d4c6582013-11-05 22:18:15 +0000734 /// Fold the expression to a constant. Stop if we hit a side-effect that
735 /// we can't model.
736 EM_ConstantFold,
737
738 /// Evaluate the expression looking for integer overflow and similar
739 /// issues. Don't worry about side-effects, and try to visit all
740 /// subexpressions.
741 EM_EvaluateForOverflow,
742
743 /// Evaluate in any way we know how. Don't worry about side-effects that
744 /// can't be modeled.
Nick Lewycky35a6ef42014-01-11 02:50:57 +0000745 EM_IgnoreSideEffects,
746
747 /// Evaluate as a constant expression. Stop if we find that the expression
748 /// is not a constant expression. Some expressions can be retried in the
749 /// optimizer if we don't constant fold them here, but in an unevaluated
750 /// context we try to fold them immediately since the optimizer never
751 /// gets a chance to look at it.
752 EM_ConstantExpressionUnevaluated,
753
754 /// Evaluate as a potential constant expression. Keep going if we hit a
755 /// construct that we can't evaluate yet (because we don't yet know the
756 /// value of something) but stop if we hit something that could never be
757 /// a constant expression. Some expressions can be retried in the
758 /// optimizer if we don't constant fold them here, but in an unevaluated
759 /// context we try to fold them immediately since the optimizer never
760 /// gets a chance to look at it.
George Burgess IV3a03fab2015-09-04 21:28:13 +0000761 EM_PotentialConstantExpressionUnevaluated,
762
George Burgess IVf9013bf2017-02-10 22:52:29 +0000763 /// Evaluate as a constant expression. In certain scenarios, if:
764 /// - we find a MemberExpr with a base that can't be evaluated, or
765 /// - we find a variable initialized with a call to a function that has
766 /// the alloc_size attribute on it
767 /// then we may consider evaluation to have succeeded.
768 ///
George Burgess IVe3763372016-12-22 02:50:20 +0000769 /// In either case, the LValue returned shall have an invalid base; in the
770 /// former, the base will be the invalid MemberExpr, in the latter, the
771 /// base will be either the alloc_size CallExpr or a CastExpr wrapping
772 /// said CallExpr.
773 EM_OffsetFold,
Richard Smith6d4c6582013-11-05 22:18:15 +0000774 } EvalMode;
775
776 /// Are we checking whether the expression is a potential constant
777 /// expression?
778 bool checkingPotentialConstantExpression() const {
Nick Lewycky35a6ef42014-01-11 02:50:57 +0000779 return EvalMode == EM_PotentialConstantExpression ||
780 EvalMode == EM_PotentialConstantExpressionUnevaluated;
Richard Smith6d4c6582013-11-05 22:18:15 +0000781 }
782
783 /// Are we checking an expression for overflow?
784 // FIXME: We should check for any kind of undefined or suspicious behavior
785 // in such constructs, not just overflow.
786 bool checkingForOverflow() { return EvalMode == EM_EvaluateForOverflow; }
787
788 EvalInfo(const ASTContext &C, Expr::EvalStatus &S, EvaluationMode Mode)
Craig Topper36250ad2014-05-12 05:36:57 +0000789 : Ctx(const_cast<ASTContext &>(C)), EvalStatus(S), CurrentCall(nullptr),
Richard Smithb228a862012-02-15 02:18:13 +0000790 CallStackDepth(0), NextCallIndex(1),
Richard Smitha3d3bd22013-05-08 02:12:03 +0000791 StepsLeft(getLangOpts().ConstexprStepLimit),
Craig Topper36250ad2014-05-12 05:36:57 +0000792 BottomFrame(*this, SourceLocation(), nullptr, nullptr, nullptr),
793 EvaluatingDecl((const ValueDecl *)nullptr),
794 EvaluatingDeclValue(nullptr), HasActiveDiagnostic(false),
George Burgess IV8c892b52016-05-25 22:31:54 +0000795 HasFoldFailureDiagnostic(false), IsSpeculativelyEvaluating(false),
796 EvalMode(Mode) {}
Richard Smith4e4c78ff2011-10-31 05:52:43 +0000797
Richard Smith7525ff62013-05-09 07:14:00 +0000798 void setEvaluatingDecl(APValue::LValueBase Base, APValue &Value) {
799 EvaluatingDecl = Base;
Richard Smithd62306a2011-11-10 06:34:14 +0000800 EvaluatingDeclValue = &Value;
Akira Hatanaka4e2698c2018-04-10 05:15:01 +0000801 EvaluatingConstructors.insert({Base, {0, 0}});
Richard Smithd62306a2011-11-10 06:34:14 +0000802 }
803
David Blaikiebbafb8a2012-03-11 07:00:24 +0000804 const LangOptions &getLangOpts() const { return Ctx.getLangOpts(); }
Richard Smith9a568822011-11-21 19:36:32 +0000805
Richard Smith357362d2011-12-13 06:39:58 +0000806 bool CheckCallLimit(SourceLocation Loc) {
Richard Smith253c2a32012-01-27 01:14:48 +0000807 // Don't perform any constexpr calls (other than the call we're checking)
808 // when checking a potential constant expression.
Richard Smith6d4c6582013-11-05 22:18:15 +0000809 if (checkingPotentialConstantExpression() && CallStackDepth > 1)
Richard Smith253c2a32012-01-27 01:14:48 +0000810 return false;
Richard Smithb228a862012-02-15 02:18:13 +0000811 if (NextCallIndex == 0) {
812 // NextCallIndex has wrapped around.
Faisal Valie690b7a2016-07-02 22:34:24 +0000813 FFDiag(Loc, diag::note_constexpr_call_limit_exceeded);
Richard Smithb228a862012-02-15 02:18:13 +0000814 return false;
815 }
Richard Smith357362d2011-12-13 06:39:58 +0000816 if (CallStackDepth <= getLangOpts().ConstexprCallDepth)
817 return true;
Faisal Valie690b7a2016-07-02 22:34:24 +0000818 FFDiag(Loc, diag::note_constexpr_depth_limit_exceeded)
Richard Smith357362d2011-12-13 06:39:58 +0000819 << getLangOpts().ConstexprCallDepth;
820 return false;
Richard Smith9a568822011-11-21 19:36:32 +0000821 }
Richard Smithf57d8cb2011-12-09 22:58:01 +0000822
Richard Smithb228a862012-02-15 02:18:13 +0000823 CallStackFrame *getCallFrame(unsigned CallIndex) {
824 assert(CallIndex && "no call index in getCallFrame");
825 // We will eventually hit BottomFrame, which has Index 1, so Frame can't
826 // be null in this loop.
827 CallStackFrame *Frame = CurrentCall;
828 while (Frame->Index > CallIndex)
829 Frame = Frame->Caller;
Craig Topper36250ad2014-05-12 05:36:57 +0000830 return (Frame->Index == CallIndex) ? Frame : nullptr;
Richard Smithb228a862012-02-15 02:18:13 +0000831 }
832
Richard Smitha3d3bd22013-05-08 02:12:03 +0000833 bool nextStep(const Stmt *S) {
834 if (!StepsLeft) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000835 FFDiag(S->getBeginLoc(), diag::note_constexpr_step_limit_exceeded);
Richard Smitha3d3bd22013-05-08 02:12:03 +0000836 return false;
837 }
838 --StepsLeft;
839 return true;
840 }
841
Richard Smith357362d2011-12-13 06:39:58 +0000842 private:
843 /// Add a diagnostic to the diagnostics list.
844 PartialDiagnostic &addDiag(SourceLocation Loc, diag::kind DiagId) {
845 PartialDiagnostic PD(DiagId, Ctx.getDiagAllocator());
846 EvalStatus.Diag->push_back(std::make_pair(Loc, PD));
847 return EvalStatus.Diag->back().second;
848 }
849
Richard Smithf6f003a2011-12-16 19:06:07 +0000850 /// Add notes containing a call stack to the current point of evaluation.
851 void addCallStack(unsigned Limit);
852
Faisal Valie690b7a2016-07-02 22:34:24 +0000853 private:
854 OptionalDiagnostic Diag(SourceLocation Loc, diag::kind DiagId,
855 unsigned ExtraNotes, bool IsCCEDiag) {
Fangrui Song6907ce22018-07-30 19:24:48 +0000856
Richard Smith92b1ce02011-12-12 09:28:41 +0000857 if (EvalStatus.Diag) {
Richard Smith6d4c6582013-11-05 22:18:15 +0000858 // If we have a prior diagnostic, it will be noting that the expression
859 // isn't a constant expression. This diagnostic is more important,
860 // unless we require this evaluation to produce a constant expression.
861 //
862 // FIXME: We might want to show both diagnostics to the user in
863 // EM_ConstantFold mode.
864 if (!EvalStatus.Diag->empty()) {
865 switch (EvalMode) {
Richard Smith4e66f1f2013-11-06 02:19:10 +0000866 case EM_ConstantFold:
867 case EM_IgnoreSideEffects:
868 case EM_EvaluateForOverflow:
Richard Smith0c6124b2015-12-03 01:36:22 +0000869 if (!HasFoldFailureDiagnostic)
Richard Smith4e66f1f2013-11-06 02:19:10 +0000870 break;
Richard Smith0c6124b2015-12-03 01:36:22 +0000871 // We've already failed to fold something. Keep that diagnostic.
Galina Kistanovaf87496d2017-06-03 06:31:42 +0000872 LLVM_FALLTHROUGH;
Richard Smith6d4c6582013-11-05 22:18:15 +0000873 case EM_ConstantExpression:
874 case EM_PotentialConstantExpression:
Nick Lewycky35a6ef42014-01-11 02:50:57 +0000875 case EM_ConstantExpressionUnevaluated:
876 case EM_PotentialConstantExpressionUnevaluated:
George Burgess IVe3763372016-12-22 02:50:20 +0000877 case EM_OffsetFold:
Richard Smith6d4c6582013-11-05 22:18:15 +0000878 HasActiveDiagnostic = false;
879 return OptionalDiagnostic();
Richard Smith6d4c6582013-11-05 22:18:15 +0000880 }
881 }
882
Richard Smithf6f003a2011-12-16 19:06:07 +0000883 unsigned CallStackNotes = CallStackDepth - 1;
884 unsigned Limit = Ctx.getDiagnostics().getConstexprBacktraceLimit();
885 if (Limit)
886 CallStackNotes = std::min(CallStackNotes, Limit + 1);
Richard Smith6d4c6582013-11-05 22:18:15 +0000887 if (checkingPotentialConstantExpression())
Richard Smith253c2a32012-01-27 01:14:48 +0000888 CallStackNotes = 0;
Richard Smithf6f003a2011-12-16 19:06:07 +0000889
Richard Smith357362d2011-12-13 06:39:58 +0000890 HasActiveDiagnostic = true;
Richard Smith0c6124b2015-12-03 01:36:22 +0000891 HasFoldFailureDiagnostic = !IsCCEDiag;
Richard Smith92b1ce02011-12-12 09:28:41 +0000892 EvalStatus.Diag->clear();
Richard Smithf6f003a2011-12-16 19:06:07 +0000893 EvalStatus.Diag->reserve(1 + ExtraNotes + CallStackNotes);
894 addDiag(Loc, DiagId);
Richard Smith6d4c6582013-11-05 22:18:15 +0000895 if (!checkingPotentialConstantExpression())
Richard Smith253c2a32012-01-27 01:14:48 +0000896 addCallStack(Limit);
Richard Smithf6f003a2011-12-16 19:06:07 +0000897 return OptionalDiagnostic(&(*EvalStatus.Diag)[0].second);
Richard Smith92b1ce02011-12-12 09:28:41 +0000898 }
Richard Smith357362d2011-12-13 06:39:58 +0000899 HasActiveDiagnostic = false;
Richard Smith92b1ce02011-12-12 09:28:41 +0000900 return OptionalDiagnostic();
901 }
Faisal Valie690b7a2016-07-02 22:34:24 +0000902 public:
903 // Diagnose that the evaluation could not be folded (FF => FoldFailure)
904 OptionalDiagnostic
905 FFDiag(SourceLocation Loc,
906 diag::kind DiagId = diag::note_invalid_subexpr_in_const_expr,
907 unsigned ExtraNotes = 0) {
908 return Diag(Loc, DiagId, ExtraNotes, false);
909 }
Fangrui Song6907ce22018-07-30 19:24:48 +0000910
Faisal Valie690b7a2016-07-02 22:34:24 +0000911 OptionalDiagnostic FFDiag(const Expr *E, diag::kind DiagId
Richard Smithce1ec5e2012-03-15 04:53:45 +0000912 = diag::note_invalid_subexpr_in_const_expr,
Faisal Valie690b7a2016-07-02 22:34:24 +0000913 unsigned ExtraNotes = 0) {
Richard Smithce1ec5e2012-03-15 04:53:45 +0000914 if (EvalStatus.Diag)
Faisal Valie690b7a2016-07-02 22:34:24 +0000915 return Diag(E->getExprLoc(), DiagId, ExtraNotes, /*IsCCEDiag*/false);
Richard Smithce1ec5e2012-03-15 04:53:45 +0000916 HasActiveDiagnostic = false;
917 return OptionalDiagnostic();
918 }
919
Richard Smith92b1ce02011-12-12 09:28:41 +0000920 /// Diagnose that the evaluation does not produce a C++11 core constant
921 /// expression.
Richard Smith6d4c6582013-11-05 22:18:15 +0000922 ///
923 /// FIXME: Stop evaluating if we're in EM_ConstantExpression or
924 /// EM_PotentialConstantExpression mode and we produce one of these.
Faisal Valie690b7a2016-07-02 22:34:24 +0000925 OptionalDiagnostic CCEDiag(SourceLocation Loc, diag::kind DiagId
Richard Smithf2b681b2011-12-21 05:04:46 +0000926 = diag::note_invalid_subexpr_in_const_expr,
Richard Smith357362d2011-12-13 06:39:58 +0000927 unsigned ExtraNotes = 0) {
Richard Smith6d4c6582013-11-05 22:18:15 +0000928 // Don't override a previous diagnostic. Don't bother collecting
929 // diagnostics if we're evaluating for overflow.
Richard Smithe9ff7702013-11-05 22:23:30 +0000930 if (!EvalStatus.Diag || !EvalStatus.Diag->empty()) {
Eli Friedmanebea9af2012-02-21 22:41:33 +0000931 HasActiveDiagnostic = false;
Richard Smith92b1ce02011-12-12 09:28:41 +0000932 return OptionalDiagnostic();
Eli Friedmanebea9af2012-02-21 22:41:33 +0000933 }
Richard Smith0c6124b2015-12-03 01:36:22 +0000934 return Diag(Loc, DiagId, ExtraNotes, true);
Richard Smith357362d2011-12-13 06:39:58 +0000935 }
Faisal Valie690b7a2016-07-02 22:34:24 +0000936 OptionalDiagnostic CCEDiag(const Expr *E, diag::kind DiagId
937 = diag::note_invalid_subexpr_in_const_expr,
938 unsigned ExtraNotes = 0) {
939 return CCEDiag(E->getExprLoc(), DiagId, ExtraNotes);
940 }
Richard Smith357362d2011-12-13 06:39:58 +0000941 /// Add a note to a prior diagnostic.
942 OptionalDiagnostic Note(SourceLocation Loc, diag::kind DiagId) {
943 if (!HasActiveDiagnostic)
944 return OptionalDiagnostic();
945 return OptionalDiagnostic(&addDiag(Loc, DiagId));
Richard Smithf57d8cb2011-12-09 22:58:01 +0000946 }
Richard Smithd0b4dd62011-12-19 06:19:21 +0000947
948 /// Add a stack of notes to a prior diagnostic.
949 void addNotes(ArrayRef<PartialDiagnosticAt> Diags) {
950 if (HasActiveDiagnostic) {
951 EvalStatus.Diag->insert(EvalStatus.Diag->end(),
952 Diags.begin(), Diags.end());
953 }
954 }
Richard Smith253c2a32012-01-27 01:14:48 +0000955
Richard Smith6d4c6582013-11-05 22:18:15 +0000956 /// Should we continue evaluation after encountering a side-effect that we
957 /// couldn't model?
958 bool keepEvaluatingAfterSideEffect() {
959 switch (EvalMode) {
Richard Smith4e66f1f2013-11-06 02:19:10 +0000960 case EM_PotentialConstantExpression:
Nick Lewycky35a6ef42014-01-11 02:50:57 +0000961 case EM_PotentialConstantExpressionUnevaluated:
Richard Smith6d4c6582013-11-05 22:18:15 +0000962 case EM_EvaluateForOverflow:
963 case EM_IgnoreSideEffects:
964 return true;
965
Richard Smith6d4c6582013-11-05 22:18:15 +0000966 case EM_ConstantExpression:
Nick Lewycky35a6ef42014-01-11 02:50:57 +0000967 case EM_ConstantExpressionUnevaluated:
Richard Smith6d4c6582013-11-05 22:18:15 +0000968 case EM_ConstantFold:
George Burgess IVe3763372016-12-22 02:50:20 +0000969 case EM_OffsetFold:
Richard Smith6d4c6582013-11-05 22:18:15 +0000970 return false;
971 }
Aaron Ballmanf682f532013-11-06 18:15:02 +0000972 llvm_unreachable("Missed EvalMode case");
Richard Smith6d4c6582013-11-05 22:18:15 +0000973 }
974
975 /// Note that we have had a side-effect, and determine whether we should
976 /// keep evaluating.
977 bool noteSideEffect() {
978 EvalStatus.HasSideEffects = true;
979 return keepEvaluatingAfterSideEffect();
980 }
981
Richard Smithce8eca52015-12-08 03:21:47 +0000982 /// Should we continue evaluation after encountering undefined behavior?
983 bool keepEvaluatingAfterUndefinedBehavior() {
984 switch (EvalMode) {
985 case EM_EvaluateForOverflow:
986 case EM_IgnoreSideEffects:
987 case EM_ConstantFold:
George Burgess IVe3763372016-12-22 02:50:20 +0000988 case EM_OffsetFold:
Richard Smithce8eca52015-12-08 03:21:47 +0000989 return true;
990
991 case EM_PotentialConstantExpression:
992 case EM_PotentialConstantExpressionUnevaluated:
993 case EM_ConstantExpression:
994 case EM_ConstantExpressionUnevaluated:
995 return false;
996 }
997 llvm_unreachable("Missed EvalMode case");
998 }
999
1000 /// Note that we hit something that was technically undefined behavior, but
1001 /// that we can evaluate past it (such as signed overflow or floating-point
1002 /// division by zero.)
1003 bool noteUndefinedBehavior() {
1004 EvalStatus.HasUndefinedBehavior = true;
1005 return keepEvaluatingAfterUndefinedBehavior();
1006 }
1007
Richard Smith253c2a32012-01-27 01:14:48 +00001008 /// Should we continue evaluation as much as possible after encountering a
Richard Smith6d4c6582013-11-05 22:18:15 +00001009 /// construct which can't be reduced to a value?
Richard Smith253c2a32012-01-27 01:14:48 +00001010 bool keepEvaluatingAfterFailure() {
Richard Smith6d4c6582013-11-05 22:18:15 +00001011 if (!StepsLeft)
1012 return false;
1013
1014 switch (EvalMode) {
1015 case EM_PotentialConstantExpression:
Nick Lewycky35a6ef42014-01-11 02:50:57 +00001016 case EM_PotentialConstantExpressionUnevaluated:
Richard Smith6d4c6582013-11-05 22:18:15 +00001017 case EM_EvaluateForOverflow:
1018 return true;
1019
1020 case EM_ConstantExpression:
Nick Lewycky35a6ef42014-01-11 02:50:57 +00001021 case EM_ConstantExpressionUnevaluated:
Richard Smith6d4c6582013-11-05 22:18:15 +00001022 case EM_ConstantFold:
1023 case EM_IgnoreSideEffects:
George Burgess IVe3763372016-12-22 02:50:20 +00001024 case EM_OffsetFold:
Richard Smith6d4c6582013-11-05 22:18:15 +00001025 return false;
1026 }
Aaron Ballmanf682f532013-11-06 18:15:02 +00001027 llvm_unreachable("Missed EvalMode case");
Richard Smith253c2a32012-01-27 01:14:48 +00001028 }
George Burgess IV3a03fab2015-09-04 21:28:13 +00001029
George Burgess IV8c892b52016-05-25 22:31:54 +00001030 /// Notes that we failed to evaluate an expression that other expressions
1031 /// directly depend on, and determine if we should keep evaluating. This
1032 /// should only be called if we actually intend to keep evaluating.
1033 ///
1034 /// Call noteSideEffect() instead if we may be able to ignore the value that
1035 /// we failed to evaluate, e.g. if we failed to evaluate Foo() in:
1036 ///
1037 /// (Foo(), 1) // use noteSideEffect
1038 /// (Foo() || true) // use noteSideEffect
1039 /// Foo() + 1 // use noteFailure
Justin Bognerfe183d72016-10-17 06:46:35 +00001040 LLVM_NODISCARD bool noteFailure() {
George Burgess IV8c892b52016-05-25 22:31:54 +00001041 // Failure when evaluating some expression often means there is some
1042 // subexpression whose evaluation was skipped. Therefore, (because we
1043 // don't track whether we skipped an expression when unwinding after an
1044 // evaluation failure) every evaluation failure that bubbles up from a
1045 // subexpression implies that a side-effect has potentially happened. We
1046 // skip setting the HasSideEffects flag to true until we decide to
1047 // continue evaluating after that point, which happens here.
1048 bool KeepGoing = keepEvaluatingAfterFailure();
1049 EvalStatus.HasSideEffects |= KeepGoing;
1050 return KeepGoing;
1051 }
1052
Richard Smith410306b2016-12-12 02:53:20 +00001053 class ArrayInitLoopIndex {
1054 EvalInfo &Info;
1055 uint64_t OuterIndex;
1056
1057 public:
1058 ArrayInitLoopIndex(EvalInfo &Info)
1059 : Info(Info), OuterIndex(Info.ArrayInitIndex) {
1060 Info.ArrayInitIndex = 0;
1061 }
1062 ~ArrayInitLoopIndex() { Info.ArrayInitIndex = OuterIndex; }
1063
1064 operator uint64_t&() { return Info.ArrayInitIndex; }
1065 };
Richard Smith4e4c78ff2011-10-31 05:52:43 +00001066 };
Richard Smith84f6dcf2012-02-02 01:16:57 +00001067
1068 /// Object used to treat all foldable expressions as constant expressions.
1069 struct FoldConstant {
Richard Smith6d4c6582013-11-05 22:18:15 +00001070 EvalInfo &Info;
Richard Smith84f6dcf2012-02-02 01:16:57 +00001071 bool Enabled;
Richard Smith6d4c6582013-11-05 22:18:15 +00001072 bool HadNoPriorDiags;
1073 EvalInfo::EvaluationMode OldMode;
Richard Smith84f6dcf2012-02-02 01:16:57 +00001074
Richard Smith6d4c6582013-11-05 22:18:15 +00001075 explicit FoldConstant(EvalInfo &Info, bool Enabled)
1076 : Info(Info),
1077 Enabled(Enabled),
1078 HadNoPriorDiags(Info.EvalStatus.Diag &&
1079 Info.EvalStatus.Diag->empty() &&
1080 !Info.EvalStatus.HasSideEffects),
1081 OldMode(Info.EvalMode) {
Nick Lewycky35a6ef42014-01-11 02:50:57 +00001082 if (Enabled &&
1083 (Info.EvalMode == EvalInfo::EM_ConstantExpression ||
1084 Info.EvalMode == EvalInfo::EM_ConstantExpressionUnevaluated))
Richard Smith6d4c6582013-11-05 22:18:15 +00001085 Info.EvalMode = EvalInfo::EM_ConstantFold;
Richard Smith84f6dcf2012-02-02 01:16:57 +00001086 }
Richard Smith6d4c6582013-11-05 22:18:15 +00001087 void keepDiagnostics() { Enabled = false; }
1088 ~FoldConstant() {
1089 if (Enabled && HadNoPriorDiags && !Info.EvalStatus.Diag->empty() &&
Richard Smith84f6dcf2012-02-02 01:16:57 +00001090 !Info.EvalStatus.HasSideEffects)
1091 Info.EvalStatus.Diag->clear();
Richard Smith6d4c6582013-11-05 22:18:15 +00001092 Info.EvalMode = OldMode;
Richard Smith84f6dcf2012-02-02 01:16:57 +00001093 }
1094 };
Richard Smith17100ba2012-02-16 02:46:34 +00001095
George Burgess IV3a03fab2015-09-04 21:28:13 +00001096 /// RAII object used to treat the current evaluation as the correct pointer
1097 /// offset fold for the current EvalMode
1098 struct FoldOffsetRAII {
1099 EvalInfo &Info;
1100 EvalInfo::EvaluationMode OldMode;
George Burgess IVe3763372016-12-22 02:50:20 +00001101 explicit FoldOffsetRAII(EvalInfo &Info)
George Burgess IV3a03fab2015-09-04 21:28:13 +00001102 : Info(Info), OldMode(Info.EvalMode) {
1103 if (!Info.checkingPotentialConstantExpression())
George Burgess IVe3763372016-12-22 02:50:20 +00001104 Info.EvalMode = EvalInfo::EM_OffsetFold;
George Burgess IV3a03fab2015-09-04 21:28:13 +00001105 }
1106
1107 ~FoldOffsetRAII() { Info.EvalMode = OldMode; }
1108 };
1109
George Burgess IV8c892b52016-05-25 22:31:54 +00001110 /// RAII object used to optionally suppress diagnostics and side-effects from
1111 /// a speculative evaluation.
Richard Smith17100ba2012-02-16 02:46:34 +00001112 class SpeculativeEvaluationRAII {
Chandler Carruthbacb80d2017-08-16 07:22:49 +00001113 EvalInfo *Info = nullptr;
Reid Klecknerfdb3df62017-08-15 01:17:47 +00001114 Expr::EvalStatus OldStatus;
1115 bool OldIsSpeculativelyEvaluating;
Richard Smith17100ba2012-02-16 02:46:34 +00001116
George Burgess IV8c892b52016-05-25 22:31:54 +00001117 void moveFromAndCancel(SpeculativeEvaluationRAII &&Other) {
Reid Klecknerfdb3df62017-08-15 01:17:47 +00001118 Info = Other.Info;
1119 OldStatus = Other.OldStatus;
Daniel Jaspera7e061f2017-08-17 06:33:46 +00001120 OldIsSpeculativelyEvaluating = Other.OldIsSpeculativelyEvaluating;
Reid Klecknerfdb3df62017-08-15 01:17:47 +00001121 Other.Info = nullptr;
George Burgess IV8c892b52016-05-25 22:31:54 +00001122 }
1123
1124 void maybeRestoreState() {
George Burgess IV8c892b52016-05-25 22:31:54 +00001125 if (!Info)
1126 return;
1127
Reid Klecknerfdb3df62017-08-15 01:17:47 +00001128 Info->EvalStatus = OldStatus;
1129 Info->IsSpeculativelyEvaluating = OldIsSpeculativelyEvaluating;
George Burgess IV8c892b52016-05-25 22:31:54 +00001130 }
1131
Richard Smith17100ba2012-02-16 02:46:34 +00001132 public:
George Burgess IV8c892b52016-05-25 22:31:54 +00001133 SpeculativeEvaluationRAII() = default;
1134
1135 SpeculativeEvaluationRAII(
1136 EvalInfo &Info, SmallVectorImpl<PartialDiagnosticAt> *NewDiag = nullptr)
Reid Klecknerfdb3df62017-08-15 01:17:47 +00001137 : Info(&Info), OldStatus(Info.EvalStatus),
1138 OldIsSpeculativelyEvaluating(Info.IsSpeculativelyEvaluating) {
Richard Smith17100ba2012-02-16 02:46:34 +00001139 Info.EvalStatus.Diag = NewDiag;
George Burgess IV8c892b52016-05-25 22:31:54 +00001140 Info.IsSpeculativelyEvaluating = true;
Richard Smith17100ba2012-02-16 02:46:34 +00001141 }
George Burgess IV8c892b52016-05-25 22:31:54 +00001142
1143 SpeculativeEvaluationRAII(const SpeculativeEvaluationRAII &Other) = delete;
1144 SpeculativeEvaluationRAII(SpeculativeEvaluationRAII &&Other) {
1145 moveFromAndCancel(std::move(Other));
Richard Smith17100ba2012-02-16 02:46:34 +00001146 }
George Burgess IV8c892b52016-05-25 22:31:54 +00001147
1148 SpeculativeEvaluationRAII &operator=(SpeculativeEvaluationRAII &&Other) {
1149 maybeRestoreState();
1150 moveFromAndCancel(std::move(Other));
1151 return *this;
1152 }
1153
1154 ~SpeculativeEvaluationRAII() { maybeRestoreState(); }
Richard Smith17100ba2012-02-16 02:46:34 +00001155 };
Richard Smith08d6a2c2013-07-24 07:11:57 +00001156
1157 /// RAII object wrapping a full-expression or block scope, and handling
1158 /// the ending of the lifetime of temporaries created within it.
1159 template<bool IsFullExpression>
1160 class ScopeRAII {
1161 EvalInfo &Info;
1162 unsigned OldStackSize;
1163 public:
1164 ScopeRAII(EvalInfo &Info)
Akira Hatanaka4e2698c2018-04-10 05:15:01 +00001165 : Info(Info), OldStackSize(Info.CleanupStack.size()) {
1166 // Push a new temporary version. This is needed to distinguish between
1167 // temporaries created in different iterations of a loop.
1168 Info.CurrentCall->pushTempVersion();
1169 }
Richard Smith08d6a2c2013-07-24 07:11:57 +00001170 ~ScopeRAII() {
1171 // Body moved to a static method to encourage the compiler to inline away
1172 // instances of this class.
1173 cleanup(Info, OldStackSize);
Akira Hatanaka4e2698c2018-04-10 05:15:01 +00001174 Info.CurrentCall->popTempVersion();
Richard Smith08d6a2c2013-07-24 07:11:57 +00001175 }
1176 private:
1177 static void cleanup(EvalInfo &Info, unsigned OldStackSize) {
1178 unsigned NewEnd = OldStackSize;
1179 for (unsigned I = OldStackSize, N = Info.CleanupStack.size();
1180 I != N; ++I) {
1181 if (IsFullExpression && Info.CleanupStack[I].isLifetimeExtended()) {
1182 // Full-expression cleanup of a lifetime-extended temporary: nothing
1183 // to do, just move this cleanup to the right place in the stack.
1184 std::swap(Info.CleanupStack[I], Info.CleanupStack[NewEnd]);
1185 ++NewEnd;
1186 } else {
1187 // End the lifetime of the object.
1188 Info.CleanupStack[I].endLifetime();
1189 }
1190 }
1191 Info.CleanupStack.erase(Info.CleanupStack.begin() + NewEnd,
1192 Info.CleanupStack.end());
1193 }
1194 };
1195 typedef ScopeRAII<false> BlockScopeRAII;
1196 typedef ScopeRAII<true> FullExpressionRAII;
Alexander Kornienkoab9db512015-06-22 23:07:51 +00001197}
Richard Smith4e4c78ff2011-10-31 05:52:43 +00001198
Richard Smitha8105bc2012-01-06 16:39:00 +00001199bool SubobjectDesignator::checkSubobject(EvalInfo &Info, const Expr *E,
1200 CheckSubobjectKind CSK) {
1201 if (Invalid)
1202 return false;
1203 if (isOnePastTheEnd()) {
Richard Smithce1ec5e2012-03-15 04:53:45 +00001204 Info.CCEDiag(E, diag::note_constexpr_past_end_subobject)
Richard Smitha8105bc2012-01-06 16:39:00 +00001205 << CSK;
1206 setInvalid();
1207 return false;
1208 }
Richard Smith6f4f0f12017-10-20 22:56:25 +00001209 // Note, we do not diagnose if isMostDerivedAnUnsizedArray(), because there
1210 // must actually be at least one array element; even a VLA cannot have a
1211 // bound of zero. And if our index is nonzero, we already had a CCEDiag.
Richard Smitha8105bc2012-01-06 16:39:00 +00001212 return true;
1213}
1214
Richard Smith6f4f0f12017-10-20 22:56:25 +00001215void SubobjectDesignator::diagnoseUnsizedArrayPointerArithmetic(EvalInfo &Info,
1216 const Expr *E) {
1217 Info.CCEDiag(E, diag::note_constexpr_unsized_array_indexed);
1218 // Do not set the designator as invalid: we can represent this situation,
1219 // and correct handling of __builtin_object_size requires us to do so.
1220}
1221
Richard Smitha8105bc2012-01-06 16:39:00 +00001222void SubobjectDesignator::diagnosePointerArithmetic(EvalInfo &Info,
Benjamin Kramerf6021ec2017-03-21 21:35:04 +00001223 const Expr *E,
1224 const APSInt &N) {
George Burgess IVe3763372016-12-22 02:50:20 +00001225 // If we're complaining, we must be able to statically determine the size of
1226 // the most derived array.
George Burgess IVa51c4072015-10-16 01:49:01 +00001227 if (MostDerivedPathLength == Entries.size() && MostDerivedIsArrayElement)
Richard Smithce1ec5e2012-03-15 04:53:45 +00001228 Info.CCEDiag(E, diag::note_constexpr_array_index)
Richard Smithd6cc1982017-01-31 02:23:02 +00001229 << N << /*array*/ 0
George Burgess IVe3763372016-12-22 02:50:20 +00001230 << static_cast<unsigned>(getMostDerivedArraySize());
Richard Smitha8105bc2012-01-06 16:39:00 +00001231 else
Richard Smithce1ec5e2012-03-15 04:53:45 +00001232 Info.CCEDiag(E, diag::note_constexpr_array_index)
Richard Smithd6cc1982017-01-31 02:23:02 +00001233 << N << /*non-array*/ 1;
Richard Smitha8105bc2012-01-06 16:39:00 +00001234 setInvalid();
1235}
1236
Richard Smithf6f003a2011-12-16 19:06:07 +00001237CallStackFrame::CallStackFrame(EvalInfo &Info, SourceLocation CallLoc,
1238 const FunctionDecl *Callee, const LValue *This,
Richard Smith3da88fa2013-04-26 14:36:30 +00001239 APValue *Arguments)
Samuel Antao1197a162016-09-19 18:13:13 +00001240 : Info(Info), Caller(Info.CurrentCall), Callee(Callee), This(This),
1241 Arguments(Arguments), CallLoc(CallLoc), Index(Info.NextCallIndex++) {
Richard Smithf6f003a2011-12-16 19:06:07 +00001242 Info.CurrentCall = this;
1243 ++Info.CallStackDepth;
1244}
1245
1246CallStackFrame::~CallStackFrame() {
1247 assert(Info.CurrentCall == this && "calls retired out of order");
1248 --Info.CallStackDepth;
1249 Info.CurrentCall = Caller;
1250}
1251
Richard Smith08d6a2c2013-07-24 07:11:57 +00001252APValue &CallStackFrame::createTemporary(const void *Key,
1253 bool IsLifetimeExtended) {
Akira Hatanaka4e2698c2018-04-10 05:15:01 +00001254 unsigned Version = Info.CurrentCall->getTempVersion();
1255 APValue &Result = Temporaries[MapKeyTy(Key, Version)];
Richard Smith08d6a2c2013-07-24 07:11:57 +00001256 assert(Result.isUninit() && "temporary created multiple times");
1257 Info.CleanupStack.push_back(Cleanup(&Result, IsLifetimeExtended));
1258 return Result;
1259}
1260
Richard Smith84401042013-06-03 05:03:02 +00001261static void describeCall(CallStackFrame *Frame, raw_ostream &Out);
Richard Smithf6f003a2011-12-16 19:06:07 +00001262
1263void EvalInfo::addCallStack(unsigned Limit) {
1264 // Determine which calls to skip, if any.
1265 unsigned ActiveCalls = CallStackDepth - 1;
1266 unsigned SkipStart = ActiveCalls, SkipEnd = SkipStart;
1267 if (Limit && Limit < ActiveCalls) {
1268 SkipStart = Limit / 2 + Limit % 2;
1269 SkipEnd = ActiveCalls - Limit / 2;
Richard Smith4e4c78ff2011-10-31 05:52:43 +00001270 }
1271
Richard Smithf6f003a2011-12-16 19:06:07 +00001272 // Walk the call stack and add the diagnostics.
1273 unsigned CallIdx = 0;
1274 for (CallStackFrame *Frame = CurrentCall; Frame != &BottomFrame;
1275 Frame = Frame->Caller, ++CallIdx) {
1276 // Skip this call?
1277 if (CallIdx >= SkipStart && CallIdx < SkipEnd) {
1278 if (CallIdx == SkipStart) {
1279 // Note that we're skipping calls.
1280 addDiag(Frame->CallLoc, diag::note_constexpr_calls_suppressed)
1281 << unsigned(ActiveCalls - Limit);
1282 }
1283 continue;
1284 }
1285
Richard Smith5179eb72016-06-28 19:03:57 +00001286 // Use a different note for an inheriting constructor, because from the
1287 // user's perspective it's not really a function at all.
1288 if (auto *CD = dyn_cast_or_null<CXXConstructorDecl>(Frame->Callee)) {
1289 if (CD->isInheritingConstructor()) {
1290 addDiag(Frame->CallLoc, diag::note_constexpr_inherited_ctor_call_here)
1291 << CD->getParent();
1292 continue;
1293 }
1294 }
1295
Dmitri Gribenkof8579502013-01-12 19:30:44 +00001296 SmallVector<char, 128> Buffer;
Richard Smithf6f003a2011-12-16 19:06:07 +00001297 llvm::raw_svector_ostream Out(Buffer);
1298 describeCall(Frame, Out);
1299 addDiag(Frame->CallLoc, diag::note_constexpr_call_here) << Out.str();
1300 }
1301}
1302
1303namespace {
John McCall93d91dc2010-05-07 17:22:02 +00001304 struct ComplexValue {
1305 private:
1306 bool IsInt;
1307
1308 public:
1309 APSInt IntReal, IntImag;
1310 APFloat FloatReal, FloatImag;
1311
Stephan Bergmann17c7f702016-12-14 11:57:17 +00001312 ComplexValue() : FloatReal(APFloat::Bogus()), FloatImag(APFloat::Bogus()) {}
John McCall93d91dc2010-05-07 17:22:02 +00001313
1314 void makeComplexFloat() { IsInt = false; }
1315 bool isComplexFloat() const { return !IsInt; }
1316 APFloat &getComplexFloatReal() { return FloatReal; }
1317 APFloat &getComplexFloatImag() { return FloatImag; }
1318
1319 void makeComplexInt() { IsInt = true; }
1320 bool isComplexInt() const { return IsInt; }
1321 APSInt &getComplexIntReal() { return IntReal; }
1322 APSInt &getComplexIntImag() { return IntImag; }
1323
Richard Smith2e312c82012-03-03 22:46:17 +00001324 void moveInto(APValue &v) const {
John McCall93d91dc2010-05-07 17:22:02 +00001325 if (isComplexFloat())
Richard Smith2e312c82012-03-03 22:46:17 +00001326 v = APValue(FloatReal, FloatImag);
John McCall93d91dc2010-05-07 17:22:02 +00001327 else
Richard Smith2e312c82012-03-03 22:46:17 +00001328 v = APValue(IntReal, IntImag);
John McCall93d91dc2010-05-07 17:22:02 +00001329 }
Richard Smith2e312c82012-03-03 22:46:17 +00001330 void setFrom(const APValue &v) {
John McCallc07a0c72011-02-17 10:25:35 +00001331 assert(v.isComplexFloat() || v.isComplexInt());
1332 if (v.isComplexFloat()) {
1333 makeComplexFloat();
1334 FloatReal = v.getComplexFloatReal();
1335 FloatImag = v.getComplexFloatImag();
1336 } else {
1337 makeComplexInt();
1338 IntReal = v.getComplexIntReal();
1339 IntImag = v.getComplexIntImag();
1340 }
1341 }
John McCall93d91dc2010-05-07 17:22:02 +00001342 };
John McCall45d55e42010-05-07 21:00:08 +00001343
1344 struct LValue {
Richard Smithce40ad62011-11-12 22:28:03 +00001345 APValue::LValueBase Base;
John McCall45d55e42010-05-07 21:00:08 +00001346 CharUnits Offset;
Richard Smith96e0c102011-11-04 02:25:55 +00001347 SubobjectDesignator Designator;
Akira Hatanaka4e2698c2018-04-10 05:15:01 +00001348 bool IsNullPtr : 1;
1349 bool InvalidBase : 1;
John McCall45d55e42010-05-07 21:00:08 +00001350
Richard Smithce40ad62011-11-12 22:28:03 +00001351 const APValue::LValueBase getLValueBase() const { return Base; }
Richard Smith0b0a0b62011-10-29 20:57:55 +00001352 CharUnits &getLValueOffset() { return Offset; }
Richard Smith8b3497e2011-10-31 01:37:14 +00001353 const CharUnits &getLValueOffset() const { return Offset; }
Richard Smith96e0c102011-11-04 02:25:55 +00001354 SubobjectDesignator &getLValueDesignator() { return Designator; }
1355 const SubobjectDesignator &getLValueDesignator() const { return Designator;}
Yaxun Liu402804b2016-12-15 08:09:08 +00001356 bool isNullPointer() const { return IsNullPtr;}
John McCall45d55e42010-05-07 21:00:08 +00001357
Akira Hatanaka4e2698c2018-04-10 05:15:01 +00001358 unsigned getLValueCallIndex() const { return Base.getCallIndex(); }
1359 unsigned getLValueVersion() const { return Base.getVersion(); }
1360
Richard Smith2e312c82012-03-03 22:46:17 +00001361 void moveInto(APValue &V) const {
1362 if (Designator.Invalid)
Akira Hatanaka4e2698c2018-04-10 05:15:01 +00001363 V = APValue(Base, Offset, APValue::NoLValuePath(), IsNullPtr);
George Burgess IVe3763372016-12-22 02:50:20 +00001364 else {
1365 assert(!InvalidBase && "APValues can't handle invalid LValue bases");
Richard Smith2e312c82012-03-03 22:46:17 +00001366 V = APValue(Base, Offset, Designator.Entries,
Akira Hatanaka4e2698c2018-04-10 05:15:01 +00001367 Designator.IsOnePastTheEnd, IsNullPtr);
George Burgess IVe3763372016-12-22 02:50:20 +00001368 }
John McCall45d55e42010-05-07 21:00:08 +00001369 }
Richard Smith2e312c82012-03-03 22:46:17 +00001370 void setFrom(ASTContext &Ctx, const APValue &V) {
George Burgess IVe3763372016-12-22 02:50:20 +00001371 assert(V.isLValue() && "Setting LValue from a non-LValue?");
Richard Smith0b0a0b62011-10-29 20:57:55 +00001372 Base = V.getLValueBase();
1373 Offset = V.getLValueOffset();
George Burgess IV3a03fab2015-09-04 21:28:13 +00001374 InvalidBase = false;
Richard Smith2e312c82012-03-03 22:46:17 +00001375 Designator = SubobjectDesignator(Ctx, V);
Yaxun Liu402804b2016-12-15 08:09:08 +00001376 IsNullPtr = V.isNullPointer();
Richard Smith96e0c102011-11-04 02:25:55 +00001377 }
1378
Akira Hatanaka4e2698c2018-04-10 05:15:01 +00001379 void set(APValue::LValueBase B, bool BInvalid = false) {
George Burgess IVe3763372016-12-22 02:50:20 +00001380#ifndef NDEBUG
1381 // We only allow a few types of invalid bases. Enforce that here.
1382 if (BInvalid) {
1383 const auto *E = B.get<const Expr *>();
1384 assert((isa<MemberExpr>(E) || tryUnwrapAllocSizeCall(E)) &&
1385 "Unexpected type of invalid base");
1386 }
1387#endif
1388
Richard Smithce40ad62011-11-12 22:28:03 +00001389 Base = B;
Tim Northover01503332017-05-26 02:16:00 +00001390 Offset = CharUnits::fromQuantity(0);
George Burgess IV3a03fab2015-09-04 21:28:13 +00001391 InvalidBase = BInvalid;
Richard Smitha8105bc2012-01-06 16:39:00 +00001392 Designator = SubobjectDesignator(getType(B));
Tim Northover01503332017-05-26 02:16:00 +00001393 IsNullPtr = false;
1394 }
1395
1396 void setNull(QualType PointerTy, uint64_t TargetVal) {
1397 Base = (Expr *)nullptr;
1398 Offset = CharUnits::fromQuantity(TargetVal);
1399 InvalidBase = false;
Tim Northover01503332017-05-26 02:16:00 +00001400 Designator = SubobjectDesignator(PointerTy->getPointeeType());
1401 IsNullPtr = true;
Richard Smitha8105bc2012-01-06 16:39:00 +00001402 }
1403
George Burgess IV3a03fab2015-09-04 21:28:13 +00001404 void setInvalid(APValue::LValueBase B, unsigned I = 0) {
Akira Hatanaka4e2698c2018-04-10 05:15:01 +00001405 set(B, true);
George Burgess IV3a03fab2015-09-04 21:28:13 +00001406 }
1407
Richard Smitha8105bc2012-01-06 16:39:00 +00001408 // Check that this LValue is not based on a null pointer. If it is, produce
1409 // a diagnostic and mark the designator as invalid.
1410 bool checkNullPointer(EvalInfo &Info, const Expr *E,
1411 CheckSubobjectKind CSK) {
1412 if (Designator.Invalid)
1413 return false;
Yaxun Liu402804b2016-12-15 08:09:08 +00001414 if (IsNullPtr) {
Richard Smithce1ec5e2012-03-15 04:53:45 +00001415 Info.CCEDiag(E, diag::note_constexpr_null_subobject)
Richard Smitha8105bc2012-01-06 16:39:00 +00001416 << CSK;
1417 Designator.setInvalid();
1418 return false;
1419 }
1420 return true;
1421 }
1422
1423 // Check this LValue refers to an object. If not, set the designator to be
1424 // invalid and emit a diagnostic.
1425 bool checkSubobject(EvalInfo &Info, const Expr *E, CheckSubobjectKind CSK) {
Richard Smith6c6bbfa2014-04-08 12:19:28 +00001426 return (CSK == CSK_ArrayToPointer || checkNullPointer(Info, E, CSK)) &&
Richard Smitha8105bc2012-01-06 16:39:00 +00001427 Designator.checkSubobject(Info, E, CSK);
1428 }
1429
1430 void addDecl(EvalInfo &Info, const Expr *E,
1431 const Decl *D, bool Virtual = false) {
Richard Smithce1ec5e2012-03-15 04:53:45 +00001432 if (checkSubobject(Info, E, isa<FieldDecl>(D) ? CSK_Field : CSK_Base))
1433 Designator.addDeclUnchecked(D, Virtual);
Richard Smitha8105bc2012-01-06 16:39:00 +00001434 }
Richard Smith6f4f0f12017-10-20 22:56:25 +00001435 void addUnsizedArray(EvalInfo &Info, const Expr *E, QualType ElemTy) {
1436 if (!Designator.Entries.empty()) {
1437 Info.CCEDiag(E, diag::note_constexpr_unsupported_unsized_array);
1438 Designator.setInvalid();
1439 return;
1440 }
Richard Smithefdb5032017-11-15 03:03:56 +00001441 if (checkSubobject(Info, E, CSK_ArrayToPointer)) {
1442 assert(getType(Base)->isPointerType() || getType(Base)->isArrayType());
1443 Designator.FirstEntryIsAnUnsizedArray = true;
1444 Designator.addUnsizedArrayUnchecked(ElemTy);
1445 }
George Burgess IVe3763372016-12-22 02:50:20 +00001446 }
Richard Smitha8105bc2012-01-06 16:39:00 +00001447 void addArray(EvalInfo &Info, const Expr *E, const ConstantArrayType *CAT) {
Richard Smithce1ec5e2012-03-15 04:53:45 +00001448 if (checkSubobject(Info, E, CSK_ArrayToPointer))
1449 Designator.addArrayUnchecked(CAT);
Richard Smitha8105bc2012-01-06 16:39:00 +00001450 }
Richard Smith66c96992012-02-18 22:04:06 +00001451 void addComplex(EvalInfo &Info, const Expr *E, QualType EltTy, bool Imag) {
Richard Smithce1ec5e2012-03-15 04:53:45 +00001452 if (checkSubobject(Info, E, Imag ? CSK_Imag : CSK_Real))
1453 Designator.addComplexUnchecked(EltTy, Imag);
Richard Smith66c96992012-02-18 22:04:06 +00001454 }
Yaxun Liu402804b2016-12-15 08:09:08 +00001455 void clearIsNullPointer() {
1456 IsNullPtr = false;
1457 }
Benjamin Kramerf6021ec2017-03-21 21:35:04 +00001458 void adjustOffsetAndIndex(EvalInfo &Info, const Expr *E,
1459 const APSInt &Index, CharUnits ElementSize) {
Richard Smithd6cc1982017-01-31 02:23:02 +00001460 // An index of 0 has no effect. (In C, adding 0 to a null pointer is UB,
1461 // but we're not required to diagnose it and it's valid in C++.)
1462 if (!Index)
1463 return;
1464
1465 // Compute the new offset in the appropriate width, wrapping at 64 bits.
1466 // FIXME: When compiling for a 32-bit target, we should use 32-bit
1467 // offsets.
1468 uint64_t Offset64 = Offset.getQuantity();
1469 uint64_t ElemSize64 = ElementSize.getQuantity();
1470 uint64_t Index64 = Index.extOrTrunc(64).getZExtValue();
1471 Offset = CharUnits::fromQuantity(Offset64 + ElemSize64 * Index64);
1472
1473 if (checkNullPointer(Info, E, CSK_ArrayIndex))
Yaxun Liu402804b2016-12-15 08:09:08 +00001474 Designator.adjustIndex(Info, E, Index);
Richard Smithd6cc1982017-01-31 02:23:02 +00001475 clearIsNullPointer();
Yaxun Liu402804b2016-12-15 08:09:08 +00001476 }
1477 void adjustOffset(CharUnits N) {
1478 Offset += N;
1479 if (N.getQuantity())
1480 clearIsNullPointer();
John McCallc07a0c72011-02-17 10:25:35 +00001481 }
John McCall45d55e42010-05-07 21:00:08 +00001482 };
Richard Smith027bf112011-11-17 22:56:20 +00001483
1484 struct MemberPtr {
1485 MemberPtr() {}
1486 explicit MemberPtr(const ValueDecl *Decl) :
1487 DeclAndIsDerivedMember(Decl, false), Path() {}
1488
1489 /// The member or (direct or indirect) field referred to by this member
1490 /// pointer, or 0 if this is a null member pointer.
1491 const ValueDecl *getDecl() const {
1492 return DeclAndIsDerivedMember.getPointer();
1493 }
1494 /// Is this actually a member of some type derived from the relevant class?
1495 bool isDerivedMember() const {
1496 return DeclAndIsDerivedMember.getInt();
1497 }
1498 /// Get the class which the declaration actually lives in.
1499 const CXXRecordDecl *getContainingRecord() const {
1500 return cast<CXXRecordDecl>(
1501 DeclAndIsDerivedMember.getPointer()->getDeclContext());
1502 }
1503
Richard Smith2e312c82012-03-03 22:46:17 +00001504 void moveInto(APValue &V) const {
1505 V = APValue(getDecl(), isDerivedMember(), Path);
Richard Smith027bf112011-11-17 22:56:20 +00001506 }
Richard Smith2e312c82012-03-03 22:46:17 +00001507 void setFrom(const APValue &V) {
Richard Smith027bf112011-11-17 22:56:20 +00001508 assert(V.isMemberPointer());
1509 DeclAndIsDerivedMember.setPointer(V.getMemberPointerDecl());
1510 DeclAndIsDerivedMember.setInt(V.isMemberPointerToDerivedMember());
1511 Path.clear();
1512 ArrayRef<const CXXRecordDecl*> P = V.getMemberPointerPath();
1513 Path.insert(Path.end(), P.begin(), P.end());
1514 }
1515
1516 /// DeclAndIsDerivedMember - The member declaration, and a flag indicating
1517 /// whether the member is a member of some class derived from the class type
1518 /// of the member pointer.
1519 llvm::PointerIntPair<const ValueDecl*, 1, bool> DeclAndIsDerivedMember;
1520 /// Path - The path of base/derived classes from the member declaration's
1521 /// class (exclusive) to the class type of the member pointer (inclusive).
1522 SmallVector<const CXXRecordDecl*, 4> Path;
1523
1524 /// Perform a cast towards the class of the Decl (either up or down the
1525 /// hierarchy).
1526 bool castBack(const CXXRecordDecl *Class) {
1527 assert(!Path.empty());
1528 const CXXRecordDecl *Expected;
1529 if (Path.size() >= 2)
1530 Expected = Path[Path.size() - 2];
1531 else
1532 Expected = getContainingRecord();
1533 if (Expected->getCanonicalDecl() != Class->getCanonicalDecl()) {
1534 // C++11 [expr.static.cast]p12: In a conversion from (D::*) to (B::*),
1535 // if B does not contain the original member and is not a base or
1536 // derived class of the class containing the original member, the result
1537 // of the cast is undefined.
1538 // C++11 [conv.mem]p2 does not cover this case for a cast from (B::*) to
1539 // (D::*). We consider that to be a language defect.
1540 return false;
1541 }
1542 Path.pop_back();
1543 return true;
1544 }
1545 /// Perform a base-to-derived member pointer cast.
1546 bool castToDerived(const CXXRecordDecl *Derived) {
1547 if (!getDecl())
1548 return true;
1549 if (!isDerivedMember()) {
1550 Path.push_back(Derived);
1551 return true;
1552 }
1553 if (!castBack(Derived))
1554 return false;
1555 if (Path.empty())
1556 DeclAndIsDerivedMember.setInt(false);
1557 return true;
1558 }
1559 /// Perform a derived-to-base member pointer cast.
1560 bool castToBase(const CXXRecordDecl *Base) {
1561 if (!getDecl())
1562 return true;
1563 if (Path.empty())
1564 DeclAndIsDerivedMember.setInt(true);
1565 if (isDerivedMember()) {
1566 Path.push_back(Base);
1567 return true;
1568 }
1569 return castBack(Base);
1570 }
1571 };
Richard Smith357362d2011-12-13 06:39:58 +00001572
Richard Smith7bb00672012-02-01 01:42:44 +00001573 /// Compare two member pointers, which are assumed to be of the same type.
1574 static bool operator==(const MemberPtr &LHS, const MemberPtr &RHS) {
1575 if (!LHS.getDecl() || !RHS.getDecl())
1576 return !LHS.getDecl() && !RHS.getDecl();
1577 if (LHS.getDecl()->getCanonicalDecl() != RHS.getDecl()->getCanonicalDecl())
1578 return false;
1579 return LHS.Path == RHS.Path;
1580 }
Alexander Kornienkoab9db512015-06-22 23:07:51 +00001581}
Chris Lattnercdf34e72008-07-11 22:52:41 +00001582
Richard Smith2e312c82012-03-03 22:46:17 +00001583static bool Evaluate(APValue &Result, EvalInfo &Info, const Expr *E);
Richard Smithb228a862012-02-15 02:18:13 +00001584static bool EvaluateInPlace(APValue &Result, EvalInfo &Info,
1585 const LValue &This, const Expr *E,
Richard Smithb228a862012-02-15 02:18:13 +00001586 bool AllowNonLiteralTypes = false);
George Burgess IVf9013bf2017-02-10 22:52:29 +00001587static bool EvaluateLValue(const Expr *E, LValue &Result, EvalInfo &Info,
1588 bool InvalidBaseOK = false);
1589static bool EvaluatePointer(const Expr *E, LValue &Result, EvalInfo &Info,
1590 bool InvalidBaseOK = false);
Richard Smith027bf112011-11-17 22:56:20 +00001591static bool EvaluateMemberPointer(const Expr *E, MemberPtr &Result,
1592 EvalInfo &Info);
1593static bool EvaluateTemporary(const Expr *E, LValue &Result, EvalInfo &Info);
George Burgess IV533ff002015-12-11 00:23:35 +00001594static bool EvaluateInteger(const Expr *E, APSInt &Result, EvalInfo &Info);
Richard Smith2e312c82012-03-03 22:46:17 +00001595static bool EvaluateIntegerOrLValue(const Expr *E, APValue &Result,
Chris Lattner6c4d2552009-10-28 23:59:40 +00001596 EvalInfo &Info);
Eli Friedman24c01542008-08-22 00:06:13 +00001597static bool EvaluateFloat(const Expr *E, APFloat &Result, EvalInfo &Info);
John McCall93d91dc2010-05-07 17:22:02 +00001598static bool EvaluateComplex(const Expr *E, ComplexValue &Res, EvalInfo &Info);
Richard Smith64cb9ca2017-02-22 22:09:50 +00001599static bool EvaluateAtomic(const Expr *E, const LValue *This, APValue &Result,
1600 EvalInfo &Info);
George Burgess IV3e3bb95b2015-12-02 21:58:08 +00001601static bool EvaluateAsRValue(EvalInfo &Info, const Expr *E, APValue &Result);
Chris Lattner05706e882008-07-11 18:11:29 +00001602
1603//===----------------------------------------------------------------------===//
Eli Friedman9a156e52008-11-12 09:44:48 +00001604// Misc utilities
1605//===----------------------------------------------------------------------===//
1606
Akira Hatanaka4e2698c2018-04-10 05:15:01 +00001607/// A helper function to create a temporary and set an LValue.
1608template <class KeyTy>
1609static APValue &createTemporary(const KeyTy *Key, bool IsLifetimeExtended,
1610 LValue &LV, CallStackFrame &Frame) {
1611 LV.set({Key, Frame.Info.CurrentCall->Index,
1612 Frame.Info.CurrentCall->getTempVersion()});
1613 return Frame.createTemporary(Key, IsLifetimeExtended);
1614}
1615
Richard Smithd6cc1982017-01-31 02:23:02 +00001616/// Negate an APSInt in place, converting it to a signed form if necessary, and
1617/// preserving its value (by extending by up to one bit as needed).
1618static void negateAsSigned(APSInt &Int) {
1619 if (Int.isUnsigned() || Int.isMinSignedValue()) {
1620 Int = Int.extend(Int.getBitWidth() + 1);
1621 Int.setIsSigned(true);
1622 }
1623 Int = -Int;
1624}
1625
Richard Smith84401042013-06-03 05:03:02 +00001626/// Produce a string describing the given constexpr call.
1627static void describeCall(CallStackFrame *Frame, raw_ostream &Out) {
1628 unsigned ArgIndex = 0;
1629 bool IsMemberCall = isa<CXXMethodDecl>(Frame->Callee) &&
1630 !isa<CXXConstructorDecl>(Frame->Callee) &&
1631 cast<CXXMethodDecl>(Frame->Callee)->isInstance();
1632
1633 if (!IsMemberCall)
1634 Out << *Frame->Callee << '(';
1635
1636 if (Frame->This && IsMemberCall) {
1637 APValue Val;
1638 Frame->This->moveInto(Val);
1639 Val.printPretty(Out, Frame->Info.Ctx,
1640 Frame->This->Designator.MostDerivedType);
1641 // FIXME: Add parens around Val if needed.
1642 Out << "->" << *Frame->Callee << '(';
1643 IsMemberCall = false;
1644 }
1645
1646 for (FunctionDecl::param_const_iterator I = Frame->Callee->param_begin(),
1647 E = Frame->Callee->param_end(); I != E; ++I, ++ArgIndex) {
1648 if (ArgIndex > (unsigned)IsMemberCall)
1649 Out << ", ";
1650
1651 const ParmVarDecl *Param = *I;
1652 const APValue &Arg = Frame->Arguments[ArgIndex];
1653 Arg.printPretty(Out, Frame->Info.Ctx, Param->getType());
1654
1655 if (ArgIndex == 0 && IsMemberCall)
1656 Out << "->" << *Frame->Callee << '(';
1657 }
1658
1659 Out << ')';
1660}
1661
Richard Smithd9f663b2013-04-22 15:31:51 +00001662/// Evaluate an expression to see if it had side-effects, and discard its
1663/// result.
Richard Smith4e18ca52013-05-06 05:56:11 +00001664/// \return \c true if the caller should keep evaluating.
1665static bool EvaluateIgnoredValue(EvalInfo &Info, const Expr *E) {
Richard Smithd9f663b2013-04-22 15:31:51 +00001666 APValue Scratch;
Richard Smith4e66f1f2013-11-06 02:19:10 +00001667 if (!Evaluate(Scratch, Info, E))
1668 // We don't need the value, but we might have skipped a side effect here.
1669 return Info.noteSideEffect();
Richard Smith4e18ca52013-05-06 05:56:11 +00001670 return true;
Richard Smithd9f663b2013-04-22 15:31:51 +00001671}
1672
Richard Smithd62306a2011-11-10 06:34:14 +00001673/// Should this call expression be treated as a string literal?
1674static bool IsStringLiteralCall(const CallExpr *E) {
Alp Tokera724cff2013-12-28 21:59:02 +00001675 unsigned Builtin = E->getBuiltinCallee();
Richard Smithd62306a2011-11-10 06:34:14 +00001676 return (Builtin == Builtin::BI__builtin___CFStringMakeConstantString ||
1677 Builtin == Builtin::BI__builtin___NSStringMakeConstantString);
1678}
1679
Richard Smithce40ad62011-11-12 22:28:03 +00001680static bool IsGlobalLValue(APValue::LValueBase B) {
Richard Smithd62306a2011-11-10 06:34:14 +00001681 // C++11 [expr.const]p3 An address constant expression is a prvalue core
1682 // constant expression of pointer type that evaluates to...
1683
1684 // ... a null pointer value, or a prvalue core constant expression of type
1685 // std::nullptr_t.
Richard Smithce40ad62011-11-12 22:28:03 +00001686 if (!B) return true;
John McCall95007602010-05-10 23:27:23 +00001687
Richard Smithce40ad62011-11-12 22:28:03 +00001688 if (const ValueDecl *D = B.dyn_cast<const ValueDecl*>()) {
1689 // ... the address of an object with static storage duration,
1690 if (const VarDecl *VD = dyn_cast<VarDecl>(D))
1691 return VD->hasGlobalStorage();
1692 // ... the address of a function,
1693 return isa<FunctionDecl>(D);
1694 }
1695
1696 const Expr *E = B.get<const Expr*>();
Richard Smithd62306a2011-11-10 06:34:14 +00001697 switch (E->getStmtClass()) {
1698 default:
1699 return false;
Richard Smith0dea49e2012-02-18 04:58:18 +00001700 case Expr::CompoundLiteralExprClass: {
1701 const CompoundLiteralExpr *CLE = cast<CompoundLiteralExpr>(E);
1702 return CLE->isFileScope() && CLE->isLValue();
1703 }
Richard Smithe6c01442013-06-05 00:46:14 +00001704 case Expr::MaterializeTemporaryExprClass:
1705 // A materialized temporary might have been lifetime-extended to static
1706 // storage duration.
1707 return cast<MaterializeTemporaryExpr>(E)->getStorageDuration() == SD_Static;
Richard Smithd62306a2011-11-10 06:34:14 +00001708 // A string literal has static storage duration.
1709 case Expr::StringLiteralClass:
1710 case Expr::PredefinedExprClass:
1711 case Expr::ObjCStringLiteralClass:
1712 case Expr::ObjCEncodeExprClass:
Richard Smith6e525142011-12-27 12:18:28 +00001713 case Expr::CXXTypeidExprClass:
Francois Pichet0066db92012-04-16 04:08:35 +00001714 case Expr::CXXUuidofExprClass:
Richard Smithd62306a2011-11-10 06:34:14 +00001715 return true;
1716 case Expr::CallExprClass:
1717 return IsStringLiteralCall(cast<CallExpr>(E));
1718 // For GCC compatibility, &&label has static storage duration.
1719 case Expr::AddrLabelExprClass:
1720 return true;
1721 // A Block literal expression may be used as the initialization value for
1722 // Block variables at global or local static scope.
1723 case Expr::BlockExprClass:
1724 return !cast<BlockExpr>(E)->getBlockDecl()->hasCaptures();
Richard Smith253c2a32012-01-27 01:14:48 +00001725 case Expr::ImplicitValueInitExprClass:
1726 // FIXME:
1727 // We can never form an lvalue with an implicit value initialization as its
1728 // base through expression evaluation, so these only appear in one case: the
1729 // implicit variable declaration we invent when checking whether a constexpr
1730 // constructor can produce a constant expression. We must assume that such
1731 // an expression might be a global lvalue.
1732 return true;
Richard Smithd62306a2011-11-10 06:34:14 +00001733 }
John McCall95007602010-05-10 23:27:23 +00001734}
1735
Richard Smith06f71b52018-08-04 00:57:17 +00001736static const ValueDecl *GetLValueBaseDecl(const LValue &LVal) {
1737 return LVal.Base.dyn_cast<const ValueDecl*>();
1738}
1739
1740static bool IsLiteralLValue(const LValue &Value) {
1741 if (Value.getLValueCallIndex())
1742 return false;
1743 const Expr *E = Value.Base.dyn_cast<const Expr*>();
1744 return E && !isa<MaterializeTemporaryExpr>(E);
1745}
1746
1747static bool IsWeakLValue(const LValue &Value) {
1748 const ValueDecl *Decl = GetLValueBaseDecl(Value);
1749 return Decl && Decl->isWeak();
1750}
1751
1752static bool isZeroSized(const LValue &Value) {
1753 const ValueDecl *Decl = GetLValueBaseDecl(Value);
1754 if (Decl && isa<VarDecl>(Decl)) {
1755 QualType Ty = Decl->getType();
1756 if (Ty->isArrayType())
1757 return Ty->isIncompleteType() ||
1758 Decl->getASTContext().getTypeSize(Ty) == 0;
1759 }
1760 return false;
1761}
1762
1763static bool HasSameBase(const LValue &A, const LValue &B) {
1764 if (!A.getLValueBase())
1765 return !B.getLValueBase();
1766 if (!B.getLValueBase())
1767 return false;
1768
1769 if (A.getLValueBase().getOpaqueValue() !=
1770 B.getLValueBase().getOpaqueValue()) {
1771 const Decl *ADecl = GetLValueBaseDecl(A);
1772 if (!ADecl)
1773 return false;
1774 const Decl *BDecl = GetLValueBaseDecl(B);
1775 if (!BDecl || ADecl->getCanonicalDecl() != BDecl->getCanonicalDecl())
1776 return false;
1777 }
1778
1779 return IsGlobalLValue(A.getLValueBase()) ||
1780 (A.getLValueCallIndex() == B.getLValueCallIndex() &&
1781 A.getLValueVersion() == B.getLValueVersion());
1782}
1783
Richard Smithb228a862012-02-15 02:18:13 +00001784static void NoteLValueLocation(EvalInfo &Info, APValue::LValueBase Base) {
1785 assert(Base && "no location for a null lvalue");
1786 const ValueDecl *VD = Base.dyn_cast<const ValueDecl*>();
1787 if (VD)
1788 Info.Note(VD->getLocation(), diag::note_declared_at);
1789 else
Ted Kremenek28831752012-08-23 20:46:57 +00001790 Info.Note(Base.get<const Expr*>()->getExprLoc(),
Richard Smithb228a862012-02-15 02:18:13 +00001791 diag::note_constexpr_temporary_here);
1792}
1793
Richard Smith80815602011-11-07 05:07:52 +00001794/// Check that this reference or pointer core constant expression is a valid
Richard Smith2e312c82012-03-03 22:46:17 +00001795/// value for an address or reference constant expression. Return true if we
1796/// can fold this expression, whether or not it's a constant expression.
Richard Smithb228a862012-02-15 02:18:13 +00001797static bool CheckLValueConstantExpression(EvalInfo &Info, SourceLocation Loc,
Reid Kleckner1a840d22018-05-10 18:57:35 +00001798 QualType Type, const LValue &LVal,
1799 Expr::ConstExprUsage Usage) {
Richard Smithb228a862012-02-15 02:18:13 +00001800 bool IsReferenceType = Type->isReferenceType();
1801
Richard Smith357362d2011-12-13 06:39:58 +00001802 APValue::LValueBase Base = LVal.getLValueBase();
1803 const SubobjectDesignator &Designator = LVal.getLValueDesignator();
1804
Richard Smith0dea49e2012-02-18 04:58:18 +00001805 // Check that the object is a global. Note that the fake 'this' object we
1806 // manufacture when checking potential constant expressions is conservatively
1807 // assumed to be global here.
Richard Smith357362d2011-12-13 06:39:58 +00001808 if (!IsGlobalLValue(Base)) {
Richard Smith2bf7fdb2013-01-02 11:42:31 +00001809 if (Info.getLangOpts().CPlusPlus11) {
Richard Smith357362d2011-12-13 06:39:58 +00001810 const ValueDecl *VD = Base.dyn_cast<const ValueDecl*>();
Faisal Valie690b7a2016-07-02 22:34:24 +00001811 Info.FFDiag(Loc, diag::note_constexpr_non_global, 1)
Richard Smithb228a862012-02-15 02:18:13 +00001812 << IsReferenceType << !Designator.Entries.empty()
1813 << !!VD << VD;
1814 NoteLValueLocation(Info, Base);
Richard Smith357362d2011-12-13 06:39:58 +00001815 } else {
Faisal Valie690b7a2016-07-02 22:34:24 +00001816 Info.FFDiag(Loc);
Richard Smith357362d2011-12-13 06:39:58 +00001817 }
Richard Smith02ab9c22012-01-12 06:08:57 +00001818 // Don't allow references to temporaries to escape.
Richard Smith80815602011-11-07 05:07:52 +00001819 return false;
Richard Smithf57d8cb2011-12-09 22:58:01 +00001820 }
Richard Smith6d4c6582013-11-05 22:18:15 +00001821 assert((Info.checkingPotentialConstantExpression() ||
Richard Smithb228a862012-02-15 02:18:13 +00001822 LVal.getLValueCallIndex() == 0) &&
1823 "have call index for global lvalue");
Richard Smitha8105bc2012-01-06 16:39:00 +00001824
Hans Wennborgcb9ad992012-08-29 18:27:29 +00001825 if (const ValueDecl *VD = Base.dyn_cast<const ValueDecl*>()) {
1826 if (const VarDecl *Var = dyn_cast<const VarDecl>(VD)) {
David Majnemer0c43d802014-06-25 08:15:07 +00001827 // Check if this is a thread-local variable.
Richard Smithfd3834f2013-04-13 02:43:54 +00001828 if (Var->getTLSKind())
Hans Wennborgcb9ad992012-08-29 18:27:29 +00001829 return false;
David Majnemer0c43d802014-06-25 08:15:07 +00001830
Hans Wennborg82dd8772014-06-25 22:19:48 +00001831 // A dllimport variable never acts like a constant.
Reid Kleckner1a840d22018-05-10 18:57:35 +00001832 if (Usage == Expr::EvaluateForCodeGen && Var->hasAttr<DLLImportAttr>())
David Majnemer0c43d802014-06-25 08:15:07 +00001833 return false;
1834 }
1835 if (const auto *FD = dyn_cast<const FunctionDecl>(VD)) {
1836 // __declspec(dllimport) must be handled very carefully:
1837 // We must never initialize an expression with the thunk in C++.
1838 // Doing otherwise would allow the same id-expression to yield
1839 // different addresses for the same function in different translation
1840 // units. However, this means that we must dynamically initialize the
1841 // expression with the contents of the import address table at runtime.
1842 //
1843 // The C language has no notion of ODR; furthermore, it has no notion of
1844 // dynamic initialization. This means that we are permitted to
1845 // perform initialization with the address of the thunk.
Reid Kleckner1a840d22018-05-10 18:57:35 +00001846 if (Info.getLangOpts().CPlusPlus && Usage == Expr::EvaluateForCodeGen &&
1847 FD->hasAttr<DLLImportAttr>())
David Majnemer0c43d802014-06-25 08:15:07 +00001848 return false;
Hans Wennborgcb9ad992012-08-29 18:27:29 +00001849 }
1850 }
1851
Richard Smitha8105bc2012-01-06 16:39:00 +00001852 // Allow address constant expressions to be past-the-end pointers. This is
1853 // an extension: the standard requires them to point to an object.
1854 if (!IsReferenceType)
1855 return true;
1856
1857 // A reference constant expression must refer to an object.
1858 if (!Base) {
1859 // FIXME: diagnostic
Richard Smithb228a862012-02-15 02:18:13 +00001860 Info.CCEDiag(Loc);
Richard Smith02ab9c22012-01-12 06:08:57 +00001861 return true;
Richard Smitha8105bc2012-01-06 16:39:00 +00001862 }
1863
Richard Smith357362d2011-12-13 06:39:58 +00001864 // Does this refer one past the end of some object?
Richard Smith33b44ab2014-07-23 23:50:25 +00001865 if (!Designator.Invalid && Designator.isOnePastTheEnd()) {
Richard Smith357362d2011-12-13 06:39:58 +00001866 const ValueDecl *VD = Base.dyn_cast<const ValueDecl*>();
Faisal Valie690b7a2016-07-02 22:34:24 +00001867 Info.FFDiag(Loc, diag::note_constexpr_past_end, 1)
Richard Smith357362d2011-12-13 06:39:58 +00001868 << !Designator.Entries.empty() << !!VD << VD;
Richard Smithb228a862012-02-15 02:18:13 +00001869 NoteLValueLocation(Info, Base);
Richard Smith357362d2011-12-13 06:39:58 +00001870 }
1871
Richard Smith80815602011-11-07 05:07:52 +00001872 return true;
1873}
1874
Reid Klecknercd016d82017-07-07 22:04:29 +00001875/// Member pointers are constant expressions unless they point to a
1876/// non-virtual dllimport member function.
1877static bool CheckMemberPointerConstantExpression(EvalInfo &Info,
1878 SourceLocation Loc,
1879 QualType Type,
Reid Kleckner1a840d22018-05-10 18:57:35 +00001880 const APValue &Value,
1881 Expr::ConstExprUsage Usage) {
Reid Klecknercd016d82017-07-07 22:04:29 +00001882 const ValueDecl *Member = Value.getMemberPointerDecl();
1883 const auto *FD = dyn_cast_or_null<CXXMethodDecl>(Member);
1884 if (!FD)
1885 return true;
Reid Kleckner1a840d22018-05-10 18:57:35 +00001886 return Usage == Expr::EvaluateForMangling || FD->isVirtual() ||
1887 !FD->hasAttr<DLLImportAttr>();
Reid Klecknercd016d82017-07-07 22:04:29 +00001888}
1889
Richard Smithfddd3842011-12-30 21:15:51 +00001890/// Check that this core constant expression is of literal type, and if not,
1891/// produce an appropriate diagnostic.
Richard Smith7525ff62013-05-09 07:14:00 +00001892static bool CheckLiteralType(EvalInfo &Info, const Expr *E,
Craig Topper36250ad2014-05-12 05:36:57 +00001893 const LValue *This = nullptr) {
Richard Smithd9f663b2013-04-22 15:31:51 +00001894 if (!E->isRValue() || E->getType()->isLiteralType(Info.Ctx))
Richard Smithfddd3842011-12-30 21:15:51 +00001895 return true;
1896
Richard Smith7525ff62013-05-09 07:14:00 +00001897 // C++1y: A constant initializer for an object o [...] may also invoke
1898 // constexpr constructors for o and its subobjects even if those objects
1899 // are of non-literal class types.
David L. Jonesf55ce362017-01-09 21:38:07 +00001900 //
1901 // C++11 missed this detail for aggregates, so classes like this:
1902 // struct foo_t { union { int i; volatile int j; } u; };
1903 // are not (obviously) initializable like so:
1904 // __attribute__((__require_constant_initialization__))
1905 // static const foo_t x = {{0}};
1906 // because "i" is a subobject with non-literal initialization (due to the
1907 // volatile member of the union). See:
1908 // http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_active.html#1677
1909 // Therefore, we use the C++1y behavior.
1910 if (This && Info.EvaluatingDecl == This->getLValueBase())
Richard Smith7525ff62013-05-09 07:14:00 +00001911 return true;
1912
Richard Smithfddd3842011-12-30 21:15:51 +00001913 // Prvalue constant expressions must be of literal types.
Richard Smith2bf7fdb2013-01-02 11:42:31 +00001914 if (Info.getLangOpts().CPlusPlus11)
Faisal Valie690b7a2016-07-02 22:34:24 +00001915 Info.FFDiag(E, diag::note_constexpr_nonliteral)
Richard Smithfddd3842011-12-30 21:15:51 +00001916 << E->getType();
1917 else
Faisal Valie690b7a2016-07-02 22:34:24 +00001918 Info.FFDiag(E, diag::note_invalid_subexpr_in_const_expr);
Richard Smithfddd3842011-12-30 21:15:51 +00001919 return false;
1920}
1921
Richard Smith0b0a0b62011-10-29 20:57:55 +00001922/// Check that this core constant expression value is a valid value for a
Richard Smithb228a862012-02-15 02:18:13 +00001923/// constant expression. If not, report an appropriate diagnostic. Does not
1924/// check that the expression is of literal type.
Reid Kleckner1a840d22018-05-10 18:57:35 +00001925static bool
1926CheckConstantExpression(EvalInfo &Info, SourceLocation DiagLoc, QualType Type,
1927 const APValue &Value,
1928 Expr::ConstExprUsage Usage = Expr::EvaluateForCodeGen) {
Richard Smith1a90f592013-06-18 17:51:51 +00001929 if (Value.isUninit()) {
Faisal Valie690b7a2016-07-02 22:34:24 +00001930 Info.FFDiag(DiagLoc, diag::note_constexpr_uninitialized)
Richard Smith51f03172013-06-20 03:00:05 +00001931 << true << Type;
Richard Smith1a90f592013-06-18 17:51:51 +00001932 return false;
1933 }
1934
Richard Smith77be48a2014-07-31 06:31:19 +00001935 // We allow _Atomic(T) to be initialized from anything that T can be
1936 // initialized from.
1937 if (const AtomicType *AT = Type->getAs<AtomicType>())
1938 Type = AT->getValueType();
1939
Richard Smithb228a862012-02-15 02:18:13 +00001940 // Core issue 1454: For a literal constant expression of array or class type,
1941 // each subobject of its value shall have been initialized by a constant
1942 // expression.
1943 if (Value.isArray()) {
1944 QualType EltTy = Type->castAsArrayTypeUnsafe()->getElementType();
1945 for (unsigned I = 0, N = Value.getArrayInitializedElts(); I != N; ++I) {
1946 if (!CheckConstantExpression(Info, DiagLoc, EltTy,
Reid Kleckner1a840d22018-05-10 18:57:35 +00001947 Value.getArrayInitializedElt(I), Usage))
Richard Smithb228a862012-02-15 02:18:13 +00001948 return false;
1949 }
1950 if (!Value.hasArrayFiller())
1951 return true;
Reid Kleckner1a840d22018-05-10 18:57:35 +00001952 return CheckConstantExpression(Info, DiagLoc, EltTy, Value.getArrayFiller(),
1953 Usage);
Richard Smith80815602011-11-07 05:07:52 +00001954 }
Richard Smithb228a862012-02-15 02:18:13 +00001955 if (Value.isUnion() && Value.getUnionField()) {
1956 return CheckConstantExpression(Info, DiagLoc,
1957 Value.getUnionField()->getType(),
Reid Kleckner1a840d22018-05-10 18:57:35 +00001958 Value.getUnionValue(), Usage);
Richard Smithb228a862012-02-15 02:18:13 +00001959 }
1960 if (Value.isStruct()) {
1961 RecordDecl *RD = Type->castAs<RecordType>()->getDecl();
1962 if (const CXXRecordDecl *CD = dyn_cast<CXXRecordDecl>(RD)) {
1963 unsigned BaseIndex = 0;
Reid Kleckner1a840d22018-05-10 18:57:35 +00001964 for (const CXXBaseSpecifier &BS : CD->bases()) {
1965 if (!CheckConstantExpression(Info, DiagLoc, BS.getType(),
1966 Value.getStructBase(BaseIndex), Usage))
Richard Smithb228a862012-02-15 02:18:13 +00001967 return false;
Reid Kleckner1a840d22018-05-10 18:57:35 +00001968 ++BaseIndex;
Richard Smithb228a862012-02-15 02:18:13 +00001969 }
1970 }
Aaron Ballmane8a8bae2014-03-08 20:12:42 +00001971 for (const auto *I : RD->fields()) {
Jordan Rosed4503da2017-10-24 02:17:07 +00001972 if (I->isUnnamedBitfield())
1973 continue;
1974
David Blaikie2d7c57e2012-04-30 02:36:29 +00001975 if (!CheckConstantExpression(Info, DiagLoc, I->getType(),
Reid Kleckner1a840d22018-05-10 18:57:35 +00001976 Value.getStructField(I->getFieldIndex()),
1977 Usage))
Richard Smithb228a862012-02-15 02:18:13 +00001978 return false;
1979 }
1980 }
1981
1982 if (Value.isLValue()) {
Richard Smithb228a862012-02-15 02:18:13 +00001983 LValue LVal;
Richard Smith2e312c82012-03-03 22:46:17 +00001984 LVal.setFrom(Info.Ctx, Value);
Reid Kleckner1a840d22018-05-10 18:57:35 +00001985 return CheckLValueConstantExpression(Info, DiagLoc, Type, LVal, Usage);
Richard Smithb228a862012-02-15 02:18:13 +00001986 }
1987
Reid Klecknercd016d82017-07-07 22:04:29 +00001988 if (Value.isMemberPointer())
Reid Kleckner1a840d22018-05-10 18:57:35 +00001989 return CheckMemberPointerConstantExpression(Info, DiagLoc, Type, Value, Usage);
Reid Klecknercd016d82017-07-07 22:04:29 +00001990
Richard Smithb228a862012-02-15 02:18:13 +00001991 // Everything else is fine.
1992 return true;
Richard Smith0b0a0b62011-10-29 20:57:55 +00001993}
1994
Richard Smith2e312c82012-03-03 22:46:17 +00001995static bool EvalPointerValueAsBool(const APValue &Value, bool &Result) {
John McCalleb3e4f32010-05-07 21:34:32 +00001996 // A null base expression indicates a null pointer. These are always
1997 // evaluatable, and they are false unless the offset is zero.
Richard Smith027bf112011-11-17 22:56:20 +00001998 if (!Value.getLValueBase()) {
1999 Result = !Value.getLValueOffset().isZero();
John McCalleb3e4f32010-05-07 21:34:32 +00002000 return true;
2001 }
Rafael Espindolaa1f9cc12010-05-07 15:18:43 +00002002
Richard Smith027bf112011-11-17 22:56:20 +00002003 // We have a non-null base. These are generally known to be true, but if it's
2004 // a weak declaration it can be null at runtime.
John McCalleb3e4f32010-05-07 21:34:32 +00002005 Result = true;
Richard Smith027bf112011-11-17 22:56:20 +00002006 const ValueDecl *Decl = Value.getLValueBase().dyn_cast<const ValueDecl*>();
Lang Hamesd42bb472011-12-05 20:16:26 +00002007 return !Decl || !Decl->isWeak();
Eli Friedman334046a2009-06-14 02:17:33 +00002008}
2009
Richard Smith2e312c82012-03-03 22:46:17 +00002010static bool HandleConversionToBool(const APValue &Val, bool &Result) {
Richard Smith11562c52011-10-28 17:51:58 +00002011 switch (Val.getKind()) {
2012 case APValue::Uninitialized:
2013 return false;
2014 case APValue::Int:
2015 Result = Val.getInt().getBoolValue();
Eli Friedman9a156e52008-11-12 09:44:48 +00002016 return true;
Richard Smith11562c52011-10-28 17:51:58 +00002017 case APValue::Float:
2018 Result = !Val.getFloat().isZero();
Eli Friedman9a156e52008-11-12 09:44:48 +00002019 return true;
Richard Smith11562c52011-10-28 17:51:58 +00002020 case APValue::ComplexInt:
2021 Result = Val.getComplexIntReal().getBoolValue() ||
2022 Val.getComplexIntImag().getBoolValue();
2023 return true;
2024 case APValue::ComplexFloat:
2025 Result = !Val.getComplexFloatReal().isZero() ||
2026 !Val.getComplexFloatImag().isZero();
2027 return true;
Richard Smith027bf112011-11-17 22:56:20 +00002028 case APValue::LValue:
2029 return EvalPointerValueAsBool(Val, Result);
2030 case APValue::MemberPointer:
2031 Result = Val.getMemberPointerDecl();
2032 return true;
Richard Smith11562c52011-10-28 17:51:58 +00002033 case APValue::Vector:
Richard Smithf3e9e432011-11-07 09:22:26 +00002034 case APValue::Array:
Richard Smithd62306a2011-11-10 06:34:14 +00002035 case APValue::Struct:
2036 case APValue::Union:
Eli Friedmanfd5e54d2012-01-04 23:13:47 +00002037 case APValue::AddrLabelDiff:
Richard Smith11562c52011-10-28 17:51:58 +00002038 return false;
Eli Friedman9a156e52008-11-12 09:44:48 +00002039 }
2040
Richard Smith11562c52011-10-28 17:51:58 +00002041 llvm_unreachable("unknown APValue kind");
2042}
2043
2044static bool EvaluateAsBooleanCondition(const Expr *E, bool &Result,
2045 EvalInfo &Info) {
2046 assert(E->isRValue() && "missing lvalue-to-rvalue conv in bool condition");
Richard Smith2e312c82012-03-03 22:46:17 +00002047 APValue Val;
Argyrios Kyrtzidis91d00982012-02-27 20:21:34 +00002048 if (!Evaluate(Val, Info, E))
Richard Smith11562c52011-10-28 17:51:58 +00002049 return false;
Argyrios Kyrtzidis91d00982012-02-27 20:21:34 +00002050 return HandleConversionToBool(Val, Result);
Eli Friedman9a156e52008-11-12 09:44:48 +00002051}
2052
Richard Smith357362d2011-12-13 06:39:58 +00002053template<typename T>
Richard Smith0c6124b2015-12-03 01:36:22 +00002054static bool HandleOverflow(EvalInfo &Info, const Expr *E,
Richard Smith357362d2011-12-13 06:39:58 +00002055 const T &SrcValue, QualType DestType) {
Eli Friedman4eafb6b2012-07-17 21:03:05 +00002056 Info.CCEDiag(E, diag::note_constexpr_overflow)
Richard Smithfe800032012-01-31 04:08:20 +00002057 << SrcValue << DestType;
Richard Smithce8eca52015-12-08 03:21:47 +00002058 return Info.noteUndefinedBehavior();
Richard Smith357362d2011-12-13 06:39:58 +00002059}
2060
2061static bool HandleFloatToIntCast(EvalInfo &Info, const Expr *E,
2062 QualType SrcType, const APFloat &Value,
2063 QualType DestType, APSInt &Result) {
2064 unsigned DestWidth = Info.Ctx.getIntWidth(DestType);
Daniel Dunbarb6f953e2009-01-29 06:16:07 +00002065 // Determine whether we are converting to unsigned or signed.
Douglas Gregor6ab2fa82011-05-20 16:38:50 +00002066 bool DestSigned = DestType->isSignedIntegerOrEnumerationType();
Mike Stump11289f42009-09-09 15:08:12 +00002067
Richard Smith357362d2011-12-13 06:39:58 +00002068 Result = APSInt(DestWidth, !DestSigned);
Daniel Dunbarb6f953e2009-01-29 06:16:07 +00002069 bool ignored;
Richard Smith357362d2011-12-13 06:39:58 +00002070 if (Value.convertToInteger(Result, llvm::APFloat::rmTowardZero, &ignored)
2071 & APFloat::opInvalidOp)
Richard Smith0c6124b2015-12-03 01:36:22 +00002072 return HandleOverflow(Info, E, Value, DestType);
Richard Smith357362d2011-12-13 06:39:58 +00002073 return true;
Daniel Dunbarb6f953e2009-01-29 06:16:07 +00002074}
2075
Richard Smith357362d2011-12-13 06:39:58 +00002076static bool HandleFloatToFloatCast(EvalInfo &Info, const Expr *E,
2077 QualType SrcType, QualType DestType,
2078 APFloat &Result) {
2079 APFloat Value = Result;
Daniel Dunbarb6f953e2009-01-29 06:16:07 +00002080 bool ignored;
Richard Smith357362d2011-12-13 06:39:58 +00002081 if (Result.convert(Info.Ctx.getFloatTypeSemantics(DestType),
2082 APFloat::rmNearestTiesToEven, &ignored)
2083 & APFloat::opOverflow)
Richard Smith0c6124b2015-12-03 01:36:22 +00002084 return HandleOverflow(Info, E, Value, DestType);
Richard Smith357362d2011-12-13 06:39:58 +00002085 return true;
Daniel Dunbarb6f953e2009-01-29 06:16:07 +00002086}
2087
Richard Smith911e1422012-01-30 22:27:01 +00002088static APSInt HandleIntToIntCast(EvalInfo &Info, const Expr *E,
2089 QualType DestType, QualType SrcType,
George Burgess IV533ff002015-12-11 00:23:35 +00002090 const APSInt &Value) {
Richard Smith911e1422012-01-30 22:27:01 +00002091 unsigned DestWidth = Info.Ctx.getIntWidth(DestType);
Daniel Dunbarb6f953e2009-01-29 06:16:07 +00002092 APSInt Result = Value;
2093 // Figure out if this is a truncate, extend or noop cast.
2094 // If the input is signed, do a sign extend, noop, or truncate.
Jay Foad6d4db0c2010-12-07 08:25:34 +00002095 Result = Result.extOrTrunc(DestWidth);
Douglas Gregor6ab2fa82011-05-20 16:38:50 +00002096 Result.setIsUnsigned(DestType->isUnsignedIntegerOrEnumerationType());
Daniel Dunbarb6f953e2009-01-29 06:16:07 +00002097 return Result;
2098}
2099
Richard Smith357362d2011-12-13 06:39:58 +00002100static bool HandleIntToFloatCast(EvalInfo &Info, const Expr *E,
2101 QualType SrcType, const APSInt &Value,
2102 QualType DestType, APFloat &Result) {
2103 Result = APFloat(Info.Ctx.getFloatTypeSemantics(DestType), 1);
2104 if (Result.convertFromAPInt(Value, Value.isSigned(),
2105 APFloat::rmNearestTiesToEven)
2106 & APFloat::opOverflow)
Richard Smith0c6124b2015-12-03 01:36:22 +00002107 return HandleOverflow(Info, E, Value, DestType);
Richard Smith357362d2011-12-13 06:39:58 +00002108 return true;
Daniel Dunbarb6f953e2009-01-29 06:16:07 +00002109}
2110
Richard Smith49ca8aa2013-08-06 07:09:20 +00002111static bool truncateBitfieldValue(EvalInfo &Info, const Expr *E,
2112 APValue &Value, const FieldDecl *FD) {
2113 assert(FD->isBitField() && "truncateBitfieldValue on non-bitfield");
2114
2115 if (!Value.isInt()) {
2116 // Trying to store a pointer-cast-to-integer into a bitfield.
2117 // FIXME: In this case, we should provide the diagnostic for casting
2118 // a pointer to an integer.
2119 assert(Value.isLValue() && "integral value neither int nor lvalue?");
Faisal Valie690b7a2016-07-02 22:34:24 +00002120 Info.FFDiag(E);
Richard Smith49ca8aa2013-08-06 07:09:20 +00002121 return false;
2122 }
2123
2124 APSInt &Int = Value.getInt();
2125 unsigned OldBitWidth = Int.getBitWidth();
2126 unsigned NewBitWidth = FD->getBitWidthValue(Info.Ctx);
2127 if (NewBitWidth < OldBitWidth)
2128 Int = Int.trunc(NewBitWidth).extend(OldBitWidth);
2129 return true;
2130}
2131
Eli Friedman803acb32011-12-22 03:51:45 +00002132static bool EvalAndBitcastToAPInt(EvalInfo &Info, const Expr *E,
2133 llvm::APInt &Res) {
Richard Smith2e312c82012-03-03 22:46:17 +00002134 APValue SVal;
Eli Friedman803acb32011-12-22 03:51:45 +00002135 if (!Evaluate(SVal, Info, E))
2136 return false;
2137 if (SVal.isInt()) {
2138 Res = SVal.getInt();
2139 return true;
2140 }
2141 if (SVal.isFloat()) {
2142 Res = SVal.getFloat().bitcastToAPInt();
2143 return true;
2144 }
2145 if (SVal.isVector()) {
2146 QualType VecTy = E->getType();
2147 unsigned VecSize = Info.Ctx.getTypeSize(VecTy);
2148 QualType EltTy = VecTy->castAs<VectorType>()->getElementType();
2149 unsigned EltSize = Info.Ctx.getTypeSize(EltTy);
2150 bool BigEndian = Info.Ctx.getTargetInfo().isBigEndian();
2151 Res = llvm::APInt::getNullValue(VecSize);
2152 for (unsigned i = 0; i < SVal.getVectorLength(); i++) {
2153 APValue &Elt = SVal.getVectorElt(i);
2154 llvm::APInt EltAsInt;
2155 if (Elt.isInt()) {
2156 EltAsInt = Elt.getInt();
2157 } else if (Elt.isFloat()) {
2158 EltAsInt = Elt.getFloat().bitcastToAPInt();
2159 } else {
2160 // Don't try to handle vectors of anything other than int or float
2161 // (not sure if it's possible to hit this case).
Faisal Valie690b7a2016-07-02 22:34:24 +00002162 Info.FFDiag(E, diag::note_invalid_subexpr_in_const_expr);
Eli Friedman803acb32011-12-22 03:51:45 +00002163 return false;
2164 }
2165 unsigned BaseEltSize = EltAsInt.getBitWidth();
2166 if (BigEndian)
2167 Res |= EltAsInt.zextOrTrunc(VecSize).rotr(i*EltSize+BaseEltSize);
2168 else
2169 Res |= EltAsInt.zextOrTrunc(VecSize).rotl(i*EltSize);
2170 }
2171 return true;
2172 }
2173 // Give up if the input isn't an int, float, or vector. For example, we
2174 // reject "(v4i16)(intptr_t)&a".
Faisal Valie690b7a2016-07-02 22:34:24 +00002175 Info.FFDiag(E, diag::note_invalid_subexpr_in_const_expr);
Eli Friedman803acb32011-12-22 03:51:45 +00002176 return false;
2177}
2178
Richard Smith43e77732013-05-07 04:50:00 +00002179/// Perform the given integer operation, which is known to need at most BitWidth
2180/// bits, and check for overflow in the original type (if that type was not an
2181/// unsigned type).
2182template<typename Operation>
Richard Smith0c6124b2015-12-03 01:36:22 +00002183static bool CheckedIntArithmetic(EvalInfo &Info, const Expr *E,
2184 const APSInt &LHS, const APSInt &RHS,
2185 unsigned BitWidth, Operation Op,
2186 APSInt &Result) {
2187 if (LHS.isUnsigned()) {
2188 Result = Op(LHS, RHS);
2189 return true;
2190 }
Richard Smith43e77732013-05-07 04:50:00 +00002191
2192 APSInt Value(Op(LHS.extend(BitWidth), RHS.extend(BitWidth)), false);
Richard Smith0c6124b2015-12-03 01:36:22 +00002193 Result = Value.trunc(LHS.getBitWidth());
Richard Smith43e77732013-05-07 04:50:00 +00002194 if (Result.extend(BitWidth) != Value) {
Richard Smith6d4c6582013-11-05 22:18:15 +00002195 if (Info.checkingForOverflow())
Richard Smith43e77732013-05-07 04:50:00 +00002196 Info.Ctx.getDiagnostics().Report(E->getExprLoc(),
Richard Smith0c6124b2015-12-03 01:36:22 +00002197 diag::warn_integer_constant_overflow)
Richard Smith43e77732013-05-07 04:50:00 +00002198 << Result.toString(10) << E->getType();
2199 else
Richard Smith0c6124b2015-12-03 01:36:22 +00002200 return HandleOverflow(Info, E, Value, E->getType());
Richard Smith43e77732013-05-07 04:50:00 +00002201 }
Richard Smith0c6124b2015-12-03 01:36:22 +00002202 return true;
Richard Smith43e77732013-05-07 04:50:00 +00002203}
2204
2205/// Perform the given binary integer operation.
2206static bool handleIntIntBinOp(EvalInfo &Info, const Expr *E, const APSInt &LHS,
2207 BinaryOperatorKind Opcode, APSInt RHS,
2208 APSInt &Result) {
2209 switch (Opcode) {
2210 default:
Faisal Valie690b7a2016-07-02 22:34:24 +00002211 Info.FFDiag(E);
Richard Smith43e77732013-05-07 04:50:00 +00002212 return false;
2213 case BO_Mul:
Richard Smith0c6124b2015-12-03 01:36:22 +00002214 return CheckedIntArithmetic(Info, E, LHS, RHS, LHS.getBitWidth() * 2,
2215 std::multiplies<APSInt>(), Result);
Richard Smith43e77732013-05-07 04:50:00 +00002216 case BO_Add:
Richard Smith0c6124b2015-12-03 01:36:22 +00002217 return CheckedIntArithmetic(Info, E, LHS, RHS, LHS.getBitWidth() + 1,
2218 std::plus<APSInt>(), Result);
Richard Smith43e77732013-05-07 04:50:00 +00002219 case BO_Sub:
Richard Smith0c6124b2015-12-03 01:36:22 +00002220 return CheckedIntArithmetic(Info, E, LHS, RHS, LHS.getBitWidth() + 1,
2221 std::minus<APSInt>(), Result);
Richard Smith43e77732013-05-07 04:50:00 +00002222 case BO_And: Result = LHS & RHS; return true;
2223 case BO_Xor: Result = LHS ^ RHS; return true;
2224 case BO_Or: Result = LHS | RHS; return true;
2225 case BO_Div:
2226 case BO_Rem:
2227 if (RHS == 0) {
Faisal Valie690b7a2016-07-02 22:34:24 +00002228 Info.FFDiag(E, diag::note_expr_divide_by_zero);
Richard Smith43e77732013-05-07 04:50:00 +00002229 return false;
2230 }
Richard Smith0c6124b2015-12-03 01:36:22 +00002231 Result = (Opcode == BO_Rem ? LHS % RHS : LHS / RHS);
2232 // Check for overflow case: INT_MIN / -1 or INT_MIN % -1. APSInt supports
2233 // this operation and gives the two's complement result.
Richard Smith43e77732013-05-07 04:50:00 +00002234 if (RHS.isNegative() && RHS.isAllOnesValue() &&
2235 LHS.isSigned() && LHS.isMinSignedValue())
Richard Smith0c6124b2015-12-03 01:36:22 +00002236 return HandleOverflow(Info, E, -LHS.extend(LHS.getBitWidth() + 1),
2237 E->getType());
Richard Smith43e77732013-05-07 04:50:00 +00002238 return true;
2239 case BO_Shl: {
2240 if (Info.getLangOpts().OpenCL)
2241 // OpenCL 6.3j: shift values are effectively % word size of LHS.
2242 RHS &= APSInt(llvm::APInt(RHS.getBitWidth(),
2243 static_cast<uint64_t>(LHS.getBitWidth() - 1)),
2244 RHS.isUnsigned());
2245 else if (RHS.isSigned() && RHS.isNegative()) {
2246 // During constant-folding, a negative shift is an opposite shift. Such
2247 // a shift is not a constant expression.
2248 Info.CCEDiag(E, diag::note_constexpr_negative_shift) << RHS;
2249 RHS = -RHS;
2250 goto shift_right;
2251 }
2252 shift_left:
2253 // C++11 [expr.shift]p1: Shift width must be less than the bit width of
2254 // the shifted type.
2255 unsigned SA = (unsigned) RHS.getLimitedValue(LHS.getBitWidth()-1);
2256 if (SA != RHS) {
2257 Info.CCEDiag(E, diag::note_constexpr_large_shift)
2258 << RHS << E->getType() << LHS.getBitWidth();
2259 } else if (LHS.isSigned()) {
2260 // C++11 [expr.shift]p2: A signed left shift must have a non-negative
2261 // operand, and must not overflow the corresponding unsigned type.
2262 if (LHS.isNegative())
2263 Info.CCEDiag(E, diag::note_constexpr_lshift_of_negative) << LHS;
2264 else if (LHS.countLeadingZeros() < SA)
2265 Info.CCEDiag(E, diag::note_constexpr_lshift_discards);
2266 }
2267 Result = LHS << SA;
2268 return true;
2269 }
2270 case BO_Shr: {
2271 if (Info.getLangOpts().OpenCL)
2272 // OpenCL 6.3j: shift values are effectively % word size of LHS.
2273 RHS &= APSInt(llvm::APInt(RHS.getBitWidth(),
2274 static_cast<uint64_t>(LHS.getBitWidth() - 1)),
2275 RHS.isUnsigned());
2276 else if (RHS.isSigned() && RHS.isNegative()) {
2277 // During constant-folding, a negative shift is an opposite shift. Such a
2278 // shift is not a constant expression.
2279 Info.CCEDiag(E, diag::note_constexpr_negative_shift) << RHS;
2280 RHS = -RHS;
2281 goto shift_left;
2282 }
2283 shift_right:
2284 // C++11 [expr.shift]p1: Shift width must be less than the bit width of the
2285 // shifted type.
2286 unsigned SA = (unsigned) RHS.getLimitedValue(LHS.getBitWidth()-1);
2287 if (SA != RHS)
2288 Info.CCEDiag(E, diag::note_constexpr_large_shift)
2289 << RHS << E->getType() << LHS.getBitWidth();
2290 Result = LHS >> SA;
2291 return true;
2292 }
2293
2294 case BO_LT: Result = LHS < RHS; return true;
2295 case BO_GT: Result = LHS > RHS; return true;
2296 case BO_LE: Result = LHS <= RHS; return true;
2297 case BO_GE: Result = LHS >= RHS; return true;
2298 case BO_EQ: Result = LHS == RHS; return true;
2299 case BO_NE: Result = LHS != RHS; return true;
Eric Fiselier0683c0e2018-05-07 21:07:10 +00002300 case BO_Cmp:
2301 llvm_unreachable("BO_Cmp should be handled elsewhere");
Richard Smith43e77732013-05-07 04:50:00 +00002302 }
2303}
2304
Richard Smith861b5b52013-05-07 23:34:45 +00002305/// Perform the given binary floating-point operation, in-place, on LHS.
2306static bool handleFloatFloatBinOp(EvalInfo &Info, const Expr *E,
2307 APFloat &LHS, BinaryOperatorKind Opcode,
2308 const APFloat &RHS) {
2309 switch (Opcode) {
2310 default:
Faisal Valie690b7a2016-07-02 22:34:24 +00002311 Info.FFDiag(E);
Richard Smith861b5b52013-05-07 23:34:45 +00002312 return false;
2313 case BO_Mul:
2314 LHS.multiply(RHS, APFloat::rmNearestTiesToEven);
2315 break;
2316 case BO_Add:
2317 LHS.add(RHS, APFloat::rmNearestTiesToEven);
2318 break;
2319 case BO_Sub:
2320 LHS.subtract(RHS, APFloat::rmNearestTiesToEven);
2321 break;
2322 case BO_Div:
2323 LHS.divide(RHS, APFloat::rmNearestTiesToEven);
2324 break;
2325 }
2326
Richard Smith0c6124b2015-12-03 01:36:22 +00002327 if (LHS.isInfinity() || LHS.isNaN()) {
Richard Smith861b5b52013-05-07 23:34:45 +00002328 Info.CCEDiag(E, diag::note_constexpr_float_arithmetic) << LHS.isNaN();
Richard Smithce8eca52015-12-08 03:21:47 +00002329 return Info.noteUndefinedBehavior();
Richard Smith0c6124b2015-12-03 01:36:22 +00002330 }
Richard Smith861b5b52013-05-07 23:34:45 +00002331 return true;
2332}
2333
Richard Smitha8105bc2012-01-06 16:39:00 +00002334/// Cast an lvalue referring to a base subobject to a derived class, by
2335/// truncating the lvalue's path to the given length.
2336static bool CastToDerivedClass(EvalInfo &Info, const Expr *E, LValue &Result,
2337 const RecordDecl *TruncatedType,
2338 unsigned TruncatedElements) {
Richard Smith027bf112011-11-17 22:56:20 +00002339 SubobjectDesignator &D = Result.Designator;
Richard Smitha8105bc2012-01-06 16:39:00 +00002340
2341 // Check we actually point to a derived class object.
2342 if (TruncatedElements == D.Entries.size())
2343 return true;
2344 assert(TruncatedElements >= D.MostDerivedPathLength &&
2345 "not casting to a derived class");
2346 if (!Result.checkSubobject(Info, E, CSK_Derived))
2347 return false;
2348
2349 // Truncate the path to the subobject, and remove any derived-to-base offsets.
Richard Smith027bf112011-11-17 22:56:20 +00002350 const RecordDecl *RD = TruncatedType;
2351 for (unsigned I = TruncatedElements, N = D.Entries.size(); I != N; ++I) {
John McCalld7bca762012-05-01 00:38:49 +00002352 if (RD->isInvalidDecl()) return false;
Richard Smithd62306a2011-11-10 06:34:14 +00002353 const ASTRecordLayout &Layout = Info.Ctx.getASTRecordLayout(RD);
2354 const CXXRecordDecl *Base = getAsBaseClass(D.Entries[I]);
Richard Smith027bf112011-11-17 22:56:20 +00002355 if (isVirtualBaseClass(D.Entries[I]))
Richard Smithd62306a2011-11-10 06:34:14 +00002356 Result.Offset -= Layout.getVBaseClassOffset(Base);
Richard Smith027bf112011-11-17 22:56:20 +00002357 else
Richard Smithd62306a2011-11-10 06:34:14 +00002358 Result.Offset -= Layout.getBaseClassOffset(Base);
2359 RD = Base;
2360 }
Richard Smith027bf112011-11-17 22:56:20 +00002361 D.Entries.resize(TruncatedElements);
Richard Smithd62306a2011-11-10 06:34:14 +00002362 return true;
2363}
2364
John McCalld7bca762012-05-01 00:38:49 +00002365static bool HandleLValueDirectBase(EvalInfo &Info, const Expr *E, LValue &Obj,
Richard Smithd62306a2011-11-10 06:34:14 +00002366 const CXXRecordDecl *Derived,
2367 const CXXRecordDecl *Base,
Craig Topper36250ad2014-05-12 05:36:57 +00002368 const ASTRecordLayout *RL = nullptr) {
John McCalld7bca762012-05-01 00:38:49 +00002369 if (!RL) {
2370 if (Derived->isInvalidDecl()) return false;
2371 RL = &Info.Ctx.getASTRecordLayout(Derived);
2372 }
2373
Richard Smithd62306a2011-11-10 06:34:14 +00002374 Obj.getLValueOffset() += RL->getBaseClassOffset(Base);
Richard Smitha8105bc2012-01-06 16:39:00 +00002375 Obj.addDecl(Info, E, Base, /*Virtual*/ false);
John McCalld7bca762012-05-01 00:38:49 +00002376 return true;
Richard Smithd62306a2011-11-10 06:34:14 +00002377}
2378
Richard Smitha8105bc2012-01-06 16:39:00 +00002379static bool HandleLValueBase(EvalInfo &Info, const Expr *E, LValue &Obj,
Richard Smithd62306a2011-11-10 06:34:14 +00002380 const CXXRecordDecl *DerivedDecl,
2381 const CXXBaseSpecifier *Base) {
2382 const CXXRecordDecl *BaseDecl = Base->getType()->getAsCXXRecordDecl();
2383
John McCalld7bca762012-05-01 00:38:49 +00002384 if (!Base->isVirtual())
2385 return HandleLValueDirectBase(Info, E, Obj, DerivedDecl, BaseDecl);
Richard Smithd62306a2011-11-10 06:34:14 +00002386
Richard Smitha8105bc2012-01-06 16:39:00 +00002387 SubobjectDesignator &D = Obj.Designator;
2388 if (D.Invalid)
Richard Smithd62306a2011-11-10 06:34:14 +00002389 return false;
2390
Richard Smitha8105bc2012-01-06 16:39:00 +00002391 // Extract most-derived object and corresponding type.
2392 DerivedDecl = D.MostDerivedType->getAsCXXRecordDecl();
2393 if (!CastToDerivedClass(Info, E, Obj, DerivedDecl, D.MostDerivedPathLength))
2394 return false;
2395
2396 // Find the virtual base class.
John McCalld7bca762012-05-01 00:38:49 +00002397 if (DerivedDecl->isInvalidDecl()) return false;
Richard Smithd62306a2011-11-10 06:34:14 +00002398 const ASTRecordLayout &Layout = Info.Ctx.getASTRecordLayout(DerivedDecl);
2399 Obj.getLValueOffset() += Layout.getVBaseClassOffset(BaseDecl);
Richard Smitha8105bc2012-01-06 16:39:00 +00002400 Obj.addDecl(Info, E, BaseDecl, /*Virtual*/ true);
Richard Smithd62306a2011-11-10 06:34:14 +00002401 return true;
2402}
2403
Richard Smith84401042013-06-03 05:03:02 +00002404static bool HandleLValueBasePath(EvalInfo &Info, const CastExpr *E,
2405 QualType Type, LValue &Result) {
2406 for (CastExpr::path_const_iterator PathI = E->path_begin(),
2407 PathE = E->path_end();
2408 PathI != PathE; ++PathI) {
2409 if (!HandleLValueBase(Info, E, Result, Type->getAsCXXRecordDecl(),
2410 *PathI))
2411 return false;
2412 Type = (*PathI)->getType();
2413 }
2414 return true;
2415}
2416
Richard Smithd62306a2011-11-10 06:34:14 +00002417/// Update LVal to refer to the given field, which must be a member of the type
2418/// currently described by LVal.
John McCalld7bca762012-05-01 00:38:49 +00002419static bool HandleLValueMember(EvalInfo &Info, const Expr *E, LValue &LVal,
Richard Smithd62306a2011-11-10 06:34:14 +00002420 const FieldDecl *FD,
Craig Topper36250ad2014-05-12 05:36:57 +00002421 const ASTRecordLayout *RL = nullptr) {
John McCalld7bca762012-05-01 00:38:49 +00002422 if (!RL) {
2423 if (FD->getParent()->isInvalidDecl()) return false;
Richard Smithd62306a2011-11-10 06:34:14 +00002424 RL = &Info.Ctx.getASTRecordLayout(FD->getParent());
John McCalld7bca762012-05-01 00:38:49 +00002425 }
Richard Smithd62306a2011-11-10 06:34:14 +00002426
2427 unsigned I = FD->getFieldIndex();
Yaxun Liu402804b2016-12-15 08:09:08 +00002428 LVal.adjustOffset(Info.Ctx.toCharUnitsFromBits(RL->getFieldOffset(I)));
Richard Smitha8105bc2012-01-06 16:39:00 +00002429 LVal.addDecl(Info, E, FD);
John McCalld7bca762012-05-01 00:38:49 +00002430 return true;
Richard Smithd62306a2011-11-10 06:34:14 +00002431}
2432
Richard Smith1b78b3d2012-01-25 22:15:11 +00002433/// Update LVal to refer to the given indirect field.
John McCalld7bca762012-05-01 00:38:49 +00002434static bool HandleLValueIndirectMember(EvalInfo &Info, const Expr *E,
Richard Smith1b78b3d2012-01-25 22:15:11 +00002435 LValue &LVal,
2436 const IndirectFieldDecl *IFD) {
Aaron Ballman29c94602014-03-07 18:36:15 +00002437 for (const auto *C : IFD->chain())
Aaron Ballman13916082014-03-07 18:11:58 +00002438 if (!HandleLValueMember(Info, E, LVal, cast<FieldDecl>(C)))
John McCalld7bca762012-05-01 00:38:49 +00002439 return false;
2440 return true;
Richard Smith1b78b3d2012-01-25 22:15:11 +00002441}
2442
Richard Smithd62306a2011-11-10 06:34:14 +00002443/// Get the size of the given type in char units.
Richard Smith17100ba2012-02-16 02:46:34 +00002444static bool HandleSizeof(EvalInfo &Info, SourceLocation Loc,
2445 QualType Type, CharUnits &Size) {
Richard Smithd62306a2011-11-10 06:34:14 +00002446 // sizeof(void), __alignof__(void), sizeof(function) = 1 as a gcc
2447 // extension.
2448 if (Type->isVoidType() || Type->isFunctionType()) {
2449 Size = CharUnits::One();
2450 return true;
2451 }
2452
Saleem Abdulrasoolada78fe2016-06-04 03:16:21 +00002453 if (Type->isDependentType()) {
Faisal Valie690b7a2016-07-02 22:34:24 +00002454 Info.FFDiag(Loc);
Saleem Abdulrasoolada78fe2016-06-04 03:16:21 +00002455 return false;
2456 }
2457
Richard Smithd62306a2011-11-10 06:34:14 +00002458 if (!Type->isConstantSizeType()) {
2459 // sizeof(vla) is not a constantexpr: C99 6.5.3.4p2.
Richard Smith17100ba2012-02-16 02:46:34 +00002460 // FIXME: Better diagnostic.
Faisal Valie690b7a2016-07-02 22:34:24 +00002461 Info.FFDiag(Loc);
Richard Smithd62306a2011-11-10 06:34:14 +00002462 return false;
2463 }
2464
2465 Size = Info.Ctx.getTypeSizeInChars(Type);
2466 return true;
2467}
2468
2469/// Update a pointer value to model pointer arithmetic.
2470/// \param Info - Information about the ongoing evaluation.
Richard Smitha8105bc2012-01-06 16:39:00 +00002471/// \param E - The expression being evaluated, for diagnostic purposes.
Richard Smithd62306a2011-11-10 06:34:14 +00002472/// \param LVal - The pointer value to be updated.
2473/// \param EltTy - The pointee type represented by LVal.
2474/// \param Adjustment - The adjustment, in objects of type EltTy, to add.
Richard Smitha8105bc2012-01-06 16:39:00 +00002475static bool HandleLValueArrayAdjustment(EvalInfo &Info, const Expr *E,
2476 LValue &LVal, QualType EltTy,
Richard Smithd6cc1982017-01-31 02:23:02 +00002477 APSInt Adjustment) {
Richard Smithd62306a2011-11-10 06:34:14 +00002478 CharUnits SizeOfPointee;
Richard Smith17100ba2012-02-16 02:46:34 +00002479 if (!HandleSizeof(Info, E->getExprLoc(), EltTy, SizeOfPointee))
Richard Smithd62306a2011-11-10 06:34:14 +00002480 return false;
2481
Yaxun Liu402804b2016-12-15 08:09:08 +00002482 LVal.adjustOffsetAndIndex(Info, E, Adjustment, SizeOfPointee);
Richard Smithd62306a2011-11-10 06:34:14 +00002483 return true;
2484}
2485
Richard Smithd6cc1982017-01-31 02:23:02 +00002486static bool HandleLValueArrayAdjustment(EvalInfo &Info, const Expr *E,
2487 LValue &LVal, QualType EltTy,
2488 int64_t Adjustment) {
2489 return HandleLValueArrayAdjustment(Info, E, LVal, EltTy,
2490 APSInt::get(Adjustment));
2491}
2492
Richard Smith66c96992012-02-18 22:04:06 +00002493/// Update an lvalue to refer to a component of a complex number.
2494/// \param Info - Information about the ongoing evaluation.
2495/// \param LVal - The lvalue to be updated.
2496/// \param EltTy - The complex number's component type.
2497/// \param Imag - False for the real component, true for the imaginary.
2498static bool HandleLValueComplexElement(EvalInfo &Info, const Expr *E,
2499 LValue &LVal, QualType EltTy,
2500 bool Imag) {
2501 if (Imag) {
2502 CharUnits SizeOfComponent;
2503 if (!HandleSizeof(Info, E->getExprLoc(), EltTy, SizeOfComponent))
2504 return false;
2505 LVal.Offset += SizeOfComponent;
2506 }
2507 LVal.addComplex(Info, E, EltTy, Imag);
2508 return true;
2509}
2510
Faisal Vali051e3a22017-02-16 04:12:21 +00002511static bool handleLValueToRValueConversion(EvalInfo &Info, const Expr *Conv,
2512 QualType Type, const LValue &LVal,
2513 APValue &RVal);
2514
Richard Smith27908702011-10-24 17:54:18 +00002515/// Try to evaluate the initializer for a variable declaration.
Richard Smith3229b742013-05-05 21:17:10 +00002516///
2517/// \param Info Information about the ongoing evaluation.
2518/// \param E An expression to be used when printing diagnostics.
2519/// \param VD The variable whose initializer should be obtained.
2520/// \param Frame The frame in which the variable was created. Must be null
2521/// if this variable is not local to the evaluation.
2522/// \param Result Filled in with a pointer to the value of the variable.
2523static bool evaluateVarDeclInit(EvalInfo &Info, const Expr *E,
2524 const VarDecl *VD, CallStackFrame *Frame,
Akira Hatanaka4e2698c2018-04-10 05:15:01 +00002525 APValue *&Result, const LValue *LVal) {
Faisal Vali051e3a22017-02-16 04:12:21 +00002526
Richard Smith254a73d2011-10-28 22:34:42 +00002527 // If this is a parameter to an active constexpr function call, perform
2528 // argument substitution.
2529 if (const ParmVarDecl *PVD = dyn_cast<ParmVarDecl>(VD)) {
Richard Smith253c2a32012-01-27 01:14:48 +00002530 // Assume arguments of a potential constant expression are unknown
2531 // constant expressions.
Richard Smith6d4c6582013-11-05 22:18:15 +00002532 if (Info.checkingPotentialConstantExpression())
Richard Smith253c2a32012-01-27 01:14:48 +00002533 return false;
Richard Smithf57d8cb2011-12-09 22:58:01 +00002534 if (!Frame || !Frame->Arguments) {
Faisal Valie690b7a2016-07-02 22:34:24 +00002535 Info.FFDiag(E, diag::note_invalid_subexpr_in_const_expr);
Richard Smithfec09922011-11-01 16:57:24 +00002536 return false;
Richard Smithf57d8cb2011-12-09 22:58:01 +00002537 }
Richard Smith3229b742013-05-05 21:17:10 +00002538 Result = &Frame->Arguments[PVD->getFunctionScopeIndex()];
Richard Smithfec09922011-11-01 16:57:24 +00002539 return true;
Richard Smith254a73d2011-10-28 22:34:42 +00002540 }
Richard Smith27908702011-10-24 17:54:18 +00002541
Richard Smithd9f663b2013-04-22 15:31:51 +00002542 // If this is a local variable, dig out its value.
Richard Smith3229b742013-05-05 21:17:10 +00002543 if (Frame) {
Akira Hatanaka4e2698c2018-04-10 05:15:01 +00002544 Result = LVal ? Frame->getTemporary(VD, LVal->getLValueVersion())
2545 : Frame->getCurrentTemporary(VD);
Faisal Valia734ab92016-03-26 16:11:37 +00002546 if (!Result) {
2547 // Assume variables referenced within a lambda's call operator that were
2548 // not declared within the call operator are captures and during checking
2549 // of a potential constant expression, assume they are unknown constant
2550 // expressions.
2551 assert(isLambdaCallOperator(Frame->Callee) &&
2552 (VD->getDeclContext() != Frame->Callee || VD->isInitCapture()) &&
2553 "missing value for local variable");
2554 if (Info.checkingPotentialConstantExpression())
2555 return false;
2556 // FIXME: implement capture evaluation during constant expr evaluation.
Stephen Kellyf2ceec42018-08-09 21:08:08 +00002557 Info.FFDiag(E->getBeginLoc(),
2558 diag::note_unimplemented_constexpr_lambda_feature_ast)
Faisal Valia734ab92016-03-26 16:11:37 +00002559 << "captures not currently allowed";
2560 return false;
2561 }
Richard Smith08d6a2c2013-07-24 07:11:57 +00002562 return true;
Richard Smithd9f663b2013-04-22 15:31:51 +00002563 }
2564
Richard Smithd0b4dd62011-12-19 06:19:21 +00002565 // Dig out the initializer, and use the declaration which it's attached to.
2566 const Expr *Init = VD->getAnyInitializer(VD);
2567 if (!Init || Init->isValueDependent()) {
Richard Smith253c2a32012-01-27 01:14:48 +00002568 // If we're checking a potential constant expression, the variable could be
2569 // initialized later.
Richard Smith6d4c6582013-11-05 22:18:15 +00002570 if (!Info.checkingPotentialConstantExpression())
Faisal Valie690b7a2016-07-02 22:34:24 +00002571 Info.FFDiag(E, diag::note_invalid_subexpr_in_const_expr);
Richard Smithd0b4dd62011-12-19 06:19:21 +00002572 return false;
2573 }
2574
Richard Smithd62306a2011-11-10 06:34:14 +00002575 // If we're currently evaluating the initializer of this declaration, use that
2576 // in-flight value.
Richard Smith7525ff62013-05-09 07:14:00 +00002577 if (Info.EvaluatingDecl.dyn_cast<const ValueDecl*>() == VD) {
Richard Smith3229b742013-05-05 21:17:10 +00002578 Result = Info.EvaluatingDeclValue;
Richard Smith08d6a2c2013-07-24 07:11:57 +00002579 return true;
Richard Smithd62306a2011-11-10 06:34:14 +00002580 }
2581
Richard Smithcecf1842011-11-01 21:06:14 +00002582 // Never evaluate the initializer of a weak variable. We can't be sure that
2583 // this is the definition which will be used.
Richard Smithf57d8cb2011-12-09 22:58:01 +00002584 if (VD->isWeak()) {
Faisal Valie690b7a2016-07-02 22:34:24 +00002585 Info.FFDiag(E, diag::note_invalid_subexpr_in_const_expr);
Richard Smithcecf1842011-11-01 21:06:14 +00002586 return false;
Richard Smithf57d8cb2011-12-09 22:58:01 +00002587 }
Richard Smithcecf1842011-11-01 21:06:14 +00002588
Richard Smithd0b4dd62011-12-19 06:19:21 +00002589 // Check that we can fold the initializer. In C++, we will have already done
2590 // this in the cases where it matters for conformance.
Dmitri Gribenkof8579502013-01-12 19:30:44 +00002591 SmallVector<PartialDiagnosticAt, 8> Notes;
Richard Smithd0b4dd62011-12-19 06:19:21 +00002592 if (!VD->evaluateValue(Notes)) {
Faisal Valie690b7a2016-07-02 22:34:24 +00002593 Info.FFDiag(E, diag::note_constexpr_var_init_non_constant,
Richard Smithd0b4dd62011-12-19 06:19:21 +00002594 Notes.size() + 1) << VD;
2595 Info.Note(VD->getLocation(), diag::note_declared_at);
2596 Info.addNotes(Notes);
Richard Smith0b0a0b62011-10-29 20:57:55 +00002597 return false;
Richard Smithd0b4dd62011-12-19 06:19:21 +00002598 } else if (!VD->checkInitIsICE()) {
Richard Smithce1ec5e2012-03-15 04:53:45 +00002599 Info.CCEDiag(E, diag::note_constexpr_var_init_non_constant,
Richard Smithd0b4dd62011-12-19 06:19:21 +00002600 Notes.size() + 1) << VD;
2601 Info.Note(VD->getLocation(), diag::note_declared_at);
2602 Info.addNotes(Notes);
Richard Smithf57d8cb2011-12-09 22:58:01 +00002603 }
Richard Smith27908702011-10-24 17:54:18 +00002604
Richard Smith3229b742013-05-05 21:17:10 +00002605 Result = VD->getEvaluatedValue();
Richard Smith0b0a0b62011-10-29 20:57:55 +00002606 return true;
Richard Smith27908702011-10-24 17:54:18 +00002607}
2608
Richard Smith11562c52011-10-28 17:51:58 +00002609static bool IsConstNonVolatile(QualType T) {
Richard Smith27908702011-10-24 17:54:18 +00002610 Qualifiers Quals = T.getQualifiers();
2611 return Quals.hasConst() && !Quals.hasVolatile();
2612}
2613
Richard Smithe97cbd72011-11-11 04:05:33 +00002614/// Get the base index of the given base class within an APValue representing
2615/// the given derived class.
2616static unsigned getBaseIndex(const CXXRecordDecl *Derived,
2617 const CXXRecordDecl *Base) {
2618 Base = Base->getCanonicalDecl();
2619 unsigned Index = 0;
2620 for (CXXRecordDecl::base_class_const_iterator I = Derived->bases_begin(),
2621 E = Derived->bases_end(); I != E; ++I, ++Index) {
2622 if (I->getType()->getAsCXXRecordDecl()->getCanonicalDecl() == Base)
2623 return Index;
2624 }
2625
2626 llvm_unreachable("base class missing from derived class's bases list");
2627}
2628
Richard Smith3da88fa2013-04-26 14:36:30 +00002629/// Extract the value of a character from a string literal.
2630static APSInt extractStringLiteralCharacter(EvalInfo &Info, const Expr *Lit,
2631 uint64_t Index) {
Akira Hatanakabc332642017-01-31 02:31:39 +00002632 // FIXME: Support MakeStringConstant
2633 if (const auto *ObjCEnc = dyn_cast<ObjCEncodeExpr>(Lit)) {
2634 std::string Str;
2635 Info.Ctx.getObjCEncodingForType(ObjCEnc->getEncodedType(), Str);
2636 assert(Index <= Str.size() && "Index too large");
2637 return APSInt::getUnsigned(Str.c_str()[Index]);
2638 }
2639
Alexey Bataevec474782014-10-09 08:45:04 +00002640 if (auto PE = dyn_cast<PredefinedExpr>(Lit))
2641 Lit = PE->getFunctionName();
Richard Smith3da88fa2013-04-26 14:36:30 +00002642 const StringLiteral *S = cast<StringLiteral>(Lit);
2643 const ConstantArrayType *CAT =
2644 Info.Ctx.getAsConstantArrayType(S->getType());
2645 assert(CAT && "string literal isn't an array");
2646 QualType CharType = CAT->getElementType();
Richard Smith9ec1e482012-04-15 02:50:59 +00002647 assert(CharType->isIntegerType() && "unexpected character type");
Richard Smith14a94132012-02-17 03:35:37 +00002648
2649 APSInt Value(S->getCharByteWidth() * Info.Ctx.getCharWidth(),
Richard Smith9ec1e482012-04-15 02:50:59 +00002650 CharType->isUnsignedIntegerType());
Richard Smith14a94132012-02-17 03:35:37 +00002651 if (Index < S->getLength())
2652 Value = S->getCodeUnit(Index);
2653 return Value;
2654}
2655
Richard Smith3da88fa2013-04-26 14:36:30 +00002656// Expand a string literal into an array of characters.
2657static void expandStringLiteral(EvalInfo &Info, const Expr *Lit,
2658 APValue &Result) {
2659 const StringLiteral *S = cast<StringLiteral>(Lit);
2660 const ConstantArrayType *CAT =
2661 Info.Ctx.getAsConstantArrayType(S->getType());
2662 assert(CAT && "string literal isn't an array");
2663 QualType CharType = CAT->getElementType();
2664 assert(CharType->isIntegerType() && "unexpected character type");
2665
2666 unsigned Elts = CAT->getSize().getZExtValue();
2667 Result = APValue(APValue::UninitArray(),
2668 std::min(S->getLength(), Elts), Elts);
2669 APSInt Value(S->getCharByteWidth() * Info.Ctx.getCharWidth(),
2670 CharType->isUnsignedIntegerType());
2671 if (Result.hasArrayFiller())
2672 Result.getArrayFiller() = APValue(Value);
2673 for (unsigned I = 0, N = Result.getArrayInitializedElts(); I != N; ++I) {
2674 Value = S->getCodeUnit(I);
2675 Result.getArrayInitializedElt(I) = APValue(Value);
2676 }
2677}
2678
2679// Expand an array so that it has more than Index filled elements.
2680static void expandArray(APValue &Array, unsigned Index) {
2681 unsigned Size = Array.getArraySize();
2682 assert(Index < Size);
2683
2684 // Always at least double the number of elements for which we store a value.
2685 unsigned OldElts = Array.getArrayInitializedElts();
2686 unsigned NewElts = std::max(Index+1, OldElts * 2);
2687 NewElts = std::min(Size, std::max(NewElts, 8u));
2688
2689 // Copy the data across.
2690 APValue NewValue(APValue::UninitArray(), NewElts, Size);
2691 for (unsigned I = 0; I != OldElts; ++I)
2692 NewValue.getArrayInitializedElt(I).swap(Array.getArrayInitializedElt(I));
2693 for (unsigned I = OldElts; I != NewElts; ++I)
2694 NewValue.getArrayInitializedElt(I) = Array.getArrayFiller();
2695 if (NewValue.hasArrayFiller())
2696 NewValue.getArrayFiller() = Array.getArrayFiller();
2697 Array.swap(NewValue);
2698}
2699
Richard Smithb01fe402014-09-16 01:24:02 +00002700/// Determine whether a type would actually be read by an lvalue-to-rvalue
2701/// conversion. If it's of class type, we may assume that the copy operation
2702/// is trivial. Note that this is never true for a union type with fields
2703/// (because the copy always "reads" the active member) and always true for
2704/// a non-class type.
2705static bool isReadByLvalueToRvalueConversion(QualType T) {
2706 CXXRecordDecl *RD = T->getBaseElementTypeUnsafe()->getAsCXXRecordDecl();
2707 if (!RD || (RD->isUnion() && !RD->field_empty()))
2708 return true;
2709 if (RD->isEmpty())
2710 return false;
2711
2712 for (auto *Field : RD->fields())
2713 if (isReadByLvalueToRvalueConversion(Field->getType()))
2714 return true;
2715
2716 for (auto &BaseSpec : RD->bases())
2717 if (isReadByLvalueToRvalueConversion(BaseSpec.getType()))
2718 return true;
2719
2720 return false;
2721}
2722
2723/// Diagnose an attempt to read from any unreadable field within the specified
2724/// type, which might be a class type.
2725static bool diagnoseUnreadableFields(EvalInfo &Info, const Expr *E,
2726 QualType T) {
2727 CXXRecordDecl *RD = T->getBaseElementTypeUnsafe()->getAsCXXRecordDecl();
2728 if (!RD)
2729 return false;
2730
2731 if (!RD->hasMutableFields())
2732 return false;
2733
2734 for (auto *Field : RD->fields()) {
2735 // If we're actually going to read this field in some way, then it can't
2736 // be mutable. If we're in a union, then assigning to a mutable field
2737 // (even an empty one) can change the active member, so that's not OK.
2738 // FIXME: Add core issue number for the union case.
2739 if (Field->isMutable() &&
2740 (RD->isUnion() || isReadByLvalueToRvalueConversion(Field->getType()))) {
Faisal Valie690b7a2016-07-02 22:34:24 +00002741 Info.FFDiag(E, diag::note_constexpr_ltor_mutable, 1) << Field;
Richard Smithb01fe402014-09-16 01:24:02 +00002742 Info.Note(Field->getLocation(), diag::note_declared_at);
2743 return true;
2744 }
2745
2746 if (diagnoseUnreadableFields(Info, E, Field->getType()))
2747 return true;
2748 }
2749
2750 for (auto &BaseSpec : RD->bases())
2751 if (diagnoseUnreadableFields(Info, E, BaseSpec.getType()))
2752 return true;
2753
2754 // All mutable fields were empty, and thus not actually read.
2755 return false;
2756}
2757
Richard Smith861b5b52013-05-07 23:34:45 +00002758/// Kinds of access we can perform on an object, for diagnostics.
Richard Smith3da88fa2013-04-26 14:36:30 +00002759enum AccessKinds {
2760 AK_Read,
Richard Smith243ef902013-05-05 23:31:59 +00002761 AK_Assign,
2762 AK_Increment,
2763 AK_Decrement
Richard Smith3da88fa2013-04-26 14:36:30 +00002764};
2765
Benjamin Kramer5b4296a2015-10-28 17:16:26 +00002766namespace {
Richard Smith3229b742013-05-05 21:17:10 +00002767/// A handle to a complete object (an object that is not a subobject of
2768/// another object).
2769struct CompleteObject {
2770 /// The value of the complete object.
2771 APValue *Value;
2772 /// The type of the complete object.
2773 QualType Type;
Richard Smith9defb7d2018-02-21 03:38:30 +00002774 bool LifetimeStartedInEvaluation;
Richard Smith3229b742013-05-05 21:17:10 +00002775
Craig Topper36250ad2014-05-12 05:36:57 +00002776 CompleteObject() : Value(nullptr) {}
Richard Smith9defb7d2018-02-21 03:38:30 +00002777 CompleteObject(APValue *Value, QualType Type,
2778 bool LifetimeStartedInEvaluation)
2779 : Value(Value), Type(Type),
2780 LifetimeStartedInEvaluation(LifetimeStartedInEvaluation) {
Richard Smith3229b742013-05-05 21:17:10 +00002781 assert(Value && "missing value for complete object");
2782 }
2783
Aaron Ballman67347662015-02-15 22:00:28 +00002784 explicit operator bool() const { return Value; }
Richard Smith3229b742013-05-05 21:17:10 +00002785};
Benjamin Kramer5b4296a2015-10-28 17:16:26 +00002786} // end anonymous namespace
Richard Smith3229b742013-05-05 21:17:10 +00002787
Richard Smith3da88fa2013-04-26 14:36:30 +00002788/// Find the designated sub-object of an rvalue.
2789template<typename SubobjectHandler>
2790typename SubobjectHandler::result_type
Richard Smith3229b742013-05-05 21:17:10 +00002791findSubobject(EvalInfo &Info, const Expr *E, const CompleteObject &Obj,
Richard Smith3da88fa2013-04-26 14:36:30 +00002792 const SubobjectDesignator &Sub, SubobjectHandler &handler) {
Richard Smitha8105bc2012-01-06 16:39:00 +00002793 if (Sub.Invalid)
2794 // A diagnostic will have already been produced.
Richard Smith3da88fa2013-04-26 14:36:30 +00002795 return handler.failed();
Richard Smith6f4f0f12017-10-20 22:56:25 +00002796 if (Sub.isOnePastTheEnd() || Sub.isMostDerivedAnUnsizedArray()) {
Richard Smith3da88fa2013-04-26 14:36:30 +00002797 if (Info.getLangOpts().CPlusPlus11)
Richard Smith6f4f0f12017-10-20 22:56:25 +00002798 Info.FFDiag(E, Sub.isOnePastTheEnd()
2799 ? diag::note_constexpr_access_past_end
2800 : diag::note_constexpr_access_unsized_array)
2801 << handler.AccessKind;
Richard Smith3da88fa2013-04-26 14:36:30 +00002802 else
Faisal Valie690b7a2016-07-02 22:34:24 +00002803 Info.FFDiag(E);
Richard Smith3da88fa2013-04-26 14:36:30 +00002804 return handler.failed();
Richard Smithf2b681b2011-12-21 05:04:46 +00002805 }
Richard Smithf3e9e432011-11-07 09:22:26 +00002806
Richard Smith3229b742013-05-05 21:17:10 +00002807 APValue *O = Obj.Value;
2808 QualType ObjType = Obj.Type;
Craig Topper36250ad2014-05-12 05:36:57 +00002809 const FieldDecl *LastField = nullptr;
Richard Smith9defb7d2018-02-21 03:38:30 +00002810 const bool MayReadMutableMembers =
2811 Obj.LifetimeStartedInEvaluation && Info.getLangOpts().CPlusPlus14;
Richard Smith49ca8aa2013-08-06 07:09:20 +00002812
Richard Smithd62306a2011-11-10 06:34:14 +00002813 // Walk the designator's path to find the subobject.
Richard Smith08d6a2c2013-07-24 07:11:57 +00002814 for (unsigned I = 0, N = Sub.Entries.size(); /**/; ++I) {
2815 if (O->isUninit()) {
Richard Smith6d4c6582013-11-05 22:18:15 +00002816 if (!Info.checkingPotentialConstantExpression())
Faisal Valie690b7a2016-07-02 22:34:24 +00002817 Info.FFDiag(E, diag::note_constexpr_access_uninit) << handler.AccessKind;
Richard Smith08d6a2c2013-07-24 07:11:57 +00002818 return handler.failed();
2819 }
2820
Richard Smith49ca8aa2013-08-06 07:09:20 +00002821 if (I == N) {
Richard Smithb01fe402014-09-16 01:24:02 +00002822 // If we are reading an object of class type, there may still be more
2823 // things we need to check: if there are any mutable subobjects, we
2824 // cannot perform this read. (This only happens when performing a trivial
2825 // copy or assignment.)
2826 if (ObjType->isRecordType() && handler.AccessKind == AK_Read &&
Richard Smith9defb7d2018-02-21 03:38:30 +00002827 !MayReadMutableMembers && diagnoseUnreadableFields(Info, E, ObjType))
Richard Smithb01fe402014-09-16 01:24:02 +00002828 return handler.failed();
2829
Richard Smith49ca8aa2013-08-06 07:09:20 +00002830 if (!handler.found(*O, ObjType))
2831 return false;
Richard Smith08d6a2c2013-07-24 07:11:57 +00002832
Richard Smith49ca8aa2013-08-06 07:09:20 +00002833 // If we modified a bit-field, truncate it to the right width.
2834 if (handler.AccessKind != AK_Read &&
2835 LastField && LastField->isBitField() &&
2836 !truncateBitfieldValue(Info, E, *O, LastField))
2837 return false;
2838
2839 return true;
2840 }
2841
Craig Topper36250ad2014-05-12 05:36:57 +00002842 LastField = nullptr;
Richard Smithf3e9e432011-11-07 09:22:26 +00002843 if (ObjType->isArrayType()) {
Richard Smithd62306a2011-11-10 06:34:14 +00002844 // Next subobject is an array element.
Richard Smithf3e9e432011-11-07 09:22:26 +00002845 const ConstantArrayType *CAT = Info.Ctx.getAsConstantArrayType(ObjType);
Richard Smithf57d8cb2011-12-09 22:58:01 +00002846 assert(CAT && "vla in literal type?");
Richard Smithf3e9e432011-11-07 09:22:26 +00002847 uint64_t Index = Sub.Entries[I].ArrayIndex;
Richard Smithf57d8cb2011-12-09 22:58:01 +00002848 if (CAT->getSize().ule(Index)) {
Richard Smithf2b681b2011-12-21 05:04:46 +00002849 // Note, it should not be possible to form a pointer with a valid
2850 // designator which points more than one past the end of the array.
Richard Smith3da88fa2013-04-26 14:36:30 +00002851 if (Info.getLangOpts().CPlusPlus11)
Faisal Valie690b7a2016-07-02 22:34:24 +00002852 Info.FFDiag(E, diag::note_constexpr_access_past_end)
Richard Smith3da88fa2013-04-26 14:36:30 +00002853 << handler.AccessKind;
2854 else
Faisal Valie690b7a2016-07-02 22:34:24 +00002855 Info.FFDiag(E);
Richard Smith3da88fa2013-04-26 14:36:30 +00002856 return handler.failed();
Richard Smithf57d8cb2011-12-09 22:58:01 +00002857 }
Richard Smith3da88fa2013-04-26 14:36:30 +00002858
2859 ObjType = CAT->getElementType();
2860
Richard Smith14a94132012-02-17 03:35:37 +00002861 // An array object is represented as either an Array APValue or as an
2862 // LValue which refers to a string literal.
2863 if (O->isLValue()) {
2864 assert(I == N - 1 && "extracting subobject of character?");
2865 assert(!O->hasLValuePath() || O->getLValuePath().empty());
Richard Smith3da88fa2013-04-26 14:36:30 +00002866 if (handler.AccessKind != AK_Read)
2867 expandStringLiteral(Info, O->getLValueBase().get<const Expr *>(),
2868 *O);
2869 else
2870 return handler.foundString(*O, ObjType, Index);
2871 }
2872
2873 if (O->getArrayInitializedElts() > Index)
Richard Smithf3e9e432011-11-07 09:22:26 +00002874 O = &O->getArrayInitializedElt(Index);
Richard Smith3da88fa2013-04-26 14:36:30 +00002875 else if (handler.AccessKind != AK_Read) {
2876 expandArray(*O, Index);
2877 O = &O->getArrayInitializedElt(Index);
2878 } else
Richard Smithf3e9e432011-11-07 09:22:26 +00002879 O = &O->getArrayFiller();
Richard Smith66c96992012-02-18 22:04:06 +00002880 } else if (ObjType->isAnyComplexType()) {
2881 // Next subobject is a complex number.
2882 uint64_t Index = Sub.Entries[I].ArrayIndex;
2883 if (Index > 1) {
Richard Smith3da88fa2013-04-26 14:36:30 +00002884 if (Info.getLangOpts().CPlusPlus11)
Faisal Valie690b7a2016-07-02 22:34:24 +00002885 Info.FFDiag(E, diag::note_constexpr_access_past_end)
Richard Smith3da88fa2013-04-26 14:36:30 +00002886 << handler.AccessKind;
2887 else
Faisal Valie690b7a2016-07-02 22:34:24 +00002888 Info.FFDiag(E);
Richard Smith3da88fa2013-04-26 14:36:30 +00002889 return handler.failed();
Richard Smith66c96992012-02-18 22:04:06 +00002890 }
Richard Smith3da88fa2013-04-26 14:36:30 +00002891
2892 bool WasConstQualified = ObjType.isConstQualified();
2893 ObjType = ObjType->castAs<ComplexType>()->getElementType();
2894 if (WasConstQualified)
2895 ObjType.addConst();
2896
Richard Smith66c96992012-02-18 22:04:06 +00002897 assert(I == N - 1 && "extracting subobject of scalar?");
2898 if (O->isComplexInt()) {
Richard Smith3da88fa2013-04-26 14:36:30 +00002899 return handler.found(Index ? O->getComplexIntImag()
2900 : O->getComplexIntReal(), ObjType);
Richard Smith66c96992012-02-18 22:04:06 +00002901 } else {
2902 assert(O->isComplexFloat());
Richard Smith3da88fa2013-04-26 14:36:30 +00002903 return handler.found(Index ? O->getComplexFloatImag()
2904 : O->getComplexFloatReal(), ObjType);
Richard Smith66c96992012-02-18 22:04:06 +00002905 }
Richard Smithd62306a2011-11-10 06:34:14 +00002906 } else if (const FieldDecl *Field = getAsField(Sub.Entries[I])) {
Richard Smith9defb7d2018-02-21 03:38:30 +00002907 // In C++14 onwards, it is permitted to read a mutable member whose
2908 // lifetime began within the evaluation.
2909 // FIXME: Should we also allow this in C++11?
2910 if (Field->isMutable() && handler.AccessKind == AK_Read &&
2911 !MayReadMutableMembers) {
Faisal Valie690b7a2016-07-02 22:34:24 +00002912 Info.FFDiag(E, diag::note_constexpr_ltor_mutable, 1)
Richard Smith5a294e62012-02-09 03:29:58 +00002913 << Field;
2914 Info.Note(Field->getLocation(), diag::note_declared_at);
Richard Smith3da88fa2013-04-26 14:36:30 +00002915 return handler.failed();
Richard Smith5a294e62012-02-09 03:29:58 +00002916 }
2917
Richard Smithd62306a2011-11-10 06:34:14 +00002918 // Next subobject is a class, struct or union field.
2919 RecordDecl *RD = ObjType->castAs<RecordType>()->getDecl();
2920 if (RD->isUnion()) {
2921 const FieldDecl *UnionField = O->getUnionField();
2922 if (!UnionField ||
Richard Smithf57d8cb2011-12-09 22:58:01 +00002923 UnionField->getCanonicalDecl() != Field->getCanonicalDecl()) {
Faisal Valie690b7a2016-07-02 22:34:24 +00002924 Info.FFDiag(E, diag::note_constexpr_access_inactive_union_member)
Richard Smith3da88fa2013-04-26 14:36:30 +00002925 << handler.AccessKind << Field << !UnionField << UnionField;
2926 return handler.failed();
Richard Smithf57d8cb2011-12-09 22:58:01 +00002927 }
Richard Smithd62306a2011-11-10 06:34:14 +00002928 O = &O->getUnionValue();
2929 } else
2930 O = &O->getStructField(Field->getFieldIndex());
Richard Smith3da88fa2013-04-26 14:36:30 +00002931
2932 bool WasConstQualified = ObjType.isConstQualified();
Richard Smithd62306a2011-11-10 06:34:14 +00002933 ObjType = Field->getType();
Richard Smith3da88fa2013-04-26 14:36:30 +00002934 if (WasConstQualified && !Field->isMutable())
2935 ObjType.addConst();
Richard Smithf2b681b2011-12-21 05:04:46 +00002936
2937 if (ObjType.isVolatileQualified()) {
2938 if (Info.getLangOpts().CPlusPlus) {
2939 // FIXME: Include a description of the path to the volatile subobject.
Faisal Valie690b7a2016-07-02 22:34:24 +00002940 Info.FFDiag(E, diag::note_constexpr_access_volatile_obj, 1)
Richard Smith3da88fa2013-04-26 14:36:30 +00002941 << handler.AccessKind << 2 << Field;
Richard Smithf2b681b2011-12-21 05:04:46 +00002942 Info.Note(Field->getLocation(), diag::note_declared_at);
2943 } else {
Faisal Valie690b7a2016-07-02 22:34:24 +00002944 Info.FFDiag(E, diag::note_invalid_subexpr_in_const_expr);
Richard Smithf2b681b2011-12-21 05:04:46 +00002945 }
Richard Smith3da88fa2013-04-26 14:36:30 +00002946 return handler.failed();
Richard Smithf2b681b2011-12-21 05:04:46 +00002947 }
Richard Smith49ca8aa2013-08-06 07:09:20 +00002948
2949 LastField = Field;
Richard Smithf3e9e432011-11-07 09:22:26 +00002950 } else {
Richard Smithd62306a2011-11-10 06:34:14 +00002951 // Next subobject is a base class.
Richard Smithe97cbd72011-11-11 04:05:33 +00002952 const CXXRecordDecl *Derived = ObjType->getAsCXXRecordDecl();
2953 const CXXRecordDecl *Base = getAsBaseClass(Sub.Entries[I]);
2954 O = &O->getStructBase(getBaseIndex(Derived, Base));
Richard Smith3da88fa2013-04-26 14:36:30 +00002955
2956 bool WasConstQualified = ObjType.isConstQualified();
Richard Smithe97cbd72011-11-11 04:05:33 +00002957 ObjType = Info.Ctx.getRecordType(Base);
Richard Smith3da88fa2013-04-26 14:36:30 +00002958 if (WasConstQualified)
2959 ObjType.addConst();
Richard Smithf3e9e432011-11-07 09:22:26 +00002960 }
2961 }
Richard Smith3da88fa2013-04-26 14:36:30 +00002962}
2963
Benjamin Kramer62498ab2013-04-26 22:01:47 +00002964namespace {
Richard Smith3da88fa2013-04-26 14:36:30 +00002965struct ExtractSubobjectHandler {
2966 EvalInfo &Info;
Richard Smith3229b742013-05-05 21:17:10 +00002967 APValue &Result;
Richard Smith3da88fa2013-04-26 14:36:30 +00002968
2969 static const AccessKinds AccessKind = AK_Read;
2970
2971 typedef bool result_type;
2972 bool failed() { return false; }
2973 bool found(APValue &Subobj, QualType SubobjType) {
Richard Smith3229b742013-05-05 21:17:10 +00002974 Result = Subobj;
Richard Smith3da88fa2013-04-26 14:36:30 +00002975 return true;
2976 }
2977 bool found(APSInt &Value, QualType SubobjType) {
Richard Smith3229b742013-05-05 21:17:10 +00002978 Result = APValue(Value);
Richard Smith3da88fa2013-04-26 14:36:30 +00002979 return true;
2980 }
2981 bool found(APFloat &Value, QualType SubobjType) {
Richard Smith3229b742013-05-05 21:17:10 +00002982 Result = APValue(Value);
Richard Smith3da88fa2013-04-26 14:36:30 +00002983 return true;
2984 }
2985 bool foundString(APValue &Subobj, QualType SubobjType, uint64_t Character) {
Richard Smith3229b742013-05-05 21:17:10 +00002986 Result = APValue(extractStringLiteralCharacter(
Richard Smith3da88fa2013-04-26 14:36:30 +00002987 Info, Subobj.getLValueBase().get<const Expr *>(), Character));
2988 return true;
2989 }
2990};
Richard Smith3229b742013-05-05 21:17:10 +00002991} // end anonymous namespace
2992
Richard Smith3da88fa2013-04-26 14:36:30 +00002993const AccessKinds ExtractSubobjectHandler::AccessKind;
2994
2995/// Extract the designated sub-object of an rvalue.
2996static bool extractSubobject(EvalInfo &Info, const Expr *E,
Richard Smith3229b742013-05-05 21:17:10 +00002997 const CompleteObject &Obj,
2998 const SubobjectDesignator &Sub,
2999 APValue &Result) {
3000 ExtractSubobjectHandler Handler = { Info, Result };
3001 return findSubobject(Info, E, Obj, Sub, Handler);
Richard Smith3da88fa2013-04-26 14:36:30 +00003002}
3003
Richard Smith3229b742013-05-05 21:17:10 +00003004namespace {
Richard Smith3da88fa2013-04-26 14:36:30 +00003005struct ModifySubobjectHandler {
3006 EvalInfo &Info;
3007 APValue &NewVal;
3008 const Expr *E;
3009
3010 typedef bool result_type;
3011 static const AccessKinds AccessKind = AK_Assign;
3012
3013 bool checkConst(QualType QT) {
3014 // Assigning to a const object has undefined behavior.
3015 if (QT.isConstQualified()) {
Faisal Valie690b7a2016-07-02 22:34:24 +00003016 Info.FFDiag(E, diag::note_constexpr_modify_const_type) << QT;
Richard Smith3da88fa2013-04-26 14:36:30 +00003017 return false;
3018 }
3019 return true;
3020 }
3021
3022 bool failed() { return false; }
3023 bool found(APValue &Subobj, QualType SubobjType) {
3024 if (!checkConst(SubobjType))
3025 return false;
3026 // We've been given ownership of NewVal, so just swap it in.
3027 Subobj.swap(NewVal);
3028 return true;
3029 }
3030 bool found(APSInt &Value, QualType SubobjType) {
3031 if (!checkConst(SubobjType))
3032 return false;
3033 if (!NewVal.isInt()) {
3034 // Maybe trying to write a cast pointer value into a complex?
Faisal Valie690b7a2016-07-02 22:34:24 +00003035 Info.FFDiag(E);
Richard Smith3da88fa2013-04-26 14:36:30 +00003036 return false;
3037 }
3038 Value = NewVal.getInt();
3039 return true;
3040 }
3041 bool found(APFloat &Value, QualType SubobjType) {
3042 if (!checkConst(SubobjType))
3043 return false;
3044 Value = NewVal.getFloat();
3045 return true;
3046 }
3047 bool foundString(APValue &Subobj, QualType SubobjType, uint64_t Character) {
3048 llvm_unreachable("shouldn't encounter string elements with ExpandArrays");
3049 }
3050};
Benjamin Kramer62498ab2013-04-26 22:01:47 +00003051} // end anonymous namespace
Richard Smith3da88fa2013-04-26 14:36:30 +00003052
Richard Smith3229b742013-05-05 21:17:10 +00003053const AccessKinds ModifySubobjectHandler::AccessKind;
3054
Richard Smith3da88fa2013-04-26 14:36:30 +00003055/// Update the designated sub-object of an rvalue to the given value.
3056static bool modifySubobject(EvalInfo &Info, const Expr *E,
Richard Smith3229b742013-05-05 21:17:10 +00003057 const CompleteObject &Obj,
Richard Smith3da88fa2013-04-26 14:36:30 +00003058 const SubobjectDesignator &Sub,
3059 APValue &NewVal) {
3060 ModifySubobjectHandler Handler = { Info, NewVal, E };
Richard Smith3229b742013-05-05 21:17:10 +00003061 return findSubobject(Info, E, Obj, Sub, Handler);
Richard Smithf3e9e432011-11-07 09:22:26 +00003062}
3063
Richard Smith84f6dcf2012-02-02 01:16:57 +00003064/// Find the position where two subobject designators diverge, or equivalently
3065/// the length of the common initial subsequence.
3066static unsigned FindDesignatorMismatch(QualType ObjType,
3067 const SubobjectDesignator &A,
3068 const SubobjectDesignator &B,
3069 bool &WasArrayIndex) {
3070 unsigned I = 0, N = std::min(A.Entries.size(), B.Entries.size());
3071 for (/**/; I != N; ++I) {
Richard Smith66c96992012-02-18 22:04:06 +00003072 if (!ObjType.isNull() &&
3073 (ObjType->isArrayType() || ObjType->isAnyComplexType())) {
Richard Smith84f6dcf2012-02-02 01:16:57 +00003074 // Next subobject is an array element.
3075 if (A.Entries[I].ArrayIndex != B.Entries[I].ArrayIndex) {
3076 WasArrayIndex = true;
3077 return I;
3078 }
Richard Smith66c96992012-02-18 22:04:06 +00003079 if (ObjType->isAnyComplexType())
3080 ObjType = ObjType->castAs<ComplexType>()->getElementType();
3081 else
3082 ObjType = ObjType->castAsArrayTypeUnsafe()->getElementType();
Richard Smith84f6dcf2012-02-02 01:16:57 +00003083 } else {
3084 if (A.Entries[I].BaseOrMember != B.Entries[I].BaseOrMember) {
3085 WasArrayIndex = false;
3086 return I;
3087 }
3088 if (const FieldDecl *FD = getAsField(A.Entries[I]))
3089 // Next subobject is a field.
3090 ObjType = FD->getType();
3091 else
3092 // Next subobject is a base class.
3093 ObjType = QualType();
3094 }
3095 }
3096 WasArrayIndex = false;
3097 return I;
3098}
3099
3100/// Determine whether the given subobject designators refer to elements of the
3101/// same array object.
3102static bool AreElementsOfSameArray(QualType ObjType,
3103 const SubobjectDesignator &A,
3104 const SubobjectDesignator &B) {
3105 if (A.Entries.size() != B.Entries.size())
3106 return false;
3107
George Burgess IVa51c4072015-10-16 01:49:01 +00003108 bool IsArray = A.MostDerivedIsArrayElement;
Richard Smith84f6dcf2012-02-02 01:16:57 +00003109 if (IsArray && A.MostDerivedPathLength != A.Entries.size())
3110 // A is a subobject of the array element.
3111 return false;
3112
3113 // If A (and B) designates an array element, the last entry will be the array
3114 // index. That doesn't have to match. Otherwise, we're in the 'implicit array
3115 // of length 1' case, and the entire path must match.
3116 bool WasArrayIndex;
3117 unsigned CommonLength = FindDesignatorMismatch(ObjType, A, B, WasArrayIndex);
3118 return CommonLength >= A.Entries.size() - IsArray;
3119}
3120
Richard Smith3229b742013-05-05 21:17:10 +00003121/// Find the complete object to which an LValue refers.
Benjamin Kramer8407df72015-03-09 16:47:52 +00003122static CompleteObject findCompleteObject(EvalInfo &Info, const Expr *E,
3123 AccessKinds AK, const LValue &LVal,
3124 QualType LValType) {
Richard Smith3229b742013-05-05 21:17:10 +00003125 if (!LVal.Base) {
Faisal Valie690b7a2016-07-02 22:34:24 +00003126 Info.FFDiag(E, diag::note_constexpr_access_null) << AK;
Richard Smith3229b742013-05-05 21:17:10 +00003127 return CompleteObject();
3128 }
3129
Craig Topper36250ad2014-05-12 05:36:57 +00003130 CallStackFrame *Frame = nullptr;
Akira Hatanaka4e2698c2018-04-10 05:15:01 +00003131 if (LVal.getLValueCallIndex()) {
3132 Frame = Info.getCallFrame(LVal.getLValueCallIndex());
Richard Smith3229b742013-05-05 21:17:10 +00003133 if (!Frame) {
Faisal Valie690b7a2016-07-02 22:34:24 +00003134 Info.FFDiag(E, diag::note_constexpr_lifetime_ended, 1)
Richard Smith3229b742013-05-05 21:17:10 +00003135 << AK << LVal.Base.is<const ValueDecl*>();
3136 NoteLValueLocation(Info, LVal.Base);
3137 return CompleteObject();
3138 }
Richard Smith3229b742013-05-05 21:17:10 +00003139 }
3140
3141 // C++11 DR1311: An lvalue-to-rvalue conversion on a volatile-qualified type
3142 // is not a constant expression (even if the object is non-volatile). We also
3143 // apply this rule to C++98, in order to conform to the expected 'volatile'
3144 // semantics.
3145 if (LValType.isVolatileQualified()) {
3146 if (Info.getLangOpts().CPlusPlus)
Faisal Valie690b7a2016-07-02 22:34:24 +00003147 Info.FFDiag(E, diag::note_constexpr_access_volatile_type)
Richard Smith3229b742013-05-05 21:17:10 +00003148 << AK << LValType;
3149 else
Faisal Valie690b7a2016-07-02 22:34:24 +00003150 Info.FFDiag(E);
Richard Smith3229b742013-05-05 21:17:10 +00003151 return CompleteObject();
3152 }
3153
3154 // Compute value storage location and type of base object.
Craig Topper36250ad2014-05-12 05:36:57 +00003155 APValue *BaseVal = nullptr;
Richard Smith84401042013-06-03 05:03:02 +00003156 QualType BaseType = getType(LVal.Base);
Richard Smith9defb7d2018-02-21 03:38:30 +00003157 bool LifetimeStartedInEvaluation = Frame;
Richard Smith3229b742013-05-05 21:17:10 +00003158
3159 if (const ValueDecl *D = LVal.Base.dyn_cast<const ValueDecl*>()) {
3160 // In C++98, const, non-volatile integers initialized with ICEs are ICEs.
3161 // In C++11, constexpr, non-volatile variables initialized with constant
3162 // expressions are constant expressions too. Inside constexpr functions,
3163 // parameters are constant expressions even if they're non-const.
3164 // In C++1y, objects local to a constant expression (those with a Frame) are
3165 // both readable and writable inside constant expressions.
3166 // In C, such things can also be folded, although they are not ICEs.
3167 const VarDecl *VD = dyn_cast<VarDecl>(D);
3168 if (VD) {
3169 if (const VarDecl *VDef = VD->getDefinition(Info.Ctx))
3170 VD = VDef;
3171 }
3172 if (!VD || VD->isInvalidDecl()) {
Faisal Valie690b7a2016-07-02 22:34:24 +00003173 Info.FFDiag(E);
Richard Smith3229b742013-05-05 21:17:10 +00003174 return CompleteObject();
3175 }
3176
3177 // Accesses of volatile-qualified objects are not allowed.
Richard Smith3229b742013-05-05 21:17:10 +00003178 if (BaseType.isVolatileQualified()) {
3179 if (Info.getLangOpts().CPlusPlus) {
Faisal Valie690b7a2016-07-02 22:34:24 +00003180 Info.FFDiag(E, diag::note_constexpr_access_volatile_obj, 1)
Richard Smith3229b742013-05-05 21:17:10 +00003181 << AK << 1 << VD;
3182 Info.Note(VD->getLocation(), diag::note_declared_at);
3183 } else {
Faisal Valie690b7a2016-07-02 22:34:24 +00003184 Info.FFDiag(E);
Richard Smith3229b742013-05-05 21:17:10 +00003185 }
3186 return CompleteObject();
3187 }
3188
3189 // Unless we're looking at a local variable or argument in a constexpr call,
3190 // the variable we're reading must be const.
3191 if (!Frame) {
Aaron Ballmandd69ef32014-08-19 15:55:55 +00003192 if (Info.getLangOpts().CPlusPlus14 &&
Richard Smith7525ff62013-05-09 07:14:00 +00003193 VD == Info.EvaluatingDecl.dyn_cast<const ValueDecl *>()) {
3194 // OK, we can read and modify an object if we're in the process of
3195 // evaluating its initializer, because its lifetime began in this
3196 // evaluation.
3197 } else if (AK != AK_Read) {
3198 // All the remaining cases only permit reading.
Faisal Valie690b7a2016-07-02 22:34:24 +00003199 Info.FFDiag(E, diag::note_constexpr_modify_global);
Richard Smith7525ff62013-05-09 07:14:00 +00003200 return CompleteObject();
George Burgess IVb5316982016-12-27 05:33:20 +00003201 } else if (VD->isConstexpr()) {
Richard Smith3229b742013-05-05 21:17:10 +00003202 // OK, we can read this variable.
3203 } else if (BaseType->isIntegralOrEnumerationType()) {
Xiuli Pan244e3f62016-06-07 04:34:00 +00003204 // In OpenCL if a variable is in constant address space it is a const value.
3205 if (!(BaseType.isConstQualified() ||
3206 (Info.getLangOpts().OpenCL &&
3207 BaseType.getAddressSpace() == LangAS::opencl_constant))) {
Richard Smith3229b742013-05-05 21:17:10 +00003208 if (Info.getLangOpts().CPlusPlus) {
Faisal Valie690b7a2016-07-02 22:34:24 +00003209 Info.FFDiag(E, diag::note_constexpr_ltor_non_const_int, 1) << VD;
Richard Smith3229b742013-05-05 21:17:10 +00003210 Info.Note(VD->getLocation(), diag::note_declared_at);
3211 } else {
Faisal Valie690b7a2016-07-02 22:34:24 +00003212 Info.FFDiag(E);
Richard Smith3229b742013-05-05 21:17:10 +00003213 }
3214 return CompleteObject();
3215 }
3216 } else if (BaseType->isFloatingType() && BaseType.isConstQualified()) {
3217 // We support folding of const floating-point types, in order to make
3218 // static const data members of such types (supported as an extension)
3219 // more useful.
3220 if (Info.getLangOpts().CPlusPlus11) {
3221 Info.CCEDiag(E, diag::note_constexpr_ltor_non_constexpr, 1) << VD;
3222 Info.Note(VD->getLocation(), diag::note_declared_at);
3223 } else {
3224 Info.CCEDiag(E);
3225 }
George Burgess IVb5316982016-12-27 05:33:20 +00003226 } else if (BaseType.isConstQualified() && VD->hasDefinition(Info.Ctx)) {
3227 Info.CCEDiag(E, diag::note_constexpr_ltor_non_constexpr) << VD;
3228 // Keep evaluating to see what we can do.
Richard Smith3229b742013-05-05 21:17:10 +00003229 } else {
3230 // FIXME: Allow folding of values of any literal type in all languages.
Richard Smithc0d04a22016-05-25 22:06:25 +00003231 if (Info.checkingPotentialConstantExpression() &&
3232 VD->getType().isConstQualified() && !VD->hasDefinition(Info.Ctx)) {
3233 // The definition of this variable could be constexpr. We can't
3234 // access it right now, but may be able to in future.
3235 } else if (Info.getLangOpts().CPlusPlus11) {
Faisal Valie690b7a2016-07-02 22:34:24 +00003236 Info.FFDiag(E, diag::note_constexpr_ltor_non_constexpr, 1) << VD;
Richard Smith3229b742013-05-05 21:17:10 +00003237 Info.Note(VD->getLocation(), diag::note_declared_at);
3238 } else {
Faisal Valie690b7a2016-07-02 22:34:24 +00003239 Info.FFDiag(E);
Richard Smith3229b742013-05-05 21:17:10 +00003240 }
3241 return CompleteObject();
3242 }
3243 }
3244
Akira Hatanaka4e2698c2018-04-10 05:15:01 +00003245 if (!evaluateVarDeclInit(Info, E, VD, Frame, BaseVal, &LVal))
Richard Smith3229b742013-05-05 21:17:10 +00003246 return CompleteObject();
3247 } else {
3248 const Expr *Base = LVal.Base.dyn_cast<const Expr*>();
3249
3250 if (!Frame) {
Richard Smithe6c01442013-06-05 00:46:14 +00003251 if (const MaterializeTemporaryExpr *MTE =
3252 dyn_cast<MaterializeTemporaryExpr>(Base)) {
3253 assert(MTE->getStorageDuration() == SD_Static &&
3254 "should have a frame for a non-global materialized temporary");
Richard Smith3229b742013-05-05 21:17:10 +00003255
Richard Smithe6c01442013-06-05 00:46:14 +00003256 // Per C++1y [expr.const]p2:
3257 // an lvalue-to-rvalue conversion [is not allowed unless it applies to]
3258 // - a [...] glvalue of integral or enumeration type that refers to
3259 // a non-volatile const object [...]
3260 // [...]
3261 // - a [...] glvalue of literal type that refers to a non-volatile
3262 // object whose lifetime began within the evaluation of e.
3263 //
3264 // C++11 misses the 'began within the evaluation of e' check and
3265 // instead allows all temporaries, including things like:
3266 // int &&r = 1;
3267 // int x = ++r;
3268 // constexpr int k = r;
Richard Smith9defb7d2018-02-21 03:38:30 +00003269 // Therefore we use the C++14 rules in C++11 too.
Richard Smithe6c01442013-06-05 00:46:14 +00003270 const ValueDecl *VD = Info.EvaluatingDecl.dyn_cast<const ValueDecl*>();
3271 const ValueDecl *ED = MTE->getExtendingDecl();
3272 if (!(BaseType.isConstQualified() &&
3273 BaseType->isIntegralOrEnumerationType()) &&
3274 !(VD && VD->getCanonicalDecl() == ED->getCanonicalDecl())) {
Faisal Valie690b7a2016-07-02 22:34:24 +00003275 Info.FFDiag(E, diag::note_constexpr_access_static_temporary, 1) << AK;
Richard Smithe6c01442013-06-05 00:46:14 +00003276 Info.Note(MTE->getExprLoc(), diag::note_constexpr_temporary_here);
3277 return CompleteObject();
3278 }
3279
3280 BaseVal = Info.Ctx.getMaterializedTemporaryValue(MTE, false);
3281 assert(BaseVal && "got reference to unevaluated temporary");
Richard Smith9defb7d2018-02-21 03:38:30 +00003282 LifetimeStartedInEvaluation = true;
Richard Smithe6c01442013-06-05 00:46:14 +00003283 } else {
Faisal Valie690b7a2016-07-02 22:34:24 +00003284 Info.FFDiag(E);
Richard Smithe6c01442013-06-05 00:46:14 +00003285 return CompleteObject();
3286 }
3287 } else {
Akira Hatanaka4e2698c2018-04-10 05:15:01 +00003288 BaseVal = Frame->getTemporary(Base, LVal.Base.getVersion());
Richard Smith08d6a2c2013-07-24 07:11:57 +00003289 assert(BaseVal && "missing value for temporary");
Richard Smithe6c01442013-06-05 00:46:14 +00003290 }
Richard Smith3229b742013-05-05 21:17:10 +00003291
3292 // Volatile temporary objects cannot be accessed in constant expressions.
3293 if (BaseType.isVolatileQualified()) {
3294 if (Info.getLangOpts().CPlusPlus) {
Faisal Valie690b7a2016-07-02 22:34:24 +00003295 Info.FFDiag(E, diag::note_constexpr_access_volatile_obj, 1)
Richard Smith3229b742013-05-05 21:17:10 +00003296 << AK << 0;
3297 Info.Note(Base->getExprLoc(), diag::note_constexpr_temporary_here);
3298 } else {
Faisal Valie690b7a2016-07-02 22:34:24 +00003299 Info.FFDiag(E);
Richard Smith3229b742013-05-05 21:17:10 +00003300 }
3301 return CompleteObject();
3302 }
3303 }
3304
Richard Smith7525ff62013-05-09 07:14:00 +00003305 // During the construction of an object, it is not yet 'const'.
Erik Pilkington42925492017-10-04 00:18:55 +00003306 // FIXME: This doesn't do quite the right thing for const subobjects of the
Richard Smith7525ff62013-05-09 07:14:00 +00003307 // object under construction.
Akira Hatanaka4e2698c2018-04-10 05:15:01 +00003308 if (Info.isEvaluatingConstructor(LVal.getLValueBase(),
3309 LVal.getLValueCallIndex(),
3310 LVal.getLValueVersion())) {
Richard Smith7525ff62013-05-09 07:14:00 +00003311 BaseType = Info.Ctx.getCanonicalType(BaseType);
3312 BaseType.removeLocalConst();
Richard Smith9defb7d2018-02-21 03:38:30 +00003313 LifetimeStartedInEvaluation = true;
Richard Smith7525ff62013-05-09 07:14:00 +00003314 }
3315
Richard Smith9defb7d2018-02-21 03:38:30 +00003316 // In C++14, we can't safely access any mutable state when we might be
George Burgess IV8c892b52016-05-25 22:31:54 +00003317 // evaluating after an unmodeled side effect.
Richard Smith6d4c6582013-11-05 22:18:15 +00003318 //
3319 // FIXME: Not all local state is mutable. Allow local constant subobjects
3320 // to be read here (but take care with 'mutable' fields).
George Burgess IV8c892b52016-05-25 22:31:54 +00003321 if ((Frame && Info.getLangOpts().CPlusPlus14 &&
3322 Info.EvalStatus.HasSideEffects) ||
3323 (AK != AK_Read && Info.IsSpeculativelyEvaluating))
Richard Smith3229b742013-05-05 21:17:10 +00003324 return CompleteObject();
3325
Richard Smith9defb7d2018-02-21 03:38:30 +00003326 return CompleteObject(BaseVal, BaseType, LifetimeStartedInEvaluation);
Richard Smith3229b742013-05-05 21:17:10 +00003327}
3328
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00003329/// Perform an lvalue-to-rvalue conversion on the given glvalue. This
Richard Smith243ef902013-05-05 23:31:59 +00003330/// can also be used for 'lvalue-to-lvalue' conversions for looking up the
3331/// glvalue referred to by an entity of reference type.
Richard Smithd62306a2011-11-10 06:34:14 +00003332///
3333/// \param Info - Information about the ongoing evaluation.
Richard Smithf57d8cb2011-12-09 22:58:01 +00003334/// \param Conv - The expression for which we are performing the conversion.
3335/// Used for diagnostics.
Richard Smith3da88fa2013-04-26 14:36:30 +00003336/// \param Type - The type of the glvalue (before stripping cv-qualifiers in the
3337/// case of a non-class type).
Richard Smithd62306a2011-11-10 06:34:14 +00003338/// \param LVal - The glvalue on which we are attempting to perform this action.
3339/// \param RVal - The produced value will be placed here.
Richard Smith243ef902013-05-05 23:31:59 +00003340static bool handleLValueToRValueConversion(EvalInfo &Info, const Expr *Conv,
Richard Smithf57d8cb2011-12-09 22:58:01 +00003341 QualType Type,
Richard Smith2e312c82012-03-03 22:46:17 +00003342 const LValue &LVal, APValue &RVal) {
Richard Smitha8105bc2012-01-06 16:39:00 +00003343 if (LVal.Designator.Invalid)
Richard Smitha8105bc2012-01-06 16:39:00 +00003344 return false;
3345
Richard Smith3229b742013-05-05 21:17:10 +00003346 // Check for special cases where there is no existing APValue to look at.
Richard Smithce40ad62011-11-12 22:28:03 +00003347 const Expr *Base = LVal.Base.dyn_cast<const Expr*>();
Akira Hatanaka4e2698c2018-04-10 05:15:01 +00003348 if (Base && !LVal.getLValueCallIndex() && !Type.isVolatileQualified()) {
Richard Smith3229b742013-05-05 21:17:10 +00003349 if (const CompoundLiteralExpr *CLE = dyn_cast<CompoundLiteralExpr>(Base)) {
3350 // In C99, a CompoundLiteralExpr is an lvalue, and we defer evaluating the
3351 // initializer until now for such expressions. Such an expression can't be
3352 // an ICE in C, so this only matters for fold.
Richard Smith3229b742013-05-05 21:17:10 +00003353 if (Type.isVolatileQualified()) {
Faisal Valie690b7a2016-07-02 22:34:24 +00003354 Info.FFDiag(Conv);
Richard Smith96e0c102011-11-04 02:25:55 +00003355 return false;
Richard Smithf57d8cb2011-12-09 22:58:01 +00003356 }
Richard Smith3229b742013-05-05 21:17:10 +00003357 APValue Lit;
3358 if (!Evaluate(Lit, Info, CLE->getInitializer()))
3359 return false;
Richard Smith9defb7d2018-02-21 03:38:30 +00003360 CompleteObject LitObj(&Lit, Base->getType(), false);
Richard Smith3229b742013-05-05 21:17:10 +00003361 return extractSubobject(Info, Conv, LitObj, LVal.Designator, RVal);
Alexey Bataevec474782014-10-09 08:45:04 +00003362 } else if (isa<StringLiteral>(Base) || isa<PredefinedExpr>(Base)) {
Richard Smith3229b742013-05-05 21:17:10 +00003363 // We represent a string literal array as an lvalue pointing at the
3364 // corresponding expression, rather than building an array of chars.
Alexey Bataevec474782014-10-09 08:45:04 +00003365 // FIXME: Support ObjCEncodeExpr, MakeStringConstant
Richard Smith3229b742013-05-05 21:17:10 +00003366 APValue Str(Base, CharUnits::Zero(), APValue::NoLValuePath(), 0);
Richard Smith9defb7d2018-02-21 03:38:30 +00003367 CompleteObject StrObj(&Str, Base->getType(), false);
Richard Smith3229b742013-05-05 21:17:10 +00003368 return extractSubobject(Info, Conv, StrObj, LVal.Designator, RVal);
Richard Smith96e0c102011-11-04 02:25:55 +00003369 }
Richard Smith11562c52011-10-28 17:51:58 +00003370 }
3371
Richard Smith3229b742013-05-05 21:17:10 +00003372 CompleteObject Obj = findCompleteObject(Info, Conv, AK_Read, LVal, Type);
3373 return Obj && extractSubobject(Info, Conv, Obj, LVal.Designator, RVal);
Richard Smith3da88fa2013-04-26 14:36:30 +00003374}
3375
3376/// Perform an assignment of Val to LVal. Takes ownership of Val.
Richard Smith243ef902013-05-05 23:31:59 +00003377static bool handleAssignment(EvalInfo &Info, const Expr *E, const LValue &LVal,
Richard Smith3da88fa2013-04-26 14:36:30 +00003378 QualType LValType, APValue &Val) {
Richard Smith3da88fa2013-04-26 14:36:30 +00003379 if (LVal.Designator.Invalid)
Richard Smith3da88fa2013-04-26 14:36:30 +00003380 return false;
3381
Aaron Ballmandd69ef32014-08-19 15:55:55 +00003382 if (!Info.getLangOpts().CPlusPlus14) {
Faisal Valie690b7a2016-07-02 22:34:24 +00003383 Info.FFDiag(E);
Richard Smith3da88fa2013-04-26 14:36:30 +00003384 return false;
3385 }
3386
Richard Smith3229b742013-05-05 21:17:10 +00003387 CompleteObject Obj = findCompleteObject(Info, E, AK_Assign, LVal, LValType);
Malcolm Parsonsfab36802018-04-16 08:31:08 +00003388 return Obj && modifySubobject(Info, E, Obj, LVal.Designator, Val);
3389}
3390
3391namespace {
3392struct CompoundAssignSubobjectHandler {
3393 EvalInfo &Info;
Richard Smith43e77732013-05-07 04:50:00 +00003394 const Expr *E;
3395 QualType PromotedLHSType;
3396 BinaryOperatorKind Opcode;
3397 const APValue &RHS;
3398
3399 static const AccessKinds AccessKind = AK_Assign;
3400
3401 typedef bool result_type;
3402
3403 bool checkConst(QualType QT) {
3404 // Assigning to a const object has undefined behavior.
3405 if (QT.isConstQualified()) {
Faisal Valie690b7a2016-07-02 22:34:24 +00003406 Info.FFDiag(E, diag::note_constexpr_modify_const_type) << QT;
Richard Smith43e77732013-05-07 04:50:00 +00003407 return false;
3408 }
3409 return true;
3410 }
3411
3412 bool failed() { return false; }
3413 bool found(APValue &Subobj, QualType SubobjType) {
3414 switch (Subobj.getKind()) {
3415 case APValue::Int:
3416 return found(Subobj.getInt(), SubobjType);
3417 case APValue::Float:
3418 return found(Subobj.getFloat(), SubobjType);
3419 case APValue::ComplexInt:
3420 case APValue::ComplexFloat:
3421 // FIXME: Implement complex compound assignment.
Faisal Valie690b7a2016-07-02 22:34:24 +00003422 Info.FFDiag(E);
Richard Smith43e77732013-05-07 04:50:00 +00003423 return false;
3424 case APValue::LValue:
3425 return foundPointer(Subobj, SubobjType);
3426 default:
3427 // FIXME: can this happen?
Faisal Valie690b7a2016-07-02 22:34:24 +00003428 Info.FFDiag(E);
Richard Smith43e77732013-05-07 04:50:00 +00003429 return false;
3430 }
3431 }
3432 bool found(APSInt &Value, QualType SubobjType) {
3433 if (!checkConst(SubobjType))
3434 return false;
3435
3436 if (!SubobjType->isIntegerType() || !RHS.isInt()) {
3437 // We don't support compound assignment on integer-cast-to-pointer
3438 // values.
Faisal Valie690b7a2016-07-02 22:34:24 +00003439 Info.FFDiag(E);
Richard Smith43e77732013-05-07 04:50:00 +00003440 return false;
3441 }
3442
3443 APSInt LHS = HandleIntToIntCast(Info, E, PromotedLHSType,
3444 SubobjType, Value);
3445 if (!handleIntIntBinOp(Info, E, LHS, Opcode, RHS.getInt(), LHS))
3446 return false;
3447 Value = HandleIntToIntCast(Info, E, SubobjType, PromotedLHSType, LHS);
3448 return true;
3449 }
3450 bool found(APFloat &Value, QualType SubobjType) {
Richard Smith861b5b52013-05-07 23:34:45 +00003451 return checkConst(SubobjType) &&
3452 HandleFloatToFloatCast(Info, E, SubobjType, PromotedLHSType,
3453 Value) &&
3454 handleFloatFloatBinOp(Info, E, Value, Opcode, RHS.getFloat()) &&
3455 HandleFloatToFloatCast(Info, E, PromotedLHSType, SubobjType, Value);
Richard Smith43e77732013-05-07 04:50:00 +00003456 }
3457 bool foundPointer(APValue &Subobj, QualType SubobjType) {
3458 if (!checkConst(SubobjType))
3459 return false;
3460
3461 QualType PointeeType;
3462 if (const PointerType *PT = SubobjType->getAs<PointerType>())
3463 PointeeType = PT->getPointeeType();
Richard Smith861b5b52013-05-07 23:34:45 +00003464
3465 if (PointeeType.isNull() || !RHS.isInt() ||
3466 (Opcode != BO_Add && Opcode != BO_Sub)) {
Faisal Valie690b7a2016-07-02 22:34:24 +00003467 Info.FFDiag(E);
Richard Smith43e77732013-05-07 04:50:00 +00003468 return false;
3469 }
3470
Richard Smithd6cc1982017-01-31 02:23:02 +00003471 APSInt Offset = RHS.getInt();
Richard Smith861b5b52013-05-07 23:34:45 +00003472 if (Opcode == BO_Sub)
Richard Smithd6cc1982017-01-31 02:23:02 +00003473 negateAsSigned(Offset);
Richard Smith861b5b52013-05-07 23:34:45 +00003474
3475 LValue LVal;
3476 LVal.setFrom(Info.Ctx, Subobj);
3477 if (!HandleLValueArrayAdjustment(Info, E, LVal, PointeeType, Offset))
3478 return false;
3479 LVal.moveInto(Subobj);
3480 return true;
Richard Smith43e77732013-05-07 04:50:00 +00003481 }
3482 bool foundString(APValue &Subobj, QualType SubobjType, uint64_t Character) {
3483 llvm_unreachable("shouldn't encounter string elements here");
3484 }
3485};
3486} // end anonymous namespace
3487
3488const AccessKinds CompoundAssignSubobjectHandler::AccessKind;
3489
3490/// Perform a compound assignment of LVal <op>= RVal.
3491static bool handleCompoundAssignment(
3492 EvalInfo &Info, const Expr *E,
3493 const LValue &LVal, QualType LValType, QualType PromotedLValType,
3494 BinaryOperatorKind Opcode, const APValue &RVal) {
3495 if (LVal.Designator.Invalid)
3496 return false;
3497
Aaron Ballmandd69ef32014-08-19 15:55:55 +00003498 if (!Info.getLangOpts().CPlusPlus14) {
Faisal Valie690b7a2016-07-02 22:34:24 +00003499 Info.FFDiag(E);
Richard Smith43e77732013-05-07 04:50:00 +00003500 return false;
3501 }
3502
3503 CompleteObject Obj = findCompleteObject(Info, E, AK_Assign, LVal, LValType);
3504 CompoundAssignSubobjectHandler Handler = { Info, E, PromotedLValType, Opcode,
3505 RVal };
3506 return Obj && findSubobject(Info, E, Obj, LVal.Designator, Handler);
3507}
3508
Malcolm Parsonsfab36802018-04-16 08:31:08 +00003509namespace {
3510struct IncDecSubobjectHandler {
3511 EvalInfo &Info;
3512 const UnaryOperator *E;
3513 AccessKinds AccessKind;
3514 APValue *Old;
3515
Richard Smith243ef902013-05-05 23:31:59 +00003516 typedef bool result_type;
3517
3518 bool checkConst(QualType QT) {
3519 // Assigning to a const object has undefined behavior.
3520 if (QT.isConstQualified()) {
Faisal Valie690b7a2016-07-02 22:34:24 +00003521 Info.FFDiag(E, diag::note_constexpr_modify_const_type) << QT;
Richard Smith243ef902013-05-05 23:31:59 +00003522 return false;
3523 }
3524 return true;
3525 }
3526
3527 bool failed() { return false; }
3528 bool found(APValue &Subobj, QualType SubobjType) {
3529 // Stash the old value. Also clear Old, so we don't clobber it later
3530 // if we're post-incrementing a complex.
3531 if (Old) {
3532 *Old = Subobj;
Craig Topper36250ad2014-05-12 05:36:57 +00003533 Old = nullptr;
Richard Smith243ef902013-05-05 23:31:59 +00003534 }
3535
3536 switch (Subobj.getKind()) {
3537 case APValue::Int:
3538 return found(Subobj.getInt(), SubobjType);
3539 case APValue::Float:
3540 return found(Subobj.getFloat(), SubobjType);
3541 case APValue::ComplexInt:
3542 return found(Subobj.getComplexIntReal(),
3543 SubobjType->castAs<ComplexType>()->getElementType()
3544 .withCVRQualifiers(SubobjType.getCVRQualifiers()));
3545 case APValue::ComplexFloat:
3546 return found(Subobj.getComplexFloatReal(),
3547 SubobjType->castAs<ComplexType>()->getElementType()
3548 .withCVRQualifiers(SubobjType.getCVRQualifiers()));
3549 case APValue::LValue:
3550 return foundPointer(Subobj, SubobjType);
3551 default:
3552 // FIXME: can this happen?
Faisal Valie690b7a2016-07-02 22:34:24 +00003553 Info.FFDiag(E);
Richard Smith243ef902013-05-05 23:31:59 +00003554 return false;
3555 }
3556 }
3557 bool found(APSInt &Value, QualType SubobjType) {
3558 if (!checkConst(SubobjType))
3559 return false;
3560
3561 if (!SubobjType->isIntegerType()) {
3562 // We don't support increment / decrement on integer-cast-to-pointer
3563 // values.
Faisal Valie690b7a2016-07-02 22:34:24 +00003564 Info.FFDiag(E);
Richard Smith243ef902013-05-05 23:31:59 +00003565 return false;
3566 }
3567
3568 if (Old) *Old = APValue(Value);
3569
3570 // bool arithmetic promotes to int, and the conversion back to bool
3571 // doesn't reduce mod 2^n, so special-case it.
3572 if (SubobjType->isBooleanType()) {
3573 if (AccessKind == AK_Increment)
3574 Value = 1;
3575 else
3576 Value = !Value;
3577 return true;
3578 }
3579
3580 bool WasNegative = Value.isNegative();
Malcolm Parsonsfab36802018-04-16 08:31:08 +00003581 if (AccessKind == AK_Increment) {
3582 ++Value;
3583
3584 if (!WasNegative && Value.isNegative() && E->canOverflow()) {
3585 APSInt ActualValue(Value, /*IsUnsigned*/true);
3586 return HandleOverflow(Info, E, ActualValue, SubobjType);
3587 }
3588 } else {
3589 --Value;
3590
3591 if (WasNegative && !Value.isNegative() && E->canOverflow()) {
3592 unsigned BitWidth = Value.getBitWidth();
3593 APSInt ActualValue(Value.sext(BitWidth + 1), /*IsUnsigned*/false);
3594 ActualValue.setBit(BitWidth);
Richard Smith0c6124b2015-12-03 01:36:22 +00003595 return HandleOverflow(Info, E, ActualValue, SubobjType);
Richard Smith243ef902013-05-05 23:31:59 +00003596 }
3597 }
3598 return true;
3599 }
3600 bool found(APFloat &Value, QualType SubobjType) {
3601 if (!checkConst(SubobjType))
3602 return false;
3603
3604 if (Old) *Old = APValue(Value);
3605
3606 APFloat One(Value.getSemantics(), 1);
3607 if (AccessKind == AK_Increment)
3608 Value.add(One, APFloat::rmNearestTiesToEven);
3609 else
3610 Value.subtract(One, APFloat::rmNearestTiesToEven);
3611 return true;
3612 }
3613 bool foundPointer(APValue &Subobj, QualType SubobjType) {
3614 if (!checkConst(SubobjType))
3615 return false;
3616
3617 QualType PointeeType;
3618 if (const PointerType *PT = SubobjType->getAs<PointerType>())
3619 PointeeType = PT->getPointeeType();
3620 else {
Faisal Valie690b7a2016-07-02 22:34:24 +00003621 Info.FFDiag(E);
Richard Smith243ef902013-05-05 23:31:59 +00003622 return false;
3623 }
3624
3625 LValue LVal;
3626 LVal.setFrom(Info.Ctx, Subobj);
3627 if (!HandleLValueArrayAdjustment(Info, E, LVal, PointeeType,
3628 AccessKind == AK_Increment ? 1 : -1))
3629 return false;
3630 LVal.moveInto(Subobj);
3631 return true;
3632 }
3633 bool foundString(APValue &Subobj, QualType SubobjType, uint64_t Character) {
3634 llvm_unreachable("shouldn't encounter string elements here");
3635 }
3636};
3637} // end anonymous namespace
3638
3639/// Perform an increment or decrement on LVal.
3640static bool handleIncDec(EvalInfo &Info, const Expr *E, const LValue &LVal,
3641 QualType LValType, bool IsIncrement, APValue *Old) {
3642 if (LVal.Designator.Invalid)
3643 return false;
3644
Aaron Ballmandd69ef32014-08-19 15:55:55 +00003645 if (!Info.getLangOpts().CPlusPlus14) {
Faisal Valie690b7a2016-07-02 22:34:24 +00003646 Info.FFDiag(E);
Richard Smith243ef902013-05-05 23:31:59 +00003647 return false;
3648 }
Malcolm Parsonsfab36802018-04-16 08:31:08 +00003649
3650 AccessKinds AK = IsIncrement ? AK_Increment : AK_Decrement;
3651 CompleteObject Obj = findCompleteObject(Info, E, AK, LVal, LValType);
3652 IncDecSubobjectHandler Handler = {Info, cast<UnaryOperator>(E), AK, Old};
3653 return Obj && findSubobject(Info, E, Obj, LVal.Designator, Handler);
3654}
3655
Richard Smithe97cbd72011-11-11 04:05:33 +00003656/// Build an lvalue for the object argument of a member function call.
3657static bool EvaluateObjectArgument(EvalInfo &Info, const Expr *Object,
3658 LValue &This) {
3659 if (Object->getType()->isPointerType())
3660 return EvaluatePointer(Object, This, Info);
3661
3662 if (Object->isGLValue())
3663 return EvaluateLValue(Object, This, Info);
3664
Richard Smithd9f663b2013-04-22 15:31:51 +00003665 if (Object->getType()->isLiteralType(Info.Ctx))
Richard Smith027bf112011-11-17 22:56:20 +00003666 return EvaluateTemporary(Object, This, Info);
3667
Faisal Valie690b7a2016-07-02 22:34:24 +00003668 Info.FFDiag(Object, diag::note_constexpr_nonliteral) << Object->getType();
Richard Smith027bf112011-11-17 22:56:20 +00003669 return false;
3670}
3671
3672/// HandleMemberPointerAccess - Evaluate a member access operation and build an
3673/// lvalue referring to the result.
3674///
3675/// \param Info - Information about the ongoing evaluation.
Richard Smith84401042013-06-03 05:03:02 +00003676/// \param LV - An lvalue referring to the base of the member pointer.
3677/// \param RHS - The member pointer expression.
Richard Smith027bf112011-11-17 22:56:20 +00003678/// \param IncludeMember - Specifies whether the member itself is included in
3679/// the resulting LValue subobject designator. This is not possible when
3680/// creating a bound member function.
3681/// \return The field or method declaration to which the member pointer refers,
3682/// or 0 if evaluation fails.
3683static const ValueDecl *HandleMemberPointerAccess(EvalInfo &Info,
Richard Smith84401042013-06-03 05:03:02 +00003684 QualType LVType,
Richard Smith027bf112011-11-17 22:56:20 +00003685 LValue &LV,
Richard Smith84401042013-06-03 05:03:02 +00003686 const Expr *RHS,
Richard Smith027bf112011-11-17 22:56:20 +00003687 bool IncludeMember = true) {
Richard Smith027bf112011-11-17 22:56:20 +00003688 MemberPtr MemPtr;
Richard Smith84401042013-06-03 05:03:02 +00003689 if (!EvaluateMemberPointer(RHS, MemPtr, Info))
Craig Topper36250ad2014-05-12 05:36:57 +00003690 return nullptr;
Richard Smith027bf112011-11-17 22:56:20 +00003691
3692 // C++11 [expr.mptr.oper]p6: If the second operand is the null pointer to
3693 // member value, the behavior is undefined.
Richard Smith84401042013-06-03 05:03:02 +00003694 if (!MemPtr.getDecl()) {
3695 // FIXME: Specific diagnostic.
Faisal Valie690b7a2016-07-02 22:34:24 +00003696 Info.FFDiag(RHS);
Craig Topper36250ad2014-05-12 05:36:57 +00003697 return nullptr;
Richard Smith84401042013-06-03 05:03:02 +00003698 }
Richard Smith253c2a32012-01-27 01:14:48 +00003699
Richard Smith027bf112011-11-17 22:56:20 +00003700 if (MemPtr.isDerivedMember()) {
3701 // This is a member of some derived class. Truncate LV appropriately.
Richard Smith027bf112011-11-17 22:56:20 +00003702 // The end of the derived-to-base path for the base object must match the
3703 // derived-to-base path for the member pointer.
Richard Smitha8105bc2012-01-06 16:39:00 +00003704 if (LV.Designator.MostDerivedPathLength + MemPtr.Path.size() >
Richard Smith84401042013-06-03 05:03:02 +00003705 LV.Designator.Entries.size()) {
Faisal Valie690b7a2016-07-02 22:34:24 +00003706 Info.FFDiag(RHS);
Craig Topper36250ad2014-05-12 05:36:57 +00003707 return nullptr;
Richard Smith84401042013-06-03 05:03:02 +00003708 }
Richard Smith027bf112011-11-17 22:56:20 +00003709 unsigned PathLengthToMember =
3710 LV.Designator.Entries.size() - MemPtr.Path.size();
3711 for (unsigned I = 0, N = MemPtr.Path.size(); I != N; ++I) {
3712 const CXXRecordDecl *LVDecl = getAsBaseClass(
3713 LV.Designator.Entries[PathLengthToMember + I]);
3714 const CXXRecordDecl *MPDecl = MemPtr.Path[I];
Richard Smith84401042013-06-03 05:03:02 +00003715 if (LVDecl->getCanonicalDecl() != MPDecl->getCanonicalDecl()) {
Faisal Valie690b7a2016-07-02 22:34:24 +00003716 Info.FFDiag(RHS);
Craig Topper36250ad2014-05-12 05:36:57 +00003717 return nullptr;
Richard Smith84401042013-06-03 05:03:02 +00003718 }
Richard Smith027bf112011-11-17 22:56:20 +00003719 }
3720
3721 // Truncate the lvalue to the appropriate derived class.
Richard Smith84401042013-06-03 05:03:02 +00003722 if (!CastToDerivedClass(Info, RHS, LV, MemPtr.getContainingRecord(),
Richard Smitha8105bc2012-01-06 16:39:00 +00003723 PathLengthToMember))
Craig Topper36250ad2014-05-12 05:36:57 +00003724 return nullptr;
Richard Smith027bf112011-11-17 22:56:20 +00003725 } else if (!MemPtr.Path.empty()) {
3726 // Extend the LValue path with the member pointer's path.
3727 LV.Designator.Entries.reserve(LV.Designator.Entries.size() +
3728 MemPtr.Path.size() + IncludeMember);
3729
3730 // Walk down to the appropriate base class.
Richard Smith027bf112011-11-17 22:56:20 +00003731 if (const PointerType *PT = LVType->getAs<PointerType>())
3732 LVType = PT->getPointeeType();
3733 const CXXRecordDecl *RD = LVType->getAsCXXRecordDecl();
3734 assert(RD && "member pointer access on non-class-type expression");
3735 // The first class in the path is that of the lvalue.
3736 for (unsigned I = 1, N = MemPtr.Path.size(); I != N; ++I) {
3737 const CXXRecordDecl *Base = MemPtr.Path[N - I - 1];
Richard Smith84401042013-06-03 05:03:02 +00003738 if (!HandleLValueDirectBase(Info, RHS, LV, RD, Base))
Craig Topper36250ad2014-05-12 05:36:57 +00003739 return nullptr;
Richard Smith027bf112011-11-17 22:56:20 +00003740 RD = Base;
3741 }
3742 // Finally cast to the class containing the member.
Richard Smith84401042013-06-03 05:03:02 +00003743 if (!HandleLValueDirectBase(Info, RHS, LV, RD,
3744 MemPtr.getContainingRecord()))
Craig Topper36250ad2014-05-12 05:36:57 +00003745 return nullptr;
Richard Smith027bf112011-11-17 22:56:20 +00003746 }
3747
3748 // Add the member. Note that we cannot build bound member functions here.
3749 if (IncludeMember) {
John McCalld7bca762012-05-01 00:38:49 +00003750 if (const FieldDecl *FD = dyn_cast<FieldDecl>(MemPtr.getDecl())) {
Richard Smith84401042013-06-03 05:03:02 +00003751 if (!HandleLValueMember(Info, RHS, LV, FD))
Craig Topper36250ad2014-05-12 05:36:57 +00003752 return nullptr;
John McCalld7bca762012-05-01 00:38:49 +00003753 } else if (const IndirectFieldDecl *IFD =
3754 dyn_cast<IndirectFieldDecl>(MemPtr.getDecl())) {
Richard Smith84401042013-06-03 05:03:02 +00003755 if (!HandleLValueIndirectMember(Info, RHS, LV, IFD))
Craig Topper36250ad2014-05-12 05:36:57 +00003756 return nullptr;
John McCalld7bca762012-05-01 00:38:49 +00003757 } else {
Richard Smith1b78b3d2012-01-25 22:15:11 +00003758 llvm_unreachable("can't construct reference to bound member function");
John McCalld7bca762012-05-01 00:38:49 +00003759 }
Richard Smith027bf112011-11-17 22:56:20 +00003760 }
3761
3762 return MemPtr.getDecl();
3763}
3764
Richard Smith84401042013-06-03 05:03:02 +00003765static const ValueDecl *HandleMemberPointerAccess(EvalInfo &Info,
3766 const BinaryOperator *BO,
3767 LValue &LV,
3768 bool IncludeMember = true) {
3769 assert(BO->getOpcode() == BO_PtrMemD || BO->getOpcode() == BO_PtrMemI);
3770
3771 if (!EvaluateObjectArgument(Info, BO->getLHS(), LV)) {
George Burgess IVa145e252016-05-25 22:38:36 +00003772 if (Info.noteFailure()) {
Richard Smith84401042013-06-03 05:03:02 +00003773 MemberPtr MemPtr;
3774 EvaluateMemberPointer(BO->getRHS(), MemPtr, Info);
3775 }
Craig Topper36250ad2014-05-12 05:36:57 +00003776 return nullptr;
Richard Smith84401042013-06-03 05:03:02 +00003777 }
3778
3779 return HandleMemberPointerAccess(Info, BO->getLHS()->getType(), LV,
3780 BO->getRHS(), IncludeMember);
3781}
3782
Richard Smith027bf112011-11-17 22:56:20 +00003783/// HandleBaseToDerivedCast - Apply the given base-to-derived cast operation on
3784/// the provided lvalue, which currently refers to the base object.
3785static bool HandleBaseToDerivedCast(EvalInfo &Info, const CastExpr *E,
3786 LValue &Result) {
Richard Smith027bf112011-11-17 22:56:20 +00003787 SubobjectDesignator &D = Result.Designator;
Richard Smitha8105bc2012-01-06 16:39:00 +00003788 if (D.Invalid || !Result.checkNullPointer(Info, E, CSK_Derived))
Richard Smith027bf112011-11-17 22:56:20 +00003789 return false;
3790
Richard Smitha8105bc2012-01-06 16:39:00 +00003791 QualType TargetQT = E->getType();
3792 if (const PointerType *PT = TargetQT->getAs<PointerType>())
3793 TargetQT = PT->getPointeeType();
3794
3795 // Check this cast lands within the final derived-to-base subobject path.
3796 if (D.MostDerivedPathLength + E->path_size() > D.Entries.size()) {
Richard Smithce1ec5e2012-03-15 04:53:45 +00003797 Info.CCEDiag(E, diag::note_constexpr_invalid_downcast)
Richard Smitha8105bc2012-01-06 16:39:00 +00003798 << D.MostDerivedType << TargetQT;
3799 return false;
3800 }
3801
Richard Smith027bf112011-11-17 22:56:20 +00003802 // Check the type of the final cast. We don't need to check the path,
3803 // since a cast can only be formed if the path is unique.
3804 unsigned NewEntriesSize = D.Entries.size() - E->path_size();
Richard Smith027bf112011-11-17 22:56:20 +00003805 const CXXRecordDecl *TargetType = TargetQT->getAsCXXRecordDecl();
3806 const CXXRecordDecl *FinalType;
Richard Smitha8105bc2012-01-06 16:39:00 +00003807 if (NewEntriesSize == D.MostDerivedPathLength)
3808 FinalType = D.MostDerivedType->getAsCXXRecordDecl();
3809 else
Richard Smith027bf112011-11-17 22:56:20 +00003810 FinalType = getAsBaseClass(D.Entries[NewEntriesSize - 1]);
Richard Smitha8105bc2012-01-06 16:39:00 +00003811 if (FinalType->getCanonicalDecl() != TargetType->getCanonicalDecl()) {
Richard Smithce1ec5e2012-03-15 04:53:45 +00003812 Info.CCEDiag(E, diag::note_constexpr_invalid_downcast)
Richard Smitha8105bc2012-01-06 16:39:00 +00003813 << D.MostDerivedType << TargetQT;
Richard Smith027bf112011-11-17 22:56:20 +00003814 return false;
Richard Smitha8105bc2012-01-06 16:39:00 +00003815 }
Richard Smith027bf112011-11-17 22:56:20 +00003816
3817 // Truncate the lvalue to the appropriate derived class.
Richard Smitha8105bc2012-01-06 16:39:00 +00003818 return CastToDerivedClass(Info, E, Result, TargetType, NewEntriesSize);
Richard Smithe97cbd72011-11-11 04:05:33 +00003819}
3820
Mike Stump876387b2009-10-27 22:09:17 +00003821namespace {
Richard Smith254a73d2011-10-28 22:34:42 +00003822enum EvalStmtResult {
3823 /// Evaluation failed.
3824 ESR_Failed,
3825 /// Hit a 'return' statement.
3826 ESR_Returned,
3827 /// Evaluation succeeded.
Richard Smith4e18ca52013-05-06 05:56:11 +00003828 ESR_Succeeded,
3829 /// Hit a 'continue' statement.
3830 ESR_Continue,
3831 /// Hit a 'break' statement.
Richard Smith496ddcf2013-05-12 17:32:42 +00003832 ESR_Break,
3833 /// Still scanning for 'case' or 'default' statement.
3834 ESR_CaseNotFound
Richard Smith254a73d2011-10-28 22:34:42 +00003835};
Alexander Kornienkoab9db512015-06-22 23:07:51 +00003836}
Richard Smith254a73d2011-10-28 22:34:42 +00003837
Richard Smith97fcf4b2016-08-14 23:15:52 +00003838static bool EvaluateVarDecl(EvalInfo &Info, const VarDecl *VD) {
3839 // We don't need to evaluate the initializer for a static local.
3840 if (!VD->hasLocalStorage())
3841 return true;
Richard Smithd9f663b2013-04-22 15:31:51 +00003842
Richard Smith97fcf4b2016-08-14 23:15:52 +00003843 LValue Result;
Akira Hatanaka4e2698c2018-04-10 05:15:01 +00003844 APValue &Val = createTemporary(VD, true, Result, *Info.CurrentCall);
Richard Smithd9f663b2013-04-22 15:31:51 +00003845
Richard Smith97fcf4b2016-08-14 23:15:52 +00003846 const Expr *InitE = VD->getInit();
3847 if (!InitE) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +00003848 Info.FFDiag(VD->getBeginLoc(), diag::note_constexpr_uninitialized)
3849 << false << VD->getType();
Richard Smith97fcf4b2016-08-14 23:15:52 +00003850 Val = APValue();
3851 return false;
3852 }
Richard Smith51f03172013-06-20 03:00:05 +00003853
Richard Smith97fcf4b2016-08-14 23:15:52 +00003854 if (InitE->isValueDependent())
3855 return false;
Argyrios Kyrtzidis3d9e3822014-02-20 04:00:01 +00003856
Richard Smith97fcf4b2016-08-14 23:15:52 +00003857 if (!EvaluateInPlace(Val, Info, Result, InitE)) {
3858 // Wipe out any partially-computed value, to allow tracking that this
3859 // evaluation failed.
3860 Val = APValue();
3861 return false;
Richard Smithd9f663b2013-04-22 15:31:51 +00003862 }
3863
3864 return true;
3865}
3866
Richard Smith97fcf4b2016-08-14 23:15:52 +00003867static bool EvaluateDecl(EvalInfo &Info, const Decl *D) {
3868 bool OK = true;
3869
3870 if (const VarDecl *VD = dyn_cast<VarDecl>(D))
3871 OK &= EvaluateVarDecl(Info, VD);
3872
3873 if (const DecompositionDecl *DD = dyn_cast<DecompositionDecl>(D))
3874 for (auto *BD : DD->bindings())
3875 if (auto *VD = BD->getHoldingVar())
3876 OK &= EvaluateDecl(Info, VD);
3877
3878 return OK;
3879}
3880
3881
Richard Smith4e18ca52013-05-06 05:56:11 +00003882/// Evaluate a condition (either a variable declaration or an expression).
3883static bool EvaluateCond(EvalInfo &Info, const VarDecl *CondDecl,
3884 const Expr *Cond, bool &Result) {
Richard Smith08d6a2c2013-07-24 07:11:57 +00003885 FullExpressionRAII Scope(Info);
Richard Smith4e18ca52013-05-06 05:56:11 +00003886 if (CondDecl && !EvaluateDecl(Info, CondDecl))
3887 return false;
3888 return EvaluateAsBooleanCondition(Cond, Result, Info);
3889}
3890
Richard Smith89210072016-04-04 23:29:43 +00003891namespace {
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00003892/// A location where the result (returned value) of evaluating a
Richard Smith52a980a2015-08-28 02:43:42 +00003893/// statement should be stored.
3894struct StmtResult {
3895 /// The APValue that should be filled in with the returned value.
3896 APValue &Value;
3897 /// The location containing the result, if any (used to support RVO).
3898 const LValue *Slot;
3899};
Akira Hatanaka4e2698c2018-04-10 05:15:01 +00003900
3901struct TempVersionRAII {
3902 CallStackFrame &Frame;
3903
3904 TempVersionRAII(CallStackFrame &Frame) : Frame(Frame) {
3905 Frame.pushTempVersion();
3906 }
3907
3908 ~TempVersionRAII() {
3909 Frame.popTempVersion();
3910 }
3911};
3912
Richard Smith89210072016-04-04 23:29:43 +00003913}
Richard Smith52a980a2015-08-28 02:43:42 +00003914
3915static EvalStmtResult EvaluateStmt(StmtResult &Result, EvalInfo &Info,
Craig Topper36250ad2014-05-12 05:36:57 +00003916 const Stmt *S,
3917 const SwitchCase *SC = nullptr);
Richard Smith4e18ca52013-05-06 05:56:11 +00003918
3919/// Evaluate the body of a loop, and translate the result as appropriate.
Richard Smith52a980a2015-08-28 02:43:42 +00003920static EvalStmtResult EvaluateLoopBody(StmtResult &Result, EvalInfo &Info,
Richard Smith496ddcf2013-05-12 17:32:42 +00003921 const Stmt *Body,
Craig Topper36250ad2014-05-12 05:36:57 +00003922 const SwitchCase *Case = nullptr) {
Richard Smith08d6a2c2013-07-24 07:11:57 +00003923 BlockScopeRAII Scope(Info);
Richard Smith496ddcf2013-05-12 17:32:42 +00003924 switch (EvalStmtResult ESR = EvaluateStmt(Result, Info, Body, Case)) {
Richard Smith4e18ca52013-05-06 05:56:11 +00003925 case ESR_Break:
3926 return ESR_Succeeded;
3927 case ESR_Succeeded:
3928 case ESR_Continue:
3929 return ESR_Continue;
3930 case ESR_Failed:
3931 case ESR_Returned:
Richard Smith496ddcf2013-05-12 17:32:42 +00003932 case ESR_CaseNotFound:
Richard Smith4e18ca52013-05-06 05:56:11 +00003933 return ESR;
3934 }
Hans Wennborg9242bd12013-05-06 15:13:34 +00003935 llvm_unreachable("Invalid EvalStmtResult!");
Richard Smith4e18ca52013-05-06 05:56:11 +00003936}
3937
Richard Smith496ddcf2013-05-12 17:32:42 +00003938/// Evaluate a switch statement.
Richard Smith52a980a2015-08-28 02:43:42 +00003939static EvalStmtResult EvaluateSwitch(StmtResult &Result, EvalInfo &Info,
Richard Smith496ddcf2013-05-12 17:32:42 +00003940 const SwitchStmt *SS) {
Richard Smith08d6a2c2013-07-24 07:11:57 +00003941 BlockScopeRAII Scope(Info);
3942
Richard Smith496ddcf2013-05-12 17:32:42 +00003943 // Evaluate the switch condition.
Richard Smith496ddcf2013-05-12 17:32:42 +00003944 APSInt Value;
Richard Smith08d6a2c2013-07-24 07:11:57 +00003945 {
3946 FullExpressionRAII Scope(Info);
Richard Smitha547eb22016-07-14 00:11:03 +00003947 if (const Stmt *Init = SS->getInit()) {
3948 EvalStmtResult ESR = EvaluateStmt(Result, Info, Init);
3949 if (ESR != ESR_Succeeded)
3950 return ESR;
3951 }
Richard Smith08d6a2c2013-07-24 07:11:57 +00003952 if (SS->getConditionVariable() &&
3953 !EvaluateDecl(Info, SS->getConditionVariable()))
3954 return ESR_Failed;
3955 if (!EvaluateInteger(SS->getCond(), Value, Info))
3956 return ESR_Failed;
3957 }
Richard Smith496ddcf2013-05-12 17:32:42 +00003958
3959 // Find the switch case corresponding to the value of the condition.
3960 // FIXME: Cache this lookup.
Craig Topper36250ad2014-05-12 05:36:57 +00003961 const SwitchCase *Found = nullptr;
Richard Smith496ddcf2013-05-12 17:32:42 +00003962 for (const SwitchCase *SC = SS->getSwitchCaseList(); SC;
3963 SC = SC->getNextSwitchCase()) {
3964 if (isa<DefaultStmt>(SC)) {
3965 Found = SC;
3966 continue;
3967 }
3968
3969 const CaseStmt *CS = cast<CaseStmt>(SC);
3970 APSInt LHS = CS->getLHS()->EvaluateKnownConstInt(Info.Ctx);
3971 APSInt RHS = CS->getRHS() ? CS->getRHS()->EvaluateKnownConstInt(Info.Ctx)
3972 : LHS;
3973 if (LHS <= Value && Value <= RHS) {
3974 Found = SC;
3975 break;
3976 }
3977 }
3978
3979 if (!Found)
3980 return ESR_Succeeded;
3981
3982 // Search the switch body for the switch case and evaluate it from there.
3983 switch (EvalStmtResult ESR = EvaluateStmt(Result, Info, SS->getBody(), Found)) {
3984 case ESR_Break:
3985 return ESR_Succeeded;
3986 case ESR_Succeeded:
3987 case ESR_Continue:
3988 case ESR_Failed:
3989 case ESR_Returned:
3990 return ESR;
3991 case ESR_CaseNotFound:
Richard Smith51f03172013-06-20 03:00:05 +00003992 // This can only happen if the switch case is nested within a statement
3993 // expression. We have no intention of supporting that.
Stephen Kellyf2ceec42018-08-09 21:08:08 +00003994 Info.FFDiag(Found->getBeginLoc(),
3995 diag::note_constexpr_stmt_expr_unsupported);
Richard Smith51f03172013-06-20 03:00:05 +00003996 return ESR_Failed;
Richard Smith496ddcf2013-05-12 17:32:42 +00003997 }
Richard Smithf8cf9d42013-05-13 20:33:30 +00003998 llvm_unreachable("Invalid EvalStmtResult!");
Richard Smith496ddcf2013-05-12 17:32:42 +00003999}
4000
Richard Smith254a73d2011-10-28 22:34:42 +00004001// Evaluate a statement.
Richard Smith52a980a2015-08-28 02:43:42 +00004002static EvalStmtResult EvaluateStmt(StmtResult &Result, EvalInfo &Info,
Richard Smith496ddcf2013-05-12 17:32:42 +00004003 const Stmt *S, const SwitchCase *Case) {
Richard Smitha3d3bd22013-05-08 02:12:03 +00004004 if (!Info.nextStep(S))
4005 return ESR_Failed;
4006
Richard Smith496ddcf2013-05-12 17:32:42 +00004007 // If we're hunting down a 'case' or 'default' label, recurse through
4008 // substatements until we hit the label.
4009 if (Case) {
4010 // FIXME: We don't start the lifetime of objects whose initialization we
4011 // jump over. However, such objects must be of class type with a trivial
4012 // default constructor that initialize all subobjects, so must be empty,
4013 // so this almost never matters.
4014 switch (S->getStmtClass()) {
4015 case Stmt::CompoundStmtClass:
4016 // FIXME: Precompute which substatement of a compound statement we
4017 // would jump to, and go straight there rather than performing a
4018 // linear scan each time.
4019 case Stmt::LabelStmtClass:
4020 case Stmt::AttributedStmtClass:
4021 case Stmt::DoStmtClass:
4022 break;
4023
4024 case Stmt::CaseStmtClass:
4025 case Stmt::DefaultStmtClass:
4026 if (Case == S)
Craig Topper36250ad2014-05-12 05:36:57 +00004027 Case = nullptr;
Richard Smith496ddcf2013-05-12 17:32:42 +00004028 break;
4029
4030 case Stmt::IfStmtClass: {
4031 // FIXME: Precompute which side of an 'if' we would jump to, and go
4032 // straight there rather than scanning both sides.
4033 const IfStmt *IS = cast<IfStmt>(S);
Richard Smith08d6a2c2013-07-24 07:11:57 +00004034
4035 // Wrap the evaluation in a block scope, in case it's a DeclStmt
4036 // preceded by our switch label.
4037 BlockScopeRAII Scope(Info);
4038
Richard Smith496ddcf2013-05-12 17:32:42 +00004039 EvalStmtResult ESR = EvaluateStmt(Result, Info, IS->getThen(), Case);
4040 if (ESR != ESR_CaseNotFound || !IS->getElse())
4041 return ESR;
4042 return EvaluateStmt(Result, Info, IS->getElse(), Case);
4043 }
4044
4045 case Stmt::WhileStmtClass: {
4046 EvalStmtResult ESR =
4047 EvaluateLoopBody(Result, Info, cast<WhileStmt>(S)->getBody(), Case);
4048 if (ESR != ESR_Continue)
4049 return ESR;
4050 break;
4051 }
4052
4053 case Stmt::ForStmtClass: {
4054 const ForStmt *FS = cast<ForStmt>(S);
4055 EvalStmtResult ESR =
4056 EvaluateLoopBody(Result, Info, FS->getBody(), Case);
4057 if (ESR != ESR_Continue)
4058 return ESR;
Richard Smith08d6a2c2013-07-24 07:11:57 +00004059 if (FS->getInc()) {
4060 FullExpressionRAII IncScope(Info);
4061 if (!EvaluateIgnoredValue(Info, FS->getInc()))
4062 return ESR_Failed;
4063 }
Richard Smith496ddcf2013-05-12 17:32:42 +00004064 break;
4065 }
4066
4067 case Stmt::DeclStmtClass:
4068 // FIXME: If the variable has initialization that can't be jumped over,
4069 // bail out of any immediately-surrounding compound-statement too.
4070 default:
4071 return ESR_CaseNotFound;
4072 }
4073 }
4074
Richard Smith254a73d2011-10-28 22:34:42 +00004075 switch (S->getStmtClass()) {
4076 default:
Richard Smithd9f663b2013-04-22 15:31:51 +00004077 if (const Expr *E = dyn_cast<Expr>(S)) {
Richard Smithd9f663b2013-04-22 15:31:51 +00004078 // Don't bother evaluating beyond an expression-statement which couldn't
4079 // be evaluated.
Richard Smith08d6a2c2013-07-24 07:11:57 +00004080 FullExpressionRAII Scope(Info);
Richard Smith4e18ca52013-05-06 05:56:11 +00004081 if (!EvaluateIgnoredValue(Info, E))
Richard Smithd9f663b2013-04-22 15:31:51 +00004082 return ESR_Failed;
4083 return ESR_Succeeded;
4084 }
4085
Stephen Kellyf2ceec42018-08-09 21:08:08 +00004086 Info.FFDiag(S->getBeginLoc());
Richard Smith254a73d2011-10-28 22:34:42 +00004087 return ESR_Failed;
4088
4089 case Stmt::NullStmtClass:
Richard Smith254a73d2011-10-28 22:34:42 +00004090 return ESR_Succeeded;
4091
Richard Smithd9f663b2013-04-22 15:31:51 +00004092 case Stmt::DeclStmtClass: {
4093 const DeclStmt *DS = cast<DeclStmt>(S);
Aaron Ballman535bbcc2014-03-14 17:01:24 +00004094 for (const auto *DclIt : DS->decls()) {
Richard Smith08d6a2c2013-07-24 07:11:57 +00004095 // Each declaration initialization is its own full-expression.
4096 // FIXME: This isn't quite right; if we're performing aggregate
4097 // initialization, each braced subexpression is its own full-expression.
4098 FullExpressionRAII Scope(Info);
George Burgess IVa145e252016-05-25 22:38:36 +00004099 if (!EvaluateDecl(Info, DclIt) && !Info.noteFailure())
Richard Smithd9f663b2013-04-22 15:31:51 +00004100 return ESR_Failed;
Richard Smith08d6a2c2013-07-24 07:11:57 +00004101 }
Richard Smithd9f663b2013-04-22 15:31:51 +00004102 return ESR_Succeeded;
4103 }
4104
Richard Smith357362d2011-12-13 06:39:58 +00004105 case Stmt::ReturnStmtClass: {
Richard Smith357362d2011-12-13 06:39:58 +00004106 const Expr *RetExpr = cast<ReturnStmt>(S)->getRetValue();
Richard Smith08d6a2c2013-07-24 07:11:57 +00004107 FullExpressionRAII Scope(Info);
Richard Smith52a980a2015-08-28 02:43:42 +00004108 if (RetExpr &&
4109 !(Result.Slot
4110 ? EvaluateInPlace(Result.Value, Info, *Result.Slot, RetExpr)
4111 : Evaluate(Result.Value, Info, RetExpr)))
Richard Smith357362d2011-12-13 06:39:58 +00004112 return ESR_Failed;
4113 return ESR_Returned;
4114 }
Richard Smith254a73d2011-10-28 22:34:42 +00004115
4116 case Stmt::CompoundStmtClass: {
Richard Smith08d6a2c2013-07-24 07:11:57 +00004117 BlockScopeRAII Scope(Info);
4118
Richard Smith254a73d2011-10-28 22:34:42 +00004119 const CompoundStmt *CS = cast<CompoundStmt>(S);
Aaron Ballmanc7e4e212014-03-17 14:19:37 +00004120 for (const auto *BI : CS->body()) {
4121 EvalStmtResult ESR = EvaluateStmt(Result, Info, BI, Case);
Richard Smith496ddcf2013-05-12 17:32:42 +00004122 if (ESR == ESR_Succeeded)
Craig Topper36250ad2014-05-12 05:36:57 +00004123 Case = nullptr;
Richard Smith496ddcf2013-05-12 17:32:42 +00004124 else if (ESR != ESR_CaseNotFound)
Richard Smith254a73d2011-10-28 22:34:42 +00004125 return ESR;
4126 }
Richard Smith496ddcf2013-05-12 17:32:42 +00004127 return Case ? ESR_CaseNotFound : ESR_Succeeded;
Richard Smith254a73d2011-10-28 22:34:42 +00004128 }
Richard Smithd9f663b2013-04-22 15:31:51 +00004129
4130 case Stmt::IfStmtClass: {
4131 const IfStmt *IS = cast<IfStmt>(S);
4132
4133 // Evaluate the condition, as either a var decl or as an expression.
Richard Smith08d6a2c2013-07-24 07:11:57 +00004134 BlockScopeRAII Scope(Info);
Richard Smitha547eb22016-07-14 00:11:03 +00004135 if (const Stmt *Init = IS->getInit()) {
4136 EvalStmtResult ESR = EvaluateStmt(Result, Info, Init);
4137 if (ESR != ESR_Succeeded)
4138 return ESR;
4139 }
Richard Smithd9f663b2013-04-22 15:31:51 +00004140 bool Cond;
Richard Smith4e18ca52013-05-06 05:56:11 +00004141 if (!EvaluateCond(Info, IS->getConditionVariable(), IS->getCond(), Cond))
Richard Smithd9f663b2013-04-22 15:31:51 +00004142 return ESR_Failed;
4143
4144 if (const Stmt *SubStmt = Cond ? IS->getThen() : IS->getElse()) {
4145 EvalStmtResult ESR = EvaluateStmt(Result, Info, SubStmt);
4146 if (ESR != ESR_Succeeded)
4147 return ESR;
4148 }
4149 return ESR_Succeeded;
4150 }
Richard Smith4e18ca52013-05-06 05:56:11 +00004151
4152 case Stmt::WhileStmtClass: {
4153 const WhileStmt *WS = cast<WhileStmt>(S);
4154 while (true) {
Richard Smith08d6a2c2013-07-24 07:11:57 +00004155 BlockScopeRAII Scope(Info);
Richard Smith4e18ca52013-05-06 05:56:11 +00004156 bool Continue;
4157 if (!EvaluateCond(Info, WS->getConditionVariable(), WS->getCond(),
4158 Continue))
4159 return ESR_Failed;
4160 if (!Continue)
4161 break;
4162
4163 EvalStmtResult ESR = EvaluateLoopBody(Result, Info, WS->getBody());
4164 if (ESR != ESR_Continue)
4165 return ESR;
4166 }
4167 return ESR_Succeeded;
4168 }
4169
4170 case Stmt::DoStmtClass: {
4171 const DoStmt *DS = cast<DoStmt>(S);
4172 bool Continue;
4173 do {
Richard Smith496ddcf2013-05-12 17:32:42 +00004174 EvalStmtResult ESR = EvaluateLoopBody(Result, Info, DS->getBody(), Case);
Richard Smith4e18ca52013-05-06 05:56:11 +00004175 if (ESR != ESR_Continue)
4176 return ESR;
Craig Topper36250ad2014-05-12 05:36:57 +00004177 Case = nullptr;
Richard Smith4e18ca52013-05-06 05:56:11 +00004178
Richard Smith08d6a2c2013-07-24 07:11:57 +00004179 FullExpressionRAII CondScope(Info);
Richard Smith4e18ca52013-05-06 05:56:11 +00004180 if (!EvaluateAsBooleanCondition(DS->getCond(), Continue, Info))
4181 return ESR_Failed;
4182 } while (Continue);
4183 return ESR_Succeeded;
4184 }
4185
4186 case Stmt::ForStmtClass: {
4187 const ForStmt *FS = cast<ForStmt>(S);
Richard Smith08d6a2c2013-07-24 07:11:57 +00004188 BlockScopeRAII Scope(Info);
Richard Smith4e18ca52013-05-06 05:56:11 +00004189 if (FS->getInit()) {
4190 EvalStmtResult ESR = EvaluateStmt(Result, Info, FS->getInit());
4191 if (ESR != ESR_Succeeded)
4192 return ESR;
4193 }
4194 while (true) {
Richard Smith08d6a2c2013-07-24 07:11:57 +00004195 BlockScopeRAII Scope(Info);
Richard Smith4e18ca52013-05-06 05:56:11 +00004196 bool Continue = true;
4197 if (FS->getCond() && !EvaluateCond(Info, FS->getConditionVariable(),
4198 FS->getCond(), Continue))
4199 return ESR_Failed;
4200 if (!Continue)
4201 break;
4202
4203 EvalStmtResult ESR = EvaluateLoopBody(Result, Info, FS->getBody());
4204 if (ESR != ESR_Continue)
4205 return ESR;
4206
Richard Smith08d6a2c2013-07-24 07:11:57 +00004207 if (FS->getInc()) {
4208 FullExpressionRAII IncScope(Info);
4209 if (!EvaluateIgnoredValue(Info, FS->getInc()))
4210 return ESR_Failed;
4211 }
Richard Smith4e18ca52013-05-06 05:56:11 +00004212 }
4213 return ESR_Succeeded;
4214 }
4215
Richard Smith896e0d72013-05-06 06:51:17 +00004216 case Stmt::CXXForRangeStmtClass: {
4217 const CXXForRangeStmt *FS = cast<CXXForRangeStmt>(S);
Richard Smith08d6a2c2013-07-24 07:11:57 +00004218 BlockScopeRAII Scope(Info);
Richard Smith896e0d72013-05-06 06:51:17 +00004219
4220 // Initialize the __range variable.
4221 EvalStmtResult ESR = EvaluateStmt(Result, Info, FS->getRangeStmt());
4222 if (ESR != ESR_Succeeded)
4223 return ESR;
4224
4225 // Create the __begin and __end iterators.
Richard Smith01694c32016-03-20 10:33:40 +00004226 ESR = EvaluateStmt(Result, Info, FS->getBeginStmt());
4227 if (ESR != ESR_Succeeded)
4228 return ESR;
4229 ESR = EvaluateStmt(Result, Info, FS->getEndStmt());
Richard Smith896e0d72013-05-06 06:51:17 +00004230 if (ESR != ESR_Succeeded)
4231 return ESR;
4232
4233 while (true) {
4234 // Condition: __begin != __end.
Richard Smith08d6a2c2013-07-24 07:11:57 +00004235 {
4236 bool Continue = true;
4237 FullExpressionRAII CondExpr(Info);
4238 if (!EvaluateAsBooleanCondition(FS->getCond(), Continue, Info))
4239 return ESR_Failed;
4240 if (!Continue)
4241 break;
4242 }
Richard Smith896e0d72013-05-06 06:51:17 +00004243
4244 // User's variable declaration, initialized by *__begin.
Richard Smith08d6a2c2013-07-24 07:11:57 +00004245 BlockScopeRAII InnerScope(Info);
Richard Smith896e0d72013-05-06 06:51:17 +00004246 ESR = EvaluateStmt(Result, Info, FS->getLoopVarStmt());
4247 if (ESR != ESR_Succeeded)
4248 return ESR;
4249
4250 // Loop body.
4251 ESR = EvaluateLoopBody(Result, Info, FS->getBody());
4252 if (ESR != ESR_Continue)
4253 return ESR;
4254
4255 // Increment: ++__begin
4256 if (!EvaluateIgnoredValue(Info, FS->getInc()))
4257 return ESR_Failed;
4258 }
4259
4260 return ESR_Succeeded;
4261 }
4262
Richard Smith496ddcf2013-05-12 17:32:42 +00004263 case Stmt::SwitchStmtClass:
4264 return EvaluateSwitch(Result, Info, cast<SwitchStmt>(S));
4265
Richard Smith4e18ca52013-05-06 05:56:11 +00004266 case Stmt::ContinueStmtClass:
4267 return ESR_Continue;
4268
4269 case Stmt::BreakStmtClass:
4270 return ESR_Break;
Richard Smith496ddcf2013-05-12 17:32:42 +00004271
4272 case Stmt::LabelStmtClass:
4273 return EvaluateStmt(Result, Info, cast<LabelStmt>(S)->getSubStmt(), Case);
4274
4275 case Stmt::AttributedStmtClass:
4276 // As a general principle, C++11 attributes can be ignored without
4277 // any semantic impact.
4278 return EvaluateStmt(Result, Info, cast<AttributedStmt>(S)->getSubStmt(),
4279 Case);
4280
4281 case Stmt::CaseStmtClass:
4282 case Stmt::DefaultStmtClass:
4283 return EvaluateStmt(Result, Info, cast<SwitchCase>(S)->getSubStmt(), Case);
Richard Smith254a73d2011-10-28 22:34:42 +00004284 }
4285}
4286
Richard Smithcc36f692011-12-22 02:22:31 +00004287/// CheckTrivialDefaultConstructor - Check whether a constructor is a trivial
4288/// default constructor. If so, we'll fold it whether or not it's marked as
4289/// constexpr. If it is marked as constexpr, we will never implicitly define it,
4290/// so we need special handling.
4291static bool CheckTrivialDefaultConstructor(EvalInfo &Info, SourceLocation Loc,
Richard Smithfddd3842011-12-30 21:15:51 +00004292 const CXXConstructorDecl *CD,
4293 bool IsValueInitialization) {
Richard Smithcc36f692011-12-22 02:22:31 +00004294 if (!CD->isTrivial() || !CD->isDefaultConstructor())
4295 return false;
4296
Richard Smith66e05fe2012-01-18 05:21:49 +00004297 // Value-initialization does not call a trivial default constructor, so such a
4298 // call is a core constant expression whether or not the constructor is
4299 // constexpr.
4300 if (!CD->isConstexpr() && !IsValueInitialization) {
Richard Smith2bf7fdb2013-01-02 11:42:31 +00004301 if (Info.getLangOpts().CPlusPlus11) {
Richard Smith66e05fe2012-01-18 05:21:49 +00004302 // FIXME: If DiagDecl is an implicitly-declared special member function,
4303 // we should be much more explicit about why it's not constexpr.
4304 Info.CCEDiag(Loc, diag::note_constexpr_invalid_function, 1)
4305 << /*IsConstexpr*/0 << /*IsConstructor*/1 << CD;
4306 Info.Note(CD->getLocation(), diag::note_declared_at);
Richard Smithcc36f692011-12-22 02:22:31 +00004307 } else {
4308 Info.CCEDiag(Loc, diag::note_invalid_subexpr_in_const_expr);
4309 }
4310 }
4311 return true;
4312}
4313
Richard Smith357362d2011-12-13 06:39:58 +00004314/// CheckConstexprFunction - Check that a function can be called in a constant
4315/// expression.
4316static bool CheckConstexprFunction(EvalInfo &Info, SourceLocation CallLoc,
4317 const FunctionDecl *Declaration,
Olivier Goffart8bc0caa2e2016-02-12 12:34:44 +00004318 const FunctionDecl *Definition,
4319 const Stmt *Body) {
Richard Smith253c2a32012-01-27 01:14:48 +00004320 // Potential constant expressions can contain calls to declared, but not yet
4321 // defined, constexpr functions.
Richard Smith6d4c6582013-11-05 22:18:15 +00004322 if (Info.checkingPotentialConstantExpression() && !Definition &&
Richard Smith253c2a32012-01-27 01:14:48 +00004323 Declaration->isConstexpr())
4324 return false;
4325
Richard Smith0838f3a2013-05-14 05:18:44 +00004326 // Bail out with no diagnostic if the function declaration itself is invalid.
4327 // We will have produced a relevant diagnostic while parsing it.
4328 if (Declaration->isInvalidDecl())
4329 return false;
4330
Richard Smith357362d2011-12-13 06:39:58 +00004331 // Can we evaluate this function call?
Olivier Goffart8bc0caa2e2016-02-12 12:34:44 +00004332 if (Definition && Definition->isConstexpr() &&
4333 !Definition->isInvalidDecl() && Body)
Richard Smith357362d2011-12-13 06:39:58 +00004334 return true;
4335
Richard Smith2bf7fdb2013-01-02 11:42:31 +00004336 if (Info.getLangOpts().CPlusPlus11) {
Richard Smith357362d2011-12-13 06:39:58 +00004337 const FunctionDecl *DiagDecl = Definition ? Definition : Declaration;
Fangrui Song6907ce22018-07-30 19:24:48 +00004338
Richard Smith5179eb72016-06-28 19:03:57 +00004339 // If this function is not constexpr because it is an inherited
4340 // non-constexpr constructor, diagnose that directly.
4341 auto *CD = dyn_cast<CXXConstructorDecl>(DiagDecl);
4342 if (CD && CD->isInheritingConstructor()) {
4343 auto *Inherited = CD->getInheritedConstructor().getConstructor();
Fangrui Song6907ce22018-07-30 19:24:48 +00004344 if (!Inherited->isConstexpr())
Richard Smith5179eb72016-06-28 19:03:57 +00004345 DiagDecl = CD = Inherited;
4346 }
4347
4348 // FIXME: If DiagDecl is an implicitly-declared special member function
4349 // or an inheriting constructor, we should be much more explicit about why
4350 // it's not constexpr.
4351 if (CD && CD->isInheritingConstructor())
Faisal Valie690b7a2016-07-02 22:34:24 +00004352 Info.FFDiag(CallLoc, diag::note_constexpr_invalid_inhctor, 1)
Richard Smith5179eb72016-06-28 19:03:57 +00004353 << CD->getInheritedConstructor().getConstructor()->getParent();
4354 else
Faisal Valie690b7a2016-07-02 22:34:24 +00004355 Info.FFDiag(CallLoc, diag::note_constexpr_invalid_function, 1)
Richard Smith5179eb72016-06-28 19:03:57 +00004356 << DiagDecl->isConstexpr() << (bool)CD << DiagDecl;
Richard Smith357362d2011-12-13 06:39:58 +00004357 Info.Note(DiagDecl->getLocation(), diag::note_declared_at);
4358 } else {
Faisal Valie690b7a2016-07-02 22:34:24 +00004359 Info.FFDiag(CallLoc, diag::note_invalid_subexpr_in_const_expr);
Richard Smith357362d2011-12-13 06:39:58 +00004360 }
4361 return false;
4362}
4363
Richard Smithbe6dd812014-11-19 21:27:17 +00004364/// Determine if a class has any fields that might need to be copied by a
4365/// trivial copy or move operation.
4366static bool hasFields(const CXXRecordDecl *RD) {
4367 if (!RD || RD->isEmpty())
4368 return false;
4369 for (auto *FD : RD->fields()) {
4370 if (FD->isUnnamedBitfield())
4371 continue;
4372 return true;
4373 }
4374 for (auto &Base : RD->bases())
4375 if (hasFields(Base.getType()->getAsCXXRecordDecl()))
4376 return true;
4377 return false;
4378}
4379
Richard Smithd62306a2011-11-10 06:34:14 +00004380namespace {
Richard Smith2e312c82012-03-03 22:46:17 +00004381typedef SmallVector<APValue, 8> ArgVector;
Richard Smithd62306a2011-11-10 06:34:14 +00004382}
4383
4384/// EvaluateArgs - Evaluate the arguments to a function call.
4385static bool EvaluateArgs(ArrayRef<const Expr*> Args, ArgVector &ArgValues,
4386 EvalInfo &Info) {
Richard Smith253c2a32012-01-27 01:14:48 +00004387 bool Success = true;
Richard Smithd62306a2011-11-10 06:34:14 +00004388 for (ArrayRef<const Expr*>::iterator I = Args.begin(), E = Args.end();
Richard Smith253c2a32012-01-27 01:14:48 +00004389 I != E; ++I) {
4390 if (!Evaluate(ArgValues[I - Args.begin()], Info, *I)) {
4391 // If we're checking for a potential constant expression, evaluate all
4392 // initializers even if some of them fail.
George Burgess IVa145e252016-05-25 22:38:36 +00004393 if (!Info.noteFailure())
Richard Smith253c2a32012-01-27 01:14:48 +00004394 return false;
4395 Success = false;
4396 }
4397 }
4398 return Success;
Richard Smithd62306a2011-11-10 06:34:14 +00004399}
4400
Richard Smith254a73d2011-10-28 22:34:42 +00004401/// Evaluate a function call.
Richard Smith253c2a32012-01-27 01:14:48 +00004402static bool HandleFunctionCall(SourceLocation CallLoc,
4403 const FunctionDecl *Callee, const LValue *This,
Richard Smithf57d8cb2011-12-09 22:58:01 +00004404 ArrayRef<const Expr*> Args, const Stmt *Body,
Richard Smith52a980a2015-08-28 02:43:42 +00004405 EvalInfo &Info, APValue &Result,
4406 const LValue *ResultSlot) {
Richard Smithd62306a2011-11-10 06:34:14 +00004407 ArgVector ArgValues(Args.size());
4408 if (!EvaluateArgs(Args, ArgValues, Info))
4409 return false;
Richard Smith254a73d2011-10-28 22:34:42 +00004410
Richard Smith253c2a32012-01-27 01:14:48 +00004411 if (!Info.CheckCallLimit(CallLoc))
4412 return false;
4413
4414 CallStackFrame Frame(Info, CallLoc, Callee, This, ArgValues.data());
Richard Smith99005e62013-05-07 03:19:20 +00004415
4416 // For a trivial copy or move assignment, perform an APValue copy. This is
4417 // essential for unions, where the operations performed by the assignment
4418 // operator cannot be represented as statements.
Richard Smithbe6dd812014-11-19 21:27:17 +00004419 //
4420 // Skip this for non-union classes with no fields; in that case, the defaulted
4421 // copy/move does not actually read the object.
Richard Smith99005e62013-05-07 03:19:20 +00004422 const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Callee);
Richard Smith419bd092015-04-29 19:26:57 +00004423 if (MD && MD->isDefaulted() &&
4424 (MD->getParent()->isUnion() ||
4425 (MD->isTrivial() && hasFields(MD->getParent())))) {
Richard Smith99005e62013-05-07 03:19:20 +00004426 assert(This &&
4427 (MD->isCopyAssignmentOperator() || MD->isMoveAssignmentOperator()));
4428 LValue RHS;
4429 RHS.setFrom(Info.Ctx, ArgValues[0]);
4430 APValue RHSValue;
4431 if (!handleLValueToRValueConversion(Info, Args[0], Args[0]->getType(),
4432 RHS, RHSValue))
4433 return false;
4434 if (!handleAssignment(Info, Args[0], *This, MD->getThisType(Info.Ctx),
4435 RHSValue))
4436 return false;
4437 This->moveInto(Result);
4438 return true;
Faisal Vali051e3a22017-02-16 04:12:21 +00004439 } else if (MD && isLambdaCallOperator(MD)) {
Erik Pilkington11232912018-04-05 00:12:05 +00004440 // We're in a lambda; determine the lambda capture field maps unless we're
4441 // just constexpr checking a lambda's call operator. constexpr checking is
4442 // done before the captures have been added to the closure object (unless
4443 // we're inferring constexpr-ness), so we don't have access to them in this
4444 // case. But since we don't need the captures to constexpr check, we can
4445 // just ignore them.
4446 if (!Info.checkingPotentialConstantExpression())
4447 MD->getParent()->getCaptureFields(Frame.LambdaCaptureFields,
4448 Frame.LambdaThisCaptureField);
Richard Smith99005e62013-05-07 03:19:20 +00004449 }
4450
Richard Smith52a980a2015-08-28 02:43:42 +00004451 StmtResult Ret = {Result, ResultSlot};
4452 EvalStmtResult ESR = EvaluateStmt(Ret, Info, Body);
Richard Smith3da88fa2013-04-26 14:36:30 +00004453 if (ESR == ESR_Succeeded) {
Alp Toker314cc812014-01-25 16:55:45 +00004454 if (Callee->getReturnType()->isVoidType())
Richard Smith3da88fa2013-04-26 14:36:30 +00004455 return true;
Stephen Kelly1c301dc2018-08-09 21:09:38 +00004456 Info.FFDiag(Callee->getEndLoc(), diag::note_constexpr_no_return);
Richard Smith3da88fa2013-04-26 14:36:30 +00004457 }
Richard Smithd9f663b2013-04-22 15:31:51 +00004458 return ESR == ESR_Returned;
Richard Smith254a73d2011-10-28 22:34:42 +00004459}
4460
Richard Smithd62306a2011-11-10 06:34:14 +00004461/// Evaluate a constructor call.
Richard Smith5179eb72016-06-28 19:03:57 +00004462static bool HandleConstructorCall(const Expr *E, const LValue &This,
4463 APValue *ArgValues,
Richard Smithd62306a2011-11-10 06:34:14 +00004464 const CXXConstructorDecl *Definition,
Richard Smithfddd3842011-12-30 21:15:51 +00004465 EvalInfo &Info, APValue &Result) {
Richard Smith5179eb72016-06-28 19:03:57 +00004466 SourceLocation CallLoc = E->getExprLoc();
Richard Smith253c2a32012-01-27 01:14:48 +00004467 if (!Info.CheckCallLimit(CallLoc))
4468 return false;
4469
Richard Smith3607ffe2012-02-13 03:54:03 +00004470 const CXXRecordDecl *RD = Definition->getParent();
4471 if (RD->getNumVBases()) {
Faisal Valie690b7a2016-07-02 22:34:24 +00004472 Info.FFDiag(CallLoc, diag::note_constexpr_virtual_base) << RD;
Richard Smith3607ffe2012-02-13 03:54:03 +00004473 return false;
4474 }
4475
Erik Pilkington42925492017-10-04 00:18:55 +00004476 EvalInfo::EvaluatingConstructorRAII EvalObj(
Akira Hatanaka4e2698c2018-04-10 05:15:01 +00004477 Info, {This.getLValueBase(),
4478 {This.getLValueCallIndex(), This.getLValueVersion()}});
Richard Smith5179eb72016-06-28 19:03:57 +00004479 CallStackFrame Frame(Info, CallLoc, Definition, &This, ArgValues);
Richard Smithd62306a2011-11-10 06:34:14 +00004480
Richard Smith52a980a2015-08-28 02:43:42 +00004481 // FIXME: Creating an APValue just to hold a nonexistent return value is
4482 // wasteful.
4483 APValue RetVal;
4484 StmtResult Ret = {RetVal, nullptr};
4485
Richard Smith5179eb72016-06-28 19:03:57 +00004486 // If it's a delegating constructor, delegate.
Richard Smithd62306a2011-11-10 06:34:14 +00004487 if (Definition->isDelegatingConstructor()) {
4488 CXXConstructorDecl::init_const_iterator I = Definition->init_begin();
Richard Smith9ff62af2013-11-07 18:45:03 +00004489 {
4490 FullExpressionRAII InitScope(Info);
4491 if (!EvaluateInPlace(Result, Info, This, (*I)->getInit()))
4492 return false;
4493 }
Richard Smith52a980a2015-08-28 02:43:42 +00004494 return EvaluateStmt(Ret, Info, Definition->getBody()) != ESR_Failed;
Richard Smithd62306a2011-11-10 06:34:14 +00004495 }
4496
Richard Smith1bc5c2c2012-01-10 04:32:03 +00004497 // For a trivial copy or move constructor, perform an APValue copy. This is
Richard Smithbe6dd812014-11-19 21:27:17 +00004498 // essential for unions (or classes with anonymous union members), where the
4499 // operations performed by the constructor cannot be represented by
4500 // ctor-initializers.
4501 //
4502 // Skip this for empty non-union classes; we should not perform an
4503 // lvalue-to-rvalue conversion on them because their copy constructor does not
4504 // actually read them.
Richard Smith419bd092015-04-29 19:26:57 +00004505 if (Definition->isDefaulted() && Definition->isCopyOrMoveConstructor() &&
Richard Smithbe6dd812014-11-19 21:27:17 +00004506 (Definition->getParent()->isUnion() ||
Richard Smith419bd092015-04-29 19:26:57 +00004507 (Definition->isTrivial() && hasFields(Definition->getParent())))) {
Richard Smith1bc5c2c2012-01-10 04:32:03 +00004508 LValue RHS;
Richard Smith2e312c82012-03-03 22:46:17 +00004509 RHS.setFrom(Info.Ctx, ArgValues[0]);
Richard Smith5179eb72016-06-28 19:03:57 +00004510 return handleLValueToRValueConversion(
4511 Info, E, Definition->getParamDecl(0)->getType().getNonReferenceType(),
4512 RHS, Result);
Richard Smith1bc5c2c2012-01-10 04:32:03 +00004513 }
4514
4515 // Reserve space for the struct members.
Richard Smithfddd3842011-12-30 21:15:51 +00004516 if (!RD->isUnion() && Result.isUninit())
Richard Smithd62306a2011-11-10 06:34:14 +00004517 Result = APValue(APValue::UninitStruct(), RD->getNumBases(),
Aaron Ballman62e47c42014-03-10 13:43:55 +00004518 std::distance(RD->field_begin(), RD->field_end()));
Richard Smithd62306a2011-11-10 06:34:14 +00004519
John McCalld7bca762012-05-01 00:38:49 +00004520 if (RD->isInvalidDecl()) return false;
Richard Smithd62306a2011-11-10 06:34:14 +00004521 const ASTRecordLayout &Layout = Info.Ctx.getASTRecordLayout(RD);
4522
Richard Smith08d6a2c2013-07-24 07:11:57 +00004523 // A scope for temporaries lifetime-extended by reference members.
4524 BlockScopeRAII LifetimeExtendedScope(Info);
4525
Richard Smith253c2a32012-01-27 01:14:48 +00004526 bool Success = true;
Richard Smithd62306a2011-11-10 06:34:14 +00004527 unsigned BasesSeen = 0;
4528#ifndef NDEBUG
4529 CXXRecordDecl::base_class_const_iterator BaseIt = RD->bases_begin();
4530#endif
Aaron Ballman0ad78302014-03-13 17:34:31 +00004531 for (const auto *I : Definition->inits()) {
Richard Smith253c2a32012-01-27 01:14:48 +00004532 LValue Subobject = This;
Volodymyr Sapsaie8f1ffb2018-02-23 23:59:20 +00004533 LValue SubobjectParent = This;
Richard Smith253c2a32012-01-27 01:14:48 +00004534 APValue *Value = &Result;
4535
4536 // Determine the subobject to initialize.
Craig Topper36250ad2014-05-12 05:36:57 +00004537 FieldDecl *FD = nullptr;
Aaron Ballman0ad78302014-03-13 17:34:31 +00004538 if (I->isBaseInitializer()) {
4539 QualType BaseType(I->getBaseClass(), 0);
Richard Smithd62306a2011-11-10 06:34:14 +00004540#ifndef NDEBUG
4541 // Non-virtual base classes are initialized in the order in the class
Richard Smith3607ffe2012-02-13 03:54:03 +00004542 // definition. We have already checked for virtual base classes.
Richard Smithd62306a2011-11-10 06:34:14 +00004543 assert(!BaseIt->isVirtual() && "virtual base for literal type");
4544 assert(Info.Ctx.hasSameType(BaseIt->getType(), BaseType) &&
4545 "base class initializers not in expected order");
4546 ++BaseIt;
4547#endif
Aaron Ballman0ad78302014-03-13 17:34:31 +00004548 if (!HandleLValueDirectBase(Info, I->getInit(), Subobject, RD,
John McCalld7bca762012-05-01 00:38:49 +00004549 BaseType->getAsCXXRecordDecl(), &Layout))
4550 return false;
Richard Smith253c2a32012-01-27 01:14:48 +00004551 Value = &Result.getStructBase(BasesSeen++);
Aaron Ballman0ad78302014-03-13 17:34:31 +00004552 } else if ((FD = I->getMember())) {
4553 if (!HandleLValueMember(Info, I->getInit(), Subobject, FD, &Layout))
John McCalld7bca762012-05-01 00:38:49 +00004554 return false;
Richard Smithd62306a2011-11-10 06:34:14 +00004555 if (RD->isUnion()) {
4556 Result = APValue(FD);
Richard Smith253c2a32012-01-27 01:14:48 +00004557 Value = &Result.getUnionValue();
4558 } else {
4559 Value = &Result.getStructField(FD->getFieldIndex());
4560 }
Aaron Ballman0ad78302014-03-13 17:34:31 +00004561 } else if (IndirectFieldDecl *IFD = I->getIndirectMember()) {
Richard Smith1b78b3d2012-01-25 22:15:11 +00004562 // Walk the indirect field decl's chain to find the object to initialize,
4563 // and make sure we've initialized every step along it.
Volodymyr Sapsaie8f1ffb2018-02-23 23:59:20 +00004564 auto IndirectFieldChain = IFD->chain();
4565 for (auto *C : IndirectFieldChain) {
Aaron Ballman13916082014-03-07 18:11:58 +00004566 FD = cast<FieldDecl>(C);
Richard Smith1b78b3d2012-01-25 22:15:11 +00004567 CXXRecordDecl *CD = cast<CXXRecordDecl>(FD->getParent());
4568 // Switch the union field if it differs. This happens if we had
4569 // preceding zero-initialization, and we're now initializing a union
4570 // subobject other than the first.
4571 // FIXME: In this case, the values of the other subobjects are
4572 // specified, since zero-initialization sets all padding bits to zero.
4573 if (Value->isUninit() ||
4574 (Value->isUnion() && Value->getUnionField() != FD)) {
4575 if (CD->isUnion())
4576 *Value = APValue(FD);
4577 else
4578 *Value = APValue(APValue::UninitStruct(), CD->getNumBases(),
Aaron Ballman62e47c42014-03-10 13:43:55 +00004579 std::distance(CD->field_begin(), CD->field_end()));
Richard Smith1b78b3d2012-01-25 22:15:11 +00004580 }
Volodymyr Sapsaie8f1ffb2018-02-23 23:59:20 +00004581 // Store Subobject as its parent before updating it for the last element
4582 // in the chain.
4583 if (C == IndirectFieldChain.back())
4584 SubobjectParent = Subobject;
Aaron Ballman0ad78302014-03-13 17:34:31 +00004585 if (!HandleLValueMember(Info, I->getInit(), Subobject, FD))
John McCalld7bca762012-05-01 00:38:49 +00004586 return false;
Richard Smith1b78b3d2012-01-25 22:15:11 +00004587 if (CD->isUnion())
4588 Value = &Value->getUnionValue();
4589 else
4590 Value = &Value->getStructField(FD->getFieldIndex());
Richard Smith1b78b3d2012-01-25 22:15:11 +00004591 }
Richard Smithd62306a2011-11-10 06:34:14 +00004592 } else {
Richard Smith1b78b3d2012-01-25 22:15:11 +00004593 llvm_unreachable("unknown base initializer kind");
Richard Smithd62306a2011-11-10 06:34:14 +00004594 }
Richard Smith253c2a32012-01-27 01:14:48 +00004595
Volodymyr Sapsaie8f1ffb2018-02-23 23:59:20 +00004596 // Need to override This for implicit field initializers as in this case
4597 // This refers to innermost anonymous struct/union containing initializer,
4598 // not to currently constructed class.
4599 const Expr *Init = I->getInit();
4600 ThisOverrideRAII ThisOverride(*Info.CurrentCall, &SubobjectParent,
4601 isa<CXXDefaultInitExpr>(Init));
Richard Smith08d6a2c2013-07-24 07:11:57 +00004602 FullExpressionRAII InitScope(Info);
Volodymyr Sapsaie8f1ffb2018-02-23 23:59:20 +00004603 if (!EvaluateInPlace(*Value, Info, Subobject, Init) ||
4604 (FD && FD->isBitField() &&
4605 !truncateBitfieldValue(Info, Init, *Value, FD))) {
Richard Smith253c2a32012-01-27 01:14:48 +00004606 // If we're checking for a potential constant expression, evaluate all
4607 // initializers even if some of them fail.
George Burgess IVa145e252016-05-25 22:38:36 +00004608 if (!Info.noteFailure())
Richard Smith253c2a32012-01-27 01:14:48 +00004609 return false;
4610 Success = false;
4611 }
Richard Smithd62306a2011-11-10 06:34:14 +00004612 }
4613
Richard Smithd9f663b2013-04-22 15:31:51 +00004614 return Success &&
Richard Smith52a980a2015-08-28 02:43:42 +00004615 EvaluateStmt(Ret, Info, Definition->getBody()) != ESR_Failed;
Richard Smithd62306a2011-11-10 06:34:14 +00004616}
4617
Richard Smith5179eb72016-06-28 19:03:57 +00004618static bool HandleConstructorCall(const Expr *E, const LValue &This,
4619 ArrayRef<const Expr*> Args,
4620 const CXXConstructorDecl *Definition,
4621 EvalInfo &Info, APValue &Result) {
4622 ArgVector ArgValues(Args.size());
4623 if (!EvaluateArgs(Args, ArgValues, Info))
4624 return false;
4625
4626 return HandleConstructorCall(E, This, ArgValues.data(), Definition,
4627 Info, Result);
4628}
4629
Eli Friedman9a156e52008-11-12 09:44:48 +00004630//===----------------------------------------------------------------------===//
Peter Collingbournee9200682011-05-13 03:29:01 +00004631// Generic Evaluation
4632//===----------------------------------------------------------------------===//
4633namespace {
4634
Aaron Ballman68af21c2014-01-03 19:26:43 +00004635template <class Derived>
Peter Collingbournee9200682011-05-13 03:29:01 +00004636class ExprEvaluatorBase
Aaron Ballman68af21c2014-01-03 19:26:43 +00004637 : public ConstStmtVisitor<Derived, bool> {
Peter Collingbournee9200682011-05-13 03:29:01 +00004638private:
Richard Smith52a980a2015-08-28 02:43:42 +00004639 Derived &getDerived() { return static_cast<Derived&>(*this); }
Aaron Ballman68af21c2014-01-03 19:26:43 +00004640 bool DerivedSuccess(const APValue &V, const Expr *E) {
Richard Smith52a980a2015-08-28 02:43:42 +00004641 return getDerived().Success(V, E);
Peter Collingbournee9200682011-05-13 03:29:01 +00004642 }
Aaron Ballman68af21c2014-01-03 19:26:43 +00004643 bool DerivedZeroInitialization(const Expr *E) {
Richard Smith52a980a2015-08-28 02:43:42 +00004644 return getDerived().ZeroInitialization(E);
Richard Smith4ce706a2011-10-11 21:43:33 +00004645 }
Peter Collingbournee9200682011-05-13 03:29:01 +00004646
Richard Smith17100ba2012-02-16 02:46:34 +00004647 // Check whether a conditional operator with a non-constant condition is a
4648 // potential constant expression. If neither arm is a potential constant
4649 // expression, then the conditional operator is not either.
4650 template<typename ConditionalOperator>
4651 void CheckPotentialConstantConditional(const ConditionalOperator *E) {
Richard Smith6d4c6582013-11-05 22:18:15 +00004652 assert(Info.checkingPotentialConstantExpression());
Richard Smith17100ba2012-02-16 02:46:34 +00004653
4654 // Speculatively evaluate both arms.
George Burgess IV8c892b52016-05-25 22:31:54 +00004655 SmallVector<PartialDiagnosticAt, 8> Diag;
Richard Smith17100ba2012-02-16 02:46:34 +00004656 {
Richard Smith17100ba2012-02-16 02:46:34 +00004657 SpeculativeEvaluationRAII Speculate(Info, &Diag);
Richard Smith17100ba2012-02-16 02:46:34 +00004658 StmtVisitorTy::Visit(E->getFalseExpr());
4659 if (Diag.empty())
4660 return;
George Burgess IV8c892b52016-05-25 22:31:54 +00004661 }
Richard Smith17100ba2012-02-16 02:46:34 +00004662
George Burgess IV8c892b52016-05-25 22:31:54 +00004663 {
4664 SpeculativeEvaluationRAII Speculate(Info, &Diag);
Richard Smith17100ba2012-02-16 02:46:34 +00004665 Diag.clear();
4666 StmtVisitorTy::Visit(E->getTrueExpr());
4667 if (Diag.empty())
4668 return;
4669 }
4670
4671 Error(E, diag::note_constexpr_conditional_never_const);
4672 }
4673
4674
4675 template<typename ConditionalOperator>
4676 bool HandleConditionalOperator(const ConditionalOperator *E) {
4677 bool BoolResult;
4678 if (!EvaluateAsBooleanCondition(E->getCond(), BoolResult, Info)) {
Nick Lewycky20edee62017-04-27 07:11:09 +00004679 if (Info.checkingPotentialConstantExpression() && Info.noteFailure()) {
Richard Smith17100ba2012-02-16 02:46:34 +00004680 CheckPotentialConstantConditional(E);
Nick Lewycky20edee62017-04-27 07:11:09 +00004681 return false;
4682 }
4683 if (Info.noteFailure()) {
4684 StmtVisitorTy::Visit(E->getTrueExpr());
4685 StmtVisitorTy::Visit(E->getFalseExpr());
4686 }
Richard Smith17100ba2012-02-16 02:46:34 +00004687 return false;
4688 }
4689
4690 Expr *EvalExpr = BoolResult ? E->getTrueExpr() : E->getFalseExpr();
4691 return StmtVisitorTy::Visit(EvalExpr);
4692 }
4693
Peter Collingbournee9200682011-05-13 03:29:01 +00004694protected:
4695 EvalInfo &Info;
Aaron Ballman68af21c2014-01-03 19:26:43 +00004696 typedef ConstStmtVisitor<Derived, bool> StmtVisitorTy;
Peter Collingbournee9200682011-05-13 03:29:01 +00004697 typedef ExprEvaluatorBase ExprEvaluatorBaseTy;
4698
Richard Smith92b1ce02011-12-12 09:28:41 +00004699 OptionalDiagnostic CCEDiag(const Expr *E, diag::kind D) {
Richard Smithce1ec5e2012-03-15 04:53:45 +00004700 return Info.CCEDiag(E, D);
Richard Smithf57d8cb2011-12-09 22:58:01 +00004701 }
4702
Aaron Ballman68af21c2014-01-03 19:26:43 +00004703 bool ZeroInitialization(const Expr *E) { return Error(E); }
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00004704
4705public:
4706 ExprEvaluatorBase(EvalInfo &Info) : Info(Info) {}
4707
4708 EvalInfo &getEvalInfo() { return Info; }
4709
Richard Smithf57d8cb2011-12-09 22:58:01 +00004710 /// Report an evaluation error. This should only be called when an error is
4711 /// first discovered. When propagating an error, just return false.
4712 bool Error(const Expr *E, diag::kind D) {
Faisal Valie690b7a2016-07-02 22:34:24 +00004713 Info.FFDiag(E, D);
Richard Smithf57d8cb2011-12-09 22:58:01 +00004714 return false;
4715 }
4716 bool Error(const Expr *E) {
4717 return Error(E, diag::note_invalid_subexpr_in_const_expr);
4718 }
4719
Aaron Ballman68af21c2014-01-03 19:26:43 +00004720 bool VisitStmt(const Stmt *) {
David Blaikie83d382b2011-09-23 05:06:16 +00004721 llvm_unreachable("Expression evaluator should not be called on stmts");
Peter Collingbournee9200682011-05-13 03:29:01 +00004722 }
Aaron Ballman68af21c2014-01-03 19:26:43 +00004723 bool VisitExpr(const Expr *E) {
Richard Smithf57d8cb2011-12-09 22:58:01 +00004724 return Error(E);
Peter Collingbournee9200682011-05-13 03:29:01 +00004725 }
4726
Aaron Ballman68af21c2014-01-03 19:26:43 +00004727 bool VisitParenExpr(const ParenExpr *E)
Peter Collingbournee9200682011-05-13 03:29:01 +00004728 { return StmtVisitorTy::Visit(E->getSubExpr()); }
Aaron Ballman68af21c2014-01-03 19:26:43 +00004729 bool VisitUnaryExtension(const UnaryOperator *E)
Peter Collingbournee9200682011-05-13 03:29:01 +00004730 { return StmtVisitorTy::Visit(E->getSubExpr()); }
Aaron Ballman68af21c2014-01-03 19:26:43 +00004731 bool VisitUnaryPlus(const UnaryOperator *E)
Peter Collingbournee9200682011-05-13 03:29:01 +00004732 { return StmtVisitorTy::Visit(E->getSubExpr()); }
Aaron Ballman68af21c2014-01-03 19:26:43 +00004733 bool VisitChooseExpr(const ChooseExpr *E)
Eli Friedman75807f22013-07-20 00:40:58 +00004734 { return StmtVisitorTy::Visit(E->getChosenSubExpr()); }
Aaron Ballman68af21c2014-01-03 19:26:43 +00004735 bool VisitGenericSelectionExpr(const GenericSelectionExpr *E)
Peter Collingbournee9200682011-05-13 03:29:01 +00004736 { return StmtVisitorTy::Visit(E->getResultExpr()); }
Aaron Ballman68af21c2014-01-03 19:26:43 +00004737 bool VisitSubstNonTypeTemplateParmExpr(const SubstNonTypeTemplateParmExpr *E)
John McCall7c454bb2011-07-15 05:09:51 +00004738 { return StmtVisitorTy::Visit(E->getReplacement()); }
Akira Hatanaka4e2698c2018-04-10 05:15:01 +00004739 bool VisitCXXDefaultArgExpr(const CXXDefaultArgExpr *E) {
4740 TempVersionRAII RAII(*Info.CurrentCall);
4741 return StmtVisitorTy::Visit(E->getExpr());
4742 }
Aaron Ballman68af21c2014-01-03 19:26:43 +00004743 bool VisitCXXDefaultInitExpr(const CXXDefaultInitExpr *E) {
Akira Hatanaka4e2698c2018-04-10 05:15:01 +00004744 TempVersionRAII RAII(*Info.CurrentCall);
Richard Smith17e32462013-09-13 20:51:45 +00004745 // The initializer may not have been parsed yet, or might be erroneous.
4746 if (!E->getExpr())
4747 return Error(E);
4748 return StmtVisitorTy::Visit(E->getExpr());
4749 }
Richard Smith5894a912011-12-19 22:12:41 +00004750 // We cannot create any objects for which cleanups are required, so there is
4751 // nothing to do here; all cleanups must come from unevaluated subexpressions.
Aaron Ballman68af21c2014-01-03 19:26:43 +00004752 bool VisitExprWithCleanups(const ExprWithCleanups *E)
Richard Smith5894a912011-12-19 22:12:41 +00004753 { return StmtVisitorTy::Visit(E->getSubExpr()); }
Peter Collingbournee9200682011-05-13 03:29:01 +00004754
Aaron Ballman68af21c2014-01-03 19:26:43 +00004755 bool VisitCXXReinterpretCastExpr(const CXXReinterpretCastExpr *E) {
Richard Smith6d6ecc32011-12-12 12:46:16 +00004756 CCEDiag(E, diag::note_constexpr_invalid_cast) << 0;
4757 return static_cast<Derived*>(this)->VisitCastExpr(E);
4758 }
Aaron Ballman68af21c2014-01-03 19:26:43 +00004759 bool VisitCXXDynamicCastExpr(const CXXDynamicCastExpr *E) {
Richard Smith6d6ecc32011-12-12 12:46:16 +00004760 CCEDiag(E, diag::note_constexpr_invalid_cast) << 1;
4761 return static_cast<Derived*>(this)->VisitCastExpr(E);
4762 }
4763
Aaron Ballman68af21c2014-01-03 19:26:43 +00004764 bool VisitBinaryOperator(const BinaryOperator *E) {
Richard Smith027bf112011-11-17 22:56:20 +00004765 switch (E->getOpcode()) {
4766 default:
Richard Smithf57d8cb2011-12-09 22:58:01 +00004767 return Error(E);
Richard Smith027bf112011-11-17 22:56:20 +00004768
4769 case BO_Comma:
4770 VisitIgnoredValue(E->getLHS());
4771 return StmtVisitorTy::Visit(E->getRHS());
4772
4773 case BO_PtrMemD:
4774 case BO_PtrMemI: {
4775 LValue Obj;
4776 if (!HandleMemberPointerAccess(Info, E, Obj))
4777 return false;
Richard Smith2e312c82012-03-03 22:46:17 +00004778 APValue Result;
Richard Smith243ef902013-05-05 23:31:59 +00004779 if (!handleLValueToRValueConversion(Info, E, E->getType(), Obj, Result))
Richard Smith027bf112011-11-17 22:56:20 +00004780 return false;
4781 return DerivedSuccess(Result, E);
4782 }
4783 }
4784 }
4785
Aaron Ballman68af21c2014-01-03 19:26:43 +00004786 bool VisitBinaryConditionalOperator(const BinaryConditionalOperator *E) {
Richard Smith26d4cc12012-06-26 08:12:11 +00004787 // Evaluate and cache the common expression. We treat it as a temporary,
4788 // even though it's not quite the same thing.
Richard Smith08d6a2c2013-07-24 07:11:57 +00004789 if (!Evaluate(Info.CurrentCall->createTemporary(E->getOpaqueValue(), false),
Richard Smith26d4cc12012-06-26 08:12:11 +00004790 Info, E->getCommon()))
Richard Smithf57d8cb2011-12-09 22:58:01 +00004791 return false;
Peter Collingbournee9200682011-05-13 03:29:01 +00004792
Richard Smith17100ba2012-02-16 02:46:34 +00004793 return HandleConditionalOperator(E);
Peter Collingbournee9200682011-05-13 03:29:01 +00004794 }
4795
Aaron Ballman68af21c2014-01-03 19:26:43 +00004796 bool VisitConditionalOperator(const ConditionalOperator *E) {
Richard Smith84f6dcf2012-02-02 01:16:57 +00004797 bool IsBcpCall = false;
4798 // If the condition (ignoring parens) is a __builtin_constant_p call,
4799 // the result is a constant expression if it can be folded without
4800 // side-effects. This is an important GNU extension. See GCC PR38377
4801 // for discussion.
4802 if (const CallExpr *CallCE =
4803 dyn_cast<CallExpr>(E->getCond()->IgnoreParenCasts()))
Alp Tokera724cff2013-12-28 21:59:02 +00004804 if (CallCE->getBuiltinCallee() == Builtin::BI__builtin_constant_p)
Richard Smith84f6dcf2012-02-02 01:16:57 +00004805 IsBcpCall = true;
4806
4807 // Always assume __builtin_constant_p(...) ? ... : ... is a potential
4808 // constant expression; we can't check whether it's potentially foldable.
Richard Smith6d4c6582013-11-05 22:18:15 +00004809 if (Info.checkingPotentialConstantExpression() && IsBcpCall)
Richard Smith84f6dcf2012-02-02 01:16:57 +00004810 return false;
4811
Richard Smith6d4c6582013-11-05 22:18:15 +00004812 FoldConstant Fold(Info, IsBcpCall);
4813 if (!HandleConditionalOperator(E)) {
4814 Fold.keepDiagnostics();
Richard Smith84f6dcf2012-02-02 01:16:57 +00004815 return false;
Richard Smith6d4c6582013-11-05 22:18:15 +00004816 }
Richard Smith84f6dcf2012-02-02 01:16:57 +00004817
4818 return true;
Peter Collingbournee9200682011-05-13 03:29:01 +00004819 }
4820
Aaron Ballman68af21c2014-01-03 19:26:43 +00004821 bool VisitOpaqueValueExpr(const OpaqueValueExpr *E) {
Akira Hatanaka4e2698c2018-04-10 05:15:01 +00004822 if (APValue *Value = Info.CurrentCall->getCurrentTemporary(E))
Richard Smith08d6a2c2013-07-24 07:11:57 +00004823 return DerivedSuccess(*Value, E);
4824
4825 const Expr *Source = E->getSourceExpr();
4826 if (!Source)
4827 return Error(E);
4828 if (Source == E) { // sanity checking.
4829 assert(0 && "OpaqueValueExpr recursively refers to itself");
4830 return Error(E);
Argyrios Kyrtzidisfac35c02011-12-09 02:44:48 +00004831 }
Richard Smith08d6a2c2013-07-24 07:11:57 +00004832 return StmtVisitorTy::Visit(Source);
Peter Collingbournee9200682011-05-13 03:29:01 +00004833 }
Richard Smith4ce706a2011-10-11 21:43:33 +00004834
Aaron Ballman68af21c2014-01-03 19:26:43 +00004835 bool VisitCallExpr(const CallExpr *E) {
Richard Smith52a980a2015-08-28 02:43:42 +00004836 APValue Result;
4837 if (!handleCallExpr(E, Result, nullptr))
4838 return false;
4839 return DerivedSuccess(Result, E);
4840 }
4841
4842 bool handleCallExpr(const CallExpr *E, APValue &Result,
Nick Lewycky13073a62017-06-12 21:15:44 +00004843 const LValue *ResultSlot) {
Richard Smith027bf112011-11-17 22:56:20 +00004844 const Expr *Callee = E->getCallee()->IgnoreParens();
Richard Smith254a73d2011-10-28 22:34:42 +00004845 QualType CalleeType = Callee->getType();
4846
Craig Topper36250ad2014-05-12 05:36:57 +00004847 const FunctionDecl *FD = nullptr;
4848 LValue *This = nullptr, ThisVal;
Craig Topper5fc8fc22014-08-27 06:28:36 +00004849 auto Args = llvm::makeArrayRef(E->getArgs(), E->getNumArgs());
Richard Smith3607ffe2012-02-13 03:54:03 +00004850 bool HasQualifier = false;
Richard Smith656d49d2011-11-10 09:31:24 +00004851
Richard Smithe97cbd72011-11-11 04:05:33 +00004852 // Extract function decl and 'this' pointer from the callee.
4853 if (CalleeType->isSpecificBuiltinType(BuiltinType::BoundMember)) {
Craig Topper36250ad2014-05-12 05:36:57 +00004854 const ValueDecl *Member = nullptr;
Richard Smith027bf112011-11-17 22:56:20 +00004855 if (const MemberExpr *ME = dyn_cast<MemberExpr>(Callee)) {
4856 // Explicit bound member calls, such as x.f() or p->g();
4857 if (!EvaluateObjectArgument(Info, ME->getBase(), ThisVal))
Richard Smithf57d8cb2011-12-09 22:58:01 +00004858 return false;
4859 Member = ME->getMemberDecl();
Richard Smith027bf112011-11-17 22:56:20 +00004860 This = &ThisVal;
Richard Smith3607ffe2012-02-13 03:54:03 +00004861 HasQualifier = ME->hasQualifier();
Richard Smith027bf112011-11-17 22:56:20 +00004862 } else if (const BinaryOperator *BE = dyn_cast<BinaryOperator>(Callee)) {
4863 // Indirect bound member calls ('.*' or '->*').
Richard Smithf57d8cb2011-12-09 22:58:01 +00004864 Member = HandleMemberPointerAccess(Info, BE, ThisVal, false);
4865 if (!Member) return false;
Richard Smith027bf112011-11-17 22:56:20 +00004866 This = &ThisVal;
Richard Smith027bf112011-11-17 22:56:20 +00004867 } else
Richard Smithf57d8cb2011-12-09 22:58:01 +00004868 return Error(Callee);
4869
4870 FD = dyn_cast<FunctionDecl>(Member);
4871 if (!FD)
4872 return Error(Callee);
Richard Smithe97cbd72011-11-11 04:05:33 +00004873 } else if (CalleeType->isFunctionPointerType()) {
Richard Smitha8105bc2012-01-06 16:39:00 +00004874 LValue Call;
4875 if (!EvaluatePointer(Callee, Call, Info))
Richard Smithf57d8cb2011-12-09 22:58:01 +00004876 return false;
Richard Smithe97cbd72011-11-11 04:05:33 +00004877
Richard Smitha8105bc2012-01-06 16:39:00 +00004878 if (!Call.getLValueOffset().isZero())
Richard Smithf57d8cb2011-12-09 22:58:01 +00004879 return Error(Callee);
Richard Smithce40ad62011-11-12 22:28:03 +00004880 FD = dyn_cast_or_null<FunctionDecl>(
4881 Call.getLValueBase().dyn_cast<const ValueDecl*>());
Richard Smithe97cbd72011-11-11 04:05:33 +00004882 if (!FD)
Richard Smithf57d8cb2011-12-09 22:58:01 +00004883 return Error(Callee);
Faisal Valid92e7492017-01-08 18:56:11 +00004884 // Don't call function pointers which have been cast to some other type.
4885 // Per DR (no number yet), the caller and callee can differ in noexcept.
4886 if (!Info.Ctx.hasSameFunctionTypeIgnoringExceptionSpec(
4887 CalleeType->getPointeeType(), FD->getType())) {
4888 return Error(E);
4889 }
Richard Smithe97cbd72011-11-11 04:05:33 +00004890
4891 // Overloaded operator calls to member functions are represented as normal
4892 // calls with '*this' as the first argument.
4893 const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD);
4894 if (MD && !MD->isStatic()) {
Richard Smithf57d8cb2011-12-09 22:58:01 +00004895 // FIXME: When selecting an implicit conversion for an overloaded
4896 // operator delete, we sometimes try to evaluate calls to conversion
4897 // operators without a 'this' parameter!
4898 if (Args.empty())
4899 return Error(E);
4900
Nick Lewycky13073a62017-06-12 21:15:44 +00004901 if (!EvaluateObjectArgument(Info, Args[0], ThisVal))
Richard Smithe97cbd72011-11-11 04:05:33 +00004902 return false;
4903 This = &ThisVal;
Nick Lewycky13073a62017-06-12 21:15:44 +00004904 Args = Args.slice(1);
Fangrui Song6907ce22018-07-30 19:24:48 +00004905 } else if (MD && MD->isLambdaStaticInvoker()) {
Faisal Valid92e7492017-01-08 18:56:11 +00004906 // Map the static invoker for the lambda back to the call operator.
4907 // Conveniently, we don't have to slice out the 'this' argument (as is
4908 // being done for the non-static case), since a static member function
4909 // doesn't have an implicit argument passed in.
4910 const CXXRecordDecl *ClosureClass = MD->getParent();
4911 assert(
4912 ClosureClass->captures_begin() == ClosureClass->captures_end() &&
4913 "Number of captures must be zero for conversion to function-ptr");
4914
4915 const CXXMethodDecl *LambdaCallOp =
4916 ClosureClass->getLambdaCallOperator();
4917
4918 // Set 'FD', the function that will be called below, to the call
4919 // operator. If the closure object represents a generic lambda, find
4920 // the corresponding specialization of the call operator.
4921
4922 if (ClosureClass->isGenericLambda()) {
4923 assert(MD->isFunctionTemplateSpecialization() &&
4924 "A generic lambda's static-invoker function must be a "
4925 "template specialization");
4926 const TemplateArgumentList *TAL = MD->getTemplateSpecializationArgs();
4927 FunctionTemplateDecl *CallOpTemplate =
4928 LambdaCallOp->getDescribedFunctionTemplate();
4929 void *InsertPos = nullptr;
4930 FunctionDecl *CorrespondingCallOpSpecialization =
4931 CallOpTemplate->findSpecialization(TAL->asArray(), InsertPos);
4932 assert(CorrespondingCallOpSpecialization &&
4933 "We must always have a function call operator specialization "
4934 "that corresponds to our static invoker specialization");
4935 FD = cast<CXXMethodDecl>(CorrespondingCallOpSpecialization);
4936 } else
4937 FD = LambdaCallOp;
Richard Smithe97cbd72011-11-11 04:05:33 +00004938 }
4939
Fangrui Song6907ce22018-07-30 19:24:48 +00004940
Richard Smithe97cbd72011-11-11 04:05:33 +00004941 } else
Richard Smithf57d8cb2011-12-09 22:58:01 +00004942 return Error(E);
Richard Smith254a73d2011-10-28 22:34:42 +00004943
Richard Smith47b34932012-02-01 02:39:43 +00004944 if (This && !This->checkSubobject(Info, E, CSK_This))
4945 return false;
4946
Richard Smith3607ffe2012-02-13 03:54:03 +00004947 // DR1358 allows virtual constexpr functions in some cases. Don't allow
4948 // calls to such functions in constant expressions.
4949 if (This && !HasQualifier &&
4950 isa<CXXMethodDecl>(FD) && cast<CXXMethodDecl>(FD)->isVirtual())
4951 return Error(E, diag::note_constexpr_virtual_call);
4952
Craig Topper36250ad2014-05-12 05:36:57 +00004953 const FunctionDecl *Definition = nullptr;
Richard Smith254a73d2011-10-28 22:34:42 +00004954 Stmt *Body = FD->getBody(Definition);
Richard Smith254a73d2011-10-28 22:34:42 +00004955
Nick Lewycky13073a62017-06-12 21:15:44 +00004956 if (!CheckConstexprFunction(Info, E->getExprLoc(), FD, Definition, Body) ||
4957 !HandleFunctionCall(E->getExprLoc(), Definition, This, Args, Body, Info,
Richard Smith52a980a2015-08-28 02:43:42 +00004958 Result, ResultSlot))
Richard Smithf57d8cb2011-12-09 22:58:01 +00004959 return false;
4960
Richard Smith52a980a2015-08-28 02:43:42 +00004961 return true;
Richard Smith254a73d2011-10-28 22:34:42 +00004962 }
4963
Aaron Ballman68af21c2014-01-03 19:26:43 +00004964 bool VisitCompoundLiteralExpr(const CompoundLiteralExpr *E) {
Richard Smith11562c52011-10-28 17:51:58 +00004965 return StmtVisitorTy::Visit(E->getInitializer());
4966 }
Aaron Ballman68af21c2014-01-03 19:26:43 +00004967 bool VisitInitListExpr(const InitListExpr *E) {
Eli Friedman90dc1752012-01-03 23:54:05 +00004968 if (E->getNumInits() == 0)
4969 return DerivedZeroInitialization(E);
4970 if (E->getNumInits() == 1)
4971 return StmtVisitorTy::Visit(E->getInit(0));
Richard Smithf57d8cb2011-12-09 22:58:01 +00004972 return Error(E);
Richard Smith4ce706a2011-10-11 21:43:33 +00004973 }
Aaron Ballman68af21c2014-01-03 19:26:43 +00004974 bool VisitImplicitValueInitExpr(const ImplicitValueInitExpr *E) {
Richard Smithfddd3842011-12-30 21:15:51 +00004975 return DerivedZeroInitialization(E);
Richard Smith4ce706a2011-10-11 21:43:33 +00004976 }
Aaron Ballman68af21c2014-01-03 19:26:43 +00004977 bool VisitCXXScalarValueInitExpr(const CXXScalarValueInitExpr *E) {
Richard Smithfddd3842011-12-30 21:15:51 +00004978 return DerivedZeroInitialization(E);
Richard Smith4ce706a2011-10-11 21:43:33 +00004979 }
Aaron Ballman68af21c2014-01-03 19:26:43 +00004980 bool VisitCXXNullPtrLiteralExpr(const CXXNullPtrLiteralExpr *E) {
Richard Smithfddd3842011-12-30 21:15:51 +00004981 return DerivedZeroInitialization(E);
Richard Smith027bf112011-11-17 22:56:20 +00004982 }
Richard Smith4ce706a2011-10-11 21:43:33 +00004983
Richard Smithd62306a2011-11-10 06:34:14 +00004984 /// A member expression where the object is a prvalue is itself a prvalue.
Aaron Ballman68af21c2014-01-03 19:26:43 +00004985 bool VisitMemberExpr(const MemberExpr *E) {
Richard Smithd62306a2011-11-10 06:34:14 +00004986 assert(!E->isArrow() && "missing call to bound member function?");
4987
Richard Smith2e312c82012-03-03 22:46:17 +00004988 APValue Val;
Richard Smithd62306a2011-11-10 06:34:14 +00004989 if (!Evaluate(Val, Info, E->getBase()))
4990 return false;
4991
4992 QualType BaseTy = E->getBase()->getType();
4993
4994 const FieldDecl *FD = dyn_cast<FieldDecl>(E->getMemberDecl());
Richard Smithf57d8cb2011-12-09 22:58:01 +00004995 if (!FD) return Error(E);
Richard Smithd62306a2011-11-10 06:34:14 +00004996 assert(!FD->getType()->isReferenceType() && "prvalue reference?");
Ted Kremenek28831752012-08-23 20:46:57 +00004997 assert(BaseTy->castAs<RecordType>()->getDecl()->getCanonicalDecl() ==
Richard Smithd62306a2011-11-10 06:34:14 +00004998 FD->getParent()->getCanonicalDecl() && "record / field mismatch");
4999
Richard Smith9defb7d2018-02-21 03:38:30 +00005000 CompleteObject Obj(&Val, BaseTy, true);
Richard Smitha8105bc2012-01-06 16:39:00 +00005001 SubobjectDesignator Designator(BaseTy);
5002 Designator.addDeclUnchecked(FD);
Richard Smithd62306a2011-11-10 06:34:14 +00005003
Richard Smith3229b742013-05-05 21:17:10 +00005004 APValue Result;
5005 return extractSubobject(Info, E, Obj, Designator, Result) &&
5006 DerivedSuccess(Result, E);
Richard Smithd62306a2011-11-10 06:34:14 +00005007 }
5008
Aaron Ballman68af21c2014-01-03 19:26:43 +00005009 bool VisitCastExpr(const CastExpr *E) {
Richard Smith11562c52011-10-28 17:51:58 +00005010 switch (E->getCastKind()) {
5011 default:
5012 break;
5013
Richard Smitha23ab512013-05-23 00:30:41 +00005014 case CK_AtomicToNonAtomic: {
5015 APValue AtomicVal;
Richard Smith64cb9ca2017-02-22 22:09:50 +00005016 // This does not need to be done in place even for class/array types:
5017 // atomic-to-non-atomic conversion implies copying the object
5018 // representation.
5019 if (!Evaluate(AtomicVal, Info, E->getSubExpr()))
Richard Smitha23ab512013-05-23 00:30:41 +00005020 return false;
5021 return DerivedSuccess(AtomicVal, E);
5022 }
5023
Richard Smith11562c52011-10-28 17:51:58 +00005024 case CK_NoOp:
Richard Smith4ef685b2012-01-17 21:17:26 +00005025 case CK_UserDefinedConversion:
Richard Smith11562c52011-10-28 17:51:58 +00005026 return StmtVisitorTy::Visit(E->getSubExpr());
5027
5028 case CK_LValueToRValue: {
5029 LValue LVal;
Richard Smithf57d8cb2011-12-09 22:58:01 +00005030 if (!EvaluateLValue(E->getSubExpr(), LVal, Info))
5031 return false;
Richard Smith2e312c82012-03-03 22:46:17 +00005032 APValue RVal;
Richard Smithc82fae62012-02-05 01:23:16 +00005033 // Note, we use the subexpression's type in order to retain cv-qualifiers.
Richard Smith243ef902013-05-05 23:31:59 +00005034 if (!handleLValueToRValueConversion(Info, E, E->getSubExpr()->getType(),
Richard Smithc82fae62012-02-05 01:23:16 +00005035 LVal, RVal))
Richard Smithf57d8cb2011-12-09 22:58:01 +00005036 return false;
5037 return DerivedSuccess(RVal, E);
Richard Smith11562c52011-10-28 17:51:58 +00005038 }
5039 }
5040
Richard Smithf57d8cb2011-12-09 22:58:01 +00005041 return Error(E);
Richard Smith11562c52011-10-28 17:51:58 +00005042 }
5043
Aaron Ballman68af21c2014-01-03 19:26:43 +00005044 bool VisitUnaryPostInc(const UnaryOperator *UO) {
Richard Smith243ef902013-05-05 23:31:59 +00005045 return VisitUnaryPostIncDec(UO);
5046 }
Aaron Ballman68af21c2014-01-03 19:26:43 +00005047 bool VisitUnaryPostDec(const UnaryOperator *UO) {
Richard Smith243ef902013-05-05 23:31:59 +00005048 return VisitUnaryPostIncDec(UO);
5049 }
Aaron Ballman68af21c2014-01-03 19:26:43 +00005050 bool VisitUnaryPostIncDec(const UnaryOperator *UO) {
Aaron Ballmandd69ef32014-08-19 15:55:55 +00005051 if (!Info.getLangOpts().CPlusPlus14 && !Info.keepEvaluatingAfterFailure())
Richard Smith243ef902013-05-05 23:31:59 +00005052 return Error(UO);
5053
5054 LValue LVal;
5055 if (!EvaluateLValue(UO->getSubExpr(), LVal, Info))
5056 return false;
5057 APValue RVal;
5058 if (!handleIncDec(this->Info, UO, LVal, UO->getSubExpr()->getType(),
5059 UO->isIncrementOp(), &RVal))
5060 return false;
5061 return DerivedSuccess(RVal, UO);
5062 }
5063
Aaron Ballman68af21c2014-01-03 19:26:43 +00005064 bool VisitStmtExpr(const StmtExpr *E) {
Richard Smith51f03172013-06-20 03:00:05 +00005065 // We will have checked the full-expressions inside the statement expression
5066 // when they were completed, and don't need to check them again now.
Richard Smith6d4c6582013-11-05 22:18:15 +00005067 if (Info.checkingForOverflow())
Richard Smith51f03172013-06-20 03:00:05 +00005068 return Error(E);
5069
Richard Smith08d6a2c2013-07-24 07:11:57 +00005070 BlockScopeRAII Scope(Info);
Richard Smith51f03172013-06-20 03:00:05 +00005071 const CompoundStmt *CS = E->getSubStmt();
Jonathan Roelofs104cbf92015-06-01 16:23:08 +00005072 if (CS->body_empty())
5073 return true;
5074
Richard Smith51f03172013-06-20 03:00:05 +00005075 for (CompoundStmt::const_body_iterator BI = CS->body_begin(),
5076 BE = CS->body_end();
5077 /**/; ++BI) {
5078 if (BI + 1 == BE) {
5079 const Expr *FinalExpr = dyn_cast<Expr>(*BI);
5080 if (!FinalExpr) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +00005081 Info.FFDiag((*BI)->getBeginLoc(),
5082 diag::note_constexpr_stmt_expr_unsupported);
Richard Smith51f03172013-06-20 03:00:05 +00005083 return false;
5084 }
5085 return this->Visit(FinalExpr);
5086 }
5087
5088 APValue ReturnValue;
Richard Smith52a980a2015-08-28 02:43:42 +00005089 StmtResult Result = { ReturnValue, nullptr };
5090 EvalStmtResult ESR = EvaluateStmt(Result, Info, *BI);
Richard Smith51f03172013-06-20 03:00:05 +00005091 if (ESR != ESR_Succeeded) {
5092 // FIXME: If the statement-expression terminated due to 'return',
5093 // 'break', or 'continue', it would be nice to propagate that to
5094 // the outer statement evaluation rather than bailing out.
5095 if (ESR != ESR_Failed)
Stephen Kellyf2ceec42018-08-09 21:08:08 +00005096 Info.FFDiag((*BI)->getBeginLoc(),
5097 diag::note_constexpr_stmt_expr_unsupported);
Richard Smith51f03172013-06-20 03:00:05 +00005098 return false;
5099 }
5100 }
Jonathan Roelofs104cbf92015-06-01 16:23:08 +00005101
5102 llvm_unreachable("Return from function from the loop above.");
Richard Smith51f03172013-06-20 03:00:05 +00005103 }
5104
Richard Smith4a678122011-10-24 18:44:57 +00005105 /// Visit a value which is evaluated, but whose value is ignored.
5106 void VisitIgnoredValue(const Expr *E) {
Richard Smithd9f663b2013-04-22 15:31:51 +00005107 EvaluateIgnoredValue(Info, E);
Richard Smith4a678122011-10-24 18:44:57 +00005108 }
David Majnemere9807b22016-02-26 04:23:19 +00005109
5110 /// Potentially visit a MemberExpr's base expression.
5111 void VisitIgnoredBaseExpression(const Expr *E) {
5112 // While MSVC doesn't evaluate the base expression, it does diagnose the
5113 // presence of side-effecting behavior.
5114 if (Info.getLangOpts().MSVCCompat && !E->HasSideEffects(Info.Ctx))
5115 return;
5116 VisitIgnoredValue(E);
5117 }
Peter Collingbournee9200682011-05-13 03:29:01 +00005118};
5119
Eric Fiselier0683c0e2018-05-07 21:07:10 +00005120} // namespace
Peter Collingbournee9200682011-05-13 03:29:01 +00005121
5122//===----------------------------------------------------------------------===//
Richard Smith027bf112011-11-17 22:56:20 +00005123// Common base class for lvalue and temporary evaluation.
5124//===----------------------------------------------------------------------===//
5125namespace {
5126template<class Derived>
5127class LValueExprEvaluatorBase
Aaron Ballman68af21c2014-01-03 19:26:43 +00005128 : public ExprEvaluatorBase<Derived> {
Richard Smith027bf112011-11-17 22:56:20 +00005129protected:
5130 LValue &Result;
George Burgess IVf9013bf2017-02-10 22:52:29 +00005131 bool InvalidBaseOK;
Richard Smith027bf112011-11-17 22:56:20 +00005132 typedef LValueExprEvaluatorBase LValueExprEvaluatorBaseTy;
Aaron Ballman68af21c2014-01-03 19:26:43 +00005133 typedef ExprEvaluatorBase<Derived> ExprEvaluatorBaseTy;
Richard Smith027bf112011-11-17 22:56:20 +00005134
5135 bool Success(APValue::LValueBase B) {
5136 Result.set(B);
5137 return true;
5138 }
5139
George Burgess IVf9013bf2017-02-10 22:52:29 +00005140 bool evaluatePointer(const Expr *E, LValue &Result) {
5141 return EvaluatePointer(E, Result, this->Info, InvalidBaseOK);
5142 }
5143
Richard Smith027bf112011-11-17 22:56:20 +00005144public:
George Burgess IVf9013bf2017-02-10 22:52:29 +00005145 LValueExprEvaluatorBase(EvalInfo &Info, LValue &Result, bool InvalidBaseOK)
5146 : ExprEvaluatorBaseTy(Info), Result(Result),
5147 InvalidBaseOK(InvalidBaseOK) {}
Richard Smith027bf112011-11-17 22:56:20 +00005148
Richard Smith2e312c82012-03-03 22:46:17 +00005149 bool Success(const APValue &V, const Expr *E) {
5150 Result.setFrom(this->Info.Ctx, V);
Richard Smith027bf112011-11-17 22:56:20 +00005151 return true;
5152 }
Richard Smith027bf112011-11-17 22:56:20 +00005153
Richard Smith027bf112011-11-17 22:56:20 +00005154 bool VisitMemberExpr(const MemberExpr *E) {
5155 // Handle non-static data members.
5156 QualType BaseTy;
George Burgess IV3a03fab2015-09-04 21:28:13 +00005157 bool EvalOK;
Richard Smith027bf112011-11-17 22:56:20 +00005158 if (E->isArrow()) {
George Burgess IVf9013bf2017-02-10 22:52:29 +00005159 EvalOK = evaluatePointer(E->getBase(), Result);
Ted Kremenek28831752012-08-23 20:46:57 +00005160 BaseTy = E->getBase()->getType()->castAs<PointerType>()->getPointeeType();
Richard Smith357362d2011-12-13 06:39:58 +00005161 } else if (E->getBase()->isRValue()) {
Richard Smithd0b111c2011-12-19 22:01:37 +00005162 assert(E->getBase()->getType()->isRecordType());
George Burgess IV3a03fab2015-09-04 21:28:13 +00005163 EvalOK = EvaluateTemporary(E->getBase(), Result, this->Info);
Richard Smith357362d2011-12-13 06:39:58 +00005164 BaseTy = E->getBase()->getType();
Richard Smith027bf112011-11-17 22:56:20 +00005165 } else {
George Burgess IV3a03fab2015-09-04 21:28:13 +00005166 EvalOK = this->Visit(E->getBase());
Richard Smith027bf112011-11-17 22:56:20 +00005167 BaseTy = E->getBase()->getType();
5168 }
George Burgess IV3a03fab2015-09-04 21:28:13 +00005169 if (!EvalOK) {
George Burgess IVf9013bf2017-02-10 22:52:29 +00005170 if (!InvalidBaseOK)
George Burgess IV3a03fab2015-09-04 21:28:13 +00005171 return false;
George Burgess IVa51c4072015-10-16 01:49:01 +00005172 Result.setInvalid(E);
5173 return true;
George Burgess IV3a03fab2015-09-04 21:28:13 +00005174 }
Richard Smith027bf112011-11-17 22:56:20 +00005175
Richard Smith1b78b3d2012-01-25 22:15:11 +00005176 const ValueDecl *MD = E->getMemberDecl();
5177 if (const FieldDecl *FD = dyn_cast<FieldDecl>(E->getMemberDecl())) {
5178 assert(BaseTy->getAs<RecordType>()->getDecl()->getCanonicalDecl() ==
5179 FD->getParent()->getCanonicalDecl() && "record / field mismatch");
5180 (void)BaseTy;
John McCalld7bca762012-05-01 00:38:49 +00005181 if (!HandleLValueMember(this->Info, E, Result, FD))
5182 return false;
Richard Smith1b78b3d2012-01-25 22:15:11 +00005183 } else if (const IndirectFieldDecl *IFD = dyn_cast<IndirectFieldDecl>(MD)) {
John McCalld7bca762012-05-01 00:38:49 +00005184 if (!HandleLValueIndirectMember(this->Info, E, Result, IFD))
5185 return false;
Richard Smith1b78b3d2012-01-25 22:15:11 +00005186 } else
5187 return this->Error(E);
Richard Smith027bf112011-11-17 22:56:20 +00005188
Richard Smith1b78b3d2012-01-25 22:15:11 +00005189 if (MD->getType()->isReferenceType()) {
Richard Smith2e312c82012-03-03 22:46:17 +00005190 APValue RefValue;
Richard Smith243ef902013-05-05 23:31:59 +00005191 if (!handleLValueToRValueConversion(this->Info, E, MD->getType(), Result,
Richard Smith027bf112011-11-17 22:56:20 +00005192 RefValue))
5193 return false;
5194 return Success(RefValue, E);
5195 }
5196 return true;
5197 }
5198
5199 bool VisitBinaryOperator(const BinaryOperator *E) {
5200 switch (E->getOpcode()) {
5201 default:
5202 return ExprEvaluatorBaseTy::VisitBinaryOperator(E);
5203
5204 case BO_PtrMemD:
5205 case BO_PtrMemI:
5206 return HandleMemberPointerAccess(this->Info, E, Result);
5207 }
5208 }
5209
5210 bool VisitCastExpr(const CastExpr *E) {
5211 switch (E->getCastKind()) {
5212 default:
5213 return ExprEvaluatorBaseTy::VisitCastExpr(E);
5214
5215 case CK_DerivedToBase:
Richard Smith84401042013-06-03 05:03:02 +00005216 case CK_UncheckedDerivedToBase:
Richard Smith027bf112011-11-17 22:56:20 +00005217 if (!this->Visit(E->getSubExpr()))
5218 return false;
Richard Smith027bf112011-11-17 22:56:20 +00005219
5220 // Now figure out the necessary offset to add to the base LV to get from
5221 // the derived class to the base class.
Richard Smith84401042013-06-03 05:03:02 +00005222 return HandleLValueBasePath(this->Info, E, E->getSubExpr()->getType(),
5223 Result);
Richard Smith027bf112011-11-17 22:56:20 +00005224 }
5225 }
5226};
Alexander Kornienkoab9db512015-06-22 23:07:51 +00005227}
Richard Smith027bf112011-11-17 22:56:20 +00005228
5229//===----------------------------------------------------------------------===//
Eli Friedman9a156e52008-11-12 09:44:48 +00005230// LValue Evaluation
Richard Smith11562c52011-10-28 17:51:58 +00005231//
5232// This is used for evaluating lvalues (in C and C++), xvalues (in C++11),
5233// function designators (in C), decl references to void objects (in C), and
5234// temporaries (if building with -Wno-address-of-temporary).
5235//
5236// LValue evaluation produces values comprising a base expression of one of the
5237// following types:
Richard Smithce40ad62011-11-12 22:28:03 +00005238// - Declarations
5239// * VarDecl
5240// * FunctionDecl
5241// - Literals
Richard Smithb3189a12016-12-05 07:49:14 +00005242// * CompoundLiteralExpr in C (and in global scope in C++)
Richard Smith11562c52011-10-28 17:51:58 +00005243// * StringLiteral
Richard Smith6e525142011-12-27 12:18:28 +00005244// * CXXTypeidExpr
Richard Smith11562c52011-10-28 17:51:58 +00005245// * PredefinedExpr
Richard Smithd62306a2011-11-10 06:34:14 +00005246// * ObjCStringLiteralExpr
Richard Smith11562c52011-10-28 17:51:58 +00005247// * ObjCEncodeExpr
5248// * AddrLabelExpr
5249// * BlockExpr
5250// * CallExpr for a MakeStringConstant builtin
Richard Smithce40ad62011-11-12 22:28:03 +00005251// - Locals and temporaries
Richard Smith84401042013-06-03 05:03:02 +00005252// * MaterializeTemporaryExpr
Richard Smithb228a862012-02-15 02:18:13 +00005253// * Any Expr, with a CallIndex indicating the function in which the temporary
Richard Smith84401042013-06-03 05:03:02 +00005254// was evaluated, for cases where the MaterializeTemporaryExpr is missing
5255// from the AST (FIXME).
Richard Smithe6c01442013-06-05 00:46:14 +00005256// * A MaterializeTemporaryExpr that has static storage duration, with no
5257// CallIndex, for a lifetime-extended temporary.
Richard Smithce40ad62011-11-12 22:28:03 +00005258// plus an offset in bytes.
Eli Friedman9a156e52008-11-12 09:44:48 +00005259//===----------------------------------------------------------------------===//
5260namespace {
Benjamin Kramer26222b62009-11-28 19:03:38 +00005261class LValueExprEvaluator
Richard Smith027bf112011-11-17 22:56:20 +00005262 : public LValueExprEvaluatorBase<LValueExprEvaluator> {
Eli Friedman9a156e52008-11-12 09:44:48 +00005263public:
George Burgess IVf9013bf2017-02-10 22:52:29 +00005264 LValueExprEvaluator(EvalInfo &Info, LValue &Result, bool InvalidBaseOK) :
5265 LValueExprEvaluatorBaseTy(Info, Result, InvalidBaseOK) {}
Mike Stump11289f42009-09-09 15:08:12 +00005266
Richard Smith11562c52011-10-28 17:51:58 +00005267 bool VisitVarDecl(const Expr *E, const VarDecl *VD);
Richard Smith243ef902013-05-05 23:31:59 +00005268 bool VisitUnaryPreIncDec(const UnaryOperator *UO);
Richard Smith11562c52011-10-28 17:51:58 +00005269
Peter Collingbournee9200682011-05-13 03:29:01 +00005270 bool VisitDeclRefExpr(const DeclRefExpr *E);
5271 bool VisitPredefinedExpr(const PredefinedExpr *E) { return Success(E); }
Richard Smith4e4c78ff2011-10-31 05:52:43 +00005272 bool VisitMaterializeTemporaryExpr(const MaterializeTemporaryExpr *E);
Peter Collingbournee9200682011-05-13 03:29:01 +00005273 bool VisitCompoundLiteralExpr(const CompoundLiteralExpr *E);
5274 bool VisitMemberExpr(const MemberExpr *E);
5275 bool VisitStringLiteral(const StringLiteral *E) { return Success(E); }
5276 bool VisitObjCEncodeExpr(const ObjCEncodeExpr *E) { return Success(E); }
Richard Smith6e525142011-12-27 12:18:28 +00005277 bool VisitCXXTypeidExpr(const CXXTypeidExpr *E);
Francois Pichet0066db92012-04-16 04:08:35 +00005278 bool VisitCXXUuidofExpr(const CXXUuidofExpr *E);
Peter Collingbournee9200682011-05-13 03:29:01 +00005279 bool VisitArraySubscriptExpr(const ArraySubscriptExpr *E);
5280 bool VisitUnaryDeref(const UnaryOperator *E);
Richard Smith66c96992012-02-18 22:04:06 +00005281 bool VisitUnaryReal(const UnaryOperator *E);
5282 bool VisitUnaryImag(const UnaryOperator *E);
Richard Smith243ef902013-05-05 23:31:59 +00005283 bool VisitUnaryPreInc(const UnaryOperator *UO) {
5284 return VisitUnaryPreIncDec(UO);
5285 }
5286 bool VisitUnaryPreDec(const UnaryOperator *UO) {
5287 return VisitUnaryPreIncDec(UO);
5288 }
Richard Smith3229b742013-05-05 21:17:10 +00005289 bool VisitBinAssign(const BinaryOperator *BO);
5290 bool VisitCompoundAssignOperator(const CompoundAssignOperator *CAO);
Anders Carlssonde55f642009-10-03 16:30:22 +00005291
Peter Collingbournee9200682011-05-13 03:29:01 +00005292 bool VisitCastExpr(const CastExpr *E) {
Anders Carlssonde55f642009-10-03 16:30:22 +00005293 switch (E->getCastKind()) {
5294 default:
Richard Smith027bf112011-11-17 22:56:20 +00005295 return LValueExprEvaluatorBaseTy::VisitCastExpr(E);
Anders Carlssonde55f642009-10-03 16:30:22 +00005296
Eli Friedmance3e02a2011-10-11 00:13:24 +00005297 case CK_LValueBitCast:
Richard Smith6d6ecc32011-12-12 12:46:16 +00005298 this->CCEDiag(E, diag::note_constexpr_invalid_cast) << 2;
Richard Smith96e0c102011-11-04 02:25:55 +00005299 if (!Visit(E->getSubExpr()))
5300 return false;
5301 Result.Designator.setInvalid();
5302 return true;
Eli Friedmance3e02a2011-10-11 00:13:24 +00005303
Richard Smith027bf112011-11-17 22:56:20 +00005304 case CK_BaseToDerived:
Richard Smithd62306a2011-11-10 06:34:14 +00005305 if (!Visit(E->getSubExpr()))
5306 return false;
Richard Smith027bf112011-11-17 22:56:20 +00005307 return HandleBaseToDerivedCast(Info, E, Result);
Anders Carlssonde55f642009-10-03 16:30:22 +00005308 }
5309 }
Eli Friedman9a156e52008-11-12 09:44:48 +00005310};
5311} // end anonymous namespace
5312
Richard Smith11562c52011-10-28 17:51:58 +00005313/// Evaluate an expression as an lvalue. This can be legitimately called on
Nico Weber96775622015-09-15 23:17:17 +00005314/// expressions which are not glvalues, in three cases:
Richard Smith9f8400e2013-05-01 19:00:39 +00005315/// * function designators in C, and
5316/// * "extern void" objects
Nico Weber96775622015-09-15 23:17:17 +00005317/// * @selector() expressions in Objective-C
George Burgess IVf9013bf2017-02-10 22:52:29 +00005318static bool EvaluateLValue(const Expr *E, LValue &Result, EvalInfo &Info,
5319 bool InvalidBaseOK) {
Richard Smith9f8400e2013-05-01 19:00:39 +00005320 assert(E->isGLValue() || E->getType()->isFunctionType() ||
Nico Weber96775622015-09-15 23:17:17 +00005321 E->getType()->isVoidType() || isa<ObjCSelectorExpr>(E));
George Burgess IVf9013bf2017-02-10 22:52:29 +00005322 return LValueExprEvaluator(Info, Result, InvalidBaseOK).Visit(E);
Eli Friedman9a156e52008-11-12 09:44:48 +00005323}
5324
Peter Collingbournee9200682011-05-13 03:29:01 +00005325bool LValueExprEvaluator::VisitDeclRefExpr(const DeclRefExpr *E) {
David Majnemer0c43d802014-06-25 08:15:07 +00005326 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(E->getDecl()))
Richard Smithce40ad62011-11-12 22:28:03 +00005327 return Success(FD);
5328 if (const VarDecl *VD = dyn_cast<VarDecl>(E->getDecl()))
Richard Smith11562c52011-10-28 17:51:58 +00005329 return VisitVarDecl(E, VD);
Richard Smithdca60b42016-08-12 00:39:32 +00005330 if (const BindingDecl *BD = dyn_cast<BindingDecl>(E->getDecl()))
Richard Smith97fcf4b2016-08-14 23:15:52 +00005331 return Visit(BD->getBinding());
Richard Smith11562c52011-10-28 17:51:58 +00005332 return Error(E);
5333}
Richard Smith733237d2011-10-24 23:14:33 +00005334
Faisal Vali0528a312016-11-13 06:09:16 +00005335
Richard Smith11562c52011-10-28 17:51:58 +00005336bool LValueExprEvaluator::VisitVarDecl(const Expr *E, const VarDecl *VD) {
Faisal Vali051e3a22017-02-16 04:12:21 +00005337
5338 // If we are within a lambda's call operator, check whether the 'VD' referred
5339 // to within 'E' actually represents a lambda-capture that maps to a
5340 // data-member/field within the closure object, and if so, evaluate to the
5341 // field or what the field refers to.
Erik Pilkington11232912018-04-05 00:12:05 +00005342 if (Info.CurrentCall && isLambdaCallOperator(Info.CurrentCall->Callee) &&
5343 isa<DeclRefExpr>(E) &&
5344 cast<DeclRefExpr>(E)->refersToEnclosingVariableOrCapture()) {
5345 // We don't always have a complete capture-map when checking or inferring if
5346 // the function call operator meets the requirements of a constexpr function
5347 // - but we don't need to evaluate the captures to determine constexprness
5348 // (dcl.constexpr C++17).
5349 if (Info.checkingPotentialConstantExpression())
5350 return false;
5351
Faisal Vali051e3a22017-02-16 04:12:21 +00005352 if (auto *FD = Info.CurrentCall->LambdaCaptureFields.lookup(VD)) {
Faisal Vali051e3a22017-02-16 04:12:21 +00005353 // Start with 'Result' referring to the complete closure object...
5354 Result = *Info.CurrentCall->This;
5355 // ... then update it to refer to the field of the closure object
5356 // that represents the capture.
5357 if (!HandleLValueMember(Info, E, Result, FD))
5358 return false;
5359 // And if the field is of reference type, update 'Result' to refer to what
5360 // the field refers to.
5361 if (FD->getType()->isReferenceType()) {
5362 APValue RVal;
5363 if (!handleLValueToRValueConversion(Info, E, FD->getType(), Result,
5364 RVal))
5365 return false;
5366 Result.setFrom(Info.Ctx, RVal);
5367 }
5368 return true;
5369 }
5370 }
Craig Topper36250ad2014-05-12 05:36:57 +00005371 CallStackFrame *Frame = nullptr;
Faisal Vali0528a312016-11-13 06:09:16 +00005372 if (VD->hasLocalStorage() && Info.CurrentCall->Index > 1) {
5373 // Only if a local variable was declared in the function currently being
5374 // evaluated, do we expect to be able to find its value in the current
5375 // frame. (Otherwise it was likely declared in an enclosing context and
5376 // could either have a valid evaluatable value (for e.g. a constexpr
5377 // variable) or be ill-formed (and trigger an appropriate evaluation
5378 // diagnostic)).
5379 if (Info.CurrentCall->Callee &&
5380 Info.CurrentCall->Callee->Equals(VD->getDeclContext())) {
5381 Frame = Info.CurrentCall;
5382 }
5383 }
Richard Smith3229b742013-05-05 21:17:10 +00005384
Richard Smithfec09922011-11-01 16:57:24 +00005385 if (!VD->getType()->isReferenceType()) {
Richard Smith3229b742013-05-05 21:17:10 +00005386 if (Frame) {
Akira Hatanaka4e2698c2018-04-10 05:15:01 +00005387 Result.set({VD, Frame->Index,
5388 Info.CurrentCall->getCurrentTemporaryVersion(VD)});
Richard Smithfec09922011-11-01 16:57:24 +00005389 return true;
5390 }
Richard Smithce40ad62011-11-12 22:28:03 +00005391 return Success(VD);
Richard Smithfec09922011-11-01 16:57:24 +00005392 }
Eli Friedman751aa72b72009-05-27 06:04:58 +00005393
Richard Smith3229b742013-05-05 21:17:10 +00005394 APValue *V;
Akira Hatanaka4e2698c2018-04-10 05:15:01 +00005395 if (!evaluateVarDeclInit(Info, E, VD, Frame, V, nullptr))
Richard Smithf57d8cb2011-12-09 22:58:01 +00005396 return false;
Richard Smith08d6a2c2013-07-24 07:11:57 +00005397 if (V->isUninit()) {
Richard Smith6d4c6582013-11-05 22:18:15 +00005398 if (!Info.checkingPotentialConstantExpression())
Faisal Valie690b7a2016-07-02 22:34:24 +00005399 Info.FFDiag(E, diag::note_constexpr_use_uninit_reference);
Richard Smith08d6a2c2013-07-24 07:11:57 +00005400 return false;
5401 }
Richard Smith3229b742013-05-05 21:17:10 +00005402 return Success(*V, E);
Anders Carlssona42ee442008-11-24 04:41:22 +00005403}
5404
Richard Smith4e4c78ff2011-10-31 05:52:43 +00005405bool LValueExprEvaluator::VisitMaterializeTemporaryExpr(
5406 const MaterializeTemporaryExpr *E) {
Richard Smith84401042013-06-03 05:03:02 +00005407 // Walk through the expression to find the materialized temporary itself.
5408 SmallVector<const Expr *, 2> CommaLHSs;
5409 SmallVector<SubobjectAdjustment, 2> Adjustments;
5410 const Expr *Inner = E->GetTemporaryExpr()->
5411 skipRValueSubobjectAdjustments(CommaLHSs, Adjustments);
Richard Smith027bf112011-11-17 22:56:20 +00005412
Richard Smith84401042013-06-03 05:03:02 +00005413 // If we passed any comma operators, evaluate their LHSs.
5414 for (unsigned I = 0, N = CommaLHSs.size(); I != N; ++I)
5415 if (!EvaluateIgnoredValue(Info, CommaLHSs[I]))
5416 return false;
5417
Richard Smithe6c01442013-06-05 00:46:14 +00005418 // A materialized temporary with static storage duration can appear within the
5419 // result of a constant expression evaluation, so we need to preserve its
5420 // value for use outside this evaluation.
5421 APValue *Value;
5422 if (E->getStorageDuration() == SD_Static) {
5423 Value = Info.Ctx.getMaterializedTemporaryValue(E, true);
Richard Smitha509f2f2013-06-14 03:07:01 +00005424 *Value = APValue();
Richard Smithe6c01442013-06-05 00:46:14 +00005425 Result.set(E);
5426 } else {
Akira Hatanaka4e2698c2018-04-10 05:15:01 +00005427 Value = &createTemporary(E, E->getStorageDuration() == SD_Automatic, Result,
5428 *Info.CurrentCall);
Richard Smithe6c01442013-06-05 00:46:14 +00005429 }
5430
Richard Smithea4ad5d2013-06-06 08:19:16 +00005431 QualType Type = Inner->getType();
5432
Richard Smith84401042013-06-03 05:03:02 +00005433 // Materialize the temporary itself.
Richard Smithea4ad5d2013-06-06 08:19:16 +00005434 if (!EvaluateInPlace(*Value, Info, Result, Inner) ||
5435 (E->getStorageDuration() == SD_Static &&
5436 !CheckConstantExpression(Info, E->getExprLoc(), Type, *Value))) {
5437 *Value = APValue();
Richard Smith84401042013-06-03 05:03:02 +00005438 return false;
Richard Smithea4ad5d2013-06-06 08:19:16 +00005439 }
Richard Smith84401042013-06-03 05:03:02 +00005440
5441 // Adjust our lvalue to refer to the desired subobject.
Richard Smith84401042013-06-03 05:03:02 +00005442 for (unsigned I = Adjustments.size(); I != 0; /**/) {
5443 --I;
5444 switch (Adjustments[I].Kind) {
5445 case SubobjectAdjustment::DerivedToBaseAdjustment:
5446 if (!HandleLValueBasePath(Info, Adjustments[I].DerivedToBase.BasePath,
5447 Type, Result))
5448 return false;
5449 Type = Adjustments[I].DerivedToBase.BasePath->getType();
5450 break;
5451
5452 case SubobjectAdjustment::FieldAdjustment:
5453 if (!HandleLValueMember(Info, E, Result, Adjustments[I].Field))
5454 return false;
5455 Type = Adjustments[I].Field->getType();
5456 break;
5457
5458 case SubobjectAdjustment::MemberPointerAdjustment:
5459 if (!HandleMemberPointerAccess(this->Info, Type, Result,
5460 Adjustments[I].Ptr.RHS))
5461 return false;
5462 Type = Adjustments[I].Ptr.MPT->getPointeeType();
5463 break;
5464 }
5465 }
5466
5467 return true;
Richard Smith4e4c78ff2011-10-31 05:52:43 +00005468}
5469
Peter Collingbournee9200682011-05-13 03:29:01 +00005470bool
5471LValueExprEvaluator::VisitCompoundLiteralExpr(const CompoundLiteralExpr *E) {
Richard Smithb3189a12016-12-05 07:49:14 +00005472 assert((!Info.getLangOpts().CPlusPlus || E->isFileScope()) &&
5473 "lvalue compound literal in c++?");
Richard Smith11562c52011-10-28 17:51:58 +00005474 // Defer visiting the literal until the lvalue-to-rvalue conversion. We can
5475 // only see this when folding in C, so there's no standard to follow here.
John McCall45d55e42010-05-07 21:00:08 +00005476 return Success(E);
Eli Friedman9a156e52008-11-12 09:44:48 +00005477}
5478
Richard Smith6e525142011-12-27 12:18:28 +00005479bool LValueExprEvaluator::VisitCXXTypeidExpr(const CXXTypeidExpr *E) {
Richard Smith6f3d4352012-10-17 23:52:07 +00005480 if (!E->isPotentiallyEvaluated())
Richard Smith6e525142011-12-27 12:18:28 +00005481 return Success(E);
Richard Smith6f3d4352012-10-17 23:52:07 +00005482
Faisal Valie690b7a2016-07-02 22:34:24 +00005483 Info.FFDiag(E, diag::note_constexpr_typeid_polymorphic)
Richard Smith6f3d4352012-10-17 23:52:07 +00005484 << E->getExprOperand()->getType()
5485 << E->getExprOperand()->getSourceRange();
5486 return false;
Richard Smith6e525142011-12-27 12:18:28 +00005487}
5488
Francois Pichet0066db92012-04-16 04:08:35 +00005489bool LValueExprEvaluator::VisitCXXUuidofExpr(const CXXUuidofExpr *E) {
5490 return Success(E);
Richard Smith3229b742013-05-05 21:17:10 +00005491}
Francois Pichet0066db92012-04-16 04:08:35 +00005492
Peter Collingbournee9200682011-05-13 03:29:01 +00005493bool LValueExprEvaluator::VisitMemberExpr(const MemberExpr *E) {
Richard Smith11562c52011-10-28 17:51:58 +00005494 // Handle static data members.
5495 if (const VarDecl *VD = dyn_cast<VarDecl>(E->getMemberDecl())) {
David Majnemere9807b22016-02-26 04:23:19 +00005496 VisitIgnoredBaseExpression(E->getBase());
Richard Smith11562c52011-10-28 17:51:58 +00005497 return VisitVarDecl(E, VD);
5498 }
5499
Richard Smith254a73d2011-10-28 22:34:42 +00005500 // Handle static member functions.
5501 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(E->getMemberDecl())) {
5502 if (MD->isStatic()) {
David Majnemere9807b22016-02-26 04:23:19 +00005503 VisitIgnoredBaseExpression(E->getBase());
Richard Smithce40ad62011-11-12 22:28:03 +00005504 return Success(MD);
Richard Smith254a73d2011-10-28 22:34:42 +00005505 }
5506 }
5507
Richard Smithd62306a2011-11-10 06:34:14 +00005508 // Handle non-static data members.
Richard Smith027bf112011-11-17 22:56:20 +00005509 return LValueExprEvaluatorBaseTy::VisitMemberExpr(E);
Eli Friedman9a156e52008-11-12 09:44:48 +00005510}
5511
Peter Collingbournee9200682011-05-13 03:29:01 +00005512bool LValueExprEvaluator::VisitArraySubscriptExpr(const ArraySubscriptExpr *E) {
Richard Smith11562c52011-10-28 17:51:58 +00005513 // FIXME: Deal with vectors as array subscript bases.
5514 if (E->getBase()->getType()->isVectorType())
Richard Smithf57d8cb2011-12-09 22:58:01 +00005515 return Error(E);
Richard Smith11562c52011-10-28 17:51:58 +00005516
Nick Lewyckyad888682017-04-27 07:27:36 +00005517 bool Success = true;
5518 if (!evaluatePointer(E->getBase(), Result)) {
5519 if (!Info.noteFailure())
5520 return false;
5521 Success = false;
5522 }
Mike Stump11289f42009-09-09 15:08:12 +00005523
Anders Carlsson9f9e4242008-11-16 19:01:22 +00005524 APSInt Index;
5525 if (!EvaluateInteger(E->getIdx(), Index, Info))
John McCall45d55e42010-05-07 21:00:08 +00005526 return false;
Anders Carlsson9f9e4242008-11-16 19:01:22 +00005527
Nick Lewyckyad888682017-04-27 07:27:36 +00005528 return Success &&
5529 HandleLValueArrayAdjustment(Info, E, Result, E->getType(), Index);
Anders Carlsson9f9e4242008-11-16 19:01:22 +00005530}
Eli Friedman9a156e52008-11-12 09:44:48 +00005531
Peter Collingbournee9200682011-05-13 03:29:01 +00005532bool LValueExprEvaluator::VisitUnaryDeref(const UnaryOperator *E) {
George Burgess IVf9013bf2017-02-10 22:52:29 +00005533 return evaluatePointer(E->getSubExpr(), Result);
Eli Friedman0b8337c2009-02-20 01:57:15 +00005534}
5535
Richard Smith66c96992012-02-18 22:04:06 +00005536bool LValueExprEvaluator::VisitUnaryReal(const UnaryOperator *E) {
5537 if (!Visit(E->getSubExpr()))
5538 return false;
5539 // __real is a no-op on scalar lvalues.
5540 if (E->getSubExpr()->getType()->isAnyComplexType())
5541 HandleLValueComplexElement(Info, E, Result, E->getType(), false);
5542 return true;
5543}
5544
5545bool LValueExprEvaluator::VisitUnaryImag(const UnaryOperator *E) {
5546 assert(E->getSubExpr()->getType()->isAnyComplexType() &&
5547 "lvalue __imag__ on scalar?");
5548 if (!Visit(E->getSubExpr()))
5549 return false;
5550 HandleLValueComplexElement(Info, E, Result, E->getType(), true);
5551 return true;
5552}
5553
Richard Smith243ef902013-05-05 23:31:59 +00005554bool LValueExprEvaluator::VisitUnaryPreIncDec(const UnaryOperator *UO) {
Aaron Ballmandd69ef32014-08-19 15:55:55 +00005555 if (!Info.getLangOpts().CPlusPlus14 && !Info.keepEvaluatingAfterFailure())
Richard Smith3229b742013-05-05 21:17:10 +00005556 return Error(UO);
5557
5558 if (!this->Visit(UO->getSubExpr()))
5559 return false;
5560
Richard Smith243ef902013-05-05 23:31:59 +00005561 return handleIncDec(
5562 this->Info, UO, Result, UO->getSubExpr()->getType(),
Craig Topper36250ad2014-05-12 05:36:57 +00005563 UO->isIncrementOp(), nullptr);
Richard Smith3229b742013-05-05 21:17:10 +00005564}
5565
5566bool LValueExprEvaluator::VisitCompoundAssignOperator(
5567 const CompoundAssignOperator *CAO) {
Aaron Ballmandd69ef32014-08-19 15:55:55 +00005568 if (!Info.getLangOpts().CPlusPlus14 && !Info.keepEvaluatingAfterFailure())
Richard Smith3229b742013-05-05 21:17:10 +00005569 return Error(CAO);
5570
Richard Smith3229b742013-05-05 21:17:10 +00005571 APValue RHS;
Richard Smith243ef902013-05-05 23:31:59 +00005572
5573 // The overall lvalue result is the result of evaluating the LHS.
5574 if (!this->Visit(CAO->getLHS())) {
George Burgess IVa145e252016-05-25 22:38:36 +00005575 if (Info.noteFailure())
Richard Smith243ef902013-05-05 23:31:59 +00005576 Evaluate(RHS, this->Info, CAO->getRHS());
5577 return false;
5578 }
5579
Richard Smith3229b742013-05-05 21:17:10 +00005580 if (!Evaluate(RHS, this->Info, CAO->getRHS()))
5581 return false;
5582
Richard Smith43e77732013-05-07 04:50:00 +00005583 return handleCompoundAssignment(
5584 this->Info, CAO,
5585 Result, CAO->getLHS()->getType(), CAO->getComputationLHSType(),
5586 CAO->getOpForCompoundAssignment(CAO->getOpcode()), RHS);
Richard Smith3229b742013-05-05 21:17:10 +00005587}
5588
5589bool LValueExprEvaluator::VisitBinAssign(const BinaryOperator *E) {
Aaron Ballmandd69ef32014-08-19 15:55:55 +00005590 if (!Info.getLangOpts().CPlusPlus14 && !Info.keepEvaluatingAfterFailure())
Richard Smith243ef902013-05-05 23:31:59 +00005591 return Error(E);
5592
Richard Smith3229b742013-05-05 21:17:10 +00005593 APValue NewVal;
Richard Smith243ef902013-05-05 23:31:59 +00005594
5595 if (!this->Visit(E->getLHS())) {
George Burgess IVa145e252016-05-25 22:38:36 +00005596 if (Info.noteFailure())
Richard Smith243ef902013-05-05 23:31:59 +00005597 Evaluate(NewVal, this->Info, E->getRHS());
5598 return false;
5599 }
5600
Richard Smith3229b742013-05-05 21:17:10 +00005601 if (!Evaluate(NewVal, this->Info, E->getRHS()))
5602 return false;
Richard Smith243ef902013-05-05 23:31:59 +00005603
5604 return handleAssignment(this->Info, E, Result, E->getLHS()->getType(),
Richard Smith3229b742013-05-05 21:17:10 +00005605 NewVal);
5606}
5607
Eli Friedman9a156e52008-11-12 09:44:48 +00005608//===----------------------------------------------------------------------===//
Chris Lattner05706e882008-07-11 18:11:29 +00005609// Pointer Evaluation
5610//===----------------------------------------------------------------------===//
5611
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00005612/// Attempts to compute the number of bytes available at the pointer
George Burgess IVe3763372016-12-22 02:50:20 +00005613/// returned by a function with the alloc_size attribute. Returns true if we
5614/// were successful. Places an unsigned number into `Result`.
5615///
5616/// This expects the given CallExpr to be a call to a function with an
5617/// alloc_size attribute.
5618static bool getBytesReturnedByAllocSizeCall(const ASTContext &Ctx,
5619 const CallExpr *Call,
5620 llvm::APInt &Result) {
5621 const AllocSizeAttr *AllocSize = getAllocSizeAttr(Call);
5622
Joel E. Denny81508102018-03-13 14:51:22 +00005623 assert(AllocSize && AllocSize->getElemSizeParam().isValid());
5624 unsigned SizeArgNo = AllocSize->getElemSizeParam().getASTIndex();
George Burgess IVe3763372016-12-22 02:50:20 +00005625 unsigned BitsInSizeT = Ctx.getTypeSize(Ctx.getSizeType());
5626 if (Call->getNumArgs() <= SizeArgNo)
5627 return false;
5628
5629 auto EvaluateAsSizeT = [&](const Expr *E, APSInt &Into) {
5630 if (!E->EvaluateAsInt(Into, Ctx, Expr::SE_AllowSideEffects))
5631 return false;
5632 if (Into.isNegative() || !Into.isIntN(BitsInSizeT))
5633 return false;
5634 Into = Into.zextOrSelf(BitsInSizeT);
5635 return true;
5636 };
5637
5638 APSInt SizeOfElem;
5639 if (!EvaluateAsSizeT(Call->getArg(SizeArgNo), SizeOfElem))
5640 return false;
5641
Joel E. Denny81508102018-03-13 14:51:22 +00005642 if (!AllocSize->getNumElemsParam().isValid()) {
George Burgess IVe3763372016-12-22 02:50:20 +00005643 Result = std::move(SizeOfElem);
5644 return true;
5645 }
5646
5647 APSInt NumberOfElems;
Joel E. Denny81508102018-03-13 14:51:22 +00005648 unsigned NumArgNo = AllocSize->getNumElemsParam().getASTIndex();
George Burgess IVe3763372016-12-22 02:50:20 +00005649 if (!EvaluateAsSizeT(Call->getArg(NumArgNo), NumberOfElems))
5650 return false;
5651
5652 bool Overflow;
5653 llvm::APInt BytesAvailable = SizeOfElem.umul_ov(NumberOfElems, Overflow);
5654 if (Overflow)
5655 return false;
5656
5657 Result = std::move(BytesAvailable);
5658 return true;
5659}
5660
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00005661/// Convenience function. LVal's base must be a call to an alloc_size
George Burgess IVe3763372016-12-22 02:50:20 +00005662/// function.
5663static bool getBytesReturnedByAllocSizeCall(const ASTContext &Ctx,
5664 const LValue &LVal,
5665 llvm::APInt &Result) {
5666 assert(isBaseAnAllocSizeCall(LVal.getLValueBase()) &&
5667 "Can't get the size of a non alloc_size function");
5668 const auto *Base = LVal.getLValueBase().get<const Expr *>();
5669 const CallExpr *CE = tryUnwrapAllocSizeCall(Base);
5670 return getBytesReturnedByAllocSizeCall(Ctx, CE, Result);
5671}
5672
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00005673/// Attempts to evaluate the given LValueBase as the result of a call to
George Burgess IVe3763372016-12-22 02:50:20 +00005674/// a function with the alloc_size attribute. If it was possible to do so, this
5675/// function will return true, make Result's Base point to said function call,
5676/// and mark Result's Base as invalid.
5677static bool evaluateLValueAsAllocSize(EvalInfo &Info, APValue::LValueBase Base,
5678 LValue &Result) {
George Burgess IVf9013bf2017-02-10 22:52:29 +00005679 if (Base.isNull())
George Burgess IVe3763372016-12-22 02:50:20 +00005680 return false;
5681
5682 // Because we do no form of static analysis, we only support const variables.
5683 //
5684 // Additionally, we can't support parameters, nor can we support static
5685 // variables (in the latter case, use-before-assign isn't UB; in the former,
5686 // we have no clue what they'll be assigned to).
5687 const auto *VD =
5688 dyn_cast_or_null<VarDecl>(Base.dyn_cast<const ValueDecl *>());
5689 if (!VD || !VD->isLocalVarDecl() || !VD->getType().isConstQualified())
5690 return false;
5691
5692 const Expr *Init = VD->getAnyInitializer();
5693 if (!Init)
5694 return false;
5695
5696 const Expr *E = Init->IgnoreParens();
5697 if (!tryUnwrapAllocSizeCall(E))
5698 return false;
5699
5700 // Store E instead of E unwrapped so that the type of the LValue's base is
5701 // what the user wanted.
5702 Result.setInvalid(E);
5703
5704 QualType Pointee = E->getType()->castAs<PointerType>()->getPointeeType();
Richard Smith6f4f0f12017-10-20 22:56:25 +00005705 Result.addUnsizedArray(Info, E, Pointee);
George Burgess IVe3763372016-12-22 02:50:20 +00005706 return true;
5707}
5708
Anders Carlsson0a1707c2008-07-08 05:13:58 +00005709namespace {
Benjamin Kramer26222b62009-11-28 19:03:38 +00005710class PointerExprEvaluator
Aaron Ballman68af21c2014-01-03 19:26:43 +00005711 : public ExprEvaluatorBase<PointerExprEvaluator> {
John McCall45d55e42010-05-07 21:00:08 +00005712 LValue &Result;
George Burgess IVf9013bf2017-02-10 22:52:29 +00005713 bool InvalidBaseOK;
John McCall45d55e42010-05-07 21:00:08 +00005714
Peter Collingbournee9200682011-05-13 03:29:01 +00005715 bool Success(const Expr *E) {
Richard Smithce40ad62011-11-12 22:28:03 +00005716 Result.set(E);
John McCall45d55e42010-05-07 21:00:08 +00005717 return true;
5718 }
George Burgess IVe3763372016-12-22 02:50:20 +00005719
George Burgess IVf9013bf2017-02-10 22:52:29 +00005720 bool evaluateLValue(const Expr *E, LValue &Result) {
5721 return EvaluateLValue(E, Result, Info, InvalidBaseOK);
5722 }
5723
5724 bool evaluatePointer(const Expr *E, LValue &Result) {
5725 return EvaluatePointer(E, Result, Info, InvalidBaseOK);
5726 }
5727
George Burgess IVe3763372016-12-22 02:50:20 +00005728 bool visitNonBuiltinCallExpr(const CallExpr *E);
Anders Carlssonb5ad0212008-07-08 14:30:00 +00005729public:
Mike Stump11289f42009-09-09 15:08:12 +00005730
George Burgess IVf9013bf2017-02-10 22:52:29 +00005731 PointerExprEvaluator(EvalInfo &info, LValue &Result, bool InvalidBaseOK)
5732 : ExprEvaluatorBaseTy(info), Result(Result),
5733 InvalidBaseOK(InvalidBaseOK) {}
Chris Lattner05706e882008-07-11 18:11:29 +00005734
Richard Smith2e312c82012-03-03 22:46:17 +00005735 bool Success(const APValue &V, const Expr *E) {
5736 Result.setFrom(Info.Ctx, V);
Peter Collingbournee9200682011-05-13 03:29:01 +00005737 return true;
5738 }
Richard Smithfddd3842011-12-30 21:15:51 +00005739 bool ZeroInitialization(const Expr *E) {
Tim Northover01503332017-05-26 02:16:00 +00005740 auto TargetVal = Info.Ctx.getTargetNullPointerValue(E->getType());
5741 Result.setNull(E->getType(), TargetVal);
Yaxun Liu402804b2016-12-15 08:09:08 +00005742 return true;
Richard Smith4ce706a2011-10-11 21:43:33 +00005743 }
Anders Carlssonb5ad0212008-07-08 14:30:00 +00005744
John McCall45d55e42010-05-07 21:00:08 +00005745 bool VisitBinaryOperator(const BinaryOperator *E);
Peter Collingbournee9200682011-05-13 03:29:01 +00005746 bool VisitCastExpr(const CastExpr* E);
John McCall45d55e42010-05-07 21:00:08 +00005747 bool VisitUnaryAddrOf(const UnaryOperator *E);
Peter Collingbournee9200682011-05-13 03:29:01 +00005748 bool VisitObjCStringLiteral(const ObjCStringLiteral *E)
John McCall45d55e42010-05-07 21:00:08 +00005749 { return Success(E); }
Nick Lewycky19ae6dc2017-04-29 00:07:27 +00005750 bool VisitObjCBoxedExpr(const ObjCBoxedExpr *E) {
5751 if (Info.noteFailure())
5752 EvaluateIgnoredValue(Info, E->getSubExpr());
5753 return Error(E);
5754 }
Peter Collingbournee9200682011-05-13 03:29:01 +00005755 bool VisitAddrLabelExpr(const AddrLabelExpr *E)
John McCall45d55e42010-05-07 21:00:08 +00005756 { return Success(E); }
Peter Collingbournee9200682011-05-13 03:29:01 +00005757 bool VisitCallExpr(const CallExpr *E);
Richard Smith6328cbd2016-11-16 00:57:23 +00005758 bool VisitBuiltinCallExpr(const CallExpr *E, unsigned BuiltinOp);
Peter Collingbournee9200682011-05-13 03:29:01 +00005759 bool VisitBlockExpr(const BlockExpr *E) {
John McCallc63de662011-02-02 13:00:07 +00005760 if (!E->getBlockDecl()->hasCaptures())
John McCall45d55e42010-05-07 21:00:08 +00005761 return Success(E);
Richard Smithf57d8cb2011-12-09 22:58:01 +00005762 return Error(E);
Mike Stumpa6703322009-02-19 22:01:56 +00005763 }
Richard Smithd62306a2011-11-10 06:34:14 +00005764 bool VisitCXXThisExpr(const CXXThisExpr *E) {
Richard Smith84401042013-06-03 05:03:02 +00005765 // Can't look at 'this' when checking a potential constant expression.
Richard Smith6d4c6582013-11-05 22:18:15 +00005766 if (Info.checkingPotentialConstantExpression())
Richard Smith84401042013-06-03 05:03:02 +00005767 return false;
Richard Smith22a5d612014-07-07 06:00:13 +00005768 if (!Info.CurrentCall->This) {
5769 if (Info.getLangOpts().CPlusPlus11)
Faisal Valie690b7a2016-07-02 22:34:24 +00005770 Info.FFDiag(E, diag::note_constexpr_this) << E->isImplicit();
Richard Smith22a5d612014-07-07 06:00:13 +00005771 else
Faisal Valie690b7a2016-07-02 22:34:24 +00005772 Info.FFDiag(E);
Richard Smith22a5d612014-07-07 06:00:13 +00005773 return false;
5774 }
Richard Smithd62306a2011-11-10 06:34:14 +00005775 Result = *Info.CurrentCall->This;
Faisal Vali051e3a22017-02-16 04:12:21 +00005776 // If we are inside a lambda's call operator, the 'this' expression refers
5777 // to the enclosing '*this' object (either by value or reference) which is
5778 // either copied into the closure object's field that represents the '*this'
5779 // or refers to '*this'.
5780 if (isLambdaCallOperator(Info.CurrentCall->Callee)) {
5781 // Update 'Result' to refer to the data member/field of the closure object
5782 // that represents the '*this' capture.
5783 if (!HandleLValueMember(Info, E, Result,
Fangrui Song6907ce22018-07-30 19:24:48 +00005784 Info.CurrentCall->LambdaThisCaptureField))
Faisal Vali051e3a22017-02-16 04:12:21 +00005785 return false;
5786 // If we captured '*this' by reference, replace the field with its referent.
5787 if (Info.CurrentCall->LambdaThisCaptureField->getType()
5788 ->isPointerType()) {
5789 APValue RVal;
5790 if (!handleLValueToRValueConversion(Info, E, E->getType(), Result,
5791 RVal))
5792 return false;
5793
5794 Result.setFrom(Info.Ctx, RVal);
5795 }
5796 }
Richard Smithd62306a2011-11-10 06:34:14 +00005797 return true;
5798 }
John McCallc07a0c72011-02-17 10:25:35 +00005799
Eli Friedman449fe542009-03-23 04:56:01 +00005800 // FIXME: Missing: @protocol, @selector
Anders Carlsson4a3585b2008-07-08 15:34:11 +00005801};
Chris Lattner05706e882008-07-11 18:11:29 +00005802} // end anonymous namespace
Anders Carlsson4a3585b2008-07-08 15:34:11 +00005803
George Burgess IVf9013bf2017-02-10 22:52:29 +00005804static bool EvaluatePointer(const Expr* E, LValue& Result, EvalInfo &Info,
5805 bool InvalidBaseOK) {
Richard Smith11562c52011-10-28 17:51:58 +00005806 assert(E->isRValue() && E->getType()->hasPointerRepresentation());
George Burgess IVf9013bf2017-02-10 22:52:29 +00005807 return PointerExprEvaluator(Info, Result, InvalidBaseOK).Visit(E);
Chris Lattner05706e882008-07-11 18:11:29 +00005808}
5809
John McCall45d55e42010-05-07 21:00:08 +00005810bool PointerExprEvaluator::VisitBinaryOperator(const BinaryOperator *E) {
John McCalle3027922010-08-25 11:45:40 +00005811 if (E->getOpcode() != BO_Add &&
5812 E->getOpcode() != BO_Sub)
Richard Smith027bf112011-11-17 22:56:20 +00005813 return ExprEvaluatorBaseTy::VisitBinaryOperator(E);
Mike Stump11289f42009-09-09 15:08:12 +00005814
Chris Lattner05706e882008-07-11 18:11:29 +00005815 const Expr *PExp = E->getLHS();
5816 const Expr *IExp = E->getRHS();
5817 if (IExp->getType()->isPointerType())
5818 std::swap(PExp, IExp);
Mike Stump11289f42009-09-09 15:08:12 +00005819
George Burgess IVf9013bf2017-02-10 22:52:29 +00005820 bool EvalPtrOK = evaluatePointer(PExp, Result);
George Burgess IVa145e252016-05-25 22:38:36 +00005821 if (!EvalPtrOK && !Info.noteFailure())
John McCall45d55e42010-05-07 21:00:08 +00005822 return false;
Mike Stump11289f42009-09-09 15:08:12 +00005823
John McCall45d55e42010-05-07 21:00:08 +00005824 llvm::APSInt Offset;
Richard Smith253c2a32012-01-27 01:14:48 +00005825 if (!EvaluateInteger(IExp, Offset, Info) || !EvalPtrOK)
John McCall45d55e42010-05-07 21:00:08 +00005826 return false;
Richard Smith861b5b52013-05-07 23:34:45 +00005827
Richard Smith96e0c102011-11-04 02:25:55 +00005828 if (E->getOpcode() == BO_Sub)
Richard Smithd6cc1982017-01-31 02:23:02 +00005829 negateAsSigned(Offset);
Chris Lattner05706e882008-07-11 18:11:29 +00005830
Ted Kremenek28831752012-08-23 20:46:57 +00005831 QualType Pointee = PExp->getType()->castAs<PointerType>()->getPointeeType();
Richard Smithd6cc1982017-01-31 02:23:02 +00005832 return HandleLValueArrayAdjustment(Info, E, Result, Pointee, Offset);
Chris Lattner05706e882008-07-11 18:11:29 +00005833}
Eli Friedman9a156e52008-11-12 09:44:48 +00005834
John McCall45d55e42010-05-07 21:00:08 +00005835bool PointerExprEvaluator::VisitUnaryAddrOf(const UnaryOperator *E) {
George Burgess IVf9013bf2017-02-10 22:52:29 +00005836 return evaluateLValue(E->getSubExpr(), Result);
Eli Friedman9a156e52008-11-12 09:44:48 +00005837}
Mike Stump11289f42009-09-09 15:08:12 +00005838
Richard Smith81dfef92018-07-11 00:29:05 +00005839bool PointerExprEvaluator::VisitCastExpr(const CastExpr *E) {
5840 const Expr *SubExpr = E->getSubExpr();
Chris Lattner05706e882008-07-11 18:11:29 +00005841
Eli Friedman847a2bc2009-12-27 05:43:15 +00005842 switch (E->getCastKind()) {
5843 default:
5844 break;
5845
John McCalle3027922010-08-25 11:45:40 +00005846 case CK_BitCast:
John McCall9320b872011-09-09 05:25:32 +00005847 case CK_CPointerToObjCPointerCast:
5848 case CK_BlockPointerToObjCPointerCast:
John McCalle3027922010-08-25 11:45:40 +00005849 case CK_AnyPointerToBlockPointerCast:
Anastasia Stulova5d8ad8a2014-11-26 15:36:41 +00005850 case CK_AddressSpaceConversion:
Richard Smithb19ac0d2012-01-15 03:25:41 +00005851 if (!Visit(SubExpr))
5852 return false;
Richard Smith6d6ecc32011-12-12 12:46:16 +00005853 // Bitcasts to cv void* are static_casts, not reinterpret_casts, so are
5854 // permitted in constant expressions in C++11. Bitcasts from cv void* are
5855 // also static_casts, but we disallow them as a resolution to DR1312.
Richard Smithff07af12011-12-12 19:10:03 +00005856 if (!E->getType()->isVoidPointerType()) {
Richard Smith81dfef92018-07-11 00:29:05 +00005857 // If we changed anything other than cvr-qualifiers, we can't use this
5858 // value for constant folding. FIXME: Qualification conversions should
5859 // always be CK_NoOp, but we get this wrong in C.
5860 if (!Info.Ctx.hasCvrSimilarType(E->getType(), E->getSubExpr()->getType()))
5861 Result.Designator.setInvalid();
Richard Smithff07af12011-12-12 19:10:03 +00005862 if (SubExpr->getType()->isVoidPointerType())
5863 CCEDiag(E, diag::note_constexpr_invalid_cast)
5864 << 3 << SubExpr->getType();
5865 else
5866 CCEDiag(E, diag::note_constexpr_invalid_cast) << 2;
5867 }
Yaxun Liu402804b2016-12-15 08:09:08 +00005868 if (E->getCastKind() == CK_AddressSpaceConversion && Result.IsNullPtr)
5869 ZeroInitialization(E);
Richard Smith96e0c102011-11-04 02:25:55 +00005870 return true;
Eli Friedman847a2bc2009-12-27 05:43:15 +00005871
Anders Carlsson18275092010-10-31 20:41:46 +00005872 case CK_DerivedToBase:
Richard Smith84401042013-06-03 05:03:02 +00005873 case CK_UncheckedDerivedToBase:
George Burgess IVf9013bf2017-02-10 22:52:29 +00005874 if (!evaluatePointer(E->getSubExpr(), Result))
Anders Carlsson18275092010-10-31 20:41:46 +00005875 return false;
Richard Smith027bf112011-11-17 22:56:20 +00005876 if (!Result.Base && Result.Offset.isZero())
5877 return true;
Anders Carlsson18275092010-10-31 20:41:46 +00005878
Richard Smithd62306a2011-11-10 06:34:14 +00005879 // Now figure out the necessary offset to add to the base LV to get from
Anders Carlsson18275092010-10-31 20:41:46 +00005880 // the derived class to the base class.
Richard Smith84401042013-06-03 05:03:02 +00005881 return HandleLValueBasePath(Info, E, E->getSubExpr()->getType()->
5882 castAs<PointerType>()->getPointeeType(),
5883 Result);
Anders Carlsson18275092010-10-31 20:41:46 +00005884
Richard Smith027bf112011-11-17 22:56:20 +00005885 case CK_BaseToDerived:
5886 if (!Visit(E->getSubExpr()))
5887 return false;
5888 if (!Result.Base && Result.Offset.isZero())
5889 return true;
5890 return HandleBaseToDerivedCast(Info, E, Result);
5891
Richard Smith0b0a0b62011-10-29 20:57:55 +00005892 case CK_NullToPointer:
Richard Smith4051ff72012-04-08 08:02:07 +00005893 VisitIgnoredValue(E->getSubExpr());
Richard Smithfddd3842011-12-30 21:15:51 +00005894 return ZeroInitialization(E);
John McCalle84af4e2010-11-13 01:35:44 +00005895
John McCalle3027922010-08-25 11:45:40 +00005896 case CK_IntegralToPointer: {
Richard Smith6d6ecc32011-12-12 12:46:16 +00005897 CCEDiag(E, diag::note_constexpr_invalid_cast) << 2;
5898
Richard Smith2e312c82012-03-03 22:46:17 +00005899 APValue Value;
John McCall45d55e42010-05-07 21:00:08 +00005900 if (!EvaluateIntegerOrLValue(SubExpr, Value, Info))
Eli Friedman847a2bc2009-12-27 05:43:15 +00005901 break;
Daniel Dunbarce399542009-02-20 18:22:23 +00005902
John McCall45d55e42010-05-07 21:00:08 +00005903 if (Value.isInt()) {
Richard Smith0b0a0b62011-10-29 20:57:55 +00005904 unsigned Size = Info.Ctx.getTypeSize(E->getType());
5905 uint64_t N = Value.getInt().extOrTrunc(Size).getZExtValue();
Craig Topper36250ad2014-05-12 05:36:57 +00005906 Result.Base = (Expr*)nullptr;
George Burgess IV3a03fab2015-09-04 21:28:13 +00005907 Result.InvalidBase = false;
Richard Smith0b0a0b62011-10-29 20:57:55 +00005908 Result.Offset = CharUnits::fromQuantity(N);
Richard Smith96e0c102011-11-04 02:25:55 +00005909 Result.Designator.setInvalid();
Yaxun Liu402804b2016-12-15 08:09:08 +00005910 Result.IsNullPtr = false;
John McCall45d55e42010-05-07 21:00:08 +00005911 return true;
5912 } else {
5913 // Cast is of an lvalue, no need to change value.
Richard Smith2e312c82012-03-03 22:46:17 +00005914 Result.setFrom(Info.Ctx, Value);
John McCall45d55e42010-05-07 21:00:08 +00005915 return true;
Chris Lattner05706e882008-07-11 18:11:29 +00005916 }
5917 }
Richard Smith6f4f0f12017-10-20 22:56:25 +00005918
5919 case CK_ArrayToPointerDecay: {
Richard Smith027bf112011-11-17 22:56:20 +00005920 if (SubExpr->isGLValue()) {
George Burgess IVf9013bf2017-02-10 22:52:29 +00005921 if (!evaluateLValue(SubExpr, Result))
Richard Smith027bf112011-11-17 22:56:20 +00005922 return false;
5923 } else {
Akira Hatanaka4e2698c2018-04-10 05:15:01 +00005924 APValue &Value = createTemporary(SubExpr, false, Result,
5925 *Info.CurrentCall);
5926 if (!EvaluateInPlace(Value, Info, Result, SubExpr))
Richard Smith027bf112011-11-17 22:56:20 +00005927 return false;
5928 }
Richard Smith96e0c102011-11-04 02:25:55 +00005929 // The result is a pointer to the first element of the array.
Richard Smith6f4f0f12017-10-20 22:56:25 +00005930 auto *AT = Info.Ctx.getAsArrayType(SubExpr->getType());
5931 if (auto *CAT = dyn_cast<ConstantArrayType>(AT))
Richard Smitha8105bc2012-01-06 16:39:00 +00005932 Result.addArray(Info, E, CAT);
Daniel Jasperffdee092017-05-02 19:21:42 +00005933 else
Richard Smith6f4f0f12017-10-20 22:56:25 +00005934 Result.addUnsizedArray(Info, E, AT->getElementType());
Richard Smith96e0c102011-11-04 02:25:55 +00005935 return true;
Richard Smith6f4f0f12017-10-20 22:56:25 +00005936 }
Richard Smithdd785442011-10-31 20:57:44 +00005937
John McCalle3027922010-08-25 11:45:40 +00005938 case CK_FunctionToPointerDecay:
George Burgess IVf9013bf2017-02-10 22:52:29 +00005939 return evaluateLValue(SubExpr, Result);
George Burgess IVe3763372016-12-22 02:50:20 +00005940
5941 case CK_LValueToRValue: {
5942 LValue LVal;
George Burgess IVf9013bf2017-02-10 22:52:29 +00005943 if (!evaluateLValue(E->getSubExpr(), LVal))
George Burgess IVe3763372016-12-22 02:50:20 +00005944 return false;
5945
5946 APValue RVal;
5947 // Note, we use the subexpression's type in order to retain cv-qualifiers.
5948 if (!handleLValueToRValueConversion(Info, E, E->getSubExpr()->getType(),
5949 LVal, RVal))
George Burgess IVf9013bf2017-02-10 22:52:29 +00005950 return InvalidBaseOK &&
5951 evaluateLValueAsAllocSize(Info, LVal.Base, Result);
George Burgess IVe3763372016-12-22 02:50:20 +00005952 return Success(RVal, E);
5953 }
Eli Friedman9a156e52008-11-12 09:44:48 +00005954 }
5955
Richard Smith11562c52011-10-28 17:51:58 +00005956 return ExprEvaluatorBaseTy::VisitCastExpr(E);
Mike Stump11289f42009-09-09 15:08:12 +00005957}
Chris Lattner05706e882008-07-11 18:11:29 +00005958
Hal Finkel0dd05d42014-10-03 17:18:37 +00005959static CharUnits GetAlignOfType(EvalInfo &Info, QualType T) {
5960 // C++ [expr.alignof]p3:
5961 // When alignof is applied to a reference type, the result is the
5962 // alignment of the referenced type.
5963 if (const ReferenceType *Ref = T->getAs<ReferenceType>())
5964 T = Ref->getPointeeType();
5965
5966 // __alignof is defined to return the preferred alignment.
Roger Ferrer Ibanez3fa38a12017-03-08 14:00:44 +00005967 if (T.getQualifiers().hasUnaligned())
5968 return CharUnits::One();
Hal Finkel0dd05d42014-10-03 17:18:37 +00005969 return Info.Ctx.toCharUnitsFromBits(
5970 Info.Ctx.getPreferredTypeAlign(T.getTypePtr()));
5971}
5972
5973static CharUnits GetAlignOfExpr(EvalInfo &Info, const Expr *E) {
5974 E = E->IgnoreParens();
5975
5976 // The kinds of expressions that we have special-case logic here for
5977 // should be kept up to date with the special checks for those
5978 // expressions in Sema.
5979
5980 // alignof decl is always accepted, even if it doesn't make sense: we default
5981 // to 1 in those cases.
5982 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E))
5983 return Info.Ctx.getDeclAlign(DRE->getDecl(),
5984 /*RefAsPointee*/true);
5985
5986 if (const MemberExpr *ME = dyn_cast<MemberExpr>(E))
5987 return Info.Ctx.getDeclAlign(ME->getMemberDecl(),
5988 /*RefAsPointee*/true);
5989
5990 return GetAlignOfType(Info, E->getType());
5991}
5992
George Burgess IVe3763372016-12-22 02:50:20 +00005993// To be clear: this happily visits unsupported builtins. Better name welcomed.
5994bool PointerExprEvaluator::visitNonBuiltinCallExpr(const CallExpr *E) {
5995 if (ExprEvaluatorBaseTy::VisitCallExpr(E))
5996 return true;
5997
George Burgess IVf9013bf2017-02-10 22:52:29 +00005998 if (!(InvalidBaseOK && getAllocSizeAttr(E)))
George Burgess IVe3763372016-12-22 02:50:20 +00005999 return false;
6000
6001 Result.setInvalid(E);
6002 QualType PointeeTy = E->getType()->castAs<PointerType>()->getPointeeType();
Richard Smith6f4f0f12017-10-20 22:56:25 +00006003 Result.addUnsizedArray(Info, E, PointeeTy);
George Burgess IVe3763372016-12-22 02:50:20 +00006004 return true;
6005}
6006
Peter Collingbournee9200682011-05-13 03:29:01 +00006007bool PointerExprEvaluator::VisitCallExpr(const CallExpr *E) {
Richard Smithd62306a2011-11-10 06:34:14 +00006008 if (IsStringLiteralCall(E))
John McCall45d55e42010-05-07 21:00:08 +00006009 return Success(E);
Eli Friedmanc69d4542009-01-25 01:54:01 +00006010
Richard Smith6328cbd2016-11-16 00:57:23 +00006011 if (unsigned BuiltinOp = E->getBuiltinCallee())
6012 return VisitBuiltinCallExpr(E, BuiltinOp);
6013
George Burgess IVe3763372016-12-22 02:50:20 +00006014 return visitNonBuiltinCallExpr(E);
Richard Smith6328cbd2016-11-16 00:57:23 +00006015}
6016
6017bool PointerExprEvaluator::VisitBuiltinCallExpr(const CallExpr *E,
6018 unsigned BuiltinOp) {
6019 switch (BuiltinOp) {
Richard Smith6cbd65d2013-07-11 02:27:57 +00006020 case Builtin::BI__builtin_addressof:
George Burgess IVf9013bf2017-02-10 22:52:29 +00006021 return evaluateLValue(E->getArg(0), Result);
Hal Finkel0dd05d42014-10-03 17:18:37 +00006022 case Builtin::BI__builtin_assume_aligned: {
6023 // We need to be very careful here because: if the pointer does not have the
6024 // asserted alignment, then the behavior is undefined, and undefined
6025 // behavior is non-constant.
George Burgess IVf9013bf2017-02-10 22:52:29 +00006026 if (!evaluatePointer(E->getArg(0), Result))
Hal Finkel0dd05d42014-10-03 17:18:37 +00006027 return false;
Richard Smith6cbd65d2013-07-11 02:27:57 +00006028
Hal Finkel0dd05d42014-10-03 17:18:37 +00006029 LValue OffsetResult(Result);
6030 APSInt Alignment;
6031 if (!EvaluateInteger(E->getArg(1), Alignment, Info))
6032 return false;
Richard Smith642a2362017-01-30 23:30:26 +00006033 CharUnits Align = CharUnits::fromQuantity(Alignment.getZExtValue());
Hal Finkel0dd05d42014-10-03 17:18:37 +00006034
6035 if (E->getNumArgs() > 2) {
6036 APSInt Offset;
6037 if (!EvaluateInteger(E->getArg(2), Offset, Info))
6038 return false;
6039
Richard Smith642a2362017-01-30 23:30:26 +00006040 int64_t AdditionalOffset = -Offset.getZExtValue();
Hal Finkel0dd05d42014-10-03 17:18:37 +00006041 OffsetResult.Offset += CharUnits::fromQuantity(AdditionalOffset);
6042 }
6043
6044 // If there is a base object, then it must have the correct alignment.
6045 if (OffsetResult.Base) {
6046 CharUnits BaseAlignment;
6047 if (const ValueDecl *VD =
6048 OffsetResult.Base.dyn_cast<const ValueDecl*>()) {
6049 BaseAlignment = Info.Ctx.getDeclAlign(VD);
6050 } else {
6051 BaseAlignment =
6052 GetAlignOfExpr(Info, OffsetResult.Base.get<const Expr*>());
6053 }
6054
6055 if (BaseAlignment < Align) {
6056 Result.Designator.setInvalid();
Richard Smith642a2362017-01-30 23:30:26 +00006057 // FIXME: Add support to Diagnostic for long / long long.
Hal Finkel0dd05d42014-10-03 17:18:37 +00006058 CCEDiag(E->getArg(0),
6059 diag::note_constexpr_baa_insufficient_alignment) << 0
Richard Smith642a2362017-01-30 23:30:26 +00006060 << (unsigned)BaseAlignment.getQuantity()
6061 << (unsigned)Align.getQuantity();
Hal Finkel0dd05d42014-10-03 17:18:37 +00006062 return false;
6063 }
6064 }
6065
6066 // The offset must also have the correct alignment.
Rui Ueyama83aa9792016-01-14 21:00:27 +00006067 if (OffsetResult.Offset.alignTo(Align) != OffsetResult.Offset) {
Hal Finkel0dd05d42014-10-03 17:18:37 +00006068 Result.Designator.setInvalid();
Hal Finkel0dd05d42014-10-03 17:18:37 +00006069
Richard Smith642a2362017-01-30 23:30:26 +00006070 (OffsetResult.Base
6071 ? CCEDiag(E->getArg(0),
6072 diag::note_constexpr_baa_insufficient_alignment) << 1
6073 : CCEDiag(E->getArg(0),
6074 diag::note_constexpr_baa_value_insufficient_alignment))
6075 << (int)OffsetResult.Offset.getQuantity()
6076 << (unsigned)Align.getQuantity();
Hal Finkel0dd05d42014-10-03 17:18:37 +00006077 return false;
6078 }
6079
6080 return true;
6081 }
Richard Smithe9507952016-11-12 01:39:56 +00006082
6083 case Builtin::BIstrchr:
Richard Smith8110c9d2016-11-29 19:45:17 +00006084 case Builtin::BIwcschr:
Richard Smithe9507952016-11-12 01:39:56 +00006085 case Builtin::BImemchr:
Richard Smith8110c9d2016-11-29 19:45:17 +00006086 case Builtin::BIwmemchr:
Richard Smithe9507952016-11-12 01:39:56 +00006087 if (Info.getLangOpts().CPlusPlus11)
6088 Info.CCEDiag(E, diag::note_constexpr_invalid_function)
6089 << /*isConstexpr*/0 << /*isConstructor*/0
Richard Smith8110c9d2016-11-29 19:45:17 +00006090 << (std::string("'") + Info.Ctx.BuiltinInfo.getName(BuiltinOp) + "'");
Richard Smithe9507952016-11-12 01:39:56 +00006091 else
6092 Info.CCEDiag(E, diag::note_invalid_subexpr_in_const_expr);
Adrian Prantlf3b3ccd2017-12-19 22:06:11 +00006093 LLVM_FALLTHROUGH;
Richard Smithe9507952016-11-12 01:39:56 +00006094 case Builtin::BI__builtin_strchr:
Richard Smith8110c9d2016-11-29 19:45:17 +00006095 case Builtin::BI__builtin_wcschr:
6096 case Builtin::BI__builtin_memchr:
Richard Smith5e29dd32017-01-20 00:45:35 +00006097 case Builtin::BI__builtin_char_memchr:
Richard Smith8110c9d2016-11-29 19:45:17 +00006098 case Builtin::BI__builtin_wmemchr: {
Richard Smithe9507952016-11-12 01:39:56 +00006099 if (!Visit(E->getArg(0)))
6100 return false;
6101 APSInt Desired;
6102 if (!EvaluateInteger(E->getArg(1), Desired, Info))
6103 return false;
6104 uint64_t MaxLength = uint64_t(-1);
6105 if (BuiltinOp != Builtin::BIstrchr &&
Richard Smith8110c9d2016-11-29 19:45:17 +00006106 BuiltinOp != Builtin::BIwcschr &&
6107 BuiltinOp != Builtin::BI__builtin_strchr &&
6108 BuiltinOp != Builtin::BI__builtin_wcschr) {
Richard Smithe9507952016-11-12 01:39:56 +00006109 APSInt N;
6110 if (!EvaluateInteger(E->getArg(2), N, Info))
6111 return false;
6112 MaxLength = N.getExtValue();
6113 }
6114
Richard Smith8110c9d2016-11-29 19:45:17 +00006115 QualType CharTy = E->getArg(0)->getType()->getPointeeType();
Richard Smithe9507952016-11-12 01:39:56 +00006116
Richard Smith8110c9d2016-11-29 19:45:17 +00006117 // Figure out what value we're actually looking for (after converting to
6118 // the corresponding unsigned type if necessary).
6119 uint64_t DesiredVal;
6120 bool StopAtNull = false;
6121 switch (BuiltinOp) {
6122 case Builtin::BIstrchr:
6123 case Builtin::BI__builtin_strchr:
6124 // strchr compares directly to the passed integer, and therefore
6125 // always fails if given an int that is not a char.
6126 if (!APSInt::isSameValue(HandleIntToIntCast(Info, E, CharTy,
6127 E->getArg(1)->getType(),
6128 Desired),
6129 Desired))
6130 return ZeroInitialization(E);
6131 StopAtNull = true;
Adrian Prantlf3b3ccd2017-12-19 22:06:11 +00006132 LLVM_FALLTHROUGH;
Richard Smith8110c9d2016-11-29 19:45:17 +00006133 case Builtin::BImemchr:
6134 case Builtin::BI__builtin_memchr:
Richard Smith5e29dd32017-01-20 00:45:35 +00006135 case Builtin::BI__builtin_char_memchr:
Richard Smith8110c9d2016-11-29 19:45:17 +00006136 // memchr compares by converting both sides to unsigned char. That's also
6137 // correct for strchr if we get this far (to cope with plain char being
6138 // unsigned in the strchr case).
6139 DesiredVal = Desired.trunc(Info.Ctx.getCharWidth()).getZExtValue();
6140 break;
Richard Smithe9507952016-11-12 01:39:56 +00006141
Richard Smith8110c9d2016-11-29 19:45:17 +00006142 case Builtin::BIwcschr:
6143 case Builtin::BI__builtin_wcschr:
6144 StopAtNull = true;
Adrian Prantlf3b3ccd2017-12-19 22:06:11 +00006145 LLVM_FALLTHROUGH;
Richard Smith8110c9d2016-11-29 19:45:17 +00006146 case Builtin::BIwmemchr:
6147 case Builtin::BI__builtin_wmemchr:
6148 // wcschr and wmemchr are given a wchar_t to look for. Just use it.
6149 DesiredVal = Desired.getZExtValue();
6150 break;
6151 }
Richard Smithe9507952016-11-12 01:39:56 +00006152
6153 for (; MaxLength; --MaxLength) {
6154 APValue Char;
6155 if (!handleLValueToRValueConversion(Info, E, CharTy, Result, Char) ||
6156 !Char.isInt())
6157 return false;
6158 if (Char.getInt().getZExtValue() == DesiredVal)
6159 return true;
Richard Smith8110c9d2016-11-29 19:45:17 +00006160 if (StopAtNull && !Char.getInt())
Richard Smithe9507952016-11-12 01:39:56 +00006161 break;
6162 if (!HandleLValueArrayAdjustment(Info, E, Result, CharTy, 1))
6163 return false;
6164 }
6165 // Not found: return nullptr.
6166 return ZeroInitialization(E);
6167 }
6168
Richard Smith06f71b52018-08-04 00:57:17 +00006169 case Builtin::BImemcpy:
6170 case Builtin::BImemmove:
6171 case Builtin::BIwmemcpy:
6172 case Builtin::BIwmemmove:
6173 if (Info.getLangOpts().CPlusPlus11)
6174 Info.CCEDiag(E, diag::note_constexpr_invalid_function)
6175 << /*isConstexpr*/0 << /*isConstructor*/0
6176 << (std::string("'") + Info.Ctx.BuiltinInfo.getName(BuiltinOp) + "'");
6177 else
6178 Info.CCEDiag(E, diag::note_invalid_subexpr_in_const_expr);
6179 LLVM_FALLTHROUGH;
6180 case Builtin::BI__builtin_memcpy:
6181 case Builtin::BI__builtin_memmove:
6182 case Builtin::BI__builtin_wmemcpy:
6183 case Builtin::BI__builtin_wmemmove: {
6184 bool WChar = BuiltinOp == Builtin::BIwmemcpy ||
6185 BuiltinOp == Builtin::BIwmemmove ||
6186 BuiltinOp == Builtin::BI__builtin_wmemcpy ||
6187 BuiltinOp == Builtin::BI__builtin_wmemmove;
6188 bool Move = BuiltinOp == Builtin::BImemmove ||
6189 BuiltinOp == Builtin::BIwmemmove ||
6190 BuiltinOp == Builtin::BI__builtin_memmove ||
6191 BuiltinOp == Builtin::BI__builtin_wmemmove;
6192
6193 // The result of mem* is the first argument.
Richard Smith128719c2018-09-13 22:47:33 +00006194 if (!Visit(E->getArg(0)))
Richard Smith06f71b52018-08-04 00:57:17 +00006195 return false;
6196 LValue Dest = Result;
6197
6198 LValue Src;
Richard Smith128719c2018-09-13 22:47:33 +00006199 if (!EvaluatePointer(E->getArg(1), Src, Info))
Richard Smith06f71b52018-08-04 00:57:17 +00006200 return false;
6201
6202 APSInt N;
6203 if (!EvaluateInteger(E->getArg(2), N, Info))
6204 return false;
6205 assert(!N.isSigned() && "memcpy and friends take an unsigned size");
6206
6207 // If the size is zero, we treat this as always being a valid no-op.
6208 // (Even if one of the src and dest pointers is null.)
6209 if (!N)
6210 return true;
6211
Richard Smith128719c2018-09-13 22:47:33 +00006212 // Otherwise, if either of the operands is null, we can't proceed. Don't
6213 // try to determine the type of the copied objects, because there aren't
6214 // any.
6215 if (!Src.Base || !Dest.Base) {
6216 APValue Val;
6217 (!Src.Base ? Src : Dest).moveInto(Val);
6218 Info.FFDiag(E, diag::note_constexpr_memcpy_null)
6219 << Move << WChar << !!Src.Base
6220 << Val.getAsString(Info.Ctx, E->getArg(0)->getType());
6221 return false;
6222 }
6223 if (Src.Designator.Invalid || Dest.Designator.Invalid)
6224 return false;
6225
Richard Smith06f71b52018-08-04 00:57:17 +00006226 // We require that Src and Dest are both pointers to arrays of
6227 // trivially-copyable type. (For the wide version, the designator will be
6228 // invalid if the designated object is not a wchar_t.)
6229 QualType T = Dest.Designator.getType(Info.Ctx);
6230 QualType SrcT = Src.Designator.getType(Info.Ctx);
6231 if (!Info.Ctx.hasSameUnqualifiedType(T, SrcT)) {
6232 Info.FFDiag(E, diag::note_constexpr_memcpy_type_pun) << Move << SrcT << T;
6233 return false;
6234 }
6235 if (!T.isTriviallyCopyableType(Info.Ctx)) {
6236 Info.FFDiag(E, diag::note_constexpr_memcpy_nontrivial) << Move << T;
6237 return false;
6238 }
6239
6240 // Figure out how many T's we're copying.
6241 uint64_t TSize = Info.Ctx.getTypeSizeInChars(T).getQuantity();
6242 if (!WChar) {
6243 uint64_t Remainder;
6244 llvm::APInt OrigN = N;
6245 llvm::APInt::udivrem(OrigN, TSize, N, Remainder);
6246 if (Remainder) {
6247 Info.FFDiag(E, diag::note_constexpr_memcpy_unsupported)
6248 << Move << WChar << 0 << T << OrigN.toString(10, /*Signed*/false)
6249 << (unsigned)TSize;
6250 return false;
6251 }
6252 }
6253
6254 // Check that the copying will remain within the arrays, just so that we
6255 // can give a more meaningful diagnostic. This implicitly also checks that
6256 // N fits into 64 bits.
6257 uint64_t RemainingSrcSize = Src.Designator.validIndexAdjustments().second;
6258 uint64_t RemainingDestSize = Dest.Designator.validIndexAdjustments().second;
6259 if (N.ugt(RemainingSrcSize) || N.ugt(RemainingDestSize)) {
6260 Info.FFDiag(E, diag::note_constexpr_memcpy_unsupported)
6261 << Move << WChar << (N.ugt(RemainingSrcSize) ? 1 : 2) << T
6262 << N.toString(10, /*Signed*/false);
6263 return false;
6264 }
6265 uint64_t NElems = N.getZExtValue();
6266 uint64_t NBytes = NElems * TSize;
6267
6268 // Check for overlap.
6269 int Direction = 1;
6270 if (HasSameBase(Src, Dest)) {
6271 uint64_t SrcOffset = Src.getLValueOffset().getQuantity();
6272 uint64_t DestOffset = Dest.getLValueOffset().getQuantity();
6273 if (DestOffset >= SrcOffset && DestOffset - SrcOffset < NBytes) {
6274 // Dest is inside the source region.
6275 if (!Move) {
6276 Info.FFDiag(E, diag::note_constexpr_memcpy_overlap) << WChar;
6277 return false;
6278 }
6279 // For memmove and friends, copy backwards.
6280 if (!HandleLValueArrayAdjustment(Info, E, Src, T, NElems - 1) ||
6281 !HandleLValueArrayAdjustment(Info, E, Dest, T, NElems - 1))
6282 return false;
6283 Direction = -1;
6284 } else if (!Move && SrcOffset >= DestOffset &&
6285 SrcOffset - DestOffset < NBytes) {
6286 // Src is inside the destination region for memcpy: invalid.
6287 Info.FFDiag(E, diag::note_constexpr_memcpy_overlap) << WChar;
6288 return false;
6289 }
6290 }
6291
6292 while (true) {
6293 APValue Val;
6294 if (!handleLValueToRValueConversion(Info, E, T, Src, Val) ||
6295 !handleAssignment(Info, E, Dest, T, Val))
6296 return false;
6297 // Do not iterate past the last element; if we're copying backwards, that
6298 // might take us off the start of the array.
6299 if (--NElems == 0)
6300 return true;
6301 if (!HandleLValueArrayAdjustment(Info, E, Src, T, Direction) ||
6302 !HandleLValueArrayAdjustment(Info, E, Dest, T, Direction))
6303 return false;
6304 }
6305 }
6306
Richard Smith6cbd65d2013-07-11 02:27:57 +00006307 default:
George Burgess IVe3763372016-12-22 02:50:20 +00006308 return visitNonBuiltinCallExpr(E);
Richard Smith6cbd65d2013-07-11 02:27:57 +00006309 }
Eli Friedman9a156e52008-11-12 09:44:48 +00006310}
Chris Lattner05706e882008-07-11 18:11:29 +00006311
6312//===----------------------------------------------------------------------===//
Richard Smith027bf112011-11-17 22:56:20 +00006313// Member Pointer Evaluation
6314//===----------------------------------------------------------------------===//
6315
6316namespace {
6317class MemberPointerExprEvaluator
Aaron Ballman68af21c2014-01-03 19:26:43 +00006318 : public ExprEvaluatorBase<MemberPointerExprEvaluator> {
Richard Smith027bf112011-11-17 22:56:20 +00006319 MemberPtr &Result;
6320
6321 bool Success(const ValueDecl *D) {
6322 Result = MemberPtr(D);
6323 return true;
6324 }
6325public:
6326
6327 MemberPointerExprEvaluator(EvalInfo &Info, MemberPtr &Result)
6328 : ExprEvaluatorBaseTy(Info), Result(Result) {}
6329
Richard Smith2e312c82012-03-03 22:46:17 +00006330 bool Success(const APValue &V, const Expr *E) {
Richard Smith027bf112011-11-17 22:56:20 +00006331 Result.setFrom(V);
6332 return true;
6333 }
Richard Smithfddd3842011-12-30 21:15:51 +00006334 bool ZeroInitialization(const Expr *E) {
Craig Topper36250ad2014-05-12 05:36:57 +00006335 return Success((const ValueDecl*)nullptr);
Richard Smith027bf112011-11-17 22:56:20 +00006336 }
6337
6338 bool VisitCastExpr(const CastExpr *E);
6339 bool VisitUnaryAddrOf(const UnaryOperator *E);
6340};
6341} // end anonymous namespace
6342
6343static bool EvaluateMemberPointer(const Expr *E, MemberPtr &Result,
6344 EvalInfo &Info) {
6345 assert(E->isRValue() && E->getType()->isMemberPointerType());
6346 return MemberPointerExprEvaluator(Info, Result).Visit(E);
6347}
6348
6349bool MemberPointerExprEvaluator::VisitCastExpr(const CastExpr *E) {
6350 switch (E->getCastKind()) {
6351 default:
6352 return ExprEvaluatorBaseTy::VisitCastExpr(E);
6353
6354 case CK_NullToMemberPointer:
Richard Smith4051ff72012-04-08 08:02:07 +00006355 VisitIgnoredValue(E->getSubExpr());
Richard Smithfddd3842011-12-30 21:15:51 +00006356 return ZeroInitialization(E);
Richard Smith027bf112011-11-17 22:56:20 +00006357
6358 case CK_BaseToDerivedMemberPointer: {
6359 if (!Visit(E->getSubExpr()))
6360 return false;
6361 if (E->path_empty())
6362 return true;
6363 // Base-to-derived member pointer casts store the path in derived-to-base
6364 // order, so iterate backwards. The CXXBaseSpecifier also provides us with
6365 // the wrong end of the derived->base arc, so stagger the path by one class.
6366 typedef std::reverse_iterator<CastExpr::path_const_iterator> ReverseIter;
6367 for (ReverseIter PathI(E->path_end() - 1), PathE(E->path_begin());
6368 PathI != PathE; ++PathI) {
6369 assert(!(*PathI)->isVirtual() && "memptr cast through vbase");
6370 const CXXRecordDecl *Derived = (*PathI)->getType()->getAsCXXRecordDecl();
6371 if (!Result.castToDerived(Derived))
Richard Smithf57d8cb2011-12-09 22:58:01 +00006372 return Error(E);
Richard Smith027bf112011-11-17 22:56:20 +00006373 }
6374 const Type *FinalTy = E->getType()->castAs<MemberPointerType>()->getClass();
6375 if (!Result.castToDerived(FinalTy->getAsCXXRecordDecl()))
Richard Smithf57d8cb2011-12-09 22:58:01 +00006376 return Error(E);
Richard Smith027bf112011-11-17 22:56:20 +00006377 return true;
6378 }
6379
6380 case CK_DerivedToBaseMemberPointer:
6381 if (!Visit(E->getSubExpr()))
6382 return false;
6383 for (CastExpr::path_const_iterator PathI = E->path_begin(),
6384 PathE = E->path_end(); PathI != PathE; ++PathI) {
6385 assert(!(*PathI)->isVirtual() && "memptr cast through vbase");
6386 const CXXRecordDecl *Base = (*PathI)->getType()->getAsCXXRecordDecl();
6387 if (!Result.castToBase(Base))
Richard Smithf57d8cb2011-12-09 22:58:01 +00006388 return Error(E);
Richard Smith027bf112011-11-17 22:56:20 +00006389 }
6390 return true;
6391 }
6392}
6393
6394bool MemberPointerExprEvaluator::VisitUnaryAddrOf(const UnaryOperator *E) {
6395 // C++11 [expr.unary.op]p3 has very strict rules on how the address of a
6396 // member can be formed.
6397 return Success(cast<DeclRefExpr>(E->getSubExpr())->getDecl());
6398}
6399
6400//===----------------------------------------------------------------------===//
Richard Smithd62306a2011-11-10 06:34:14 +00006401// Record Evaluation
6402//===----------------------------------------------------------------------===//
6403
6404namespace {
6405 class RecordExprEvaluator
Aaron Ballman68af21c2014-01-03 19:26:43 +00006406 : public ExprEvaluatorBase<RecordExprEvaluator> {
Richard Smithd62306a2011-11-10 06:34:14 +00006407 const LValue &This;
6408 APValue &Result;
6409 public:
6410
6411 RecordExprEvaluator(EvalInfo &info, const LValue &This, APValue &Result)
6412 : ExprEvaluatorBaseTy(info), This(This), Result(Result) {}
6413
Richard Smith2e312c82012-03-03 22:46:17 +00006414 bool Success(const APValue &V, const Expr *E) {
Richard Smithb228a862012-02-15 02:18:13 +00006415 Result = V;
6416 return true;
Richard Smithd62306a2011-11-10 06:34:14 +00006417 }
Richard Smithb8348f52016-05-12 22:16:28 +00006418 bool ZeroInitialization(const Expr *E) {
6419 return ZeroInitialization(E, E->getType());
6420 }
6421 bool ZeroInitialization(const Expr *E, QualType T);
Richard Smithd62306a2011-11-10 06:34:14 +00006422
Richard Smith52a980a2015-08-28 02:43:42 +00006423 bool VisitCallExpr(const CallExpr *E) {
6424 return handleCallExpr(E, Result, &This);
6425 }
Richard Smithe97cbd72011-11-11 04:05:33 +00006426 bool VisitCastExpr(const CastExpr *E);
Richard Smithd62306a2011-11-10 06:34:14 +00006427 bool VisitInitListExpr(const InitListExpr *E);
Richard Smithb8348f52016-05-12 22:16:28 +00006428 bool VisitCXXConstructExpr(const CXXConstructExpr *E) {
6429 return VisitCXXConstructExpr(E, E->getType());
6430 }
Faisal Valic72a08c2017-01-09 03:02:53 +00006431 bool VisitLambdaExpr(const LambdaExpr *E);
Richard Smith5179eb72016-06-28 19:03:57 +00006432 bool VisitCXXInheritedCtorInitExpr(const CXXInheritedCtorInitExpr *E);
Richard Smithb8348f52016-05-12 22:16:28 +00006433 bool VisitCXXConstructExpr(const CXXConstructExpr *E, QualType T);
Richard Smithcc1b96d2013-06-12 22:31:48 +00006434 bool VisitCXXStdInitializerListExpr(const CXXStdInitializerListExpr *E);
Eric Fiselier0683c0e2018-05-07 21:07:10 +00006435
6436 bool VisitBinCmp(const BinaryOperator *E);
Richard Smithd62306a2011-11-10 06:34:14 +00006437 };
Alexander Kornienkoab9db512015-06-22 23:07:51 +00006438}
Richard Smithd62306a2011-11-10 06:34:14 +00006439
Richard Smithfddd3842011-12-30 21:15:51 +00006440/// Perform zero-initialization on an object of non-union class type.
6441/// C++11 [dcl.init]p5:
6442/// To zero-initialize an object or reference of type T means:
6443/// [...]
6444/// -- if T is a (possibly cv-qualified) non-union class type,
6445/// each non-static data member and each base-class subobject is
6446/// zero-initialized
Richard Smitha8105bc2012-01-06 16:39:00 +00006447static bool HandleClassZeroInitialization(EvalInfo &Info, const Expr *E,
6448 const RecordDecl *RD,
Richard Smithfddd3842011-12-30 21:15:51 +00006449 const LValue &This, APValue &Result) {
6450 assert(!RD->isUnion() && "Expected non-union class type");
6451 const CXXRecordDecl *CD = dyn_cast<CXXRecordDecl>(RD);
6452 Result = APValue(APValue::UninitStruct(), CD ? CD->getNumBases() : 0,
Aaron Ballman62e47c42014-03-10 13:43:55 +00006453 std::distance(RD->field_begin(), RD->field_end()));
Richard Smithfddd3842011-12-30 21:15:51 +00006454
John McCalld7bca762012-05-01 00:38:49 +00006455 if (RD->isInvalidDecl()) return false;
Richard Smithfddd3842011-12-30 21:15:51 +00006456 const ASTRecordLayout &Layout = Info.Ctx.getASTRecordLayout(RD);
6457
6458 if (CD) {
6459 unsigned Index = 0;
6460 for (CXXRecordDecl::base_class_const_iterator I = CD->bases_begin(),
Richard Smitha8105bc2012-01-06 16:39:00 +00006461 End = CD->bases_end(); I != End; ++I, ++Index) {
Richard Smithfddd3842011-12-30 21:15:51 +00006462 const CXXRecordDecl *Base = I->getType()->getAsCXXRecordDecl();
6463 LValue Subobject = This;
John McCalld7bca762012-05-01 00:38:49 +00006464 if (!HandleLValueDirectBase(Info, E, Subobject, CD, Base, &Layout))
6465 return false;
Richard Smitha8105bc2012-01-06 16:39:00 +00006466 if (!HandleClassZeroInitialization(Info, E, Base, Subobject,
Richard Smithfddd3842011-12-30 21:15:51 +00006467 Result.getStructBase(Index)))
6468 return false;
6469 }
6470 }
6471
Aaron Ballmane8a8bae2014-03-08 20:12:42 +00006472 for (const auto *I : RD->fields()) {
Richard Smithfddd3842011-12-30 21:15:51 +00006473 // -- if T is a reference type, no initialization is performed.
David Blaikie2d7c57e2012-04-30 02:36:29 +00006474 if (I->getType()->isReferenceType())
Richard Smithfddd3842011-12-30 21:15:51 +00006475 continue;
6476
6477 LValue Subobject = This;
Aaron Ballmane8a8bae2014-03-08 20:12:42 +00006478 if (!HandleLValueMember(Info, E, Subobject, I, &Layout))
John McCalld7bca762012-05-01 00:38:49 +00006479 return false;
Richard Smithfddd3842011-12-30 21:15:51 +00006480
David Blaikie2d7c57e2012-04-30 02:36:29 +00006481 ImplicitValueInitExpr VIE(I->getType());
Richard Smithb228a862012-02-15 02:18:13 +00006482 if (!EvaluateInPlace(
David Blaikie2d7c57e2012-04-30 02:36:29 +00006483 Result.getStructField(I->getFieldIndex()), Info, Subobject, &VIE))
Richard Smithfddd3842011-12-30 21:15:51 +00006484 return false;
6485 }
6486
6487 return true;
6488}
6489
Richard Smithb8348f52016-05-12 22:16:28 +00006490bool RecordExprEvaluator::ZeroInitialization(const Expr *E, QualType T) {
6491 const RecordDecl *RD = T->castAs<RecordType>()->getDecl();
John McCall3c79d882012-04-26 18:10:01 +00006492 if (RD->isInvalidDecl()) return false;
Richard Smithfddd3842011-12-30 21:15:51 +00006493 if (RD->isUnion()) {
6494 // C++11 [dcl.init]p5: If T is a (possibly cv-qualified) union type, the
6495 // object's first non-static named data member is zero-initialized
6496 RecordDecl::field_iterator I = RD->field_begin();
6497 if (I == RD->field_end()) {
Craig Topper36250ad2014-05-12 05:36:57 +00006498 Result = APValue((const FieldDecl*)nullptr);
Richard Smithfddd3842011-12-30 21:15:51 +00006499 return true;
6500 }
6501
6502 LValue Subobject = This;
David Blaikie40ed2972012-06-06 20:45:41 +00006503 if (!HandleLValueMember(Info, E, Subobject, *I))
John McCalld7bca762012-05-01 00:38:49 +00006504 return false;
David Blaikie40ed2972012-06-06 20:45:41 +00006505 Result = APValue(*I);
David Blaikie2d7c57e2012-04-30 02:36:29 +00006506 ImplicitValueInitExpr VIE(I->getType());
Richard Smithb228a862012-02-15 02:18:13 +00006507 return EvaluateInPlace(Result.getUnionValue(), Info, Subobject, &VIE);
Richard Smithfddd3842011-12-30 21:15:51 +00006508 }
6509
Richard Smith5d108602012-02-17 00:44:16 +00006510 if (isa<CXXRecordDecl>(RD) && cast<CXXRecordDecl>(RD)->getNumVBases()) {
Faisal Valie690b7a2016-07-02 22:34:24 +00006511 Info.FFDiag(E, diag::note_constexpr_virtual_base) << RD;
Richard Smith5d108602012-02-17 00:44:16 +00006512 return false;
6513 }
6514
Richard Smitha8105bc2012-01-06 16:39:00 +00006515 return HandleClassZeroInitialization(Info, E, RD, This, Result);
Richard Smithfddd3842011-12-30 21:15:51 +00006516}
6517
Richard Smithe97cbd72011-11-11 04:05:33 +00006518bool RecordExprEvaluator::VisitCastExpr(const CastExpr *E) {
6519 switch (E->getCastKind()) {
6520 default:
6521 return ExprEvaluatorBaseTy::VisitCastExpr(E);
6522
6523 case CK_ConstructorConversion:
6524 return Visit(E->getSubExpr());
6525
6526 case CK_DerivedToBase:
6527 case CK_UncheckedDerivedToBase: {
Richard Smith2e312c82012-03-03 22:46:17 +00006528 APValue DerivedObject;
Richard Smithf57d8cb2011-12-09 22:58:01 +00006529 if (!Evaluate(DerivedObject, Info, E->getSubExpr()))
Richard Smithe97cbd72011-11-11 04:05:33 +00006530 return false;
Richard Smithf57d8cb2011-12-09 22:58:01 +00006531 if (!DerivedObject.isStruct())
6532 return Error(E->getSubExpr());
Richard Smithe97cbd72011-11-11 04:05:33 +00006533
6534 // Derived-to-base rvalue conversion: just slice off the derived part.
6535 APValue *Value = &DerivedObject;
6536 const CXXRecordDecl *RD = E->getSubExpr()->getType()->getAsCXXRecordDecl();
6537 for (CastExpr::path_const_iterator PathI = E->path_begin(),
6538 PathE = E->path_end(); PathI != PathE; ++PathI) {
6539 assert(!(*PathI)->isVirtual() && "record rvalue with virtual base");
6540 const CXXRecordDecl *Base = (*PathI)->getType()->getAsCXXRecordDecl();
6541 Value = &Value->getStructBase(getBaseIndex(RD, Base));
6542 RD = Base;
6543 }
6544 Result = *Value;
6545 return true;
6546 }
6547 }
6548}
6549
Richard Smithd62306a2011-11-10 06:34:14 +00006550bool RecordExprEvaluator::VisitInitListExpr(const InitListExpr *E) {
Richard Smith122f88d2016-12-06 23:52:28 +00006551 if (E->isTransparent())
6552 return Visit(E->getInit(0));
6553
Richard Smithd62306a2011-11-10 06:34:14 +00006554 const RecordDecl *RD = E->getType()->castAs<RecordType>()->getDecl();
John McCall3c79d882012-04-26 18:10:01 +00006555 if (RD->isInvalidDecl()) return false;
Richard Smithd62306a2011-11-10 06:34:14 +00006556 const ASTRecordLayout &Layout = Info.Ctx.getASTRecordLayout(RD);
6557
6558 if (RD->isUnion()) {
Richard Smith9eae7232012-01-12 18:54:33 +00006559 const FieldDecl *Field = E->getInitializedFieldInUnion();
6560 Result = APValue(Field);
6561 if (!Field)
Richard Smithd62306a2011-11-10 06:34:14 +00006562 return true;
Richard Smith9eae7232012-01-12 18:54:33 +00006563
6564 // If the initializer list for a union does not contain any elements, the
6565 // first element of the union is value-initialized.
Richard Smith852c9db2013-04-20 22:23:05 +00006566 // FIXME: The element should be initialized from an initializer list.
6567 // Is this difference ever observable for initializer lists which
6568 // we don't build?
Richard Smith9eae7232012-01-12 18:54:33 +00006569 ImplicitValueInitExpr VIE(Field->getType());
6570 const Expr *InitExpr = E->getNumInits() ? E->getInit(0) : &VIE;
6571
Richard Smithd62306a2011-11-10 06:34:14 +00006572 LValue Subobject = This;
John McCalld7bca762012-05-01 00:38:49 +00006573 if (!HandleLValueMember(Info, InitExpr, Subobject, Field, &Layout))
6574 return false;
Richard Smith852c9db2013-04-20 22:23:05 +00006575
6576 // Temporarily override This, in case there's a CXXDefaultInitExpr in here.
6577 ThisOverrideRAII ThisOverride(*Info.CurrentCall, &This,
6578 isa<CXXDefaultInitExpr>(InitExpr));
6579
Richard Smithb228a862012-02-15 02:18:13 +00006580 return EvaluateInPlace(Result.getUnionValue(), Info, Subobject, InitExpr);
Richard Smithd62306a2011-11-10 06:34:14 +00006581 }
6582
Richard Smith872307e2016-03-08 22:17:41 +00006583 auto *CXXRD = dyn_cast<CXXRecordDecl>(RD);
Richard Smithc0d04a22016-05-25 22:06:25 +00006584 if (Result.isUninit())
6585 Result = APValue(APValue::UninitStruct(), CXXRD ? CXXRD->getNumBases() : 0,
6586 std::distance(RD->field_begin(), RD->field_end()));
Richard Smithd62306a2011-11-10 06:34:14 +00006587 unsigned ElementNo = 0;
Richard Smith253c2a32012-01-27 01:14:48 +00006588 bool Success = true;
Richard Smith872307e2016-03-08 22:17:41 +00006589
6590 // Initialize base classes.
6591 if (CXXRD) {
6592 for (const auto &Base : CXXRD->bases()) {
6593 assert(ElementNo < E->getNumInits() && "missing init for base class");
6594 const Expr *Init = E->getInit(ElementNo);
6595
6596 LValue Subobject = This;
6597 if (!HandleLValueBase(Info, Init, Subobject, CXXRD, &Base))
6598 return false;
6599
6600 APValue &FieldVal = Result.getStructBase(ElementNo);
6601 if (!EvaluateInPlace(FieldVal, Info, Subobject, Init)) {
George Burgess IVa145e252016-05-25 22:38:36 +00006602 if (!Info.noteFailure())
Richard Smith872307e2016-03-08 22:17:41 +00006603 return false;
6604 Success = false;
6605 }
6606 ++ElementNo;
6607 }
6608 }
6609
6610 // Initialize members.
Aaron Ballmane8a8bae2014-03-08 20:12:42 +00006611 for (const auto *Field : RD->fields()) {
Richard Smithd62306a2011-11-10 06:34:14 +00006612 // Anonymous bit-fields are not considered members of the class for
6613 // purposes of aggregate initialization.
6614 if (Field->isUnnamedBitfield())
6615 continue;
6616
6617 LValue Subobject = This;
Richard Smithd62306a2011-11-10 06:34:14 +00006618
Richard Smith253c2a32012-01-27 01:14:48 +00006619 bool HaveInit = ElementNo < E->getNumInits();
6620
6621 // FIXME: Diagnostics here should point to the end of the initializer
6622 // list, not the start.
John McCalld7bca762012-05-01 00:38:49 +00006623 if (!HandleLValueMember(Info, HaveInit ? E->getInit(ElementNo) : E,
Aaron Ballmane8a8bae2014-03-08 20:12:42 +00006624 Subobject, Field, &Layout))
John McCalld7bca762012-05-01 00:38:49 +00006625 return false;
Richard Smith253c2a32012-01-27 01:14:48 +00006626
6627 // Perform an implicit value-initialization for members beyond the end of
6628 // the initializer list.
6629 ImplicitValueInitExpr VIE(HaveInit ? Info.Ctx.IntTy : Field->getType());
Richard Smith852c9db2013-04-20 22:23:05 +00006630 const Expr *Init = HaveInit ? E->getInit(ElementNo++) : &VIE;
Richard Smith253c2a32012-01-27 01:14:48 +00006631
Richard Smith852c9db2013-04-20 22:23:05 +00006632 // Temporarily override This, in case there's a CXXDefaultInitExpr in here.
6633 ThisOverrideRAII ThisOverride(*Info.CurrentCall, &This,
6634 isa<CXXDefaultInitExpr>(Init));
6635
Richard Smith49ca8aa2013-08-06 07:09:20 +00006636 APValue &FieldVal = Result.getStructField(Field->getFieldIndex());
6637 if (!EvaluateInPlace(FieldVal, Info, Subobject, Init) ||
6638 (Field->isBitField() && !truncateBitfieldValue(Info, Init,
Aaron Ballmane8a8bae2014-03-08 20:12:42 +00006639 FieldVal, Field))) {
George Burgess IVa145e252016-05-25 22:38:36 +00006640 if (!Info.noteFailure())
Richard Smithd62306a2011-11-10 06:34:14 +00006641 return false;
Richard Smith253c2a32012-01-27 01:14:48 +00006642 Success = false;
Richard Smithd62306a2011-11-10 06:34:14 +00006643 }
6644 }
6645
Richard Smith253c2a32012-01-27 01:14:48 +00006646 return Success;
Richard Smithd62306a2011-11-10 06:34:14 +00006647}
6648
Richard Smithb8348f52016-05-12 22:16:28 +00006649bool RecordExprEvaluator::VisitCXXConstructExpr(const CXXConstructExpr *E,
6650 QualType T) {
6651 // Note that E's type is not necessarily the type of our class here; we might
6652 // be initializing an array element instead.
Richard Smithd62306a2011-11-10 06:34:14 +00006653 const CXXConstructorDecl *FD = E->getConstructor();
John McCall3c79d882012-04-26 18:10:01 +00006654 if (FD->isInvalidDecl() || FD->getParent()->isInvalidDecl()) return false;
6655
Richard Smithfddd3842011-12-30 21:15:51 +00006656 bool ZeroInit = E->requiresZeroInitialization();
6657 if (CheckTrivialDefaultConstructor(Info, E->getExprLoc(), FD, ZeroInit)) {
Richard Smith9eae7232012-01-12 18:54:33 +00006658 // If we've already performed zero-initialization, we're already done.
6659 if (!Result.isUninit())
6660 return true;
6661
Richard Smithda3f4fd2014-03-05 23:32:50 +00006662 // We can get here in two different ways:
6663 // 1) We're performing value-initialization, and should zero-initialize
6664 // the object, or
6665 // 2) We're performing default-initialization of an object with a trivial
6666 // constexpr default constructor, in which case we should start the
6667 // lifetimes of all the base subobjects (there can be no data member
6668 // subobjects in this case) per [basic.life]p1.
6669 // Either way, ZeroInitialization is appropriate.
Richard Smithb8348f52016-05-12 22:16:28 +00006670 return ZeroInitialization(E, T);
Richard Smithcc36f692011-12-22 02:22:31 +00006671 }
6672
Craig Topper36250ad2014-05-12 05:36:57 +00006673 const FunctionDecl *Definition = nullptr;
Olivier Goffart8bc0caa2e2016-02-12 12:34:44 +00006674 auto Body = FD->getBody(Definition);
Richard Smithd62306a2011-11-10 06:34:14 +00006675
Olivier Goffart8bc0caa2e2016-02-12 12:34:44 +00006676 if (!CheckConstexprFunction(Info, E->getExprLoc(), FD, Definition, Body))
Richard Smith357362d2011-12-13 06:39:58 +00006677 return false;
Richard Smithd62306a2011-11-10 06:34:14 +00006678
Richard Smith1bc5c2c2012-01-10 04:32:03 +00006679 // Avoid materializing a temporary for an elidable copy/move constructor.
Richard Smithfddd3842011-12-30 21:15:51 +00006680 if (E->isElidable() && !ZeroInit)
Richard Smithd62306a2011-11-10 06:34:14 +00006681 if (const MaterializeTemporaryExpr *ME
6682 = dyn_cast<MaterializeTemporaryExpr>(E->getArg(0)))
6683 return Visit(ME->GetTemporaryExpr());
6684
Richard Smithb8348f52016-05-12 22:16:28 +00006685 if (ZeroInit && !ZeroInitialization(E, T))
Richard Smithfddd3842011-12-30 21:15:51 +00006686 return false;
6687
Craig Topper5fc8fc22014-08-27 06:28:36 +00006688 auto Args = llvm::makeArrayRef(E->getArgs(), E->getNumArgs());
Richard Smith5179eb72016-06-28 19:03:57 +00006689 return HandleConstructorCall(E, This, Args,
6690 cast<CXXConstructorDecl>(Definition), Info,
6691 Result);
6692}
6693
6694bool RecordExprEvaluator::VisitCXXInheritedCtorInitExpr(
6695 const CXXInheritedCtorInitExpr *E) {
6696 if (!Info.CurrentCall) {
6697 assert(Info.checkingPotentialConstantExpression());
6698 return false;
6699 }
6700
6701 const CXXConstructorDecl *FD = E->getConstructor();
6702 if (FD->isInvalidDecl() || FD->getParent()->isInvalidDecl())
6703 return false;
6704
6705 const FunctionDecl *Definition = nullptr;
6706 auto Body = FD->getBody(Definition);
6707
6708 if (!CheckConstexprFunction(Info, E->getExprLoc(), FD, Definition, Body))
6709 return false;
6710
6711 return HandleConstructorCall(E, This, Info.CurrentCall->Arguments,
Richard Smithf57d8cb2011-12-09 22:58:01 +00006712 cast<CXXConstructorDecl>(Definition), Info,
6713 Result);
Richard Smithd62306a2011-11-10 06:34:14 +00006714}
6715
Richard Smithcc1b96d2013-06-12 22:31:48 +00006716bool RecordExprEvaluator::VisitCXXStdInitializerListExpr(
6717 const CXXStdInitializerListExpr *E) {
6718 const ConstantArrayType *ArrayType =
6719 Info.Ctx.getAsConstantArrayType(E->getSubExpr()->getType());
6720
6721 LValue Array;
6722 if (!EvaluateLValue(E->getSubExpr(), Array, Info))
6723 return false;
6724
6725 // Get a pointer to the first element of the array.
6726 Array.addArray(Info, E, ArrayType);
6727
6728 // FIXME: Perform the checks on the field types in SemaInit.
6729 RecordDecl *Record = E->getType()->castAs<RecordType>()->getDecl();
6730 RecordDecl::field_iterator Field = Record->field_begin();
6731 if (Field == Record->field_end())
6732 return Error(E);
6733
6734 // Start pointer.
6735 if (!Field->getType()->isPointerType() ||
6736 !Info.Ctx.hasSameType(Field->getType()->getPointeeType(),
6737 ArrayType->getElementType()))
6738 return Error(E);
6739
6740 // FIXME: What if the initializer_list type has base classes, etc?
6741 Result = APValue(APValue::UninitStruct(), 0, 2);
6742 Array.moveInto(Result.getStructField(0));
6743
6744 if (++Field == Record->field_end())
6745 return Error(E);
6746
6747 if (Field->getType()->isPointerType() &&
6748 Info.Ctx.hasSameType(Field->getType()->getPointeeType(),
6749 ArrayType->getElementType())) {
6750 // End pointer.
6751 if (!HandleLValueArrayAdjustment(Info, E, Array,
6752 ArrayType->getElementType(),
6753 ArrayType->getSize().getZExtValue()))
6754 return false;
6755 Array.moveInto(Result.getStructField(1));
6756 } else if (Info.Ctx.hasSameType(Field->getType(), Info.Ctx.getSizeType()))
6757 // Length.
6758 Result.getStructField(1) = APValue(APSInt(ArrayType->getSize()));
6759 else
6760 return Error(E);
6761
6762 if (++Field != Record->field_end())
6763 return Error(E);
6764
6765 return true;
6766}
6767
Faisal Valic72a08c2017-01-09 03:02:53 +00006768bool RecordExprEvaluator::VisitLambdaExpr(const LambdaExpr *E) {
6769 const CXXRecordDecl *ClosureClass = E->getLambdaClass();
6770 if (ClosureClass->isInvalidDecl()) return false;
6771
6772 if (Info.checkingPotentialConstantExpression()) return true;
Fangrui Song6907ce22018-07-30 19:24:48 +00006773
Faisal Vali051e3a22017-02-16 04:12:21 +00006774 const size_t NumFields =
6775 std::distance(ClosureClass->field_begin(), ClosureClass->field_end());
Benjamin Krameraad1bdc2017-02-16 14:08:41 +00006776
6777 assert(NumFields == (size_t)std::distance(E->capture_init_begin(),
6778 E->capture_init_end()) &&
6779 "The number of lambda capture initializers should equal the number of "
6780 "fields within the closure type");
6781
Faisal Vali051e3a22017-02-16 04:12:21 +00006782 Result = APValue(APValue::UninitStruct(), /*NumBases*/0, NumFields);
6783 // Iterate through all the lambda's closure object's fields and initialize
6784 // them.
6785 auto *CaptureInitIt = E->capture_init_begin();
6786 const LambdaCapture *CaptureIt = ClosureClass->captures_begin();
6787 bool Success = true;
6788 for (const auto *Field : ClosureClass->fields()) {
6789 assert(CaptureInitIt != E->capture_init_end());
6790 // Get the initializer for this field
6791 Expr *const CurFieldInit = *CaptureInitIt++;
Fangrui Song6907ce22018-07-30 19:24:48 +00006792
Faisal Vali051e3a22017-02-16 04:12:21 +00006793 // If there is no initializer, either this is a VLA or an error has
6794 // occurred.
6795 if (!CurFieldInit)
6796 return Error(E);
6797
6798 APValue &FieldVal = Result.getStructField(Field->getFieldIndex());
6799 if (!EvaluateInPlace(FieldVal, Info, This, CurFieldInit)) {
6800 if (!Info.keepEvaluatingAfterFailure())
6801 return false;
6802 Success = false;
6803 }
6804 ++CaptureIt;
Faisal Valic72a08c2017-01-09 03:02:53 +00006805 }
Faisal Vali051e3a22017-02-16 04:12:21 +00006806 return Success;
Faisal Valic72a08c2017-01-09 03:02:53 +00006807}
6808
Richard Smithd62306a2011-11-10 06:34:14 +00006809static bool EvaluateRecord(const Expr *E, const LValue &This,
6810 APValue &Result, EvalInfo &Info) {
6811 assert(E->isRValue() && E->getType()->isRecordType() &&
Richard Smithd62306a2011-11-10 06:34:14 +00006812 "can't evaluate expression as a record rvalue");
6813 return RecordExprEvaluator(Info, This, Result).Visit(E);
6814}
6815
6816//===----------------------------------------------------------------------===//
Richard Smith027bf112011-11-17 22:56:20 +00006817// Temporary Evaluation
6818//
6819// Temporaries are represented in the AST as rvalues, but generally behave like
6820// lvalues. The full-object of which the temporary is a subobject is implicitly
6821// materialized so that a reference can bind to it.
6822//===----------------------------------------------------------------------===//
6823namespace {
6824class TemporaryExprEvaluator
6825 : public LValueExprEvaluatorBase<TemporaryExprEvaluator> {
6826public:
6827 TemporaryExprEvaluator(EvalInfo &Info, LValue &Result) :
George Burgess IVf9013bf2017-02-10 22:52:29 +00006828 LValueExprEvaluatorBaseTy(Info, Result, false) {}
Richard Smith027bf112011-11-17 22:56:20 +00006829
6830 /// Visit an expression which constructs the value of this temporary.
6831 bool VisitConstructExpr(const Expr *E) {
Akira Hatanaka4e2698c2018-04-10 05:15:01 +00006832 APValue &Value = createTemporary(E, false, Result, *Info.CurrentCall);
6833 return EvaluateInPlace(Value, Info, Result, E);
Richard Smith027bf112011-11-17 22:56:20 +00006834 }
6835
6836 bool VisitCastExpr(const CastExpr *E) {
6837 switch (E->getCastKind()) {
6838 default:
6839 return LValueExprEvaluatorBaseTy::VisitCastExpr(E);
6840
6841 case CK_ConstructorConversion:
6842 return VisitConstructExpr(E->getSubExpr());
6843 }
6844 }
6845 bool VisitInitListExpr(const InitListExpr *E) {
6846 return VisitConstructExpr(E);
6847 }
6848 bool VisitCXXConstructExpr(const CXXConstructExpr *E) {
6849 return VisitConstructExpr(E);
6850 }
6851 bool VisitCallExpr(const CallExpr *E) {
6852 return VisitConstructExpr(E);
6853 }
Richard Smith513955c2014-12-17 19:24:30 +00006854 bool VisitCXXStdInitializerListExpr(const CXXStdInitializerListExpr *E) {
6855 return VisitConstructExpr(E);
6856 }
Faisal Valic72a08c2017-01-09 03:02:53 +00006857 bool VisitLambdaExpr(const LambdaExpr *E) {
6858 return VisitConstructExpr(E);
6859 }
Richard Smith027bf112011-11-17 22:56:20 +00006860};
6861} // end anonymous namespace
6862
6863/// Evaluate an expression of record type as a temporary.
6864static bool EvaluateTemporary(const Expr *E, LValue &Result, EvalInfo &Info) {
Richard Smithd0b111c2011-12-19 22:01:37 +00006865 assert(E->isRValue() && E->getType()->isRecordType());
Richard Smith027bf112011-11-17 22:56:20 +00006866 return TemporaryExprEvaluator(Info, Result).Visit(E);
6867}
6868
6869//===----------------------------------------------------------------------===//
Nate Begeman2f2bdeb2009-01-18 03:20:47 +00006870// Vector Evaluation
6871//===----------------------------------------------------------------------===//
6872
6873namespace {
Benjamin Kramer26222b62009-11-28 19:03:38 +00006874 class VectorExprEvaluator
Aaron Ballman68af21c2014-01-03 19:26:43 +00006875 : public ExprEvaluatorBase<VectorExprEvaluator> {
Richard Smith2d406342011-10-22 21:10:00 +00006876 APValue &Result;
Nate Begeman2f2bdeb2009-01-18 03:20:47 +00006877 public:
Mike Stump11289f42009-09-09 15:08:12 +00006878
Richard Smith2d406342011-10-22 21:10:00 +00006879 VectorExprEvaluator(EvalInfo &info, APValue &Result)
6880 : ExprEvaluatorBaseTy(info), Result(Result) {}
Mike Stump11289f42009-09-09 15:08:12 +00006881
Craig Topper9798b932015-09-29 04:30:05 +00006882 bool Success(ArrayRef<APValue> V, const Expr *E) {
Richard Smith2d406342011-10-22 21:10:00 +00006883 assert(V.size() == E->getType()->castAs<VectorType>()->getNumElements());
6884 // FIXME: remove this APValue copy.
6885 Result = APValue(V.data(), V.size());
6886 return true;
6887 }
Richard Smith2e312c82012-03-03 22:46:17 +00006888 bool Success(const APValue &V, const Expr *E) {
Richard Smithed5165f2011-11-04 05:33:44 +00006889 assert(V.isVector());
Richard Smith2d406342011-10-22 21:10:00 +00006890 Result = V;
6891 return true;
6892 }
Richard Smithfddd3842011-12-30 21:15:51 +00006893 bool ZeroInitialization(const Expr *E);
Mike Stump11289f42009-09-09 15:08:12 +00006894
Richard Smith2d406342011-10-22 21:10:00 +00006895 bool VisitUnaryReal(const UnaryOperator *E)
Eli Friedman3ae59112009-02-23 04:23:56 +00006896 { return Visit(E->getSubExpr()); }
Richard Smith2d406342011-10-22 21:10:00 +00006897 bool VisitCastExpr(const CastExpr* E);
Richard Smith2d406342011-10-22 21:10:00 +00006898 bool VisitInitListExpr(const InitListExpr *E);
6899 bool VisitUnaryImag(const UnaryOperator *E);
Eli Friedman3ae59112009-02-23 04:23:56 +00006900 // FIXME: Missing: unary -, unary ~, binary add/sub/mul/div,
Eli Friedmanc2b50172009-02-22 11:46:18 +00006901 // binary comparisons, binary and/or/xor,
Eli Friedman3ae59112009-02-23 04:23:56 +00006902 // shufflevector, ExtVectorElementExpr
Nate Begeman2f2bdeb2009-01-18 03:20:47 +00006903 };
6904} // end anonymous namespace
6905
6906static bool EvaluateVector(const Expr* E, APValue& Result, EvalInfo &Info) {
Richard Smith11562c52011-10-28 17:51:58 +00006907 assert(E->isRValue() && E->getType()->isVectorType() &&"not a vector rvalue");
Richard Smith2d406342011-10-22 21:10:00 +00006908 return VectorExprEvaluator(Info, Result).Visit(E);
Nate Begeman2f2bdeb2009-01-18 03:20:47 +00006909}
6910
George Burgess IV533ff002015-12-11 00:23:35 +00006911bool VectorExprEvaluator::VisitCastExpr(const CastExpr *E) {
Richard Smith2d406342011-10-22 21:10:00 +00006912 const VectorType *VTy = E->getType()->castAs<VectorType>();
Nate Begemanef1a7fa2009-07-01 07:50:47 +00006913 unsigned NElts = VTy->getNumElements();
Mike Stump11289f42009-09-09 15:08:12 +00006914
Richard Smith161f09a2011-12-06 22:44:34 +00006915 const Expr *SE = E->getSubExpr();
Nate Begeman2ffd3842009-06-26 18:22:18 +00006916 QualType SETy = SE->getType();
Nate Begeman2f2bdeb2009-01-18 03:20:47 +00006917
Eli Friedmanc757de22011-03-25 00:43:55 +00006918 switch (E->getCastKind()) {
6919 case CK_VectorSplat: {
Richard Smith2d406342011-10-22 21:10:00 +00006920 APValue Val = APValue();
Eli Friedmanc757de22011-03-25 00:43:55 +00006921 if (SETy->isIntegerType()) {
6922 APSInt IntResult;
6923 if (!EvaluateInteger(SE, IntResult, Info))
George Burgess IV533ff002015-12-11 00:23:35 +00006924 return false;
6925 Val = APValue(std::move(IntResult));
Eli Friedmanc757de22011-03-25 00:43:55 +00006926 } else if (SETy->isRealFloatingType()) {
George Burgess IV533ff002015-12-11 00:23:35 +00006927 APFloat FloatResult(0.0);
6928 if (!EvaluateFloat(SE, FloatResult, Info))
6929 return false;
6930 Val = APValue(std::move(FloatResult));
Eli Friedmanc757de22011-03-25 00:43:55 +00006931 } else {
Richard Smith2d406342011-10-22 21:10:00 +00006932 return Error(E);
Eli Friedmanc757de22011-03-25 00:43:55 +00006933 }
Nate Begemanef1a7fa2009-07-01 07:50:47 +00006934
6935 // Splat and create vector APValue.
Richard Smith2d406342011-10-22 21:10:00 +00006936 SmallVector<APValue, 4> Elts(NElts, Val);
6937 return Success(Elts, E);
Nate Begeman2ffd3842009-06-26 18:22:18 +00006938 }
Eli Friedman803acb32011-12-22 03:51:45 +00006939 case CK_BitCast: {
6940 // Evaluate the operand into an APInt we can extract from.
6941 llvm::APInt SValInt;
6942 if (!EvalAndBitcastToAPInt(Info, SE, SValInt))
6943 return false;
6944 // Extract the elements
6945 QualType EltTy = VTy->getElementType();
6946 unsigned EltSize = Info.Ctx.getTypeSize(EltTy);
6947 bool BigEndian = Info.Ctx.getTargetInfo().isBigEndian();
6948 SmallVector<APValue, 4> Elts;
6949 if (EltTy->isRealFloatingType()) {
6950 const llvm::fltSemantics &Sem = Info.Ctx.getFloatTypeSemantics(EltTy);
Eli Friedman803acb32011-12-22 03:51:45 +00006951 unsigned FloatEltSize = EltSize;
Stephan Bergmann17c7f702016-12-14 11:57:17 +00006952 if (&Sem == &APFloat::x87DoubleExtended())
Eli Friedman803acb32011-12-22 03:51:45 +00006953 FloatEltSize = 80;
6954 for (unsigned i = 0; i < NElts; i++) {
6955 llvm::APInt Elt;
6956 if (BigEndian)
6957 Elt = SValInt.rotl(i*EltSize+FloatEltSize).trunc(FloatEltSize);
6958 else
6959 Elt = SValInt.rotr(i*EltSize).trunc(FloatEltSize);
Tim Northover178723a2013-01-22 09:46:51 +00006960 Elts.push_back(APValue(APFloat(Sem, Elt)));
Eli Friedman803acb32011-12-22 03:51:45 +00006961 }
6962 } else if (EltTy->isIntegerType()) {
6963 for (unsigned i = 0; i < NElts; i++) {
6964 llvm::APInt Elt;
6965 if (BigEndian)
6966 Elt = SValInt.rotl(i*EltSize+EltSize).zextOrTrunc(EltSize);
6967 else
6968 Elt = SValInt.rotr(i*EltSize).zextOrTrunc(EltSize);
6969 Elts.push_back(APValue(APSInt(Elt, EltTy->isSignedIntegerType())));
6970 }
6971 } else {
6972 return Error(E);
6973 }
6974 return Success(Elts, E);
6975 }
Eli Friedmanc757de22011-03-25 00:43:55 +00006976 default:
Richard Smith11562c52011-10-28 17:51:58 +00006977 return ExprEvaluatorBaseTy::VisitCastExpr(E);
Eli Friedmanc757de22011-03-25 00:43:55 +00006978 }
Nate Begeman2f2bdeb2009-01-18 03:20:47 +00006979}
6980
Richard Smith2d406342011-10-22 21:10:00 +00006981bool
Nate Begeman2f2bdeb2009-01-18 03:20:47 +00006982VectorExprEvaluator::VisitInitListExpr(const InitListExpr *E) {
Richard Smith2d406342011-10-22 21:10:00 +00006983 const VectorType *VT = E->getType()->castAs<VectorType>();
Nate Begeman2f2bdeb2009-01-18 03:20:47 +00006984 unsigned NumInits = E->getNumInits();
Eli Friedman3ae59112009-02-23 04:23:56 +00006985 unsigned NumElements = VT->getNumElements();
Mike Stump11289f42009-09-09 15:08:12 +00006986
Nate Begeman2f2bdeb2009-01-18 03:20:47 +00006987 QualType EltTy = VT->getElementType();
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006988 SmallVector<APValue, 4> Elements;
Nate Begeman2f2bdeb2009-01-18 03:20:47 +00006989
Eli Friedmanb9c71292012-01-03 23:24:20 +00006990 // The number of initializers can be less than the number of
6991 // vector elements. For OpenCL, this can be due to nested vector
Fangrui Song6907ce22018-07-30 19:24:48 +00006992 // initialization. For GCC compatibility, missing trailing elements
Eli Friedmanb9c71292012-01-03 23:24:20 +00006993 // should be initialized with zeroes.
6994 unsigned CountInits = 0, CountElts = 0;
6995 while (CountElts < NumElements) {
6996 // Handle nested vector initialization.
Fangrui Song6907ce22018-07-30 19:24:48 +00006997 if (CountInits < NumInits
Eli Friedman1409e6e2013-09-17 04:07:02 +00006998 && E->getInit(CountInits)->getType()->isVectorType()) {
Eli Friedmanb9c71292012-01-03 23:24:20 +00006999 APValue v;
7000 if (!EvaluateVector(E->getInit(CountInits), v, Info))
7001 return Error(E);
7002 unsigned vlen = v.getVectorLength();
Fangrui Song6907ce22018-07-30 19:24:48 +00007003 for (unsigned j = 0; j < vlen; j++)
Eli Friedmanb9c71292012-01-03 23:24:20 +00007004 Elements.push_back(v.getVectorElt(j));
7005 CountElts += vlen;
7006 } else if (EltTy->isIntegerType()) {
Nate Begeman2f2bdeb2009-01-18 03:20:47 +00007007 llvm::APSInt sInt(32);
Eli Friedmanb9c71292012-01-03 23:24:20 +00007008 if (CountInits < NumInits) {
7009 if (!EvaluateInteger(E->getInit(CountInits), sInt, Info))
Richard Smithac2f0b12012-03-13 20:58:32 +00007010 return false;
Eli Friedmanb9c71292012-01-03 23:24:20 +00007011 } else // trailing integer zero.
7012 sInt = Info.Ctx.MakeIntValue(0, EltTy);
7013 Elements.push_back(APValue(sInt));
7014 CountElts++;
Nate Begeman2f2bdeb2009-01-18 03:20:47 +00007015 } else {
7016 llvm::APFloat f(0.0);
Eli Friedmanb9c71292012-01-03 23:24:20 +00007017 if (CountInits < NumInits) {
7018 if (!EvaluateFloat(E->getInit(CountInits), f, Info))
Richard Smithac2f0b12012-03-13 20:58:32 +00007019 return false;
Eli Friedmanb9c71292012-01-03 23:24:20 +00007020 } else // trailing float zero.
7021 f = APFloat::getZero(Info.Ctx.getFloatTypeSemantics(EltTy));
7022 Elements.push_back(APValue(f));
7023 CountElts++;
John McCall875679e2010-06-11 17:54:15 +00007024 }
Eli Friedmanb9c71292012-01-03 23:24:20 +00007025 CountInits++;
Nate Begeman2f2bdeb2009-01-18 03:20:47 +00007026 }
Richard Smith2d406342011-10-22 21:10:00 +00007027 return Success(Elements, E);
Nate Begeman2f2bdeb2009-01-18 03:20:47 +00007028}
7029
Richard Smith2d406342011-10-22 21:10:00 +00007030bool
Richard Smithfddd3842011-12-30 21:15:51 +00007031VectorExprEvaluator::ZeroInitialization(const Expr *E) {
Richard Smith2d406342011-10-22 21:10:00 +00007032 const VectorType *VT = E->getType()->getAs<VectorType>();
Eli Friedman3ae59112009-02-23 04:23:56 +00007033 QualType EltTy = VT->getElementType();
7034 APValue ZeroElement;
7035 if (EltTy->isIntegerType())
7036 ZeroElement = APValue(Info.Ctx.MakeIntValue(0, EltTy));
7037 else
7038 ZeroElement =
7039 APValue(APFloat::getZero(Info.Ctx.getFloatTypeSemantics(EltTy)));
7040
Chris Lattner0e62c1c2011-07-23 10:55:15 +00007041 SmallVector<APValue, 4> Elements(VT->getNumElements(), ZeroElement);
Richard Smith2d406342011-10-22 21:10:00 +00007042 return Success(Elements, E);
Eli Friedman3ae59112009-02-23 04:23:56 +00007043}
7044
Richard Smith2d406342011-10-22 21:10:00 +00007045bool VectorExprEvaluator::VisitUnaryImag(const UnaryOperator *E) {
Richard Smith4a678122011-10-24 18:44:57 +00007046 VisitIgnoredValue(E->getSubExpr());
Richard Smithfddd3842011-12-30 21:15:51 +00007047 return ZeroInitialization(E);
Eli Friedman3ae59112009-02-23 04:23:56 +00007048}
7049
Nate Begeman2f2bdeb2009-01-18 03:20:47 +00007050//===----------------------------------------------------------------------===//
Richard Smithf3e9e432011-11-07 09:22:26 +00007051// Array Evaluation
7052//===----------------------------------------------------------------------===//
7053
7054namespace {
7055 class ArrayExprEvaluator
Aaron Ballman68af21c2014-01-03 19:26:43 +00007056 : public ExprEvaluatorBase<ArrayExprEvaluator> {
Richard Smithd62306a2011-11-10 06:34:14 +00007057 const LValue &This;
Richard Smithf3e9e432011-11-07 09:22:26 +00007058 APValue &Result;
7059 public:
7060
Richard Smithd62306a2011-11-10 06:34:14 +00007061 ArrayExprEvaluator(EvalInfo &Info, const LValue &This, APValue &Result)
7062 : ExprEvaluatorBaseTy(Info), This(This), Result(Result) {}
Richard Smithf3e9e432011-11-07 09:22:26 +00007063
7064 bool Success(const APValue &V, const Expr *E) {
Richard Smith14a94132012-02-17 03:35:37 +00007065 assert((V.isArray() || V.isLValue()) &&
7066 "expected array or string literal");
Richard Smithf3e9e432011-11-07 09:22:26 +00007067 Result = V;
7068 return true;
7069 }
Richard Smithf3e9e432011-11-07 09:22:26 +00007070
Richard Smithfddd3842011-12-30 21:15:51 +00007071 bool ZeroInitialization(const Expr *E) {
Richard Smithd62306a2011-11-10 06:34:14 +00007072 const ConstantArrayType *CAT =
7073 Info.Ctx.getAsConstantArrayType(E->getType());
7074 if (!CAT)
Richard Smithf57d8cb2011-12-09 22:58:01 +00007075 return Error(E);
Richard Smithd62306a2011-11-10 06:34:14 +00007076
7077 Result = APValue(APValue::UninitArray(), 0,
7078 CAT->getSize().getZExtValue());
7079 if (!Result.hasArrayFiller()) return true;
7080
Richard Smithfddd3842011-12-30 21:15:51 +00007081 // Zero-initialize all elements.
Richard Smithd62306a2011-11-10 06:34:14 +00007082 LValue Subobject = This;
Richard Smitha8105bc2012-01-06 16:39:00 +00007083 Subobject.addArray(Info, E, CAT);
Richard Smithd62306a2011-11-10 06:34:14 +00007084 ImplicitValueInitExpr VIE(CAT->getElementType());
Richard Smithb228a862012-02-15 02:18:13 +00007085 return EvaluateInPlace(Result.getArrayFiller(), Info, Subobject, &VIE);
Richard Smithd62306a2011-11-10 06:34:14 +00007086 }
7087
Richard Smith52a980a2015-08-28 02:43:42 +00007088 bool VisitCallExpr(const CallExpr *E) {
7089 return handleCallExpr(E, Result, &This);
7090 }
Richard Smithf3e9e432011-11-07 09:22:26 +00007091 bool VisitInitListExpr(const InitListExpr *E);
Richard Smith410306b2016-12-12 02:53:20 +00007092 bool VisitArrayInitLoopExpr(const ArrayInitLoopExpr *E);
Richard Smith027bf112011-11-17 22:56:20 +00007093 bool VisitCXXConstructExpr(const CXXConstructExpr *E);
Richard Smith9543c5e2013-04-22 14:44:29 +00007094 bool VisitCXXConstructExpr(const CXXConstructExpr *E,
7095 const LValue &Subobject,
7096 APValue *Value, QualType Type);
Richard Smithf3e9e432011-11-07 09:22:26 +00007097 };
7098} // end anonymous namespace
7099
Richard Smithd62306a2011-11-10 06:34:14 +00007100static bool EvaluateArray(const Expr *E, const LValue &This,
7101 APValue &Result, EvalInfo &Info) {
Richard Smithfddd3842011-12-30 21:15:51 +00007102 assert(E->isRValue() && E->getType()->isArrayType() && "not an array rvalue");
Richard Smithd62306a2011-11-10 06:34:14 +00007103 return ArrayExprEvaluator(Info, This, Result).Visit(E);
Richard Smithf3e9e432011-11-07 09:22:26 +00007104}
7105
Ivan A. Kosarev01df5192018-02-14 13:10:35 +00007106// Return true iff the given array filler may depend on the element index.
7107static bool MaybeElementDependentArrayFiller(const Expr *FillerExpr) {
7108 // For now, just whitelist non-class value-initialization and initialization
7109 // lists comprised of them.
7110 if (isa<ImplicitValueInitExpr>(FillerExpr))
7111 return false;
7112 if (const InitListExpr *ILE = dyn_cast<InitListExpr>(FillerExpr)) {
7113 for (unsigned I = 0, E = ILE->getNumInits(); I != E; ++I) {
7114 if (MaybeElementDependentArrayFiller(ILE->getInit(I)))
7115 return true;
7116 }
7117 return false;
7118 }
7119 return true;
7120}
7121
Richard Smithf3e9e432011-11-07 09:22:26 +00007122bool ArrayExprEvaluator::VisitInitListExpr(const InitListExpr *E) {
7123 const ConstantArrayType *CAT = Info.Ctx.getAsConstantArrayType(E->getType());
7124 if (!CAT)
Richard Smithf57d8cb2011-12-09 22:58:01 +00007125 return Error(E);
Richard Smithf3e9e432011-11-07 09:22:26 +00007126
Richard Smithca2cfbf2011-12-22 01:07:19 +00007127 // C++11 [dcl.init.string]p1: A char array [...] can be initialized by [...]
7128 // an appropriately-typed string literal enclosed in braces.
Richard Smith9ec1e482012-04-15 02:50:59 +00007129 if (E->isStringLiteralInit()) {
Richard Smithca2cfbf2011-12-22 01:07:19 +00007130 LValue LV;
7131 if (!EvaluateLValue(E->getInit(0), LV, Info))
7132 return false;
Richard Smith2e312c82012-03-03 22:46:17 +00007133 APValue Val;
Richard Smith14a94132012-02-17 03:35:37 +00007134 LV.moveInto(Val);
7135 return Success(Val, E);
Richard Smithca2cfbf2011-12-22 01:07:19 +00007136 }
7137
Richard Smith253c2a32012-01-27 01:14:48 +00007138 bool Success = true;
7139
Richard Smith1b9f2eb2012-07-07 22:48:24 +00007140 assert((!Result.isArray() || Result.getArrayInitializedElts() == 0) &&
7141 "zero-initialized array shouldn't have any initialized elts");
7142 APValue Filler;
7143 if (Result.isArray() && Result.hasArrayFiller())
7144 Filler = Result.getArrayFiller();
7145
Richard Smith9543c5e2013-04-22 14:44:29 +00007146 unsigned NumEltsToInit = E->getNumInits();
7147 unsigned NumElts = CAT->getSize().getZExtValue();
Craig Topper36250ad2014-05-12 05:36:57 +00007148 const Expr *FillerExpr = E->hasArrayFiller() ? E->getArrayFiller() : nullptr;
Richard Smith9543c5e2013-04-22 14:44:29 +00007149
7150 // If the initializer might depend on the array index, run it for each
Ivan A. Kosarev01df5192018-02-14 13:10:35 +00007151 // array element.
7152 if (NumEltsToInit != NumElts && MaybeElementDependentArrayFiller(FillerExpr))
Richard Smith9543c5e2013-04-22 14:44:29 +00007153 NumEltsToInit = NumElts;
7154
Nicola Zaghen3538b392018-05-15 13:30:56 +00007155 LLVM_DEBUG(llvm::dbgs() << "The number of elements to initialize: "
7156 << NumEltsToInit << ".\n");
Ivan A. Kosarev01df5192018-02-14 13:10:35 +00007157
Richard Smith9543c5e2013-04-22 14:44:29 +00007158 Result = APValue(APValue::UninitArray(), NumEltsToInit, NumElts);
Richard Smith1b9f2eb2012-07-07 22:48:24 +00007159
7160 // If the array was previously zero-initialized, preserve the
7161 // zero-initialized values.
7162 if (!Filler.isUninit()) {
7163 for (unsigned I = 0, E = Result.getArrayInitializedElts(); I != E; ++I)
7164 Result.getArrayInitializedElt(I) = Filler;
7165 if (Result.hasArrayFiller())
7166 Result.getArrayFiller() = Filler;
7167 }
7168
Richard Smithd62306a2011-11-10 06:34:14 +00007169 LValue Subobject = This;
Richard Smitha8105bc2012-01-06 16:39:00 +00007170 Subobject.addArray(Info, E, CAT);
Richard Smith9543c5e2013-04-22 14:44:29 +00007171 for (unsigned Index = 0; Index != NumEltsToInit; ++Index) {
7172 const Expr *Init =
7173 Index < E->getNumInits() ? E->getInit(Index) : FillerExpr;
Richard Smithb228a862012-02-15 02:18:13 +00007174 if (!EvaluateInPlace(Result.getArrayInitializedElt(Index),
Richard Smith9543c5e2013-04-22 14:44:29 +00007175 Info, Subobject, Init) ||
7176 !HandleLValueArrayAdjustment(Info, Init, Subobject,
Richard Smith253c2a32012-01-27 01:14:48 +00007177 CAT->getElementType(), 1)) {
George Burgess IVa145e252016-05-25 22:38:36 +00007178 if (!Info.noteFailure())
Richard Smith253c2a32012-01-27 01:14:48 +00007179 return false;
7180 Success = false;
7181 }
Richard Smithd62306a2011-11-10 06:34:14 +00007182 }
Richard Smithf3e9e432011-11-07 09:22:26 +00007183
Richard Smith9543c5e2013-04-22 14:44:29 +00007184 if (!Result.hasArrayFiller())
7185 return Success;
7186
7187 // If we get here, we have a trivial filler, which we can just evaluate
7188 // once and splat over the rest of the array elements.
7189 assert(FillerExpr && "no array filler for incomplete init list");
7190 return EvaluateInPlace(Result.getArrayFiller(), Info, Subobject,
7191 FillerExpr) && Success;
Richard Smithf3e9e432011-11-07 09:22:26 +00007192}
7193
Richard Smith410306b2016-12-12 02:53:20 +00007194bool ArrayExprEvaluator::VisitArrayInitLoopExpr(const ArrayInitLoopExpr *E) {
7195 if (E->getCommonExpr() &&
7196 !Evaluate(Info.CurrentCall->createTemporary(E->getCommonExpr(), false),
7197 Info, E->getCommonExpr()->getSourceExpr()))
7198 return false;
7199
7200 auto *CAT = cast<ConstantArrayType>(E->getType()->castAsArrayTypeUnsafe());
7201
7202 uint64_t Elements = CAT->getSize().getZExtValue();
7203 Result = APValue(APValue::UninitArray(), Elements, Elements);
7204
7205 LValue Subobject = This;
7206 Subobject.addArray(Info, E, CAT);
7207
7208 bool Success = true;
7209 for (EvalInfo::ArrayInitLoopIndex Index(Info); Index != Elements; ++Index) {
7210 if (!EvaluateInPlace(Result.getArrayInitializedElt(Index),
7211 Info, Subobject, E->getSubExpr()) ||
7212 !HandleLValueArrayAdjustment(Info, E, Subobject,
7213 CAT->getElementType(), 1)) {
7214 if (!Info.noteFailure())
7215 return false;
7216 Success = false;
7217 }
7218 }
7219
7220 return Success;
7221}
7222
Richard Smith027bf112011-11-17 22:56:20 +00007223bool ArrayExprEvaluator::VisitCXXConstructExpr(const CXXConstructExpr *E) {
Richard Smith9543c5e2013-04-22 14:44:29 +00007224 return VisitCXXConstructExpr(E, This, &Result, E->getType());
7225}
Richard Smith1b9f2eb2012-07-07 22:48:24 +00007226
Richard Smith9543c5e2013-04-22 14:44:29 +00007227bool ArrayExprEvaluator::VisitCXXConstructExpr(const CXXConstructExpr *E,
7228 const LValue &Subobject,
7229 APValue *Value,
7230 QualType Type) {
7231 bool HadZeroInit = !Value->isUninit();
7232
7233 if (const ConstantArrayType *CAT = Info.Ctx.getAsConstantArrayType(Type)) {
7234 unsigned N = CAT->getSize().getZExtValue();
7235
7236 // Preserve the array filler if we had prior zero-initialization.
7237 APValue Filler =
7238 HadZeroInit && Value->hasArrayFiller() ? Value->getArrayFiller()
7239 : APValue();
7240
7241 *Value = APValue(APValue::UninitArray(), N, N);
7242
7243 if (HadZeroInit)
7244 for (unsigned I = 0; I != N; ++I)
7245 Value->getArrayInitializedElt(I) = Filler;
7246
7247 // Initialize the elements.
7248 LValue ArrayElt = Subobject;
7249 ArrayElt.addArray(Info, E, CAT);
7250 for (unsigned I = 0; I != N; ++I)
7251 if (!VisitCXXConstructExpr(E, ArrayElt, &Value->getArrayInitializedElt(I),
7252 CAT->getElementType()) ||
7253 !HandleLValueArrayAdjustment(Info, E, ArrayElt,
7254 CAT->getElementType(), 1))
7255 return false;
7256
7257 return true;
Richard Smith1b9f2eb2012-07-07 22:48:24 +00007258 }
Richard Smith027bf112011-11-17 22:56:20 +00007259
Richard Smith9543c5e2013-04-22 14:44:29 +00007260 if (!Type->isRecordType())
Richard Smith9fce7bc2012-07-10 22:12:55 +00007261 return Error(E);
7262
Richard Smithb8348f52016-05-12 22:16:28 +00007263 return RecordExprEvaluator(Info, Subobject, *Value)
7264 .VisitCXXConstructExpr(E, Type);
Richard Smith027bf112011-11-17 22:56:20 +00007265}
7266
Richard Smithf3e9e432011-11-07 09:22:26 +00007267//===----------------------------------------------------------------------===//
Chris Lattner05706e882008-07-11 18:11:29 +00007268// Integer Evaluation
Richard Smith11562c52011-10-28 17:51:58 +00007269//
7270// As a GNU extension, we support casting pointers to sufficiently-wide integer
7271// types and back in constant folding. Integer values are thus represented
7272// either as an integer-valued APValue, or as an lvalue-valued APValue.
Chris Lattner05706e882008-07-11 18:11:29 +00007273//===----------------------------------------------------------------------===//
Chris Lattner05706e882008-07-11 18:11:29 +00007274
7275namespace {
Benjamin Kramer26222b62009-11-28 19:03:38 +00007276class IntExprEvaluator
Eric Fiselier0683c0e2018-05-07 21:07:10 +00007277 : public ExprEvaluatorBase<IntExprEvaluator> {
Richard Smith2e312c82012-03-03 22:46:17 +00007278 APValue &Result;
Anders Carlsson0a1707c2008-07-08 05:13:58 +00007279public:
Richard Smith2e312c82012-03-03 22:46:17 +00007280 IntExprEvaluator(EvalInfo &info, APValue &result)
Eric Fiselier0683c0e2018-05-07 21:07:10 +00007281 : ExprEvaluatorBaseTy(info), Result(result) {}
Chris Lattner05706e882008-07-11 18:11:29 +00007282
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00007283 bool Success(const llvm::APSInt &SI, const Expr *E, APValue &Result) {
Abramo Bagnara9ae292d2011-07-02 13:13:53 +00007284 assert(E->getType()->isIntegralOrEnumerationType() &&
Douglas Gregorb90df602010-06-16 00:17:44 +00007285 "Invalid evaluation result.");
Abramo Bagnara9ae292d2011-07-02 13:13:53 +00007286 assert(SI.isSigned() == E->getType()->isSignedIntegerOrEnumerationType() &&
Daniel Dunbare3c92bc2009-02-19 18:37:50 +00007287 "Invalid evaluation result.");
Abramo Bagnara9ae292d2011-07-02 13:13:53 +00007288 assert(SI.getBitWidth() == Info.Ctx.getIntWidth(E->getType()) &&
Daniel Dunbare3c92bc2009-02-19 18:37:50 +00007289 "Invalid evaluation result.");
Richard Smith2e312c82012-03-03 22:46:17 +00007290 Result = APValue(SI);
Daniel Dunbare3c92bc2009-02-19 18:37:50 +00007291 return true;
7292 }
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00007293 bool Success(const llvm::APSInt &SI, const Expr *E) {
7294 return Success(SI, E, Result);
7295 }
Daniel Dunbare3c92bc2009-02-19 18:37:50 +00007296
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00007297 bool Success(const llvm::APInt &I, const Expr *E, APValue &Result) {
Fangrui Song6907ce22018-07-30 19:24:48 +00007298 assert(E->getType()->isIntegralOrEnumerationType() &&
Douglas Gregorb90df602010-06-16 00:17:44 +00007299 "Invalid evaluation result.");
Daniel Dunbarca097ad2009-02-19 20:17:33 +00007300 assert(I.getBitWidth() == Info.Ctx.getIntWidth(E->getType()) &&
Daniel Dunbare3c92bc2009-02-19 18:37:50 +00007301 "Invalid evaluation result.");
Richard Smith2e312c82012-03-03 22:46:17 +00007302 Result = APValue(APSInt(I));
Douglas Gregor6ab2fa82011-05-20 16:38:50 +00007303 Result.getInt().setIsUnsigned(
7304 E->getType()->isUnsignedIntegerOrEnumerationType());
Daniel Dunbar8aafc892009-02-19 09:06:44 +00007305 return true;
7306 }
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00007307 bool Success(const llvm::APInt &I, const Expr *E) {
7308 return Success(I, E, Result);
7309 }
Daniel Dunbar8aafc892009-02-19 09:06:44 +00007310
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00007311 bool Success(uint64_t Value, const Expr *E, APValue &Result) {
Eric Fiselier0683c0e2018-05-07 21:07:10 +00007312 assert(E->getType()->isIntegralOrEnumerationType() &&
Douglas Gregorb90df602010-06-16 00:17:44 +00007313 "Invalid evaluation result.");
Richard Smith2e312c82012-03-03 22:46:17 +00007314 Result = APValue(Info.Ctx.MakeIntValue(Value, E->getType()));
Daniel Dunbar8aafc892009-02-19 09:06:44 +00007315 return true;
7316 }
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00007317 bool Success(uint64_t Value, const Expr *E) {
7318 return Success(Value, E, Result);
7319 }
Daniel Dunbar8aafc892009-02-19 09:06:44 +00007320
Ken Dyckdbc01912011-03-11 02:13:43 +00007321 bool Success(CharUnits Size, const Expr *E) {
7322 return Success(Size.getQuantity(), E);
7323 }
7324
Richard Smith2e312c82012-03-03 22:46:17 +00007325 bool Success(const APValue &V, const Expr *E) {
Eli Friedmanb1bc3682012-01-05 23:59:40 +00007326 if (V.isLValue() || V.isAddrLabelDiff()) {
Richard Smith9c8d1c52011-10-29 22:55:55 +00007327 Result = V;
7328 return true;
7329 }
Peter Collingbournee9200682011-05-13 03:29:01 +00007330 return Success(V.getInt(), E);
Chris Lattnerfac05ae2008-11-12 07:43:42 +00007331 }
Mike Stump11289f42009-09-09 15:08:12 +00007332
Richard Smithfddd3842011-12-30 21:15:51 +00007333 bool ZeroInitialization(const Expr *E) { return Success(0, E); }
Richard Smith4ce706a2011-10-11 21:43:33 +00007334
Peter Collingbournee9200682011-05-13 03:29:01 +00007335 //===--------------------------------------------------------------------===//
7336 // Visitor Methods
7337 //===--------------------------------------------------------------------===//
Anders Carlsson0a1707c2008-07-08 05:13:58 +00007338
Chris Lattner7174bf32008-07-12 00:38:25 +00007339 bool VisitIntegerLiteral(const IntegerLiteral *E) {
Daniel Dunbar8aafc892009-02-19 09:06:44 +00007340 return Success(E->getValue(), E);
Chris Lattner7174bf32008-07-12 00:38:25 +00007341 }
7342 bool VisitCharacterLiteral(const CharacterLiteral *E) {
Daniel Dunbar8aafc892009-02-19 09:06:44 +00007343 return Success(E->getValue(), E);
Chris Lattner7174bf32008-07-12 00:38:25 +00007344 }
Eli Friedmanfb8a93f2009-11-24 05:28:59 +00007345
7346 bool CheckReferencedDecl(const Expr *E, const Decl *D);
7347 bool VisitDeclRefExpr(const DeclRefExpr *E) {
Peter Collingbournee9200682011-05-13 03:29:01 +00007348 if (CheckReferencedDecl(E, E->getDecl()))
7349 return true;
7350
7351 return ExprEvaluatorBaseTy::VisitDeclRefExpr(E);
Eli Friedmanfb8a93f2009-11-24 05:28:59 +00007352 }
7353 bool VisitMemberExpr(const MemberExpr *E) {
7354 if (CheckReferencedDecl(E, E->getMemberDecl())) {
David Majnemere9807b22016-02-26 04:23:19 +00007355 VisitIgnoredBaseExpression(E->getBase());
Eli Friedmanfb8a93f2009-11-24 05:28:59 +00007356 return true;
7357 }
Peter Collingbournee9200682011-05-13 03:29:01 +00007358
7359 return ExprEvaluatorBaseTy::VisitMemberExpr(E);
Eli Friedmanfb8a93f2009-11-24 05:28:59 +00007360 }
7361
Peter Collingbournee9200682011-05-13 03:29:01 +00007362 bool VisitCallExpr(const CallExpr *E);
Richard Smith6328cbd2016-11-16 00:57:23 +00007363 bool VisitBuiltinCallExpr(const CallExpr *E, unsigned BuiltinOp);
Chris Lattnere13042c2008-07-11 19:10:17 +00007364 bool VisitBinaryOperator(const BinaryOperator *E);
Douglas Gregor882211c2010-04-28 22:16:22 +00007365 bool VisitOffsetOfExpr(const OffsetOfExpr *E);
Chris Lattnere13042c2008-07-11 19:10:17 +00007366 bool VisitUnaryOperator(const UnaryOperator *E);
Anders Carlsson374b93d2008-07-08 05:49:43 +00007367
Peter Collingbournee9200682011-05-13 03:29:01 +00007368 bool VisitCastExpr(const CastExpr* E);
Peter Collingbournee190dee2011-03-11 19:24:49 +00007369 bool VisitUnaryExprOrTypeTraitExpr(const UnaryExprOrTypeTraitExpr *E);
Sebastian Redl6f282892008-11-11 17:56:53 +00007370
Anders Carlsson9f9e4242008-11-16 19:01:22 +00007371 bool VisitCXXBoolLiteralExpr(const CXXBoolLiteralExpr *E) {
Daniel Dunbar8aafc892009-02-19 09:06:44 +00007372 return Success(E->getValue(), E);
Anders Carlsson9f9e4242008-11-16 19:01:22 +00007373 }
Mike Stump11289f42009-09-09 15:08:12 +00007374
Ted Kremeneke65b0862012-03-06 20:05:56 +00007375 bool VisitObjCBoolLiteralExpr(const ObjCBoolLiteralExpr *E) {
7376 return Success(E->getValue(), E);
7377 }
Richard Smith410306b2016-12-12 02:53:20 +00007378
7379 bool VisitArrayInitIndexExpr(const ArrayInitIndexExpr *E) {
7380 if (Info.ArrayInitIndex == uint64_t(-1)) {
7381 // We were asked to evaluate this subexpression independent of the
7382 // enclosing ArrayInitLoopExpr. We can't do that.
7383 Info.FFDiag(E);
7384 return false;
7385 }
7386 return Success(Info.ArrayInitIndex, E);
7387 }
Fangrui Song6907ce22018-07-30 19:24:48 +00007388
Richard Smith4ce706a2011-10-11 21:43:33 +00007389 // Note, GNU defines __null as an integer, not a pointer.
Anders Carlsson39def3a2008-12-21 22:39:40 +00007390 bool VisitGNUNullExpr(const GNUNullExpr *E) {
Richard Smithfddd3842011-12-30 21:15:51 +00007391 return ZeroInitialization(E);
Eli Friedman4e7a2412009-02-27 04:45:43 +00007392 }
7393
Douglas Gregor29c42f22012-02-24 07:38:34 +00007394 bool VisitTypeTraitExpr(const TypeTraitExpr *E) {
7395 return Success(E->getValue(), E);
7396 }
7397
John Wiegley6242b6a2011-04-28 00:16:57 +00007398 bool VisitArrayTypeTraitExpr(const ArrayTypeTraitExpr *E) {
7399 return Success(E->getValue(), E);
7400 }
7401
John Wiegleyf9f65842011-04-25 06:54:41 +00007402 bool VisitExpressionTraitExpr(const ExpressionTraitExpr *E) {
7403 return Success(E->getValue(), E);
7404 }
7405
Eli Friedmana1c7b6c2009-02-28 03:59:05 +00007406 bool VisitUnaryReal(const UnaryOperator *E);
Eli Friedman4e7a2412009-02-27 04:45:43 +00007407 bool VisitUnaryImag(const UnaryOperator *E);
7408
Sebastian Redl5f0180d2010-09-10 20:55:47 +00007409 bool VisitCXXNoexceptExpr(const CXXNoexceptExpr *E);
Douglas Gregor820ba7b2011-01-04 17:33:58 +00007410 bool VisitSizeOfPackExpr(const SizeOfPackExpr *E);
Sebastian Redl12757ab2011-09-24 17:48:14 +00007411
Eli Friedman4e7a2412009-02-27 04:45:43 +00007412 // FIXME: Missing: array subscript of vector, member of vector
Anders Carlsson9c181652008-07-08 14:35:21 +00007413};
Leonard Chandb01c3a2018-06-20 17:19:40 +00007414
7415class FixedPointExprEvaluator
7416 : public ExprEvaluatorBase<FixedPointExprEvaluator> {
7417 APValue &Result;
7418
7419 public:
7420 FixedPointExprEvaluator(EvalInfo &info, APValue &result)
7421 : ExprEvaluatorBaseTy(info), Result(result) {}
7422
7423 bool Success(const llvm::APSInt &SI, const Expr *E, APValue &Result) {
7424 assert(E->getType()->isFixedPointType() && "Invalid evaluation result.");
7425 assert(SI.isSigned() == E->getType()->isSignedFixedPointType() &&
7426 "Invalid evaluation result.");
7427 assert(SI.getBitWidth() == Info.Ctx.getIntWidth(E->getType()) &&
7428 "Invalid evaluation result.");
7429 Result = APValue(SI);
7430 return true;
7431 }
7432 bool Success(const llvm::APSInt &SI, const Expr *E) {
7433 return Success(SI, E, Result);
7434 }
7435
7436 bool Success(const llvm::APInt &I, const Expr *E, APValue &Result) {
7437 assert(E->getType()->isFixedPointType() && "Invalid evaluation result.");
7438 assert(I.getBitWidth() == Info.Ctx.getIntWidth(E->getType()) &&
7439 "Invalid evaluation result.");
7440 Result = APValue(APSInt(I));
7441 Result.getInt().setIsUnsigned(E->getType()->isUnsignedFixedPointType());
7442 return true;
7443 }
7444 bool Success(const llvm::APInt &I, const Expr *E) {
7445 return Success(I, E, Result);
7446 }
7447
7448 bool Success(uint64_t Value, const Expr *E, APValue &Result) {
7449 assert(E->getType()->isFixedPointType() && "Invalid evaluation result.");
7450 Result = APValue(Info.Ctx.MakeIntValue(Value, E->getType()));
7451 return true;
7452 }
7453 bool Success(uint64_t Value, const Expr *E) {
7454 return Success(Value, E, Result);
7455 }
7456
7457 bool Success(CharUnits Size, const Expr *E) {
7458 return Success(Size.getQuantity(), E);
7459 }
7460
7461 bool Success(const APValue &V, const Expr *E) {
7462 if (V.isLValue() || V.isAddrLabelDiff()) {
7463 Result = V;
7464 return true;
7465 }
7466 return Success(V.getInt(), E);
7467 }
7468
7469 bool ZeroInitialization(const Expr *E) { return Success(0, E); }
7470
7471 //===--------------------------------------------------------------------===//
7472 // Visitor Methods
7473 //===--------------------------------------------------------------------===//
7474
7475 bool VisitFixedPointLiteral(const FixedPointLiteral *E) {
7476 return Success(E->getValue(), E);
7477 }
7478
7479 bool VisitUnaryOperator(const UnaryOperator *E);
7480};
Chris Lattner05706e882008-07-11 18:11:29 +00007481} // end anonymous namespace
Anders Carlsson4a3585b2008-07-08 15:34:11 +00007482
Richard Smith11562c52011-10-28 17:51:58 +00007483/// EvaluateIntegerOrLValue - Evaluate an rvalue integral-typed expression, and
7484/// produce either the integer value or a pointer.
7485///
7486/// GCC has a heinous extension which folds casts between pointer types and
7487/// pointer-sized integral types. We support this by allowing the evaluation of
7488/// an integer rvalue to produce a pointer (represented as an lvalue) instead.
7489/// Some simple arithmetic on such values is supported (they are treated much
7490/// like char*).
Richard Smith2e312c82012-03-03 22:46:17 +00007491static bool EvaluateIntegerOrLValue(const Expr *E, APValue &Result,
Richard Smith0b0a0b62011-10-29 20:57:55 +00007492 EvalInfo &Info) {
Richard Smith11562c52011-10-28 17:51:58 +00007493 assert(E->isRValue() && E->getType()->isIntegralOrEnumerationType());
Peter Collingbournee9200682011-05-13 03:29:01 +00007494 return IntExprEvaluator(Info, Result).Visit(E);
Daniel Dunbarce399542009-02-20 18:22:23 +00007495}
Daniel Dunbarca097ad2009-02-19 20:17:33 +00007496
Richard Smithf57d8cb2011-12-09 22:58:01 +00007497static bool EvaluateInteger(const Expr *E, APSInt &Result, EvalInfo &Info) {
Richard Smith2e312c82012-03-03 22:46:17 +00007498 APValue Val;
Richard Smithf57d8cb2011-12-09 22:58:01 +00007499 if (!EvaluateIntegerOrLValue(E, Val, Info))
Daniel Dunbarce399542009-02-20 18:22:23 +00007500 return false;
Richard Smithf57d8cb2011-12-09 22:58:01 +00007501 if (!Val.isInt()) {
7502 // FIXME: It would be better to produce the diagnostic for casting
7503 // a pointer to an integer.
Faisal Valie690b7a2016-07-02 22:34:24 +00007504 Info.FFDiag(E, diag::note_invalid_subexpr_in_const_expr);
Richard Smithf57d8cb2011-12-09 22:58:01 +00007505 return false;
7506 }
Daniel Dunbarca097ad2009-02-19 20:17:33 +00007507 Result = Val.getInt();
7508 return true;
Anders Carlsson4a3585b2008-07-08 15:34:11 +00007509}
Anders Carlsson4a3585b2008-07-08 15:34:11 +00007510
Richard Smithf57d8cb2011-12-09 22:58:01 +00007511/// Check whether the given declaration can be directly converted to an integral
7512/// rvalue. If not, no diagnostic is produced; there are other things we can
7513/// try.
Eli Friedmanfb8a93f2009-11-24 05:28:59 +00007514bool IntExprEvaluator::CheckReferencedDecl(const Expr* E, const Decl* D) {
Chris Lattner7174bf32008-07-12 00:38:25 +00007515 // Enums are integer constant exprs.
Abramo Bagnara2caedf42011-06-30 09:36:05 +00007516 if (const EnumConstantDecl *ECD = dyn_cast<EnumConstantDecl>(D)) {
Abramo Bagnara9ae292d2011-07-02 13:13:53 +00007517 // Check for signedness/width mismatches between E type and ECD value.
7518 bool SameSign = (ECD->getInitVal().isSigned()
7519 == E->getType()->isSignedIntegerOrEnumerationType());
7520 bool SameWidth = (ECD->getInitVal().getBitWidth()
7521 == Info.Ctx.getIntWidth(E->getType()));
7522 if (SameSign && SameWidth)
7523 return Success(ECD->getInitVal(), E);
7524 else {
7525 // Get rid of mismatch (otherwise Success assertions will fail)
7526 // by computing a new value matching the type of E.
7527 llvm::APSInt Val = ECD->getInitVal();
7528 if (!SameSign)
7529 Val.setIsSigned(!ECD->getInitVal().isSigned());
7530 if (!SameWidth)
7531 Val = Val.extOrTrunc(Info.Ctx.getIntWidth(E->getType()));
7532 return Success(Val, E);
7533 }
Abramo Bagnara2caedf42011-06-30 09:36:05 +00007534 }
Peter Collingbournee9200682011-05-13 03:29:01 +00007535 return false;
Chris Lattner7174bf32008-07-12 00:38:25 +00007536}
7537
Richard Smith08b682b2018-05-23 21:18:00 +00007538/// Values returned by __builtin_classify_type, chosen to match the values
7539/// produced by GCC's builtin.
7540enum class GCCTypeClass {
7541 None = -1,
7542 Void = 0,
7543 Integer = 1,
7544 // GCC reserves 2 for character types, but instead classifies them as
7545 // integers.
7546 Enum = 3,
7547 Bool = 4,
7548 Pointer = 5,
7549 // GCC reserves 6 for references, but appears to never use it (because
7550 // expressions never have reference type, presumably).
7551 PointerToDataMember = 7,
7552 RealFloat = 8,
7553 Complex = 9,
7554 // GCC reserves 10 for functions, but does not use it since GCC version 6 due
7555 // to decay to pointer. (Prior to version 6 it was only used in C++ mode).
7556 // GCC claims to reserve 11 for pointers to member functions, but *actually*
7557 // uses 12 for that purpose, same as for a class or struct. Maybe it
7558 // internally implements a pointer to member as a struct? Who knows.
7559 PointerToMemberFunction = 12, // Not a bug, see above.
7560 ClassOrStruct = 12,
7561 Union = 13,
7562 // GCC reserves 14 for arrays, but does not use it since GCC version 6 due to
7563 // decay to pointer. (Prior to version 6 it was only used in C++ mode).
7564 // GCC reserves 15 for strings, but actually uses 5 (pointer) for string
7565 // literals.
7566};
7567
Chris Lattner86ee2862008-10-06 06:40:35 +00007568/// EvaluateBuiltinClassifyType - Evaluate __builtin_classify_type the same way
7569/// as GCC.
Richard Smith08b682b2018-05-23 21:18:00 +00007570static GCCTypeClass
7571EvaluateBuiltinClassifyType(QualType T, const LangOptions &LangOpts) {
7572 assert(!T->isDependentType() && "unexpected dependent type");
Mike Stump11289f42009-09-09 15:08:12 +00007573
Richard Smith08b682b2018-05-23 21:18:00 +00007574 QualType CanTy = T.getCanonicalType();
Andrey Bokhanko5f6588e2016-02-15 10:39:04 +00007575 const BuiltinType *BT = dyn_cast<BuiltinType>(CanTy);
7576
7577 switch (CanTy->getTypeClass()) {
7578#define TYPE(ID, BASE)
7579#define DEPENDENT_TYPE(ID, BASE) case Type::ID:
7580#define NON_CANONICAL_TYPE(ID, BASE) case Type::ID:
7581#define NON_CANONICAL_UNLESS_DEPENDENT_TYPE(ID, BASE) case Type::ID:
7582#include "clang/AST/TypeNodes.def"
Richard Smith08b682b2018-05-23 21:18:00 +00007583 case Type::Auto:
7584 case Type::DeducedTemplateSpecialization:
7585 llvm_unreachable("unexpected non-canonical or dependent type");
Andrey Bokhanko5f6588e2016-02-15 10:39:04 +00007586
7587 case Type::Builtin:
7588 switch (BT->getKind()) {
7589#define BUILTIN_TYPE(ID, SINGLETON_ID)
Richard Smith08b682b2018-05-23 21:18:00 +00007590#define SIGNED_TYPE(ID, SINGLETON_ID) \
7591 case BuiltinType::ID: return GCCTypeClass::Integer;
7592#define FLOATING_TYPE(ID, SINGLETON_ID) \
7593 case BuiltinType::ID: return GCCTypeClass::RealFloat;
7594#define PLACEHOLDER_TYPE(ID, SINGLETON_ID) \
7595 case BuiltinType::ID: break;
Andrey Bokhanko5f6588e2016-02-15 10:39:04 +00007596#include "clang/AST/BuiltinTypes.def"
7597 case BuiltinType::Void:
Richard Smith08b682b2018-05-23 21:18:00 +00007598 return GCCTypeClass::Void;
Andrey Bokhanko5f6588e2016-02-15 10:39:04 +00007599
7600 case BuiltinType::Bool:
Richard Smith08b682b2018-05-23 21:18:00 +00007601 return GCCTypeClass::Bool;
Andrey Bokhanko5f6588e2016-02-15 10:39:04 +00007602
Richard Smith08b682b2018-05-23 21:18:00 +00007603 case BuiltinType::Char_U:
Andrey Bokhanko5f6588e2016-02-15 10:39:04 +00007604 case BuiltinType::UChar:
Richard Smith08b682b2018-05-23 21:18:00 +00007605 case BuiltinType::WChar_U:
7606 case BuiltinType::Char8:
7607 case BuiltinType::Char16:
7608 case BuiltinType::Char32:
Andrey Bokhanko5f6588e2016-02-15 10:39:04 +00007609 case BuiltinType::UShort:
7610 case BuiltinType::UInt:
7611 case BuiltinType::ULong:
7612 case BuiltinType::ULongLong:
7613 case BuiltinType::UInt128:
Richard Smith08b682b2018-05-23 21:18:00 +00007614 return GCCTypeClass::Integer;
Andrey Bokhanko5f6588e2016-02-15 10:39:04 +00007615
Leonard Chanf921d852018-06-04 16:07:52 +00007616 case BuiltinType::UShortAccum:
7617 case BuiltinType::UAccum:
7618 case BuiltinType::ULongAccum:
Leonard Chanab80f3c2018-06-14 14:53:51 +00007619 case BuiltinType::UShortFract:
7620 case BuiltinType::UFract:
7621 case BuiltinType::ULongFract:
7622 case BuiltinType::SatUShortAccum:
7623 case BuiltinType::SatUAccum:
7624 case BuiltinType::SatULongAccum:
7625 case BuiltinType::SatUShortFract:
7626 case BuiltinType::SatUFract:
7627 case BuiltinType::SatULongFract:
Leonard Chanf921d852018-06-04 16:07:52 +00007628 return GCCTypeClass::None;
7629
Andrey Bokhanko5f6588e2016-02-15 10:39:04 +00007630 case BuiltinType::NullPtr:
Andrey Bokhanko5f6588e2016-02-15 10:39:04 +00007631
Andrey Bokhanko5f6588e2016-02-15 10:39:04 +00007632 case BuiltinType::ObjCId:
7633 case BuiltinType::ObjCClass:
7634 case BuiltinType::ObjCSel:
Alexey Bader954ba212016-04-08 13:40:33 +00007635#define IMAGE_TYPE(ImgType, Id, SingletonId, Access, Suffix) \
7636 case BuiltinType::Id:
Alexey Baderb62f1442016-04-13 08:33:41 +00007637#include "clang/Basic/OpenCLImageTypes.def"
Andrey Bokhanko5f6588e2016-02-15 10:39:04 +00007638 case BuiltinType::OCLSampler:
7639 case BuiltinType::OCLEvent:
7640 case BuiltinType::OCLClkEvent:
7641 case BuiltinType::OCLQueue:
Andrey Bokhanko5f6588e2016-02-15 10:39:04 +00007642 case BuiltinType::OCLReserveID:
Richard Smith08b682b2018-05-23 21:18:00 +00007643 return GCCTypeClass::None;
7644
Andrey Bokhanko5f6588e2016-02-15 10:39:04 +00007645 case BuiltinType::Dependent:
Richard Smith08b682b2018-05-23 21:18:00 +00007646 llvm_unreachable("unexpected dependent type");
Andrey Bokhanko5f6588e2016-02-15 10:39:04 +00007647 };
Richard Smith08b682b2018-05-23 21:18:00 +00007648 llvm_unreachable("unexpected placeholder type");
Andrey Bokhanko5f6588e2016-02-15 10:39:04 +00007649
7650 case Type::Enum:
Richard Smith08b682b2018-05-23 21:18:00 +00007651 return LangOpts.CPlusPlus ? GCCTypeClass::Enum : GCCTypeClass::Integer;
Andrey Bokhanko5f6588e2016-02-15 10:39:04 +00007652
7653 case Type::Pointer:
Andrey Bokhanko5f6588e2016-02-15 10:39:04 +00007654 case Type::ConstantArray:
7655 case Type::VariableArray:
7656 case Type::IncompleteArray:
Richard Smith08b682b2018-05-23 21:18:00 +00007657 case Type::FunctionNoProto:
7658 case Type::FunctionProto:
7659 return GCCTypeClass::Pointer;
7660
7661 case Type::MemberPointer:
7662 return CanTy->isMemberDataPointerType()
7663 ? GCCTypeClass::PointerToDataMember
7664 : GCCTypeClass::PointerToMemberFunction;
7665
7666 case Type::Complex:
7667 return GCCTypeClass::Complex;
7668
7669 case Type::Record:
7670 return CanTy->isUnionType() ? GCCTypeClass::Union
7671 : GCCTypeClass::ClassOrStruct;
7672
7673 case Type::Atomic:
7674 // GCC classifies _Atomic T the same as T.
7675 return EvaluateBuiltinClassifyType(
7676 CanTy->castAs<AtomicType>()->getValueType(), LangOpts);
Andrey Bokhanko5f6588e2016-02-15 10:39:04 +00007677
7678 case Type::BlockPointer:
Andrey Bokhanko5f6588e2016-02-15 10:39:04 +00007679 case Type::Vector:
7680 case Type::ExtVector:
Andrey Bokhanko5f6588e2016-02-15 10:39:04 +00007681 case Type::ObjCObject:
7682 case Type::ObjCInterface:
7683 case Type::ObjCObjectPointer:
7684 case Type::Pipe:
Richard Smith08b682b2018-05-23 21:18:00 +00007685 // GCC classifies vectors as None. We follow its lead and classify all
7686 // other types that don't fit into the regular classification the same way.
7687 return GCCTypeClass::None;
7688
7689 case Type::LValueReference:
7690 case Type::RValueReference:
7691 llvm_unreachable("invalid type for expression");
Andrey Bokhanko5f6588e2016-02-15 10:39:04 +00007692 }
7693
Richard Smith08b682b2018-05-23 21:18:00 +00007694 llvm_unreachable("unexpected type class");
7695}
7696
7697/// EvaluateBuiltinClassifyType - Evaluate __builtin_classify_type the same way
7698/// as GCC.
7699static GCCTypeClass
7700EvaluateBuiltinClassifyType(const CallExpr *E, const LangOptions &LangOpts) {
7701 // If no argument was supplied, default to None. This isn't
7702 // ideal, however it is what gcc does.
7703 if (E->getNumArgs() == 0)
7704 return GCCTypeClass::None;
7705
7706 // FIXME: Bizarrely, GCC treats a call with more than one argument as not
7707 // being an ICE, but still folds it to a constant using the type of the first
7708 // argument.
7709 return EvaluateBuiltinClassifyType(E->getArg(0)->getType(), LangOpts);
Chris Lattner86ee2862008-10-06 06:40:35 +00007710}
7711
Richard Smith5fab0c92011-12-28 19:48:30 +00007712/// EvaluateBuiltinConstantPForLValue - Determine the result of
7713/// __builtin_constant_p when applied to the given lvalue.
7714///
7715/// An lvalue is only "constant" if it is a pointer or reference to the first
7716/// character of a string literal.
7717template<typename LValue>
7718static bool EvaluateBuiltinConstantPForLValue(const LValue &LV) {
Douglas Gregorf31cee62012-03-11 02:23:56 +00007719 const Expr *E = LV.getLValueBase().template dyn_cast<const Expr*>();
Richard Smith5fab0c92011-12-28 19:48:30 +00007720 return E && isa<StringLiteral>(E) && LV.getLValueOffset().isZero();
7721}
7722
7723/// EvaluateBuiltinConstantP - Evaluate __builtin_constant_p as similarly to
7724/// GCC as we can manage.
7725static bool EvaluateBuiltinConstantP(ASTContext &Ctx, const Expr *Arg) {
7726 QualType ArgType = Arg->getType();
7727
7728 // __builtin_constant_p always has one operand. The rules which gcc follows
7729 // are not precisely documented, but are as follows:
7730 //
7731 // - If the operand is of integral, floating, complex or enumeration type,
7732 // and can be folded to a known value of that type, it returns 1.
7733 // - If the operand and can be folded to a pointer to the first character
7734 // of a string literal (or such a pointer cast to an integral type), it
7735 // returns 1.
7736 //
7737 // Otherwise, it returns 0.
7738 //
7739 // FIXME: GCC also intends to return 1 for literals of aggregate types, but
7740 // its support for this does not currently work.
7741 if (ArgType->isIntegralOrEnumerationType()) {
7742 Expr::EvalResult Result;
7743 if (!Arg->EvaluateAsRValue(Result, Ctx) || Result.HasSideEffects)
7744 return false;
7745
7746 APValue &V = Result.Val;
7747 if (V.getKind() == APValue::Int)
7748 return true;
Richard Smith0c6124b2015-12-03 01:36:22 +00007749 if (V.getKind() == APValue::LValue)
7750 return EvaluateBuiltinConstantPForLValue(V);
Richard Smith5fab0c92011-12-28 19:48:30 +00007751 } else if (ArgType->isFloatingType() || ArgType->isAnyComplexType()) {
7752 return Arg->isEvaluatable(Ctx);
7753 } else if (ArgType->isPointerType() || Arg->isGLValue()) {
7754 LValue LV;
7755 Expr::EvalStatus Status;
Richard Smith6d4c6582013-11-05 22:18:15 +00007756 EvalInfo Info(Ctx, Status, EvalInfo::EM_ConstantFold);
Richard Smith5fab0c92011-12-28 19:48:30 +00007757 if ((Arg->isGLValue() ? EvaluateLValue(Arg, LV, Info)
7758 : EvaluatePointer(Arg, LV, Info)) &&
7759 !Status.HasSideEffects)
7760 return EvaluateBuiltinConstantPForLValue(LV);
7761 }
7762
7763 // Anything else isn't considered to be sufficiently constant.
7764 return false;
7765}
7766
John McCall95007602010-05-10 23:27:23 +00007767/// Retrieves the "underlying object type" of the given expression,
7768/// as used by __builtin_object_size.
George Burgess IVbdb5b262015-08-19 02:19:07 +00007769static QualType getObjectType(APValue::LValueBase B) {
Richard Smithce40ad62011-11-12 22:28:03 +00007770 if (const ValueDecl *D = B.dyn_cast<const ValueDecl*>()) {
7771 if (const VarDecl *VD = dyn_cast<VarDecl>(D))
John McCall95007602010-05-10 23:27:23 +00007772 return VD->getType();
Richard Smithce40ad62011-11-12 22:28:03 +00007773 } else if (const Expr *E = B.get<const Expr*>()) {
7774 if (isa<CompoundLiteralExpr>(E))
7775 return E->getType();
John McCall95007602010-05-10 23:27:23 +00007776 }
7777
7778 return QualType();
7779}
7780
George Burgess IV3a03fab2015-09-04 21:28:13 +00007781/// A more selective version of E->IgnoreParenCasts for
George Burgess IVe3763372016-12-22 02:50:20 +00007782/// tryEvaluateBuiltinObjectSize. This ignores some casts/parens that serve only
George Burgess IVb40cd562015-09-04 22:36:18 +00007783/// to change the type of E.
George Burgess IV3a03fab2015-09-04 21:28:13 +00007784/// Ex. For E = `(short*)((char*)(&foo))`, returns `&foo`
7785///
7786/// Always returns an RValue with a pointer representation.
7787static const Expr *ignorePointerCastsAndParens(const Expr *E) {
7788 assert(E->isRValue() && E->getType()->hasPointerRepresentation());
7789
7790 auto *NoParens = E->IgnoreParens();
7791 auto *Cast = dyn_cast<CastExpr>(NoParens);
George Burgess IVb40cd562015-09-04 22:36:18 +00007792 if (Cast == nullptr)
7793 return NoParens;
7794
7795 // We only conservatively allow a few kinds of casts, because this code is
7796 // inherently a simple solution that seeks to support the common case.
7797 auto CastKind = Cast->getCastKind();
7798 if (CastKind != CK_NoOp && CastKind != CK_BitCast &&
7799 CastKind != CK_AddressSpaceConversion)
George Burgess IV3a03fab2015-09-04 21:28:13 +00007800 return NoParens;
7801
7802 auto *SubExpr = Cast->getSubExpr();
7803 if (!SubExpr->getType()->hasPointerRepresentation() || !SubExpr->isRValue())
7804 return NoParens;
7805 return ignorePointerCastsAndParens(SubExpr);
7806}
7807
George Burgess IVa51c4072015-10-16 01:49:01 +00007808/// Checks to see if the given LValue's Designator is at the end of the LValue's
7809/// record layout. e.g.
7810/// struct { struct { int a, b; } fst, snd; } obj;
7811/// obj.fst // no
7812/// obj.snd // yes
7813/// obj.fst.a // no
7814/// obj.fst.b // no
7815/// obj.snd.a // no
7816/// obj.snd.b // yes
7817///
7818/// Please note: this function is specialized for how __builtin_object_size
7819/// views "objects".
George Burgess IV4168d752016-06-27 19:40:41 +00007820///
Richard Smith6f4f0f12017-10-20 22:56:25 +00007821/// If this encounters an invalid RecordDecl or otherwise cannot determine the
7822/// correct result, it will always return true.
George Burgess IVa51c4072015-10-16 01:49:01 +00007823static bool isDesignatorAtObjectEnd(const ASTContext &Ctx, const LValue &LVal) {
7824 assert(!LVal.Designator.Invalid);
7825
George Burgess IV4168d752016-06-27 19:40:41 +00007826 auto IsLastOrInvalidFieldDecl = [&Ctx](const FieldDecl *FD, bool &Invalid) {
7827 const RecordDecl *Parent = FD->getParent();
7828 Invalid = Parent->isInvalidDecl();
7829 if (Invalid || Parent->isUnion())
George Burgess IVa51c4072015-10-16 01:49:01 +00007830 return true;
George Burgess IV4168d752016-06-27 19:40:41 +00007831 const ASTRecordLayout &Layout = Ctx.getASTRecordLayout(Parent);
George Burgess IVa51c4072015-10-16 01:49:01 +00007832 return FD->getFieldIndex() + 1 == Layout.getFieldCount();
7833 };
7834
7835 auto &Base = LVal.getLValueBase();
7836 if (auto *ME = dyn_cast_or_null<MemberExpr>(Base.dyn_cast<const Expr *>())) {
7837 if (auto *FD = dyn_cast<FieldDecl>(ME->getMemberDecl())) {
George Burgess IV4168d752016-06-27 19:40:41 +00007838 bool Invalid;
7839 if (!IsLastOrInvalidFieldDecl(FD, Invalid))
7840 return Invalid;
George Burgess IVa51c4072015-10-16 01:49:01 +00007841 } else if (auto *IFD = dyn_cast<IndirectFieldDecl>(ME->getMemberDecl())) {
George Burgess IV4168d752016-06-27 19:40:41 +00007842 for (auto *FD : IFD->chain()) {
7843 bool Invalid;
7844 if (!IsLastOrInvalidFieldDecl(cast<FieldDecl>(FD), Invalid))
7845 return Invalid;
7846 }
George Burgess IVa51c4072015-10-16 01:49:01 +00007847 }
7848 }
7849
George Burgess IVe3763372016-12-22 02:50:20 +00007850 unsigned I = 0;
George Burgess IVa51c4072015-10-16 01:49:01 +00007851 QualType BaseType = getType(Base);
Daniel Jasperffdee092017-05-02 19:21:42 +00007852 if (LVal.Designator.FirstEntryIsAnUnsizedArray) {
Richard Smith6f4f0f12017-10-20 22:56:25 +00007853 // If we don't know the array bound, conservatively assume we're looking at
7854 // the final array element.
George Burgess IVe3763372016-12-22 02:50:20 +00007855 ++I;
Alex Lorenz4e246482017-12-20 21:03:38 +00007856 if (BaseType->isIncompleteArrayType())
7857 BaseType = Ctx.getAsArrayType(BaseType)->getElementType();
7858 else
7859 BaseType = BaseType->castAs<PointerType>()->getPointeeType();
George Burgess IVe3763372016-12-22 02:50:20 +00007860 }
7861
7862 for (unsigned E = LVal.Designator.Entries.size(); I != E; ++I) {
7863 const auto &Entry = LVal.Designator.Entries[I];
George Burgess IVa51c4072015-10-16 01:49:01 +00007864 if (BaseType->isArrayType()) {
7865 // Because __builtin_object_size treats arrays as objects, we can ignore
7866 // the index iff this is the last array in the Designator.
7867 if (I + 1 == E)
7868 return true;
George Burgess IVe3763372016-12-22 02:50:20 +00007869 const auto *CAT = cast<ConstantArrayType>(Ctx.getAsArrayType(BaseType));
7870 uint64_t Index = Entry.ArrayIndex;
George Burgess IVa51c4072015-10-16 01:49:01 +00007871 if (Index + 1 != CAT->getSize())
7872 return false;
7873 BaseType = CAT->getElementType();
7874 } else if (BaseType->isAnyComplexType()) {
George Burgess IVe3763372016-12-22 02:50:20 +00007875 const auto *CT = BaseType->castAs<ComplexType>();
7876 uint64_t Index = Entry.ArrayIndex;
George Burgess IVa51c4072015-10-16 01:49:01 +00007877 if (Index != 1)
7878 return false;
7879 BaseType = CT->getElementType();
George Burgess IVe3763372016-12-22 02:50:20 +00007880 } else if (auto *FD = getAsField(Entry)) {
George Burgess IV4168d752016-06-27 19:40:41 +00007881 bool Invalid;
7882 if (!IsLastOrInvalidFieldDecl(FD, Invalid))
7883 return Invalid;
George Burgess IVa51c4072015-10-16 01:49:01 +00007884 BaseType = FD->getType();
7885 } else {
George Burgess IVe3763372016-12-22 02:50:20 +00007886 assert(getAsBaseClass(Entry) && "Expecting cast to a base class");
George Burgess IVa51c4072015-10-16 01:49:01 +00007887 return false;
7888 }
7889 }
7890 return true;
7891}
7892
George Burgess IVe3763372016-12-22 02:50:20 +00007893/// Tests to see if the LValue has a user-specified designator (that isn't
7894/// necessarily valid). Note that this always returns 'true' if the LValue has
7895/// an unsized array as its first designator entry, because there's currently no
7896/// way to tell if the user typed *foo or foo[0].
George Burgess IVa51c4072015-10-16 01:49:01 +00007897static bool refersToCompleteObject(const LValue &LVal) {
George Burgess IVe3763372016-12-22 02:50:20 +00007898 if (LVal.Designator.Invalid)
George Burgess IVa51c4072015-10-16 01:49:01 +00007899 return false;
7900
George Burgess IVe3763372016-12-22 02:50:20 +00007901 if (!LVal.Designator.Entries.empty())
7902 return LVal.Designator.isMostDerivedAnUnsizedArray();
7903
George Burgess IVa51c4072015-10-16 01:49:01 +00007904 if (!LVal.InvalidBase)
7905 return true;
7906
George Burgess IVe3763372016-12-22 02:50:20 +00007907 // If `E` is a MemberExpr, then the first part of the designator is hiding in
7908 // the LValueBase.
7909 const auto *E = LVal.Base.dyn_cast<const Expr *>();
7910 return !E || !isa<MemberExpr>(E);
George Burgess IVa51c4072015-10-16 01:49:01 +00007911}
7912
George Burgess IVe3763372016-12-22 02:50:20 +00007913/// Attempts to detect a user writing into a piece of memory that's impossible
7914/// to figure out the size of by just using types.
7915static bool isUserWritingOffTheEnd(const ASTContext &Ctx, const LValue &LVal) {
7916 const SubobjectDesignator &Designator = LVal.Designator;
7917 // Notes:
7918 // - Users can only write off of the end when we have an invalid base. Invalid
7919 // bases imply we don't know where the memory came from.
7920 // - We used to be a bit more aggressive here; we'd only be conservative if
7921 // the array at the end was flexible, or if it had 0 or 1 elements. This
7922 // broke some common standard library extensions (PR30346), but was
7923 // otherwise seemingly fine. It may be useful to reintroduce this behavior
7924 // with some sort of whitelist. OTOH, it seems that GCC is always
7925 // conservative with the last element in structs (if it's an array), so our
7926 // current behavior is more compatible than a whitelisting approach would
7927 // be.
7928 return LVal.InvalidBase &&
7929 Designator.Entries.size() == Designator.MostDerivedPathLength &&
7930 Designator.MostDerivedIsArrayElement &&
7931 isDesignatorAtObjectEnd(Ctx, LVal);
7932}
7933
7934/// Converts the given APInt to CharUnits, assuming the APInt is unsigned.
7935/// Fails if the conversion would cause loss of precision.
7936static bool convertUnsignedAPIntToCharUnits(const llvm::APInt &Int,
7937 CharUnits &Result) {
7938 auto CharUnitsMax = std::numeric_limits<CharUnits::QuantityType>::max();
7939 if (Int.ugt(CharUnitsMax))
7940 return false;
7941 Result = CharUnits::fromQuantity(Int.getZExtValue());
7942 return true;
7943}
7944
7945/// Helper for tryEvaluateBuiltinObjectSize -- Given an LValue, this will
7946/// determine how many bytes exist from the beginning of the object to either
7947/// the end of the current subobject, or the end of the object itself, depending
7948/// on what the LValue looks like + the value of Type.
George Burgess IVa7470272016-12-20 01:05:42 +00007949///
George Burgess IVe3763372016-12-22 02:50:20 +00007950/// If this returns false, the value of Result is undefined.
7951static bool determineEndOffset(EvalInfo &Info, SourceLocation ExprLoc,
7952 unsigned Type, const LValue &LVal,
7953 CharUnits &EndOffset) {
7954 bool DetermineForCompleteObject = refersToCompleteObject(LVal);
Chandler Carruthd7738fe2016-12-20 08:28:19 +00007955
George Burgess IV7fb7e362017-01-03 23:35:19 +00007956 auto CheckedHandleSizeof = [&](QualType Ty, CharUnits &Result) {
7957 if (Ty.isNull() || Ty->isIncompleteType() || Ty->isFunctionType())
7958 return false;
7959 return HandleSizeof(Info, ExprLoc, Ty, Result);
7960 };
7961
George Burgess IVe3763372016-12-22 02:50:20 +00007962 // We want to evaluate the size of the entire object. This is a valid fallback
7963 // for when Type=1 and the designator is invalid, because we're asked for an
7964 // upper-bound.
7965 if (!(Type & 1) || LVal.Designator.Invalid || DetermineForCompleteObject) {
7966 // Type=3 wants a lower bound, so we can't fall back to this.
7967 if (Type == 3 && !DetermineForCompleteObject)
George Burgess IVa7470272016-12-20 01:05:42 +00007968 return false;
George Burgess IVe3763372016-12-22 02:50:20 +00007969
7970 llvm::APInt APEndOffset;
7971 if (isBaseAnAllocSizeCall(LVal.getLValueBase()) &&
7972 getBytesReturnedByAllocSizeCall(Info.Ctx, LVal, APEndOffset))
7973 return convertUnsignedAPIntToCharUnits(APEndOffset, EndOffset);
7974
7975 if (LVal.InvalidBase)
7976 return false;
7977
7978 QualType BaseTy = getObjectType(LVal.getLValueBase());
George Burgess IV7fb7e362017-01-03 23:35:19 +00007979 return CheckedHandleSizeof(BaseTy, EndOffset);
George Burgess IVa7470272016-12-20 01:05:42 +00007980 }
7981
George Burgess IVe3763372016-12-22 02:50:20 +00007982 // We want to evaluate the size of a subobject.
7983 const SubobjectDesignator &Designator = LVal.Designator;
Chandler Carruthd7738fe2016-12-20 08:28:19 +00007984
7985 // The following is a moderately common idiom in C:
7986 //
7987 // struct Foo { int a; char c[1]; };
7988 // struct Foo *F = (struct Foo *)malloc(sizeof(struct Foo) + strlen(Bar));
7989 // strcpy(&F->c[0], Bar);
7990 //
George Burgess IVe3763372016-12-22 02:50:20 +00007991 // In order to not break too much legacy code, we need to support it.
7992 if (isUserWritingOffTheEnd(Info.Ctx, LVal)) {
7993 // If we can resolve this to an alloc_size call, we can hand that back,
7994 // because we know for certain how many bytes there are to write to.
7995 llvm::APInt APEndOffset;
7996 if (isBaseAnAllocSizeCall(LVal.getLValueBase()) &&
7997 getBytesReturnedByAllocSizeCall(Info.Ctx, LVal, APEndOffset))
7998 return convertUnsignedAPIntToCharUnits(APEndOffset, EndOffset);
7999
8000 // If we cannot determine the size of the initial allocation, then we can't
8001 // given an accurate upper-bound. However, we are still able to give
8002 // conservative lower-bounds for Type=3.
8003 if (Type == 1)
8004 return false;
8005 }
8006
8007 CharUnits BytesPerElem;
George Burgess IV7fb7e362017-01-03 23:35:19 +00008008 if (!CheckedHandleSizeof(Designator.MostDerivedType, BytesPerElem))
Chandler Carruthd7738fe2016-12-20 08:28:19 +00008009 return false;
8010
George Burgess IVe3763372016-12-22 02:50:20 +00008011 // According to the GCC documentation, we want the size of the subobject
8012 // denoted by the pointer. But that's not quite right -- what we actually
8013 // want is the size of the immediately-enclosing array, if there is one.
8014 int64_t ElemsRemaining;
8015 if (Designator.MostDerivedIsArrayElement &&
8016 Designator.Entries.size() == Designator.MostDerivedPathLength) {
8017 uint64_t ArraySize = Designator.getMostDerivedArraySize();
8018 uint64_t ArrayIndex = Designator.Entries.back().ArrayIndex;
8019 ElemsRemaining = ArraySize <= ArrayIndex ? 0 : ArraySize - ArrayIndex;
8020 } else {
8021 ElemsRemaining = Designator.isOnePastTheEnd() ? 0 : 1;
8022 }
Chandler Carruthd7738fe2016-12-20 08:28:19 +00008023
George Burgess IVe3763372016-12-22 02:50:20 +00008024 EndOffset = LVal.getLValueOffset() + BytesPerElem * ElemsRemaining;
8025 return true;
Chandler Carruthd7738fe2016-12-20 08:28:19 +00008026}
8027
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00008028/// Tries to evaluate the __builtin_object_size for @p E. If successful,
George Burgess IVe3763372016-12-22 02:50:20 +00008029/// returns true and stores the result in @p Size.
8030///
8031/// If @p WasError is non-null, this will report whether the failure to evaluate
8032/// is to be treated as an Error in IntExprEvaluator.
8033static bool tryEvaluateBuiltinObjectSize(const Expr *E, unsigned Type,
8034 EvalInfo &Info, uint64_t &Size) {
8035 // Determine the denoted object.
8036 LValue LVal;
8037 {
8038 // The operand of __builtin_object_size is never evaluated for side-effects.
8039 // If there are any, but we can determine the pointed-to object anyway, then
8040 // ignore the side-effects.
8041 SpeculativeEvaluationRAII SpeculativeEval(Info);
8042 FoldOffsetRAII Fold(Info);
8043
8044 if (E->isGLValue()) {
8045 // It's possible for us to be given GLValues if we're called via
8046 // Expr::tryEvaluateObjectSize.
8047 APValue RVal;
8048 if (!EvaluateAsRValue(Info, E, RVal))
8049 return false;
8050 LVal.setFrom(Info.Ctx, RVal);
George Burgess IVf9013bf2017-02-10 22:52:29 +00008051 } else if (!EvaluatePointer(ignorePointerCastsAndParens(E), LVal, Info,
8052 /*InvalidBaseOK=*/true))
George Burgess IVe3763372016-12-22 02:50:20 +00008053 return false;
8054 }
8055
8056 // If we point to before the start of the object, there are no accessible
8057 // bytes.
8058 if (LVal.getLValueOffset().isNegative()) {
8059 Size = 0;
8060 return true;
8061 }
8062
8063 CharUnits EndOffset;
8064 if (!determineEndOffset(Info, E->getExprLoc(), Type, LVal, EndOffset))
8065 return false;
8066
8067 // If we've fallen outside of the end offset, just pretend there's nothing to
8068 // write to/read from.
8069 if (EndOffset <= LVal.getLValueOffset())
8070 Size = 0;
8071 else
8072 Size = (EndOffset - LVal.getLValueOffset()).getQuantity();
8073 return true;
John McCall95007602010-05-10 23:27:23 +00008074}
8075
Peter Collingbournee9200682011-05-13 03:29:01 +00008076bool IntExprEvaluator::VisitCallExpr(const CallExpr *E) {
Richard Smith6328cbd2016-11-16 00:57:23 +00008077 if (unsigned BuiltinOp = E->getBuiltinCallee())
8078 return VisitBuiltinCallExpr(E, BuiltinOp);
8079
8080 return ExprEvaluatorBaseTy::VisitCallExpr(E);
8081}
8082
8083bool IntExprEvaluator::VisitBuiltinCallExpr(const CallExpr *E,
8084 unsigned BuiltinOp) {
Alp Tokera724cff2013-12-28 21:59:02 +00008085 switch (unsigned BuiltinOp = E->getBuiltinCallee()) {
Chris Lattner4deaa4e2008-10-06 05:28:25 +00008086 default:
Peter Collingbournee9200682011-05-13 03:29:01 +00008087 return ExprEvaluatorBaseTy::VisitCallExpr(E);
Mike Stump722cedf2009-10-26 18:35:08 +00008088
8089 case Builtin::BI__builtin_object_size: {
George Burgess IVbdb5b262015-08-19 02:19:07 +00008090 // The type was checked when we built the expression.
8091 unsigned Type =
8092 E->getArg(1)->EvaluateKnownConstInt(Info.Ctx).getZExtValue();
8093 assert(Type <= 3 && "unexpected type");
8094
George Burgess IVe3763372016-12-22 02:50:20 +00008095 uint64_t Size;
8096 if (tryEvaluateBuiltinObjectSize(E->getArg(0), Type, Info, Size))
8097 return Success(Size, E);
Mike Stump722cedf2009-10-26 18:35:08 +00008098
George Burgess IV3e3bb95b2015-12-02 21:58:08 +00008099 if (E->getArg(0)->HasSideEffects(Info.Ctx))
George Burgess IVbdb5b262015-08-19 02:19:07 +00008100 return Success((Type & 2) ? 0 : -1, E);
Mike Stump876387b2009-10-27 22:09:17 +00008101
Richard Smith01ade172012-05-23 04:13:20 +00008102 // Expression had no side effects, but we couldn't statically determine the
8103 // size of the referenced object.
Nick Lewycky35a6ef42014-01-11 02:50:57 +00008104 switch (Info.EvalMode) {
8105 case EvalInfo::EM_ConstantExpression:
8106 case EvalInfo::EM_PotentialConstantExpression:
8107 case EvalInfo::EM_ConstantFold:
8108 case EvalInfo::EM_EvaluateForOverflow:
8109 case EvalInfo::EM_IgnoreSideEffects:
George Burgess IVe3763372016-12-22 02:50:20 +00008110 case EvalInfo::EM_OffsetFold:
George Burgess IVbdb5b262015-08-19 02:19:07 +00008111 // Leave it to IR generation.
Nick Lewycky35a6ef42014-01-11 02:50:57 +00008112 return Error(E);
8113 case EvalInfo::EM_ConstantExpressionUnevaluated:
8114 case EvalInfo::EM_PotentialConstantExpressionUnevaluated:
George Burgess IVbdb5b262015-08-19 02:19:07 +00008115 // Reduce it to a constant now.
8116 return Success((Type & 2) ? 0 : -1, E);
Nick Lewycky35a6ef42014-01-11 02:50:57 +00008117 }
Richard Smithcb2ba5a2016-07-18 22:37:35 +00008118
8119 llvm_unreachable("unexpected EvalMode");
Mike Stump722cedf2009-10-26 18:35:08 +00008120 }
8121
Benjamin Kramera801f4a2012-10-06 14:42:22 +00008122 case Builtin::BI__builtin_bswap16:
Richard Smith80ac9ef2012-09-28 20:20:52 +00008123 case Builtin::BI__builtin_bswap32:
8124 case Builtin::BI__builtin_bswap64: {
8125 APSInt Val;
8126 if (!EvaluateInteger(E->getArg(0), Val, Info))
8127 return false;
8128
8129 return Success(Val.byteSwap(), E);
8130 }
8131
Richard Smith8889a3d2013-06-13 06:26:32 +00008132 case Builtin::BI__builtin_classify_type:
Richard Smith08b682b2018-05-23 21:18:00 +00008133 return Success((int)EvaluateBuiltinClassifyType(E, Info.getLangOpts()), E);
Richard Smith8889a3d2013-06-13 06:26:32 +00008134
Craig Topperf95a6d92018-08-08 22:31:12 +00008135 case Builtin::BI__builtin_clrsb:
8136 case Builtin::BI__builtin_clrsbl:
8137 case Builtin::BI__builtin_clrsbll: {
8138 APSInt Val;
8139 if (!EvaluateInteger(E->getArg(0), Val, Info))
8140 return false;
8141
8142 return Success(Val.getBitWidth() - Val.getMinSignedBits(), E);
8143 }
Richard Smith8889a3d2013-06-13 06:26:32 +00008144
Richard Smith80b3c8e2013-06-13 05:04:16 +00008145 case Builtin::BI__builtin_clz:
8146 case Builtin::BI__builtin_clzl:
Anders Carlsson1a9fe3d2014-07-07 15:53:44 +00008147 case Builtin::BI__builtin_clzll:
8148 case Builtin::BI__builtin_clzs: {
Richard Smith80b3c8e2013-06-13 05:04:16 +00008149 APSInt Val;
8150 if (!EvaluateInteger(E->getArg(0), Val, Info))
8151 return false;
8152 if (!Val)
8153 return Error(E);
8154
8155 return Success(Val.countLeadingZeros(), E);
8156 }
8157
Richard Smith8889a3d2013-06-13 06:26:32 +00008158 case Builtin::BI__builtin_constant_p:
8159 return Success(EvaluateBuiltinConstantP(Info.Ctx, E->getArg(0)), E);
8160
Richard Smith80b3c8e2013-06-13 05:04:16 +00008161 case Builtin::BI__builtin_ctz:
8162 case Builtin::BI__builtin_ctzl:
Anders Carlsson1a9fe3d2014-07-07 15:53:44 +00008163 case Builtin::BI__builtin_ctzll:
8164 case Builtin::BI__builtin_ctzs: {
Richard Smith80b3c8e2013-06-13 05:04:16 +00008165 APSInt Val;
8166 if (!EvaluateInteger(E->getArg(0), Val, Info))
8167 return false;
8168 if (!Val)
8169 return Error(E);
8170
8171 return Success(Val.countTrailingZeros(), E);
8172 }
8173
Richard Smith8889a3d2013-06-13 06:26:32 +00008174 case Builtin::BI__builtin_eh_return_data_regno: {
8175 int Operand = E->getArg(0)->EvaluateKnownConstInt(Info.Ctx).getZExtValue();
8176 Operand = Info.Ctx.getTargetInfo().getEHDataRegisterNumber(Operand);
8177 return Success(Operand, E);
8178 }
8179
8180 case Builtin::BI__builtin_expect:
8181 return Visit(E->getArg(0));
8182
8183 case Builtin::BI__builtin_ffs:
8184 case Builtin::BI__builtin_ffsl:
8185 case Builtin::BI__builtin_ffsll: {
8186 APSInt Val;
8187 if (!EvaluateInteger(E->getArg(0), Val, Info))
8188 return false;
8189
8190 unsigned N = Val.countTrailingZeros();
8191 return Success(N == Val.getBitWidth() ? 0 : N + 1, E);
8192 }
8193
8194 case Builtin::BI__builtin_fpclassify: {
8195 APFloat Val(0.0);
8196 if (!EvaluateFloat(E->getArg(5), Val, Info))
8197 return false;
8198 unsigned Arg;
8199 switch (Val.getCategory()) {
8200 case APFloat::fcNaN: Arg = 0; break;
8201 case APFloat::fcInfinity: Arg = 1; break;
8202 case APFloat::fcNormal: Arg = Val.isDenormal() ? 3 : 2; break;
8203 case APFloat::fcZero: Arg = 4; break;
8204 }
8205 return Visit(E->getArg(Arg));
8206 }
8207
8208 case Builtin::BI__builtin_isinf_sign: {
8209 APFloat Val(0.0);
Richard Smithab341c62013-06-13 06:31:13 +00008210 return EvaluateFloat(E->getArg(0), Val, Info) &&
Richard Smith8889a3d2013-06-13 06:26:32 +00008211 Success(Val.isInfinity() ? (Val.isNegative() ? -1 : 1) : 0, E);
8212 }
8213
Richard Smithea3019d2013-10-15 19:07:14 +00008214 case Builtin::BI__builtin_isinf: {
8215 APFloat Val(0.0);
8216 return EvaluateFloat(E->getArg(0), Val, Info) &&
8217 Success(Val.isInfinity() ? 1 : 0, E);
8218 }
8219
8220 case Builtin::BI__builtin_isfinite: {
8221 APFloat Val(0.0);
8222 return EvaluateFloat(E->getArg(0), Val, Info) &&
8223 Success(Val.isFinite() ? 1 : 0, E);
8224 }
8225
8226 case Builtin::BI__builtin_isnan: {
8227 APFloat Val(0.0);
8228 return EvaluateFloat(E->getArg(0), Val, Info) &&
8229 Success(Val.isNaN() ? 1 : 0, E);
8230 }
8231
8232 case Builtin::BI__builtin_isnormal: {
8233 APFloat Val(0.0);
8234 return EvaluateFloat(E->getArg(0), Val, Info) &&
8235 Success(Val.isNormal() ? 1 : 0, E);
8236 }
8237
Richard Smith8889a3d2013-06-13 06:26:32 +00008238 case Builtin::BI__builtin_parity:
8239 case Builtin::BI__builtin_parityl:
8240 case Builtin::BI__builtin_parityll: {
8241 APSInt Val;
8242 if (!EvaluateInteger(E->getArg(0), Val, Info))
8243 return false;
8244
8245 return Success(Val.countPopulation() % 2, E);
8246 }
8247
Richard Smith80b3c8e2013-06-13 05:04:16 +00008248 case Builtin::BI__builtin_popcount:
8249 case Builtin::BI__builtin_popcountl:
8250 case Builtin::BI__builtin_popcountll: {
8251 APSInt Val;
8252 if (!EvaluateInteger(E->getArg(0), Val, Info))
8253 return false;
8254
8255 return Success(Val.countPopulation(), E);
8256 }
8257
Douglas Gregor6a6dac22010-09-10 06:27:15 +00008258 case Builtin::BIstrlen:
Richard Smith8110c9d2016-11-29 19:45:17 +00008259 case Builtin::BIwcslen:
Richard Smith9cf080f2012-01-18 03:06:12 +00008260 // A call to strlen is not a constant expression.
Richard Smith2bf7fdb2013-01-02 11:42:31 +00008261 if (Info.getLangOpts().CPlusPlus11)
Richard Smithce1ec5e2012-03-15 04:53:45 +00008262 Info.CCEDiag(E, diag::note_constexpr_invalid_function)
Richard Smith8110c9d2016-11-29 19:45:17 +00008263 << /*isConstexpr*/0 << /*isConstructor*/0
8264 << (std::string("'") + Info.Ctx.BuiltinInfo.getName(BuiltinOp) + "'");
Richard Smith9cf080f2012-01-18 03:06:12 +00008265 else
Richard Smithce1ec5e2012-03-15 04:53:45 +00008266 Info.CCEDiag(E, diag::note_invalid_subexpr_in_const_expr);
Adrian Prantlf3b3ccd2017-12-19 22:06:11 +00008267 LLVM_FALLTHROUGH;
Richard Smith8110c9d2016-11-29 19:45:17 +00008268 case Builtin::BI__builtin_strlen:
8269 case Builtin::BI__builtin_wcslen: {
Richard Smithe6c19f22013-11-15 02:10:04 +00008270 // As an extension, we support __builtin_strlen() as a constant expression,
8271 // and support folding strlen() to a constant.
8272 LValue String;
8273 if (!EvaluatePointer(E->getArg(0), String, Info))
8274 return false;
8275
Richard Smith8110c9d2016-11-29 19:45:17 +00008276 QualType CharTy = E->getArg(0)->getType()->getPointeeType();
8277
Richard Smithe6c19f22013-11-15 02:10:04 +00008278 // Fast path: if it's a string literal, search the string value.
8279 if (const StringLiteral *S = dyn_cast_or_null<StringLiteral>(
8280 String.getLValueBase().dyn_cast<const Expr *>())) {
Douglas Gregor6a6dac22010-09-10 06:27:15 +00008281 // The string literal may have embedded null characters. Find the first
8282 // one and truncate there.
Richard Smithe6c19f22013-11-15 02:10:04 +00008283 StringRef Str = S->getBytes();
8284 int64_t Off = String.Offset.getQuantity();
8285 if (Off >= 0 && (uint64_t)Off <= (uint64_t)Str.size() &&
Richard Smith8110c9d2016-11-29 19:45:17 +00008286 S->getCharByteWidth() == 1 &&
8287 // FIXME: Add fast-path for wchar_t too.
8288 Info.Ctx.hasSameUnqualifiedType(CharTy, Info.Ctx.CharTy)) {
Richard Smithe6c19f22013-11-15 02:10:04 +00008289 Str = Str.substr(Off);
8290
8291 StringRef::size_type Pos = Str.find(0);
8292 if (Pos != StringRef::npos)
8293 Str = Str.substr(0, Pos);
8294
8295 return Success(Str.size(), E);
8296 }
8297
8298 // Fall through to slow path to issue appropriate diagnostic.
Douglas Gregor6a6dac22010-09-10 06:27:15 +00008299 }
Richard Smithe6c19f22013-11-15 02:10:04 +00008300
8301 // Slow path: scan the bytes of the string looking for the terminating 0.
Richard Smithe6c19f22013-11-15 02:10:04 +00008302 for (uint64_t Strlen = 0; /**/; ++Strlen) {
8303 APValue Char;
8304 if (!handleLValueToRValueConversion(Info, E, CharTy, String, Char) ||
8305 !Char.isInt())
8306 return false;
8307 if (!Char.getInt())
8308 return Success(Strlen, E);
8309 if (!HandleLValueArrayAdjustment(Info, E, String, CharTy, 1))
8310 return false;
8311 }
8312 }
Eli Friedmana4c26022011-10-17 21:44:23 +00008313
Richard Smithe151bab2016-11-11 23:43:35 +00008314 case Builtin::BIstrcmp:
Richard Smith8110c9d2016-11-29 19:45:17 +00008315 case Builtin::BIwcscmp:
Richard Smithe151bab2016-11-11 23:43:35 +00008316 case Builtin::BIstrncmp:
Richard Smith8110c9d2016-11-29 19:45:17 +00008317 case Builtin::BIwcsncmp:
Richard Smithe151bab2016-11-11 23:43:35 +00008318 case Builtin::BImemcmp:
Richard Smith8110c9d2016-11-29 19:45:17 +00008319 case Builtin::BIwmemcmp:
Richard Smithe151bab2016-11-11 23:43:35 +00008320 // A call to strlen is not a constant expression.
8321 if (Info.getLangOpts().CPlusPlus11)
8322 Info.CCEDiag(E, diag::note_constexpr_invalid_function)
8323 << /*isConstexpr*/0 << /*isConstructor*/0
Richard Smith8110c9d2016-11-29 19:45:17 +00008324 << (std::string("'") + Info.Ctx.BuiltinInfo.getName(BuiltinOp) + "'");
Richard Smithe151bab2016-11-11 23:43:35 +00008325 else
8326 Info.CCEDiag(E, diag::note_invalid_subexpr_in_const_expr);
Adrian Prantlf3b3ccd2017-12-19 22:06:11 +00008327 LLVM_FALLTHROUGH;
Richard Smithe151bab2016-11-11 23:43:35 +00008328 case Builtin::BI__builtin_strcmp:
Richard Smith8110c9d2016-11-29 19:45:17 +00008329 case Builtin::BI__builtin_wcscmp:
Richard Smithe151bab2016-11-11 23:43:35 +00008330 case Builtin::BI__builtin_strncmp:
Richard Smith8110c9d2016-11-29 19:45:17 +00008331 case Builtin::BI__builtin_wcsncmp:
8332 case Builtin::BI__builtin_memcmp:
8333 case Builtin::BI__builtin_wmemcmp: {
Richard Smithe151bab2016-11-11 23:43:35 +00008334 LValue String1, String2;
8335 if (!EvaluatePointer(E->getArg(0), String1, Info) ||
8336 !EvaluatePointer(E->getArg(1), String2, Info))
8337 return false;
Richard Smith8110c9d2016-11-29 19:45:17 +00008338
8339 QualType CharTy = E->getArg(0)->getType()->getPointeeType();
8340
Richard Smithe151bab2016-11-11 23:43:35 +00008341 uint64_t MaxLength = uint64_t(-1);
8342 if (BuiltinOp != Builtin::BIstrcmp &&
Richard Smith8110c9d2016-11-29 19:45:17 +00008343 BuiltinOp != Builtin::BIwcscmp &&
8344 BuiltinOp != Builtin::BI__builtin_strcmp &&
8345 BuiltinOp != Builtin::BI__builtin_wcscmp) {
Richard Smithe151bab2016-11-11 23:43:35 +00008346 APSInt N;
8347 if (!EvaluateInteger(E->getArg(2), N, Info))
8348 return false;
8349 MaxLength = N.getExtValue();
8350 }
8351 bool StopAtNull = (BuiltinOp != Builtin::BImemcmp &&
Richard Smith8110c9d2016-11-29 19:45:17 +00008352 BuiltinOp != Builtin::BIwmemcmp &&
8353 BuiltinOp != Builtin::BI__builtin_memcmp &&
8354 BuiltinOp != Builtin::BI__builtin_wmemcmp);
Benjamin Kramer33b70922018-04-23 22:04:34 +00008355 bool IsWide = BuiltinOp == Builtin::BIwcscmp ||
8356 BuiltinOp == Builtin::BIwcsncmp ||
8357 BuiltinOp == Builtin::BIwmemcmp ||
8358 BuiltinOp == Builtin::BI__builtin_wcscmp ||
8359 BuiltinOp == Builtin::BI__builtin_wcsncmp ||
8360 BuiltinOp == Builtin::BI__builtin_wmemcmp;
Richard Smithe151bab2016-11-11 23:43:35 +00008361 for (; MaxLength; --MaxLength) {
8362 APValue Char1, Char2;
8363 if (!handleLValueToRValueConversion(Info, E, CharTy, String1, Char1) ||
8364 !handleLValueToRValueConversion(Info, E, CharTy, String2, Char2) ||
8365 !Char1.isInt() || !Char2.isInt())
8366 return false;
Benjamin Kramer33b70922018-04-23 22:04:34 +00008367 if (Char1.getInt() != Char2.getInt()) {
8368 if (IsWide) // wmemcmp compares with wchar_t signedness.
8369 return Success(Char1.getInt() < Char2.getInt() ? -1 : 1, E);
8370 // memcmp always compares unsigned chars.
8371 return Success(Char1.getInt().ult(Char2.getInt()) ? -1 : 1, E);
8372 }
Richard Smithe151bab2016-11-11 23:43:35 +00008373 if (StopAtNull && !Char1.getInt())
8374 return Success(0, E);
8375 assert(!(StopAtNull && !Char2.getInt()));
8376 if (!HandleLValueArrayAdjustment(Info, E, String1, CharTy, 1) ||
8377 !HandleLValueArrayAdjustment(Info, E, String2, CharTy, 1))
8378 return false;
8379 }
8380 // We hit the strncmp / memcmp limit.
8381 return Success(0, E);
8382 }
8383
Richard Smith01ba47d2012-04-13 00:45:38 +00008384 case Builtin::BI__atomic_always_lock_free:
Richard Smithb1e36c62012-04-11 17:55:32 +00008385 case Builtin::BI__atomic_is_lock_free:
8386 case Builtin::BI__c11_atomic_is_lock_free: {
Eli Friedmana4c26022011-10-17 21:44:23 +00008387 APSInt SizeVal;
8388 if (!EvaluateInteger(E->getArg(0), SizeVal, Info))
8389 return false;
8390
8391 // For __atomic_is_lock_free(sizeof(_Atomic(T))), if the size is a power
8392 // of two less than the maximum inline atomic width, we know it is
8393 // lock-free. If the size isn't a power of two, or greater than the
8394 // maximum alignment where we promote atomics, we know it is not lock-free
8395 // (at least not in the sense of atomic_is_lock_free). Otherwise,
8396 // the answer can only be determined at runtime; for example, 16-byte
8397 // atomics have lock-free implementations on some, but not all,
8398 // x86-64 processors.
8399
8400 // Check power-of-two.
8401 CharUnits Size = CharUnits::fromQuantity(SizeVal.getZExtValue());
Richard Smith01ba47d2012-04-13 00:45:38 +00008402 if (Size.isPowerOfTwo()) {
8403 // Check against inlining width.
8404 unsigned InlineWidthBits =
8405 Info.Ctx.getTargetInfo().getMaxAtomicInlineWidth();
8406 if (Size <= Info.Ctx.toCharUnitsFromBits(InlineWidthBits)) {
8407 if (BuiltinOp == Builtin::BI__c11_atomic_is_lock_free ||
8408 Size == CharUnits::One() ||
8409 E->getArg(1)->isNullPointerConstant(Info.Ctx,
8410 Expr::NPC_NeverValueDependent))
8411 // OK, we will inline appropriately-aligned operations of this size,
8412 // and _Atomic(T) is appropriately-aligned.
8413 return Success(1, E);
Eli Friedmana4c26022011-10-17 21:44:23 +00008414
Richard Smith01ba47d2012-04-13 00:45:38 +00008415 QualType PointeeType = E->getArg(1)->IgnoreImpCasts()->getType()->
8416 castAs<PointerType>()->getPointeeType();
8417 if (!PointeeType->isIncompleteType() &&
8418 Info.Ctx.getTypeAlignInChars(PointeeType) >= Size) {
8419 // OK, we will inline operations on this object.
8420 return Success(1, E);
8421 }
8422 }
8423 }
Eli Friedmana4c26022011-10-17 21:44:23 +00008424
Richard Smith01ba47d2012-04-13 00:45:38 +00008425 return BuiltinOp == Builtin::BI__atomic_always_lock_free ?
8426 Success(0, E) : Error(E);
Eli Friedmana4c26022011-10-17 21:44:23 +00008427 }
Jonas Hahnfeld23604a82017-10-17 14:28:14 +00008428 case Builtin::BIomp_is_initial_device:
8429 // We can decide statically which value the runtime would return if called.
8430 return Success(Info.getLangOpts().OpenMPIsDevice ? 0 : 1, E);
Erich Keane00958272018-06-13 20:43:27 +00008431 case Builtin::BI__builtin_add_overflow:
8432 case Builtin::BI__builtin_sub_overflow:
8433 case Builtin::BI__builtin_mul_overflow:
8434 case Builtin::BI__builtin_sadd_overflow:
8435 case Builtin::BI__builtin_uadd_overflow:
8436 case Builtin::BI__builtin_uaddl_overflow:
8437 case Builtin::BI__builtin_uaddll_overflow:
8438 case Builtin::BI__builtin_usub_overflow:
8439 case Builtin::BI__builtin_usubl_overflow:
8440 case Builtin::BI__builtin_usubll_overflow:
8441 case Builtin::BI__builtin_umul_overflow:
8442 case Builtin::BI__builtin_umull_overflow:
8443 case Builtin::BI__builtin_umulll_overflow:
8444 case Builtin::BI__builtin_saddl_overflow:
8445 case Builtin::BI__builtin_saddll_overflow:
8446 case Builtin::BI__builtin_ssub_overflow:
8447 case Builtin::BI__builtin_ssubl_overflow:
8448 case Builtin::BI__builtin_ssubll_overflow:
8449 case Builtin::BI__builtin_smul_overflow:
8450 case Builtin::BI__builtin_smull_overflow:
8451 case Builtin::BI__builtin_smulll_overflow: {
8452 LValue ResultLValue;
8453 APSInt LHS, RHS;
8454
8455 QualType ResultType = E->getArg(2)->getType()->getPointeeType();
8456 if (!EvaluateInteger(E->getArg(0), LHS, Info) ||
8457 !EvaluateInteger(E->getArg(1), RHS, Info) ||
8458 !EvaluatePointer(E->getArg(2), ResultLValue, Info))
8459 return false;
8460
8461 APSInt Result;
8462 bool DidOverflow = false;
8463
8464 // If the types don't have to match, enlarge all 3 to the largest of them.
8465 if (BuiltinOp == Builtin::BI__builtin_add_overflow ||
8466 BuiltinOp == Builtin::BI__builtin_sub_overflow ||
8467 BuiltinOp == Builtin::BI__builtin_mul_overflow) {
8468 bool IsSigned = LHS.isSigned() || RHS.isSigned() ||
8469 ResultType->isSignedIntegerOrEnumerationType();
8470 bool AllSigned = LHS.isSigned() && RHS.isSigned() &&
8471 ResultType->isSignedIntegerOrEnumerationType();
8472 uint64_t LHSSize = LHS.getBitWidth();
8473 uint64_t RHSSize = RHS.getBitWidth();
8474 uint64_t ResultSize = Info.Ctx.getTypeSize(ResultType);
8475 uint64_t MaxBits = std::max(std::max(LHSSize, RHSSize), ResultSize);
8476
8477 // Add an additional bit if the signedness isn't uniformly agreed to. We
8478 // could do this ONLY if there is a signed and an unsigned that both have
8479 // MaxBits, but the code to check that is pretty nasty. The issue will be
8480 // caught in the shrink-to-result later anyway.
8481 if (IsSigned && !AllSigned)
8482 ++MaxBits;
8483
8484 LHS = APSInt(IsSigned ? LHS.sextOrSelf(MaxBits) : LHS.zextOrSelf(MaxBits),
8485 !IsSigned);
8486 RHS = APSInt(IsSigned ? RHS.sextOrSelf(MaxBits) : RHS.zextOrSelf(MaxBits),
8487 !IsSigned);
8488 Result = APSInt(MaxBits, !IsSigned);
8489 }
8490
8491 // Find largest int.
8492 switch (BuiltinOp) {
8493 default:
8494 llvm_unreachable("Invalid value for BuiltinOp");
8495 case Builtin::BI__builtin_add_overflow:
8496 case Builtin::BI__builtin_sadd_overflow:
8497 case Builtin::BI__builtin_saddl_overflow:
8498 case Builtin::BI__builtin_saddll_overflow:
8499 case Builtin::BI__builtin_uadd_overflow:
8500 case Builtin::BI__builtin_uaddl_overflow:
8501 case Builtin::BI__builtin_uaddll_overflow:
8502 Result = LHS.isSigned() ? LHS.sadd_ov(RHS, DidOverflow)
8503 : LHS.uadd_ov(RHS, DidOverflow);
8504 break;
8505 case Builtin::BI__builtin_sub_overflow:
8506 case Builtin::BI__builtin_ssub_overflow:
8507 case Builtin::BI__builtin_ssubl_overflow:
8508 case Builtin::BI__builtin_ssubll_overflow:
8509 case Builtin::BI__builtin_usub_overflow:
8510 case Builtin::BI__builtin_usubl_overflow:
8511 case Builtin::BI__builtin_usubll_overflow:
8512 Result = LHS.isSigned() ? LHS.ssub_ov(RHS, DidOverflow)
8513 : LHS.usub_ov(RHS, DidOverflow);
8514 break;
8515 case Builtin::BI__builtin_mul_overflow:
8516 case Builtin::BI__builtin_smul_overflow:
8517 case Builtin::BI__builtin_smull_overflow:
8518 case Builtin::BI__builtin_smulll_overflow:
8519 case Builtin::BI__builtin_umul_overflow:
8520 case Builtin::BI__builtin_umull_overflow:
8521 case Builtin::BI__builtin_umulll_overflow:
8522 Result = LHS.isSigned() ? LHS.smul_ov(RHS, DidOverflow)
8523 : LHS.umul_ov(RHS, DidOverflow);
8524 break;
8525 }
8526
8527 // In the case where multiple sizes are allowed, truncate and see if
8528 // the values are the same.
8529 if (BuiltinOp == Builtin::BI__builtin_add_overflow ||
8530 BuiltinOp == Builtin::BI__builtin_sub_overflow ||
8531 BuiltinOp == Builtin::BI__builtin_mul_overflow) {
8532 // APSInt doesn't have a TruncOrSelf, so we use extOrTrunc instead,
8533 // since it will give us the behavior of a TruncOrSelf in the case where
8534 // its parameter <= its size. We previously set Result to be at least the
8535 // type-size of the result, so getTypeSize(ResultType) <= Result.BitWidth
8536 // will work exactly like TruncOrSelf.
8537 APSInt Temp = Result.extOrTrunc(Info.Ctx.getTypeSize(ResultType));
8538 Temp.setIsSigned(ResultType->isSignedIntegerOrEnumerationType());
8539
8540 if (!APSInt::isSameValue(Temp, Result))
8541 DidOverflow = true;
8542 Result = Temp;
8543 }
8544
8545 APValue APV{Result};
Erich Keanecb549642018-07-05 15:52:58 +00008546 if (!handleAssignment(Info, E, ResultLValue, ResultType, APV))
8547 return false;
Erich Keane00958272018-06-13 20:43:27 +00008548 return Success(DidOverflow, E);
8549 }
Chris Lattner4deaa4e2008-10-06 05:28:25 +00008550 }
Chris Lattner7174bf32008-07-12 00:38:25 +00008551}
Anders Carlsson4a3585b2008-07-08 15:34:11 +00008552
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00008553/// Determine whether this is a pointer past the end of the complete
Richard Smithd20f1e62014-10-21 23:01:04 +00008554/// object referred to by the lvalue.
8555static bool isOnePastTheEndOfCompleteObject(const ASTContext &Ctx,
8556 const LValue &LV) {
8557 // A null pointer can be viewed as being "past the end" but we don't
8558 // choose to look at it that way here.
8559 if (!LV.getLValueBase())
8560 return false;
8561
8562 // If the designator is valid and refers to a subobject, we're not pointing
8563 // past the end.
8564 if (!LV.getLValueDesignator().Invalid &&
8565 !LV.getLValueDesignator().isOnePastTheEnd())
8566 return false;
8567
David Majnemerc378ca52015-08-29 08:32:55 +00008568 // A pointer to an incomplete type might be past-the-end if the type's size is
8569 // zero. We cannot tell because the type is incomplete.
8570 QualType Ty = getType(LV.getLValueBase());
8571 if (Ty->isIncompleteType())
8572 return true;
8573
Richard Smithd20f1e62014-10-21 23:01:04 +00008574 // We're a past-the-end pointer if we point to the byte after the object,
8575 // no matter what our type or path is.
David Majnemerc378ca52015-08-29 08:32:55 +00008576 auto Size = Ctx.getTypeSizeInChars(Ty);
Richard Smithd20f1e62014-10-21 23:01:04 +00008577 return LV.getLValueOffset() == Size;
8578}
8579
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008580namespace {
Richard Smith11562c52011-10-28 17:51:58 +00008581
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00008582/// Data recursive integer evaluator of certain binary operators.
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008583///
8584/// We use a data recursive algorithm for binary operators so that we are able
8585/// to handle extreme cases of chained binary operators without causing stack
8586/// overflow.
8587class DataRecursiveIntBinOpEvaluator {
8588 struct EvalResult {
8589 APValue Val;
8590 bool Failed;
8591
8592 EvalResult() : Failed(false) { }
8593
8594 void swap(EvalResult &RHS) {
8595 Val.swap(RHS.Val);
8596 Failed = RHS.Failed;
8597 RHS.Failed = false;
8598 }
8599 };
8600
8601 struct Job {
8602 const Expr *E;
8603 EvalResult LHSResult; // meaningful only for binary operator expression.
8604 enum { AnyExprKind, BinOpKind, BinOpVisitedLHSKind } Kind;
Craig Topper36250ad2014-05-12 05:36:57 +00008605
David Blaikie73726062015-08-12 23:09:24 +00008606 Job() = default;
Benjamin Kramer33e97602016-10-21 18:55:07 +00008607 Job(Job &&) = default;
David Blaikie73726062015-08-12 23:09:24 +00008608
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008609 void startSpeculativeEval(EvalInfo &Info) {
George Burgess IV8c892b52016-05-25 22:31:54 +00008610 SpecEvalRAII = SpeculativeEvaluationRAII(Info);
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008611 }
George Burgess IV8c892b52016-05-25 22:31:54 +00008612
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008613 private:
George Burgess IV8c892b52016-05-25 22:31:54 +00008614 SpeculativeEvaluationRAII SpecEvalRAII;
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008615 };
8616
8617 SmallVector<Job, 16> Queue;
8618
8619 IntExprEvaluator &IntEval;
8620 EvalInfo &Info;
8621 APValue &FinalResult;
8622
8623public:
8624 DataRecursiveIntBinOpEvaluator(IntExprEvaluator &IntEval, APValue &Result)
8625 : IntEval(IntEval), Info(IntEval.getEvalInfo()), FinalResult(Result) { }
8626
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00008627 /// True if \param E is a binary operator that we are going to handle
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008628 /// data recursively.
8629 /// We handle binary operators that are comma, logical, or that have operands
8630 /// with integral or enumeration type.
8631 static bool shouldEnqueue(const BinaryOperator *E) {
Eric Fiselier0683c0e2018-05-07 21:07:10 +00008632 return E->getOpcode() == BO_Comma || E->isLogicalOp() ||
8633 (E->isRValue() && E->getType()->isIntegralOrEnumerationType() &&
Richard Smith3a09d8b2016-06-04 00:22:31 +00008634 E->getLHS()->getType()->isIntegralOrEnumerationType() &&
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008635 E->getRHS()->getType()->isIntegralOrEnumerationType());
Eli Friedman5a332ea2008-11-13 06:09:17 +00008636 }
8637
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008638 bool Traverse(const BinaryOperator *E) {
8639 enqueue(E);
8640 EvalResult PrevResult;
Richard Trieuba4d0872012-03-21 23:30:30 +00008641 while (!Queue.empty())
8642 process(PrevResult);
8643
8644 if (PrevResult.Failed) return false;
Argyrios Kyrtzidis8d4677a2012-02-25 23:21:37 +00008645
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008646 FinalResult.swap(PrevResult.Val);
8647 return true;
8648 }
8649
8650private:
8651 bool Success(uint64_t Value, const Expr *E, APValue &Result) {
8652 return IntEval.Success(Value, E, Result);
8653 }
8654 bool Success(const APSInt &Value, const Expr *E, APValue &Result) {
8655 return IntEval.Success(Value, E, Result);
8656 }
8657 bool Error(const Expr *E) {
8658 return IntEval.Error(E);
8659 }
8660 bool Error(const Expr *E, diag::kind D) {
8661 return IntEval.Error(E, D);
8662 }
8663
8664 OptionalDiagnostic CCEDiag(const Expr *E, diag::kind D) {
8665 return Info.CCEDiag(E, D);
8666 }
8667
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00008668 // Returns true if visiting the RHS is necessary, false otherwise.
Argyrios Kyrtzidis5957b702012-03-22 02:13:06 +00008669 bool VisitBinOpLHSOnly(EvalResult &LHSResult, const BinaryOperator *E,
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008670 bool &SuppressRHSDiags);
8671
8672 bool VisitBinOp(const EvalResult &LHSResult, const EvalResult &RHSResult,
8673 const BinaryOperator *E, APValue &Result);
8674
8675 void EvaluateExpr(const Expr *E, EvalResult &Result) {
8676 Result.Failed = !Evaluate(Result.Val, Info, E);
8677 if (Result.Failed)
8678 Result.Val = APValue();
8679 }
8680
Richard Trieuba4d0872012-03-21 23:30:30 +00008681 void process(EvalResult &Result);
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008682
8683 void enqueue(const Expr *E) {
8684 E = E->IgnoreParens();
8685 Queue.resize(Queue.size()+1);
8686 Queue.back().E = E;
8687 Queue.back().Kind = Job::AnyExprKind;
8688 }
8689};
8690
Alexander Kornienkoab9db512015-06-22 23:07:51 +00008691}
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008692
8693bool DataRecursiveIntBinOpEvaluator::
Argyrios Kyrtzidis5957b702012-03-22 02:13:06 +00008694 VisitBinOpLHSOnly(EvalResult &LHSResult, const BinaryOperator *E,
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008695 bool &SuppressRHSDiags) {
8696 if (E->getOpcode() == BO_Comma) {
8697 // Ignore LHS but note if we could not evaluate it.
8698 if (LHSResult.Failed)
Richard Smith4e66f1f2013-11-06 02:19:10 +00008699 return Info.noteSideEffect();
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008700 return true;
8701 }
Richard Smith4e66f1f2013-11-06 02:19:10 +00008702
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008703 if (E->isLogicalOp()) {
Richard Smith4e66f1f2013-11-06 02:19:10 +00008704 bool LHSAsBool;
8705 if (!LHSResult.Failed && HandleConversionToBool(LHSResult.Val, LHSAsBool)) {
Argyrios Kyrtzidis8d4677a2012-02-25 23:21:37 +00008706 // We were able to evaluate the LHS, see if we can get away with not
8707 // evaluating the RHS: 0 && X -> 0, 1 || X -> 1
Richard Smith4e66f1f2013-11-06 02:19:10 +00008708 if (LHSAsBool == (E->getOpcode() == BO_LOr)) {
8709 Success(LHSAsBool, E, LHSResult.Val);
Argyrios Kyrtzidis5957b702012-03-22 02:13:06 +00008710 return false; // Ignore RHS
Argyrios Kyrtzidis8d4677a2012-02-25 23:21:37 +00008711 }
8712 } else {
Richard Smith4e66f1f2013-11-06 02:19:10 +00008713 LHSResult.Failed = true;
8714
Argyrios Kyrtzidis8d4677a2012-02-25 23:21:37 +00008715 // Since we weren't able to evaluate the left hand side, it
George Burgess IV8c892b52016-05-25 22:31:54 +00008716 // might have had side effects.
Richard Smith4e66f1f2013-11-06 02:19:10 +00008717 if (!Info.noteSideEffect())
8718 return false;
8719
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008720 // We can't evaluate the LHS; however, sometimes the result
8721 // is determined by the RHS: X && 0 -> 0, X || 1 -> 1.
8722 // Don't ignore RHS and suppress diagnostics from this arm.
8723 SuppressRHSDiags = true;
8724 }
Richard Smith4e66f1f2013-11-06 02:19:10 +00008725
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008726 return true;
8727 }
Richard Smith4e66f1f2013-11-06 02:19:10 +00008728
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008729 assert(E->getLHS()->getType()->isIntegralOrEnumerationType() &&
8730 E->getRHS()->getType()->isIntegralOrEnumerationType());
Richard Smith4e66f1f2013-11-06 02:19:10 +00008731
George Burgess IVa145e252016-05-25 22:38:36 +00008732 if (LHSResult.Failed && !Info.noteFailure())
Argyrios Kyrtzidis5957b702012-03-22 02:13:06 +00008733 return false; // Ignore RHS;
8734
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008735 return true;
8736}
Argyrios Kyrtzidis8d4677a2012-02-25 23:21:37 +00008737
Benjamin Kramerf6021ec2017-03-21 21:35:04 +00008738static void addOrSubLValueAsInteger(APValue &LVal, const APSInt &Index,
8739 bool IsSub) {
Richard Smithd6cc1982017-01-31 02:23:02 +00008740 // Compute the new offset in the appropriate width, wrapping at 64 bits.
8741 // FIXME: When compiling for a 32-bit target, we should use 32-bit
8742 // offsets.
8743 assert(!LVal.hasLValuePath() && "have designator for integer lvalue");
8744 CharUnits &Offset = LVal.getLValueOffset();
8745 uint64_t Offset64 = Offset.getQuantity();
8746 uint64_t Index64 = Index.extOrTrunc(64).getZExtValue();
8747 Offset = CharUnits::fromQuantity(IsSub ? Offset64 - Index64
8748 : Offset64 + Index64);
8749}
8750
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008751bool DataRecursiveIntBinOpEvaluator::
8752 VisitBinOp(const EvalResult &LHSResult, const EvalResult &RHSResult,
8753 const BinaryOperator *E, APValue &Result) {
8754 if (E->getOpcode() == BO_Comma) {
8755 if (RHSResult.Failed)
8756 return false;
8757 Result = RHSResult.Val;
8758 return true;
8759 }
Fangrui Song6907ce22018-07-30 19:24:48 +00008760
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008761 if (E->isLogicalOp()) {
8762 bool lhsResult, rhsResult;
8763 bool LHSIsOK = HandleConversionToBool(LHSResult.Val, lhsResult);
8764 bool RHSIsOK = HandleConversionToBool(RHSResult.Val, rhsResult);
Fangrui Song6907ce22018-07-30 19:24:48 +00008765
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008766 if (LHSIsOK) {
8767 if (RHSIsOK) {
8768 if (E->getOpcode() == BO_LOr)
8769 return Success(lhsResult || rhsResult, E, Result);
8770 else
8771 return Success(lhsResult && rhsResult, E, Result);
8772 }
8773 } else {
8774 if (RHSIsOK) {
Argyrios Kyrtzidis8d4677a2012-02-25 23:21:37 +00008775 // We can't evaluate the LHS; however, sometimes the result
8776 // is determined by the RHS: X && 0 -> 0, X || 1 -> 1.
8777 if (rhsResult == (E->getOpcode() == BO_LOr))
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008778 return Success(rhsResult, E, Result);
Argyrios Kyrtzidis8d4677a2012-02-25 23:21:37 +00008779 }
8780 }
Fangrui Song6907ce22018-07-30 19:24:48 +00008781
Argyrios Kyrtzidis8d4677a2012-02-25 23:21:37 +00008782 return false;
8783 }
Fangrui Song6907ce22018-07-30 19:24:48 +00008784
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008785 assert(E->getLHS()->getType()->isIntegralOrEnumerationType() &&
8786 E->getRHS()->getType()->isIntegralOrEnumerationType());
Fangrui Song6907ce22018-07-30 19:24:48 +00008787
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008788 if (LHSResult.Failed || RHSResult.Failed)
8789 return false;
Fangrui Song6907ce22018-07-30 19:24:48 +00008790
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008791 const APValue &LHSVal = LHSResult.Val;
8792 const APValue &RHSVal = RHSResult.Val;
Fangrui Song6907ce22018-07-30 19:24:48 +00008793
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008794 // Handle cases like (unsigned long)&a + 4.
8795 if (E->isAdditiveOp() && LHSVal.isLValue() && RHSVal.isInt()) {
8796 Result = LHSVal;
Richard Smithd6cc1982017-01-31 02:23:02 +00008797 addOrSubLValueAsInteger(Result, RHSVal.getInt(), E->getOpcode() == BO_Sub);
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008798 return true;
8799 }
Fangrui Song6907ce22018-07-30 19:24:48 +00008800
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008801 // Handle cases like 4 + (unsigned long)&a
8802 if (E->getOpcode() == BO_Add &&
8803 RHSVal.isLValue() && LHSVal.isInt()) {
8804 Result = RHSVal;
Richard Smithd6cc1982017-01-31 02:23:02 +00008805 addOrSubLValueAsInteger(Result, LHSVal.getInt(), /*IsSub*/false);
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008806 return true;
8807 }
Fangrui Song6907ce22018-07-30 19:24:48 +00008808
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008809 if (E->getOpcode() == BO_Sub && LHSVal.isLValue() && RHSVal.isLValue()) {
8810 // Handle (intptr_t)&&A - (intptr_t)&&B.
8811 if (!LHSVal.getLValueOffset().isZero() ||
8812 !RHSVal.getLValueOffset().isZero())
8813 return false;
8814 const Expr *LHSExpr = LHSVal.getLValueBase().dyn_cast<const Expr*>();
8815 const Expr *RHSExpr = RHSVal.getLValueBase().dyn_cast<const Expr*>();
8816 if (!LHSExpr || !RHSExpr)
8817 return false;
8818 const AddrLabelExpr *LHSAddrExpr = dyn_cast<AddrLabelExpr>(LHSExpr);
8819 const AddrLabelExpr *RHSAddrExpr = dyn_cast<AddrLabelExpr>(RHSExpr);
8820 if (!LHSAddrExpr || !RHSAddrExpr)
8821 return false;
8822 // Make sure both labels come from the same function.
8823 if (LHSAddrExpr->getLabel()->getDeclContext() !=
8824 RHSAddrExpr->getLabel()->getDeclContext())
8825 return false;
8826 Result = APValue(LHSAddrExpr, RHSAddrExpr);
8827 return true;
8828 }
Richard Smith43e77732013-05-07 04:50:00 +00008829
8830 // All the remaining cases expect both operands to be an integer
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008831 if (!LHSVal.isInt() || !RHSVal.isInt())
8832 return Error(E);
Richard Smith43e77732013-05-07 04:50:00 +00008833
8834 // Set up the width and signedness manually, in case it can't be deduced
8835 // from the operation we're performing.
8836 // FIXME: Don't do this in the cases where we can deduce it.
8837 APSInt Value(Info.Ctx.getIntWidth(E->getType()),
8838 E->getType()->isUnsignedIntegerOrEnumerationType());
8839 if (!handleIntIntBinOp(Info, E, LHSVal.getInt(), E->getOpcode(),
8840 RHSVal.getInt(), Value))
8841 return false;
8842 return Success(Value, E, Result);
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008843}
8844
Richard Trieuba4d0872012-03-21 23:30:30 +00008845void DataRecursiveIntBinOpEvaluator::process(EvalResult &Result) {
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008846 Job &job = Queue.back();
Fangrui Song6907ce22018-07-30 19:24:48 +00008847
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008848 switch (job.Kind) {
8849 case Job::AnyExprKind: {
8850 if (const BinaryOperator *Bop = dyn_cast<BinaryOperator>(job.E)) {
8851 if (shouldEnqueue(Bop)) {
8852 job.Kind = Job::BinOpKind;
8853 enqueue(Bop->getLHS());
Richard Trieuba4d0872012-03-21 23:30:30 +00008854 return;
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008855 }
8856 }
Fangrui Song6907ce22018-07-30 19:24:48 +00008857
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008858 EvaluateExpr(job.E, Result);
8859 Queue.pop_back();
Richard Trieuba4d0872012-03-21 23:30:30 +00008860 return;
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008861 }
Fangrui Song6907ce22018-07-30 19:24:48 +00008862
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008863 case Job::BinOpKind: {
8864 const BinaryOperator *Bop = cast<BinaryOperator>(job.E);
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008865 bool SuppressRHSDiags = false;
Argyrios Kyrtzidis5957b702012-03-22 02:13:06 +00008866 if (!VisitBinOpLHSOnly(Result, Bop, SuppressRHSDiags)) {
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008867 Queue.pop_back();
Richard Trieuba4d0872012-03-21 23:30:30 +00008868 return;
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008869 }
8870 if (SuppressRHSDiags)
8871 job.startSpeculativeEval(Info);
Argyrios Kyrtzidis5957b702012-03-22 02:13:06 +00008872 job.LHSResult.swap(Result);
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008873 job.Kind = Job::BinOpVisitedLHSKind;
8874 enqueue(Bop->getRHS());
Richard Trieuba4d0872012-03-21 23:30:30 +00008875 return;
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008876 }
Fangrui Song6907ce22018-07-30 19:24:48 +00008877
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008878 case Job::BinOpVisitedLHSKind: {
8879 const BinaryOperator *Bop = cast<BinaryOperator>(job.E);
8880 EvalResult RHS;
8881 RHS.swap(Result);
Richard Trieuba4d0872012-03-21 23:30:30 +00008882 Result.Failed = !VisitBinOp(job.LHSResult, RHS, Bop, Result.Val);
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008883 Queue.pop_back();
Richard Trieuba4d0872012-03-21 23:30:30 +00008884 return;
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008885 }
8886 }
Fangrui Song6907ce22018-07-30 19:24:48 +00008887
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008888 llvm_unreachable("Invalid Job::Kind!");
8889}
8890
George Burgess IV8c892b52016-05-25 22:31:54 +00008891namespace {
8892/// Used when we determine that we should fail, but can keep evaluating prior to
8893/// noting that we had a failure.
8894class DelayedNoteFailureRAII {
8895 EvalInfo &Info;
8896 bool NoteFailure;
8897
8898public:
8899 DelayedNoteFailureRAII(EvalInfo &Info, bool NoteFailure = true)
8900 : Info(Info), NoteFailure(NoteFailure) {}
8901 ~DelayedNoteFailureRAII() {
8902 if (NoteFailure) {
8903 bool ContinueAfterFailure = Info.noteFailure();
8904 (void)ContinueAfterFailure;
8905 assert(ContinueAfterFailure &&
8906 "Shouldn't have kept evaluating on failure.");
8907 }
8908 }
8909};
8910}
8911
Eric Fiselier0683c0e2018-05-07 21:07:10 +00008912template <class SuccessCB, class AfterCB>
8913static bool
8914EvaluateComparisonBinaryOperator(EvalInfo &Info, const BinaryOperator *E,
8915 SuccessCB &&Success, AfterCB &&DoAfter) {
8916 assert(E->isComparisonOp() && "expected comparison operator");
8917 assert((E->getOpcode() == BO_Cmp ||
8918 E->getType()->isIntegralOrEnumerationType()) &&
8919 "unsupported binary expression evaluation");
8920 auto Error = [&](const Expr *E) {
8921 Info.FFDiag(E, diag::note_invalid_subexpr_in_const_expr);
8922 return false;
8923 };
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008924
Eric Fiselier0683c0e2018-05-07 21:07:10 +00008925 using CCR = ComparisonCategoryResult;
8926 bool IsRelational = E->isRelationalOp();
8927 bool IsEquality = E->isEqualityOp();
8928 if (E->getOpcode() == BO_Cmp) {
8929 const ComparisonCategoryInfo &CmpInfo =
8930 Info.Ctx.CompCategories.getInfoForType(E->getType());
8931 IsRelational = CmpInfo.isOrdered();
8932 IsEquality = CmpInfo.isEquality();
8933 }
Eli Friedman5a332ea2008-11-13 06:09:17 +00008934
Anders Carlssonacc79812008-11-16 07:17:21 +00008935 QualType LHSTy = E->getLHS()->getType();
8936 QualType RHSTy = E->getRHS()->getType();
Daniel Dunbar74f2425b2009-01-29 06:43:41 +00008937
Eric Fiselier0683c0e2018-05-07 21:07:10 +00008938 if (LHSTy->isIntegralOrEnumerationType() &&
8939 RHSTy->isIntegralOrEnumerationType()) {
8940 APSInt LHS, RHS;
8941 bool LHSOK = EvaluateInteger(E->getLHS(), LHS, Info);
8942 if (!LHSOK && !Info.noteFailure())
8943 return false;
8944 if (!EvaluateInteger(E->getRHS(), RHS, Info) || !LHSOK)
8945 return false;
8946 if (LHS < RHS)
8947 return Success(CCR::Less, E);
8948 if (LHS > RHS)
8949 return Success(CCR::Greater, E);
8950 return Success(CCR::Equal, E);
8951 }
8952
Chandler Carruthb29a7432014-10-11 11:03:30 +00008953 if (LHSTy->isAnyComplexType() || RHSTy->isAnyComplexType()) {
John McCall93d91dc2010-05-07 17:22:02 +00008954 ComplexValue LHS, RHS;
Chandler Carruthb29a7432014-10-11 11:03:30 +00008955 bool LHSOK;
Josh Magee4d1a79b2015-02-04 21:50:20 +00008956 if (E->isAssignmentOp()) {
8957 LValue LV;
8958 EvaluateLValue(E->getLHS(), LV, Info);
8959 LHSOK = false;
8960 } else if (LHSTy->isRealFloatingType()) {
Chandler Carruthb29a7432014-10-11 11:03:30 +00008961 LHSOK = EvaluateFloat(E->getLHS(), LHS.FloatReal, Info);
8962 if (LHSOK) {
8963 LHS.makeComplexFloat();
8964 LHS.FloatImag = APFloat(LHS.FloatReal.getSemantics());
8965 }
8966 } else {
8967 LHSOK = EvaluateComplex(E->getLHS(), LHS, Info);
8968 }
George Burgess IVa145e252016-05-25 22:38:36 +00008969 if (!LHSOK && !Info.noteFailure())
Daniel Dunbar74f2425b2009-01-29 06:43:41 +00008970 return false;
8971
Chandler Carruthb29a7432014-10-11 11:03:30 +00008972 if (E->getRHS()->getType()->isRealFloatingType()) {
8973 if (!EvaluateFloat(E->getRHS(), RHS.FloatReal, Info) || !LHSOK)
8974 return false;
8975 RHS.makeComplexFloat();
8976 RHS.FloatImag = APFloat(RHS.FloatReal.getSemantics());
8977 } else if (!EvaluateComplex(E->getRHS(), RHS, Info) || !LHSOK)
Daniel Dunbar74f2425b2009-01-29 06:43:41 +00008978 return false;
8979
8980 if (LHS.isComplexFloat()) {
Mike Stump11289f42009-09-09 15:08:12 +00008981 APFloat::cmpResult CR_r =
Daniel Dunbar74f2425b2009-01-29 06:43:41 +00008982 LHS.getComplexFloatReal().compare(RHS.getComplexFloatReal());
Mike Stump11289f42009-09-09 15:08:12 +00008983 APFloat::cmpResult CR_i =
Daniel Dunbar74f2425b2009-01-29 06:43:41 +00008984 LHS.getComplexFloatImag().compare(RHS.getComplexFloatImag());
Eric Fiselier0683c0e2018-05-07 21:07:10 +00008985 bool IsEqual = CR_r == APFloat::cmpEqual && CR_i == APFloat::cmpEqual;
8986 return Success(IsEqual ? CCR::Equal : CCR::Nonequal, E);
Daniel Dunbar74f2425b2009-01-29 06:43:41 +00008987 } else {
Eric Fiselier0683c0e2018-05-07 21:07:10 +00008988 assert(IsEquality && "invalid complex comparison");
8989 bool IsEqual = LHS.getComplexIntReal() == RHS.getComplexIntReal() &&
8990 LHS.getComplexIntImag() == RHS.getComplexIntImag();
8991 return Success(IsEqual ? CCR::Equal : CCR::Nonequal, E);
Daniel Dunbar74f2425b2009-01-29 06:43:41 +00008992 }
8993 }
Mike Stump11289f42009-09-09 15:08:12 +00008994
Anders Carlssonacc79812008-11-16 07:17:21 +00008995 if (LHSTy->isRealFloatingType() &&
8996 RHSTy->isRealFloatingType()) {
8997 APFloat RHS(0.0), LHS(0.0);
Mike Stump11289f42009-09-09 15:08:12 +00008998
Richard Smith253c2a32012-01-27 01:14:48 +00008999 bool LHSOK = EvaluateFloat(E->getRHS(), RHS, Info);
George Burgess IVa145e252016-05-25 22:38:36 +00009000 if (!LHSOK && !Info.noteFailure())
Anders Carlssonacc79812008-11-16 07:17:21 +00009001 return false;
Mike Stump11289f42009-09-09 15:08:12 +00009002
Richard Smith253c2a32012-01-27 01:14:48 +00009003 if (!EvaluateFloat(E->getLHS(), LHS, Info) || !LHSOK)
Anders Carlssonacc79812008-11-16 07:17:21 +00009004 return false;
Mike Stump11289f42009-09-09 15:08:12 +00009005
Eric Fiselier0683c0e2018-05-07 21:07:10 +00009006 assert(E->isComparisonOp() && "Invalid binary operator!");
9007 auto GetCmpRes = [&]() {
9008 switch (LHS.compare(RHS)) {
9009 case APFloat::cmpEqual:
9010 return CCR::Equal;
9011 case APFloat::cmpLessThan:
9012 return CCR::Less;
9013 case APFloat::cmpGreaterThan:
9014 return CCR::Greater;
9015 case APFloat::cmpUnordered:
9016 return CCR::Unordered;
9017 }
Simon Pilgrim3366dcf2018-05-08 09:40:32 +00009018 llvm_unreachable("Unrecognised APFloat::cmpResult enum");
Eric Fiselier0683c0e2018-05-07 21:07:10 +00009019 };
9020 return Success(GetCmpRes(), E);
Anders Carlssonacc79812008-11-16 07:17:21 +00009021 }
Mike Stump11289f42009-09-09 15:08:12 +00009022
Eli Friedmana38da572009-04-28 19:17:36 +00009023 if (LHSTy->isPointerType() && RHSTy->isPointerType()) {
Eric Fiselier0683c0e2018-05-07 21:07:10 +00009024 LValue LHSValue, RHSValue;
Richard Smith253c2a32012-01-27 01:14:48 +00009025
Eric Fiselier0683c0e2018-05-07 21:07:10 +00009026 bool LHSOK = EvaluatePointer(E->getLHS(), LHSValue, Info);
9027 if (!LHSOK && !Info.noteFailure())
9028 return false;
Eli Friedman64004332009-03-23 04:38:34 +00009029
Eric Fiselier0683c0e2018-05-07 21:07:10 +00009030 if (!EvaluatePointer(E->getRHS(), RHSValue, Info) || !LHSOK)
9031 return false;
Eli Friedman64004332009-03-23 04:38:34 +00009032
Eric Fiselier0683c0e2018-05-07 21:07:10 +00009033 // Reject differing bases from the normal codepath; we special-case
9034 // comparisons to null.
9035 if (!HasSameBase(LHSValue, RHSValue)) {
9036 // Inequalities and subtractions between unrelated pointers have
9037 // unspecified or undefined behavior.
9038 if (!IsEquality)
9039 return Error(E);
9040 // A constant address may compare equal to the address of a symbol.
9041 // The one exception is that address of an object cannot compare equal
9042 // to a null pointer constant.
9043 if ((!LHSValue.Base && !LHSValue.Offset.isZero()) ||
9044 (!RHSValue.Base && !RHSValue.Offset.isZero()))
9045 return Error(E);
9046 // It's implementation-defined whether distinct literals will have
9047 // distinct addresses. In clang, the result of such a comparison is
9048 // unspecified, so it is not a constant expression. However, we do know
9049 // that the address of a literal will be non-null.
9050 if ((IsLiteralLValue(LHSValue) || IsLiteralLValue(RHSValue)) &&
9051 LHSValue.Base && RHSValue.Base)
9052 return Error(E);
9053 // We can't tell whether weak symbols will end up pointing to the same
9054 // object.
9055 if (IsWeakLValue(LHSValue) || IsWeakLValue(RHSValue))
9056 return Error(E);
9057 // We can't compare the address of the start of one object with the
9058 // past-the-end address of another object, per C++ DR1652.
9059 if ((LHSValue.Base && LHSValue.Offset.isZero() &&
9060 isOnePastTheEndOfCompleteObject(Info.Ctx, RHSValue)) ||
9061 (RHSValue.Base && RHSValue.Offset.isZero() &&
9062 isOnePastTheEndOfCompleteObject(Info.Ctx, LHSValue)))
9063 return Error(E);
9064 // We can't tell whether an object is at the same address as another
9065 // zero sized object.
9066 if ((RHSValue.Base && isZeroSized(LHSValue)) ||
9067 (LHSValue.Base && isZeroSized(RHSValue)))
9068 return Error(E);
9069 return Success(CCR::Nonequal, E);
9070 }
Eli Friedman64004332009-03-23 04:38:34 +00009071
Eric Fiselier0683c0e2018-05-07 21:07:10 +00009072 const CharUnits &LHSOffset = LHSValue.getLValueOffset();
9073 const CharUnits &RHSOffset = RHSValue.getLValueOffset();
Richard Smith1b470412012-02-01 08:10:20 +00009074
Eric Fiselier0683c0e2018-05-07 21:07:10 +00009075 SubobjectDesignator &LHSDesignator = LHSValue.getLValueDesignator();
9076 SubobjectDesignator &RHSDesignator = RHSValue.getLValueDesignator();
Richard Smith84f6dcf2012-02-02 01:16:57 +00009077
Eric Fiselier0683c0e2018-05-07 21:07:10 +00009078 // C++11 [expr.rel]p3:
9079 // Pointers to void (after pointer conversions) can be compared, with a
9080 // result defined as follows: If both pointers represent the same
9081 // address or are both the null pointer value, the result is true if the
9082 // operator is <= or >= and false otherwise; otherwise the result is
9083 // unspecified.
9084 // We interpret this as applying to pointers to *cv* void.
9085 if (LHSTy->isVoidPointerType() && LHSOffset != RHSOffset && IsRelational)
9086 Info.CCEDiag(E, diag::note_constexpr_void_comparison);
Richard Smith84f6dcf2012-02-02 01:16:57 +00009087
Eric Fiselier0683c0e2018-05-07 21:07:10 +00009088 // C++11 [expr.rel]p2:
9089 // - If two pointers point to non-static data members of the same object,
9090 // or to subobjects or array elements fo such members, recursively, the
9091 // pointer to the later declared member compares greater provided the
9092 // two members have the same access control and provided their class is
9093 // not a union.
9094 // [...]
9095 // - Otherwise pointer comparisons are unspecified.
9096 if (!LHSDesignator.Invalid && !RHSDesignator.Invalid && IsRelational) {
9097 bool WasArrayIndex;
9098 unsigned Mismatch = FindDesignatorMismatch(
9099 getType(LHSValue.Base), LHSDesignator, RHSDesignator, WasArrayIndex);
9100 // At the point where the designators diverge, the comparison has a
9101 // specified value if:
9102 // - we are comparing array indices
9103 // - we are comparing fields of a union, or fields with the same access
9104 // Otherwise, the result is unspecified and thus the comparison is not a
9105 // constant expression.
9106 if (!WasArrayIndex && Mismatch < LHSDesignator.Entries.size() &&
9107 Mismatch < RHSDesignator.Entries.size()) {
9108 const FieldDecl *LF = getAsField(LHSDesignator.Entries[Mismatch]);
9109 const FieldDecl *RF = getAsField(RHSDesignator.Entries[Mismatch]);
9110 if (!LF && !RF)
9111 Info.CCEDiag(E, diag::note_constexpr_pointer_comparison_base_classes);
9112 else if (!LF)
9113 Info.CCEDiag(E, diag::note_constexpr_pointer_comparison_base_field)
Richard Smith84f6dcf2012-02-02 01:16:57 +00009114 << getAsBaseClass(LHSDesignator.Entries[Mismatch])
9115 << RF->getParent() << RF;
Eric Fiselier0683c0e2018-05-07 21:07:10 +00009116 else if (!RF)
9117 Info.CCEDiag(E, diag::note_constexpr_pointer_comparison_base_field)
Richard Smith84f6dcf2012-02-02 01:16:57 +00009118 << getAsBaseClass(RHSDesignator.Entries[Mismatch])
9119 << LF->getParent() << LF;
Eric Fiselier0683c0e2018-05-07 21:07:10 +00009120 else if (!LF->getParent()->isUnion() &&
9121 LF->getAccess() != RF->getAccess())
9122 Info.CCEDiag(E,
9123 diag::note_constexpr_pointer_comparison_differing_access)
Richard Smith84f6dcf2012-02-02 01:16:57 +00009124 << LF << LF->getAccess() << RF << RF->getAccess()
9125 << LF->getParent();
Eli Friedmana38da572009-04-28 19:17:36 +00009126 }
Anders Carlsson9f9e4242008-11-16 19:01:22 +00009127 }
Eric Fiselier0683c0e2018-05-07 21:07:10 +00009128
9129 // The comparison here must be unsigned, and performed with the same
9130 // width as the pointer.
9131 unsigned PtrSize = Info.Ctx.getTypeSize(LHSTy);
9132 uint64_t CompareLHS = LHSOffset.getQuantity();
9133 uint64_t CompareRHS = RHSOffset.getQuantity();
9134 assert(PtrSize <= 64 && "Unexpected pointer width");
9135 uint64_t Mask = ~0ULL >> (64 - PtrSize);
9136 CompareLHS &= Mask;
9137 CompareRHS &= Mask;
9138
9139 // If there is a base and this is a relational operator, we can only
9140 // compare pointers within the object in question; otherwise, the result
9141 // depends on where the object is located in memory.
9142 if (!LHSValue.Base.isNull() && IsRelational) {
9143 QualType BaseTy = getType(LHSValue.Base);
9144 if (BaseTy->isIncompleteType())
9145 return Error(E);
9146 CharUnits Size = Info.Ctx.getTypeSizeInChars(BaseTy);
9147 uint64_t OffsetLimit = Size.getQuantity();
9148 if (CompareLHS > OffsetLimit || CompareRHS > OffsetLimit)
9149 return Error(E);
9150 }
9151
9152 if (CompareLHS < CompareRHS)
9153 return Success(CCR::Less, E);
9154 if (CompareLHS > CompareRHS)
9155 return Success(CCR::Greater, E);
9156 return Success(CCR::Equal, E);
Anders Carlsson9f9e4242008-11-16 19:01:22 +00009157 }
Richard Smith7bb00672012-02-01 01:42:44 +00009158
9159 if (LHSTy->isMemberPointerType()) {
Eric Fiselier0683c0e2018-05-07 21:07:10 +00009160 assert(IsEquality && "unexpected member pointer operation");
Richard Smith7bb00672012-02-01 01:42:44 +00009161 assert(RHSTy->isMemberPointerType() && "invalid comparison");
9162
9163 MemberPtr LHSValue, RHSValue;
9164
9165 bool LHSOK = EvaluateMemberPointer(E->getLHS(), LHSValue, Info);
George Burgess IVa145e252016-05-25 22:38:36 +00009166 if (!LHSOK && !Info.noteFailure())
Richard Smith7bb00672012-02-01 01:42:44 +00009167 return false;
9168
9169 if (!EvaluateMemberPointer(E->getRHS(), RHSValue, Info) || !LHSOK)
9170 return false;
9171
9172 // C++11 [expr.eq]p2:
9173 // If both operands are null, they compare equal. Otherwise if only one is
9174 // null, they compare unequal.
9175 if (!LHSValue.getDecl() || !RHSValue.getDecl()) {
9176 bool Equal = !LHSValue.getDecl() && !RHSValue.getDecl();
Eric Fiselier0683c0e2018-05-07 21:07:10 +00009177 return Success(Equal ? CCR::Equal : CCR::Nonequal, E);
Richard Smith7bb00672012-02-01 01:42:44 +00009178 }
9179
9180 // Otherwise if either is a pointer to a virtual member function, the
9181 // result is unspecified.
9182 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(LHSValue.getDecl()))
9183 if (MD->isVirtual())
Eric Fiselier0683c0e2018-05-07 21:07:10 +00009184 Info.CCEDiag(E, diag::note_constexpr_compare_virtual_mem_ptr) << MD;
Richard Smith7bb00672012-02-01 01:42:44 +00009185 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(RHSValue.getDecl()))
9186 if (MD->isVirtual())
Eric Fiselier0683c0e2018-05-07 21:07:10 +00009187 Info.CCEDiag(E, diag::note_constexpr_compare_virtual_mem_ptr) << MD;
Richard Smith7bb00672012-02-01 01:42:44 +00009188
9189 // Otherwise they compare equal if and only if they would refer to the
9190 // same member of the same most derived object or the same subobject if
9191 // they were dereferenced with a hypothetical object of the associated
9192 // class type.
9193 bool Equal = LHSValue == RHSValue;
Eric Fiselier0683c0e2018-05-07 21:07:10 +00009194 return Success(Equal ? CCR::Equal : CCR::Nonequal, E);
Richard Smith7bb00672012-02-01 01:42:44 +00009195 }
9196
Richard Smithab44d9b2012-02-14 22:35:28 +00009197 if (LHSTy->isNullPtrType()) {
9198 assert(E->isComparisonOp() && "unexpected nullptr operation");
9199 assert(RHSTy->isNullPtrType() && "missing pointer conversion");
9200 // C++11 [expr.rel]p4, [expr.eq]p3: If two operands of type std::nullptr_t
9201 // are compared, the result is true of the operator is <=, >= or ==, and
9202 // false otherwise.
Eric Fiselier0683c0e2018-05-07 21:07:10 +00009203 return Success(CCR::Equal, E);
Richard Smithab44d9b2012-02-14 22:35:28 +00009204 }
9205
Eric Fiselier0683c0e2018-05-07 21:07:10 +00009206 return DoAfter();
9207}
9208
9209bool RecordExprEvaluator::VisitBinCmp(const BinaryOperator *E) {
9210 if (!CheckLiteralType(Info, E))
9211 return false;
9212
9213 auto OnSuccess = [&](ComparisonCategoryResult ResKind,
9214 const BinaryOperator *E) {
9215 // Evaluation succeeded. Lookup the information for the comparison category
9216 // type and fetch the VarDecl for the result.
9217 const ComparisonCategoryInfo &CmpInfo =
9218 Info.Ctx.CompCategories.getInfoForType(E->getType());
9219 const VarDecl *VD =
9220 CmpInfo.getValueInfo(CmpInfo.makeWeakResult(ResKind))->VD;
9221 // Check and evaluate the result as a constant expression.
9222 LValue LV;
9223 LV.set(VD);
9224 if (!handleLValueToRValueConversion(Info, E, E->getType(), LV, Result))
9225 return false;
9226 return CheckConstantExpression(Info, E->getExprLoc(), E->getType(), Result);
9227 };
9228 return EvaluateComparisonBinaryOperator(Info, E, OnSuccess, [&]() {
9229 return ExprEvaluatorBaseTy::VisitBinCmp(E);
9230 });
9231}
9232
9233bool IntExprEvaluator::VisitBinaryOperator(const BinaryOperator *E) {
9234 // We don't call noteFailure immediately because the assignment happens after
9235 // we evaluate LHS and RHS.
9236 if (!Info.keepEvaluatingAfterFailure() && E->isAssignmentOp())
9237 return Error(E);
9238
9239 DelayedNoteFailureRAII MaybeNoteFailureLater(Info, E->isAssignmentOp());
9240 if (DataRecursiveIntBinOpEvaluator::shouldEnqueue(E))
9241 return DataRecursiveIntBinOpEvaluator(*this, Result).Traverse(E);
9242
9243 assert((!E->getLHS()->getType()->isIntegralOrEnumerationType() ||
9244 !E->getRHS()->getType()->isIntegralOrEnumerationType()) &&
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00009245 "DataRecursiveIntBinOpEvaluator should have handled integral types");
Eric Fiselier0683c0e2018-05-07 21:07:10 +00009246
9247 if (E->isComparisonOp()) {
9248 // Evaluate builtin binary comparisons by evaluating them as C++2a three-way
9249 // comparisons and then translating the result.
9250 auto OnSuccess = [&](ComparisonCategoryResult ResKind,
9251 const BinaryOperator *E) {
9252 using CCR = ComparisonCategoryResult;
9253 bool IsEqual = ResKind == CCR::Equal,
9254 IsLess = ResKind == CCR::Less,
9255 IsGreater = ResKind == CCR::Greater;
9256 auto Op = E->getOpcode();
9257 switch (Op) {
9258 default:
9259 llvm_unreachable("unsupported binary operator");
9260 case BO_EQ:
9261 case BO_NE:
9262 return Success(IsEqual == (Op == BO_EQ), E);
9263 case BO_LT: return Success(IsLess, E);
9264 case BO_GT: return Success(IsGreater, E);
9265 case BO_LE: return Success(IsEqual || IsLess, E);
9266 case BO_GE: return Success(IsEqual || IsGreater, E);
9267 }
9268 };
9269 return EvaluateComparisonBinaryOperator(Info, E, OnSuccess, [&]() {
9270 return ExprEvaluatorBaseTy::VisitBinaryOperator(E);
9271 });
9272 }
9273
9274 QualType LHSTy = E->getLHS()->getType();
9275 QualType RHSTy = E->getRHS()->getType();
9276
9277 if (LHSTy->isPointerType() && RHSTy->isPointerType() &&
9278 E->getOpcode() == BO_Sub) {
9279 LValue LHSValue, RHSValue;
9280
9281 bool LHSOK = EvaluatePointer(E->getLHS(), LHSValue, Info);
9282 if (!LHSOK && !Info.noteFailure())
9283 return false;
9284
9285 if (!EvaluatePointer(E->getRHS(), RHSValue, Info) || !LHSOK)
9286 return false;
9287
9288 // Reject differing bases from the normal codepath; we special-case
9289 // comparisons to null.
9290 if (!HasSameBase(LHSValue, RHSValue)) {
9291 // Handle &&A - &&B.
9292 if (!LHSValue.Offset.isZero() || !RHSValue.Offset.isZero())
9293 return Error(E);
9294 const Expr *LHSExpr = LHSValue.Base.dyn_cast<const Expr *>();
9295 const Expr *RHSExpr = RHSValue.Base.dyn_cast<const Expr *>();
9296 if (!LHSExpr || !RHSExpr)
9297 return Error(E);
9298 const AddrLabelExpr *LHSAddrExpr = dyn_cast<AddrLabelExpr>(LHSExpr);
9299 const AddrLabelExpr *RHSAddrExpr = dyn_cast<AddrLabelExpr>(RHSExpr);
9300 if (!LHSAddrExpr || !RHSAddrExpr)
9301 return Error(E);
9302 // Make sure both labels come from the same function.
9303 if (LHSAddrExpr->getLabel()->getDeclContext() !=
9304 RHSAddrExpr->getLabel()->getDeclContext())
9305 return Error(E);
9306 return Success(APValue(LHSAddrExpr, RHSAddrExpr), E);
9307 }
9308 const CharUnits &LHSOffset = LHSValue.getLValueOffset();
9309 const CharUnits &RHSOffset = RHSValue.getLValueOffset();
9310
9311 SubobjectDesignator &LHSDesignator = LHSValue.getLValueDesignator();
9312 SubobjectDesignator &RHSDesignator = RHSValue.getLValueDesignator();
9313
9314 // C++11 [expr.add]p6:
9315 // Unless both pointers point to elements of the same array object, or
9316 // one past the last element of the array object, the behavior is
9317 // undefined.
9318 if (!LHSDesignator.Invalid && !RHSDesignator.Invalid &&
9319 !AreElementsOfSameArray(getType(LHSValue.Base), LHSDesignator,
9320 RHSDesignator))
9321 Info.CCEDiag(E, diag::note_constexpr_pointer_subtraction_not_same_array);
9322
9323 QualType Type = E->getLHS()->getType();
9324 QualType ElementType = Type->getAs<PointerType>()->getPointeeType();
9325
9326 CharUnits ElementSize;
9327 if (!HandleSizeof(Info, E->getExprLoc(), ElementType, ElementSize))
9328 return false;
9329
9330 // As an extension, a type may have zero size (empty struct or union in
9331 // C, array of zero length). Pointer subtraction in such cases has
9332 // undefined behavior, so is not constant.
9333 if (ElementSize.isZero()) {
9334 Info.FFDiag(E, diag::note_constexpr_pointer_subtraction_zero_size)
9335 << ElementType;
9336 return false;
9337 }
9338
9339 // FIXME: LLVM and GCC both compute LHSOffset - RHSOffset at runtime,
9340 // and produce incorrect results when it overflows. Such behavior
9341 // appears to be non-conforming, but is common, so perhaps we should
9342 // assume the standard intended for such cases to be undefined behavior
9343 // and check for them.
9344
9345 // Compute (LHSOffset - RHSOffset) / Size carefully, checking for
9346 // overflow in the final conversion to ptrdiff_t.
9347 APSInt LHS(llvm::APInt(65, (int64_t)LHSOffset.getQuantity(), true), false);
9348 APSInt RHS(llvm::APInt(65, (int64_t)RHSOffset.getQuantity(), true), false);
9349 APSInt ElemSize(llvm::APInt(65, (int64_t)ElementSize.getQuantity(), true),
9350 false);
9351 APSInt TrueResult = (LHS - RHS) / ElemSize;
9352 APSInt Result = TrueResult.trunc(Info.Ctx.getIntWidth(E->getType()));
9353
9354 if (Result.extend(65) != TrueResult &&
9355 !HandleOverflow(Info, E, TrueResult, E->getType()))
9356 return false;
9357 return Success(Result, E);
9358 }
9359
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00009360 return ExprEvaluatorBaseTy::VisitBinaryOperator(E);
Anders Carlsson9c181652008-07-08 14:35:21 +00009361}
9362
Peter Collingbournee190dee2011-03-11 19:24:49 +00009363/// VisitUnaryExprOrTypeTraitExpr - Evaluate a sizeof, alignof or vec_step with
9364/// a result as the expression's type.
9365bool IntExprEvaluator::VisitUnaryExprOrTypeTraitExpr(
9366 const UnaryExprOrTypeTraitExpr *E) {
9367 switch(E->getKind()) {
9368 case UETT_AlignOf: {
Chris Lattner24aeeab2009-01-24 21:09:06 +00009369 if (E->isArgumentType())
Hal Finkel0dd05d42014-10-03 17:18:37 +00009370 return Success(GetAlignOfType(Info, E->getArgumentType()), E);
Chris Lattner24aeeab2009-01-24 21:09:06 +00009371 else
Hal Finkel0dd05d42014-10-03 17:18:37 +00009372 return Success(GetAlignOfExpr(Info, E->getArgumentExpr()), E);
Chris Lattner24aeeab2009-01-24 21:09:06 +00009373 }
Eli Friedman64004332009-03-23 04:38:34 +00009374
Peter Collingbournee190dee2011-03-11 19:24:49 +00009375 case UETT_VecStep: {
9376 QualType Ty = E->getTypeOfArgument();
Sebastian Redl6f282892008-11-11 17:56:53 +00009377
Peter Collingbournee190dee2011-03-11 19:24:49 +00009378 if (Ty->isVectorType()) {
Ted Kremenek28831752012-08-23 20:46:57 +00009379 unsigned n = Ty->castAs<VectorType>()->getNumElements();
Eli Friedman64004332009-03-23 04:38:34 +00009380
Peter Collingbournee190dee2011-03-11 19:24:49 +00009381 // The vec_step built-in functions that take a 3-component
9382 // vector return 4. (OpenCL 1.1 spec 6.11.12)
9383 if (n == 3)
9384 n = 4;
Eli Friedman2aa38fe2009-01-24 22:19:05 +00009385
Peter Collingbournee190dee2011-03-11 19:24:49 +00009386 return Success(n, E);
9387 } else
9388 return Success(1, E);
9389 }
9390
9391 case UETT_SizeOf: {
9392 QualType SrcTy = E->getTypeOfArgument();
9393 // C++ [expr.sizeof]p2: "When applied to a reference or a reference type,
9394 // the result is the size of the referenced type."
Peter Collingbournee190dee2011-03-11 19:24:49 +00009395 if (const ReferenceType *Ref = SrcTy->getAs<ReferenceType>())
9396 SrcTy = Ref->getPointeeType();
9397
Richard Smithd62306a2011-11-10 06:34:14 +00009398 CharUnits Sizeof;
Richard Smith17100ba2012-02-16 02:46:34 +00009399 if (!HandleSizeof(Info, E->getExprLoc(), SrcTy, Sizeof))
Peter Collingbournee190dee2011-03-11 19:24:49 +00009400 return false;
Richard Smithd62306a2011-11-10 06:34:14 +00009401 return Success(Sizeof, E);
Peter Collingbournee190dee2011-03-11 19:24:49 +00009402 }
Alexey Bataev00396512015-07-02 03:40:19 +00009403 case UETT_OpenMPRequiredSimdAlign:
9404 assert(E->isArgumentType());
9405 return Success(
9406 Info.Ctx.toCharUnitsFromBits(
9407 Info.Ctx.getOpenMPDefaultSimdAlign(E->getArgumentType()))
9408 .getQuantity(),
9409 E);
Peter Collingbournee190dee2011-03-11 19:24:49 +00009410 }
9411
9412 llvm_unreachable("unknown expr/type trait");
Chris Lattnerf8d7f722008-07-11 21:24:13 +00009413}
9414
Peter Collingbournee9200682011-05-13 03:29:01 +00009415bool IntExprEvaluator::VisitOffsetOfExpr(const OffsetOfExpr *OOE) {
Douglas Gregor882211c2010-04-28 22:16:22 +00009416 CharUnits Result;
Peter Collingbournee9200682011-05-13 03:29:01 +00009417 unsigned n = OOE->getNumComponents();
Douglas Gregor882211c2010-04-28 22:16:22 +00009418 if (n == 0)
Richard Smithf57d8cb2011-12-09 22:58:01 +00009419 return Error(OOE);
Peter Collingbournee9200682011-05-13 03:29:01 +00009420 QualType CurrentType = OOE->getTypeSourceInfo()->getType();
Douglas Gregor882211c2010-04-28 22:16:22 +00009421 for (unsigned i = 0; i != n; ++i) {
James Y Knight7281c352015-12-29 22:31:18 +00009422 OffsetOfNode ON = OOE->getComponent(i);
Douglas Gregor882211c2010-04-28 22:16:22 +00009423 switch (ON.getKind()) {
James Y Knight7281c352015-12-29 22:31:18 +00009424 case OffsetOfNode::Array: {
Peter Collingbournee9200682011-05-13 03:29:01 +00009425 const Expr *Idx = OOE->getIndexExpr(ON.getArrayExprIndex());
Douglas Gregor882211c2010-04-28 22:16:22 +00009426 APSInt IdxResult;
9427 if (!EvaluateInteger(Idx, IdxResult, Info))
9428 return false;
9429 const ArrayType *AT = Info.Ctx.getAsArrayType(CurrentType);
9430 if (!AT)
Richard Smithf57d8cb2011-12-09 22:58:01 +00009431 return Error(OOE);
Douglas Gregor882211c2010-04-28 22:16:22 +00009432 CurrentType = AT->getElementType();
9433 CharUnits ElementSize = Info.Ctx.getTypeSizeInChars(CurrentType);
9434 Result += IdxResult.getSExtValue() * ElementSize;
Richard Smith861b5b52013-05-07 23:34:45 +00009435 break;
Douglas Gregor882211c2010-04-28 22:16:22 +00009436 }
Richard Smithf57d8cb2011-12-09 22:58:01 +00009437
James Y Knight7281c352015-12-29 22:31:18 +00009438 case OffsetOfNode::Field: {
Douglas Gregor882211c2010-04-28 22:16:22 +00009439 FieldDecl *MemberDecl = ON.getField();
9440 const RecordType *RT = CurrentType->getAs<RecordType>();
Richard Smithf57d8cb2011-12-09 22:58:01 +00009441 if (!RT)
9442 return Error(OOE);
Douglas Gregor882211c2010-04-28 22:16:22 +00009443 RecordDecl *RD = RT->getDecl();
John McCalld7bca762012-05-01 00:38:49 +00009444 if (RD->isInvalidDecl()) return false;
Douglas Gregor882211c2010-04-28 22:16:22 +00009445 const ASTRecordLayout &RL = Info.Ctx.getASTRecordLayout(RD);
John McCall4e819612011-01-20 07:57:12 +00009446 unsigned i = MemberDecl->getFieldIndex();
Douglas Gregord1702062010-04-29 00:18:15 +00009447 assert(i < RL.getFieldCount() && "offsetof field in wrong type");
Ken Dyck86a7fcc2011-01-18 01:56:16 +00009448 Result += Info.Ctx.toCharUnitsFromBits(RL.getFieldOffset(i));
Douglas Gregor882211c2010-04-28 22:16:22 +00009449 CurrentType = MemberDecl->getType().getNonReferenceType();
9450 break;
9451 }
Richard Smithf57d8cb2011-12-09 22:58:01 +00009452
James Y Knight7281c352015-12-29 22:31:18 +00009453 case OffsetOfNode::Identifier:
Douglas Gregor882211c2010-04-28 22:16:22 +00009454 llvm_unreachable("dependent __builtin_offsetof");
Richard Smithf57d8cb2011-12-09 22:58:01 +00009455
James Y Knight7281c352015-12-29 22:31:18 +00009456 case OffsetOfNode::Base: {
Douglas Gregord1702062010-04-29 00:18:15 +00009457 CXXBaseSpecifier *BaseSpec = ON.getBase();
9458 if (BaseSpec->isVirtual())
Richard Smithf57d8cb2011-12-09 22:58:01 +00009459 return Error(OOE);
Douglas Gregord1702062010-04-29 00:18:15 +00009460
9461 // Find the layout of the class whose base we are looking into.
9462 const RecordType *RT = CurrentType->getAs<RecordType>();
Richard Smithf57d8cb2011-12-09 22:58:01 +00009463 if (!RT)
9464 return Error(OOE);
Douglas Gregord1702062010-04-29 00:18:15 +00009465 RecordDecl *RD = RT->getDecl();
John McCalld7bca762012-05-01 00:38:49 +00009466 if (RD->isInvalidDecl()) return false;
Douglas Gregord1702062010-04-29 00:18:15 +00009467 const ASTRecordLayout &RL = Info.Ctx.getASTRecordLayout(RD);
9468
9469 // Find the base class itself.
9470 CurrentType = BaseSpec->getType();
9471 const RecordType *BaseRT = CurrentType->getAs<RecordType>();
9472 if (!BaseRT)
Richard Smithf57d8cb2011-12-09 22:58:01 +00009473 return Error(OOE);
Fangrui Song6907ce22018-07-30 19:24:48 +00009474
Douglas Gregord1702062010-04-29 00:18:15 +00009475 // Add the offset to the base.
Ken Dyck02155cb2011-01-26 02:17:08 +00009476 Result += RL.getBaseClassOffset(cast<CXXRecordDecl>(BaseRT->getDecl()));
Douglas Gregord1702062010-04-29 00:18:15 +00009477 break;
9478 }
Douglas Gregor882211c2010-04-28 22:16:22 +00009479 }
9480 }
Peter Collingbournee9200682011-05-13 03:29:01 +00009481 return Success(Result, OOE);
Douglas Gregor882211c2010-04-28 22:16:22 +00009482}
9483
Chris Lattnere13042c2008-07-11 19:10:17 +00009484bool IntExprEvaluator::VisitUnaryOperator(const UnaryOperator *E) {
Richard Smithf57d8cb2011-12-09 22:58:01 +00009485 switch (E->getOpcode()) {
9486 default:
9487 // Address, indirect, pre/post inc/dec, etc are not valid constant exprs.
9488 // See C99 6.6p3.
9489 return Error(E);
9490 case UO_Extension:
9491 // FIXME: Should extension allow i-c-e extension expressions in its scope?
9492 // If so, we could clear the diagnostic ID.
9493 return Visit(E->getSubExpr());
9494 case UO_Plus:
9495 // The result is just the value.
9496 return Visit(E->getSubExpr());
9497 case UO_Minus: {
9498 if (!Visit(E->getSubExpr()))
Malcolm Parsonsfab36802018-04-16 08:31:08 +00009499 return false;
9500 if (!Result.isInt()) return Error(E);
9501 const APSInt &Value = Result.getInt();
9502 if (Value.isSigned() && Value.isMinSignedValue() && E->canOverflow() &&
9503 !HandleOverflow(Info, E, -Value.extend(Value.getBitWidth() + 1),
9504 E->getType()))
9505 return false;
Richard Smithfe800032012-01-31 04:08:20 +00009506 return Success(-Value, E);
Richard Smithf57d8cb2011-12-09 22:58:01 +00009507 }
9508 case UO_Not: {
9509 if (!Visit(E->getSubExpr()))
9510 return false;
9511 if (!Result.isInt()) return Error(E);
9512 return Success(~Result.getInt(), E);
9513 }
9514 case UO_LNot: {
Eli Friedman5a332ea2008-11-13 06:09:17 +00009515 bool bres;
Richard Smith11562c52011-10-28 17:51:58 +00009516 if (!EvaluateAsBooleanCondition(E->getSubExpr(), bres, Info))
Eli Friedman5a332ea2008-11-13 06:09:17 +00009517 return false;
Daniel Dunbar8aafc892009-02-19 09:06:44 +00009518 return Success(!bres, E);
Eli Friedman5a332ea2008-11-13 06:09:17 +00009519 }
Anders Carlsson9c181652008-07-08 14:35:21 +00009520 }
Anders Carlsson9c181652008-07-08 14:35:21 +00009521}
Mike Stump11289f42009-09-09 15:08:12 +00009522
Chris Lattner477c4be2008-07-12 01:15:53 +00009523/// HandleCast - This is used to evaluate implicit or explicit casts where the
9524/// result type is integer.
Peter Collingbournee9200682011-05-13 03:29:01 +00009525bool IntExprEvaluator::VisitCastExpr(const CastExpr *E) {
9526 const Expr *SubExpr = E->getSubExpr();
Anders Carlsson27b8c5c2008-11-30 18:14:57 +00009527 QualType DestType = E->getType();
Daniel Dunbarcf04aa12009-02-19 22:16:29 +00009528 QualType SrcType = SubExpr->getType();
Anders Carlsson27b8c5c2008-11-30 18:14:57 +00009529
Eli Friedmanc757de22011-03-25 00:43:55 +00009530 switch (E->getCastKind()) {
Eli Friedmanc757de22011-03-25 00:43:55 +00009531 case CK_BaseToDerived:
9532 case CK_DerivedToBase:
9533 case CK_UncheckedDerivedToBase:
9534 case CK_Dynamic:
9535 case CK_ToUnion:
9536 case CK_ArrayToPointerDecay:
9537 case CK_FunctionToPointerDecay:
9538 case CK_NullToPointer:
9539 case CK_NullToMemberPointer:
9540 case CK_BaseToDerivedMemberPointer:
9541 case CK_DerivedToBaseMemberPointer:
John McCallc62bb392012-02-15 01:22:51 +00009542 case CK_ReinterpretMemberPointer:
Eli Friedmanc757de22011-03-25 00:43:55 +00009543 case CK_ConstructorConversion:
9544 case CK_IntegralToPointer:
9545 case CK_ToVoid:
9546 case CK_VectorSplat:
9547 case CK_IntegralToFloating:
9548 case CK_FloatingCast:
John McCall9320b872011-09-09 05:25:32 +00009549 case CK_CPointerToObjCPointerCast:
9550 case CK_BlockPointerToObjCPointerCast:
Eli Friedmanc757de22011-03-25 00:43:55 +00009551 case CK_AnyPointerToBlockPointerCast:
9552 case CK_ObjCObjectLValueCast:
9553 case CK_FloatingRealToComplex:
9554 case CK_FloatingComplexToReal:
9555 case CK_FloatingComplexCast:
9556 case CK_FloatingComplexToIntegralComplex:
9557 case CK_IntegralRealToComplex:
9558 case CK_IntegralComplexCast:
9559 case CK_IntegralComplexToFloatingComplex:
Eli Friedman34866c72012-08-31 00:14:07 +00009560 case CK_BuiltinFnToFnPtr:
Guy Benyei1b4fb3e2013-01-20 12:31:11 +00009561 case CK_ZeroToOCLEvent:
Egor Churaev89831422016-12-23 14:55:49 +00009562 case CK_ZeroToOCLQueue:
Richard Smitha23ab512013-05-23 00:30:41 +00009563 case CK_NonAtomicToAtomic:
David Tweede1468322013-12-11 13:39:46 +00009564 case CK_AddressSpaceConversion:
Yaxun Liu0bc4b2d2016-07-28 19:26:30 +00009565 case CK_IntToOCLSampler:
Eli Friedmanc757de22011-03-25 00:43:55 +00009566 llvm_unreachable("invalid cast kind for integral value");
9567
Eli Friedman9faf2f92011-03-25 19:07:11 +00009568 case CK_BitCast:
Eli Friedmanc757de22011-03-25 00:43:55 +00009569 case CK_Dependent:
Eli Friedmanc757de22011-03-25 00:43:55 +00009570 case CK_LValueBitCast:
John McCall2d637d22011-09-10 06:18:15 +00009571 case CK_ARCProduceObject:
9572 case CK_ARCConsumeObject:
9573 case CK_ARCReclaimReturnedObject:
9574 case CK_ARCExtendBlockObject:
Douglas Gregored90df32012-02-22 05:02:47 +00009575 case CK_CopyAndAutoreleaseBlockObject:
Richard Smithf57d8cb2011-12-09 22:58:01 +00009576 return Error(E);
Eli Friedmanc757de22011-03-25 00:43:55 +00009577
Richard Smith4ef685b2012-01-17 21:17:26 +00009578 case CK_UserDefinedConversion:
Eli Friedmanc757de22011-03-25 00:43:55 +00009579 case CK_LValueToRValue:
David Chisnallfa35df62012-01-16 17:27:18 +00009580 case CK_AtomicToNonAtomic:
Eli Friedmanc757de22011-03-25 00:43:55 +00009581 case CK_NoOp:
Richard Smith11562c52011-10-28 17:51:58 +00009582 return ExprEvaluatorBaseTy::VisitCastExpr(E);
Eli Friedmanc757de22011-03-25 00:43:55 +00009583
9584 case CK_MemberPointerToBoolean:
9585 case CK_PointerToBoolean:
9586 case CK_IntegralToBoolean:
9587 case CK_FloatingToBoolean:
George Burgess IVdf1ed002016-01-13 01:52:39 +00009588 case CK_BooleanToSignedIntegral:
Eli Friedmanc757de22011-03-25 00:43:55 +00009589 case CK_FloatingComplexToBoolean:
9590 case CK_IntegralComplexToBoolean: {
Eli Friedman9a156e52008-11-12 09:44:48 +00009591 bool BoolResult;
Richard Smith11562c52011-10-28 17:51:58 +00009592 if (!EvaluateAsBooleanCondition(SubExpr, BoolResult, Info))
Eli Friedman9a156e52008-11-12 09:44:48 +00009593 return false;
George Burgess IVdf1ed002016-01-13 01:52:39 +00009594 uint64_t IntResult = BoolResult;
9595 if (BoolResult && E->getCastKind() == CK_BooleanToSignedIntegral)
9596 IntResult = (uint64_t)-1;
9597 return Success(IntResult, E);
Eli Friedman9a156e52008-11-12 09:44:48 +00009598 }
9599
Eli Friedmanc757de22011-03-25 00:43:55 +00009600 case CK_IntegralCast: {
Chris Lattner477c4be2008-07-12 01:15:53 +00009601 if (!Visit(SubExpr))
Chris Lattnere13042c2008-07-11 19:10:17 +00009602 return false;
Daniel Dunbarb6f953e2009-01-29 06:16:07 +00009603
Eli Friedman742421e2009-02-20 01:15:07 +00009604 if (!Result.isInt()) {
Eli Friedmanfd5e54d2012-01-04 23:13:47 +00009605 // Allow casts of address-of-label differences if they are no-ops
9606 // or narrowing. (The narrowing case isn't actually guaranteed to
9607 // be constant-evaluatable except in some narrow cases which are hard
9608 // to detect here. We let it through on the assumption the user knows
9609 // what they are doing.)
9610 if (Result.isAddrLabelDiff())
9611 return Info.Ctx.getTypeSize(DestType) <= Info.Ctx.getTypeSize(SrcType);
Eli Friedman742421e2009-02-20 01:15:07 +00009612 // Only allow casts of lvalues if they are lossless.
9613 return Info.Ctx.getTypeSize(DestType) == Info.Ctx.getTypeSize(SrcType);
9614 }
Daniel Dunbarca097ad2009-02-19 20:17:33 +00009615
Richard Smith911e1422012-01-30 22:27:01 +00009616 return Success(HandleIntToIntCast(Info, E, DestType, SrcType,
9617 Result.getInt()), E);
Chris Lattner477c4be2008-07-12 01:15:53 +00009618 }
Mike Stump11289f42009-09-09 15:08:12 +00009619
Eli Friedmanc757de22011-03-25 00:43:55 +00009620 case CK_PointerToIntegral: {
Richard Smith6d6ecc32011-12-12 12:46:16 +00009621 CCEDiag(E, diag::note_constexpr_invalid_cast) << 2;
9622
John McCall45d55e42010-05-07 21:00:08 +00009623 LValue LV;
Chris Lattnercdf34e72008-07-11 22:52:41 +00009624 if (!EvaluatePointer(SubExpr, LV, Info))
Chris Lattnere13042c2008-07-11 19:10:17 +00009625 return false;
Eli Friedman9a156e52008-11-12 09:44:48 +00009626
Daniel Dunbar1c8560d2009-02-19 22:24:01 +00009627 if (LV.getLValueBase()) {
9628 // Only allow based lvalue casts if they are lossless.
Richard Smith911e1422012-01-30 22:27:01 +00009629 // FIXME: Allow a larger integer size than the pointer size, and allow
9630 // narrowing back down to pointer width in subsequent integral casts.
9631 // FIXME: Check integer type's active bits, not its type size.
Daniel Dunbar1c8560d2009-02-19 22:24:01 +00009632 if (Info.Ctx.getTypeSize(DestType) != Info.Ctx.getTypeSize(SrcType))
Richard Smithf57d8cb2011-12-09 22:58:01 +00009633 return Error(E);
Eli Friedman9a156e52008-11-12 09:44:48 +00009634
Richard Smithcf74da72011-11-16 07:18:12 +00009635 LV.Designator.setInvalid();
John McCall45d55e42010-05-07 21:00:08 +00009636 LV.moveInto(Result);
Daniel Dunbar1c8560d2009-02-19 22:24:01 +00009637 return true;
9638 }
9639
Yaxun Liu402804b2016-12-15 08:09:08 +00009640 uint64_t V;
9641 if (LV.isNullPointer())
9642 V = Info.Ctx.getTargetNullPointerValue(SrcType);
9643 else
9644 V = LV.getLValueOffset().getQuantity();
9645
9646 APSInt AsInt = Info.Ctx.MakeIntValue(V, SrcType);
Richard Smith911e1422012-01-30 22:27:01 +00009647 return Success(HandleIntToIntCast(Info, E, DestType, SrcType, AsInt), E);
Anders Carlssonb5ad0212008-07-08 14:30:00 +00009648 }
Eli Friedman9a156e52008-11-12 09:44:48 +00009649
Eli Friedmanc757de22011-03-25 00:43:55 +00009650 case CK_IntegralComplexToReal: {
John McCall93d91dc2010-05-07 17:22:02 +00009651 ComplexValue C;
Eli Friedmand3a5a9d2009-04-22 19:23:09 +00009652 if (!EvaluateComplex(SubExpr, C, Info))
9653 return false;
Eli Friedmanc757de22011-03-25 00:43:55 +00009654 return Success(C.getComplexIntReal(), E);
Eli Friedmand3a5a9d2009-04-22 19:23:09 +00009655 }
Eli Friedmanc2b50172009-02-22 11:46:18 +00009656
Eli Friedmanc757de22011-03-25 00:43:55 +00009657 case CK_FloatingToIntegral: {
9658 APFloat F(0.0);
9659 if (!EvaluateFloat(SubExpr, F, Info))
9660 return false;
Chris Lattner477c4be2008-07-12 01:15:53 +00009661
Richard Smith357362d2011-12-13 06:39:58 +00009662 APSInt Value;
9663 if (!HandleFloatToIntCast(Info, E, SrcType, F, DestType, Value))
9664 return false;
9665 return Success(Value, E);
Eli Friedmanc757de22011-03-25 00:43:55 +00009666 }
9667 }
Mike Stump11289f42009-09-09 15:08:12 +00009668
Eli Friedmanc757de22011-03-25 00:43:55 +00009669 llvm_unreachable("unknown cast resulting in integral value");
Anders Carlsson9c181652008-07-08 14:35:21 +00009670}
Anders Carlssonb5ad0212008-07-08 14:30:00 +00009671
Eli Friedmana1c7b6c2009-02-28 03:59:05 +00009672bool IntExprEvaluator::VisitUnaryReal(const UnaryOperator *E) {
9673 if (E->getSubExpr()->getType()->isAnyComplexType()) {
John McCall93d91dc2010-05-07 17:22:02 +00009674 ComplexValue LV;
Richard Smithf57d8cb2011-12-09 22:58:01 +00009675 if (!EvaluateComplex(E->getSubExpr(), LV, Info))
9676 return false;
9677 if (!LV.isComplexInt())
9678 return Error(E);
Eli Friedmana1c7b6c2009-02-28 03:59:05 +00009679 return Success(LV.getComplexIntReal(), E);
9680 }
9681
9682 return Visit(E->getSubExpr());
9683}
9684
Eli Friedman4e7a2412009-02-27 04:45:43 +00009685bool IntExprEvaluator::VisitUnaryImag(const UnaryOperator *E) {
Eli Friedmana1c7b6c2009-02-28 03:59:05 +00009686 if (E->getSubExpr()->getType()->isComplexIntegerType()) {
John McCall93d91dc2010-05-07 17:22:02 +00009687 ComplexValue LV;
Richard Smithf57d8cb2011-12-09 22:58:01 +00009688 if (!EvaluateComplex(E->getSubExpr(), LV, Info))
9689 return false;
9690 if (!LV.isComplexInt())
9691 return Error(E);
Eli Friedmana1c7b6c2009-02-28 03:59:05 +00009692 return Success(LV.getComplexIntImag(), E);
9693 }
9694
Richard Smith4a678122011-10-24 18:44:57 +00009695 VisitIgnoredValue(E->getSubExpr());
Eli Friedman4e7a2412009-02-27 04:45:43 +00009696 return Success(0, E);
9697}
9698
Douglas Gregor820ba7b2011-01-04 17:33:58 +00009699bool IntExprEvaluator::VisitSizeOfPackExpr(const SizeOfPackExpr *E) {
9700 return Success(E->getPackLength(), E);
9701}
9702
Sebastian Redl5f0180d2010-09-10 20:55:47 +00009703bool IntExprEvaluator::VisitCXXNoexceptExpr(const CXXNoexceptExpr *E) {
9704 return Success(E->getValue(), E);
9705}
9706
Leonard Chandb01c3a2018-06-20 17:19:40 +00009707bool FixedPointExprEvaluator::VisitUnaryOperator(const UnaryOperator *E) {
9708 switch (E->getOpcode()) {
9709 default:
9710 // Invalid unary operators
9711 return Error(E);
9712 case UO_Plus:
9713 // The result is just the value.
9714 return Visit(E->getSubExpr());
9715 case UO_Minus: {
9716 if (!Visit(E->getSubExpr())) return false;
9717 if (!Result.isInt()) return Error(E);
9718 const APSInt &Value = Result.getInt();
9719 if (Value.isSigned() && Value.isMinSignedValue() && E->canOverflow()) {
9720 SmallString<64> S;
9721 FixedPointValueToString(S, Value,
Leonard Chanc03642e2018-08-06 16:05:08 +00009722 Info.Ctx.getTypeInfo(E->getType()).Width);
Leonard Chandb01c3a2018-06-20 17:19:40 +00009723 Info.CCEDiag(E, diag::note_constexpr_overflow) << S << E->getType();
9724 if (Info.noteUndefinedBehavior()) return false;
9725 }
9726 return Success(-Value, E);
9727 }
9728 case UO_LNot: {
9729 bool bres;
9730 if (!EvaluateAsBooleanCondition(E->getSubExpr(), bres, Info))
9731 return false;
9732 return Success(!bres, E);
9733 }
9734 }
9735}
9736
Chris Lattner05706e882008-07-11 18:11:29 +00009737//===----------------------------------------------------------------------===//
Eli Friedman24c01542008-08-22 00:06:13 +00009738// Float Evaluation
9739//===----------------------------------------------------------------------===//
9740
9741namespace {
Benjamin Kramer26222b62009-11-28 19:03:38 +00009742class FloatExprEvaluator
Aaron Ballman68af21c2014-01-03 19:26:43 +00009743 : public ExprEvaluatorBase<FloatExprEvaluator> {
Eli Friedman24c01542008-08-22 00:06:13 +00009744 APFloat &Result;
9745public:
9746 FloatExprEvaluator(EvalInfo &info, APFloat &result)
Peter Collingbournee9200682011-05-13 03:29:01 +00009747 : ExprEvaluatorBaseTy(info), Result(result) {}
Eli Friedman24c01542008-08-22 00:06:13 +00009748
Richard Smith2e312c82012-03-03 22:46:17 +00009749 bool Success(const APValue &V, const Expr *e) {
Peter Collingbournee9200682011-05-13 03:29:01 +00009750 Result = V.getFloat();
9751 return true;
9752 }
Eli Friedman24c01542008-08-22 00:06:13 +00009753
Richard Smithfddd3842011-12-30 21:15:51 +00009754 bool ZeroInitialization(const Expr *E) {
Richard Smith4ce706a2011-10-11 21:43:33 +00009755 Result = APFloat::getZero(Info.Ctx.getFloatTypeSemantics(E->getType()));
9756 return true;
9757 }
9758
Chris Lattner4deaa4e2008-10-06 05:28:25 +00009759 bool VisitCallExpr(const CallExpr *E);
Eli Friedman24c01542008-08-22 00:06:13 +00009760
Daniel Dunbarc3d79cf2008-10-16 03:51:50 +00009761 bool VisitUnaryOperator(const UnaryOperator *E);
Eli Friedman24c01542008-08-22 00:06:13 +00009762 bool VisitBinaryOperator(const BinaryOperator *E);
9763 bool VisitFloatingLiteral(const FloatingLiteral *E);
Peter Collingbournee9200682011-05-13 03:29:01 +00009764 bool VisitCastExpr(const CastExpr *E);
Eli Friedmanc2b50172009-02-22 11:46:18 +00009765
John McCallb1fb0d32010-05-07 22:08:54 +00009766 bool VisitUnaryReal(const UnaryOperator *E);
9767 bool VisitUnaryImag(const UnaryOperator *E);
Eli Friedman449fe542009-03-23 04:56:01 +00009768
Richard Smithfddd3842011-12-30 21:15:51 +00009769 // FIXME: Missing: array subscript of vector, member of vector
Eli Friedman24c01542008-08-22 00:06:13 +00009770};
9771} // end anonymous namespace
9772
9773static bool EvaluateFloat(const Expr* E, APFloat& Result, EvalInfo &Info) {
Richard Smith11562c52011-10-28 17:51:58 +00009774 assert(E->isRValue() && E->getType()->isRealFloatingType());
Peter Collingbournee9200682011-05-13 03:29:01 +00009775 return FloatExprEvaluator(Info, Result).Visit(E);
Eli Friedman24c01542008-08-22 00:06:13 +00009776}
9777
Jay Foad39c79802011-01-12 09:06:06 +00009778static bool TryEvaluateBuiltinNaN(const ASTContext &Context,
John McCall16291492010-02-28 13:00:19 +00009779 QualType ResultTy,
9780 const Expr *Arg,
9781 bool SNaN,
9782 llvm::APFloat &Result) {
9783 const StringLiteral *S = dyn_cast<StringLiteral>(Arg->IgnoreParenCasts());
9784 if (!S) return false;
9785
9786 const llvm::fltSemantics &Sem = Context.getFloatTypeSemantics(ResultTy);
9787
9788 llvm::APInt fill;
9789
9790 // Treat empty strings as if they were zero.
9791 if (S->getString().empty())
9792 fill = llvm::APInt(32, 0);
9793 else if (S->getString().getAsInteger(0, fill))
9794 return false;
9795
Petar Jovanovicd55ae6b2015-02-26 18:19:22 +00009796 if (Context.getTargetInfo().isNan2008()) {
9797 if (SNaN)
9798 Result = llvm::APFloat::getSNaN(Sem, false, &fill);
9799 else
9800 Result = llvm::APFloat::getQNaN(Sem, false, &fill);
9801 } else {
9802 // Prior to IEEE 754-2008, architectures were allowed to choose whether
9803 // the first bit of their significand was set for qNaN or sNaN. MIPS chose
9804 // a different encoding to what became a standard in 2008, and for pre-
9805 // 2008 revisions, MIPS interpreted sNaN-2008 as qNan and qNaN-2008 as
9806 // sNaN. This is now known as "legacy NaN" encoding.
9807 if (SNaN)
9808 Result = llvm::APFloat::getQNaN(Sem, false, &fill);
9809 else
9810 Result = llvm::APFloat::getSNaN(Sem, false, &fill);
9811 }
9812
John McCall16291492010-02-28 13:00:19 +00009813 return true;
9814}
9815
Chris Lattner4deaa4e2008-10-06 05:28:25 +00009816bool FloatExprEvaluator::VisitCallExpr(const CallExpr *E) {
Alp Tokera724cff2013-12-28 21:59:02 +00009817 switch (E->getBuiltinCallee()) {
Peter Collingbournee9200682011-05-13 03:29:01 +00009818 default:
9819 return ExprEvaluatorBaseTy::VisitCallExpr(E);
9820
Chris Lattner4deaa4e2008-10-06 05:28:25 +00009821 case Builtin::BI__builtin_huge_val:
9822 case Builtin::BI__builtin_huge_valf:
9823 case Builtin::BI__builtin_huge_vall:
Benjamin Kramerdfecbe92018-01-06 21:49:54 +00009824 case Builtin::BI__builtin_huge_valf128:
Chris Lattner4deaa4e2008-10-06 05:28:25 +00009825 case Builtin::BI__builtin_inf:
9826 case Builtin::BI__builtin_inff:
Benjamin Kramerdfecbe92018-01-06 21:49:54 +00009827 case Builtin::BI__builtin_infl:
9828 case Builtin::BI__builtin_inff128: {
Daniel Dunbar1be9f882008-10-14 05:41:12 +00009829 const llvm::fltSemantics &Sem =
9830 Info.Ctx.getFloatTypeSemantics(E->getType());
Chris Lattner37346e02008-10-06 05:53:16 +00009831 Result = llvm::APFloat::getInf(Sem);
9832 return true;
Daniel Dunbar1be9f882008-10-14 05:41:12 +00009833 }
Mike Stump11289f42009-09-09 15:08:12 +00009834
John McCall16291492010-02-28 13:00:19 +00009835 case Builtin::BI__builtin_nans:
9836 case Builtin::BI__builtin_nansf:
9837 case Builtin::BI__builtin_nansl:
Benjamin Kramerdfecbe92018-01-06 21:49:54 +00009838 case Builtin::BI__builtin_nansf128:
Richard Smithf57d8cb2011-12-09 22:58:01 +00009839 if (!TryEvaluateBuiltinNaN(Info.Ctx, E->getType(), E->getArg(0),
9840 true, Result))
9841 return Error(E);
9842 return true;
John McCall16291492010-02-28 13:00:19 +00009843
Chris Lattner0b7282e2008-10-06 06:31:58 +00009844 case Builtin::BI__builtin_nan:
9845 case Builtin::BI__builtin_nanf:
9846 case Builtin::BI__builtin_nanl:
Benjamin Kramerdfecbe92018-01-06 21:49:54 +00009847 case Builtin::BI__builtin_nanf128:
Mike Stump2346cd22009-05-30 03:56:50 +00009848 // If this is __builtin_nan() turn this into a nan, otherwise we
Chris Lattner0b7282e2008-10-06 06:31:58 +00009849 // can't constant fold it.
Richard Smithf57d8cb2011-12-09 22:58:01 +00009850 if (!TryEvaluateBuiltinNaN(Info.Ctx, E->getType(), E->getArg(0),
9851 false, Result))
9852 return Error(E);
9853 return true;
Daniel Dunbarc3d79cf2008-10-16 03:51:50 +00009854
9855 case Builtin::BI__builtin_fabs:
9856 case Builtin::BI__builtin_fabsf:
9857 case Builtin::BI__builtin_fabsl:
Benjamin Kramerdfecbe92018-01-06 21:49:54 +00009858 case Builtin::BI__builtin_fabsf128:
Daniel Dunbarc3d79cf2008-10-16 03:51:50 +00009859 if (!EvaluateFloat(E->getArg(0), Result, Info))
9860 return false;
Mike Stump11289f42009-09-09 15:08:12 +00009861
Daniel Dunbarc3d79cf2008-10-16 03:51:50 +00009862 if (Result.isNegative())
9863 Result.changeSign();
9864 return true;
9865
Richard Smith8889a3d2013-06-13 06:26:32 +00009866 // FIXME: Builtin::BI__builtin_powi
9867 // FIXME: Builtin::BI__builtin_powif
9868 // FIXME: Builtin::BI__builtin_powil
9869
Mike Stump11289f42009-09-09 15:08:12 +00009870 case Builtin::BI__builtin_copysign:
9871 case Builtin::BI__builtin_copysignf:
Benjamin Kramerdfecbe92018-01-06 21:49:54 +00009872 case Builtin::BI__builtin_copysignl:
9873 case Builtin::BI__builtin_copysignf128: {
Daniel Dunbarc3d79cf2008-10-16 03:51:50 +00009874 APFloat RHS(0.);
9875 if (!EvaluateFloat(E->getArg(0), Result, Info) ||
9876 !EvaluateFloat(E->getArg(1), RHS, Info))
9877 return false;
9878 Result.copySign(RHS);
9879 return true;
9880 }
Chris Lattner4deaa4e2008-10-06 05:28:25 +00009881 }
9882}
9883
John McCallb1fb0d32010-05-07 22:08:54 +00009884bool FloatExprEvaluator::VisitUnaryReal(const UnaryOperator *E) {
Eli Friedman95719532010-08-14 20:52:13 +00009885 if (E->getSubExpr()->getType()->isAnyComplexType()) {
9886 ComplexValue CV;
9887 if (!EvaluateComplex(E->getSubExpr(), CV, Info))
9888 return false;
9889 Result = CV.FloatReal;
9890 return true;
9891 }
9892
9893 return Visit(E->getSubExpr());
John McCallb1fb0d32010-05-07 22:08:54 +00009894}
9895
9896bool FloatExprEvaluator::VisitUnaryImag(const UnaryOperator *E) {
Eli Friedman95719532010-08-14 20:52:13 +00009897 if (E->getSubExpr()->getType()->isAnyComplexType()) {
9898 ComplexValue CV;
9899 if (!EvaluateComplex(E->getSubExpr(), CV, Info))
9900 return false;
9901 Result = CV.FloatImag;
9902 return true;
9903 }
9904
Richard Smith4a678122011-10-24 18:44:57 +00009905 VisitIgnoredValue(E->getSubExpr());
Eli Friedman95719532010-08-14 20:52:13 +00009906 const llvm::fltSemantics &Sem = Info.Ctx.getFloatTypeSemantics(E->getType());
9907 Result = llvm::APFloat::getZero(Sem);
John McCallb1fb0d32010-05-07 22:08:54 +00009908 return true;
9909}
9910
Daniel Dunbarc3d79cf2008-10-16 03:51:50 +00009911bool FloatExprEvaluator::VisitUnaryOperator(const UnaryOperator *E) {
Daniel Dunbarc3d79cf2008-10-16 03:51:50 +00009912 switch (E->getOpcode()) {
Richard Smithf57d8cb2011-12-09 22:58:01 +00009913 default: return Error(E);
John McCalle3027922010-08-25 11:45:40 +00009914 case UO_Plus:
Richard Smith390cd492011-10-30 23:17:09 +00009915 return EvaluateFloat(E->getSubExpr(), Result, Info);
John McCalle3027922010-08-25 11:45:40 +00009916 case UO_Minus:
Richard Smith390cd492011-10-30 23:17:09 +00009917 if (!EvaluateFloat(E->getSubExpr(), Result, Info))
9918 return false;
Daniel Dunbarc3d79cf2008-10-16 03:51:50 +00009919 Result.changeSign();
9920 return true;
9921 }
9922}
Chris Lattner4deaa4e2008-10-06 05:28:25 +00009923
Eli Friedman24c01542008-08-22 00:06:13 +00009924bool FloatExprEvaluator::VisitBinaryOperator(const BinaryOperator *E) {
Richard Smith027bf112011-11-17 22:56:20 +00009925 if (E->isPtrMemOp() || E->isAssignmentOp() || E->getOpcode() == BO_Comma)
9926 return ExprEvaluatorBaseTy::VisitBinaryOperator(E);
Eli Friedman141fbf32009-11-16 04:25:37 +00009927
Daniel Dunbarc3d79cf2008-10-16 03:51:50 +00009928 APFloat RHS(0.0);
Richard Smith253c2a32012-01-27 01:14:48 +00009929 bool LHSOK = EvaluateFloat(E->getLHS(), Result, Info);
George Burgess IVa145e252016-05-25 22:38:36 +00009930 if (!LHSOK && !Info.noteFailure())
Eli Friedman24c01542008-08-22 00:06:13 +00009931 return false;
Richard Smith861b5b52013-05-07 23:34:45 +00009932 return EvaluateFloat(E->getRHS(), RHS, Info) && LHSOK &&
9933 handleFloatFloatBinOp(Info, E, Result, E->getOpcode(), RHS);
Eli Friedman24c01542008-08-22 00:06:13 +00009934}
9935
9936bool FloatExprEvaluator::VisitFloatingLiteral(const FloatingLiteral *E) {
9937 Result = E->getValue();
9938 return true;
9939}
9940
Peter Collingbournee9200682011-05-13 03:29:01 +00009941bool FloatExprEvaluator::VisitCastExpr(const CastExpr *E) {
9942 const Expr* SubExpr = E->getSubExpr();
Mike Stump11289f42009-09-09 15:08:12 +00009943
Eli Friedman8bfbe3a2011-03-25 00:54:52 +00009944 switch (E->getCastKind()) {
9945 default:
Richard Smith11562c52011-10-28 17:51:58 +00009946 return ExprEvaluatorBaseTy::VisitCastExpr(E);
Eli Friedman8bfbe3a2011-03-25 00:54:52 +00009947
9948 case CK_IntegralToFloating: {
Eli Friedman9a156e52008-11-12 09:44:48 +00009949 APSInt IntResult;
Richard Smith357362d2011-12-13 06:39:58 +00009950 return EvaluateInteger(SubExpr, IntResult, Info) &&
9951 HandleIntToFloatCast(Info, E, SubExpr->getType(), IntResult,
9952 E->getType(), Result);
Eli Friedman9a156e52008-11-12 09:44:48 +00009953 }
Eli Friedman8bfbe3a2011-03-25 00:54:52 +00009954
9955 case CK_FloatingCast: {
Eli Friedman9a156e52008-11-12 09:44:48 +00009956 if (!Visit(SubExpr))
9957 return false;
Richard Smith357362d2011-12-13 06:39:58 +00009958 return HandleFloatToFloatCast(Info, E, SubExpr->getType(), E->getType(),
9959 Result);
Eli Friedman9a156e52008-11-12 09:44:48 +00009960 }
John McCalld7646252010-11-14 08:17:51 +00009961
Eli Friedman8bfbe3a2011-03-25 00:54:52 +00009962 case CK_FloatingComplexToReal: {
John McCalld7646252010-11-14 08:17:51 +00009963 ComplexValue V;
9964 if (!EvaluateComplex(SubExpr, V, Info))
9965 return false;
9966 Result = V.getComplexFloatReal();
9967 return true;
9968 }
Eli Friedman8bfbe3a2011-03-25 00:54:52 +00009969 }
Eli Friedman9a156e52008-11-12 09:44:48 +00009970}
9971
Eli Friedman24c01542008-08-22 00:06:13 +00009972//===----------------------------------------------------------------------===//
Daniel Dunbarf50e60b2009-01-28 22:24:07 +00009973// Complex Evaluation (for float and integer)
Anders Carlsson537969c2008-11-16 20:27:53 +00009974//===----------------------------------------------------------------------===//
9975
9976namespace {
Benjamin Kramer26222b62009-11-28 19:03:38 +00009977class ComplexExprEvaluator
Aaron Ballman68af21c2014-01-03 19:26:43 +00009978 : public ExprEvaluatorBase<ComplexExprEvaluator> {
John McCall93d91dc2010-05-07 17:22:02 +00009979 ComplexValue &Result;
Mike Stump11289f42009-09-09 15:08:12 +00009980
Anders Carlsson537969c2008-11-16 20:27:53 +00009981public:
John McCall93d91dc2010-05-07 17:22:02 +00009982 ComplexExprEvaluator(EvalInfo &info, ComplexValue &Result)
Peter Collingbournee9200682011-05-13 03:29:01 +00009983 : ExprEvaluatorBaseTy(info), Result(Result) {}
9984
Richard Smith2e312c82012-03-03 22:46:17 +00009985 bool Success(const APValue &V, const Expr *e) {
Peter Collingbournee9200682011-05-13 03:29:01 +00009986 Result.setFrom(V);
9987 return true;
9988 }
Mike Stump11289f42009-09-09 15:08:12 +00009989
Eli Friedmanc4b251d2012-01-10 04:58:17 +00009990 bool ZeroInitialization(const Expr *E);
9991
Anders Carlsson537969c2008-11-16 20:27:53 +00009992 //===--------------------------------------------------------------------===//
9993 // Visitor Methods
9994 //===--------------------------------------------------------------------===//
9995
Peter Collingbournee9200682011-05-13 03:29:01 +00009996 bool VisitImaginaryLiteral(const ImaginaryLiteral *E);
Peter Collingbournee9200682011-05-13 03:29:01 +00009997 bool VisitCastExpr(const CastExpr *E);
John McCall93d91dc2010-05-07 17:22:02 +00009998 bool VisitBinaryOperator(const BinaryOperator *E);
Abramo Bagnara9e0e7092010-12-11 16:05:48 +00009999 bool VisitUnaryOperator(const UnaryOperator *E);
Eli Friedmanc4b251d2012-01-10 04:58:17 +000010000 bool VisitInitListExpr(const InitListExpr *E);
Anders Carlsson537969c2008-11-16 20:27:53 +000010001};
10002} // end anonymous namespace
10003
John McCall93d91dc2010-05-07 17:22:02 +000010004static bool EvaluateComplex(const Expr *E, ComplexValue &Result,
10005 EvalInfo &Info) {
Richard Smith11562c52011-10-28 17:51:58 +000010006 assert(E->isRValue() && E->getType()->isAnyComplexType());
Peter Collingbournee9200682011-05-13 03:29:01 +000010007 return ComplexExprEvaluator(Info, Result).Visit(E);
Anders Carlsson537969c2008-11-16 20:27:53 +000010008}
10009
Eli Friedmanc4b251d2012-01-10 04:58:17 +000010010bool ComplexExprEvaluator::ZeroInitialization(const Expr *E) {
Ted Kremenek28831752012-08-23 20:46:57 +000010011 QualType ElemTy = E->getType()->castAs<ComplexType>()->getElementType();
Eli Friedmanc4b251d2012-01-10 04:58:17 +000010012 if (ElemTy->isRealFloatingType()) {
10013 Result.makeComplexFloat();
10014 APFloat Zero = APFloat::getZero(Info.Ctx.getFloatTypeSemantics(ElemTy));
10015 Result.FloatReal = Zero;
10016 Result.FloatImag = Zero;
10017 } else {
10018 Result.makeComplexInt();
10019 APSInt Zero = Info.Ctx.MakeIntValue(0, ElemTy);
10020 Result.IntReal = Zero;
10021 Result.IntImag = Zero;
10022 }
10023 return true;
10024}
10025
Peter Collingbournee9200682011-05-13 03:29:01 +000010026bool ComplexExprEvaluator::VisitImaginaryLiteral(const ImaginaryLiteral *E) {
10027 const Expr* SubExpr = E->getSubExpr();
Eli Friedmanc3e9df32010-08-16 23:27:44 +000010028
10029 if (SubExpr->getType()->isRealFloatingType()) {
10030 Result.makeComplexFloat();
10031 APFloat &Imag = Result.FloatImag;
10032 if (!EvaluateFloat(SubExpr, Imag, Info))
10033 return false;
10034
10035 Result.FloatReal = APFloat(Imag.getSemantics());
10036 return true;
10037 } else {
10038 assert(SubExpr->getType()->isIntegerType() &&
10039 "Unexpected imaginary literal.");
10040
10041 Result.makeComplexInt();
10042 APSInt &Imag = Result.IntImag;
10043 if (!EvaluateInteger(SubExpr, Imag, Info))
10044 return false;
10045
10046 Result.IntReal = APSInt(Imag.getBitWidth(), !Imag.isSigned());
10047 return true;
10048 }
10049}
10050
Peter Collingbournee9200682011-05-13 03:29:01 +000010051bool ComplexExprEvaluator::VisitCastExpr(const CastExpr *E) {
Eli Friedmanc3e9df32010-08-16 23:27:44 +000010052
John McCallfcef3cf2010-12-14 17:51:41 +000010053 switch (E->getCastKind()) {
10054 case CK_BitCast:
John McCallfcef3cf2010-12-14 17:51:41 +000010055 case CK_BaseToDerived:
10056 case CK_DerivedToBase:
10057 case CK_UncheckedDerivedToBase:
10058 case CK_Dynamic:
10059 case CK_ToUnion:
10060 case CK_ArrayToPointerDecay:
10061 case CK_FunctionToPointerDecay:
10062 case CK_NullToPointer:
10063 case CK_NullToMemberPointer:
10064 case CK_BaseToDerivedMemberPointer:
10065 case CK_DerivedToBaseMemberPointer:
10066 case CK_MemberPointerToBoolean:
John McCallc62bb392012-02-15 01:22:51 +000010067 case CK_ReinterpretMemberPointer:
John McCallfcef3cf2010-12-14 17:51:41 +000010068 case CK_ConstructorConversion:
10069 case CK_IntegralToPointer:
10070 case CK_PointerToIntegral:
10071 case CK_PointerToBoolean:
10072 case CK_ToVoid:
10073 case CK_VectorSplat:
10074 case CK_IntegralCast:
George Burgess IVdf1ed002016-01-13 01:52:39 +000010075 case CK_BooleanToSignedIntegral:
John McCallfcef3cf2010-12-14 17:51:41 +000010076 case CK_IntegralToBoolean:
10077 case CK_IntegralToFloating:
10078 case CK_FloatingToIntegral:
10079 case CK_FloatingToBoolean:
10080 case CK_FloatingCast:
John McCall9320b872011-09-09 05:25:32 +000010081 case CK_CPointerToObjCPointerCast:
10082 case CK_BlockPointerToObjCPointerCast:
John McCallfcef3cf2010-12-14 17:51:41 +000010083 case CK_AnyPointerToBlockPointerCast:
10084 case CK_ObjCObjectLValueCast:
10085 case CK_FloatingComplexToReal:
10086 case CK_FloatingComplexToBoolean:
10087 case CK_IntegralComplexToReal:
10088 case CK_IntegralComplexToBoolean:
John McCall2d637d22011-09-10 06:18:15 +000010089 case CK_ARCProduceObject:
10090 case CK_ARCConsumeObject:
10091 case CK_ARCReclaimReturnedObject:
10092 case CK_ARCExtendBlockObject:
Douglas Gregored90df32012-02-22 05:02:47 +000010093 case CK_CopyAndAutoreleaseBlockObject:
Eli Friedman34866c72012-08-31 00:14:07 +000010094 case CK_BuiltinFnToFnPtr:
Guy Benyei1b4fb3e2013-01-20 12:31:11 +000010095 case CK_ZeroToOCLEvent:
Egor Churaev89831422016-12-23 14:55:49 +000010096 case CK_ZeroToOCLQueue:
Richard Smitha23ab512013-05-23 00:30:41 +000010097 case CK_NonAtomicToAtomic:
David Tweede1468322013-12-11 13:39:46 +000010098 case CK_AddressSpaceConversion:
Yaxun Liu0bc4b2d2016-07-28 19:26:30 +000010099 case CK_IntToOCLSampler:
John McCallfcef3cf2010-12-14 17:51:41 +000010100 llvm_unreachable("invalid cast kind for complex value");
John McCallc5e62b42010-11-13 09:02:35 +000010101
John McCallfcef3cf2010-12-14 17:51:41 +000010102 case CK_LValueToRValue:
David Chisnallfa35df62012-01-16 17:27:18 +000010103 case CK_AtomicToNonAtomic:
John McCallfcef3cf2010-12-14 17:51:41 +000010104 case CK_NoOp:
Richard Smith11562c52011-10-28 17:51:58 +000010105 return ExprEvaluatorBaseTy::VisitCastExpr(E);
John McCallfcef3cf2010-12-14 17:51:41 +000010106
10107 case CK_Dependent:
Eli Friedmanc757de22011-03-25 00:43:55 +000010108 case CK_LValueBitCast:
John McCallfcef3cf2010-12-14 17:51:41 +000010109 case CK_UserDefinedConversion:
Richard Smithf57d8cb2011-12-09 22:58:01 +000010110 return Error(E);
John McCallfcef3cf2010-12-14 17:51:41 +000010111
10112 case CK_FloatingRealToComplex: {
Eli Friedmanc3e9df32010-08-16 23:27:44 +000010113 APFloat &Real = Result.FloatReal;
John McCallfcef3cf2010-12-14 17:51:41 +000010114 if (!EvaluateFloat(E->getSubExpr(), Real, Info))
Eli Friedmanc3e9df32010-08-16 23:27:44 +000010115 return false;
10116
John McCallfcef3cf2010-12-14 17:51:41 +000010117 Result.makeComplexFloat();
10118 Result.FloatImag = APFloat(Real.getSemantics());
10119 return true;
Eli Friedmanc3e9df32010-08-16 23:27:44 +000010120 }
10121
John McCallfcef3cf2010-12-14 17:51:41 +000010122 case CK_FloatingComplexCast: {
10123 if (!Visit(E->getSubExpr()))
10124 return false;
10125
10126 QualType To = E->getType()->getAs<ComplexType>()->getElementType();
10127 QualType From
10128 = E->getSubExpr()->getType()->getAs<ComplexType>()->getElementType();
10129
Richard Smith357362d2011-12-13 06:39:58 +000010130 return HandleFloatToFloatCast(Info, E, From, To, Result.FloatReal) &&
10131 HandleFloatToFloatCast(Info, E, From, To, Result.FloatImag);
John McCallfcef3cf2010-12-14 17:51:41 +000010132 }
10133
10134 case CK_FloatingComplexToIntegralComplex: {
10135 if (!Visit(E->getSubExpr()))
10136 return false;
10137
10138 QualType To = E->getType()->getAs<ComplexType>()->getElementType();
10139 QualType From
10140 = E->getSubExpr()->getType()->getAs<ComplexType>()->getElementType();
10141 Result.makeComplexInt();
Richard Smith357362d2011-12-13 06:39:58 +000010142 return HandleFloatToIntCast(Info, E, From, Result.FloatReal,
10143 To, Result.IntReal) &&
10144 HandleFloatToIntCast(Info, E, From, Result.FloatImag,
10145 To, Result.IntImag);
John McCallfcef3cf2010-12-14 17:51:41 +000010146 }
10147
10148 case CK_IntegralRealToComplex: {
10149 APSInt &Real = Result.IntReal;
10150 if (!EvaluateInteger(E->getSubExpr(), Real, Info))
10151 return false;
10152
10153 Result.makeComplexInt();
10154 Result.IntImag = APSInt(Real.getBitWidth(), !Real.isSigned());
10155 return true;
10156 }
10157
10158 case CK_IntegralComplexCast: {
10159 if (!Visit(E->getSubExpr()))
10160 return false;
10161
10162 QualType To = E->getType()->getAs<ComplexType>()->getElementType();
10163 QualType From
10164 = E->getSubExpr()->getType()->getAs<ComplexType>()->getElementType();
10165
Richard Smith911e1422012-01-30 22:27:01 +000010166 Result.IntReal = HandleIntToIntCast(Info, E, To, From, Result.IntReal);
10167 Result.IntImag = HandleIntToIntCast(Info, E, To, From, Result.IntImag);
John McCallfcef3cf2010-12-14 17:51:41 +000010168 return true;
10169 }
10170
10171 case CK_IntegralComplexToFloatingComplex: {
10172 if (!Visit(E->getSubExpr()))
10173 return false;
10174
Ted Kremenek28831752012-08-23 20:46:57 +000010175 QualType To = E->getType()->castAs<ComplexType>()->getElementType();
John McCallfcef3cf2010-12-14 17:51:41 +000010176 QualType From
Ted Kremenek28831752012-08-23 20:46:57 +000010177 = E->getSubExpr()->getType()->castAs<ComplexType>()->getElementType();
John McCallfcef3cf2010-12-14 17:51:41 +000010178 Result.makeComplexFloat();
Richard Smith357362d2011-12-13 06:39:58 +000010179 return HandleIntToFloatCast(Info, E, From, Result.IntReal,
10180 To, Result.FloatReal) &&
10181 HandleIntToFloatCast(Info, E, From, Result.IntImag,
10182 To, Result.FloatImag);
John McCallfcef3cf2010-12-14 17:51:41 +000010183 }
10184 }
10185
10186 llvm_unreachable("unknown cast resulting in complex value");
Eli Friedmanc3e9df32010-08-16 23:27:44 +000010187}
10188
John McCall93d91dc2010-05-07 17:22:02 +000010189bool ComplexExprEvaluator::VisitBinaryOperator(const BinaryOperator *E) {
Richard Smith027bf112011-11-17 22:56:20 +000010190 if (E->isPtrMemOp() || E->isAssignmentOp() || E->getOpcode() == BO_Comma)
Richard Smith10f4d062011-11-16 17:22:48 +000010191 return ExprEvaluatorBaseTy::VisitBinaryOperator(E);
10192
Chandler Carrutha216cad2014-10-11 00:57:18 +000010193 // Track whether the LHS or RHS is real at the type system level. When this is
10194 // the case we can simplify our evaluation strategy.
10195 bool LHSReal = false, RHSReal = false;
10196
10197 bool LHSOK;
10198 if (E->getLHS()->getType()->isRealFloatingType()) {
10199 LHSReal = true;
10200 APFloat &Real = Result.FloatReal;
10201 LHSOK = EvaluateFloat(E->getLHS(), Real, Info);
10202 if (LHSOK) {
10203 Result.makeComplexFloat();
10204 Result.FloatImag = APFloat(Real.getSemantics());
10205 }
10206 } else {
10207 LHSOK = Visit(E->getLHS());
10208 }
George Burgess IVa145e252016-05-25 22:38:36 +000010209 if (!LHSOK && !Info.noteFailure())
John McCall93d91dc2010-05-07 17:22:02 +000010210 return false;
Mike Stump11289f42009-09-09 15:08:12 +000010211
John McCall93d91dc2010-05-07 17:22:02 +000010212 ComplexValue RHS;
Chandler Carrutha216cad2014-10-11 00:57:18 +000010213 if (E->getRHS()->getType()->isRealFloatingType()) {
10214 RHSReal = true;
10215 APFloat &Real = RHS.FloatReal;
10216 if (!EvaluateFloat(E->getRHS(), Real, Info) || !LHSOK)
10217 return false;
10218 RHS.makeComplexFloat();
10219 RHS.FloatImag = APFloat(Real.getSemantics());
10220 } else if (!EvaluateComplex(E->getRHS(), RHS, Info) || !LHSOK)
John McCall93d91dc2010-05-07 17:22:02 +000010221 return false;
Daniel Dunbarf50e60b2009-01-28 22:24:07 +000010222
Chandler Carrutha216cad2014-10-11 00:57:18 +000010223 assert(!(LHSReal && RHSReal) &&
10224 "Cannot have both operands of a complex operation be real.");
Anders Carlsson9ddf7be2008-11-16 21:51:21 +000010225 switch (E->getOpcode()) {
Richard Smithf57d8cb2011-12-09 22:58:01 +000010226 default: return Error(E);
John McCalle3027922010-08-25 11:45:40 +000010227 case BO_Add:
Daniel Dunbarf50e60b2009-01-28 22:24:07 +000010228 if (Result.isComplexFloat()) {
10229 Result.getComplexFloatReal().add(RHS.getComplexFloatReal(),
10230 APFloat::rmNearestTiesToEven);
Chandler Carrutha216cad2014-10-11 00:57:18 +000010231 if (LHSReal)
10232 Result.getComplexFloatImag() = RHS.getComplexFloatImag();
10233 else if (!RHSReal)
10234 Result.getComplexFloatImag().add(RHS.getComplexFloatImag(),
10235 APFloat::rmNearestTiesToEven);
Daniel Dunbarf50e60b2009-01-28 22:24:07 +000010236 } else {
10237 Result.getComplexIntReal() += RHS.getComplexIntReal();
10238 Result.getComplexIntImag() += RHS.getComplexIntImag();
10239 }
Daniel Dunbar0aa26062009-01-29 01:32:56 +000010240 break;
John McCalle3027922010-08-25 11:45:40 +000010241 case BO_Sub:
Daniel Dunbarf50e60b2009-01-28 22:24:07 +000010242 if (Result.isComplexFloat()) {
10243 Result.getComplexFloatReal().subtract(RHS.getComplexFloatReal(),
10244 APFloat::rmNearestTiesToEven);
Chandler Carrutha216cad2014-10-11 00:57:18 +000010245 if (LHSReal) {
10246 Result.getComplexFloatImag() = RHS.getComplexFloatImag();
10247 Result.getComplexFloatImag().changeSign();
10248 } else if (!RHSReal) {
10249 Result.getComplexFloatImag().subtract(RHS.getComplexFloatImag(),
10250 APFloat::rmNearestTiesToEven);
10251 }
Daniel Dunbarf50e60b2009-01-28 22:24:07 +000010252 } else {
10253 Result.getComplexIntReal() -= RHS.getComplexIntReal();
10254 Result.getComplexIntImag() -= RHS.getComplexIntImag();
10255 }
Daniel Dunbar0aa26062009-01-29 01:32:56 +000010256 break;
John McCalle3027922010-08-25 11:45:40 +000010257 case BO_Mul:
Daniel Dunbar0aa26062009-01-29 01:32:56 +000010258 if (Result.isComplexFloat()) {
Chandler Carrutha216cad2014-10-11 00:57:18 +000010259 // This is an implementation of complex multiplication according to the
Hiroshi Inoue0c2734f2017-07-05 05:37:45 +000010260 // constraints laid out in C11 Annex G. The implemention uses the
Chandler Carrutha216cad2014-10-11 00:57:18 +000010261 // following naming scheme:
10262 // (a + ib) * (c + id)
John McCall93d91dc2010-05-07 17:22:02 +000010263 ComplexValue LHS = Result;
Chandler Carrutha216cad2014-10-11 00:57:18 +000010264 APFloat &A = LHS.getComplexFloatReal();
10265 APFloat &B = LHS.getComplexFloatImag();
10266 APFloat &C = RHS.getComplexFloatReal();
10267 APFloat &D = RHS.getComplexFloatImag();
10268 APFloat &ResR = Result.getComplexFloatReal();
10269 APFloat &ResI = Result.getComplexFloatImag();
10270 if (LHSReal) {
10271 assert(!RHSReal && "Cannot have two real operands for a complex op!");
10272 ResR = A * C;
10273 ResI = A * D;
10274 } else if (RHSReal) {
10275 ResR = C * A;
10276 ResI = C * B;
10277 } else {
10278 // In the fully general case, we need to handle NaNs and infinities
10279 // robustly.
10280 APFloat AC = A * C;
10281 APFloat BD = B * D;
10282 APFloat AD = A * D;
10283 APFloat BC = B * C;
10284 ResR = AC - BD;
10285 ResI = AD + BC;
10286 if (ResR.isNaN() && ResI.isNaN()) {
10287 bool Recalc = false;
10288 if (A.isInfinity() || B.isInfinity()) {
10289 A = APFloat::copySign(
10290 APFloat(A.getSemantics(), A.isInfinity() ? 1 : 0), A);
10291 B = APFloat::copySign(
10292 APFloat(B.getSemantics(), B.isInfinity() ? 1 : 0), B);
10293 if (C.isNaN())
10294 C = APFloat::copySign(APFloat(C.getSemantics()), C);
10295 if (D.isNaN())
10296 D = APFloat::copySign(APFloat(D.getSemantics()), D);
10297 Recalc = true;
10298 }
10299 if (C.isInfinity() || D.isInfinity()) {
10300 C = APFloat::copySign(
10301 APFloat(C.getSemantics(), C.isInfinity() ? 1 : 0), C);
10302 D = APFloat::copySign(
10303 APFloat(D.getSemantics(), D.isInfinity() ? 1 : 0), D);
10304 if (A.isNaN())
10305 A = APFloat::copySign(APFloat(A.getSemantics()), A);
10306 if (B.isNaN())
10307 B = APFloat::copySign(APFloat(B.getSemantics()), B);
10308 Recalc = true;
10309 }
10310 if (!Recalc && (AC.isInfinity() || BD.isInfinity() ||
10311 AD.isInfinity() || BC.isInfinity())) {
10312 if (A.isNaN())
10313 A = APFloat::copySign(APFloat(A.getSemantics()), A);
10314 if (B.isNaN())
10315 B = APFloat::copySign(APFloat(B.getSemantics()), B);
10316 if (C.isNaN())
10317 C = APFloat::copySign(APFloat(C.getSemantics()), C);
10318 if (D.isNaN())
10319 D = APFloat::copySign(APFloat(D.getSemantics()), D);
10320 Recalc = true;
10321 }
10322 if (Recalc) {
10323 ResR = APFloat::getInf(A.getSemantics()) * (A * C - B * D);
10324 ResI = APFloat::getInf(A.getSemantics()) * (A * D + B * C);
10325 }
10326 }
10327 }
Daniel Dunbar0aa26062009-01-29 01:32:56 +000010328 } else {
John McCall93d91dc2010-05-07 17:22:02 +000010329 ComplexValue LHS = Result;
Mike Stump11289f42009-09-09 15:08:12 +000010330 Result.getComplexIntReal() =
Daniel Dunbar0aa26062009-01-29 01:32:56 +000010331 (LHS.getComplexIntReal() * RHS.getComplexIntReal() -
10332 LHS.getComplexIntImag() * RHS.getComplexIntImag());
Mike Stump11289f42009-09-09 15:08:12 +000010333 Result.getComplexIntImag() =
Daniel Dunbar0aa26062009-01-29 01:32:56 +000010334 (LHS.getComplexIntReal() * RHS.getComplexIntImag() +
10335 LHS.getComplexIntImag() * RHS.getComplexIntReal());
10336 }
10337 break;
Abramo Bagnara9e0e7092010-12-11 16:05:48 +000010338 case BO_Div:
10339 if (Result.isComplexFloat()) {
Chandler Carrutha216cad2014-10-11 00:57:18 +000010340 // This is an implementation of complex division according to the
Hiroshi Inoue0c2734f2017-07-05 05:37:45 +000010341 // constraints laid out in C11 Annex G. The implemention uses the
Chandler Carrutha216cad2014-10-11 00:57:18 +000010342 // following naming scheme:
10343 // (a + ib) / (c + id)
Abramo Bagnara9e0e7092010-12-11 16:05:48 +000010344 ComplexValue LHS = Result;
Chandler Carrutha216cad2014-10-11 00:57:18 +000010345 APFloat &A = LHS.getComplexFloatReal();
10346 APFloat &B = LHS.getComplexFloatImag();
10347 APFloat &C = RHS.getComplexFloatReal();
10348 APFloat &D = RHS.getComplexFloatImag();
10349 APFloat &ResR = Result.getComplexFloatReal();
10350 APFloat &ResI = Result.getComplexFloatImag();
10351 if (RHSReal) {
10352 ResR = A / C;
10353 ResI = B / C;
10354 } else {
10355 if (LHSReal) {
10356 // No real optimizations we can do here, stub out with zero.
10357 B = APFloat::getZero(A.getSemantics());
10358 }
10359 int DenomLogB = 0;
10360 APFloat MaxCD = maxnum(abs(C), abs(D));
10361 if (MaxCD.isFinite()) {
10362 DenomLogB = ilogb(MaxCD);
Matt Arsenaultc477f482016-03-13 05:12:47 +000010363 C = scalbn(C, -DenomLogB, APFloat::rmNearestTiesToEven);
10364 D = scalbn(D, -DenomLogB, APFloat::rmNearestTiesToEven);
Chandler Carrutha216cad2014-10-11 00:57:18 +000010365 }
10366 APFloat Denom = C * C + D * D;
Matt Arsenaultc477f482016-03-13 05:12:47 +000010367 ResR = scalbn((A * C + B * D) / Denom, -DenomLogB,
10368 APFloat::rmNearestTiesToEven);
10369 ResI = scalbn((B * C - A * D) / Denom, -DenomLogB,
10370 APFloat::rmNearestTiesToEven);
Chandler Carrutha216cad2014-10-11 00:57:18 +000010371 if (ResR.isNaN() && ResI.isNaN()) {
10372 if (Denom.isPosZero() && (!A.isNaN() || !B.isNaN())) {
10373 ResR = APFloat::getInf(ResR.getSemantics(), C.isNegative()) * A;
10374 ResI = APFloat::getInf(ResR.getSemantics(), C.isNegative()) * B;
10375 } else if ((A.isInfinity() || B.isInfinity()) && C.isFinite() &&
10376 D.isFinite()) {
10377 A = APFloat::copySign(
10378 APFloat(A.getSemantics(), A.isInfinity() ? 1 : 0), A);
10379 B = APFloat::copySign(
10380 APFloat(B.getSemantics(), B.isInfinity() ? 1 : 0), B);
10381 ResR = APFloat::getInf(ResR.getSemantics()) * (A * C + B * D);
10382 ResI = APFloat::getInf(ResI.getSemantics()) * (B * C - A * D);
10383 } else if (MaxCD.isInfinity() && A.isFinite() && B.isFinite()) {
10384 C = APFloat::copySign(
10385 APFloat(C.getSemantics(), C.isInfinity() ? 1 : 0), C);
10386 D = APFloat::copySign(
10387 APFloat(D.getSemantics(), D.isInfinity() ? 1 : 0), D);
10388 ResR = APFloat::getZero(ResR.getSemantics()) * (A * C + B * D);
10389 ResI = APFloat::getZero(ResI.getSemantics()) * (B * C - A * D);
10390 }
10391 }
10392 }
Abramo Bagnara9e0e7092010-12-11 16:05:48 +000010393 } else {
Richard Smithf57d8cb2011-12-09 22:58:01 +000010394 if (RHS.getComplexIntReal() == 0 && RHS.getComplexIntImag() == 0)
10395 return Error(E, diag::note_expr_divide_by_zero);
10396
Abramo Bagnara9e0e7092010-12-11 16:05:48 +000010397 ComplexValue LHS = Result;
10398 APSInt Den = RHS.getComplexIntReal() * RHS.getComplexIntReal() +
10399 RHS.getComplexIntImag() * RHS.getComplexIntImag();
10400 Result.getComplexIntReal() =
10401 (LHS.getComplexIntReal() * RHS.getComplexIntReal() +
10402 LHS.getComplexIntImag() * RHS.getComplexIntImag()) / Den;
10403 Result.getComplexIntImag() =
10404 (LHS.getComplexIntImag() * RHS.getComplexIntReal() -
10405 LHS.getComplexIntReal() * RHS.getComplexIntImag()) / Den;
10406 }
10407 break;
Anders Carlsson9ddf7be2008-11-16 21:51:21 +000010408 }
10409
John McCall93d91dc2010-05-07 17:22:02 +000010410 return true;
Anders Carlsson9ddf7be2008-11-16 21:51:21 +000010411}
10412
Abramo Bagnara9e0e7092010-12-11 16:05:48 +000010413bool ComplexExprEvaluator::VisitUnaryOperator(const UnaryOperator *E) {
10414 // Get the operand value into 'Result'.
10415 if (!Visit(E->getSubExpr()))
10416 return false;
10417
10418 switch (E->getOpcode()) {
10419 default:
Richard Smithf57d8cb2011-12-09 22:58:01 +000010420 return Error(E);
Abramo Bagnara9e0e7092010-12-11 16:05:48 +000010421 case UO_Extension:
10422 return true;
10423 case UO_Plus:
10424 // The result is always just the subexpr.
10425 return true;
10426 case UO_Minus:
10427 if (Result.isComplexFloat()) {
10428 Result.getComplexFloatReal().changeSign();
10429 Result.getComplexFloatImag().changeSign();
10430 }
10431 else {
10432 Result.getComplexIntReal() = -Result.getComplexIntReal();
10433 Result.getComplexIntImag() = -Result.getComplexIntImag();
10434 }
10435 return true;
10436 case UO_Not:
10437 if (Result.isComplexFloat())
10438 Result.getComplexFloatImag().changeSign();
10439 else
10440 Result.getComplexIntImag() = -Result.getComplexIntImag();
10441 return true;
10442 }
10443}
10444
Eli Friedmanc4b251d2012-01-10 04:58:17 +000010445bool ComplexExprEvaluator::VisitInitListExpr(const InitListExpr *E) {
10446 if (E->getNumInits() == 2) {
10447 if (E->getType()->isComplexType()) {
10448 Result.makeComplexFloat();
10449 if (!EvaluateFloat(E->getInit(0), Result.FloatReal, Info))
10450 return false;
10451 if (!EvaluateFloat(E->getInit(1), Result.FloatImag, Info))
10452 return false;
10453 } else {
10454 Result.makeComplexInt();
10455 if (!EvaluateInteger(E->getInit(0), Result.IntReal, Info))
10456 return false;
10457 if (!EvaluateInteger(E->getInit(1), Result.IntImag, Info))
10458 return false;
10459 }
10460 return true;
10461 }
10462 return ExprEvaluatorBaseTy::VisitInitListExpr(E);
10463}
10464
Anders Carlsson537969c2008-11-16 20:27:53 +000010465//===----------------------------------------------------------------------===//
Richard Smitha23ab512013-05-23 00:30:41 +000010466// Atomic expression evaluation, essentially just handling the NonAtomicToAtomic
10467// implicit conversion.
10468//===----------------------------------------------------------------------===//
10469
10470namespace {
10471class AtomicExprEvaluator :
Aaron Ballman68af21c2014-01-03 19:26:43 +000010472 public ExprEvaluatorBase<AtomicExprEvaluator> {
Richard Smith64cb9ca2017-02-22 22:09:50 +000010473 const LValue *This;
Richard Smitha23ab512013-05-23 00:30:41 +000010474 APValue &Result;
10475public:
Richard Smith64cb9ca2017-02-22 22:09:50 +000010476 AtomicExprEvaluator(EvalInfo &Info, const LValue *This, APValue &Result)
10477 : ExprEvaluatorBaseTy(Info), This(This), Result(Result) {}
Richard Smitha23ab512013-05-23 00:30:41 +000010478
10479 bool Success(const APValue &V, const Expr *E) {
10480 Result = V;
10481 return true;
10482 }
10483
10484 bool ZeroInitialization(const Expr *E) {
10485 ImplicitValueInitExpr VIE(
10486 E->getType()->castAs<AtomicType>()->getValueType());
Richard Smith64cb9ca2017-02-22 22:09:50 +000010487 // For atomic-qualified class (and array) types in C++, initialize the
10488 // _Atomic-wrapped subobject directly, in-place.
10489 return This ? EvaluateInPlace(Result, Info, *This, &VIE)
10490 : Evaluate(Result, Info, &VIE);
Richard Smitha23ab512013-05-23 00:30:41 +000010491 }
10492
10493 bool VisitCastExpr(const CastExpr *E) {
10494 switch (E->getCastKind()) {
10495 default:
10496 return ExprEvaluatorBaseTy::VisitCastExpr(E);
10497 case CK_NonAtomicToAtomic:
Richard Smith64cb9ca2017-02-22 22:09:50 +000010498 return This ? EvaluateInPlace(Result, Info, *This, E->getSubExpr())
10499 : Evaluate(Result, Info, E->getSubExpr());
Richard Smitha23ab512013-05-23 00:30:41 +000010500 }
10501 }
10502};
10503} // end anonymous namespace
10504
Richard Smith64cb9ca2017-02-22 22:09:50 +000010505static bool EvaluateAtomic(const Expr *E, const LValue *This, APValue &Result,
10506 EvalInfo &Info) {
Richard Smitha23ab512013-05-23 00:30:41 +000010507 assert(E->isRValue() && E->getType()->isAtomicType());
Richard Smith64cb9ca2017-02-22 22:09:50 +000010508 return AtomicExprEvaluator(Info, This, Result).Visit(E);
Richard Smitha23ab512013-05-23 00:30:41 +000010509}
10510
10511//===----------------------------------------------------------------------===//
Richard Smith42d3af92011-12-07 00:43:50 +000010512// Void expression evaluation, primarily for a cast to void on the LHS of a
10513// comma operator
10514//===----------------------------------------------------------------------===//
10515
10516namespace {
10517class VoidExprEvaluator
Aaron Ballman68af21c2014-01-03 19:26:43 +000010518 : public ExprEvaluatorBase<VoidExprEvaluator> {
Richard Smith42d3af92011-12-07 00:43:50 +000010519public:
10520 VoidExprEvaluator(EvalInfo &Info) : ExprEvaluatorBaseTy(Info) {}
10521
Richard Smith2e312c82012-03-03 22:46:17 +000010522 bool Success(const APValue &V, const Expr *e) { return true; }
Richard Smith42d3af92011-12-07 00:43:50 +000010523
Richard Smith7cd577b2017-08-17 19:35:50 +000010524 bool ZeroInitialization(const Expr *E) { return true; }
10525
Richard Smith42d3af92011-12-07 00:43:50 +000010526 bool VisitCastExpr(const CastExpr *E) {
10527 switch (E->getCastKind()) {
10528 default:
10529 return ExprEvaluatorBaseTy::VisitCastExpr(E);
10530 case CK_ToVoid:
10531 VisitIgnoredValue(E->getSubExpr());
10532 return true;
10533 }
10534 }
Hal Finkela8443c32014-07-17 14:49:58 +000010535
10536 bool VisitCallExpr(const CallExpr *E) {
10537 switch (E->getBuiltinCallee()) {
10538 default:
10539 return ExprEvaluatorBaseTy::VisitCallExpr(E);
10540 case Builtin::BI__assume:
Hal Finkelbcc06082014-09-07 22:58:14 +000010541 case Builtin::BI__builtin_assume:
Hal Finkela8443c32014-07-17 14:49:58 +000010542 // The argument is not evaluated!
10543 return true;
10544 }
10545 }
Richard Smith42d3af92011-12-07 00:43:50 +000010546};
10547} // end anonymous namespace
10548
10549static bool EvaluateVoid(const Expr *E, EvalInfo &Info) {
10550 assert(E->isRValue() && E->getType()->isVoidType());
10551 return VoidExprEvaluator(Info).Visit(E);
10552}
10553
10554//===----------------------------------------------------------------------===//
Richard Smith7b553f12011-10-29 00:50:52 +000010555// Top level Expr::EvaluateAsRValue method.
Chris Lattner05706e882008-07-11 18:11:29 +000010556//===----------------------------------------------------------------------===//
10557
Richard Smith2e312c82012-03-03 22:46:17 +000010558static bool Evaluate(APValue &Result, EvalInfo &Info, const Expr *E) {
Richard Smith11562c52011-10-28 17:51:58 +000010559 // In C, function designators are not lvalues, but we evaluate them as if they
10560 // are.
Richard Smitha23ab512013-05-23 00:30:41 +000010561 QualType T = E->getType();
10562 if (E->isGLValue() || T->isFunctionType()) {
Richard Smith11562c52011-10-28 17:51:58 +000010563 LValue LV;
10564 if (!EvaluateLValue(E, LV, Info))
10565 return false;
10566 LV.moveInto(Result);
Richard Smitha23ab512013-05-23 00:30:41 +000010567 } else if (T->isVectorType()) {
Richard Smith725810a2011-10-16 21:26:27 +000010568 if (!EvaluateVector(E, Result, Info))
Nate Begeman2f2bdeb2009-01-18 03:20:47 +000010569 return false;
Richard Smitha23ab512013-05-23 00:30:41 +000010570 } else if (T->isIntegralOrEnumerationType()) {
Richard Smith725810a2011-10-16 21:26:27 +000010571 if (!IntExprEvaluator(Info, Result).Visit(E))
Anders Carlsson475f4bc2008-11-22 21:50:49 +000010572 return false;
Richard Smitha23ab512013-05-23 00:30:41 +000010573 } else if (T->hasPointerRepresentation()) {
John McCall45d55e42010-05-07 21:00:08 +000010574 LValue LV;
10575 if (!EvaluatePointer(E, LV, Info))
Anders Carlsson475f4bc2008-11-22 21:50:49 +000010576 return false;
Richard Smith725810a2011-10-16 21:26:27 +000010577 LV.moveInto(Result);
Richard Smitha23ab512013-05-23 00:30:41 +000010578 } else if (T->isRealFloatingType()) {
John McCall45d55e42010-05-07 21:00:08 +000010579 llvm::APFloat F(0.0);
10580 if (!EvaluateFloat(E, F, Info))
Anders Carlsson475f4bc2008-11-22 21:50:49 +000010581 return false;
Richard Smith2e312c82012-03-03 22:46:17 +000010582 Result = APValue(F);
Richard Smitha23ab512013-05-23 00:30:41 +000010583 } else if (T->isAnyComplexType()) {
John McCall45d55e42010-05-07 21:00:08 +000010584 ComplexValue C;
10585 if (!EvaluateComplex(E, C, Info))
Anders Carlsson475f4bc2008-11-22 21:50:49 +000010586 return false;
Richard Smith725810a2011-10-16 21:26:27 +000010587 C.moveInto(Result);
Leonard Chandb01c3a2018-06-20 17:19:40 +000010588 } else if (T->isFixedPointType()) {
10589 if (!FixedPointExprEvaluator(Info, Result).Visit(E)) return false;
Richard Smitha23ab512013-05-23 00:30:41 +000010590 } else if (T->isMemberPointerType()) {
Richard Smith027bf112011-11-17 22:56:20 +000010591 MemberPtr P;
10592 if (!EvaluateMemberPointer(E, P, Info))
10593 return false;
10594 P.moveInto(Result);
10595 return true;
Richard Smitha23ab512013-05-23 00:30:41 +000010596 } else if (T->isArrayType()) {
Richard Smithd62306a2011-11-10 06:34:14 +000010597 LValue LV;
Akira Hatanaka4e2698c2018-04-10 05:15:01 +000010598 APValue &Value = createTemporary(E, false, LV, *Info.CurrentCall);
Richard Smith08d6a2c2013-07-24 07:11:57 +000010599 if (!EvaluateArray(E, LV, Value, Info))
Richard Smithf3e9e432011-11-07 09:22:26 +000010600 return false;
Richard Smith08d6a2c2013-07-24 07:11:57 +000010601 Result = Value;
Richard Smitha23ab512013-05-23 00:30:41 +000010602 } else if (T->isRecordType()) {
Richard Smithd62306a2011-11-10 06:34:14 +000010603 LValue LV;
Akira Hatanaka4e2698c2018-04-10 05:15:01 +000010604 APValue &Value = createTemporary(E, false, LV, *Info.CurrentCall);
Richard Smith08d6a2c2013-07-24 07:11:57 +000010605 if (!EvaluateRecord(E, LV, Value, Info))
Richard Smithd62306a2011-11-10 06:34:14 +000010606 return false;
Richard Smith08d6a2c2013-07-24 07:11:57 +000010607 Result = Value;
Richard Smitha23ab512013-05-23 00:30:41 +000010608 } else if (T->isVoidType()) {
Richard Smith2bf7fdb2013-01-02 11:42:31 +000010609 if (!Info.getLangOpts().CPlusPlus11)
Richard Smithce1ec5e2012-03-15 04:53:45 +000010610 Info.CCEDiag(E, diag::note_constexpr_nonliteral)
Richard Smith357362d2011-12-13 06:39:58 +000010611 << E->getType();
Richard Smith42d3af92011-12-07 00:43:50 +000010612 if (!EvaluateVoid(E, Info))
10613 return false;
Richard Smitha23ab512013-05-23 00:30:41 +000010614 } else if (T->isAtomicType()) {
Richard Smith64cb9ca2017-02-22 22:09:50 +000010615 QualType Unqual = T.getAtomicUnqualifiedType();
10616 if (Unqual->isArrayType() || Unqual->isRecordType()) {
10617 LValue LV;
Akira Hatanaka4e2698c2018-04-10 05:15:01 +000010618 APValue &Value = createTemporary(E, false, LV, *Info.CurrentCall);
Richard Smith64cb9ca2017-02-22 22:09:50 +000010619 if (!EvaluateAtomic(E, &LV, Value, Info))
10620 return false;
10621 } else {
10622 if (!EvaluateAtomic(E, nullptr, Result, Info))
10623 return false;
10624 }
Richard Smith2bf7fdb2013-01-02 11:42:31 +000010625 } else if (Info.getLangOpts().CPlusPlus11) {
Faisal Valie690b7a2016-07-02 22:34:24 +000010626 Info.FFDiag(E, diag::note_constexpr_nonliteral) << E->getType();
Richard Smith357362d2011-12-13 06:39:58 +000010627 return false;
Richard Smithf57d8cb2011-12-09 22:58:01 +000010628 } else {
Faisal Valie690b7a2016-07-02 22:34:24 +000010629 Info.FFDiag(E, diag::note_invalid_subexpr_in_const_expr);
Anders Carlsson7c282e42008-11-22 22:56:32 +000010630 return false;
Richard Smithf57d8cb2011-12-09 22:58:01 +000010631 }
Anders Carlsson475f4bc2008-11-22 21:50:49 +000010632
Anders Carlsson7b6f0af2008-11-30 16:58:53 +000010633 return true;
10634}
10635
Richard Smithb228a862012-02-15 02:18:13 +000010636/// EvaluateInPlace - Evaluate an expression in-place in an APValue. In some
10637/// cases, the in-place evaluation is essential, since later initializers for
10638/// an object can indirectly refer to subobjects which were initialized earlier.
10639static bool EvaluateInPlace(APValue &Result, EvalInfo &Info, const LValue &This,
Richard Smith7525ff62013-05-09 07:14:00 +000010640 const Expr *E, bool AllowNonLiteralTypes) {
Argyrios Kyrtzidis3d9e3822014-02-20 04:00:01 +000010641 assert(!E->isValueDependent());
10642
Richard Smith7525ff62013-05-09 07:14:00 +000010643 if (!AllowNonLiteralTypes && !CheckLiteralType(Info, E, &This))
Richard Smithfddd3842011-12-30 21:15:51 +000010644 return false;
10645
10646 if (E->isRValue()) {
Richard Smithed5165f2011-11-04 05:33:44 +000010647 // Evaluate arrays and record types in-place, so that later initializers can
10648 // refer to earlier-initialized members of the object.
Richard Smith64cb9ca2017-02-22 22:09:50 +000010649 QualType T = E->getType();
10650 if (T->isArrayType())
Richard Smithd62306a2011-11-10 06:34:14 +000010651 return EvaluateArray(E, This, Result, Info);
Richard Smith64cb9ca2017-02-22 22:09:50 +000010652 else if (T->isRecordType())
Richard Smithd62306a2011-11-10 06:34:14 +000010653 return EvaluateRecord(E, This, Result, Info);
Richard Smith64cb9ca2017-02-22 22:09:50 +000010654 else if (T->isAtomicType()) {
10655 QualType Unqual = T.getAtomicUnqualifiedType();
10656 if (Unqual->isArrayType() || Unqual->isRecordType())
10657 return EvaluateAtomic(E, &This, Result, Info);
10658 }
Richard Smithed5165f2011-11-04 05:33:44 +000010659 }
10660
10661 // For any other type, in-place evaluation is unimportant.
Richard Smith2e312c82012-03-03 22:46:17 +000010662 return Evaluate(Result, Info, E);
Richard Smithed5165f2011-11-04 05:33:44 +000010663}
10664
Richard Smithf57d8cb2011-12-09 22:58:01 +000010665/// EvaluateAsRValue - Try to evaluate this expression, performing an implicit
10666/// lvalue-to-rvalue cast if it is an lvalue.
10667static bool EvaluateAsRValue(EvalInfo &Info, const Expr *E, APValue &Result) {
James Dennett0492ef02014-03-14 17:44:10 +000010668 if (E->getType().isNull())
10669 return false;
10670
Nick Lewyckyc190f962017-05-02 01:06:16 +000010671 if (!CheckLiteralType(Info, E))
Richard Smithfddd3842011-12-30 21:15:51 +000010672 return false;
10673
Richard Smith2e312c82012-03-03 22:46:17 +000010674 if (!::Evaluate(Result, Info, E))
Richard Smithf57d8cb2011-12-09 22:58:01 +000010675 return false;
10676
10677 if (E->isGLValue()) {
10678 LValue LV;
Richard Smith2e312c82012-03-03 22:46:17 +000010679 LV.setFrom(Info.Ctx, Result);
Richard Smith243ef902013-05-05 23:31:59 +000010680 if (!handleLValueToRValueConversion(Info, E, E->getType(), LV, Result))
Richard Smithf57d8cb2011-12-09 22:58:01 +000010681 return false;
10682 }
10683
Richard Smith2e312c82012-03-03 22:46:17 +000010684 // Check this core constant expression is a constant expression.
Richard Smithb228a862012-02-15 02:18:13 +000010685 return CheckConstantExpression(Info, E->getExprLoc(), E->getType(), Result);
Richard Smithf57d8cb2011-12-09 22:58:01 +000010686}
Richard Smith11562c52011-10-28 17:51:58 +000010687
Fariborz Jahaniane735ff92013-01-24 22:11:45 +000010688static bool FastEvaluateAsRValue(const Expr *Exp, Expr::EvalResult &Result,
Richard Smith9f7df0c2017-06-26 23:19:32 +000010689 const ASTContext &Ctx, bool &IsConst) {
Fariborz Jahaniane735ff92013-01-24 22:11:45 +000010690 // Fast-path evaluations of integer literals, since we sometimes see files
10691 // containing vast quantities of these.
10692 if (const IntegerLiteral *L = dyn_cast<IntegerLiteral>(Exp)) {
10693 Result.Val = APValue(APSInt(L->getValue(),
10694 L->getType()->isUnsignedIntegerType()));
10695 IsConst = true;
10696 return true;
10697 }
James Dennett0492ef02014-03-14 17:44:10 +000010698
10699 // This case should be rare, but we need to check it before we check on
10700 // the type below.
10701 if (Exp->getType().isNull()) {
10702 IsConst = false;
10703 return true;
10704 }
Fangrui Song6907ce22018-07-30 19:24:48 +000010705
Fariborz Jahaniane735ff92013-01-24 22:11:45 +000010706 // FIXME: Evaluating values of large array and record types can cause
10707 // performance problems. Only do so in C++11 for now.
10708 if (Exp->isRValue() && (Exp->getType()->isArrayType() ||
10709 Exp->getType()->isRecordType()) &&
Richard Smith9f7df0c2017-06-26 23:19:32 +000010710 !Ctx.getLangOpts().CPlusPlus11) {
Fariborz Jahaniane735ff92013-01-24 22:11:45 +000010711 IsConst = false;
10712 return true;
10713 }
10714 return false;
10715}
10716
10717
Richard Smith7b553f12011-10-29 00:50:52 +000010718/// EvaluateAsRValue - Return true if this is a constant which we can fold using
John McCallc07a0c72011-02-17 10:25:35 +000010719/// any crazy technique (that has nothing to do with language standards) that
10720/// we want to. If this function returns true, it returns the folded constant
Richard Smith11562c52011-10-28 17:51:58 +000010721/// in Result. If this expression is a glvalue, an lvalue-to-rvalue conversion
10722/// will be applied to the result.
Richard Smith7b553f12011-10-29 00:50:52 +000010723bool Expr::EvaluateAsRValue(EvalResult &Result, const ASTContext &Ctx) const {
Fariborz Jahaniane735ff92013-01-24 22:11:45 +000010724 bool IsConst;
Richard Smith9f7df0c2017-06-26 23:19:32 +000010725 if (FastEvaluateAsRValue(this, Result, Ctx, IsConst))
Fariborz Jahaniane735ff92013-01-24 22:11:45 +000010726 return IsConst;
Fangrui Song6907ce22018-07-30 19:24:48 +000010727
Richard Smith6d4c6582013-11-05 22:18:15 +000010728 EvalInfo Info(Ctx, Result, EvalInfo::EM_IgnoreSideEffects);
Richard Smithf57d8cb2011-12-09 22:58:01 +000010729 return ::EvaluateAsRValue(Info, this, Result.Val);
John McCallc07a0c72011-02-17 10:25:35 +000010730}
10731
Jay Foad39c79802011-01-12 09:06:06 +000010732bool Expr::EvaluateAsBooleanCondition(bool &Result,
10733 const ASTContext &Ctx) const {
Richard Smith11562c52011-10-28 17:51:58 +000010734 EvalResult Scratch;
Richard Smith7b553f12011-10-29 00:50:52 +000010735 return EvaluateAsRValue(Scratch, Ctx) &&
Richard Smith2e312c82012-03-03 22:46:17 +000010736 HandleConversionToBool(Scratch.Val, Result);
John McCall1be1c632010-01-05 23:42:56 +000010737}
10738
Richard Smith3f1d6de2018-05-21 20:36:58 +000010739static bool hasUnacceptableSideEffect(Expr::EvalStatus &Result,
10740 Expr::SideEffectsKind SEK) {
10741 return (SEK < Expr::SE_AllowSideEffects && Result.HasSideEffects) ||
10742 (SEK < Expr::SE_AllowUndefinedBehavior && Result.HasUndefinedBehavior);
10743}
10744
Richard Smith5fab0c92011-12-28 19:48:30 +000010745bool Expr::EvaluateAsInt(APSInt &Result, const ASTContext &Ctx,
10746 SideEffectsKind AllowSideEffects) const {
10747 if (!getType()->isIntegralOrEnumerationType())
10748 return false;
10749
Richard Smith11562c52011-10-28 17:51:58 +000010750 EvalResult ExprResult;
Richard Smith5fab0c92011-12-28 19:48:30 +000010751 if (!EvaluateAsRValue(ExprResult, Ctx) || !ExprResult.Val.isInt() ||
Richard Smith3f1d6de2018-05-21 20:36:58 +000010752 hasUnacceptableSideEffect(ExprResult, AllowSideEffects))
Richard Smith11562c52011-10-28 17:51:58 +000010753 return false;
Richard Smithf57d8cb2011-12-09 22:58:01 +000010754
Richard Smith11562c52011-10-28 17:51:58 +000010755 Result = ExprResult.Val.getInt();
10756 return true;
Richard Smithcaf33902011-10-10 18:28:20 +000010757}
10758
Richard Trieube234c32016-04-21 21:04:55 +000010759bool Expr::EvaluateAsFloat(APFloat &Result, const ASTContext &Ctx,
10760 SideEffectsKind AllowSideEffects) const {
10761 if (!getType()->isRealFloatingType())
10762 return false;
10763
10764 EvalResult ExprResult;
10765 if (!EvaluateAsRValue(ExprResult, Ctx) || !ExprResult.Val.isFloat() ||
Richard Smith3f1d6de2018-05-21 20:36:58 +000010766 hasUnacceptableSideEffect(ExprResult, AllowSideEffects))
Richard Trieube234c32016-04-21 21:04:55 +000010767 return false;
10768
10769 Result = ExprResult.Val.getFloat();
10770 return true;
10771}
10772
Jay Foad39c79802011-01-12 09:06:06 +000010773bool Expr::EvaluateAsLValue(EvalResult &Result, const ASTContext &Ctx) const {
Richard Smith6d4c6582013-11-05 22:18:15 +000010774 EvalInfo Info(Ctx, Result, EvalInfo::EM_ConstantFold);
Anders Carlsson43168122009-04-10 04:54:13 +000010775
John McCall45d55e42010-05-07 21:00:08 +000010776 LValue LV;
Richard Smithb228a862012-02-15 02:18:13 +000010777 if (!EvaluateLValue(this, LV, Info) || Result.HasSideEffects ||
10778 !CheckLValueConstantExpression(Info, getExprLoc(),
Reid Kleckner1a840d22018-05-10 18:57:35 +000010779 Ctx.getLValueReferenceType(getType()), LV,
10780 Expr::EvaluateForCodeGen))
Richard Smithb228a862012-02-15 02:18:13 +000010781 return false;
10782
Richard Smith2e312c82012-03-03 22:46:17 +000010783 LV.moveInto(Result.Val);
Richard Smithb228a862012-02-15 02:18:13 +000010784 return true;
Eli Friedman7d45c482009-09-13 10:17:44 +000010785}
10786
Reid Kleckner1a840d22018-05-10 18:57:35 +000010787bool Expr::EvaluateAsConstantExpr(EvalResult &Result, ConstExprUsage Usage,
10788 const ASTContext &Ctx) const {
10789 EvalInfo::EvaluationMode EM = EvalInfo::EM_ConstantExpression;
10790 EvalInfo Info(Ctx, Result, EM);
10791 if (!::Evaluate(Result.Val, Info, this))
10792 return false;
10793
10794 return CheckConstantExpression(Info, getExprLoc(), getType(), Result.Val,
10795 Usage);
10796}
10797
Richard Smithd0b4dd62011-12-19 06:19:21 +000010798bool Expr::EvaluateAsInitializer(APValue &Value, const ASTContext &Ctx,
10799 const VarDecl *VD,
Dmitri Gribenkof8579502013-01-12 19:30:44 +000010800 SmallVectorImpl<PartialDiagnosticAt> &Notes) const {
Richard Smithdafff942012-01-14 04:30:29 +000010801 // FIXME: Evaluating initializers for large array and record types can cause
10802 // performance problems. Only do so in C++11 for now.
10803 if (isRValue() && (getType()->isArrayType() || getType()->isRecordType()) &&
Richard Smith2bf7fdb2013-01-02 11:42:31 +000010804 !Ctx.getLangOpts().CPlusPlus11)
Richard Smithdafff942012-01-14 04:30:29 +000010805 return false;
10806
Richard Smithd0b4dd62011-12-19 06:19:21 +000010807 Expr::EvalStatus EStatus;
10808 EStatus.Diag = &Notes;
10809
Richard Smith0c6124b2015-12-03 01:36:22 +000010810 EvalInfo InitInfo(Ctx, EStatus, VD->isConstexpr()
10811 ? EvalInfo::EM_ConstantExpression
10812 : EvalInfo::EM_ConstantFold);
Richard Smithd0b4dd62011-12-19 06:19:21 +000010813 InitInfo.setEvaluatingDecl(VD, Value);
10814
10815 LValue LVal;
10816 LVal.set(VD);
10817
Richard Smithfddd3842011-12-30 21:15:51 +000010818 // C++11 [basic.start.init]p2:
10819 // Variables with static storage duration or thread storage duration shall be
10820 // zero-initialized before any other initialization takes place.
10821 // This behavior is not present in C.
David Blaikiebbafb8a2012-03-11 07:00:24 +000010822 if (Ctx.getLangOpts().CPlusPlus && !VD->hasLocalStorage() &&
Richard Smithfddd3842011-12-30 21:15:51 +000010823 !VD->getType()->isReferenceType()) {
10824 ImplicitValueInitExpr VIE(VD->getType());
Richard Smith7525ff62013-05-09 07:14:00 +000010825 if (!EvaluateInPlace(Value, InitInfo, LVal, &VIE,
Richard Smithb228a862012-02-15 02:18:13 +000010826 /*AllowNonLiteralTypes=*/true))
Richard Smithfddd3842011-12-30 21:15:51 +000010827 return false;
10828 }
10829
Richard Smith7525ff62013-05-09 07:14:00 +000010830 if (!EvaluateInPlace(Value, InitInfo, LVal, this,
10831 /*AllowNonLiteralTypes=*/true) ||
Richard Smithb228a862012-02-15 02:18:13 +000010832 EStatus.HasSideEffects)
10833 return false;
10834
10835 return CheckConstantExpression(InitInfo, VD->getLocation(), VD->getType(),
10836 Value);
Richard Smithd0b4dd62011-12-19 06:19:21 +000010837}
10838
Richard Smith7b553f12011-10-29 00:50:52 +000010839/// isEvaluatable - Call EvaluateAsRValue to see if this expression can be
10840/// constant folded, but discard the result.
Richard Smithce8eca52015-12-08 03:21:47 +000010841bool Expr::isEvaluatable(const ASTContext &Ctx, SideEffectsKind SEK) const {
Anders Carlsson5b3638b2008-12-01 06:44:05 +000010842 EvalResult Result;
Richard Smithce8eca52015-12-08 03:21:47 +000010843 return EvaluateAsRValue(Result, Ctx) &&
Richard Smith3f1d6de2018-05-21 20:36:58 +000010844 !hasUnacceptableSideEffect(Result, SEK);
Chris Lattnercb136912008-10-06 06:49:02 +000010845}
Anders Carlsson59689ed2008-11-22 21:04:56 +000010846
Fariborz Jahanian8b115b72013-01-09 23:04:56 +000010847APSInt Expr::EvaluateKnownConstInt(const ASTContext &Ctx,
Dmitri Gribenkof8579502013-01-12 19:30:44 +000010848 SmallVectorImpl<PartialDiagnosticAt> *Diag) const {
Anders Carlsson6736d1a22008-12-19 20:58:05 +000010849 EvalResult EvalResult;
Fariborz Jahanian8b115b72013-01-09 23:04:56 +000010850 EvalResult.Diag = Diag;
Richard Smith7b553f12011-10-29 00:50:52 +000010851 bool Result = EvaluateAsRValue(EvalResult, Ctx);
Jeffrey Yasskinb3321532010-12-23 01:01:28 +000010852 (void)Result;
Anders Carlsson59689ed2008-11-22 21:04:56 +000010853 assert(Result && "Could not evaluate expression");
Anders Carlsson6736d1a22008-12-19 20:58:05 +000010854 assert(EvalResult.Val.isInt() && "Expression did not evaluate to integer");
Anders Carlsson59689ed2008-11-22 21:04:56 +000010855
Anders Carlsson6736d1a22008-12-19 20:58:05 +000010856 return EvalResult.Val.getInt();
Anders Carlsson59689ed2008-11-22 21:04:56 +000010857}
John McCall864e3962010-05-07 05:32:02 +000010858
Richard Smithe9ff7702013-11-05 22:23:30 +000010859void Expr::EvaluateForOverflow(const ASTContext &Ctx) const {
Fariborz Jahaniane735ff92013-01-24 22:11:45 +000010860 bool IsConst;
10861 EvalResult EvalResult;
Richard Smith9f7df0c2017-06-26 23:19:32 +000010862 if (!FastEvaluateAsRValue(this, EvalResult, Ctx, IsConst)) {
Richard Smith6d4c6582013-11-05 22:18:15 +000010863 EvalInfo Info(Ctx, EvalResult, EvalInfo::EM_EvaluateForOverflow);
Fariborz Jahaniane735ff92013-01-24 22:11:45 +000010864 (void)::EvaluateAsRValue(Info, this, EvalResult.Val);
10865 }
10866}
10867
Richard Smithe6c01442013-06-05 00:46:14 +000010868bool Expr::EvalResult::isGlobalLValue() const {
10869 assert(Val.isLValue());
10870 return IsGlobalLValue(Val.getLValueBase());
10871}
Abramo Bagnaraf8199452010-05-14 17:07:14 +000010872
10873
John McCall864e3962010-05-07 05:32:02 +000010874/// isIntegerConstantExpr - this recursive routine will test if an expression is
10875/// an integer constant expression.
10876
10877/// FIXME: Pass up a reason why! Invalid operation in i-c-e, division by zero,
10878/// comma, etc
John McCall864e3962010-05-07 05:32:02 +000010879
10880// CheckICE - This function does the fundamental ICE checking: the returned
Richard Smith9e575da2012-12-28 13:25:52 +000010881// ICEDiag contains an ICEKind indicating whether the expression is an ICE,
10882// and a (possibly null) SourceLocation indicating the location of the problem.
10883//
John McCall864e3962010-05-07 05:32:02 +000010884// Note that to reduce code duplication, this helper does no evaluation
10885// itself; the caller checks whether the expression is evaluatable, and
10886// in the rare cases where CheckICE actually cares about the evaluated
George Burgess IV57317072017-02-02 07:53:55 +000010887// value, it calls into Evaluate.
John McCall864e3962010-05-07 05:32:02 +000010888
Dan Gohman28ade552010-07-26 21:25:24 +000010889namespace {
10890
Richard Smith9e575da2012-12-28 13:25:52 +000010891enum ICEKind {
10892 /// This expression is an ICE.
10893 IK_ICE,
10894 /// This expression is not an ICE, but if it isn't evaluated, it's
10895 /// a legal subexpression for an ICE. This return value is used to handle
10896 /// the comma operator in C99 mode, and non-constant subexpressions.
10897 IK_ICEIfUnevaluated,
10898 /// This expression is not an ICE, and is not a legal subexpression for one.
10899 IK_NotICE
10900};
10901
John McCall864e3962010-05-07 05:32:02 +000010902struct ICEDiag {
Richard Smith9e575da2012-12-28 13:25:52 +000010903 ICEKind Kind;
John McCall864e3962010-05-07 05:32:02 +000010904 SourceLocation Loc;
10905
Richard Smith9e575da2012-12-28 13:25:52 +000010906 ICEDiag(ICEKind IK, SourceLocation l) : Kind(IK), Loc(l) {}
John McCall864e3962010-05-07 05:32:02 +000010907};
10908
Alexander Kornienkoab9db512015-06-22 23:07:51 +000010909}
Dan Gohman28ade552010-07-26 21:25:24 +000010910
Richard Smith9e575da2012-12-28 13:25:52 +000010911static ICEDiag NoDiag() { return ICEDiag(IK_ICE, SourceLocation()); }
10912
10913static ICEDiag Worst(ICEDiag A, ICEDiag B) { return A.Kind >= B.Kind ? A : B; }
John McCall864e3962010-05-07 05:32:02 +000010914
Craig Toppera31a8822013-08-22 07:09:37 +000010915static ICEDiag CheckEvalInICE(const Expr* E, const ASTContext &Ctx) {
John McCall864e3962010-05-07 05:32:02 +000010916 Expr::EvalResult EVResult;
Richard Smith7b553f12011-10-29 00:50:52 +000010917 if (!E->EvaluateAsRValue(EVResult, Ctx) || EVResult.HasSideEffects ||
Richard Smith9e575da2012-12-28 13:25:52 +000010918 !EVResult.Val.isInt())
Stephen Kellyf2ceec42018-08-09 21:08:08 +000010919 return ICEDiag(IK_NotICE, E->getBeginLoc());
Richard Smith9e575da2012-12-28 13:25:52 +000010920
John McCall864e3962010-05-07 05:32:02 +000010921 return NoDiag();
10922}
10923
Craig Toppera31a8822013-08-22 07:09:37 +000010924static ICEDiag CheckICE(const Expr* E, const ASTContext &Ctx) {
John McCall864e3962010-05-07 05:32:02 +000010925 assert(!E->isValueDependent() && "Should not see value dependent exprs!");
Richard Smith9e575da2012-12-28 13:25:52 +000010926 if (!E->getType()->isIntegralOrEnumerationType())
Stephen Kellyf2ceec42018-08-09 21:08:08 +000010927 return ICEDiag(IK_NotICE, E->getBeginLoc());
John McCall864e3962010-05-07 05:32:02 +000010928
10929 switch (E->getStmtClass()) {
John McCallbd066782011-02-09 08:16:59 +000010930#define ABSTRACT_STMT(Node)
John McCall864e3962010-05-07 05:32:02 +000010931#define STMT(Node, Base) case Expr::Node##Class:
10932#define EXPR(Node, Base)
10933#include "clang/AST/StmtNodes.inc"
10934 case Expr::PredefinedExprClass:
10935 case Expr::FloatingLiteralClass:
10936 case Expr::ImaginaryLiteralClass:
10937 case Expr::StringLiteralClass:
10938 case Expr::ArraySubscriptExprClass:
Alexey Bataev1a3320e2015-08-25 14:24:04 +000010939 case Expr::OMPArraySectionExprClass:
John McCall864e3962010-05-07 05:32:02 +000010940 case Expr::MemberExprClass:
10941 case Expr::CompoundAssignOperatorClass:
10942 case Expr::CompoundLiteralExprClass:
10943 case Expr::ExtVectorElementExprClass:
John McCall864e3962010-05-07 05:32:02 +000010944 case Expr::DesignatedInitExprClass:
Richard Smith410306b2016-12-12 02:53:20 +000010945 case Expr::ArrayInitLoopExprClass:
10946 case Expr::ArrayInitIndexExprClass:
Yunzhong Gaocb779302015-06-10 00:27:52 +000010947 case Expr::NoInitExprClass:
10948 case Expr::DesignatedInitUpdateExprClass:
John McCall864e3962010-05-07 05:32:02 +000010949 case Expr::ImplicitValueInitExprClass:
10950 case Expr::ParenListExprClass:
10951 case Expr::VAArgExprClass:
10952 case Expr::AddrLabelExprClass:
10953 case Expr::StmtExprClass:
10954 case Expr::CXXMemberCallExprClass:
Peter Collingbourne41f85462011-02-09 21:07:24 +000010955 case Expr::CUDAKernelCallExprClass:
John McCall864e3962010-05-07 05:32:02 +000010956 case Expr::CXXDynamicCastExprClass:
10957 case Expr::CXXTypeidExprClass:
Francois Pichet5cc0a672010-09-08 23:47:05 +000010958 case Expr::CXXUuidofExprClass:
John McCall5e77d762013-04-16 07:28:30 +000010959 case Expr::MSPropertyRefExprClass:
Alexey Bataevf7630272015-11-25 12:01:00 +000010960 case Expr::MSPropertySubscriptExprClass:
John McCall864e3962010-05-07 05:32:02 +000010961 case Expr::CXXNullPtrLiteralExprClass:
Richard Smithc67fdd42012-03-07 08:35:16 +000010962 case Expr::UserDefinedLiteralClass:
John McCall864e3962010-05-07 05:32:02 +000010963 case Expr::CXXThisExprClass:
10964 case Expr::CXXThrowExprClass:
10965 case Expr::CXXNewExprClass:
10966 case Expr::CXXDeleteExprClass:
10967 case Expr::CXXPseudoDestructorExprClass:
10968 case Expr::UnresolvedLookupExprClass:
Kaelyn Takatae1f49d52014-10-27 18:07:20 +000010969 case Expr::TypoExprClass:
John McCall864e3962010-05-07 05:32:02 +000010970 case Expr::DependentScopeDeclRefExprClass:
10971 case Expr::CXXConstructExprClass:
Richard Smith5179eb72016-06-28 19:03:57 +000010972 case Expr::CXXInheritedCtorInitExprClass:
Richard Smithcc1b96d2013-06-12 22:31:48 +000010973 case Expr::CXXStdInitializerListExprClass:
John McCall864e3962010-05-07 05:32:02 +000010974 case Expr::CXXBindTemporaryExprClass:
John McCall5d413782010-12-06 08:20:24 +000010975 case Expr::ExprWithCleanupsClass:
John McCall864e3962010-05-07 05:32:02 +000010976 case Expr::CXXTemporaryObjectExprClass:
10977 case Expr::CXXUnresolvedConstructExprClass:
10978 case Expr::CXXDependentScopeMemberExprClass:
10979 case Expr::UnresolvedMemberExprClass:
10980 case Expr::ObjCStringLiteralClass:
Patrick Beard0caa3942012-04-19 00:25:12 +000010981 case Expr::ObjCBoxedExprClass:
Ted Kremeneke65b0862012-03-06 20:05:56 +000010982 case Expr::ObjCArrayLiteralClass:
10983 case Expr::ObjCDictionaryLiteralClass:
John McCall864e3962010-05-07 05:32:02 +000010984 case Expr::ObjCEncodeExprClass:
10985 case Expr::ObjCMessageExprClass:
10986 case Expr::ObjCSelectorExprClass:
10987 case Expr::ObjCProtocolExprClass:
10988 case Expr::ObjCIvarRefExprClass:
10989 case Expr::ObjCPropertyRefExprClass:
Ted Kremeneke65b0862012-03-06 20:05:56 +000010990 case Expr::ObjCSubscriptRefExprClass:
John McCall864e3962010-05-07 05:32:02 +000010991 case Expr::ObjCIsaExprClass:
Erik Pilkington29099de2016-07-16 00:35:23 +000010992 case Expr::ObjCAvailabilityCheckExprClass:
John McCall864e3962010-05-07 05:32:02 +000010993 case Expr::ShuffleVectorExprClass:
Hal Finkelc4d7c822013-09-18 03:29:45 +000010994 case Expr::ConvertVectorExprClass:
John McCall864e3962010-05-07 05:32:02 +000010995 case Expr::BlockExprClass:
John McCall864e3962010-05-07 05:32:02 +000010996 case Expr::NoStmtClass:
John McCall8d69a212010-11-15 23:31:06 +000010997 case Expr::OpaqueValueExprClass:
Douglas Gregore8e9dd62011-01-03 17:17:50 +000010998 case Expr::PackExpansionExprClass:
Douglas Gregorcdbc5392011-01-15 01:15:58 +000010999 case Expr::SubstNonTypeTemplateParmPackExprClass:
Richard Smithb15fe3a2012-09-12 00:56:43 +000011000 case Expr::FunctionParmPackExprClass:
Tanya Lattner55808c12011-06-04 00:47:47 +000011001 case Expr::AsTypeExprClass:
John McCall31168b02011-06-15 23:02:42 +000011002 case Expr::ObjCIndirectCopyRestoreExprClass:
Douglas Gregorfe314812011-06-21 17:03:29 +000011003 case Expr::MaterializeTemporaryExprClass:
John McCallfe96e0b2011-11-06 09:01:30 +000011004 case Expr::PseudoObjectExprClass:
Eli Friedmandf14b3a2011-10-11 02:20:01 +000011005 case Expr::AtomicExprClass:
Douglas Gregore31e6062012-02-07 10:09:13 +000011006 case Expr::LambdaExprClass:
Richard Smith0f0af192014-11-08 05:07:16 +000011007 case Expr::CXXFoldExprClass:
Richard Smith9f690bd2015-10-27 06:02:45 +000011008 case Expr::CoawaitExprClass:
Eric Fiselier20f25cb2017-03-06 23:38:15 +000011009 case Expr::DependentCoawaitExprClass:
Richard Smith9f690bd2015-10-27 06:02:45 +000011010 case Expr::CoyieldExprClass:
Stephen Kellyf2ceec42018-08-09 21:08:08 +000011011 return ICEDiag(IK_NotICE, E->getBeginLoc());
Sebastian Redl12757ab2011-09-24 17:48:14 +000011012
Richard Smithf137f932014-01-25 20:50:08 +000011013 case Expr::InitListExprClass: {
11014 // C++03 [dcl.init]p13: If T is a scalar type, then a declaration of the
11015 // form "T x = { a };" is equivalent to "T x = a;".
11016 // Unless we're initializing a reference, T is a scalar as it is known to be
11017 // of integral or enumeration type.
11018 if (E->isRValue())
11019 if (cast<InitListExpr>(E)->getNumInits() == 1)
11020 return CheckICE(cast<InitListExpr>(E)->getInit(0), Ctx);
Stephen Kellyf2ceec42018-08-09 21:08:08 +000011021 return ICEDiag(IK_NotICE, E->getBeginLoc());
Richard Smithf137f932014-01-25 20:50:08 +000011022 }
11023
Douglas Gregor820ba7b2011-01-04 17:33:58 +000011024 case Expr::SizeOfPackExprClass:
John McCall864e3962010-05-07 05:32:02 +000011025 case Expr::GNUNullExprClass:
11026 // GCC considers the GNU __null value to be an integral constant expression.
11027 return NoDiag();
11028
John McCall7c454bb2011-07-15 05:09:51 +000011029 case Expr::SubstNonTypeTemplateParmExprClass:
11030 return
11031 CheckICE(cast<SubstNonTypeTemplateParmExpr>(E)->getReplacement(), Ctx);
11032
John McCall864e3962010-05-07 05:32:02 +000011033 case Expr::ParenExprClass:
11034 return CheckICE(cast<ParenExpr>(E)->getSubExpr(), Ctx);
Peter Collingbourne91147592011-04-15 00:35:48 +000011035 case Expr::GenericSelectionExprClass:
11036 return CheckICE(cast<GenericSelectionExpr>(E)->getResultExpr(), Ctx);
John McCall864e3962010-05-07 05:32:02 +000011037 case Expr::IntegerLiteralClass:
Leonard Chandb01c3a2018-06-20 17:19:40 +000011038 case Expr::FixedPointLiteralClass:
John McCall864e3962010-05-07 05:32:02 +000011039 case Expr::CharacterLiteralClass:
Ted Kremeneke65b0862012-03-06 20:05:56 +000011040 case Expr::ObjCBoolLiteralExprClass:
John McCall864e3962010-05-07 05:32:02 +000011041 case Expr::CXXBoolLiteralExprClass:
Douglas Gregor747eb782010-07-08 06:14:04 +000011042 case Expr::CXXScalarValueInitExprClass:
Douglas Gregor29c42f22012-02-24 07:38:34 +000011043 case Expr::TypeTraitExprClass:
John Wiegley6242b6a2011-04-28 00:16:57 +000011044 case Expr::ArrayTypeTraitExprClass:
John Wiegleyf9f65842011-04-25 06:54:41 +000011045 case Expr::ExpressionTraitExprClass:
Sebastian Redl4202c0f2010-09-10 20:55:43 +000011046 case Expr::CXXNoexceptExprClass:
John McCall864e3962010-05-07 05:32:02 +000011047 return NoDiag();
11048 case Expr::CallExprClass:
Alexis Hunt3b791862010-08-30 17:47:05 +000011049 case Expr::CXXOperatorCallExprClass: {
Richard Smith62f65952011-10-24 22:35:48 +000011050 // C99 6.6/3 allows function calls within unevaluated subexpressions of
11051 // constant expressions, but they can never be ICEs because an ICE cannot
11052 // contain an operand of (pointer to) function type.
John McCall864e3962010-05-07 05:32:02 +000011053 const CallExpr *CE = cast<CallExpr>(E);
Alp Tokera724cff2013-12-28 21:59:02 +000011054 if (CE->getBuiltinCallee())
John McCall864e3962010-05-07 05:32:02 +000011055 return CheckEvalInICE(E, Ctx);
Stephen Kellyf2ceec42018-08-09 21:08:08 +000011056 return ICEDiag(IK_NotICE, E->getBeginLoc());
John McCall864e3962010-05-07 05:32:02 +000011057 }
Richard Smith6365c912012-02-24 22:12:32 +000011058 case Expr::DeclRefExprClass: {
John McCall864e3962010-05-07 05:32:02 +000011059 if (isa<EnumConstantDecl>(cast<DeclRefExpr>(E)->getDecl()))
11060 return NoDiag();
George Burgess IV00f70bd2018-03-01 05:43:23 +000011061 const ValueDecl *D = cast<DeclRefExpr>(E)->getDecl();
David Blaikiebbafb8a2012-03-11 07:00:24 +000011062 if (Ctx.getLangOpts().CPlusPlus &&
Richard Smith6365c912012-02-24 22:12:32 +000011063 D && IsConstNonVolatile(D->getType())) {
John McCall864e3962010-05-07 05:32:02 +000011064 // Parameter variables are never constants. Without this check,
11065 // getAnyInitializer() can find a default argument, which leads
11066 // to chaos.
11067 if (isa<ParmVarDecl>(D))
Richard Smith9e575da2012-12-28 13:25:52 +000011068 return ICEDiag(IK_NotICE, cast<DeclRefExpr>(E)->getLocation());
John McCall864e3962010-05-07 05:32:02 +000011069
11070 // C++ 7.1.5.1p2
11071 // A variable of non-volatile const-qualified integral or enumeration
11072 // type initialized by an ICE can be used in ICEs.
11073 if (const VarDecl *Dcl = dyn_cast<VarDecl>(D)) {
Richard Smithec8dcd22011-11-08 01:31:09 +000011074 if (!Dcl->getType()->isIntegralOrEnumerationType())
Richard Smith9e575da2012-12-28 13:25:52 +000011075 return ICEDiag(IK_NotICE, cast<DeclRefExpr>(E)->getLocation());
Richard Smithec8dcd22011-11-08 01:31:09 +000011076
Richard Smithd0b4dd62011-12-19 06:19:21 +000011077 const VarDecl *VD;
11078 // Look for a declaration of this variable that has an initializer, and
11079 // check whether it is an ICE.
11080 if (Dcl->getAnyInitializer(VD) && VD->checkInitIsICE())
11081 return NoDiag();
11082 else
Richard Smith9e575da2012-12-28 13:25:52 +000011083 return ICEDiag(IK_NotICE, cast<DeclRefExpr>(E)->getLocation());
John McCall864e3962010-05-07 05:32:02 +000011084 }
11085 }
Stephen Kellyf2ceec42018-08-09 21:08:08 +000011086 return ICEDiag(IK_NotICE, E->getBeginLoc());
Richard Smith6365c912012-02-24 22:12:32 +000011087 }
John McCall864e3962010-05-07 05:32:02 +000011088 case Expr::UnaryOperatorClass: {
11089 const UnaryOperator *Exp = cast<UnaryOperator>(E);
11090 switch (Exp->getOpcode()) {
John McCalle3027922010-08-25 11:45:40 +000011091 case UO_PostInc:
11092 case UO_PostDec:
11093 case UO_PreInc:
11094 case UO_PreDec:
11095 case UO_AddrOf:
11096 case UO_Deref:
Richard Smith9f690bd2015-10-27 06:02:45 +000011097 case UO_Coawait:
Richard Smith62f65952011-10-24 22:35:48 +000011098 // C99 6.6/3 allows increment and decrement within unevaluated
11099 // subexpressions of constant expressions, but they can never be ICEs
11100 // because an ICE cannot contain an lvalue operand.
Stephen Kellyf2ceec42018-08-09 21:08:08 +000011101 return ICEDiag(IK_NotICE, E->getBeginLoc());
John McCalle3027922010-08-25 11:45:40 +000011102 case UO_Extension:
11103 case UO_LNot:
11104 case UO_Plus:
11105 case UO_Minus:
11106 case UO_Not:
11107 case UO_Real:
11108 case UO_Imag:
John McCall864e3962010-05-07 05:32:02 +000011109 return CheckICE(Exp->getSubExpr(), Ctx);
John McCall864e3962010-05-07 05:32:02 +000011110 }
Richard Smith9e575da2012-12-28 13:25:52 +000011111
John McCall864e3962010-05-07 05:32:02 +000011112 // OffsetOf falls through here.
Galina Kistanovaf87496d2017-06-03 06:31:42 +000011113 LLVM_FALLTHROUGH;
John McCall864e3962010-05-07 05:32:02 +000011114 }
11115 case Expr::OffsetOfExprClass: {
Richard Smith9e575da2012-12-28 13:25:52 +000011116 // Note that per C99, offsetof must be an ICE. And AFAIK, using
11117 // EvaluateAsRValue matches the proposed gcc behavior for cases like
11118 // "offsetof(struct s{int x[4];}, x[1.0])". This doesn't affect
11119 // compliance: we should warn earlier for offsetof expressions with
11120 // array subscripts that aren't ICEs, and if the array subscripts
11121 // are ICEs, the value of the offsetof must be an integer constant.
11122 return CheckEvalInICE(E, Ctx);
John McCall864e3962010-05-07 05:32:02 +000011123 }
Peter Collingbournee190dee2011-03-11 19:24:49 +000011124 case Expr::UnaryExprOrTypeTraitExprClass: {
11125 const UnaryExprOrTypeTraitExpr *Exp = cast<UnaryExprOrTypeTraitExpr>(E);
11126 if ((Exp->getKind() == UETT_SizeOf) &&
11127 Exp->getTypeOfArgument()->isVariableArrayType())
Stephen Kellyf2ceec42018-08-09 21:08:08 +000011128 return ICEDiag(IK_NotICE, E->getBeginLoc());
John McCall864e3962010-05-07 05:32:02 +000011129 return NoDiag();
11130 }
11131 case Expr::BinaryOperatorClass: {
11132 const BinaryOperator *Exp = cast<BinaryOperator>(E);
11133 switch (Exp->getOpcode()) {
John McCalle3027922010-08-25 11:45:40 +000011134 case BO_PtrMemD:
11135 case BO_PtrMemI:
11136 case BO_Assign:
11137 case BO_MulAssign:
11138 case BO_DivAssign:
11139 case BO_RemAssign:
11140 case BO_AddAssign:
11141 case BO_SubAssign:
11142 case BO_ShlAssign:
11143 case BO_ShrAssign:
11144 case BO_AndAssign:
11145 case BO_XorAssign:
11146 case BO_OrAssign:
Richard Smith62f65952011-10-24 22:35:48 +000011147 // C99 6.6/3 allows assignments within unevaluated subexpressions of
11148 // constant expressions, but they can never be ICEs because an ICE cannot
11149 // contain an lvalue operand.
Stephen Kellyf2ceec42018-08-09 21:08:08 +000011150 return ICEDiag(IK_NotICE, E->getBeginLoc());
John McCall864e3962010-05-07 05:32:02 +000011151
John McCalle3027922010-08-25 11:45:40 +000011152 case BO_Mul:
11153 case BO_Div:
11154 case BO_Rem:
11155 case BO_Add:
11156 case BO_Sub:
11157 case BO_Shl:
11158 case BO_Shr:
11159 case BO_LT:
11160 case BO_GT:
11161 case BO_LE:
11162 case BO_GE:
11163 case BO_EQ:
11164 case BO_NE:
11165 case BO_And:
11166 case BO_Xor:
11167 case BO_Or:
Eric Fiselier0683c0e2018-05-07 21:07:10 +000011168 case BO_Comma:
11169 case BO_Cmp: {
John McCall864e3962010-05-07 05:32:02 +000011170 ICEDiag LHSResult = CheckICE(Exp->getLHS(), Ctx);
11171 ICEDiag RHSResult = CheckICE(Exp->getRHS(), Ctx);
John McCalle3027922010-08-25 11:45:40 +000011172 if (Exp->getOpcode() == BO_Div ||
11173 Exp->getOpcode() == BO_Rem) {
Richard Smith7b553f12011-10-29 00:50:52 +000011174 // EvaluateAsRValue gives an error for undefined Div/Rem, so make sure
John McCall864e3962010-05-07 05:32:02 +000011175 // we don't evaluate one.
Richard Smith9e575da2012-12-28 13:25:52 +000011176 if (LHSResult.Kind == IK_ICE && RHSResult.Kind == IK_ICE) {
Richard Smithcaf33902011-10-10 18:28:20 +000011177 llvm::APSInt REval = Exp->getRHS()->EvaluateKnownConstInt(Ctx);
John McCall864e3962010-05-07 05:32:02 +000011178 if (REval == 0)
Stephen Kellyf2ceec42018-08-09 21:08:08 +000011179 return ICEDiag(IK_ICEIfUnevaluated, E->getBeginLoc());
John McCall864e3962010-05-07 05:32:02 +000011180 if (REval.isSigned() && REval.isAllOnesValue()) {
Richard Smithcaf33902011-10-10 18:28:20 +000011181 llvm::APSInt LEval = Exp->getLHS()->EvaluateKnownConstInt(Ctx);
John McCall864e3962010-05-07 05:32:02 +000011182 if (LEval.isMinSignedValue())
Stephen Kellyf2ceec42018-08-09 21:08:08 +000011183 return ICEDiag(IK_ICEIfUnevaluated, E->getBeginLoc());
John McCall864e3962010-05-07 05:32:02 +000011184 }
11185 }
11186 }
John McCalle3027922010-08-25 11:45:40 +000011187 if (Exp->getOpcode() == BO_Comma) {
David Blaikiebbafb8a2012-03-11 07:00:24 +000011188 if (Ctx.getLangOpts().C99) {
John McCall864e3962010-05-07 05:32:02 +000011189 // C99 6.6p3 introduces a strange edge case: comma can be in an ICE
11190 // if it isn't evaluated.
Richard Smith9e575da2012-12-28 13:25:52 +000011191 if (LHSResult.Kind == IK_ICE && RHSResult.Kind == IK_ICE)
Stephen Kellyf2ceec42018-08-09 21:08:08 +000011192 return ICEDiag(IK_ICEIfUnevaluated, E->getBeginLoc());
John McCall864e3962010-05-07 05:32:02 +000011193 } else {
11194 // In both C89 and C++, commas in ICEs are illegal.
Stephen Kellyf2ceec42018-08-09 21:08:08 +000011195 return ICEDiag(IK_NotICE, E->getBeginLoc());
John McCall864e3962010-05-07 05:32:02 +000011196 }
11197 }
Richard Smith9e575da2012-12-28 13:25:52 +000011198 return Worst(LHSResult, RHSResult);
John McCall864e3962010-05-07 05:32:02 +000011199 }
John McCalle3027922010-08-25 11:45:40 +000011200 case BO_LAnd:
11201 case BO_LOr: {
John McCall864e3962010-05-07 05:32:02 +000011202 ICEDiag LHSResult = CheckICE(Exp->getLHS(), Ctx);
11203 ICEDiag RHSResult = CheckICE(Exp->getRHS(), Ctx);
Richard Smith9e575da2012-12-28 13:25:52 +000011204 if (LHSResult.Kind == IK_ICE && RHSResult.Kind == IK_ICEIfUnevaluated) {
John McCall864e3962010-05-07 05:32:02 +000011205 // Rare case where the RHS has a comma "side-effect"; we need
11206 // to actually check the condition to see whether the side
11207 // with the comma is evaluated.
John McCalle3027922010-08-25 11:45:40 +000011208 if ((Exp->getOpcode() == BO_LAnd) !=
Richard Smithcaf33902011-10-10 18:28:20 +000011209 (Exp->getLHS()->EvaluateKnownConstInt(Ctx) == 0))
John McCall864e3962010-05-07 05:32:02 +000011210 return RHSResult;
11211 return NoDiag();
11212 }
11213
Richard Smith9e575da2012-12-28 13:25:52 +000011214 return Worst(LHSResult, RHSResult);
John McCall864e3962010-05-07 05:32:02 +000011215 }
11216 }
Galina Kistanovaf87496d2017-06-03 06:31:42 +000011217 LLVM_FALLTHROUGH;
John McCall864e3962010-05-07 05:32:02 +000011218 }
11219 case Expr::ImplicitCastExprClass:
11220 case Expr::CStyleCastExprClass:
11221 case Expr::CXXFunctionalCastExprClass:
11222 case Expr::CXXStaticCastExprClass:
11223 case Expr::CXXReinterpretCastExprClass:
Richard Smithc3e31e72011-10-24 18:26:35 +000011224 case Expr::CXXConstCastExprClass:
John McCall31168b02011-06-15 23:02:42 +000011225 case Expr::ObjCBridgedCastExprClass: {
John McCall864e3962010-05-07 05:32:02 +000011226 const Expr *SubExpr = cast<CastExpr>(E)->getSubExpr();
Richard Smith0b973d02011-12-18 02:33:09 +000011227 if (isa<ExplicitCastExpr>(E)) {
11228 if (const FloatingLiteral *FL
11229 = dyn_cast<FloatingLiteral>(SubExpr->IgnoreParenImpCasts())) {
11230 unsigned DestWidth = Ctx.getIntWidth(E->getType());
11231 bool DestSigned = E->getType()->isSignedIntegerOrEnumerationType();
11232 APSInt IgnoredVal(DestWidth, !DestSigned);
11233 bool Ignored;
11234 // If the value does not fit in the destination type, the behavior is
11235 // undefined, so we are not required to treat it as a constant
11236 // expression.
11237 if (FL->getValue().convertToInteger(IgnoredVal,
11238 llvm::APFloat::rmTowardZero,
11239 &Ignored) & APFloat::opInvalidOp)
Stephen Kellyf2ceec42018-08-09 21:08:08 +000011240 return ICEDiag(IK_NotICE, E->getBeginLoc());
Richard Smith0b973d02011-12-18 02:33:09 +000011241 return NoDiag();
11242 }
11243 }
Eli Friedman76d4e432011-09-29 21:49:34 +000011244 switch (cast<CastExpr>(E)->getCastKind()) {
11245 case CK_LValueToRValue:
David Chisnallfa35df62012-01-16 17:27:18 +000011246 case CK_AtomicToNonAtomic:
11247 case CK_NonAtomicToAtomic:
Eli Friedman76d4e432011-09-29 21:49:34 +000011248 case CK_NoOp:
11249 case CK_IntegralToBoolean:
11250 case CK_IntegralCast:
John McCall864e3962010-05-07 05:32:02 +000011251 return CheckICE(SubExpr, Ctx);
Eli Friedman76d4e432011-09-29 21:49:34 +000011252 default:
Stephen Kellyf2ceec42018-08-09 21:08:08 +000011253 return ICEDiag(IK_NotICE, E->getBeginLoc());
Eli Friedman76d4e432011-09-29 21:49:34 +000011254 }
John McCall864e3962010-05-07 05:32:02 +000011255 }
John McCallc07a0c72011-02-17 10:25:35 +000011256 case Expr::BinaryConditionalOperatorClass: {
11257 const BinaryConditionalOperator *Exp = cast<BinaryConditionalOperator>(E);
11258 ICEDiag CommonResult = CheckICE(Exp->getCommon(), Ctx);
Richard Smith9e575da2012-12-28 13:25:52 +000011259 if (CommonResult.Kind == IK_NotICE) return CommonResult;
John McCallc07a0c72011-02-17 10:25:35 +000011260 ICEDiag FalseResult = CheckICE(Exp->getFalseExpr(), Ctx);
Richard Smith9e575da2012-12-28 13:25:52 +000011261 if (FalseResult.Kind == IK_NotICE) return FalseResult;
11262 if (CommonResult.Kind == IK_ICEIfUnevaluated) return CommonResult;
11263 if (FalseResult.Kind == IK_ICEIfUnevaluated &&
Richard Smith74fc7212012-12-28 12:53:55 +000011264 Exp->getCommon()->EvaluateKnownConstInt(Ctx) != 0) return NoDiag();
John McCallc07a0c72011-02-17 10:25:35 +000011265 return FalseResult;
11266 }
John McCall864e3962010-05-07 05:32:02 +000011267 case Expr::ConditionalOperatorClass: {
11268 const ConditionalOperator *Exp = cast<ConditionalOperator>(E);
11269 // If the condition (ignoring parens) is a __builtin_constant_p call,
11270 // then only the true side is actually considered in an integer constant
11271 // expression, and it is fully evaluated. This is an important GNU
11272 // extension. See GCC PR38377 for discussion.
11273 if (const CallExpr *CallCE
11274 = dyn_cast<CallExpr>(Exp->getCond()->IgnoreParenCasts()))
Alp Tokera724cff2013-12-28 21:59:02 +000011275 if (CallCE->getBuiltinCallee() == Builtin::BI__builtin_constant_p)
Richard Smith5fab0c92011-12-28 19:48:30 +000011276 return CheckEvalInICE(E, Ctx);
John McCall864e3962010-05-07 05:32:02 +000011277 ICEDiag CondResult = CheckICE(Exp->getCond(), Ctx);
Richard Smith9e575da2012-12-28 13:25:52 +000011278 if (CondResult.Kind == IK_NotICE)
John McCall864e3962010-05-07 05:32:02 +000011279 return CondResult;
Douglas Gregorfcafc6e2011-05-24 16:02:01 +000011280
Richard Smithf57d8cb2011-12-09 22:58:01 +000011281 ICEDiag TrueResult = CheckICE(Exp->getTrueExpr(), Ctx);
11282 ICEDiag FalseResult = CheckICE(Exp->getFalseExpr(), Ctx);
Douglas Gregorfcafc6e2011-05-24 16:02:01 +000011283
Richard Smith9e575da2012-12-28 13:25:52 +000011284 if (TrueResult.Kind == IK_NotICE)
John McCall864e3962010-05-07 05:32:02 +000011285 return TrueResult;
Richard Smith9e575da2012-12-28 13:25:52 +000011286 if (FalseResult.Kind == IK_NotICE)
John McCall864e3962010-05-07 05:32:02 +000011287 return FalseResult;
Richard Smith9e575da2012-12-28 13:25:52 +000011288 if (CondResult.Kind == IK_ICEIfUnevaluated)
John McCall864e3962010-05-07 05:32:02 +000011289 return CondResult;
Richard Smith9e575da2012-12-28 13:25:52 +000011290 if (TrueResult.Kind == IK_ICE && FalseResult.Kind == IK_ICE)
John McCall864e3962010-05-07 05:32:02 +000011291 return NoDiag();
11292 // Rare case where the diagnostics depend on which side is evaluated
11293 // Note that if we get here, CondResult is 0, and at least one of
11294 // TrueResult and FalseResult is non-zero.
Richard Smith9e575da2012-12-28 13:25:52 +000011295 if (Exp->getCond()->EvaluateKnownConstInt(Ctx) == 0)
John McCall864e3962010-05-07 05:32:02 +000011296 return FalseResult;
John McCall864e3962010-05-07 05:32:02 +000011297 return TrueResult;
11298 }
11299 case Expr::CXXDefaultArgExprClass:
11300 return CheckICE(cast<CXXDefaultArgExpr>(E)->getExpr(), Ctx);
Richard Smith852c9db2013-04-20 22:23:05 +000011301 case Expr::CXXDefaultInitExprClass:
11302 return CheckICE(cast<CXXDefaultInitExpr>(E)->getExpr(), Ctx);
John McCall864e3962010-05-07 05:32:02 +000011303 case Expr::ChooseExprClass: {
Eli Friedman75807f22013-07-20 00:40:58 +000011304 return CheckICE(cast<ChooseExpr>(E)->getChosenSubExpr(), Ctx);
John McCall864e3962010-05-07 05:32:02 +000011305 }
11306 }
11307
David Blaikiee4d798f2012-01-20 21:50:17 +000011308 llvm_unreachable("Invalid StmtClass!");
John McCall864e3962010-05-07 05:32:02 +000011309}
11310
Richard Smithf57d8cb2011-12-09 22:58:01 +000011311/// Evaluate an expression as a C++11 integral constant expression.
Craig Toppera31a8822013-08-22 07:09:37 +000011312static bool EvaluateCPlusPlus11IntegralConstantExpr(const ASTContext &Ctx,
Richard Smithf57d8cb2011-12-09 22:58:01 +000011313 const Expr *E,
11314 llvm::APSInt *Value,
11315 SourceLocation *Loc) {
Erich Keane1ddd4bf2018-07-20 17:42:09 +000011316 if (!E->getType()->isIntegralOrUnscopedEnumerationType()) {
Richard Smithf57d8cb2011-12-09 22:58:01 +000011317 if (Loc) *Loc = E->getExprLoc();
11318 return false;
11319 }
11320
Richard Smith66e05fe2012-01-18 05:21:49 +000011321 APValue Result;
11322 if (!E->isCXX11ConstantExpr(Ctx, &Result, Loc))
Richard Smith92b1ce02011-12-12 09:28:41 +000011323 return false;
11324
Richard Smith98710fc2014-11-13 23:03:19 +000011325 if (!Result.isInt()) {
11326 if (Loc) *Loc = E->getExprLoc();
11327 return false;
11328 }
11329
Richard Smith66e05fe2012-01-18 05:21:49 +000011330 if (Value) *Value = Result.getInt();
Richard Smith92b1ce02011-12-12 09:28:41 +000011331 return true;
Richard Smithf57d8cb2011-12-09 22:58:01 +000011332}
11333
Craig Toppera31a8822013-08-22 07:09:37 +000011334bool Expr::isIntegerConstantExpr(const ASTContext &Ctx,
11335 SourceLocation *Loc) const {
Richard Smith2bf7fdb2013-01-02 11:42:31 +000011336 if (Ctx.getLangOpts().CPlusPlus11)
Craig Topper36250ad2014-05-12 05:36:57 +000011337 return EvaluateCPlusPlus11IntegralConstantExpr(Ctx, this, nullptr, Loc);
Richard Smithf57d8cb2011-12-09 22:58:01 +000011338
Richard Smith9e575da2012-12-28 13:25:52 +000011339 ICEDiag D = CheckICE(this, Ctx);
11340 if (D.Kind != IK_ICE) {
11341 if (Loc) *Loc = D.Loc;
John McCall864e3962010-05-07 05:32:02 +000011342 return false;
11343 }
Richard Smithf57d8cb2011-12-09 22:58:01 +000011344 return true;
11345}
11346
Craig Toppera31a8822013-08-22 07:09:37 +000011347bool Expr::isIntegerConstantExpr(llvm::APSInt &Value, const ASTContext &Ctx,
Richard Smithf57d8cb2011-12-09 22:58:01 +000011348 SourceLocation *Loc, bool isEvaluated) const {
Richard Smith2bf7fdb2013-01-02 11:42:31 +000011349 if (Ctx.getLangOpts().CPlusPlus11)
Richard Smithf57d8cb2011-12-09 22:58:01 +000011350 return EvaluateCPlusPlus11IntegralConstantExpr(Ctx, this, &Value, Loc);
11351
11352 if (!isIntegerConstantExpr(Ctx, Loc))
11353 return false;
Richard Smith5c40f092015-12-04 03:00:44 +000011354 // The only possible side-effects here are due to UB discovered in the
11355 // evaluation (for instance, INT_MAX + 1). In such a case, we are still
11356 // required to treat the expression as an ICE, so we produce the folded
11357 // value.
11358 if (!EvaluateAsInt(Value, Ctx, SE_AllowSideEffects))
John McCall864e3962010-05-07 05:32:02 +000011359 llvm_unreachable("ICE cannot be evaluated!");
John McCall864e3962010-05-07 05:32:02 +000011360 return true;
11361}
Richard Smith66e05fe2012-01-18 05:21:49 +000011362
Craig Toppera31a8822013-08-22 07:09:37 +000011363bool Expr::isCXX98IntegralConstantExpr(const ASTContext &Ctx) const {
Richard Smith9e575da2012-12-28 13:25:52 +000011364 return CheckICE(this, Ctx).Kind == IK_ICE;
Richard Smith98a0a492012-02-14 21:38:30 +000011365}
11366
Craig Toppera31a8822013-08-22 07:09:37 +000011367bool Expr::isCXX11ConstantExpr(const ASTContext &Ctx, APValue *Result,
Richard Smith66e05fe2012-01-18 05:21:49 +000011368 SourceLocation *Loc) const {
11369 // We support this checking in C++98 mode in order to diagnose compatibility
11370 // issues.
David Blaikiebbafb8a2012-03-11 07:00:24 +000011371 assert(Ctx.getLangOpts().CPlusPlus);
Richard Smith66e05fe2012-01-18 05:21:49 +000011372
Richard Smith98a0a492012-02-14 21:38:30 +000011373 // Build evaluation settings.
Richard Smith66e05fe2012-01-18 05:21:49 +000011374 Expr::EvalStatus Status;
Dmitri Gribenkof8579502013-01-12 19:30:44 +000011375 SmallVector<PartialDiagnosticAt, 8> Diags;
Richard Smith66e05fe2012-01-18 05:21:49 +000011376 Status.Diag = &Diags;
Richard Smith6d4c6582013-11-05 22:18:15 +000011377 EvalInfo Info(Ctx, Status, EvalInfo::EM_ConstantExpression);
Richard Smith66e05fe2012-01-18 05:21:49 +000011378
11379 APValue Scratch;
11380 bool IsConstExpr = ::EvaluateAsRValue(Info, this, Result ? *Result : Scratch);
11381
11382 if (!Diags.empty()) {
11383 IsConstExpr = false;
11384 if (Loc) *Loc = Diags[0].first;
11385 } else if (!IsConstExpr) {
11386 // FIXME: This shouldn't happen.
11387 if (Loc) *Loc = getExprLoc();
11388 }
11389
11390 return IsConstExpr;
11391}
Richard Smith253c2a32012-01-27 01:14:48 +000011392
Nick Lewycky35a6ef42014-01-11 02:50:57 +000011393bool Expr::EvaluateWithSubstitution(APValue &Value, ASTContext &Ctx,
11394 const FunctionDecl *Callee,
George Burgess IV177399e2017-01-09 04:12:14 +000011395 ArrayRef<const Expr*> Args,
11396 const Expr *This) const {
Nick Lewycky35a6ef42014-01-11 02:50:57 +000011397 Expr::EvalStatus Status;
11398 EvalInfo Info(Ctx, Status, EvalInfo::EM_ConstantExpressionUnevaluated);
11399
George Burgess IV177399e2017-01-09 04:12:14 +000011400 LValue ThisVal;
11401 const LValue *ThisPtr = nullptr;
11402 if (This) {
11403#ifndef NDEBUG
11404 auto *MD = dyn_cast<CXXMethodDecl>(Callee);
11405 assert(MD && "Don't provide `this` for non-methods.");
11406 assert(!MD->isStatic() && "Don't provide `this` for static methods.");
11407#endif
11408 if (EvaluateObjectArgument(Info, This, ThisVal))
11409 ThisPtr = &ThisVal;
11410 if (Info.EvalStatus.HasSideEffects)
11411 return false;
11412 }
11413
Nick Lewycky35a6ef42014-01-11 02:50:57 +000011414 ArgVector ArgValues(Args.size());
11415 for (ArrayRef<const Expr*>::iterator I = Args.begin(), E = Args.end();
11416 I != E; ++I) {
Nick Lewyckyf0202ca2014-12-16 06:12:01 +000011417 if ((*I)->isValueDependent() ||
11418 !Evaluate(ArgValues[I - Args.begin()], Info, *I))
Nick Lewycky35a6ef42014-01-11 02:50:57 +000011419 // If evaluation fails, throw away the argument entirely.
11420 ArgValues[I - Args.begin()] = APValue();
11421 if (Info.EvalStatus.HasSideEffects)
11422 return false;
11423 }
11424
11425 // Build fake call to Callee.
George Burgess IV177399e2017-01-09 04:12:14 +000011426 CallStackFrame Frame(Info, Callee->getLocation(), Callee, ThisPtr,
Nick Lewycky35a6ef42014-01-11 02:50:57 +000011427 ArgValues.data());
11428 return Evaluate(Value, Info, this) && !Info.EvalStatus.HasSideEffects;
11429}
11430
Richard Smith253c2a32012-01-27 01:14:48 +000011431bool Expr::isPotentialConstantExpr(const FunctionDecl *FD,
Dmitri Gribenkof8579502013-01-12 19:30:44 +000011432 SmallVectorImpl<
Richard Smith253c2a32012-01-27 01:14:48 +000011433 PartialDiagnosticAt> &Diags) {
11434 // FIXME: It would be useful to check constexpr function templates, but at the
11435 // moment the constant expression evaluator cannot cope with the non-rigorous
11436 // ASTs which we build for dependent expressions.
11437 if (FD->isDependentContext())
11438 return true;
11439
11440 Expr::EvalStatus Status;
11441 Status.Diag = &Diags;
11442
Richard Smith6d4c6582013-11-05 22:18:15 +000011443 EvalInfo Info(FD->getASTContext(), Status,
11444 EvalInfo::EM_PotentialConstantExpression);
Richard Smith253c2a32012-01-27 01:14:48 +000011445
11446 const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD);
Craig Topper36250ad2014-05-12 05:36:57 +000011447 const CXXRecordDecl *RD = MD ? MD->getParent()->getCanonicalDecl() : nullptr;
Richard Smith253c2a32012-01-27 01:14:48 +000011448
Richard Smith7525ff62013-05-09 07:14:00 +000011449 // Fabricate an arbitrary expression on the stack and pretend that it
Richard Smith253c2a32012-01-27 01:14:48 +000011450 // is a temporary being used as the 'this' pointer.
11451 LValue This;
11452 ImplicitValueInitExpr VIE(RD ? Info.Ctx.getRecordType(RD) : Info.Ctx.IntTy);
Akira Hatanaka4e2698c2018-04-10 05:15:01 +000011453 This.set({&VIE, Info.CurrentCall->Index});
Richard Smith253c2a32012-01-27 01:14:48 +000011454
Richard Smith253c2a32012-01-27 01:14:48 +000011455 ArrayRef<const Expr*> Args;
11456
Richard Smith2e312c82012-03-03 22:46:17 +000011457 APValue Scratch;
Richard Smith7525ff62013-05-09 07:14:00 +000011458 if (const CXXConstructorDecl *CD = dyn_cast<CXXConstructorDecl>(FD)) {
11459 // Evaluate the call as a constant initializer, to allow the construction
11460 // of objects of non-literal types.
11461 Info.setEvaluatingDecl(This.getLValueBase(), Scratch);
Richard Smith5179eb72016-06-28 19:03:57 +000011462 HandleConstructorCall(&VIE, This, Args, CD, Info, Scratch);
11463 } else {
11464 SourceLocation Loc = FD->getLocation();
Craig Topper36250ad2014-05-12 05:36:57 +000011465 HandleFunctionCall(Loc, FD, (MD && MD->isInstance()) ? &This : nullptr,
Richard Smith52a980a2015-08-28 02:43:42 +000011466 Args, FD->getBody(), Info, Scratch, nullptr);
Richard Smith5179eb72016-06-28 19:03:57 +000011467 }
Richard Smith253c2a32012-01-27 01:14:48 +000011468
11469 return Diags.empty();
11470}
Nick Lewycky35a6ef42014-01-11 02:50:57 +000011471
11472bool Expr::isPotentialConstantExprUnevaluated(Expr *E,
11473 const FunctionDecl *FD,
11474 SmallVectorImpl<
11475 PartialDiagnosticAt> &Diags) {
11476 Expr::EvalStatus Status;
11477 Status.Diag = &Diags;
11478
11479 EvalInfo Info(FD->getASTContext(), Status,
11480 EvalInfo::EM_PotentialConstantExpressionUnevaluated);
11481
11482 // Fabricate a call stack frame to give the arguments a plausible cover story.
11483 ArrayRef<const Expr*> Args;
11484 ArgVector ArgValues(0);
11485 bool Success = EvaluateArgs(Args, ArgValues, Info);
11486 (void)Success;
11487 assert(Success &&
11488 "Failed to set up arguments for potential constant evaluation");
Craig Topper36250ad2014-05-12 05:36:57 +000011489 CallStackFrame Frame(Info, SourceLocation(), FD, nullptr, ArgValues.data());
Nick Lewycky35a6ef42014-01-11 02:50:57 +000011490
11491 APValue ResultScratch;
11492 Evaluate(ResultScratch, Info, E);
11493 return Diags.empty();
11494}
George Burgess IV3e3bb95b2015-12-02 21:58:08 +000011495
11496bool Expr::tryEvaluateObjectSize(uint64_t &Result, ASTContext &Ctx,
11497 unsigned Type) const {
11498 if (!getType()->isPointerType())
11499 return false;
11500
11501 Expr::EvalStatus Status;
11502 EvalInfo Info(Ctx, Status, EvalInfo::EM_ConstantFold);
George Burgess IVe3763372016-12-22 02:50:20 +000011503 return tryEvaluateBuiltinObjectSize(this, Type, Info, Result);
George Burgess IV3e3bb95b2015-12-02 21:58:08 +000011504}