blob: 222ff74aaacfcefb80f71e4230f531046582389f [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) {
Faisal Valie690b7a2016-07-02 22:34:24 +0000835 FFDiag(S->getLocStart(), 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.
Faisal Valie690b7a2016-07-02 22:34:24 +00002557 Info.FFDiag(E->getLocStart(),
Faisal Valia734ab92016-03-26 16:11:37 +00002558 diag::note_unimplemented_constexpr_lambda_feature_ast)
2559 << "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) {
3848 Info.FFDiag(VD->getLocStart(), diag::note_constexpr_uninitialized)
3849 << false << VD->getType();
3850 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.
Faisal Valie690b7a2016-07-02 22:34:24 +00003994 Info.FFDiag(Found->getLocStart(), diag::note_constexpr_stmt_expr_unsupported);
Richard Smith51f03172013-06-20 03:00:05 +00003995 return ESR_Failed;
Richard Smith496ddcf2013-05-12 17:32:42 +00003996 }
Richard Smithf8cf9d42013-05-13 20:33:30 +00003997 llvm_unreachable("Invalid EvalStmtResult!");
Richard Smith496ddcf2013-05-12 17:32:42 +00003998}
3999
Richard Smith254a73d2011-10-28 22:34:42 +00004000// Evaluate a statement.
Richard Smith52a980a2015-08-28 02:43:42 +00004001static EvalStmtResult EvaluateStmt(StmtResult &Result, EvalInfo &Info,
Richard Smith496ddcf2013-05-12 17:32:42 +00004002 const Stmt *S, const SwitchCase *Case) {
Richard Smitha3d3bd22013-05-08 02:12:03 +00004003 if (!Info.nextStep(S))
4004 return ESR_Failed;
4005
Richard Smith496ddcf2013-05-12 17:32:42 +00004006 // If we're hunting down a 'case' or 'default' label, recurse through
4007 // substatements until we hit the label.
4008 if (Case) {
4009 // FIXME: We don't start the lifetime of objects whose initialization we
4010 // jump over. However, such objects must be of class type with a trivial
4011 // default constructor that initialize all subobjects, so must be empty,
4012 // so this almost never matters.
4013 switch (S->getStmtClass()) {
4014 case Stmt::CompoundStmtClass:
4015 // FIXME: Precompute which substatement of a compound statement we
4016 // would jump to, and go straight there rather than performing a
4017 // linear scan each time.
4018 case Stmt::LabelStmtClass:
4019 case Stmt::AttributedStmtClass:
4020 case Stmt::DoStmtClass:
4021 break;
4022
4023 case Stmt::CaseStmtClass:
4024 case Stmt::DefaultStmtClass:
4025 if (Case == S)
Craig Topper36250ad2014-05-12 05:36:57 +00004026 Case = nullptr;
Richard Smith496ddcf2013-05-12 17:32:42 +00004027 break;
4028
4029 case Stmt::IfStmtClass: {
4030 // FIXME: Precompute which side of an 'if' we would jump to, and go
4031 // straight there rather than scanning both sides.
4032 const IfStmt *IS = cast<IfStmt>(S);
Richard Smith08d6a2c2013-07-24 07:11:57 +00004033
4034 // Wrap the evaluation in a block scope, in case it's a DeclStmt
4035 // preceded by our switch label.
4036 BlockScopeRAII Scope(Info);
4037
Richard Smith496ddcf2013-05-12 17:32:42 +00004038 EvalStmtResult ESR = EvaluateStmt(Result, Info, IS->getThen(), Case);
4039 if (ESR != ESR_CaseNotFound || !IS->getElse())
4040 return ESR;
4041 return EvaluateStmt(Result, Info, IS->getElse(), Case);
4042 }
4043
4044 case Stmt::WhileStmtClass: {
4045 EvalStmtResult ESR =
4046 EvaluateLoopBody(Result, Info, cast<WhileStmt>(S)->getBody(), Case);
4047 if (ESR != ESR_Continue)
4048 return ESR;
4049 break;
4050 }
4051
4052 case Stmt::ForStmtClass: {
4053 const ForStmt *FS = cast<ForStmt>(S);
4054 EvalStmtResult ESR =
4055 EvaluateLoopBody(Result, Info, FS->getBody(), Case);
4056 if (ESR != ESR_Continue)
4057 return ESR;
Richard Smith08d6a2c2013-07-24 07:11:57 +00004058 if (FS->getInc()) {
4059 FullExpressionRAII IncScope(Info);
4060 if (!EvaluateIgnoredValue(Info, FS->getInc()))
4061 return ESR_Failed;
4062 }
Richard Smith496ddcf2013-05-12 17:32:42 +00004063 break;
4064 }
4065
4066 case Stmt::DeclStmtClass:
4067 // FIXME: If the variable has initialization that can't be jumped over,
4068 // bail out of any immediately-surrounding compound-statement too.
4069 default:
4070 return ESR_CaseNotFound;
4071 }
4072 }
4073
Richard Smith254a73d2011-10-28 22:34:42 +00004074 switch (S->getStmtClass()) {
4075 default:
Richard Smithd9f663b2013-04-22 15:31:51 +00004076 if (const Expr *E = dyn_cast<Expr>(S)) {
Richard Smithd9f663b2013-04-22 15:31:51 +00004077 // Don't bother evaluating beyond an expression-statement which couldn't
4078 // be evaluated.
Richard Smith08d6a2c2013-07-24 07:11:57 +00004079 FullExpressionRAII Scope(Info);
Richard Smith4e18ca52013-05-06 05:56:11 +00004080 if (!EvaluateIgnoredValue(Info, E))
Richard Smithd9f663b2013-04-22 15:31:51 +00004081 return ESR_Failed;
4082 return ESR_Succeeded;
4083 }
4084
Faisal Valie690b7a2016-07-02 22:34:24 +00004085 Info.FFDiag(S->getLocStart());
Richard Smith254a73d2011-10-28 22:34:42 +00004086 return ESR_Failed;
4087
4088 case Stmt::NullStmtClass:
Richard Smith254a73d2011-10-28 22:34:42 +00004089 return ESR_Succeeded;
4090
Richard Smithd9f663b2013-04-22 15:31:51 +00004091 case Stmt::DeclStmtClass: {
4092 const DeclStmt *DS = cast<DeclStmt>(S);
Aaron Ballman535bbcc2014-03-14 17:01:24 +00004093 for (const auto *DclIt : DS->decls()) {
Richard Smith08d6a2c2013-07-24 07:11:57 +00004094 // Each declaration initialization is its own full-expression.
4095 // FIXME: This isn't quite right; if we're performing aggregate
4096 // initialization, each braced subexpression is its own full-expression.
4097 FullExpressionRAII Scope(Info);
George Burgess IVa145e252016-05-25 22:38:36 +00004098 if (!EvaluateDecl(Info, DclIt) && !Info.noteFailure())
Richard Smithd9f663b2013-04-22 15:31:51 +00004099 return ESR_Failed;
Richard Smith08d6a2c2013-07-24 07:11:57 +00004100 }
Richard Smithd9f663b2013-04-22 15:31:51 +00004101 return ESR_Succeeded;
4102 }
4103
Richard Smith357362d2011-12-13 06:39:58 +00004104 case Stmt::ReturnStmtClass: {
Richard Smith357362d2011-12-13 06:39:58 +00004105 const Expr *RetExpr = cast<ReturnStmt>(S)->getRetValue();
Richard Smith08d6a2c2013-07-24 07:11:57 +00004106 FullExpressionRAII Scope(Info);
Richard Smith52a980a2015-08-28 02:43:42 +00004107 if (RetExpr &&
4108 !(Result.Slot
4109 ? EvaluateInPlace(Result.Value, Info, *Result.Slot, RetExpr)
4110 : Evaluate(Result.Value, Info, RetExpr)))
Richard Smith357362d2011-12-13 06:39:58 +00004111 return ESR_Failed;
4112 return ESR_Returned;
4113 }
Richard Smith254a73d2011-10-28 22:34:42 +00004114
4115 case Stmt::CompoundStmtClass: {
Richard Smith08d6a2c2013-07-24 07:11:57 +00004116 BlockScopeRAII Scope(Info);
4117
Richard Smith254a73d2011-10-28 22:34:42 +00004118 const CompoundStmt *CS = cast<CompoundStmt>(S);
Aaron Ballmanc7e4e212014-03-17 14:19:37 +00004119 for (const auto *BI : CS->body()) {
4120 EvalStmtResult ESR = EvaluateStmt(Result, Info, BI, Case);
Richard Smith496ddcf2013-05-12 17:32:42 +00004121 if (ESR == ESR_Succeeded)
Craig Topper36250ad2014-05-12 05:36:57 +00004122 Case = nullptr;
Richard Smith496ddcf2013-05-12 17:32:42 +00004123 else if (ESR != ESR_CaseNotFound)
Richard Smith254a73d2011-10-28 22:34:42 +00004124 return ESR;
4125 }
Richard Smith496ddcf2013-05-12 17:32:42 +00004126 return Case ? ESR_CaseNotFound : ESR_Succeeded;
Richard Smith254a73d2011-10-28 22:34:42 +00004127 }
Richard Smithd9f663b2013-04-22 15:31:51 +00004128
4129 case Stmt::IfStmtClass: {
4130 const IfStmt *IS = cast<IfStmt>(S);
4131
4132 // Evaluate the condition, as either a var decl or as an expression.
Richard Smith08d6a2c2013-07-24 07:11:57 +00004133 BlockScopeRAII Scope(Info);
Richard Smitha547eb22016-07-14 00:11:03 +00004134 if (const Stmt *Init = IS->getInit()) {
4135 EvalStmtResult ESR = EvaluateStmt(Result, Info, Init);
4136 if (ESR != ESR_Succeeded)
4137 return ESR;
4138 }
Richard Smithd9f663b2013-04-22 15:31:51 +00004139 bool Cond;
Richard Smith4e18ca52013-05-06 05:56:11 +00004140 if (!EvaluateCond(Info, IS->getConditionVariable(), IS->getCond(), Cond))
Richard Smithd9f663b2013-04-22 15:31:51 +00004141 return ESR_Failed;
4142
4143 if (const Stmt *SubStmt = Cond ? IS->getThen() : IS->getElse()) {
4144 EvalStmtResult ESR = EvaluateStmt(Result, Info, SubStmt);
4145 if (ESR != ESR_Succeeded)
4146 return ESR;
4147 }
4148 return ESR_Succeeded;
4149 }
Richard Smith4e18ca52013-05-06 05:56:11 +00004150
4151 case Stmt::WhileStmtClass: {
4152 const WhileStmt *WS = cast<WhileStmt>(S);
4153 while (true) {
Richard Smith08d6a2c2013-07-24 07:11:57 +00004154 BlockScopeRAII Scope(Info);
Richard Smith4e18ca52013-05-06 05:56:11 +00004155 bool Continue;
4156 if (!EvaluateCond(Info, WS->getConditionVariable(), WS->getCond(),
4157 Continue))
4158 return ESR_Failed;
4159 if (!Continue)
4160 break;
4161
4162 EvalStmtResult ESR = EvaluateLoopBody(Result, Info, WS->getBody());
4163 if (ESR != ESR_Continue)
4164 return ESR;
4165 }
4166 return ESR_Succeeded;
4167 }
4168
4169 case Stmt::DoStmtClass: {
4170 const DoStmt *DS = cast<DoStmt>(S);
4171 bool Continue;
4172 do {
Richard Smith496ddcf2013-05-12 17:32:42 +00004173 EvalStmtResult ESR = EvaluateLoopBody(Result, Info, DS->getBody(), Case);
Richard Smith4e18ca52013-05-06 05:56:11 +00004174 if (ESR != ESR_Continue)
4175 return ESR;
Craig Topper36250ad2014-05-12 05:36:57 +00004176 Case = nullptr;
Richard Smith4e18ca52013-05-06 05:56:11 +00004177
Richard Smith08d6a2c2013-07-24 07:11:57 +00004178 FullExpressionRAII CondScope(Info);
Richard Smith4e18ca52013-05-06 05:56:11 +00004179 if (!EvaluateAsBooleanCondition(DS->getCond(), Continue, Info))
4180 return ESR_Failed;
4181 } while (Continue);
4182 return ESR_Succeeded;
4183 }
4184
4185 case Stmt::ForStmtClass: {
4186 const ForStmt *FS = cast<ForStmt>(S);
Richard Smith08d6a2c2013-07-24 07:11:57 +00004187 BlockScopeRAII Scope(Info);
Richard Smith4e18ca52013-05-06 05:56:11 +00004188 if (FS->getInit()) {
4189 EvalStmtResult ESR = EvaluateStmt(Result, Info, FS->getInit());
4190 if (ESR != ESR_Succeeded)
4191 return ESR;
4192 }
4193 while (true) {
Richard Smith08d6a2c2013-07-24 07:11:57 +00004194 BlockScopeRAII Scope(Info);
Richard Smith4e18ca52013-05-06 05:56:11 +00004195 bool Continue = true;
4196 if (FS->getCond() && !EvaluateCond(Info, FS->getConditionVariable(),
4197 FS->getCond(), Continue))
4198 return ESR_Failed;
4199 if (!Continue)
4200 break;
4201
4202 EvalStmtResult ESR = EvaluateLoopBody(Result, Info, FS->getBody());
4203 if (ESR != ESR_Continue)
4204 return ESR;
4205
Richard Smith08d6a2c2013-07-24 07:11:57 +00004206 if (FS->getInc()) {
4207 FullExpressionRAII IncScope(Info);
4208 if (!EvaluateIgnoredValue(Info, FS->getInc()))
4209 return ESR_Failed;
4210 }
Richard Smith4e18ca52013-05-06 05:56:11 +00004211 }
4212 return ESR_Succeeded;
4213 }
4214
Richard Smith896e0d72013-05-06 06:51:17 +00004215 case Stmt::CXXForRangeStmtClass: {
4216 const CXXForRangeStmt *FS = cast<CXXForRangeStmt>(S);
Richard Smith08d6a2c2013-07-24 07:11:57 +00004217 BlockScopeRAII Scope(Info);
Richard Smith896e0d72013-05-06 06:51:17 +00004218
4219 // Initialize the __range variable.
4220 EvalStmtResult ESR = EvaluateStmt(Result, Info, FS->getRangeStmt());
4221 if (ESR != ESR_Succeeded)
4222 return ESR;
4223
4224 // Create the __begin and __end iterators.
Richard Smith01694c32016-03-20 10:33:40 +00004225 ESR = EvaluateStmt(Result, Info, FS->getBeginStmt());
4226 if (ESR != ESR_Succeeded)
4227 return ESR;
4228 ESR = EvaluateStmt(Result, Info, FS->getEndStmt());
Richard Smith896e0d72013-05-06 06:51:17 +00004229 if (ESR != ESR_Succeeded)
4230 return ESR;
4231
4232 while (true) {
4233 // Condition: __begin != __end.
Richard Smith08d6a2c2013-07-24 07:11:57 +00004234 {
4235 bool Continue = true;
4236 FullExpressionRAII CondExpr(Info);
4237 if (!EvaluateAsBooleanCondition(FS->getCond(), Continue, Info))
4238 return ESR_Failed;
4239 if (!Continue)
4240 break;
4241 }
Richard Smith896e0d72013-05-06 06:51:17 +00004242
4243 // User's variable declaration, initialized by *__begin.
Richard Smith08d6a2c2013-07-24 07:11:57 +00004244 BlockScopeRAII InnerScope(Info);
Richard Smith896e0d72013-05-06 06:51:17 +00004245 ESR = EvaluateStmt(Result, Info, FS->getLoopVarStmt());
4246 if (ESR != ESR_Succeeded)
4247 return ESR;
4248
4249 // Loop body.
4250 ESR = EvaluateLoopBody(Result, Info, FS->getBody());
4251 if (ESR != ESR_Continue)
4252 return ESR;
4253
4254 // Increment: ++__begin
4255 if (!EvaluateIgnoredValue(Info, FS->getInc()))
4256 return ESR_Failed;
4257 }
4258
4259 return ESR_Succeeded;
4260 }
4261
Richard Smith496ddcf2013-05-12 17:32:42 +00004262 case Stmt::SwitchStmtClass:
4263 return EvaluateSwitch(Result, Info, cast<SwitchStmt>(S));
4264
Richard Smith4e18ca52013-05-06 05:56:11 +00004265 case Stmt::ContinueStmtClass:
4266 return ESR_Continue;
4267
4268 case Stmt::BreakStmtClass:
4269 return ESR_Break;
Richard Smith496ddcf2013-05-12 17:32:42 +00004270
4271 case Stmt::LabelStmtClass:
4272 return EvaluateStmt(Result, Info, cast<LabelStmt>(S)->getSubStmt(), Case);
4273
4274 case Stmt::AttributedStmtClass:
4275 // As a general principle, C++11 attributes can be ignored without
4276 // any semantic impact.
4277 return EvaluateStmt(Result, Info, cast<AttributedStmt>(S)->getSubStmt(),
4278 Case);
4279
4280 case Stmt::CaseStmtClass:
4281 case Stmt::DefaultStmtClass:
4282 return EvaluateStmt(Result, Info, cast<SwitchCase>(S)->getSubStmt(), Case);
Richard Smith254a73d2011-10-28 22:34:42 +00004283 }
4284}
4285
Richard Smithcc36f692011-12-22 02:22:31 +00004286/// CheckTrivialDefaultConstructor - Check whether a constructor is a trivial
4287/// default constructor. If so, we'll fold it whether or not it's marked as
4288/// constexpr. If it is marked as constexpr, we will never implicitly define it,
4289/// so we need special handling.
4290static bool CheckTrivialDefaultConstructor(EvalInfo &Info, SourceLocation Loc,
Richard Smithfddd3842011-12-30 21:15:51 +00004291 const CXXConstructorDecl *CD,
4292 bool IsValueInitialization) {
Richard Smithcc36f692011-12-22 02:22:31 +00004293 if (!CD->isTrivial() || !CD->isDefaultConstructor())
4294 return false;
4295
Richard Smith66e05fe2012-01-18 05:21:49 +00004296 // Value-initialization does not call a trivial default constructor, so such a
4297 // call is a core constant expression whether or not the constructor is
4298 // constexpr.
4299 if (!CD->isConstexpr() && !IsValueInitialization) {
Richard Smith2bf7fdb2013-01-02 11:42:31 +00004300 if (Info.getLangOpts().CPlusPlus11) {
Richard Smith66e05fe2012-01-18 05:21:49 +00004301 // FIXME: If DiagDecl is an implicitly-declared special member function,
4302 // we should be much more explicit about why it's not constexpr.
4303 Info.CCEDiag(Loc, diag::note_constexpr_invalid_function, 1)
4304 << /*IsConstexpr*/0 << /*IsConstructor*/1 << CD;
4305 Info.Note(CD->getLocation(), diag::note_declared_at);
Richard Smithcc36f692011-12-22 02:22:31 +00004306 } else {
4307 Info.CCEDiag(Loc, diag::note_invalid_subexpr_in_const_expr);
4308 }
4309 }
4310 return true;
4311}
4312
Richard Smith357362d2011-12-13 06:39:58 +00004313/// CheckConstexprFunction - Check that a function can be called in a constant
4314/// expression.
4315static bool CheckConstexprFunction(EvalInfo &Info, SourceLocation CallLoc,
4316 const FunctionDecl *Declaration,
Olivier Goffart8bc0caa2e2016-02-12 12:34:44 +00004317 const FunctionDecl *Definition,
4318 const Stmt *Body) {
Richard Smith253c2a32012-01-27 01:14:48 +00004319 // Potential constant expressions can contain calls to declared, but not yet
4320 // defined, constexpr functions.
Richard Smith6d4c6582013-11-05 22:18:15 +00004321 if (Info.checkingPotentialConstantExpression() && !Definition &&
Richard Smith253c2a32012-01-27 01:14:48 +00004322 Declaration->isConstexpr())
4323 return false;
4324
Richard Smith0838f3a2013-05-14 05:18:44 +00004325 // Bail out with no diagnostic if the function declaration itself is invalid.
4326 // We will have produced a relevant diagnostic while parsing it.
4327 if (Declaration->isInvalidDecl())
4328 return false;
4329
Richard Smith357362d2011-12-13 06:39:58 +00004330 // Can we evaluate this function call?
Olivier Goffart8bc0caa2e2016-02-12 12:34:44 +00004331 if (Definition && Definition->isConstexpr() &&
4332 !Definition->isInvalidDecl() && Body)
Richard Smith357362d2011-12-13 06:39:58 +00004333 return true;
4334
Richard Smith2bf7fdb2013-01-02 11:42:31 +00004335 if (Info.getLangOpts().CPlusPlus11) {
Richard Smith357362d2011-12-13 06:39:58 +00004336 const FunctionDecl *DiagDecl = Definition ? Definition : Declaration;
Fangrui Song6907ce22018-07-30 19:24:48 +00004337
Richard Smith5179eb72016-06-28 19:03:57 +00004338 // If this function is not constexpr because it is an inherited
4339 // non-constexpr constructor, diagnose that directly.
4340 auto *CD = dyn_cast<CXXConstructorDecl>(DiagDecl);
4341 if (CD && CD->isInheritingConstructor()) {
4342 auto *Inherited = CD->getInheritedConstructor().getConstructor();
Fangrui Song6907ce22018-07-30 19:24:48 +00004343 if (!Inherited->isConstexpr())
Richard Smith5179eb72016-06-28 19:03:57 +00004344 DiagDecl = CD = Inherited;
4345 }
4346
4347 // FIXME: If DiagDecl is an implicitly-declared special member function
4348 // or an inheriting constructor, we should be much more explicit about why
4349 // it's not constexpr.
4350 if (CD && CD->isInheritingConstructor())
Faisal Valie690b7a2016-07-02 22:34:24 +00004351 Info.FFDiag(CallLoc, diag::note_constexpr_invalid_inhctor, 1)
Richard Smith5179eb72016-06-28 19:03:57 +00004352 << CD->getInheritedConstructor().getConstructor()->getParent();
4353 else
Faisal Valie690b7a2016-07-02 22:34:24 +00004354 Info.FFDiag(CallLoc, diag::note_constexpr_invalid_function, 1)
Richard Smith5179eb72016-06-28 19:03:57 +00004355 << DiagDecl->isConstexpr() << (bool)CD << DiagDecl;
Richard Smith357362d2011-12-13 06:39:58 +00004356 Info.Note(DiagDecl->getLocation(), diag::note_declared_at);
4357 } else {
Faisal Valie690b7a2016-07-02 22:34:24 +00004358 Info.FFDiag(CallLoc, diag::note_invalid_subexpr_in_const_expr);
Richard Smith357362d2011-12-13 06:39:58 +00004359 }
4360 return false;
4361}
4362
Richard Smithbe6dd812014-11-19 21:27:17 +00004363/// Determine if a class has any fields that might need to be copied by a
4364/// trivial copy or move operation.
4365static bool hasFields(const CXXRecordDecl *RD) {
4366 if (!RD || RD->isEmpty())
4367 return false;
4368 for (auto *FD : RD->fields()) {
4369 if (FD->isUnnamedBitfield())
4370 continue;
4371 return true;
4372 }
4373 for (auto &Base : RD->bases())
4374 if (hasFields(Base.getType()->getAsCXXRecordDecl()))
4375 return true;
4376 return false;
4377}
4378
Richard Smithd62306a2011-11-10 06:34:14 +00004379namespace {
Richard Smith2e312c82012-03-03 22:46:17 +00004380typedef SmallVector<APValue, 8> ArgVector;
Richard Smithd62306a2011-11-10 06:34:14 +00004381}
4382
4383/// EvaluateArgs - Evaluate the arguments to a function call.
4384static bool EvaluateArgs(ArrayRef<const Expr*> Args, ArgVector &ArgValues,
4385 EvalInfo &Info) {
Richard Smith253c2a32012-01-27 01:14:48 +00004386 bool Success = true;
Richard Smithd62306a2011-11-10 06:34:14 +00004387 for (ArrayRef<const Expr*>::iterator I = Args.begin(), E = Args.end();
Richard Smith253c2a32012-01-27 01:14:48 +00004388 I != E; ++I) {
4389 if (!Evaluate(ArgValues[I - Args.begin()], Info, *I)) {
4390 // If we're checking for a potential constant expression, evaluate all
4391 // initializers even if some of them fail.
George Burgess IVa145e252016-05-25 22:38:36 +00004392 if (!Info.noteFailure())
Richard Smith253c2a32012-01-27 01:14:48 +00004393 return false;
4394 Success = false;
4395 }
4396 }
4397 return Success;
Richard Smithd62306a2011-11-10 06:34:14 +00004398}
4399
Richard Smith254a73d2011-10-28 22:34:42 +00004400/// Evaluate a function call.
Richard Smith253c2a32012-01-27 01:14:48 +00004401static bool HandleFunctionCall(SourceLocation CallLoc,
4402 const FunctionDecl *Callee, const LValue *This,
Richard Smithf57d8cb2011-12-09 22:58:01 +00004403 ArrayRef<const Expr*> Args, const Stmt *Body,
Richard Smith52a980a2015-08-28 02:43:42 +00004404 EvalInfo &Info, APValue &Result,
4405 const LValue *ResultSlot) {
Richard Smithd62306a2011-11-10 06:34:14 +00004406 ArgVector ArgValues(Args.size());
4407 if (!EvaluateArgs(Args, ArgValues, Info))
4408 return false;
Richard Smith254a73d2011-10-28 22:34:42 +00004409
Richard Smith253c2a32012-01-27 01:14:48 +00004410 if (!Info.CheckCallLimit(CallLoc))
4411 return false;
4412
4413 CallStackFrame Frame(Info, CallLoc, Callee, This, ArgValues.data());
Richard Smith99005e62013-05-07 03:19:20 +00004414
4415 // For a trivial copy or move assignment, perform an APValue copy. This is
4416 // essential for unions, where the operations performed by the assignment
4417 // operator cannot be represented as statements.
Richard Smithbe6dd812014-11-19 21:27:17 +00004418 //
4419 // Skip this for non-union classes with no fields; in that case, the defaulted
4420 // copy/move does not actually read the object.
Richard Smith99005e62013-05-07 03:19:20 +00004421 const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Callee);
Richard Smith419bd092015-04-29 19:26:57 +00004422 if (MD && MD->isDefaulted() &&
4423 (MD->getParent()->isUnion() ||
4424 (MD->isTrivial() && hasFields(MD->getParent())))) {
Richard Smith99005e62013-05-07 03:19:20 +00004425 assert(This &&
4426 (MD->isCopyAssignmentOperator() || MD->isMoveAssignmentOperator()));
4427 LValue RHS;
4428 RHS.setFrom(Info.Ctx, ArgValues[0]);
4429 APValue RHSValue;
4430 if (!handleLValueToRValueConversion(Info, Args[0], Args[0]->getType(),
4431 RHS, RHSValue))
4432 return false;
4433 if (!handleAssignment(Info, Args[0], *This, MD->getThisType(Info.Ctx),
4434 RHSValue))
4435 return false;
4436 This->moveInto(Result);
4437 return true;
Faisal Vali051e3a22017-02-16 04:12:21 +00004438 } else if (MD && isLambdaCallOperator(MD)) {
Erik Pilkington11232912018-04-05 00:12:05 +00004439 // We're in a lambda; determine the lambda capture field maps unless we're
4440 // just constexpr checking a lambda's call operator. constexpr checking is
4441 // done before the captures have been added to the closure object (unless
4442 // we're inferring constexpr-ness), so we don't have access to them in this
4443 // case. But since we don't need the captures to constexpr check, we can
4444 // just ignore them.
4445 if (!Info.checkingPotentialConstantExpression())
4446 MD->getParent()->getCaptureFields(Frame.LambdaCaptureFields,
4447 Frame.LambdaThisCaptureField);
Richard Smith99005e62013-05-07 03:19:20 +00004448 }
4449
Richard Smith52a980a2015-08-28 02:43:42 +00004450 StmtResult Ret = {Result, ResultSlot};
4451 EvalStmtResult ESR = EvaluateStmt(Ret, Info, Body);
Richard Smith3da88fa2013-04-26 14:36:30 +00004452 if (ESR == ESR_Succeeded) {
Alp Toker314cc812014-01-25 16:55:45 +00004453 if (Callee->getReturnType()->isVoidType())
Richard Smith3da88fa2013-04-26 14:36:30 +00004454 return true;
Faisal Valie690b7a2016-07-02 22:34:24 +00004455 Info.FFDiag(Callee->getLocEnd(), diag::note_constexpr_no_return);
Richard Smith3da88fa2013-04-26 14:36:30 +00004456 }
Richard Smithd9f663b2013-04-22 15:31:51 +00004457 return ESR == ESR_Returned;
Richard Smith254a73d2011-10-28 22:34:42 +00004458}
4459
Richard Smithd62306a2011-11-10 06:34:14 +00004460/// Evaluate a constructor call.
Richard Smith5179eb72016-06-28 19:03:57 +00004461static bool HandleConstructorCall(const Expr *E, const LValue &This,
4462 APValue *ArgValues,
Richard Smithd62306a2011-11-10 06:34:14 +00004463 const CXXConstructorDecl *Definition,
Richard Smithfddd3842011-12-30 21:15:51 +00004464 EvalInfo &Info, APValue &Result) {
Richard Smith5179eb72016-06-28 19:03:57 +00004465 SourceLocation CallLoc = E->getExprLoc();
Richard Smith253c2a32012-01-27 01:14:48 +00004466 if (!Info.CheckCallLimit(CallLoc))
4467 return false;
4468
Richard Smith3607ffe2012-02-13 03:54:03 +00004469 const CXXRecordDecl *RD = Definition->getParent();
4470 if (RD->getNumVBases()) {
Faisal Valie690b7a2016-07-02 22:34:24 +00004471 Info.FFDiag(CallLoc, diag::note_constexpr_virtual_base) << RD;
Richard Smith3607ffe2012-02-13 03:54:03 +00004472 return false;
4473 }
4474
Erik Pilkington42925492017-10-04 00:18:55 +00004475 EvalInfo::EvaluatingConstructorRAII EvalObj(
Akira Hatanaka4e2698c2018-04-10 05:15:01 +00004476 Info, {This.getLValueBase(),
4477 {This.getLValueCallIndex(), This.getLValueVersion()}});
Richard Smith5179eb72016-06-28 19:03:57 +00004478 CallStackFrame Frame(Info, CallLoc, Definition, &This, ArgValues);
Richard Smithd62306a2011-11-10 06:34:14 +00004479
Richard Smith52a980a2015-08-28 02:43:42 +00004480 // FIXME: Creating an APValue just to hold a nonexistent return value is
4481 // wasteful.
4482 APValue RetVal;
4483 StmtResult Ret = {RetVal, nullptr};
4484
Richard Smith5179eb72016-06-28 19:03:57 +00004485 // If it's a delegating constructor, delegate.
Richard Smithd62306a2011-11-10 06:34:14 +00004486 if (Definition->isDelegatingConstructor()) {
4487 CXXConstructorDecl::init_const_iterator I = Definition->init_begin();
Richard Smith9ff62af2013-11-07 18:45:03 +00004488 {
4489 FullExpressionRAII InitScope(Info);
4490 if (!EvaluateInPlace(Result, Info, This, (*I)->getInit()))
4491 return false;
4492 }
Richard Smith52a980a2015-08-28 02:43:42 +00004493 return EvaluateStmt(Ret, Info, Definition->getBody()) != ESR_Failed;
Richard Smithd62306a2011-11-10 06:34:14 +00004494 }
4495
Richard Smith1bc5c2c2012-01-10 04:32:03 +00004496 // For a trivial copy or move constructor, perform an APValue copy. This is
Richard Smithbe6dd812014-11-19 21:27:17 +00004497 // essential for unions (or classes with anonymous union members), where the
4498 // operations performed by the constructor cannot be represented by
4499 // ctor-initializers.
4500 //
4501 // Skip this for empty non-union classes; we should not perform an
4502 // lvalue-to-rvalue conversion on them because their copy constructor does not
4503 // actually read them.
Richard Smith419bd092015-04-29 19:26:57 +00004504 if (Definition->isDefaulted() && Definition->isCopyOrMoveConstructor() &&
Richard Smithbe6dd812014-11-19 21:27:17 +00004505 (Definition->getParent()->isUnion() ||
Richard Smith419bd092015-04-29 19:26:57 +00004506 (Definition->isTrivial() && hasFields(Definition->getParent())))) {
Richard Smith1bc5c2c2012-01-10 04:32:03 +00004507 LValue RHS;
Richard Smith2e312c82012-03-03 22:46:17 +00004508 RHS.setFrom(Info.Ctx, ArgValues[0]);
Richard Smith5179eb72016-06-28 19:03:57 +00004509 return handleLValueToRValueConversion(
4510 Info, E, Definition->getParamDecl(0)->getType().getNonReferenceType(),
4511 RHS, Result);
Richard Smith1bc5c2c2012-01-10 04:32:03 +00004512 }
4513
4514 // Reserve space for the struct members.
Richard Smithfddd3842011-12-30 21:15:51 +00004515 if (!RD->isUnion() && Result.isUninit())
Richard Smithd62306a2011-11-10 06:34:14 +00004516 Result = APValue(APValue::UninitStruct(), RD->getNumBases(),
Aaron Ballman62e47c42014-03-10 13:43:55 +00004517 std::distance(RD->field_begin(), RD->field_end()));
Richard Smithd62306a2011-11-10 06:34:14 +00004518
John McCalld7bca762012-05-01 00:38:49 +00004519 if (RD->isInvalidDecl()) return false;
Richard Smithd62306a2011-11-10 06:34:14 +00004520 const ASTRecordLayout &Layout = Info.Ctx.getASTRecordLayout(RD);
4521
Richard Smith08d6a2c2013-07-24 07:11:57 +00004522 // A scope for temporaries lifetime-extended by reference members.
4523 BlockScopeRAII LifetimeExtendedScope(Info);
4524
Richard Smith253c2a32012-01-27 01:14:48 +00004525 bool Success = true;
Richard Smithd62306a2011-11-10 06:34:14 +00004526 unsigned BasesSeen = 0;
4527#ifndef NDEBUG
4528 CXXRecordDecl::base_class_const_iterator BaseIt = RD->bases_begin();
4529#endif
Aaron Ballman0ad78302014-03-13 17:34:31 +00004530 for (const auto *I : Definition->inits()) {
Richard Smith253c2a32012-01-27 01:14:48 +00004531 LValue Subobject = This;
Volodymyr Sapsaie8f1ffb2018-02-23 23:59:20 +00004532 LValue SubobjectParent = This;
Richard Smith253c2a32012-01-27 01:14:48 +00004533 APValue *Value = &Result;
4534
4535 // Determine the subobject to initialize.
Craig Topper36250ad2014-05-12 05:36:57 +00004536 FieldDecl *FD = nullptr;
Aaron Ballman0ad78302014-03-13 17:34:31 +00004537 if (I->isBaseInitializer()) {
4538 QualType BaseType(I->getBaseClass(), 0);
Richard Smithd62306a2011-11-10 06:34:14 +00004539#ifndef NDEBUG
4540 // Non-virtual base classes are initialized in the order in the class
Richard Smith3607ffe2012-02-13 03:54:03 +00004541 // definition. We have already checked for virtual base classes.
Richard Smithd62306a2011-11-10 06:34:14 +00004542 assert(!BaseIt->isVirtual() && "virtual base for literal type");
4543 assert(Info.Ctx.hasSameType(BaseIt->getType(), BaseType) &&
4544 "base class initializers not in expected order");
4545 ++BaseIt;
4546#endif
Aaron Ballman0ad78302014-03-13 17:34:31 +00004547 if (!HandleLValueDirectBase(Info, I->getInit(), Subobject, RD,
John McCalld7bca762012-05-01 00:38:49 +00004548 BaseType->getAsCXXRecordDecl(), &Layout))
4549 return false;
Richard Smith253c2a32012-01-27 01:14:48 +00004550 Value = &Result.getStructBase(BasesSeen++);
Aaron Ballman0ad78302014-03-13 17:34:31 +00004551 } else if ((FD = I->getMember())) {
4552 if (!HandleLValueMember(Info, I->getInit(), Subobject, FD, &Layout))
John McCalld7bca762012-05-01 00:38:49 +00004553 return false;
Richard Smithd62306a2011-11-10 06:34:14 +00004554 if (RD->isUnion()) {
4555 Result = APValue(FD);
Richard Smith253c2a32012-01-27 01:14:48 +00004556 Value = &Result.getUnionValue();
4557 } else {
4558 Value = &Result.getStructField(FD->getFieldIndex());
4559 }
Aaron Ballman0ad78302014-03-13 17:34:31 +00004560 } else if (IndirectFieldDecl *IFD = I->getIndirectMember()) {
Richard Smith1b78b3d2012-01-25 22:15:11 +00004561 // Walk the indirect field decl's chain to find the object to initialize,
4562 // and make sure we've initialized every step along it.
Volodymyr Sapsaie8f1ffb2018-02-23 23:59:20 +00004563 auto IndirectFieldChain = IFD->chain();
4564 for (auto *C : IndirectFieldChain) {
Aaron Ballman13916082014-03-07 18:11:58 +00004565 FD = cast<FieldDecl>(C);
Richard Smith1b78b3d2012-01-25 22:15:11 +00004566 CXXRecordDecl *CD = cast<CXXRecordDecl>(FD->getParent());
4567 // Switch the union field if it differs. This happens if we had
4568 // preceding zero-initialization, and we're now initializing a union
4569 // subobject other than the first.
4570 // FIXME: In this case, the values of the other subobjects are
4571 // specified, since zero-initialization sets all padding bits to zero.
4572 if (Value->isUninit() ||
4573 (Value->isUnion() && Value->getUnionField() != FD)) {
4574 if (CD->isUnion())
4575 *Value = APValue(FD);
4576 else
4577 *Value = APValue(APValue::UninitStruct(), CD->getNumBases(),
Aaron Ballman62e47c42014-03-10 13:43:55 +00004578 std::distance(CD->field_begin(), CD->field_end()));
Richard Smith1b78b3d2012-01-25 22:15:11 +00004579 }
Volodymyr Sapsaie8f1ffb2018-02-23 23:59:20 +00004580 // Store Subobject as its parent before updating it for the last element
4581 // in the chain.
4582 if (C == IndirectFieldChain.back())
4583 SubobjectParent = Subobject;
Aaron Ballman0ad78302014-03-13 17:34:31 +00004584 if (!HandleLValueMember(Info, I->getInit(), Subobject, FD))
John McCalld7bca762012-05-01 00:38:49 +00004585 return false;
Richard Smith1b78b3d2012-01-25 22:15:11 +00004586 if (CD->isUnion())
4587 Value = &Value->getUnionValue();
4588 else
4589 Value = &Value->getStructField(FD->getFieldIndex());
Richard Smith1b78b3d2012-01-25 22:15:11 +00004590 }
Richard Smithd62306a2011-11-10 06:34:14 +00004591 } else {
Richard Smith1b78b3d2012-01-25 22:15:11 +00004592 llvm_unreachable("unknown base initializer kind");
Richard Smithd62306a2011-11-10 06:34:14 +00004593 }
Richard Smith253c2a32012-01-27 01:14:48 +00004594
Volodymyr Sapsaie8f1ffb2018-02-23 23:59:20 +00004595 // Need to override This for implicit field initializers as in this case
4596 // This refers to innermost anonymous struct/union containing initializer,
4597 // not to currently constructed class.
4598 const Expr *Init = I->getInit();
4599 ThisOverrideRAII ThisOverride(*Info.CurrentCall, &SubobjectParent,
4600 isa<CXXDefaultInitExpr>(Init));
Richard Smith08d6a2c2013-07-24 07:11:57 +00004601 FullExpressionRAII InitScope(Info);
Volodymyr Sapsaie8f1ffb2018-02-23 23:59:20 +00004602 if (!EvaluateInPlace(*Value, Info, Subobject, Init) ||
4603 (FD && FD->isBitField() &&
4604 !truncateBitfieldValue(Info, Init, *Value, FD))) {
Richard Smith253c2a32012-01-27 01:14:48 +00004605 // If we're checking for a potential constant expression, evaluate all
4606 // initializers even if some of them fail.
George Burgess IVa145e252016-05-25 22:38:36 +00004607 if (!Info.noteFailure())
Richard Smith253c2a32012-01-27 01:14:48 +00004608 return false;
4609 Success = false;
4610 }
Richard Smithd62306a2011-11-10 06:34:14 +00004611 }
4612
Richard Smithd9f663b2013-04-22 15:31:51 +00004613 return Success &&
Richard Smith52a980a2015-08-28 02:43:42 +00004614 EvaluateStmt(Ret, Info, Definition->getBody()) != ESR_Failed;
Richard Smithd62306a2011-11-10 06:34:14 +00004615}
4616
Richard Smith5179eb72016-06-28 19:03:57 +00004617static bool HandleConstructorCall(const Expr *E, const LValue &This,
4618 ArrayRef<const Expr*> Args,
4619 const CXXConstructorDecl *Definition,
4620 EvalInfo &Info, APValue &Result) {
4621 ArgVector ArgValues(Args.size());
4622 if (!EvaluateArgs(Args, ArgValues, Info))
4623 return false;
4624
4625 return HandleConstructorCall(E, This, ArgValues.data(), Definition,
4626 Info, Result);
4627}
4628
Eli Friedman9a156e52008-11-12 09:44:48 +00004629//===----------------------------------------------------------------------===//
Peter Collingbournee9200682011-05-13 03:29:01 +00004630// Generic Evaluation
4631//===----------------------------------------------------------------------===//
4632namespace {
4633
Aaron Ballman68af21c2014-01-03 19:26:43 +00004634template <class Derived>
Peter Collingbournee9200682011-05-13 03:29:01 +00004635class ExprEvaluatorBase
Aaron Ballman68af21c2014-01-03 19:26:43 +00004636 : public ConstStmtVisitor<Derived, bool> {
Peter Collingbournee9200682011-05-13 03:29:01 +00004637private:
Richard Smith52a980a2015-08-28 02:43:42 +00004638 Derived &getDerived() { return static_cast<Derived&>(*this); }
Aaron Ballman68af21c2014-01-03 19:26:43 +00004639 bool DerivedSuccess(const APValue &V, const Expr *E) {
Richard Smith52a980a2015-08-28 02:43:42 +00004640 return getDerived().Success(V, E);
Peter Collingbournee9200682011-05-13 03:29:01 +00004641 }
Aaron Ballman68af21c2014-01-03 19:26:43 +00004642 bool DerivedZeroInitialization(const Expr *E) {
Richard Smith52a980a2015-08-28 02:43:42 +00004643 return getDerived().ZeroInitialization(E);
Richard Smith4ce706a2011-10-11 21:43:33 +00004644 }
Peter Collingbournee9200682011-05-13 03:29:01 +00004645
Richard Smith17100ba2012-02-16 02:46:34 +00004646 // Check whether a conditional operator with a non-constant condition is a
4647 // potential constant expression. If neither arm is a potential constant
4648 // expression, then the conditional operator is not either.
4649 template<typename ConditionalOperator>
4650 void CheckPotentialConstantConditional(const ConditionalOperator *E) {
Richard Smith6d4c6582013-11-05 22:18:15 +00004651 assert(Info.checkingPotentialConstantExpression());
Richard Smith17100ba2012-02-16 02:46:34 +00004652
4653 // Speculatively evaluate both arms.
George Burgess IV8c892b52016-05-25 22:31:54 +00004654 SmallVector<PartialDiagnosticAt, 8> Diag;
Richard Smith17100ba2012-02-16 02:46:34 +00004655 {
Richard Smith17100ba2012-02-16 02:46:34 +00004656 SpeculativeEvaluationRAII Speculate(Info, &Diag);
Richard Smith17100ba2012-02-16 02:46:34 +00004657 StmtVisitorTy::Visit(E->getFalseExpr());
4658 if (Diag.empty())
4659 return;
George Burgess IV8c892b52016-05-25 22:31:54 +00004660 }
Richard Smith17100ba2012-02-16 02:46:34 +00004661
George Burgess IV8c892b52016-05-25 22:31:54 +00004662 {
4663 SpeculativeEvaluationRAII Speculate(Info, &Diag);
Richard Smith17100ba2012-02-16 02:46:34 +00004664 Diag.clear();
4665 StmtVisitorTy::Visit(E->getTrueExpr());
4666 if (Diag.empty())
4667 return;
4668 }
4669
4670 Error(E, diag::note_constexpr_conditional_never_const);
4671 }
4672
4673
4674 template<typename ConditionalOperator>
4675 bool HandleConditionalOperator(const ConditionalOperator *E) {
4676 bool BoolResult;
4677 if (!EvaluateAsBooleanCondition(E->getCond(), BoolResult, Info)) {
Nick Lewycky20edee62017-04-27 07:11:09 +00004678 if (Info.checkingPotentialConstantExpression() && Info.noteFailure()) {
Richard Smith17100ba2012-02-16 02:46:34 +00004679 CheckPotentialConstantConditional(E);
Nick Lewycky20edee62017-04-27 07:11:09 +00004680 return false;
4681 }
4682 if (Info.noteFailure()) {
4683 StmtVisitorTy::Visit(E->getTrueExpr());
4684 StmtVisitorTy::Visit(E->getFalseExpr());
4685 }
Richard Smith17100ba2012-02-16 02:46:34 +00004686 return false;
4687 }
4688
4689 Expr *EvalExpr = BoolResult ? E->getTrueExpr() : E->getFalseExpr();
4690 return StmtVisitorTy::Visit(EvalExpr);
4691 }
4692
Peter Collingbournee9200682011-05-13 03:29:01 +00004693protected:
4694 EvalInfo &Info;
Aaron Ballman68af21c2014-01-03 19:26:43 +00004695 typedef ConstStmtVisitor<Derived, bool> StmtVisitorTy;
Peter Collingbournee9200682011-05-13 03:29:01 +00004696 typedef ExprEvaluatorBase ExprEvaluatorBaseTy;
4697
Richard Smith92b1ce02011-12-12 09:28:41 +00004698 OptionalDiagnostic CCEDiag(const Expr *E, diag::kind D) {
Richard Smithce1ec5e2012-03-15 04:53:45 +00004699 return Info.CCEDiag(E, D);
Richard Smithf57d8cb2011-12-09 22:58:01 +00004700 }
4701
Aaron Ballman68af21c2014-01-03 19:26:43 +00004702 bool ZeroInitialization(const Expr *E) { return Error(E); }
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00004703
4704public:
4705 ExprEvaluatorBase(EvalInfo &Info) : Info(Info) {}
4706
4707 EvalInfo &getEvalInfo() { return Info; }
4708
Richard Smithf57d8cb2011-12-09 22:58:01 +00004709 /// Report an evaluation error. This should only be called when an error is
4710 /// first discovered. When propagating an error, just return false.
4711 bool Error(const Expr *E, diag::kind D) {
Faisal Valie690b7a2016-07-02 22:34:24 +00004712 Info.FFDiag(E, D);
Richard Smithf57d8cb2011-12-09 22:58:01 +00004713 return false;
4714 }
4715 bool Error(const Expr *E) {
4716 return Error(E, diag::note_invalid_subexpr_in_const_expr);
4717 }
4718
Aaron Ballman68af21c2014-01-03 19:26:43 +00004719 bool VisitStmt(const Stmt *) {
David Blaikie83d382b2011-09-23 05:06:16 +00004720 llvm_unreachable("Expression evaluator should not be called on stmts");
Peter Collingbournee9200682011-05-13 03:29:01 +00004721 }
Aaron Ballman68af21c2014-01-03 19:26:43 +00004722 bool VisitExpr(const Expr *E) {
Richard Smithf57d8cb2011-12-09 22:58:01 +00004723 return Error(E);
Peter Collingbournee9200682011-05-13 03:29:01 +00004724 }
4725
Aaron Ballman68af21c2014-01-03 19:26:43 +00004726 bool VisitParenExpr(const ParenExpr *E)
Peter Collingbournee9200682011-05-13 03:29:01 +00004727 { return StmtVisitorTy::Visit(E->getSubExpr()); }
Aaron Ballman68af21c2014-01-03 19:26:43 +00004728 bool VisitUnaryExtension(const UnaryOperator *E)
Peter Collingbournee9200682011-05-13 03:29:01 +00004729 { return StmtVisitorTy::Visit(E->getSubExpr()); }
Aaron Ballman68af21c2014-01-03 19:26:43 +00004730 bool VisitUnaryPlus(const UnaryOperator *E)
Peter Collingbournee9200682011-05-13 03:29:01 +00004731 { return StmtVisitorTy::Visit(E->getSubExpr()); }
Aaron Ballman68af21c2014-01-03 19:26:43 +00004732 bool VisitChooseExpr(const ChooseExpr *E)
Eli Friedman75807f22013-07-20 00:40:58 +00004733 { return StmtVisitorTy::Visit(E->getChosenSubExpr()); }
Aaron Ballman68af21c2014-01-03 19:26:43 +00004734 bool VisitGenericSelectionExpr(const GenericSelectionExpr *E)
Peter Collingbournee9200682011-05-13 03:29:01 +00004735 { return StmtVisitorTy::Visit(E->getResultExpr()); }
Aaron Ballman68af21c2014-01-03 19:26:43 +00004736 bool VisitSubstNonTypeTemplateParmExpr(const SubstNonTypeTemplateParmExpr *E)
John McCall7c454bb2011-07-15 05:09:51 +00004737 { return StmtVisitorTy::Visit(E->getReplacement()); }
Akira Hatanaka4e2698c2018-04-10 05:15:01 +00004738 bool VisitCXXDefaultArgExpr(const CXXDefaultArgExpr *E) {
4739 TempVersionRAII RAII(*Info.CurrentCall);
4740 return StmtVisitorTy::Visit(E->getExpr());
4741 }
Aaron Ballman68af21c2014-01-03 19:26:43 +00004742 bool VisitCXXDefaultInitExpr(const CXXDefaultInitExpr *E) {
Akira Hatanaka4e2698c2018-04-10 05:15:01 +00004743 TempVersionRAII RAII(*Info.CurrentCall);
Richard Smith17e32462013-09-13 20:51:45 +00004744 // The initializer may not have been parsed yet, or might be erroneous.
4745 if (!E->getExpr())
4746 return Error(E);
4747 return StmtVisitorTy::Visit(E->getExpr());
4748 }
Richard Smith5894a912011-12-19 22:12:41 +00004749 // We cannot create any objects for which cleanups are required, so there is
4750 // nothing to do here; all cleanups must come from unevaluated subexpressions.
Aaron Ballman68af21c2014-01-03 19:26:43 +00004751 bool VisitExprWithCleanups(const ExprWithCleanups *E)
Richard Smith5894a912011-12-19 22:12:41 +00004752 { return StmtVisitorTy::Visit(E->getSubExpr()); }
Peter Collingbournee9200682011-05-13 03:29:01 +00004753
Aaron Ballman68af21c2014-01-03 19:26:43 +00004754 bool VisitCXXReinterpretCastExpr(const CXXReinterpretCastExpr *E) {
Richard Smith6d6ecc32011-12-12 12:46:16 +00004755 CCEDiag(E, diag::note_constexpr_invalid_cast) << 0;
4756 return static_cast<Derived*>(this)->VisitCastExpr(E);
4757 }
Aaron Ballman68af21c2014-01-03 19:26:43 +00004758 bool VisitCXXDynamicCastExpr(const CXXDynamicCastExpr *E) {
Richard Smith6d6ecc32011-12-12 12:46:16 +00004759 CCEDiag(E, diag::note_constexpr_invalid_cast) << 1;
4760 return static_cast<Derived*>(this)->VisitCastExpr(E);
4761 }
4762
Aaron Ballman68af21c2014-01-03 19:26:43 +00004763 bool VisitBinaryOperator(const BinaryOperator *E) {
Richard Smith027bf112011-11-17 22:56:20 +00004764 switch (E->getOpcode()) {
4765 default:
Richard Smithf57d8cb2011-12-09 22:58:01 +00004766 return Error(E);
Richard Smith027bf112011-11-17 22:56:20 +00004767
4768 case BO_Comma:
4769 VisitIgnoredValue(E->getLHS());
4770 return StmtVisitorTy::Visit(E->getRHS());
4771
4772 case BO_PtrMemD:
4773 case BO_PtrMemI: {
4774 LValue Obj;
4775 if (!HandleMemberPointerAccess(Info, E, Obj))
4776 return false;
Richard Smith2e312c82012-03-03 22:46:17 +00004777 APValue Result;
Richard Smith243ef902013-05-05 23:31:59 +00004778 if (!handleLValueToRValueConversion(Info, E, E->getType(), Obj, Result))
Richard Smith027bf112011-11-17 22:56:20 +00004779 return false;
4780 return DerivedSuccess(Result, E);
4781 }
4782 }
4783 }
4784
Aaron Ballman68af21c2014-01-03 19:26:43 +00004785 bool VisitBinaryConditionalOperator(const BinaryConditionalOperator *E) {
Richard Smith26d4cc12012-06-26 08:12:11 +00004786 // Evaluate and cache the common expression. We treat it as a temporary,
4787 // even though it's not quite the same thing.
Richard Smith08d6a2c2013-07-24 07:11:57 +00004788 if (!Evaluate(Info.CurrentCall->createTemporary(E->getOpaqueValue(), false),
Richard Smith26d4cc12012-06-26 08:12:11 +00004789 Info, E->getCommon()))
Richard Smithf57d8cb2011-12-09 22:58:01 +00004790 return false;
Peter Collingbournee9200682011-05-13 03:29:01 +00004791
Richard Smith17100ba2012-02-16 02:46:34 +00004792 return HandleConditionalOperator(E);
Peter Collingbournee9200682011-05-13 03:29:01 +00004793 }
4794
Aaron Ballman68af21c2014-01-03 19:26:43 +00004795 bool VisitConditionalOperator(const ConditionalOperator *E) {
Richard Smith84f6dcf2012-02-02 01:16:57 +00004796 bool IsBcpCall = false;
4797 // If the condition (ignoring parens) is a __builtin_constant_p call,
4798 // the result is a constant expression if it can be folded without
4799 // side-effects. This is an important GNU extension. See GCC PR38377
4800 // for discussion.
4801 if (const CallExpr *CallCE =
4802 dyn_cast<CallExpr>(E->getCond()->IgnoreParenCasts()))
Alp Tokera724cff2013-12-28 21:59:02 +00004803 if (CallCE->getBuiltinCallee() == Builtin::BI__builtin_constant_p)
Richard Smith84f6dcf2012-02-02 01:16:57 +00004804 IsBcpCall = true;
4805
4806 // Always assume __builtin_constant_p(...) ? ... : ... is a potential
4807 // constant expression; we can't check whether it's potentially foldable.
Richard Smith6d4c6582013-11-05 22:18:15 +00004808 if (Info.checkingPotentialConstantExpression() && IsBcpCall)
Richard Smith84f6dcf2012-02-02 01:16:57 +00004809 return false;
4810
Richard Smith6d4c6582013-11-05 22:18:15 +00004811 FoldConstant Fold(Info, IsBcpCall);
4812 if (!HandleConditionalOperator(E)) {
4813 Fold.keepDiagnostics();
Richard Smith84f6dcf2012-02-02 01:16:57 +00004814 return false;
Richard Smith6d4c6582013-11-05 22:18:15 +00004815 }
Richard Smith84f6dcf2012-02-02 01:16:57 +00004816
4817 return true;
Peter Collingbournee9200682011-05-13 03:29:01 +00004818 }
4819
Aaron Ballman68af21c2014-01-03 19:26:43 +00004820 bool VisitOpaqueValueExpr(const OpaqueValueExpr *E) {
Akira Hatanaka4e2698c2018-04-10 05:15:01 +00004821 if (APValue *Value = Info.CurrentCall->getCurrentTemporary(E))
Richard Smith08d6a2c2013-07-24 07:11:57 +00004822 return DerivedSuccess(*Value, E);
4823
4824 const Expr *Source = E->getSourceExpr();
4825 if (!Source)
4826 return Error(E);
4827 if (Source == E) { // sanity checking.
4828 assert(0 && "OpaqueValueExpr recursively refers to itself");
4829 return Error(E);
Argyrios Kyrtzidisfac35c02011-12-09 02:44:48 +00004830 }
Richard Smith08d6a2c2013-07-24 07:11:57 +00004831 return StmtVisitorTy::Visit(Source);
Peter Collingbournee9200682011-05-13 03:29:01 +00004832 }
Richard Smith4ce706a2011-10-11 21:43:33 +00004833
Aaron Ballman68af21c2014-01-03 19:26:43 +00004834 bool VisitCallExpr(const CallExpr *E) {
Richard Smith52a980a2015-08-28 02:43:42 +00004835 APValue Result;
4836 if (!handleCallExpr(E, Result, nullptr))
4837 return false;
4838 return DerivedSuccess(Result, E);
4839 }
4840
4841 bool handleCallExpr(const CallExpr *E, APValue &Result,
Nick Lewycky13073a62017-06-12 21:15:44 +00004842 const LValue *ResultSlot) {
Richard Smith027bf112011-11-17 22:56:20 +00004843 const Expr *Callee = E->getCallee()->IgnoreParens();
Richard Smith254a73d2011-10-28 22:34:42 +00004844 QualType CalleeType = Callee->getType();
4845
Craig Topper36250ad2014-05-12 05:36:57 +00004846 const FunctionDecl *FD = nullptr;
4847 LValue *This = nullptr, ThisVal;
Craig Topper5fc8fc22014-08-27 06:28:36 +00004848 auto Args = llvm::makeArrayRef(E->getArgs(), E->getNumArgs());
Richard Smith3607ffe2012-02-13 03:54:03 +00004849 bool HasQualifier = false;
Richard Smith656d49d2011-11-10 09:31:24 +00004850
Richard Smithe97cbd72011-11-11 04:05:33 +00004851 // Extract function decl and 'this' pointer from the callee.
4852 if (CalleeType->isSpecificBuiltinType(BuiltinType::BoundMember)) {
Craig Topper36250ad2014-05-12 05:36:57 +00004853 const ValueDecl *Member = nullptr;
Richard Smith027bf112011-11-17 22:56:20 +00004854 if (const MemberExpr *ME = dyn_cast<MemberExpr>(Callee)) {
4855 // Explicit bound member calls, such as x.f() or p->g();
4856 if (!EvaluateObjectArgument(Info, ME->getBase(), ThisVal))
Richard Smithf57d8cb2011-12-09 22:58:01 +00004857 return false;
4858 Member = ME->getMemberDecl();
Richard Smith027bf112011-11-17 22:56:20 +00004859 This = &ThisVal;
Richard Smith3607ffe2012-02-13 03:54:03 +00004860 HasQualifier = ME->hasQualifier();
Richard Smith027bf112011-11-17 22:56:20 +00004861 } else if (const BinaryOperator *BE = dyn_cast<BinaryOperator>(Callee)) {
4862 // Indirect bound member calls ('.*' or '->*').
Richard Smithf57d8cb2011-12-09 22:58:01 +00004863 Member = HandleMemberPointerAccess(Info, BE, ThisVal, false);
4864 if (!Member) return false;
Richard Smith027bf112011-11-17 22:56:20 +00004865 This = &ThisVal;
Richard Smith027bf112011-11-17 22:56:20 +00004866 } else
Richard Smithf57d8cb2011-12-09 22:58:01 +00004867 return Error(Callee);
4868
4869 FD = dyn_cast<FunctionDecl>(Member);
4870 if (!FD)
4871 return Error(Callee);
Richard Smithe97cbd72011-11-11 04:05:33 +00004872 } else if (CalleeType->isFunctionPointerType()) {
Richard Smitha8105bc2012-01-06 16:39:00 +00004873 LValue Call;
4874 if (!EvaluatePointer(Callee, Call, Info))
Richard Smithf57d8cb2011-12-09 22:58:01 +00004875 return false;
Richard Smithe97cbd72011-11-11 04:05:33 +00004876
Richard Smitha8105bc2012-01-06 16:39:00 +00004877 if (!Call.getLValueOffset().isZero())
Richard Smithf57d8cb2011-12-09 22:58:01 +00004878 return Error(Callee);
Richard Smithce40ad62011-11-12 22:28:03 +00004879 FD = dyn_cast_or_null<FunctionDecl>(
4880 Call.getLValueBase().dyn_cast<const ValueDecl*>());
Richard Smithe97cbd72011-11-11 04:05:33 +00004881 if (!FD)
Richard Smithf57d8cb2011-12-09 22:58:01 +00004882 return Error(Callee);
Faisal Valid92e7492017-01-08 18:56:11 +00004883 // Don't call function pointers which have been cast to some other type.
4884 // Per DR (no number yet), the caller and callee can differ in noexcept.
4885 if (!Info.Ctx.hasSameFunctionTypeIgnoringExceptionSpec(
4886 CalleeType->getPointeeType(), FD->getType())) {
4887 return Error(E);
4888 }
Richard Smithe97cbd72011-11-11 04:05:33 +00004889
4890 // Overloaded operator calls to member functions are represented as normal
4891 // calls with '*this' as the first argument.
4892 const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD);
4893 if (MD && !MD->isStatic()) {
Richard Smithf57d8cb2011-12-09 22:58:01 +00004894 // FIXME: When selecting an implicit conversion for an overloaded
4895 // operator delete, we sometimes try to evaluate calls to conversion
4896 // operators without a 'this' parameter!
4897 if (Args.empty())
4898 return Error(E);
4899
Nick Lewycky13073a62017-06-12 21:15:44 +00004900 if (!EvaluateObjectArgument(Info, Args[0], ThisVal))
Richard Smithe97cbd72011-11-11 04:05:33 +00004901 return false;
4902 This = &ThisVal;
Nick Lewycky13073a62017-06-12 21:15:44 +00004903 Args = Args.slice(1);
Fangrui Song6907ce22018-07-30 19:24:48 +00004904 } else if (MD && MD->isLambdaStaticInvoker()) {
Faisal Valid92e7492017-01-08 18:56:11 +00004905 // Map the static invoker for the lambda back to the call operator.
4906 // Conveniently, we don't have to slice out the 'this' argument (as is
4907 // being done for the non-static case), since a static member function
4908 // doesn't have an implicit argument passed in.
4909 const CXXRecordDecl *ClosureClass = MD->getParent();
4910 assert(
4911 ClosureClass->captures_begin() == ClosureClass->captures_end() &&
4912 "Number of captures must be zero for conversion to function-ptr");
4913
4914 const CXXMethodDecl *LambdaCallOp =
4915 ClosureClass->getLambdaCallOperator();
4916
4917 // Set 'FD', the function that will be called below, to the call
4918 // operator. If the closure object represents a generic lambda, find
4919 // the corresponding specialization of the call operator.
4920
4921 if (ClosureClass->isGenericLambda()) {
4922 assert(MD->isFunctionTemplateSpecialization() &&
4923 "A generic lambda's static-invoker function must be a "
4924 "template specialization");
4925 const TemplateArgumentList *TAL = MD->getTemplateSpecializationArgs();
4926 FunctionTemplateDecl *CallOpTemplate =
4927 LambdaCallOp->getDescribedFunctionTemplate();
4928 void *InsertPos = nullptr;
4929 FunctionDecl *CorrespondingCallOpSpecialization =
4930 CallOpTemplate->findSpecialization(TAL->asArray(), InsertPos);
4931 assert(CorrespondingCallOpSpecialization &&
4932 "We must always have a function call operator specialization "
4933 "that corresponds to our static invoker specialization");
4934 FD = cast<CXXMethodDecl>(CorrespondingCallOpSpecialization);
4935 } else
4936 FD = LambdaCallOp;
Richard Smithe97cbd72011-11-11 04:05:33 +00004937 }
4938
Fangrui Song6907ce22018-07-30 19:24:48 +00004939
Richard Smithe97cbd72011-11-11 04:05:33 +00004940 } else
Richard Smithf57d8cb2011-12-09 22:58:01 +00004941 return Error(E);
Richard Smith254a73d2011-10-28 22:34:42 +00004942
Richard Smith47b34932012-02-01 02:39:43 +00004943 if (This && !This->checkSubobject(Info, E, CSK_This))
4944 return false;
4945
Richard Smith3607ffe2012-02-13 03:54:03 +00004946 // DR1358 allows virtual constexpr functions in some cases. Don't allow
4947 // calls to such functions in constant expressions.
4948 if (This && !HasQualifier &&
4949 isa<CXXMethodDecl>(FD) && cast<CXXMethodDecl>(FD)->isVirtual())
4950 return Error(E, diag::note_constexpr_virtual_call);
4951
Craig Topper36250ad2014-05-12 05:36:57 +00004952 const FunctionDecl *Definition = nullptr;
Richard Smith254a73d2011-10-28 22:34:42 +00004953 Stmt *Body = FD->getBody(Definition);
Richard Smith254a73d2011-10-28 22:34:42 +00004954
Nick Lewycky13073a62017-06-12 21:15:44 +00004955 if (!CheckConstexprFunction(Info, E->getExprLoc(), FD, Definition, Body) ||
4956 !HandleFunctionCall(E->getExprLoc(), Definition, This, Args, Body, Info,
Richard Smith52a980a2015-08-28 02:43:42 +00004957 Result, ResultSlot))
Richard Smithf57d8cb2011-12-09 22:58:01 +00004958 return false;
4959
Richard Smith52a980a2015-08-28 02:43:42 +00004960 return true;
Richard Smith254a73d2011-10-28 22:34:42 +00004961 }
4962
Aaron Ballman68af21c2014-01-03 19:26:43 +00004963 bool VisitCompoundLiteralExpr(const CompoundLiteralExpr *E) {
Richard Smith11562c52011-10-28 17:51:58 +00004964 return StmtVisitorTy::Visit(E->getInitializer());
4965 }
Aaron Ballman68af21c2014-01-03 19:26:43 +00004966 bool VisitInitListExpr(const InitListExpr *E) {
Eli Friedman90dc1752012-01-03 23:54:05 +00004967 if (E->getNumInits() == 0)
4968 return DerivedZeroInitialization(E);
4969 if (E->getNumInits() == 1)
4970 return StmtVisitorTy::Visit(E->getInit(0));
Richard Smithf57d8cb2011-12-09 22:58:01 +00004971 return Error(E);
Richard Smith4ce706a2011-10-11 21:43:33 +00004972 }
Aaron Ballman68af21c2014-01-03 19:26:43 +00004973 bool VisitImplicitValueInitExpr(const ImplicitValueInitExpr *E) {
Richard Smithfddd3842011-12-30 21:15:51 +00004974 return DerivedZeroInitialization(E);
Richard Smith4ce706a2011-10-11 21:43:33 +00004975 }
Aaron Ballman68af21c2014-01-03 19:26:43 +00004976 bool VisitCXXScalarValueInitExpr(const CXXScalarValueInitExpr *E) {
Richard Smithfddd3842011-12-30 21:15:51 +00004977 return DerivedZeroInitialization(E);
Richard Smith4ce706a2011-10-11 21:43:33 +00004978 }
Aaron Ballman68af21c2014-01-03 19:26:43 +00004979 bool VisitCXXNullPtrLiteralExpr(const CXXNullPtrLiteralExpr *E) {
Richard Smithfddd3842011-12-30 21:15:51 +00004980 return DerivedZeroInitialization(E);
Richard Smith027bf112011-11-17 22:56:20 +00004981 }
Richard Smith4ce706a2011-10-11 21:43:33 +00004982
Richard Smithd62306a2011-11-10 06:34:14 +00004983 /// A member expression where the object is a prvalue is itself a prvalue.
Aaron Ballman68af21c2014-01-03 19:26:43 +00004984 bool VisitMemberExpr(const MemberExpr *E) {
Richard Smithd62306a2011-11-10 06:34:14 +00004985 assert(!E->isArrow() && "missing call to bound member function?");
4986
Richard Smith2e312c82012-03-03 22:46:17 +00004987 APValue Val;
Richard Smithd62306a2011-11-10 06:34:14 +00004988 if (!Evaluate(Val, Info, E->getBase()))
4989 return false;
4990
4991 QualType BaseTy = E->getBase()->getType();
4992
4993 const FieldDecl *FD = dyn_cast<FieldDecl>(E->getMemberDecl());
Richard Smithf57d8cb2011-12-09 22:58:01 +00004994 if (!FD) return Error(E);
Richard Smithd62306a2011-11-10 06:34:14 +00004995 assert(!FD->getType()->isReferenceType() && "prvalue reference?");
Ted Kremenek28831752012-08-23 20:46:57 +00004996 assert(BaseTy->castAs<RecordType>()->getDecl()->getCanonicalDecl() ==
Richard Smithd62306a2011-11-10 06:34:14 +00004997 FD->getParent()->getCanonicalDecl() && "record / field mismatch");
4998
Richard Smith9defb7d2018-02-21 03:38:30 +00004999 CompleteObject Obj(&Val, BaseTy, true);
Richard Smitha8105bc2012-01-06 16:39:00 +00005000 SubobjectDesignator Designator(BaseTy);
5001 Designator.addDeclUnchecked(FD);
Richard Smithd62306a2011-11-10 06:34:14 +00005002
Richard Smith3229b742013-05-05 21:17:10 +00005003 APValue Result;
5004 return extractSubobject(Info, E, Obj, Designator, Result) &&
5005 DerivedSuccess(Result, E);
Richard Smithd62306a2011-11-10 06:34:14 +00005006 }
5007
Aaron Ballman68af21c2014-01-03 19:26:43 +00005008 bool VisitCastExpr(const CastExpr *E) {
Richard Smith11562c52011-10-28 17:51:58 +00005009 switch (E->getCastKind()) {
5010 default:
5011 break;
5012
Richard Smitha23ab512013-05-23 00:30:41 +00005013 case CK_AtomicToNonAtomic: {
5014 APValue AtomicVal;
Richard Smith64cb9ca2017-02-22 22:09:50 +00005015 // This does not need to be done in place even for class/array types:
5016 // atomic-to-non-atomic conversion implies copying the object
5017 // representation.
5018 if (!Evaluate(AtomicVal, Info, E->getSubExpr()))
Richard Smitha23ab512013-05-23 00:30:41 +00005019 return false;
5020 return DerivedSuccess(AtomicVal, E);
5021 }
5022
Richard Smith11562c52011-10-28 17:51:58 +00005023 case CK_NoOp:
Richard Smith4ef685b2012-01-17 21:17:26 +00005024 case CK_UserDefinedConversion:
Richard Smith11562c52011-10-28 17:51:58 +00005025 return StmtVisitorTy::Visit(E->getSubExpr());
5026
5027 case CK_LValueToRValue: {
5028 LValue LVal;
Richard Smithf57d8cb2011-12-09 22:58:01 +00005029 if (!EvaluateLValue(E->getSubExpr(), LVal, Info))
5030 return false;
Richard Smith2e312c82012-03-03 22:46:17 +00005031 APValue RVal;
Richard Smithc82fae62012-02-05 01:23:16 +00005032 // Note, we use the subexpression's type in order to retain cv-qualifiers.
Richard Smith243ef902013-05-05 23:31:59 +00005033 if (!handleLValueToRValueConversion(Info, E, E->getSubExpr()->getType(),
Richard Smithc82fae62012-02-05 01:23:16 +00005034 LVal, RVal))
Richard Smithf57d8cb2011-12-09 22:58:01 +00005035 return false;
5036 return DerivedSuccess(RVal, E);
Richard Smith11562c52011-10-28 17:51:58 +00005037 }
5038 }
5039
Richard Smithf57d8cb2011-12-09 22:58:01 +00005040 return Error(E);
Richard Smith11562c52011-10-28 17:51:58 +00005041 }
5042
Aaron Ballman68af21c2014-01-03 19:26:43 +00005043 bool VisitUnaryPostInc(const UnaryOperator *UO) {
Richard Smith243ef902013-05-05 23:31:59 +00005044 return VisitUnaryPostIncDec(UO);
5045 }
Aaron Ballman68af21c2014-01-03 19:26:43 +00005046 bool VisitUnaryPostDec(const UnaryOperator *UO) {
Richard Smith243ef902013-05-05 23:31:59 +00005047 return VisitUnaryPostIncDec(UO);
5048 }
Aaron Ballman68af21c2014-01-03 19:26:43 +00005049 bool VisitUnaryPostIncDec(const UnaryOperator *UO) {
Aaron Ballmandd69ef32014-08-19 15:55:55 +00005050 if (!Info.getLangOpts().CPlusPlus14 && !Info.keepEvaluatingAfterFailure())
Richard Smith243ef902013-05-05 23:31:59 +00005051 return Error(UO);
5052
5053 LValue LVal;
5054 if (!EvaluateLValue(UO->getSubExpr(), LVal, Info))
5055 return false;
5056 APValue RVal;
5057 if (!handleIncDec(this->Info, UO, LVal, UO->getSubExpr()->getType(),
5058 UO->isIncrementOp(), &RVal))
5059 return false;
5060 return DerivedSuccess(RVal, UO);
5061 }
5062
Aaron Ballman68af21c2014-01-03 19:26:43 +00005063 bool VisitStmtExpr(const StmtExpr *E) {
Richard Smith51f03172013-06-20 03:00:05 +00005064 // We will have checked the full-expressions inside the statement expression
5065 // when they were completed, and don't need to check them again now.
Richard Smith6d4c6582013-11-05 22:18:15 +00005066 if (Info.checkingForOverflow())
Richard Smith51f03172013-06-20 03:00:05 +00005067 return Error(E);
5068
Richard Smith08d6a2c2013-07-24 07:11:57 +00005069 BlockScopeRAII Scope(Info);
Richard Smith51f03172013-06-20 03:00:05 +00005070 const CompoundStmt *CS = E->getSubStmt();
Jonathan Roelofs104cbf92015-06-01 16:23:08 +00005071 if (CS->body_empty())
5072 return true;
5073
Richard Smith51f03172013-06-20 03:00:05 +00005074 for (CompoundStmt::const_body_iterator BI = CS->body_begin(),
5075 BE = CS->body_end();
5076 /**/; ++BI) {
5077 if (BI + 1 == BE) {
5078 const Expr *FinalExpr = dyn_cast<Expr>(*BI);
5079 if (!FinalExpr) {
Faisal Valie690b7a2016-07-02 22:34:24 +00005080 Info.FFDiag((*BI)->getLocStart(),
Richard Smith51f03172013-06-20 03:00:05 +00005081 diag::note_constexpr_stmt_expr_unsupported);
5082 return false;
5083 }
5084 return this->Visit(FinalExpr);
5085 }
5086
5087 APValue ReturnValue;
Richard Smith52a980a2015-08-28 02:43:42 +00005088 StmtResult Result = { ReturnValue, nullptr };
5089 EvalStmtResult ESR = EvaluateStmt(Result, Info, *BI);
Richard Smith51f03172013-06-20 03:00:05 +00005090 if (ESR != ESR_Succeeded) {
5091 // FIXME: If the statement-expression terminated due to 'return',
5092 // 'break', or 'continue', it would be nice to propagate that to
5093 // the outer statement evaluation rather than bailing out.
5094 if (ESR != ESR_Failed)
Faisal Valie690b7a2016-07-02 22:34:24 +00005095 Info.FFDiag((*BI)->getLocStart(),
Richard Smith51f03172013-06-20 03:00:05 +00005096 diag::note_constexpr_stmt_expr_unsupported);
5097 return false;
5098 }
5099 }
Jonathan Roelofs104cbf92015-06-01 16:23:08 +00005100
5101 llvm_unreachable("Return from function from the loop above.");
Richard Smith51f03172013-06-20 03:00:05 +00005102 }
5103
Richard Smith4a678122011-10-24 18:44:57 +00005104 /// Visit a value which is evaluated, but whose value is ignored.
5105 void VisitIgnoredValue(const Expr *E) {
Richard Smithd9f663b2013-04-22 15:31:51 +00005106 EvaluateIgnoredValue(Info, E);
Richard Smith4a678122011-10-24 18:44:57 +00005107 }
David Majnemere9807b22016-02-26 04:23:19 +00005108
5109 /// Potentially visit a MemberExpr's base expression.
5110 void VisitIgnoredBaseExpression(const Expr *E) {
5111 // While MSVC doesn't evaluate the base expression, it does diagnose the
5112 // presence of side-effecting behavior.
5113 if (Info.getLangOpts().MSVCCompat && !E->HasSideEffects(Info.Ctx))
5114 return;
5115 VisitIgnoredValue(E);
5116 }
Peter Collingbournee9200682011-05-13 03:29:01 +00005117};
5118
Eric Fiselier0683c0e2018-05-07 21:07:10 +00005119} // namespace
Peter Collingbournee9200682011-05-13 03:29:01 +00005120
5121//===----------------------------------------------------------------------===//
Richard Smith027bf112011-11-17 22:56:20 +00005122// Common base class for lvalue and temporary evaluation.
5123//===----------------------------------------------------------------------===//
5124namespace {
5125template<class Derived>
5126class LValueExprEvaluatorBase
Aaron Ballman68af21c2014-01-03 19:26:43 +00005127 : public ExprEvaluatorBase<Derived> {
Richard Smith027bf112011-11-17 22:56:20 +00005128protected:
5129 LValue &Result;
George Burgess IVf9013bf2017-02-10 22:52:29 +00005130 bool InvalidBaseOK;
Richard Smith027bf112011-11-17 22:56:20 +00005131 typedef LValueExprEvaluatorBase LValueExprEvaluatorBaseTy;
Aaron Ballman68af21c2014-01-03 19:26:43 +00005132 typedef ExprEvaluatorBase<Derived> ExprEvaluatorBaseTy;
Richard Smith027bf112011-11-17 22:56:20 +00005133
5134 bool Success(APValue::LValueBase B) {
5135 Result.set(B);
5136 return true;
5137 }
5138
George Burgess IVf9013bf2017-02-10 22:52:29 +00005139 bool evaluatePointer(const Expr *E, LValue &Result) {
5140 return EvaluatePointer(E, Result, this->Info, InvalidBaseOK);
5141 }
5142
Richard Smith027bf112011-11-17 22:56:20 +00005143public:
George Burgess IVf9013bf2017-02-10 22:52:29 +00005144 LValueExprEvaluatorBase(EvalInfo &Info, LValue &Result, bool InvalidBaseOK)
5145 : ExprEvaluatorBaseTy(Info), Result(Result),
5146 InvalidBaseOK(InvalidBaseOK) {}
Richard Smith027bf112011-11-17 22:56:20 +00005147
Richard Smith2e312c82012-03-03 22:46:17 +00005148 bool Success(const APValue &V, const Expr *E) {
5149 Result.setFrom(this->Info.Ctx, V);
Richard Smith027bf112011-11-17 22:56:20 +00005150 return true;
5151 }
Richard Smith027bf112011-11-17 22:56:20 +00005152
Richard Smith027bf112011-11-17 22:56:20 +00005153 bool VisitMemberExpr(const MemberExpr *E) {
5154 // Handle non-static data members.
5155 QualType BaseTy;
George Burgess IV3a03fab2015-09-04 21:28:13 +00005156 bool EvalOK;
Richard Smith027bf112011-11-17 22:56:20 +00005157 if (E->isArrow()) {
George Burgess IVf9013bf2017-02-10 22:52:29 +00005158 EvalOK = evaluatePointer(E->getBase(), Result);
Ted Kremenek28831752012-08-23 20:46:57 +00005159 BaseTy = E->getBase()->getType()->castAs<PointerType>()->getPointeeType();
Richard Smith357362d2011-12-13 06:39:58 +00005160 } else if (E->getBase()->isRValue()) {
Richard Smithd0b111c2011-12-19 22:01:37 +00005161 assert(E->getBase()->getType()->isRecordType());
George Burgess IV3a03fab2015-09-04 21:28:13 +00005162 EvalOK = EvaluateTemporary(E->getBase(), Result, this->Info);
Richard Smith357362d2011-12-13 06:39:58 +00005163 BaseTy = E->getBase()->getType();
Richard Smith027bf112011-11-17 22:56:20 +00005164 } else {
George Burgess IV3a03fab2015-09-04 21:28:13 +00005165 EvalOK = this->Visit(E->getBase());
Richard Smith027bf112011-11-17 22:56:20 +00005166 BaseTy = E->getBase()->getType();
5167 }
George Burgess IV3a03fab2015-09-04 21:28:13 +00005168 if (!EvalOK) {
George Burgess IVf9013bf2017-02-10 22:52:29 +00005169 if (!InvalidBaseOK)
George Burgess IV3a03fab2015-09-04 21:28:13 +00005170 return false;
George Burgess IVa51c4072015-10-16 01:49:01 +00005171 Result.setInvalid(E);
5172 return true;
George Burgess IV3a03fab2015-09-04 21:28:13 +00005173 }
Richard Smith027bf112011-11-17 22:56:20 +00005174
Richard Smith1b78b3d2012-01-25 22:15:11 +00005175 const ValueDecl *MD = E->getMemberDecl();
5176 if (const FieldDecl *FD = dyn_cast<FieldDecl>(E->getMemberDecl())) {
5177 assert(BaseTy->getAs<RecordType>()->getDecl()->getCanonicalDecl() ==
5178 FD->getParent()->getCanonicalDecl() && "record / field mismatch");
5179 (void)BaseTy;
John McCalld7bca762012-05-01 00:38:49 +00005180 if (!HandleLValueMember(this->Info, E, Result, FD))
5181 return false;
Richard Smith1b78b3d2012-01-25 22:15:11 +00005182 } else if (const IndirectFieldDecl *IFD = dyn_cast<IndirectFieldDecl>(MD)) {
John McCalld7bca762012-05-01 00:38:49 +00005183 if (!HandleLValueIndirectMember(this->Info, E, Result, IFD))
5184 return false;
Richard Smith1b78b3d2012-01-25 22:15:11 +00005185 } else
5186 return this->Error(E);
Richard Smith027bf112011-11-17 22:56:20 +00005187
Richard Smith1b78b3d2012-01-25 22:15:11 +00005188 if (MD->getType()->isReferenceType()) {
Richard Smith2e312c82012-03-03 22:46:17 +00005189 APValue RefValue;
Richard Smith243ef902013-05-05 23:31:59 +00005190 if (!handleLValueToRValueConversion(this->Info, E, MD->getType(), Result,
Richard Smith027bf112011-11-17 22:56:20 +00005191 RefValue))
5192 return false;
5193 return Success(RefValue, E);
5194 }
5195 return true;
5196 }
5197
5198 bool VisitBinaryOperator(const BinaryOperator *E) {
5199 switch (E->getOpcode()) {
5200 default:
5201 return ExprEvaluatorBaseTy::VisitBinaryOperator(E);
5202
5203 case BO_PtrMemD:
5204 case BO_PtrMemI:
5205 return HandleMemberPointerAccess(this->Info, E, Result);
5206 }
5207 }
5208
5209 bool VisitCastExpr(const CastExpr *E) {
5210 switch (E->getCastKind()) {
5211 default:
5212 return ExprEvaluatorBaseTy::VisitCastExpr(E);
5213
5214 case CK_DerivedToBase:
Richard Smith84401042013-06-03 05:03:02 +00005215 case CK_UncheckedDerivedToBase:
Richard Smith027bf112011-11-17 22:56:20 +00005216 if (!this->Visit(E->getSubExpr()))
5217 return false;
Richard Smith027bf112011-11-17 22:56:20 +00005218
5219 // Now figure out the necessary offset to add to the base LV to get from
5220 // the derived class to the base class.
Richard Smith84401042013-06-03 05:03:02 +00005221 return HandleLValueBasePath(this->Info, E, E->getSubExpr()->getType(),
5222 Result);
Richard Smith027bf112011-11-17 22:56:20 +00005223 }
5224 }
5225};
Alexander Kornienkoab9db512015-06-22 23:07:51 +00005226}
Richard Smith027bf112011-11-17 22:56:20 +00005227
5228//===----------------------------------------------------------------------===//
Eli Friedman9a156e52008-11-12 09:44:48 +00005229// LValue Evaluation
Richard Smith11562c52011-10-28 17:51:58 +00005230//
5231// This is used for evaluating lvalues (in C and C++), xvalues (in C++11),
5232// function designators (in C), decl references to void objects (in C), and
5233// temporaries (if building with -Wno-address-of-temporary).
5234//
5235// LValue evaluation produces values comprising a base expression of one of the
5236// following types:
Richard Smithce40ad62011-11-12 22:28:03 +00005237// - Declarations
5238// * VarDecl
5239// * FunctionDecl
5240// - Literals
Richard Smithb3189a12016-12-05 07:49:14 +00005241// * CompoundLiteralExpr in C (and in global scope in C++)
Richard Smith11562c52011-10-28 17:51:58 +00005242// * StringLiteral
Richard Smith6e525142011-12-27 12:18:28 +00005243// * CXXTypeidExpr
Richard Smith11562c52011-10-28 17:51:58 +00005244// * PredefinedExpr
Richard Smithd62306a2011-11-10 06:34:14 +00005245// * ObjCStringLiteralExpr
Richard Smith11562c52011-10-28 17:51:58 +00005246// * ObjCEncodeExpr
5247// * AddrLabelExpr
5248// * BlockExpr
5249// * CallExpr for a MakeStringConstant builtin
Richard Smithce40ad62011-11-12 22:28:03 +00005250// - Locals and temporaries
Richard Smith84401042013-06-03 05:03:02 +00005251// * MaterializeTemporaryExpr
Richard Smithb228a862012-02-15 02:18:13 +00005252// * Any Expr, with a CallIndex indicating the function in which the temporary
Richard Smith84401042013-06-03 05:03:02 +00005253// was evaluated, for cases where the MaterializeTemporaryExpr is missing
5254// from the AST (FIXME).
Richard Smithe6c01442013-06-05 00:46:14 +00005255// * A MaterializeTemporaryExpr that has static storage duration, with no
5256// CallIndex, for a lifetime-extended temporary.
Richard Smithce40ad62011-11-12 22:28:03 +00005257// plus an offset in bytes.
Eli Friedman9a156e52008-11-12 09:44:48 +00005258//===----------------------------------------------------------------------===//
5259namespace {
Benjamin Kramer26222b62009-11-28 19:03:38 +00005260class LValueExprEvaluator
Richard Smith027bf112011-11-17 22:56:20 +00005261 : public LValueExprEvaluatorBase<LValueExprEvaluator> {
Eli Friedman9a156e52008-11-12 09:44:48 +00005262public:
George Burgess IVf9013bf2017-02-10 22:52:29 +00005263 LValueExprEvaluator(EvalInfo &Info, LValue &Result, bool InvalidBaseOK) :
5264 LValueExprEvaluatorBaseTy(Info, Result, InvalidBaseOK) {}
Mike Stump11289f42009-09-09 15:08:12 +00005265
Richard Smith11562c52011-10-28 17:51:58 +00005266 bool VisitVarDecl(const Expr *E, const VarDecl *VD);
Richard Smith243ef902013-05-05 23:31:59 +00005267 bool VisitUnaryPreIncDec(const UnaryOperator *UO);
Richard Smith11562c52011-10-28 17:51:58 +00005268
Peter Collingbournee9200682011-05-13 03:29:01 +00005269 bool VisitDeclRefExpr(const DeclRefExpr *E);
5270 bool VisitPredefinedExpr(const PredefinedExpr *E) { return Success(E); }
Richard Smith4e4c78ff2011-10-31 05:52:43 +00005271 bool VisitMaterializeTemporaryExpr(const MaterializeTemporaryExpr *E);
Peter Collingbournee9200682011-05-13 03:29:01 +00005272 bool VisitCompoundLiteralExpr(const CompoundLiteralExpr *E);
5273 bool VisitMemberExpr(const MemberExpr *E);
5274 bool VisitStringLiteral(const StringLiteral *E) { return Success(E); }
5275 bool VisitObjCEncodeExpr(const ObjCEncodeExpr *E) { return Success(E); }
Richard Smith6e525142011-12-27 12:18:28 +00005276 bool VisitCXXTypeidExpr(const CXXTypeidExpr *E);
Francois Pichet0066db92012-04-16 04:08:35 +00005277 bool VisitCXXUuidofExpr(const CXXUuidofExpr *E);
Peter Collingbournee9200682011-05-13 03:29:01 +00005278 bool VisitArraySubscriptExpr(const ArraySubscriptExpr *E);
5279 bool VisitUnaryDeref(const UnaryOperator *E);
Richard Smith66c96992012-02-18 22:04:06 +00005280 bool VisitUnaryReal(const UnaryOperator *E);
5281 bool VisitUnaryImag(const UnaryOperator *E);
Richard Smith243ef902013-05-05 23:31:59 +00005282 bool VisitUnaryPreInc(const UnaryOperator *UO) {
5283 return VisitUnaryPreIncDec(UO);
5284 }
5285 bool VisitUnaryPreDec(const UnaryOperator *UO) {
5286 return VisitUnaryPreIncDec(UO);
5287 }
Richard Smith3229b742013-05-05 21:17:10 +00005288 bool VisitBinAssign(const BinaryOperator *BO);
5289 bool VisitCompoundAssignOperator(const CompoundAssignOperator *CAO);
Anders Carlssonde55f642009-10-03 16:30:22 +00005290
Peter Collingbournee9200682011-05-13 03:29:01 +00005291 bool VisitCastExpr(const CastExpr *E) {
Anders Carlssonde55f642009-10-03 16:30:22 +00005292 switch (E->getCastKind()) {
5293 default:
Richard Smith027bf112011-11-17 22:56:20 +00005294 return LValueExprEvaluatorBaseTy::VisitCastExpr(E);
Anders Carlssonde55f642009-10-03 16:30:22 +00005295
Eli Friedmance3e02a2011-10-11 00:13:24 +00005296 case CK_LValueBitCast:
Richard Smith6d6ecc32011-12-12 12:46:16 +00005297 this->CCEDiag(E, diag::note_constexpr_invalid_cast) << 2;
Richard Smith96e0c102011-11-04 02:25:55 +00005298 if (!Visit(E->getSubExpr()))
5299 return false;
5300 Result.Designator.setInvalid();
5301 return true;
Eli Friedmance3e02a2011-10-11 00:13:24 +00005302
Richard Smith027bf112011-11-17 22:56:20 +00005303 case CK_BaseToDerived:
Richard Smithd62306a2011-11-10 06:34:14 +00005304 if (!Visit(E->getSubExpr()))
5305 return false;
Richard Smith027bf112011-11-17 22:56:20 +00005306 return HandleBaseToDerivedCast(Info, E, Result);
Anders Carlssonde55f642009-10-03 16:30:22 +00005307 }
5308 }
Eli Friedman9a156e52008-11-12 09:44:48 +00005309};
5310} // end anonymous namespace
5311
Richard Smith11562c52011-10-28 17:51:58 +00005312/// Evaluate an expression as an lvalue. This can be legitimately called on
Nico Weber96775622015-09-15 23:17:17 +00005313/// expressions which are not glvalues, in three cases:
Richard Smith9f8400e2013-05-01 19:00:39 +00005314/// * function designators in C, and
5315/// * "extern void" objects
Nico Weber96775622015-09-15 23:17:17 +00005316/// * @selector() expressions in Objective-C
George Burgess IVf9013bf2017-02-10 22:52:29 +00005317static bool EvaluateLValue(const Expr *E, LValue &Result, EvalInfo &Info,
5318 bool InvalidBaseOK) {
Richard Smith9f8400e2013-05-01 19:00:39 +00005319 assert(E->isGLValue() || E->getType()->isFunctionType() ||
Nico Weber96775622015-09-15 23:17:17 +00005320 E->getType()->isVoidType() || isa<ObjCSelectorExpr>(E));
George Burgess IVf9013bf2017-02-10 22:52:29 +00005321 return LValueExprEvaluator(Info, Result, InvalidBaseOK).Visit(E);
Eli Friedman9a156e52008-11-12 09:44:48 +00005322}
5323
Peter Collingbournee9200682011-05-13 03:29:01 +00005324bool LValueExprEvaluator::VisitDeclRefExpr(const DeclRefExpr *E) {
David Majnemer0c43d802014-06-25 08:15:07 +00005325 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(E->getDecl()))
Richard Smithce40ad62011-11-12 22:28:03 +00005326 return Success(FD);
5327 if (const VarDecl *VD = dyn_cast<VarDecl>(E->getDecl()))
Richard Smith11562c52011-10-28 17:51:58 +00005328 return VisitVarDecl(E, VD);
Richard Smithdca60b42016-08-12 00:39:32 +00005329 if (const BindingDecl *BD = dyn_cast<BindingDecl>(E->getDecl()))
Richard Smith97fcf4b2016-08-14 23:15:52 +00005330 return Visit(BD->getBinding());
Richard Smith11562c52011-10-28 17:51:58 +00005331 return Error(E);
5332}
Richard Smith733237d2011-10-24 23:14:33 +00005333
Faisal Vali0528a312016-11-13 06:09:16 +00005334
Richard Smith11562c52011-10-28 17:51:58 +00005335bool LValueExprEvaluator::VisitVarDecl(const Expr *E, const VarDecl *VD) {
Faisal Vali051e3a22017-02-16 04:12:21 +00005336
5337 // If we are within a lambda's call operator, check whether the 'VD' referred
5338 // to within 'E' actually represents a lambda-capture that maps to a
5339 // data-member/field within the closure object, and if so, evaluate to the
5340 // field or what the field refers to.
Erik Pilkington11232912018-04-05 00:12:05 +00005341 if (Info.CurrentCall && isLambdaCallOperator(Info.CurrentCall->Callee) &&
5342 isa<DeclRefExpr>(E) &&
5343 cast<DeclRefExpr>(E)->refersToEnclosingVariableOrCapture()) {
5344 // We don't always have a complete capture-map when checking or inferring if
5345 // the function call operator meets the requirements of a constexpr function
5346 // - but we don't need to evaluate the captures to determine constexprness
5347 // (dcl.constexpr C++17).
5348 if (Info.checkingPotentialConstantExpression())
5349 return false;
5350
Faisal Vali051e3a22017-02-16 04:12:21 +00005351 if (auto *FD = Info.CurrentCall->LambdaCaptureFields.lookup(VD)) {
Faisal Vali051e3a22017-02-16 04:12:21 +00005352 // Start with 'Result' referring to the complete closure object...
5353 Result = *Info.CurrentCall->This;
5354 // ... then update it to refer to the field of the closure object
5355 // that represents the capture.
5356 if (!HandleLValueMember(Info, E, Result, FD))
5357 return false;
5358 // And if the field is of reference type, update 'Result' to refer to what
5359 // the field refers to.
5360 if (FD->getType()->isReferenceType()) {
5361 APValue RVal;
5362 if (!handleLValueToRValueConversion(Info, E, FD->getType(), Result,
5363 RVal))
5364 return false;
5365 Result.setFrom(Info.Ctx, RVal);
5366 }
5367 return true;
5368 }
5369 }
Craig Topper36250ad2014-05-12 05:36:57 +00005370 CallStackFrame *Frame = nullptr;
Faisal Vali0528a312016-11-13 06:09:16 +00005371 if (VD->hasLocalStorage() && Info.CurrentCall->Index > 1) {
5372 // Only if a local variable was declared in the function currently being
5373 // evaluated, do we expect to be able to find its value in the current
5374 // frame. (Otherwise it was likely declared in an enclosing context and
5375 // could either have a valid evaluatable value (for e.g. a constexpr
5376 // variable) or be ill-formed (and trigger an appropriate evaluation
5377 // diagnostic)).
5378 if (Info.CurrentCall->Callee &&
5379 Info.CurrentCall->Callee->Equals(VD->getDeclContext())) {
5380 Frame = Info.CurrentCall;
5381 }
5382 }
Richard Smith3229b742013-05-05 21:17:10 +00005383
Richard Smithfec09922011-11-01 16:57:24 +00005384 if (!VD->getType()->isReferenceType()) {
Richard Smith3229b742013-05-05 21:17:10 +00005385 if (Frame) {
Akira Hatanaka4e2698c2018-04-10 05:15:01 +00005386 Result.set({VD, Frame->Index,
5387 Info.CurrentCall->getCurrentTemporaryVersion(VD)});
Richard Smithfec09922011-11-01 16:57:24 +00005388 return true;
5389 }
Richard Smithce40ad62011-11-12 22:28:03 +00005390 return Success(VD);
Richard Smithfec09922011-11-01 16:57:24 +00005391 }
Eli Friedman751aa72b72009-05-27 06:04:58 +00005392
Richard Smith3229b742013-05-05 21:17:10 +00005393 APValue *V;
Akira Hatanaka4e2698c2018-04-10 05:15:01 +00005394 if (!evaluateVarDeclInit(Info, E, VD, Frame, V, nullptr))
Richard Smithf57d8cb2011-12-09 22:58:01 +00005395 return false;
Richard Smith08d6a2c2013-07-24 07:11:57 +00005396 if (V->isUninit()) {
Richard Smith6d4c6582013-11-05 22:18:15 +00005397 if (!Info.checkingPotentialConstantExpression())
Faisal Valie690b7a2016-07-02 22:34:24 +00005398 Info.FFDiag(E, diag::note_constexpr_use_uninit_reference);
Richard Smith08d6a2c2013-07-24 07:11:57 +00005399 return false;
5400 }
Richard Smith3229b742013-05-05 21:17:10 +00005401 return Success(*V, E);
Anders Carlssona42ee442008-11-24 04:41:22 +00005402}
5403
Richard Smith4e4c78ff2011-10-31 05:52:43 +00005404bool LValueExprEvaluator::VisitMaterializeTemporaryExpr(
5405 const MaterializeTemporaryExpr *E) {
Richard Smith84401042013-06-03 05:03:02 +00005406 // Walk through the expression to find the materialized temporary itself.
5407 SmallVector<const Expr *, 2> CommaLHSs;
5408 SmallVector<SubobjectAdjustment, 2> Adjustments;
5409 const Expr *Inner = E->GetTemporaryExpr()->
5410 skipRValueSubobjectAdjustments(CommaLHSs, Adjustments);
Richard Smith027bf112011-11-17 22:56:20 +00005411
Richard Smith84401042013-06-03 05:03:02 +00005412 // If we passed any comma operators, evaluate their LHSs.
5413 for (unsigned I = 0, N = CommaLHSs.size(); I != N; ++I)
5414 if (!EvaluateIgnoredValue(Info, CommaLHSs[I]))
5415 return false;
5416
Richard Smithe6c01442013-06-05 00:46:14 +00005417 // A materialized temporary with static storage duration can appear within the
5418 // result of a constant expression evaluation, so we need to preserve its
5419 // value for use outside this evaluation.
5420 APValue *Value;
5421 if (E->getStorageDuration() == SD_Static) {
5422 Value = Info.Ctx.getMaterializedTemporaryValue(E, true);
Richard Smitha509f2f2013-06-14 03:07:01 +00005423 *Value = APValue();
Richard Smithe6c01442013-06-05 00:46:14 +00005424 Result.set(E);
5425 } else {
Akira Hatanaka4e2698c2018-04-10 05:15:01 +00005426 Value = &createTemporary(E, E->getStorageDuration() == SD_Automatic, Result,
5427 *Info.CurrentCall);
Richard Smithe6c01442013-06-05 00:46:14 +00005428 }
5429
Richard Smithea4ad5d2013-06-06 08:19:16 +00005430 QualType Type = Inner->getType();
5431
Richard Smith84401042013-06-03 05:03:02 +00005432 // Materialize the temporary itself.
Richard Smithea4ad5d2013-06-06 08:19:16 +00005433 if (!EvaluateInPlace(*Value, Info, Result, Inner) ||
5434 (E->getStorageDuration() == SD_Static &&
5435 !CheckConstantExpression(Info, E->getExprLoc(), Type, *Value))) {
5436 *Value = APValue();
Richard Smith84401042013-06-03 05:03:02 +00005437 return false;
Richard Smithea4ad5d2013-06-06 08:19:16 +00005438 }
Richard Smith84401042013-06-03 05:03:02 +00005439
5440 // Adjust our lvalue to refer to the desired subobject.
Richard Smith84401042013-06-03 05:03:02 +00005441 for (unsigned I = Adjustments.size(); I != 0; /**/) {
5442 --I;
5443 switch (Adjustments[I].Kind) {
5444 case SubobjectAdjustment::DerivedToBaseAdjustment:
5445 if (!HandleLValueBasePath(Info, Adjustments[I].DerivedToBase.BasePath,
5446 Type, Result))
5447 return false;
5448 Type = Adjustments[I].DerivedToBase.BasePath->getType();
5449 break;
5450
5451 case SubobjectAdjustment::FieldAdjustment:
5452 if (!HandleLValueMember(Info, E, Result, Adjustments[I].Field))
5453 return false;
5454 Type = Adjustments[I].Field->getType();
5455 break;
5456
5457 case SubobjectAdjustment::MemberPointerAdjustment:
5458 if (!HandleMemberPointerAccess(this->Info, Type, Result,
5459 Adjustments[I].Ptr.RHS))
5460 return false;
5461 Type = Adjustments[I].Ptr.MPT->getPointeeType();
5462 break;
5463 }
5464 }
5465
5466 return true;
Richard Smith4e4c78ff2011-10-31 05:52:43 +00005467}
5468
Peter Collingbournee9200682011-05-13 03:29:01 +00005469bool
5470LValueExprEvaluator::VisitCompoundLiteralExpr(const CompoundLiteralExpr *E) {
Richard Smithb3189a12016-12-05 07:49:14 +00005471 assert((!Info.getLangOpts().CPlusPlus || E->isFileScope()) &&
5472 "lvalue compound literal in c++?");
Richard Smith11562c52011-10-28 17:51:58 +00005473 // Defer visiting the literal until the lvalue-to-rvalue conversion. We can
5474 // only see this when folding in C, so there's no standard to follow here.
John McCall45d55e42010-05-07 21:00:08 +00005475 return Success(E);
Eli Friedman9a156e52008-11-12 09:44:48 +00005476}
5477
Richard Smith6e525142011-12-27 12:18:28 +00005478bool LValueExprEvaluator::VisitCXXTypeidExpr(const CXXTypeidExpr *E) {
Richard Smith6f3d4352012-10-17 23:52:07 +00005479 if (!E->isPotentiallyEvaluated())
Richard Smith6e525142011-12-27 12:18:28 +00005480 return Success(E);
Richard Smith6f3d4352012-10-17 23:52:07 +00005481
Faisal Valie690b7a2016-07-02 22:34:24 +00005482 Info.FFDiag(E, diag::note_constexpr_typeid_polymorphic)
Richard Smith6f3d4352012-10-17 23:52:07 +00005483 << E->getExprOperand()->getType()
5484 << E->getExprOperand()->getSourceRange();
5485 return false;
Richard Smith6e525142011-12-27 12:18:28 +00005486}
5487
Francois Pichet0066db92012-04-16 04:08:35 +00005488bool LValueExprEvaluator::VisitCXXUuidofExpr(const CXXUuidofExpr *E) {
5489 return Success(E);
Richard Smith3229b742013-05-05 21:17:10 +00005490}
Francois Pichet0066db92012-04-16 04:08:35 +00005491
Peter Collingbournee9200682011-05-13 03:29:01 +00005492bool LValueExprEvaluator::VisitMemberExpr(const MemberExpr *E) {
Richard Smith11562c52011-10-28 17:51:58 +00005493 // Handle static data members.
5494 if (const VarDecl *VD = dyn_cast<VarDecl>(E->getMemberDecl())) {
David Majnemere9807b22016-02-26 04:23:19 +00005495 VisitIgnoredBaseExpression(E->getBase());
Richard Smith11562c52011-10-28 17:51:58 +00005496 return VisitVarDecl(E, VD);
5497 }
5498
Richard Smith254a73d2011-10-28 22:34:42 +00005499 // Handle static member functions.
5500 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(E->getMemberDecl())) {
5501 if (MD->isStatic()) {
David Majnemere9807b22016-02-26 04:23:19 +00005502 VisitIgnoredBaseExpression(E->getBase());
Richard Smithce40ad62011-11-12 22:28:03 +00005503 return Success(MD);
Richard Smith254a73d2011-10-28 22:34:42 +00005504 }
5505 }
5506
Richard Smithd62306a2011-11-10 06:34:14 +00005507 // Handle non-static data members.
Richard Smith027bf112011-11-17 22:56:20 +00005508 return LValueExprEvaluatorBaseTy::VisitMemberExpr(E);
Eli Friedman9a156e52008-11-12 09:44:48 +00005509}
5510
Peter Collingbournee9200682011-05-13 03:29:01 +00005511bool LValueExprEvaluator::VisitArraySubscriptExpr(const ArraySubscriptExpr *E) {
Richard Smith11562c52011-10-28 17:51:58 +00005512 // FIXME: Deal with vectors as array subscript bases.
5513 if (E->getBase()->getType()->isVectorType())
Richard Smithf57d8cb2011-12-09 22:58:01 +00005514 return Error(E);
Richard Smith11562c52011-10-28 17:51:58 +00005515
Nick Lewyckyad888682017-04-27 07:27:36 +00005516 bool Success = true;
5517 if (!evaluatePointer(E->getBase(), Result)) {
5518 if (!Info.noteFailure())
5519 return false;
5520 Success = false;
5521 }
Mike Stump11289f42009-09-09 15:08:12 +00005522
Anders Carlsson9f9e4242008-11-16 19:01:22 +00005523 APSInt Index;
5524 if (!EvaluateInteger(E->getIdx(), Index, Info))
John McCall45d55e42010-05-07 21:00:08 +00005525 return false;
Anders Carlsson9f9e4242008-11-16 19:01:22 +00005526
Nick Lewyckyad888682017-04-27 07:27:36 +00005527 return Success &&
5528 HandleLValueArrayAdjustment(Info, E, Result, E->getType(), Index);
Anders Carlsson9f9e4242008-11-16 19:01:22 +00005529}
Eli Friedman9a156e52008-11-12 09:44:48 +00005530
Peter Collingbournee9200682011-05-13 03:29:01 +00005531bool LValueExprEvaluator::VisitUnaryDeref(const UnaryOperator *E) {
George Burgess IVf9013bf2017-02-10 22:52:29 +00005532 return evaluatePointer(E->getSubExpr(), Result);
Eli Friedman0b8337c2009-02-20 01:57:15 +00005533}
5534
Richard Smith66c96992012-02-18 22:04:06 +00005535bool LValueExprEvaluator::VisitUnaryReal(const UnaryOperator *E) {
5536 if (!Visit(E->getSubExpr()))
5537 return false;
5538 // __real is a no-op on scalar lvalues.
5539 if (E->getSubExpr()->getType()->isAnyComplexType())
5540 HandleLValueComplexElement(Info, E, Result, E->getType(), false);
5541 return true;
5542}
5543
5544bool LValueExprEvaluator::VisitUnaryImag(const UnaryOperator *E) {
5545 assert(E->getSubExpr()->getType()->isAnyComplexType() &&
5546 "lvalue __imag__ on scalar?");
5547 if (!Visit(E->getSubExpr()))
5548 return false;
5549 HandleLValueComplexElement(Info, E, Result, E->getType(), true);
5550 return true;
5551}
5552
Richard Smith243ef902013-05-05 23:31:59 +00005553bool LValueExprEvaluator::VisitUnaryPreIncDec(const UnaryOperator *UO) {
Aaron Ballmandd69ef32014-08-19 15:55:55 +00005554 if (!Info.getLangOpts().CPlusPlus14 && !Info.keepEvaluatingAfterFailure())
Richard Smith3229b742013-05-05 21:17:10 +00005555 return Error(UO);
5556
5557 if (!this->Visit(UO->getSubExpr()))
5558 return false;
5559
Richard Smith243ef902013-05-05 23:31:59 +00005560 return handleIncDec(
5561 this->Info, UO, Result, UO->getSubExpr()->getType(),
Craig Topper36250ad2014-05-12 05:36:57 +00005562 UO->isIncrementOp(), nullptr);
Richard Smith3229b742013-05-05 21:17:10 +00005563}
5564
5565bool LValueExprEvaluator::VisitCompoundAssignOperator(
5566 const CompoundAssignOperator *CAO) {
Aaron Ballmandd69ef32014-08-19 15:55:55 +00005567 if (!Info.getLangOpts().CPlusPlus14 && !Info.keepEvaluatingAfterFailure())
Richard Smith3229b742013-05-05 21:17:10 +00005568 return Error(CAO);
5569
Richard Smith3229b742013-05-05 21:17:10 +00005570 APValue RHS;
Richard Smith243ef902013-05-05 23:31:59 +00005571
5572 // The overall lvalue result is the result of evaluating the LHS.
5573 if (!this->Visit(CAO->getLHS())) {
George Burgess IVa145e252016-05-25 22:38:36 +00005574 if (Info.noteFailure())
Richard Smith243ef902013-05-05 23:31:59 +00005575 Evaluate(RHS, this->Info, CAO->getRHS());
5576 return false;
5577 }
5578
Richard Smith3229b742013-05-05 21:17:10 +00005579 if (!Evaluate(RHS, this->Info, CAO->getRHS()))
5580 return false;
5581
Richard Smith43e77732013-05-07 04:50:00 +00005582 return handleCompoundAssignment(
5583 this->Info, CAO,
5584 Result, CAO->getLHS()->getType(), CAO->getComputationLHSType(),
5585 CAO->getOpForCompoundAssignment(CAO->getOpcode()), RHS);
Richard Smith3229b742013-05-05 21:17:10 +00005586}
5587
5588bool LValueExprEvaluator::VisitBinAssign(const BinaryOperator *E) {
Aaron Ballmandd69ef32014-08-19 15:55:55 +00005589 if (!Info.getLangOpts().CPlusPlus14 && !Info.keepEvaluatingAfterFailure())
Richard Smith243ef902013-05-05 23:31:59 +00005590 return Error(E);
5591
Richard Smith3229b742013-05-05 21:17:10 +00005592 APValue NewVal;
Richard Smith243ef902013-05-05 23:31:59 +00005593
5594 if (!this->Visit(E->getLHS())) {
George Burgess IVa145e252016-05-25 22:38:36 +00005595 if (Info.noteFailure())
Richard Smith243ef902013-05-05 23:31:59 +00005596 Evaluate(NewVal, this->Info, E->getRHS());
5597 return false;
5598 }
5599
Richard Smith3229b742013-05-05 21:17:10 +00005600 if (!Evaluate(NewVal, this->Info, E->getRHS()))
5601 return false;
Richard Smith243ef902013-05-05 23:31:59 +00005602
5603 return handleAssignment(this->Info, E, Result, E->getLHS()->getType(),
Richard Smith3229b742013-05-05 21:17:10 +00005604 NewVal);
5605}
5606
Eli Friedman9a156e52008-11-12 09:44:48 +00005607//===----------------------------------------------------------------------===//
Chris Lattner05706e882008-07-11 18:11:29 +00005608// Pointer Evaluation
5609//===----------------------------------------------------------------------===//
5610
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00005611/// Attempts to compute the number of bytes available at the pointer
George Burgess IVe3763372016-12-22 02:50:20 +00005612/// returned by a function with the alloc_size attribute. Returns true if we
5613/// were successful. Places an unsigned number into `Result`.
5614///
5615/// This expects the given CallExpr to be a call to a function with an
5616/// alloc_size attribute.
5617static bool getBytesReturnedByAllocSizeCall(const ASTContext &Ctx,
5618 const CallExpr *Call,
5619 llvm::APInt &Result) {
5620 const AllocSizeAttr *AllocSize = getAllocSizeAttr(Call);
5621
Joel E. Denny81508102018-03-13 14:51:22 +00005622 assert(AllocSize && AllocSize->getElemSizeParam().isValid());
5623 unsigned SizeArgNo = AllocSize->getElemSizeParam().getASTIndex();
George Burgess IVe3763372016-12-22 02:50:20 +00005624 unsigned BitsInSizeT = Ctx.getTypeSize(Ctx.getSizeType());
5625 if (Call->getNumArgs() <= SizeArgNo)
5626 return false;
5627
5628 auto EvaluateAsSizeT = [&](const Expr *E, APSInt &Into) {
5629 if (!E->EvaluateAsInt(Into, Ctx, Expr::SE_AllowSideEffects))
5630 return false;
5631 if (Into.isNegative() || !Into.isIntN(BitsInSizeT))
5632 return false;
5633 Into = Into.zextOrSelf(BitsInSizeT);
5634 return true;
5635 };
5636
5637 APSInt SizeOfElem;
5638 if (!EvaluateAsSizeT(Call->getArg(SizeArgNo), SizeOfElem))
5639 return false;
5640
Joel E. Denny81508102018-03-13 14:51:22 +00005641 if (!AllocSize->getNumElemsParam().isValid()) {
George Burgess IVe3763372016-12-22 02:50:20 +00005642 Result = std::move(SizeOfElem);
5643 return true;
5644 }
5645
5646 APSInt NumberOfElems;
Joel E. Denny81508102018-03-13 14:51:22 +00005647 unsigned NumArgNo = AllocSize->getNumElemsParam().getASTIndex();
George Burgess IVe3763372016-12-22 02:50:20 +00005648 if (!EvaluateAsSizeT(Call->getArg(NumArgNo), NumberOfElems))
5649 return false;
5650
5651 bool Overflow;
5652 llvm::APInt BytesAvailable = SizeOfElem.umul_ov(NumberOfElems, Overflow);
5653 if (Overflow)
5654 return false;
5655
5656 Result = std::move(BytesAvailable);
5657 return true;
5658}
5659
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00005660/// Convenience function. LVal's base must be a call to an alloc_size
George Burgess IVe3763372016-12-22 02:50:20 +00005661/// function.
5662static bool getBytesReturnedByAllocSizeCall(const ASTContext &Ctx,
5663 const LValue &LVal,
5664 llvm::APInt &Result) {
5665 assert(isBaseAnAllocSizeCall(LVal.getLValueBase()) &&
5666 "Can't get the size of a non alloc_size function");
5667 const auto *Base = LVal.getLValueBase().get<const Expr *>();
5668 const CallExpr *CE = tryUnwrapAllocSizeCall(Base);
5669 return getBytesReturnedByAllocSizeCall(Ctx, CE, Result);
5670}
5671
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00005672/// Attempts to evaluate the given LValueBase as the result of a call to
George Burgess IVe3763372016-12-22 02:50:20 +00005673/// a function with the alloc_size attribute. If it was possible to do so, this
5674/// function will return true, make Result's Base point to said function call,
5675/// and mark Result's Base as invalid.
5676static bool evaluateLValueAsAllocSize(EvalInfo &Info, APValue::LValueBase Base,
5677 LValue &Result) {
George Burgess IVf9013bf2017-02-10 22:52:29 +00005678 if (Base.isNull())
George Burgess IVe3763372016-12-22 02:50:20 +00005679 return false;
5680
5681 // Because we do no form of static analysis, we only support const variables.
5682 //
5683 // Additionally, we can't support parameters, nor can we support static
5684 // variables (in the latter case, use-before-assign isn't UB; in the former,
5685 // we have no clue what they'll be assigned to).
5686 const auto *VD =
5687 dyn_cast_or_null<VarDecl>(Base.dyn_cast<const ValueDecl *>());
5688 if (!VD || !VD->isLocalVarDecl() || !VD->getType().isConstQualified())
5689 return false;
5690
5691 const Expr *Init = VD->getAnyInitializer();
5692 if (!Init)
5693 return false;
5694
5695 const Expr *E = Init->IgnoreParens();
5696 if (!tryUnwrapAllocSizeCall(E))
5697 return false;
5698
5699 // Store E instead of E unwrapped so that the type of the LValue's base is
5700 // what the user wanted.
5701 Result.setInvalid(E);
5702
5703 QualType Pointee = E->getType()->castAs<PointerType>()->getPointeeType();
Richard Smith6f4f0f12017-10-20 22:56:25 +00005704 Result.addUnsizedArray(Info, E, Pointee);
George Burgess IVe3763372016-12-22 02:50:20 +00005705 return true;
5706}
5707
Anders Carlsson0a1707c2008-07-08 05:13:58 +00005708namespace {
Benjamin Kramer26222b62009-11-28 19:03:38 +00005709class PointerExprEvaluator
Aaron Ballman68af21c2014-01-03 19:26:43 +00005710 : public ExprEvaluatorBase<PointerExprEvaluator> {
John McCall45d55e42010-05-07 21:00:08 +00005711 LValue &Result;
George Burgess IVf9013bf2017-02-10 22:52:29 +00005712 bool InvalidBaseOK;
John McCall45d55e42010-05-07 21:00:08 +00005713
Peter Collingbournee9200682011-05-13 03:29:01 +00005714 bool Success(const Expr *E) {
Richard Smithce40ad62011-11-12 22:28:03 +00005715 Result.set(E);
John McCall45d55e42010-05-07 21:00:08 +00005716 return true;
5717 }
George Burgess IVe3763372016-12-22 02:50:20 +00005718
George Burgess IVf9013bf2017-02-10 22:52:29 +00005719 bool evaluateLValue(const Expr *E, LValue &Result) {
5720 return EvaluateLValue(E, Result, Info, InvalidBaseOK);
5721 }
5722
5723 bool evaluatePointer(const Expr *E, LValue &Result) {
5724 return EvaluatePointer(E, Result, Info, InvalidBaseOK);
5725 }
5726
George Burgess IVe3763372016-12-22 02:50:20 +00005727 bool visitNonBuiltinCallExpr(const CallExpr *E);
Anders Carlssonb5ad0212008-07-08 14:30:00 +00005728public:
Mike Stump11289f42009-09-09 15:08:12 +00005729
George Burgess IVf9013bf2017-02-10 22:52:29 +00005730 PointerExprEvaluator(EvalInfo &info, LValue &Result, bool InvalidBaseOK)
5731 : ExprEvaluatorBaseTy(info), Result(Result),
5732 InvalidBaseOK(InvalidBaseOK) {}
Chris Lattner05706e882008-07-11 18:11:29 +00005733
Richard Smith2e312c82012-03-03 22:46:17 +00005734 bool Success(const APValue &V, const Expr *E) {
5735 Result.setFrom(Info.Ctx, V);
Peter Collingbournee9200682011-05-13 03:29:01 +00005736 return true;
5737 }
Richard Smithfddd3842011-12-30 21:15:51 +00005738 bool ZeroInitialization(const Expr *E) {
Tim Northover01503332017-05-26 02:16:00 +00005739 auto TargetVal = Info.Ctx.getTargetNullPointerValue(E->getType());
5740 Result.setNull(E->getType(), TargetVal);
Yaxun Liu402804b2016-12-15 08:09:08 +00005741 return true;
Richard Smith4ce706a2011-10-11 21:43:33 +00005742 }
Anders Carlssonb5ad0212008-07-08 14:30:00 +00005743
John McCall45d55e42010-05-07 21:00:08 +00005744 bool VisitBinaryOperator(const BinaryOperator *E);
Peter Collingbournee9200682011-05-13 03:29:01 +00005745 bool VisitCastExpr(const CastExpr* E);
John McCall45d55e42010-05-07 21:00:08 +00005746 bool VisitUnaryAddrOf(const UnaryOperator *E);
Peter Collingbournee9200682011-05-13 03:29:01 +00005747 bool VisitObjCStringLiteral(const ObjCStringLiteral *E)
John McCall45d55e42010-05-07 21:00:08 +00005748 { return Success(E); }
Nick Lewycky19ae6dc2017-04-29 00:07:27 +00005749 bool VisitObjCBoxedExpr(const ObjCBoxedExpr *E) {
5750 if (Info.noteFailure())
5751 EvaluateIgnoredValue(Info, E->getSubExpr());
5752 return Error(E);
5753 }
Peter Collingbournee9200682011-05-13 03:29:01 +00005754 bool VisitAddrLabelExpr(const AddrLabelExpr *E)
John McCall45d55e42010-05-07 21:00:08 +00005755 { return Success(E); }
Peter Collingbournee9200682011-05-13 03:29:01 +00005756 bool VisitCallExpr(const CallExpr *E);
Richard Smith6328cbd2016-11-16 00:57:23 +00005757 bool VisitBuiltinCallExpr(const CallExpr *E, unsigned BuiltinOp);
Peter Collingbournee9200682011-05-13 03:29:01 +00005758 bool VisitBlockExpr(const BlockExpr *E) {
John McCallc63de662011-02-02 13:00:07 +00005759 if (!E->getBlockDecl()->hasCaptures())
John McCall45d55e42010-05-07 21:00:08 +00005760 return Success(E);
Richard Smithf57d8cb2011-12-09 22:58:01 +00005761 return Error(E);
Mike Stumpa6703322009-02-19 22:01:56 +00005762 }
Richard Smithd62306a2011-11-10 06:34:14 +00005763 bool VisitCXXThisExpr(const CXXThisExpr *E) {
Richard Smith84401042013-06-03 05:03:02 +00005764 // Can't look at 'this' when checking a potential constant expression.
Richard Smith6d4c6582013-11-05 22:18:15 +00005765 if (Info.checkingPotentialConstantExpression())
Richard Smith84401042013-06-03 05:03:02 +00005766 return false;
Richard Smith22a5d612014-07-07 06:00:13 +00005767 if (!Info.CurrentCall->This) {
5768 if (Info.getLangOpts().CPlusPlus11)
Faisal Valie690b7a2016-07-02 22:34:24 +00005769 Info.FFDiag(E, diag::note_constexpr_this) << E->isImplicit();
Richard Smith22a5d612014-07-07 06:00:13 +00005770 else
Faisal Valie690b7a2016-07-02 22:34:24 +00005771 Info.FFDiag(E);
Richard Smith22a5d612014-07-07 06:00:13 +00005772 return false;
5773 }
Richard Smithd62306a2011-11-10 06:34:14 +00005774 Result = *Info.CurrentCall->This;
Faisal Vali051e3a22017-02-16 04:12:21 +00005775 // If we are inside a lambda's call operator, the 'this' expression refers
5776 // to the enclosing '*this' object (either by value or reference) which is
5777 // either copied into the closure object's field that represents the '*this'
5778 // or refers to '*this'.
5779 if (isLambdaCallOperator(Info.CurrentCall->Callee)) {
5780 // Update 'Result' to refer to the data member/field of the closure object
5781 // that represents the '*this' capture.
5782 if (!HandleLValueMember(Info, E, Result,
Fangrui Song6907ce22018-07-30 19:24:48 +00005783 Info.CurrentCall->LambdaThisCaptureField))
Faisal Vali051e3a22017-02-16 04:12:21 +00005784 return false;
5785 // If we captured '*this' by reference, replace the field with its referent.
5786 if (Info.CurrentCall->LambdaThisCaptureField->getType()
5787 ->isPointerType()) {
5788 APValue RVal;
5789 if (!handleLValueToRValueConversion(Info, E, E->getType(), Result,
5790 RVal))
5791 return false;
5792
5793 Result.setFrom(Info.Ctx, RVal);
5794 }
5795 }
Richard Smithd62306a2011-11-10 06:34:14 +00005796 return true;
5797 }
John McCallc07a0c72011-02-17 10:25:35 +00005798
Eli Friedman449fe542009-03-23 04:56:01 +00005799 // FIXME: Missing: @protocol, @selector
Anders Carlsson4a3585b2008-07-08 15:34:11 +00005800};
Chris Lattner05706e882008-07-11 18:11:29 +00005801} // end anonymous namespace
Anders Carlsson4a3585b2008-07-08 15:34:11 +00005802
George Burgess IVf9013bf2017-02-10 22:52:29 +00005803static bool EvaluatePointer(const Expr* E, LValue& Result, EvalInfo &Info,
5804 bool InvalidBaseOK) {
Richard Smith11562c52011-10-28 17:51:58 +00005805 assert(E->isRValue() && E->getType()->hasPointerRepresentation());
George Burgess IVf9013bf2017-02-10 22:52:29 +00005806 return PointerExprEvaluator(Info, Result, InvalidBaseOK).Visit(E);
Chris Lattner05706e882008-07-11 18:11:29 +00005807}
5808
John McCall45d55e42010-05-07 21:00:08 +00005809bool PointerExprEvaluator::VisitBinaryOperator(const BinaryOperator *E) {
John McCalle3027922010-08-25 11:45:40 +00005810 if (E->getOpcode() != BO_Add &&
5811 E->getOpcode() != BO_Sub)
Richard Smith027bf112011-11-17 22:56:20 +00005812 return ExprEvaluatorBaseTy::VisitBinaryOperator(E);
Mike Stump11289f42009-09-09 15:08:12 +00005813
Chris Lattner05706e882008-07-11 18:11:29 +00005814 const Expr *PExp = E->getLHS();
5815 const Expr *IExp = E->getRHS();
5816 if (IExp->getType()->isPointerType())
5817 std::swap(PExp, IExp);
Mike Stump11289f42009-09-09 15:08:12 +00005818
George Burgess IVf9013bf2017-02-10 22:52:29 +00005819 bool EvalPtrOK = evaluatePointer(PExp, Result);
George Burgess IVa145e252016-05-25 22:38:36 +00005820 if (!EvalPtrOK && !Info.noteFailure())
John McCall45d55e42010-05-07 21:00:08 +00005821 return false;
Mike Stump11289f42009-09-09 15:08:12 +00005822
John McCall45d55e42010-05-07 21:00:08 +00005823 llvm::APSInt Offset;
Richard Smith253c2a32012-01-27 01:14:48 +00005824 if (!EvaluateInteger(IExp, Offset, Info) || !EvalPtrOK)
John McCall45d55e42010-05-07 21:00:08 +00005825 return false;
Richard Smith861b5b52013-05-07 23:34:45 +00005826
Richard Smith96e0c102011-11-04 02:25:55 +00005827 if (E->getOpcode() == BO_Sub)
Richard Smithd6cc1982017-01-31 02:23:02 +00005828 negateAsSigned(Offset);
Chris Lattner05706e882008-07-11 18:11:29 +00005829
Ted Kremenek28831752012-08-23 20:46:57 +00005830 QualType Pointee = PExp->getType()->castAs<PointerType>()->getPointeeType();
Richard Smithd6cc1982017-01-31 02:23:02 +00005831 return HandleLValueArrayAdjustment(Info, E, Result, Pointee, Offset);
Chris Lattner05706e882008-07-11 18:11:29 +00005832}
Eli Friedman9a156e52008-11-12 09:44:48 +00005833
John McCall45d55e42010-05-07 21:00:08 +00005834bool PointerExprEvaluator::VisitUnaryAddrOf(const UnaryOperator *E) {
George Burgess IVf9013bf2017-02-10 22:52:29 +00005835 return evaluateLValue(E->getSubExpr(), Result);
Eli Friedman9a156e52008-11-12 09:44:48 +00005836}
Mike Stump11289f42009-09-09 15:08:12 +00005837
Richard Smith81dfef92018-07-11 00:29:05 +00005838bool PointerExprEvaluator::VisitCastExpr(const CastExpr *E) {
5839 const Expr *SubExpr = E->getSubExpr();
Chris Lattner05706e882008-07-11 18:11:29 +00005840
Eli Friedman847a2bc2009-12-27 05:43:15 +00005841 switch (E->getCastKind()) {
5842 default:
5843 break;
5844
John McCalle3027922010-08-25 11:45:40 +00005845 case CK_BitCast:
John McCall9320b872011-09-09 05:25:32 +00005846 case CK_CPointerToObjCPointerCast:
5847 case CK_BlockPointerToObjCPointerCast:
John McCalle3027922010-08-25 11:45:40 +00005848 case CK_AnyPointerToBlockPointerCast:
Anastasia Stulova5d8ad8a2014-11-26 15:36:41 +00005849 case CK_AddressSpaceConversion:
Richard Smithb19ac0d2012-01-15 03:25:41 +00005850 if (!Visit(SubExpr))
5851 return false;
Richard Smith6d6ecc32011-12-12 12:46:16 +00005852 // Bitcasts to cv void* are static_casts, not reinterpret_casts, so are
5853 // permitted in constant expressions in C++11. Bitcasts from cv void* are
5854 // also static_casts, but we disallow them as a resolution to DR1312.
Richard Smithff07af12011-12-12 19:10:03 +00005855 if (!E->getType()->isVoidPointerType()) {
Richard Smith81dfef92018-07-11 00:29:05 +00005856 // If we changed anything other than cvr-qualifiers, we can't use this
5857 // value for constant folding. FIXME: Qualification conversions should
5858 // always be CK_NoOp, but we get this wrong in C.
5859 if (!Info.Ctx.hasCvrSimilarType(E->getType(), E->getSubExpr()->getType()))
5860 Result.Designator.setInvalid();
Richard Smithff07af12011-12-12 19:10:03 +00005861 if (SubExpr->getType()->isVoidPointerType())
5862 CCEDiag(E, diag::note_constexpr_invalid_cast)
5863 << 3 << SubExpr->getType();
5864 else
5865 CCEDiag(E, diag::note_constexpr_invalid_cast) << 2;
5866 }
Yaxun Liu402804b2016-12-15 08:09:08 +00005867 if (E->getCastKind() == CK_AddressSpaceConversion && Result.IsNullPtr)
5868 ZeroInitialization(E);
Richard Smith96e0c102011-11-04 02:25:55 +00005869 return true;
Eli Friedman847a2bc2009-12-27 05:43:15 +00005870
Anders Carlsson18275092010-10-31 20:41:46 +00005871 case CK_DerivedToBase:
Richard Smith84401042013-06-03 05:03:02 +00005872 case CK_UncheckedDerivedToBase:
George Burgess IVf9013bf2017-02-10 22:52:29 +00005873 if (!evaluatePointer(E->getSubExpr(), Result))
Anders Carlsson18275092010-10-31 20:41:46 +00005874 return false;
Richard Smith027bf112011-11-17 22:56:20 +00005875 if (!Result.Base && Result.Offset.isZero())
5876 return true;
Anders Carlsson18275092010-10-31 20:41:46 +00005877
Richard Smithd62306a2011-11-10 06:34:14 +00005878 // Now figure out the necessary offset to add to the base LV to get from
Anders Carlsson18275092010-10-31 20:41:46 +00005879 // the derived class to the base class.
Richard Smith84401042013-06-03 05:03:02 +00005880 return HandleLValueBasePath(Info, E, E->getSubExpr()->getType()->
5881 castAs<PointerType>()->getPointeeType(),
5882 Result);
Anders Carlsson18275092010-10-31 20:41:46 +00005883
Richard Smith027bf112011-11-17 22:56:20 +00005884 case CK_BaseToDerived:
5885 if (!Visit(E->getSubExpr()))
5886 return false;
5887 if (!Result.Base && Result.Offset.isZero())
5888 return true;
5889 return HandleBaseToDerivedCast(Info, E, Result);
5890
Richard Smith0b0a0b62011-10-29 20:57:55 +00005891 case CK_NullToPointer:
Richard Smith4051ff72012-04-08 08:02:07 +00005892 VisitIgnoredValue(E->getSubExpr());
Richard Smithfddd3842011-12-30 21:15:51 +00005893 return ZeroInitialization(E);
John McCalle84af4e2010-11-13 01:35:44 +00005894
John McCalle3027922010-08-25 11:45:40 +00005895 case CK_IntegralToPointer: {
Richard Smith6d6ecc32011-12-12 12:46:16 +00005896 CCEDiag(E, diag::note_constexpr_invalid_cast) << 2;
5897
Richard Smith2e312c82012-03-03 22:46:17 +00005898 APValue Value;
John McCall45d55e42010-05-07 21:00:08 +00005899 if (!EvaluateIntegerOrLValue(SubExpr, Value, Info))
Eli Friedman847a2bc2009-12-27 05:43:15 +00005900 break;
Daniel Dunbarce399542009-02-20 18:22:23 +00005901
John McCall45d55e42010-05-07 21:00:08 +00005902 if (Value.isInt()) {
Richard Smith0b0a0b62011-10-29 20:57:55 +00005903 unsigned Size = Info.Ctx.getTypeSize(E->getType());
5904 uint64_t N = Value.getInt().extOrTrunc(Size).getZExtValue();
Craig Topper36250ad2014-05-12 05:36:57 +00005905 Result.Base = (Expr*)nullptr;
George Burgess IV3a03fab2015-09-04 21:28:13 +00005906 Result.InvalidBase = false;
Richard Smith0b0a0b62011-10-29 20:57:55 +00005907 Result.Offset = CharUnits::fromQuantity(N);
Richard Smith96e0c102011-11-04 02:25:55 +00005908 Result.Designator.setInvalid();
Yaxun Liu402804b2016-12-15 08:09:08 +00005909 Result.IsNullPtr = false;
John McCall45d55e42010-05-07 21:00:08 +00005910 return true;
5911 } else {
5912 // Cast is of an lvalue, no need to change value.
Richard Smith2e312c82012-03-03 22:46:17 +00005913 Result.setFrom(Info.Ctx, Value);
John McCall45d55e42010-05-07 21:00:08 +00005914 return true;
Chris Lattner05706e882008-07-11 18:11:29 +00005915 }
5916 }
Richard Smith6f4f0f12017-10-20 22:56:25 +00005917
5918 case CK_ArrayToPointerDecay: {
Richard Smith027bf112011-11-17 22:56:20 +00005919 if (SubExpr->isGLValue()) {
George Burgess IVf9013bf2017-02-10 22:52:29 +00005920 if (!evaluateLValue(SubExpr, Result))
Richard Smith027bf112011-11-17 22:56:20 +00005921 return false;
5922 } else {
Akira Hatanaka4e2698c2018-04-10 05:15:01 +00005923 APValue &Value = createTemporary(SubExpr, false, Result,
5924 *Info.CurrentCall);
5925 if (!EvaluateInPlace(Value, Info, Result, SubExpr))
Richard Smith027bf112011-11-17 22:56:20 +00005926 return false;
5927 }
Richard Smith96e0c102011-11-04 02:25:55 +00005928 // The result is a pointer to the first element of the array.
Richard Smith6f4f0f12017-10-20 22:56:25 +00005929 auto *AT = Info.Ctx.getAsArrayType(SubExpr->getType());
5930 if (auto *CAT = dyn_cast<ConstantArrayType>(AT))
Richard Smitha8105bc2012-01-06 16:39:00 +00005931 Result.addArray(Info, E, CAT);
Daniel Jasperffdee092017-05-02 19:21:42 +00005932 else
Richard Smith6f4f0f12017-10-20 22:56:25 +00005933 Result.addUnsizedArray(Info, E, AT->getElementType());
Richard Smith96e0c102011-11-04 02:25:55 +00005934 return true;
Richard Smith6f4f0f12017-10-20 22:56:25 +00005935 }
Richard Smithdd785442011-10-31 20:57:44 +00005936
John McCalle3027922010-08-25 11:45:40 +00005937 case CK_FunctionToPointerDecay:
George Burgess IVf9013bf2017-02-10 22:52:29 +00005938 return evaluateLValue(SubExpr, Result);
George Burgess IVe3763372016-12-22 02:50:20 +00005939
5940 case CK_LValueToRValue: {
5941 LValue LVal;
George Burgess IVf9013bf2017-02-10 22:52:29 +00005942 if (!evaluateLValue(E->getSubExpr(), LVal))
George Burgess IVe3763372016-12-22 02:50:20 +00005943 return false;
5944
5945 APValue RVal;
5946 // Note, we use the subexpression's type in order to retain cv-qualifiers.
5947 if (!handleLValueToRValueConversion(Info, E, E->getSubExpr()->getType(),
5948 LVal, RVal))
George Burgess IVf9013bf2017-02-10 22:52:29 +00005949 return InvalidBaseOK &&
5950 evaluateLValueAsAllocSize(Info, LVal.Base, Result);
George Burgess IVe3763372016-12-22 02:50:20 +00005951 return Success(RVal, E);
5952 }
Eli Friedman9a156e52008-11-12 09:44:48 +00005953 }
5954
Richard Smith11562c52011-10-28 17:51:58 +00005955 return ExprEvaluatorBaseTy::VisitCastExpr(E);
Mike Stump11289f42009-09-09 15:08:12 +00005956}
Chris Lattner05706e882008-07-11 18:11:29 +00005957
Hal Finkel0dd05d42014-10-03 17:18:37 +00005958static CharUnits GetAlignOfType(EvalInfo &Info, QualType T) {
5959 // C++ [expr.alignof]p3:
5960 // When alignof is applied to a reference type, the result is the
5961 // alignment of the referenced type.
5962 if (const ReferenceType *Ref = T->getAs<ReferenceType>())
5963 T = Ref->getPointeeType();
5964
5965 // __alignof is defined to return the preferred alignment.
Roger Ferrer Ibanez3fa38a12017-03-08 14:00:44 +00005966 if (T.getQualifiers().hasUnaligned())
5967 return CharUnits::One();
Hal Finkel0dd05d42014-10-03 17:18:37 +00005968 return Info.Ctx.toCharUnitsFromBits(
5969 Info.Ctx.getPreferredTypeAlign(T.getTypePtr()));
5970}
5971
5972static CharUnits GetAlignOfExpr(EvalInfo &Info, const Expr *E) {
5973 E = E->IgnoreParens();
5974
5975 // The kinds of expressions that we have special-case logic here for
5976 // should be kept up to date with the special checks for those
5977 // expressions in Sema.
5978
5979 // alignof decl is always accepted, even if it doesn't make sense: we default
5980 // to 1 in those cases.
5981 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E))
5982 return Info.Ctx.getDeclAlign(DRE->getDecl(),
5983 /*RefAsPointee*/true);
5984
5985 if (const MemberExpr *ME = dyn_cast<MemberExpr>(E))
5986 return Info.Ctx.getDeclAlign(ME->getMemberDecl(),
5987 /*RefAsPointee*/true);
5988
5989 return GetAlignOfType(Info, E->getType());
5990}
5991
George Burgess IVe3763372016-12-22 02:50:20 +00005992// To be clear: this happily visits unsupported builtins. Better name welcomed.
5993bool PointerExprEvaluator::visitNonBuiltinCallExpr(const CallExpr *E) {
5994 if (ExprEvaluatorBaseTy::VisitCallExpr(E))
5995 return true;
5996
George Burgess IVf9013bf2017-02-10 22:52:29 +00005997 if (!(InvalidBaseOK && getAllocSizeAttr(E)))
George Burgess IVe3763372016-12-22 02:50:20 +00005998 return false;
5999
6000 Result.setInvalid(E);
6001 QualType PointeeTy = E->getType()->castAs<PointerType>()->getPointeeType();
Richard Smith6f4f0f12017-10-20 22:56:25 +00006002 Result.addUnsizedArray(Info, E, PointeeTy);
George Burgess IVe3763372016-12-22 02:50:20 +00006003 return true;
6004}
6005
Peter Collingbournee9200682011-05-13 03:29:01 +00006006bool PointerExprEvaluator::VisitCallExpr(const CallExpr *E) {
Richard Smithd62306a2011-11-10 06:34:14 +00006007 if (IsStringLiteralCall(E))
John McCall45d55e42010-05-07 21:00:08 +00006008 return Success(E);
Eli Friedmanc69d4542009-01-25 01:54:01 +00006009
Richard Smith6328cbd2016-11-16 00:57:23 +00006010 if (unsigned BuiltinOp = E->getBuiltinCallee())
6011 return VisitBuiltinCallExpr(E, BuiltinOp);
6012
George Burgess IVe3763372016-12-22 02:50:20 +00006013 return visitNonBuiltinCallExpr(E);
Richard Smith6328cbd2016-11-16 00:57:23 +00006014}
6015
6016bool PointerExprEvaluator::VisitBuiltinCallExpr(const CallExpr *E,
6017 unsigned BuiltinOp) {
6018 switch (BuiltinOp) {
Richard Smith6cbd65d2013-07-11 02:27:57 +00006019 case Builtin::BI__builtin_addressof:
George Burgess IVf9013bf2017-02-10 22:52:29 +00006020 return evaluateLValue(E->getArg(0), Result);
Hal Finkel0dd05d42014-10-03 17:18:37 +00006021 case Builtin::BI__builtin_assume_aligned: {
6022 // We need to be very careful here because: if the pointer does not have the
6023 // asserted alignment, then the behavior is undefined, and undefined
6024 // behavior is non-constant.
George Burgess IVf9013bf2017-02-10 22:52:29 +00006025 if (!evaluatePointer(E->getArg(0), Result))
Hal Finkel0dd05d42014-10-03 17:18:37 +00006026 return false;
Richard Smith6cbd65d2013-07-11 02:27:57 +00006027
Hal Finkel0dd05d42014-10-03 17:18:37 +00006028 LValue OffsetResult(Result);
6029 APSInt Alignment;
6030 if (!EvaluateInteger(E->getArg(1), Alignment, Info))
6031 return false;
Richard Smith642a2362017-01-30 23:30:26 +00006032 CharUnits Align = CharUnits::fromQuantity(Alignment.getZExtValue());
Hal Finkel0dd05d42014-10-03 17:18:37 +00006033
6034 if (E->getNumArgs() > 2) {
6035 APSInt Offset;
6036 if (!EvaluateInteger(E->getArg(2), Offset, Info))
6037 return false;
6038
Richard Smith642a2362017-01-30 23:30:26 +00006039 int64_t AdditionalOffset = -Offset.getZExtValue();
Hal Finkel0dd05d42014-10-03 17:18:37 +00006040 OffsetResult.Offset += CharUnits::fromQuantity(AdditionalOffset);
6041 }
6042
6043 // If there is a base object, then it must have the correct alignment.
6044 if (OffsetResult.Base) {
6045 CharUnits BaseAlignment;
6046 if (const ValueDecl *VD =
6047 OffsetResult.Base.dyn_cast<const ValueDecl*>()) {
6048 BaseAlignment = Info.Ctx.getDeclAlign(VD);
6049 } else {
6050 BaseAlignment =
6051 GetAlignOfExpr(Info, OffsetResult.Base.get<const Expr*>());
6052 }
6053
6054 if (BaseAlignment < Align) {
6055 Result.Designator.setInvalid();
Richard Smith642a2362017-01-30 23:30:26 +00006056 // FIXME: Add support to Diagnostic for long / long long.
Hal Finkel0dd05d42014-10-03 17:18:37 +00006057 CCEDiag(E->getArg(0),
6058 diag::note_constexpr_baa_insufficient_alignment) << 0
Richard Smith642a2362017-01-30 23:30:26 +00006059 << (unsigned)BaseAlignment.getQuantity()
6060 << (unsigned)Align.getQuantity();
Hal Finkel0dd05d42014-10-03 17:18:37 +00006061 return false;
6062 }
6063 }
6064
6065 // The offset must also have the correct alignment.
Rui Ueyama83aa9792016-01-14 21:00:27 +00006066 if (OffsetResult.Offset.alignTo(Align) != OffsetResult.Offset) {
Hal Finkel0dd05d42014-10-03 17:18:37 +00006067 Result.Designator.setInvalid();
Hal Finkel0dd05d42014-10-03 17:18:37 +00006068
Richard Smith642a2362017-01-30 23:30:26 +00006069 (OffsetResult.Base
6070 ? CCEDiag(E->getArg(0),
6071 diag::note_constexpr_baa_insufficient_alignment) << 1
6072 : CCEDiag(E->getArg(0),
6073 diag::note_constexpr_baa_value_insufficient_alignment))
6074 << (int)OffsetResult.Offset.getQuantity()
6075 << (unsigned)Align.getQuantity();
Hal Finkel0dd05d42014-10-03 17:18:37 +00006076 return false;
6077 }
6078
6079 return true;
6080 }
Richard Smithe9507952016-11-12 01:39:56 +00006081
6082 case Builtin::BIstrchr:
Richard Smith8110c9d2016-11-29 19:45:17 +00006083 case Builtin::BIwcschr:
Richard Smithe9507952016-11-12 01:39:56 +00006084 case Builtin::BImemchr:
Richard Smith8110c9d2016-11-29 19:45:17 +00006085 case Builtin::BIwmemchr:
Richard Smithe9507952016-11-12 01:39:56 +00006086 if (Info.getLangOpts().CPlusPlus11)
6087 Info.CCEDiag(E, diag::note_constexpr_invalid_function)
6088 << /*isConstexpr*/0 << /*isConstructor*/0
Richard Smith8110c9d2016-11-29 19:45:17 +00006089 << (std::string("'") + Info.Ctx.BuiltinInfo.getName(BuiltinOp) + "'");
Richard Smithe9507952016-11-12 01:39:56 +00006090 else
6091 Info.CCEDiag(E, diag::note_invalid_subexpr_in_const_expr);
Adrian Prantlf3b3ccd2017-12-19 22:06:11 +00006092 LLVM_FALLTHROUGH;
Richard Smithe9507952016-11-12 01:39:56 +00006093 case Builtin::BI__builtin_strchr:
Richard Smith8110c9d2016-11-29 19:45:17 +00006094 case Builtin::BI__builtin_wcschr:
6095 case Builtin::BI__builtin_memchr:
Richard Smith5e29dd32017-01-20 00:45:35 +00006096 case Builtin::BI__builtin_char_memchr:
Richard Smith8110c9d2016-11-29 19:45:17 +00006097 case Builtin::BI__builtin_wmemchr: {
Richard Smithe9507952016-11-12 01:39:56 +00006098 if (!Visit(E->getArg(0)))
6099 return false;
6100 APSInt Desired;
6101 if (!EvaluateInteger(E->getArg(1), Desired, Info))
6102 return false;
6103 uint64_t MaxLength = uint64_t(-1);
6104 if (BuiltinOp != Builtin::BIstrchr &&
Richard Smith8110c9d2016-11-29 19:45:17 +00006105 BuiltinOp != Builtin::BIwcschr &&
6106 BuiltinOp != Builtin::BI__builtin_strchr &&
6107 BuiltinOp != Builtin::BI__builtin_wcschr) {
Richard Smithe9507952016-11-12 01:39:56 +00006108 APSInt N;
6109 if (!EvaluateInteger(E->getArg(2), N, Info))
6110 return false;
6111 MaxLength = N.getExtValue();
6112 }
6113
Richard Smith8110c9d2016-11-29 19:45:17 +00006114 QualType CharTy = E->getArg(0)->getType()->getPointeeType();
Richard Smithe9507952016-11-12 01:39:56 +00006115
Richard Smith8110c9d2016-11-29 19:45:17 +00006116 // Figure out what value we're actually looking for (after converting to
6117 // the corresponding unsigned type if necessary).
6118 uint64_t DesiredVal;
6119 bool StopAtNull = false;
6120 switch (BuiltinOp) {
6121 case Builtin::BIstrchr:
6122 case Builtin::BI__builtin_strchr:
6123 // strchr compares directly to the passed integer, and therefore
6124 // always fails if given an int that is not a char.
6125 if (!APSInt::isSameValue(HandleIntToIntCast(Info, E, CharTy,
6126 E->getArg(1)->getType(),
6127 Desired),
6128 Desired))
6129 return ZeroInitialization(E);
6130 StopAtNull = true;
Adrian Prantlf3b3ccd2017-12-19 22:06:11 +00006131 LLVM_FALLTHROUGH;
Richard Smith8110c9d2016-11-29 19:45:17 +00006132 case Builtin::BImemchr:
6133 case Builtin::BI__builtin_memchr:
Richard Smith5e29dd32017-01-20 00:45:35 +00006134 case Builtin::BI__builtin_char_memchr:
Richard Smith8110c9d2016-11-29 19:45:17 +00006135 // memchr compares by converting both sides to unsigned char. That's also
6136 // correct for strchr if we get this far (to cope with plain char being
6137 // unsigned in the strchr case).
6138 DesiredVal = Desired.trunc(Info.Ctx.getCharWidth()).getZExtValue();
6139 break;
Richard Smithe9507952016-11-12 01:39:56 +00006140
Richard Smith8110c9d2016-11-29 19:45:17 +00006141 case Builtin::BIwcschr:
6142 case Builtin::BI__builtin_wcschr:
6143 StopAtNull = true;
Adrian Prantlf3b3ccd2017-12-19 22:06:11 +00006144 LLVM_FALLTHROUGH;
Richard Smith8110c9d2016-11-29 19:45:17 +00006145 case Builtin::BIwmemchr:
6146 case Builtin::BI__builtin_wmemchr:
6147 // wcschr and wmemchr are given a wchar_t to look for. Just use it.
6148 DesiredVal = Desired.getZExtValue();
6149 break;
6150 }
Richard Smithe9507952016-11-12 01:39:56 +00006151
6152 for (; MaxLength; --MaxLength) {
6153 APValue Char;
6154 if (!handleLValueToRValueConversion(Info, E, CharTy, Result, Char) ||
6155 !Char.isInt())
6156 return false;
6157 if (Char.getInt().getZExtValue() == DesiredVal)
6158 return true;
Richard Smith8110c9d2016-11-29 19:45:17 +00006159 if (StopAtNull && !Char.getInt())
Richard Smithe9507952016-11-12 01:39:56 +00006160 break;
6161 if (!HandleLValueArrayAdjustment(Info, E, Result, CharTy, 1))
6162 return false;
6163 }
6164 // Not found: return nullptr.
6165 return ZeroInitialization(E);
6166 }
6167
Richard Smith06f71b52018-08-04 00:57:17 +00006168 case Builtin::BImemcpy:
6169 case Builtin::BImemmove:
6170 case Builtin::BIwmemcpy:
6171 case Builtin::BIwmemmove:
6172 if (Info.getLangOpts().CPlusPlus11)
6173 Info.CCEDiag(E, diag::note_constexpr_invalid_function)
6174 << /*isConstexpr*/0 << /*isConstructor*/0
6175 << (std::string("'") + Info.Ctx.BuiltinInfo.getName(BuiltinOp) + "'");
6176 else
6177 Info.CCEDiag(E, diag::note_invalid_subexpr_in_const_expr);
6178 LLVM_FALLTHROUGH;
6179 case Builtin::BI__builtin_memcpy:
6180 case Builtin::BI__builtin_memmove:
6181 case Builtin::BI__builtin_wmemcpy:
6182 case Builtin::BI__builtin_wmemmove: {
6183 bool WChar = BuiltinOp == Builtin::BIwmemcpy ||
6184 BuiltinOp == Builtin::BIwmemmove ||
6185 BuiltinOp == Builtin::BI__builtin_wmemcpy ||
6186 BuiltinOp == Builtin::BI__builtin_wmemmove;
6187 bool Move = BuiltinOp == Builtin::BImemmove ||
6188 BuiltinOp == Builtin::BIwmemmove ||
6189 BuiltinOp == Builtin::BI__builtin_memmove ||
6190 BuiltinOp == Builtin::BI__builtin_wmemmove;
6191
6192 // The result of mem* is the first argument.
6193 if (!Visit(E->getArg(0)) || Result.Designator.Invalid)
6194 return false;
6195 LValue Dest = Result;
6196
6197 LValue Src;
6198 if (!EvaluatePointer(E->getArg(1), Src, Info) || Src.Designator.Invalid)
6199 return false;
6200
6201 APSInt N;
6202 if (!EvaluateInteger(E->getArg(2), N, Info))
6203 return false;
6204 assert(!N.isSigned() && "memcpy and friends take an unsigned size");
6205
6206 // If the size is zero, we treat this as always being a valid no-op.
6207 // (Even if one of the src and dest pointers is null.)
6208 if (!N)
6209 return true;
6210
6211 // We require that Src and Dest are both pointers to arrays of
6212 // trivially-copyable type. (For the wide version, the designator will be
6213 // invalid if the designated object is not a wchar_t.)
6214 QualType T = Dest.Designator.getType(Info.Ctx);
6215 QualType SrcT = Src.Designator.getType(Info.Ctx);
6216 if (!Info.Ctx.hasSameUnqualifiedType(T, SrcT)) {
6217 Info.FFDiag(E, diag::note_constexpr_memcpy_type_pun) << Move << SrcT << T;
6218 return false;
6219 }
6220 if (!T.isTriviallyCopyableType(Info.Ctx)) {
6221 Info.FFDiag(E, diag::note_constexpr_memcpy_nontrivial) << Move << T;
6222 return false;
6223 }
6224
6225 // Figure out how many T's we're copying.
6226 uint64_t TSize = Info.Ctx.getTypeSizeInChars(T).getQuantity();
6227 if (!WChar) {
6228 uint64_t Remainder;
6229 llvm::APInt OrigN = N;
6230 llvm::APInt::udivrem(OrigN, TSize, N, Remainder);
6231 if (Remainder) {
6232 Info.FFDiag(E, diag::note_constexpr_memcpy_unsupported)
6233 << Move << WChar << 0 << T << OrigN.toString(10, /*Signed*/false)
6234 << (unsigned)TSize;
6235 return false;
6236 }
6237 }
6238
6239 // Check that the copying will remain within the arrays, just so that we
6240 // can give a more meaningful diagnostic. This implicitly also checks that
6241 // N fits into 64 bits.
6242 uint64_t RemainingSrcSize = Src.Designator.validIndexAdjustments().second;
6243 uint64_t RemainingDestSize = Dest.Designator.validIndexAdjustments().second;
6244 if (N.ugt(RemainingSrcSize) || N.ugt(RemainingDestSize)) {
6245 Info.FFDiag(E, diag::note_constexpr_memcpy_unsupported)
6246 << Move << WChar << (N.ugt(RemainingSrcSize) ? 1 : 2) << T
6247 << N.toString(10, /*Signed*/false);
6248 return false;
6249 }
6250 uint64_t NElems = N.getZExtValue();
6251 uint64_t NBytes = NElems * TSize;
6252
6253 // Check for overlap.
6254 int Direction = 1;
6255 if (HasSameBase(Src, Dest)) {
6256 uint64_t SrcOffset = Src.getLValueOffset().getQuantity();
6257 uint64_t DestOffset = Dest.getLValueOffset().getQuantity();
6258 if (DestOffset >= SrcOffset && DestOffset - SrcOffset < NBytes) {
6259 // Dest is inside the source region.
6260 if (!Move) {
6261 Info.FFDiag(E, diag::note_constexpr_memcpy_overlap) << WChar;
6262 return false;
6263 }
6264 // For memmove and friends, copy backwards.
6265 if (!HandleLValueArrayAdjustment(Info, E, Src, T, NElems - 1) ||
6266 !HandleLValueArrayAdjustment(Info, E, Dest, T, NElems - 1))
6267 return false;
6268 Direction = -1;
6269 } else if (!Move && SrcOffset >= DestOffset &&
6270 SrcOffset - DestOffset < NBytes) {
6271 // Src is inside the destination region for memcpy: invalid.
6272 Info.FFDiag(E, diag::note_constexpr_memcpy_overlap) << WChar;
6273 return false;
6274 }
6275 }
6276
6277 while (true) {
6278 APValue Val;
6279 if (!handleLValueToRValueConversion(Info, E, T, Src, Val) ||
6280 !handleAssignment(Info, E, Dest, T, Val))
6281 return false;
6282 // Do not iterate past the last element; if we're copying backwards, that
6283 // might take us off the start of the array.
6284 if (--NElems == 0)
6285 return true;
6286 if (!HandleLValueArrayAdjustment(Info, E, Src, T, Direction) ||
6287 !HandleLValueArrayAdjustment(Info, E, Dest, T, Direction))
6288 return false;
6289 }
6290 }
6291
Richard Smith6cbd65d2013-07-11 02:27:57 +00006292 default:
George Burgess IVe3763372016-12-22 02:50:20 +00006293 return visitNonBuiltinCallExpr(E);
Richard Smith6cbd65d2013-07-11 02:27:57 +00006294 }
Eli Friedman9a156e52008-11-12 09:44:48 +00006295}
Chris Lattner05706e882008-07-11 18:11:29 +00006296
6297//===----------------------------------------------------------------------===//
Richard Smith027bf112011-11-17 22:56:20 +00006298// Member Pointer Evaluation
6299//===----------------------------------------------------------------------===//
6300
6301namespace {
6302class MemberPointerExprEvaluator
Aaron Ballman68af21c2014-01-03 19:26:43 +00006303 : public ExprEvaluatorBase<MemberPointerExprEvaluator> {
Richard Smith027bf112011-11-17 22:56:20 +00006304 MemberPtr &Result;
6305
6306 bool Success(const ValueDecl *D) {
6307 Result = MemberPtr(D);
6308 return true;
6309 }
6310public:
6311
6312 MemberPointerExprEvaluator(EvalInfo &Info, MemberPtr &Result)
6313 : ExprEvaluatorBaseTy(Info), Result(Result) {}
6314
Richard Smith2e312c82012-03-03 22:46:17 +00006315 bool Success(const APValue &V, const Expr *E) {
Richard Smith027bf112011-11-17 22:56:20 +00006316 Result.setFrom(V);
6317 return true;
6318 }
Richard Smithfddd3842011-12-30 21:15:51 +00006319 bool ZeroInitialization(const Expr *E) {
Craig Topper36250ad2014-05-12 05:36:57 +00006320 return Success((const ValueDecl*)nullptr);
Richard Smith027bf112011-11-17 22:56:20 +00006321 }
6322
6323 bool VisitCastExpr(const CastExpr *E);
6324 bool VisitUnaryAddrOf(const UnaryOperator *E);
6325};
6326} // end anonymous namespace
6327
6328static bool EvaluateMemberPointer(const Expr *E, MemberPtr &Result,
6329 EvalInfo &Info) {
6330 assert(E->isRValue() && E->getType()->isMemberPointerType());
6331 return MemberPointerExprEvaluator(Info, Result).Visit(E);
6332}
6333
6334bool MemberPointerExprEvaluator::VisitCastExpr(const CastExpr *E) {
6335 switch (E->getCastKind()) {
6336 default:
6337 return ExprEvaluatorBaseTy::VisitCastExpr(E);
6338
6339 case CK_NullToMemberPointer:
Richard Smith4051ff72012-04-08 08:02:07 +00006340 VisitIgnoredValue(E->getSubExpr());
Richard Smithfddd3842011-12-30 21:15:51 +00006341 return ZeroInitialization(E);
Richard Smith027bf112011-11-17 22:56:20 +00006342
6343 case CK_BaseToDerivedMemberPointer: {
6344 if (!Visit(E->getSubExpr()))
6345 return false;
6346 if (E->path_empty())
6347 return true;
6348 // Base-to-derived member pointer casts store the path in derived-to-base
6349 // order, so iterate backwards. The CXXBaseSpecifier also provides us with
6350 // the wrong end of the derived->base arc, so stagger the path by one class.
6351 typedef std::reverse_iterator<CastExpr::path_const_iterator> ReverseIter;
6352 for (ReverseIter PathI(E->path_end() - 1), PathE(E->path_begin());
6353 PathI != PathE; ++PathI) {
6354 assert(!(*PathI)->isVirtual() && "memptr cast through vbase");
6355 const CXXRecordDecl *Derived = (*PathI)->getType()->getAsCXXRecordDecl();
6356 if (!Result.castToDerived(Derived))
Richard Smithf57d8cb2011-12-09 22:58:01 +00006357 return Error(E);
Richard Smith027bf112011-11-17 22:56:20 +00006358 }
6359 const Type *FinalTy = E->getType()->castAs<MemberPointerType>()->getClass();
6360 if (!Result.castToDerived(FinalTy->getAsCXXRecordDecl()))
Richard Smithf57d8cb2011-12-09 22:58:01 +00006361 return Error(E);
Richard Smith027bf112011-11-17 22:56:20 +00006362 return true;
6363 }
6364
6365 case CK_DerivedToBaseMemberPointer:
6366 if (!Visit(E->getSubExpr()))
6367 return false;
6368 for (CastExpr::path_const_iterator PathI = E->path_begin(),
6369 PathE = E->path_end(); PathI != PathE; ++PathI) {
6370 assert(!(*PathI)->isVirtual() && "memptr cast through vbase");
6371 const CXXRecordDecl *Base = (*PathI)->getType()->getAsCXXRecordDecl();
6372 if (!Result.castToBase(Base))
Richard Smithf57d8cb2011-12-09 22:58:01 +00006373 return Error(E);
Richard Smith027bf112011-11-17 22:56:20 +00006374 }
6375 return true;
6376 }
6377}
6378
6379bool MemberPointerExprEvaluator::VisitUnaryAddrOf(const UnaryOperator *E) {
6380 // C++11 [expr.unary.op]p3 has very strict rules on how the address of a
6381 // member can be formed.
6382 return Success(cast<DeclRefExpr>(E->getSubExpr())->getDecl());
6383}
6384
6385//===----------------------------------------------------------------------===//
Richard Smithd62306a2011-11-10 06:34:14 +00006386// Record Evaluation
6387//===----------------------------------------------------------------------===//
6388
6389namespace {
6390 class RecordExprEvaluator
Aaron Ballman68af21c2014-01-03 19:26:43 +00006391 : public ExprEvaluatorBase<RecordExprEvaluator> {
Richard Smithd62306a2011-11-10 06:34:14 +00006392 const LValue &This;
6393 APValue &Result;
6394 public:
6395
6396 RecordExprEvaluator(EvalInfo &info, const LValue &This, APValue &Result)
6397 : ExprEvaluatorBaseTy(info), This(This), Result(Result) {}
6398
Richard Smith2e312c82012-03-03 22:46:17 +00006399 bool Success(const APValue &V, const Expr *E) {
Richard Smithb228a862012-02-15 02:18:13 +00006400 Result = V;
6401 return true;
Richard Smithd62306a2011-11-10 06:34:14 +00006402 }
Richard Smithb8348f52016-05-12 22:16:28 +00006403 bool ZeroInitialization(const Expr *E) {
6404 return ZeroInitialization(E, E->getType());
6405 }
6406 bool ZeroInitialization(const Expr *E, QualType T);
Richard Smithd62306a2011-11-10 06:34:14 +00006407
Richard Smith52a980a2015-08-28 02:43:42 +00006408 bool VisitCallExpr(const CallExpr *E) {
6409 return handleCallExpr(E, Result, &This);
6410 }
Richard Smithe97cbd72011-11-11 04:05:33 +00006411 bool VisitCastExpr(const CastExpr *E);
Richard Smithd62306a2011-11-10 06:34:14 +00006412 bool VisitInitListExpr(const InitListExpr *E);
Richard Smithb8348f52016-05-12 22:16:28 +00006413 bool VisitCXXConstructExpr(const CXXConstructExpr *E) {
6414 return VisitCXXConstructExpr(E, E->getType());
6415 }
Faisal Valic72a08c2017-01-09 03:02:53 +00006416 bool VisitLambdaExpr(const LambdaExpr *E);
Richard Smith5179eb72016-06-28 19:03:57 +00006417 bool VisitCXXInheritedCtorInitExpr(const CXXInheritedCtorInitExpr *E);
Richard Smithb8348f52016-05-12 22:16:28 +00006418 bool VisitCXXConstructExpr(const CXXConstructExpr *E, QualType T);
Richard Smithcc1b96d2013-06-12 22:31:48 +00006419 bool VisitCXXStdInitializerListExpr(const CXXStdInitializerListExpr *E);
Eric Fiselier0683c0e2018-05-07 21:07:10 +00006420
6421 bool VisitBinCmp(const BinaryOperator *E);
Richard Smithd62306a2011-11-10 06:34:14 +00006422 };
Alexander Kornienkoab9db512015-06-22 23:07:51 +00006423}
Richard Smithd62306a2011-11-10 06:34:14 +00006424
Richard Smithfddd3842011-12-30 21:15:51 +00006425/// Perform zero-initialization on an object of non-union class type.
6426/// C++11 [dcl.init]p5:
6427/// To zero-initialize an object or reference of type T means:
6428/// [...]
6429/// -- if T is a (possibly cv-qualified) non-union class type,
6430/// each non-static data member and each base-class subobject is
6431/// zero-initialized
Richard Smitha8105bc2012-01-06 16:39:00 +00006432static bool HandleClassZeroInitialization(EvalInfo &Info, const Expr *E,
6433 const RecordDecl *RD,
Richard Smithfddd3842011-12-30 21:15:51 +00006434 const LValue &This, APValue &Result) {
6435 assert(!RD->isUnion() && "Expected non-union class type");
6436 const CXXRecordDecl *CD = dyn_cast<CXXRecordDecl>(RD);
6437 Result = APValue(APValue::UninitStruct(), CD ? CD->getNumBases() : 0,
Aaron Ballman62e47c42014-03-10 13:43:55 +00006438 std::distance(RD->field_begin(), RD->field_end()));
Richard Smithfddd3842011-12-30 21:15:51 +00006439
John McCalld7bca762012-05-01 00:38:49 +00006440 if (RD->isInvalidDecl()) return false;
Richard Smithfddd3842011-12-30 21:15:51 +00006441 const ASTRecordLayout &Layout = Info.Ctx.getASTRecordLayout(RD);
6442
6443 if (CD) {
6444 unsigned Index = 0;
6445 for (CXXRecordDecl::base_class_const_iterator I = CD->bases_begin(),
Richard Smitha8105bc2012-01-06 16:39:00 +00006446 End = CD->bases_end(); I != End; ++I, ++Index) {
Richard Smithfddd3842011-12-30 21:15:51 +00006447 const CXXRecordDecl *Base = I->getType()->getAsCXXRecordDecl();
6448 LValue Subobject = This;
John McCalld7bca762012-05-01 00:38:49 +00006449 if (!HandleLValueDirectBase(Info, E, Subobject, CD, Base, &Layout))
6450 return false;
Richard Smitha8105bc2012-01-06 16:39:00 +00006451 if (!HandleClassZeroInitialization(Info, E, Base, Subobject,
Richard Smithfddd3842011-12-30 21:15:51 +00006452 Result.getStructBase(Index)))
6453 return false;
6454 }
6455 }
6456
Aaron Ballmane8a8bae2014-03-08 20:12:42 +00006457 for (const auto *I : RD->fields()) {
Richard Smithfddd3842011-12-30 21:15:51 +00006458 // -- if T is a reference type, no initialization is performed.
David Blaikie2d7c57e2012-04-30 02:36:29 +00006459 if (I->getType()->isReferenceType())
Richard Smithfddd3842011-12-30 21:15:51 +00006460 continue;
6461
6462 LValue Subobject = This;
Aaron Ballmane8a8bae2014-03-08 20:12:42 +00006463 if (!HandleLValueMember(Info, E, Subobject, I, &Layout))
John McCalld7bca762012-05-01 00:38:49 +00006464 return false;
Richard Smithfddd3842011-12-30 21:15:51 +00006465
David Blaikie2d7c57e2012-04-30 02:36:29 +00006466 ImplicitValueInitExpr VIE(I->getType());
Richard Smithb228a862012-02-15 02:18:13 +00006467 if (!EvaluateInPlace(
David Blaikie2d7c57e2012-04-30 02:36:29 +00006468 Result.getStructField(I->getFieldIndex()), Info, Subobject, &VIE))
Richard Smithfddd3842011-12-30 21:15:51 +00006469 return false;
6470 }
6471
6472 return true;
6473}
6474
Richard Smithb8348f52016-05-12 22:16:28 +00006475bool RecordExprEvaluator::ZeroInitialization(const Expr *E, QualType T) {
6476 const RecordDecl *RD = T->castAs<RecordType>()->getDecl();
John McCall3c79d882012-04-26 18:10:01 +00006477 if (RD->isInvalidDecl()) return false;
Richard Smithfddd3842011-12-30 21:15:51 +00006478 if (RD->isUnion()) {
6479 // C++11 [dcl.init]p5: If T is a (possibly cv-qualified) union type, the
6480 // object's first non-static named data member is zero-initialized
6481 RecordDecl::field_iterator I = RD->field_begin();
6482 if (I == RD->field_end()) {
Craig Topper36250ad2014-05-12 05:36:57 +00006483 Result = APValue((const FieldDecl*)nullptr);
Richard Smithfddd3842011-12-30 21:15:51 +00006484 return true;
6485 }
6486
6487 LValue Subobject = This;
David Blaikie40ed2972012-06-06 20:45:41 +00006488 if (!HandleLValueMember(Info, E, Subobject, *I))
John McCalld7bca762012-05-01 00:38:49 +00006489 return false;
David Blaikie40ed2972012-06-06 20:45:41 +00006490 Result = APValue(*I);
David Blaikie2d7c57e2012-04-30 02:36:29 +00006491 ImplicitValueInitExpr VIE(I->getType());
Richard Smithb228a862012-02-15 02:18:13 +00006492 return EvaluateInPlace(Result.getUnionValue(), Info, Subobject, &VIE);
Richard Smithfddd3842011-12-30 21:15:51 +00006493 }
6494
Richard Smith5d108602012-02-17 00:44:16 +00006495 if (isa<CXXRecordDecl>(RD) && cast<CXXRecordDecl>(RD)->getNumVBases()) {
Faisal Valie690b7a2016-07-02 22:34:24 +00006496 Info.FFDiag(E, diag::note_constexpr_virtual_base) << RD;
Richard Smith5d108602012-02-17 00:44:16 +00006497 return false;
6498 }
6499
Richard Smitha8105bc2012-01-06 16:39:00 +00006500 return HandleClassZeroInitialization(Info, E, RD, This, Result);
Richard Smithfddd3842011-12-30 21:15:51 +00006501}
6502
Richard Smithe97cbd72011-11-11 04:05:33 +00006503bool RecordExprEvaluator::VisitCastExpr(const CastExpr *E) {
6504 switch (E->getCastKind()) {
6505 default:
6506 return ExprEvaluatorBaseTy::VisitCastExpr(E);
6507
6508 case CK_ConstructorConversion:
6509 return Visit(E->getSubExpr());
6510
6511 case CK_DerivedToBase:
6512 case CK_UncheckedDerivedToBase: {
Richard Smith2e312c82012-03-03 22:46:17 +00006513 APValue DerivedObject;
Richard Smithf57d8cb2011-12-09 22:58:01 +00006514 if (!Evaluate(DerivedObject, Info, E->getSubExpr()))
Richard Smithe97cbd72011-11-11 04:05:33 +00006515 return false;
Richard Smithf57d8cb2011-12-09 22:58:01 +00006516 if (!DerivedObject.isStruct())
6517 return Error(E->getSubExpr());
Richard Smithe97cbd72011-11-11 04:05:33 +00006518
6519 // Derived-to-base rvalue conversion: just slice off the derived part.
6520 APValue *Value = &DerivedObject;
6521 const CXXRecordDecl *RD = E->getSubExpr()->getType()->getAsCXXRecordDecl();
6522 for (CastExpr::path_const_iterator PathI = E->path_begin(),
6523 PathE = E->path_end(); PathI != PathE; ++PathI) {
6524 assert(!(*PathI)->isVirtual() && "record rvalue with virtual base");
6525 const CXXRecordDecl *Base = (*PathI)->getType()->getAsCXXRecordDecl();
6526 Value = &Value->getStructBase(getBaseIndex(RD, Base));
6527 RD = Base;
6528 }
6529 Result = *Value;
6530 return true;
6531 }
6532 }
6533}
6534
Richard Smithd62306a2011-11-10 06:34:14 +00006535bool RecordExprEvaluator::VisitInitListExpr(const InitListExpr *E) {
Richard Smith122f88d2016-12-06 23:52:28 +00006536 if (E->isTransparent())
6537 return Visit(E->getInit(0));
6538
Richard Smithd62306a2011-11-10 06:34:14 +00006539 const RecordDecl *RD = E->getType()->castAs<RecordType>()->getDecl();
John McCall3c79d882012-04-26 18:10:01 +00006540 if (RD->isInvalidDecl()) return false;
Richard Smithd62306a2011-11-10 06:34:14 +00006541 const ASTRecordLayout &Layout = Info.Ctx.getASTRecordLayout(RD);
6542
6543 if (RD->isUnion()) {
Richard Smith9eae7232012-01-12 18:54:33 +00006544 const FieldDecl *Field = E->getInitializedFieldInUnion();
6545 Result = APValue(Field);
6546 if (!Field)
Richard Smithd62306a2011-11-10 06:34:14 +00006547 return true;
Richard Smith9eae7232012-01-12 18:54:33 +00006548
6549 // If the initializer list for a union does not contain any elements, the
6550 // first element of the union is value-initialized.
Richard Smith852c9db2013-04-20 22:23:05 +00006551 // FIXME: The element should be initialized from an initializer list.
6552 // Is this difference ever observable for initializer lists which
6553 // we don't build?
Richard Smith9eae7232012-01-12 18:54:33 +00006554 ImplicitValueInitExpr VIE(Field->getType());
6555 const Expr *InitExpr = E->getNumInits() ? E->getInit(0) : &VIE;
6556
Richard Smithd62306a2011-11-10 06:34:14 +00006557 LValue Subobject = This;
John McCalld7bca762012-05-01 00:38:49 +00006558 if (!HandleLValueMember(Info, InitExpr, Subobject, Field, &Layout))
6559 return false;
Richard Smith852c9db2013-04-20 22:23:05 +00006560
6561 // Temporarily override This, in case there's a CXXDefaultInitExpr in here.
6562 ThisOverrideRAII ThisOverride(*Info.CurrentCall, &This,
6563 isa<CXXDefaultInitExpr>(InitExpr));
6564
Richard Smithb228a862012-02-15 02:18:13 +00006565 return EvaluateInPlace(Result.getUnionValue(), Info, Subobject, InitExpr);
Richard Smithd62306a2011-11-10 06:34:14 +00006566 }
6567
Richard Smith872307e2016-03-08 22:17:41 +00006568 auto *CXXRD = dyn_cast<CXXRecordDecl>(RD);
Richard Smithc0d04a22016-05-25 22:06:25 +00006569 if (Result.isUninit())
6570 Result = APValue(APValue::UninitStruct(), CXXRD ? CXXRD->getNumBases() : 0,
6571 std::distance(RD->field_begin(), RD->field_end()));
Richard Smithd62306a2011-11-10 06:34:14 +00006572 unsigned ElementNo = 0;
Richard Smith253c2a32012-01-27 01:14:48 +00006573 bool Success = true;
Richard Smith872307e2016-03-08 22:17:41 +00006574
6575 // Initialize base classes.
6576 if (CXXRD) {
6577 for (const auto &Base : CXXRD->bases()) {
6578 assert(ElementNo < E->getNumInits() && "missing init for base class");
6579 const Expr *Init = E->getInit(ElementNo);
6580
6581 LValue Subobject = This;
6582 if (!HandleLValueBase(Info, Init, Subobject, CXXRD, &Base))
6583 return false;
6584
6585 APValue &FieldVal = Result.getStructBase(ElementNo);
6586 if (!EvaluateInPlace(FieldVal, Info, Subobject, Init)) {
George Burgess IVa145e252016-05-25 22:38:36 +00006587 if (!Info.noteFailure())
Richard Smith872307e2016-03-08 22:17:41 +00006588 return false;
6589 Success = false;
6590 }
6591 ++ElementNo;
6592 }
6593 }
6594
6595 // Initialize members.
Aaron Ballmane8a8bae2014-03-08 20:12:42 +00006596 for (const auto *Field : RD->fields()) {
Richard Smithd62306a2011-11-10 06:34:14 +00006597 // Anonymous bit-fields are not considered members of the class for
6598 // purposes of aggregate initialization.
6599 if (Field->isUnnamedBitfield())
6600 continue;
6601
6602 LValue Subobject = This;
Richard Smithd62306a2011-11-10 06:34:14 +00006603
Richard Smith253c2a32012-01-27 01:14:48 +00006604 bool HaveInit = ElementNo < E->getNumInits();
6605
6606 // FIXME: Diagnostics here should point to the end of the initializer
6607 // list, not the start.
John McCalld7bca762012-05-01 00:38:49 +00006608 if (!HandleLValueMember(Info, HaveInit ? E->getInit(ElementNo) : E,
Aaron Ballmane8a8bae2014-03-08 20:12:42 +00006609 Subobject, Field, &Layout))
John McCalld7bca762012-05-01 00:38:49 +00006610 return false;
Richard Smith253c2a32012-01-27 01:14:48 +00006611
6612 // Perform an implicit value-initialization for members beyond the end of
6613 // the initializer list.
6614 ImplicitValueInitExpr VIE(HaveInit ? Info.Ctx.IntTy : Field->getType());
Richard Smith852c9db2013-04-20 22:23:05 +00006615 const Expr *Init = HaveInit ? E->getInit(ElementNo++) : &VIE;
Richard Smith253c2a32012-01-27 01:14:48 +00006616
Richard Smith852c9db2013-04-20 22:23:05 +00006617 // Temporarily override This, in case there's a CXXDefaultInitExpr in here.
6618 ThisOverrideRAII ThisOverride(*Info.CurrentCall, &This,
6619 isa<CXXDefaultInitExpr>(Init));
6620
Richard Smith49ca8aa2013-08-06 07:09:20 +00006621 APValue &FieldVal = Result.getStructField(Field->getFieldIndex());
6622 if (!EvaluateInPlace(FieldVal, Info, Subobject, Init) ||
6623 (Field->isBitField() && !truncateBitfieldValue(Info, Init,
Aaron Ballmane8a8bae2014-03-08 20:12:42 +00006624 FieldVal, Field))) {
George Burgess IVa145e252016-05-25 22:38:36 +00006625 if (!Info.noteFailure())
Richard Smithd62306a2011-11-10 06:34:14 +00006626 return false;
Richard Smith253c2a32012-01-27 01:14:48 +00006627 Success = false;
Richard Smithd62306a2011-11-10 06:34:14 +00006628 }
6629 }
6630
Richard Smith253c2a32012-01-27 01:14:48 +00006631 return Success;
Richard Smithd62306a2011-11-10 06:34:14 +00006632}
6633
Richard Smithb8348f52016-05-12 22:16:28 +00006634bool RecordExprEvaluator::VisitCXXConstructExpr(const CXXConstructExpr *E,
6635 QualType T) {
6636 // Note that E's type is not necessarily the type of our class here; we might
6637 // be initializing an array element instead.
Richard Smithd62306a2011-11-10 06:34:14 +00006638 const CXXConstructorDecl *FD = E->getConstructor();
John McCall3c79d882012-04-26 18:10:01 +00006639 if (FD->isInvalidDecl() || FD->getParent()->isInvalidDecl()) return false;
6640
Richard Smithfddd3842011-12-30 21:15:51 +00006641 bool ZeroInit = E->requiresZeroInitialization();
6642 if (CheckTrivialDefaultConstructor(Info, E->getExprLoc(), FD, ZeroInit)) {
Richard Smith9eae7232012-01-12 18:54:33 +00006643 // If we've already performed zero-initialization, we're already done.
6644 if (!Result.isUninit())
6645 return true;
6646
Richard Smithda3f4fd2014-03-05 23:32:50 +00006647 // We can get here in two different ways:
6648 // 1) We're performing value-initialization, and should zero-initialize
6649 // the object, or
6650 // 2) We're performing default-initialization of an object with a trivial
6651 // constexpr default constructor, in which case we should start the
6652 // lifetimes of all the base subobjects (there can be no data member
6653 // subobjects in this case) per [basic.life]p1.
6654 // Either way, ZeroInitialization is appropriate.
Richard Smithb8348f52016-05-12 22:16:28 +00006655 return ZeroInitialization(E, T);
Richard Smithcc36f692011-12-22 02:22:31 +00006656 }
6657
Craig Topper36250ad2014-05-12 05:36:57 +00006658 const FunctionDecl *Definition = nullptr;
Olivier Goffart8bc0caa2e2016-02-12 12:34:44 +00006659 auto Body = FD->getBody(Definition);
Richard Smithd62306a2011-11-10 06:34:14 +00006660
Olivier Goffart8bc0caa2e2016-02-12 12:34:44 +00006661 if (!CheckConstexprFunction(Info, E->getExprLoc(), FD, Definition, Body))
Richard Smith357362d2011-12-13 06:39:58 +00006662 return false;
Richard Smithd62306a2011-11-10 06:34:14 +00006663
Richard Smith1bc5c2c2012-01-10 04:32:03 +00006664 // Avoid materializing a temporary for an elidable copy/move constructor.
Richard Smithfddd3842011-12-30 21:15:51 +00006665 if (E->isElidable() && !ZeroInit)
Richard Smithd62306a2011-11-10 06:34:14 +00006666 if (const MaterializeTemporaryExpr *ME
6667 = dyn_cast<MaterializeTemporaryExpr>(E->getArg(0)))
6668 return Visit(ME->GetTemporaryExpr());
6669
Richard Smithb8348f52016-05-12 22:16:28 +00006670 if (ZeroInit && !ZeroInitialization(E, T))
Richard Smithfddd3842011-12-30 21:15:51 +00006671 return false;
6672
Craig Topper5fc8fc22014-08-27 06:28:36 +00006673 auto Args = llvm::makeArrayRef(E->getArgs(), E->getNumArgs());
Richard Smith5179eb72016-06-28 19:03:57 +00006674 return HandleConstructorCall(E, This, Args,
6675 cast<CXXConstructorDecl>(Definition), Info,
6676 Result);
6677}
6678
6679bool RecordExprEvaluator::VisitCXXInheritedCtorInitExpr(
6680 const CXXInheritedCtorInitExpr *E) {
6681 if (!Info.CurrentCall) {
6682 assert(Info.checkingPotentialConstantExpression());
6683 return false;
6684 }
6685
6686 const CXXConstructorDecl *FD = E->getConstructor();
6687 if (FD->isInvalidDecl() || FD->getParent()->isInvalidDecl())
6688 return false;
6689
6690 const FunctionDecl *Definition = nullptr;
6691 auto Body = FD->getBody(Definition);
6692
6693 if (!CheckConstexprFunction(Info, E->getExprLoc(), FD, Definition, Body))
6694 return false;
6695
6696 return HandleConstructorCall(E, This, Info.CurrentCall->Arguments,
Richard Smithf57d8cb2011-12-09 22:58:01 +00006697 cast<CXXConstructorDecl>(Definition), Info,
6698 Result);
Richard Smithd62306a2011-11-10 06:34:14 +00006699}
6700
Richard Smithcc1b96d2013-06-12 22:31:48 +00006701bool RecordExprEvaluator::VisitCXXStdInitializerListExpr(
6702 const CXXStdInitializerListExpr *E) {
6703 const ConstantArrayType *ArrayType =
6704 Info.Ctx.getAsConstantArrayType(E->getSubExpr()->getType());
6705
6706 LValue Array;
6707 if (!EvaluateLValue(E->getSubExpr(), Array, Info))
6708 return false;
6709
6710 // Get a pointer to the first element of the array.
6711 Array.addArray(Info, E, ArrayType);
6712
6713 // FIXME: Perform the checks on the field types in SemaInit.
6714 RecordDecl *Record = E->getType()->castAs<RecordType>()->getDecl();
6715 RecordDecl::field_iterator Field = Record->field_begin();
6716 if (Field == Record->field_end())
6717 return Error(E);
6718
6719 // Start pointer.
6720 if (!Field->getType()->isPointerType() ||
6721 !Info.Ctx.hasSameType(Field->getType()->getPointeeType(),
6722 ArrayType->getElementType()))
6723 return Error(E);
6724
6725 // FIXME: What if the initializer_list type has base classes, etc?
6726 Result = APValue(APValue::UninitStruct(), 0, 2);
6727 Array.moveInto(Result.getStructField(0));
6728
6729 if (++Field == Record->field_end())
6730 return Error(E);
6731
6732 if (Field->getType()->isPointerType() &&
6733 Info.Ctx.hasSameType(Field->getType()->getPointeeType(),
6734 ArrayType->getElementType())) {
6735 // End pointer.
6736 if (!HandleLValueArrayAdjustment(Info, E, Array,
6737 ArrayType->getElementType(),
6738 ArrayType->getSize().getZExtValue()))
6739 return false;
6740 Array.moveInto(Result.getStructField(1));
6741 } else if (Info.Ctx.hasSameType(Field->getType(), Info.Ctx.getSizeType()))
6742 // Length.
6743 Result.getStructField(1) = APValue(APSInt(ArrayType->getSize()));
6744 else
6745 return Error(E);
6746
6747 if (++Field != Record->field_end())
6748 return Error(E);
6749
6750 return true;
6751}
6752
Faisal Valic72a08c2017-01-09 03:02:53 +00006753bool RecordExprEvaluator::VisitLambdaExpr(const LambdaExpr *E) {
6754 const CXXRecordDecl *ClosureClass = E->getLambdaClass();
6755 if (ClosureClass->isInvalidDecl()) return false;
6756
6757 if (Info.checkingPotentialConstantExpression()) return true;
Fangrui Song6907ce22018-07-30 19:24:48 +00006758
Faisal Vali051e3a22017-02-16 04:12:21 +00006759 const size_t NumFields =
6760 std::distance(ClosureClass->field_begin(), ClosureClass->field_end());
Benjamin Krameraad1bdc2017-02-16 14:08:41 +00006761
6762 assert(NumFields == (size_t)std::distance(E->capture_init_begin(),
6763 E->capture_init_end()) &&
6764 "The number of lambda capture initializers should equal the number of "
6765 "fields within the closure type");
6766
Faisal Vali051e3a22017-02-16 04:12:21 +00006767 Result = APValue(APValue::UninitStruct(), /*NumBases*/0, NumFields);
6768 // Iterate through all the lambda's closure object's fields and initialize
6769 // them.
6770 auto *CaptureInitIt = E->capture_init_begin();
6771 const LambdaCapture *CaptureIt = ClosureClass->captures_begin();
6772 bool Success = true;
6773 for (const auto *Field : ClosureClass->fields()) {
6774 assert(CaptureInitIt != E->capture_init_end());
6775 // Get the initializer for this field
6776 Expr *const CurFieldInit = *CaptureInitIt++;
Fangrui Song6907ce22018-07-30 19:24:48 +00006777
Faisal Vali051e3a22017-02-16 04:12:21 +00006778 // If there is no initializer, either this is a VLA or an error has
6779 // occurred.
6780 if (!CurFieldInit)
6781 return Error(E);
6782
6783 APValue &FieldVal = Result.getStructField(Field->getFieldIndex());
6784 if (!EvaluateInPlace(FieldVal, Info, This, CurFieldInit)) {
6785 if (!Info.keepEvaluatingAfterFailure())
6786 return false;
6787 Success = false;
6788 }
6789 ++CaptureIt;
Faisal Valic72a08c2017-01-09 03:02:53 +00006790 }
Faisal Vali051e3a22017-02-16 04:12:21 +00006791 return Success;
Faisal Valic72a08c2017-01-09 03:02:53 +00006792}
6793
Richard Smithd62306a2011-11-10 06:34:14 +00006794static bool EvaluateRecord(const Expr *E, const LValue &This,
6795 APValue &Result, EvalInfo &Info) {
6796 assert(E->isRValue() && E->getType()->isRecordType() &&
Richard Smithd62306a2011-11-10 06:34:14 +00006797 "can't evaluate expression as a record rvalue");
6798 return RecordExprEvaluator(Info, This, Result).Visit(E);
6799}
6800
6801//===----------------------------------------------------------------------===//
Richard Smith027bf112011-11-17 22:56:20 +00006802// Temporary Evaluation
6803//
6804// Temporaries are represented in the AST as rvalues, but generally behave like
6805// lvalues. The full-object of which the temporary is a subobject is implicitly
6806// materialized so that a reference can bind to it.
6807//===----------------------------------------------------------------------===//
6808namespace {
6809class TemporaryExprEvaluator
6810 : public LValueExprEvaluatorBase<TemporaryExprEvaluator> {
6811public:
6812 TemporaryExprEvaluator(EvalInfo &Info, LValue &Result) :
George Burgess IVf9013bf2017-02-10 22:52:29 +00006813 LValueExprEvaluatorBaseTy(Info, Result, false) {}
Richard Smith027bf112011-11-17 22:56:20 +00006814
6815 /// Visit an expression which constructs the value of this temporary.
6816 bool VisitConstructExpr(const Expr *E) {
Akira Hatanaka4e2698c2018-04-10 05:15:01 +00006817 APValue &Value = createTemporary(E, false, Result, *Info.CurrentCall);
6818 return EvaluateInPlace(Value, Info, Result, E);
Richard Smith027bf112011-11-17 22:56:20 +00006819 }
6820
6821 bool VisitCastExpr(const CastExpr *E) {
6822 switch (E->getCastKind()) {
6823 default:
6824 return LValueExprEvaluatorBaseTy::VisitCastExpr(E);
6825
6826 case CK_ConstructorConversion:
6827 return VisitConstructExpr(E->getSubExpr());
6828 }
6829 }
6830 bool VisitInitListExpr(const InitListExpr *E) {
6831 return VisitConstructExpr(E);
6832 }
6833 bool VisitCXXConstructExpr(const CXXConstructExpr *E) {
6834 return VisitConstructExpr(E);
6835 }
6836 bool VisitCallExpr(const CallExpr *E) {
6837 return VisitConstructExpr(E);
6838 }
Richard Smith513955c2014-12-17 19:24:30 +00006839 bool VisitCXXStdInitializerListExpr(const CXXStdInitializerListExpr *E) {
6840 return VisitConstructExpr(E);
6841 }
Faisal Valic72a08c2017-01-09 03:02:53 +00006842 bool VisitLambdaExpr(const LambdaExpr *E) {
6843 return VisitConstructExpr(E);
6844 }
Richard Smith027bf112011-11-17 22:56:20 +00006845};
6846} // end anonymous namespace
6847
6848/// Evaluate an expression of record type as a temporary.
6849static bool EvaluateTemporary(const Expr *E, LValue &Result, EvalInfo &Info) {
Richard Smithd0b111c2011-12-19 22:01:37 +00006850 assert(E->isRValue() && E->getType()->isRecordType());
Richard Smith027bf112011-11-17 22:56:20 +00006851 return TemporaryExprEvaluator(Info, Result).Visit(E);
6852}
6853
6854//===----------------------------------------------------------------------===//
Nate Begeman2f2bdeb2009-01-18 03:20:47 +00006855// Vector Evaluation
6856//===----------------------------------------------------------------------===//
6857
6858namespace {
Benjamin Kramer26222b62009-11-28 19:03:38 +00006859 class VectorExprEvaluator
Aaron Ballman68af21c2014-01-03 19:26:43 +00006860 : public ExprEvaluatorBase<VectorExprEvaluator> {
Richard Smith2d406342011-10-22 21:10:00 +00006861 APValue &Result;
Nate Begeman2f2bdeb2009-01-18 03:20:47 +00006862 public:
Mike Stump11289f42009-09-09 15:08:12 +00006863
Richard Smith2d406342011-10-22 21:10:00 +00006864 VectorExprEvaluator(EvalInfo &info, APValue &Result)
6865 : ExprEvaluatorBaseTy(info), Result(Result) {}
Mike Stump11289f42009-09-09 15:08:12 +00006866
Craig Topper9798b932015-09-29 04:30:05 +00006867 bool Success(ArrayRef<APValue> V, const Expr *E) {
Richard Smith2d406342011-10-22 21:10:00 +00006868 assert(V.size() == E->getType()->castAs<VectorType>()->getNumElements());
6869 // FIXME: remove this APValue copy.
6870 Result = APValue(V.data(), V.size());
6871 return true;
6872 }
Richard Smith2e312c82012-03-03 22:46:17 +00006873 bool Success(const APValue &V, const Expr *E) {
Richard Smithed5165f2011-11-04 05:33:44 +00006874 assert(V.isVector());
Richard Smith2d406342011-10-22 21:10:00 +00006875 Result = V;
6876 return true;
6877 }
Richard Smithfddd3842011-12-30 21:15:51 +00006878 bool ZeroInitialization(const Expr *E);
Mike Stump11289f42009-09-09 15:08:12 +00006879
Richard Smith2d406342011-10-22 21:10:00 +00006880 bool VisitUnaryReal(const UnaryOperator *E)
Eli Friedman3ae59112009-02-23 04:23:56 +00006881 { return Visit(E->getSubExpr()); }
Richard Smith2d406342011-10-22 21:10:00 +00006882 bool VisitCastExpr(const CastExpr* E);
Richard Smith2d406342011-10-22 21:10:00 +00006883 bool VisitInitListExpr(const InitListExpr *E);
6884 bool VisitUnaryImag(const UnaryOperator *E);
Eli Friedman3ae59112009-02-23 04:23:56 +00006885 // FIXME: Missing: unary -, unary ~, binary add/sub/mul/div,
Eli Friedmanc2b50172009-02-22 11:46:18 +00006886 // binary comparisons, binary and/or/xor,
Eli Friedman3ae59112009-02-23 04:23:56 +00006887 // shufflevector, ExtVectorElementExpr
Nate Begeman2f2bdeb2009-01-18 03:20:47 +00006888 };
6889} // end anonymous namespace
6890
6891static bool EvaluateVector(const Expr* E, APValue& Result, EvalInfo &Info) {
Richard Smith11562c52011-10-28 17:51:58 +00006892 assert(E->isRValue() && E->getType()->isVectorType() &&"not a vector rvalue");
Richard Smith2d406342011-10-22 21:10:00 +00006893 return VectorExprEvaluator(Info, Result).Visit(E);
Nate Begeman2f2bdeb2009-01-18 03:20:47 +00006894}
6895
George Burgess IV533ff002015-12-11 00:23:35 +00006896bool VectorExprEvaluator::VisitCastExpr(const CastExpr *E) {
Richard Smith2d406342011-10-22 21:10:00 +00006897 const VectorType *VTy = E->getType()->castAs<VectorType>();
Nate Begemanef1a7fa2009-07-01 07:50:47 +00006898 unsigned NElts = VTy->getNumElements();
Mike Stump11289f42009-09-09 15:08:12 +00006899
Richard Smith161f09a2011-12-06 22:44:34 +00006900 const Expr *SE = E->getSubExpr();
Nate Begeman2ffd3842009-06-26 18:22:18 +00006901 QualType SETy = SE->getType();
Nate Begeman2f2bdeb2009-01-18 03:20:47 +00006902
Eli Friedmanc757de22011-03-25 00:43:55 +00006903 switch (E->getCastKind()) {
6904 case CK_VectorSplat: {
Richard Smith2d406342011-10-22 21:10:00 +00006905 APValue Val = APValue();
Eli Friedmanc757de22011-03-25 00:43:55 +00006906 if (SETy->isIntegerType()) {
6907 APSInt IntResult;
6908 if (!EvaluateInteger(SE, IntResult, Info))
George Burgess IV533ff002015-12-11 00:23:35 +00006909 return false;
6910 Val = APValue(std::move(IntResult));
Eli Friedmanc757de22011-03-25 00:43:55 +00006911 } else if (SETy->isRealFloatingType()) {
George Burgess IV533ff002015-12-11 00:23:35 +00006912 APFloat FloatResult(0.0);
6913 if (!EvaluateFloat(SE, FloatResult, Info))
6914 return false;
6915 Val = APValue(std::move(FloatResult));
Eli Friedmanc757de22011-03-25 00:43:55 +00006916 } else {
Richard Smith2d406342011-10-22 21:10:00 +00006917 return Error(E);
Eli Friedmanc757de22011-03-25 00:43:55 +00006918 }
Nate Begemanef1a7fa2009-07-01 07:50:47 +00006919
6920 // Splat and create vector APValue.
Richard Smith2d406342011-10-22 21:10:00 +00006921 SmallVector<APValue, 4> Elts(NElts, Val);
6922 return Success(Elts, E);
Nate Begeman2ffd3842009-06-26 18:22:18 +00006923 }
Eli Friedman803acb32011-12-22 03:51:45 +00006924 case CK_BitCast: {
6925 // Evaluate the operand into an APInt we can extract from.
6926 llvm::APInt SValInt;
6927 if (!EvalAndBitcastToAPInt(Info, SE, SValInt))
6928 return false;
6929 // Extract the elements
6930 QualType EltTy = VTy->getElementType();
6931 unsigned EltSize = Info.Ctx.getTypeSize(EltTy);
6932 bool BigEndian = Info.Ctx.getTargetInfo().isBigEndian();
6933 SmallVector<APValue, 4> Elts;
6934 if (EltTy->isRealFloatingType()) {
6935 const llvm::fltSemantics &Sem = Info.Ctx.getFloatTypeSemantics(EltTy);
Eli Friedman803acb32011-12-22 03:51:45 +00006936 unsigned FloatEltSize = EltSize;
Stephan Bergmann17c7f702016-12-14 11:57:17 +00006937 if (&Sem == &APFloat::x87DoubleExtended())
Eli Friedman803acb32011-12-22 03:51:45 +00006938 FloatEltSize = 80;
6939 for (unsigned i = 0; i < NElts; i++) {
6940 llvm::APInt Elt;
6941 if (BigEndian)
6942 Elt = SValInt.rotl(i*EltSize+FloatEltSize).trunc(FloatEltSize);
6943 else
6944 Elt = SValInt.rotr(i*EltSize).trunc(FloatEltSize);
Tim Northover178723a2013-01-22 09:46:51 +00006945 Elts.push_back(APValue(APFloat(Sem, Elt)));
Eli Friedman803acb32011-12-22 03:51:45 +00006946 }
6947 } else if (EltTy->isIntegerType()) {
6948 for (unsigned i = 0; i < NElts; i++) {
6949 llvm::APInt Elt;
6950 if (BigEndian)
6951 Elt = SValInt.rotl(i*EltSize+EltSize).zextOrTrunc(EltSize);
6952 else
6953 Elt = SValInt.rotr(i*EltSize).zextOrTrunc(EltSize);
6954 Elts.push_back(APValue(APSInt(Elt, EltTy->isSignedIntegerType())));
6955 }
6956 } else {
6957 return Error(E);
6958 }
6959 return Success(Elts, E);
6960 }
Eli Friedmanc757de22011-03-25 00:43:55 +00006961 default:
Richard Smith11562c52011-10-28 17:51:58 +00006962 return ExprEvaluatorBaseTy::VisitCastExpr(E);
Eli Friedmanc757de22011-03-25 00:43:55 +00006963 }
Nate Begeman2f2bdeb2009-01-18 03:20:47 +00006964}
6965
Richard Smith2d406342011-10-22 21:10:00 +00006966bool
Nate Begeman2f2bdeb2009-01-18 03:20:47 +00006967VectorExprEvaluator::VisitInitListExpr(const InitListExpr *E) {
Richard Smith2d406342011-10-22 21:10:00 +00006968 const VectorType *VT = E->getType()->castAs<VectorType>();
Nate Begeman2f2bdeb2009-01-18 03:20:47 +00006969 unsigned NumInits = E->getNumInits();
Eli Friedman3ae59112009-02-23 04:23:56 +00006970 unsigned NumElements = VT->getNumElements();
Mike Stump11289f42009-09-09 15:08:12 +00006971
Nate Begeman2f2bdeb2009-01-18 03:20:47 +00006972 QualType EltTy = VT->getElementType();
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006973 SmallVector<APValue, 4> Elements;
Nate Begeman2f2bdeb2009-01-18 03:20:47 +00006974
Eli Friedmanb9c71292012-01-03 23:24:20 +00006975 // The number of initializers can be less than the number of
6976 // vector elements. For OpenCL, this can be due to nested vector
Fangrui Song6907ce22018-07-30 19:24:48 +00006977 // initialization. For GCC compatibility, missing trailing elements
Eli Friedmanb9c71292012-01-03 23:24:20 +00006978 // should be initialized with zeroes.
6979 unsigned CountInits = 0, CountElts = 0;
6980 while (CountElts < NumElements) {
6981 // Handle nested vector initialization.
Fangrui Song6907ce22018-07-30 19:24:48 +00006982 if (CountInits < NumInits
Eli Friedman1409e6e2013-09-17 04:07:02 +00006983 && E->getInit(CountInits)->getType()->isVectorType()) {
Eli Friedmanb9c71292012-01-03 23:24:20 +00006984 APValue v;
6985 if (!EvaluateVector(E->getInit(CountInits), v, Info))
6986 return Error(E);
6987 unsigned vlen = v.getVectorLength();
Fangrui Song6907ce22018-07-30 19:24:48 +00006988 for (unsigned j = 0; j < vlen; j++)
Eli Friedmanb9c71292012-01-03 23:24:20 +00006989 Elements.push_back(v.getVectorElt(j));
6990 CountElts += vlen;
6991 } else if (EltTy->isIntegerType()) {
Nate Begeman2f2bdeb2009-01-18 03:20:47 +00006992 llvm::APSInt sInt(32);
Eli Friedmanb9c71292012-01-03 23:24:20 +00006993 if (CountInits < NumInits) {
6994 if (!EvaluateInteger(E->getInit(CountInits), sInt, Info))
Richard Smithac2f0b12012-03-13 20:58:32 +00006995 return false;
Eli Friedmanb9c71292012-01-03 23:24:20 +00006996 } else // trailing integer zero.
6997 sInt = Info.Ctx.MakeIntValue(0, EltTy);
6998 Elements.push_back(APValue(sInt));
6999 CountElts++;
Nate Begeman2f2bdeb2009-01-18 03:20:47 +00007000 } else {
7001 llvm::APFloat f(0.0);
Eli Friedmanb9c71292012-01-03 23:24:20 +00007002 if (CountInits < NumInits) {
7003 if (!EvaluateFloat(E->getInit(CountInits), f, Info))
Richard Smithac2f0b12012-03-13 20:58:32 +00007004 return false;
Eli Friedmanb9c71292012-01-03 23:24:20 +00007005 } else // trailing float zero.
7006 f = APFloat::getZero(Info.Ctx.getFloatTypeSemantics(EltTy));
7007 Elements.push_back(APValue(f));
7008 CountElts++;
John McCall875679e2010-06-11 17:54:15 +00007009 }
Eli Friedmanb9c71292012-01-03 23:24:20 +00007010 CountInits++;
Nate Begeman2f2bdeb2009-01-18 03:20:47 +00007011 }
Richard Smith2d406342011-10-22 21:10:00 +00007012 return Success(Elements, E);
Nate Begeman2f2bdeb2009-01-18 03:20:47 +00007013}
7014
Richard Smith2d406342011-10-22 21:10:00 +00007015bool
Richard Smithfddd3842011-12-30 21:15:51 +00007016VectorExprEvaluator::ZeroInitialization(const Expr *E) {
Richard Smith2d406342011-10-22 21:10:00 +00007017 const VectorType *VT = E->getType()->getAs<VectorType>();
Eli Friedman3ae59112009-02-23 04:23:56 +00007018 QualType EltTy = VT->getElementType();
7019 APValue ZeroElement;
7020 if (EltTy->isIntegerType())
7021 ZeroElement = APValue(Info.Ctx.MakeIntValue(0, EltTy));
7022 else
7023 ZeroElement =
7024 APValue(APFloat::getZero(Info.Ctx.getFloatTypeSemantics(EltTy)));
7025
Chris Lattner0e62c1c2011-07-23 10:55:15 +00007026 SmallVector<APValue, 4> Elements(VT->getNumElements(), ZeroElement);
Richard Smith2d406342011-10-22 21:10:00 +00007027 return Success(Elements, E);
Eli Friedman3ae59112009-02-23 04:23:56 +00007028}
7029
Richard Smith2d406342011-10-22 21:10:00 +00007030bool VectorExprEvaluator::VisitUnaryImag(const UnaryOperator *E) {
Richard Smith4a678122011-10-24 18:44:57 +00007031 VisitIgnoredValue(E->getSubExpr());
Richard Smithfddd3842011-12-30 21:15:51 +00007032 return ZeroInitialization(E);
Eli Friedman3ae59112009-02-23 04:23:56 +00007033}
7034
Nate Begeman2f2bdeb2009-01-18 03:20:47 +00007035//===----------------------------------------------------------------------===//
Richard Smithf3e9e432011-11-07 09:22:26 +00007036// Array Evaluation
7037//===----------------------------------------------------------------------===//
7038
7039namespace {
7040 class ArrayExprEvaluator
Aaron Ballman68af21c2014-01-03 19:26:43 +00007041 : public ExprEvaluatorBase<ArrayExprEvaluator> {
Richard Smithd62306a2011-11-10 06:34:14 +00007042 const LValue &This;
Richard Smithf3e9e432011-11-07 09:22:26 +00007043 APValue &Result;
7044 public:
7045
Richard Smithd62306a2011-11-10 06:34:14 +00007046 ArrayExprEvaluator(EvalInfo &Info, const LValue &This, APValue &Result)
7047 : ExprEvaluatorBaseTy(Info), This(This), Result(Result) {}
Richard Smithf3e9e432011-11-07 09:22:26 +00007048
7049 bool Success(const APValue &V, const Expr *E) {
Richard Smith14a94132012-02-17 03:35:37 +00007050 assert((V.isArray() || V.isLValue()) &&
7051 "expected array or string literal");
Richard Smithf3e9e432011-11-07 09:22:26 +00007052 Result = V;
7053 return true;
7054 }
Richard Smithf3e9e432011-11-07 09:22:26 +00007055
Richard Smithfddd3842011-12-30 21:15:51 +00007056 bool ZeroInitialization(const Expr *E) {
Richard Smithd62306a2011-11-10 06:34:14 +00007057 const ConstantArrayType *CAT =
7058 Info.Ctx.getAsConstantArrayType(E->getType());
7059 if (!CAT)
Richard Smithf57d8cb2011-12-09 22:58:01 +00007060 return Error(E);
Richard Smithd62306a2011-11-10 06:34:14 +00007061
7062 Result = APValue(APValue::UninitArray(), 0,
7063 CAT->getSize().getZExtValue());
7064 if (!Result.hasArrayFiller()) return true;
7065
Richard Smithfddd3842011-12-30 21:15:51 +00007066 // Zero-initialize all elements.
Richard Smithd62306a2011-11-10 06:34:14 +00007067 LValue Subobject = This;
Richard Smitha8105bc2012-01-06 16:39:00 +00007068 Subobject.addArray(Info, E, CAT);
Richard Smithd62306a2011-11-10 06:34:14 +00007069 ImplicitValueInitExpr VIE(CAT->getElementType());
Richard Smithb228a862012-02-15 02:18:13 +00007070 return EvaluateInPlace(Result.getArrayFiller(), Info, Subobject, &VIE);
Richard Smithd62306a2011-11-10 06:34:14 +00007071 }
7072
Richard Smith52a980a2015-08-28 02:43:42 +00007073 bool VisitCallExpr(const CallExpr *E) {
7074 return handleCallExpr(E, Result, &This);
7075 }
Richard Smithf3e9e432011-11-07 09:22:26 +00007076 bool VisitInitListExpr(const InitListExpr *E);
Richard Smith410306b2016-12-12 02:53:20 +00007077 bool VisitArrayInitLoopExpr(const ArrayInitLoopExpr *E);
Richard Smith027bf112011-11-17 22:56:20 +00007078 bool VisitCXXConstructExpr(const CXXConstructExpr *E);
Richard Smith9543c5e2013-04-22 14:44:29 +00007079 bool VisitCXXConstructExpr(const CXXConstructExpr *E,
7080 const LValue &Subobject,
7081 APValue *Value, QualType Type);
Richard Smithf3e9e432011-11-07 09:22:26 +00007082 };
7083} // end anonymous namespace
7084
Richard Smithd62306a2011-11-10 06:34:14 +00007085static bool EvaluateArray(const Expr *E, const LValue &This,
7086 APValue &Result, EvalInfo &Info) {
Richard Smithfddd3842011-12-30 21:15:51 +00007087 assert(E->isRValue() && E->getType()->isArrayType() && "not an array rvalue");
Richard Smithd62306a2011-11-10 06:34:14 +00007088 return ArrayExprEvaluator(Info, This, Result).Visit(E);
Richard Smithf3e9e432011-11-07 09:22:26 +00007089}
7090
Ivan A. Kosarev01df5192018-02-14 13:10:35 +00007091// Return true iff the given array filler may depend on the element index.
7092static bool MaybeElementDependentArrayFiller(const Expr *FillerExpr) {
7093 // For now, just whitelist non-class value-initialization and initialization
7094 // lists comprised of them.
7095 if (isa<ImplicitValueInitExpr>(FillerExpr))
7096 return false;
7097 if (const InitListExpr *ILE = dyn_cast<InitListExpr>(FillerExpr)) {
7098 for (unsigned I = 0, E = ILE->getNumInits(); I != E; ++I) {
7099 if (MaybeElementDependentArrayFiller(ILE->getInit(I)))
7100 return true;
7101 }
7102 return false;
7103 }
7104 return true;
7105}
7106
Richard Smithf3e9e432011-11-07 09:22:26 +00007107bool ArrayExprEvaluator::VisitInitListExpr(const InitListExpr *E) {
7108 const ConstantArrayType *CAT = Info.Ctx.getAsConstantArrayType(E->getType());
7109 if (!CAT)
Richard Smithf57d8cb2011-12-09 22:58:01 +00007110 return Error(E);
Richard Smithf3e9e432011-11-07 09:22:26 +00007111
Richard Smithca2cfbf2011-12-22 01:07:19 +00007112 // C++11 [dcl.init.string]p1: A char array [...] can be initialized by [...]
7113 // an appropriately-typed string literal enclosed in braces.
Richard Smith9ec1e482012-04-15 02:50:59 +00007114 if (E->isStringLiteralInit()) {
Richard Smithca2cfbf2011-12-22 01:07:19 +00007115 LValue LV;
7116 if (!EvaluateLValue(E->getInit(0), LV, Info))
7117 return false;
Richard Smith2e312c82012-03-03 22:46:17 +00007118 APValue Val;
Richard Smith14a94132012-02-17 03:35:37 +00007119 LV.moveInto(Val);
7120 return Success(Val, E);
Richard Smithca2cfbf2011-12-22 01:07:19 +00007121 }
7122
Richard Smith253c2a32012-01-27 01:14:48 +00007123 bool Success = true;
7124
Richard Smith1b9f2eb2012-07-07 22:48:24 +00007125 assert((!Result.isArray() || Result.getArrayInitializedElts() == 0) &&
7126 "zero-initialized array shouldn't have any initialized elts");
7127 APValue Filler;
7128 if (Result.isArray() && Result.hasArrayFiller())
7129 Filler = Result.getArrayFiller();
7130
Richard Smith9543c5e2013-04-22 14:44:29 +00007131 unsigned NumEltsToInit = E->getNumInits();
7132 unsigned NumElts = CAT->getSize().getZExtValue();
Craig Topper36250ad2014-05-12 05:36:57 +00007133 const Expr *FillerExpr = E->hasArrayFiller() ? E->getArrayFiller() : nullptr;
Richard Smith9543c5e2013-04-22 14:44:29 +00007134
7135 // If the initializer might depend on the array index, run it for each
Ivan A. Kosarev01df5192018-02-14 13:10:35 +00007136 // array element.
7137 if (NumEltsToInit != NumElts && MaybeElementDependentArrayFiller(FillerExpr))
Richard Smith9543c5e2013-04-22 14:44:29 +00007138 NumEltsToInit = NumElts;
7139
Nicola Zaghen3538b392018-05-15 13:30:56 +00007140 LLVM_DEBUG(llvm::dbgs() << "The number of elements to initialize: "
7141 << NumEltsToInit << ".\n");
Ivan A. Kosarev01df5192018-02-14 13:10:35 +00007142
Richard Smith9543c5e2013-04-22 14:44:29 +00007143 Result = APValue(APValue::UninitArray(), NumEltsToInit, NumElts);
Richard Smith1b9f2eb2012-07-07 22:48:24 +00007144
7145 // If the array was previously zero-initialized, preserve the
7146 // zero-initialized values.
7147 if (!Filler.isUninit()) {
7148 for (unsigned I = 0, E = Result.getArrayInitializedElts(); I != E; ++I)
7149 Result.getArrayInitializedElt(I) = Filler;
7150 if (Result.hasArrayFiller())
7151 Result.getArrayFiller() = Filler;
7152 }
7153
Richard Smithd62306a2011-11-10 06:34:14 +00007154 LValue Subobject = This;
Richard Smitha8105bc2012-01-06 16:39:00 +00007155 Subobject.addArray(Info, E, CAT);
Richard Smith9543c5e2013-04-22 14:44:29 +00007156 for (unsigned Index = 0; Index != NumEltsToInit; ++Index) {
7157 const Expr *Init =
7158 Index < E->getNumInits() ? E->getInit(Index) : FillerExpr;
Richard Smithb228a862012-02-15 02:18:13 +00007159 if (!EvaluateInPlace(Result.getArrayInitializedElt(Index),
Richard Smith9543c5e2013-04-22 14:44:29 +00007160 Info, Subobject, Init) ||
7161 !HandleLValueArrayAdjustment(Info, Init, Subobject,
Richard Smith253c2a32012-01-27 01:14:48 +00007162 CAT->getElementType(), 1)) {
George Burgess IVa145e252016-05-25 22:38:36 +00007163 if (!Info.noteFailure())
Richard Smith253c2a32012-01-27 01:14:48 +00007164 return false;
7165 Success = false;
7166 }
Richard Smithd62306a2011-11-10 06:34:14 +00007167 }
Richard Smithf3e9e432011-11-07 09:22:26 +00007168
Richard Smith9543c5e2013-04-22 14:44:29 +00007169 if (!Result.hasArrayFiller())
7170 return Success;
7171
7172 // If we get here, we have a trivial filler, which we can just evaluate
7173 // once and splat over the rest of the array elements.
7174 assert(FillerExpr && "no array filler for incomplete init list");
7175 return EvaluateInPlace(Result.getArrayFiller(), Info, Subobject,
7176 FillerExpr) && Success;
Richard Smithf3e9e432011-11-07 09:22:26 +00007177}
7178
Richard Smith410306b2016-12-12 02:53:20 +00007179bool ArrayExprEvaluator::VisitArrayInitLoopExpr(const ArrayInitLoopExpr *E) {
7180 if (E->getCommonExpr() &&
7181 !Evaluate(Info.CurrentCall->createTemporary(E->getCommonExpr(), false),
7182 Info, E->getCommonExpr()->getSourceExpr()))
7183 return false;
7184
7185 auto *CAT = cast<ConstantArrayType>(E->getType()->castAsArrayTypeUnsafe());
7186
7187 uint64_t Elements = CAT->getSize().getZExtValue();
7188 Result = APValue(APValue::UninitArray(), Elements, Elements);
7189
7190 LValue Subobject = This;
7191 Subobject.addArray(Info, E, CAT);
7192
7193 bool Success = true;
7194 for (EvalInfo::ArrayInitLoopIndex Index(Info); Index != Elements; ++Index) {
7195 if (!EvaluateInPlace(Result.getArrayInitializedElt(Index),
7196 Info, Subobject, E->getSubExpr()) ||
7197 !HandleLValueArrayAdjustment(Info, E, Subobject,
7198 CAT->getElementType(), 1)) {
7199 if (!Info.noteFailure())
7200 return false;
7201 Success = false;
7202 }
7203 }
7204
7205 return Success;
7206}
7207
Richard Smith027bf112011-11-17 22:56:20 +00007208bool ArrayExprEvaluator::VisitCXXConstructExpr(const CXXConstructExpr *E) {
Richard Smith9543c5e2013-04-22 14:44:29 +00007209 return VisitCXXConstructExpr(E, This, &Result, E->getType());
7210}
Richard Smith1b9f2eb2012-07-07 22:48:24 +00007211
Richard Smith9543c5e2013-04-22 14:44:29 +00007212bool ArrayExprEvaluator::VisitCXXConstructExpr(const CXXConstructExpr *E,
7213 const LValue &Subobject,
7214 APValue *Value,
7215 QualType Type) {
7216 bool HadZeroInit = !Value->isUninit();
7217
7218 if (const ConstantArrayType *CAT = Info.Ctx.getAsConstantArrayType(Type)) {
7219 unsigned N = CAT->getSize().getZExtValue();
7220
7221 // Preserve the array filler if we had prior zero-initialization.
7222 APValue Filler =
7223 HadZeroInit && Value->hasArrayFiller() ? Value->getArrayFiller()
7224 : APValue();
7225
7226 *Value = APValue(APValue::UninitArray(), N, N);
7227
7228 if (HadZeroInit)
7229 for (unsigned I = 0; I != N; ++I)
7230 Value->getArrayInitializedElt(I) = Filler;
7231
7232 // Initialize the elements.
7233 LValue ArrayElt = Subobject;
7234 ArrayElt.addArray(Info, E, CAT);
7235 for (unsigned I = 0; I != N; ++I)
7236 if (!VisitCXXConstructExpr(E, ArrayElt, &Value->getArrayInitializedElt(I),
7237 CAT->getElementType()) ||
7238 !HandleLValueArrayAdjustment(Info, E, ArrayElt,
7239 CAT->getElementType(), 1))
7240 return false;
7241
7242 return true;
Richard Smith1b9f2eb2012-07-07 22:48:24 +00007243 }
Richard Smith027bf112011-11-17 22:56:20 +00007244
Richard Smith9543c5e2013-04-22 14:44:29 +00007245 if (!Type->isRecordType())
Richard Smith9fce7bc2012-07-10 22:12:55 +00007246 return Error(E);
7247
Richard Smithb8348f52016-05-12 22:16:28 +00007248 return RecordExprEvaluator(Info, Subobject, *Value)
7249 .VisitCXXConstructExpr(E, Type);
Richard Smith027bf112011-11-17 22:56:20 +00007250}
7251
Richard Smithf3e9e432011-11-07 09:22:26 +00007252//===----------------------------------------------------------------------===//
Chris Lattner05706e882008-07-11 18:11:29 +00007253// Integer Evaluation
Richard Smith11562c52011-10-28 17:51:58 +00007254//
7255// As a GNU extension, we support casting pointers to sufficiently-wide integer
7256// types and back in constant folding. Integer values are thus represented
7257// either as an integer-valued APValue, or as an lvalue-valued APValue.
Chris Lattner05706e882008-07-11 18:11:29 +00007258//===----------------------------------------------------------------------===//
Chris Lattner05706e882008-07-11 18:11:29 +00007259
7260namespace {
Benjamin Kramer26222b62009-11-28 19:03:38 +00007261class IntExprEvaluator
Eric Fiselier0683c0e2018-05-07 21:07:10 +00007262 : public ExprEvaluatorBase<IntExprEvaluator> {
Richard Smith2e312c82012-03-03 22:46:17 +00007263 APValue &Result;
Anders Carlsson0a1707c2008-07-08 05:13:58 +00007264public:
Richard Smith2e312c82012-03-03 22:46:17 +00007265 IntExprEvaluator(EvalInfo &info, APValue &result)
Eric Fiselier0683c0e2018-05-07 21:07:10 +00007266 : ExprEvaluatorBaseTy(info), Result(result) {}
Chris Lattner05706e882008-07-11 18:11:29 +00007267
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00007268 bool Success(const llvm::APSInt &SI, const Expr *E, APValue &Result) {
Abramo Bagnara9ae292d2011-07-02 13:13:53 +00007269 assert(E->getType()->isIntegralOrEnumerationType() &&
Douglas Gregorb90df602010-06-16 00:17:44 +00007270 "Invalid evaluation result.");
Abramo Bagnara9ae292d2011-07-02 13:13:53 +00007271 assert(SI.isSigned() == E->getType()->isSignedIntegerOrEnumerationType() &&
Daniel Dunbare3c92bc2009-02-19 18:37:50 +00007272 "Invalid evaluation result.");
Abramo Bagnara9ae292d2011-07-02 13:13:53 +00007273 assert(SI.getBitWidth() == Info.Ctx.getIntWidth(E->getType()) &&
Daniel Dunbare3c92bc2009-02-19 18:37:50 +00007274 "Invalid evaluation result.");
Richard Smith2e312c82012-03-03 22:46:17 +00007275 Result = APValue(SI);
Daniel Dunbare3c92bc2009-02-19 18:37:50 +00007276 return true;
7277 }
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00007278 bool Success(const llvm::APSInt &SI, const Expr *E) {
7279 return Success(SI, E, Result);
7280 }
Daniel Dunbare3c92bc2009-02-19 18:37:50 +00007281
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00007282 bool Success(const llvm::APInt &I, const Expr *E, APValue &Result) {
Fangrui Song6907ce22018-07-30 19:24:48 +00007283 assert(E->getType()->isIntegralOrEnumerationType() &&
Douglas Gregorb90df602010-06-16 00:17:44 +00007284 "Invalid evaluation result.");
Daniel Dunbarca097ad2009-02-19 20:17:33 +00007285 assert(I.getBitWidth() == Info.Ctx.getIntWidth(E->getType()) &&
Daniel Dunbare3c92bc2009-02-19 18:37:50 +00007286 "Invalid evaluation result.");
Richard Smith2e312c82012-03-03 22:46:17 +00007287 Result = APValue(APSInt(I));
Douglas Gregor6ab2fa82011-05-20 16:38:50 +00007288 Result.getInt().setIsUnsigned(
7289 E->getType()->isUnsignedIntegerOrEnumerationType());
Daniel Dunbar8aafc892009-02-19 09:06:44 +00007290 return true;
7291 }
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00007292 bool Success(const llvm::APInt &I, const Expr *E) {
7293 return Success(I, E, Result);
7294 }
Daniel Dunbar8aafc892009-02-19 09:06:44 +00007295
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00007296 bool Success(uint64_t Value, const Expr *E, APValue &Result) {
Eric Fiselier0683c0e2018-05-07 21:07:10 +00007297 assert(E->getType()->isIntegralOrEnumerationType() &&
Douglas Gregorb90df602010-06-16 00:17:44 +00007298 "Invalid evaluation result.");
Richard Smith2e312c82012-03-03 22:46:17 +00007299 Result = APValue(Info.Ctx.MakeIntValue(Value, E->getType()));
Daniel Dunbar8aafc892009-02-19 09:06:44 +00007300 return true;
7301 }
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00007302 bool Success(uint64_t Value, const Expr *E) {
7303 return Success(Value, E, Result);
7304 }
Daniel Dunbar8aafc892009-02-19 09:06:44 +00007305
Ken Dyckdbc01912011-03-11 02:13:43 +00007306 bool Success(CharUnits Size, const Expr *E) {
7307 return Success(Size.getQuantity(), E);
7308 }
7309
Richard Smith2e312c82012-03-03 22:46:17 +00007310 bool Success(const APValue &V, const Expr *E) {
Eli Friedmanb1bc3682012-01-05 23:59:40 +00007311 if (V.isLValue() || V.isAddrLabelDiff()) {
Richard Smith9c8d1c52011-10-29 22:55:55 +00007312 Result = V;
7313 return true;
7314 }
Peter Collingbournee9200682011-05-13 03:29:01 +00007315 return Success(V.getInt(), E);
Chris Lattnerfac05ae2008-11-12 07:43:42 +00007316 }
Mike Stump11289f42009-09-09 15:08:12 +00007317
Richard Smithfddd3842011-12-30 21:15:51 +00007318 bool ZeroInitialization(const Expr *E) { return Success(0, E); }
Richard Smith4ce706a2011-10-11 21:43:33 +00007319
Peter Collingbournee9200682011-05-13 03:29:01 +00007320 //===--------------------------------------------------------------------===//
7321 // Visitor Methods
7322 //===--------------------------------------------------------------------===//
Anders Carlsson0a1707c2008-07-08 05:13:58 +00007323
Chris Lattner7174bf32008-07-12 00:38:25 +00007324 bool VisitIntegerLiteral(const IntegerLiteral *E) {
Daniel Dunbar8aafc892009-02-19 09:06:44 +00007325 return Success(E->getValue(), E);
Chris Lattner7174bf32008-07-12 00:38:25 +00007326 }
7327 bool VisitCharacterLiteral(const CharacterLiteral *E) {
Daniel Dunbar8aafc892009-02-19 09:06:44 +00007328 return Success(E->getValue(), E);
Chris Lattner7174bf32008-07-12 00:38:25 +00007329 }
Eli Friedmanfb8a93f2009-11-24 05:28:59 +00007330
7331 bool CheckReferencedDecl(const Expr *E, const Decl *D);
7332 bool VisitDeclRefExpr(const DeclRefExpr *E) {
Peter Collingbournee9200682011-05-13 03:29:01 +00007333 if (CheckReferencedDecl(E, E->getDecl()))
7334 return true;
7335
7336 return ExprEvaluatorBaseTy::VisitDeclRefExpr(E);
Eli Friedmanfb8a93f2009-11-24 05:28:59 +00007337 }
7338 bool VisitMemberExpr(const MemberExpr *E) {
7339 if (CheckReferencedDecl(E, E->getMemberDecl())) {
David Majnemere9807b22016-02-26 04:23:19 +00007340 VisitIgnoredBaseExpression(E->getBase());
Eli Friedmanfb8a93f2009-11-24 05:28:59 +00007341 return true;
7342 }
Peter Collingbournee9200682011-05-13 03:29:01 +00007343
7344 return ExprEvaluatorBaseTy::VisitMemberExpr(E);
Eli Friedmanfb8a93f2009-11-24 05:28:59 +00007345 }
7346
Peter Collingbournee9200682011-05-13 03:29:01 +00007347 bool VisitCallExpr(const CallExpr *E);
Richard Smith6328cbd2016-11-16 00:57:23 +00007348 bool VisitBuiltinCallExpr(const CallExpr *E, unsigned BuiltinOp);
Chris Lattnere13042c2008-07-11 19:10:17 +00007349 bool VisitBinaryOperator(const BinaryOperator *E);
Douglas Gregor882211c2010-04-28 22:16:22 +00007350 bool VisitOffsetOfExpr(const OffsetOfExpr *E);
Chris Lattnere13042c2008-07-11 19:10:17 +00007351 bool VisitUnaryOperator(const UnaryOperator *E);
Anders Carlsson374b93d2008-07-08 05:49:43 +00007352
Peter Collingbournee9200682011-05-13 03:29:01 +00007353 bool VisitCastExpr(const CastExpr* E);
Peter Collingbournee190dee2011-03-11 19:24:49 +00007354 bool VisitUnaryExprOrTypeTraitExpr(const UnaryExprOrTypeTraitExpr *E);
Sebastian Redl6f282892008-11-11 17:56:53 +00007355
Anders Carlsson9f9e4242008-11-16 19:01:22 +00007356 bool VisitCXXBoolLiteralExpr(const CXXBoolLiteralExpr *E) {
Daniel Dunbar8aafc892009-02-19 09:06:44 +00007357 return Success(E->getValue(), E);
Anders Carlsson9f9e4242008-11-16 19:01:22 +00007358 }
Mike Stump11289f42009-09-09 15:08:12 +00007359
Ted Kremeneke65b0862012-03-06 20:05:56 +00007360 bool VisitObjCBoolLiteralExpr(const ObjCBoolLiteralExpr *E) {
7361 return Success(E->getValue(), E);
7362 }
Richard Smith410306b2016-12-12 02:53:20 +00007363
7364 bool VisitArrayInitIndexExpr(const ArrayInitIndexExpr *E) {
7365 if (Info.ArrayInitIndex == uint64_t(-1)) {
7366 // We were asked to evaluate this subexpression independent of the
7367 // enclosing ArrayInitLoopExpr. We can't do that.
7368 Info.FFDiag(E);
7369 return false;
7370 }
7371 return Success(Info.ArrayInitIndex, E);
7372 }
Fangrui Song6907ce22018-07-30 19:24:48 +00007373
Richard Smith4ce706a2011-10-11 21:43:33 +00007374 // Note, GNU defines __null as an integer, not a pointer.
Anders Carlsson39def3a2008-12-21 22:39:40 +00007375 bool VisitGNUNullExpr(const GNUNullExpr *E) {
Richard Smithfddd3842011-12-30 21:15:51 +00007376 return ZeroInitialization(E);
Eli Friedman4e7a2412009-02-27 04:45:43 +00007377 }
7378
Douglas Gregor29c42f22012-02-24 07:38:34 +00007379 bool VisitTypeTraitExpr(const TypeTraitExpr *E) {
7380 return Success(E->getValue(), E);
7381 }
7382
John Wiegley6242b6a2011-04-28 00:16:57 +00007383 bool VisitArrayTypeTraitExpr(const ArrayTypeTraitExpr *E) {
7384 return Success(E->getValue(), E);
7385 }
7386
John Wiegleyf9f65842011-04-25 06:54:41 +00007387 bool VisitExpressionTraitExpr(const ExpressionTraitExpr *E) {
7388 return Success(E->getValue(), E);
7389 }
7390
Eli Friedmana1c7b6c2009-02-28 03:59:05 +00007391 bool VisitUnaryReal(const UnaryOperator *E);
Eli Friedman4e7a2412009-02-27 04:45:43 +00007392 bool VisitUnaryImag(const UnaryOperator *E);
7393
Sebastian Redl5f0180d2010-09-10 20:55:47 +00007394 bool VisitCXXNoexceptExpr(const CXXNoexceptExpr *E);
Douglas Gregor820ba7b2011-01-04 17:33:58 +00007395 bool VisitSizeOfPackExpr(const SizeOfPackExpr *E);
Sebastian Redl12757ab2011-09-24 17:48:14 +00007396
Eli Friedman4e7a2412009-02-27 04:45:43 +00007397 // FIXME: Missing: array subscript of vector, member of vector
Anders Carlsson9c181652008-07-08 14:35:21 +00007398};
Leonard Chandb01c3a2018-06-20 17:19:40 +00007399
7400class FixedPointExprEvaluator
7401 : public ExprEvaluatorBase<FixedPointExprEvaluator> {
7402 APValue &Result;
7403
7404 public:
7405 FixedPointExprEvaluator(EvalInfo &info, APValue &result)
7406 : ExprEvaluatorBaseTy(info), Result(result) {}
7407
7408 bool Success(const llvm::APSInt &SI, const Expr *E, APValue &Result) {
7409 assert(E->getType()->isFixedPointType() && "Invalid evaluation result.");
7410 assert(SI.isSigned() == E->getType()->isSignedFixedPointType() &&
7411 "Invalid evaluation result.");
7412 assert(SI.getBitWidth() == Info.Ctx.getIntWidth(E->getType()) &&
7413 "Invalid evaluation result.");
7414 Result = APValue(SI);
7415 return true;
7416 }
7417 bool Success(const llvm::APSInt &SI, const Expr *E) {
7418 return Success(SI, E, Result);
7419 }
7420
7421 bool Success(const llvm::APInt &I, const Expr *E, APValue &Result) {
7422 assert(E->getType()->isFixedPointType() && "Invalid evaluation result.");
7423 assert(I.getBitWidth() == Info.Ctx.getIntWidth(E->getType()) &&
7424 "Invalid evaluation result.");
7425 Result = APValue(APSInt(I));
7426 Result.getInt().setIsUnsigned(E->getType()->isUnsignedFixedPointType());
7427 return true;
7428 }
7429 bool Success(const llvm::APInt &I, const Expr *E) {
7430 return Success(I, E, Result);
7431 }
7432
7433 bool Success(uint64_t Value, const Expr *E, APValue &Result) {
7434 assert(E->getType()->isFixedPointType() && "Invalid evaluation result.");
7435 Result = APValue(Info.Ctx.MakeIntValue(Value, E->getType()));
7436 return true;
7437 }
7438 bool Success(uint64_t Value, const Expr *E) {
7439 return Success(Value, E, Result);
7440 }
7441
7442 bool Success(CharUnits Size, const Expr *E) {
7443 return Success(Size.getQuantity(), E);
7444 }
7445
7446 bool Success(const APValue &V, const Expr *E) {
7447 if (V.isLValue() || V.isAddrLabelDiff()) {
7448 Result = V;
7449 return true;
7450 }
7451 return Success(V.getInt(), E);
7452 }
7453
7454 bool ZeroInitialization(const Expr *E) { return Success(0, E); }
7455
7456 //===--------------------------------------------------------------------===//
7457 // Visitor Methods
7458 //===--------------------------------------------------------------------===//
7459
7460 bool VisitFixedPointLiteral(const FixedPointLiteral *E) {
7461 return Success(E->getValue(), E);
7462 }
7463
7464 bool VisitUnaryOperator(const UnaryOperator *E);
7465};
Chris Lattner05706e882008-07-11 18:11:29 +00007466} // end anonymous namespace
Anders Carlsson4a3585b2008-07-08 15:34:11 +00007467
Richard Smith11562c52011-10-28 17:51:58 +00007468/// EvaluateIntegerOrLValue - Evaluate an rvalue integral-typed expression, and
7469/// produce either the integer value or a pointer.
7470///
7471/// GCC has a heinous extension which folds casts between pointer types and
7472/// pointer-sized integral types. We support this by allowing the evaluation of
7473/// an integer rvalue to produce a pointer (represented as an lvalue) instead.
7474/// Some simple arithmetic on such values is supported (they are treated much
7475/// like char*).
Richard Smith2e312c82012-03-03 22:46:17 +00007476static bool EvaluateIntegerOrLValue(const Expr *E, APValue &Result,
Richard Smith0b0a0b62011-10-29 20:57:55 +00007477 EvalInfo &Info) {
Richard Smith11562c52011-10-28 17:51:58 +00007478 assert(E->isRValue() && E->getType()->isIntegralOrEnumerationType());
Peter Collingbournee9200682011-05-13 03:29:01 +00007479 return IntExprEvaluator(Info, Result).Visit(E);
Daniel Dunbarce399542009-02-20 18:22:23 +00007480}
Daniel Dunbarca097ad2009-02-19 20:17:33 +00007481
Richard Smithf57d8cb2011-12-09 22:58:01 +00007482static bool EvaluateInteger(const Expr *E, APSInt &Result, EvalInfo &Info) {
Richard Smith2e312c82012-03-03 22:46:17 +00007483 APValue Val;
Richard Smithf57d8cb2011-12-09 22:58:01 +00007484 if (!EvaluateIntegerOrLValue(E, Val, Info))
Daniel Dunbarce399542009-02-20 18:22:23 +00007485 return false;
Richard Smithf57d8cb2011-12-09 22:58:01 +00007486 if (!Val.isInt()) {
7487 // FIXME: It would be better to produce the diagnostic for casting
7488 // a pointer to an integer.
Faisal Valie690b7a2016-07-02 22:34:24 +00007489 Info.FFDiag(E, diag::note_invalid_subexpr_in_const_expr);
Richard Smithf57d8cb2011-12-09 22:58:01 +00007490 return false;
7491 }
Daniel Dunbarca097ad2009-02-19 20:17:33 +00007492 Result = Val.getInt();
7493 return true;
Anders Carlsson4a3585b2008-07-08 15:34:11 +00007494}
Anders Carlsson4a3585b2008-07-08 15:34:11 +00007495
Richard Smithf57d8cb2011-12-09 22:58:01 +00007496/// Check whether the given declaration can be directly converted to an integral
7497/// rvalue. If not, no diagnostic is produced; there are other things we can
7498/// try.
Eli Friedmanfb8a93f2009-11-24 05:28:59 +00007499bool IntExprEvaluator::CheckReferencedDecl(const Expr* E, const Decl* D) {
Chris Lattner7174bf32008-07-12 00:38:25 +00007500 // Enums are integer constant exprs.
Abramo Bagnara2caedf42011-06-30 09:36:05 +00007501 if (const EnumConstantDecl *ECD = dyn_cast<EnumConstantDecl>(D)) {
Abramo Bagnara9ae292d2011-07-02 13:13:53 +00007502 // Check for signedness/width mismatches between E type and ECD value.
7503 bool SameSign = (ECD->getInitVal().isSigned()
7504 == E->getType()->isSignedIntegerOrEnumerationType());
7505 bool SameWidth = (ECD->getInitVal().getBitWidth()
7506 == Info.Ctx.getIntWidth(E->getType()));
7507 if (SameSign && SameWidth)
7508 return Success(ECD->getInitVal(), E);
7509 else {
7510 // Get rid of mismatch (otherwise Success assertions will fail)
7511 // by computing a new value matching the type of E.
7512 llvm::APSInt Val = ECD->getInitVal();
7513 if (!SameSign)
7514 Val.setIsSigned(!ECD->getInitVal().isSigned());
7515 if (!SameWidth)
7516 Val = Val.extOrTrunc(Info.Ctx.getIntWidth(E->getType()));
7517 return Success(Val, E);
7518 }
Abramo Bagnara2caedf42011-06-30 09:36:05 +00007519 }
Peter Collingbournee9200682011-05-13 03:29:01 +00007520 return false;
Chris Lattner7174bf32008-07-12 00:38:25 +00007521}
7522
Richard Smith08b682b2018-05-23 21:18:00 +00007523/// Values returned by __builtin_classify_type, chosen to match the values
7524/// produced by GCC's builtin.
7525enum class GCCTypeClass {
7526 None = -1,
7527 Void = 0,
7528 Integer = 1,
7529 // GCC reserves 2 for character types, but instead classifies them as
7530 // integers.
7531 Enum = 3,
7532 Bool = 4,
7533 Pointer = 5,
7534 // GCC reserves 6 for references, but appears to never use it (because
7535 // expressions never have reference type, presumably).
7536 PointerToDataMember = 7,
7537 RealFloat = 8,
7538 Complex = 9,
7539 // GCC reserves 10 for functions, but does not use it since GCC version 6 due
7540 // to decay to pointer. (Prior to version 6 it was only used in C++ mode).
7541 // GCC claims to reserve 11 for pointers to member functions, but *actually*
7542 // uses 12 for that purpose, same as for a class or struct. Maybe it
7543 // internally implements a pointer to member as a struct? Who knows.
7544 PointerToMemberFunction = 12, // Not a bug, see above.
7545 ClassOrStruct = 12,
7546 Union = 13,
7547 // GCC reserves 14 for arrays, but does not use it since GCC version 6 due to
7548 // decay to pointer. (Prior to version 6 it was only used in C++ mode).
7549 // GCC reserves 15 for strings, but actually uses 5 (pointer) for string
7550 // literals.
7551};
7552
Chris Lattner86ee2862008-10-06 06:40:35 +00007553/// EvaluateBuiltinClassifyType - Evaluate __builtin_classify_type the same way
7554/// as GCC.
Richard Smith08b682b2018-05-23 21:18:00 +00007555static GCCTypeClass
7556EvaluateBuiltinClassifyType(QualType T, const LangOptions &LangOpts) {
7557 assert(!T->isDependentType() && "unexpected dependent type");
Mike Stump11289f42009-09-09 15:08:12 +00007558
Richard Smith08b682b2018-05-23 21:18:00 +00007559 QualType CanTy = T.getCanonicalType();
Andrey Bokhanko5f6588e2016-02-15 10:39:04 +00007560 const BuiltinType *BT = dyn_cast<BuiltinType>(CanTy);
7561
7562 switch (CanTy->getTypeClass()) {
7563#define TYPE(ID, BASE)
7564#define DEPENDENT_TYPE(ID, BASE) case Type::ID:
7565#define NON_CANONICAL_TYPE(ID, BASE) case Type::ID:
7566#define NON_CANONICAL_UNLESS_DEPENDENT_TYPE(ID, BASE) case Type::ID:
7567#include "clang/AST/TypeNodes.def"
Richard Smith08b682b2018-05-23 21:18:00 +00007568 case Type::Auto:
7569 case Type::DeducedTemplateSpecialization:
7570 llvm_unreachable("unexpected non-canonical or dependent type");
Andrey Bokhanko5f6588e2016-02-15 10:39:04 +00007571
7572 case Type::Builtin:
7573 switch (BT->getKind()) {
7574#define BUILTIN_TYPE(ID, SINGLETON_ID)
Richard Smith08b682b2018-05-23 21:18:00 +00007575#define SIGNED_TYPE(ID, SINGLETON_ID) \
7576 case BuiltinType::ID: return GCCTypeClass::Integer;
7577#define FLOATING_TYPE(ID, SINGLETON_ID) \
7578 case BuiltinType::ID: return GCCTypeClass::RealFloat;
7579#define PLACEHOLDER_TYPE(ID, SINGLETON_ID) \
7580 case BuiltinType::ID: break;
Andrey Bokhanko5f6588e2016-02-15 10:39:04 +00007581#include "clang/AST/BuiltinTypes.def"
7582 case BuiltinType::Void:
Richard Smith08b682b2018-05-23 21:18:00 +00007583 return GCCTypeClass::Void;
Andrey Bokhanko5f6588e2016-02-15 10:39:04 +00007584
7585 case BuiltinType::Bool:
Richard Smith08b682b2018-05-23 21:18:00 +00007586 return GCCTypeClass::Bool;
Andrey Bokhanko5f6588e2016-02-15 10:39:04 +00007587
Richard Smith08b682b2018-05-23 21:18:00 +00007588 case BuiltinType::Char_U:
Andrey Bokhanko5f6588e2016-02-15 10:39:04 +00007589 case BuiltinType::UChar:
Richard Smith08b682b2018-05-23 21:18:00 +00007590 case BuiltinType::WChar_U:
7591 case BuiltinType::Char8:
7592 case BuiltinType::Char16:
7593 case BuiltinType::Char32:
Andrey Bokhanko5f6588e2016-02-15 10:39:04 +00007594 case BuiltinType::UShort:
7595 case BuiltinType::UInt:
7596 case BuiltinType::ULong:
7597 case BuiltinType::ULongLong:
7598 case BuiltinType::UInt128:
Richard Smith08b682b2018-05-23 21:18:00 +00007599 return GCCTypeClass::Integer;
Andrey Bokhanko5f6588e2016-02-15 10:39:04 +00007600
Leonard Chanf921d852018-06-04 16:07:52 +00007601 case BuiltinType::UShortAccum:
7602 case BuiltinType::UAccum:
7603 case BuiltinType::ULongAccum:
Leonard Chanab80f3c2018-06-14 14:53:51 +00007604 case BuiltinType::UShortFract:
7605 case BuiltinType::UFract:
7606 case BuiltinType::ULongFract:
7607 case BuiltinType::SatUShortAccum:
7608 case BuiltinType::SatUAccum:
7609 case BuiltinType::SatULongAccum:
7610 case BuiltinType::SatUShortFract:
7611 case BuiltinType::SatUFract:
7612 case BuiltinType::SatULongFract:
Leonard Chanf921d852018-06-04 16:07:52 +00007613 return GCCTypeClass::None;
7614
Andrey Bokhanko5f6588e2016-02-15 10:39:04 +00007615 case BuiltinType::NullPtr:
Andrey Bokhanko5f6588e2016-02-15 10:39:04 +00007616
Andrey Bokhanko5f6588e2016-02-15 10:39:04 +00007617 case BuiltinType::ObjCId:
7618 case BuiltinType::ObjCClass:
7619 case BuiltinType::ObjCSel:
Alexey Bader954ba212016-04-08 13:40:33 +00007620#define IMAGE_TYPE(ImgType, Id, SingletonId, Access, Suffix) \
7621 case BuiltinType::Id:
Alexey Baderb62f1442016-04-13 08:33:41 +00007622#include "clang/Basic/OpenCLImageTypes.def"
Andrey Bokhanko5f6588e2016-02-15 10:39:04 +00007623 case BuiltinType::OCLSampler:
7624 case BuiltinType::OCLEvent:
7625 case BuiltinType::OCLClkEvent:
7626 case BuiltinType::OCLQueue:
Andrey Bokhanko5f6588e2016-02-15 10:39:04 +00007627 case BuiltinType::OCLReserveID:
Richard Smith08b682b2018-05-23 21:18:00 +00007628 return GCCTypeClass::None;
7629
Andrey Bokhanko5f6588e2016-02-15 10:39:04 +00007630 case BuiltinType::Dependent:
Richard Smith08b682b2018-05-23 21:18:00 +00007631 llvm_unreachable("unexpected dependent type");
Andrey Bokhanko5f6588e2016-02-15 10:39:04 +00007632 };
Richard Smith08b682b2018-05-23 21:18:00 +00007633 llvm_unreachable("unexpected placeholder type");
Andrey Bokhanko5f6588e2016-02-15 10:39:04 +00007634
7635 case Type::Enum:
Richard Smith08b682b2018-05-23 21:18:00 +00007636 return LangOpts.CPlusPlus ? GCCTypeClass::Enum : GCCTypeClass::Integer;
Andrey Bokhanko5f6588e2016-02-15 10:39:04 +00007637
7638 case Type::Pointer:
Andrey Bokhanko5f6588e2016-02-15 10:39:04 +00007639 case Type::ConstantArray:
7640 case Type::VariableArray:
7641 case Type::IncompleteArray:
Richard Smith08b682b2018-05-23 21:18:00 +00007642 case Type::FunctionNoProto:
7643 case Type::FunctionProto:
7644 return GCCTypeClass::Pointer;
7645
7646 case Type::MemberPointer:
7647 return CanTy->isMemberDataPointerType()
7648 ? GCCTypeClass::PointerToDataMember
7649 : GCCTypeClass::PointerToMemberFunction;
7650
7651 case Type::Complex:
7652 return GCCTypeClass::Complex;
7653
7654 case Type::Record:
7655 return CanTy->isUnionType() ? GCCTypeClass::Union
7656 : GCCTypeClass::ClassOrStruct;
7657
7658 case Type::Atomic:
7659 // GCC classifies _Atomic T the same as T.
7660 return EvaluateBuiltinClassifyType(
7661 CanTy->castAs<AtomicType>()->getValueType(), LangOpts);
Andrey Bokhanko5f6588e2016-02-15 10:39:04 +00007662
7663 case Type::BlockPointer:
Andrey Bokhanko5f6588e2016-02-15 10:39:04 +00007664 case Type::Vector:
7665 case Type::ExtVector:
Andrey Bokhanko5f6588e2016-02-15 10:39:04 +00007666 case Type::ObjCObject:
7667 case Type::ObjCInterface:
7668 case Type::ObjCObjectPointer:
7669 case Type::Pipe:
Richard Smith08b682b2018-05-23 21:18:00 +00007670 // GCC classifies vectors as None. We follow its lead and classify all
7671 // other types that don't fit into the regular classification the same way.
7672 return GCCTypeClass::None;
7673
7674 case Type::LValueReference:
7675 case Type::RValueReference:
7676 llvm_unreachable("invalid type for expression");
Andrey Bokhanko5f6588e2016-02-15 10:39:04 +00007677 }
7678
Richard Smith08b682b2018-05-23 21:18:00 +00007679 llvm_unreachable("unexpected type class");
7680}
7681
7682/// EvaluateBuiltinClassifyType - Evaluate __builtin_classify_type the same way
7683/// as GCC.
7684static GCCTypeClass
7685EvaluateBuiltinClassifyType(const CallExpr *E, const LangOptions &LangOpts) {
7686 // If no argument was supplied, default to None. This isn't
7687 // ideal, however it is what gcc does.
7688 if (E->getNumArgs() == 0)
7689 return GCCTypeClass::None;
7690
7691 // FIXME: Bizarrely, GCC treats a call with more than one argument as not
7692 // being an ICE, but still folds it to a constant using the type of the first
7693 // argument.
7694 return EvaluateBuiltinClassifyType(E->getArg(0)->getType(), LangOpts);
Chris Lattner86ee2862008-10-06 06:40:35 +00007695}
7696
Richard Smith5fab0c92011-12-28 19:48:30 +00007697/// EvaluateBuiltinConstantPForLValue - Determine the result of
7698/// __builtin_constant_p when applied to the given lvalue.
7699///
7700/// An lvalue is only "constant" if it is a pointer or reference to the first
7701/// character of a string literal.
7702template<typename LValue>
7703static bool EvaluateBuiltinConstantPForLValue(const LValue &LV) {
Douglas Gregorf31cee62012-03-11 02:23:56 +00007704 const Expr *E = LV.getLValueBase().template dyn_cast<const Expr*>();
Richard Smith5fab0c92011-12-28 19:48:30 +00007705 return E && isa<StringLiteral>(E) && LV.getLValueOffset().isZero();
7706}
7707
7708/// EvaluateBuiltinConstantP - Evaluate __builtin_constant_p as similarly to
7709/// GCC as we can manage.
7710static bool EvaluateBuiltinConstantP(ASTContext &Ctx, const Expr *Arg) {
7711 QualType ArgType = Arg->getType();
7712
7713 // __builtin_constant_p always has one operand. The rules which gcc follows
7714 // are not precisely documented, but are as follows:
7715 //
7716 // - If the operand is of integral, floating, complex or enumeration type,
7717 // and can be folded to a known value of that type, it returns 1.
7718 // - If the operand and can be folded to a pointer to the first character
7719 // of a string literal (or such a pointer cast to an integral type), it
7720 // returns 1.
7721 //
7722 // Otherwise, it returns 0.
7723 //
7724 // FIXME: GCC also intends to return 1 for literals of aggregate types, but
7725 // its support for this does not currently work.
7726 if (ArgType->isIntegralOrEnumerationType()) {
7727 Expr::EvalResult Result;
7728 if (!Arg->EvaluateAsRValue(Result, Ctx) || Result.HasSideEffects)
7729 return false;
7730
7731 APValue &V = Result.Val;
7732 if (V.getKind() == APValue::Int)
7733 return true;
Richard Smith0c6124b2015-12-03 01:36:22 +00007734 if (V.getKind() == APValue::LValue)
7735 return EvaluateBuiltinConstantPForLValue(V);
Richard Smith5fab0c92011-12-28 19:48:30 +00007736 } else if (ArgType->isFloatingType() || ArgType->isAnyComplexType()) {
7737 return Arg->isEvaluatable(Ctx);
7738 } else if (ArgType->isPointerType() || Arg->isGLValue()) {
7739 LValue LV;
7740 Expr::EvalStatus Status;
Richard Smith6d4c6582013-11-05 22:18:15 +00007741 EvalInfo Info(Ctx, Status, EvalInfo::EM_ConstantFold);
Richard Smith5fab0c92011-12-28 19:48:30 +00007742 if ((Arg->isGLValue() ? EvaluateLValue(Arg, LV, Info)
7743 : EvaluatePointer(Arg, LV, Info)) &&
7744 !Status.HasSideEffects)
7745 return EvaluateBuiltinConstantPForLValue(LV);
7746 }
7747
7748 // Anything else isn't considered to be sufficiently constant.
7749 return false;
7750}
7751
John McCall95007602010-05-10 23:27:23 +00007752/// Retrieves the "underlying object type" of the given expression,
7753/// as used by __builtin_object_size.
George Burgess IVbdb5b262015-08-19 02:19:07 +00007754static QualType getObjectType(APValue::LValueBase B) {
Richard Smithce40ad62011-11-12 22:28:03 +00007755 if (const ValueDecl *D = B.dyn_cast<const ValueDecl*>()) {
7756 if (const VarDecl *VD = dyn_cast<VarDecl>(D))
John McCall95007602010-05-10 23:27:23 +00007757 return VD->getType();
Richard Smithce40ad62011-11-12 22:28:03 +00007758 } else if (const Expr *E = B.get<const Expr*>()) {
7759 if (isa<CompoundLiteralExpr>(E))
7760 return E->getType();
John McCall95007602010-05-10 23:27:23 +00007761 }
7762
7763 return QualType();
7764}
7765
George Burgess IV3a03fab2015-09-04 21:28:13 +00007766/// A more selective version of E->IgnoreParenCasts for
George Burgess IVe3763372016-12-22 02:50:20 +00007767/// tryEvaluateBuiltinObjectSize. This ignores some casts/parens that serve only
George Burgess IVb40cd562015-09-04 22:36:18 +00007768/// to change the type of E.
George Burgess IV3a03fab2015-09-04 21:28:13 +00007769/// Ex. For E = `(short*)((char*)(&foo))`, returns `&foo`
7770///
7771/// Always returns an RValue with a pointer representation.
7772static const Expr *ignorePointerCastsAndParens(const Expr *E) {
7773 assert(E->isRValue() && E->getType()->hasPointerRepresentation());
7774
7775 auto *NoParens = E->IgnoreParens();
7776 auto *Cast = dyn_cast<CastExpr>(NoParens);
George Burgess IVb40cd562015-09-04 22:36:18 +00007777 if (Cast == nullptr)
7778 return NoParens;
7779
7780 // We only conservatively allow a few kinds of casts, because this code is
7781 // inherently a simple solution that seeks to support the common case.
7782 auto CastKind = Cast->getCastKind();
7783 if (CastKind != CK_NoOp && CastKind != CK_BitCast &&
7784 CastKind != CK_AddressSpaceConversion)
George Burgess IV3a03fab2015-09-04 21:28:13 +00007785 return NoParens;
7786
7787 auto *SubExpr = Cast->getSubExpr();
7788 if (!SubExpr->getType()->hasPointerRepresentation() || !SubExpr->isRValue())
7789 return NoParens;
7790 return ignorePointerCastsAndParens(SubExpr);
7791}
7792
George Burgess IVa51c4072015-10-16 01:49:01 +00007793/// Checks to see if the given LValue's Designator is at the end of the LValue's
7794/// record layout. e.g.
7795/// struct { struct { int a, b; } fst, snd; } obj;
7796/// obj.fst // no
7797/// obj.snd // yes
7798/// obj.fst.a // no
7799/// obj.fst.b // no
7800/// obj.snd.a // no
7801/// obj.snd.b // yes
7802///
7803/// Please note: this function is specialized for how __builtin_object_size
7804/// views "objects".
George Burgess IV4168d752016-06-27 19:40:41 +00007805///
Richard Smith6f4f0f12017-10-20 22:56:25 +00007806/// If this encounters an invalid RecordDecl or otherwise cannot determine the
7807/// correct result, it will always return true.
George Burgess IVa51c4072015-10-16 01:49:01 +00007808static bool isDesignatorAtObjectEnd(const ASTContext &Ctx, const LValue &LVal) {
7809 assert(!LVal.Designator.Invalid);
7810
George Burgess IV4168d752016-06-27 19:40:41 +00007811 auto IsLastOrInvalidFieldDecl = [&Ctx](const FieldDecl *FD, bool &Invalid) {
7812 const RecordDecl *Parent = FD->getParent();
7813 Invalid = Parent->isInvalidDecl();
7814 if (Invalid || Parent->isUnion())
George Burgess IVa51c4072015-10-16 01:49:01 +00007815 return true;
George Burgess IV4168d752016-06-27 19:40:41 +00007816 const ASTRecordLayout &Layout = Ctx.getASTRecordLayout(Parent);
George Burgess IVa51c4072015-10-16 01:49:01 +00007817 return FD->getFieldIndex() + 1 == Layout.getFieldCount();
7818 };
7819
7820 auto &Base = LVal.getLValueBase();
7821 if (auto *ME = dyn_cast_or_null<MemberExpr>(Base.dyn_cast<const Expr *>())) {
7822 if (auto *FD = dyn_cast<FieldDecl>(ME->getMemberDecl())) {
George Burgess IV4168d752016-06-27 19:40:41 +00007823 bool Invalid;
7824 if (!IsLastOrInvalidFieldDecl(FD, Invalid))
7825 return Invalid;
George Burgess IVa51c4072015-10-16 01:49:01 +00007826 } else if (auto *IFD = dyn_cast<IndirectFieldDecl>(ME->getMemberDecl())) {
George Burgess IV4168d752016-06-27 19:40:41 +00007827 for (auto *FD : IFD->chain()) {
7828 bool Invalid;
7829 if (!IsLastOrInvalidFieldDecl(cast<FieldDecl>(FD), Invalid))
7830 return Invalid;
7831 }
George Burgess IVa51c4072015-10-16 01:49:01 +00007832 }
7833 }
7834
George Burgess IVe3763372016-12-22 02:50:20 +00007835 unsigned I = 0;
George Burgess IVa51c4072015-10-16 01:49:01 +00007836 QualType BaseType = getType(Base);
Daniel Jasperffdee092017-05-02 19:21:42 +00007837 if (LVal.Designator.FirstEntryIsAnUnsizedArray) {
Richard Smith6f4f0f12017-10-20 22:56:25 +00007838 // If we don't know the array bound, conservatively assume we're looking at
7839 // the final array element.
George Burgess IVe3763372016-12-22 02:50:20 +00007840 ++I;
Alex Lorenz4e246482017-12-20 21:03:38 +00007841 if (BaseType->isIncompleteArrayType())
7842 BaseType = Ctx.getAsArrayType(BaseType)->getElementType();
7843 else
7844 BaseType = BaseType->castAs<PointerType>()->getPointeeType();
George Burgess IVe3763372016-12-22 02:50:20 +00007845 }
7846
7847 for (unsigned E = LVal.Designator.Entries.size(); I != E; ++I) {
7848 const auto &Entry = LVal.Designator.Entries[I];
George Burgess IVa51c4072015-10-16 01:49:01 +00007849 if (BaseType->isArrayType()) {
7850 // Because __builtin_object_size treats arrays as objects, we can ignore
7851 // the index iff this is the last array in the Designator.
7852 if (I + 1 == E)
7853 return true;
George Burgess IVe3763372016-12-22 02:50:20 +00007854 const auto *CAT = cast<ConstantArrayType>(Ctx.getAsArrayType(BaseType));
7855 uint64_t Index = Entry.ArrayIndex;
George Burgess IVa51c4072015-10-16 01:49:01 +00007856 if (Index + 1 != CAT->getSize())
7857 return false;
7858 BaseType = CAT->getElementType();
7859 } else if (BaseType->isAnyComplexType()) {
George Burgess IVe3763372016-12-22 02:50:20 +00007860 const auto *CT = BaseType->castAs<ComplexType>();
7861 uint64_t Index = Entry.ArrayIndex;
George Burgess IVa51c4072015-10-16 01:49:01 +00007862 if (Index != 1)
7863 return false;
7864 BaseType = CT->getElementType();
George Burgess IVe3763372016-12-22 02:50:20 +00007865 } else if (auto *FD = getAsField(Entry)) {
George Burgess IV4168d752016-06-27 19:40:41 +00007866 bool Invalid;
7867 if (!IsLastOrInvalidFieldDecl(FD, Invalid))
7868 return Invalid;
George Burgess IVa51c4072015-10-16 01:49:01 +00007869 BaseType = FD->getType();
7870 } else {
George Burgess IVe3763372016-12-22 02:50:20 +00007871 assert(getAsBaseClass(Entry) && "Expecting cast to a base class");
George Burgess IVa51c4072015-10-16 01:49:01 +00007872 return false;
7873 }
7874 }
7875 return true;
7876}
7877
George Burgess IVe3763372016-12-22 02:50:20 +00007878/// Tests to see if the LValue has a user-specified designator (that isn't
7879/// necessarily valid). Note that this always returns 'true' if the LValue has
7880/// an unsized array as its first designator entry, because there's currently no
7881/// way to tell if the user typed *foo or foo[0].
George Burgess IVa51c4072015-10-16 01:49:01 +00007882static bool refersToCompleteObject(const LValue &LVal) {
George Burgess IVe3763372016-12-22 02:50:20 +00007883 if (LVal.Designator.Invalid)
George Burgess IVa51c4072015-10-16 01:49:01 +00007884 return false;
7885
George Burgess IVe3763372016-12-22 02:50:20 +00007886 if (!LVal.Designator.Entries.empty())
7887 return LVal.Designator.isMostDerivedAnUnsizedArray();
7888
George Burgess IVa51c4072015-10-16 01:49:01 +00007889 if (!LVal.InvalidBase)
7890 return true;
7891
George Burgess IVe3763372016-12-22 02:50:20 +00007892 // If `E` is a MemberExpr, then the first part of the designator is hiding in
7893 // the LValueBase.
7894 const auto *E = LVal.Base.dyn_cast<const Expr *>();
7895 return !E || !isa<MemberExpr>(E);
George Burgess IVa51c4072015-10-16 01:49:01 +00007896}
7897
George Burgess IVe3763372016-12-22 02:50:20 +00007898/// Attempts to detect a user writing into a piece of memory that's impossible
7899/// to figure out the size of by just using types.
7900static bool isUserWritingOffTheEnd(const ASTContext &Ctx, const LValue &LVal) {
7901 const SubobjectDesignator &Designator = LVal.Designator;
7902 // Notes:
7903 // - Users can only write off of the end when we have an invalid base. Invalid
7904 // bases imply we don't know where the memory came from.
7905 // - We used to be a bit more aggressive here; we'd only be conservative if
7906 // the array at the end was flexible, or if it had 0 or 1 elements. This
7907 // broke some common standard library extensions (PR30346), but was
7908 // otherwise seemingly fine. It may be useful to reintroduce this behavior
7909 // with some sort of whitelist. OTOH, it seems that GCC is always
7910 // conservative with the last element in structs (if it's an array), so our
7911 // current behavior is more compatible than a whitelisting approach would
7912 // be.
7913 return LVal.InvalidBase &&
7914 Designator.Entries.size() == Designator.MostDerivedPathLength &&
7915 Designator.MostDerivedIsArrayElement &&
7916 isDesignatorAtObjectEnd(Ctx, LVal);
7917}
7918
7919/// Converts the given APInt to CharUnits, assuming the APInt is unsigned.
7920/// Fails if the conversion would cause loss of precision.
7921static bool convertUnsignedAPIntToCharUnits(const llvm::APInt &Int,
7922 CharUnits &Result) {
7923 auto CharUnitsMax = std::numeric_limits<CharUnits::QuantityType>::max();
7924 if (Int.ugt(CharUnitsMax))
7925 return false;
7926 Result = CharUnits::fromQuantity(Int.getZExtValue());
7927 return true;
7928}
7929
7930/// Helper for tryEvaluateBuiltinObjectSize -- Given an LValue, this will
7931/// determine how many bytes exist from the beginning of the object to either
7932/// the end of the current subobject, or the end of the object itself, depending
7933/// on what the LValue looks like + the value of Type.
George Burgess IVa7470272016-12-20 01:05:42 +00007934///
George Burgess IVe3763372016-12-22 02:50:20 +00007935/// If this returns false, the value of Result is undefined.
7936static bool determineEndOffset(EvalInfo &Info, SourceLocation ExprLoc,
7937 unsigned Type, const LValue &LVal,
7938 CharUnits &EndOffset) {
7939 bool DetermineForCompleteObject = refersToCompleteObject(LVal);
Chandler Carruthd7738fe2016-12-20 08:28:19 +00007940
George Burgess IV7fb7e362017-01-03 23:35:19 +00007941 auto CheckedHandleSizeof = [&](QualType Ty, CharUnits &Result) {
7942 if (Ty.isNull() || Ty->isIncompleteType() || Ty->isFunctionType())
7943 return false;
7944 return HandleSizeof(Info, ExprLoc, Ty, Result);
7945 };
7946
George Burgess IVe3763372016-12-22 02:50:20 +00007947 // We want to evaluate the size of the entire object. This is a valid fallback
7948 // for when Type=1 and the designator is invalid, because we're asked for an
7949 // upper-bound.
7950 if (!(Type & 1) || LVal.Designator.Invalid || DetermineForCompleteObject) {
7951 // Type=3 wants a lower bound, so we can't fall back to this.
7952 if (Type == 3 && !DetermineForCompleteObject)
George Burgess IVa7470272016-12-20 01:05:42 +00007953 return false;
George Burgess IVe3763372016-12-22 02:50:20 +00007954
7955 llvm::APInt APEndOffset;
7956 if (isBaseAnAllocSizeCall(LVal.getLValueBase()) &&
7957 getBytesReturnedByAllocSizeCall(Info.Ctx, LVal, APEndOffset))
7958 return convertUnsignedAPIntToCharUnits(APEndOffset, EndOffset);
7959
7960 if (LVal.InvalidBase)
7961 return false;
7962
7963 QualType BaseTy = getObjectType(LVal.getLValueBase());
George Burgess IV7fb7e362017-01-03 23:35:19 +00007964 return CheckedHandleSizeof(BaseTy, EndOffset);
George Burgess IVa7470272016-12-20 01:05:42 +00007965 }
7966
George Burgess IVe3763372016-12-22 02:50:20 +00007967 // We want to evaluate the size of a subobject.
7968 const SubobjectDesignator &Designator = LVal.Designator;
Chandler Carruthd7738fe2016-12-20 08:28:19 +00007969
7970 // The following is a moderately common idiom in C:
7971 //
7972 // struct Foo { int a; char c[1]; };
7973 // struct Foo *F = (struct Foo *)malloc(sizeof(struct Foo) + strlen(Bar));
7974 // strcpy(&F->c[0], Bar);
7975 //
George Burgess IVe3763372016-12-22 02:50:20 +00007976 // In order to not break too much legacy code, we need to support it.
7977 if (isUserWritingOffTheEnd(Info.Ctx, LVal)) {
7978 // If we can resolve this to an alloc_size call, we can hand that back,
7979 // because we know for certain how many bytes there are to write to.
7980 llvm::APInt APEndOffset;
7981 if (isBaseAnAllocSizeCall(LVal.getLValueBase()) &&
7982 getBytesReturnedByAllocSizeCall(Info.Ctx, LVal, APEndOffset))
7983 return convertUnsignedAPIntToCharUnits(APEndOffset, EndOffset);
7984
7985 // If we cannot determine the size of the initial allocation, then we can't
7986 // given an accurate upper-bound. However, we are still able to give
7987 // conservative lower-bounds for Type=3.
7988 if (Type == 1)
7989 return false;
7990 }
7991
7992 CharUnits BytesPerElem;
George Burgess IV7fb7e362017-01-03 23:35:19 +00007993 if (!CheckedHandleSizeof(Designator.MostDerivedType, BytesPerElem))
Chandler Carruthd7738fe2016-12-20 08:28:19 +00007994 return false;
7995
George Burgess IVe3763372016-12-22 02:50:20 +00007996 // According to the GCC documentation, we want the size of the subobject
7997 // denoted by the pointer. But that's not quite right -- what we actually
7998 // want is the size of the immediately-enclosing array, if there is one.
7999 int64_t ElemsRemaining;
8000 if (Designator.MostDerivedIsArrayElement &&
8001 Designator.Entries.size() == Designator.MostDerivedPathLength) {
8002 uint64_t ArraySize = Designator.getMostDerivedArraySize();
8003 uint64_t ArrayIndex = Designator.Entries.back().ArrayIndex;
8004 ElemsRemaining = ArraySize <= ArrayIndex ? 0 : ArraySize - ArrayIndex;
8005 } else {
8006 ElemsRemaining = Designator.isOnePastTheEnd() ? 0 : 1;
8007 }
Chandler Carruthd7738fe2016-12-20 08:28:19 +00008008
George Burgess IVe3763372016-12-22 02:50:20 +00008009 EndOffset = LVal.getLValueOffset() + BytesPerElem * ElemsRemaining;
8010 return true;
Chandler Carruthd7738fe2016-12-20 08:28:19 +00008011}
8012
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00008013/// Tries to evaluate the __builtin_object_size for @p E. If successful,
George Burgess IVe3763372016-12-22 02:50:20 +00008014/// returns true and stores the result in @p Size.
8015///
8016/// If @p WasError is non-null, this will report whether the failure to evaluate
8017/// is to be treated as an Error in IntExprEvaluator.
8018static bool tryEvaluateBuiltinObjectSize(const Expr *E, unsigned Type,
8019 EvalInfo &Info, uint64_t &Size) {
8020 // Determine the denoted object.
8021 LValue LVal;
8022 {
8023 // The operand of __builtin_object_size is never evaluated for side-effects.
8024 // If there are any, but we can determine the pointed-to object anyway, then
8025 // ignore the side-effects.
8026 SpeculativeEvaluationRAII SpeculativeEval(Info);
8027 FoldOffsetRAII Fold(Info);
8028
8029 if (E->isGLValue()) {
8030 // It's possible for us to be given GLValues if we're called via
8031 // Expr::tryEvaluateObjectSize.
8032 APValue RVal;
8033 if (!EvaluateAsRValue(Info, E, RVal))
8034 return false;
8035 LVal.setFrom(Info.Ctx, RVal);
George Burgess IVf9013bf2017-02-10 22:52:29 +00008036 } else if (!EvaluatePointer(ignorePointerCastsAndParens(E), LVal, Info,
8037 /*InvalidBaseOK=*/true))
George Burgess IVe3763372016-12-22 02:50:20 +00008038 return false;
8039 }
8040
8041 // If we point to before the start of the object, there are no accessible
8042 // bytes.
8043 if (LVal.getLValueOffset().isNegative()) {
8044 Size = 0;
8045 return true;
8046 }
8047
8048 CharUnits EndOffset;
8049 if (!determineEndOffset(Info, E->getExprLoc(), Type, LVal, EndOffset))
8050 return false;
8051
8052 // If we've fallen outside of the end offset, just pretend there's nothing to
8053 // write to/read from.
8054 if (EndOffset <= LVal.getLValueOffset())
8055 Size = 0;
8056 else
8057 Size = (EndOffset - LVal.getLValueOffset()).getQuantity();
8058 return true;
John McCall95007602010-05-10 23:27:23 +00008059}
8060
Peter Collingbournee9200682011-05-13 03:29:01 +00008061bool IntExprEvaluator::VisitCallExpr(const CallExpr *E) {
Richard Smith6328cbd2016-11-16 00:57:23 +00008062 if (unsigned BuiltinOp = E->getBuiltinCallee())
8063 return VisitBuiltinCallExpr(E, BuiltinOp);
8064
8065 return ExprEvaluatorBaseTy::VisitCallExpr(E);
8066}
8067
8068bool IntExprEvaluator::VisitBuiltinCallExpr(const CallExpr *E,
8069 unsigned BuiltinOp) {
Alp Tokera724cff2013-12-28 21:59:02 +00008070 switch (unsigned BuiltinOp = E->getBuiltinCallee()) {
Chris Lattner4deaa4e2008-10-06 05:28:25 +00008071 default:
Peter Collingbournee9200682011-05-13 03:29:01 +00008072 return ExprEvaluatorBaseTy::VisitCallExpr(E);
Mike Stump722cedf2009-10-26 18:35:08 +00008073
8074 case Builtin::BI__builtin_object_size: {
George Burgess IVbdb5b262015-08-19 02:19:07 +00008075 // The type was checked when we built the expression.
8076 unsigned Type =
8077 E->getArg(1)->EvaluateKnownConstInt(Info.Ctx).getZExtValue();
8078 assert(Type <= 3 && "unexpected type");
8079
George Burgess IVe3763372016-12-22 02:50:20 +00008080 uint64_t Size;
8081 if (tryEvaluateBuiltinObjectSize(E->getArg(0), Type, Info, Size))
8082 return Success(Size, E);
Mike Stump722cedf2009-10-26 18:35:08 +00008083
George Burgess IV3e3bb95b2015-12-02 21:58:08 +00008084 if (E->getArg(0)->HasSideEffects(Info.Ctx))
George Burgess IVbdb5b262015-08-19 02:19:07 +00008085 return Success((Type & 2) ? 0 : -1, E);
Mike Stump876387b2009-10-27 22:09:17 +00008086
Richard Smith01ade172012-05-23 04:13:20 +00008087 // Expression had no side effects, but we couldn't statically determine the
8088 // size of the referenced object.
Nick Lewycky35a6ef42014-01-11 02:50:57 +00008089 switch (Info.EvalMode) {
8090 case EvalInfo::EM_ConstantExpression:
8091 case EvalInfo::EM_PotentialConstantExpression:
8092 case EvalInfo::EM_ConstantFold:
8093 case EvalInfo::EM_EvaluateForOverflow:
8094 case EvalInfo::EM_IgnoreSideEffects:
George Burgess IVe3763372016-12-22 02:50:20 +00008095 case EvalInfo::EM_OffsetFold:
George Burgess IVbdb5b262015-08-19 02:19:07 +00008096 // Leave it to IR generation.
Nick Lewycky35a6ef42014-01-11 02:50:57 +00008097 return Error(E);
8098 case EvalInfo::EM_ConstantExpressionUnevaluated:
8099 case EvalInfo::EM_PotentialConstantExpressionUnevaluated:
George Burgess IVbdb5b262015-08-19 02:19:07 +00008100 // Reduce it to a constant now.
8101 return Success((Type & 2) ? 0 : -1, E);
Nick Lewycky35a6ef42014-01-11 02:50:57 +00008102 }
Richard Smithcb2ba5a2016-07-18 22:37:35 +00008103
8104 llvm_unreachable("unexpected EvalMode");
Mike Stump722cedf2009-10-26 18:35:08 +00008105 }
8106
Benjamin Kramera801f4a2012-10-06 14:42:22 +00008107 case Builtin::BI__builtin_bswap16:
Richard Smith80ac9ef2012-09-28 20:20:52 +00008108 case Builtin::BI__builtin_bswap32:
8109 case Builtin::BI__builtin_bswap64: {
8110 APSInt Val;
8111 if (!EvaluateInteger(E->getArg(0), Val, Info))
8112 return false;
8113
8114 return Success(Val.byteSwap(), E);
8115 }
8116
Richard Smith8889a3d2013-06-13 06:26:32 +00008117 case Builtin::BI__builtin_classify_type:
Richard Smith08b682b2018-05-23 21:18:00 +00008118 return Success((int)EvaluateBuiltinClassifyType(E, Info.getLangOpts()), E);
Richard Smith8889a3d2013-06-13 06:26:32 +00008119
8120 // FIXME: BI__builtin_clrsb
8121 // FIXME: BI__builtin_clrsbl
8122 // FIXME: BI__builtin_clrsbll
8123
Richard Smith80b3c8e2013-06-13 05:04:16 +00008124 case Builtin::BI__builtin_clz:
8125 case Builtin::BI__builtin_clzl:
Anders Carlsson1a9fe3d2014-07-07 15:53:44 +00008126 case Builtin::BI__builtin_clzll:
8127 case Builtin::BI__builtin_clzs: {
Richard Smith80b3c8e2013-06-13 05:04:16 +00008128 APSInt Val;
8129 if (!EvaluateInteger(E->getArg(0), Val, Info))
8130 return false;
8131 if (!Val)
8132 return Error(E);
8133
8134 return Success(Val.countLeadingZeros(), E);
8135 }
8136
Richard Smith8889a3d2013-06-13 06:26:32 +00008137 case Builtin::BI__builtin_constant_p:
8138 return Success(EvaluateBuiltinConstantP(Info.Ctx, E->getArg(0)), E);
8139
Richard Smith80b3c8e2013-06-13 05:04:16 +00008140 case Builtin::BI__builtin_ctz:
8141 case Builtin::BI__builtin_ctzl:
Anders Carlsson1a9fe3d2014-07-07 15:53:44 +00008142 case Builtin::BI__builtin_ctzll:
8143 case Builtin::BI__builtin_ctzs: {
Richard Smith80b3c8e2013-06-13 05:04:16 +00008144 APSInt Val;
8145 if (!EvaluateInteger(E->getArg(0), Val, Info))
8146 return false;
8147 if (!Val)
8148 return Error(E);
8149
8150 return Success(Val.countTrailingZeros(), E);
8151 }
8152
Richard Smith8889a3d2013-06-13 06:26:32 +00008153 case Builtin::BI__builtin_eh_return_data_regno: {
8154 int Operand = E->getArg(0)->EvaluateKnownConstInt(Info.Ctx).getZExtValue();
8155 Operand = Info.Ctx.getTargetInfo().getEHDataRegisterNumber(Operand);
8156 return Success(Operand, E);
8157 }
8158
8159 case Builtin::BI__builtin_expect:
8160 return Visit(E->getArg(0));
8161
8162 case Builtin::BI__builtin_ffs:
8163 case Builtin::BI__builtin_ffsl:
8164 case Builtin::BI__builtin_ffsll: {
8165 APSInt Val;
8166 if (!EvaluateInteger(E->getArg(0), Val, Info))
8167 return false;
8168
8169 unsigned N = Val.countTrailingZeros();
8170 return Success(N == Val.getBitWidth() ? 0 : N + 1, E);
8171 }
8172
8173 case Builtin::BI__builtin_fpclassify: {
8174 APFloat Val(0.0);
8175 if (!EvaluateFloat(E->getArg(5), Val, Info))
8176 return false;
8177 unsigned Arg;
8178 switch (Val.getCategory()) {
8179 case APFloat::fcNaN: Arg = 0; break;
8180 case APFloat::fcInfinity: Arg = 1; break;
8181 case APFloat::fcNormal: Arg = Val.isDenormal() ? 3 : 2; break;
8182 case APFloat::fcZero: Arg = 4; break;
8183 }
8184 return Visit(E->getArg(Arg));
8185 }
8186
8187 case Builtin::BI__builtin_isinf_sign: {
8188 APFloat Val(0.0);
Richard Smithab341c62013-06-13 06:31:13 +00008189 return EvaluateFloat(E->getArg(0), Val, Info) &&
Richard Smith8889a3d2013-06-13 06:26:32 +00008190 Success(Val.isInfinity() ? (Val.isNegative() ? -1 : 1) : 0, E);
8191 }
8192
Richard Smithea3019d2013-10-15 19:07:14 +00008193 case Builtin::BI__builtin_isinf: {
8194 APFloat Val(0.0);
8195 return EvaluateFloat(E->getArg(0), Val, Info) &&
8196 Success(Val.isInfinity() ? 1 : 0, E);
8197 }
8198
8199 case Builtin::BI__builtin_isfinite: {
8200 APFloat Val(0.0);
8201 return EvaluateFloat(E->getArg(0), Val, Info) &&
8202 Success(Val.isFinite() ? 1 : 0, E);
8203 }
8204
8205 case Builtin::BI__builtin_isnan: {
8206 APFloat Val(0.0);
8207 return EvaluateFloat(E->getArg(0), Val, Info) &&
8208 Success(Val.isNaN() ? 1 : 0, E);
8209 }
8210
8211 case Builtin::BI__builtin_isnormal: {
8212 APFloat Val(0.0);
8213 return EvaluateFloat(E->getArg(0), Val, Info) &&
8214 Success(Val.isNormal() ? 1 : 0, E);
8215 }
8216
Richard Smith8889a3d2013-06-13 06:26:32 +00008217 case Builtin::BI__builtin_parity:
8218 case Builtin::BI__builtin_parityl:
8219 case Builtin::BI__builtin_parityll: {
8220 APSInt Val;
8221 if (!EvaluateInteger(E->getArg(0), Val, Info))
8222 return false;
8223
8224 return Success(Val.countPopulation() % 2, E);
8225 }
8226
Richard Smith80b3c8e2013-06-13 05:04:16 +00008227 case Builtin::BI__builtin_popcount:
8228 case Builtin::BI__builtin_popcountl:
8229 case Builtin::BI__builtin_popcountll: {
8230 APSInt Val;
8231 if (!EvaluateInteger(E->getArg(0), Val, Info))
8232 return false;
8233
8234 return Success(Val.countPopulation(), E);
8235 }
8236
Douglas Gregor6a6dac22010-09-10 06:27:15 +00008237 case Builtin::BIstrlen:
Richard Smith8110c9d2016-11-29 19:45:17 +00008238 case Builtin::BIwcslen:
Richard Smith9cf080f2012-01-18 03:06:12 +00008239 // A call to strlen is not a constant expression.
Richard Smith2bf7fdb2013-01-02 11:42:31 +00008240 if (Info.getLangOpts().CPlusPlus11)
Richard Smithce1ec5e2012-03-15 04:53:45 +00008241 Info.CCEDiag(E, diag::note_constexpr_invalid_function)
Richard Smith8110c9d2016-11-29 19:45:17 +00008242 << /*isConstexpr*/0 << /*isConstructor*/0
8243 << (std::string("'") + Info.Ctx.BuiltinInfo.getName(BuiltinOp) + "'");
Richard Smith9cf080f2012-01-18 03:06:12 +00008244 else
Richard Smithce1ec5e2012-03-15 04:53:45 +00008245 Info.CCEDiag(E, diag::note_invalid_subexpr_in_const_expr);
Adrian Prantlf3b3ccd2017-12-19 22:06:11 +00008246 LLVM_FALLTHROUGH;
Richard Smith8110c9d2016-11-29 19:45:17 +00008247 case Builtin::BI__builtin_strlen:
8248 case Builtin::BI__builtin_wcslen: {
Richard Smithe6c19f22013-11-15 02:10:04 +00008249 // As an extension, we support __builtin_strlen() as a constant expression,
8250 // and support folding strlen() to a constant.
8251 LValue String;
8252 if (!EvaluatePointer(E->getArg(0), String, Info))
8253 return false;
8254
Richard Smith8110c9d2016-11-29 19:45:17 +00008255 QualType CharTy = E->getArg(0)->getType()->getPointeeType();
8256
Richard Smithe6c19f22013-11-15 02:10:04 +00008257 // Fast path: if it's a string literal, search the string value.
8258 if (const StringLiteral *S = dyn_cast_or_null<StringLiteral>(
8259 String.getLValueBase().dyn_cast<const Expr *>())) {
Douglas Gregor6a6dac22010-09-10 06:27:15 +00008260 // The string literal may have embedded null characters. Find the first
8261 // one and truncate there.
Richard Smithe6c19f22013-11-15 02:10:04 +00008262 StringRef Str = S->getBytes();
8263 int64_t Off = String.Offset.getQuantity();
8264 if (Off >= 0 && (uint64_t)Off <= (uint64_t)Str.size() &&
Richard Smith8110c9d2016-11-29 19:45:17 +00008265 S->getCharByteWidth() == 1 &&
8266 // FIXME: Add fast-path for wchar_t too.
8267 Info.Ctx.hasSameUnqualifiedType(CharTy, Info.Ctx.CharTy)) {
Richard Smithe6c19f22013-11-15 02:10:04 +00008268 Str = Str.substr(Off);
8269
8270 StringRef::size_type Pos = Str.find(0);
8271 if (Pos != StringRef::npos)
8272 Str = Str.substr(0, Pos);
8273
8274 return Success(Str.size(), E);
8275 }
8276
8277 // Fall through to slow path to issue appropriate diagnostic.
Douglas Gregor6a6dac22010-09-10 06:27:15 +00008278 }
Richard Smithe6c19f22013-11-15 02:10:04 +00008279
8280 // Slow path: scan the bytes of the string looking for the terminating 0.
Richard Smithe6c19f22013-11-15 02:10:04 +00008281 for (uint64_t Strlen = 0; /**/; ++Strlen) {
8282 APValue Char;
8283 if (!handleLValueToRValueConversion(Info, E, CharTy, String, Char) ||
8284 !Char.isInt())
8285 return false;
8286 if (!Char.getInt())
8287 return Success(Strlen, E);
8288 if (!HandleLValueArrayAdjustment(Info, E, String, CharTy, 1))
8289 return false;
8290 }
8291 }
Eli Friedmana4c26022011-10-17 21:44:23 +00008292
Richard Smithe151bab2016-11-11 23:43:35 +00008293 case Builtin::BIstrcmp:
Richard Smith8110c9d2016-11-29 19:45:17 +00008294 case Builtin::BIwcscmp:
Richard Smithe151bab2016-11-11 23:43:35 +00008295 case Builtin::BIstrncmp:
Richard Smith8110c9d2016-11-29 19:45:17 +00008296 case Builtin::BIwcsncmp:
Richard Smithe151bab2016-11-11 23:43:35 +00008297 case Builtin::BImemcmp:
Richard Smith8110c9d2016-11-29 19:45:17 +00008298 case Builtin::BIwmemcmp:
Richard Smithe151bab2016-11-11 23:43:35 +00008299 // A call to strlen is not a constant expression.
8300 if (Info.getLangOpts().CPlusPlus11)
8301 Info.CCEDiag(E, diag::note_constexpr_invalid_function)
8302 << /*isConstexpr*/0 << /*isConstructor*/0
Richard Smith8110c9d2016-11-29 19:45:17 +00008303 << (std::string("'") + Info.Ctx.BuiltinInfo.getName(BuiltinOp) + "'");
Richard Smithe151bab2016-11-11 23:43:35 +00008304 else
8305 Info.CCEDiag(E, diag::note_invalid_subexpr_in_const_expr);
Adrian Prantlf3b3ccd2017-12-19 22:06:11 +00008306 LLVM_FALLTHROUGH;
Richard Smithe151bab2016-11-11 23:43:35 +00008307 case Builtin::BI__builtin_strcmp:
Richard Smith8110c9d2016-11-29 19:45:17 +00008308 case Builtin::BI__builtin_wcscmp:
Richard Smithe151bab2016-11-11 23:43:35 +00008309 case Builtin::BI__builtin_strncmp:
Richard Smith8110c9d2016-11-29 19:45:17 +00008310 case Builtin::BI__builtin_wcsncmp:
8311 case Builtin::BI__builtin_memcmp:
8312 case Builtin::BI__builtin_wmemcmp: {
Richard Smithe151bab2016-11-11 23:43:35 +00008313 LValue String1, String2;
8314 if (!EvaluatePointer(E->getArg(0), String1, Info) ||
8315 !EvaluatePointer(E->getArg(1), String2, Info))
8316 return false;
Richard Smith8110c9d2016-11-29 19:45:17 +00008317
8318 QualType CharTy = E->getArg(0)->getType()->getPointeeType();
8319
Richard Smithe151bab2016-11-11 23:43:35 +00008320 uint64_t MaxLength = uint64_t(-1);
8321 if (BuiltinOp != Builtin::BIstrcmp &&
Richard Smith8110c9d2016-11-29 19:45:17 +00008322 BuiltinOp != Builtin::BIwcscmp &&
8323 BuiltinOp != Builtin::BI__builtin_strcmp &&
8324 BuiltinOp != Builtin::BI__builtin_wcscmp) {
Richard Smithe151bab2016-11-11 23:43:35 +00008325 APSInt N;
8326 if (!EvaluateInteger(E->getArg(2), N, Info))
8327 return false;
8328 MaxLength = N.getExtValue();
8329 }
8330 bool StopAtNull = (BuiltinOp != Builtin::BImemcmp &&
Richard Smith8110c9d2016-11-29 19:45:17 +00008331 BuiltinOp != Builtin::BIwmemcmp &&
8332 BuiltinOp != Builtin::BI__builtin_memcmp &&
8333 BuiltinOp != Builtin::BI__builtin_wmemcmp);
Benjamin Kramer33b70922018-04-23 22:04:34 +00008334 bool IsWide = BuiltinOp == Builtin::BIwcscmp ||
8335 BuiltinOp == Builtin::BIwcsncmp ||
8336 BuiltinOp == Builtin::BIwmemcmp ||
8337 BuiltinOp == Builtin::BI__builtin_wcscmp ||
8338 BuiltinOp == Builtin::BI__builtin_wcsncmp ||
8339 BuiltinOp == Builtin::BI__builtin_wmemcmp;
Richard Smithe151bab2016-11-11 23:43:35 +00008340 for (; MaxLength; --MaxLength) {
8341 APValue Char1, Char2;
8342 if (!handleLValueToRValueConversion(Info, E, CharTy, String1, Char1) ||
8343 !handleLValueToRValueConversion(Info, E, CharTy, String2, Char2) ||
8344 !Char1.isInt() || !Char2.isInt())
8345 return false;
Benjamin Kramer33b70922018-04-23 22:04:34 +00008346 if (Char1.getInt() != Char2.getInt()) {
8347 if (IsWide) // wmemcmp compares with wchar_t signedness.
8348 return Success(Char1.getInt() < Char2.getInt() ? -1 : 1, E);
8349 // memcmp always compares unsigned chars.
8350 return Success(Char1.getInt().ult(Char2.getInt()) ? -1 : 1, E);
8351 }
Richard Smithe151bab2016-11-11 23:43:35 +00008352 if (StopAtNull && !Char1.getInt())
8353 return Success(0, E);
8354 assert(!(StopAtNull && !Char2.getInt()));
8355 if (!HandleLValueArrayAdjustment(Info, E, String1, CharTy, 1) ||
8356 !HandleLValueArrayAdjustment(Info, E, String2, CharTy, 1))
8357 return false;
8358 }
8359 // We hit the strncmp / memcmp limit.
8360 return Success(0, E);
8361 }
8362
Richard Smith01ba47d2012-04-13 00:45:38 +00008363 case Builtin::BI__atomic_always_lock_free:
Richard Smithb1e36c62012-04-11 17:55:32 +00008364 case Builtin::BI__atomic_is_lock_free:
8365 case Builtin::BI__c11_atomic_is_lock_free: {
Eli Friedmana4c26022011-10-17 21:44:23 +00008366 APSInt SizeVal;
8367 if (!EvaluateInteger(E->getArg(0), SizeVal, Info))
8368 return false;
8369
8370 // For __atomic_is_lock_free(sizeof(_Atomic(T))), if the size is a power
8371 // of two less than the maximum inline atomic width, we know it is
8372 // lock-free. If the size isn't a power of two, or greater than the
8373 // maximum alignment where we promote atomics, we know it is not lock-free
8374 // (at least not in the sense of atomic_is_lock_free). Otherwise,
8375 // the answer can only be determined at runtime; for example, 16-byte
8376 // atomics have lock-free implementations on some, but not all,
8377 // x86-64 processors.
8378
8379 // Check power-of-two.
8380 CharUnits Size = CharUnits::fromQuantity(SizeVal.getZExtValue());
Richard Smith01ba47d2012-04-13 00:45:38 +00008381 if (Size.isPowerOfTwo()) {
8382 // Check against inlining width.
8383 unsigned InlineWidthBits =
8384 Info.Ctx.getTargetInfo().getMaxAtomicInlineWidth();
8385 if (Size <= Info.Ctx.toCharUnitsFromBits(InlineWidthBits)) {
8386 if (BuiltinOp == Builtin::BI__c11_atomic_is_lock_free ||
8387 Size == CharUnits::One() ||
8388 E->getArg(1)->isNullPointerConstant(Info.Ctx,
8389 Expr::NPC_NeverValueDependent))
8390 // OK, we will inline appropriately-aligned operations of this size,
8391 // and _Atomic(T) is appropriately-aligned.
8392 return Success(1, E);
Eli Friedmana4c26022011-10-17 21:44:23 +00008393
Richard Smith01ba47d2012-04-13 00:45:38 +00008394 QualType PointeeType = E->getArg(1)->IgnoreImpCasts()->getType()->
8395 castAs<PointerType>()->getPointeeType();
8396 if (!PointeeType->isIncompleteType() &&
8397 Info.Ctx.getTypeAlignInChars(PointeeType) >= Size) {
8398 // OK, we will inline operations on this object.
8399 return Success(1, E);
8400 }
8401 }
8402 }
Eli Friedmana4c26022011-10-17 21:44:23 +00008403
Richard Smith01ba47d2012-04-13 00:45:38 +00008404 return BuiltinOp == Builtin::BI__atomic_always_lock_free ?
8405 Success(0, E) : Error(E);
Eli Friedmana4c26022011-10-17 21:44:23 +00008406 }
Jonas Hahnfeld23604a82017-10-17 14:28:14 +00008407 case Builtin::BIomp_is_initial_device:
8408 // We can decide statically which value the runtime would return if called.
8409 return Success(Info.getLangOpts().OpenMPIsDevice ? 0 : 1, E);
Erich Keane00958272018-06-13 20:43:27 +00008410 case Builtin::BI__builtin_add_overflow:
8411 case Builtin::BI__builtin_sub_overflow:
8412 case Builtin::BI__builtin_mul_overflow:
8413 case Builtin::BI__builtin_sadd_overflow:
8414 case Builtin::BI__builtin_uadd_overflow:
8415 case Builtin::BI__builtin_uaddl_overflow:
8416 case Builtin::BI__builtin_uaddll_overflow:
8417 case Builtin::BI__builtin_usub_overflow:
8418 case Builtin::BI__builtin_usubl_overflow:
8419 case Builtin::BI__builtin_usubll_overflow:
8420 case Builtin::BI__builtin_umul_overflow:
8421 case Builtin::BI__builtin_umull_overflow:
8422 case Builtin::BI__builtin_umulll_overflow:
8423 case Builtin::BI__builtin_saddl_overflow:
8424 case Builtin::BI__builtin_saddll_overflow:
8425 case Builtin::BI__builtin_ssub_overflow:
8426 case Builtin::BI__builtin_ssubl_overflow:
8427 case Builtin::BI__builtin_ssubll_overflow:
8428 case Builtin::BI__builtin_smul_overflow:
8429 case Builtin::BI__builtin_smull_overflow:
8430 case Builtin::BI__builtin_smulll_overflow: {
8431 LValue ResultLValue;
8432 APSInt LHS, RHS;
8433
8434 QualType ResultType = E->getArg(2)->getType()->getPointeeType();
8435 if (!EvaluateInteger(E->getArg(0), LHS, Info) ||
8436 !EvaluateInteger(E->getArg(1), RHS, Info) ||
8437 !EvaluatePointer(E->getArg(2), ResultLValue, Info))
8438 return false;
8439
8440 APSInt Result;
8441 bool DidOverflow = false;
8442
8443 // If the types don't have to match, enlarge all 3 to the largest of them.
8444 if (BuiltinOp == Builtin::BI__builtin_add_overflow ||
8445 BuiltinOp == Builtin::BI__builtin_sub_overflow ||
8446 BuiltinOp == Builtin::BI__builtin_mul_overflow) {
8447 bool IsSigned = LHS.isSigned() || RHS.isSigned() ||
8448 ResultType->isSignedIntegerOrEnumerationType();
8449 bool AllSigned = LHS.isSigned() && RHS.isSigned() &&
8450 ResultType->isSignedIntegerOrEnumerationType();
8451 uint64_t LHSSize = LHS.getBitWidth();
8452 uint64_t RHSSize = RHS.getBitWidth();
8453 uint64_t ResultSize = Info.Ctx.getTypeSize(ResultType);
8454 uint64_t MaxBits = std::max(std::max(LHSSize, RHSSize), ResultSize);
8455
8456 // Add an additional bit if the signedness isn't uniformly agreed to. We
8457 // could do this ONLY if there is a signed and an unsigned that both have
8458 // MaxBits, but the code to check that is pretty nasty. The issue will be
8459 // caught in the shrink-to-result later anyway.
8460 if (IsSigned && !AllSigned)
8461 ++MaxBits;
8462
8463 LHS = APSInt(IsSigned ? LHS.sextOrSelf(MaxBits) : LHS.zextOrSelf(MaxBits),
8464 !IsSigned);
8465 RHS = APSInt(IsSigned ? RHS.sextOrSelf(MaxBits) : RHS.zextOrSelf(MaxBits),
8466 !IsSigned);
8467 Result = APSInt(MaxBits, !IsSigned);
8468 }
8469
8470 // Find largest int.
8471 switch (BuiltinOp) {
8472 default:
8473 llvm_unreachable("Invalid value for BuiltinOp");
8474 case Builtin::BI__builtin_add_overflow:
8475 case Builtin::BI__builtin_sadd_overflow:
8476 case Builtin::BI__builtin_saddl_overflow:
8477 case Builtin::BI__builtin_saddll_overflow:
8478 case Builtin::BI__builtin_uadd_overflow:
8479 case Builtin::BI__builtin_uaddl_overflow:
8480 case Builtin::BI__builtin_uaddll_overflow:
8481 Result = LHS.isSigned() ? LHS.sadd_ov(RHS, DidOverflow)
8482 : LHS.uadd_ov(RHS, DidOverflow);
8483 break;
8484 case Builtin::BI__builtin_sub_overflow:
8485 case Builtin::BI__builtin_ssub_overflow:
8486 case Builtin::BI__builtin_ssubl_overflow:
8487 case Builtin::BI__builtin_ssubll_overflow:
8488 case Builtin::BI__builtin_usub_overflow:
8489 case Builtin::BI__builtin_usubl_overflow:
8490 case Builtin::BI__builtin_usubll_overflow:
8491 Result = LHS.isSigned() ? LHS.ssub_ov(RHS, DidOverflow)
8492 : LHS.usub_ov(RHS, DidOverflow);
8493 break;
8494 case Builtin::BI__builtin_mul_overflow:
8495 case Builtin::BI__builtin_smul_overflow:
8496 case Builtin::BI__builtin_smull_overflow:
8497 case Builtin::BI__builtin_smulll_overflow:
8498 case Builtin::BI__builtin_umul_overflow:
8499 case Builtin::BI__builtin_umull_overflow:
8500 case Builtin::BI__builtin_umulll_overflow:
8501 Result = LHS.isSigned() ? LHS.smul_ov(RHS, DidOverflow)
8502 : LHS.umul_ov(RHS, DidOverflow);
8503 break;
8504 }
8505
8506 // In the case where multiple sizes are allowed, truncate and see if
8507 // the values are the same.
8508 if (BuiltinOp == Builtin::BI__builtin_add_overflow ||
8509 BuiltinOp == Builtin::BI__builtin_sub_overflow ||
8510 BuiltinOp == Builtin::BI__builtin_mul_overflow) {
8511 // APSInt doesn't have a TruncOrSelf, so we use extOrTrunc instead,
8512 // since it will give us the behavior of a TruncOrSelf in the case where
8513 // its parameter <= its size. We previously set Result to be at least the
8514 // type-size of the result, so getTypeSize(ResultType) <= Result.BitWidth
8515 // will work exactly like TruncOrSelf.
8516 APSInt Temp = Result.extOrTrunc(Info.Ctx.getTypeSize(ResultType));
8517 Temp.setIsSigned(ResultType->isSignedIntegerOrEnumerationType());
8518
8519 if (!APSInt::isSameValue(Temp, Result))
8520 DidOverflow = true;
8521 Result = Temp;
8522 }
8523
8524 APValue APV{Result};
Erich Keanecb549642018-07-05 15:52:58 +00008525 if (!handleAssignment(Info, E, ResultLValue, ResultType, APV))
8526 return false;
Erich Keane00958272018-06-13 20:43:27 +00008527 return Success(DidOverflow, E);
8528 }
Chris Lattner4deaa4e2008-10-06 05:28:25 +00008529 }
Chris Lattner7174bf32008-07-12 00:38:25 +00008530}
Anders Carlsson4a3585b2008-07-08 15:34:11 +00008531
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00008532/// Determine whether this is a pointer past the end of the complete
Richard Smithd20f1e62014-10-21 23:01:04 +00008533/// object referred to by the lvalue.
8534static bool isOnePastTheEndOfCompleteObject(const ASTContext &Ctx,
8535 const LValue &LV) {
8536 // A null pointer can be viewed as being "past the end" but we don't
8537 // choose to look at it that way here.
8538 if (!LV.getLValueBase())
8539 return false;
8540
8541 // If the designator is valid and refers to a subobject, we're not pointing
8542 // past the end.
8543 if (!LV.getLValueDesignator().Invalid &&
8544 !LV.getLValueDesignator().isOnePastTheEnd())
8545 return false;
8546
David Majnemerc378ca52015-08-29 08:32:55 +00008547 // A pointer to an incomplete type might be past-the-end if the type's size is
8548 // zero. We cannot tell because the type is incomplete.
8549 QualType Ty = getType(LV.getLValueBase());
8550 if (Ty->isIncompleteType())
8551 return true;
8552
Richard Smithd20f1e62014-10-21 23:01:04 +00008553 // We're a past-the-end pointer if we point to the byte after the object,
8554 // no matter what our type or path is.
David Majnemerc378ca52015-08-29 08:32:55 +00008555 auto Size = Ctx.getTypeSizeInChars(Ty);
Richard Smithd20f1e62014-10-21 23:01:04 +00008556 return LV.getLValueOffset() == Size;
8557}
8558
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008559namespace {
Richard Smith11562c52011-10-28 17:51:58 +00008560
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00008561/// Data recursive integer evaluator of certain binary operators.
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008562///
8563/// We use a data recursive algorithm for binary operators so that we are able
8564/// to handle extreme cases of chained binary operators without causing stack
8565/// overflow.
8566class DataRecursiveIntBinOpEvaluator {
8567 struct EvalResult {
8568 APValue Val;
8569 bool Failed;
8570
8571 EvalResult() : Failed(false) { }
8572
8573 void swap(EvalResult &RHS) {
8574 Val.swap(RHS.Val);
8575 Failed = RHS.Failed;
8576 RHS.Failed = false;
8577 }
8578 };
8579
8580 struct Job {
8581 const Expr *E;
8582 EvalResult LHSResult; // meaningful only for binary operator expression.
8583 enum { AnyExprKind, BinOpKind, BinOpVisitedLHSKind } Kind;
Craig Topper36250ad2014-05-12 05:36:57 +00008584
David Blaikie73726062015-08-12 23:09:24 +00008585 Job() = default;
Benjamin Kramer33e97602016-10-21 18:55:07 +00008586 Job(Job &&) = default;
David Blaikie73726062015-08-12 23:09:24 +00008587
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008588 void startSpeculativeEval(EvalInfo &Info) {
George Burgess IV8c892b52016-05-25 22:31:54 +00008589 SpecEvalRAII = SpeculativeEvaluationRAII(Info);
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008590 }
George Burgess IV8c892b52016-05-25 22:31:54 +00008591
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008592 private:
George Burgess IV8c892b52016-05-25 22:31:54 +00008593 SpeculativeEvaluationRAII SpecEvalRAII;
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008594 };
8595
8596 SmallVector<Job, 16> Queue;
8597
8598 IntExprEvaluator &IntEval;
8599 EvalInfo &Info;
8600 APValue &FinalResult;
8601
8602public:
8603 DataRecursiveIntBinOpEvaluator(IntExprEvaluator &IntEval, APValue &Result)
8604 : IntEval(IntEval), Info(IntEval.getEvalInfo()), FinalResult(Result) { }
8605
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00008606 /// True if \param E is a binary operator that we are going to handle
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008607 /// data recursively.
8608 /// We handle binary operators that are comma, logical, or that have operands
8609 /// with integral or enumeration type.
8610 static bool shouldEnqueue(const BinaryOperator *E) {
Eric Fiselier0683c0e2018-05-07 21:07:10 +00008611 return E->getOpcode() == BO_Comma || E->isLogicalOp() ||
8612 (E->isRValue() && E->getType()->isIntegralOrEnumerationType() &&
Richard Smith3a09d8b2016-06-04 00:22:31 +00008613 E->getLHS()->getType()->isIntegralOrEnumerationType() &&
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008614 E->getRHS()->getType()->isIntegralOrEnumerationType());
Eli Friedman5a332ea2008-11-13 06:09:17 +00008615 }
8616
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008617 bool Traverse(const BinaryOperator *E) {
8618 enqueue(E);
8619 EvalResult PrevResult;
Richard Trieuba4d0872012-03-21 23:30:30 +00008620 while (!Queue.empty())
8621 process(PrevResult);
8622
8623 if (PrevResult.Failed) return false;
Argyrios Kyrtzidis8d4677a2012-02-25 23:21:37 +00008624
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008625 FinalResult.swap(PrevResult.Val);
8626 return true;
8627 }
8628
8629private:
8630 bool Success(uint64_t Value, const Expr *E, APValue &Result) {
8631 return IntEval.Success(Value, E, Result);
8632 }
8633 bool Success(const APSInt &Value, const Expr *E, APValue &Result) {
8634 return IntEval.Success(Value, E, Result);
8635 }
8636 bool Error(const Expr *E) {
8637 return IntEval.Error(E);
8638 }
8639 bool Error(const Expr *E, diag::kind D) {
8640 return IntEval.Error(E, D);
8641 }
8642
8643 OptionalDiagnostic CCEDiag(const Expr *E, diag::kind D) {
8644 return Info.CCEDiag(E, D);
8645 }
8646
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00008647 // Returns true if visiting the RHS is necessary, false otherwise.
Argyrios Kyrtzidis5957b702012-03-22 02:13:06 +00008648 bool VisitBinOpLHSOnly(EvalResult &LHSResult, const BinaryOperator *E,
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008649 bool &SuppressRHSDiags);
8650
8651 bool VisitBinOp(const EvalResult &LHSResult, const EvalResult &RHSResult,
8652 const BinaryOperator *E, APValue &Result);
8653
8654 void EvaluateExpr(const Expr *E, EvalResult &Result) {
8655 Result.Failed = !Evaluate(Result.Val, Info, E);
8656 if (Result.Failed)
8657 Result.Val = APValue();
8658 }
8659
Richard Trieuba4d0872012-03-21 23:30:30 +00008660 void process(EvalResult &Result);
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008661
8662 void enqueue(const Expr *E) {
8663 E = E->IgnoreParens();
8664 Queue.resize(Queue.size()+1);
8665 Queue.back().E = E;
8666 Queue.back().Kind = Job::AnyExprKind;
8667 }
8668};
8669
Alexander Kornienkoab9db512015-06-22 23:07:51 +00008670}
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008671
8672bool DataRecursiveIntBinOpEvaluator::
Argyrios Kyrtzidis5957b702012-03-22 02:13:06 +00008673 VisitBinOpLHSOnly(EvalResult &LHSResult, const BinaryOperator *E,
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008674 bool &SuppressRHSDiags) {
8675 if (E->getOpcode() == BO_Comma) {
8676 // Ignore LHS but note if we could not evaluate it.
8677 if (LHSResult.Failed)
Richard Smith4e66f1f2013-11-06 02:19:10 +00008678 return Info.noteSideEffect();
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008679 return true;
8680 }
Richard Smith4e66f1f2013-11-06 02:19:10 +00008681
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008682 if (E->isLogicalOp()) {
Richard Smith4e66f1f2013-11-06 02:19:10 +00008683 bool LHSAsBool;
8684 if (!LHSResult.Failed && HandleConversionToBool(LHSResult.Val, LHSAsBool)) {
Argyrios Kyrtzidis8d4677a2012-02-25 23:21:37 +00008685 // We were able to evaluate the LHS, see if we can get away with not
8686 // evaluating the RHS: 0 && X -> 0, 1 || X -> 1
Richard Smith4e66f1f2013-11-06 02:19:10 +00008687 if (LHSAsBool == (E->getOpcode() == BO_LOr)) {
8688 Success(LHSAsBool, E, LHSResult.Val);
Argyrios Kyrtzidis5957b702012-03-22 02:13:06 +00008689 return false; // Ignore RHS
Argyrios Kyrtzidis8d4677a2012-02-25 23:21:37 +00008690 }
8691 } else {
Richard Smith4e66f1f2013-11-06 02:19:10 +00008692 LHSResult.Failed = true;
8693
Argyrios Kyrtzidis8d4677a2012-02-25 23:21:37 +00008694 // Since we weren't able to evaluate the left hand side, it
George Burgess IV8c892b52016-05-25 22:31:54 +00008695 // might have had side effects.
Richard Smith4e66f1f2013-11-06 02:19:10 +00008696 if (!Info.noteSideEffect())
8697 return false;
8698
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008699 // We can't evaluate the LHS; however, sometimes the result
8700 // is determined by the RHS: X && 0 -> 0, X || 1 -> 1.
8701 // Don't ignore RHS and suppress diagnostics from this arm.
8702 SuppressRHSDiags = true;
8703 }
Richard Smith4e66f1f2013-11-06 02:19:10 +00008704
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008705 return true;
8706 }
Richard Smith4e66f1f2013-11-06 02:19:10 +00008707
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008708 assert(E->getLHS()->getType()->isIntegralOrEnumerationType() &&
8709 E->getRHS()->getType()->isIntegralOrEnumerationType());
Richard Smith4e66f1f2013-11-06 02:19:10 +00008710
George Burgess IVa145e252016-05-25 22:38:36 +00008711 if (LHSResult.Failed && !Info.noteFailure())
Argyrios Kyrtzidis5957b702012-03-22 02:13:06 +00008712 return false; // Ignore RHS;
8713
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008714 return true;
8715}
Argyrios Kyrtzidis8d4677a2012-02-25 23:21:37 +00008716
Benjamin Kramerf6021ec2017-03-21 21:35:04 +00008717static void addOrSubLValueAsInteger(APValue &LVal, const APSInt &Index,
8718 bool IsSub) {
Richard Smithd6cc1982017-01-31 02:23:02 +00008719 // Compute the new offset in the appropriate width, wrapping at 64 bits.
8720 // FIXME: When compiling for a 32-bit target, we should use 32-bit
8721 // offsets.
8722 assert(!LVal.hasLValuePath() && "have designator for integer lvalue");
8723 CharUnits &Offset = LVal.getLValueOffset();
8724 uint64_t Offset64 = Offset.getQuantity();
8725 uint64_t Index64 = Index.extOrTrunc(64).getZExtValue();
8726 Offset = CharUnits::fromQuantity(IsSub ? Offset64 - Index64
8727 : Offset64 + Index64);
8728}
8729
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008730bool DataRecursiveIntBinOpEvaluator::
8731 VisitBinOp(const EvalResult &LHSResult, const EvalResult &RHSResult,
8732 const BinaryOperator *E, APValue &Result) {
8733 if (E->getOpcode() == BO_Comma) {
8734 if (RHSResult.Failed)
8735 return false;
8736 Result = RHSResult.Val;
8737 return true;
8738 }
Fangrui Song6907ce22018-07-30 19:24:48 +00008739
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008740 if (E->isLogicalOp()) {
8741 bool lhsResult, rhsResult;
8742 bool LHSIsOK = HandleConversionToBool(LHSResult.Val, lhsResult);
8743 bool RHSIsOK = HandleConversionToBool(RHSResult.Val, rhsResult);
Fangrui Song6907ce22018-07-30 19:24:48 +00008744
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008745 if (LHSIsOK) {
8746 if (RHSIsOK) {
8747 if (E->getOpcode() == BO_LOr)
8748 return Success(lhsResult || rhsResult, E, Result);
8749 else
8750 return Success(lhsResult && rhsResult, E, Result);
8751 }
8752 } else {
8753 if (RHSIsOK) {
Argyrios Kyrtzidis8d4677a2012-02-25 23:21:37 +00008754 // We can't evaluate the LHS; however, sometimes the result
8755 // is determined by the RHS: X && 0 -> 0, X || 1 -> 1.
8756 if (rhsResult == (E->getOpcode() == BO_LOr))
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008757 return Success(rhsResult, E, Result);
Argyrios Kyrtzidis8d4677a2012-02-25 23:21:37 +00008758 }
8759 }
Fangrui Song6907ce22018-07-30 19:24:48 +00008760
Argyrios Kyrtzidis8d4677a2012-02-25 23:21:37 +00008761 return false;
8762 }
Fangrui Song6907ce22018-07-30 19:24:48 +00008763
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008764 assert(E->getLHS()->getType()->isIntegralOrEnumerationType() &&
8765 E->getRHS()->getType()->isIntegralOrEnumerationType());
Fangrui Song6907ce22018-07-30 19:24:48 +00008766
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008767 if (LHSResult.Failed || RHSResult.Failed)
8768 return false;
Fangrui Song6907ce22018-07-30 19:24:48 +00008769
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008770 const APValue &LHSVal = LHSResult.Val;
8771 const APValue &RHSVal = RHSResult.Val;
Fangrui Song6907ce22018-07-30 19:24:48 +00008772
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008773 // Handle cases like (unsigned long)&a + 4.
8774 if (E->isAdditiveOp() && LHSVal.isLValue() && RHSVal.isInt()) {
8775 Result = LHSVal;
Richard Smithd6cc1982017-01-31 02:23:02 +00008776 addOrSubLValueAsInteger(Result, RHSVal.getInt(), E->getOpcode() == BO_Sub);
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008777 return true;
8778 }
Fangrui Song6907ce22018-07-30 19:24:48 +00008779
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008780 // Handle cases like 4 + (unsigned long)&a
8781 if (E->getOpcode() == BO_Add &&
8782 RHSVal.isLValue() && LHSVal.isInt()) {
8783 Result = RHSVal;
Richard Smithd6cc1982017-01-31 02:23:02 +00008784 addOrSubLValueAsInteger(Result, LHSVal.getInt(), /*IsSub*/false);
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008785 return true;
8786 }
Fangrui Song6907ce22018-07-30 19:24:48 +00008787
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008788 if (E->getOpcode() == BO_Sub && LHSVal.isLValue() && RHSVal.isLValue()) {
8789 // Handle (intptr_t)&&A - (intptr_t)&&B.
8790 if (!LHSVal.getLValueOffset().isZero() ||
8791 !RHSVal.getLValueOffset().isZero())
8792 return false;
8793 const Expr *LHSExpr = LHSVal.getLValueBase().dyn_cast<const Expr*>();
8794 const Expr *RHSExpr = RHSVal.getLValueBase().dyn_cast<const Expr*>();
8795 if (!LHSExpr || !RHSExpr)
8796 return false;
8797 const AddrLabelExpr *LHSAddrExpr = dyn_cast<AddrLabelExpr>(LHSExpr);
8798 const AddrLabelExpr *RHSAddrExpr = dyn_cast<AddrLabelExpr>(RHSExpr);
8799 if (!LHSAddrExpr || !RHSAddrExpr)
8800 return false;
8801 // Make sure both labels come from the same function.
8802 if (LHSAddrExpr->getLabel()->getDeclContext() !=
8803 RHSAddrExpr->getLabel()->getDeclContext())
8804 return false;
8805 Result = APValue(LHSAddrExpr, RHSAddrExpr);
8806 return true;
8807 }
Richard Smith43e77732013-05-07 04:50:00 +00008808
8809 // All the remaining cases expect both operands to be an integer
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008810 if (!LHSVal.isInt() || !RHSVal.isInt())
8811 return Error(E);
Richard Smith43e77732013-05-07 04:50:00 +00008812
8813 // Set up the width and signedness manually, in case it can't be deduced
8814 // from the operation we're performing.
8815 // FIXME: Don't do this in the cases where we can deduce it.
8816 APSInt Value(Info.Ctx.getIntWidth(E->getType()),
8817 E->getType()->isUnsignedIntegerOrEnumerationType());
8818 if (!handleIntIntBinOp(Info, E, LHSVal.getInt(), E->getOpcode(),
8819 RHSVal.getInt(), Value))
8820 return false;
8821 return Success(Value, E, Result);
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008822}
8823
Richard Trieuba4d0872012-03-21 23:30:30 +00008824void DataRecursiveIntBinOpEvaluator::process(EvalResult &Result) {
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008825 Job &job = Queue.back();
Fangrui Song6907ce22018-07-30 19:24:48 +00008826
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008827 switch (job.Kind) {
8828 case Job::AnyExprKind: {
8829 if (const BinaryOperator *Bop = dyn_cast<BinaryOperator>(job.E)) {
8830 if (shouldEnqueue(Bop)) {
8831 job.Kind = Job::BinOpKind;
8832 enqueue(Bop->getLHS());
Richard Trieuba4d0872012-03-21 23:30:30 +00008833 return;
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008834 }
8835 }
Fangrui Song6907ce22018-07-30 19:24:48 +00008836
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008837 EvaluateExpr(job.E, Result);
8838 Queue.pop_back();
Richard Trieuba4d0872012-03-21 23:30:30 +00008839 return;
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008840 }
Fangrui Song6907ce22018-07-30 19:24:48 +00008841
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008842 case Job::BinOpKind: {
8843 const BinaryOperator *Bop = cast<BinaryOperator>(job.E);
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008844 bool SuppressRHSDiags = false;
Argyrios Kyrtzidis5957b702012-03-22 02:13:06 +00008845 if (!VisitBinOpLHSOnly(Result, Bop, SuppressRHSDiags)) {
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008846 Queue.pop_back();
Richard Trieuba4d0872012-03-21 23:30:30 +00008847 return;
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008848 }
8849 if (SuppressRHSDiags)
8850 job.startSpeculativeEval(Info);
Argyrios Kyrtzidis5957b702012-03-22 02:13:06 +00008851 job.LHSResult.swap(Result);
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008852 job.Kind = Job::BinOpVisitedLHSKind;
8853 enqueue(Bop->getRHS());
Richard Trieuba4d0872012-03-21 23:30:30 +00008854 return;
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008855 }
Fangrui Song6907ce22018-07-30 19:24:48 +00008856
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008857 case Job::BinOpVisitedLHSKind: {
8858 const BinaryOperator *Bop = cast<BinaryOperator>(job.E);
8859 EvalResult RHS;
8860 RHS.swap(Result);
Richard Trieuba4d0872012-03-21 23:30:30 +00008861 Result.Failed = !VisitBinOp(job.LHSResult, RHS, Bop, Result.Val);
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008862 Queue.pop_back();
Richard Trieuba4d0872012-03-21 23:30:30 +00008863 return;
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008864 }
8865 }
Fangrui Song6907ce22018-07-30 19:24:48 +00008866
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008867 llvm_unreachable("Invalid Job::Kind!");
8868}
8869
George Burgess IV8c892b52016-05-25 22:31:54 +00008870namespace {
8871/// Used when we determine that we should fail, but can keep evaluating prior to
8872/// noting that we had a failure.
8873class DelayedNoteFailureRAII {
8874 EvalInfo &Info;
8875 bool NoteFailure;
8876
8877public:
8878 DelayedNoteFailureRAII(EvalInfo &Info, bool NoteFailure = true)
8879 : Info(Info), NoteFailure(NoteFailure) {}
8880 ~DelayedNoteFailureRAII() {
8881 if (NoteFailure) {
8882 bool ContinueAfterFailure = Info.noteFailure();
8883 (void)ContinueAfterFailure;
8884 assert(ContinueAfterFailure &&
8885 "Shouldn't have kept evaluating on failure.");
8886 }
8887 }
8888};
8889}
8890
Eric Fiselier0683c0e2018-05-07 21:07:10 +00008891template <class SuccessCB, class AfterCB>
8892static bool
8893EvaluateComparisonBinaryOperator(EvalInfo &Info, const BinaryOperator *E,
8894 SuccessCB &&Success, AfterCB &&DoAfter) {
8895 assert(E->isComparisonOp() && "expected comparison operator");
8896 assert((E->getOpcode() == BO_Cmp ||
8897 E->getType()->isIntegralOrEnumerationType()) &&
8898 "unsupported binary expression evaluation");
8899 auto Error = [&](const Expr *E) {
8900 Info.FFDiag(E, diag::note_invalid_subexpr_in_const_expr);
8901 return false;
8902 };
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00008903
Eric Fiselier0683c0e2018-05-07 21:07:10 +00008904 using CCR = ComparisonCategoryResult;
8905 bool IsRelational = E->isRelationalOp();
8906 bool IsEquality = E->isEqualityOp();
8907 if (E->getOpcode() == BO_Cmp) {
8908 const ComparisonCategoryInfo &CmpInfo =
8909 Info.Ctx.CompCategories.getInfoForType(E->getType());
8910 IsRelational = CmpInfo.isOrdered();
8911 IsEquality = CmpInfo.isEquality();
8912 }
Eli Friedman5a332ea2008-11-13 06:09:17 +00008913
Anders Carlssonacc79812008-11-16 07:17:21 +00008914 QualType LHSTy = E->getLHS()->getType();
8915 QualType RHSTy = E->getRHS()->getType();
Daniel Dunbar74f2425b2009-01-29 06:43:41 +00008916
Eric Fiselier0683c0e2018-05-07 21:07:10 +00008917 if (LHSTy->isIntegralOrEnumerationType() &&
8918 RHSTy->isIntegralOrEnumerationType()) {
8919 APSInt LHS, RHS;
8920 bool LHSOK = EvaluateInteger(E->getLHS(), LHS, Info);
8921 if (!LHSOK && !Info.noteFailure())
8922 return false;
8923 if (!EvaluateInteger(E->getRHS(), RHS, Info) || !LHSOK)
8924 return false;
8925 if (LHS < RHS)
8926 return Success(CCR::Less, E);
8927 if (LHS > RHS)
8928 return Success(CCR::Greater, E);
8929 return Success(CCR::Equal, E);
8930 }
8931
Chandler Carruthb29a7432014-10-11 11:03:30 +00008932 if (LHSTy->isAnyComplexType() || RHSTy->isAnyComplexType()) {
John McCall93d91dc2010-05-07 17:22:02 +00008933 ComplexValue LHS, RHS;
Chandler Carruthb29a7432014-10-11 11:03:30 +00008934 bool LHSOK;
Josh Magee4d1a79b2015-02-04 21:50:20 +00008935 if (E->isAssignmentOp()) {
8936 LValue LV;
8937 EvaluateLValue(E->getLHS(), LV, Info);
8938 LHSOK = false;
8939 } else if (LHSTy->isRealFloatingType()) {
Chandler Carruthb29a7432014-10-11 11:03:30 +00008940 LHSOK = EvaluateFloat(E->getLHS(), LHS.FloatReal, Info);
8941 if (LHSOK) {
8942 LHS.makeComplexFloat();
8943 LHS.FloatImag = APFloat(LHS.FloatReal.getSemantics());
8944 }
8945 } else {
8946 LHSOK = EvaluateComplex(E->getLHS(), LHS, Info);
8947 }
George Burgess IVa145e252016-05-25 22:38:36 +00008948 if (!LHSOK && !Info.noteFailure())
Daniel Dunbar74f2425b2009-01-29 06:43:41 +00008949 return false;
8950
Chandler Carruthb29a7432014-10-11 11:03:30 +00008951 if (E->getRHS()->getType()->isRealFloatingType()) {
8952 if (!EvaluateFloat(E->getRHS(), RHS.FloatReal, Info) || !LHSOK)
8953 return false;
8954 RHS.makeComplexFloat();
8955 RHS.FloatImag = APFloat(RHS.FloatReal.getSemantics());
8956 } else if (!EvaluateComplex(E->getRHS(), RHS, Info) || !LHSOK)
Daniel Dunbar74f2425b2009-01-29 06:43:41 +00008957 return false;
8958
8959 if (LHS.isComplexFloat()) {
Mike Stump11289f42009-09-09 15:08:12 +00008960 APFloat::cmpResult CR_r =
Daniel Dunbar74f2425b2009-01-29 06:43:41 +00008961 LHS.getComplexFloatReal().compare(RHS.getComplexFloatReal());
Mike Stump11289f42009-09-09 15:08:12 +00008962 APFloat::cmpResult CR_i =
Daniel Dunbar74f2425b2009-01-29 06:43:41 +00008963 LHS.getComplexFloatImag().compare(RHS.getComplexFloatImag());
Eric Fiselier0683c0e2018-05-07 21:07:10 +00008964 bool IsEqual = CR_r == APFloat::cmpEqual && CR_i == APFloat::cmpEqual;
8965 return Success(IsEqual ? CCR::Equal : CCR::Nonequal, E);
Daniel Dunbar74f2425b2009-01-29 06:43:41 +00008966 } else {
Eric Fiselier0683c0e2018-05-07 21:07:10 +00008967 assert(IsEquality && "invalid complex comparison");
8968 bool IsEqual = LHS.getComplexIntReal() == RHS.getComplexIntReal() &&
8969 LHS.getComplexIntImag() == RHS.getComplexIntImag();
8970 return Success(IsEqual ? CCR::Equal : CCR::Nonequal, E);
Daniel Dunbar74f2425b2009-01-29 06:43:41 +00008971 }
8972 }
Mike Stump11289f42009-09-09 15:08:12 +00008973
Anders Carlssonacc79812008-11-16 07:17:21 +00008974 if (LHSTy->isRealFloatingType() &&
8975 RHSTy->isRealFloatingType()) {
8976 APFloat RHS(0.0), LHS(0.0);
Mike Stump11289f42009-09-09 15:08:12 +00008977
Richard Smith253c2a32012-01-27 01:14:48 +00008978 bool LHSOK = EvaluateFloat(E->getRHS(), RHS, Info);
George Burgess IVa145e252016-05-25 22:38:36 +00008979 if (!LHSOK && !Info.noteFailure())
Anders Carlssonacc79812008-11-16 07:17:21 +00008980 return false;
Mike Stump11289f42009-09-09 15:08:12 +00008981
Richard Smith253c2a32012-01-27 01:14:48 +00008982 if (!EvaluateFloat(E->getLHS(), LHS, Info) || !LHSOK)
Anders Carlssonacc79812008-11-16 07:17:21 +00008983 return false;
Mike Stump11289f42009-09-09 15:08:12 +00008984
Eric Fiselier0683c0e2018-05-07 21:07:10 +00008985 assert(E->isComparisonOp() && "Invalid binary operator!");
8986 auto GetCmpRes = [&]() {
8987 switch (LHS.compare(RHS)) {
8988 case APFloat::cmpEqual:
8989 return CCR::Equal;
8990 case APFloat::cmpLessThan:
8991 return CCR::Less;
8992 case APFloat::cmpGreaterThan:
8993 return CCR::Greater;
8994 case APFloat::cmpUnordered:
8995 return CCR::Unordered;
8996 }
Simon Pilgrim3366dcf2018-05-08 09:40:32 +00008997 llvm_unreachable("Unrecognised APFloat::cmpResult enum");
Eric Fiselier0683c0e2018-05-07 21:07:10 +00008998 };
8999 return Success(GetCmpRes(), E);
Anders Carlssonacc79812008-11-16 07:17:21 +00009000 }
Mike Stump11289f42009-09-09 15:08:12 +00009001
Eli Friedmana38da572009-04-28 19:17:36 +00009002 if (LHSTy->isPointerType() && RHSTy->isPointerType()) {
Eric Fiselier0683c0e2018-05-07 21:07:10 +00009003 LValue LHSValue, RHSValue;
Richard Smith253c2a32012-01-27 01:14:48 +00009004
Eric Fiselier0683c0e2018-05-07 21:07:10 +00009005 bool LHSOK = EvaluatePointer(E->getLHS(), LHSValue, Info);
9006 if (!LHSOK && !Info.noteFailure())
9007 return false;
Eli Friedman64004332009-03-23 04:38:34 +00009008
Eric Fiselier0683c0e2018-05-07 21:07:10 +00009009 if (!EvaluatePointer(E->getRHS(), RHSValue, Info) || !LHSOK)
9010 return false;
Eli Friedman64004332009-03-23 04:38:34 +00009011
Eric Fiselier0683c0e2018-05-07 21:07:10 +00009012 // Reject differing bases from the normal codepath; we special-case
9013 // comparisons to null.
9014 if (!HasSameBase(LHSValue, RHSValue)) {
9015 // Inequalities and subtractions between unrelated pointers have
9016 // unspecified or undefined behavior.
9017 if (!IsEquality)
9018 return Error(E);
9019 // A constant address may compare equal to the address of a symbol.
9020 // The one exception is that address of an object cannot compare equal
9021 // to a null pointer constant.
9022 if ((!LHSValue.Base && !LHSValue.Offset.isZero()) ||
9023 (!RHSValue.Base && !RHSValue.Offset.isZero()))
9024 return Error(E);
9025 // It's implementation-defined whether distinct literals will have
9026 // distinct addresses. In clang, the result of such a comparison is
9027 // unspecified, so it is not a constant expression. However, we do know
9028 // that the address of a literal will be non-null.
9029 if ((IsLiteralLValue(LHSValue) || IsLiteralLValue(RHSValue)) &&
9030 LHSValue.Base && RHSValue.Base)
9031 return Error(E);
9032 // We can't tell whether weak symbols will end up pointing to the same
9033 // object.
9034 if (IsWeakLValue(LHSValue) || IsWeakLValue(RHSValue))
9035 return Error(E);
9036 // We can't compare the address of the start of one object with the
9037 // past-the-end address of another object, per C++ DR1652.
9038 if ((LHSValue.Base && LHSValue.Offset.isZero() &&
9039 isOnePastTheEndOfCompleteObject(Info.Ctx, RHSValue)) ||
9040 (RHSValue.Base && RHSValue.Offset.isZero() &&
9041 isOnePastTheEndOfCompleteObject(Info.Ctx, LHSValue)))
9042 return Error(E);
9043 // We can't tell whether an object is at the same address as another
9044 // zero sized object.
9045 if ((RHSValue.Base && isZeroSized(LHSValue)) ||
9046 (LHSValue.Base && isZeroSized(RHSValue)))
9047 return Error(E);
9048 return Success(CCR::Nonequal, E);
9049 }
Eli Friedman64004332009-03-23 04:38:34 +00009050
Eric Fiselier0683c0e2018-05-07 21:07:10 +00009051 const CharUnits &LHSOffset = LHSValue.getLValueOffset();
9052 const CharUnits &RHSOffset = RHSValue.getLValueOffset();
Richard Smith1b470412012-02-01 08:10:20 +00009053
Eric Fiselier0683c0e2018-05-07 21:07:10 +00009054 SubobjectDesignator &LHSDesignator = LHSValue.getLValueDesignator();
9055 SubobjectDesignator &RHSDesignator = RHSValue.getLValueDesignator();
Richard Smith84f6dcf2012-02-02 01:16:57 +00009056
Eric Fiselier0683c0e2018-05-07 21:07:10 +00009057 // C++11 [expr.rel]p3:
9058 // Pointers to void (after pointer conversions) can be compared, with a
9059 // result defined as follows: If both pointers represent the same
9060 // address or are both the null pointer value, the result is true if the
9061 // operator is <= or >= and false otherwise; otherwise the result is
9062 // unspecified.
9063 // We interpret this as applying to pointers to *cv* void.
9064 if (LHSTy->isVoidPointerType() && LHSOffset != RHSOffset && IsRelational)
9065 Info.CCEDiag(E, diag::note_constexpr_void_comparison);
Richard Smith84f6dcf2012-02-02 01:16:57 +00009066
Eric Fiselier0683c0e2018-05-07 21:07:10 +00009067 // C++11 [expr.rel]p2:
9068 // - If two pointers point to non-static data members of the same object,
9069 // or to subobjects or array elements fo such members, recursively, the
9070 // pointer to the later declared member compares greater provided the
9071 // two members have the same access control and provided their class is
9072 // not a union.
9073 // [...]
9074 // - Otherwise pointer comparisons are unspecified.
9075 if (!LHSDesignator.Invalid && !RHSDesignator.Invalid && IsRelational) {
9076 bool WasArrayIndex;
9077 unsigned Mismatch = FindDesignatorMismatch(
9078 getType(LHSValue.Base), LHSDesignator, RHSDesignator, WasArrayIndex);
9079 // At the point where the designators diverge, the comparison has a
9080 // specified value if:
9081 // - we are comparing array indices
9082 // - we are comparing fields of a union, or fields with the same access
9083 // Otherwise, the result is unspecified and thus the comparison is not a
9084 // constant expression.
9085 if (!WasArrayIndex && Mismatch < LHSDesignator.Entries.size() &&
9086 Mismatch < RHSDesignator.Entries.size()) {
9087 const FieldDecl *LF = getAsField(LHSDesignator.Entries[Mismatch]);
9088 const FieldDecl *RF = getAsField(RHSDesignator.Entries[Mismatch]);
9089 if (!LF && !RF)
9090 Info.CCEDiag(E, diag::note_constexpr_pointer_comparison_base_classes);
9091 else if (!LF)
9092 Info.CCEDiag(E, diag::note_constexpr_pointer_comparison_base_field)
Richard Smith84f6dcf2012-02-02 01:16:57 +00009093 << getAsBaseClass(LHSDesignator.Entries[Mismatch])
9094 << RF->getParent() << RF;
Eric Fiselier0683c0e2018-05-07 21:07:10 +00009095 else if (!RF)
9096 Info.CCEDiag(E, diag::note_constexpr_pointer_comparison_base_field)
Richard Smith84f6dcf2012-02-02 01:16:57 +00009097 << getAsBaseClass(RHSDesignator.Entries[Mismatch])
9098 << LF->getParent() << LF;
Eric Fiselier0683c0e2018-05-07 21:07:10 +00009099 else if (!LF->getParent()->isUnion() &&
9100 LF->getAccess() != RF->getAccess())
9101 Info.CCEDiag(E,
9102 diag::note_constexpr_pointer_comparison_differing_access)
Richard Smith84f6dcf2012-02-02 01:16:57 +00009103 << LF << LF->getAccess() << RF << RF->getAccess()
9104 << LF->getParent();
Eli Friedmana38da572009-04-28 19:17:36 +00009105 }
Anders Carlsson9f9e4242008-11-16 19:01:22 +00009106 }
Eric Fiselier0683c0e2018-05-07 21:07:10 +00009107
9108 // The comparison here must be unsigned, and performed with the same
9109 // width as the pointer.
9110 unsigned PtrSize = Info.Ctx.getTypeSize(LHSTy);
9111 uint64_t CompareLHS = LHSOffset.getQuantity();
9112 uint64_t CompareRHS = RHSOffset.getQuantity();
9113 assert(PtrSize <= 64 && "Unexpected pointer width");
9114 uint64_t Mask = ~0ULL >> (64 - PtrSize);
9115 CompareLHS &= Mask;
9116 CompareRHS &= Mask;
9117
9118 // If there is a base and this is a relational operator, we can only
9119 // compare pointers within the object in question; otherwise, the result
9120 // depends on where the object is located in memory.
9121 if (!LHSValue.Base.isNull() && IsRelational) {
9122 QualType BaseTy = getType(LHSValue.Base);
9123 if (BaseTy->isIncompleteType())
9124 return Error(E);
9125 CharUnits Size = Info.Ctx.getTypeSizeInChars(BaseTy);
9126 uint64_t OffsetLimit = Size.getQuantity();
9127 if (CompareLHS > OffsetLimit || CompareRHS > OffsetLimit)
9128 return Error(E);
9129 }
9130
9131 if (CompareLHS < CompareRHS)
9132 return Success(CCR::Less, E);
9133 if (CompareLHS > CompareRHS)
9134 return Success(CCR::Greater, E);
9135 return Success(CCR::Equal, E);
Anders Carlsson9f9e4242008-11-16 19:01:22 +00009136 }
Richard Smith7bb00672012-02-01 01:42:44 +00009137
9138 if (LHSTy->isMemberPointerType()) {
Eric Fiselier0683c0e2018-05-07 21:07:10 +00009139 assert(IsEquality && "unexpected member pointer operation");
Richard Smith7bb00672012-02-01 01:42:44 +00009140 assert(RHSTy->isMemberPointerType() && "invalid comparison");
9141
9142 MemberPtr LHSValue, RHSValue;
9143
9144 bool LHSOK = EvaluateMemberPointer(E->getLHS(), LHSValue, Info);
George Burgess IVa145e252016-05-25 22:38:36 +00009145 if (!LHSOK && !Info.noteFailure())
Richard Smith7bb00672012-02-01 01:42:44 +00009146 return false;
9147
9148 if (!EvaluateMemberPointer(E->getRHS(), RHSValue, Info) || !LHSOK)
9149 return false;
9150
9151 // C++11 [expr.eq]p2:
9152 // If both operands are null, they compare equal. Otherwise if only one is
9153 // null, they compare unequal.
9154 if (!LHSValue.getDecl() || !RHSValue.getDecl()) {
9155 bool Equal = !LHSValue.getDecl() && !RHSValue.getDecl();
Eric Fiselier0683c0e2018-05-07 21:07:10 +00009156 return Success(Equal ? CCR::Equal : CCR::Nonequal, E);
Richard Smith7bb00672012-02-01 01:42:44 +00009157 }
9158
9159 // Otherwise if either is a pointer to a virtual member function, the
9160 // result is unspecified.
9161 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(LHSValue.getDecl()))
9162 if (MD->isVirtual())
Eric Fiselier0683c0e2018-05-07 21:07:10 +00009163 Info.CCEDiag(E, diag::note_constexpr_compare_virtual_mem_ptr) << MD;
Richard Smith7bb00672012-02-01 01:42:44 +00009164 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(RHSValue.getDecl()))
9165 if (MD->isVirtual())
Eric Fiselier0683c0e2018-05-07 21:07:10 +00009166 Info.CCEDiag(E, diag::note_constexpr_compare_virtual_mem_ptr) << MD;
Richard Smith7bb00672012-02-01 01:42:44 +00009167
9168 // Otherwise they compare equal if and only if they would refer to the
9169 // same member of the same most derived object or the same subobject if
9170 // they were dereferenced with a hypothetical object of the associated
9171 // class type.
9172 bool Equal = LHSValue == RHSValue;
Eric Fiselier0683c0e2018-05-07 21:07:10 +00009173 return Success(Equal ? CCR::Equal : CCR::Nonequal, E);
Richard Smith7bb00672012-02-01 01:42:44 +00009174 }
9175
Richard Smithab44d9b2012-02-14 22:35:28 +00009176 if (LHSTy->isNullPtrType()) {
9177 assert(E->isComparisonOp() && "unexpected nullptr operation");
9178 assert(RHSTy->isNullPtrType() && "missing pointer conversion");
9179 // C++11 [expr.rel]p4, [expr.eq]p3: If two operands of type std::nullptr_t
9180 // are compared, the result is true of the operator is <=, >= or ==, and
9181 // false otherwise.
Eric Fiselier0683c0e2018-05-07 21:07:10 +00009182 return Success(CCR::Equal, E);
Richard Smithab44d9b2012-02-14 22:35:28 +00009183 }
9184
Eric Fiselier0683c0e2018-05-07 21:07:10 +00009185 return DoAfter();
9186}
9187
9188bool RecordExprEvaluator::VisitBinCmp(const BinaryOperator *E) {
9189 if (!CheckLiteralType(Info, E))
9190 return false;
9191
9192 auto OnSuccess = [&](ComparisonCategoryResult ResKind,
9193 const BinaryOperator *E) {
9194 // Evaluation succeeded. Lookup the information for the comparison category
9195 // type and fetch the VarDecl for the result.
9196 const ComparisonCategoryInfo &CmpInfo =
9197 Info.Ctx.CompCategories.getInfoForType(E->getType());
9198 const VarDecl *VD =
9199 CmpInfo.getValueInfo(CmpInfo.makeWeakResult(ResKind))->VD;
9200 // Check and evaluate the result as a constant expression.
9201 LValue LV;
9202 LV.set(VD);
9203 if (!handleLValueToRValueConversion(Info, E, E->getType(), LV, Result))
9204 return false;
9205 return CheckConstantExpression(Info, E->getExprLoc(), E->getType(), Result);
9206 };
9207 return EvaluateComparisonBinaryOperator(Info, E, OnSuccess, [&]() {
9208 return ExprEvaluatorBaseTy::VisitBinCmp(E);
9209 });
9210}
9211
9212bool IntExprEvaluator::VisitBinaryOperator(const BinaryOperator *E) {
9213 // We don't call noteFailure immediately because the assignment happens after
9214 // we evaluate LHS and RHS.
9215 if (!Info.keepEvaluatingAfterFailure() && E->isAssignmentOp())
9216 return Error(E);
9217
9218 DelayedNoteFailureRAII MaybeNoteFailureLater(Info, E->isAssignmentOp());
9219 if (DataRecursiveIntBinOpEvaluator::shouldEnqueue(E))
9220 return DataRecursiveIntBinOpEvaluator(*this, Result).Traverse(E);
9221
9222 assert((!E->getLHS()->getType()->isIntegralOrEnumerationType() ||
9223 !E->getRHS()->getType()->isIntegralOrEnumerationType()) &&
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00009224 "DataRecursiveIntBinOpEvaluator should have handled integral types");
Eric Fiselier0683c0e2018-05-07 21:07:10 +00009225
9226 if (E->isComparisonOp()) {
9227 // Evaluate builtin binary comparisons by evaluating them as C++2a three-way
9228 // comparisons and then translating the result.
9229 auto OnSuccess = [&](ComparisonCategoryResult ResKind,
9230 const BinaryOperator *E) {
9231 using CCR = ComparisonCategoryResult;
9232 bool IsEqual = ResKind == CCR::Equal,
9233 IsLess = ResKind == CCR::Less,
9234 IsGreater = ResKind == CCR::Greater;
9235 auto Op = E->getOpcode();
9236 switch (Op) {
9237 default:
9238 llvm_unreachable("unsupported binary operator");
9239 case BO_EQ:
9240 case BO_NE:
9241 return Success(IsEqual == (Op == BO_EQ), E);
9242 case BO_LT: return Success(IsLess, E);
9243 case BO_GT: return Success(IsGreater, E);
9244 case BO_LE: return Success(IsEqual || IsLess, E);
9245 case BO_GE: return Success(IsEqual || IsGreater, E);
9246 }
9247 };
9248 return EvaluateComparisonBinaryOperator(Info, E, OnSuccess, [&]() {
9249 return ExprEvaluatorBaseTy::VisitBinaryOperator(E);
9250 });
9251 }
9252
9253 QualType LHSTy = E->getLHS()->getType();
9254 QualType RHSTy = E->getRHS()->getType();
9255
9256 if (LHSTy->isPointerType() && RHSTy->isPointerType() &&
9257 E->getOpcode() == BO_Sub) {
9258 LValue LHSValue, RHSValue;
9259
9260 bool LHSOK = EvaluatePointer(E->getLHS(), LHSValue, Info);
9261 if (!LHSOK && !Info.noteFailure())
9262 return false;
9263
9264 if (!EvaluatePointer(E->getRHS(), RHSValue, Info) || !LHSOK)
9265 return false;
9266
9267 // Reject differing bases from the normal codepath; we special-case
9268 // comparisons to null.
9269 if (!HasSameBase(LHSValue, RHSValue)) {
9270 // Handle &&A - &&B.
9271 if (!LHSValue.Offset.isZero() || !RHSValue.Offset.isZero())
9272 return Error(E);
9273 const Expr *LHSExpr = LHSValue.Base.dyn_cast<const Expr *>();
9274 const Expr *RHSExpr = RHSValue.Base.dyn_cast<const Expr *>();
9275 if (!LHSExpr || !RHSExpr)
9276 return Error(E);
9277 const AddrLabelExpr *LHSAddrExpr = dyn_cast<AddrLabelExpr>(LHSExpr);
9278 const AddrLabelExpr *RHSAddrExpr = dyn_cast<AddrLabelExpr>(RHSExpr);
9279 if (!LHSAddrExpr || !RHSAddrExpr)
9280 return Error(E);
9281 // Make sure both labels come from the same function.
9282 if (LHSAddrExpr->getLabel()->getDeclContext() !=
9283 RHSAddrExpr->getLabel()->getDeclContext())
9284 return Error(E);
9285 return Success(APValue(LHSAddrExpr, RHSAddrExpr), E);
9286 }
9287 const CharUnits &LHSOffset = LHSValue.getLValueOffset();
9288 const CharUnits &RHSOffset = RHSValue.getLValueOffset();
9289
9290 SubobjectDesignator &LHSDesignator = LHSValue.getLValueDesignator();
9291 SubobjectDesignator &RHSDesignator = RHSValue.getLValueDesignator();
9292
9293 // C++11 [expr.add]p6:
9294 // Unless both pointers point to elements of the same array object, or
9295 // one past the last element of the array object, the behavior is
9296 // undefined.
9297 if (!LHSDesignator.Invalid && !RHSDesignator.Invalid &&
9298 !AreElementsOfSameArray(getType(LHSValue.Base), LHSDesignator,
9299 RHSDesignator))
9300 Info.CCEDiag(E, diag::note_constexpr_pointer_subtraction_not_same_array);
9301
9302 QualType Type = E->getLHS()->getType();
9303 QualType ElementType = Type->getAs<PointerType>()->getPointeeType();
9304
9305 CharUnits ElementSize;
9306 if (!HandleSizeof(Info, E->getExprLoc(), ElementType, ElementSize))
9307 return false;
9308
9309 // As an extension, a type may have zero size (empty struct or union in
9310 // C, array of zero length). Pointer subtraction in such cases has
9311 // undefined behavior, so is not constant.
9312 if (ElementSize.isZero()) {
9313 Info.FFDiag(E, diag::note_constexpr_pointer_subtraction_zero_size)
9314 << ElementType;
9315 return false;
9316 }
9317
9318 // FIXME: LLVM and GCC both compute LHSOffset - RHSOffset at runtime,
9319 // and produce incorrect results when it overflows. Such behavior
9320 // appears to be non-conforming, but is common, so perhaps we should
9321 // assume the standard intended for such cases to be undefined behavior
9322 // and check for them.
9323
9324 // Compute (LHSOffset - RHSOffset) / Size carefully, checking for
9325 // overflow in the final conversion to ptrdiff_t.
9326 APSInt LHS(llvm::APInt(65, (int64_t)LHSOffset.getQuantity(), true), false);
9327 APSInt RHS(llvm::APInt(65, (int64_t)RHSOffset.getQuantity(), true), false);
9328 APSInt ElemSize(llvm::APInt(65, (int64_t)ElementSize.getQuantity(), true),
9329 false);
9330 APSInt TrueResult = (LHS - RHS) / ElemSize;
9331 APSInt Result = TrueResult.trunc(Info.Ctx.getIntWidth(E->getType()));
9332
9333 if (Result.extend(65) != TrueResult &&
9334 !HandleOverflow(Info, E, TrueResult, E->getType()))
9335 return false;
9336 return Success(Result, E);
9337 }
9338
Argyrios Kyrtzidis57595e42012-03-15 18:07:16 +00009339 return ExprEvaluatorBaseTy::VisitBinaryOperator(E);
Anders Carlsson9c181652008-07-08 14:35:21 +00009340}
9341
Peter Collingbournee190dee2011-03-11 19:24:49 +00009342/// VisitUnaryExprOrTypeTraitExpr - Evaluate a sizeof, alignof or vec_step with
9343/// a result as the expression's type.
9344bool IntExprEvaluator::VisitUnaryExprOrTypeTraitExpr(
9345 const UnaryExprOrTypeTraitExpr *E) {
9346 switch(E->getKind()) {
9347 case UETT_AlignOf: {
Chris Lattner24aeeab2009-01-24 21:09:06 +00009348 if (E->isArgumentType())
Hal Finkel0dd05d42014-10-03 17:18:37 +00009349 return Success(GetAlignOfType(Info, E->getArgumentType()), E);
Chris Lattner24aeeab2009-01-24 21:09:06 +00009350 else
Hal Finkel0dd05d42014-10-03 17:18:37 +00009351 return Success(GetAlignOfExpr(Info, E->getArgumentExpr()), E);
Chris Lattner24aeeab2009-01-24 21:09:06 +00009352 }
Eli Friedman64004332009-03-23 04:38:34 +00009353
Peter Collingbournee190dee2011-03-11 19:24:49 +00009354 case UETT_VecStep: {
9355 QualType Ty = E->getTypeOfArgument();
Sebastian Redl6f282892008-11-11 17:56:53 +00009356
Peter Collingbournee190dee2011-03-11 19:24:49 +00009357 if (Ty->isVectorType()) {
Ted Kremenek28831752012-08-23 20:46:57 +00009358 unsigned n = Ty->castAs<VectorType>()->getNumElements();
Eli Friedman64004332009-03-23 04:38:34 +00009359
Peter Collingbournee190dee2011-03-11 19:24:49 +00009360 // The vec_step built-in functions that take a 3-component
9361 // vector return 4. (OpenCL 1.1 spec 6.11.12)
9362 if (n == 3)
9363 n = 4;
Eli Friedman2aa38fe2009-01-24 22:19:05 +00009364
Peter Collingbournee190dee2011-03-11 19:24:49 +00009365 return Success(n, E);
9366 } else
9367 return Success(1, E);
9368 }
9369
9370 case UETT_SizeOf: {
9371 QualType SrcTy = E->getTypeOfArgument();
9372 // C++ [expr.sizeof]p2: "When applied to a reference or a reference type,
9373 // the result is the size of the referenced type."
Peter Collingbournee190dee2011-03-11 19:24:49 +00009374 if (const ReferenceType *Ref = SrcTy->getAs<ReferenceType>())
9375 SrcTy = Ref->getPointeeType();
9376
Richard Smithd62306a2011-11-10 06:34:14 +00009377 CharUnits Sizeof;
Richard Smith17100ba2012-02-16 02:46:34 +00009378 if (!HandleSizeof(Info, E->getExprLoc(), SrcTy, Sizeof))
Peter Collingbournee190dee2011-03-11 19:24:49 +00009379 return false;
Richard Smithd62306a2011-11-10 06:34:14 +00009380 return Success(Sizeof, E);
Peter Collingbournee190dee2011-03-11 19:24:49 +00009381 }
Alexey Bataev00396512015-07-02 03:40:19 +00009382 case UETT_OpenMPRequiredSimdAlign:
9383 assert(E->isArgumentType());
9384 return Success(
9385 Info.Ctx.toCharUnitsFromBits(
9386 Info.Ctx.getOpenMPDefaultSimdAlign(E->getArgumentType()))
9387 .getQuantity(),
9388 E);
Peter Collingbournee190dee2011-03-11 19:24:49 +00009389 }
9390
9391 llvm_unreachable("unknown expr/type trait");
Chris Lattnerf8d7f722008-07-11 21:24:13 +00009392}
9393
Peter Collingbournee9200682011-05-13 03:29:01 +00009394bool IntExprEvaluator::VisitOffsetOfExpr(const OffsetOfExpr *OOE) {
Douglas Gregor882211c2010-04-28 22:16:22 +00009395 CharUnits Result;
Peter Collingbournee9200682011-05-13 03:29:01 +00009396 unsigned n = OOE->getNumComponents();
Douglas Gregor882211c2010-04-28 22:16:22 +00009397 if (n == 0)
Richard Smithf57d8cb2011-12-09 22:58:01 +00009398 return Error(OOE);
Peter Collingbournee9200682011-05-13 03:29:01 +00009399 QualType CurrentType = OOE->getTypeSourceInfo()->getType();
Douglas Gregor882211c2010-04-28 22:16:22 +00009400 for (unsigned i = 0; i != n; ++i) {
James Y Knight7281c352015-12-29 22:31:18 +00009401 OffsetOfNode ON = OOE->getComponent(i);
Douglas Gregor882211c2010-04-28 22:16:22 +00009402 switch (ON.getKind()) {
James Y Knight7281c352015-12-29 22:31:18 +00009403 case OffsetOfNode::Array: {
Peter Collingbournee9200682011-05-13 03:29:01 +00009404 const Expr *Idx = OOE->getIndexExpr(ON.getArrayExprIndex());
Douglas Gregor882211c2010-04-28 22:16:22 +00009405 APSInt IdxResult;
9406 if (!EvaluateInteger(Idx, IdxResult, Info))
9407 return false;
9408 const ArrayType *AT = Info.Ctx.getAsArrayType(CurrentType);
9409 if (!AT)
Richard Smithf57d8cb2011-12-09 22:58:01 +00009410 return Error(OOE);
Douglas Gregor882211c2010-04-28 22:16:22 +00009411 CurrentType = AT->getElementType();
9412 CharUnits ElementSize = Info.Ctx.getTypeSizeInChars(CurrentType);
9413 Result += IdxResult.getSExtValue() * ElementSize;
Richard Smith861b5b52013-05-07 23:34:45 +00009414 break;
Douglas Gregor882211c2010-04-28 22:16:22 +00009415 }
Richard Smithf57d8cb2011-12-09 22:58:01 +00009416
James Y Knight7281c352015-12-29 22:31:18 +00009417 case OffsetOfNode::Field: {
Douglas Gregor882211c2010-04-28 22:16:22 +00009418 FieldDecl *MemberDecl = ON.getField();
9419 const RecordType *RT = CurrentType->getAs<RecordType>();
Richard Smithf57d8cb2011-12-09 22:58:01 +00009420 if (!RT)
9421 return Error(OOE);
Douglas Gregor882211c2010-04-28 22:16:22 +00009422 RecordDecl *RD = RT->getDecl();
John McCalld7bca762012-05-01 00:38:49 +00009423 if (RD->isInvalidDecl()) return false;
Douglas Gregor882211c2010-04-28 22:16:22 +00009424 const ASTRecordLayout &RL = Info.Ctx.getASTRecordLayout(RD);
John McCall4e819612011-01-20 07:57:12 +00009425 unsigned i = MemberDecl->getFieldIndex();
Douglas Gregord1702062010-04-29 00:18:15 +00009426 assert(i < RL.getFieldCount() && "offsetof field in wrong type");
Ken Dyck86a7fcc2011-01-18 01:56:16 +00009427 Result += Info.Ctx.toCharUnitsFromBits(RL.getFieldOffset(i));
Douglas Gregor882211c2010-04-28 22:16:22 +00009428 CurrentType = MemberDecl->getType().getNonReferenceType();
9429 break;
9430 }
Richard Smithf57d8cb2011-12-09 22:58:01 +00009431
James Y Knight7281c352015-12-29 22:31:18 +00009432 case OffsetOfNode::Identifier:
Douglas Gregor882211c2010-04-28 22:16:22 +00009433 llvm_unreachable("dependent __builtin_offsetof");
Richard Smithf57d8cb2011-12-09 22:58:01 +00009434
James Y Knight7281c352015-12-29 22:31:18 +00009435 case OffsetOfNode::Base: {
Douglas Gregord1702062010-04-29 00:18:15 +00009436 CXXBaseSpecifier *BaseSpec = ON.getBase();
9437 if (BaseSpec->isVirtual())
Richard Smithf57d8cb2011-12-09 22:58:01 +00009438 return Error(OOE);
Douglas Gregord1702062010-04-29 00:18:15 +00009439
9440 // Find the layout of the class whose base we are looking into.
9441 const RecordType *RT = CurrentType->getAs<RecordType>();
Richard Smithf57d8cb2011-12-09 22:58:01 +00009442 if (!RT)
9443 return Error(OOE);
Douglas Gregord1702062010-04-29 00:18:15 +00009444 RecordDecl *RD = RT->getDecl();
John McCalld7bca762012-05-01 00:38:49 +00009445 if (RD->isInvalidDecl()) return false;
Douglas Gregord1702062010-04-29 00:18:15 +00009446 const ASTRecordLayout &RL = Info.Ctx.getASTRecordLayout(RD);
9447
9448 // Find the base class itself.
9449 CurrentType = BaseSpec->getType();
9450 const RecordType *BaseRT = CurrentType->getAs<RecordType>();
9451 if (!BaseRT)
Richard Smithf57d8cb2011-12-09 22:58:01 +00009452 return Error(OOE);
Fangrui Song6907ce22018-07-30 19:24:48 +00009453
Douglas Gregord1702062010-04-29 00:18:15 +00009454 // Add the offset to the base.
Ken Dyck02155cb2011-01-26 02:17:08 +00009455 Result += RL.getBaseClassOffset(cast<CXXRecordDecl>(BaseRT->getDecl()));
Douglas Gregord1702062010-04-29 00:18:15 +00009456 break;
9457 }
Douglas Gregor882211c2010-04-28 22:16:22 +00009458 }
9459 }
Peter Collingbournee9200682011-05-13 03:29:01 +00009460 return Success(Result, OOE);
Douglas Gregor882211c2010-04-28 22:16:22 +00009461}
9462
Chris Lattnere13042c2008-07-11 19:10:17 +00009463bool IntExprEvaluator::VisitUnaryOperator(const UnaryOperator *E) {
Richard Smithf57d8cb2011-12-09 22:58:01 +00009464 switch (E->getOpcode()) {
9465 default:
9466 // Address, indirect, pre/post inc/dec, etc are not valid constant exprs.
9467 // See C99 6.6p3.
9468 return Error(E);
9469 case UO_Extension:
9470 // FIXME: Should extension allow i-c-e extension expressions in its scope?
9471 // If so, we could clear the diagnostic ID.
9472 return Visit(E->getSubExpr());
9473 case UO_Plus:
9474 // The result is just the value.
9475 return Visit(E->getSubExpr());
9476 case UO_Minus: {
9477 if (!Visit(E->getSubExpr()))
Malcolm Parsonsfab36802018-04-16 08:31:08 +00009478 return false;
9479 if (!Result.isInt()) return Error(E);
9480 const APSInt &Value = Result.getInt();
9481 if (Value.isSigned() && Value.isMinSignedValue() && E->canOverflow() &&
9482 !HandleOverflow(Info, E, -Value.extend(Value.getBitWidth() + 1),
9483 E->getType()))
9484 return false;
Richard Smithfe800032012-01-31 04:08:20 +00009485 return Success(-Value, E);
Richard Smithf57d8cb2011-12-09 22:58:01 +00009486 }
9487 case UO_Not: {
9488 if (!Visit(E->getSubExpr()))
9489 return false;
9490 if (!Result.isInt()) return Error(E);
9491 return Success(~Result.getInt(), E);
9492 }
9493 case UO_LNot: {
Eli Friedman5a332ea2008-11-13 06:09:17 +00009494 bool bres;
Richard Smith11562c52011-10-28 17:51:58 +00009495 if (!EvaluateAsBooleanCondition(E->getSubExpr(), bres, Info))
Eli Friedman5a332ea2008-11-13 06:09:17 +00009496 return false;
Daniel Dunbar8aafc892009-02-19 09:06:44 +00009497 return Success(!bres, E);
Eli Friedman5a332ea2008-11-13 06:09:17 +00009498 }
Anders Carlsson9c181652008-07-08 14:35:21 +00009499 }
Anders Carlsson9c181652008-07-08 14:35:21 +00009500}
Mike Stump11289f42009-09-09 15:08:12 +00009501
Chris Lattner477c4be2008-07-12 01:15:53 +00009502/// HandleCast - This is used to evaluate implicit or explicit casts where the
9503/// result type is integer.
Peter Collingbournee9200682011-05-13 03:29:01 +00009504bool IntExprEvaluator::VisitCastExpr(const CastExpr *E) {
9505 const Expr *SubExpr = E->getSubExpr();
Anders Carlsson27b8c5c2008-11-30 18:14:57 +00009506 QualType DestType = E->getType();
Daniel Dunbarcf04aa12009-02-19 22:16:29 +00009507 QualType SrcType = SubExpr->getType();
Anders Carlsson27b8c5c2008-11-30 18:14:57 +00009508
Eli Friedmanc757de22011-03-25 00:43:55 +00009509 switch (E->getCastKind()) {
Eli Friedmanc757de22011-03-25 00:43:55 +00009510 case CK_BaseToDerived:
9511 case CK_DerivedToBase:
9512 case CK_UncheckedDerivedToBase:
9513 case CK_Dynamic:
9514 case CK_ToUnion:
9515 case CK_ArrayToPointerDecay:
9516 case CK_FunctionToPointerDecay:
9517 case CK_NullToPointer:
9518 case CK_NullToMemberPointer:
9519 case CK_BaseToDerivedMemberPointer:
9520 case CK_DerivedToBaseMemberPointer:
John McCallc62bb392012-02-15 01:22:51 +00009521 case CK_ReinterpretMemberPointer:
Eli Friedmanc757de22011-03-25 00:43:55 +00009522 case CK_ConstructorConversion:
9523 case CK_IntegralToPointer:
9524 case CK_ToVoid:
9525 case CK_VectorSplat:
9526 case CK_IntegralToFloating:
9527 case CK_FloatingCast:
John McCall9320b872011-09-09 05:25:32 +00009528 case CK_CPointerToObjCPointerCast:
9529 case CK_BlockPointerToObjCPointerCast:
Eli Friedmanc757de22011-03-25 00:43:55 +00009530 case CK_AnyPointerToBlockPointerCast:
9531 case CK_ObjCObjectLValueCast:
9532 case CK_FloatingRealToComplex:
9533 case CK_FloatingComplexToReal:
9534 case CK_FloatingComplexCast:
9535 case CK_FloatingComplexToIntegralComplex:
9536 case CK_IntegralRealToComplex:
9537 case CK_IntegralComplexCast:
9538 case CK_IntegralComplexToFloatingComplex:
Eli Friedman34866c72012-08-31 00:14:07 +00009539 case CK_BuiltinFnToFnPtr:
Guy Benyei1b4fb3e2013-01-20 12:31:11 +00009540 case CK_ZeroToOCLEvent:
Egor Churaev89831422016-12-23 14:55:49 +00009541 case CK_ZeroToOCLQueue:
Richard Smitha23ab512013-05-23 00:30:41 +00009542 case CK_NonAtomicToAtomic:
David Tweede1468322013-12-11 13:39:46 +00009543 case CK_AddressSpaceConversion:
Yaxun Liu0bc4b2d2016-07-28 19:26:30 +00009544 case CK_IntToOCLSampler:
Eli Friedmanc757de22011-03-25 00:43:55 +00009545 llvm_unreachable("invalid cast kind for integral value");
9546
Eli Friedman9faf2f92011-03-25 19:07:11 +00009547 case CK_BitCast:
Eli Friedmanc757de22011-03-25 00:43:55 +00009548 case CK_Dependent:
Eli Friedmanc757de22011-03-25 00:43:55 +00009549 case CK_LValueBitCast:
John McCall2d637d22011-09-10 06:18:15 +00009550 case CK_ARCProduceObject:
9551 case CK_ARCConsumeObject:
9552 case CK_ARCReclaimReturnedObject:
9553 case CK_ARCExtendBlockObject:
Douglas Gregored90df32012-02-22 05:02:47 +00009554 case CK_CopyAndAutoreleaseBlockObject:
Richard Smithf57d8cb2011-12-09 22:58:01 +00009555 return Error(E);
Eli Friedmanc757de22011-03-25 00:43:55 +00009556
Richard Smith4ef685b2012-01-17 21:17:26 +00009557 case CK_UserDefinedConversion:
Eli Friedmanc757de22011-03-25 00:43:55 +00009558 case CK_LValueToRValue:
David Chisnallfa35df62012-01-16 17:27:18 +00009559 case CK_AtomicToNonAtomic:
Eli Friedmanc757de22011-03-25 00:43:55 +00009560 case CK_NoOp:
Richard Smith11562c52011-10-28 17:51:58 +00009561 return ExprEvaluatorBaseTy::VisitCastExpr(E);
Eli Friedmanc757de22011-03-25 00:43:55 +00009562
9563 case CK_MemberPointerToBoolean:
9564 case CK_PointerToBoolean:
9565 case CK_IntegralToBoolean:
9566 case CK_FloatingToBoolean:
George Burgess IVdf1ed002016-01-13 01:52:39 +00009567 case CK_BooleanToSignedIntegral:
Eli Friedmanc757de22011-03-25 00:43:55 +00009568 case CK_FloatingComplexToBoolean:
9569 case CK_IntegralComplexToBoolean: {
Eli Friedman9a156e52008-11-12 09:44:48 +00009570 bool BoolResult;
Richard Smith11562c52011-10-28 17:51:58 +00009571 if (!EvaluateAsBooleanCondition(SubExpr, BoolResult, Info))
Eli Friedman9a156e52008-11-12 09:44:48 +00009572 return false;
George Burgess IVdf1ed002016-01-13 01:52:39 +00009573 uint64_t IntResult = BoolResult;
9574 if (BoolResult && E->getCastKind() == CK_BooleanToSignedIntegral)
9575 IntResult = (uint64_t)-1;
9576 return Success(IntResult, E);
Eli Friedman9a156e52008-11-12 09:44:48 +00009577 }
9578
Eli Friedmanc757de22011-03-25 00:43:55 +00009579 case CK_IntegralCast: {
Chris Lattner477c4be2008-07-12 01:15:53 +00009580 if (!Visit(SubExpr))
Chris Lattnere13042c2008-07-11 19:10:17 +00009581 return false;
Daniel Dunbarb6f953e2009-01-29 06:16:07 +00009582
Eli Friedman742421e2009-02-20 01:15:07 +00009583 if (!Result.isInt()) {
Eli Friedmanfd5e54d2012-01-04 23:13:47 +00009584 // Allow casts of address-of-label differences if they are no-ops
9585 // or narrowing. (The narrowing case isn't actually guaranteed to
9586 // be constant-evaluatable except in some narrow cases which are hard
9587 // to detect here. We let it through on the assumption the user knows
9588 // what they are doing.)
9589 if (Result.isAddrLabelDiff())
9590 return Info.Ctx.getTypeSize(DestType) <= Info.Ctx.getTypeSize(SrcType);
Eli Friedman742421e2009-02-20 01:15:07 +00009591 // Only allow casts of lvalues if they are lossless.
9592 return Info.Ctx.getTypeSize(DestType) == Info.Ctx.getTypeSize(SrcType);
9593 }
Daniel Dunbarca097ad2009-02-19 20:17:33 +00009594
Richard Smith911e1422012-01-30 22:27:01 +00009595 return Success(HandleIntToIntCast(Info, E, DestType, SrcType,
9596 Result.getInt()), E);
Chris Lattner477c4be2008-07-12 01:15:53 +00009597 }
Mike Stump11289f42009-09-09 15:08:12 +00009598
Eli Friedmanc757de22011-03-25 00:43:55 +00009599 case CK_PointerToIntegral: {
Richard Smith6d6ecc32011-12-12 12:46:16 +00009600 CCEDiag(E, diag::note_constexpr_invalid_cast) << 2;
9601
John McCall45d55e42010-05-07 21:00:08 +00009602 LValue LV;
Chris Lattnercdf34e72008-07-11 22:52:41 +00009603 if (!EvaluatePointer(SubExpr, LV, Info))
Chris Lattnere13042c2008-07-11 19:10:17 +00009604 return false;
Eli Friedman9a156e52008-11-12 09:44:48 +00009605
Daniel Dunbar1c8560d2009-02-19 22:24:01 +00009606 if (LV.getLValueBase()) {
9607 // Only allow based lvalue casts if they are lossless.
Richard Smith911e1422012-01-30 22:27:01 +00009608 // FIXME: Allow a larger integer size than the pointer size, and allow
9609 // narrowing back down to pointer width in subsequent integral casts.
9610 // FIXME: Check integer type's active bits, not its type size.
Daniel Dunbar1c8560d2009-02-19 22:24:01 +00009611 if (Info.Ctx.getTypeSize(DestType) != Info.Ctx.getTypeSize(SrcType))
Richard Smithf57d8cb2011-12-09 22:58:01 +00009612 return Error(E);
Eli Friedman9a156e52008-11-12 09:44:48 +00009613
Richard Smithcf74da72011-11-16 07:18:12 +00009614 LV.Designator.setInvalid();
John McCall45d55e42010-05-07 21:00:08 +00009615 LV.moveInto(Result);
Daniel Dunbar1c8560d2009-02-19 22:24:01 +00009616 return true;
9617 }
9618
Yaxun Liu402804b2016-12-15 08:09:08 +00009619 uint64_t V;
9620 if (LV.isNullPointer())
9621 V = Info.Ctx.getTargetNullPointerValue(SrcType);
9622 else
9623 V = LV.getLValueOffset().getQuantity();
9624
9625 APSInt AsInt = Info.Ctx.MakeIntValue(V, SrcType);
Richard Smith911e1422012-01-30 22:27:01 +00009626 return Success(HandleIntToIntCast(Info, E, DestType, SrcType, AsInt), E);
Anders Carlssonb5ad0212008-07-08 14:30:00 +00009627 }
Eli Friedman9a156e52008-11-12 09:44:48 +00009628
Eli Friedmanc757de22011-03-25 00:43:55 +00009629 case CK_IntegralComplexToReal: {
John McCall93d91dc2010-05-07 17:22:02 +00009630 ComplexValue C;
Eli Friedmand3a5a9d2009-04-22 19:23:09 +00009631 if (!EvaluateComplex(SubExpr, C, Info))
9632 return false;
Eli Friedmanc757de22011-03-25 00:43:55 +00009633 return Success(C.getComplexIntReal(), E);
Eli Friedmand3a5a9d2009-04-22 19:23:09 +00009634 }
Eli Friedmanc2b50172009-02-22 11:46:18 +00009635
Eli Friedmanc757de22011-03-25 00:43:55 +00009636 case CK_FloatingToIntegral: {
9637 APFloat F(0.0);
9638 if (!EvaluateFloat(SubExpr, F, Info))
9639 return false;
Chris Lattner477c4be2008-07-12 01:15:53 +00009640
Richard Smith357362d2011-12-13 06:39:58 +00009641 APSInt Value;
9642 if (!HandleFloatToIntCast(Info, E, SrcType, F, DestType, Value))
9643 return false;
9644 return Success(Value, E);
Eli Friedmanc757de22011-03-25 00:43:55 +00009645 }
9646 }
Mike Stump11289f42009-09-09 15:08:12 +00009647
Eli Friedmanc757de22011-03-25 00:43:55 +00009648 llvm_unreachable("unknown cast resulting in integral value");
Anders Carlsson9c181652008-07-08 14:35:21 +00009649}
Anders Carlssonb5ad0212008-07-08 14:30:00 +00009650
Eli Friedmana1c7b6c2009-02-28 03:59:05 +00009651bool IntExprEvaluator::VisitUnaryReal(const UnaryOperator *E) {
9652 if (E->getSubExpr()->getType()->isAnyComplexType()) {
John McCall93d91dc2010-05-07 17:22:02 +00009653 ComplexValue LV;
Richard Smithf57d8cb2011-12-09 22:58:01 +00009654 if (!EvaluateComplex(E->getSubExpr(), LV, Info))
9655 return false;
9656 if (!LV.isComplexInt())
9657 return Error(E);
Eli Friedmana1c7b6c2009-02-28 03:59:05 +00009658 return Success(LV.getComplexIntReal(), E);
9659 }
9660
9661 return Visit(E->getSubExpr());
9662}
9663
Eli Friedman4e7a2412009-02-27 04:45:43 +00009664bool IntExprEvaluator::VisitUnaryImag(const UnaryOperator *E) {
Eli Friedmana1c7b6c2009-02-28 03:59:05 +00009665 if (E->getSubExpr()->getType()->isComplexIntegerType()) {
John McCall93d91dc2010-05-07 17:22:02 +00009666 ComplexValue LV;
Richard Smithf57d8cb2011-12-09 22:58:01 +00009667 if (!EvaluateComplex(E->getSubExpr(), LV, Info))
9668 return false;
9669 if (!LV.isComplexInt())
9670 return Error(E);
Eli Friedmana1c7b6c2009-02-28 03:59:05 +00009671 return Success(LV.getComplexIntImag(), E);
9672 }
9673
Richard Smith4a678122011-10-24 18:44:57 +00009674 VisitIgnoredValue(E->getSubExpr());
Eli Friedman4e7a2412009-02-27 04:45:43 +00009675 return Success(0, E);
9676}
9677
Douglas Gregor820ba7b2011-01-04 17:33:58 +00009678bool IntExprEvaluator::VisitSizeOfPackExpr(const SizeOfPackExpr *E) {
9679 return Success(E->getPackLength(), E);
9680}
9681
Sebastian Redl5f0180d2010-09-10 20:55:47 +00009682bool IntExprEvaluator::VisitCXXNoexceptExpr(const CXXNoexceptExpr *E) {
9683 return Success(E->getValue(), E);
9684}
9685
Leonard Chandb01c3a2018-06-20 17:19:40 +00009686bool FixedPointExprEvaluator::VisitUnaryOperator(const UnaryOperator *E) {
9687 switch (E->getOpcode()) {
9688 default:
9689 // Invalid unary operators
9690 return Error(E);
9691 case UO_Plus:
9692 // The result is just the value.
9693 return Visit(E->getSubExpr());
9694 case UO_Minus: {
9695 if (!Visit(E->getSubExpr())) return false;
9696 if (!Result.isInt()) return Error(E);
9697 const APSInt &Value = Result.getInt();
9698 if (Value.isSigned() && Value.isMinSignedValue() && E->canOverflow()) {
9699 SmallString<64> S;
9700 FixedPointValueToString(S, Value,
9701 Info.Ctx.getTypeInfo(E->getType()).Width,
9702 /*Radix=*/10);
9703 Info.CCEDiag(E, diag::note_constexpr_overflow) << S << E->getType();
9704 if (Info.noteUndefinedBehavior()) return false;
9705 }
9706 return Success(-Value, E);
9707 }
9708 case UO_LNot: {
9709 bool bres;
9710 if (!EvaluateAsBooleanCondition(E->getSubExpr(), bres, Info))
9711 return false;
9712 return Success(!bres, E);
9713 }
9714 }
9715}
9716
Chris Lattner05706e882008-07-11 18:11:29 +00009717//===----------------------------------------------------------------------===//
Eli Friedman24c01542008-08-22 00:06:13 +00009718// Float Evaluation
9719//===----------------------------------------------------------------------===//
9720
9721namespace {
Benjamin Kramer26222b62009-11-28 19:03:38 +00009722class FloatExprEvaluator
Aaron Ballman68af21c2014-01-03 19:26:43 +00009723 : public ExprEvaluatorBase<FloatExprEvaluator> {
Eli Friedman24c01542008-08-22 00:06:13 +00009724 APFloat &Result;
9725public:
9726 FloatExprEvaluator(EvalInfo &info, APFloat &result)
Peter Collingbournee9200682011-05-13 03:29:01 +00009727 : ExprEvaluatorBaseTy(info), Result(result) {}
Eli Friedman24c01542008-08-22 00:06:13 +00009728
Richard Smith2e312c82012-03-03 22:46:17 +00009729 bool Success(const APValue &V, const Expr *e) {
Peter Collingbournee9200682011-05-13 03:29:01 +00009730 Result = V.getFloat();
9731 return true;
9732 }
Eli Friedman24c01542008-08-22 00:06:13 +00009733
Richard Smithfddd3842011-12-30 21:15:51 +00009734 bool ZeroInitialization(const Expr *E) {
Richard Smith4ce706a2011-10-11 21:43:33 +00009735 Result = APFloat::getZero(Info.Ctx.getFloatTypeSemantics(E->getType()));
9736 return true;
9737 }
9738
Chris Lattner4deaa4e2008-10-06 05:28:25 +00009739 bool VisitCallExpr(const CallExpr *E);
Eli Friedman24c01542008-08-22 00:06:13 +00009740
Daniel Dunbarc3d79cf2008-10-16 03:51:50 +00009741 bool VisitUnaryOperator(const UnaryOperator *E);
Eli Friedman24c01542008-08-22 00:06:13 +00009742 bool VisitBinaryOperator(const BinaryOperator *E);
9743 bool VisitFloatingLiteral(const FloatingLiteral *E);
Peter Collingbournee9200682011-05-13 03:29:01 +00009744 bool VisitCastExpr(const CastExpr *E);
Eli Friedmanc2b50172009-02-22 11:46:18 +00009745
John McCallb1fb0d32010-05-07 22:08:54 +00009746 bool VisitUnaryReal(const UnaryOperator *E);
9747 bool VisitUnaryImag(const UnaryOperator *E);
Eli Friedman449fe542009-03-23 04:56:01 +00009748
Richard Smithfddd3842011-12-30 21:15:51 +00009749 // FIXME: Missing: array subscript of vector, member of vector
Eli Friedman24c01542008-08-22 00:06:13 +00009750};
9751} // end anonymous namespace
9752
9753static bool EvaluateFloat(const Expr* E, APFloat& Result, EvalInfo &Info) {
Richard Smith11562c52011-10-28 17:51:58 +00009754 assert(E->isRValue() && E->getType()->isRealFloatingType());
Peter Collingbournee9200682011-05-13 03:29:01 +00009755 return FloatExprEvaluator(Info, Result).Visit(E);
Eli Friedman24c01542008-08-22 00:06:13 +00009756}
9757
Jay Foad39c79802011-01-12 09:06:06 +00009758static bool TryEvaluateBuiltinNaN(const ASTContext &Context,
John McCall16291492010-02-28 13:00:19 +00009759 QualType ResultTy,
9760 const Expr *Arg,
9761 bool SNaN,
9762 llvm::APFloat &Result) {
9763 const StringLiteral *S = dyn_cast<StringLiteral>(Arg->IgnoreParenCasts());
9764 if (!S) return false;
9765
9766 const llvm::fltSemantics &Sem = Context.getFloatTypeSemantics(ResultTy);
9767
9768 llvm::APInt fill;
9769
9770 // Treat empty strings as if they were zero.
9771 if (S->getString().empty())
9772 fill = llvm::APInt(32, 0);
9773 else if (S->getString().getAsInteger(0, fill))
9774 return false;
9775
Petar Jovanovicd55ae6b2015-02-26 18:19:22 +00009776 if (Context.getTargetInfo().isNan2008()) {
9777 if (SNaN)
9778 Result = llvm::APFloat::getSNaN(Sem, false, &fill);
9779 else
9780 Result = llvm::APFloat::getQNaN(Sem, false, &fill);
9781 } else {
9782 // Prior to IEEE 754-2008, architectures were allowed to choose whether
9783 // the first bit of their significand was set for qNaN or sNaN. MIPS chose
9784 // a different encoding to what became a standard in 2008, and for pre-
9785 // 2008 revisions, MIPS interpreted sNaN-2008 as qNan and qNaN-2008 as
9786 // sNaN. This is now known as "legacy NaN" encoding.
9787 if (SNaN)
9788 Result = llvm::APFloat::getQNaN(Sem, false, &fill);
9789 else
9790 Result = llvm::APFloat::getSNaN(Sem, false, &fill);
9791 }
9792
John McCall16291492010-02-28 13:00:19 +00009793 return true;
9794}
9795
Chris Lattner4deaa4e2008-10-06 05:28:25 +00009796bool FloatExprEvaluator::VisitCallExpr(const CallExpr *E) {
Alp Tokera724cff2013-12-28 21:59:02 +00009797 switch (E->getBuiltinCallee()) {
Peter Collingbournee9200682011-05-13 03:29:01 +00009798 default:
9799 return ExprEvaluatorBaseTy::VisitCallExpr(E);
9800
Chris Lattner4deaa4e2008-10-06 05:28:25 +00009801 case Builtin::BI__builtin_huge_val:
9802 case Builtin::BI__builtin_huge_valf:
9803 case Builtin::BI__builtin_huge_vall:
Benjamin Kramerdfecbe92018-01-06 21:49:54 +00009804 case Builtin::BI__builtin_huge_valf128:
Chris Lattner4deaa4e2008-10-06 05:28:25 +00009805 case Builtin::BI__builtin_inf:
9806 case Builtin::BI__builtin_inff:
Benjamin Kramerdfecbe92018-01-06 21:49:54 +00009807 case Builtin::BI__builtin_infl:
9808 case Builtin::BI__builtin_inff128: {
Daniel Dunbar1be9f882008-10-14 05:41:12 +00009809 const llvm::fltSemantics &Sem =
9810 Info.Ctx.getFloatTypeSemantics(E->getType());
Chris Lattner37346e02008-10-06 05:53:16 +00009811 Result = llvm::APFloat::getInf(Sem);
9812 return true;
Daniel Dunbar1be9f882008-10-14 05:41:12 +00009813 }
Mike Stump11289f42009-09-09 15:08:12 +00009814
John McCall16291492010-02-28 13:00:19 +00009815 case Builtin::BI__builtin_nans:
9816 case Builtin::BI__builtin_nansf:
9817 case Builtin::BI__builtin_nansl:
Benjamin Kramerdfecbe92018-01-06 21:49:54 +00009818 case Builtin::BI__builtin_nansf128:
Richard Smithf57d8cb2011-12-09 22:58:01 +00009819 if (!TryEvaluateBuiltinNaN(Info.Ctx, E->getType(), E->getArg(0),
9820 true, Result))
9821 return Error(E);
9822 return true;
John McCall16291492010-02-28 13:00:19 +00009823
Chris Lattner0b7282e2008-10-06 06:31:58 +00009824 case Builtin::BI__builtin_nan:
9825 case Builtin::BI__builtin_nanf:
9826 case Builtin::BI__builtin_nanl:
Benjamin Kramerdfecbe92018-01-06 21:49:54 +00009827 case Builtin::BI__builtin_nanf128:
Mike Stump2346cd22009-05-30 03:56:50 +00009828 // If this is __builtin_nan() turn this into a nan, otherwise we
Chris Lattner0b7282e2008-10-06 06:31:58 +00009829 // can't constant fold it.
Richard Smithf57d8cb2011-12-09 22:58:01 +00009830 if (!TryEvaluateBuiltinNaN(Info.Ctx, E->getType(), E->getArg(0),
9831 false, Result))
9832 return Error(E);
9833 return true;
Daniel Dunbarc3d79cf2008-10-16 03:51:50 +00009834
9835 case Builtin::BI__builtin_fabs:
9836 case Builtin::BI__builtin_fabsf:
9837 case Builtin::BI__builtin_fabsl:
Benjamin Kramerdfecbe92018-01-06 21:49:54 +00009838 case Builtin::BI__builtin_fabsf128:
Daniel Dunbarc3d79cf2008-10-16 03:51:50 +00009839 if (!EvaluateFloat(E->getArg(0), Result, Info))
9840 return false;
Mike Stump11289f42009-09-09 15:08:12 +00009841
Daniel Dunbarc3d79cf2008-10-16 03:51:50 +00009842 if (Result.isNegative())
9843 Result.changeSign();
9844 return true;
9845
Richard Smith8889a3d2013-06-13 06:26:32 +00009846 // FIXME: Builtin::BI__builtin_powi
9847 // FIXME: Builtin::BI__builtin_powif
9848 // FIXME: Builtin::BI__builtin_powil
9849
Mike Stump11289f42009-09-09 15:08:12 +00009850 case Builtin::BI__builtin_copysign:
9851 case Builtin::BI__builtin_copysignf:
Benjamin Kramerdfecbe92018-01-06 21:49:54 +00009852 case Builtin::BI__builtin_copysignl:
9853 case Builtin::BI__builtin_copysignf128: {
Daniel Dunbarc3d79cf2008-10-16 03:51:50 +00009854 APFloat RHS(0.);
9855 if (!EvaluateFloat(E->getArg(0), Result, Info) ||
9856 !EvaluateFloat(E->getArg(1), RHS, Info))
9857 return false;
9858 Result.copySign(RHS);
9859 return true;
9860 }
Chris Lattner4deaa4e2008-10-06 05:28:25 +00009861 }
9862}
9863
John McCallb1fb0d32010-05-07 22:08:54 +00009864bool FloatExprEvaluator::VisitUnaryReal(const UnaryOperator *E) {
Eli Friedman95719532010-08-14 20:52:13 +00009865 if (E->getSubExpr()->getType()->isAnyComplexType()) {
9866 ComplexValue CV;
9867 if (!EvaluateComplex(E->getSubExpr(), CV, Info))
9868 return false;
9869 Result = CV.FloatReal;
9870 return true;
9871 }
9872
9873 return Visit(E->getSubExpr());
John McCallb1fb0d32010-05-07 22:08:54 +00009874}
9875
9876bool FloatExprEvaluator::VisitUnaryImag(const UnaryOperator *E) {
Eli Friedman95719532010-08-14 20:52:13 +00009877 if (E->getSubExpr()->getType()->isAnyComplexType()) {
9878 ComplexValue CV;
9879 if (!EvaluateComplex(E->getSubExpr(), CV, Info))
9880 return false;
9881 Result = CV.FloatImag;
9882 return true;
9883 }
9884
Richard Smith4a678122011-10-24 18:44:57 +00009885 VisitIgnoredValue(E->getSubExpr());
Eli Friedman95719532010-08-14 20:52:13 +00009886 const llvm::fltSemantics &Sem = Info.Ctx.getFloatTypeSemantics(E->getType());
9887 Result = llvm::APFloat::getZero(Sem);
John McCallb1fb0d32010-05-07 22:08:54 +00009888 return true;
9889}
9890
Daniel Dunbarc3d79cf2008-10-16 03:51:50 +00009891bool FloatExprEvaluator::VisitUnaryOperator(const UnaryOperator *E) {
Daniel Dunbarc3d79cf2008-10-16 03:51:50 +00009892 switch (E->getOpcode()) {
Richard Smithf57d8cb2011-12-09 22:58:01 +00009893 default: return Error(E);
John McCalle3027922010-08-25 11:45:40 +00009894 case UO_Plus:
Richard Smith390cd492011-10-30 23:17:09 +00009895 return EvaluateFloat(E->getSubExpr(), Result, Info);
John McCalle3027922010-08-25 11:45:40 +00009896 case UO_Minus:
Richard Smith390cd492011-10-30 23:17:09 +00009897 if (!EvaluateFloat(E->getSubExpr(), Result, Info))
9898 return false;
Daniel Dunbarc3d79cf2008-10-16 03:51:50 +00009899 Result.changeSign();
9900 return true;
9901 }
9902}
Chris Lattner4deaa4e2008-10-06 05:28:25 +00009903
Eli Friedman24c01542008-08-22 00:06:13 +00009904bool FloatExprEvaluator::VisitBinaryOperator(const BinaryOperator *E) {
Richard Smith027bf112011-11-17 22:56:20 +00009905 if (E->isPtrMemOp() || E->isAssignmentOp() || E->getOpcode() == BO_Comma)
9906 return ExprEvaluatorBaseTy::VisitBinaryOperator(E);
Eli Friedman141fbf32009-11-16 04:25:37 +00009907
Daniel Dunbarc3d79cf2008-10-16 03:51:50 +00009908 APFloat RHS(0.0);
Richard Smith253c2a32012-01-27 01:14:48 +00009909 bool LHSOK = EvaluateFloat(E->getLHS(), Result, Info);
George Burgess IVa145e252016-05-25 22:38:36 +00009910 if (!LHSOK && !Info.noteFailure())
Eli Friedman24c01542008-08-22 00:06:13 +00009911 return false;
Richard Smith861b5b52013-05-07 23:34:45 +00009912 return EvaluateFloat(E->getRHS(), RHS, Info) && LHSOK &&
9913 handleFloatFloatBinOp(Info, E, Result, E->getOpcode(), RHS);
Eli Friedman24c01542008-08-22 00:06:13 +00009914}
9915
9916bool FloatExprEvaluator::VisitFloatingLiteral(const FloatingLiteral *E) {
9917 Result = E->getValue();
9918 return true;
9919}
9920
Peter Collingbournee9200682011-05-13 03:29:01 +00009921bool FloatExprEvaluator::VisitCastExpr(const CastExpr *E) {
9922 const Expr* SubExpr = E->getSubExpr();
Mike Stump11289f42009-09-09 15:08:12 +00009923
Eli Friedman8bfbe3a2011-03-25 00:54:52 +00009924 switch (E->getCastKind()) {
9925 default:
Richard Smith11562c52011-10-28 17:51:58 +00009926 return ExprEvaluatorBaseTy::VisitCastExpr(E);
Eli Friedman8bfbe3a2011-03-25 00:54:52 +00009927
9928 case CK_IntegralToFloating: {
Eli Friedman9a156e52008-11-12 09:44:48 +00009929 APSInt IntResult;
Richard Smith357362d2011-12-13 06:39:58 +00009930 return EvaluateInteger(SubExpr, IntResult, Info) &&
9931 HandleIntToFloatCast(Info, E, SubExpr->getType(), IntResult,
9932 E->getType(), Result);
Eli Friedman9a156e52008-11-12 09:44:48 +00009933 }
Eli Friedman8bfbe3a2011-03-25 00:54:52 +00009934
9935 case CK_FloatingCast: {
Eli Friedman9a156e52008-11-12 09:44:48 +00009936 if (!Visit(SubExpr))
9937 return false;
Richard Smith357362d2011-12-13 06:39:58 +00009938 return HandleFloatToFloatCast(Info, E, SubExpr->getType(), E->getType(),
9939 Result);
Eli Friedman9a156e52008-11-12 09:44:48 +00009940 }
John McCalld7646252010-11-14 08:17:51 +00009941
Eli Friedman8bfbe3a2011-03-25 00:54:52 +00009942 case CK_FloatingComplexToReal: {
John McCalld7646252010-11-14 08:17:51 +00009943 ComplexValue V;
9944 if (!EvaluateComplex(SubExpr, V, Info))
9945 return false;
9946 Result = V.getComplexFloatReal();
9947 return true;
9948 }
Eli Friedman8bfbe3a2011-03-25 00:54:52 +00009949 }
Eli Friedman9a156e52008-11-12 09:44:48 +00009950}
9951
Eli Friedman24c01542008-08-22 00:06:13 +00009952//===----------------------------------------------------------------------===//
Daniel Dunbarf50e60b2009-01-28 22:24:07 +00009953// Complex Evaluation (for float and integer)
Anders Carlsson537969c2008-11-16 20:27:53 +00009954//===----------------------------------------------------------------------===//
9955
9956namespace {
Benjamin Kramer26222b62009-11-28 19:03:38 +00009957class ComplexExprEvaluator
Aaron Ballman68af21c2014-01-03 19:26:43 +00009958 : public ExprEvaluatorBase<ComplexExprEvaluator> {
John McCall93d91dc2010-05-07 17:22:02 +00009959 ComplexValue &Result;
Mike Stump11289f42009-09-09 15:08:12 +00009960
Anders Carlsson537969c2008-11-16 20:27:53 +00009961public:
John McCall93d91dc2010-05-07 17:22:02 +00009962 ComplexExprEvaluator(EvalInfo &info, ComplexValue &Result)
Peter Collingbournee9200682011-05-13 03:29:01 +00009963 : ExprEvaluatorBaseTy(info), Result(Result) {}
9964
Richard Smith2e312c82012-03-03 22:46:17 +00009965 bool Success(const APValue &V, const Expr *e) {
Peter Collingbournee9200682011-05-13 03:29:01 +00009966 Result.setFrom(V);
9967 return true;
9968 }
Mike Stump11289f42009-09-09 15:08:12 +00009969
Eli Friedmanc4b251d2012-01-10 04:58:17 +00009970 bool ZeroInitialization(const Expr *E);
9971
Anders Carlsson537969c2008-11-16 20:27:53 +00009972 //===--------------------------------------------------------------------===//
9973 // Visitor Methods
9974 //===--------------------------------------------------------------------===//
9975
Peter Collingbournee9200682011-05-13 03:29:01 +00009976 bool VisitImaginaryLiteral(const ImaginaryLiteral *E);
Peter Collingbournee9200682011-05-13 03:29:01 +00009977 bool VisitCastExpr(const CastExpr *E);
John McCall93d91dc2010-05-07 17:22:02 +00009978 bool VisitBinaryOperator(const BinaryOperator *E);
Abramo Bagnara9e0e7092010-12-11 16:05:48 +00009979 bool VisitUnaryOperator(const UnaryOperator *E);
Eli Friedmanc4b251d2012-01-10 04:58:17 +00009980 bool VisitInitListExpr(const InitListExpr *E);
Anders Carlsson537969c2008-11-16 20:27:53 +00009981};
9982} // end anonymous namespace
9983
John McCall93d91dc2010-05-07 17:22:02 +00009984static bool EvaluateComplex(const Expr *E, ComplexValue &Result,
9985 EvalInfo &Info) {
Richard Smith11562c52011-10-28 17:51:58 +00009986 assert(E->isRValue() && E->getType()->isAnyComplexType());
Peter Collingbournee9200682011-05-13 03:29:01 +00009987 return ComplexExprEvaluator(Info, Result).Visit(E);
Anders Carlsson537969c2008-11-16 20:27:53 +00009988}
9989
Eli Friedmanc4b251d2012-01-10 04:58:17 +00009990bool ComplexExprEvaluator::ZeroInitialization(const Expr *E) {
Ted Kremenek28831752012-08-23 20:46:57 +00009991 QualType ElemTy = E->getType()->castAs<ComplexType>()->getElementType();
Eli Friedmanc4b251d2012-01-10 04:58:17 +00009992 if (ElemTy->isRealFloatingType()) {
9993 Result.makeComplexFloat();
9994 APFloat Zero = APFloat::getZero(Info.Ctx.getFloatTypeSemantics(ElemTy));
9995 Result.FloatReal = Zero;
9996 Result.FloatImag = Zero;
9997 } else {
9998 Result.makeComplexInt();
9999 APSInt Zero = Info.Ctx.MakeIntValue(0, ElemTy);
10000 Result.IntReal = Zero;
10001 Result.IntImag = Zero;
10002 }
10003 return true;
10004}
10005
Peter Collingbournee9200682011-05-13 03:29:01 +000010006bool ComplexExprEvaluator::VisitImaginaryLiteral(const ImaginaryLiteral *E) {
10007 const Expr* SubExpr = E->getSubExpr();
Eli Friedmanc3e9df32010-08-16 23:27:44 +000010008
10009 if (SubExpr->getType()->isRealFloatingType()) {
10010 Result.makeComplexFloat();
10011 APFloat &Imag = Result.FloatImag;
10012 if (!EvaluateFloat(SubExpr, Imag, Info))
10013 return false;
10014
10015 Result.FloatReal = APFloat(Imag.getSemantics());
10016 return true;
10017 } else {
10018 assert(SubExpr->getType()->isIntegerType() &&
10019 "Unexpected imaginary literal.");
10020
10021 Result.makeComplexInt();
10022 APSInt &Imag = Result.IntImag;
10023 if (!EvaluateInteger(SubExpr, Imag, Info))
10024 return false;
10025
10026 Result.IntReal = APSInt(Imag.getBitWidth(), !Imag.isSigned());
10027 return true;
10028 }
10029}
10030
Peter Collingbournee9200682011-05-13 03:29:01 +000010031bool ComplexExprEvaluator::VisitCastExpr(const CastExpr *E) {
Eli Friedmanc3e9df32010-08-16 23:27:44 +000010032
John McCallfcef3cf2010-12-14 17:51:41 +000010033 switch (E->getCastKind()) {
10034 case CK_BitCast:
John McCallfcef3cf2010-12-14 17:51:41 +000010035 case CK_BaseToDerived:
10036 case CK_DerivedToBase:
10037 case CK_UncheckedDerivedToBase:
10038 case CK_Dynamic:
10039 case CK_ToUnion:
10040 case CK_ArrayToPointerDecay:
10041 case CK_FunctionToPointerDecay:
10042 case CK_NullToPointer:
10043 case CK_NullToMemberPointer:
10044 case CK_BaseToDerivedMemberPointer:
10045 case CK_DerivedToBaseMemberPointer:
10046 case CK_MemberPointerToBoolean:
John McCallc62bb392012-02-15 01:22:51 +000010047 case CK_ReinterpretMemberPointer:
John McCallfcef3cf2010-12-14 17:51:41 +000010048 case CK_ConstructorConversion:
10049 case CK_IntegralToPointer:
10050 case CK_PointerToIntegral:
10051 case CK_PointerToBoolean:
10052 case CK_ToVoid:
10053 case CK_VectorSplat:
10054 case CK_IntegralCast:
George Burgess IVdf1ed002016-01-13 01:52:39 +000010055 case CK_BooleanToSignedIntegral:
John McCallfcef3cf2010-12-14 17:51:41 +000010056 case CK_IntegralToBoolean:
10057 case CK_IntegralToFloating:
10058 case CK_FloatingToIntegral:
10059 case CK_FloatingToBoolean:
10060 case CK_FloatingCast:
John McCall9320b872011-09-09 05:25:32 +000010061 case CK_CPointerToObjCPointerCast:
10062 case CK_BlockPointerToObjCPointerCast:
John McCallfcef3cf2010-12-14 17:51:41 +000010063 case CK_AnyPointerToBlockPointerCast:
10064 case CK_ObjCObjectLValueCast:
10065 case CK_FloatingComplexToReal:
10066 case CK_FloatingComplexToBoolean:
10067 case CK_IntegralComplexToReal:
10068 case CK_IntegralComplexToBoolean:
John McCall2d637d22011-09-10 06:18:15 +000010069 case CK_ARCProduceObject:
10070 case CK_ARCConsumeObject:
10071 case CK_ARCReclaimReturnedObject:
10072 case CK_ARCExtendBlockObject:
Douglas Gregored90df32012-02-22 05:02:47 +000010073 case CK_CopyAndAutoreleaseBlockObject:
Eli Friedman34866c72012-08-31 00:14:07 +000010074 case CK_BuiltinFnToFnPtr:
Guy Benyei1b4fb3e2013-01-20 12:31:11 +000010075 case CK_ZeroToOCLEvent:
Egor Churaev89831422016-12-23 14:55:49 +000010076 case CK_ZeroToOCLQueue:
Richard Smitha23ab512013-05-23 00:30:41 +000010077 case CK_NonAtomicToAtomic:
David Tweede1468322013-12-11 13:39:46 +000010078 case CK_AddressSpaceConversion:
Yaxun Liu0bc4b2d2016-07-28 19:26:30 +000010079 case CK_IntToOCLSampler:
John McCallfcef3cf2010-12-14 17:51:41 +000010080 llvm_unreachable("invalid cast kind for complex value");
John McCallc5e62b42010-11-13 09:02:35 +000010081
John McCallfcef3cf2010-12-14 17:51:41 +000010082 case CK_LValueToRValue:
David Chisnallfa35df62012-01-16 17:27:18 +000010083 case CK_AtomicToNonAtomic:
John McCallfcef3cf2010-12-14 17:51:41 +000010084 case CK_NoOp:
Richard Smith11562c52011-10-28 17:51:58 +000010085 return ExprEvaluatorBaseTy::VisitCastExpr(E);
John McCallfcef3cf2010-12-14 17:51:41 +000010086
10087 case CK_Dependent:
Eli Friedmanc757de22011-03-25 00:43:55 +000010088 case CK_LValueBitCast:
John McCallfcef3cf2010-12-14 17:51:41 +000010089 case CK_UserDefinedConversion:
Richard Smithf57d8cb2011-12-09 22:58:01 +000010090 return Error(E);
John McCallfcef3cf2010-12-14 17:51:41 +000010091
10092 case CK_FloatingRealToComplex: {
Eli Friedmanc3e9df32010-08-16 23:27:44 +000010093 APFloat &Real = Result.FloatReal;
John McCallfcef3cf2010-12-14 17:51:41 +000010094 if (!EvaluateFloat(E->getSubExpr(), Real, Info))
Eli Friedmanc3e9df32010-08-16 23:27:44 +000010095 return false;
10096
John McCallfcef3cf2010-12-14 17:51:41 +000010097 Result.makeComplexFloat();
10098 Result.FloatImag = APFloat(Real.getSemantics());
10099 return true;
Eli Friedmanc3e9df32010-08-16 23:27:44 +000010100 }
10101
John McCallfcef3cf2010-12-14 17:51:41 +000010102 case CK_FloatingComplexCast: {
10103 if (!Visit(E->getSubExpr()))
10104 return false;
10105
10106 QualType To = E->getType()->getAs<ComplexType>()->getElementType();
10107 QualType From
10108 = E->getSubExpr()->getType()->getAs<ComplexType>()->getElementType();
10109
Richard Smith357362d2011-12-13 06:39:58 +000010110 return HandleFloatToFloatCast(Info, E, From, To, Result.FloatReal) &&
10111 HandleFloatToFloatCast(Info, E, From, To, Result.FloatImag);
John McCallfcef3cf2010-12-14 17:51:41 +000010112 }
10113
10114 case CK_FloatingComplexToIntegralComplex: {
10115 if (!Visit(E->getSubExpr()))
10116 return false;
10117
10118 QualType To = E->getType()->getAs<ComplexType>()->getElementType();
10119 QualType From
10120 = E->getSubExpr()->getType()->getAs<ComplexType>()->getElementType();
10121 Result.makeComplexInt();
Richard Smith357362d2011-12-13 06:39:58 +000010122 return HandleFloatToIntCast(Info, E, From, Result.FloatReal,
10123 To, Result.IntReal) &&
10124 HandleFloatToIntCast(Info, E, From, Result.FloatImag,
10125 To, Result.IntImag);
John McCallfcef3cf2010-12-14 17:51:41 +000010126 }
10127
10128 case CK_IntegralRealToComplex: {
10129 APSInt &Real = Result.IntReal;
10130 if (!EvaluateInteger(E->getSubExpr(), Real, Info))
10131 return false;
10132
10133 Result.makeComplexInt();
10134 Result.IntImag = APSInt(Real.getBitWidth(), !Real.isSigned());
10135 return true;
10136 }
10137
10138 case CK_IntegralComplexCast: {
10139 if (!Visit(E->getSubExpr()))
10140 return false;
10141
10142 QualType To = E->getType()->getAs<ComplexType>()->getElementType();
10143 QualType From
10144 = E->getSubExpr()->getType()->getAs<ComplexType>()->getElementType();
10145
Richard Smith911e1422012-01-30 22:27:01 +000010146 Result.IntReal = HandleIntToIntCast(Info, E, To, From, Result.IntReal);
10147 Result.IntImag = HandleIntToIntCast(Info, E, To, From, Result.IntImag);
John McCallfcef3cf2010-12-14 17:51:41 +000010148 return true;
10149 }
10150
10151 case CK_IntegralComplexToFloatingComplex: {
10152 if (!Visit(E->getSubExpr()))
10153 return false;
10154
Ted Kremenek28831752012-08-23 20:46:57 +000010155 QualType To = E->getType()->castAs<ComplexType>()->getElementType();
John McCallfcef3cf2010-12-14 17:51:41 +000010156 QualType From
Ted Kremenek28831752012-08-23 20:46:57 +000010157 = E->getSubExpr()->getType()->castAs<ComplexType>()->getElementType();
John McCallfcef3cf2010-12-14 17:51:41 +000010158 Result.makeComplexFloat();
Richard Smith357362d2011-12-13 06:39:58 +000010159 return HandleIntToFloatCast(Info, E, From, Result.IntReal,
10160 To, Result.FloatReal) &&
10161 HandleIntToFloatCast(Info, E, From, Result.IntImag,
10162 To, Result.FloatImag);
John McCallfcef3cf2010-12-14 17:51:41 +000010163 }
10164 }
10165
10166 llvm_unreachable("unknown cast resulting in complex value");
Eli Friedmanc3e9df32010-08-16 23:27:44 +000010167}
10168
John McCall93d91dc2010-05-07 17:22:02 +000010169bool ComplexExprEvaluator::VisitBinaryOperator(const BinaryOperator *E) {
Richard Smith027bf112011-11-17 22:56:20 +000010170 if (E->isPtrMemOp() || E->isAssignmentOp() || E->getOpcode() == BO_Comma)
Richard Smith10f4d062011-11-16 17:22:48 +000010171 return ExprEvaluatorBaseTy::VisitBinaryOperator(E);
10172
Chandler Carrutha216cad2014-10-11 00:57:18 +000010173 // Track whether the LHS or RHS is real at the type system level. When this is
10174 // the case we can simplify our evaluation strategy.
10175 bool LHSReal = false, RHSReal = false;
10176
10177 bool LHSOK;
10178 if (E->getLHS()->getType()->isRealFloatingType()) {
10179 LHSReal = true;
10180 APFloat &Real = Result.FloatReal;
10181 LHSOK = EvaluateFloat(E->getLHS(), Real, Info);
10182 if (LHSOK) {
10183 Result.makeComplexFloat();
10184 Result.FloatImag = APFloat(Real.getSemantics());
10185 }
10186 } else {
10187 LHSOK = Visit(E->getLHS());
10188 }
George Burgess IVa145e252016-05-25 22:38:36 +000010189 if (!LHSOK && !Info.noteFailure())
John McCall93d91dc2010-05-07 17:22:02 +000010190 return false;
Mike Stump11289f42009-09-09 15:08:12 +000010191
John McCall93d91dc2010-05-07 17:22:02 +000010192 ComplexValue RHS;
Chandler Carrutha216cad2014-10-11 00:57:18 +000010193 if (E->getRHS()->getType()->isRealFloatingType()) {
10194 RHSReal = true;
10195 APFloat &Real = RHS.FloatReal;
10196 if (!EvaluateFloat(E->getRHS(), Real, Info) || !LHSOK)
10197 return false;
10198 RHS.makeComplexFloat();
10199 RHS.FloatImag = APFloat(Real.getSemantics());
10200 } else if (!EvaluateComplex(E->getRHS(), RHS, Info) || !LHSOK)
John McCall93d91dc2010-05-07 17:22:02 +000010201 return false;
Daniel Dunbarf50e60b2009-01-28 22:24:07 +000010202
Chandler Carrutha216cad2014-10-11 00:57:18 +000010203 assert(!(LHSReal && RHSReal) &&
10204 "Cannot have both operands of a complex operation be real.");
Anders Carlsson9ddf7be2008-11-16 21:51:21 +000010205 switch (E->getOpcode()) {
Richard Smithf57d8cb2011-12-09 22:58:01 +000010206 default: return Error(E);
John McCalle3027922010-08-25 11:45:40 +000010207 case BO_Add:
Daniel Dunbarf50e60b2009-01-28 22:24:07 +000010208 if (Result.isComplexFloat()) {
10209 Result.getComplexFloatReal().add(RHS.getComplexFloatReal(),
10210 APFloat::rmNearestTiesToEven);
Chandler Carrutha216cad2014-10-11 00:57:18 +000010211 if (LHSReal)
10212 Result.getComplexFloatImag() = RHS.getComplexFloatImag();
10213 else if (!RHSReal)
10214 Result.getComplexFloatImag().add(RHS.getComplexFloatImag(),
10215 APFloat::rmNearestTiesToEven);
Daniel Dunbarf50e60b2009-01-28 22:24:07 +000010216 } else {
10217 Result.getComplexIntReal() += RHS.getComplexIntReal();
10218 Result.getComplexIntImag() += RHS.getComplexIntImag();
10219 }
Daniel Dunbar0aa26062009-01-29 01:32:56 +000010220 break;
John McCalle3027922010-08-25 11:45:40 +000010221 case BO_Sub:
Daniel Dunbarf50e60b2009-01-28 22:24:07 +000010222 if (Result.isComplexFloat()) {
10223 Result.getComplexFloatReal().subtract(RHS.getComplexFloatReal(),
10224 APFloat::rmNearestTiesToEven);
Chandler Carrutha216cad2014-10-11 00:57:18 +000010225 if (LHSReal) {
10226 Result.getComplexFloatImag() = RHS.getComplexFloatImag();
10227 Result.getComplexFloatImag().changeSign();
10228 } else if (!RHSReal) {
10229 Result.getComplexFloatImag().subtract(RHS.getComplexFloatImag(),
10230 APFloat::rmNearestTiesToEven);
10231 }
Daniel Dunbarf50e60b2009-01-28 22:24:07 +000010232 } else {
10233 Result.getComplexIntReal() -= RHS.getComplexIntReal();
10234 Result.getComplexIntImag() -= RHS.getComplexIntImag();
10235 }
Daniel Dunbar0aa26062009-01-29 01:32:56 +000010236 break;
John McCalle3027922010-08-25 11:45:40 +000010237 case BO_Mul:
Daniel Dunbar0aa26062009-01-29 01:32:56 +000010238 if (Result.isComplexFloat()) {
Chandler Carrutha216cad2014-10-11 00:57:18 +000010239 // This is an implementation of complex multiplication according to the
Hiroshi Inoue0c2734f2017-07-05 05:37:45 +000010240 // constraints laid out in C11 Annex G. The implemention uses the
Chandler Carrutha216cad2014-10-11 00:57:18 +000010241 // following naming scheme:
10242 // (a + ib) * (c + id)
John McCall93d91dc2010-05-07 17:22:02 +000010243 ComplexValue LHS = Result;
Chandler Carrutha216cad2014-10-11 00:57:18 +000010244 APFloat &A = LHS.getComplexFloatReal();
10245 APFloat &B = LHS.getComplexFloatImag();
10246 APFloat &C = RHS.getComplexFloatReal();
10247 APFloat &D = RHS.getComplexFloatImag();
10248 APFloat &ResR = Result.getComplexFloatReal();
10249 APFloat &ResI = Result.getComplexFloatImag();
10250 if (LHSReal) {
10251 assert(!RHSReal && "Cannot have two real operands for a complex op!");
10252 ResR = A * C;
10253 ResI = A * D;
10254 } else if (RHSReal) {
10255 ResR = C * A;
10256 ResI = C * B;
10257 } else {
10258 // In the fully general case, we need to handle NaNs and infinities
10259 // robustly.
10260 APFloat AC = A * C;
10261 APFloat BD = B * D;
10262 APFloat AD = A * D;
10263 APFloat BC = B * C;
10264 ResR = AC - BD;
10265 ResI = AD + BC;
10266 if (ResR.isNaN() && ResI.isNaN()) {
10267 bool Recalc = false;
10268 if (A.isInfinity() || B.isInfinity()) {
10269 A = APFloat::copySign(
10270 APFloat(A.getSemantics(), A.isInfinity() ? 1 : 0), A);
10271 B = APFloat::copySign(
10272 APFloat(B.getSemantics(), B.isInfinity() ? 1 : 0), B);
10273 if (C.isNaN())
10274 C = APFloat::copySign(APFloat(C.getSemantics()), C);
10275 if (D.isNaN())
10276 D = APFloat::copySign(APFloat(D.getSemantics()), D);
10277 Recalc = true;
10278 }
10279 if (C.isInfinity() || D.isInfinity()) {
10280 C = APFloat::copySign(
10281 APFloat(C.getSemantics(), C.isInfinity() ? 1 : 0), C);
10282 D = APFloat::copySign(
10283 APFloat(D.getSemantics(), D.isInfinity() ? 1 : 0), D);
10284 if (A.isNaN())
10285 A = APFloat::copySign(APFloat(A.getSemantics()), A);
10286 if (B.isNaN())
10287 B = APFloat::copySign(APFloat(B.getSemantics()), B);
10288 Recalc = true;
10289 }
10290 if (!Recalc && (AC.isInfinity() || BD.isInfinity() ||
10291 AD.isInfinity() || BC.isInfinity())) {
10292 if (A.isNaN())
10293 A = APFloat::copySign(APFloat(A.getSemantics()), A);
10294 if (B.isNaN())
10295 B = APFloat::copySign(APFloat(B.getSemantics()), B);
10296 if (C.isNaN())
10297 C = APFloat::copySign(APFloat(C.getSemantics()), C);
10298 if (D.isNaN())
10299 D = APFloat::copySign(APFloat(D.getSemantics()), D);
10300 Recalc = true;
10301 }
10302 if (Recalc) {
10303 ResR = APFloat::getInf(A.getSemantics()) * (A * C - B * D);
10304 ResI = APFloat::getInf(A.getSemantics()) * (A * D + B * C);
10305 }
10306 }
10307 }
Daniel Dunbar0aa26062009-01-29 01:32:56 +000010308 } else {
John McCall93d91dc2010-05-07 17:22:02 +000010309 ComplexValue LHS = Result;
Mike Stump11289f42009-09-09 15:08:12 +000010310 Result.getComplexIntReal() =
Daniel Dunbar0aa26062009-01-29 01:32:56 +000010311 (LHS.getComplexIntReal() * RHS.getComplexIntReal() -
10312 LHS.getComplexIntImag() * RHS.getComplexIntImag());
Mike Stump11289f42009-09-09 15:08:12 +000010313 Result.getComplexIntImag() =
Daniel Dunbar0aa26062009-01-29 01:32:56 +000010314 (LHS.getComplexIntReal() * RHS.getComplexIntImag() +
10315 LHS.getComplexIntImag() * RHS.getComplexIntReal());
10316 }
10317 break;
Abramo Bagnara9e0e7092010-12-11 16:05:48 +000010318 case BO_Div:
10319 if (Result.isComplexFloat()) {
Chandler Carrutha216cad2014-10-11 00:57:18 +000010320 // This is an implementation of complex division according to the
Hiroshi Inoue0c2734f2017-07-05 05:37:45 +000010321 // constraints laid out in C11 Annex G. The implemention uses the
Chandler Carrutha216cad2014-10-11 00:57:18 +000010322 // following naming scheme:
10323 // (a + ib) / (c + id)
Abramo Bagnara9e0e7092010-12-11 16:05:48 +000010324 ComplexValue LHS = Result;
Chandler Carrutha216cad2014-10-11 00:57:18 +000010325 APFloat &A = LHS.getComplexFloatReal();
10326 APFloat &B = LHS.getComplexFloatImag();
10327 APFloat &C = RHS.getComplexFloatReal();
10328 APFloat &D = RHS.getComplexFloatImag();
10329 APFloat &ResR = Result.getComplexFloatReal();
10330 APFloat &ResI = Result.getComplexFloatImag();
10331 if (RHSReal) {
10332 ResR = A / C;
10333 ResI = B / C;
10334 } else {
10335 if (LHSReal) {
10336 // No real optimizations we can do here, stub out with zero.
10337 B = APFloat::getZero(A.getSemantics());
10338 }
10339 int DenomLogB = 0;
10340 APFloat MaxCD = maxnum(abs(C), abs(D));
10341 if (MaxCD.isFinite()) {
10342 DenomLogB = ilogb(MaxCD);
Matt Arsenaultc477f482016-03-13 05:12:47 +000010343 C = scalbn(C, -DenomLogB, APFloat::rmNearestTiesToEven);
10344 D = scalbn(D, -DenomLogB, APFloat::rmNearestTiesToEven);
Chandler Carrutha216cad2014-10-11 00:57:18 +000010345 }
10346 APFloat Denom = C * C + D * D;
Matt Arsenaultc477f482016-03-13 05:12:47 +000010347 ResR = scalbn((A * C + B * D) / Denom, -DenomLogB,
10348 APFloat::rmNearestTiesToEven);
10349 ResI = scalbn((B * C - A * D) / Denom, -DenomLogB,
10350 APFloat::rmNearestTiesToEven);
Chandler Carrutha216cad2014-10-11 00:57:18 +000010351 if (ResR.isNaN() && ResI.isNaN()) {
10352 if (Denom.isPosZero() && (!A.isNaN() || !B.isNaN())) {
10353 ResR = APFloat::getInf(ResR.getSemantics(), C.isNegative()) * A;
10354 ResI = APFloat::getInf(ResR.getSemantics(), C.isNegative()) * B;
10355 } else if ((A.isInfinity() || B.isInfinity()) && C.isFinite() &&
10356 D.isFinite()) {
10357 A = APFloat::copySign(
10358 APFloat(A.getSemantics(), A.isInfinity() ? 1 : 0), A);
10359 B = APFloat::copySign(
10360 APFloat(B.getSemantics(), B.isInfinity() ? 1 : 0), B);
10361 ResR = APFloat::getInf(ResR.getSemantics()) * (A * C + B * D);
10362 ResI = APFloat::getInf(ResI.getSemantics()) * (B * C - A * D);
10363 } else if (MaxCD.isInfinity() && A.isFinite() && B.isFinite()) {
10364 C = APFloat::copySign(
10365 APFloat(C.getSemantics(), C.isInfinity() ? 1 : 0), C);
10366 D = APFloat::copySign(
10367 APFloat(D.getSemantics(), D.isInfinity() ? 1 : 0), D);
10368 ResR = APFloat::getZero(ResR.getSemantics()) * (A * C + B * D);
10369 ResI = APFloat::getZero(ResI.getSemantics()) * (B * C - A * D);
10370 }
10371 }
10372 }
Abramo Bagnara9e0e7092010-12-11 16:05:48 +000010373 } else {
Richard Smithf57d8cb2011-12-09 22:58:01 +000010374 if (RHS.getComplexIntReal() == 0 && RHS.getComplexIntImag() == 0)
10375 return Error(E, diag::note_expr_divide_by_zero);
10376
Abramo Bagnara9e0e7092010-12-11 16:05:48 +000010377 ComplexValue LHS = Result;
10378 APSInt Den = RHS.getComplexIntReal() * RHS.getComplexIntReal() +
10379 RHS.getComplexIntImag() * RHS.getComplexIntImag();
10380 Result.getComplexIntReal() =
10381 (LHS.getComplexIntReal() * RHS.getComplexIntReal() +
10382 LHS.getComplexIntImag() * RHS.getComplexIntImag()) / Den;
10383 Result.getComplexIntImag() =
10384 (LHS.getComplexIntImag() * RHS.getComplexIntReal() -
10385 LHS.getComplexIntReal() * RHS.getComplexIntImag()) / Den;
10386 }
10387 break;
Anders Carlsson9ddf7be2008-11-16 21:51:21 +000010388 }
10389
John McCall93d91dc2010-05-07 17:22:02 +000010390 return true;
Anders Carlsson9ddf7be2008-11-16 21:51:21 +000010391}
10392
Abramo Bagnara9e0e7092010-12-11 16:05:48 +000010393bool ComplexExprEvaluator::VisitUnaryOperator(const UnaryOperator *E) {
10394 // Get the operand value into 'Result'.
10395 if (!Visit(E->getSubExpr()))
10396 return false;
10397
10398 switch (E->getOpcode()) {
10399 default:
Richard Smithf57d8cb2011-12-09 22:58:01 +000010400 return Error(E);
Abramo Bagnara9e0e7092010-12-11 16:05:48 +000010401 case UO_Extension:
10402 return true;
10403 case UO_Plus:
10404 // The result is always just the subexpr.
10405 return true;
10406 case UO_Minus:
10407 if (Result.isComplexFloat()) {
10408 Result.getComplexFloatReal().changeSign();
10409 Result.getComplexFloatImag().changeSign();
10410 }
10411 else {
10412 Result.getComplexIntReal() = -Result.getComplexIntReal();
10413 Result.getComplexIntImag() = -Result.getComplexIntImag();
10414 }
10415 return true;
10416 case UO_Not:
10417 if (Result.isComplexFloat())
10418 Result.getComplexFloatImag().changeSign();
10419 else
10420 Result.getComplexIntImag() = -Result.getComplexIntImag();
10421 return true;
10422 }
10423}
10424
Eli Friedmanc4b251d2012-01-10 04:58:17 +000010425bool ComplexExprEvaluator::VisitInitListExpr(const InitListExpr *E) {
10426 if (E->getNumInits() == 2) {
10427 if (E->getType()->isComplexType()) {
10428 Result.makeComplexFloat();
10429 if (!EvaluateFloat(E->getInit(0), Result.FloatReal, Info))
10430 return false;
10431 if (!EvaluateFloat(E->getInit(1), Result.FloatImag, Info))
10432 return false;
10433 } else {
10434 Result.makeComplexInt();
10435 if (!EvaluateInteger(E->getInit(0), Result.IntReal, Info))
10436 return false;
10437 if (!EvaluateInteger(E->getInit(1), Result.IntImag, Info))
10438 return false;
10439 }
10440 return true;
10441 }
10442 return ExprEvaluatorBaseTy::VisitInitListExpr(E);
10443}
10444
Anders Carlsson537969c2008-11-16 20:27:53 +000010445//===----------------------------------------------------------------------===//
Richard Smitha23ab512013-05-23 00:30:41 +000010446// Atomic expression evaluation, essentially just handling the NonAtomicToAtomic
10447// implicit conversion.
10448//===----------------------------------------------------------------------===//
10449
10450namespace {
10451class AtomicExprEvaluator :
Aaron Ballman68af21c2014-01-03 19:26:43 +000010452 public ExprEvaluatorBase<AtomicExprEvaluator> {
Richard Smith64cb9ca2017-02-22 22:09:50 +000010453 const LValue *This;
Richard Smitha23ab512013-05-23 00:30:41 +000010454 APValue &Result;
10455public:
Richard Smith64cb9ca2017-02-22 22:09:50 +000010456 AtomicExprEvaluator(EvalInfo &Info, const LValue *This, APValue &Result)
10457 : ExprEvaluatorBaseTy(Info), This(This), Result(Result) {}
Richard Smitha23ab512013-05-23 00:30:41 +000010458
10459 bool Success(const APValue &V, const Expr *E) {
10460 Result = V;
10461 return true;
10462 }
10463
10464 bool ZeroInitialization(const Expr *E) {
10465 ImplicitValueInitExpr VIE(
10466 E->getType()->castAs<AtomicType>()->getValueType());
Richard Smith64cb9ca2017-02-22 22:09:50 +000010467 // For atomic-qualified class (and array) types in C++, initialize the
10468 // _Atomic-wrapped subobject directly, in-place.
10469 return This ? EvaluateInPlace(Result, Info, *This, &VIE)
10470 : Evaluate(Result, Info, &VIE);
Richard Smitha23ab512013-05-23 00:30:41 +000010471 }
10472
10473 bool VisitCastExpr(const CastExpr *E) {
10474 switch (E->getCastKind()) {
10475 default:
10476 return ExprEvaluatorBaseTy::VisitCastExpr(E);
10477 case CK_NonAtomicToAtomic:
Richard Smith64cb9ca2017-02-22 22:09:50 +000010478 return This ? EvaluateInPlace(Result, Info, *This, E->getSubExpr())
10479 : Evaluate(Result, Info, E->getSubExpr());
Richard Smitha23ab512013-05-23 00:30:41 +000010480 }
10481 }
10482};
10483} // end anonymous namespace
10484
Richard Smith64cb9ca2017-02-22 22:09:50 +000010485static bool EvaluateAtomic(const Expr *E, const LValue *This, APValue &Result,
10486 EvalInfo &Info) {
Richard Smitha23ab512013-05-23 00:30:41 +000010487 assert(E->isRValue() && E->getType()->isAtomicType());
Richard Smith64cb9ca2017-02-22 22:09:50 +000010488 return AtomicExprEvaluator(Info, This, Result).Visit(E);
Richard Smitha23ab512013-05-23 00:30:41 +000010489}
10490
10491//===----------------------------------------------------------------------===//
Richard Smith42d3af92011-12-07 00:43:50 +000010492// Void expression evaluation, primarily for a cast to void on the LHS of a
10493// comma operator
10494//===----------------------------------------------------------------------===//
10495
10496namespace {
10497class VoidExprEvaluator
Aaron Ballman68af21c2014-01-03 19:26:43 +000010498 : public ExprEvaluatorBase<VoidExprEvaluator> {
Richard Smith42d3af92011-12-07 00:43:50 +000010499public:
10500 VoidExprEvaluator(EvalInfo &Info) : ExprEvaluatorBaseTy(Info) {}
10501
Richard Smith2e312c82012-03-03 22:46:17 +000010502 bool Success(const APValue &V, const Expr *e) { return true; }
Richard Smith42d3af92011-12-07 00:43:50 +000010503
Richard Smith7cd577b2017-08-17 19:35:50 +000010504 bool ZeroInitialization(const Expr *E) { return true; }
10505
Richard Smith42d3af92011-12-07 00:43:50 +000010506 bool VisitCastExpr(const CastExpr *E) {
10507 switch (E->getCastKind()) {
10508 default:
10509 return ExprEvaluatorBaseTy::VisitCastExpr(E);
10510 case CK_ToVoid:
10511 VisitIgnoredValue(E->getSubExpr());
10512 return true;
10513 }
10514 }
Hal Finkela8443c32014-07-17 14:49:58 +000010515
10516 bool VisitCallExpr(const CallExpr *E) {
10517 switch (E->getBuiltinCallee()) {
10518 default:
10519 return ExprEvaluatorBaseTy::VisitCallExpr(E);
10520 case Builtin::BI__assume:
Hal Finkelbcc06082014-09-07 22:58:14 +000010521 case Builtin::BI__builtin_assume:
Hal Finkela8443c32014-07-17 14:49:58 +000010522 // The argument is not evaluated!
10523 return true;
10524 }
10525 }
Richard Smith42d3af92011-12-07 00:43:50 +000010526};
10527} // end anonymous namespace
10528
10529static bool EvaluateVoid(const Expr *E, EvalInfo &Info) {
10530 assert(E->isRValue() && E->getType()->isVoidType());
10531 return VoidExprEvaluator(Info).Visit(E);
10532}
10533
10534//===----------------------------------------------------------------------===//
Richard Smith7b553f12011-10-29 00:50:52 +000010535// Top level Expr::EvaluateAsRValue method.
Chris Lattner05706e882008-07-11 18:11:29 +000010536//===----------------------------------------------------------------------===//
10537
Richard Smith2e312c82012-03-03 22:46:17 +000010538static bool Evaluate(APValue &Result, EvalInfo &Info, const Expr *E) {
Richard Smith11562c52011-10-28 17:51:58 +000010539 // In C, function designators are not lvalues, but we evaluate them as if they
10540 // are.
Richard Smitha23ab512013-05-23 00:30:41 +000010541 QualType T = E->getType();
10542 if (E->isGLValue() || T->isFunctionType()) {
Richard Smith11562c52011-10-28 17:51:58 +000010543 LValue LV;
10544 if (!EvaluateLValue(E, LV, Info))
10545 return false;
10546 LV.moveInto(Result);
Richard Smitha23ab512013-05-23 00:30:41 +000010547 } else if (T->isVectorType()) {
Richard Smith725810a2011-10-16 21:26:27 +000010548 if (!EvaluateVector(E, Result, Info))
Nate Begeman2f2bdeb2009-01-18 03:20:47 +000010549 return false;
Richard Smitha23ab512013-05-23 00:30:41 +000010550 } else if (T->isIntegralOrEnumerationType()) {
Richard Smith725810a2011-10-16 21:26:27 +000010551 if (!IntExprEvaluator(Info, Result).Visit(E))
Anders Carlsson475f4bc2008-11-22 21:50:49 +000010552 return false;
Richard Smitha23ab512013-05-23 00:30:41 +000010553 } else if (T->hasPointerRepresentation()) {
John McCall45d55e42010-05-07 21:00:08 +000010554 LValue LV;
10555 if (!EvaluatePointer(E, LV, Info))
Anders Carlsson475f4bc2008-11-22 21:50:49 +000010556 return false;
Richard Smith725810a2011-10-16 21:26:27 +000010557 LV.moveInto(Result);
Richard Smitha23ab512013-05-23 00:30:41 +000010558 } else if (T->isRealFloatingType()) {
John McCall45d55e42010-05-07 21:00:08 +000010559 llvm::APFloat F(0.0);
10560 if (!EvaluateFloat(E, F, Info))
Anders Carlsson475f4bc2008-11-22 21:50:49 +000010561 return false;
Richard Smith2e312c82012-03-03 22:46:17 +000010562 Result = APValue(F);
Richard Smitha23ab512013-05-23 00:30:41 +000010563 } else if (T->isAnyComplexType()) {
John McCall45d55e42010-05-07 21:00:08 +000010564 ComplexValue C;
10565 if (!EvaluateComplex(E, C, Info))
Anders Carlsson475f4bc2008-11-22 21:50:49 +000010566 return false;
Richard Smith725810a2011-10-16 21:26:27 +000010567 C.moveInto(Result);
Leonard Chandb01c3a2018-06-20 17:19:40 +000010568 } else if (T->isFixedPointType()) {
10569 if (!FixedPointExprEvaluator(Info, Result).Visit(E)) return false;
Richard Smitha23ab512013-05-23 00:30:41 +000010570 } else if (T->isMemberPointerType()) {
Richard Smith027bf112011-11-17 22:56:20 +000010571 MemberPtr P;
10572 if (!EvaluateMemberPointer(E, P, Info))
10573 return false;
10574 P.moveInto(Result);
10575 return true;
Richard Smitha23ab512013-05-23 00:30:41 +000010576 } else if (T->isArrayType()) {
Richard Smithd62306a2011-11-10 06:34:14 +000010577 LValue LV;
Akira Hatanaka4e2698c2018-04-10 05:15:01 +000010578 APValue &Value = createTemporary(E, false, LV, *Info.CurrentCall);
Richard Smith08d6a2c2013-07-24 07:11:57 +000010579 if (!EvaluateArray(E, LV, Value, Info))
Richard Smithf3e9e432011-11-07 09:22:26 +000010580 return false;
Richard Smith08d6a2c2013-07-24 07:11:57 +000010581 Result = Value;
Richard Smitha23ab512013-05-23 00:30:41 +000010582 } else if (T->isRecordType()) {
Richard Smithd62306a2011-11-10 06:34:14 +000010583 LValue LV;
Akira Hatanaka4e2698c2018-04-10 05:15:01 +000010584 APValue &Value = createTemporary(E, false, LV, *Info.CurrentCall);
Richard Smith08d6a2c2013-07-24 07:11:57 +000010585 if (!EvaluateRecord(E, LV, Value, Info))
Richard Smithd62306a2011-11-10 06:34:14 +000010586 return false;
Richard Smith08d6a2c2013-07-24 07:11:57 +000010587 Result = Value;
Richard Smitha23ab512013-05-23 00:30:41 +000010588 } else if (T->isVoidType()) {
Richard Smith2bf7fdb2013-01-02 11:42:31 +000010589 if (!Info.getLangOpts().CPlusPlus11)
Richard Smithce1ec5e2012-03-15 04:53:45 +000010590 Info.CCEDiag(E, diag::note_constexpr_nonliteral)
Richard Smith357362d2011-12-13 06:39:58 +000010591 << E->getType();
Richard Smith42d3af92011-12-07 00:43:50 +000010592 if (!EvaluateVoid(E, Info))
10593 return false;
Richard Smitha23ab512013-05-23 00:30:41 +000010594 } else if (T->isAtomicType()) {
Richard Smith64cb9ca2017-02-22 22:09:50 +000010595 QualType Unqual = T.getAtomicUnqualifiedType();
10596 if (Unqual->isArrayType() || Unqual->isRecordType()) {
10597 LValue LV;
Akira Hatanaka4e2698c2018-04-10 05:15:01 +000010598 APValue &Value = createTemporary(E, false, LV, *Info.CurrentCall);
Richard Smith64cb9ca2017-02-22 22:09:50 +000010599 if (!EvaluateAtomic(E, &LV, Value, Info))
10600 return false;
10601 } else {
10602 if (!EvaluateAtomic(E, nullptr, Result, Info))
10603 return false;
10604 }
Richard Smith2bf7fdb2013-01-02 11:42:31 +000010605 } else if (Info.getLangOpts().CPlusPlus11) {
Faisal Valie690b7a2016-07-02 22:34:24 +000010606 Info.FFDiag(E, diag::note_constexpr_nonliteral) << E->getType();
Richard Smith357362d2011-12-13 06:39:58 +000010607 return false;
Richard Smithf57d8cb2011-12-09 22:58:01 +000010608 } else {
Faisal Valie690b7a2016-07-02 22:34:24 +000010609 Info.FFDiag(E, diag::note_invalid_subexpr_in_const_expr);
Anders Carlsson7c282e42008-11-22 22:56:32 +000010610 return false;
Richard Smithf57d8cb2011-12-09 22:58:01 +000010611 }
Anders Carlsson475f4bc2008-11-22 21:50:49 +000010612
Anders Carlsson7b6f0af2008-11-30 16:58:53 +000010613 return true;
10614}
10615
Richard Smithb228a862012-02-15 02:18:13 +000010616/// EvaluateInPlace - Evaluate an expression in-place in an APValue. In some
10617/// cases, the in-place evaluation is essential, since later initializers for
10618/// an object can indirectly refer to subobjects which were initialized earlier.
10619static bool EvaluateInPlace(APValue &Result, EvalInfo &Info, const LValue &This,
Richard Smith7525ff62013-05-09 07:14:00 +000010620 const Expr *E, bool AllowNonLiteralTypes) {
Argyrios Kyrtzidis3d9e3822014-02-20 04:00:01 +000010621 assert(!E->isValueDependent());
10622
Richard Smith7525ff62013-05-09 07:14:00 +000010623 if (!AllowNonLiteralTypes && !CheckLiteralType(Info, E, &This))
Richard Smithfddd3842011-12-30 21:15:51 +000010624 return false;
10625
10626 if (E->isRValue()) {
Richard Smithed5165f2011-11-04 05:33:44 +000010627 // Evaluate arrays and record types in-place, so that later initializers can
10628 // refer to earlier-initialized members of the object.
Richard Smith64cb9ca2017-02-22 22:09:50 +000010629 QualType T = E->getType();
10630 if (T->isArrayType())
Richard Smithd62306a2011-11-10 06:34:14 +000010631 return EvaluateArray(E, This, Result, Info);
Richard Smith64cb9ca2017-02-22 22:09:50 +000010632 else if (T->isRecordType())
Richard Smithd62306a2011-11-10 06:34:14 +000010633 return EvaluateRecord(E, This, Result, Info);
Richard Smith64cb9ca2017-02-22 22:09:50 +000010634 else if (T->isAtomicType()) {
10635 QualType Unqual = T.getAtomicUnqualifiedType();
10636 if (Unqual->isArrayType() || Unqual->isRecordType())
10637 return EvaluateAtomic(E, &This, Result, Info);
10638 }
Richard Smithed5165f2011-11-04 05:33:44 +000010639 }
10640
10641 // For any other type, in-place evaluation is unimportant.
Richard Smith2e312c82012-03-03 22:46:17 +000010642 return Evaluate(Result, Info, E);
Richard Smithed5165f2011-11-04 05:33:44 +000010643}
10644
Richard Smithf57d8cb2011-12-09 22:58:01 +000010645/// EvaluateAsRValue - Try to evaluate this expression, performing an implicit
10646/// lvalue-to-rvalue cast if it is an lvalue.
10647static bool EvaluateAsRValue(EvalInfo &Info, const Expr *E, APValue &Result) {
James Dennett0492ef02014-03-14 17:44:10 +000010648 if (E->getType().isNull())
10649 return false;
10650
Nick Lewyckyc190f962017-05-02 01:06:16 +000010651 if (!CheckLiteralType(Info, E))
Richard Smithfddd3842011-12-30 21:15:51 +000010652 return false;
10653
Richard Smith2e312c82012-03-03 22:46:17 +000010654 if (!::Evaluate(Result, Info, E))
Richard Smithf57d8cb2011-12-09 22:58:01 +000010655 return false;
10656
10657 if (E->isGLValue()) {
10658 LValue LV;
Richard Smith2e312c82012-03-03 22:46:17 +000010659 LV.setFrom(Info.Ctx, Result);
Richard Smith243ef902013-05-05 23:31:59 +000010660 if (!handleLValueToRValueConversion(Info, E, E->getType(), LV, Result))
Richard Smithf57d8cb2011-12-09 22:58:01 +000010661 return false;
10662 }
10663
Richard Smith2e312c82012-03-03 22:46:17 +000010664 // Check this core constant expression is a constant expression.
Richard Smithb228a862012-02-15 02:18:13 +000010665 return CheckConstantExpression(Info, E->getExprLoc(), E->getType(), Result);
Richard Smithf57d8cb2011-12-09 22:58:01 +000010666}
Richard Smith11562c52011-10-28 17:51:58 +000010667
Fariborz Jahaniane735ff92013-01-24 22:11:45 +000010668static bool FastEvaluateAsRValue(const Expr *Exp, Expr::EvalResult &Result,
Richard Smith9f7df0c2017-06-26 23:19:32 +000010669 const ASTContext &Ctx, bool &IsConst) {
Fariborz Jahaniane735ff92013-01-24 22:11:45 +000010670 // Fast-path evaluations of integer literals, since we sometimes see files
10671 // containing vast quantities of these.
10672 if (const IntegerLiteral *L = dyn_cast<IntegerLiteral>(Exp)) {
10673 Result.Val = APValue(APSInt(L->getValue(),
10674 L->getType()->isUnsignedIntegerType()));
10675 IsConst = true;
10676 return true;
10677 }
James Dennett0492ef02014-03-14 17:44:10 +000010678
10679 // This case should be rare, but we need to check it before we check on
10680 // the type below.
10681 if (Exp->getType().isNull()) {
10682 IsConst = false;
10683 return true;
10684 }
Fangrui Song6907ce22018-07-30 19:24:48 +000010685
Fariborz Jahaniane735ff92013-01-24 22:11:45 +000010686 // FIXME: Evaluating values of large array and record types can cause
10687 // performance problems. Only do so in C++11 for now.
10688 if (Exp->isRValue() && (Exp->getType()->isArrayType() ||
10689 Exp->getType()->isRecordType()) &&
Richard Smith9f7df0c2017-06-26 23:19:32 +000010690 !Ctx.getLangOpts().CPlusPlus11) {
Fariborz Jahaniane735ff92013-01-24 22:11:45 +000010691 IsConst = false;
10692 return true;
10693 }
10694 return false;
10695}
10696
10697
Richard Smith7b553f12011-10-29 00:50:52 +000010698/// EvaluateAsRValue - Return true if this is a constant which we can fold using
John McCallc07a0c72011-02-17 10:25:35 +000010699/// any crazy technique (that has nothing to do with language standards) that
10700/// we want to. If this function returns true, it returns the folded constant
Richard Smith11562c52011-10-28 17:51:58 +000010701/// in Result. If this expression is a glvalue, an lvalue-to-rvalue conversion
10702/// will be applied to the result.
Richard Smith7b553f12011-10-29 00:50:52 +000010703bool Expr::EvaluateAsRValue(EvalResult &Result, const ASTContext &Ctx) const {
Fariborz Jahaniane735ff92013-01-24 22:11:45 +000010704 bool IsConst;
Richard Smith9f7df0c2017-06-26 23:19:32 +000010705 if (FastEvaluateAsRValue(this, Result, Ctx, IsConst))
Fariborz Jahaniane735ff92013-01-24 22:11:45 +000010706 return IsConst;
Fangrui Song6907ce22018-07-30 19:24:48 +000010707
Richard Smith6d4c6582013-11-05 22:18:15 +000010708 EvalInfo Info(Ctx, Result, EvalInfo::EM_IgnoreSideEffects);
Richard Smithf57d8cb2011-12-09 22:58:01 +000010709 return ::EvaluateAsRValue(Info, this, Result.Val);
John McCallc07a0c72011-02-17 10:25:35 +000010710}
10711
Jay Foad39c79802011-01-12 09:06:06 +000010712bool Expr::EvaluateAsBooleanCondition(bool &Result,
10713 const ASTContext &Ctx) const {
Richard Smith11562c52011-10-28 17:51:58 +000010714 EvalResult Scratch;
Richard Smith7b553f12011-10-29 00:50:52 +000010715 return EvaluateAsRValue(Scratch, Ctx) &&
Richard Smith2e312c82012-03-03 22:46:17 +000010716 HandleConversionToBool(Scratch.Val, Result);
John McCall1be1c632010-01-05 23:42:56 +000010717}
10718
Richard Smith3f1d6de2018-05-21 20:36:58 +000010719static bool hasUnacceptableSideEffect(Expr::EvalStatus &Result,
10720 Expr::SideEffectsKind SEK) {
10721 return (SEK < Expr::SE_AllowSideEffects && Result.HasSideEffects) ||
10722 (SEK < Expr::SE_AllowUndefinedBehavior && Result.HasUndefinedBehavior);
10723}
10724
Richard Smith5fab0c92011-12-28 19:48:30 +000010725bool Expr::EvaluateAsInt(APSInt &Result, const ASTContext &Ctx,
10726 SideEffectsKind AllowSideEffects) const {
10727 if (!getType()->isIntegralOrEnumerationType())
10728 return false;
10729
Richard Smith11562c52011-10-28 17:51:58 +000010730 EvalResult ExprResult;
Richard Smith5fab0c92011-12-28 19:48:30 +000010731 if (!EvaluateAsRValue(ExprResult, Ctx) || !ExprResult.Val.isInt() ||
Richard Smith3f1d6de2018-05-21 20:36:58 +000010732 hasUnacceptableSideEffect(ExprResult, AllowSideEffects))
Richard Smith11562c52011-10-28 17:51:58 +000010733 return false;
Richard Smithf57d8cb2011-12-09 22:58:01 +000010734
Richard Smith11562c52011-10-28 17:51:58 +000010735 Result = ExprResult.Val.getInt();
10736 return true;
Richard Smithcaf33902011-10-10 18:28:20 +000010737}
10738
Richard Trieube234c32016-04-21 21:04:55 +000010739bool Expr::EvaluateAsFloat(APFloat &Result, const ASTContext &Ctx,
10740 SideEffectsKind AllowSideEffects) const {
10741 if (!getType()->isRealFloatingType())
10742 return false;
10743
10744 EvalResult ExprResult;
10745 if (!EvaluateAsRValue(ExprResult, Ctx) || !ExprResult.Val.isFloat() ||
Richard Smith3f1d6de2018-05-21 20:36:58 +000010746 hasUnacceptableSideEffect(ExprResult, AllowSideEffects))
Richard Trieube234c32016-04-21 21:04:55 +000010747 return false;
10748
10749 Result = ExprResult.Val.getFloat();
10750 return true;
10751}
10752
Jay Foad39c79802011-01-12 09:06:06 +000010753bool Expr::EvaluateAsLValue(EvalResult &Result, const ASTContext &Ctx) const {
Richard Smith6d4c6582013-11-05 22:18:15 +000010754 EvalInfo Info(Ctx, Result, EvalInfo::EM_ConstantFold);
Anders Carlsson43168122009-04-10 04:54:13 +000010755
John McCall45d55e42010-05-07 21:00:08 +000010756 LValue LV;
Richard Smithb228a862012-02-15 02:18:13 +000010757 if (!EvaluateLValue(this, LV, Info) || Result.HasSideEffects ||
10758 !CheckLValueConstantExpression(Info, getExprLoc(),
Reid Kleckner1a840d22018-05-10 18:57:35 +000010759 Ctx.getLValueReferenceType(getType()), LV,
10760 Expr::EvaluateForCodeGen))
Richard Smithb228a862012-02-15 02:18:13 +000010761 return false;
10762
Richard Smith2e312c82012-03-03 22:46:17 +000010763 LV.moveInto(Result.Val);
Richard Smithb228a862012-02-15 02:18:13 +000010764 return true;
Eli Friedman7d45c482009-09-13 10:17:44 +000010765}
10766
Reid Kleckner1a840d22018-05-10 18:57:35 +000010767bool Expr::EvaluateAsConstantExpr(EvalResult &Result, ConstExprUsage Usage,
10768 const ASTContext &Ctx) const {
10769 EvalInfo::EvaluationMode EM = EvalInfo::EM_ConstantExpression;
10770 EvalInfo Info(Ctx, Result, EM);
10771 if (!::Evaluate(Result.Val, Info, this))
10772 return false;
10773
10774 return CheckConstantExpression(Info, getExprLoc(), getType(), Result.Val,
10775 Usage);
10776}
10777
Richard Smithd0b4dd62011-12-19 06:19:21 +000010778bool Expr::EvaluateAsInitializer(APValue &Value, const ASTContext &Ctx,
10779 const VarDecl *VD,
Dmitri Gribenkof8579502013-01-12 19:30:44 +000010780 SmallVectorImpl<PartialDiagnosticAt> &Notes) const {
Richard Smithdafff942012-01-14 04:30:29 +000010781 // FIXME: Evaluating initializers for large array and record types can cause
10782 // performance problems. Only do so in C++11 for now.
10783 if (isRValue() && (getType()->isArrayType() || getType()->isRecordType()) &&
Richard Smith2bf7fdb2013-01-02 11:42:31 +000010784 !Ctx.getLangOpts().CPlusPlus11)
Richard Smithdafff942012-01-14 04:30:29 +000010785 return false;
10786
Richard Smithd0b4dd62011-12-19 06:19:21 +000010787 Expr::EvalStatus EStatus;
10788 EStatus.Diag = &Notes;
10789
Richard Smith0c6124b2015-12-03 01:36:22 +000010790 EvalInfo InitInfo(Ctx, EStatus, VD->isConstexpr()
10791 ? EvalInfo::EM_ConstantExpression
10792 : EvalInfo::EM_ConstantFold);
Richard Smithd0b4dd62011-12-19 06:19:21 +000010793 InitInfo.setEvaluatingDecl(VD, Value);
10794
10795 LValue LVal;
10796 LVal.set(VD);
10797
Richard Smithfddd3842011-12-30 21:15:51 +000010798 // C++11 [basic.start.init]p2:
10799 // Variables with static storage duration or thread storage duration shall be
10800 // zero-initialized before any other initialization takes place.
10801 // This behavior is not present in C.
David Blaikiebbafb8a2012-03-11 07:00:24 +000010802 if (Ctx.getLangOpts().CPlusPlus && !VD->hasLocalStorage() &&
Richard Smithfddd3842011-12-30 21:15:51 +000010803 !VD->getType()->isReferenceType()) {
10804 ImplicitValueInitExpr VIE(VD->getType());
Richard Smith7525ff62013-05-09 07:14:00 +000010805 if (!EvaluateInPlace(Value, InitInfo, LVal, &VIE,
Richard Smithb228a862012-02-15 02:18:13 +000010806 /*AllowNonLiteralTypes=*/true))
Richard Smithfddd3842011-12-30 21:15:51 +000010807 return false;
10808 }
10809
Richard Smith7525ff62013-05-09 07:14:00 +000010810 if (!EvaluateInPlace(Value, InitInfo, LVal, this,
10811 /*AllowNonLiteralTypes=*/true) ||
Richard Smithb228a862012-02-15 02:18:13 +000010812 EStatus.HasSideEffects)
10813 return false;
10814
10815 return CheckConstantExpression(InitInfo, VD->getLocation(), VD->getType(),
10816 Value);
Richard Smithd0b4dd62011-12-19 06:19:21 +000010817}
10818
Richard Smith7b553f12011-10-29 00:50:52 +000010819/// isEvaluatable - Call EvaluateAsRValue to see if this expression can be
10820/// constant folded, but discard the result.
Richard Smithce8eca52015-12-08 03:21:47 +000010821bool Expr::isEvaluatable(const ASTContext &Ctx, SideEffectsKind SEK) const {
Anders Carlsson5b3638b2008-12-01 06:44:05 +000010822 EvalResult Result;
Richard Smithce8eca52015-12-08 03:21:47 +000010823 return EvaluateAsRValue(Result, Ctx) &&
Richard Smith3f1d6de2018-05-21 20:36:58 +000010824 !hasUnacceptableSideEffect(Result, SEK);
Chris Lattnercb136912008-10-06 06:49:02 +000010825}
Anders Carlsson59689ed2008-11-22 21:04:56 +000010826
Fariborz Jahanian8b115b72013-01-09 23:04:56 +000010827APSInt Expr::EvaluateKnownConstInt(const ASTContext &Ctx,
Dmitri Gribenkof8579502013-01-12 19:30:44 +000010828 SmallVectorImpl<PartialDiagnosticAt> *Diag) const {
Anders Carlsson6736d1a22008-12-19 20:58:05 +000010829 EvalResult EvalResult;
Fariborz Jahanian8b115b72013-01-09 23:04:56 +000010830 EvalResult.Diag = Diag;
Richard Smith7b553f12011-10-29 00:50:52 +000010831 bool Result = EvaluateAsRValue(EvalResult, Ctx);
Jeffrey Yasskinb3321532010-12-23 01:01:28 +000010832 (void)Result;
Anders Carlsson59689ed2008-11-22 21:04:56 +000010833 assert(Result && "Could not evaluate expression");
Anders Carlsson6736d1a22008-12-19 20:58:05 +000010834 assert(EvalResult.Val.isInt() && "Expression did not evaluate to integer");
Anders Carlsson59689ed2008-11-22 21:04:56 +000010835
Anders Carlsson6736d1a22008-12-19 20:58:05 +000010836 return EvalResult.Val.getInt();
Anders Carlsson59689ed2008-11-22 21:04:56 +000010837}
John McCall864e3962010-05-07 05:32:02 +000010838
Richard Smithe9ff7702013-11-05 22:23:30 +000010839void Expr::EvaluateForOverflow(const ASTContext &Ctx) const {
Fariborz Jahaniane735ff92013-01-24 22:11:45 +000010840 bool IsConst;
10841 EvalResult EvalResult;
Richard Smith9f7df0c2017-06-26 23:19:32 +000010842 if (!FastEvaluateAsRValue(this, EvalResult, Ctx, IsConst)) {
Richard Smith6d4c6582013-11-05 22:18:15 +000010843 EvalInfo Info(Ctx, EvalResult, EvalInfo::EM_EvaluateForOverflow);
Fariborz Jahaniane735ff92013-01-24 22:11:45 +000010844 (void)::EvaluateAsRValue(Info, this, EvalResult.Val);
10845 }
10846}
10847
Richard Smithe6c01442013-06-05 00:46:14 +000010848bool Expr::EvalResult::isGlobalLValue() const {
10849 assert(Val.isLValue());
10850 return IsGlobalLValue(Val.getLValueBase());
10851}
Abramo Bagnaraf8199452010-05-14 17:07:14 +000010852
10853
John McCall864e3962010-05-07 05:32:02 +000010854/// isIntegerConstantExpr - this recursive routine will test if an expression is
10855/// an integer constant expression.
10856
10857/// FIXME: Pass up a reason why! Invalid operation in i-c-e, division by zero,
10858/// comma, etc
John McCall864e3962010-05-07 05:32:02 +000010859
10860// CheckICE - This function does the fundamental ICE checking: the returned
Richard Smith9e575da2012-12-28 13:25:52 +000010861// ICEDiag contains an ICEKind indicating whether the expression is an ICE,
10862// and a (possibly null) SourceLocation indicating the location of the problem.
10863//
John McCall864e3962010-05-07 05:32:02 +000010864// Note that to reduce code duplication, this helper does no evaluation
10865// itself; the caller checks whether the expression is evaluatable, and
10866// in the rare cases where CheckICE actually cares about the evaluated
George Burgess IV57317072017-02-02 07:53:55 +000010867// value, it calls into Evaluate.
John McCall864e3962010-05-07 05:32:02 +000010868
Dan Gohman28ade552010-07-26 21:25:24 +000010869namespace {
10870
Richard Smith9e575da2012-12-28 13:25:52 +000010871enum ICEKind {
10872 /// This expression is an ICE.
10873 IK_ICE,
10874 /// This expression is not an ICE, but if it isn't evaluated, it's
10875 /// a legal subexpression for an ICE. This return value is used to handle
10876 /// the comma operator in C99 mode, and non-constant subexpressions.
10877 IK_ICEIfUnevaluated,
10878 /// This expression is not an ICE, and is not a legal subexpression for one.
10879 IK_NotICE
10880};
10881
John McCall864e3962010-05-07 05:32:02 +000010882struct ICEDiag {
Richard Smith9e575da2012-12-28 13:25:52 +000010883 ICEKind Kind;
John McCall864e3962010-05-07 05:32:02 +000010884 SourceLocation Loc;
10885
Richard Smith9e575da2012-12-28 13:25:52 +000010886 ICEDiag(ICEKind IK, SourceLocation l) : Kind(IK), Loc(l) {}
John McCall864e3962010-05-07 05:32:02 +000010887};
10888
Alexander Kornienkoab9db512015-06-22 23:07:51 +000010889}
Dan Gohman28ade552010-07-26 21:25:24 +000010890
Richard Smith9e575da2012-12-28 13:25:52 +000010891static ICEDiag NoDiag() { return ICEDiag(IK_ICE, SourceLocation()); }
10892
10893static ICEDiag Worst(ICEDiag A, ICEDiag B) { return A.Kind >= B.Kind ? A : B; }
John McCall864e3962010-05-07 05:32:02 +000010894
Craig Toppera31a8822013-08-22 07:09:37 +000010895static ICEDiag CheckEvalInICE(const Expr* E, const ASTContext &Ctx) {
John McCall864e3962010-05-07 05:32:02 +000010896 Expr::EvalResult EVResult;
Richard Smith7b553f12011-10-29 00:50:52 +000010897 if (!E->EvaluateAsRValue(EVResult, Ctx) || EVResult.HasSideEffects ||
Richard Smith9e575da2012-12-28 13:25:52 +000010898 !EVResult.Val.isInt())
10899 return ICEDiag(IK_NotICE, E->getLocStart());
10900
John McCall864e3962010-05-07 05:32:02 +000010901 return NoDiag();
10902}
10903
Craig Toppera31a8822013-08-22 07:09:37 +000010904static ICEDiag CheckICE(const Expr* E, const ASTContext &Ctx) {
John McCall864e3962010-05-07 05:32:02 +000010905 assert(!E->isValueDependent() && "Should not see value dependent exprs!");
Richard Smith9e575da2012-12-28 13:25:52 +000010906 if (!E->getType()->isIntegralOrEnumerationType())
10907 return ICEDiag(IK_NotICE, E->getLocStart());
John McCall864e3962010-05-07 05:32:02 +000010908
10909 switch (E->getStmtClass()) {
John McCallbd066782011-02-09 08:16:59 +000010910#define ABSTRACT_STMT(Node)
John McCall864e3962010-05-07 05:32:02 +000010911#define STMT(Node, Base) case Expr::Node##Class:
10912#define EXPR(Node, Base)
10913#include "clang/AST/StmtNodes.inc"
10914 case Expr::PredefinedExprClass:
10915 case Expr::FloatingLiteralClass:
10916 case Expr::ImaginaryLiteralClass:
10917 case Expr::StringLiteralClass:
10918 case Expr::ArraySubscriptExprClass:
Alexey Bataev1a3320e2015-08-25 14:24:04 +000010919 case Expr::OMPArraySectionExprClass:
John McCall864e3962010-05-07 05:32:02 +000010920 case Expr::MemberExprClass:
10921 case Expr::CompoundAssignOperatorClass:
10922 case Expr::CompoundLiteralExprClass:
10923 case Expr::ExtVectorElementExprClass:
John McCall864e3962010-05-07 05:32:02 +000010924 case Expr::DesignatedInitExprClass:
Richard Smith410306b2016-12-12 02:53:20 +000010925 case Expr::ArrayInitLoopExprClass:
10926 case Expr::ArrayInitIndexExprClass:
Yunzhong Gaocb779302015-06-10 00:27:52 +000010927 case Expr::NoInitExprClass:
10928 case Expr::DesignatedInitUpdateExprClass:
John McCall864e3962010-05-07 05:32:02 +000010929 case Expr::ImplicitValueInitExprClass:
10930 case Expr::ParenListExprClass:
10931 case Expr::VAArgExprClass:
10932 case Expr::AddrLabelExprClass:
10933 case Expr::StmtExprClass:
10934 case Expr::CXXMemberCallExprClass:
Peter Collingbourne41f85462011-02-09 21:07:24 +000010935 case Expr::CUDAKernelCallExprClass:
John McCall864e3962010-05-07 05:32:02 +000010936 case Expr::CXXDynamicCastExprClass:
10937 case Expr::CXXTypeidExprClass:
Francois Pichet5cc0a672010-09-08 23:47:05 +000010938 case Expr::CXXUuidofExprClass:
John McCall5e77d762013-04-16 07:28:30 +000010939 case Expr::MSPropertyRefExprClass:
Alexey Bataevf7630272015-11-25 12:01:00 +000010940 case Expr::MSPropertySubscriptExprClass:
John McCall864e3962010-05-07 05:32:02 +000010941 case Expr::CXXNullPtrLiteralExprClass:
Richard Smithc67fdd42012-03-07 08:35:16 +000010942 case Expr::UserDefinedLiteralClass:
John McCall864e3962010-05-07 05:32:02 +000010943 case Expr::CXXThisExprClass:
10944 case Expr::CXXThrowExprClass:
10945 case Expr::CXXNewExprClass:
10946 case Expr::CXXDeleteExprClass:
10947 case Expr::CXXPseudoDestructorExprClass:
10948 case Expr::UnresolvedLookupExprClass:
Kaelyn Takatae1f49d52014-10-27 18:07:20 +000010949 case Expr::TypoExprClass:
John McCall864e3962010-05-07 05:32:02 +000010950 case Expr::DependentScopeDeclRefExprClass:
10951 case Expr::CXXConstructExprClass:
Richard Smith5179eb72016-06-28 19:03:57 +000010952 case Expr::CXXInheritedCtorInitExprClass:
Richard Smithcc1b96d2013-06-12 22:31:48 +000010953 case Expr::CXXStdInitializerListExprClass:
John McCall864e3962010-05-07 05:32:02 +000010954 case Expr::CXXBindTemporaryExprClass:
John McCall5d413782010-12-06 08:20:24 +000010955 case Expr::ExprWithCleanupsClass:
John McCall864e3962010-05-07 05:32:02 +000010956 case Expr::CXXTemporaryObjectExprClass:
10957 case Expr::CXXUnresolvedConstructExprClass:
10958 case Expr::CXXDependentScopeMemberExprClass:
10959 case Expr::UnresolvedMemberExprClass:
10960 case Expr::ObjCStringLiteralClass:
Patrick Beard0caa3942012-04-19 00:25:12 +000010961 case Expr::ObjCBoxedExprClass:
Ted Kremeneke65b0862012-03-06 20:05:56 +000010962 case Expr::ObjCArrayLiteralClass:
10963 case Expr::ObjCDictionaryLiteralClass:
John McCall864e3962010-05-07 05:32:02 +000010964 case Expr::ObjCEncodeExprClass:
10965 case Expr::ObjCMessageExprClass:
10966 case Expr::ObjCSelectorExprClass:
10967 case Expr::ObjCProtocolExprClass:
10968 case Expr::ObjCIvarRefExprClass:
10969 case Expr::ObjCPropertyRefExprClass:
Ted Kremeneke65b0862012-03-06 20:05:56 +000010970 case Expr::ObjCSubscriptRefExprClass:
John McCall864e3962010-05-07 05:32:02 +000010971 case Expr::ObjCIsaExprClass:
Erik Pilkington29099de2016-07-16 00:35:23 +000010972 case Expr::ObjCAvailabilityCheckExprClass:
John McCall864e3962010-05-07 05:32:02 +000010973 case Expr::ShuffleVectorExprClass:
Hal Finkelc4d7c822013-09-18 03:29:45 +000010974 case Expr::ConvertVectorExprClass:
John McCall864e3962010-05-07 05:32:02 +000010975 case Expr::BlockExprClass:
John McCall864e3962010-05-07 05:32:02 +000010976 case Expr::NoStmtClass:
John McCall8d69a212010-11-15 23:31:06 +000010977 case Expr::OpaqueValueExprClass:
Douglas Gregore8e9dd62011-01-03 17:17:50 +000010978 case Expr::PackExpansionExprClass:
Douglas Gregorcdbc5392011-01-15 01:15:58 +000010979 case Expr::SubstNonTypeTemplateParmPackExprClass:
Richard Smithb15fe3a2012-09-12 00:56:43 +000010980 case Expr::FunctionParmPackExprClass:
Tanya Lattner55808c12011-06-04 00:47:47 +000010981 case Expr::AsTypeExprClass:
John McCall31168b02011-06-15 23:02:42 +000010982 case Expr::ObjCIndirectCopyRestoreExprClass:
Douglas Gregorfe314812011-06-21 17:03:29 +000010983 case Expr::MaterializeTemporaryExprClass:
John McCallfe96e0b2011-11-06 09:01:30 +000010984 case Expr::PseudoObjectExprClass:
Eli Friedmandf14b3a2011-10-11 02:20:01 +000010985 case Expr::AtomicExprClass:
Douglas Gregore31e6062012-02-07 10:09:13 +000010986 case Expr::LambdaExprClass:
Richard Smith0f0af192014-11-08 05:07:16 +000010987 case Expr::CXXFoldExprClass:
Richard Smith9f690bd2015-10-27 06:02:45 +000010988 case Expr::CoawaitExprClass:
Eric Fiselier20f25cb2017-03-06 23:38:15 +000010989 case Expr::DependentCoawaitExprClass:
Richard Smith9f690bd2015-10-27 06:02:45 +000010990 case Expr::CoyieldExprClass:
Richard Smith9e575da2012-12-28 13:25:52 +000010991 return ICEDiag(IK_NotICE, E->getLocStart());
Sebastian Redl12757ab2011-09-24 17:48:14 +000010992
Richard Smithf137f932014-01-25 20:50:08 +000010993 case Expr::InitListExprClass: {
10994 // C++03 [dcl.init]p13: If T is a scalar type, then a declaration of the
10995 // form "T x = { a };" is equivalent to "T x = a;".
10996 // Unless we're initializing a reference, T is a scalar as it is known to be
10997 // of integral or enumeration type.
10998 if (E->isRValue())
10999 if (cast<InitListExpr>(E)->getNumInits() == 1)
11000 return CheckICE(cast<InitListExpr>(E)->getInit(0), Ctx);
11001 return ICEDiag(IK_NotICE, E->getLocStart());
11002 }
11003
Douglas Gregor820ba7b2011-01-04 17:33:58 +000011004 case Expr::SizeOfPackExprClass:
John McCall864e3962010-05-07 05:32:02 +000011005 case Expr::GNUNullExprClass:
11006 // GCC considers the GNU __null value to be an integral constant expression.
11007 return NoDiag();
11008
John McCall7c454bb2011-07-15 05:09:51 +000011009 case Expr::SubstNonTypeTemplateParmExprClass:
11010 return
11011 CheckICE(cast<SubstNonTypeTemplateParmExpr>(E)->getReplacement(), Ctx);
11012
John McCall864e3962010-05-07 05:32:02 +000011013 case Expr::ParenExprClass:
11014 return CheckICE(cast<ParenExpr>(E)->getSubExpr(), Ctx);
Peter Collingbourne91147592011-04-15 00:35:48 +000011015 case Expr::GenericSelectionExprClass:
11016 return CheckICE(cast<GenericSelectionExpr>(E)->getResultExpr(), Ctx);
John McCall864e3962010-05-07 05:32:02 +000011017 case Expr::IntegerLiteralClass:
Leonard Chandb01c3a2018-06-20 17:19:40 +000011018 case Expr::FixedPointLiteralClass:
John McCall864e3962010-05-07 05:32:02 +000011019 case Expr::CharacterLiteralClass:
Ted Kremeneke65b0862012-03-06 20:05:56 +000011020 case Expr::ObjCBoolLiteralExprClass:
John McCall864e3962010-05-07 05:32:02 +000011021 case Expr::CXXBoolLiteralExprClass:
Douglas Gregor747eb782010-07-08 06:14:04 +000011022 case Expr::CXXScalarValueInitExprClass:
Douglas Gregor29c42f22012-02-24 07:38:34 +000011023 case Expr::TypeTraitExprClass:
John Wiegley6242b6a2011-04-28 00:16:57 +000011024 case Expr::ArrayTypeTraitExprClass:
John Wiegleyf9f65842011-04-25 06:54:41 +000011025 case Expr::ExpressionTraitExprClass:
Sebastian Redl4202c0f2010-09-10 20:55:43 +000011026 case Expr::CXXNoexceptExprClass:
John McCall864e3962010-05-07 05:32:02 +000011027 return NoDiag();
11028 case Expr::CallExprClass:
Alexis Hunt3b791862010-08-30 17:47:05 +000011029 case Expr::CXXOperatorCallExprClass: {
Richard Smith62f65952011-10-24 22:35:48 +000011030 // C99 6.6/3 allows function calls within unevaluated subexpressions of
11031 // constant expressions, but they can never be ICEs because an ICE cannot
11032 // contain an operand of (pointer to) function type.
John McCall864e3962010-05-07 05:32:02 +000011033 const CallExpr *CE = cast<CallExpr>(E);
Alp Tokera724cff2013-12-28 21:59:02 +000011034 if (CE->getBuiltinCallee())
John McCall864e3962010-05-07 05:32:02 +000011035 return CheckEvalInICE(E, Ctx);
Richard Smith9e575da2012-12-28 13:25:52 +000011036 return ICEDiag(IK_NotICE, E->getLocStart());
John McCall864e3962010-05-07 05:32:02 +000011037 }
Richard Smith6365c912012-02-24 22:12:32 +000011038 case Expr::DeclRefExprClass: {
John McCall864e3962010-05-07 05:32:02 +000011039 if (isa<EnumConstantDecl>(cast<DeclRefExpr>(E)->getDecl()))
11040 return NoDiag();
George Burgess IV00f70bd2018-03-01 05:43:23 +000011041 const ValueDecl *D = cast<DeclRefExpr>(E)->getDecl();
David Blaikiebbafb8a2012-03-11 07:00:24 +000011042 if (Ctx.getLangOpts().CPlusPlus &&
Richard Smith6365c912012-02-24 22:12:32 +000011043 D && IsConstNonVolatile(D->getType())) {
John McCall864e3962010-05-07 05:32:02 +000011044 // Parameter variables are never constants. Without this check,
11045 // getAnyInitializer() can find a default argument, which leads
11046 // to chaos.
11047 if (isa<ParmVarDecl>(D))
Richard Smith9e575da2012-12-28 13:25:52 +000011048 return ICEDiag(IK_NotICE, cast<DeclRefExpr>(E)->getLocation());
John McCall864e3962010-05-07 05:32:02 +000011049
11050 // C++ 7.1.5.1p2
11051 // A variable of non-volatile const-qualified integral or enumeration
11052 // type initialized by an ICE can be used in ICEs.
11053 if (const VarDecl *Dcl = dyn_cast<VarDecl>(D)) {
Richard Smithec8dcd22011-11-08 01:31:09 +000011054 if (!Dcl->getType()->isIntegralOrEnumerationType())
Richard Smith9e575da2012-12-28 13:25:52 +000011055 return ICEDiag(IK_NotICE, cast<DeclRefExpr>(E)->getLocation());
Richard Smithec8dcd22011-11-08 01:31:09 +000011056
Richard Smithd0b4dd62011-12-19 06:19:21 +000011057 const VarDecl *VD;
11058 // Look for a declaration of this variable that has an initializer, and
11059 // check whether it is an ICE.
11060 if (Dcl->getAnyInitializer(VD) && VD->checkInitIsICE())
11061 return NoDiag();
11062 else
Richard Smith9e575da2012-12-28 13:25:52 +000011063 return ICEDiag(IK_NotICE, cast<DeclRefExpr>(E)->getLocation());
John McCall864e3962010-05-07 05:32:02 +000011064 }
11065 }
Richard Smith9e575da2012-12-28 13:25:52 +000011066 return ICEDiag(IK_NotICE, E->getLocStart());
Richard Smith6365c912012-02-24 22:12:32 +000011067 }
John McCall864e3962010-05-07 05:32:02 +000011068 case Expr::UnaryOperatorClass: {
11069 const UnaryOperator *Exp = cast<UnaryOperator>(E);
11070 switch (Exp->getOpcode()) {
John McCalle3027922010-08-25 11:45:40 +000011071 case UO_PostInc:
11072 case UO_PostDec:
11073 case UO_PreInc:
11074 case UO_PreDec:
11075 case UO_AddrOf:
11076 case UO_Deref:
Richard Smith9f690bd2015-10-27 06:02:45 +000011077 case UO_Coawait:
Richard Smith62f65952011-10-24 22:35:48 +000011078 // C99 6.6/3 allows increment and decrement within unevaluated
11079 // subexpressions of constant expressions, but they can never be ICEs
11080 // because an ICE cannot contain an lvalue operand.
Richard Smith9e575da2012-12-28 13:25:52 +000011081 return ICEDiag(IK_NotICE, E->getLocStart());
John McCalle3027922010-08-25 11:45:40 +000011082 case UO_Extension:
11083 case UO_LNot:
11084 case UO_Plus:
11085 case UO_Minus:
11086 case UO_Not:
11087 case UO_Real:
11088 case UO_Imag:
John McCall864e3962010-05-07 05:32:02 +000011089 return CheckICE(Exp->getSubExpr(), Ctx);
John McCall864e3962010-05-07 05:32:02 +000011090 }
Richard Smith9e575da2012-12-28 13:25:52 +000011091
John McCall864e3962010-05-07 05:32:02 +000011092 // OffsetOf falls through here.
Galina Kistanovaf87496d2017-06-03 06:31:42 +000011093 LLVM_FALLTHROUGH;
John McCall864e3962010-05-07 05:32:02 +000011094 }
11095 case Expr::OffsetOfExprClass: {
Richard Smith9e575da2012-12-28 13:25:52 +000011096 // Note that per C99, offsetof must be an ICE. And AFAIK, using
11097 // EvaluateAsRValue matches the proposed gcc behavior for cases like
11098 // "offsetof(struct s{int x[4];}, x[1.0])". This doesn't affect
11099 // compliance: we should warn earlier for offsetof expressions with
11100 // array subscripts that aren't ICEs, and if the array subscripts
11101 // are ICEs, the value of the offsetof must be an integer constant.
11102 return CheckEvalInICE(E, Ctx);
John McCall864e3962010-05-07 05:32:02 +000011103 }
Peter Collingbournee190dee2011-03-11 19:24:49 +000011104 case Expr::UnaryExprOrTypeTraitExprClass: {
11105 const UnaryExprOrTypeTraitExpr *Exp = cast<UnaryExprOrTypeTraitExpr>(E);
11106 if ((Exp->getKind() == UETT_SizeOf) &&
11107 Exp->getTypeOfArgument()->isVariableArrayType())
Richard Smith9e575da2012-12-28 13:25:52 +000011108 return ICEDiag(IK_NotICE, E->getLocStart());
John McCall864e3962010-05-07 05:32:02 +000011109 return NoDiag();
11110 }
11111 case Expr::BinaryOperatorClass: {
11112 const BinaryOperator *Exp = cast<BinaryOperator>(E);
11113 switch (Exp->getOpcode()) {
John McCalle3027922010-08-25 11:45:40 +000011114 case BO_PtrMemD:
11115 case BO_PtrMemI:
11116 case BO_Assign:
11117 case BO_MulAssign:
11118 case BO_DivAssign:
11119 case BO_RemAssign:
11120 case BO_AddAssign:
11121 case BO_SubAssign:
11122 case BO_ShlAssign:
11123 case BO_ShrAssign:
11124 case BO_AndAssign:
11125 case BO_XorAssign:
11126 case BO_OrAssign:
Richard Smith62f65952011-10-24 22:35:48 +000011127 // C99 6.6/3 allows assignments within unevaluated subexpressions of
11128 // constant expressions, but they can never be ICEs because an ICE cannot
11129 // contain an lvalue operand.
Richard Smith9e575da2012-12-28 13:25:52 +000011130 return ICEDiag(IK_NotICE, E->getLocStart());
John McCall864e3962010-05-07 05:32:02 +000011131
John McCalle3027922010-08-25 11:45:40 +000011132 case BO_Mul:
11133 case BO_Div:
11134 case BO_Rem:
11135 case BO_Add:
11136 case BO_Sub:
11137 case BO_Shl:
11138 case BO_Shr:
11139 case BO_LT:
11140 case BO_GT:
11141 case BO_LE:
11142 case BO_GE:
11143 case BO_EQ:
11144 case BO_NE:
11145 case BO_And:
11146 case BO_Xor:
11147 case BO_Or:
Eric Fiselier0683c0e2018-05-07 21:07:10 +000011148 case BO_Comma:
11149 case BO_Cmp: {
John McCall864e3962010-05-07 05:32:02 +000011150 ICEDiag LHSResult = CheckICE(Exp->getLHS(), Ctx);
11151 ICEDiag RHSResult = CheckICE(Exp->getRHS(), Ctx);
John McCalle3027922010-08-25 11:45:40 +000011152 if (Exp->getOpcode() == BO_Div ||
11153 Exp->getOpcode() == BO_Rem) {
Richard Smith7b553f12011-10-29 00:50:52 +000011154 // EvaluateAsRValue gives an error for undefined Div/Rem, so make sure
John McCall864e3962010-05-07 05:32:02 +000011155 // we don't evaluate one.
Richard Smith9e575da2012-12-28 13:25:52 +000011156 if (LHSResult.Kind == IK_ICE && RHSResult.Kind == IK_ICE) {
Richard Smithcaf33902011-10-10 18:28:20 +000011157 llvm::APSInt REval = Exp->getRHS()->EvaluateKnownConstInt(Ctx);
John McCall864e3962010-05-07 05:32:02 +000011158 if (REval == 0)
Richard Smith9e575da2012-12-28 13:25:52 +000011159 return ICEDiag(IK_ICEIfUnevaluated, E->getLocStart());
John McCall864e3962010-05-07 05:32:02 +000011160 if (REval.isSigned() && REval.isAllOnesValue()) {
Richard Smithcaf33902011-10-10 18:28:20 +000011161 llvm::APSInt LEval = Exp->getLHS()->EvaluateKnownConstInt(Ctx);
John McCall864e3962010-05-07 05:32:02 +000011162 if (LEval.isMinSignedValue())
Richard Smith9e575da2012-12-28 13:25:52 +000011163 return ICEDiag(IK_ICEIfUnevaluated, E->getLocStart());
John McCall864e3962010-05-07 05:32:02 +000011164 }
11165 }
11166 }
John McCalle3027922010-08-25 11:45:40 +000011167 if (Exp->getOpcode() == BO_Comma) {
David Blaikiebbafb8a2012-03-11 07:00:24 +000011168 if (Ctx.getLangOpts().C99) {
John McCall864e3962010-05-07 05:32:02 +000011169 // C99 6.6p3 introduces a strange edge case: comma can be in an ICE
11170 // if it isn't evaluated.
Richard Smith9e575da2012-12-28 13:25:52 +000011171 if (LHSResult.Kind == IK_ICE && RHSResult.Kind == IK_ICE)
11172 return ICEDiag(IK_ICEIfUnevaluated, E->getLocStart());
John McCall864e3962010-05-07 05:32:02 +000011173 } else {
11174 // In both C89 and C++, commas in ICEs are illegal.
Richard Smith9e575da2012-12-28 13:25:52 +000011175 return ICEDiag(IK_NotICE, E->getLocStart());
John McCall864e3962010-05-07 05:32:02 +000011176 }
11177 }
Richard Smith9e575da2012-12-28 13:25:52 +000011178 return Worst(LHSResult, RHSResult);
John McCall864e3962010-05-07 05:32:02 +000011179 }
John McCalle3027922010-08-25 11:45:40 +000011180 case BO_LAnd:
11181 case BO_LOr: {
John McCall864e3962010-05-07 05:32:02 +000011182 ICEDiag LHSResult = CheckICE(Exp->getLHS(), Ctx);
11183 ICEDiag RHSResult = CheckICE(Exp->getRHS(), Ctx);
Richard Smith9e575da2012-12-28 13:25:52 +000011184 if (LHSResult.Kind == IK_ICE && RHSResult.Kind == IK_ICEIfUnevaluated) {
John McCall864e3962010-05-07 05:32:02 +000011185 // Rare case where the RHS has a comma "side-effect"; we need
11186 // to actually check the condition to see whether the side
11187 // with the comma is evaluated.
John McCalle3027922010-08-25 11:45:40 +000011188 if ((Exp->getOpcode() == BO_LAnd) !=
Richard Smithcaf33902011-10-10 18:28:20 +000011189 (Exp->getLHS()->EvaluateKnownConstInt(Ctx) == 0))
John McCall864e3962010-05-07 05:32:02 +000011190 return RHSResult;
11191 return NoDiag();
11192 }
11193
Richard Smith9e575da2012-12-28 13:25:52 +000011194 return Worst(LHSResult, RHSResult);
John McCall864e3962010-05-07 05:32:02 +000011195 }
11196 }
Galina Kistanovaf87496d2017-06-03 06:31:42 +000011197 LLVM_FALLTHROUGH;
John McCall864e3962010-05-07 05:32:02 +000011198 }
11199 case Expr::ImplicitCastExprClass:
11200 case Expr::CStyleCastExprClass:
11201 case Expr::CXXFunctionalCastExprClass:
11202 case Expr::CXXStaticCastExprClass:
11203 case Expr::CXXReinterpretCastExprClass:
Richard Smithc3e31e72011-10-24 18:26:35 +000011204 case Expr::CXXConstCastExprClass:
John McCall31168b02011-06-15 23:02:42 +000011205 case Expr::ObjCBridgedCastExprClass: {
John McCall864e3962010-05-07 05:32:02 +000011206 const Expr *SubExpr = cast<CastExpr>(E)->getSubExpr();
Richard Smith0b973d02011-12-18 02:33:09 +000011207 if (isa<ExplicitCastExpr>(E)) {
11208 if (const FloatingLiteral *FL
11209 = dyn_cast<FloatingLiteral>(SubExpr->IgnoreParenImpCasts())) {
11210 unsigned DestWidth = Ctx.getIntWidth(E->getType());
11211 bool DestSigned = E->getType()->isSignedIntegerOrEnumerationType();
11212 APSInt IgnoredVal(DestWidth, !DestSigned);
11213 bool Ignored;
11214 // If the value does not fit in the destination type, the behavior is
11215 // undefined, so we are not required to treat it as a constant
11216 // expression.
11217 if (FL->getValue().convertToInteger(IgnoredVal,
11218 llvm::APFloat::rmTowardZero,
11219 &Ignored) & APFloat::opInvalidOp)
Richard Smith9e575da2012-12-28 13:25:52 +000011220 return ICEDiag(IK_NotICE, E->getLocStart());
Richard Smith0b973d02011-12-18 02:33:09 +000011221 return NoDiag();
11222 }
11223 }
Eli Friedman76d4e432011-09-29 21:49:34 +000011224 switch (cast<CastExpr>(E)->getCastKind()) {
11225 case CK_LValueToRValue:
David Chisnallfa35df62012-01-16 17:27:18 +000011226 case CK_AtomicToNonAtomic:
11227 case CK_NonAtomicToAtomic:
Eli Friedman76d4e432011-09-29 21:49:34 +000011228 case CK_NoOp:
11229 case CK_IntegralToBoolean:
11230 case CK_IntegralCast:
John McCall864e3962010-05-07 05:32:02 +000011231 return CheckICE(SubExpr, Ctx);
Eli Friedman76d4e432011-09-29 21:49:34 +000011232 default:
Richard Smith9e575da2012-12-28 13:25:52 +000011233 return ICEDiag(IK_NotICE, E->getLocStart());
Eli Friedman76d4e432011-09-29 21:49:34 +000011234 }
John McCall864e3962010-05-07 05:32:02 +000011235 }
John McCallc07a0c72011-02-17 10:25:35 +000011236 case Expr::BinaryConditionalOperatorClass: {
11237 const BinaryConditionalOperator *Exp = cast<BinaryConditionalOperator>(E);
11238 ICEDiag CommonResult = CheckICE(Exp->getCommon(), Ctx);
Richard Smith9e575da2012-12-28 13:25:52 +000011239 if (CommonResult.Kind == IK_NotICE) return CommonResult;
John McCallc07a0c72011-02-17 10:25:35 +000011240 ICEDiag FalseResult = CheckICE(Exp->getFalseExpr(), Ctx);
Richard Smith9e575da2012-12-28 13:25:52 +000011241 if (FalseResult.Kind == IK_NotICE) return FalseResult;
11242 if (CommonResult.Kind == IK_ICEIfUnevaluated) return CommonResult;
11243 if (FalseResult.Kind == IK_ICEIfUnevaluated &&
Richard Smith74fc7212012-12-28 12:53:55 +000011244 Exp->getCommon()->EvaluateKnownConstInt(Ctx) != 0) return NoDiag();
John McCallc07a0c72011-02-17 10:25:35 +000011245 return FalseResult;
11246 }
John McCall864e3962010-05-07 05:32:02 +000011247 case Expr::ConditionalOperatorClass: {
11248 const ConditionalOperator *Exp = cast<ConditionalOperator>(E);
11249 // If the condition (ignoring parens) is a __builtin_constant_p call,
11250 // then only the true side is actually considered in an integer constant
11251 // expression, and it is fully evaluated. This is an important GNU
11252 // extension. See GCC PR38377 for discussion.
11253 if (const CallExpr *CallCE
11254 = dyn_cast<CallExpr>(Exp->getCond()->IgnoreParenCasts()))
Alp Tokera724cff2013-12-28 21:59:02 +000011255 if (CallCE->getBuiltinCallee() == Builtin::BI__builtin_constant_p)
Richard Smith5fab0c92011-12-28 19:48:30 +000011256 return CheckEvalInICE(E, Ctx);
John McCall864e3962010-05-07 05:32:02 +000011257 ICEDiag CondResult = CheckICE(Exp->getCond(), Ctx);
Richard Smith9e575da2012-12-28 13:25:52 +000011258 if (CondResult.Kind == IK_NotICE)
John McCall864e3962010-05-07 05:32:02 +000011259 return CondResult;
Douglas Gregorfcafc6e2011-05-24 16:02:01 +000011260
Richard Smithf57d8cb2011-12-09 22:58:01 +000011261 ICEDiag TrueResult = CheckICE(Exp->getTrueExpr(), Ctx);
11262 ICEDiag FalseResult = CheckICE(Exp->getFalseExpr(), Ctx);
Douglas Gregorfcafc6e2011-05-24 16:02:01 +000011263
Richard Smith9e575da2012-12-28 13:25:52 +000011264 if (TrueResult.Kind == IK_NotICE)
John McCall864e3962010-05-07 05:32:02 +000011265 return TrueResult;
Richard Smith9e575da2012-12-28 13:25:52 +000011266 if (FalseResult.Kind == IK_NotICE)
John McCall864e3962010-05-07 05:32:02 +000011267 return FalseResult;
Richard Smith9e575da2012-12-28 13:25:52 +000011268 if (CondResult.Kind == IK_ICEIfUnevaluated)
John McCall864e3962010-05-07 05:32:02 +000011269 return CondResult;
Richard Smith9e575da2012-12-28 13:25:52 +000011270 if (TrueResult.Kind == IK_ICE && FalseResult.Kind == IK_ICE)
John McCall864e3962010-05-07 05:32:02 +000011271 return NoDiag();
11272 // Rare case where the diagnostics depend on which side is evaluated
11273 // Note that if we get here, CondResult is 0, and at least one of
11274 // TrueResult and FalseResult is non-zero.
Richard Smith9e575da2012-12-28 13:25:52 +000011275 if (Exp->getCond()->EvaluateKnownConstInt(Ctx) == 0)
John McCall864e3962010-05-07 05:32:02 +000011276 return FalseResult;
John McCall864e3962010-05-07 05:32:02 +000011277 return TrueResult;
11278 }
11279 case Expr::CXXDefaultArgExprClass:
11280 return CheckICE(cast<CXXDefaultArgExpr>(E)->getExpr(), Ctx);
Richard Smith852c9db2013-04-20 22:23:05 +000011281 case Expr::CXXDefaultInitExprClass:
11282 return CheckICE(cast<CXXDefaultInitExpr>(E)->getExpr(), Ctx);
John McCall864e3962010-05-07 05:32:02 +000011283 case Expr::ChooseExprClass: {
Eli Friedman75807f22013-07-20 00:40:58 +000011284 return CheckICE(cast<ChooseExpr>(E)->getChosenSubExpr(), Ctx);
John McCall864e3962010-05-07 05:32:02 +000011285 }
11286 }
11287
David Blaikiee4d798f2012-01-20 21:50:17 +000011288 llvm_unreachable("Invalid StmtClass!");
John McCall864e3962010-05-07 05:32:02 +000011289}
11290
Richard Smithf57d8cb2011-12-09 22:58:01 +000011291/// Evaluate an expression as a C++11 integral constant expression.
Craig Toppera31a8822013-08-22 07:09:37 +000011292static bool EvaluateCPlusPlus11IntegralConstantExpr(const ASTContext &Ctx,
Richard Smithf57d8cb2011-12-09 22:58:01 +000011293 const Expr *E,
11294 llvm::APSInt *Value,
11295 SourceLocation *Loc) {
Erich Keane1ddd4bf2018-07-20 17:42:09 +000011296 if (!E->getType()->isIntegralOrUnscopedEnumerationType()) {
Richard Smithf57d8cb2011-12-09 22:58:01 +000011297 if (Loc) *Loc = E->getExprLoc();
11298 return false;
11299 }
11300
Richard Smith66e05fe2012-01-18 05:21:49 +000011301 APValue Result;
11302 if (!E->isCXX11ConstantExpr(Ctx, &Result, Loc))
Richard Smith92b1ce02011-12-12 09:28:41 +000011303 return false;
11304
Richard Smith98710fc2014-11-13 23:03:19 +000011305 if (!Result.isInt()) {
11306 if (Loc) *Loc = E->getExprLoc();
11307 return false;
11308 }
11309
Richard Smith66e05fe2012-01-18 05:21:49 +000011310 if (Value) *Value = Result.getInt();
Richard Smith92b1ce02011-12-12 09:28:41 +000011311 return true;
Richard Smithf57d8cb2011-12-09 22:58:01 +000011312}
11313
Craig Toppera31a8822013-08-22 07:09:37 +000011314bool Expr::isIntegerConstantExpr(const ASTContext &Ctx,
11315 SourceLocation *Loc) const {
Richard Smith2bf7fdb2013-01-02 11:42:31 +000011316 if (Ctx.getLangOpts().CPlusPlus11)
Craig Topper36250ad2014-05-12 05:36:57 +000011317 return EvaluateCPlusPlus11IntegralConstantExpr(Ctx, this, nullptr, Loc);
Richard Smithf57d8cb2011-12-09 22:58:01 +000011318
Richard Smith9e575da2012-12-28 13:25:52 +000011319 ICEDiag D = CheckICE(this, Ctx);
11320 if (D.Kind != IK_ICE) {
11321 if (Loc) *Loc = D.Loc;
John McCall864e3962010-05-07 05:32:02 +000011322 return false;
11323 }
Richard Smithf57d8cb2011-12-09 22:58:01 +000011324 return true;
11325}
11326
Craig Toppera31a8822013-08-22 07:09:37 +000011327bool Expr::isIntegerConstantExpr(llvm::APSInt &Value, const ASTContext &Ctx,
Richard Smithf57d8cb2011-12-09 22:58:01 +000011328 SourceLocation *Loc, bool isEvaluated) const {
Richard Smith2bf7fdb2013-01-02 11:42:31 +000011329 if (Ctx.getLangOpts().CPlusPlus11)
Richard Smithf57d8cb2011-12-09 22:58:01 +000011330 return EvaluateCPlusPlus11IntegralConstantExpr(Ctx, this, &Value, Loc);
11331
11332 if (!isIntegerConstantExpr(Ctx, Loc))
11333 return false;
Richard Smith5c40f092015-12-04 03:00:44 +000011334 // The only possible side-effects here are due to UB discovered in the
11335 // evaluation (for instance, INT_MAX + 1). In such a case, we are still
11336 // required to treat the expression as an ICE, so we produce the folded
11337 // value.
11338 if (!EvaluateAsInt(Value, Ctx, SE_AllowSideEffects))
John McCall864e3962010-05-07 05:32:02 +000011339 llvm_unreachable("ICE cannot be evaluated!");
John McCall864e3962010-05-07 05:32:02 +000011340 return true;
11341}
Richard Smith66e05fe2012-01-18 05:21:49 +000011342
Craig Toppera31a8822013-08-22 07:09:37 +000011343bool Expr::isCXX98IntegralConstantExpr(const ASTContext &Ctx) const {
Richard Smith9e575da2012-12-28 13:25:52 +000011344 return CheckICE(this, Ctx).Kind == IK_ICE;
Richard Smith98a0a492012-02-14 21:38:30 +000011345}
11346
Craig Toppera31a8822013-08-22 07:09:37 +000011347bool Expr::isCXX11ConstantExpr(const ASTContext &Ctx, APValue *Result,
Richard Smith66e05fe2012-01-18 05:21:49 +000011348 SourceLocation *Loc) const {
11349 // We support this checking in C++98 mode in order to diagnose compatibility
11350 // issues.
David Blaikiebbafb8a2012-03-11 07:00:24 +000011351 assert(Ctx.getLangOpts().CPlusPlus);
Richard Smith66e05fe2012-01-18 05:21:49 +000011352
Richard Smith98a0a492012-02-14 21:38:30 +000011353 // Build evaluation settings.
Richard Smith66e05fe2012-01-18 05:21:49 +000011354 Expr::EvalStatus Status;
Dmitri Gribenkof8579502013-01-12 19:30:44 +000011355 SmallVector<PartialDiagnosticAt, 8> Diags;
Richard Smith66e05fe2012-01-18 05:21:49 +000011356 Status.Diag = &Diags;
Richard Smith6d4c6582013-11-05 22:18:15 +000011357 EvalInfo Info(Ctx, Status, EvalInfo::EM_ConstantExpression);
Richard Smith66e05fe2012-01-18 05:21:49 +000011358
11359 APValue Scratch;
11360 bool IsConstExpr = ::EvaluateAsRValue(Info, this, Result ? *Result : Scratch);
11361
11362 if (!Diags.empty()) {
11363 IsConstExpr = false;
11364 if (Loc) *Loc = Diags[0].first;
11365 } else if (!IsConstExpr) {
11366 // FIXME: This shouldn't happen.
11367 if (Loc) *Loc = getExprLoc();
11368 }
11369
11370 return IsConstExpr;
11371}
Richard Smith253c2a32012-01-27 01:14:48 +000011372
Nick Lewycky35a6ef42014-01-11 02:50:57 +000011373bool Expr::EvaluateWithSubstitution(APValue &Value, ASTContext &Ctx,
11374 const FunctionDecl *Callee,
George Burgess IV177399e2017-01-09 04:12:14 +000011375 ArrayRef<const Expr*> Args,
11376 const Expr *This) const {
Nick Lewycky35a6ef42014-01-11 02:50:57 +000011377 Expr::EvalStatus Status;
11378 EvalInfo Info(Ctx, Status, EvalInfo::EM_ConstantExpressionUnevaluated);
11379
George Burgess IV177399e2017-01-09 04:12:14 +000011380 LValue ThisVal;
11381 const LValue *ThisPtr = nullptr;
11382 if (This) {
11383#ifndef NDEBUG
11384 auto *MD = dyn_cast<CXXMethodDecl>(Callee);
11385 assert(MD && "Don't provide `this` for non-methods.");
11386 assert(!MD->isStatic() && "Don't provide `this` for static methods.");
11387#endif
11388 if (EvaluateObjectArgument(Info, This, ThisVal))
11389 ThisPtr = &ThisVal;
11390 if (Info.EvalStatus.HasSideEffects)
11391 return false;
11392 }
11393
Nick Lewycky35a6ef42014-01-11 02:50:57 +000011394 ArgVector ArgValues(Args.size());
11395 for (ArrayRef<const Expr*>::iterator I = Args.begin(), E = Args.end();
11396 I != E; ++I) {
Nick Lewyckyf0202ca2014-12-16 06:12:01 +000011397 if ((*I)->isValueDependent() ||
11398 !Evaluate(ArgValues[I - Args.begin()], Info, *I))
Nick Lewycky35a6ef42014-01-11 02:50:57 +000011399 // If evaluation fails, throw away the argument entirely.
11400 ArgValues[I - Args.begin()] = APValue();
11401 if (Info.EvalStatus.HasSideEffects)
11402 return false;
11403 }
11404
11405 // Build fake call to Callee.
George Burgess IV177399e2017-01-09 04:12:14 +000011406 CallStackFrame Frame(Info, Callee->getLocation(), Callee, ThisPtr,
Nick Lewycky35a6ef42014-01-11 02:50:57 +000011407 ArgValues.data());
11408 return Evaluate(Value, Info, this) && !Info.EvalStatus.HasSideEffects;
11409}
11410
Richard Smith253c2a32012-01-27 01:14:48 +000011411bool Expr::isPotentialConstantExpr(const FunctionDecl *FD,
Dmitri Gribenkof8579502013-01-12 19:30:44 +000011412 SmallVectorImpl<
Richard Smith253c2a32012-01-27 01:14:48 +000011413 PartialDiagnosticAt> &Diags) {
11414 // FIXME: It would be useful to check constexpr function templates, but at the
11415 // moment the constant expression evaluator cannot cope with the non-rigorous
11416 // ASTs which we build for dependent expressions.
11417 if (FD->isDependentContext())
11418 return true;
11419
11420 Expr::EvalStatus Status;
11421 Status.Diag = &Diags;
11422
Richard Smith6d4c6582013-11-05 22:18:15 +000011423 EvalInfo Info(FD->getASTContext(), Status,
11424 EvalInfo::EM_PotentialConstantExpression);
Richard Smith253c2a32012-01-27 01:14:48 +000011425
11426 const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD);
Craig Topper36250ad2014-05-12 05:36:57 +000011427 const CXXRecordDecl *RD = MD ? MD->getParent()->getCanonicalDecl() : nullptr;
Richard Smith253c2a32012-01-27 01:14:48 +000011428
Richard Smith7525ff62013-05-09 07:14:00 +000011429 // Fabricate an arbitrary expression on the stack and pretend that it
Richard Smith253c2a32012-01-27 01:14:48 +000011430 // is a temporary being used as the 'this' pointer.
11431 LValue This;
11432 ImplicitValueInitExpr VIE(RD ? Info.Ctx.getRecordType(RD) : Info.Ctx.IntTy);
Akira Hatanaka4e2698c2018-04-10 05:15:01 +000011433 This.set({&VIE, Info.CurrentCall->Index});
Richard Smith253c2a32012-01-27 01:14:48 +000011434
Richard Smith253c2a32012-01-27 01:14:48 +000011435 ArrayRef<const Expr*> Args;
11436
Richard Smith2e312c82012-03-03 22:46:17 +000011437 APValue Scratch;
Richard Smith7525ff62013-05-09 07:14:00 +000011438 if (const CXXConstructorDecl *CD = dyn_cast<CXXConstructorDecl>(FD)) {
11439 // Evaluate the call as a constant initializer, to allow the construction
11440 // of objects of non-literal types.
11441 Info.setEvaluatingDecl(This.getLValueBase(), Scratch);
Richard Smith5179eb72016-06-28 19:03:57 +000011442 HandleConstructorCall(&VIE, This, Args, CD, Info, Scratch);
11443 } else {
11444 SourceLocation Loc = FD->getLocation();
Craig Topper36250ad2014-05-12 05:36:57 +000011445 HandleFunctionCall(Loc, FD, (MD && MD->isInstance()) ? &This : nullptr,
Richard Smith52a980a2015-08-28 02:43:42 +000011446 Args, FD->getBody(), Info, Scratch, nullptr);
Richard Smith5179eb72016-06-28 19:03:57 +000011447 }
Richard Smith253c2a32012-01-27 01:14:48 +000011448
11449 return Diags.empty();
11450}
Nick Lewycky35a6ef42014-01-11 02:50:57 +000011451
11452bool Expr::isPotentialConstantExprUnevaluated(Expr *E,
11453 const FunctionDecl *FD,
11454 SmallVectorImpl<
11455 PartialDiagnosticAt> &Diags) {
11456 Expr::EvalStatus Status;
11457 Status.Diag = &Diags;
11458
11459 EvalInfo Info(FD->getASTContext(), Status,
11460 EvalInfo::EM_PotentialConstantExpressionUnevaluated);
11461
11462 // Fabricate a call stack frame to give the arguments a plausible cover story.
11463 ArrayRef<const Expr*> Args;
11464 ArgVector ArgValues(0);
11465 bool Success = EvaluateArgs(Args, ArgValues, Info);
11466 (void)Success;
11467 assert(Success &&
11468 "Failed to set up arguments for potential constant evaluation");
Craig Topper36250ad2014-05-12 05:36:57 +000011469 CallStackFrame Frame(Info, SourceLocation(), FD, nullptr, ArgValues.data());
Nick Lewycky35a6ef42014-01-11 02:50:57 +000011470
11471 APValue ResultScratch;
11472 Evaluate(ResultScratch, Info, E);
11473 return Diags.empty();
11474}
George Burgess IV3e3bb95b2015-12-02 21:58:08 +000011475
11476bool Expr::tryEvaluateObjectSize(uint64_t &Result, ASTContext &Ctx,
11477 unsigned Type) const {
11478 if (!getType()->isPointerType())
11479 return false;
11480
11481 Expr::EvalStatus Status;
11482 EvalInfo Info(Ctx, Status, EvalInfo::EM_ConstantFold);
George Burgess IVe3763372016-12-22 02:50:20 +000011483 return tryEvaluateBuiltinObjectSize(this, Type, Info, Result);
George Burgess IV3e3bb95b2015-12-02 21:58:08 +000011484}