1 //===--- ExprConstant.cpp - Expression Constant Evaluator -----------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // This file implements the Expr constant evaluator.
10 //
11 // Constant expression evaluation produces four main results:
12 //
13 //  * A success/failure flag indicating whether constant folding was successful.
14 //    This is the 'bool' return value used by most of the code in this file. A
15 //    'false' return value indicates that constant folding has failed, and any
16 //    appropriate diagnostic has already been produced.
17 //
18 //  * An evaluated result, valid only if constant folding has not failed.
19 //
20 //  * A flag indicating if evaluation encountered (unevaluated) side-effects.
21 //    These arise in cases such as (sideEffect(), 0) and (sideEffect() || 1),
22 //    where it is possible to determine the evaluated result regardless.
23 //
24 //  * A set of notes indicating why the evaluation was not a constant expression
25 //    (under the C++11 / C++1y rules only, at the moment), or, if folding failed
26 //    too, why the expression could not be folded.
27 //
28 // If we are checking for a potential constant expression, failure to constant
29 // fold a potential constant sub-expression will be indicated by a 'false'
30 // return value (the expression could not be folded) and no diagnostic (the
31 // expression is not necessarily non-constant).
32 //
33 //===----------------------------------------------------------------------===//
34 
35 #include "Interp/Context.h"
36 #include "Interp/Frame.h"
37 #include "Interp/State.h"
38 #include "clang/AST/APValue.h"
39 #include "clang/AST/ASTContext.h"
40 #include "clang/AST/ASTDiagnostic.h"
41 #include "clang/AST/ASTLambda.h"
42 #include "clang/AST/Attr.h"
43 #include "clang/AST/CXXInheritance.h"
44 #include "clang/AST/CharUnits.h"
45 #include "clang/AST/CurrentSourceLocExprScope.h"
46 #include "clang/AST/Expr.h"
47 #include "clang/AST/OSLog.h"
48 #include "clang/AST/OptionalDiagnostic.h"
49 #include "clang/AST/RecordLayout.h"
50 #include "clang/AST/StmtVisitor.h"
51 #include "clang/AST/TypeLoc.h"
52 #include "clang/Basic/Builtins.h"
53 #include "clang/Basic/FixedPoint.h"
54 #include "clang/Basic/TargetInfo.h"
55 #include "llvm/ADT/Optional.h"
56 #include "llvm/ADT/SmallBitVector.h"
57 #include "llvm/Support/Debug.h"
58 #include "llvm/Support/SaveAndRestore.h"
59 #include "llvm/Support/raw_ostream.h"
60 #include <cstring>
61 #include <functional>
62 
63 #define DEBUG_TYPE "exprconstant"
64 
65 using namespace clang;
66 using llvm::APInt;
67 using llvm::APSInt;
68 using llvm::APFloat;
69 using llvm::Optional;
70 
71 namespace {
72   struct LValue;
73   class CallStackFrame;
74   class EvalInfo;
75 
76   using SourceLocExprScopeGuard =
77       CurrentSourceLocExprScope::SourceLocExprScopeGuard;
78 
79   static QualType getType(APValue::LValueBase B) {
80     if (!B) return QualType();
81     if (const ValueDecl *D = B.dyn_cast<const ValueDecl*>()) {
82       // FIXME: It's unclear where we're supposed to take the type from, and
83       // this actually matters for arrays of unknown bound. Eg:
84       //
85       // extern int arr[]; void f() { extern int arr[3]; };
86       // constexpr int *p = &arr[1]; // valid?
87       //
88       // For now, we take the array bound from the most recent declaration.
89       for (auto *Redecl = cast<ValueDecl>(D->getMostRecentDecl()); Redecl;
90            Redecl = cast_or_null<ValueDecl>(Redecl->getPreviousDecl())) {
91         QualType T = Redecl->getType();
92         if (!T->isIncompleteArrayType())
93           return T;
94       }
95       return D->getType();
96     }
97 
98     if (B.is<TypeInfoLValue>())
99       return B.getTypeInfoType();
100 
101     if (B.is<DynamicAllocLValue>())
102       return B.getDynamicAllocType();
103 
104     const Expr *Base = B.get<const Expr*>();
105 
106     // For a materialized temporary, the type of the temporary we materialized
107     // may not be the type of the expression.
108     if (const MaterializeTemporaryExpr *MTE =
109             dyn_cast<MaterializeTemporaryExpr>(Base)) {
110       SmallVector<const Expr *, 2> CommaLHSs;
111       SmallVector<SubobjectAdjustment, 2> Adjustments;
112       const Expr *Temp = MTE->getSubExpr();
113       const Expr *Inner = Temp->skipRValueSubobjectAdjustments(CommaLHSs,
114                                                                Adjustments);
115       // Keep any cv-qualifiers from the reference if we generated a temporary
116       // for it directly. Otherwise use the type after adjustment.
117       if (!Adjustments.empty())
118         return Inner->getType();
119     }
120 
121     return Base->getType();
122   }
123 
124   /// Get an LValue path entry, which is known to not be an array index, as a
125   /// field declaration.
126   static const FieldDecl *getAsField(APValue::LValuePathEntry E) {
127     return dyn_cast_or_null<FieldDecl>(E.getAsBaseOrMember().getPointer());
128   }
129   /// Get an LValue path entry, which is known to not be an array index, as a
130   /// base class declaration.
131   static const CXXRecordDecl *getAsBaseClass(APValue::LValuePathEntry E) {
132     return dyn_cast_or_null<CXXRecordDecl>(E.getAsBaseOrMember().getPointer());
133   }
134   /// Determine whether this LValue path entry for a base class names a virtual
135   /// base class.
136   static bool isVirtualBaseClass(APValue::LValuePathEntry E) {
137     return E.getAsBaseOrMember().getInt();
138   }
139 
140   /// Given an expression, determine the type used to store the result of
141   /// evaluating that expression.
142   static QualType getStorageType(const ASTContext &Ctx, const Expr *E) {
143     if (E->isRValue())
144       return E->getType();
145     return Ctx.getLValueReferenceType(E->getType());
146   }
147 
148   /// Given a CallExpr, try to get the alloc_size attribute. May return null.
149   static const AllocSizeAttr *getAllocSizeAttr(const CallExpr *CE) {
150     const FunctionDecl *Callee = CE->getDirectCallee();
151     return Callee ? Callee->getAttr<AllocSizeAttr>() : nullptr;
152   }
153 
154   /// Attempts to unwrap a CallExpr (with an alloc_size attribute) from an Expr.
155   /// This will look through a single cast.
156   ///
157   /// Returns null if we couldn't unwrap a function with alloc_size.
158   static const CallExpr *tryUnwrapAllocSizeCall(const Expr *E) {
159     if (!E->getType()->isPointerType())
160       return nullptr;
161 
162     E = E->IgnoreParens();
163     // If we're doing a variable assignment from e.g. malloc(N), there will
164     // probably be a cast of some kind. In exotic cases, we might also see a
165     // top-level ExprWithCleanups. Ignore them either way.
166     if (const auto *FE = dyn_cast<FullExpr>(E))
167       E = FE->getSubExpr()->IgnoreParens();
168 
169     if (const auto *Cast = dyn_cast<CastExpr>(E))
170       E = Cast->getSubExpr()->IgnoreParens();
171 
172     if (const auto *CE = dyn_cast<CallExpr>(E))
173       return getAllocSizeAttr(CE) ? CE : nullptr;
174     return nullptr;
175   }
176 
177   /// Determines whether or not the given Base contains a call to a function
178   /// with the alloc_size attribute.
179   static bool isBaseAnAllocSizeCall(APValue::LValueBase Base) {
180     const auto *E = Base.dyn_cast<const Expr *>();
181     return E && E->getType()->isPointerType() && tryUnwrapAllocSizeCall(E);
182   }
183 
184   /// The bound to claim that an array of unknown bound has.
185   /// The value in MostDerivedArraySize is undefined in this case. So, set it
186   /// to an arbitrary value that's likely to loudly break things if it's used.
187   static const uint64_t AssumedSizeForUnsizedArray =
188       std::numeric_limits<uint64_t>::max() / 2;
189 
190   /// Determines if an LValue with the given LValueBase will have an unsized
191   /// array in its designator.
192   /// Find the path length and type of the most-derived subobject in the given
193   /// path, and find the size of the containing array, if any.
194   static unsigned
195   findMostDerivedSubobject(ASTContext &Ctx, APValue::LValueBase Base,
196                            ArrayRef<APValue::LValuePathEntry> Path,
197                            uint64_t &ArraySize, QualType &Type, bool &IsArray,
198                            bool &FirstEntryIsUnsizedArray) {
199     // This only accepts LValueBases from APValues, and APValues don't support
200     // arrays that lack size info.
201     assert(!isBaseAnAllocSizeCall(Base) &&
202            "Unsized arrays shouldn't appear here");
203     unsigned MostDerivedLength = 0;
204     Type = getType(Base);
205 
206     for (unsigned I = 0, N = Path.size(); I != N; ++I) {
207       if (Type->isArrayType()) {
208         const ArrayType *AT = Ctx.getAsArrayType(Type);
209         Type = AT->getElementType();
210         MostDerivedLength = I + 1;
211         IsArray = true;
212 
213         if (auto *CAT = dyn_cast<ConstantArrayType>(AT)) {
214           ArraySize = CAT->getSize().getZExtValue();
215         } else {
216           assert(I == 0 && "unexpected unsized array designator");
217           FirstEntryIsUnsizedArray = true;
218           ArraySize = AssumedSizeForUnsizedArray;
219         }
220       } else if (Type->isAnyComplexType()) {
221         const ComplexType *CT = Type->castAs<ComplexType>();
222         Type = CT->getElementType();
223         ArraySize = 2;
224         MostDerivedLength = I + 1;
225         IsArray = true;
226       } else if (const FieldDecl *FD = getAsField(Path[I])) {
227         Type = FD->getType();
228         ArraySize = 0;
229         MostDerivedLength = I + 1;
230         IsArray = false;
231       } else {
232         // Path[I] describes a base class.
233         ArraySize = 0;
234         IsArray = false;
235       }
236     }
237     return MostDerivedLength;
238   }
239 
240   /// A path from a glvalue to a subobject of that glvalue.
241   struct SubobjectDesignator {
242     /// True if the subobject was named in a manner not supported by C++11. Such
243     /// lvalues can still be folded, but they are not core constant expressions
244     /// and we cannot perform lvalue-to-rvalue conversions on them.
245     unsigned Invalid : 1;
246 
247     /// Is this a pointer one past the end of an object?
248     unsigned IsOnePastTheEnd : 1;
249 
250     /// Indicator of whether the first entry is an unsized array.
251     unsigned FirstEntryIsAnUnsizedArray : 1;
252 
253     /// Indicator of whether the most-derived object is an array element.
254     unsigned MostDerivedIsArrayElement : 1;
255 
256     /// The length of the path to the most-derived object of which this is a
257     /// subobject.
258     unsigned MostDerivedPathLength : 28;
259 
260     /// The size of the array of which the most-derived object is an element.
261     /// This will always be 0 if the most-derived object is not an array
262     /// element. 0 is not an indicator of whether or not the most-derived object
263     /// is an array, however, because 0-length arrays are allowed.
264     ///
265     /// If the current array is an unsized array, the value of this is
266     /// undefined.
267     uint64_t MostDerivedArraySize;
268 
269     /// The type of the most derived object referred to by this address.
270     QualType MostDerivedType;
271 
272     typedef APValue::LValuePathEntry PathEntry;
273 
274     /// The entries on the path from the glvalue to the designated subobject.
275     SmallVector<PathEntry, 8> Entries;
276 
277     SubobjectDesignator() : Invalid(true) {}
278 
279     explicit SubobjectDesignator(QualType T)
280         : Invalid(false), IsOnePastTheEnd(false),
281           FirstEntryIsAnUnsizedArray(false), MostDerivedIsArrayElement(false),
282           MostDerivedPathLength(0), MostDerivedArraySize(0),
283           MostDerivedType(T) {}
284 
285     SubobjectDesignator(ASTContext &Ctx, const APValue &V)
286         : Invalid(!V.isLValue() || !V.hasLValuePath()), IsOnePastTheEnd(false),
287           FirstEntryIsAnUnsizedArray(false), MostDerivedIsArrayElement(false),
288           MostDerivedPathLength(0), MostDerivedArraySize(0) {
289       assert(V.isLValue() && "Non-LValue used to make an LValue designator?");
290       if (!Invalid) {
291         IsOnePastTheEnd = V.isLValueOnePastTheEnd();
292         ArrayRef<PathEntry> VEntries = V.getLValuePath();
293         Entries.insert(Entries.end(), VEntries.begin(), VEntries.end());
294         if (V.getLValueBase()) {
295           bool IsArray = false;
296           bool FirstIsUnsizedArray = false;
297           MostDerivedPathLength = findMostDerivedSubobject(
298               Ctx, V.getLValueBase(), V.getLValuePath(), MostDerivedArraySize,
299               MostDerivedType, IsArray, FirstIsUnsizedArray);
300           MostDerivedIsArrayElement = IsArray;
301           FirstEntryIsAnUnsizedArray = FirstIsUnsizedArray;
302         }
303       }
304     }
305 
306     void truncate(ASTContext &Ctx, APValue::LValueBase Base,
307                   unsigned NewLength) {
308       if (Invalid)
309         return;
310 
311       assert(Base && "cannot truncate path for null pointer");
312       assert(NewLength <= Entries.size() && "not a truncation");
313 
314       if (NewLength == Entries.size())
315         return;
316       Entries.resize(NewLength);
317 
318       bool IsArray = false;
319       bool FirstIsUnsizedArray = false;
320       MostDerivedPathLength = findMostDerivedSubobject(
321           Ctx, Base, Entries, MostDerivedArraySize, MostDerivedType, IsArray,
322           FirstIsUnsizedArray);
323       MostDerivedIsArrayElement = IsArray;
324       FirstEntryIsAnUnsizedArray = FirstIsUnsizedArray;
325     }
326 
327     void setInvalid() {
328       Invalid = true;
329       Entries.clear();
330     }
331 
332     /// Determine whether the most derived subobject is an array without a
333     /// known bound.
334     bool isMostDerivedAnUnsizedArray() const {
335       assert(!Invalid && "Calling this makes no sense on invalid designators");
336       return Entries.size() == 1 && FirstEntryIsAnUnsizedArray;
337     }
338 
339     /// Determine what the most derived array's size is. Results in an assertion
340     /// failure if the most derived array lacks a size.
341     uint64_t getMostDerivedArraySize() const {
342       assert(!isMostDerivedAnUnsizedArray() && "Unsized array has no size");
343       return MostDerivedArraySize;
344     }
345 
346     /// Determine whether this is a one-past-the-end pointer.
347     bool isOnePastTheEnd() const {
348       assert(!Invalid);
349       if (IsOnePastTheEnd)
350         return true;
351       if (!isMostDerivedAnUnsizedArray() && MostDerivedIsArrayElement &&
352           Entries[MostDerivedPathLength - 1].getAsArrayIndex() ==
353               MostDerivedArraySize)
354         return true;
355       return false;
356     }
357 
358     /// Get the range of valid index adjustments in the form
359     ///   {maximum value that can be subtracted from this pointer,
360     ///    maximum value that can be added to this pointer}
361     std::pair<uint64_t, uint64_t> validIndexAdjustments() {
362       if (Invalid || isMostDerivedAnUnsizedArray())
363         return {0, 0};
364 
365       // [expr.add]p4: For the purposes of these operators, a pointer to a
366       // nonarray object behaves the same as a pointer to the first element of
367       // an array of length one with the type of the object as its element type.
368       bool IsArray = MostDerivedPathLength == Entries.size() &&
369                      MostDerivedIsArrayElement;
370       uint64_t ArrayIndex = IsArray ? Entries.back().getAsArrayIndex()
371                                     : (uint64_t)IsOnePastTheEnd;
372       uint64_t ArraySize =
373           IsArray ? getMostDerivedArraySize() : (uint64_t)1;
374       return {ArrayIndex, ArraySize - ArrayIndex};
375     }
376 
377     /// Check that this refers to a valid subobject.
378     bool isValidSubobject() const {
379       if (Invalid)
380         return false;
381       return !isOnePastTheEnd();
382     }
383     /// Check that this refers to a valid subobject, and if not, produce a
384     /// relevant diagnostic and set the designator as invalid.
385     bool checkSubobject(EvalInfo &Info, const Expr *E, CheckSubobjectKind CSK);
386 
387     /// Get the type of the designated object.
388     QualType getType(ASTContext &Ctx) const {
389       assert(!Invalid && "invalid designator has no subobject type");
390       return MostDerivedPathLength == Entries.size()
391                  ? MostDerivedType
392                  : Ctx.getRecordType(getAsBaseClass(Entries.back()));
393     }
394 
395     /// Update this designator to refer to the first element within this array.
396     void addArrayUnchecked(const ConstantArrayType *CAT) {
397       Entries.push_back(PathEntry::ArrayIndex(0));
398 
399       // This is a most-derived object.
400       MostDerivedType = CAT->getElementType();
401       MostDerivedIsArrayElement = true;
402       MostDerivedArraySize = CAT->getSize().getZExtValue();
403       MostDerivedPathLength = Entries.size();
404     }
405     /// Update this designator to refer to the first element within the array of
406     /// elements of type T. This is an array of unknown size.
407     void addUnsizedArrayUnchecked(QualType ElemTy) {
408       Entries.push_back(PathEntry::ArrayIndex(0));
409 
410       MostDerivedType = ElemTy;
411       MostDerivedIsArrayElement = true;
412       // The value in MostDerivedArraySize is undefined in this case. So, set it
413       // to an arbitrary value that's likely to loudly break things if it's
414       // used.
415       MostDerivedArraySize = AssumedSizeForUnsizedArray;
416       MostDerivedPathLength = Entries.size();
417     }
418     /// Update this designator to refer to the given base or member of this
419     /// object.
420     void addDeclUnchecked(const Decl *D, bool Virtual = false) {
421       Entries.push_back(APValue::BaseOrMemberType(D, Virtual));
422 
423       // If this isn't a base class, it's a new most-derived object.
424       if (const FieldDecl *FD = dyn_cast<FieldDecl>(D)) {
425         MostDerivedType = FD->getType();
426         MostDerivedIsArrayElement = false;
427         MostDerivedArraySize = 0;
428         MostDerivedPathLength = Entries.size();
429       }
430     }
431     /// Update this designator to refer to the given complex component.
432     void addComplexUnchecked(QualType EltTy, bool Imag) {
433       Entries.push_back(PathEntry::ArrayIndex(Imag));
434 
435       // This is technically a most-derived object, though in practice this
436       // is unlikely to matter.
437       MostDerivedType = EltTy;
438       MostDerivedIsArrayElement = true;
439       MostDerivedArraySize = 2;
440       MostDerivedPathLength = Entries.size();
441     }
442     void diagnoseUnsizedArrayPointerArithmetic(EvalInfo &Info, const Expr *E);
443     void diagnosePointerArithmetic(EvalInfo &Info, const Expr *E,
444                                    const APSInt &N);
445     /// Add N to the address of this subobject.
446     void adjustIndex(EvalInfo &Info, const Expr *E, APSInt N) {
447       if (Invalid || !N) return;
448       uint64_t TruncatedN = N.extOrTrunc(64).getZExtValue();
449       if (isMostDerivedAnUnsizedArray()) {
450         diagnoseUnsizedArrayPointerArithmetic(Info, E);
451         // Can't verify -- trust that the user is doing the right thing (or if
452         // not, trust that the caller will catch the bad behavior).
453         // FIXME: Should we reject if this overflows, at least?
454         Entries.back() = PathEntry::ArrayIndex(
455             Entries.back().getAsArrayIndex() + TruncatedN);
456         return;
457       }
458 
459       // [expr.add]p4: For the purposes of these operators, a pointer to a
460       // nonarray object behaves the same as a pointer to the first element of
461       // an array of length one with the type of the object as its element type.
462       bool IsArray = MostDerivedPathLength == Entries.size() &&
463                      MostDerivedIsArrayElement;
464       uint64_t ArrayIndex = IsArray ? Entries.back().getAsArrayIndex()
465                                     : (uint64_t)IsOnePastTheEnd;
466       uint64_t ArraySize =
467           IsArray ? getMostDerivedArraySize() : (uint64_t)1;
468 
469       if (N < -(int64_t)ArrayIndex || N > ArraySize - ArrayIndex) {
470         // Calculate the actual index in a wide enough type, so we can include
471         // it in the note.
472         N = N.extend(std::max<unsigned>(N.getBitWidth() + 1, 65));
473         (llvm::APInt&)N += ArrayIndex;
474         assert(N.ugt(ArraySize) && "bounds check failed for in-bounds index");
475         diagnosePointerArithmetic(Info, E, N);
476         setInvalid();
477         return;
478       }
479 
480       ArrayIndex += TruncatedN;
481       assert(ArrayIndex <= ArraySize &&
482              "bounds check succeeded for out-of-bounds index");
483 
484       if (IsArray)
485         Entries.back() = PathEntry::ArrayIndex(ArrayIndex);
486       else
487         IsOnePastTheEnd = (ArrayIndex != 0);
488     }
489   };
490 
491   /// A stack frame in the constexpr call stack.
492   class CallStackFrame : public interp::Frame {
493   public:
494     EvalInfo &Info;
495 
496     /// Parent - The caller of this stack frame.
497     CallStackFrame *Caller;
498 
499     /// Callee - The function which was called.
500     const FunctionDecl *Callee;
501 
502     /// This - The binding for the this pointer in this call, if any.
503     const LValue *This;
504 
505     /// Arguments - Parameter bindings for this function call, indexed by
506     /// parameters' function scope indices.
507     APValue *Arguments;
508 
509     /// Source location information about the default argument or default
510     /// initializer expression we're evaluating, if any.
511     CurrentSourceLocExprScope CurSourceLocExprScope;
512 
513     // Note that we intentionally use std::map here so that references to
514     // values are stable.
515     typedef std::pair<const void *, unsigned> MapKeyTy;
516     typedef std::map<MapKeyTy, APValue> MapTy;
517     /// Temporaries - Temporary lvalues materialized within this stack frame.
518     MapTy Temporaries;
519 
520     /// CallLoc - The location of the call expression for this call.
521     SourceLocation CallLoc;
522 
523     /// Index - The call index of this call.
524     unsigned Index;
525 
526     /// The stack of integers for tracking version numbers for temporaries.
527     SmallVector<unsigned, 2> TempVersionStack = {1};
528     unsigned CurTempVersion = TempVersionStack.back();
529 
530     unsigned getTempVersion() const { return TempVersionStack.back(); }
531 
532     void pushTempVersion() {
533       TempVersionStack.push_back(++CurTempVersion);
534     }
535 
536     void popTempVersion() {
537       TempVersionStack.pop_back();
538     }
539 
540     // FIXME: Adding this to every 'CallStackFrame' may have a nontrivial impact
541     // on the overall stack usage of deeply-recursing constexpr evaluations.
542     // (We should cache this map rather than recomputing it repeatedly.)
543     // But let's try this and see how it goes; we can look into caching the map
544     // as a later change.
545 
546     /// LambdaCaptureFields - Mapping from captured variables/this to
547     /// corresponding data members in the closure class.
548     llvm::DenseMap<const VarDecl *, FieldDecl *> LambdaCaptureFields;
549     FieldDecl *LambdaThisCaptureField;
550 
551     CallStackFrame(EvalInfo &Info, SourceLocation CallLoc,
552                    const FunctionDecl *Callee, const LValue *This,
553                    APValue *Arguments);
554     ~CallStackFrame();
555 
556     // Return the temporary for Key whose version number is Version.
557     APValue *getTemporary(const void *Key, unsigned Version) {
558       MapKeyTy KV(Key, Version);
559       auto LB = Temporaries.lower_bound(KV);
560       if (LB != Temporaries.end() && LB->first == KV)
561         return &LB->second;
562       // Pair (Key,Version) wasn't found in the map. Check that no elements
563       // in the map have 'Key' as their key.
564       assert((LB == Temporaries.end() || LB->first.first != Key) &&
565              (LB == Temporaries.begin() || std::prev(LB)->first.first != Key) &&
566              "Element with key 'Key' found in map");
567       return nullptr;
568     }
569 
570     // Return the current temporary for Key in the map.
571     APValue *getCurrentTemporary(const void *Key) {
572       auto UB = Temporaries.upper_bound(MapKeyTy(Key, UINT_MAX));
573       if (UB != Temporaries.begin() && std::prev(UB)->first.first == Key)
574         return &std::prev(UB)->second;
575       return nullptr;
576     }
577 
578     // Return the version number of the current temporary for Key.
579     unsigned getCurrentTemporaryVersion(const void *Key) const {
580       auto UB = Temporaries.upper_bound(MapKeyTy(Key, UINT_MAX));
581       if (UB != Temporaries.begin() && std::prev(UB)->first.first == Key)
582         return std::prev(UB)->first.second;
583       return 0;
584     }
585 
586     /// Allocate storage for an object of type T in this stack frame.
587     /// Populates LV with a handle to the created object. Key identifies
588     /// the temporary within the stack frame, and must not be reused without
589     /// bumping the temporary version number.
590     template<typename KeyT>
591     APValue &createTemporary(const KeyT *Key, QualType T,
592                              bool IsLifetimeExtended, LValue &LV);
593 
594     void describe(llvm::raw_ostream &OS) override;
595 
596     Frame *getCaller() const override { return Caller; }
597     SourceLocation getCallLocation() const override { return CallLoc; }
598     const FunctionDecl *getCallee() const override { return Callee; }
599 
600     bool isStdFunction() const {
601       for (const DeclContext *DC = Callee; DC; DC = DC->getParent())
602         if (DC->isStdNamespace())
603           return true;
604       return false;
605     }
606   };
607 
608   /// Temporarily override 'this'.
609   class ThisOverrideRAII {
610   public:
611     ThisOverrideRAII(CallStackFrame &Frame, const LValue *NewThis, bool Enable)
612         : Frame(Frame), OldThis(Frame.This) {
613       if (Enable)
614         Frame.This = NewThis;
615     }
616     ~ThisOverrideRAII() {
617       Frame.This = OldThis;
618     }
619   private:
620     CallStackFrame &Frame;
621     const LValue *OldThis;
622   };
623 }
624 
625 static bool HandleDestruction(EvalInfo &Info, const Expr *E,
626                               const LValue &This, QualType ThisType);
627 static bool HandleDestruction(EvalInfo &Info, SourceLocation Loc,
628                               APValue::LValueBase LVBase, APValue &Value,
629                               QualType T);
630 
631 namespace {
632   /// A cleanup, and a flag indicating whether it is lifetime-extended.
633   class Cleanup {
634     llvm::PointerIntPair<APValue*, 1, bool> Value;
635     APValue::LValueBase Base;
636     QualType T;
637 
638   public:
639     Cleanup(APValue *Val, APValue::LValueBase Base, QualType T,
640             bool IsLifetimeExtended)
641         : Value(Val, IsLifetimeExtended), Base(Base), T(T) {}
642 
643     bool isLifetimeExtended() const { return Value.getInt(); }
644     bool endLifetime(EvalInfo &Info, bool RunDestructors) {
645       if (RunDestructors) {
646         SourceLocation Loc;
647         if (const ValueDecl *VD = Base.dyn_cast<const ValueDecl*>())
648           Loc = VD->getLocation();
649         else if (const Expr *E = Base.dyn_cast<const Expr*>())
650           Loc = E->getExprLoc();
651         return HandleDestruction(Info, Loc, Base, *Value.getPointer(), T);
652       }
653       *Value.getPointer() = APValue();
654       return true;
655     }
656 
657     bool hasSideEffect() {
658       return T.isDestructedType();
659     }
660   };
661 
662   /// A reference to an object whose construction we are currently evaluating.
663   struct ObjectUnderConstruction {
664     APValue::LValueBase Base;
665     ArrayRef<APValue::LValuePathEntry> Path;
666     friend bool operator==(const ObjectUnderConstruction &LHS,
667                            const ObjectUnderConstruction &RHS) {
668       return LHS.Base == RHS.Base && LHS.Path == RHS.Path;
669     }
670     friend llvm::hash_code hash_value(const ObjectUnderConstruction &Obj) {
671       return llvm::hash_combine(Obj.Base, Obj.Path);
672     }
673   };
674   enum class ConstructionPhase {
675     None,
676     Bases,
677     AfterBases,
678     AfterFields,
679     Destroying,
680     DestroyingBases
681   };
682 }
683 
684 namespace llvm {
685 template<> struct DenseMapInfo<ObjectUnderConstruction> {
686   using Base = DenseMapInfo<APValue::LValueBase>;
687   static ObjectUnderConstruction getEmptyKey() {
688     return {Base::getEmptyKey(), {}}; }
689   static ObjectUnderConstruction getTombstoneKey() {
690     return {Base::getTombstoneKey(), {}};
691   }
692   static unsigned getHashValue(const ObjectUnderConstruction &Object) {
693     return hash_value(Object);
694   }
695   static bool isEqual(const ObjectUnderConstruction &LHS,
696                       const ObjectUnderConstruction &RHS) {
697     return LHS == RHS;
698   }
699 };
700 }
701 
702 namespace {
703   /// A dynamically-allocated heap object.
704   struct DynAlloc {
705     /// The value of this heap-allocated object.
706     APValue Value;
707     /// The allocating expression; used for diagnostics. Either a CXXNewExpr
708     /// or a CallExpr (the latter is for direct calls to operator new inside
709     /// std::allocator<T>::allocate).
710     const Expr *AllocExpr = nullptr;
711 
712     enum Kind {
713       New,
714       ArrayNew,
715       StdAllocator
716     };
717 
718     /// Get the kind of the allocation. This must match between allocation
719     /// and deallocation.
720     Kind getKind() const {
721       if (auto *NE = dyn_cast<CXXNewExpr>(AllocExpr))
722         return NE->isArray() ? ArrayNew : New;
723       assert(isa<CallExpr>(AllocExpr));
724       return StdAllocator;
725     }
726   };
727 
728   struct DynAllocOrder {
729     bool operator()(DynamicAllocLValue L, DynamicAllocLValue R) const {
730       return L.getIndex() < R.getIndex();
731     }
732   };
733 
734   /// EvalInfo - This is a private struct used by the evaluator to capture
735   /// information about a subexpression as it is folded.  It retains information
736   /// about the AST context, but also maintains information about the folded
737   /// expression.
738   ///
739   /// If an expression could be evaluated, it is still possible it is not a C
740   /// "integer constant expression" or constant expression.  If not, this struct
741   /// captures information about how and why not.
742   ///
743   /// One bit of information passed *into* the request for constant folding
744   /// indicates whether the subexpression is "evaluated" or not according to C
745   /// rules.  For example, the RHS of (0 && foo()) is not evaluated.  We can
746   /// evaluate the expression regardless of what the RHS is, but C only allows
747   /// certain things in certain situations.
748   class EvalInfo : public interp::State {
749   public:
750     ASTContext &Ctx;
751 
752     /// EvalStatus - Contains information about the evaluation.
753     Expr::EvalStatus &EvalStatus;
754 
755     /// CurrentCall - The top of the constexpr call stack.
756     CallStackFrame *CurrentCall;
757 
758     /// CallStackDepth - The number of calls in the call stack right now.
759     unsigned CallStackDepth;
760 
761     /// NextCallIndex - The next call index to assign.
762     unsigned NextCallIndex;
763 
764     /// StepsLeft - The remaining number of evaluation steps we're permitted
765     /// to perform. This is essentially a limit for the number of statements
766     /// we will evaluate.
767     unsigned StepsLeft;
768 
769     /// Enable the experimental new constant interpreter. If an expression is
770     /// not supported by the interpreter, an error is triggered.
771     bool EnableNewConstInterp;
772 
773     /// BottomFrame - The frame in which evaluation started. This must be
774     /// initialized after CurrentCall and CallStackDepth.
775     CallStackFrame BottomFrame;
776 
777     /// A stack of values whose lifetimes end at the end of some surrounding
778     /// evaluation frame.
779     llvm::SmallVector<Cleanup, 16> CleanupStack;
780 
781     /// EvaluatingDecl - This is the declaration whose initializer is being
782     /// evaluated, if any.
783     APValue::LValueBase EvaluatingDecl;
784 
785     enum class EvaluatingDeclKind {
786       None,
787       /// We're evaluating the construction of EvaluatingDecl.
788       Ctor,
789       /// We're evaluating the destruction of EvaluatingDecl.
790       Dtor,
791     };
792     EvaluatingDeclKind IsEvaluatingDecl = EvaluatingDeclKind::None;
793 
794     /// EvaluatingDeclValue - This is the value being constructed for the
795     /// declaration whose initializer is being evaluated, if any.
796     APValue *EvaluatingDeclValue;
797 
798     /// Set of objects that are currently being constructed.
799     llvm::DenseMap<ObjectUnderConstruction, ConstructionPhase>
800         ObjectsUnderConstruction;
801 
802     /// Current heap allocations, along with the location where each was
803     /// allocated. We use std::map here because we need stable addresses
804     /// for the stored APValues.
805     std::map<DynamicAllocLValue, DynAlloc, DynAllocOrder> HeapAllocs;
806 
807     /// The number of heap allocations performed so far in this evaluation.
808     unsigned NumHeapAllocs = 0;
809 
810     struct EvaluatingConstructorRAII {
811       EvalInfo &EI;
812       ObjectUnderConstruction Object;
813       bool DidInsert;
814       EvaluatingConstructorRAII(EvalInfo &EI, ObjectUnderConstruction Object,
815                                 bool HasBases)
816           : EI(EI), Object(Object) {
817         DidInsert =
818             EI.ObjectsUnderConstruction
819                 .insert({Object, HasBases ? ConstructionPhase::Bases
820                                           : ConstructionPhase::AfterBases})
821                 .second;
822       }
823       void finishedConstructingBases() {
824         EI.ObjectsUnderConstruction[Object] = ConstructionPhase::AfterBases;
825       }
826       void finishedConstructingFields() {
827         EI.ObjectsUnderConstruction[Object] = ConstructionPhase::AfterFields;
828       }
829       ~EvaluatingConstructorRAII() {
830         if (DidInsert) EI.ObjectsUnderConstruction.erase(Object);
831       }
832     };
833 
834     struct EvaluatingDestructorRAII {
835       EvalInfo &EI;
836       ObjectUnderConstruction Object;
837       bool DidInsert;
838       EvaluatingDestructorRAII(EvalInfo &EI, ObjectUnderConstruction Object)
839           : EI(EI), Object(Object) {
840         DidInsert = EI.ObjectsUnderConstruction
841                         .insert({Object, ConstructionPhase::Destroying})
842                         .second;
843       }
844       void startedDestroyingBases() {
845         EI.ObjectsUnderConstruction[Object] =
846             ConstructionPhase::DestroyingBases;
847       }
848       ~EvaluatingDestructorRAII() {
849         if (DidInsert)
850           EI.ObjectsUnderConstruction.erase(Object);
851       }
852     };
853 
854     ConstructionPhase
855     isEvaluatingCtorDtor(APValue::LValueBase Base,
856                          ArrayRef<APValue::LValuePathEntry> Path) {
857       return ObjectsUnderConstruction.lookup({Base, Path});
858     }
859 
860     /// If we're currently speculatively evaluating, the outermost call stack
861     /// depth at which we can mutate state, otherwise 0.
862     unsigned SpeculativeEvaluationDepth = 0;
863 
864     /// The current array initialization index, if we're performing array
865     /// initialization.
866     uint64_t ArrayInitIndex = -1;
867 
868     /// HasActiveDiagnostic - Was the previous diagnostic stored? If so, further
869     /// notes attached to it will also be stored, otherwise they will not be.
870     bool HasActiveDiagnostic;
871 
872     /// Have we emitted a diagnostic explaining why we couldn't constant
873     /// fold (not just why it's not strictly a constant expression)?
874     bool HasFoldFailureDiagnostic;
875 
876     /// Whether or not we're in a context where the front end requires a
877     /// constant value.
878     bool InConstantContext;
879 
880     /// Whether we're checking that an expression is a potential constant
881     /// expression. If so, do not fail on constructs that could become constant
882     /// later on (such as a use of an undefined global).
883     bool CheckingPotentialConstantExpression = false;
884 
885     /// Whether we're checking for an expression that has undefined behavior.
886     /// If so, we will produce warnings if we encounter an operation that is
887     /// always undefined.
888     bool CheckingForUndefinedBehavior = false;
889 
890     enum EvaluationMode {
891       /// Evaluate as a constant expression. Stop if we find that the expression
892       /// is not a constant expression.
893       EM_ConstantExpression,
894 
895       /// Evaluate as a constant expression. Stop if we find that the expression
896       /// is not a constant expression. Some expressions can be retried in the
897       /// optimizer if we don't constant fold them here, but in an unevaluated
898       /// context we try to fold them immediately since the optimizer never
899       /// gets a chance to look at it.
900       EM_ConstantExpressionUnevaluated,
901 
902       /// Fold the expression to a constant. Stop if we hit a side-effect that
903       /// we can't model.
904       EM_ConstantFold,
905 
906       /// Evaluate in any way we know how. Don't worry about side-effects that
907       /// can't be modeled.
908       EM_IgnoreSideEffects,
909     } EvalMode;
910 
911     /// Are we checking whether the expression is a potential constant
912     /// expression?
913     bool checkingPotentialConstantExpression() const override  {
914       return CheckingPotentialConstantExpression;
915     }
916 
917     /// Are we checking an expression for overflow?
918     // FIXME: We should check for any kind of undefined or suspicious behavior
919     // in such constructs, not just overflow.
920     bool checkingForUndefinedBehavior() const override {
921       return CheckingForUndefinedBehavior;
922     }
923 
924     EvalInfo(const ASTContext &C, Expr::EvalStatus &S, EvaluationMode Mode)
925         : Ctx(const_cast<ASTContext &>(C)), EvalStatus(S), CurrentCall(nullptr),
926           CallStackDepth(0), NextCallIndex(1),
927           StepsLeft(C.getLangOpts().ConstexprStepLimit),
928           EnableNewConstInterp(C.getLangOpts().EnableNewConstInterp),
929           BottomFrame(*this, SourceLocation(), nullptr, nullptr, nullptr),
930           EvaluatingDecl((const ValueDecl *)nullptr),
931           EvaluatingDeclValue(nullptr), HasActiveDiagnostic(false),
932           HasFoldFailureDiagnostic(false), InConstantContext(false),
933           EvalMode(Mode) {}
934 
935     ~EvalInfo() {
936       discardCleanups();
937     }
938 
939     void setEvaluatingDecl(APValue::LValueBase Base, APValue &Value,
940                            EvaluatingDeclKind EDK = EvaluatingDeclKind::Ctor) {
941       EvaluatingDecl = Base;
942       IsEvaluatingDecl = EDK;
943       EvaluatingDeclValue = &Value;
944     }
945 
946     bool CheckCallLimit(SourceLocation Loc) {
947       // Don't perform any constexpr calls (other than the call we're checking)
948       // when checking a potential constant expression.
949       if (checkingPotentialConstantExpression() && CallStackDepth > 1)
950         return false;
951       if (NextCallIndex == 0) {
952         // NextCallIndex has wrapped around.
953         FFDiag(Loc, diag::note_constexpr_call_limit_exceeded);
954         return false;
955       }
956       if (CallStackDepth <= getLangOpts().ConstexprCallDepth)
957         return true;
958       FFDiag(Loc, diag::note_constexpr_depth_limit_exceeded)
959         << getLangOpts().ConstexprCallDepth;
960       return false;
961     }
962 
963     std::pair<CallStackFrame *, unsigned>
964     getCallFrameAndDepth(unsigned CallIndex) {
965       assert(CallIndex && "no call index in getCallFrameAndDepth");
966       // We will eventually hit BottomFrame, which has Index 1, so Frame can't
967       // be null in this loop.
968       unsigned Depth = CallStackDepth;
969       CallStackFrame *Frame = CurrentCall;
970       while (Frame->Index > CallIndex) {
971         Frame = Frame->Caller;
972         --Depth;
973       }
974       if (Frame->Index == CallIndex)
975         return {Frame, Depth};
976       return {nullptr, 0};
977     }
978 
979     bool nextStep(const Stmt *S) {
980       if (!StepsLeft) {
981         FFDiag(S->getBeginLoc(), diag::note_constexpr_step_limit_exceeded);
982         return false;
983       }
984       --StepsLeft;
985       return true;
986     }
987 
988     APValue *createHeapAlloc(const Expr *E, QualType T, LValue &LV);
989 
990     Optional<DynAlloc*> lookupDynamicAlloc(DynamicAllocLValue DA) {
991       Optional<DynAlloc*> Result;
992       auto It = HeapAllocs.find(DA);
993       if (It != HeapAllocs.end())
994         Result = &It->second;
995       return Result;
996     }
997 
998     /// Information about a stack frame for std::allocator<T>::[de]allocate.
999     struct StdAllocatorCaller {
1000       unsigned FrameIndex;
1001       QualType ElemType;
1002       explicit operator bool() const { return FrameIndex != 0; };
1003     };
1004 
1005     StdAllocatorCaller getStdAllocatorCaller(StringRef FnName) const {
1006       for (const CallStackFrame *Call = CurrentCall; Call != &BottomFrame;
1007            Call = Call->Caller) {
1008         const auto *MD = dyn_cast_or_null<CXXMethodDecl>(Call->Callee);
1009         if (!MD)
1010           continue;
1011         const IdentifierInfo *FnII = MD->getIdentifier();
1012         if (!FnII || !FnII->isStr(FnName))
1013           continue;
1014 
1015         const auto *CTSD =
1016             dyn_cast<ClassTemplateSpecializationDecl>(MD->getParent());
1017         if (!CTSD)
1018           continue;
1019 
1020         const IdentifierInfo *ClassII = CTSD->getIdentifier();
1021         const TemplateArgumentList &TAL = CTSD->getTemplateArgs();
1022         if (CTSD->isInStdNamespace() && ClassII &&
1023             ClassII->isStr("allocator") && TAL.size() >= 1 &&
1024             TAL[0].getKind() == TemplateArgument::Type)
1025           return {Call->Index, TAL[0].getAsType()};
1026       }
1027 
1028       return {};
1029     }
1030 
1031     void performLifetimeExtension() {
1032       // Disable the cleanups for lifetime-extended temporaries.
1033       CleanupStack.erase(
1034           std::remove_if(CleanupStack.begin(), CleanupStack.end(),
1035                          [](Cleanup &C) { return C.isLifetimeExtended(); }),
1036           CleanupStack.end());
1037      }
1038 
1039     /// Throw away any remaining cleanups at the end of evaluation. If any
1040     /// cleanups would have had a side-effect, note that as an unmodeled
1041     /// side-effect and return false. Otherwise, return true.
1042     bool discardCleanups() {
1043       for (Cleanup &C : CleanupStack) {
1044         if (C.hasSideEffect() && !noteSideEffect()) {
1045           CleanupStack.clear();
1046           return false;
1047         }
1048       }
1049       CleanupStack.clear();
1050       return true;
1051     }
1052 
1053   private:
1054     interp::Frame *getCurrentFrame() override { return CurrentCall; }
1055     const interp::Frame *getBottomFrame() const override { return &BottomFrame; }
1056 
1057     bool hasActiveDiagnostic() override { return HasActiveDiagnostic; }
1058     void setActiveDiagnostic(bool Flag) override { HasActiveDiagnostic = Flag; }
1059 
1060     void setFoldFailureDiagnostic(bool Flag) override {
1061       HasFoldFailureDiagnostic = Flag;
1062     }
1063 
1064     Expr::EvalStatus &getEvalStatus() const override { return EvalStatus; }
1065 
1066     ASTContext &getCtx() const override { return Ctx; }
1067 
1068     // If we have a prior diagnostic, it will be noting that the expression
1069     // isn't a constant expression. This diagnostic is more important,
1070     // unless we require this evaluation to produce a constant expression.
1071     //
1072     // FIXME: We might want to show both diagnostics to the user in
1073     // EM_ConstantFold mode.
1074     bool hasPriorDiagnostic() override {
1075       if (!EvalStatus.Diag->empty()) {
1076         switch (EvalMode) {
1077         case EM_ConstantFold:
1078         case EM_IgnoreSideEffects:
1079           if (!HasFoldFailureDiagnostic)
1080             break;
1081           // We've already failed to fold something. Keep that diagnostic.
1082           LLVM_FALLTHROUGH;
1083         case EM_ConstantExpression:
1084         case EM_ConstantExpressionUnevaluated:
1085           setActiveDiagnostic(false);
1086           return true;
1087         }
1088       }
1089       return false;
1090     }
1091 
1092     unsigned getCallStackDepth() override { return CallStackDepth; }
1093 
1094   public:
1095     /// Should we continue evaluation after encountering a side-effect that we
1096     /// couldn't model?
1097     bool keepEvaluatingAfterSideEffect() {
1098       switch (EvalMode) {
1099       case EM_IgnoreSideEffects:
1100         return true;
1101 
1102       case EM_ConstantExpression:
1103       case EM_ConstantExpressionUnevaluated:
1104       case EM_ConstantFold:
1105         // By default, assume any side effect might be valid in some other
1106         // evaluation of this expression from a different context.
1107         return checkingPotentialConstantExpression() ||
1108                checkingForUndefinedBehavior();
1109       }
1110       llvm_unreachable("Missed EvalMode case");
1111     }
1112 
1113     /// Note that we have had a side-effect, and determine whether we should
1114     /// keep evaluating.
1115     bool noteSideEffect() {
1116       EvalStatus.HasSideEffects = true;
1117       return keepEvaluatingAfterSideEffect();
1118     }
1119 
1120     /// Should we continue evaluation after encountering undefined behavior?
1121     bool keepEvaluatingAfterUndefinedBehavior() {
1122       switch (EvalMode) {
1123       case EM_IgnoreSideEffects:
1124       case EM_ConstantFold:
1125         return true;
1126 
1127       case EM_ConstantExpression:
1128       case EM_ConstantExpressionUnevaluated:
1129         return checkingForUndefinedBehavior();
1130       }
1131       llvm_unreachable("Missed EvalMode case");
1132     }
1133 
1134     /// Note that we hit something that was technically undefined behavior, but
1135     /// that we can evaluate past it (such as signed overflow or floating-point
1136     /// division by zero.)
1137     bool noteUndefinedBehavior() override {
1138       EvalStatus.HasUndefinedBehavior = true;
1139       return keepEvaluatingAfterUndefinedBehavior();
1140     }
1141 
1142     /// Should we continue evaluation as much as possible after encountering a
1143     /// construct which can't be reduced to a value?
1144     bool keepEvaluatingAfterFailure() const override {
1145       if (!StepsLeft)
1146         return false;
1147 
1148       switch (EvalMode) {
1149       case EM_ConstantExpression:
1150       case EM_ConstantExpressionUnevaluated:
1151       case EM_ConstantFold:
1152       case EM_IgnoreSideEffects:
1153         return checkingPotentialConstantExpression() ||
1154                checkingForUndefinedBehavior();
1155       }
1156       llvm_unreachable("Missed EvalMode case");
1157     }
1158 
1159     /// Notes that we failed to evaluate an expression that other expressions
1160     /// directly depend on, and determine if we should keep evaluating. This
1161     /// should only be called if we actually intend to keep evaluating.
1162     ///
1163     /// Call noteSideEffect() instead if we may be able to ignore the value that
1164     /// we failed to evaluate, e.g. if we failed to evaluate Foo() in:
1165     ///
1166     /// (Foo(), 1)      // use noteSideEffect
1167     /// (Foo() || true) // use noteSideEffect
1168     /// Foo() + 1       // use noteFailure
1169     LLVM_NODISCARD bool noteFailure() {
1170       // Failure when evaluating some expression often means there is some
1171       // subexpression whose evaluation was skipped. Therefore, (because we
1172       // don't track whether we skipped an expression when unwinding after an
1173       // evaluation failure) every evaluation failure that bubbles up from a
1174       // subexpression implies that a side-effect has potentially happened. We
1175       // skip setting the HasSideEffects flag to true until we decide to
1176       // continue evaluating after that point, which happens here.
1177       bool KeepGoing = keepEvaluatingAfterFailure();
1178       EvalStatus.HasSideEffects |= KeepGoing;
1179       return KeepGoing;
1180     }
1181 
1182     class ArrayInitLoopIndex {
1183       EvalInfo &Info;
1184       uint64_t OuterIndex;
1185 
1186     public:
1187       ArrayInitLoopIndex(EvalInfo &Info)
1188           : Info(Info), OuterIndex(Info.ArrayInitIndex) {
1189         Info.ArrayInitIndex = 0;
1190       }
1191       ~ArrayInitLoopIndex() { Info.ArrayInitIndex = OuterIndex; }
1192 
1193       operator uint64_t&() { return Info.ArrayInitIndex; }
1194     };
1195   };
1196 
1197   /// Object used to treat all foldable expressions as constant expressions.
1198   struct FoldConstant {
1199     EvalInfo &Info;
1200     bool Enabled;
1201     bool HadNoPriorDiags;
1202     EvalInfo::EvaluationMode OldMode;
1203 
1204     explicit FoldConstant(EvalInfo &Info, bool Enabled)
1205       : Info(Info),
1206         Enabled(Enabled),
1207         HadNoPriorDiags(Info.EvalStatus.Diag &&
1208                         Info.EvalStatus.Diag->empty() &&
1209                         !Info.EvalStatus.HasSideEffects),
1210         OldMode(Info.EvalMode) {
1211       if (Enabled)
1212         Info.EvalMode = EvalInfo::EM_ConstantFold;
1213     }
1214     void keepDiagnostics() { Enabled = false; }
1215     ~FoldConstant() {
1216       if (Enabled && HadNoPriorDiags && !Info.EvalStatus.Diag->empty() &&
1217           !Info.EvalStatus.HasSideEffects)
1218         Info.EvalStatus.Diag->clear();
1219       Info.EvalMode = OldMode;
1220     }
1221   };
1222 
1223   /// RAII object used to set the current evaluation mode to ignore
1224   /// side-effects.
1225   struct IgnoreSideEffectsRAII {
1226     EvalInfo &Info;
1227     EvalInfo::EvaluationMode OldMode;
1228     explicit IgnoreSideEffectsRAII(EvalInfo &Info)
1229         : Info(Info), OldMode(Info.EvalMode) {
1230       Info.EvalMode = EvalInfo::EM_IgnoreSideEffects;
1231     }
1232 
1233     ~IgnoreSideEffectsRAII() { Info.EvalMode = OldMode; }
1234   };
1235 
1236   /// RAII object used to optionally suppress diagnostics and side-effects from
1237   /// a speculative evaluation.
1238   class SpeculativeEvaluationRAII {
1239     EvalInfo *Info = nullptr;
1240     Expr::EvalStatus OldStatus;
1241     unsigned OldSpeculativeEvaluationDepth;
1242 
1243     void moveFromAndCancel(SpeculativeEvaluationRAII &&Other) {
1244       Info = Other.Info;
1245       OldStatus = Other.OldStatus;
1246       OldSpeculativeEvaluationDepth = Other.OldSpeculativeEvaluationDepth;
1247       Other.Info = nullptr;
1248     }
1249 
1250     void maybeRestoreState() {
1251       if (!Info)
1252         return;
1253 
1254       Info->EvalStatus = OldStatus;
1255       Info->SpeculativeEvaluationDepth = OldSpeculativeEvaluationDepth;
1256     }
1257 
1258   public:
1259     SpeculativeEvaluationRAII() = default;
1260 
1261     SpeculativeEvaluationRAII(
1262         EvalInfo &Info, SmallVectorImpl<PartialDiagnosticAt> *NewDiag = nullptr)
1263         : Info(&Info), OldStatus(Info.EvalStatus),
1264           OldSpeculativeEvaluationDepth(Info.SpeculativeEvaluationDepth) {
1265       Info.EvalStatus.Diag = NewDiag;
1266       Info.SpeculativeEvaluationDepth = Info.CallStackDepth + 1;
1267     }
1268 
1269     SpeculativeEvaluationRAII(const SpeculativeEvaluationRAII &Other) = delete;
1270     SpeculativeEvaluationRAII(SpeculativeEvaluationRAII &&Other) {
1271       moveFromAndCancel(std::move(Other));
1272     }
1273 
1274     SpeculativeEvaluationRAII &operator=(SpeculativeEvaluationRAII &&Other) {
1275       maybeRestoreState();
1276       moveFromAndCancel(std::move(Other));
1277       return *this;
1278     }
1279 
1280     ~SpeculativeEvaluationRAII() { maybeRestoreState(); }
1281   };
1282 
1283   /// RAII object wrapping a full-expression or block scope, and handling
1284   /// the ending of the lifetime of temporaries created within it.
1285   template<bool IsFullExpression>
1286   class ScopeRAII {
1287     EvalInfo &Info;
1288     unsigned OldStackSize;
1289   public:
1290     ScopeRAII(EvalInfo &Info)
1291         : Info(Info), OldStackSize(Info.CleanupStack.size()) {
1292       // Push a new temporary version. This is needed to distinguish between
1293       // temporaries created in different iterations of a loop.
1294       Info.CurrentCall->pushTempVersion();
1295     }
1296     bool destroy(bool RunDestructors = true) {
1297       bool OK = cleanup(Info, RunDestructors, OldStackSize);
1298       OldStackSize = -1U;
1299       return OK;
1300     }
1301     ~ScopeRAII() {
1302       if (OldStackSize != -1U)
1303         destroy(false);
1304       // Body moved to a static method to encourage the compiler to inline away
1305       // instances of this class.
1306       Info.CurrentCall->popTempVersion();
1307     }
1308   private:
1309     static bool cleanup(EvalInfo &Info, bool RunDestructors,
1310                         unsigned OldStackSize) {
1311       assert(OldStackSize <= Info.CleanupStack.size() &&
1312              "running cleanups out of order?");
1313 
1314       // Run all cleanups for a block scope, and non-lifetime-extended cleanups
1315       // for a full-expression scope.
1316       bool Success = true;
1317       for (unsigned I = Info.CleanupStack.size(); I > OldStackSize; --I) {
1318         if (!(IsFullExpression &&
1319               Info.CleanupStack[I - 1].isLifetimeExtended())) {
1320           if (!Info.CleanupStack[I - 1].endLifetime(Info, RunDestructors)) {
1321             Success = false;
1322             break;
1323           }
1324         }
1325       }
1326 
1327       // Compact lifetime-extended cleanups.
1328       auto NewEnd = Info.CleanupStack.begin() + OldStackSize;
1329       if (IsFullExpression)
1330         NewEnd =
1331             std::remove_if(NewEnd, Info.CleanupStack.end(),
1332                            [](Cleanup &C) { return !C.isLifetimeExtended(); });
1333       Info.CleanupStack.erase(NewEnd, Info.CleanupStack.end());
1334       return Success;
1335     }
1336   };
1337   typedef ScopeRAII<false> BlockScopeRAII;
1338   typedef ScopeRAII<true> FullExpressionRAII;
1339 }
1340 
1341 bool SubobjectDesignator::checkSubobject(EvalInfo &Info, const Expr *E,
1342                                          CheckSubobjectKind CSK) {
1343   if (Invalid)
1344     return false;
1345   if (isOnePastTheEnd()) {
1346     Info.CCEDiag(E, diag::note_constexpr_past_end_subobject)
1347       << CSK;
1348     setInvalid();
1349     return false;
1350   }
1351   // Note, we do not diagnose if isMostDerivedAnUnsizedArray(), because there
1352   // must actually be at least one array element; even a VLA cannot have a
1353   // bound of zero. And if our index is nonzero, we already had a CCEDiag.
1354   return true;
1355 }
1356 
1357 void SubobjectDesignator::diagnoseUnsizedArrayPointerArithmetic(EvalInfo &Info,
1358                                                                 const Expr *E) {
1359   Info.CCEDiag(E, diag::note_constexpr_unsized_array_indexed);
1360   // Do not set the designator as invalid: we can represent this situation,
1361   // and correct handling of __builtin_object_size requires us to do so.
1362 }
1363 
1364 void SubobjectDesignator::diagnosePointerArithmetic(EvalInfo &Info,
1365                                                     const Expr *E,
1366                                                     const APSInt &N) {
1367   // If we're complaining, we must be able to statically determine the size of
1368   // the most derived array.
1369   if (MostDerivedPathLength == Entries.size() && MostDerivedIsArrayElement)
1370     Info.CCEDiag(E, diag::note_constexpr_array_index)
1371       << N << /*array*/ 0
1372       << static_cast<unsigned>(getMostDerivedArraySize());
1373   else
1374     Info.CCEDiag(E, diag::note_constexpr_array_index)
1375       << N << /*non-array*/ 1;
1376   setInvalid();
1377 }
1378 
1379 CallStackFrame::CallStackFrame(EvalInfo &Info, SourceLocation CallLoc,
1380                                const FunctionDecl *Callee, const LValue *This,
1381                                APValue *Arguments)
1382     : Info(Info), Caller(Info.CurrentCall), Callee(Callee), This(This),
1383       Arguments(Arguments), CallLoc(CallLoc), Index(Info.NextCallIndex++) {
1384   Info.CurrentCall = this;
1385   ++Info.CallStackDepth;
1386 }
1387 
1388 CallStackFrame::~CallStackFrame() {
1389   assert(Info.CurrentCall == this && "calls retired out of order");
1390   --Info.CallStackDepth;
1391   Info.CurrentCall = Caller;
1392 }
1393 
1394 static bool isRead(AccessKinds AK) {
1395   return AK == AK_Read || AK == AK_ReadObjectRepresentation;
1396 }
1397 
1398 static bool isModification(AccessKinds AK) {
1399   switch (AK) {
1400   case AK_Read:
1401   case AK_ReadObjectRepresentation:
1402   case AK_MemberCall:
1403   case AK_DynamicCast:
1404   case AK_TypeId:
1405     return false;
1406   case AK_Assign:
1407   case AK_Increment:
1408   case AK_Decrement:
1409   case AK_Construct:
1410   case AK_Destroy:
1411     return true;
1412   }
1413   llvm_unreachable("unknown access kind");
1414 }
1415 
1416 static bool isAnyAccess(AccessKinds AK) {
1417   return isRead(AK) || isModification(AK);
1418 }
1419 
1420 /// Is this an access per the C++ definition?
1421 static bool isFormalAccess(AccessKinds AK) {
1422   return isAnyAccess(AK) && AK != AK_Construct && AK != AK_Destroy;
1423 }
1424 
1425 /// Is this kind of axcess valid on an indeterminate object value?
1426 static bool isValidIndeterminateAccess(AccessKinds AK) {
1427   switch (AK) {
1428   case AK_Read:
1429   case AK_Increment:
1430   case AK_Decrement:
1431     // These need the object's value.
1432     return false;
1433 
1434   case AK_ReadObjectRepresentation:
1435   case AK_Assign:
1436   case AK_Construct:
1437   case AK_Destroy:
1438     // Construction and destruction don't need the value.
1439     return true;
1440 
1441   case AK_MemberCall:
1442   case AK_DynamicCast:
1443   case AK_TypeId:
1444     // These aren't really meaningful on scalars.
1445     return true;
1446   }
1447   llvm_unreachable("unknown access kind");
1448 }
1449 
1450 namespace {
1451   struct ComplexValue {
1452   private:
1453     bool IsInt;
1454 
1455   public:
1456     APSInt IntReal, IntImag;
1457     APFloat FloatReal, FloatImag;
1458 
1459     ComplexValue() : FloatReal(APFloat::Bogus()), FloatImag(APFloat::Bogus()) {}
1460 
1461     void makeComplexFloat() { IsInt = false; }
1462     bool isComplexFloat() const { return !IsInt; }
1463     APFloat &getComplexFloatReal() { return FloatReal; }
1464     APFloat &getComplexFloatImag() { return FloatImag; }
1465 
1466     void makeComplexInt() { IsInt = true; }
1467     bool isComplexInt() const { return IsInt; }
1468     APSInt &getComplexIntReal() { return IntReal; }
1469     APSInt &getComplexIntImag() { return IntImag; }
1470 
1471     void moveInto(APValue &v) const {
1472       if (isComplexFloat())
1473         v = APValue(FloatReal, FloatImag);
1474       else
1475         v = APValue(IntReal, IntImag);
1476     }
1477     void setFrom(const APValue &v) {
1478       assert(v.isComplexFloat() || v.isComplexInt());
1479       if (v.isComplexFloat()) {
1480         makeComplexFloat();
1481         FloatReal = v.getComplexFloatReal();
1482         FloatImag = v.getComplexFloatImag();
1483       } else {
1484         makeComplexInt();
1485         IntReal = v.getComplexIntReal();
1486         IntImag = v.getComplexIntImag();
1487       }
1488     }
1489   };
1490 
1491   struct LValue {
1492     APValue::LValueBase Base;
1493     CharUnits Offset;
1494     SubobjectDesignator Designator;
1495     bool IsNullPtr : 1;
1496     bool InvalidBase : 1;
1497 
1498     const APValue::LValueBase getLValueBase() const { return Base; }
1499     CharUnits &getLValueOffset() { return Offset; }
1500     const CharUnits &getLValueOffset() const { return Offset; }
1501     SubobjectDesignator &getLValueDesignator() { return Designator; }
1502     const SubobjectDesignator &getLValueDesignator() const { return Designator;}
1503     bool isNullPointer() const { return IsNullPtr;}
1504 
1505     unsigned getLValueCallIndex() const { return Base.getCallIndex(); }
1506     unsigned getLValueVersion() const { return Base.getVersion(); }
1507 
1508     void moveInto(APValue &V) const {
1509       if (Designator.Invalid)
1510         V = APValue(Base, Offset, APValue::NoLValuePath(), IsNullPtr);
1511       else {
1512         assert(!InvalidBase && "APValues can't handle invalid LValue bases");
1513         V = APValue(Base, Offset, Designator.Entries,
1514                     Designator.IsOnePastTheEnd, IsNullPtr);
1515       }
1516     }
1517     void setFrom(ASTContext &Ctx, const APValue &V) {
1518       assert(V.isLValue() && "Setting LValue from a non-LValue?");
1519       Base = V.getLValueBase();
1520       Offset = V.getLValueOffset();
1521       InvalidBase = false;
1522       Designator = SubobjectDesignator(Ctx, V);
1523       IsNullPtr = V.isNullPointer();
1524     }
1525 
1526     void set(APValue::LValueBase B, bool BInvalid = false) {
1527 #ifndef NDEBUG
1528       // We only allow a few types of invalid bases. Enforce that here.
1529       if (BInvalid) {
1530         const auto *E = B.get<const Expr *>();
1531         assert((isa<MemberExpr>(E) || tryUnwrapAllocSizeCall(E)) &&
1532                "Unexpected type of invalid base");
1533       }
1534 #endif
1535 
1536       Base = B;
1537       Offset = CharUnits::fromQuantity(0);
1538       InvalidBase = BInvalid;
1539       Designator = SubobjectDesignator(getType(B));
1540       IsNullPtr = false;
1541     }
1542 
1543     void setNull(ASTContext &Ctx, QualType PointerTy) {
1544       Base = (Expr *)nullptr;
1545       Offset =
1546           CharUnits::fromQuantity(Ctx.getTargetNullPointerValue(PointerTy));
1547       InvalidBase = false;
1548       Designator = SubobjectDesignator(PointerTy->getPointeeType());
1549       IsNullPtr = true;
1550     }
1551 
1552     void setInvalid(APValue::LValueBase B, unsigned I = 0) {
1553       set(B, true);
1554     }
1555 
1556     std::string toString(ASTContext &Ctx, QualType T) const {
1557       APValue Printable;
1558       moveInto(Printable);
1559       return Printable.getAsString(Ctx, T);
1560     }
1561 
1562   private:
1563     // Check that this LValue is not based on a null pointer. If it is, produce
1564     // a diagnostic and mark the designator as invalid.
1565     template <typename GenDiagType>
1566     bool checkNullPointerDiagnosingWith(const GenDiagType &GenDiag) {
1567       if (Designator.Invalid)
1568         return false;
1569       if (IsNullPtr) {
1570         GenDiag();
1571         Designator.setInvalid();
1572         return false;
1573       }
1574       return true;
1575     }
1576 
1577   public:
1578     bool checkNullPointer(EvalInfo &Info, const Expr *E,
1579                           CheckSubobjectKind CSK) {
1580       return checkNullPointerDiagnosingWith([&Info, E, CSK] {
1581         Info.CCEDiag(E, diag::note_constexpr_null_subobject) << CSK;
1582       });
1583     }
1584 
1585     bool checkNullPointerForFoldAccess(EvalInfo &Info, const Expr *E,
1586                                        AccessKinds AK) {
1587       return checkNullPointerDiagnosingWith([&Info, E, AK] {
1588         Info.FFDiag(E, diag::note_constexpr_access_null) << AK;
1589       });
1590     }
1591 
1592     // Check this LValue refers to an object. If not, set the designator to be
1593     // invalid and emit a diagnostic.
1594     bool checkSubobject(EvalInfo &Info, const Expr *E, CheckSubobjectKind CSK) {
1595       return (CSK == CSK_ArrayToPointer || checkNullPointer(Info, E, CSK)) &&
1596              Designator.checkSubobject(Info, E, CSK);
1597     }
1598 
1599     void addDecl(EvalInfo &Info, const Expr *E,
1600                  const Decl *D, bool Virtual = false) {
1601       if (checkSubobject(Info, E, isa<FieldDecl>(D) ? CSK_Field : CSK_Base))
1602         Designator.addDeclUnchecked(D, Virtual);
1603     }
1604     void addUnsizedArray(EvalInfo &Info, const Expr *E, QualType ElemTy) {
1605       if (!Designator.Entries.empty()) {
1606         Info.CCEDiag(E, diag::note_constexpr_unsupported_unsized_array);
1607         Designator.setInvalid();
1608         return;
1609       }
1610       if (checkSubobject(Info, E, CSK_ArrayToPointer)) {
1611         assert(getType(Base)->isPointerType() || getType(Base)->isArrayType());
1612         Designator.FirstEntryIsAnUnsizedArray = true;
1613         Designator.addUnsizedArrayUnchecked(ElemTy);
1614       }
1615     }
1616     void addArray(EvalInfo &Info, const Expr *E, const ConstantArrayType *CAT) {
1617       if (checkSubobject(Info, E, CSK_ArrayToPointer))
1618         Designator.addArrayUnchecked(CAT);
1619     }
1620     void addComplex(EvalInfo &Info, const Expr *E, QualType EltTy, bool Imag) {
1621       if (checkSubobject(Info, E, Imag ? CSK_Imag : CSK_Real))
1622         Designator.addComplexUnchecked(EltTy, Imag);
1623     }
1624     void clearIsNullPointer() {
1625       IsNullPtr = false;
1626     }
1627     void adjustOffsetAndIndex(EvalInfo &Info, const Expr *E,
1628                               const APSInt &Index, CharUnits ElementSize) {
1629       // An index of 0 has no effect. (In C, adding 0 to a null pointer is UB,
1630       // but we're not required to diagnose it and it's valid in C++.)
1631       if (!Index)
1632         return;
1633 
1634       // Compute the new offset in the appropriate width, wrapping at 64 bits.
1635       // FIXME: When compiling for a 32-bit target, we should use 32-bit
1636       // offsets.
1637       uint64_t Offset64 = Offset.getQuantity();
1638       uint64_t ElemSize64 = ElementSize.getQuantity();
1639       uint64_t Index64 = Index.extOrTrunc(64).getZExtValue();
1640       Offset = CharUnits::fromQuantity(Offset64 + ElemSize64 * Index64);
1641 
1642       if (checkNullPointer(Info, E, CSK_ArrayIndex))
1643         Designator.adjustIndex(Info, E, Index);
1644       clearIsNullPointer();
1645     }
1646     void adjustOffset(CharUnits N) {
1647       Offset += N;
1648       if (N.getQuantity())
1649         clearIsNullPointer();
1650     }
1651   };
1652 
1653   struct MemberPtr {
1654     MemberPtr() {}
1655     explicit MemberPtr(const ValueDecl *Decl) :
1656       DeclAndIsDerivedMember(Decl, false), Path() {}
1657 
1658     /// The member or (direct or indirect) field referred to by this member
1659     /// pointer, or 0 if this is a null member pointer.
1660     const ValueDecl *getDecl() const {
1661       return DeclAndIsDerivedMember.getPointer();
1662     }
1663     /// Is this actually a member of some type derived from the relevant class?
1664     bool isDerivedMember() const {
1665       return DeclAndIsDerivedMember.getInt();
1666     }
1667     /// Get the class which the declaration actually lives in.
1668     const CXXRecordDecl *getContainingRecord() const {
1669       return cast<CXXRecordDecl>(
1670           DeclAndIsDerivedMember.getPointer()->getDeclContext());
1671     }
1672 
1673     void moveInto(APValue &V) const {
1674       V = APValue(getDecl(), isDerivedMember(), Path);
1675     }
1676     void setFrom(const APValue &V) {
1677       assert(V.isMemberPointer());
1678       DeclAndIsDerivedMember.setPointer(V.getMemberPointerDecl());
1679       DeclAndIsDerivedMember.setInt(V.isMemberPointerToDerivedMember());
1680       Path.clear();
1681       ArrayRef<const CXXRecordDecl*> P = V.getMemberPointerPath();
1682       Path.insert(Path.end(), P.begin(), P.end());
1683     }
1684 
1685     /// DeclAndIsDerivedMember - The member declaration, and a flag indicating
1686     /// whether the member is a member of some class derived from the class type
1687     /// of the member pointer.
1688     llvm::PointerIntPair<const ValueDecl*, 1, bool> DeclAndIsDerivedMember;
1689     /// Path - The path of base/derived classes from the member declaration's
1690     /// class (exclusive) to the class type of the member pointer (inclusive).
1691     SmallVector<const CXXRecordDecl*, 4> Path;
1692 
1693     /// Perform a cast towards the class of the Decl (either up or down the
1694     /// hierarchy).
1695     bool castBack(const CXXRecordDecl *Class) {
1696       assert(!Path.empty());
1697       const CXXRecordDecl *Expected;
1698       if (Path.size() >= 2)
1699         Expected = Path[Path.size() - 2];
1700       else
1701         Expected = getContainingRecord();
1702       if (Expected->getCanonicalDecl() != Class->getCanonicalDecl()) {
1703         // C++11 [expr.static.cast]p12: In a conversion from (D::*) to (B::*),
1704         // if B does not contain the original member and is not a base or
1705         // derived class of the class containing the original member, the result
1706         // of the cast is undefined.
1707         // C++11 [conv.mem]p2 does not cover this case for a cast from (B::*) to
1708         // (D::*). We consider that to be a language defect.
1709         return false;
1710       }
1711       Path.pop_back();
1712       return true;
1713     }
1714     /// Perform a base-to-derived member pointer cast.
1715     bool castToDerived(const CXXRecordDecl *Derived) {
1716       if (!getDecl())
1717         return true;
1718       if (!isDerivedMember()) {
1719         Path.push_back(Derived);
1720         return true;
1721       }
1722       if (!castBack(Derived))
1723         return false;
1724       if (Path.empty())
1725         DeclAndIsDerivedMember.setInt(false);
1726       return true;
1727     }
1728     /// Perform a derived-to-base member pointer cast.
1729     bool castToBase(const CXXRecordDecl *Base) {
1730       if (!getDecl())
1731         return true;
1732       if (Path.empty())
1733         DeclAndIsDerivedMember.setInt(true);
1734       if (isDerivedMember()) {
1735         Path.push_back(Base);
1736         return true;
1737       }
1738       return castBack(Base);
1739     }
1740   };
1741 
1742   /// Compare two member pointers, which are assumed to be of the same type.
1743   static bool operator==(const MemberPtr &LHS, const MemberPtr &RHS) {
1744     if (!LHS.getDecl() || !RHS.getDecl())
1745       return !LHS.getDecl() && !RHS.getDecl();
1746     if (LHS.getDecl()->getCanonicalDecl() != RHS.getDecl()->getCanonicalDecl())
1747       return false;
1748     return LHS.Path == RHS.Path;
1749   }
1750 }
1751 
1752 static bool Evaluate(APValue &Result, EvalInfo &Info, const Expr *E);
1753 static bool EvaluateInPlace(APValue &Result, EvalInfo &Info,
1754                             const LValue &This, const Expr *E,
1755                             bool AllowNonLiteralTypes = false);
1756 static bool EvaluateLValue(const Expr *E, LValue &Result, EvalInfo &Info,
1757                            bool InvalidBaseOK = false);
1758 static bool EvaluatePointer(const Expr *E, LValue &Result, EvalInfo &Info,
1759                             bool InvalidBaseOK = false);
1760 static bool EvaluateMemberPointer(const Expr *E, MemberPtr &Result,
1761                                   EvalInfo &Info);
1762 static bool EvaluateTemporary(const Expr *E, LValue &Result, EvalInfo &Info);
1763 static bool EvaluateInteger(const Expr *E, APSInt &Result, EvalInfo &Info);
1764 static bool EvaluateIntegerOrLValue(const Expr *E, APValue &Result,
1765                                     EvalInfo &Info);
1766 static bool EvaluateFloat(const Expr *E, APFloat &Result, EvalInfo &Info);
1767 static bool EvaluateComplex(const Expr *E, ComplexValue &Res, EvalInfo &Info);
1768 static bool EvaluateAtomic(const Expr *E, const LValue *This, APValue &Result,
1769                            EvalInfo &Info);
1770 static bool EvaluateAsRValue(EvalInfo &Info, const Expr *E, APValue &Result);
1771 
1772 /// Evaluate an integer or fixed point expression into an APResult.
1773 static bool EvaluateFixedPointOrInteger(const Expr *E, APFixedPoint &Result,
1774                                         EvalInfo &Info);
1775 
1776 /// Evaluate only a fixed point expression into an APResult.
1777 static bool EvaluateFixedPoint(const Expr *E, APFixedPoint &Result,
1778                                EvalInfo &Info);
1779 
1780 //===----------------------------------------------------------------------===//
1781 // Misc utilities
1782 //===----------------------------------------------------------------------===//
1783 
1784 /// Negate an APSInt in place, converting it to a signed form if necessary, and
1785 /// preserving its value (by extending by up to one bit as needed).
1786 static void negateAsSigned(APSInt &Int) {
1787   if (Int.isUnsigned() || Int.isMinSignedValue()) {
1788     Int = Int.extend(Int.getBitWidth() + 1);
1789     Int.setIsSigned(true);
1790   }
1791   Int = -Int;
1792 }
1793 
1794 template<typename KeyT>
1795 APValue &CallStackFrame::createTemporary(const KeyT *Key, QualType T,
1796                                          bool IsLifetimeExtended, LValue &LV) {
1797   unsigned Version = getTempVersion();
1798   APValue::LValueBase Base(Key, Index, Version);
1799   LV.set(Base);
1800   APValue &Result = Temporaries[MapKeyTy(Key, Version)];
1801   assert(Result.isAbsent() && "temporary created multiple times");
1802 
1803   // If we're creating a temporary immediately in the operand of a speculative
1804   // evaluation, don't register a cleanup to be run outside the speculative
1805   // evaluation context, since we won't actually be able to initialize this
1806   // object.
1807   if (Index <= Info.SpeculativeEvaluationDepth) {
1808     if (T.isDestructedType())
1809       Info.noteSideEffect();
1810   } else {
1811     Info.CleanupStack.push_back(Cleanup(&Result, Base, T, IsLifetimeExtended));
1812   }
1813   return Result;
1814 }
1815 
1816 APValue *EvalInfo::createHeapAlloc(const Expr *E, QualType T, LValue &LV) {
1817   if (NumHeapAllocs > DynamicAllocLValue::getMaxIndex()) {
1818     FFDiag(E, diag::note_constexpr_heap_alloc_limit_exceeded);
1819     return nullptr;
1820   }
1821 
1822   DynamicAllocLValue DA(NumHeapAllocs++);
1823   LV.set(APValue::LValueBase::getDynamicAlloc(DA, T));
1824   auto Result = HeapAllocs.emplace(std::piecewise_construct,
1825                                    std::forward_as_tuple(DA), std::tuple<>());
1826   assert(Result.second && "reused a heap alloc index?");
1827   Result.first->second.AllocExpr = E;
1828   return &Result.first->second.Value;
1829 }
1830 
1831 /// Produce a string describing the given constexpr call.
1832 void CallStackFrame::describe(raw_ostream &Out) {
1833   unsigned ArgIndex = 0;
1834   bool IsMemberCall = isa<CXXMethodDecl>(Callee) &&
1835                       !isa<CXXConstructorDecl>(Callee) &&
1836                       cast<CXXMethodDecl>(Callee)->isInstance();
1837 
1838   if (!IsMemberCall)
1839     Out << *Callee << '(';
1840 
1841   if (This && IsMemberCall) {
1842     APValue Val;
1843     This->moveInto(Val);
1844     Val.printPretty(Out, Info.Ctx,
1845                     This->Designator.MostDerivedType);
1846     // FIXME: Add parens around Val if needed.
1847     Out << "->" << *Callee << '(';
1848     IsMemberCall = false;
1849   }
1850 
1851   for (FunctionDecl::param_const_iterator I = Callee->param_begin(),
1852        E = Callee->param_end(); I != E; ++I, ++ArgIndex) {
1853     if (ArgIndex > (unsigned)IsMemberCall)
1854       Out << ", ";
1855 
1856     const ParmVarDecl *Param = *I;
1857     const APValue &Arg = Arguments[ArgIndex];
1858     Arg.printPretty(Out, Info.Ctx, Param->getType());
1859 
1860     if (ArgIndex == 0 && IsMemberCall)
1861       Out << "->" << *Callee << '(';
1862   }
1863 
1864   Out << ')';
1865 }
1866 
1867 /// Evaluate an expression to see if it had side-effects, and discard its
1868 /// result.
1869 /// \return \c true if the caller should keep evaluating.
1870 static bool EvaluateIgnoredValue(EvalInfo &Info, const Expr *E) {
1871   APValue Scratch;
1872   if (!Evaluate(Scratch, Info, E))
1873     // We don't need the value, but we might have skipped a side effect here.
1874     return Info.noteSideEffect();
1875   return true;
1876 }
1877 
1878 /// Should this call expression be treated as a string literal?
1879 static bool IsStringLiteralCall(const CallExpr *E) {
1880   unsigned Builtin = E->getBuiltinCallee();
1881   return (Builtin == Builtin::BI__builtin___CFStringMakeConstantString ||
1882           Builtin == Builtin::BI__builtin___NSStringMakeConstantString);
1883 }
1884 
1885 static bool IsGlobalLValue(APValue::LValueBase B) {
1886   // C++11 [expr.const]p3 An address constant expression is a prvalue core
1887   // constant expression of pointer type that evaluates to...
1888 
1889   // ... a null pointer value, or a prvalue core constant expression of type
1890   // std::nullptr_t.
1891   if (!B) return true;
1892 
1893   if (const ValueDecl *D = B.dyn_cast<const ValueDecl*>()) {
1894     // ... the address of an object with static storage duration,
1895     if (const VarDecl *VD = dyn_cast<VarDecl>(D))
1896       return VD->hasGlobalStorage();
1897     // ... the address of a function,
1898     // ... the address of a GUID [MS extension],
1899     return isa<FunctionDecl>(D) || isa<MSGuidDecl>(D);
1900   }
1901 
1902   if (B.is<TypeInfoLValue>() || B.is<DynamicAllocLValue>())
1903     return true;
1904 
1905   const Expr *E = B.get<const Expr*>();
1906   switch (E->getStmtClass()) {
1907   default:
1908     return false;
1909   case Expr::CompoundLiteralExprClass: {
1910     const CompoundLiteralExpr *CLE = cast<CompoundLiteralExpr>(E);
1911     return CLE->isFileScope() && CLE->isLValue();
1912   }
1913   case Expr::MaterializeTemporaryExprClass:
1914     // A materialized temporary might have been lifetime-extended to static
1915     // storage duration.
1916     return cast<MaterializeTemporaryExpr>(E)->getStorageDuration() == SD_Static;
1917   // A string literal has static storage duration.
1918   case Expr::StringLiteralClass:
1919   case Expr::PredefinedExprClass:
1920   case Expr::ObjCStringLiteralClass:
1921   case Expr::ObjCEncodeExprClass:
1922     return true;
1923   case Expr::ObjCBoxedExprClass:
1924     return cast<ObjCBoxedExpr>(E)->isExpressibleAsConstantInitializer();
1925   case Expr::CallExprClass:
1926     return IsStringLiteralCall(cast<CallExpr>(E));
1927   // For GCC compatibility, &&label has static storage duration.
1928   case Expr::AddrLabelExprClass:
1929     return true;
1930   // A Block literal expression may be used as the initialization value for
1931   // Block variables at global or local static scope.
1932   case Expr::BlockExprClass:
1933     return !cast<BlockExpr>(E)->getBlockDecl()->hasCaptures();
1934   case Expr::ImplicitValueInitExprClass:
1935     // FIXME:
1936     // We can never form an lvalue with an implicit value initialization as its
1937     // base through expression evaluation, so these only appear in one case: the
1938     // implicit variable declaration we invent when checking whether a constexpr
1939     // constructor can produce a constant expression. We must assume that such
1940     // an expression might be a global lvalue.
1941     return true;
1942   }
1943 }
1944 
1945 static const ValueDecl *GetLValueBaseDecl(const LValue &LVal) {
1946   return LVal.Base.dyn_cast<const ValueDecl*>();
1947 }
1948 
1949 static bool IsLiteralLValue(const LValue &Value) {
1950   if (Value.getLValueCallIndex())
1951     return false;
1952   const Expr *E = Value.Base.dyn_cast<const Expr*>();
1953   return E && !isa<MaterializeTemporaryExpr>(E);
1954 }
1955 
1956 static bool IsWeakLValue(const LValue &Value) {
1957   const ValueDecl *Decl = GetLValueBaseDecl(Value);
1958   return Decl && Decl->isWeak();
1959 }
1960 
1961 static bool isZeroSized(const LValue &Value) {
1962   const ValueDecl *Decl = GetLValueBaseDecl(Value);
1963   if (Decl && isa<VarDecl>(Decl)) {
1964     QualType Ty = Decl->getType();
1965     if (Ty->isArrayType())
1966       return Ty->isIncompleteType() ||
1967              Decl->getASTContext().getTypeSize(Ty) == 0;
1968   }
1969   return false;
1970 }
1971 
1972 static bool HasSameBase(const LValue &A, const LValue &B) {
1973   if (!A.getLValueBase())
1974     return !B.getLValueBase();
1975   if (!B.getLValueBase())
1976     return false;
1977 
1978   if (A.getLValueBase().getOpaqueValue() !=
1979       B.getLValueBase().getOpaqueValue()) {
1980     const Decl *ADecl = GetLValueBaseDecl(A);
1981     if (!ADecl)
1982       return false;
1983     const Decl *BDecl = GetLValueBaseDecl(B);
1984     if (!BDecl || ADecl->getCanonicalDecl() != BDecl->getCanonicalDecl())
1985       return false;
1986   }
1987 
1988   return IsGlobalLValue(A.getLValueBase()) ||
1989          (A.getLValueCallIndex() == B.getLValueCallIndex() &&
1990           A.getLValueVersion() == B.getLValueVersion());
1991 }
1992 
1993 static void NoteLValueLocation(EvalInfo &Info, APValue::LValueBase Base) {
1994   assert(Base && "no location for a null lvalue");
1995   const ValueDecl *VD = Base.dyn_cast<const ValueDecl*>();
1996   if (VD)
1997     Info.Note(VD->getLocation(), diag::note_declared_at);
1998   else if (const Expr *E = Base.dyn_cast<const Expr*>())
1999     Info.Note(E->getExprLoc(), diag::note_constexpr_temporary_here);
2000   else if (DynamicAllocLValue DA = Base.dyn_cast<DynamicAllocLValue>()) {
2001     // FIXME: Produce a note for dangling pointers too.
2002     if (Optional<DynAlloc*> Alloc = Info.lookupDynamicAlloc(DA))
2003       Info.Note((*Alloc)->AllocExpr->getExprLoc(),
2004                 diag::note_constexpr_dynamic_alloc_here);
2005   }
2006   // We have no information to show for a typeid(T) object.
2007 }
2008 
2009 enum class CheckEvaluationResultKind {
2010   ConstantExpression,
2011   FullyInitialized,
2012 };
2013 
2014 /// Materialized temporaries that we've already checked to determine if they're
2015 /// initializsed by a constant expression.
2016 using CheckedTemporaries =
2017     llvm::SmallPtrSet<const MaterializeTemporaryExpr *, 8>;
2018 
2019 static bool CheckEvaluationResult(CheckEvaluationResultKind CERK,
2020                                   EvalInfo &Info, SourceLocation DiagLoc,
2021                                   QualType Type, const APValue &Value,
2022                                   Expr::ConstExprUsage Usage,
2023                                   SourceLocation SubobjectLoc,
2024                                   CheckedTemporaries &CheckedTemps);
2025 
2026 /// Check that this reference or pointer core constant expression is a valid
2027 /// value for an address or reference constant expression. Return true if we
2028 /// can fold this expression, whether or not it's a constant expression.
2029 static bool CheckLValueConstantExpression(EvalInfo &Info, SourceLocation Loc,
2030                                           QualType Type, const LValue &LVal,
2031                                           Expr::ConstExprUsage Usage,
2032                                           CheckedTemporaries &CheckedTemps) {
2033   bool IsReferenceType = Type->isReferenceType();
2034 
2035   APValue::LValueBase Base = LVal.getLValueBase();
2036   const SubobjectDesignator &Designator = LVal.getLValueDesignator();
2037 
2038   if (auto *VD = LVal.getLValueBase().dyn_cast<const ValueDecl *>()) {
2039     if (auto *FD = dyn_cast<FunctionDecl>(VD)) {
2040       if (FD->isConsteval()) {
2041         Info.FFDiag(Loc, diag::note_consteval_address_accessible)
2042             << !Type->isAnyPointerType();
2043         Info.Note(FD->getLocation(), diag::note_declared_at);
2044         return false;
2045       }
2046     }
2047   }
2048 
2049   // Check that the object is a global. Note that the fake 'this' object we
2050   // manufacture when checking potential constant expressions is conservatively
2051   // assumed to be global here.
2052   if (!IsGlobalLValue(Base)) {
2053     if (Info.getLangOpts().CPlusPlus11) {
2054       const ValueDecl *VD = Base.dyn_cast<const ValueDecl*>();
2055       Info.FFDiag(Loc, diag::note_constexpr_non_global, 1)
2056         << IsReferenceType << !Designator.Entries.empty()
2057         << !!VD << VD;
2058       NoteLValueLocation(Info, Base);
2059     } else {
2060       Info.FFDiag(Loc);
2061     }
2062     // Don't allow references to temporaries to escape.
2063     return false;
2064   }
2065   assert((Info.checkingPotentialConstantExpression() ||
2066           LVal.getLValueCallIndex() == 0) &&
2067          "have call index for global lvalue");
2068 
2069   if (Base.is<DynamicAllocLValue>()) {
2070     Info.FFDiag(Loc, diag::note_constexpr_dynamic_alloc)
2071         << IsReferenceType << !Designator.Entries.empty();
2072     NoteLValueLocation(Info, Base);
2073     return false;
2074   }
2075 
2076   if (const ValueDecl *VD = Base.dyn_cast<const ValueDecl*>()) {
2077     if (const VarDecl *Var = dyn_cast<const VarDecl>(VD)) {
2078       // Check if this is a thread-local variable.
2079       if (Var->getTLSKind())
2080         // FIXME: Diagnostic!
2081         return false;
2082 
2083       // A dllimport variable never acts like a constant.
2084       if (Usage == Expr::EvaluateForCodeGen && Var->hasAttr<DLLImportAttr>())
2085         // FIXME: Diagnostic!
2086         return false;
2087     }
2088     if (const auto *FD = dyn_cast<const FunctionDecl>(VD)) {
2089       // __declspec(dllimport) must be handled very carefully:
2090       // We must never initialize an expression with the thunk in C++.
2091       // Doing otherwise would allow the same id-expression to yield
2092       // different addresses for the same function in different translation
2093       // units.  However, this means that we must dynamically initialize the
2094       // expression with the contents of the import address table at runtime.
2095       //
2096       // The C language has no notion of ODR; furthermore, it has no notion of
2097       // dynamic initialization.  This means that we are permitted to
2098       // perform initialization with the address of the thunk.
2099       if (Info.getLangOpts().CPlusPlus && Usage == Expr::EvaluateForCodeGen &&
2100           FD->hasAttr<DLLImportAttr>())
2101         // FIXME: Diagnostic!
2102         return false;
2103     }
2104   } else if (const auto *MTE = dyn_cast_or_null<MaterializeTemporaryExpr>(
2105                  Base.dyn_cast<const Expr *>())) {
2106     if (CheckedTemps.insert(MTE).second) {
2107       QualType TempType = getType(Base);
2108       if (TempType.isDestructedType()) {
2109         Info.FFDiag(MTE->getExprLoc(),
2110                     diag::note_constexpr_unsupported_tempoarary_nontrivial_dtor)
2111             << TempType;
2112         return false;
2113       }
2114 
2115       APValue *V = MTE->getOrCreateValue(false);
2116       assert(V && "evasluation result refers to uninitialised temporary");
2117       if (!CheckEvaluationResult(CheckEvaluationResultKind::ConstantExpression,
2118                                  Info, MTE->getExprLoc(), TempType, *V,
2119                                  Usage, SourceLocation(), CheckedTemps))
2120         return false;
2121     }
2122   }
2123 
2124   // Allow address constant expressions to be past-the-end pointers. This is
2125   // an extension: the standard requires them to point to an object.
2126   if (!IsReferenceType)
2127     return true;
2128 
2129   // A reference constant expression must refer to an object.
2130   if (!Base) {
2131     // FIXME: diagnostic
2132     Info.CCEDiag(Loc);
2133     return true;
2134   }
2135 
2136   // Does this refer one past the end of some object?
2137   if (!Designator.Invalid && Designator.isOnePastTheEnd()) {
2138     const ValueDecl *VD = Base.dyn_cast<const ValueDecl*>();
2139     Info.FFDiag(Loc, diag::note_constexpr_past_end, 1)
2140       << !Designator.Entries.empty() << !!VD << VD;
2141     NoteLValueLocation(Info, Base);
2142   }
2143 
2144   return true;
2145 }
2146 
2147 /// Member pointers are constant expressions unless they point to a
2148 /// non-virtual dllimport member function.
2149 static bool CheckMemberPointerConstantExpression(EvalInfo &Info,
2150                                                  SourceLocation Loc,
2151                                                  QualType Type,
2152                                                  const APValue &Value,
2153                                                  Expr::ConstExprUsage Usage) {
2154   const ValueDecl *Member = Value.getMemberPointerDecl();
2155   const auto *FD = dyn_cast_or_null<CXXMethodDecl>(Member);
2156   if (!FD)
2157     return true;
2158   if (FD->isConsteval()) {
2159     Info.FFDiag(Loc, diag::note_consteval_address_accessible) << /*pointer*/ 0;
2160     Info.Note(FD->getLocation(), diag::note_declared_at);
2161     return false;
2162   }
2163   return Usage == Expr::EvaluateForMangling || FD->isVirtual() ||
2164          !FD->hasAttr<DLLImportAttr>();
2165 }
2166 
2167 /// Check that this core constant expression is of literal type, and if not,
2168 /// produce an appropriate diagnostic.
2169 static bool CheckLiteralType(EvalInfo &Info, const Expr *E,
2170                              const LValue *This = nullptr) {
2171   if (!E->isRValue() || E->getType()->isLiteralType(Info.Ctx))
2172     return true;
2173 
2174   // C++1y: A constant initializer for an object o [...] may also invoke
2175   // constexpr constructors for o and its subobjects even if those objects
2176   // are of non-literal class types.
2177   //
2178   // C++11 missed this detail for aggregates, so classes like this:
2179   //   struct foo_t { union { int i; volatile int j; } u; };
2180   // are not (obviously) initializable like so:
2181   //   __attribute__((__require_constant_initialization__))
2182   //   static const foo_t x = {{0}};
2183   // because "i" is a subobject with non-literal initialization (due to the
2184   // volatile member of the union). See:
2185   //   http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_active.html#1677
2186   // Therefore, we use the C++1y behavior.
2187   if (This && Info.EvaluatingDecl == This->getLValueBase())
2188     return true;
2189 
2190   // Prvalue constant expressions must be of literal types.
2191   if (Info.getLangOpts().CPlusPlus11)
2192     Info.FFDiag(E, diag::note_constexpr_nonliteral)
2193       << E->getType();
2194   else
2195     Info.FFDiag(E, diag::note_invalid_subexpr_in_const_expr);
2196   return false;
2197 }
2198 
2199 static bool CheckEvaluationResult(CheckEvaluationResultKind CERK,
2200                                   EvalInfo &Info, SourceLocation DiagLoc,
2201                                   QualType Type, const APValue &Value,
2202                                   Expr::ConstExprUsage Usage,
2203                                   SourceLocation SubobjectLoc,
2204                                   CheckedTemporaries &CheckedTemps) {
2205   if (!Value.hasValue()) {
2206     Info.FFDiag(DiagLoc, diag::note_constexpr_uninitialized)
2207       << true << Type;
2208     if (SubobjectLoc.isValid())
2209       Info.Note(SubobjectLoc, diag::note_constexpr_subobject_declared_here);
2210     return false;
2211   }
2212 
2213   // We allow _Atomic(T) to be initialized from anything that T can be
2214   // initialized from.
2215   if (const AtomicType *AT = Type->getAs<AtomicType>())
2216     Type = AT->getValueType();
2217 
2218   // Core issue 1454: For a literal constant expression of array or class type,
2219   // each subobject of its value shall have been initialized by a constant
2220   // expression.
2221   if (Value.isArray()) {
2222     QualType EltTy = Type->castAsArrayTypeUnsafe()->getElementType();
2223     for (unsigned I = 0, N = Value.getArrayInitializedElts(); I != N; ++I) {
2224       if (!CheckEvaluationResult(CERK, Info, DiagLoc, EltTy,
2225                                  Value.getArrayInitializedElt(I), Usage,
2226                                  SubobjectLoc, CheckedTemps))
2227         return false;
2228     }
2229     if (!Value.hasArrayFiller())
2230       return true;
2231     return CheckEvaluationResult(CERK, Info, DiagLoc, EltTy,
2232                                  Value.getArrayFiller(), Usage, SubobjectLoc,
2233                                  CheckedTemps);
2234   }
2235   if (Value.isUnion() && Value.getUnionField()) {
2236     return CheckEvaluationResult(
2237         CERK, Info, DiagLoc, Value.getUnionField()->getType(),
2238         Value.getUnionValue(), Usage, Value.getUnionField()->getLocation(),
2239         CheckedTemps);
2240   }
2241   if (Value.isStruct()) {
2242     RecordDecl *RD = Type->castAs<RecordType>()->getDecl();
2243     if (const CXXRecordDecl *CD = dyn_cast<CXXRecordDecl>(RD)) {
2244       unsigned BaseIndex = 0;
2245       for (const CXXBaseSpecifier &BS : CD->bases()) {
2246         if (!CheckEvaluationResult(CERK, Info, DiagLoc, BS.getType(),
2247                                    Value.getStructBase(BaseIndex), Usage,
2248                                    BS.getBeginLoc(), CheckedTemps))
2249           return false;
2250         ++BaseIndex;
2251       }
2252     }
2253     for (const auto *I : RD->fields()) {
2254       if (I->isUnnamedBitfield())
2255         continue;
2256 
2257       if (!CheckEvaluationResult(CERK, Info, DiagLoc, I->getType(),
2258                                  Value.getStructField(I->getFieldIndex()),
2259                                  Usage, I->getLocation(), CheckedTemps))
2260         return false;
2261     }
2262   }
2263 
2264   if (Value.isLValue() &&
2265       CERK == CheckEvaluationResultKind::ConstantExpression) {
2266     LValue LVal;
2267     LVal.setFrom(Info.Ctx, Value);
2268     return CheckLValueConstantExpression(Info, DiagLoc, Type, LVal, Usage,
2269                                          CheckedTemps);
2270   }
2271 
2272   if (Value.isMemberPointer() &&
2273       CERK == CheckEvaluationResultKind::ConstantExpression)
2274     return CheckMemberPointerConstantExpression(Info, DiagLoc, Type, Value, Usage);
2275 
2276   // Everything else is fine.
2277   return true;
2278 }
2279 
2280 /// Check that this core constant expression value is a valid value for a
2281 /// constant expression. If not, report an appropriate diagnostic. Does not
2282 /// check that the expression is of literal type.
2283 static bool
2284 CheckConstantExpression(EvalInfo &Info, SourceLocation DiagLoc, QualType Type,
2285                         const APValue &Value,
2286                         Expr::ConstExprUsage Usage = Expr::EvaluateForCodeGen) {
2287   CheckedTemporaries CheckedTemps;
2288   return CheckEvaluationResult(CheckEvaluationResultKind::ConstantExpression,
2289                                Info, DiagLoc, Type, Value, Usage,
2290                                SourceLocation(), CheckedTemps);
2291 }
2292 
2293 /// Check that this evaluated value is fully-initialized and can be loaded by
2294 /// an lvalue-to-rvalue conversion.
2295 static bool CheckFullyInitialized(EvalInfo &Info, SourceLocation DiagLoc,
2296                                   QualType Type, const APValue &Value) {
2297   CheckedTemporaries CheckedTemps;
2298   return CheckEvaluationResult(
2299       CheckEvaluationResultKind::FullyInitialized, Info, DiagLoc, Type, Value,
2300       Expr::EvaluateForCodeGen, SourceLocation(), CheckedTemps);
2301 }
2302 
2303 /// Enforce C++2a [expr.const]/4.17, which disallows new-expressions unless
2304 /// "the allocated storage is deallocated within the evaluation".
2305 static bool CheckMemoryLeaks(EvalInfo &Info) {
2306   if (!Info.HeapAllocs.empty()) {
2307     // We can still fold to a constant despite a compile-time memory leak,
2308     // so long as the heap allocation isn't referenced in the result (we check
2309     // that in CheckConstantExpression).
2310     Info.CCEDiag(Info.HeapAllocs.begin()->second.AllocExpr,
2311                  diag::note_constexpr_memory_leak)
2312         << unsigned(Info.HeapAllocs.size() - 1);
2313   }
2314   return true;
2315 }
2316 
2317 static bool EvalPointerValueAsBool(const APValue &Value, bool &Result) {
2318   // A null base expression indicates a null pointer.  These are always
2319   // evaluatable, and they are false unless the offset is zero.
2320   if (!Value.getLValueBase()) {
2321     Result = !Value.getLValueOffset().isZero();
2322     return true;
2323   }
2324 
2325   // We have a non-null base.  These are generally known to be true, but if it's
2326   // a weak declaration it can be null at runtime.
2327   Result = true;
2328   const ValueDecl *Decl = Value.getLValueBase().dyn_cast<const ValueDecl*>();
2329   return !Decl || !Decl->isWeak();
2330 }
2331 
2332 static bool HandleConversionToBool(const APValue &Val, bool &Result) {
2333   switch (Val.getKind()) {
2334   case APValue::None:
2335   case APValue::Indeterminate:
2336     return false;
2337   case APValue::Int:
2338     Result = Val.getInt().getBoolValue();
2339     return true;
2340   case APValue::FixedPoint:
2341     Result = Val.getFixedPoint().getBoolValue();
2342     return true;
2343   case APValue::Float:
2344     Result = !Val.getFloat().isZero();
2345     return true;
2346   case APValue::ComplexInt:
2347     Result = Val.getComplexIntReal().getBoolValue() ||
2348              Val.getComplexIntImag().getBoolValue();
2349     return true;
2350   case APValue::ComplexFloat:
2351     Result = !Val.getComplexFloatReal().isZero() ||
2352              !Val.getComplexFloatImag().isZero();
2353     return true;
2354   case APValue::LValue:
2355     return EvalPointerValueAsBool(Val, Result);
2356   case APValue::MemberPointer:
2357     Result = Val.getMemberPointerDecl();
2358     return true;
2359   case APValue::Vector:
2360   case APValue::Array:
2361   case APValue::Struct:
2362   case APValue::Union:
2363   case APValue::AddrLabelDiff:
2364     return false;
2365   }
2366 
2367   llvm_unreachable("unknown APValue kind");
2368 }
2369 
2370 static bool EvaluateAsBooleanCondition(const Expr *E, bool &Result,
2371                                        EvalInfo &Info) {
2372   assert(E->isRValue() && "missing lvalue-to-rvalue conv in bool condition");
2373   APValue Val;
2374   if (!Evaluate(Val, Info, E))
2375     return false;
2376   return HandleConversionToBool(Val, Result);
2377 }
2378 
2379 template<typename T>
2380 static bool HandleOverflow(EvalInfo &Info, const Expr *E,
2381                            const T &SrcValue, QualType DestType) {
2382   Info.CCEDiag(E, diag::note_constexpr_overflow)
2383     << SrcValue << DestType;
2384   return Info.noteUndefinedBehavior();
2385 }
2386 
2387 static bool HandleFloatToIntCast(EvalInfo &Info, const Expr *E,
2388                                  QualType SrcType, const APFloat &Value,
2389                                  QualType DestType, APSInt &Result) {
2390   unsigned DestWidth = Info.Ctx.getIntWidth(DestType);
2391   // Determine whether we are converting to unsigned or signed.
2392   bool DestSigned = DestType->isSignedIntegerOrEnumerationType();
2393 
2394   Result = APSInt(DestWidth, !DestSigned);
2395   bool ignored;
2396   if (Value.convertToInteger(Result, llvm::APFloat::rmTowardZero, &ignored)
2397       & APFloat::opInvalidOp)
2398     return HandleOverflow(Info, E, Value, DestType);
2399   return true;
2400 }
2401 
2402 static bool HandleFloatToFloatCast(EvalInfo &Info, const Expr *E,
2403                                    QualType SrcType, QualType DestType,
2404                                    APFloat &Result) {
2405   APFloat Value = Result;
2406   bool ignored;
2407   Result.convert(Info.Ctx.getFloatTypeSemantics(DestType),
2408                  APFloat::rmNearestTiesToEven, &ignored);
2409   return true;
2410 }
2411 
2412 static APSInt HandleIntToIntCast(EvalInfo &Info, const Expr *E,
2413                                  QualType DestType, QualType SrcType,
2414                                  const APSInt &Value) {
2415   unsigned DestWidth = Info.Ctx.getIntWidth(DestType);
2416   // Figure out if this is a truncate, extend or noop cast.
2417   // If the input is signed, do a sign extend, noop, or truncate.
2418   APSInt Result = Value.extOrTrunc(DestWidth);
2419   Result.setIsUnsigned(DestType->isUnsignedIntegerOrEnumerationType());
2420   if (DestType->isBooleanType())
2421     Result = Value.getBoolValue();
2422   return Result;
2423 }
2424 
2425 static bool HandleIntToFloatCast(EvalInfo &Info, const Expr *E,
2426                                  QualType SrcType, const APSInt &Value,
2427                                  QualType DestType, APFloat &Result) {
2428   Result = APFloat(Info.Ctx.getFloatTypeSemantics(DestType), 1);
2429   Result.convertFromAPInt(Value, Value.isSigned(),
2430                           APFloat::rmNearestTiesToEven);
2431   return true;
2432 }
2433 
2434 static bool truncateBitfieldValue(EvalInfo &Info, const Expr *E,
2435                                   APValue &Value, const FieldDecl *FD) {
2436   assert(FD->isBitField() && "truncateBitfieldValue on non-bitfield");
2437 
2438   if (!Value.isInt()) {
2439     // Trying to store a pointer-cast-to-integer into a bitfield.
2440     // FIXME: In this case, we should provide the diagnostic for casting
2441     // a pointer to an integer.
2442     assert(Value.isLValue() && "integral value neither int nor lvalue?");
2443     Info.FFDiag(E);
2444     return false;
2445   }
2446 
2447   APSInt &Int = Value.getInt();
2448   unsigned OldBitWidth = Int.getBitWidth();
2449   unsigned NewBitWidth = FD->getBitWidthValue(Info.Ctx);
2450   if (NewBitWidth < OldBitWidth)
2451     Int = Int.trunc(NewBitWidth).extend(OldBitWidth);
2452   return true;
2453 }
2454 
2455 static bool EvalAndBitcastToAPInt(EvalInfo &Info, const Expr *E,
2456                                   llvm::APInt &Res) {
2457   APValue SVal;
2458   if (!Evaluate(SVal, Info, E))
2459     return false;
2460   if (SVal.isInt()) {
2461     Res = SVal.getInt();
2462     return true;
2463   }
2464   if (SVal.isFloat()) {
2465     Res = SVal.getFloat().bitcastToAPInt();
2466     return true;
2467   }
2468   if (SVal.isVector()) {
2469     QualType VecTy = E->getType();
2470     unsigned VecSize = Info.Ctx.getTypeSize(VecTy);
2471     QualType EltTy = VecTy->castAs<VectorType>()->getElementType();
2472     unsigned EltSize = Info.Ctx.getTypeSize(EltTy);
2473     bool BigEndian = Info.Ctx.getTargetInfo().isBigEndian();
2474     Res = llvm::APInt::getNullValue(VecSize);
2475     for (unsigned i = 0; i < SVal.getVectorLength(); i++) {
2476       APValue &Elt = SVal.getVectorElt(i);
2477       llvm::APInt EltAsInt;
2478       if (Elt.isInt()) {
2479         EltAsInt = Elt.getInt();
2480       } else if (Elt.isFloat()) {
2481         EltAsInt = Elt.getFloat().bitcastToAPInt();
2482       } else {
2483         // Don't try to handle vectors of anything other than int or float
2484         // (not sure if it's possible to hit this case).
2485         Info.FFDiag(E, diag::note_invalid_subexpr_in_const_expr);
2486         return false;
2487       }
2488       unsigned BaseEltSize = EltAsInt.getBitWidth();
2489       if (BigEndian)
2490         Res |= EltAsInt.zextOrTrunc(VecSize).rotr(i*EltSize+BaseEltSize);
2491       else
2492         Res |= EltAsInt.zextOrTrunc(VecSize).rotl(i*EltSize);
2493     }
2494     return true;
2495   }
2496   // Give up if the input isn't an int, float, or vector.  For example, we
2497   // reject "(v4i16)(intptr_t)&a".
2498   Info.FFDiag(E, diag::note_invalid_subexpr_in_const_expr);
2499   return false;
2500 }
2501 
2502 /// Perform the given integer operation, which is known to need at most BitWidth
2503 /// bits, and check for overflow in the original type (if that type was not an
2504 /// unsigned type).
2505 template<typename Operation>
2506 static bool CheckedIntArithmetic(EvalInfo &Info, const Expr *E,
2507                                  const APSInt &LHS, const APSInt &RHS,
2508                                  unsigned BitWidth, Operation Op,
2509                                  APSInt &Result) {
2510   if (LHS.isUnsigned()) {
2511     Result = Op(LHS, RHS);
2512     return true;
2513   }
2514 
2515   APSInt Value(Op(LHS.extend(BitWidth), RHS.extend(BitWidth)), false);
2516   Result = Value.trunc(LHS.getBitWidth());
2517   if (Result.extend(BitWidth) != Value) {
2518     if (Info.checkingForUndefinedBehavior())
2519       Info.Ctx.getDiagnostics().Report(E->getExprLoc(),
2520                                        diag::warn_integer_constant_overflow)
2521           << Result.toString(10) << E->getType();
2522     else
2523       return HandleOverflow(Info, E, Value, E->getType());
2524   }
2525   return true;
2526 }
2527 
2528 /// Perform the given binary integer operation.
2529 static bool handleIntIntBinOp(EvalInfo &Info, const Expr *E, const APSInt &LHS,
2530                               BinaryOperatorKind Opcode, APSInt RHS,
2531                               APSInt &Result) {
2532   switch (Opcode) {
2533   default:
2534     Info.FFDiag(E);
2535     return false;
2536   case BO_Mul:
2537     return CheckedIntArithmetic(Info, E, LHS, RHS, LHS.getBitWidth() * 2,
2538                                 std::multiplies<APSInt>(), Result);
2539   case BO_Add:
2540     return CheckedIntArithmetic(Info, E, LHS, RHS, LHS.getBitWidth() + 1,
2541                                 std::plus<APSInt>(), Result);
2542   case BO_Sub:
2543     return CheckedIntArithmetic(Info, E, LHS, RHS, LHS.getBitWidth() + 1,
2544                                 std::minus<APSInt>(), Result);
2545   case BO_And: Result = LHS & RHS; return true;
2546   case BO_Xor: Result = LHS ^ RHS; return true;
2547   case BO_Or:  Result = LHS | RHS; return true;
2548   case BO_Div:
2549   case BO_Rem:
2550     if (RHS == 0) {
2551       Info.FFDiag(E, diag::note_expr_divide_by_zero);
2552       return false;
2553     }
2554     Result = (Opcode == BO_Rem ? LHS % RHS : LHS / RHS);
2555     // Check for overflow case: INT_MIN / -1 or INT_MIN % -1. APSInt supports
2556     // this operation and gives the two's complement result.
2557     if (RHS.isNegative() && RHS.isAllOnesValue() &&
2558         LHS.isSigned() && LHS.isMinSignedValue())
2559       return HandleOverflow(Info, E, -LHS.extend(LHS.getBitWidth() + 1),
2560                             E->getType());
2561     return true;
2562   case BO_Shl: {
2563     if (Info.getLangOpts().OpenCL)
2564       // OpenCL 6.3j: shift values are effectively % word size of LHS.
2565       RHS &= APSInt(llvm::APInt(RHS.getBitWidth(),
2566                     static_cast<uint64_t>(LHS.getBitWidth() - 1)),
2567                     RHS.isUnsigned());
2568     else if (RHS.isSigned() && RHS.isNegative()) {
2569       // During constant-folding, a negative shift is an opposite shift. Such
2570       // a shift is not a constant expression.
2571       Info.CCEDiag(E, diag::note_constexpr_negative_shift) << RHS;
2572       RHS = -RHS;
2573       goto shift_right;
2574     }
2575   shift_left:
2576     // C++11 [expr.shift]p1: Shift width must be less than the bit width of
2577     // the shifted type.
2578     unsigned SA = (unsigned) RHS.getLimitedValue(LHS.getBitWidth()-1);
2579     if (SA != RHS) {
2580       Info.CCEDiag(E, diag::note_constexpr_large_shift)
2581         << RHS << E->getType() << LHS.getBitWidth();
2582     } else if (LHS.isSigned() && !Info.getLangOpts().CPlusPlus20) {
2583       // C++11 [expr.shift]p2: A signed left shift must have a non-negative
2584       // operand, and must not overflow the corresponding unsigned type.
2585       // C++2a [expr.shift]p2: E1 << E2 is the unique value congruent to
2586       // E1 x 2^E2 module 2^N.
2587       if (LHS.isNegative())
2588         Info.CCEDiag(E, diag::note_constexpr_lshift_of_negative) << LHS;
2589       else if (LHS.countLeadingZeros() < SA)
2590         Info.CCEDiag(E, diag::note_constexpr_lshift_discards);
2591     }
2592     Result = LHS << SA;
2593     return true;
2594   }
2595   case BO_Shr: {
2596     if (Info.getLangOpts().OpenCL)
2597       // OpenCL 6.3j: shift values are effectively % word size of LHS.
2598       RHS &= APSInt(llvm::APInt(RHS.getBitWidth(),
2599                     static_cast<uint64_t>(LHS.getBitWidth() - 1)),
2600                     RHS.isUnsigned());
2601     else if (RHS.isSigned() && RHS.isNegative()) {
2602       // During constant-folding, a negative shift is an opposite shift. Such a
2603       // shift is not a constant expression.
2604       Info.CCEDiag(E, diag::note_constexpr_negative_shift) << RHS;
2605       RHS = -RHS;
2606       goto shift_left;
2607     }
2608   shift_right:
2609     // C++11 [expr.shift]p1: Shift width must be less than the bit width of the
2610     // shifted type.
2611     unsigned SA = (unsigned) RHS.getLimitedValue(LHS.getBitWidth()-1);
2612     if (SA != RHS)
2613       Info.CCEDiag(E, diag::note_constexpr_large_shift)
2614         << RHS << E->getType() << LHS.getBitWidth();
2615     Result = LHS >> SA;
2616     return true;
2617   }
2618 
2619   case BO_LT: Result = LHS < RHS; return true;
2620   case BO_GT: Result = LHS > RHS; return true;
2621   case BO_LE: Result = LHS <= RHS; return true;
2622   case BO_GE: Result = LHS >= RHS; return true;
2623   case BO_EQ: Result = LHS == RHS; return true;
2624   case BO_NE: Result = LHS != RHS; return true;
2625   case BO_Cmp:
2626     llvm_unreachable("BO_Cmp should be handled elsewhere");
2627   }
2628 }
2629 
2630 /// Perform the given binary floating-point operation, in-place, on LHS.
2631 static bool handleFloatFloatBinOp(EvalInfo &Info, const Expr *E,
2632                                   APFloat &LHS, BinaryOperatorKind Opcode,
2633                                   const APFloat &RHS) {
2634   switch (Opcode) {
2635   default:
2636     Info.FFDiag(E);
2637     return false;
2638   case BO_Mul:
2639     LHS.multiply(RHS, APFloat::rmNearestTiesToEven);
2640     break;
2641   case BO_Add:
2642     LHS.add(RHS, APFloat::rmNearestTiesToEven);
2643     break;
2644   case BO_Sub:
2645     LHS.subtract(RHS, APFloat::rmNearestTiesToEven);
2646     break;
2647   case BO_Div:
2648     // [expr.mul]p4:
2649     //   If the second operand of / or % is zero the behavior is undefined.
2650     if (RHS.isZero())
2651       Info.CCEDiag(E, diag::note_expr_divide_by_zero);
2652     LHS.divide(RHS, APFloat::rmNearestTiesToEven);
2653     break;
2654   }
2655 
2656   // [expr.pre]p4:
2657   //   If during the evaluation of an expression, the result is not
2658   //   mathematically defined [...], the behavior is undefined.
2659   // FIXME: C++ rules require us to not conform to IEEE 754 here.
2660   if (LHS.isNaN()) {
2661     Info.CCEDiag(E, diag::note_constexpr_float_arithmetic) << LHS.isNaN();
2662     return Info.noteUndefinedBehavior();
2663   }
2664   return true;
2665 }
2666 
2667 /// Cast an lvalue referring to a base subobject to a derived class, by
2668 /// truncating the lvalue's path to the given length.
2669 static bool CastToDerivedClass(EvalInfo &Info, const Expr *E, LValue &Result,
2670                                const RecordDecl *TruncatedType,
2671                                unsigned TruncatedElements) {
2672   SubobjectDesignator &D = Result.Designator;
2673 
2674   // Check we actually point to a derived class object.
2675   if (TruncatedElements == D.Entries.size())
2676     return true;
2677   assert(TruncatedElements >= D.MostDerivedPathLength &&
2678          "not casting to a derived class");
2679   if (!Result.checkSubobject(Info, E, CSK_Derived))
2680     return false;
2681 
2682   // Truncate the path to the subobject, and remove any derived-to-base offsets.
2683   const RecordDecl *RD = TruncatedType;
2684   for (unsigned I = TruncatedElements, N = D.Entries.size(); I != N; ++I) {
2685     if (RD->isInvalidDecl()) return false;
2686     const ASTRecordLayout &Layout = Info.Ctx.getASTRecordLayout(RD);
2687     const CXXRecordDecl *Base = getAsBaseClass(D.Entries[I]);
2688     if (isVirtualBaseClass(D.Entries[I]))
2689       Result.Offset -= Layout.getVBaseClassOffset(Base);
2690     else
2691       Result.Offset -= Layout.getBaseClassOffset(Base);
2692     RD = Base;
2693   }
2694   D.Entries.resize(TruncatedElements);
2695   return true;
2696 }
2697 
2698 static bool HandleLValueDirectBase(EvalInfo &Info, const Expr *E, LValue &Obj,
2699                                    const CXXRecordDecl *Derived,
2700                                    const CXXRecordDecl *Base,
2701                                    const ASTRecordLayout *RL = nullptr) {
2702   if (!RL) {
2703     if (Derived->isInvalidDecl()) return false;
2704     RL = &Info.Ctx.getASTRecordLayout(Derived);
2705   }
2706 
2707   Obj.getLValueOffset() += RL->getBaseClassOffset(Base);
2708   Obj.addDecl(Info, E, Base, /*Virtual*/ false);
2709   return true;
2710 }
2711 
2712 static bool HandleLValueBase(EvalInfo &Info, const Expr *E, LValue &Obj,
2713                              const CXXRecordDecl *DerivedDecl,
2714                              const CXXBaseSpecifier *Base) {
2715   const CXXRecordDecl *BaseDecl = Base->getType()->getAsCXXRecordDecl();
2716 
2717   if (!Base->isVirtual())
2718     return HandleLValueDirectBase(Info, E, Obj, DerivedDecl, BaseDecl);
2719 
2720   SubobjectDesignator &D = Obj.Designator;
2721   if (D.Invalid)
2722     return false;
2723 
2724   // Extract most-derived object and corresponding type.
2725   DerivedDecl = D.MostDerivedType->getAsCXXRecordDecl();
2726   if (!CastToDerivedClass(Info, E, Obj, DerivedDecl, D.MostDerivedPathLength))
2727     return false;
2728 
2729   // Find the virtual base class.
2730   if (DerivedDecl->isInvalidDecl()) return false;
2731   const ASTRecordLayout &Layout = Info.Ctx.getASTRecordLayout(DerivedDecl);
2732   Obj.getLValueOffset() += Layout.getVBaseClassOffset(BaseDecl);
2733   Obj.addDecl(Info, E, BaseDecl, /*Virtual*/ true);
2734   return true;
2735 }
2736 
2737 static bool HandleLValueBasePath(EvalInfo &Info, const CastExpr *E,
2738                                  QualType Type, LValue &Result) {
2739   for (CastExpr::path_const_iterator PathI = E->path_begin(),
2740                                      PathE = E->path_end();
2741        PathI != PathE; ++PathI) {
2742     if (!HandleLValueBase(Info, E, Result, Type->getAsCXXRecordDecl(),
2743                           *PathI))
2744       return false;
2745     Type = (*PathI)->getType();
2746   }
2747   return true;
2748 }
2749 
2750 /// Cast an lvalue referring to a derived class to a known base subobject.
2751 static bool CastToBaseClass(EvalInfo &Info, const Expr *E, LValue &Result,
2752                             const CXXRecordDecl *DerivedRD,
2753                             const CXXRecordDecl *BaseRD) {
2754   CXXBasePaths Paths(/*FindAmbiguities=*/false,
2755                      /*RecordPaths=*/true, /*DetectVirtual=*/false);
2756   if (!DerivedRD->isDerivedFrom(BaseRD, Paths))
2757     llvm_unreachable("Class must be derived from the passed in base class!");
2758 
2759   for (CXXBasePathElement &Elem : Paths.front())
2760     if (!HandleLValueBase(Info, E, Result, Elem.Class, Elem.Base))
2761       return false;
2762   return true;
2763 }
2764 
2765 /// Update LVal to refer to the given field, which must be a member of the type
2766 /// currently described by LVal.
2767 static bool HandleLValueMember(EvalInfo &Info, const Expr *E, LValue &LVal,
2768                                const FieldDecl *FD,
2769                                const ASTRecordLayout *RL = nullptr) {
2770   if (!RL) {
2771     if (FD->getParent()->isInvalidDecl()) return false;
2772     RL = &Info.Ctx.getASTRecordLayout(FD->getParent());
2773   }
2774 
2775   unsigned I = FD->getFieldIndex();
2776   LVal.adjustOffset(Info.Ctx.toCharUnitsFromBits(RL->getFieldOffset(I)));
2777   LVal.addDecl(Info, E, FD);
2778   return true;
2779 }
2780 
2781 /// Update LVal to refer to the given indirect field.
2782 static bool HandleLValueIndirectMember(EvalInfo &Info, const Expr *E,
2783                                        LValue &LVal,
2784                                        const IndirectFieldDecl *IFD) {
2785   for (const auto *C : IFD->chain())
2786     if (!HandleLValueMember(Info, E, LVal, cast<FieldDecl>(C)))
2787       return false;
2788   return true;
2789 }
2790 
2791 /// Get the size of the given type in char units.
2792 static bool HandleSizeof(EvalInfo &Info, SourceLocation Loc,
2793                          QualType Type, CharUnits &Size) {
2794   // sizeof(void), __alignof__(void), sizeof(function) = 1 as a gcc
2795   // extension.
2796   if (Type->isVoidType() || Type->isFunctionType()) {
2797     Size = CharUnits::One();
2798     return true;
2799   }
2800 
2801   if (Type->isDependentType()) {
2802     Info.FFDiag(Loc);
2803     return false;
2804   }
2805 
2806   if (!Type->isConstantSizeType()) {
2807     // sizeof(vla) is not a constantexpr: C99 6.5.3.4p2.
2808     // FIXME: Better diagnostic.
2809     Info.FFDiag(Loc);
2810     return false;
2811   }
2812 
2813   Size = Info.Ctx.getTypeSizeInChars(Type);
2814   return true;
2815 }
2816 
2817 /// Update a pointer value to model pointer arithmetic.
2818 /// \param Info - Information about the ongoing evaluation.
2819 /// \param E - The expression being evaluated, for diagnostic purposes.
2820 /// \param LVal - The pointer value to be updated.
2821 /// \param EltTy - The pointee type represented by LVal.
2822 /// \param Adjustment - The adjustment, in objects of type EltTy, to add.
2823 static bool HandleLValueArrayAdjustment(EvalInfo &Info, const Expr *E,
2824                                         LValue &LVal, QualType EltTy,
2825                                         APSInt Adjustment) {
2826   CharUnits SizeOfPointee;
2827   if (!HandleSizeof(Info, E->getExprLoc(), EltTy, SizeOfPointee))
2828     return false;
2829 
2830   LVal.adjustOffsetAndIndex(Info, E, Adjustment, SizeOfPointee);
2831   return true;
2832 }
2833 
2834 static bool HandleLValueArrayAdjustment(EvalInfo &Info, const Expr *E,
2835                                         LValue &LVal, QualType EltTy,
2836                                         int64_t Adjustment) {
2837   return HandleLValueArrayAdjustment(Info, E, LVal, EltTy,
2838                                      APSInt::get(Adjustment));
2839 }
2840 
2841 /// Update an lvalue to refer to a component of a complex number.
2842 /// \param Info - Information about the ongoing evaluation.
2843 /// \param LVal - The lvalue to be updated.
2844 /// \param EltTy - The complex number's component type.
2845 /// \param Imag - False for the real component, true for the imaginary.
2846 static bool HandleLValueComplexElement(EvalInfo &Info, const Expr *E,
2847                                        LValue &LVal, QualType EltTy,
2848                                        bool Imag) {
2849   if (Imag) {
2850     CharUnits SizeOfComponent;
2851     if (!HandleSizeof(Info, E->getExprLoc(), EltTy, SizeOfComponent))
2852       return false;
2853     LVal.Offset += SizeOfComponent;
2854   }
2855   LVal.addComplex(Info, E, EltTy, Imag);
2856   return true;
2857 }
2858 
2859 /// Try to evaluate the initializer for a variable declaration.
2860 ///
2861 /// \param Info   Information about the ongoing evaluation.
2862 /// \param E      An expression to be used when printing diagnostics.
2863 /// \param VD     The variable whose initializer should be obtained.
2864 /// \param Frame  The frame in which the variable was created. Must be null
2865 ///               if this variable is not local to the evaluation.
2866 /// \param Result Filled in with a pointer to the value of the variable.
2867 static bool evaluateVarDeclInit(EvalInfo &Info, const Expr *E,
2868                                 const VarDecl *VD, CallStackFrame *Frame,
2869                                 APValue *&Result, const LValue *LVal) {
2870 
2871   // If this is a parameter to an active constexpr function call, perform
2872   // argument substitution.
2873   if (const ParmVarDecl *PVD = dyn_cast<ParmVarDecl>(VD)) {
2874     // Assume arguments of a potential constant expression are unknown
2875     // constant expressions.
2876     if (Info.checkingPotentialConstantExpression())
2877       return false;
2878     if (!Frame || !Frame->Arguments) {
2879       Info.FFDiag(E, diag::note_invalid_subexpr_in_const_expr);
2880       return false;
2881     }
2882     Result = &Frame->Arguments[PVD->getFunctionScopeIndex()];
2883     return true;
2884   }
2885 
2886   // If this is a local variable, dig out its value.
2887   if (Frame) {
2888     Result = LVal ? Frame->getTemporary(VD, LVal->getLValueVersion())
2889                   : Frame->getCurrentTemporary(VD);
2890     if (!Result) {
2891       // Assume variables referenced within a lambda's call operator that were
2892       // not declared within the call operator are captures and during checking
2893       // of a potential constant expression, assume they are unknown constant
2894       // expressions.
2895       assert(isLambdaCallOperator(Frame->Callee) &&
2896              (VD->getDeclContext() != Frame->Callee || VD->isInitCapture()) &&
2897              "missing value for local variable");
2898       if (Info.checkingPotentialConstantExpression())
2899         return false;
2900       // FIXME: implement capture evaluation during constant expr evaluation.
2901       Info.FFDiag(E->getBeginLoc(),
2902                   diag::note_unimplemented_constexpr_lambda_feature_ast)
2903           << "captures not currently allowed";
2904       return false;
2905     }
2906     return true;
2907   }
2908 
2909   // Dig out the initializer, and use the declaration which it's attached to.
2910   const Expr *Init = VD->getAnyInitializer(VD);
2911   if (!Init || Init->isValueDependent()) {
2912     // If we're checking a potential constant expression, the variable could be
2913     // initialized later.
2914     if (!Info.checkingPotentialConstantExpression())
2915       Info.FFDiag(E, diag::note_invalid_subexpr_in_const_expr);
2916     return false;
2917   }
2918 
2919   // If we're currently evaluating the initializer of this declaration, use that
2920   // in-flight value.
2921   if (Info.EvaluatingDecl.dyn_cast<const ValueDecl*>() == VD) {
2922     Result = Info.EvaluatingDeclValue;
2923     return true;
2924   }
2925 
2926   // Never evaluate the initializer of a weak variable. We can't be sure that
2927   // this is the definition which will be used.
2928   if (VD->isWeak()) {
2929     Info.FFDiag(E, diag::note_invalid_subexpr_in_const_expr);
2930     return false;
2931   }
2932 
2933   // Check that we can fold the initializer. In C++, we will have already done
2934   // this in the cases where it matters for conformance.
2935   SmallVector<PartialDiagnosticAt, 8> Notes;
2936   if (!VD->evaluateValue(Notes)) {
2937     Info.FFDiag(E, diag::note_constexpr_var_init_non_constant,
2938               Notes.size() + 1) << VD;
2939     Info.Note(VD->getLocation(), diag::note_declared_at);
2940     Info.addNotes(Notes);
2941     return false;
2942   } else if (!VD->checkInitIsICE()) {
2943     Info.CCEDiag(E, diag::note_constexpr_var_init_non_constant,
2944                  Notes.size() + 1) << VD;
2945     Info.Note(VD->getLocation(), diag::note_declared_at);
2946     Info.addNotes(Notes);
2947   }
2948 
2949   Result = VD->getEvaluatedValue();
2950   return true;
2951 }
2952 
2953 static bool IsConstNonVolatile(QualType T) {
2954   Qualifiers Quals = T.getQualifiers();
2955   return Quals.hasConst() && !Quals.hasVolatile();
2956 }
2957 
2958 /// Get the base index of the given base class within an APValue representing
2959 /// the given derived class.
2960 static unsigned getBaseIndex(const CXXRecordDecl *Derived,
2961                              const CXXRecordDecl *Base) {
2962   Base = Base->getCanonicalDecl();
2963   unsigned Index = 0;
2964   for (CXXRecordDecl::base_class_const_iterator I = Derived->bases_begin(),
2965          E = Derived->bases_end(); I != E; ++I, ++Index) {
2966     if (I->getType()->getAsCXXRecordDecl()->getCanonicalDecl() == Base)
2967       return Index;
2968   }
2969 
2970   llvm_unreachable("base class missing from derived class's bases list");
2971 }
2972 
2973 /// Extract the value of a character from a string literal.
2974 static APSInt extractStringLiteralCharacter(EvalInfo &Info, const Expr *Lit,
2975                                             uint64_t Index) {
2976   assert(!isa<SourceLocExpr>(Lit) &&
2977          "SourceLocExpr should have already been converted to a StringLiteral");
2978 
2979   // FIXME: Support MakeStringConstant
2980   if (const auto *ObjCEnc = dyn_cast<ObjCEncodeExpr>(Lit)) {
2981     std::string Str;
2982     Info.Ctx.getObjCEncodingForType(ObjCEnc->getEncodedType(), Str);
2983     assert(Index <= Str.size() && "Index too large");
2984     return APSInt::getUnsigned(Str.c_str()[Index]);
2985   }
2986 
2987   if (auto PE = dyn_cast<PredefinedExpr>(Lit))
2988     Lit = PE->getFunctionName();
2989   const StringLiteral *S = cast<StringLiteral>(Lit);
2990   const ConstantArrayType *CAT =
2991       Info.Ctx.getAsConstantArrayType(S->getType());
2992   assert(CAT && "string literal isn't an array");
2993   QualType CharType = CAT->getElementType();
2994   assert(CharType->isIntegerType() && "unexpected character type");
2995 
2996   APSInt Value(S->getCharByteWidth() * Info.Ctx.getCharWidth(),
2997                CharType->isUnsignedIntegerType());
2998   if (Index < S->getLength())
2999     Value = S->getCodeUnit(Index);
3000   return Value;
3001 }
3002 
3003 // Expand a string literal into an array of characters.
3004 //
3005 // FIXME: This is inefficient; we should probably introduce something similar
3006 // to the LLVM ConstantDataArray to make this cheaper.
3007 static void expandStringLiteral(EvalInfo &Info, const StringLiteral *S,
3008                                 APValue &Result,
3009                                 QualType AllocType = QualType()) {
3010   const ConstantArrayType *CAT = Info.Ctx.getAsConstantArrayType(
3011       AllocType.isNull() ? S->getType() : AllocType);
3012   assert(CAT && "string literal isn't an array");
3013   QualType CharType = CAT->getElementType();
3014   assert(CharType->isIntegerType() && "unexpected character type");
3015 
3016   unsigned Elts = CAT->getSize().getZExtValue();
3017   Result = APValue(APValue::UninitArray(),
3018                    std::min(S->getLength(), Elts), Elts);
3019   APSInt Value(S->getCharByteWidth() * Info.Ctx.getCharWidth(),
3020                CharType->isUnsignedIntegerType());
3021   if (Result.hasArrayFiller())
3022     Result.getArrayFiller() = APValue(Value);
3023   for (unsigned I = 0, N = Result.getArrayInitializedElts(); I != N; ++I) {
3024     Value = S->getCodeUnit(I);
3025     Result.getArrayInitializedElt(I) = APValue(Value);
3026   }
3027 }
3028 
3029 // Expand an array so that it has more than Index filled elements.
3030 static void expandArray(APValue &Array, unsigned Index) {
3031   unsigned Size = Array.getArraySize();
3032   assert(Index < Size);
3033 
3034   // Always at least double the number of elements for which we store a value.
3035   unsigned OldElts = Array.getArrayInitializedElts();
3036   unsigned NewElts = std::max(Index+1, OldElts * 2);
3037   NewElts = std::min(Size, std::max(NewElts, 8u));
3038 
3039   // Copy the data across.
3040   APValue NewValue(APValue::UninitArray(), NewElts, Size);
3041   for (unsigned I = 0; I != OldElts; ++I)
3042     NewValue.getArrayInitializedElt(I).swap(Array.getArrayInitializedElt(I));
3043   for (unsigned I = OldElts; I != NewElts; ++I)
3044     NewValue.getArrayInitializedElt(I) = Array.getArrayFiller();
3045   if (NewValue.hasArrayFiller())
3046     NewValue.getArrayFiller() = Array.getArrayFiller();
3047   Array.swap(NewValue);
3048 }
3049 
3050 /// Determine whether a type would actually be read by an lvalue-to-rvalue
3051 /// conversion. If it's of class type, we may assume that the copy operation
3052 /// is trivial. Note that this is never true for a union type with fields
3053 /// (because the copy always "reads" the active member) and always true for
3054 /// a non-class type.
3055 static bool isReadByLvalueToRvalueConversion(const CXXRecordDecl *RD);
3056 static bool isReadByLvalueToRvalueConversion(QualType T) {
3057   CXXRecordDecl *RD = T->getBaseElementTypeUnsafe()->getAsCXXRecordDecl();
3058   return !RD || isReadByLvalueToRvalueConversion(RD);
3059 }
3060 static bool isReadByLvalueToRvalueConversion(const CXXRecordDecl *RD) {
3061   // FIXME: A trivial copy of a union copies the object representation, even if
3062   // the union is empty.
3063   if (RD->isUnion())
3064     return !RD->field_empty();
3065   if (RD->isEmpty())
3066     return false;
3067 
3068   for (auto *Field : RD->fields())
3069     if (!Field->isUnnamedBitfield() &&
3070         isReadByLvalueToRvalueConversion(Field->getType()))
3071       return true;
3072 
3073   for (auto &BaseSpec : RD->bases())
3074     if (isReadByLvalueToRvalueConversion(BaseSpec.getType()))
3075       return true;
3076 
3077   return false;
3078 }
3079 
3080 /// Diagnose an attempt to read from any unreadable field within the specified
3081 /// type, which might be a class type.
3082 static bool diagnoseMutableFields(EvalInfo &Info, const Expr *E, AccessKinds AK,
3083                                   QualType T) {
3084   CXXRecordDecl *RD = T->getBaseElementTypeUnsafe()->getAsCXXRecordDecl();
3085   if (!RD)
3086     return false;
3087 
3088   if (!RD->hasMutableFields())
3089     return false;
3090 
3091   for (auto *Field : RD->fields()) {
3092     // If we're actually going to read this field in some way, then it can't
3093     // be mutable. If we're in a union, then assigning to a mutable field
3094     // (even an empty one) can change the active member, so that's not OK.
3095     // FIXME: Add core issue number for the union case.
3096     if (Field->isMutable() &&
3097         (RD->isUnion() || isReadByLvalueToRvalueConversion(Field->getType()))) {
3098       Info.FFDiag(E, diag::note_constexpr_access_mutable, 1) << AK << Field;
3099       Info.Note(Field->getLocation(), diag::note_declared_at);
3100       return true;
3101     }
3102 
3103     if (diagnoseMutableFields(Info, E, AK, Field->getType()))
3104       return true;
3105   }
3106 
3107   for (auto &BaseSpec : RD->bases())
3108     if (diagnoseMutableFields(Info, E, AK, BaseSpec.getType()))
3109       return true;
3110 
3111   // All mutable fields were empty, and thus not actually read.
3112   return false;
3113 }
3114 
3115 static bool lifetimeStartedInEvaluation(EvalInfo &Info,
3116                                         APValue::LValueBase Base,
3117                                         bool MutableSubobject = false) {
3118   // A temporary we created.
3119   if (Base.getCallIndex())
3120     return true;
3121 
3122   auto *Evaluating = Info.EvaluatingDecl.dyn_cast<const ValueDecl*>();
3123   if (!Evaluating)
3124     return false;
3125 
3126   auto *BaseD = Base.dyn_cast<const ValueDecl*>();
3127 
3128   switch (Info.IsEvaluatingDecl) {
3129   case EvalInfo::EvaluatingDeclKind::None:
3130     return false;
3131 
3132   case EvalInfo::EvaluatingDeclKind::Ctor:
3133     // The variable whose initializer we're evaluating.
3134     if (BaseD)
3135       return declaresSameEntity(Evaluating, BaseD);
3136 
3137     // A temporary lifetime-extended by the variable whose initializer we're
3138     // evaluating.
3139     if (auto *BaseE = Base.dyn_cast<const Expr *>())
3140       if (auto *BaseMTE = dyn_cast<MaterializeTemporaryExpr>(BaseE))
3141         return declaresSameEntity(BaseMTE->getExtendingDecl(), Evaluating);
3142     return false;
3143 
3144   case EvalInfo::EvaluatingDeclKind::Dtor:
3145     // C++2a [expr.const]p6:
3146     //   [during constant destruction] the lifetime of a and its non-mutable
3147     //   subobjects (but not its mutable subobjects) [are] considered to start
3148     //   within e.
3149     //
3150     // FIXME: We can meaningfully extend this to cover non-const objects, but
3151     // we will need special handling: we should be able to access only
3152     // subobjects of such objects that are themselves declared const.
3153     if (!BaseD ||
3154         !(BaseD->getType().isConstQualified() ||
3155           BaseD->getType()->isReferenceType()) ||
3156         MutableSubobject)
3157       return false;
3158     return declaresSameEntity(Evaluating, BaseD);
3159   }
3160 
3161   llvm_unreachable("unknown evaluating decl kind");
3162 }
3163 
3164 namespace {
3165 /// A handle to a complete object (an object that is not a subobject of
3166 /// another object).
3167 struct CompleteObject {
3168   /// The identity of the object.
3169   APValue::LValueBase Base;
3170   /// The value of the complete object.
3171   APValue *Value;
3172   /// The type of the complete object.
3173   QualType Type;
3174 
3175   CompleteObject() : Value(nullptr) {}
3176   CompleteObject(APValue::LValueBase Base, APValue *Value, QualType Type)
3177       : Base(Base), Value(Value), Type(Type) {}
3178 
3179   bool mayAccessMutableMembers(EvalInfo &Info, AccessKinds AK) const {
3180     // If this isn't a "real" access (eg, if it's just accessing the type
3181     // info), allow it. We assume the type doesn't change dynamically for
3182     // subobjects of constexpr objects (even though we'd hit UB here if it
3183     // did). FIXME: Is this right?
3184     if (!isAnyAccess(AK))
3185       return true;
3186 
3187     // In C++14 onwards, it is permitted to read a mutable member whose
3188     // lifetime began within the evaluation.
3189     // FIXME: Should we also allow this in C++11?
3190     if (!Info.getLangOpts().CPlusPlus14)
3191       return false;
3192     return lifetimeStartedInEvaluation(Info, Base, /*MutableSubobject*/true);
3193   }
3194 
3195   explicit operator bool() const { return !Type.isNull(); }
3196 };
3197 } // end anonymous namespace
3198 
3199 static QualType getSubobjectType(QualType ObjType, QualType SubobjType,
3200                                  bool IsMutable = false) {
3201   // C++ [basic.type.qualifier]p1:
3202   // - A const object is an object of type const T or a non-mutable subobject
3203   //   of a const object.
3204   if (ObjType.isConstQualified() && !IsMutable)
3205     SubobjType.addConst();
3206   // - A volatile object is an object of type const T or a subobject of a
3207   //   volatile object.
3208   if (ObjType.isVolatileQualified())
3209     SubobjType.addVolatile();
3210   return SubobjType;
3211 }
3212 
3213 /// Find the designated sub-object of an rvalue.
3214 template<typename SubobjectHandler>
3215 typename SubobjectHandler::result_type
3216 findSubobject(EvalInfo &Info, const Expr *E, const CompleteObject &Obj,
3217               const SubobjectDesignator &Sub, SubobjectHandler &handler) {
3218   if (Sub.Invalid)
3219     // A diagnostic will have already been produced.
3220     return handler.failed();
3221   if (Sub.isOnePastTheEnd() || Sub.isMostDerivedAnUnsizedArray()) {
3222     if (Info.getLangOpts().CPlusPlus11)
3223       Info.FFDiag(E, Sub.isOnePastTheEnd()
3224                          ? diag::note_constexpr_access_past_end
3225                          : diag::note_constexpr_access_unsized_array)
3226           << handler.AccessKind;
3227     else
3228       Info.FFDiag(E);
3229     return handler.failed();
3230   }
3231 
3232   APValue *O = Obj.Value;
3233   QualType ObjType = Obj.Type;
3234   const FieldDecl *LastField = nullptr;
3235   const FieldDecl *VolatileField = nullptr;
3236 
3237   // Walk the designator's path to find the subobject.
3238   for (unsigned I = 0, N = Sub.Entries.size(); /**/; ++I) {
3239     // Reading an indeterminate value is undefined, but assigning over one is OK.
3240     if ((O->isAbsent() && !(handler.AccessKind == AK_Construct && I == N)) ||
3241         (O->isIndeterminate() &&
3242          !isValidIndeterminateAccess(handler.AccessKind))) {
3243       if (!Info.checkingPotentialConstantExpression())
3244         Info.FFDiag(E, diag::note_constexpr_access_uninit)
3245             << handler.AccessKind << O->isIndeterminate();
3246       return handler.failed();
3247     }
3248 
3249     // C++ [class.ctor]p5, C++ [class.dtor]p5:
3250     //    const and volatile semantics are not applied on an object under
3251     //    {con,de}struction.
3252     if ((ObjType.isConstQualified() || ObjType.isVolatileQualified()) &&
3253         ObjType->isRecordType() &&
3254         Info.isEvaluatingCtorDtor(
3255             Obj.Base, llvm::makeArrayRef(Sub.Entries.begin(),
3256                                          Sub.Entries.begin() + I)) !=
3257                           ConstructionPhase::None) {
3258       ObjType = Info.Ctx.getCanonicalType(ObjType);
3259       ObjType.removeLocalConst();
3260       ObjType.removeLocalVolatile();
3261     }
3262 
3263     // If this is our last pass, check that the final object type is OK.
3264     if (I == N || (I == N - 1 && ObjType->isAnyComplexType())) {
3265       // Accesses to volatile objects are prohibited.
3266       if (ObjType.isVolatileQualified() && isFormalAccess(handler.AccessKind)) {
3267         if (Info.getLangOpts().CPlusPlus) {
3268           int DiagKind;
3269           SourceLocation Loc;
3270           const NamedDecl *Decl = nullptr;
3271           if (VolatileField) {
3272             DiagKind = 2;
3273             Loc = VolatileField->getLocation();
3274             Decl = VolatileField;
3275           } else if (auto *VD = Obj.Base.dyn_cast<const ValueDecl*>()) {
3276             DiagKind = 1;
3277             Loc = VD->getLocation();
3278             Decl = VD;
3279           } else {
3280             DiagKind = 0;
3281             if (auto *E = Obj.Base.dyn_cast<const Expr *>())
3282               Loc = E->getExprLoc();
3283           }
3284           Info.FFDiag(E, diag::note_constexpr_access_volatile_obj, 1)
3285               << handler.AccessKind << DiagKind << Decl;
3286           Info.Note(Loc, diag::note_constexpr_volatile_here) << DiagKind;
3287         } else {
3288           Info.FFDiag(E, diag::note_invalid_subexpr_in_const_expr);
3289         }
3290         return handler.failed();
3291       }
3292 
3293       // If we are reading an object of class type, there may still be more
3294       // things we need to check: if there are any mutable subobjects, we
3295       // cannot perform this read. (This only happens when performing a trivial
3296       // copy or assignment.)
3297       if (ObjType->isRecordType() &&
3298           !Obj.mayAccessMutableMembers(Info, handler.AccessKind) &&
3299           diagnoseMutableFields(Info, E, handler.AccessKind, ObjType))
3300         return handler.failed();
3301     }
3302 
3303     if (I == N) {
3304       if (!handler.found(*O, ObjType))
3305         return false;
3306 
3307       // If we modified a bit-field, truncate it to the right width.
3308       if (isModification(handler.AccessKind) &&
3309           LastField && LastField->isBitField() &&
3310           !truncateBitfieldValue(Info, E, *O, LastField))
3311         return false;
3312 
3313       return true;
3314     }
3315 
3316     LastField = nullptr;
3317     if (ObjType->isArrayType()) {
3318       // Next subobject is an array element.
3319       const ConstantArrayType *CAT = Info.Ctx.getAsConstantArrayType(ObjType);
3320       assert(CAT && "vla in literal type?");
3321       uint64_t Index = Sub.Entries[I].getAsArrayIndex();
3322       if (CAT->getSize().ule(Index)) {
3323         // Note, it should not be possible to form a pointer with a valid
3324         // designator which points more than one past the end of the array.
3325         if (Info.getLangOpts().CPlusPlus11)
3326           Info.FFDiag(E, diag::note_constexpr_access_past_end)
3327             << handler.AccessKind;
3328         else
3329           Info.FFDiag(E);
3330         return handler.failed();
3331       }
3332 
3333       ObjType = CAT->getElementType();
3334 
3335       if (O->getArrayInitializedElts() > Index)
3336         O = &O->getArrayInitializedElt(Index);
3337       else if (!isRead(handler.AccessKind)) {
3338         expandArray(*O, Index);
3339         O = &O->getArrayInitializedElt(Index);
3340       } else
3341         O = &O->getArrayFiller();
3342     } else if (ObjType->isAnyComplexType()) {
3343       // Next subobject is a complex number.
3344       uint64_t Index = Sub.Entries[I].getAsArrayIndex();
3345       if (Index > 1) {
3346         if (Info.getLangOpts().CPlusPlus11)
3347           Info.FFDiag(E, diag::note_constexpr_access_past_end)
3348             << handler.AccessKind;
3349         else
3350           Info.FFDiag(E);
3351         return handler.failed();
3352       }
3353 
3354       ObjType = getSubobjectType(
3355           ObjType, ObjType->castAs<ComplexType>()->getElementType());
3356 
3357       assert(I == N - 1 && "extracting subobject of scalar?");
3358       if (O->isComplexInt()) {
3359         return handler.found(Index ? O->getComplexIntImag()
3360                                    : O->getComplexIntReal(), ObjType);
3361       } else {
3362         assert(O->isComplexFloat());
3363         return handler.found(Index ? O->getComplexFloatImag()
3364                                    : O->getComplexFloatReal(), ObjType);
3365       }
3366     } else if (const FieldDecl *Field = getAsField(Sub.Entries[I])) {
3367       if (Field->isMutable() &&
3368           !Obj.mayAccessMutableMembers(Info, handler.AccessKind)) {
3369         Info.FFDiag(E, diag::note_constexpr_access_mutable, 1)
3370           << handler.AccessKind << Field;
3371         Info.Note(Field->getLocation(), diag::note_declared_at);
3372         return handler.failed();
3373       }
3374 
3375       // Next subobject is a class, struct or union field.
3376       RecordDecl *RD = ObjType->castAs<RecordType>()->getDecl();
3377       if (RD->isUnion()) {
3378         const FieldDecl *UnionField = O->getUnionField();
3379         if (!UnionField ||
3380             UnionField->getCanonicalDecl() != Field->getCanonicalDecl()) {
3381           if (I == N - 1 && handler.AccessKind == AK_Construct) {
3382             // Placement new onto an inactive union member makes it active.
3383             O->setUnion(Field, APValue());
3384           } else {
3385             // FIXME: If O->getUnionValue() is absent, report that there's no
3386             // active union member rather than reporting the prior active union
3387             // member. We'll need to fix nullptr_t to not use APValue() as its
3388             // representation first.
3389             Info.FFDiag(E, diag::note_constexpr_access_inactive_union_member)
3390                 << handler.AccessKind << Field << !UnionField << UnionField;
3391             return handler.failed();
3392           }
3393         }
3394         O = &O->getUnionValue();
3395       } else
3396         O = &O->getStructField(Field->getFieldIndex());
3397 
3398       ObjType = getSubobjectType(ObjType, Field->getType(), Field->isMutable());
3399       LastField = Field;
3400       if (Field->getType().isVolatileQualified())
3401         VolatileField = Field;
3402     } else {
3403       // Next subobject is a base class.
3404       const CXXRecordDecl *Derived = ObjType->getAsCXXRecordDecl();
3405       const CXXRecordDecl *Base = getAsBaseClass(Sub.Entries[I]);
3406       O = &O->getStructBase(getBaseIndex(Derived, Base));
3407 
3408       ObjType = getSubobjectType(ObjType, Info.Ctx.getRecordType(Base));
3409     }
3410   }
3411 }
3412 
3413 namespace {
3414 struct ExtractSubobjectHandler {
3415   EvalInfo &Info;
3416   const Expr *E;
3417   APValue &Result;
3418   const AccessKinds AccessKind;
3419 
3420   typedef bool result_type;
3421   bool failed() { return false; }
3422   bool found(APValue &Subobj, QualType SubobjType) {
3423     Result = Subobj;
3424     if (AccessKind == AK_ReadObjectRepresentation)
3425       return true;
3426     return CheckFullyInitialized(Info, E->getExprLoc(), SubobjType, Result);
3427   }
3428   bool found(APSInt &Value, QualType SubobjType) {
3429     Result = APValue(Value);
3430     return true;
3431   }
3432   bool found(APFloat &Value, QualType SubobjType) {
3433     Result = APValue(Value);
3434     return true;
3435   }
3436 };
3437 } // end anonymous namespace
3438 
3439 /// Extract the designated sub-object of an rvalue.
3440 static bool extractSubobject(EvalInfo &Info, const Expr *E,
3441                              const CompleteObject &Obj,
3442                              const SubobjectDesignator &Sub, APValue &Result,
3443                              AccessKinds AK = AK_Read) {
3444   assert(AK == AK_Read || AK == AK_ReadObjectRepresentation);
3445   ExtractSubobjectHandler Handler = {Info, E, Result, AK};
3446   return findSubobject(Info, E, Obj, Sub, Handler);
3447 }
3448 
3449 namespace {
3450 struct ModifySubobjectHandler {
3451   EvalInfo &Info;
3452   APValue &NewVal;
3453   const Expr *E;
3454 
3455   typedef bool result_type;
3456   static const AccessKinds AccessKind = AK_Assign;
3457 
3458   bool checkConst(QualType QT) {
3459     // Assigning to a const object has undefined behavior.
3460     if (QT.isConstQualified()) {
3461       Info.FFDiag(E, diag::note_constexpr_modify_const_type) << QT;
3462       return false;
3463     }
3464     return true;
3465   }
3466 
3467   bool failed() { return false; }
3468   bool found(APValue &Subobj, QualType SubobjType) {
3469     if (!checkConst(SubobjType))
3470       return false;
3471     // We've been given ownership of NewVal, so just swap it in.
3472     Subobj.swap(NewVal);
3473     return true;
3474   }
3475   bool found(APSInt &Value, QualType SubobjType) {
3476     if (!checkConst(SubobjType))
3477       return false;
3478     if (!NewVal.isInt()) {
3479       // Maybe trying to write a cast pointer value into a complex?
3480       Info.FFDiag(E);
3481       return false;
3482     }
3483     Value = NewVal.getInt();
3484     return true;
3485   }
3486   bool found(APFloat &Value, QualType SubobjType) {
3487     if (!checkConst(SubobjType))
3488       return false;
3489     Value = NewVal.getFloat();
3490     return true;
3491   }
3492 };
3493 } // end anonymous namespace
3494 
3495 const AccessKinds ModifySubobjectHandler::AccessKind;
3496 
3497 /// Update the designated sub-object of an rvalue to the given value.
3498 static bool modifySubobject(EvalInfo &Info, const Expr *E,
3499                             const CompleteObject &Obj,
3500                             const SubobjectDesignator &Sub,
3501                             APValue &NewVal) {
3502   ModifySubobjectHandler Handler = { Info, NewVal, E };
3503   return findSubobject(Info, E, Obj, Sub, Handler);
3504 }
3505 
3506 /// Find the position where two subobject designators diverge, or equivalently
3507 /// the length of the common initial subsequence.
3508 static unsigned FindDesignatorMismatch(QualType ObjType,
3509                                        const SubobjectDesignator &A,
3510                                        const SubobjectDesignator &B,
3511                                        bool &WasArrayIndex) {
3512   unsigned I = 0, N = std::min(A.Entries.size(), B.Entries.size());
3513   for (/**/; I != N; ++I) {
3514     if (!ObjType.isNull() &&
3515         (ObjType->isArrayType() || ObjType->isAnyComplexType())) {
3516       // Next subobject is an array element.
3517       if (A.Entries[I].getAsArrayIndex() != B.Entries[I].getAsArrayIndex()) {
3518         WasArrayIndex = true;
3519         return I;
3520       }
3521       if (ObjType->isAnyComplexType())
3522         ObjType = ObjType->castAs<ComplexType>()->getElementType();
3523       else
3524         ObjType = ObjType->castAsArrayTypeUnsafe()->getElementType();
3525     } else {
3526       if (A.Entries[I].getAsBaseOrMember() !=
3527           B.Entries[I].getAsBaseOrMember()) {
3528         WasArrayIndex = false;
3529         return I;
3530       }
3531       if (const FieldDecl *FD = getAsField(A.Entries[I]))
3532         // Next subobject is a field.
3533         ObjType = FD->getType();
3534       else
3535         // Next subobject is a base class.
3536         ObjType = QualType();
3537     }
3538   }
3539   WasArrayIndex = false;
3540   return I;
3541 }
3542 
3543 /// Determine whether the given subobject designators refer to elements of the
3544 /// same array object.
3545 static bool AreElementsOfSameArray(QualType ObjType,
3546                                    const SubobjectDesignator &A,
3547                                    const SubobjectDesignator &B) {
3548   if (A.Entries.size() != B.Entries.size())
3549     return false;
3550 
3551   bool IsArray = A.MostDerivedIsArrayElement;
3552   if (IsArray && A.MostDerivedPathLength != A.Entries.size())
3553     // A is a subobject of the array element.
3554     return false;
3555 
3556   // If A (and B) designates an array element, the last entry will be the array
3557   // index. That doesn't have to match. Otherwise, we're in the 'implicit array
3558   // of length 1' case, and the entire path must match.
3559   bool WasArrayIndex;
3560   unsigned CommonLength = FindDesignatorMismatch(ObjType, A, B, WasArrayIndex);
3561   return CommonLength >= A.Entries.size() - IsArray;
3562 }
3563 
3564 /// Find the complete object to which an LValue refers.
3565 static CompleteObject findCompleteObject(EvalInfo &Info, const Expr *E,
3566                                          AccessKinds AK, const LValue &LVal,
3567                                          QualType LValType) {
3568   if (LVal.InvalidBase) {
3569     Info.FFDiag(E);
3570     return CompleteObject();
3571   }
3572 
3573   if (!LVal.Base) {
3574     Info.FFDiag(E, diag::note_constexpr_access_null) << AK;
3575     return CompleteObject();
3576   }
3577 
3578   CallStackFrame *Frame = nullptr;
3579   unsigned Depth = 0;
3580   if (LVal.getLValueCallIndex()) {
3581     std::tie(Frame, Depth) =
3582         Info.getCallFrameAndDepth(LVal.getLValueCallIndex());
3583     if (!Frame) {
3584       Info.FFDiag(E, diag::note_constexpr_lifetime_ended, 1)
3585         << AK << LVal.Base.is<const ValueDecl*>();
3586       NoteLValueLocation(Info, LVal.Base);
3587       return CompleteObject();
3588     }
3589   }
3590 
3591   bool IsAccess = isAnyAccess(AK);
3592 
3593   // C++11 DR1311: An lvalue-to-rvalue conversion on a volatile-qualified type
3594   // is not a constant expression (even if the object is non-volatile). We also
3595   // apply this rule to C++98, in order to conform to the expected 'volatile'
3596   // semantics.
3597   if (isFormalAccess(AK) && LValType.isVolatileQualified()) {
3598     if (Info.getLangOpts().CPlusPlus)
3599       Info.FFDiag(E, diag::note_constexpr_access_volatile_type)
3600         << AK << LValType;
3601     else
3602       Info.FFDiag(E);
3603     return CompleteObject();
3604   }
3605 
3606   // Compute value storage location and type of base object.
3607   APValue *BaseVal = nullptr;
3608   QualType BaseType = getType(LVal.Base);
3609 
3610   if (const ConstantExpr *CE =
3611           dyn_cast_or_null<ConstantExpr>(LVal.Base.dyn_cast<const Expr *>())) {
3612     /// Nested immediate invocation have been previously removed so if we found
3613     /// a ConstantExpr it can only be the EvaluatingDecl.
3614     assert(CE->isImmediateInvocation() && CE == Info.EvaluatingDecl);
3615     (void)CE;
3616     BaseVal = Info.EvaluatingDeclValue;
3617   } else if (const ValueDecl *D = LVal.Base.dyn_cast<const ValueDecl *>()) {
3618     // Allow reading from a GUID declaration.
3619     if (auto *GD = dyn_cast<MSGuidDecl>(D)) {
3620       if (isModification(AK)) {
3621         // All the remaining cases do not permit modification of the object.
3622         Info.FFDiag(E, diag::note_constexpr_modify_global);
3623         return CompleteObject();
3624       }
3625       APValue &V = GD->getAsAPValue();
3626       if (V.isAbsent()) {
3627         Info.FFDiag(E, diag::note_constexpr_unsupported_layout)
3628             << GD->getType();
3629         return CompleteObject();
3630       }
3631       return CompleteObject(LVal.Base, &V, GD->getType());
3632     }
3633 
3634     // In C++98, const, non-volatile integers initialized with ICEs are ICEs.
3635     // In C++11, constexpr, non-volatile variables initialized with constant
3636     // expressions are constant expressions too. Inside constexpr functions,
3637     // parameters are constant expressions even if they're non-const.
3638     // In C++1y, objects local to a constant expression (those with a Frame) are
3639     // both readable and writable inside constant expressions.
3640     // In C, such things can also be folded, although they are not ICEs.
3641     const VarDecl *VD = dyn_cast<VarDecl>(D);
3642     if (VD) {
3643       if (const VarDecl *VDef = VD->getDefinition(Info.Ctx))
3644         VD = VDef;
3645     }
3646     if (!VD || VD->isInvalidDecl()) {
3647       Info.FFDiag(E);
3648       return CompleteObject();
3649     }
3650 
3651     // Unless we're looking at a local variable or argument in a constexpr call,
3652     // the variable we're reading must be const.
3653     if (!Frame) {
3654       if (Info.getLangOpts().CPlusPlus14 &&
3655           lifetimeStartedInEvaluation(Info, LVal.Base)) {
3656         // OK, we can read and modify an object if we're in the process of
3657         // evaluating its initializer, because its lifetime began in this
3658         // evaluation.
3659       } else if (isModification(AK)) {
3660         // All the remaining cases do not permit modification of the object.
3661         Info.FFDiag(E, diag::note_constexpr_modify_global);
3662         return CompleteObject();
3663       } else if (VD->isConstexpr()) {
3664         // OK, we can read this variable.
3665       } else if (BaseType->isIntegralOrEnumerationType()) {
3666         // In OpenCL if a variable is in constant address space it is a const
3667         // value.
3668         if (!(BaseType.isConstQualified() ||
3669               (Info.getLangOpts().OpenCL &&
3670                BaseType.getAddressSpace() == LangAS::opencl_constant))) {
3671           if (!IsAccess)
3672             return CompleteObject(LVal.getLValueBase(), nullptr, BaseType);
3673           if (Info.getLangOpts().CPlusPlus) {
3674             Info.FFDiag(E, diag::note_constexpr_ltor_non_const_int, 1) << VD;
3675             Info.Note(VD->getLocation(), diag::note_declared_at);
3676           } else {
3677             Info.FFDiag(E);
3678           }
3679           return CompleteObject();
3680         }
3681       } else if (!IsAccess) {
3682         return CompleteObject(LVal.getLValueBase(), nullptr, BaseType);
3683       } else if (BaseType->isFloatingType() && BaseType.isConstQualified()) {
3684         // We support folding of const floating-point types, in order to make
3685         // static const data members of such types (supported as an extension)
3686         // more useful.
3687         if (Info.getLangOpts().CPlusPlus11) {
3688           Info.CCEDiag(E, diag::note_constexpr_ltor_non_constexpr, 1) << VD;
3689           Info.Note(VD->getLocation(), diag::note_declared_at);
3690         } else {
3691           Info.CCEDiag(E);
3692         }
3693       } else if (BaseType.isConstQualified() && VD->hasDefinition(Info.Ctx)) {
3694         Info.CCEDiag(E, diag::note_constexpr_ltor_non_constexpr) << VD;
3695         // Keep evaluating to see what we can do.
3696       } else {
3697         // FIXME: Allow folding of values of any literal type in all languages.
3698         if (Info.checkingPotentialConstantExpression() &&
3699             VD->getType().isConstQualified() && !VD->hasDefinition(Info.Ctx)) {
3700           // The definition of this variable could be constexpr. We can't
3701           // access it right now, but may be able to in future.
3702         } else if (Info.getLangOpts().CPlusPlus11) {
3703           Info.FFDiag(E, diag::note_constexpr_ltor_non_constexpr, 1) << VD;
3704           Info.Note(VD->getLocation(), diag::note_declared_at);
3705         } else {
3706           Info.FFDiag(E);
3707         }
3708         return CompleteObject();
3709       }
3710     }
3711 
3712     if (!evaluateVarDeclInit(Info, E, VD, Frame, BaseVal, &LVal))
3713       return CompleteObject();
3714   } else if (DynamicAllocLValue DA = LVal.Base.dyn_cast<DynamicAllocLValue>()) {
3715     Optional<DynAlloc*> Alloc = Info.lookupDynamicAlloc(DA);
3716     if (!Alloc) {
3717       Info.FFDiag(E, diag::note_constexpr_access_deleted_object) << AK;
3718       return CompleteObject();
3719     }
3720     return CompleteObject(LVal.Base, &(*Alloc)->Value,
3721                           LVal.Base.getDynamicAllocType());
3722   } else {
3723     const Expr *Base = LVal.Base.dyn_cast<const Expr*>();
3724 
3725     if (!Frame) {
3726       if (const MaterializeTemporaryExpr *MTE =
3727               dyn_cast_or_null<MaterializeTemporaryExpr>(Base)) {
3728         assert(MTE->getStorageDuration() == SD_Static &&
3729                "should have a frame for a non-global materialized temporary");
3730 
3731         // Per C++1y [expr.const]p2:
3732         //  an lvalue-to-rvalue conversion [is not allowed unless it applies to]
3733         //   - a [...] glvalue of integral or enumeration type that refers to
3734         //     a non-volatile const object [...]
3735         //   [...]
3736         //   - a [...] glvalue of literal type that refers to a non-volatile
3737         //     object whose lifetime began within the evaluation of e.
3738         //
3739         // C++11 misses the 'began within the evaluation of e' check and
3740         // instead allows all temporaries, including things like:
3741         //   int &&r = 1;
3742         //   int x = ++r;
3743         //   constexpr int k = r;
3744         // Therefore we use the C++14 rules in C++11 too.
3745         //
3746         // Note that temporaries whose lifetimes began while evaluating a
3747         // variable's constructor are not usable while evaluating the
3748         // corresponding destructor, not even if they're of const-qualified
3749         // types.
3750         if (!(BaseType.isConstQualified() &&
3751               BaseType->isIntegralOrEnumerationType()) &&
3752             !lifetimeStartedInEvaluation(Info, LVal.Base)) {
3753           if (!IsAccess)
3754             return CompleteObject(LVal.getLValueBase(), nullptr, BaseType);
3755           Info.FFDiag(E, diag::note_constexpr_access_static_temporary, 1) << AK;
3756           Info.Note(MTE->getExprLoc(), diag::note_constexpr_temporary_here);
3757           return CompleteObject();
3758         }
3759 
3760         BaseVal = MTE->getOrCreateValue(false);
3761         assert(BaseVal && "got reference to unevaluated temporary");
3762       } else {
3763         if (!IsAccess)
3764           return CompleteObject(LVal.getLValueBase(), nullptr, BaseType);
3765         APValue Val;
3766         LVal.moveInto(Val);
3767         Info.FFDiag(E, diag::note_constexpr_access_unreadable_object)
3768             << AK
3769             << Val.getAsString(Info.Ctx,
3770                                Info.Ctx.getLValueReferenceType(LValType));
3771         NoteLValueLocation(Info, LVal.Base);
3772         return CompleteObject();
3773       }
3774     } else {
3775       BaseVal = Frame->getTemporary(Base, LVal.Base.getVersion());
3776       assert(BaseVal && "missing value for temporary");
3777     }
3778   }
3779 
3780   // In C++14, we can't safely access any mutable state when we might be
3781   // evaluating after an unmodeled side effect.
3782   //
3783   // FIXME: Not all local state is mutable. Allow local constant subobjects
3784   // to be read here (but take care with 'mutable' fields).
3785   if ((Frame && Info.getLangOpts().CPlusPlus14 &&
3786        Info.EvalStatus.HasSideEffects) ||
3787       (isModification(AK) && Depth < Info.SpeculativeEvaluationDepth))
3788     return CompleteObject();
3789 
3790   return CompleteObject(LVal.getLValueBase(), BaseVal, BaseType);
3791 }
3792 
3793 /// Perform an lvalue-to-rvalue conversion on the given glvalue. This
3794 /// can also be used for 'lvalue-to-lvalue' conversions for looking up the
3795 /// glvalue referred to by an entity of reference type.
3796 ///
3797 /// \param Info - Information about the ongoing evaluation.
3798 /// \param Conv - The expression for which we are performing the conversion.
3799 ///               Used for diagnostics.
3800 /// \param Type - The type of the glvalue (before stripping cv-qualifiers in the
3801 ///               case of a non-class type).
3802 /// \param LVal - The glvalue on which we are attempting to perform this action.
3803 /// \param RVal - The produced value will be placed here.
3804 /// \param WantObjectRepresentation - If true, we're looking for the object
3805 ///               representation rather than the value, and in particular,
3806 ///               there is no requirement that the result be fully initialized.
3807 static bool
3808 handleLValueToRValueConversion(EvalInfo &Info, const Expr *Conv, QualType Type,
3809                                const LValue &LVal, APValue &RVal,
3810                                bool WantObjectRepresentation = false) {
3811   if (LVal.Designator.Invalid)
3812     return false;
3813 
3814   // Check for special cases where there is no existing APValue to look at.
3815   const Expr *Base = LVal.Base.dyn_cast<const Expr*>();
3816 
3817   AccessKinds AK =
3818       WantObjectRepresentation ? AK_ReadObjectRepresentation : AK_Read;
3819 
3820   if (Base && !LVal.getLValueCallIndex() && !Type.isVolatileQualified()) {
3821     if (const CompoundLiteralExpr *CLE = dyn_cast<CompoundLiteralExpr>(Base)) {
3822       // In C99, a CompoundLiteralExpr is an lvalue, and we defer evaluating the
3823       // initializer until now for such expressions. Such an expression can't be
3824       // an ICE in C, so this only matters for fold.
3825       if (Type.isVolatileQualified()) {
3826         Info.FFDiag(Conv);
3827         return false;
3828       }
3829       APValue Lit;
3830       if (!Evaluate(Lit, Info, CLE->getInitializer()))
3831         return false;
3832       CompleteObject LitObj(LVal.Base, &Lit, Base->getType());
3833       return extractSubobject(Info, Conv, LitObj, LVal.Designator, RVal, AK);
3834     } else if (isa<StringLiteral>(Base) || isa<PredefinedExpr>(Base)) {
3835       // Special-case character extraction so we don't have to construct an
3836       // APValue for the whole string.
3837       assert(LVal.Designator.Entries.size() <= 1 &&
3838              "Can only read characters from string literals");
3839       if (LVal.Designator.Entries.empty()) {
3840         // Fail for now for LValue to RValue conversion of an array.
3841         // (This shouldn't show up in C/C++, but it could be triggered by a
3842         // weird EvaluateAsRValue call from a tool.)
3843         Info.FFDiag(Conv);
3844         return false;
3845       }
3846       if (LVal.Designator.isOnePastTheEnd()) {
3847         if (Info.getLangOpts().CPlusPlus11)
3848           Info.FFDiag(Conv, diag::note_constexpr_access_past_end) << AK;
3849         else
3850           Info.FFDiag(Conv);
3851         return false;
3852       }
3853       uint64_t CharIndex = LVal.Designator.Entries[0].getAsArrayIndex();
3854       RVal = APValue(extractStringLiteralCharacter(Info, Base, CharIndex));
3855       return true;
3856     }
3857   }
3858 
3859   CompleteObject Obj = findCompleteObject(Info, Conv, AK, LVal, Type);
3860   return Obj && extractSubobject(Info, Conv, Obj, LVal.Designator, RVal, AK);
3861 }
3862 
3863 /// Perform an assignment of Val to LVal. Takes ownership of Val.
3864 static bool handleAssignment(EvalInfo &Info, const Expr *E, const LValue &LVal,
3865                              QualType LValType, APValue &Val) {
3866   if (LVal.Designator.Invalid)
3867     return false;
3868 
3869   if (!Info.getLangOpts().CPlusPlus14) {
3870     Info.FFDiag(E);
3871     return false;
3872   }
3873 
3874   CompleteObject Obj = findCompleteObject(Info, E, AK_Assign, LVal, LValType);
3875   return Obj && modifySubobject(Info, E, Obj, LVal.Designator, Val);
3876 }
3877 
3878 namespace {
3879 struct CompoundAssignSubobjectHandler {
3880   EvalInfo &Info;
3881   const Expr *E;
3882   QualType PromotedLHSType;
3883   BinaryOperatorKind Opcode;
3884   const APValue &RHS;
3885 
3886   static const AccessKinds AccessKind = AK_Assign;
3887 
3888   typedef bool result_type;
3889 
3890   bool checkConst(QualType QT) {
3891     // Assigning to a const object has undefined behavior.
3892     if (QT.isConstQualified()) {
3893       Info.FFDiag(E, diag::note_constexpr_modify_const_type) << QT;
3894       return false;
3895     }
3896     return true;
3897   }
3898 
3899   bool failed() { return false; }
3900   bool found(APValue &Subobj, QualType SubobjType) {
3901     switch (Subobj.getKind()) {
3902     case APValue::Int:
3903       return found(Subobj.getInt(), SubobjType);
3904     case APValue::Float:
3905       return found(Subobj.getFloat(), SubobjType);
3906     case APValue::ComplexInt:
3907     case APValue::ComplexFloat:
3908       // FIXME: Implement complex compound assignment.
3909       Info.FFDiag(E);
3910       return false;
3911     case APValue::LValue:
3912       return foundPointer(Subobj, SubobjType);
3913     default:
3914       // FIXME: can this happen?
3915       Info.FFDiag(E);
3916       return false;
3917     }
3918   }
3919   bool found(APSInt &Value, QualType SubobjType) {
3920     if (!checkConst(SubobjType))
3921       return false;
3922 
3923     if (!SubobjType->isIntegerType()) {
3924       // We don't support compound assignment on integer-cast-to-pointer
3925       // values.
3926       Info.FFDiag(E);
3927       return false;
3928     }
3929 
3930     if (RHS.isInt()) {
3931       APSInt LHS =
3932           HandleIntToIntCast(Info, E, PromotedLHSType, SubobjType, Value);
3933       if (!handleIntIntBinOp(Info, E, LHS, Opcode, RHS.getInt(), LHS))
3934         return false;
3935       Value = HandleIntToIntCast(Info, E, SubobjType, PromotedLHSType, LHS);
3936       return true;
3937     } else if (RHS.isFloat()) {
3938       APFloat FValue(0.0);
3939       return HandleIntToFloatCast(Info, E, SubobjType, Value, PromotedLHSType,
3940                                   FValue) &&
3941              handleFloatFloatBinOp(Info, E, FValue, Opcode, RHS.getFloat()) &&
3942              HandleFloatToIntCast(Info, E, PromotedLHSType, FValue, SubobjType,
3943                                   Value);
3944     }
3945 
3946     Info.FFDiag(E);
3947     return false;
3948   }
3949   bool found(APFloat &Value, QualType SubobjType) {
3950     return checkConst(SubobjType) &&
3951            HandleFloatToFloatCast(Info, E, SubobjType, PromotedLHSType,
3952                                   Value) &&
3953            handleFloatFloatBinOp(Info, E, Value, Opcode, RHS.getFloat()) &&
3954            HandleFloatToFloatCast(Info, E, PromotedLHSType, SubobjType, Value);
3955   }
3956   bool foundPointer(APValue &Subobj, QualType SubobjType) {
3957     if (!checkConst(SubobjType))
3958       return false;
3959 
3960     QualType PointeeType;
3961     if (const PointerType *PT = SubobjType->getAs<PointerType>())
3962       PointeeType = PT->getPointeeType();
3963 
3964     if (PointeeType.isNull() || !RHS.isInt() ||
3965         (Opcode != BO_Add && Opcode != BO_Sub)) {
3966       Info.FFDiag(E);
3967       return false;
3968     }
3969 
3970     APSInt Offset = RHS.getInt();
3971     if (Opcode == BO_Sub)
3972       negateAsSigned(Offset);
3973 
3974     LValue LVal;
3975     LVal.setFrom(Info.Ctx, Subobj);
3976     if (!HandleLValueArrayAdjustment(Info, E, LVal, PointeeType, Offset))
3977       return false;
3978     LVal.moveInto(Subobj);
3979     return true;
3980   }
3981 };
3982 } // end anonymous namespace
3983 
3984 const AccessKinds CompoundAssignSubobjectHandler::AccessKind;
3985 
3986 /// Perform a compound assignment of LVal <op>= RVal.
3987 static bool handleCompoundAssignment(
3988     EvalInfo &Info, const Expr *E,
3989     const LValue &LVal, QualType LValType, QualType PromotedLValType,
3990     BinaryOperatorKind Opcode, const APValue &RVal) {
3991   if (LVal.Designator.Invalid)
3992     return false;
3993 
3994   if (!Info.getLangOpts().CPlusPlus14) {
3995     Info.FFDiag(E);
3996     return false;
3997   }
3998 
3999   CompleteObject Obj = findCompleteObject(Info, E, AK_Assign, LVal, LValType);
4000   CompoundAssignSubobjectHandler Handler = { Info, E, PromotedLValType, Opcode,
4001                                              RVal };
4002   return Obj && findSubobject(Info, E, Obj, LVal.Designator, Handler);
4003 }
4004 
4005 namespace {
4006 struct IncDecSubobjectHandler {
4007   EvalInfo &Info;
4008   const UnaryOperator *E;
4009   AccessKinds AccessKind;
4010   APValue *Old;
4011 
4012   typedef bool result_type;
4013 
4014   bool checkConst(QualType QT) {
4015     // Assigning to a const object has undefined behavior.
4016     if (QT.isConstQualified()) {
4017       Info.FFDiag(E, diag::note_constexpr_modify_const_type) << QT;
4018       return false;
4019     }
4020     return true;
4021   }
4022 
4023   bool failed() { return false; }
4024   bool found(APValue &Subobj, QualType SubobjType) {
4025     // Stash the old value. Also clear Old, so we don't clobber it later
4026     // if we're post-incrementing a complex.
4027     if (Old) {
4028       *Old = Subobj;
4029       Old = nullptr;
4030     }
4031 
4032     switch (Subobj.getKind()) {
4033     case APValue::Int:
4034       return found(Subobj.getInt(), SubobjType);
4035     case APValue::Float:
4036       return found(Subobj.getFloat(), SubobjType);
4037     case APValue::ComplexInt:
4038       return found(Subobj.getComplexIntReal(),
4039                    SubobjType->castAs<ComplexType>()->getElementType()
4040                      .withCVRQualifiers(SubobjType.getCVRQualifiers()));
4041     case APValue::ComplexFloat:
4042       return found(Subobj.getComplexFloatReal(),
4043                    SubobjType->castAs<ComplexType>()->getElementType()
4044                      .withCVRQualifiers(SubobjType.getCVRQualifiers()));
4045     case APValue::LValue:
4046       return foundPointer(Subobj, SubobjType);
4047     default:
4048       // FIXME: can this happen?
4049       Info.FFDiag(E);
4050       return false;
4051     }
4052   }
4053   bool found(APSInt &Value, QualType SubobjType) {
4054     if (!checkConst(SubobjType))
4055       return false;
4056 
4057     if (!SubobjType->isIntegerType()) {
4058       // We don't support increment / decrement on integer-cast-to-pointer
4059       // values.
4060       Info.FFDiag(E);
4061       return false;
4062     }
4063 
4064     if (Old) *Old = APValue(Value);
4065 
4066     // bool arithmetic promotes to int, and the conversion back to bool
4067     // doesn't reduce mod 2^n, so special-case it.
4068     if (SubobjType->isBooleanType()) {
4069       if (AccessKind == AK_Increment)
4070         Value = 1;
4071       else
4072         Value = !Value;
4073       return true;
4074     }
4075 
4076     bool WasNegative = Value.isNegative();
4077     if (AccessKind == AK_Increment) {
4078       ++Value;
4079 
4080       if (!WasNegative && Value.isNegative() && E->canOverflow()) {
4081         APSInt ActualValue(Value, /*IsUnsigned*/true);
4082         return HandleOverflow(Info, E, ActualValue, SubobjType);
4083       }
4084     } else {
4085       --Value;
4086 
4087       if (WasNegative && !Value.isNegative() && E->canOverflow()) {
4088         unsigned BitWidth = Value.getBitWidth();
4089         APSInt ActualValue(Value.sext(BitWidth + 1), /*IsUnsigned*/false);
4090         ActualValue.setBit(BitWidth);
4091         return HandleOverflow(Info, E, ActualValue, SubobjType);
4092       }
4093     }
4094     return true;
4095   }
4096   bool found(APFloat &Value, QualType SubobjType) {
4097     if (!checkConst(SubobjType))
4098       return false;
4099 
4100     if (Old) *Old = APValue(Value);
4101 
4102     APFloat One(Value.getSemantics(), 1);
4103     if (AccessKind == AK_Increment)
4104       Value.add(One, APFloat::rmNearestTiesToEven);
4105     else
4106       Value.subtract(One, APFloat::rmNearestTiesToEven);
4107     return true;
4108   }
4109   bool foundPointer(APValue &Subobj, QualType SubobjType) {
4110     if (!checkConst(SubobjType))
4111       return false;
4112 
4113     QualType PointeeType;
4114     if (const PointerType *PT = SubobjType->getAs<PointerType>())
4115       PointeeType = PT->getPointeeType();
4116     else {
4117       Info.FFDiag(E);
4118       return false;
4119     }
4120 
4121     LValue LVal;
4122     LVal.setFrom(Info.Ctx, Subobj);
4123     if (!HandleLValueArrayAdjustment(Info, E, LVal, PointeeType,
4124                                      AccessKind == AK_Increment ? 1 : -1))
4125       return false;
4126     LVal.moveInto(Subobj);
4127     return true;
4128   }
4129 };
4130 } // end anonymous namespace
4131 
4132 /// Perform an increment or decrement on LVal.
4133 static bool handleIncDec(EvalInfo &Info, const Expr *E, const LValue &LVal,
4134                          QualType LValType, bool IsIncrement, APValue *Old) {
4135   if (LVal.Designator.Invalid)
4136     return false;
4137 
4138   if (!Info.getLangOpts().CPlusPlus14) {
4139     Info.FFDiag(E);
4140     return false;
4141   }
4142 
4143   AccessKinds AK = IsIncrement ? AK_Increment : AK_Decrement;
4144   CompleteObject Obj = findCompleteObject(Info, E, AK, LVal, LValType);
4145   IncDecSubobjectHandler Handler = {Info, cast<UnaryOperator>(E), AK, Old};
4146   return Obj && findSubobject(Info, E, Obj, LVal.Designator, Handler);
4147 }
4148 
4149 /// Build an lvalue for the object argument of a member function call.
4150 static bool EvaluateObjectArgument(EvalInfo &Info, const Expr *Object,
4151                                    LValue &This) {
4152   if (Object->getType()->isPointerType() && Object->isRValue())
4153     return EvaluatePointer(Object, This, Info);
4154 
4155   if (Object->isGLValue())
4156     return EvaluateLValue(Object, This, Info);
4157 
4158   if (Object->getType()->isLiteralType(Info.Ctx))
4159     return EvaluateTemporary(Object, This, Info);
4160 
4161   Info.FFDiag(Object, diag::note_constexpr_nonliteral) << Object->getType();
4162   return false;
4163 }
4164 
4165 /// HandleMemberPointerAccess - Evaluate a member access operation and build an
4166 /// lvalue referring to the result.
4167 ///
4168 /// \param Info - Information about the ongoing evaluation.
4169 /// \param LV - An lvalue referring to the base of the member pointer.
4170 /// \param RHS - The member pointer expression.
4171 /// \param IncludeMember - Specifies whether the member itself is included in
4172 ///        the resulting LValue subobject designator. This is not possible when
4173 ///        creating a bound member function.
4174 /// \return The field or method declaration to which the member pointer refers,
4175 ///         or 0 if evaluation fails.
4176 static const ValueDecl *HandleMemberPointerAccess(EvalInfo &Info,
4177                                                   QualType LVType,
4178                                                   LValue &LV,
4179                                                   const Expr *RHS,
4180                                                   bool IncludeMember = true) {
4181   MemberPtr MemPtr;
4182   if (!EvaluateMemberPointer(RHS, MemPtr, Info))
4183     return nullptr;
4184 
4185   // C++11 [expr.mptr.oper]p6: If the second operand is the null pointer to
4186   // member value, the behavior is undefined.
4187   if (!MemPtr.getDecl()) {
4188     // FIXME: Specific diagnostic.
4189     Info.FFDiag(RHS);
4190     return nullptr;
4191   }
4192 
4193   if (MemPtr.isDerivedMember()) {
4194     // This is a member of some derived class. Truncate LV appropriately.
4195     // The end of the derived-to-base path for the base object must match the
4196     // derived-to-base path for the member pointer.
4197     if (LV.Designator.MostDerivedPathLength + MemPtr.Path.size() >
4198         LV.Designator.Entries.size()) {
4199       Info.FFDiag(RHS);
4200       return nullptr;
4201     }
4202     unsigned PathLengthToMember =
4203         LV.Designator.Entries.size() - MemPtr.Path.size();
4204     for (unsigned I = 0, N = MemPtr.Path.size(); I != N; ++I) {
4205       const CXXRecordDecl *LVDecl = getAsBaseClass(
4206           LV.Designator.Entries[PathLengthToMember + I]);
4207       const CXXRecordDecl *MPDecl = MemPtr.Path[I];
4208       if (LVDecl->getCanonicalDecl() != MPDecl->getCanonicalDecl()) {
4209         Info.FFDiag(RHS);
4210         return nullptr;
4211       }
4212     }
4213 
4214     // Truncate the lvalue to the appropriate derived class.
4215     if (!CastToDerivedClass(Info, RHS, LV, MemPtr.getContainingRecord(),
4216                             PathLengthToMember))
4217       return nullptr;
4218   } else if (!MemPtr.Path.empty()) {
4219     // Extend the LValue path with the member pointer's path.
4220     LV.Designator.Entries.reserve(LV.Designator.Entries.size() +
4221                                   MemPtr.Path.size() + IncludeMember);
4222 
4223     // Walk down to the appropriate base class.
4224     if (const PointerType *PT = LVType->getAs<PointerType>())
4225       LVType = PT->getPointeeType();
4226     const CXXRecordDecl *RD = LVType->getAsCXXRecordDecl();
4227     assert(RD && "member pointer access on non-class-type expression");
4228     // The first class in the path is that of the lvalue.
4229     for (unsigned I = 1, N = MemPtr.Path.size(); I != N; ++I) {
4230       const CXXRecordDecl *Base = MemPtr.Path[N - I - 1];
4231       if (!HandleLValueDirectBase(Info, RHS, LV, RD, Base))
4232         return nullptr;
4233       RD = Base;
4234     }
4235     // Finally cast to the class containing the member.
4236     if (!HandleLValueDirectBase(Info, RHS, LV, RD,
4237                                 MemPtr.getContainingRecord()))
4238       return nullptr;
4239   }
4240 
4241   // Add the member. Note that we cannot build bound member functions here.
4242   if (IncludeMember) {
4243     if (const FieldDecl *FD = dyn_cast<FieldDecl>(MemPtr.getDecl())) {
4244       if (!HandleLValueMember(Info, RHS, LV, FD))
4245         return nullptr;
4246     } else if (const IndirectFieldDecl *IFD =
4247                  dyn_cast<IndirectFieldDecl>(MemPtr.getDecl())) {
4248       if (!HandleLValueIndirectMember(Info, RHS, LV, IFD))
4249         return nullptr;
4250     } else {
4251       llvm_unreachable("can't construct reference to bound member function");
4252     }
4253   }
4254 
4255   return MemPtr.getDecl();
4256 }
4257 
4258 static const ValueDecl *HandleMemberPointerAccess(EvalInfo &Info,
4259                                                   const BinaryOperator *BO,
4260                                                   LValue &LV,
4261                                                   bool IncludeMember = true) {
4262   assert(BO->getOpcode() == BO_PtrMemD || BO->getOpcode() == BO_PtrMemI);
4263 
4264   if (!EvaluateObjectArgument(Info, BO->getLHS(), LV)) {
4265     if (Info.noteFailure()) {
4266       MemberPtr MemPtr;
4267       EvaluateMemberPointer(BO->getRHS(), MemPtr, Info);
4268     }
4269     return nullptr;
4270   }
4271 
4272   return HandleMemberPointerAccess(Info, BO->getLHS()->getType(), LV,
4273                                    BO->getRHS(), IncludeMember);
4274 }
4275 
4276 /// HandleBaseToDerivedCast - Apply the given base-to-derived cast operation on
4277 /// the provided lvalue, which currently refers to the base object.
4278 static bool HandleBaseToDerivedCast(EvalInfo &Info, const CastExpr *E,
4279                                     LValue &Result) {
4280   SubobjectDesignator &D = Result.Designator;
4281   if (D.Invalid || !Result.checkNullPointer(Info, E, CSK_Derived))
4282     return false;
4283 
4284   QualType TargetQT = E->getType();
4285   if (const PointerType *PT = TargetQT->getAs<PointerType>())
4286     TargetQT = PT->getPointeeType();
4287 
4288   // Check this cast lands within the final derived-to-base subobject path.
4289   if (D.MostDerivedPathLength + E->path_size() > D.Entries.size()) {
4290     Info.CCEDiag(E, diag::note_constexpr_invalid_downcast)
4291       << D.MostDerivedType << TargetQT;
4292     return false;
4293   }
4294 
4295   // Check the type of the final cast. We don't need to check the path,
4296   // since a cast can only be formed if the path is unique.
4297   unsigned NewEntriesSize = D.Entries.size() - E->path_size();
4298   const CXXRecordDecl *TargetType = TargetQT->getAsCXXRecordDecl();
4299   const CXXRecordDecl *FinalType;
4300   if (NewEntriesSize == D.MostDerivedPathLength)
4301     FinalType = D.MostDerivedType->getAsCXXRecordDecl();
4302   else
4303     FinalType = getAsBaseClass(D.Entries[NewEntriesSize - 1]);
4304   if (FinalType->getCanonicalDecl() != TargetType->getCanonicalDecl()) {
4305     Info.CCEDiag(E, diag::note_constexpr_invalid_downcast)
4306       << D.MostDerivedType << TargetQT;
4307     return false;
4308   }
4309 
4310   // Truncate the lvalue to the appropriate derived class.
4311   return CastToDerivedClass(Info, E, Result, TargetType, NewEntriesSize);
4312 }
4313 
4314 /// Get the value to use for a default-initialized object of type T.
4315 static APValue getDefaultInitValue(QualType T) {
4316   if (auto *RD = T->getAsCXXRecordDecl()) {
4317     if (RD->isUnion())
4318       return APValue((const FieldDecl*)nullptr);
4319 
4320     APValue Struct(APValue::UninitStruct(), RD->getNumBases(),
4321                    std::distance(RD->field_begin(), RD->field_end()));
4322 
4323     unsigned Index = 0;
4324     for (CXXRecordDecl::base_class_const_iterator I = RD->bases_begin(),
4325            End = RD->bases_end(); I != End; ++I, ++Index)
4326       Struct.getStructBase(Index) = getDefaultInitValue(I->getType());
4327 
4328     for (const auto *I : RD->fields()) {
4329       if (I->isUnnamedBitfield())
4330         continue;
4331       Struct.getStructField(I->getFieldIndex()) =
4332           getDefaultInitValue(I->getType());
4333     }
4334     return Struct;
4335   }
4336 
4337   if (auto *AT =
4338           dyn_cast_or_null<ConstantArrayType>(T->getAsArrayTypeUnsafe())) {
4339     APValue Array(APValue::UninitArray(), 0, AT->getSize().getZExtValue());
4340     if (Array.hasArrayFiller())
4341       Array.getArrayFiller() = getDefaultInitValue(AT->getElementType());
4342     return Array;
4343   }
4344 
4345   return APValue::IndeterminateValue();
4346 }
4347 
4348 namespace {
4349 enum EvalStmtResult {
4350   /// Evaluation failed.
4351   ESR_Failed,
4352   /// Hit a 'return' statement.
4353   ESR_Returned,
4354   /// Evaluation succeeded.
4355   ESR_Succeeded,
4356   /// Hit a 'continue' statement.
4357   ESR_Continue,
4358   /// Hit a 'break' statement.
4359   ESR_Break,
4360   /// Still scanning for 'case' or 'default' statement.
4361   ESR_CaseNotFound
4362 };
4363 }
4364 
4365 static bool EvaluateVarDecl(EvalInfo &Info, const VarDecl *VD) {
4366   // We don't need to evaluate the initializer for a static local.
4367   if (!VD->hasLocalStorage())
4368     return true;
4369 
4370   LValue Result;
4371   APValue &Val =
4372       Info.CurrentCall->createTemporary(VD, VD->getType(), true, Result);
4373 
4374   const Expr *InitE = VD->getInit();
4375   if (!InitE) {
4376     Val = getDefaultInitValue(VD->getType());
4377     return true;
4378   }
4379 
4380   if (InitE->isValueDependent())
4381     return false;
4382 
4383   if (!EvaluateInPlace(Val, Info, Result, InitE)) {
4384     // Wipe out any partially-computed value, to allow tracking that this
4385     // evaluation failed.
4386     Val = APValue();
4387     return false;
4388   }
4389 
4390   return true;
4391 }
4392 
4393 static bool EvaluateDecl(EvalInfo &Info, const Decl *D) {
4394   bool OK = true;
4395 
4396   if (const VarDecl *VD = dyn_cast<VarDecl>(D))
4397     OK &= EvaluateVarDecl(Info, VD);
4398 
4399   if (const DecompositionDecl *DD = dyn_cast<DecompositionDecl>(D))
4400     for (auto *BD : DD->bindings())
4401       if (auto *VD = BD->getHoldingVar())
4402         OK &= EvaluateDecl(Info, VD);
4403 
4404   return OK;
4405 }
4406 
4407 
4408 /// Evaluate a condition (either a variable declaration or an expression).
4409 static bool EvaluateCond(EvalInfo &Info, const VarDecl *CondDecl,
4410                          const Expr *Cond, bool &Result) {
4411   FullExpressionRAII Scope(Info);
4412   if (CondDecl && !EvaluateDecl(Info, CondDecl))
4413     return false;
4414   if (!EvaluateAsBooleanCondition(Cond, Result, Info))
4415     return false;
4416   return Scope.destroy();
4417 }
4418 
4419 namespace {
4420 /// A location where the result (returned value) of evaluating a
4421 /// statement should be stored.
4422 struct StmtResult {
4423   /// The APValue that should be filled in with the returned value.
4424   APValue &Value;
4425   /// The location containing the result, if any (used to support RVO).
4426   const LValue *Slot;
4427 };
4428 
4429 struct TempVersionRAII {
4430   CallStackFrame &Frame;
4431 
4432   TempVersionRAII(CallStackFrame &Frame) : Frame(Frame) {
4433     Frame.pushTempVersion();
4434   }
4435 
4436   ~TempVersionRAII() {
4437     Frame.popTempVersion();
4438   }
4439 };
4440 
4441 }
4442 
4443 static EvalStmtResult EvaluateStmt(StmtResult &Result, EvalInfo &Info,
4444                                    const Stmt *S,
4445                                    const SwitchCase *SC = nullptr);
4446 
4447 /// Evaluate the body of a loop, and translate the result as appropriate.
4448 static EvalStmtResult EvaluateLoopBody(StmtResult &Result, EvalInfo &Info,
4449                                        const Stmt *Body,
4450                                        const SwitchCase *Case = nullptr) {
4451   BlockScopeRAII Scope(Info);
4452 
4453   EvalStmtResult ESR = EvaluateStmt(Result, Info, Body, Case);
4454   if (ESR != ESR_Failed && ESR != ESR_CaseNotFound && !Scope.destroy())
4455     ESR = ESR_Failed;
4456 
4457   switch (ESR) {
4458   case ESR_Break:
4459     return ESR_Succeeded;
4460   case ESR_Succeeded:
4461   case ESR_Continue:
4462     return ESR_Continue;
4463   case ESR_Failed:
4464   case ESR_Returned:
4465   case ESR_CaseNotFound:
4466     return ESR;
4467   }
4468   llvm_unreachable("Invalid EvalStmtResult!");
4469 }
4470 
4471 /// Evaluate a switch statement.
4472 static EvalStmtResult EvaluateSwitch(StmtResult &Result, EvalInfo &Info,
4473                                      const SwitchStmt *SS) {
4474   BlockScopeRAII Scope(Info);
4475 
4476   // Evaluate the switch condition.
4477   APSInt Value;
4478   {
4479     if (const Stmt *Init = SS->getInit()) {
4480       EvalStmtResult ESR = EvaluateStmt(Result, Info, Init);
4481       if (ESR != ESR_Succeeded) {
4482         if (ESR != ESR_Failed && !Scope.destroy())
4483           ESR = ESR_Failed;
4484         return ESR;
4485       }
4486     }
4487 
4488     FullExpressionRAII CondScope(Info);
4489     if (SS->getConditionVariable() &&
4490         !EvaluateDecl(Info, SS->getConditionVariable()))
4491       return ESR_Failed;
4492     if (!EvaluateInteger(SS->getCond(), Value, Info))
4493       return ESR_Failed;
4494     if (!CondScope.destroy())
4495       return ESR_Failed;
4496   }
4497 
4498   // Find the switch case corresponding to the value of the condition.
4499   // FIXME: Cache this lookup.
4500   const SwitchCase *Found = nullptr;
4501   for (const SwitchCase *SC = SS->getSwitchCaseList(); SC;
4502        SC = SC->getNextSwitchCase()) {
4503     if (isa<DefaultStmt>(SC)) {
4504       Found = SC;
4505       continue;
4506     }
4507 
4508     const CaseStmt *CS = cast<CaseStmt>(SC);
4509     APSInt LHS = CS->getLHS()->EvaluateKnownConstInt(Info.Ctx);
4510     APSInt RHS = CS->getRHS() ? CS->getRHS()->EvaluateKnownConstInt(Info.Ctx)
4511                               : LHS;
4512     if (LHS <= Value && Value <= RHS) {
4513       Found = SC;
4514       break;
4515     }
4516   }
4517 
4518   if (!Found)
4519     return Scope.destroy() ? ESR_Succeeded : ESR_Failed;
4520 
4521   // Search the switch body for the switch case and evaluate it from there.
4522   EvalStmtResult ESR = EvaluateStmt(Result, Info, SS->getBody(), Found);
4523   if (ESR != ESR_Failed && ESR != ESR_CaseNotFound && !Scope.destroy())
4524     return ESR_Failed;
4525 
4526   switch (ESR) {
4527   case ESR_Break:
4528     return ESR_Succeeded;
4529   case ESR_Succeeded:
4530   case ESR_Continue:
4531   case ESR_Failed:
4532   case ESR_Returned:
4533     return ESR;
4534   case ESR_CaseNotFound:
4535     // This can only happen if the switch case is nested within a statement
4536     // expression. We have no intention of supporting that.
4537     Info.FFDiag(Found->getBeginLoc(),
4538                 diag::note_constexpr_stmt_expr_unsupported);
4539     return ESR_Failed;
4540   }
4541   llvm_unreachable("Invalid EvalStmtResult!");
4542 }
4543 
4544 // Evaluate a statement.
4545 static EvalStmtResult EvaluateStmt(StmtResult &Result, EvalInfo &Info,
4546                                    const Stmt *S, const SwitchCase *Case) {
4547   if (!Info.nextStep(S))
4548     return ESR_Failed;
4549 
4550   // If we're hunting down a 'case' or 'default' label, recurse through
4551   // substatements until we hit the label.
4552   if (Case) {
4553     switch (S->getStmtClass()) {
4554     case Stmt::CompoundStmtClass:
4555       // FIXME: Precompute which substatement of a compound statement we
4556       // would jump to, and go straight there rather than performing a
4557       // linear scan each time.
4558     case Stmt::LabelStmtClass:
4559     case Stmt::AttributedStmtClass:
4560     case Stmt::DoStmtClass:
4561       break;
4562 
4563     case Stmt::CaseStmtClass:
4564     case Stmt::DefaultStmtClass:
4565       if (Case == S)
4566         Case = nullptr;
4567       break;
4568 
4569     case Stmt::IfStmtClass: {
4570       // FIXME: Precompute which side of an 'if' we would jump to, and go
4571       // straight there rather than scanning both sides.
4572       const IfStmt *IS = cast<IfStmt>(S);
4573 
4574       // Wrap the evaluation in a block scope, in case it's a DeclStmt
4575       // preceded by our switch label.
4576       BlockScopeRAII Scope(Info);
4577 
4578       // Step into the init statement in case it brings an (uninitialized)
4579       // variable into scope.
4580       if (const Stmt *Init = IS->getInit()) {
4581         EvalStmtResult ESR = EvaluateStmt(Result, Info, Init, Case);
4582         if (ESR != ESR_CaseNotFound) {
4583           assert(ESR != ESR_Succeeded);
4584           return ESR;
4585         }
4586       }
4587 
4588       // Condition variable must be initialized if it exists.
4589       // FIXME: We can skip evaluating the body if there's a condition
4590       // variable, as there can't be any case labels within it.
4591       // (The same is true for 'for' statements.)
4592 
4593       EvalStmtResult ESR = EvaluateStmt(Result, Info, IS->getThen(), Case);
4594       if (ESR == ESR_Failed)
4595         return ESR;
4596       if (ESR != ESR_CaseNotFound)
4597         return Scope.destroy() ? ESR : ESR_Failed;
4598       if (!IS->getElse())
4599         return ESR_CaseNotFound;
4600 
4601       ESR = EvaluateStmt(Result, Info, IS->getElse(), Case);
4602       if (ESR == ESR_Failed)
4603         return ESR;
4604       if (ESR != ESR_CaseNotFound)
4605         return Scope.destroy() ? ESR : ESR_Failed;
4606       return ESR_CaseNotFound;
4607     }
4608 
4609     case Stmt::WhileStmtClass: {
4610       EvalStmtResult ESR =
4611           EvaluateLoopBody(Result, Info, cast<WhileStmt>(S)->getBody(), Case);
4612       if (ESR != ESR_Continue)
4613         return ESR;
4614       break;
4615     }
4616 
4617     case Stmt::ForStmtClass: {
4618       const ForStmt *FS = cast<ForStmt>(S);
4619       BlockScopeRAII Scope(Info);
4620 
4621       // Step into the init statement in case it brings an (uninitialized)
4622       // variable into scope.
4623       if (const Stmt *Init = FS->getInit()) {
4624         EvalStmtResult ESR = EvaluateStmt(Result, Info, Init, Case);
4625         if (ESR != ESR_CaseNotFound) {
4626           assert(ESR != ESR_Succeeded);
4627           return ESR;
4628         }
4629       }
4630 
4631       EvalStmtResult ESR =
4632           EvaluateLoopBody(Result, Info, FS->getBody(), Case);
4633       if (ESR != ESR_Continue)
4634         return ESR;
4635       if (FS->getInc()) {
4636         FullExpressionRAII IncScope(Info);
4637         if (!EvaluateIgnoredValue(Info, FS->getInc()) || !IncScope.destroy())
4638           return ESR_Failed;
4639       }
4640       break;
4641     }
4642 
4643     case Stmt::DeclStmtClass: {
4644       // Start the lifetime of any uninitialized variables we encounter. They
4645       // might be used by the selected branch of the switch.
4646       const DeclStmt *DS = cast<DeclStmt>(S);
4647       for (const auto *D : DS->decls()) {
4648         if (const auto *VD = dyn_cast<VarDecl>(D)) {
4649           if (VD->hasLocalStorage() && !VD->getInit())
4650             if (!EvaluateVarDecl(Info, VD))
4651               return ESR_Failed;
4652           // FIXME: If the variable has initialization that can't be jumped
4653           // over, bail out of any immediately-surrounding compound-statement
4654           // too. There can't be any case labels here.
4655         }
4656       }
4657       return ESR_CaseNotFound;
4658     }
4659 
4660     default:
4661       return ESR_CaseNotFound;
4662     }
4663   }
4664 
4665   switch (S->getStmtClass()) {
4666   default:
4667     if (const Expr *E = dyn_cast<Expr>(S)) {
4668       // Don't bother evaluating beyond an expression-statement which couldn't
4669       // be evaluated.
4670       // FIXME: Do we need the FullExpressionRAII object here?
4671       // VisitExprWithCleanups should create one when necessary.
4672       FullExpressionRAII Scope(Info);
4673       if (!EvaluateIgnoredValue(Info, E) || !Scope.destroy())
4674         return ESR_Failed;
4675       return ESR_Succeeded;
4676     }
4677 
4678     Info.FFDiag(S->getBeginLoc());
4679     return ESR_Failed;
4680 
4681   case Stmt::NullStmtClass:
4682     return ESR_Succeeded;
4683 
4684   case Stmt::DeclStmtClass: {
4685     const DeclStmt *DS = cast<DeclStmt>(S);
4686     for (const auto *D : DS->decls()) {
4687       // Each declaration initialization is its own full-expression.
4688       FullExpressionRAII Scope(Info);
4689       if (!EvaluateDecl(Info, D) && !Info.noteFailure())
4690         return ESR_Failed;
4691       if (!Scope.destroy())
4692         return ESR_Failed;
4693     }
4694     return ESR_Succeeded;
4695   }
4696 
4697   case Stmt::ReturnStmtClass: {
4698     const Expr *RetExpr = cast<ReturnStmt>(S)->getRetValue();
4699     FullExpressionRAII Scope(Info);
4700     if (RetExpr &&
4701         !(Result.Slot
4702               ? EvaluateInPlace(Result.Value, Info, *Result.Slot, RetExpr)
4703               : Evaluate(Result.Value, Info, RetExpr)))
4704       return ESR_Failed;
4705     return Scope.destroy() ? ESR_Returned : ESR_Failed;
4706   }
4707 
4708   case Stmt::CompoundStmtClass: {
4709     BlockScopeRAII Scope(Info);
4710 
4711     const CompoundStmt *CS = cast<CompoundStmt>(S);
4712     for (const auto *BI : CS->body()) {
4713       EvalStmtResult ESR = EvaluateStmt(Result, Info, BI, Case);
4714       if (ESR == ESR_Succeeded)
4715         Case = nullptr;
4716       else if (ESR != ESR_CaseNotFound) {
4717         if (ESR != ESR_Failed && !Scope.destroy())
4718           return ESR_Failed;
4719         return ESR;
4720       }
4721     }
4722     if (Case)
4723       return ESR_CaseNotFound;
4724     return Scope.destroy() ? ESR_Succeeded : ESR_Failed;
4725   }
4726 
4727   case Stmt::IfStmtClass: {
4728     const IfStmt *IS = cast<IfStmt>(S);
4729 
4730     // Evaluate the condition, as either a var decl or as an expression.
4731     BlockScopeRAII Scope(Info);
4732     if (const Stmt *Init = IS->getInit()) {
4733       EvalStmtResult ESR = EvaluateStmt(Result, Info, Init);
4734       if (ESR != ESR_Succeeded) {
4735         if (ESR != ESR_Failed && !Scope.destroy())
4736           return ESR_Failed;
4737         return ESR;
4738       }
4739     }
4740     bool Cond;
4741     if (!EvaluateCond(Info, IS->getConditionVariable(), IS->getCond(), Cond))
4742       return ESR_Failed;
4743 
4744     if (const Stmt *SubStmt = Cond ? IS->getThen() : IS->getElse()) {
4745       EvalStmtResult ESR = EvaluateStmt(Result, Info, SubStmt);
4746       if (ESR != ESR_Succeeded) {
4747         if (ESR != ESR_Failed && !Scope.destroy())
4748           return ESR_Failed;
4749         return ESR;
4750       }
4751     }
4752     return Scope.destroy() ? ESR_Succeeded : ESR_Failed;
4753   }
4754 
4755   case Stmt::WhileStmtClass: {
4756     const WhileStmt *WS = cast<WhileStmt>(S);
4757     while (true) {
4758       BlockScopeRAII Scope(Info);
4759       bool Continue;
4760       if (!EvaluateCond(Info, WS->getConditionVariable(), WS->getCond(),
4761                         Continue))
4762         return ESR_Failed;
4763       if (!Continue)
4764         break;
4765 
4766       EvalStmtResult ESR = EvaluateLoopBody(Result, Info, WS->getBody());
4767       if (ESR != ESR_Continue) {
4768         if (ESR != ESR_Failed && !Scope.destroy())
4769           return ESR_Failed;
4770         return ESR;
4771       }
4772       if (!Scope.destroy())
4773         return ESR_Failed;
4774     }
4775     return ESR_Succeeded;
4776   }
4777 
4778   case Stmt::DoStmtClass: {
4779     const DoStmt *DS = cast<DoStmt>(S);
4780     bool Continue;
4781     do {
4782       EvalStmtResult ESR = EvaluateLoopBody(Result, Info, DS->getBody(), Case);
4783       if (ESR != ESR_Continue)
4784         return ESR;
4785       Case = nullptr;
4786 
4787       FullExpressionRAII CondScope(Info);
4788       if (!EvaluateAsBooleanCondition(DS->getCond(), Continue, Info) ||
4789           !CondScope.destroy())
4790         return ESR_Failed;
4791     } while (Continue);
4792     return ESR_Succeeded;
4793   }
4794 
4795   case Stmt::ForStmtClass: {
4796     const ForStmt *FS = cast<ForStmt>(S);
4797     BlockScopeRAII ForScope(Info);
4798     if (FS->getInit()) {
4799       EvalStmtResult ESR = EvaluateStmt(Result, Info, FS->getInit());
4800       if (ESR != ESR_Succeeded) {
4801         if (ESR != ESR_Failed && !ForScope.destroy())
4802           return ESR_Failed;
4803         return ESR;
4804       }
4805     }
4806     while (true) {
4807       BlockScopeRAII IterScope(Info);
4808       bool Continue = true;
4809       if (FS->getCond() && !EvaluateCond(Info, FS->getConditionVariable(),
4810                                          FS->getCond(), Continue))
4811         return ESR_Failed;
4812       if (!Continue)
4813         break;
4814 
4815       EvalStmtResult ESR = EvaluateLoopBody(Result, Info, FS->getBody());
4816       if (ESR != ESR_Continue) {
4817         if (ESR != ESR_Failed && (!IterScope.destroy() || !ForScope.destroy()))
4818           return ESR_Failed;
4819         return ESR;
4820       }
4821 
4822       if (FS->getInc()) {
4823         FullExpressionRAII IncScope(Info);
4824         if (!EvaluateIgnoredValue(Info, FS->getInc()) || !IncScope.destroy())
4825           return ESR_Failed;
4826       }
4827 
4828       if (!IterScope.destroy())
4829         return ESR_Failed;
4830     }
4831     return ForScope.destroy() ? ESR_Succeeded : ESR_Failed;
4832   }
4833 
4834   case Stmt::CXXForRangeStmtClass: {
4835     const CXXForRangeStmt *FS = cast<CXXForRangeStmt>(S);
4836     BlockScopeRAII Scope(Info);
4837 
4838     // Evaluate the init-statement if present.
4839     if (FS->getInit()) {
4840       EvalStmtResult ESR = EvaluateStmt(Result, Info, FS->getInit());
4841       if (ESR != ESR_Succeeded) {
4842         if (ESR != ESR_Failed && !Scope.destroy())
4843           return ESR_Failed;
4844         return ESR;
4845       }
4846     }
4847 
4848     // Initialize the __range variable.
4849     EvalStmtResult ESR = EvaluateStmt(Result, Info, FS->getRangeStmt());
4850     if (ESR != ESR_Succeeded) {
4851       if (ESR != ESR_Failed && !Scope.destroy())
4852         return ESR_Failed;
4853       return ESR;
4854     }
4855 
4856     // Create the __begin and __end iterators.
4857     ESR = EvaluateStmt(Result, Info, FS->getBeginStmt());
4858     if (ESR != ESR_Succeeded) {
4859       if (ESR != ESR_Failed && !Scope.destroy())
4860         return ESR_Failed;
4861       return ESR;
4862     }
4863     ESR = EvaluateStmt(Result, Info, FS->getEndStmt());
4864     if (ESR != ESR_Succeeded) {
4865       if (ESR != ESR_Failed && !Scope.destroy())
4866         return ESR_Failed;
4867       return ESR;
4868     }
4869 
4870     while (true) {
4871       // Condition: __begin != __end.
4872       {
4873         bool Continue = true;
4874         FullExpressionRAII CondExpr(Info);
4875         if (!EvaluateAsBooleanCondition(FS->getCond(), Continue, Info))
4876           return ESR_Failed;
4877         if (!Continue)
4878           break;
4879       }
4880 
4881       // User's variable declaration, initialized by *__begin.
4882       BlockScopeRAII InnerScope(Info);
4883       ESR = EvaluateStmt(Result, Info, FS->getLoopVarStmt());
4884       if (ESR != ESR_Succeeded) {
4885         if (ESR != ESR_Failed && (!InnerScope.destroy() || !Scope.destroy()))
4886           return ESR_Failed;
4887         return ESR;
4888       }
4889 
4890       // Loop body.
4891       ESR = EvaluateLoopBody(Result, Info, FS->getBody());
4892       if (ESR != ESR_Continue) {
4893         if (ESR != ESR_Failed && (!InnerScope.destroy() || !Scope.destroy()))
4894           return ESR_Failed;
4895         return ESR;
4896       }
4897 
4898       // Increment: ++__begin
4899       if (!EvaluateIgnoredValue(Info, FS->getInc()))
4900         return ESR_Failed;
4901 
4902       if (!InnerScope.destroy())
4903         return ESR_Failed;
4904     }
4905 
4906     return Scope.destroy() ? ESR_Succeeded : ESR_Failed;
4907   }
4908 
4909   case Stmt::SwitchStmtClass:
4910     return EvaluateSwitch(Result, Info, cast<SwitchStmt>(S));
4911 
4912   case Stmt::ContinueStmtClass:
4913     return ESR_Continue;
4914 
4915   case Stmt::BreakStmtClass:
4916     return ESR_Break;
4917 
4918   case Stmt::LabelStmtClass:
4919     return EvaluateStmt(Result, Info, cast<LabelStmt>(S)->getSubStmt(), Case);
4920 
4921   case Stmt::AttributedStmtClass:
4922     // As a general principle, C++11 attributes can be ignored without
4923     // any semantic impact.
4924     return EvaluateStmt(Result, Info, cast<AttributedStmt>(S)->getSubStmt(),
4925                         Case);
4926 
4927   case Stmt::CaseStmtClass:
4928   case Stmt::DefaultStmtClass:
4929     return EvaluateStmt(Result, Info, cast<SwitchCase>(S)->getSubStmt(), Case);
4930   case Stmt::CXXTryStmtClass:
4931     // Evaluate try blocks by evaluating all sub statements.
4932     return EvaluateStmt(Result, Info, cast<CXXTryStmt>(S)->getTryBlock(), Case);
4933   }
4934 }
4935 
4936 /// CheckTrivialDefaultConstructor - Check whether a constructor is a trivial
4937 /// default constructor. If so, we'll fold it whether or not it's marked as
4938 /// constexpr. If it is marked as constexpr, we will never implicitly define it,
4939 /// so we need special handling.
4940 static bool CheckTrivialDefaultConstructor(EvalInfo &Info, SourceLocation Loc,
4941                                            const CXXConstructorDecl *CD,
4942                                            bool IsValueInitialization) {
4943   if (!CD->isTrivial() || !CD->isDefaultConstructor())
4944     return false;
4945 
4946   // Value-initialization does not call a trivial default constructor, so such a
4947   // call is a core constant expression whether or not the constructor is
4948   // constexpr.
4949   if (!CD->isConstexpr() && !IsValueInitialization) {
4950     if (Info.getLangOpts().CPlusPlus11) {
4951       // FIXME: If DiagDecl is an implicitly-declared special member function,
4952       // we should be much more explicit about why it's not constexpr.
4953       Info.CCEDiag(Loc, diag::note_constexpr_invalid_function, 1)
4954         << /*IsConstexpr*/0 << /*IsConstructor*/1 << CD;
4955       Info.Note(CD->getLocation(), diag::note_declared_at);
4956     } else {
4957       Info.CCEDiag(Loc, diag::note_invalid_subexpr_in_const_expr);
4958     }
4959   }
4960   return true;
4961 }
4962 
4963 /// CheckConstexprFunction - Check that a function can be called in a constant
4964 /// expression.
4965 static bool CheckConstexprFunction(EvalInfo &Info, SourceLocation CallLoc,
4966                                    const FunctionDecl *Declaration,
4967                                    const FunctionDecl *Definition,
4968                                    const Stmt *Body) {
4969   // Potential constant expressions can contain calls to declared, but not yet
4970   // defined, constexpr functions.
4971   if (Info.checkingPotentialConstantExpression() && !Definition &&
4972       Declaration->isConstexpr())
4973     return false;
4974 
4975   // Bail out if the function declaration itself is invalid.  We will
4976   // have produced a relevant diagnostic while parsing it, so just
4977   // note the problematic sub-expression.
4978   if (Declaration->isInvalidDecl()) {
4979     Info.FFDiag(CallLoc, diag::note_invalid_subexpr_in_const_expr);
4980     return false;
4981   }
4982 
4983   // DR1872: An instantiated virtual constexpr function can't be called in a
4984   // constant expression (prior to C++20). We can still constant-fold such a
4985   // call.
4986   if (!Info.Ctx.getLangOpts().CPlusPlus20 && isa<CXXMethodDecl>(Declaration) &&
4987       cast<CXXMethodDecl>(Declaration)->isVirtual())
4988     Info.CCEDiag(CallLoc, diag::note_constexpr_virtual_call);
4989 
4990   if (Definition && Definition->isInvalidDecl()) {
4991     Info.FFDiag(CallLoc, diag::note_invalid_subexpr_in_const_expr);
4992     return false;
4993   }
4994 
4995   if (const auto *CtorDecl = dyn_cast_or_null<CXXConstructorDecl>(Definition)) {
4996     for (const auto *InitExpr : CtorDecl->inits()) {
4997       if (InitExpr->getInit() && InitExpr->getInit()->containsErrors())
4998         return false;
4999     }
5000   }
5001 
5002   // Can we evaluate this function call?
5003   if (Definition && Definition->isConstexpr() && Body)
5004     return true;
5005 
5006   if (Info.getLangOpts().CPlusPlus11) {
5007     const FunctionDecl *DiagDecl = Definition ? Definition : Declaration;
5008 
5009     // If this function is not constexpr because it is an inherited
5010     // non-constexpr constructor, diagnose that directly.
5011     auto *CD = dyn_cast<CXXConstructorDecl>(DiagDecl);
5012     if (CD && CD->isInheritingConstructor()) {
5013       auto *Inherited = CD->getInheritedConstructor().getConstructor();
5014       if (!Inherited->isConstexpr())
5015         DiagDecl = CD = Inherited;
5016     }
5017 
5018     // FIXME: If DiagDecl is an implicitly-declared special member function
5019     // or an inheriting constructor, we should be much more explicit about why
5020     // it's not constexpr.
5021     if (CD && CD->isInheritingConstructor())
5022       Info.FFDiag(CallLoc, diag::note_constexpr_invalid_inhctor, 1)
5023         << CD->getInheritedConstructor().getConstructor()->getParent();
5024     else
5025       Info.FFDiag(CallLoc, diag::note_constexpr_invalid_function, 1)
5026         << DiagDecl->isConstexpr() << (bool)CD << DiagDecl;
5027     Info.Note(DiagDecl->getLocation(), diag::note_declared_at);
5028   } else {
5029     Info.FFDiag(CallLoc, diag::note_invalid_subexpr_in_const_expr);
5030   }
5031   return false;
5032 }
5033 
5034 namespace {
5035 struct CheckDynamicTypeHandler {
5036   AccessKinds AccessKind;
5037   typedef bool result_type;
5038   bool failed() { return false; }
5039   bool found(APValue &Subobj, QualType SubobjType) { return true; }
5040   bool found(APSInt &Value, QualType SubobjType) { return true; }
5041   bool found(APFloat &Value, QualType SubobjType) { return true; }
5042 };
5043 } // end anonymous namespace
5044 
5045 /// Check that we can access the notional vptr of an object / determine its
5046 /// dynamic type.
5047 static bool checkDynamicType(EvalInfo &Info, const Expr *E, const LValue &This,
5048                              AccessKinds AK, bool Polymorphic) {
5049   if (This.Designator.Invalid)
5050     return false;
5051 
5052   CompleteObject Obj = findCompleteObject(Info, E, AK, This, QualType());
5053 
5054   if (!Obj)
5055     return false;
5056 
5057   if (!Obj.Value) {
5058     // The object is not usable in constant expressions, so we can't inspect
5059     // its value to see if it's in-lifetime or what the active union members
5060     // are. We can still check for a one-past-the-end lvalue.
5061     if (This.Designator.isOnePastTheEnd() ||
5062         This.Designator.isMostDerivedAnUnsizedArray()) {
5063       Info.FFDiag(E, This.Designator.isOnePastTheEnd()
5064                          ? diag::note_constexpr_access_past_end
5065                          : diag::note_constexpr_access_unsized_array)
5066           << AK;
5067       return false;
5068     } else if (Polymorphic) {
5069       // Conservatively refuse to perform a polymorphic operation if we would
5070       // not be able to read a notional 'vptr' value.
5071       APValue Val;
5072       This.moveInto(Val);
5073       QualType StarThisType =
5074           Info.Ctx.getLValueReferenceType(This.Designator.getType(Info.Ctx));
5075       Info.FFDiag(E, diag::note_constexpr_polymorphic_unknown_dynamic_type)
5076           << AK << Val.getAsString(Info.Ctx, StarThisType);
5077       return false;
5078     }
5079     return true;
5080   }
5081 
5082   CheckDynamicTypeHandler Handler{AK};
5083   return Obj && findSubobject(Info, E, Obj, This.Designator, Handler);
5084 }
5085 
5086 /// Check that the pointee of the 'this' pointer in a member function call is
5087 /// either within its lifetime or in its period of construction or destruction.
5088 static bool
5089 checkNonVirtualMemberCallThisPointer(EvalInfo &Info, const Expr *E,
5090                                      const LValue &This,
5091                                      const CXXMethodDecl *NamedMember) {
5092   return checkDynamicType(
5093       Info, E, This,
5094       isa<CXXDestructorDecl>(NamedMember) ? AK_Destroy : AK_MemberCall, false);
5095 }
5096 
5097 struct DynamicType {
5098   /// The dynamic class type of the object.
5099   const CXXRecordDecl *Type;
5100   /// The corresponding path length in the lvalue.
5101   unsigned PathLength;
5102 };
5103 
5104 static const CXXRecordDecl *getBaseClassType(SubobjectDesignator &Designator,
5105                                              unsigned PathLength) {
5106   assert(PathLength >= Designator.MostDerivedPathLength && PathLength <=
5107       Designator.Entries.size() && "invalid path length");
5108   return (PathLength == Designator.MostDerivedPathLength)
5109              ? Designator.MostDerivedType->getAsCXXRecordDecl()
5110              : getAsBaseClass(Designator.Entries[PathLength - 1]);
5111 }
5112 
5113 /// Determine the dynamic type of an object.
5114 static Optional<DynamicType> ComputeDynamicType(EvalInfo &Info, const Expr *E,
5115                                                 LValue &This, AccessKinds AK) {
5116   // If we don't have an lvalue denoting an object of class type, there is no
5117   // meaningful dynamic type. (We consider objects of non-class type to have no
5118   // dynamic type.)
5119   if (!checkDynamicType(Info, E, This, AK, true))
5120     return None;
5121 
5122   // Refuse to compute a dynamic type in the presence of virtual bases. This
5123   // shouldn't happen other than in constant-folding situations, since literal
5124   // types can't have virtual bases.
5125   //
5126   // Note that consumers of DynamicType assume that the type has no virtual
5127   // bases, and will need modifications if this restriction is relaxed.
5128   const CXXRecordDecl *Class =
5129       This.Designator.MostDerivedType->getAsCXXRecordDecl();
5130   if (!Class || Class->getNumVBases()) {
5131     Info.FFDiag(E);
5132     return None;
5133   }
5134 
5135   // FIXME: For very deep class hierarchies, it might be beneficial to use a
5136   // binary search here instead. But the overwhelmingly common case is that
5137   // we're not in the middle of a constructor, so it probably doesn't matter
5138   // in practice.
5139   ArrayRef<APValue::LValuePathEntry> Path = This.Designator.Entries;
5140   for (unsigned PathLength = This.Designator.MostDerivedPathLength;
5141        PathLength <= Path.size(); ++PathLength) {
5142     switch (Info.isEvaluatingCtorDtor(This.getLValueBase(),
5143                                       Path.slice(0, PathLength))) {
5144     case ConstructionPhase::Bases:
5145     case ConstructionPhase::DestroyingBases:
5146       // We're constructing or destroying a base class. This is not the dynamic
5147       // type.
5148       break;
5149 
5150     case ConstructionPhase::None:
5151     case ConstructionPhase::AfterBases:
5152     case ConstructionPhase::AfterFields:
5153     case ConstructionPhase::Destroying:
5154       // We've finished constructing the base classes and not yet started
5155       // destroying them again, so this is the dynamic type.
5156       return DynamicType{getBaseClassType(This.Designator, PathLength),
5157                          PathLength};
5158     }
5159   }
5160 
5161   // CWG issue 1517: we're constructing a base class of the object described by
5162   // 'This', so that object has not yet begun its period of construction and
5163   // any polymorphic operation on it results in undefined behavior.
5164   Info.FFDiag(E);
5165   return None;
5166 }
5167 
5168 /// Perform virtual dispatch.
5169 static const CXXMethodDecl *HandleVirtualDispatch(
5170     EvalInfo &Info, const Expr *E, LValue &This, const CXXMethodDecl *Found,
5171     llvm::SmallVectorImpl<QualType> &CovariantAdjustmentPath) {
5172   Optional<DynamicType> DynType = ComputeDynamicType(
5173       Info, E, This,
5174       isa<CXXDestructorDecl>(Found) ? AK_Destroy : AK_MemberCall);
5175   if (!DynType)
5176     return nullptr;
5177 
5178   // Find the final overrider. It must be declared in one of the classes on the
5179   // path from the dynamic type to the static type.
5180   // FIXME: If we ever allow literal types to have virtual base classes, that
5181   // won't be true.
5182   const CXXMethodDecl *Callee = Found;
5183   unsigned PathLength = DynType->PathLength;
5184   for (/**/; PathLength <= This.Designator.Entries.size(); ++PathLength) {
5185     const CXXRecordDecl *Class = getBaseClassType(This.Designator, PathLength);
5186     const CXXMethodDecl *Overrider =
5187         Found->getCorrespondingMethodDeclaredInClass(Class, false);
5188     if (Overrider) {
5189       Callee = Overrider;
5190       break;
5191     }
5192   }
5193 
5194   // C++2a [class.abstract]p6:
5195   //   the effect of making a virtual call to a pure virtual function [...] is
5196   //   undefined
5197   if (Callee->isPure()) {
5198     Info.FFDiag(E, diag::note_constexpr_pure_virtual_call, 1) << Callee;
5199     Info.Note(Callee->getLocation(), diag::note_declared_at);
5200     return nullptr;
5201   }
5202 
5203   // If necessary, walk the rest of the path to determine the sequence of
5204   // covariant adjustment steps to apply.
5205   if (!Info.Ctx.hasSameUnqualifiedType(Callee->getReturnType(),
5206                                        Found->getReturnType())) {
5207     CovariantAdjustmentPath.push_back(Callee->getReturnType());
5208     for (unsigned CovariantPathLength = PathLength + 1;
5209          CovariantPathLength != This.Designator.Entries.size();
5210          ++CovariantPathLength) {
5211       const CXXRecordDecl *NextClass =
5212           getBaseClassType(This.Designator, CovariantPathLength);
5213       const CXXMethodDecl *Next =
5214           Found->getCorrespondingMethodDeclaredInClass(NextClass, false);
5215       if (Next && !Info.Ctx.hasSameUnqualifiedType(
5216                       Next->getReturnType(), CovariantAdjustmentPath.back()))
5217         CovariantAdjustmentPath.push_back(Next->getReturnType());
5218     }
5219     if (!Info.Ctx.hasSameUnqualifiedType(Found->getReturnType(),
5220                                          CovariantAdjustmentPath.back()))
5221       CovariantAdjustmentPath.push_back(Found->getReturnType());
5222   }
5223 
5224   // Perform 'this' adjustment.
5225   if (!CastToDerivedClass(Info, E, This, Callee->getParent(), PathLength))
5226     return nullptr;
5227 
5228   return Callee;
5229 }
5230 
5231 /// Perform the adjustment from a value returned by a virtual function to
5232 /// a value of the statically expected type, which may be a pointer or
5233 /// reference to a base class of the returned type.
5234 static bool HandleCovariantReturnAdjustment(EvalInfo &Info, const Expr *E,
5235                                             APValue &Result,
5236                                             ArrayRef<QualType> Path) {
5237   assert(Result.isLValue() &&
5238          "unexpected kind of APValue for covariant return");
5239   if (Result.isNullPointer())
5240     return true;
5241 
5242   LValue LVal;
5243   LVal.setFrom(Info.Ctx, Result);
5244 
5245   const CXXRecordDecl *OldClass = Path[0]->getPointeeCXXRecordDecl();
5246   for (unsigned I = 1; I != Path.size(); ++I) {
5247     const CXXRecordDecl *NewClass = Path[I]->getPointeeCXXRecordDecl();
5248     assert(OldClass && NewClass && "unexpected kind of covariant return");
5249     if (OldClass != NewClass &&
5250         !CastToBaseClass(Info, E, LVal, OldClass, NewClass))
5251       return false;
5252     OldClass = NewClass;
5253   }
5254 
5255   LVal.moveInto(Result);
5256   return true;
5257 }
5258 
5259 /// Determine whether \p Base, which is known to be a direct base class of
5260 /// \p Derived, is a public base class.
5261 static bool isBaseClassPublic(const CXXRecordDecl *Derived,
5262                               const CXXRecordDecl *Base) {
5263   for (const CXXBaseSpecifier &BaseSpec : Derived->bases()) {
5264     auto *BaseClass = BaseSpec.getType()->getAsCXXRecordDecl();
5265     if (BaseClass && declaresSameEntity(BaseClass, Base))
5266       return BaseSpec.getAccessSpecifier() == AS_public;
5267   }
5268   llvm_unreachable("Base is not a direct base of Derived");
5269 }
5270 
5271 /// Apply the given dynamic cast operation on the provided lvalue.
5272 ///
5273 /// This implements the hard case of dynamic_cast, requiring a "runtime check"
5274 /// to find a suitable target subobject.
5275 static bool HandleDynamicCast(EvalInfo &Info, const ExplicitCastExpr *E,
5276                               LValue &Ptr) {
5277   // We can't do anything with a non-symbolic pointer value.
5278   SubobjectDesignator &D = Ptr.Designator;
5279   if (D.Invalid)
5280     return false;
5281 
5282   // C++ [expr.dynamic.cast]p6:
5283   //   If v is a null pointer value, the result is a null pointer value.
5284   if (Ptr.isNullPointer() && !E->isGLValue())
5285     return true;
5286 
5287   // For all the other cases, we need the pointer to point to an object within
5288   // its lifetime / period of construction / destruction, and we need to know
5289   // its dynamic type.
5290   Optional<DynamicType> DynType =
5291       ComputeDynamicType(Info, E, Ptr, AK_DynamicCast);
5292   if (!DynType)
5293     return false;
5294 
5295   // C++ [expr.dynamic.cast]p7:
5296   //   If T is "pointer to cv void", then the result is a pointer to the most
5297   //   derived object
5298   if (E->getType()->isVoidPointerType())
5299     return CastToDerivedClass(Info, E, Ptr, DynType->Type, DynType->PathLength);
5300 
5301   const CXXRecordDecl *C = E->getTypeAsWritten()->getPointeeCXXRecordDecl();
5302   assert(C && "dynamic_cast target is not void pointer nor class");
5303   CanQualType CQT = Info.Ctx.getCanonicalType(Info.Ctx.getRecordType(C));
5304 
5305   auto RuntimeCheckFailed = [&] (CXXBasePaths *Paths) {
5306     // C++ [expr.dynamic.cast]p9:
5307     if (!E->isGLValue()) {
5308       //   The value of a failed cast to pointer type is the null pointer value
5309       //   of the required result type.
5310       Ptr.setNull(Info.Ctx, E->getType());
5311       return true;
5312     }
5313 
5314     //   A failed cast to reference type throws [...] std::bad_cast.
5315     unsigned DiagKind;
5316     if (!Paths && (declaresSameEntity(DynType->Type, C) ||
5317                    DynType->Type->isDerivedFrom(C)))
5318       DiagKind = 0;
5319     else if (!Paths || Paths->begin() == Paths->end())
5320       DiagKind = 1;
5321     else if (Paths->isAmbiguous(CQT))
5322       DiagKind = 2;
5323     else {
5324       assert(Paths->front().Access != AS_public && "why did the cast fail?");
5325       DiagKind = 3;
5326     }
5327     Info.FFDiag(E, diag::note_constexpr_dynamic_cast_to_reference_failed)
5328         << DiagKind << Ptr.Designator.getType(Info.Ctx)
5329         << Info.Ctx.getRecordType(DynType->Type)
5330         << E->getType().getUnqualifiedType();
5331     return false;
5332   };
5333 
5334   // Runtime check, phase 1:
5335   //   Walk from the base subobject towards the derived object looking for the
5336   //   target type.
5337   for (int PathLength = Ptr.Designator.Entries.size();
5338        PathLength >= (int)DynType->PathLength; --PathLength) {
5339     const CXXRecordDecl *Class = getBaseClassType(Ptr.Designator, PathLength);
5340     if (declaresSameEntity(Class, C))
5341       return CastToDerivedClass(Info, E, Ptr, Class, PathLength);
5342     // We can only walk across public inheritance edges.
5343     if (PathLength > (int)DynType->PathLength &&
5344         !isBaseClassPublic(getBaseClassType(Ptr.Designator, PathLength - 1),
5345                            Class))
5346       return RuntimeCheckFailed(nullptr);
5347   }
5348 
5349   // Runtime check, phase 2:
5350   //   Search the dynamic type for an unambiguous public base of type C.
5351   CXXBasePaths Paths(/*FindAmbiguities=*/true,
5352                      /*RecordPaths=*/true, /*DetectVirtual=*/false);
5353   if (DynType->Type->isDerivedFrom(C, Paths) && !Paths.isAmbiguous(CQT) &&
5354       Paths.front().Access == AS_public) {
5355     // Downcast to the dynamic type...
5356     if (!CastToDerivedClass(Info, E, Ptr, DynType->Type, DynType->PathLength))
5357       return false;
5358     // ... then upcast to the chosen base class subobject.
5359     for (CXXBasePathElement &Elem : Paths.front())
5360       if (!HandleLValueBase(Info, E, Ptr, Elem.Class, Elem.Base))
5361         return false;
5362     return true;
5363   }
5364 
5365   // Otherwise, the runtime check fails.
5366   return RuntimeCheckFailed(&Paths);
5367 }
5368 
5369 namespace {
5370 struct StartLifetimeOfUnionMemberHandler {
5371   EvalInfo &Info;
5372   const Expr *LHSExpr;
5373   const FieldDecl *Field;
5374   bool DuringInit;
5375 
5376   static const AccessKinds AccessKind = AK_Assign;
5377 
5378   typedef bool result_type;
5379   bool failed() { return false; }
5380   bool found(APValue &Subobj, QualType SubobjType) {
5381     // We are supposed to perform no initialization but begin the lifetime of
5382     // the object. We interpret that as meaning to do what default
5383     // initialization of the object would do if all constructors involved were
5384     // trivial:
5385     //  * All base, non-variant member, and array element subobjects' lifetimes
5386     //    begin
5387     //  * No variant members' lifetimes begin
5388     //  * All scalar subobjects whose lifetimes begin have indeterminate values
5389     assert(SubobjType->isUnionType());
5390     if (declaresSameEntity(Subobj.getUnionField(), Field)) {
5391       // This union member is already active. If it's also in-lifetime, there's
5392       // nothing to do.
5393       if (Subobj.getUnionValue().hasValue())
5394         return true;
5395     } else if (DuringInit) {
5396       // We're currently in the process of initializing a different union
5397       // member.  If we carried on, that initialization would attempt to
5398       // store to an inactive union member, resulting in undefined behavior.
5399       Info.FFDiag(LHSExpr,
5400                   diag::note_constexpr_union_member_change_during_init);
5401       return false;
5402     }
5403 
5404     Subobj.setUnion(Field, getDefaultInitValue(Field->getType()));
5405     return true;
5406   }
5407   bool found(APSInt &Value, QualType SubobjType) {
5408     llvm_unreachable("wrong value kind for union object");
5409   }
5410   bool found(APFloat &Value, QualType SubobjType) {
5411     llvm_unreachable("wrong value kind for union object");
5412   }
5413 };
5414 } // end anonymous namespace
5415 
5416 const AccessKinds StartLifetimeOfUnionMemberHandler::AccessKind;
5417 
5418 /// Handle a builtin simple-assignment or a call to a trivial assignment
5419 /// operator whose left-hand side might involve a union member access. If it
5420 /// does, implicitly start the lifetime of any accessed union elements per
5421 /// C++20 [class.union]5.
5422 static bool HandleUnionActiveMemberChange(EvalInfo &Info, const Expr *LHSExpr,
5423                                           const LValue &LHS) {
5424   if (LHS.InvalidBase || LHS.Designator.Invalid)
5425     return false;
5426 
5427   llvm::SmallVector<std::pair<unsigned, const FieldDecl*>, 4> UnionPathLengths;
5428   // C++ [class.union]p5:
5429   //   define the set S(E) of subexpressions of E as follows:
5430   unsigned PathLength = LHS.Designator.Entries.size();
5431   for (const Expr *E = LHSExpr; E != nullptr;) {
5432     //   -- If E is of the form A.B, S(E) contains the elements of S(A)...
5433     if (auto *ME = dyn_cast<MemberExpr>(E)) {
5434       auto *FD = dyn_cast<FieldDecl>(ME->getMemberDecl());
5435       // Note that we can't implicitly start the lifetime of a reference,
5436       // so we don't need to proceed any further if we reach one.
5437       if (!FD || FD->getType()->isReferenceType())
5438         break;
5439 
5440       //    ... and also contains A.B if B names a union member ...
5441       if (FD->getParent()->isUnion()) {
5442         //    ... of a non-class, non-array type, or of a class type with a
5443         //    trivial default constructor that is not deleted, or an array of
5444         //    such types.
5445         auto *RD =
5446             FD->getType()->getBaseElementTypeUnsafe()->getAsCXXRecordDecl();
5447         if (!RD || RD->hasTrivialDefaultConstructor())
5448           UnionPathLengths.push_back({PathLength - 1, FD});
5449       }
5450 
5451       E = ME->getBase();
5452       --PathLength;
5453       assert(declaresSameEntity(FD,
5454                                 LHS.Designator.Entries[PathLength]
5455                                     .getAsBaseOrMember().getPointer()));
5456 
5457       //   -- If E is of the form A[B] and is interpreted as a built-in array
5458       //      subscripting operator, S(E) is [S(the array operand, if any)].
5459     } else if (auto *ASE = dyn_cast<ArraySubscriptExpr>(E)) {
5460       // Step over an ArrayToPointerDecay implicit cast.
5461       auto *Base = ASE->getBase()->IgnoreImplicit();
5462       if (!Base->getType()->isArrayType())
5463         break;
5464 
5465       E = Base;
5466       --PathLength;
5467 
5468     } else if (auto *ICE = dyn_cast<ImplicitCastExpr>(E)) {
5469       // Step over a derived-to-base conversion.
5470       E = ICE->getSubExpr();
5471       if (ICE->getCastKind() == CK_NoOp)
5472         continue;
5473       if (ICE->getCastKind() != CK_DerivedToBase &&
5474           ICE->getCastKind() != CK_UncheckedDerivedToBase)
5475         break;
5476       // Walk path backwards as we walk up from the base to the derived class.
5477       for (const CXXBaseSpecifier *Elt : llvm::reverse(ICE->path())) {
5478         --PathLength;
5479         (void)Elt;
5480         assert(declaresSameEntity(Elt->getType()->getAsCXXRecordDecl(),
5481                                   LHS.Designator.Entries[PathLength]
5482                                       .getAsBaseOrMember().getPointer()));
5483       }
5484 
5485     //   -- Otherwise, S(E) is empty.
5486     } else {
5487       break;
5488     }
5489   }
5490 
5491   // Common case: no unions' lifetimes are started.
5492   if (UnionPathLengths.empty())
5493     return true;
5494 
5495   //   if modification of X [would access an inactive union member], an object
5496   //   of the type of X is implicitly created
5497   CompleteObject Obj =
5498       findCompleteObject(Info, LHSExpr, AK_Assign, LHS, LHSExpr->getType());
5499   if (!Obj)
5500     return false;
5501   for (std::pair<unsigned, const FieldDecl *> LengthAndField :
5502            llvm::reverse(UnionPathLengths)) {
5503     // Form a designator for the union object.
5504     SubobjectDesignator D = LHS.Designator;
5505     D.truncate(Info.Ctx, LHS.Base, LengthAndField.first);
5506 
5507     bool DuringInit = Info.isEvaluatingCtorDtor(LHS.Base, D.Entries) ==
5508                       ConstructionPhase::AfterBases;
5509     StartLifetimeOfUnionMemberHandler StartLifetime{
5510         Info, LHSExpr, LengthAndField.second, DuringInit};
5511     if (!findSubobject(Info, LHSExpr, Obj, D, StartLifetime))
5512       return false;
5513   }
5514 
5515   return true;
5516 }
5517 
5518 namespace {
5519 typedef SmallVector<APValue, 8> ArgVector;
5520 }
5521 
5522 /// EvaluateArgs - Evaluate the arguments to a function call.
5523 static bool EvaluateArgs(ArrayRef<const Expr *> Args, ArgVector &ArgValues,
5524                          EvalInfo &Info, const FunctionDecl *Callee) {
5525   bool Success = true;
5526   llvm::SmallBitVector ForbiddenNullArgs;
5527   if (Callee->hasAttr<NonNullAttr>()) {
5528     ForbiddenNullArgs.resize(Args.size());
5529     for (const auto *Attr : Callee->specific_attrs<NonNullAttr>()) {
5530       if (!Attr->args_size()) {
5531         ForbiddenNullArgs.set();
5532         break;
5533       } else
5534         for (auto Idx : Attr->args()) {
5535           unsigned ASTIdx = Idx.getASTIndex();
5536           if (ASTIdx >= Args.size())
5537             continue;
5538           ForbiddenNullArgs[ASTIdx] = 1;
5539         }
5540     }
5541   }
5542   // FIXME: This is the wrong evaluation order for an assignment operator
5543   // called via operator syntax.
5544   for (unsigned Idx = 0; Idx < Args.size(); Idx++) {
5545     if (!Evaluate(ArgValues[Idx], Info, Args[Idx])) {
5546       // If we're checking for a potential constant expression, evaluate all
5547       // initializers even if some of them fail.
5548       if (!Info.noteFailure())
5549         return false;
5550       Success = false;
5551     } else if (!ForbiddenNullArgs.empty() &&
5552                ForbiddenNullArgs[Idx] &&
5553                ArgValues[Idx].isLValue() &&
5554                ArgValues[Idx].isNullPointer()) {
5555       Info.CCEDiag(Args[Idx], diag::note_non_null_attribute_failed);
5556       if (!Info.noteFailure())
5557         return false;
5558       Success = false;
5559     }
5560   }
5561   return Success;
5562 }
5563 
5564 /// Evaluate a function call.
5565 static bool HandleFunctionCall(SourceLocation CallLoc,
5566                                const FunctionDecl *Callee, const LValue *This,
5567                                ArrayRef<const Expr*> Args, const Stmt *Body,
5568                                EvalInfo &Info, APValue &Result,
5569                                const LValue *ResultSlot) {
5570   ArgVector ArgValues(Args.size());
5571   if (!EvaluateArgs(Args, ArgValues, Info, Callee))
5572     return false;
5573 
5574   if (!Info.CheckCallLimit(CallLoc))
5575     return false;
5576 
5577   CallStackFrame Frame(Info, CallLoc, Callee, This, ArgValues.data());
5578 
5579   // For a trivial copy or move assignment, perform an APValue copy. This is
5580   // essential for unions, where the operations performed by the assignment
5581   // operator cannot be represented as statements.
5582   //
5583   // Skip this for non-union classes with no fields; in that case, the defaulted
5584   // copy/move does not actually read the object.
5585   const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Callee);
5586   if (MD && MD->isDefaulted() &&
5587       (MD->getParent()->isUnion() ||
5588        (MD->isTrivial() &&
5589         isReadByLvalueToRvalueConversion(MD->getParent())))) {
5590     assert(This &&
5591            (MD->isCopyAssignmentOperator() || MD->isMoveAssignmentOperator()));
5592     LValue RHS;
5593     RHS.setFrom(Info.Ctx, ArgValues[0]);
5594     APValue RHSValue;
5595     if (!handleLValueToRValueConversion(Info, Args[0], Args[0]->getType(), RHS,
5596                                         RHSValue, MD->getParent()->isUnion()))
5597       return false;
5598     if (Info.getLangOpts().CPlusPlus20 && MD->isTrivial() &&
5599         !HandleUnionActiveMemberChange(Info, Args[0], *This))
5600       return false;
5601     if (!handleAssignment(Info, Args[0], *This, MD->getThisType(),
5602                           RHSValue))
5603       return false;
5604     This->moveInto(Result);
5605     return true;
5606   } else if (MD && isLambdaCallOperator(MD)) {
5607     // We're in a lambda; determine the lambda capture field maps unless we're
5608     // just constexpr checking a lambda's call operator. constexpr checking is
5609     // done before the captures have been added to the closure object (unless
5610     // we're inferring constexpr-ness), so we don't have access to them in this
5611     // case. But since we don't need the captures to constexpr check, we can
5612     // just ignore them.
5613     if (!Info.checkingPotentialConstantExpression())
5614       MD->getParent()->getCaptureFields(Frame.LambdaCaptureFields,
5615                                         Frame.LambdaThisCaptureField);
5616   }
5617 
5618   StmtResult Ret = {Result, ResultSlot};
5619   EvalStmtResult ESR = EvaluateStmt(Ret, Info, Body);
5620   if (ESR == ESR_Succeeded) {
5621     if (Callee->getReturnType()->isVoidType())
5622       return true;
5623     Info.FFDiag(Callee->getEndLoc(), diag::note_constexpr_no_return);
5624   }
5625   return ESR == ESR_Returned;
5626 }
5627 
5628 /// Evaluate a constructor call.
5629 static bool HandleConstructorCall(const Expr *E, const LValue &This,
5630                                   APValue *ArgValues,
5631                                   const CXXConstructorDecl *Definition,
5632                                   EvalInfo &Info, APValue &Result) {
5633   SourceLocation CallLoc = E->getExprLoc();
5634   if (!Info.CheckCallLimit(CallLoc))
5635     return false;
5636 
5637   const CXXRecordDecl *RD = Definition->getParent();
5638   if (RD->getNumVBases()) {
5639     Info.FFDiag(CallLoc, diag::note_constexpr_virtual_base) << RD;
5640     return false;
5641   }
5642 
5643   EvalInfo::EvaluatingConstructorRAII EvalObj(
5644       Info,
5645       ObjectUnderConstruction{This.getLValueBase(), This.Designator.Entries},
5646       RD->getNumBases());
5647   CallStackFrame Frame(Info, CallLoc, Definition, &This, ArgValues);
5648 
5649   // FIXME: Creating an APValue just to hold a nonexistent return value is
5650   // wasteful.
5651   APValue RetVal;
5652   StmtResult Ret = {RetVal, nullptr};
5653 
5654   // If it's a delegating constructor, delegate.
5655   if (Definition->isDelegatingConstructor()) {
5656     CXXConstructorDecl::init_const_iterator I = Definition->init_begin();
5657     {
5658       FullExpressionRAII InitScope(Info);
5659       if (!EvaluateInPlace(Result, Info, This, (*I)->getInit()) ||
5660           !InitScope.destroy())
5661         return false;
5662     }
5663     return EvaluateStmt(Ret, Info, Definition->getBody()) != ESR_Failed;
5664   }
5665 
5666   // For a trivial copy or move constructor, perform an APValue copy. This is
5667   // essential for unions (or classes with anonymous union members), where the
5668   // operations performed by the constructor cannot be represented by
5669   // ctor-initializers.
5670   //
5671   // Skip this for empty non-union classes; we should not perform an
5672   // lvalue-to-rvalue conversion on them because their copy constructor does not
5673   // actually read them.
5674   if (Definition->isDefaulted() && Definition->isCopyOrMoveConstructor() &&
5675       (Definition->getParent()->isUnion() ||
5676        (Definition->isTrivial() &&
5677         isReadByLvalueToRvalueConversion(Definition->getParent())))) {
5678     LValue RHS;
5679     RHS.setFrom(Info.Ctx, ArgValues[0]);
5680     return handleLValueToRValueConversion(
5681         Info, E, Definition->getParamDecl(0)->getType().getNonReferenceType(),
5682         RHS, Result, Definition->getParent()->isUnion());
5683   }
5684 
5685   // Reserve space for the struct members.
5686   if (!Result.hasValue()) {
5687     if (!RD->isUnion())
5688       Result = APValue(APValue::UninitStruct(), RD->getNumBases(),
5689                        std::distance(RD->field_begin(), RD->field_end()));
5690     else
5691       // A union starts with no active member.
5692       Result = APValue((const FieldDecl*)nullptr);
5693   }
5694 
5695   if (RD->isInvalidDecl()) return false;
5696   const ASTRecordLayout &Layout = Info.Ctx.getASTRecordLayout(RD);
5697 
5698   // A scope for temporaries lifetime-extended by reference members.
5699   BlockScopeRAII LifetimeExtendedScope(Info);
5700 
5701   bool Success = true;
5702   unsigned BasesSeen = 0;
5703 #ifndef NDEBUG
5704   CXXRecordDecl::base_class_const_iterator BaseIt = RD->bases_begin();
5705 #endif
5706   CXXRecordDecl::field_iterator FieldIt = RD->field_begin();
5707   auto SkipToField = [&](FieldDecl *FD, bool Indirect) {
5708     // We might be initializing the same field again if this is an indirect
5709     // field initialization.
5710     if (FieldIt == RD->field_end() ||
5711         FieldIt->getFieldIndex() > FD->getFieldIndex()) {
5712       assert(Indirect && "fields out of order?");
5713       return;
5714     }
5715 
5716     // Default-initialize any fields with no explicit initializer.
5717     for (; !declaresSameEntity(*FieldIt, FD); ++FieldIt) {
5718       assert(FieldIt != RD->field_end() && "missing field?");
5719       if (!FieldIt->isUnnamedBitfield())
5720         Result.getStructField(FieldIt->getFieldIndex()) =
5721             getDefaultInitValue(FieldIt->getType());
5722     }
5723     ++FieldIt;
5724   };
5725   for (const auto *I : Definition->inits()) {
5726     LValue Subobject = This;
5727     LValue SubobjectParent = This;
5728     APValue *Value = &Result;
5729 
5730     // Determine the subobject to initialize.
5731     FieldDecl *FD = nullptr;
5732     if (I->isBaseInitializer()) {
5733       QualType BaseType(I->getBaseClass(), 0);
5734 #ifndef NDEBUG
5735       // Non-virtual base classes are initialized in the order in the class
5736       // definition. We have already checked for virtual base classes.
5737       assert(!BaseIt->isVirtual() && "virtual base for literal type");
5738       assert(Info.Ctx.hasSameType(BaseIt->getType(), BaseType) &&
5739              "base class initializers not in expected order");
5740       ++BaseIt;
5741 #endif
5742       if (!HandleLValueDirectBase(Info, I->getInit(), Subobject, RD,
5743                                   BaseType->getAsCXXRecordDecl(), &Layout))
5744         return false;
5745       Value = &Result.getStructBase(BasesSeen++);
5746     } else if ((FD = I->getMember())) {
5747       if (!HandleLValueMember(Info, I->getInit(), Subobject, FD, &Layout))
5748         return false;
5749       if (RD->isUnion()) {
5750         Result = APValue(FD);
5751         Value = &Result.getUnionValue();
5752       } else {
5753         SkipToField(FD, false);
5754         Value = &Result.getStructField(FD->getFieldIndex());
5755       }
5756     } else if (IndirectFieldDecl *IFD = I->getIndirectMember()) {
5757       // Walk the indirect field decl's chain to find the object to initialize,
5758       // and make sure we've initialized every step along it.
5759       auto IndirectFieldChain = IFD->chain();
5760       for (auto *C : IndirectFieldChain) {
5761         FD = cast<FieldDecl>(C);
5762         CXXRecordDecl *CD = cast<CXXRecordDecl>(FD->getParent());
5763         // Switch the union field if it differs. This happens if we had
5764         // preceding zero-initialization, and we're now initializing a union
5765         // subobject other than the first.
5766         // FIXME: In this case, the values of the other subobjects are
5767         // specified, since zero-initialization sets all padding bits to zero.
5768         if (!Value->hasValue() ||
5769             (Value->isUnion() && Value->getUnionField() != FD)) {
5770           if (CD->isUnion())
5771             *Value = APValue(FD);
5772           else
5773             // FIXME: This immediately starts the lifetime of all members of an
5774             // anonymous struct. It would be preferable to strictly start member
5775             // lifetime in initialization order.
5776             *Value = getDefaultInitValue(Info.Ctx.getRecordType(CD));
5777         }
5778         // Store Subobject as its parent before updating it for the last element
5779         // in the chain.
5780         if (C == IndirectFieldChain.back())
5781           SubobjectParent = Subobject;
5782         if (!HandleLValueMember(Info, I->getInit(), Subobject, FD))
5783           return false;
5784         if (CD->isUnion())
5785           Value = &Value->getUnionValue();
5786         else {
5787           if (C == IndirectFieldChain.front() && !RD->isUnion())
5788             SkipToField(FD, true);
5789           Value = &Value->getStructField(FD->getFieldIndex());
5790         }
5791       }
5792     } else {
5793       llvm_unreachable("unknown base initializer kind");
5794     }
5795 
5796     // Need to override This for implicit field initializers as in this case
5797     // This refers to innermost anonymous struct/union containing initializer,
5798     // not to currently constructed class.
5799     const Expr *Init = I->getInit();
5800     ThisOverrideRAII ThisOverride(*Info.CurrentCall, &SubobjectParent,
5801                                   isa<CXXDefaultInitExpr>(Init));
5802     FullExpressionRAII InitScope(Info);
5803     if (!EvaluateInPlace(*Value, Info, Subobject, Init) ||
5804         (FD && FD->isBitField() &&
5805          !truncateBitfieldValue(Info, Init, *Value, FD))) {
5806       // If we're checking for a potential constant expression, evaluate all
5807       // initializers even if some of them fail.
5808       if (!Info.noteFailure())
5809         return false;
5810       Success = false;
5811     }
5812 
5813     // This is the point at which the dynamic type of the object becomes this
5814     // class type.
5815     if (I->isBaseInitializer() && BasesSeen == RD->getNumBases())
5816       EvalObj.finishedConstructingBases();
5817   }
5818 
5819   // Default-initialize any remaining fields.
5820   if (!RD->isUnion()) {
5821     for (; FieldIt != RD->field_end(); ++FieldIt) {
5822       if (!FieldIt->isUnnamedBitfield())
5823         Result.getStructField(FieldIt->getFieldIndex()) =
5824             getDefaultInitValue(FieldIt->getType());
5825     }
5826   }
5827 
5828   EvalObj.finishedConstructingFields();
5829 
5830   return Success &&
5831          EvaluateStmt(Ret, Info, Definition->getBody()) != ESR_Failed &&
5832          LifetimeExtendedScope.destroy();
5833 }
5834 
5835 static bool HandleConstructorCall(const Expr *E, const LValue &This,
5836                                   ArrayRef<const Expr*> Args,
5837                                   const CXXConstructorDecl *Definition,
5838                                   EvalInfo &Info, APValue &Result) {
5839   ArgVector ArgValues(Args.size());
5840   if (!EvaluateArgs(Args, ArgValues, Info, Definition))
5841     return false;
5842 
5843   return HandleConstructorCall(E, This, ArgValues.data(), Definition,
5844                                Info, Result);
5845 }
5846 
5847 static bool HandleDestructionImpl(EvalInfo &Info, SourceLocation CallLoc,
5848                                   const LValue &This, APValue &Value,
5849                                   QualType T) {
5850   // Objects can only be destroyed while they're within their lifetimes.
5851   // FIXME: We have no representation for whether an object of type nullptr_t
5852   // is in its lifetime; it usually doesn't matter. Perhaps we should model it
5853   // as indeterminate instead?
5854   if (Value.isAbsent() && !T->isNullPtrType()) {
5855     APValue Printable;
5856     This.moveInto(Printable);
5857     Info.FFDiag(CallLoc, diag::note_constexpr_destroy_out_of_lifetime)
5858       << Printable.getAsString(Info.Ctx, Info.Ctx.getLValueReferenceType(T));
5859     return false;
5860   }
5861 
5862   // Invent an expression for location purposes.
5863   // FIXME: We shouldn't need to do this.
5864   OpaqueValueExpr LocE(CallLoc, Info.Ctx.IntTy, VK_RValue);
5865 
5866   // For arrays, destroy elements right-to-left.
5867   if (const ConstantArrayType *CAT = Info.Ctx.getAsConstantArrayType(T)) {
5868     uint64_t Size = CAT->getSize().getZExtValue();
5869     QualType ElemT = CAT->getElementType();
5870 
5871     LValue ElemLV = This;
5872     ElemLV.addArray(Info, &LocE, CAT);
5873     if (!HandleLValueArrayAdjustment(Info, &LocE, ElemLV, ElemT, Size))
5874       return false;
5875 
5876     // Ensure that we have actual array elements available to destroy; the
5877     // destructors might mutate the value, so we can't run them on the array
5878     // filler.
5879     if (Size && Size > Value.getArrayInitializedElts())
5880       expandArray(Value, Value.getArraySize() - 1);
5881 
5882     for (; Size != 0; --Size) {
5883       APValue &Elem = Value.getArrayInitializedElt(Size - 1);
5884       if (!HandleLValueArrayAdjustment(Info, &LocE, ElemLV, ElemT, -1) ||
5885           !HandleDestructionImpl(Info, CallLoc, ElemLV, Elem, ElemT))
5886         return false;
5887     }
5888 
5889     // End the lifetime of this array now.
5890     Value = APValue();
5891     return true;
5892   }
5893 
5894   const CXXRecordDecl *RD = T->getAsCXXRecordDecl();
5895   if (!RD) {
5896     if (T.isDestructedType()) {
5897       Info.FFDiag(CallLoc, diag::note_constexpr_unsupported_destruction) << T;
5898       return false;
5899     }
5900 
5901     Value = APValue();
5902     return true;
5903   }
5904 
5905   if (RD->getNumVBases()) {
5906     Info.FFDiag(CallLoc, diag::note_constexpr_virtual_base) << RD;
5907     return false;
5908   }
5909 
5910   const CXXDestructorDecl *DD = RD->getDestructor();
5911   if (!DD && !RD->hasTrivialDestructor()) {
5912     Info.FFDiag(CallLoc);
5913     return false;
5914   }
5915 
5916   if (!DD || DD->isTrivial() ||
5917       (RD->isAnonymousStructOrUnion() && RD->isUnion())) {
5918     // A trivial destructor just ends the lifetime of the object. Check for
5919     // this case before checking for a body, because we might not bother
5920     // building a body for a trivial destructor. Note that it doesn't matter
5921     // whether the destructor is constexpr in this case; all trivial
5922     // destructors are constexpr.
5923     //
5924     // If an anonymous union would be destroyed, some enclosing destructor must
5925     // have been explicitly defined, and the anonymous union destruction should
5926     // have no effect.
5927     Value = APValue();
5928     return true;
5929   }
5930 
5931   if (!Info.CheckCallLimit(CallLoc))
5932     return false;
5933 
5934   const FunctionDecl *Definition = nullptr;
5935   const Stmt *Body = DD->getBody(Definition);
5936 
5937   if (!CheckConstexprFunction(Info, CallLoc, DD, Definition, Body))
5938     return false;
5939 
5940   CallStackFrame Frame(Info, CallLoc, Definition, &This, nullptr);
5941 
5942   // We're now in the period of destruction of this object.
5943   unsigned BasesLeft = RD->getNumBases();
5944   EvalInfo::EvaluatingDestructorRAII EvalObj(
5945       Info,
5946       ObjectUnderConstruction{This.getLValueBase(), This.Designator.Entries});
5947   if (!EvalObj.DidInsert) {
5948     // C++2a [class.dtor]p19:
5949     //   the behavior is undefined if the destructor is invoked for an object
5950     //   whose lifetime has ended
5951     // (Note that formally the lifetime ends when the period of destruction
5952     // begins, even though certain uses of the object remain valid until the
5953     // period of destruction ends.)
5954     Info.FFDiag(CallLoc, diag::note_constexpr_double_destroy);
5955     return false;
5956   }
5957 
5958   // FIXME: Creating an APValue just to hold a nonexistent return value is
5959   // wasteful.
5960   APValue RetVal;
5961   StmtResult Ret = {RetVal, nullptr};
5962   if (EvaluateStmt(Ret, Info, Definition->getBody()) == ESR_Failed)
5963     return false;
5964 
5965   // A union destructor does not implicitly destroy its members.
5966   if (RD->isUnion())
5967     return true;
5968 
5969   const ASTRecordLayout &Layout = Info.Ctx.getASTRecordLayout(RD);
5970 
5971   // We don't have a good way to iterate fields in reverse, so collect all the
5972   // fields first and then walk them backwards.
5973   SmallVector<FieldDecl*, 16> Fields(RD->field_begin(), RD->field_end());
5974   for (const FieldDecl *FD : llvm::reverse(Fields)) {
5975     if (FD->isUnnamedBitfield())
5976       continue;
5977 
5978     LValue Subobject = This;
5979     if (!HandleLValueMember(Info, &LocE, Subobject, FD, &Layout))
5980       return false;
5981 
5982     APValue *SubobjectValue = &Value.getStructField(FD->getFieldIndex());
5983     if (!HandleDestructionImpl(Info, CallLoc, Subobject, *SubobjectValue,
5984                                FD->getType()))
5985       return false;
5986   }
5987 
5988   if (BasesLeft != 0)
5989     EvalObj.startedDestroyingBases();
5990 
5991   // Destroy base classes in reverse order.
5992   for (const CXXBaseSpecifier &Base : llvm::reverse(RD->bases())) {
5993     --BasesLeft;
5994 
5995     QualType BaseType = Base.getType();
5996     LValue Subobject = This;
5997     if (!HandleLValueDirectBase(Info, &LocE, Subobject, RD,
5998                                 BaseType->getAsCXXRecordDecl(), &Layout))
5999       return false;
6000 
6001     APValue *SubobjectValue = &Value.getStructBase(BasesLeft);
6002     if (!HandleDestructionImpl(Info, CallLoc, Subobject, *SubobjectValue,
6003                                BaseType))
6004       return false;
6005   }
6006   assert(BasesLeft == 0 && "NumBases was wrong?");
6007 
6008   // The period of destruction ends now. The object is gone.
6009   Value = APValue();
6010   return true;
6011 }
6012 
6013 namespace {
6014 struct DestroyObjectHandler {
6015   EvalInfo &Info;
6016   const Expr *E;
6017   const LValue &This;
6018   const AccessKinds AccessKind;
6019 
6020   typedef bool result_type;
6021   bool failed() { return false; }
6022   bool found(APValue &Subobj, QualType SubobjType) {
6023     return HandleDestructionImpl(Info, E->getExprLoc(), This, Subobj,
6024                                  SubobjType);
6025   }
6026   bool found(APSInt &Value, QualType SubobjType) {
6027     Info.FFDiag(E, diag::note_constexpr_destroy_complex_elem);
6028     return false;
6029   }
6030   bool found(APFloat &Value, QualType SubobjType) {
6031     Info.FFDiag(E, diag::note_constexpr_destroy_complex_elem);
6032     return false;
6033   }
6034 };
6035 }
6036 
6037 /// Perform a destructor or pseudo-destructor call on the given object, which
6038 /// might in general not be a complete object.
6039 static bool HandleDestruction(EvalInfo &Info, const Expr *E,
6040                               const LValue &This, QualType ThisType) {
6041   CompleteObject Obj = findCompleteObject(Info, E, AK_Destroy, This, ThisType);
6042   DestroyObjectHandler Handler = {Info, E, This, AK_Destroy};
6043   return Obj && findSubobject(Info, E, Obj, This.Designator, Handler);
6044 }
6045 
6046 /// Destroy and end the lifetime of the given complete object.
6047 static bool HandleDestruction(EvalInfo &Info, SourceLocation Loc,
6048                               APValue::LValueBase LVBase, APValue &Value,
6049                               QualType T) {
6050   // If we've had an unmodeled side-effect, we can't rely on mutable state
6051   // (such as the object we're about to destroy) being correct.
6052   if (Info.EvalStatus.HasSideEffects)
6053     return false;
6054 
6055   LValue LV;
6056   LV.set({LVBase});
6057   return HandleDestructionImpl(Info, Loc, LV, Value, T);
6058 }
6059 
6060 /// Perform a call to 'perator new' or to `__builtin_operator_new'.
6061 static bool HandleOperatorNewCall(EvalInfo &Info, const CallExpr *E,
6062                                   LValue &Result) {
6063   if (Info.checkingPotentialConstantExpression() ||
6064       Info.SpeculativeEvaluationDepth)
6065     return false;
6066 
6067   // This is permitted only within a call to std::allocator<T>::allocate.
6068   auto Caller = Info.getStdAllocatorCaller("allocate");
6069   if (!Caller) {
6070     Info.FFDiag(E->getExprLoc(), Info.getLangOpts().CPlusPlus20
6071                                      ? diag::note_constexpr_new_untyped
6072                                      : diag::note_constexpr_new);
6073     return false;
6074   }
6075 
6076   QualType ElemType = Caller.ElemType;
6077   if (ElemType->isIncompleteType() || ElemType->isFunctionType()) {
6078     Info.FFDiag(E->getExprLoc(),
6079                 diag::note_constexpr_new_not_complete_object_type)
6080         << (ElemType->isIncompleteType() ? 0 : 1) << ElemType;
6081     return false;
6082   }
6083 
6084   APSInt ByteSize;
6085   if (!EvaluateInteger(E->getArg(0), ByteSize, Info))
6086     return false;
6087   bool IsNothrow = false;
6088   for (unsigned I = 1, N = E->getNumArgs(); I != N; ++I) {
6089     EvaluateIgnoredValue(Info, E->getArg(I));
6090     IsNothrow |= E->getType()->isNothrowT();
6091   }
6092 
6093   CharUnits ElemSize;
6094   if (!HandleSizeof(Info, E->getExprLoc(), ElemType, ElemSize))
6095     return false;
6096   APInt Size, Remainder;
6097   APInt ElemSizeAP(ByteSize.getBitWidth(), ElemSize.getQuantity());
6098   APInt::udivrem(ByteSize, ElemSizeAP, Size, Remainder);
6099   if (Remainder != 0) {
6100     // This likely indicates a bug in the implementation of 'std::allocator'.
6101     Info.FFDiag(E->getExprLoc(), diag::note_constexpr_operator_new_bad_size)
6102         << ByteSize << APSInt(ElemSizeAP, true) << ElemType;
6103     return false;
6104   }
6105 
6106   if (ByteSize.getActiveBits() > ConstantArrayType::getMaxSizeBits(Info.Ctx)) {
6107     if (IsNothrow) {
6108       Result.setNull(Info.Ctx, E->getType());
6109       return true;
6110     }
6111 
6112     Info.FFDiag(E, diag::note_constexpr_new_too_large) << APSInt(Size, true);
6113     return false;
6114   }
6115 
6116   QualType AllocType = Info.Ctx.getConstantArrayType(ElemType, Size, nullptr,
6117                                                      ArrayType::Normal, 0);
6118   APValue *Val = Info.createHeapAlloc(E, AllocType, Result);
6119   *Val = APValue(APValue::UninitArray(), 0, Size.getZExtValue());
6120   Result.addArray(Info, E, cast<ConstantArrayType>(AllocType));
6121   return true;
6122 }
6123 
6124 static bool hasVirtualDestructor(QualType T) {
6125   if (CXXRecordDecl *RD = T->getAsCXXRecordDecl())
6126     if (CXXDestructorDecl *DD = RD->getDestructor())
6127       return DD->isVirtual();
6128   return false;
6129 }
6130 
6131 static const FunctionDecl *getVirtualOperatorDelete(QualType T) {
6132   if (CXXRecordDecl *RD = T->getAsCXXRecordDecl())
6133     if (CXXDestructorDecl *DD = RD->getDestructor())
6134       return DD->isVirtual() ? DD->getOperatorDelete() : nullptr;
6135   return nullptr;
6136 }
6137 
6138 /// Check that the given object is a suitable pointer to a heap allocation that
6139 /// still exists and is of the right kind for the purpose of a deletion.
6140 ///
6141 /// On success, returns the heap allocation to deallocate. On failure, produces
6142 /// a diagnostic and returns None.
6143 static Optional<DynAlloc *> CheckDeleteKind(EvalInfo &Info, const Expr *E,
6144                                             const LValue &Pointer,
6145                                             DynAlloc::Kind DeallocKind) {
6146   auto PointerAsString = [&] {
6147     return Pointer.toString(Info.Ctx, Info.Ctx.VoidPtrTy);
6148   };
6149 
6150   DynamicAllocLValue DA = Pointer.Base.dyn_cast<DynamicAllocLValue>();
6151   if (!DA) {
6152     Info.FFDiag(E, diag::note_constexpr_delete_not_heap_alloc)
6153         << PointerAsString();
6154     if (Pointer.Base)
6155       NoteLValueLocation(Info, Pointer.Base);
6156     return None;
6157   }
6158 
6159   Optional<DynAlloc *> Alloc = Info.lookupDynamicAlloc(DA);
6160   if (!Alloc) {
6161     Info.FFDiag(E, diag::note_constexpr_double_delete);
6162     return None;
6163   }
6164 
6165   QualType AllocType = Pointer.Base.getDynamicAllocType();
6166   if (DeallocKind != (*Alloc)->getKind()) {
6167     Info.FFDiag(E, diag::note_constexpr_new_delete_mismatch)
6168         << DeallocKind << (*Alloc)->getKind() << AllocType;
6169     NoteLValueLocation(Info, Pointer.Base);
6170     return None;
6171   }
6172 
6173   bool Subobject = false;
6174   if (DeallocKind == DynAlloc::New) {
6175     Subobject = Pointer.Designator.MostDerivedPathLength != 0 ||
6176                 Pointer.Designator.isOnePastTheEnd();
6177   } else {
6178     Subobject = Pointer.Designator.Entries.size() != 1 ||
6179                 Pointer.Designator.Entries[0].getAsArrayIndex() != 0;
6180   }
6181   if (Subobject) {
6182     Info.FFDiag(E, diag::note_constexpr_delete_subobject)
6183         << PointerAsString() << Pointer.Designator.isOnePastTheEnd();
6184     return None;
6185   }
6186 
6187   return Alloc;
6188 }
6189 
6190 // Perform a call to 'operator delete' or '__builtin_operator_delete'.
6191 bool HandleOperatorDeleteCall(EvalInfo &Info, const CallExpr *E) {
6192   if (Info.checkingPotentialConstantExpression() ||
6193       Info.SpeculativeEvaluationDepth)
6194     return false;
6195 
6196   // This is permitted only within a call to std::allocator<T>::deallocate.
6197   if (!Info.getStdAllocatorCaller("deallocate")) {
6198     Info.FFDiag(E->getExprLoc());
6199     return true;
6200   }
6201 
6202   LValue Pointer;
6203   if (!EvaluatePointer(E->getArg(0), Pointer, Info))
6204     return false;
6205   for (unsigned I = 1, N = E->getNumArgs(); I != N; ++I)
6206     EvaluateIgnoredValue(Info, E->getArg(I));
6207 
6208   if (Pointer.Designator.Invalid)
6209     return false;
6210 
6211   // Deleting a null pointer has no effect.
6212   if (Pointer.isNullPointer())
6213     return true;
6214 
6215   if (!CheckDeleteKind(Info, E, Pointer, DynAlloc::StdAllocator))
6216     return false;
6217 
6218   Info.HeapAllocs.erase(Pointer.Base.get<DynamicAllocLValue>());
6219   return true;
6220 }
6221 
6222 //===----------------------------------------------------------------------===//
6223 // Generic Evaluation
6224 //===----------------------------------------------------------------------===//
6225 namespace {
6226 
6227 class BitCastBuffer {
6228   // FIXME: We're going to need bit-level granularity when we support
6229   // bit-fields.
6230   // FIXME: Its possible under the C++ standard for 'char' to not be 8 bits, but
6231   // we don't support a host or target where that is the case. Still, we should
6232   // use a more generic type in case we ever do.
6233   SmallVector<Optional<unsigned char>, 32> Bytes;
6234 
6235   static_assert(std::numeric_limits<unsigned char>::digits >= 8,
6236                 "Need at least 8 bit unsigned char");
6237 
6238   bool TargetIsLittleEndian;
6239 
6240 public:
6241   BitCastBuffer(CharUnits Width, bool TargetIsLittleEndian)
6242       : Bytes(Width.getQuantity()),
6243         TargetIsLittleEndian(TargetIsLittleEndian) {}
6244 
6245   LLVM_NODISCARD
6246   bool readObject(CharUnits Offset, CharUnits Width,
6247                   SmallVectorImpl<unsigned char> &Output) const {
6248     for (CharUnits I = Offset, E = Offset + Width; I != E; ++I) {
6249       // If a byte of an integer is uninitialized, then the whole integer is
6250       // uninitalized.
6251       if (!Bytes[I.getQuantity()])
6252         return false;
6253       Output.push_back(*Bytes[I.getQuantity()]);
6254     }
6255     if (llvm::sys::IsLittleEndianHost != TargetIsLittleEndian)
6256       std::reverse(Output.begin(), Output.end());
6257     return true;
6258   }
6259 
6260   void writeObject(CharUnits Offset, SmallVectorImpl<unsigned char> &Input) {
6261     if (llvm::sys::IsLittleEndianHost != TargetIsLittleEndian)
6262       std::reverse(Input.begin(), Input.end());
6263 
6264     size_t Index = 0;
6265     for (unsigned char Byte : Input) {
6266       assert(!Bytes[Offset.getQuantity() + Index] && "overwriting a byte?");
6267       Bytes[Offset.getQuantity() + Index] = Byte;
6268       ++Index;
6269     }
6270   }
6271 
6272   size_t size() { return Bytes.size(); }
6273 };
6274 
6275 /// Traverse an APValue to produce an BitCastBuffer, emulating how the current
6276 /// target would represent the value at runtime.
6277 class APValueToBufferConverter {
6278   EvalInfo &Info;
6279   BitCastBuffer Buffer;
6280   const CastExpr *BCE;
6281 
6282   APValueToBufferConverter(EvalInfo &Info, CharUnits ObjectWidth,
6283                            const CastExpr *BCE)
6284       : Info(Info),
6285         Buffer(ObjectWidth, Info.Ctx.getTargetInfo().isLittleEndian()),
6286         BCE(BCE) {}
6287 
6288   bool visit(const APValue &Val, QualType Ty) {
6289     return visit(Val, Ty, CharUnits::fromQuantity(0));
6290   }
6291 
6292   // Write out Val with type Ty into Buffer starting at Offset.
6293   bool visit(const APValue &Val, QualType Ty, CharUnits Offset) {
6294     assert((size_t)Offset.getQuantity() <= Buffer.size());
6295 
6296     // As a special case, nullptr_t has an indeterminate value.
6297     if (Ty->isNullPtrType())
6298       return true;
6299 
6300     // Dig through Src to find the byte at SrcOffset.
6301     switch (Val.getKind()) {
6302     case APValue::Indeterminate:
6303     case APValue::None:
6304       return true;
6305 
6306     case APValue::Int:
6307       return visitInt(Val.getInt(), Ty, Offset);
6308     case APValue::Float:
6309       return visitFloat(Val.getFloat(), Ty, Offset);
6310     case APValue::Array:
6311       return visitArray(Val, Ty, Offset);
6312     case APValue::Struct:
6313       return visitRecord(Val, Ty, Offset);
6314 
6315     case APValue::ComplexInt:
6316     case APValue::ComplexFloat:
6317     case APValue::Vector:
6318     case APValue::FixedPoint:
6319       // FIXME: We should support these.
6320 
6321     case APValue::Union:
6322     case APValue::MemberPointer:
6323     case APValue::AddrLabelDiff: {
6324       Info.FFDiag(BCE->getBeginLoc(),
6325                   diag::note_constexpr_bit_cast_unsupported_type)
6326           << Ty;
6327       return false;
6328     }
6329 
6330     case APValue::LValue:
6331       llvm_unreachable("LValue subobject in bit_cast?");
6332     }
6333     llvm_unreachable("Unhandled APValue::ValueKind");
6334   }
6335 
6336   bool visitRecord(const APValue &Val, QualType Ty, CharUnits Offset) {
6337     const RecordDecl *RD = Ty->getAsRecordDecl();
6338     const ASTRecordLayout &Layout = Info.Ctx.getASTRecordLayout(RD);
6339 
6340     // Visit the base classes.
6341     if (auto *CXXRD = dyn_cast<CXXRecordDecl>(RD)) {
6342       for (size_t I = 0, E = CXXRD->getNumBases(); I != E; ++I) {
6343         const CXXBaseSpecifier &BS = CXXRD->bases_begin()[I];
6344         CXXRecordDecl *BaseDecl = BS.getType()->getAsCXXRecordDecl();
6345 
6346         if (!visitRecord(Val.getStructBase(I), BS.getType(),
6347                          Layout.getBaseClassOffset(BaseDecl) + Offset))
6348           return false;
6349       }
6350     }
6351 
6352     // Visit the fields.
6353     unsigned FieldIdx = 0;
6354     for (FieldDecl *FD : RD->fields()) {
6355       if (FD->isBitField()) {
6356         Info.FFDiag(BCE->getBeginLoc(),
6357                     diag::note_constexpr_bit_cast_unsupported_bitfield);
6358         return false;
6359       }
6360 
6361       uint64_t FieldOffsetBits = Layout.getFieldOffset(FieldIdx);
6362 
6363       assert(FieldOffsetBits % Info.Ctx.getCharWidth() == 0 &&
6364              "only bit-fields can have sub-char alignment");
6365       CharUnits FieldOffset =
6366           Info.Ctx.toCharUnitsFromBits(FieldOffsetBits) + Offset;
6367       QualType FieldTy = FD->getType();
6368       if (!visit(Val.getStructField(FieldIdx), FieldTy, FieldOffset))
6369         return false;
6370       ++FieldIdx;
6371     }
6372 
6373     return true;
6374   }
6375 
6376   bool visitArray(const APValue &Val, QualType Ty, CharUnits Offset) {
6377     const auto *CAT =
6378         dyn_cast_or_null<ConstantArrayType>(Ty->getAsArrayTypeUnsafe());
6379     if (!CAT)
6380       return false;
6381 
6382     CharUnits ElemWidth = Info.Ctx.getTypeSizeInChars(CAT->getElementType());
6383     unsigned NumInitializedElts = Val.getArrayInitializedElts();
6384     unsigned ArraySize = Val.getArraySize();
6385     // First, initialize the initialized elements.
6386     for (unsigned I = 0; I != NumInitializedElts; ++I) {
6387       const APValue &SubObj = Val.getArrayInitializedElt(I);
6388       if (!visit(SubObj, CAT->getElementType(), Offset + I * ElemWidth))
6389         return false;
6390     }
6391 
6392     // Next, initialize the rest of the array using the filler.
6393     if (Val.hasArrayFiller()) {
6394       const APValue &Filler = Val.getArrayFiller();
6395       for (unsigned I = NumInitializedElts; I != ArraySize; ++I) {
6396         if (!visit(Filler, CAT->getElementType(), Offset + I * ElemWidth))
6397           return false;
6398       }
6399     }
6400 
6401     return true;
6402   }
6403 
6404   bool visitInt(const APSInt &Val, QualType Ty, CharUnits Offset) {
6405     CharUnits Width = Info.Ctx.getTypeSizeInChars(Ty);
6406     SmallVector<unsigned char, 8> Bytes(Width.getQuantity());
6407     llvm::StoreIntToMemory(Val, &*Bytes.begin(), Width.getQuantity());
6408     Buffer.writeObject(Offset, Bytes);
6409     return true;
6410   }
6411 
6412   bool visitFloat(const APFloat &Val, QualType Ty, CharUnits Offset) {
6413     APSInt AsInt(Val.bitcastToAPInt());
6414     return visitInt(AsInt, Ty, Offset);
6415   }
6416 
6417 public:
6418   static Optional<BitCastBuffer> convert(EvalInfo &Info, const APValue &Src,
6419                                          const CastExpr *BCE) {
6420     CharUnits DstSize = Info.Ctx.getTypeSizeInChars(BCE->getType());
6421     APValueToBufferConverter Converter(Info, DstSize, BCE);
6422     if (!Converter.visit(Src, BCE->getSubExpr()->getType()))
6423       return None;
6424     return Converter.Buffer;
6425   }
6426 };
6427 
6428 /// Write an BitCastBuffer into an APValue.
6429 class BufferToAPValueConverter {
6430   EvalInfo &Info;
6431   const BitCastBuffer &Buffer;
6432   const CastExpr *BCE;
6433 
6434   BufferToAPValueConverter(EvalInfo &Info, const BitCastBuffer &Buffer,
6435                            const CastExpr *BCE)
6436       : Info(Info), Buffer(Buffer), BCE(BCE) {}
6437 
6438   // Emit an unsupported bit_cast type error. Sema refuses to build a bit_cast
6439   // with an invalid type, so anything left is a deficiency on our part (FIXME).
6440   // Ideally this will be unreachable.
6441   llvm::NoneType unsupportedType(QualType Ty) {
6442     Info.FFDiag(BCE->getBeginLoc(),
6443                 diag::note_constexpr_bit_cast_unsupported_type)
6444         << Ty;
6445     return None;
6446   }
6447 
6448   Optional<APValue> visit(const BuiltinType *T, CharUnits Offset,
6449                           const EnumType *EnumSugar = nullptr) {
6450     if (T->isNullPtrType()) {
6451       uint64_t NullValue = Info.Ctx.getTargetNullPointerValue(QualType(T, 0));
6452       return APValue((Expr *)nullptr,
6453                      /*Offset=*/CharUnits::fromQuantity(NullValue),
6454                      APValue::NoLValuePath{}, /*IsNullPtr=*/true);
6455     }
6456 
6457     CharUnits SizeOf = Info.Ctx.getTypeSizeInChars(T);
6458     SmallVector<uint8_t, 8> Bytes;
6459     if (!Buffer.readObject(Offset, SizeOf, Bytes)) {
6460       // If this is std::byte or unsigned char, then its okay to store an
6461       // indeterminate value.
6462       bool IsStdByte = EnumSugar && EnumSugar->isStdByteType();
6463       bool IsUChar =
6464           !EnumSugar && (T->isSpecificBuiltinType(BuiltinType::UChar) ||
6465                          T->isSpecificBuiltinType(BuiltinType::Char_U));
6466       if (!IsStdByte && !IsUChar) {
6467         QualType DisplayType(EnumSugar ? (const Type *)EnumSugar : T, 0);
6468         Info.FFDiag(BCE->getExprLoc(),
6469                     diag::note_constexpr_bit_cast_indet_dest)
6470             << DisplayType << Info.Ctx.getLangOpts().CharIsSigned;
6471         return None;
6472       }
6473 
6474       return APValue::IndeterminateValue();
6475     }
6476 
6477     APSInt Val(SizeOf.getQuantity() * Info.Ctx.getCharWidth(), true);
6478     llvm::LoadIntFromMemory(Val, &*Bytes.begin(), Bytes.size());
6479 
6480     if (T->isIntegralOrEnumerationType()) {
6481       Val.setIsSigned(T->isSignedIntegerOrEnumerationType());
6482       return APValue(Val);
6483     }
6484 
6485     if (T->isRealFloatingType()) {
6486       const llvm::fltSemantics &Semantics =
6487           Info.Ctx.getFloatTypeSemantics(QualType(T, 0));
6488       return APValue(APFloat(Semantics, Val));
6489     }
6490 
6491     return unsupportedType(QualType(T, 0));
6492   }
6493 
6494   Optional<APValue> visit(const RecordType *RTy, CharUnits Offset) {
6495     const RecordDecl *RD = RTy->getAsRecordDecl();
6496     const ASTRecordLayout &Layout = Info.Ctx.getASTRecordLayout(RD);
6497 
6498     unsigned NumBases = 0;
6499     if (auto *CXXRD = dyn_cast<CXXRecordDecl>(RD))
6500       NumBases = CXXRD->getNumBases();
6501 
6502     APValue ResultVal(APValue::UninitStruct(), NumBases,
6503                       std::distance(RD->field_begin(), RD->field_end()));
6504 
6505     // Visit the base classes.
6506     if (auto *CXXRD = dyn_cast<CXXRecordDecl>(RD)) {
6507       for (size_t I = 0, E = CXXRD->getNumBases(); I != E; ++I) {
6508         const CXXBaseSpecifier &BS = CXXRD->bases_begin()[I];
6509         CXXRecordDecl *BaseDecl = BS.getType()->getAsCXXRecordDecl();
6510         if (BaseDecl->isEmpty() ||
6511             Info.Ctx.getASTRecordLayout(BaseDecl).getNonVirtualSize().isZero())
6512           continue;
6513 
6514         Optional<APValue> SubObj = visitType(
6515             BS.getType(), Layout.getBaseClassOffset(BaseDecl) + Offset);
6516         if (!SubObj)
6517           return None;
6518         ResultVal.getStructBase(I) = *SubObj;
6519       }
6520     }
6521 
6522     // Visit the fields.
6523     unsigned FieldIdx = 0;
6524     for (FieldDecl *FD : RD->fields()) {
6525       // FIXME: We don't currently support bit-fields. A lot of the logic for
6526       // this is in CodeGen, so we need to factor it around.
6527       if (FD->isBitField()) {
6528         Info.FFDiag(BCE->getBeginLoc(),
6529                     diag::note_constexpr_bit_cast_unsupported_bitfield);
6530         return None;
6531       }
6532 
6533       uint64_t FieldOffsetBits = Layout.getFieldOffset(FieldIdx);
6534       assert(FieldOffsetBits % Info.Ctx.getCharWidth() == 0);
6535 
6536       CharUnits FieldOffset =
6537           CharUnits::fromQuantity(FieldOffsetBits / Info.Ctx.getCharWidth()) +
6538           Offset;
6539       QualType FieldTy = FD->getType();
6540       Optional<APValue> SubObj = visitType(FieldTy, FieldOffset);
6541       if (!SubObj)
6542         return None;
6543       ResultVal.getStructField(FieldIdx) = *SubObj;
6544       ++FieldIdx;
6545     }
6546 
6547     return ResultVal;
6548   }
6549 
6550   Optional<APValue> visit(const EnumType *Ty, CharUnits Offset) {
6551     QualType RepresentationType = Ty->getDecl()->getIntegerType();
6552     assert(!RepresentationType.isNull() &&
6553            "enum forward decl should be caught by Sema");
6554     const auto *AsBuiltin =
6555         RepresentationType.getCanonicalType()->castAs<BuiltinType>();
6556     // Recurse into the underlying type. Treat std::byte transparently as
6557     // unsigned char.
6558     return visit(AsBuiltin, Offset, /*EnumTy=*/Ty);
6559   }
6560 
6561   Optional<APValue> visit(const ConstantArrayType *Ty, CharUnits Offset) {
6562     size_t Size = Ty->getSize().getLimitedValue();
6563     CharUnits ElementWidth = Info.Ctx.getTypeSizeInChars(Ty->getElementType());
6564 
6565     APValue ArrayValue(APValue::UninitArray(), Size, Size);
6566     for (size_t I = 0; I != Size; ++I) {
6567       Optional<APValue> ElementValue =
6568           visitType(Ty->getElementType(), Offset + I * ElementWidth);
6569       if (!ElementValue)
6570         return None;
6571       ArrayValue.getArrayInitializedElt(I) = std::move(*ElementValue);
6572     }
6573 
6574     return ArrayValue;
6575   }
6576 
6577   Optional<APValue> visit(const Type *Ty, CharUnits Offset) {
6578     return unsupportedType(QualType(Ty, 0));
6579   }
6580 
6581   Optional<APValue> visitType(QualType Ty, CharUnits Offset) {
6582     QualType Can = Ty.getCanonicalType();
6583 
6584     switch (Can->getTypeClass()) {
6585 #define TYPE(Class, Base)                                                      \
6586   case Type::Class:                                                            \
6587     return visit(cast<Class##Type>(Can.getTypePtr()), Offset);
6588 #define ABSTRACT_TYPE(Class, Base)
6589 #define NON_CANONICAL_TYPE(Class, Base)                                        \
6590   case Type::Class:                                                            \
6591     llvm_unreachable("non-canonical type should be impossible!");
6592 #define DEPENDENT_TYPE(Class, Base)                                            \
6593   case Type::Class:                                                            \
6594     llvm_unreachable(                                                          \
6595         "dependent types aren't supported in the constant evaluator!");
6596 #define NON_CANONICAL_UNLESS_DEPENDENT(Class, Base)                            \
6597   case Type::Class:                                                            \
6598     llvm_unreachable("either dependent or not canonical!");
6599 #include "clang/AST/TypeNodes.inc"
6600     }
6601     llvm_unreachable("Unhandled Type::TypeClass");
6602   }
6603 
6604 public:
6605   // Pull out a full value of type DstType.
6606   static Optional<APValue> convert(EvalInfo &Info, BitCastBuffer &Buffer,
6607                                    const CastExpr *BCE) {
6608     BufferToAPValueConverter Converter(Info, Buffer, BCE);
6609     return Converter.visitType(BCE->getType(), CharUnits::fromQuantity(0));
6610   }
6611 };
6612 
6613 static bool checkBitCastConstexprEligibilityType(SourceLocation Loc,
6614                                                  QualType Ty, EvalInfo *Info,
6615                                                  const ASTContext &Ctx,
6616                                                  bool CheckingDest) {
6617   Ty = Ty.getCanonicalType();
6618 
6619   auto diag = [&](int Reason) {
6620     if (Info)
6621       Info->FFDiag(Loc, diag::note_constexpr_bit_cast_invalid_type)
6622           << CheckingDest << (Reason == 4) << Reason;
6623     return false;
6624   };
6625   auto note = [&](int Construct, QualType NoteTy, SourceLocation NoteLoc) {
6626     if (Info)
6627       Info->Note(NoteLoc, diag::note_constexpr_bit_cast_invalid_subtype)
6628           << NoteTy << Construct << Ty;
6629     return false;
6630   };
6631 
6632   if (Ty->isUnionType())
6633     return diag(0);
6634   if (Ty->isPointerType())
6635     return diag(1);
6636   if (Ty->isMemberPointerType())
6637     return diag(2);
6638   if (Ty.isVolatileQualified())
6639     return diag(3);
6640 
6641   if (RecordDecl *Record = Ty->getAsRecordDecl()) {
6642     if (auto *CXXRD = dyn_cast<CXXRecordDecl>(Record)) {
6643       for (CXXBaseSpecifier &BS : CXXRD->bases())
6644         if (!checkBitCastConstexprEligibilityType(Loc, BS.getType(), Info, Ctx,
6645                                                   CheckingDest))
6646           return note(1, BS.getType(), BS.getBeginLoc());
6647     }
6648     for (FieldDecl *FD : Record->fields()) {
6649       if (FD->getType()->isReferenceType())
6650         return diag(4);
6651       if (!checkBitCastConstexprEligibilityType(Loc, FD->getType(), Info, Ctx,
6652                                                 CheckingDest))
6653         return note(0, FD->getType(), FD->getBeginLoc());
6654     }
6655   }
6656 
6657   if (Ty->isArrayType() &&
6658       !checkBitCastConstexprEligibilityType(Loc, Ctx.getBaseElementType(Ty),
6659                                             Info, Ctx, CheckingDest))
6660     return false;
6661 
6662   return true;
6663 }
6664 
6665 static bool checkBitCastConstexprEligibility(EvalInfo *Info,
6666                                              const ASTContext &Ctx,
6667                                              const CastExpr *BCE) {
6668   bool DestOK = checkBitCastConstexprEligibilityType(
6669       BCE->getBeginLoc(), BCE->getType(), Info, Ctx, true);
6670   bool SourceOK = DestOK && checkBitCastConstexprEligibilityType(
6671                                 BCE->getBeginLoc(),
6672                                 BCE->getSubExpr()->getType(), Info, Ctx, false);
6673   return SourceOK;
6674 }
6675 
6676 static bool handleLValueToRValueBitCast(EvalInfo &Info, APValue &DestValue,
6677                                         APValue &SourceValue,
6678                                         const CastExpr *BCE) {
6679   assert(CHAR_BIT == 8 && Info.Ctx.getTargetInfo().getCharWidth() == 8 &&
6680          "no host or target supports non 8-bit chars");
6681   assert(SourceValue.isLValue() &&
6682          "LValueToRValueBitcast requires an lvalue operand!");
6683 
6684   if (!checkBitCastConstexprEligibility(&Info, Info.Ctx, BCE))
6685     return false;
6686 
6687   LValue SourceLValue;
6688   APValue SourceRValue;
6689   SourceLValue.setFrom(Info.Ctx, SourceValue);
6690   if (!handleLValueToRValueConversion(
6691           Info, BCE, BCE->getSubExpr()->getType().withConst(), SourceLValue,
6692           SourceRValue, /*WantObjectRepresentation=*/true))
6693     return false;
6694 
6695   // Read out SourceValue into a char buffer.
6696   Optional<BitCastBuffer> Buffer =
6697       APValueToBufferConverter::convert(Info, SourceRValue, BCE);
6698   if (!Buffer)
6699     return false;
6700 
6701   // Write out the buffer into a new APValue.
6702   Optional<APValue> MaybeDestValue =
6703       BufferToAPValueConverter::convert(Info, *Buffer, BCE);
6704   if (!MaybeDestValue)
6705     return false;
6706 
6707   DestValue = std::move(*MaybeDestValue);
6708   return true;
6709 }
6710 
6711 template <class Derived>
6712 class ExprEvaluatorBase
6713   : public ConstStmtVisitor<Derived, bool> {
6714 private:
6715   Derived &getDerived() { return static_cast<Derived&>(*this); }
6716   bool DerivedSuccess(const APValue &V, const Expr *E) {
6717     return getDerived().Success(V, E);
6718   }
6719   bool DerivedZeroInitialization(const Expr *E) {
6720     return getDerived().ZeroInitialization(E);
6721   }
6722 
6723   // Check whether a conditional operator with a non-constant condition is a
6724   // potential constant expression. If neither arm is a potential constant
6725   // expression, then the conditional operator is not either.
6726   template<typename ConditionalOperator>
6727   void CheckPotentialConstantConditional(const ConditionalOperator *E) {
6728     assert(Info.checkingPotentialConstantExpression());
6729 
6730     // Speculatively evaluate both arms.
6731     SmallVector<PartialDiagnosticAt, 8> Diag;
6732     {
6733       SpeculativeEvaluationRAII Speculate(Info, &Diag);
6734       StmtVisitorTy::Visit(E->getFalseExpr());
6735       if (Diag.empty())
6736         return;
6737     }
6738 
6739     {
6740       SpeculativeEvaluationRAII Speculate(Info, &Diag);
6741       Diag.clear();
6742       StmtVisitorTy::Visit(E->getTrueExpr());
6743       if (Diag.empty())
6744         return;
6745     }
6746 
6747     Error(E, diag::note_constexpr_conditional_never_const);
6748   }
6749 
6750 
6751   template<typename ConditionalOperator>
6752   bool HandleConditionalOperator(const ConditionalOperator *E) {
6753     bool BoolResult;
6754     if (!EvaluateAsBooleanCondition(E->getCond(), BoolResult, Info)) {
6755       if (Info.checkingPotentialConstantExpression() && Info.noteFailure()) {
6756         CheckPotentialConstantConditional(E);
6757         return false;
6758       }
6759       if (Info.noteFailure()) {
6760         StmtVisitorTy::Visit(E->getTrueExpr());
6761         StmtVisitorTy::Visit(E->getFalseExpr());
6762       }
6763       return false;
6764     }
6765 
6766     Expr *EvalExpr = BoolResult ? E->getTrueExpr() : E->getFalseExpr();
6767     return StmtVisitorTy::Visit(EvalExpr);
6768   }
6769 
6770 protected:
6771   EvalInfo &Info;
6772   typedef ConstStmtVisitor<Derived, bool> StmtVisitorTy;
6773   typedef ExprEvaluatorBase ExprEvaluatorBaseTy;
6774 
6775   OptionalDiagnostic CCEDiag(const Expr *E, diag::kind D) {
6776     return Info.CCEDiag(E, D);
6777   }
6778 
6779   bool ZeroInitialization(const Expr *E) { return Error(E); }
6780 
6781 public:
6782   ExprEvaluatorBase(EvalInfo &Info) : Info(Info) {}
6783 
6784   EvalInfo &getEvalInfo() { return Info; }
6785 
6786   /// Report an evaluation error. This should only be called when an error is
6787   /// first discovered. When propagating an error, just return false.
6788   bool Error(const Expr *E, diag::kind D) {
6789     Info.FFDiag(E, D);
6790     return false;
6791   }
6792   bool Error(const Expr *E) {
6793     return Error(E, diag::note_invalid_subexpr_in_const_expr);
6794   }
6795 
6796   bool VisitStmt(const Stmt *) {
6797     llvm_unreachable("Expression evaluator should not be called on stmts");
6798   }
6799   bool VisitExpr(const Expr *E) {
6800     return Error(E);
6801   }
6802 
6803   bool VisitConstantExpr(const ConstantExpr *E) {
6804     if (E->hasAPValueResult())
6805       return DerivedSuccess(E->getAPValueResult(), E);
6806 
6807     return StmtVisitorTy::Visit(E->getSubExpr());
6808   }
6809 
6810   bool VisitParenExpr(const ParenExpr *E)
6811     { return StmtVisitorTy::Visit(E->getSubExpr()); }
6812   bool VisitUnaryExtension(const UnaryOperator *E)
6813     { return StmtVisitorTy::Visit(E->getSubExpr()); }
6814   bool VisitUnaryPlus(const UnaryOperator *E)
6815     { return StmtVisitorTy::Visit(E->getSubExpr()); }
6816   bool VisitChooseExpr(const ChooseExpr *E)
6817     { return StmtVisitorTy::Visit(E->getChosenSubExpr()); }
6818   bool VisitGenericSelectionExpr(const GenericSelectionExpr *E)
6819     { return StmtVisitorTy::Visit(E->getResultExpr()); }
6820   bool VisitSubstNonTypeTemplateParmExpr(const SubstNonTypeTemplateParmExpr *E)
6821     { return StmtVisitorTy::Visit(E->getReplacement()); }
6822   bool VisitCXXDefaultArgExpr(const CXXDefaultArgExpr *E) {
6823     TempVersionRAII RAII(*Info.CurrentCall);
6824     SourceLocExprScopeGuard Guard(E, Info.CurrentCall->CurSourceLocExprScope);
6825     return StmtVisitorTy::Visit(E->getExpr());
6826   }
6827   bool VisitCXXDefaultInitExpr(const CXXDefaultInitExpr *E) {
6828     TempVersionRAII RAII(*Info.CurrentCall);
6829     // The initializer may not have been parsed yet, or might be erroneous.
6830     if (!E->getExpr())
6831       return Error(E);
6832     SourceLocExprScopeGuard Guard(E, Info.CurrentCall->CurSourceLocExprScope);
6833     return StmtVisitorTy::Visit(E->getExpr());
6834   }
6835 
6836   bool VisitExprWithCleanups(const ExprWithCleanups *E) {
6837     FullExpressionRAII Scope(Info);
6838     return StmtVisitorTy::Visit(E->getSubExpr()) && Scope.destroy();
6839   }
6840 
6841   // Temporaries are registered when created, so we don't care about
6842   // CXXBindTemporaryExpr.
6843   bool VisitCXXBindTemporaryExpr(const CXXBindTemporaryExpr *E) {
6844     return StmtVisitorTy::Visit(E->getSubExpr());
6845   }
6846 
6847   bool VisitCXXReinterpretCastExpr(const CXXReinterpretCastExpr *E) {
6848     CCEDiag(E, diag::note_constexpr_invalid_cast) << 0;
6849     return static_cast<Derived*>(this)->VisitCastExpr(E);
6850   }
6851   bool VisitCXXDynamicCastExpr(const CXXDynamicCastExpr *E) {
6852     if (!Info.Ctx.getLangOpts().CPlusPlus20)
6853       CCEDiag(E, diag::note_constexpr_invalid_cast) << 1;
6854     return static_cast<Derived*>(this)->VisitCastExpr(E);
6855   }
6856   bool VisitBuiltinBitCastExpr(const BuiltinBitCastExpr *E) {
6857     return static_cast<Derived*>(this)->VisitCastExpr(E);
6858   }
6859 
6860   bool VisitBinaryOperator(const BinaryOperator *E) {
6861     switch (E->getOpcode()) {
6862     default:
6863       return Error(E);
6864 
6865     case BO_Comma:
6866       VisitIgnoredValue(E->getLHS());
6867       return StmtVisitorTy::Visit(E->getRHS());
6868 
6869     case BO_PtrMemD:
6870     case BO_PtrMemI: {
6871       LValue Obj;
6872       if (!HandleMemberPointerAccess(Info, E, Obj))
6873         return false;
6874       APValue Result;
6875       if (!handleLValueToRValueConversion(Info, E, E->getType(), Obj, Result))
6876         return false;
6877       return DerivedSuccess(Result, E);
6878     }
6879     }
6880   }
6881 
6882   bool VisitCXXRewrittenBinaryOperator(const CXXRewrittenBinaryOperator *E) {
6883     return StmtVisitorTy::Visit(E->getSemanticForm());
6884   }
6885 
6886   bool VisitBinaryConditionalOperator(const BinaryConditionalOperator *E) {
6887     // Evaluate and cache the common expression. We treat it as a temporary,
6888     // even though it's not quite the same thing.
6889     LValue CommonLV;
6890     if (!Evaluate(Info.CurrentCall->createTemporary(
6891                       E->getOpaqueValue(),
6892                       getStorageType(Info.Ctx, E->getOpaqueValue()), false,
6893                       CommonLV),
6894                   Info, E->getCommon()))
6895       return false;
6896 
6897     return HandleConditionalOperator(E);
6898   }
6899 
6900   bool VisitConditionalOperator(const ConditionalOperator *E) {
6901     bool IsBcpCall = false;
6902     // If the condition (ignoring parens) is a __builtin_constant_p call,
6903     // the result is a constant expression if it can be folded without
6904     // side-effects. This is an important GNU extension. See GCC PR38377
6905     // for discussion.
6906     if (const CallExpr *CallCE =
6907           dyn_cast<CallExpr>(E->getCond()->IgnoreParenCasts()))
6908       if (CallCE->getBuiltinCallee() == Builtin::BI__builtin_constant_p)
6909         IsBcpCall = true;
6910 
6911     // Always assume __builtin_constant_p(...) ? ... : ... is a potential
6912     // constant expression; we can't check whether it's potentially foldable.
6913     // FIXME: We should instead treat __builtin_constant_p as non-constant if
6914     // it would return 'false' in this mode.
6915     if (Info.checkingPotentialConstantExpression() && IsBcpCall)
6916       return false;
6917 
6918     FoldConstant Fold(Info, IsBcpCall);
6919     if (!HandleConditionalOperator(E)) {
6920       Fold.keepDiagnostics();
6921       return false;
6922     }
6923 
6924     return true;
6925   }
6926 
6927   bool VisitOpaqueValueExpr(const OpaqueValueExpr *E) {
6928     if (APValue *Value = Info.CurrentCall->getCurrentTemporary(E))
6929       return DerivedSuccess(*Value, E);
6930 
6931     const Expr *Source = E->getSourceExpr();
6932     if (!Source)
6933       return Error(E);
6934     if (Source == E) { // sanity checking.
6935       assert(0 && "OpaqueValueExpr recursively refers to itself");
6936       return Error(E);
6937     }
6938     return StmtVisitorTy::Visit(Source);
6939   }
6940 
6941   bool VisitPseudoObjectExpr(const PseudoObjectExpr *E) {
6942     for (const Expr *SemE : E->semantics()) {
6943       if (auto *OVE = dyn_cast<OpaqueValueExpr>(SemE)) {
6944         // FIXME: We can't handle the case where an OpaqueValueExpr is also the
6945         // result expression: there could be two different LValues that would
6946         // refer to the same object in that case, and we can't model that.
6947         if (SemE == E->getResultExpr())
6948           return Error(E);
6949 
6950         // Unique OVEs get evaluated if and when we encounter them when
6951         // emitting the rest of the semantic form, rather than eagerly.
6952         if (OVE->isUnique())
6953           continue;
6954 
6955         LValue LV;
6956         if (!Evaluate(Info.CurrentCall->createTemporary(
6957                           OVE, getStorageType(Info.Ctx, OVE), false, LV),
6958                       Info, OVE->getSourceExpr()))
6959           return false;
6960       } else if (SemE == E->getResultExpr()) {
6961         if (!StmtVisitorTy::Visit(SemE))
6962           return false;
6963       } else {
6964         if (!EvaluateIgnoredValue(Info, SemE))
6965           return false;
6966       }
6967     }
6968     return true;
6969   }
6970 
6971   bool VisitCallExpr(const CallExpr *E) {
6972     APValue Result;
6973     if (!handleCallExpr(E, Result, nullptr))
6974       return false;
6975     return DerivedSuccess(Result, E);
6976   }
6977 
6978   bool handleCallExpr(const CallExpr *E, APValue &Result,
6979                      const LValue *ResultSlot) {
6980     const Expr *Callee = E->getCallee()->IgnoreParens();
6981     QualType CalleeType = Callee->getType();
6982 
6983     const FunctionDecl *FD = nullptr;
6984     LValue *This = nullptr, ThisVal;
6985     auto Args = llvm::makeArrayRef(E->getArgs(), E->getNumArgs());
6986     bool HasQualifier = false;
6987 
6988     // Extract function decl and 'this' pointer from the callee.
6989     if (CalleeType->isSpecificBuiltinType(BuiltinType::BoundMember)) {
6990       const CXXMethodDecl *Member = nullptr;
6991       if (const MemberExpr *ME = dyn_cast<MemberExpr>(Callee)) {
6992         // Explicit bound member calls, such as x.f() or p->g();
6993         if (!EvaluateObjectArgument(Info, ME->getBase(), ThisVal))
6994           return false;
6995         Member = dyn_cast<CXXMethodDecl>(ME->getMemberDecl());
6996         if (!Member)
6997           return Error(Callee);
6998         This = &ThisVal;
6999         HasQualifier = ME->hasQualifier();
7000       } else if (const BinaryOperator *BE = dyn_cast<BinaryOperator>(Callee)) {
7001         // Indirect bound member calls ('.*' or '->*').
7002         const ValueDecl *D =
7003             HandleMemberPointerAccess(Info, BE, ThisVal, false);
7004         if (!D)
7005           return false;
7006         Member = dyn_cast<CXXMethodDecl>(D);
7007         if (!Member)
7008           return Error(Callee);
7009         This = &ThisVal;
7010       } else if (const auto *PDE = dyn_cast<CXXPseudoDestructorExpr>(Callee)) {
7011         if (!Info.getLangOpts().CPlusPlus20)
7012           Info.CCEDiag(PDE, diag::note_constexpr_pseudo_destructor);
7013         return EvaluateObjectArgument(Info, PDE->getBase(), ThisVal) &&
7014                HandleDestruction(Info, PDE, ThisVal, PDE->getDestroyedType());
7015       } else
7016         return Error(Callee);
7017       FD = Member;
7018     } else if (CalleeType->isFunctionPointerType()) {
7019       LValue Call;
7020       if (!EvaluatePointer(Callee, Call, Info))
7021         return false;
7022 
7023       if (!Call.getLValueOffset().isZero())
7024         return Error(Callee);
7025       FD = dyn_cast_or_null<FunctionDecl>(
7026                              Call.getLValueBase().dyn_cast<const ValueDecl*>());
7027       if (!FD)
7028         return Error(Callee);
7029       // Don't call function pointers which have been cast to some other type.
7030       // Per DR (no number yet), the caller and callee can differ in noexcept.
7031       if (!Info.Ctx.hasSameFunctionTypeIgnoringExceptionSpec(
7032         CalleeType->getPointeeType(), FD->getType())) {
7033         return Error(E);
7034       }
7035 
7036       // Overloaded operator calls to member functions are represented as normal
7037       // calls with '*this' as the first argument.
7038       const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD);
7039       if (MD && !MD->isStatic()) {
7040         // FIXME: When selecting an implicit conversion for an overloaded
7041         // operator delete, we sometimes try to evaluate calls to conversion
7042         // operators without a 'this' parameter!
7043         if (Args.empty())
7044           return Error(E);
7045 
7046         if (!EvaluateObjectArgument(Info, Args[0], ThisVal))
7047           return false;
7048         This = &ThisVal;
7049         Args = Args.slice(1);
7050       } else if (MD && MD->isLambdaStaticInvoker()) {
7051         // Map the static invoker for the lambda back to the call operator.
7052         // Conveniently, we don't have to slice out the 'this' argument (as is
7053         // being done for the non-static case), since a static member function
7054         // doesn't have an implicit argument passed in.
7055         const CXXRecordDecl *ClosureClass = MD->getParent();
7056         assert(
7057             ClosureClass->captures_begin() == ClosureClass->captures_end() &&
7058             "Number of captures must be zero for conversion to function-ptr");
7059 
7060         const CXXMethodDecl *LambdaCallOp =
7061             ClosureClass->getLambdaCallOperator();
7062 
7063         // Set 'FD', the function that will be called below, to the call
7064         // operator.  If the closure object represents a generic lambda, find
7065         // the corresponding specialization of the call operator.
7066 
7067         if (ClosureClass->isGenericLambda()) {
7068           assert(MD->isFunctionTemplateSpecialization() &&
7069                  "A generic lambda's static-invoker function must be a "
7070                  "template specialization");
7071           const TemplateArgumentList *TAL = MD->getTemplateSpecializationArgs();
7072           FunctionTemplateDecl *CallOpTemplate =
7073               LambdaCallOp->getDescribedFunctionTemplate();
7074           void *InsertPos = nullptr;
7075           FunctionDecl *CorrespondingCallOpSpecialization =
7076               CallOpTemplate->findSpecialization(TAL->asArray(), InsertPos);
7077           assert(CorrespondingCallOpSpecialization &&
7078                  "We must always have a function call operator specialization "
7079                  "that corresponds to our static invoker specialization");
7080           FD = cast<CXXMethodDecl>(CorrespondingCallOpSpecialization);
7081         } else
7082           FD = LambdaCallOp;
7083       } else if (FD->isReplaceableGlobalAllocationFunction()) {
7084         if (FD->getDeclName().getCXXOverloadedOperator() == OO_New ||
7085             FD->getDeclName().getCXXOverloadedOperator() == OO_Array_New) {
7086           LValue Ptr;
7087           if (!HandleOperatorNewCall(Info, E, Ptr))
7088             return false;
7089           Ptr.moveInto(Result);
7090           return true;
7091         } else {
7092           return HandleOperatorDeleteCall(Info, E);
7093         }
7094       }
7095     } else
7096       return Error(E);
7097 
7098     SmallVector<QualType, 4> CovariantAdjustmentPath;
7099     if (This) {
7100       auto *NamedMember = dyn_cast<CXXMethodDecl>(FD);
7101       if (NamedMember && NamedMember->isVirtual() && !HasQualifier) {
7102         // Perform virtual dispatch, if necessary.
7103         FD = HandleVirtualDispatch(Info, E, *This, NamedMember,
7104                                    CovariantAdjustmentPath);
7105         if (!FD)
7106           return false;
7107       } else {
7108         // Check that the 'this' pointer points to an object of the right type.
7109         // FIXME: If this is an assignment operator call, we may need to change
7110         // the active union member before we check this.
7111         if (!checkNonVirtualMemberCallThisPointer(Info, E, *This, NamedMember))
7112           return false;
7113       }
7114     }
7115 
7116     // Destructor calls are different enough that they have their own codepath.
7117     if (auto *DD = dyn_cast<CXXDestructorDecl>(FD)) {
7118       assert(This && "no 'this' pointer for destructor call");
7119       return HandleDestruction(Info, E, *This,
7120                                Info.Ctx.getRecordType(DD->getParent()));
7121     }
7122 
7123     const FunctionDecl *Definition = nullptr;
7124     Stmt *Body = FD->getBody(Definition);
7125 
7126     if (!CheckConstexprFunction(Info, E->getExprLoc(), FD, Definition, Body) ||
7127         !HandleFunctionCall(E->getExprLoc(), Definition, This, Args, Body, Info,
7128                             Result, ResultSlot))
7129       return false;
7130 
7131     if (!CovariantAdjustmentPath.empty() &&
7132         !HandleCovariantReturnAdjustment(Info, E, Result,
7133                                          CovariantAdjustmentPath))
7134       return false;
7135 
7136     return true;
7137   }
7138 
7139   bool VisitCompoundLiteralExpr(const CompoundLiteralExpr *E) {
7140     return StmtVisitorTy::Visit(E->getInitializer());
7141   }
7142   bool VisitInitListExpr(const InitListExpr *E) {
7143     if (E->getNumInits() == 0)
7144       return DerivedZeroInitialization(E);
7145     if (E->getNumInits() == 1)
7146       return StmtVisitorTy::Visit(E->getInit(0));
7147     return Error(E);
7148   }
7149   bool VisitImplicitValueInitExpr(const ImplicitValueInitExpr *E) {
7150     return DerivedZeroInitialization(E);
7151   }
7152   bool VisitCXXScalarValueInitExpr(const CXXScalarValueInitExpr *E) {
7153     return DerivedZeroInitialization(E);
7154   }
7155   bool VisitCXXNullPtrLiteralExpr(const CXXNullPtrLiteralExpr *E) {
7156     return DerivedZeroInitialization(E);
7157   }
7158 
7159   /// A member expression where the object is a prvalue is itself a prvalue.
7160   bool VisitMemberExpr(const MemberExpr *E) {
7161     assert(!Info.Ctx.getLangOpts().CPlusPlus11 &&
7162            "missing temporary materialization conversion");
7163     assert(!E->isArrow() && "missing call to bound member function?");
7164 
7165     APValue Val;
7166     if (!Evaluate(Val, Info, E->getBase()))
7167       return false;
7168 
7169     QualType BaseTy = E->getBase()->getType();
7170 
7171     const FieldDecl *FD = dyn_cast<FieldDecl>(E->getMemberDecl());
7172     if (!FD) return Error(E);
7173     assert(!FD->getType()->isReferenceType() && "prvalue reference?");
7174     assert(BaseTy->castAs<RecordType>()->getDecl()->getCanonicalDecl() ==
7175            FD->getParent()->getCanonicalDecl() && "record / field mismatch");
7176 
7177     // Note: there is no lvalue base here. But this case should only ever
7178     // happen in C or in C++98, where we cannot be evaluating a constexpr
7179     // constructor, which is the only case the base matters.
7180     CompleteObject Obj(APValue::LValueBase(), &Val, BaseTy);
7181     SubobjectDesignator Designator(BaseTy);
7182     Designator.addDeclUnchecked(FD);
7183 
7184     APValue Result;
7185     return extractSubobject(Info, E, Obj, Designator, Result) &&
7186            DerivedSuccess(Result, E);
7187   }
7188 
7189   bool VisitExtVectorElementExpr(const ExtVectorElementExpr *E) {
7190     APValue Val;
7191     if (!Evaluate(Val, Info, E->getBase()))
7192       return false;
7193 
7194     if (Val.isVector()) {
7195       SmallVector<uint32_t, 4> Indices;
7196       E->getEncodedElementAccess(Indices);
7197       if (Indices.size() == 1) {
7198         // Return scalar.
7199         return DerivedSuccess(Val.getVectorElt(Indices[0]), E);
7200       } else {
7201         // Construct new APValue vector.
7202         SmallVector<APValue, 4> Elts;
7203         for (unsigned I = 0; I < Indices.size(); ++I) {
7204           Elts.push_back(Val.getVectorElt(Indices[I]));
7205         }
7206         APValue VecResult(Elts.data(), Indices.size());
7207         return DerivedSuccess(VecResult, E);
7208       }
7209     }
7210 
7211     return false;
7212   }
7213 
7214   bool VisitCastExpr(const CastExpr *E) {
7215     switch (E->getCastKind()) {
7216     default:
7217       break;
7218 
7219     case CK_AtomicToNonAtomic: {
7220       APValue AtomicVal;
7221       // This does not need to be done in place even for class/array types:
7222       // atomic-to-non-atomic conversion implies copying the object
7223       // representation.
7224       if (!Evaluate(AtomicVal, Info, E->getSubExpr()))
7225         return false;
7226       return DerivedSuccess(AtomicVal, E);
7227     }
7228 
7229     case CK_NoOp:
7230     case CK_UserDefinedConversion:
7231       return StmtVisitorTy::Visit(E->getSubExpr());
7232 
7233     case CK_LValueToRValue: {
7234       LValue LVal;
7235       if (!EvaluateLValue(E->getSubExpr(), LVal, Info))
7236         return false;
7237       APValue RVal;
7238       // Note, we use the subexpression's type in order to retain cv-qualifiers.
7239       if (!handleLValueToRValueConversion(Info, E, E->getSubExpr()->getType(),
7240                                           LVal, RVal))
7241         return false;
7242       return DerivedSuccess(RVal, E);
7243     }
7244     case CK_LValueToRValueBitCast: {
7245       APValue DestValue, SourceValue;
7246       if (!Evaluate(SourceValue, Info, E->getSubExpr()))
7247         return false;
7248       if (!handleLValueToRValueBitCast(Info, DestValue, SourceValue, E))
7249         return false;
7250       return DerivedSuccess(DestValue, E);
7251     }
7252 
7253     case CK_AddressSpaceConversion: {
7254       APValue Value;
7255       if (!Evaluate(Value, Info, E->getSubExpr()))
7256         return false;
7257       return DerivedSuccess(Value, E);
7258     }
7259     }
7260 
7261     return Error(E);
7262   }
7263 
7264   bool VisitUnaryPostInc(const UnaryOperator *UO) {
7265     return VisitUnaryPostIncDec(UO);
7266   }
7267   bool VisitUnaryPostDec(const UnaryOperator *UO) {
7268     return VisitUnaryPostIncDec(UO);
7269   }
7270   bool VisitUnaryPostIncDec(const UnaryOperator *UO) {
7271     if (!Info.getLangOpts().CPlusPlus14 && !Info.keepEvaluatingAfterFailure())
7272       return Error(UO);
7273 
7274     LValue LVal;
7275     if (!EvaluateLValue(UO->getSubExpr(), LVal, Info))
7276       return false;
7277     APValue RVal;
7278     if (!handleIncDec(this->Info, UO, LVal, UO->getSubExpr()->getType(),
7279                       UO->isIncrementOp(), &RVal))
7280       return false;
7281     return DerivedSuccess(RVal, UO);
7282   }
7283 
7284   bool VisitStmtExpr(const StmtExpr *E) {
7285     // We will have checked the full-expressions inside the statement expression
7286     // when they were completed, and don't need to check them again now.
7287     if (Info.checkingForUndefinedBehavior())
7288       return Error(E);
7289 
7290     const CompoundStmt *CS = E->getSubStmt();
7291     if (CS->body_empty())
7292       return true;
7293 
7294     BlockScopeRAII Scope(Info);
7295     for (CompoundStmt::const_body_iterator BI = CS->body_begin(),
7296                                            BE = CS->body_end();
7297          /**/; ++BI) {
7298       if (BI + 1 == BE) {
7299         const Expr *FinalExpr = dyn_cast<Expr>(*BI);
7300         if (!FinalExpr) {
7301           Info.FFDiag((*BI)->getBeginLoc(),
7302                       diag::note_constexpr_stmt_expr_unsupported);
7303           return false;
7304         }
7305         return this->Visit(FinalExpr) && Scope.destroy();
7306       }
7307 
7308       APValue ReturnValue;
7309       StmtResult Result = { ReturnValue, nullptr };
7310       EvalStmtResult ESR = EvaluateStmt(Result, Info, *BI);
7311       if (ESR != ESR_Succeeded) {
7312         // FIXME: If the statement-expression terminated due to 'return',
7313         // 'break', or 'continue', it would be nice to propagate that to
7314         // the outer statement evaluation rather than bailing out.
7315         if (ESR != ESR_Failed)
7316           Info.FFDiag((*BI)->getBeginLoc(),
7317                       diag::note_constexpr_stmt_expr_unsupported);
7318         return false;
7319       }
7320     }
7321 
7322     llvm_unreachable("Return from function from the loop above.");
7323   }
7324 
7325   /// Visit a value which is evaluated, but whose value is ignored.
7326   void VisitIgnoredValue(const Expr *E) {
7327     EvaluateIgnoredValue(Info, E);
7328   }
7329 
7330   /// Potentially visit a MemberExpr's base expression.
7331   void VisitIgnoredBaseExpression(const Expr *E) {
7332     // While MSVC doesn't evaluate the base expression, it does diagnose the
7333     // presence of side-effecting behavior.
7334     if (Info.getLangOpts().MSVCCompat && !E->HasSideEffects(Info.Ctx))
7335       return;
7336     VisitIgnoredValue(E);
7337   }
7338 };
7339 
7340 } // namespace
7341 
7342 //===----------------------------------------------------------------------===//
7343 // Common base class for lvalue and temporary evaluation.
7344 //===----------------------------------------------------------------------===//
7345 namespace {
7346 template<class Derived>
7347 class LValueExprEvaluatorBase
7348   : public ExprEvaluatorBase<Derived> {
7349 protected:
7350   LValue &Result;
7351   bool InvalidBaseOK;
7352   typedef LValueExprEvaluatorBase LValueExprEvaluatorBaseTy;
7353   typedef ExprEvaluatorBase<Derived> ExprEvaluatorBaseTy;
7354 
7355   bool Success(APValue::LValueBase B) {
7356     Result.set(B);
7357     return true;
7358   }
7359 
7360   bool evaluatePointer(const Expr *E, LValue &Result) {
7361     return EvaluatePointer(E, Result, this->Info, InvalidBaseOK);
7362   }
7363 
7364 public:
7365   LValueExprEvaluatorBase(EvalInfo &Info, LValue &Result, bool InvalidBaseOK)
7366       : ExprEvaluatorBaseTy(Info), Result(Result),
7367         InvalidBaseOK(InvalidBaseOK) {}
7368 
7369   bool Success(const APValue &V, const Expr *E) {
7370     Result.setFrom(this->Info.Ctx, V);
7371     return true;
7372   }
7373 
7374   bool VisitMemberExpr(const MemberExpr *E) {
7375     // Handle non-static data members.
7376     QualType BaseTy;
7377     bool EvalOK;
7378     if (E->isArrow()) {
7379       EvalOK = evaluatePointer(E->getBase(), Result);
7380       BaseTy = E->getBase()->getType()->castAs<PointerType>()->getPointeeType();
7381     } else if (E->getBase()->isRValue()) {
7382       assert(E->getBase()->getType()->isRecordType());
7383       EvalOK = EvaluateTemporary(E->getBase(), Result, this->Info);
7384       BaseTy = E->getBase()->getType();
7385     } else {
7386       EvalOK = this->Visit(E->getBase());
7387       BaseTy = E->getBase()->getType();
7388     }
7389     if (!EvalOK) {
7390       if (!InvalidBaseOK)
7391         return false;
7392       Result.setInvalid(E);
7393       return true;
7394     }
7395 
7396     const ValueDecl *MD = E->getMemberDecl();
7397     if (const FieldDecl *FD = dyn_cast<FieldDecl>(E->getMemberDecl())) {
7398       assert(BaseTy->castAs<RecordType>()->getDecl()->getCanonicalDecl() ==
7399              FD->getParent()->getCanonicalDecl() && "record / field mismatch");
7400       (void)BaseTy;
7401       if (!HandleLValueMember(this->Info, E, Result, FD))
7402         return false;
7403     } else if (const IndirectFieldDecl *IFD = dyn_cast<IndirectFieldDecl>(MD)) {
7404       if (!HandleLValueIndirectMember(this->Info, E, Result, IFD))
7405         return false;
7406     } else
7407       return this->Error(E);
7408 
7409     if (MD->getType()->isReferenceType()) {
7410       APValue RefValue;
7411       if (!handleLValueToRValueConversion(this->Info, E, MD->getType(), Result,
7412                                           RefValue))
7413         return false;
7414       return Success(RefValue, E);
7415     }
7416     return true;
7417   }
7418 
7419   bool VisitBinaryOperator(const BinaryOperator *E) {
7420     switch (E->getOpcode()) {
7421     default:
7422       return ExprEvaluatorBaseTy::VisitBinaryOperator(E);
7423 
7424     case BO_PtrMemD:
7425     case BO_PtrMemI:
7426       return HandleMemberPointerAccess(this->Info, E, Result);
7427     }
7428   }
7429 
7430   bool VisitCastExpr(const CastExpr *E) {
7431     switch (E->getCastKind()) {
7432     default:
7433       return ExprEvaluatorBaseTy::VisitCastExpr(E);
7434 
7435     case CK_DerivedToBase:
7436     case CK_UncheckedDerivedToBase:
7437       if (!this->Visit(E->getSubExpr()))
7438         return false;
7439 
7440       // Now figure out the necessary offset to add to the base LV to get from
7441       // the derived class to the base class.
7442       return HandleLValueBasePath(this->Info, E, E->getSubExpr()->getType(),
7443                                   Result);
7444     }
7445   }
7446 };
7447 }
7448 
7449 //===----------------------------------------------------------------------===//
7450 // LValue Evaluation
7451 //
7452 // This is used for evaluating lvalues (in C and C++), xvalues (in C++11),
7453 // function designators (in C), decl references to void objects (in C), and
7454 // temporaries (if building with -Wno-address-of-temporary).
7455 //
7456 // LValue evaluation produces values comprising a base expression of one of the
7457 // following types:
7458 // - Declarations
7459 //  * VarDecl
7460 //  * FunctionDecl
7461 // - Literals
7462 //  * CompoundLiteralExpr in C (and in global scope in C++)
7463 //  * StringLiteral
7464 //  * PredefinedExpr
7465 //  * ObjCStringLiteralExpr
7466 //  * ObjCEncodeExpr
7467 //  * AddrLabelExpr
7468 //  * BlockExpr
7469 //  * CallExpr for a MakeStringConstant builtin
7470 // - typeid(T) expressions, as TypeInfoLValues
7471 // - Locals and temporaries
7472 //  * MaterializeTemporaryExpr
7473 //  * Any Expr, with a CallIndex indicating the function in which the temporary
7474 //    was evaluated, for cases where the MaterializeTemporaryExpr is missing
7475 //    from the AST (FIXME).
7476 //  * A MaterializeTemporaryExpr that has static storage duration, with no
7477 //    CallIndex, for a lifetime-extended temporary.
7478 //  * The ConstantExpr that is currently being evaluated during evaluation of an
7479 //    immediate invocation.
7480 // plus an offset in bytes.
7481 //===----------------------------------------------------------------------===//
7482 namespace {
7483 class LValueExprEvaluator
7484   : public LValueExprEvaluatorBase<LValueExprEvaluator> {
7485 public:
7486   LValueExprEvaluator(EvalInfo &Info, LValue &Result, bool InvalidBaseOK) :
7487     LValueExprEvaluatorBaseTy(Info, Result, InvalidBaseOK) {}
7488 
7489   bool VisitVarDecl(const Expr *E, const VarDecl *VD);
7490   bool VisitUnaryPreIncDec(const UnaryOperator *UO);
7491 
7492   bool VisitDeclRefExpr(const DeclRefExpr *E);
7493   bool VisitPredefinedExpr(const PredefinedExpr *E) { return Success(E); }
7494   bool VisitMaterializeTemporaryExpr(const MaterializeTemporaryExpr *E);
7495   bool VisitCompoundLiteralExpr(const CompoundLiteralExpr *E);
7496   bool VisitMemberExpr(const MemberExpr *E);
7497   bool VisitStringLiteral(const StringLiteral *E) { return Success(E); }
7498   bool VisitObjCEncodeExpr(const ObjCEncodeExpr *E) { return Success(E); }
7499   bool VisitCXXTypeidExpr(const CXXTypeidExpr *E);
7500   bool VisitCXXUuidofExpr(const CXXUuidofExpr *E);
7501   bool VisitArraySubscriptExpr(const ArraySubscriptExpr *E);
7502   bool VisitUnaryDeref(const UnaryOperator *E);
7503   bool VisitUnaryReal(const UnaryOperator *E);
7504   bool VisitUnaryImag(const UnaryOperator *E);
7505   bool VisitUnaryPreInc(const UnaryOperator *UO) {
7506     return VisitUnaryPreIncDec(UO);
7507   }
7508   bool VisitUnaryPreDec(const UnaryOperator *UO) {
7509     return VisitUnaryPreIncDec(UO);
7510   }
7511   bool VisitBinAssign(const BinaryOperator *BO);
7512   bool VisitCompoundAssignOperator(const CompoundAssignOperator *CAO);
7513 
7514   bool VisitCastExpr(const CastExpr *E) {
7515     switch (E->getCastKind()) {
7516     default:
7517       return LValueExprEvaluatorBaseTy::VisitCastExpr(E);
7518 
7519     case CK_LValueBitCast:
7520       this->CCEDiag(E, diag::note_constexpr_invalid_cast) << 2;
7521       if (!Visit(E->getSubExpr()))
7522         return false;
7523       Result.Designator.setInvalid();
7524       return true;
7525 
7526     case CK_BaseToDerived:
7527       if (!Visit(E->getSubExpr()))
7528         return false;
7529       return HandleBaseToDerivedCast(Info, E, Result);
7530 
7531     case CK_Dynamic:
7532       if (!Visit(E->getSubExpr()))
7533         return false;
7534       return HandleDynamicCast(Info, cast<ExplicitCastExpr>(E), Result);
7535     }
7536   }
7537 };
7538 } // end anonymous namespace
7539 
7540 /// Evaluate an expression as an lvalue. This can be legitimately called on
7541 /// expressions which are not glvalues, in three cases:
7542 ///  * function designators in C, and
7543 ///  * "extern void" objects
7544 ///  * @selector() expressions in Objective-C
7545 static bool EvaluateLValue(const Expr *E, LValue &Result, EvalInfo &Info,
7546                            bool InvalidBaseOK) {
7547   assert(E->isGLValue() || E->getType()->isFunctionType() ||
7548          E->getType()->isVoidType() || isa<ObjCSelectorExpr>(E));
7549   return LValueExprEvaluator(Info, Result, InvalidBaseOK).Visit(E);
7550 }
7551 
7552 bool LValueExprEvaluator::VisitDeclRefExpr(const DeclRefExpr *E) {
7553   if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(E->getDecl()))
7554     return Success(FD);
7555   if (const VarDecl *VD = dyn_cast<VarDecl>(E->getDecl()))
7556     return VisitVarDecl(E, VD);
7557   if (const BindingDecl *BD = dyn_cast<BindingDecl>(E->getDecl()))
7558     return Visit(BD->getBinding());
7559   if (const MSGuidDecl *GD = dyn_cast<MSGuidDecl>(E->getDecl()))
7560     return Success(GD);
7561   return Error(E);
7562 }
7563 
7564 
7565 bool LValueExprEvaluator::VisitVarDecl(const Expr *E, const VarDecl *VD) {
7566 
7567   // If we are within a lambda's call operator, check whether the 'VD' referred
7568   // to within 'E' actually represents a lambda-capture that maps to a
7569   // data-member/field within the closure object, and if so, evaluate to the
7570   // field or what the field refers to.
7571   if (Info.CurrentCall && isLambdaCallOperator(Info.CurrentCall->Callee) &&
7572       isa<DeclRefExpr>(E) &&
7573       cast<DeclRefExpr>(E)->refersToEnclosingVariableOrCapture()) {
7574     // We don't always have a complete capture-map when checking or inferring if
7575     // the function call operator meets the requirements of a constexpr function
7576     // - but we don't need to evaluate the captures to determine constexprness
7577     // (dcl.constexpr C++17).
7578     if (Info.checkingPotentialConstantExpression())
7579       return false;
7580 
7581     if (auto *FD = Info.CurrentCall->LambdaCaptureFields.lookup(VD)) {
7582       // Start with 'Result' referring to the complete closure object...
7583       Result = *Info.CurrentCall->This;
7584       // ... then update it to refer to the field of the closure object
7585       // that represents the capture.
7586       if (!HandleLValueMember(Info, E, Result, FD))
7587         return false;
7588       // And if the field is of reference type, update 'Result' to refer to what
7589       // the field refers to.
7590       if (FD->getType()->isReferenceType()) {
7591         APValue RVal;
7592         if (!handleLValueToRValueConversion(Info, E, FD->getType(), Result,
7593                                             RVal))
7594           return false;
7595         Result.setFrom(Info.Ctx, RVal);
7596       }
7597       return true;
7598     }
7599   }
7600   CallStackFrame *Frame = nullptr;
7601   if (VD->hasLocalStorage() && Info.CurrentCall->Index > 1) {
7602     // Only if a local variable was declared in the function currently being
7603     // evaluated, do we expect to be able to find its value in the current
7604     // frame. (Otherwise it was likely declared in an enclosing context and
7605     // could either have a valid evaluatable value (for e.g. a constexpr
7606     // variable) or be ill-formed (and trigger an appropriate evaluation
7607     // diagnostic)).
7608     if (Info.CurrentCall->Callee &&
7609         Info.CurrentCall->Callee->Equals(VD->getDeclContext())) {
7610       Frame = Info.CurrentCall;
7611     }
7612   }
7613 
7614   if (!VD->getType()->isReferenceType()) {
7615     if (Frame) {
7616       Result.set({VD, Frame->Index,
7617                   Info.CurrentCall->getCurrentTemporaryVersion(VD)});
7618       return true;
7619     }
7620     return Success(VD);
7621   }
7622 
7623   APValue *V;
7624   if (!evaluateVarDeclInit(Info, E, VD, Frame, V, nullptr))
7625     return false;
7626   if (!V->hasValue()) {
7627     // FIXME: Is it possible for V to be indeterminate here? If so, we should
7628     // adjust the diagnostic to say that.
7629     if (!Info.checkingPotentialConstantExpression())
7630       Info.FFDiag(E, diag::note_constexpr_use_uninit_reference);
7631     return false;
7632   }
7633   return Success(*V, E);
7634 }
7635 
7636 bool LValueExprEvaluator::VisitMaterializeTemporaryExpr(
7637     const MaterializeTemporaryExpr *E) {
7638   // Walk through the expression to find the materialized temporary itself.
7639   SmallVector<const Expr *, 2> CommaLHSs;
7640   SmallVector<SubobjectAdjustment, 2> Adjustments;
7641   const Expr *Inner =
7642       E->getSubExpr()->skipRValueSubobjectAdjustments(CommaLHSs, Adjustments);
7643 
7644   // If we passed any comma operators, evaluate their LHSs.
7645   for (unsigned I = 0, N = CommaLHSs.size(); I != N; ++I)
7646     if (!EvaluateIgnoredValue(Info, CommaLHSs[I]))
7647       return false;
7648 
7649   // A materialized temporary with static storage duration can appear within the
7650   // result of a constant expression evaluation, so we need to preserve its
7651   // value for use outside this evaluation.
7652   APValue *Value;
7653   if (E->getStorageDuration() == SD_Static) {
7654     Value = E->getOrCreateValue(true);
7655     *Value = APValue();
7656     Result.set(E);
7657   } else {
7658     Value = &Info.CurrentCall->createTemporary(
7659         E, E->getType(), E->getStorageDuration() == SD_Automatic, Result);
7660   }
7661 
7662   QualType Type = Inner->getType();
7663 
7664   // Materialize the temporary itself.
7665   if (!EvaluateInPlace(*Value, Info, Result, Inner)) {
7666     *Value = APValue();
7667     return false;
7668   }
7669 
7670   // Adjust our lvalue to refer to the desired subobject.
7671   for (unsigned I = Adjustments.size(); I != 0; /**/) {
7672     --I;
7673     switch (Adjustments[I].Kind) {
7674     case SubobjectAdjustment::DerivedToBaseAdjustment:
7675       if (!HandleLValueBasePath(Info, Adjustments[I].DerivedToBase.BasePath,
7676                                 Type, Result))
7677         return false;
7678       Type = Adjustments[I].DerivedToBase.BasePath->getType();
7679       break;
7680 
7681     case SubobjectAdjustment::FieldAdjustment:
7682       if (!HandleLValueMember(Info, E, Result, Adjustments[I].Field))
7683         return false;
7684       Type = Adjustments[I].Field->getType();
7685       break;
7686 
7687     case SubobjectAdjustment::MemberPointerAdjustment:
7688       if (!HandleMemberPointerAccess(this->Info, Type, Result,
7689                                      Adjustments[I].Ptr.RHS))
7690         return false;
7691       Type = Adjustments[I].Ptr.MPT->getPointeeType();
7692       break;
7693     }
7694   }
7695 
7696   return true;
7697 }
7698 
7699 bool
7700 LValueExprEvaluator::VisitCompoundLiteralExpr(const CompoundLiteralExpr *E) {
7701   assert((!Info.getLangOpts().CPlusPlus || E->isFileScope()) &&
7702          "lvalue compound literal in c++?");
7703   // Defer visiting the literal until the lvalue-to-rvalue conversion. We can
7704   // only see this when folding in C, so there's no standard to follow here.
7705   return Success(E);
7706 }
7707 
7708 bool LValueExprEvaluator::VisitCXXTypeidExpr(const CXXTypeidExpr *E) {
7709   TypeInfoLValue TypeInfo;
7710 
7711   if (!E->isPotentiallyEvaluated()) {
7712     if (E->isTypeOperand())
7713       TypeInfo = TypeInfoLValue(E->getTypeOperand(Info.Ctx).getTypePtr());
7714     else
7715       TypeInfo = TypeInfoLValue(E->getExprOperand()->getType().getTypePtr());
7716   } else {
7717     if (!Info.Ctx.getLangOpts().CPlusPlus20) {
7718       Info.CCEDiag(E, diag::note_constexpr_typeid_polymorphic)
7719         << E->getExprOperand()->getType()
7720         << E->getExprOperand()->getSourceRange();
7721     }
7722 
7723     if (!Visit(E->getExprOperand()))
7724       return false;
7725 
7726     Optional<DynamicType> DynType =
7727         ComputeDynamicType(Info, E, Result, AK_TypeId);
7728     if (!DynType)
7729       return false;
7730 
7731     TypeInfo =
7732         TypeInfoLValue(Info.Ctx.getRecordType(DynType->Type).getTypePtr());
7733   }
7734 
7735   return Success(APValue::LValueBase::getTypeInfo(TypeInfo, E->getType()));
7736 }
7737 
7738 bool LValueExprEvaluator::VisitCXXUuidofExpr(const CXXUuidofExpr *E) {
7739   return Success(E->getGuidDecl());
7740 }
7741 
7742 bool LValueExprEvaluator::VisitMemberExpr(const MemberExpr *E) {
7743   // Handle static data members.
7744   if (const VarDecl *VD = dyn_cast<VarDecl>(E->getMemberDecl())) {
7745     VisitIgnoredBaseExpression(E->getBase());
7746     return VisitVarDecl(E, VD);
7747   }
7748 
7749   // Handle static member functions.
7750   if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(E->getMemberDecl())) {
7751     if (MD->isStatic()) {
7752       VisitIgnoredBaseExpression(E->getBase());
7753       return Success(MD);
7754     }
7755   }
7756 
7757   // Handle non-static data members.
7758   return LValueExprEvaluatorBaseTy::VisitMemberExpr(E);
7759 }
7760 
7761 bool LValueExprEvaluator::VisitArraySubscriptExpr(const ArraySubscriptExpr *E) {
7762   // FIXME: Deal with vectors as array subscript bases.
7763   if (E->getBase()->getType()->isVectorType())
7764     return Error(E);
7765 
7766   bool Success = true;
7767   if (!evaluatePointer(E->getBase(), Result)) {
7768     if (!Info.noteFailure())
7769       return false;
7770     Success = false;
7771   }
7772 
7773   APSInt Index;
7774   if (!EvaluateInteger(E->getIdx(), Index, Info))
7775     return false;
7776 
7777   return Success &&
7778          HandleLValueArrayAdjustment(Info, E, Result, E->getType(), Index);
7779 }
7780 
7781 bool LValueExprEvaluator::VisitUnaryDeref(const UnaryOperator *E) {
7782   return evaluatePointer(E->getSubExpr(), Result);
7783 }
7784 
7785 bool LValueExprEvaluator::VisitUnaryReal(const UnaryOperator *E) {
7786   if (!Visit(E->getSubExpr()))
7787     return false;
7788   // __real is a no-op on scalar lvalues.
7789   if (E->getSubExpr()->getType()->isAnyComplexType())
7790     HandleLValueComplexElement(Info, E, Result, E->getType(), false);
7791   return true;
7792 }
7793 
7794 bool LValueExprEvaluator::VisitUnaryImag(const UnaryOperator *E) {
7795   assert(E->getSubExpr()->getType()->isAnyComplexType() &&
7796          "lvalue __imag__ on scalar?");
7797   if (!Visit(E->getSubExpr()))
7798     return false;
7799   HandleLValueComplexElement(Info, E, Result, E->getType(), true);
7800   return true;
7801 }
7802 
7803 bool LValueExprEvaluator::VisitUnaryPreIncDec(const UnaryOperator *UO) {
7804   if (!Info.getLangOpts().CPlusPlus14 && !Info.keepEvaluatingAfterFailure())
7805     return Error(UO);
7806 
7807   if (!this->Visit(UO->getSubExpr()))
7808     return false;
7809 
7810   return handleIncDec(
7811       this->Info, UO, Result, UO->getSubExpr()->getType(),
7812       UO->isIncrementOp(), nullptr);
7813 }
7814 
7815 bool LValueExprEvaluator::VisitCompoundAssignOperator(
7816     const CompoundAssignOperator *CAO) {
7817   if (!Info.getLangOpts().CPlusPlus14 && !Info.keepEvaluatingAfterFailure())
7818     return Error(CAO);
7819 
7820   APValue RHS;
7821 
7822   // The overall lvalue result is the result of evaluating the LHS.
7823   if (!this->Visit(CAO->getLHS())) {
7824     if (Info.noteFailure())
7825       Evaluate(RHS, this->Info, CAO->getRHS());
7826     return false;
7827   }
7828 
7829   if (!Evaluate(RHS, this->Info, CAO->getRHS()))
7830     return false;
7831 
7832   return handleCompoundAssignment(
7833       this->Info, CAO,
7834       Result, CAO->getLHS()->getType(), CAO->getComputationLHSType(),
7835       CAO->getOpForCompoundAssignment(CAO->getOpcode()), RHS);
7836 }
7837 
7838 bool LValueExprEvaluator::VisitBinAssign(const BinaryOperator *E) {
7839   if (!Info.getLangOpts().CPlusPlus14 && !Info.keepEvaluatingAfterFailure())
7840     return Error(E);
7841 
7842   APValue NewVal;
7843 
7844   if (!this->Visit(E->getLHS())) {
7845     if (Info.noteFailure())
7846       Evaluate(NewVal, this->Info, E->getRHS());
7847     return false;
7848   }
7849 
7850   if (!Evaluate(NewVal, this->Info, E->getRHS()))
7851     return false;
7852 
7853   if (Info.getLangOpts().CPlusPlus20 &&
7854       !HandleUnionActiveMemberChange(Info, E->getLHS(), Result))
7855     return false;
7856 
7857   return handleAssignment(this->Info, E, Result, E->getLHS()->getType(),
7858                           NewVal);
7859 }
7860 
7861 //===----------------------------------------------------------------------===//
7862 // Pointer Evaluation
7863 //===----------------------------------------------------------------------===//
7864 
7865 /// Attempts to compute the number of bytes available at the pointer
7866 /// returned by a function with the alloc_size attribute. Returns true if we
7867 /// were successful. Places an unsigned number into `Result`.
7868 ///
7869 /// This expects the given CallExpr to be a call to a function with an
7870 /// alloc_size attribute.
7871 static bool getBytesReturnedByAllocSizeCall(const ASTContext &Ctx,
7872                                             const CallExpr *Call,
7873                                             llvm::APInt &Result) {
7874   const AllocSizeAttr *AllocSize = getAllocSizeAttr(Call);
7875 
7876   assert(AllocSize && AllocSize->getElemSizeParam().isValid());
7877   unsigned SizeArgNo = AllocSize->getElemSizeParam().getASTIndex();
7878   unsigned BitsInSizeT = Ctx.getTypeSize(Ctx.getSizeType());
7879   if (Call->getNumArgs() <= SizeArgNo)
7880     return false;
7881 
7882   auto EvaluateAsSizeT = [&](const Expr *E, APSInt &Into) {
7883     Expr::EvalResult ExprResult;
7884     if (!E->EvaluateAsInt(ExprResult, Ctx, Expr::SE_AllowSideEffects))
7885       return false;
7886     Into = ExprResult.Val.getInt();
7887     if (Into.isNegative() || !Into.isIntN(BitsInSizeT))
7888       return false;
7889     Into = Into.zextOrSelf(BitsInSizeT);
7890     return true;
7891   };
7892 
7893   APSInt SizeOfElem;
7894   if (!EvaluateAsSizeT(Call->getArg(SizeArgNo), SizeOfElem))
7895     return false;
7896 
7897   if (!AllocSize->getNumElemsParam().isValid()) {
7898     Result = std::move(SizeOfElem);
7899     return true;
7900   }
7901 
7902   APSInt NumberOfElems;
7903   unsigned NumArgNo = AllocSize->getNumElemsParam().getASTIndex();
7904   if (!EvaluateAsSizeT(Call->getArg(NumArgNo), NumberOfElems))
7905     return false;
7906 
7907   bool Overflow;
7908   llvm::APInt BytesAvailable = SizeOfElem.umul_ov(NumberOfElems, Overflow);
7909   if (Overflow)
7910     return false;
7911 
7912   Result = std::move(BytesAvailable);
7913   return true;
7914 }
7915 
7916 /// Convenience function. LVal's base must be a call to an alloc_size
7917 /// function.
7918 static bool getBytesReturnedByAllocSizeCall(const ASTContext &Ctx,
7919                                             const LValue &LVal,
7920                                             llvm::APInt &Result) {
7921   assert(isBaseAnAllocSizeCall(LVal.getLValueBase()) &&
7922          "Can't get the size of a non alloc_size function");
7923   const auto *Base = LVal.getLValueBase().get<const Expr *>();
7924   const CallExpr *CE = tryUnwrapAllocSizeCall(Base);
7925   return getBytesReturnedByAllocSizeCall(Ctx, CE, Result);
7926 }
7927 
7928 /// Attempts to evaluate the given LValueBase as the result of a call to
7929 /// a function with the alloc_size attribute. If it was possible to do so, this
7930 /// function will return true, make Result's Base point to said function call,
7931 /// and mark Result's Base as invalid.
7932 static bool evaluateLValueAsAllocSize(EvalInfo &Info, APValue::LValueBase Base,
7933                                       LValue &Result) {
7934   if (Base.isNull())
7935     return false;
7936 
7937   // Because we do no form of static analysis, we only support const variables.
7938   //
7939   // Additionally, we can't support parameters, nor can we support static
7940   // variables (in the latter case, use-before-assign isn't UB; in the former,
7941   // we have no clue what they'll be assigned to).
7942   const auto *VD =
7943       dyn_cast_or_null<VarDecl>(Base.dyn_cast<const ValueDecl *>());
7944   if (!VD || !VD->isLocalVarDecl() || !VD->getType().isConstQualified())
7945     return false;
7946 
7947   const Expr *Init = VD->getAnyInitializer();
7948   if (!Init)
7949     return false;
7950 
7951   const Expr *E = Init->IgnoreParens();
7952   if (!tryUnwrapAllocSizeCall(E))
7953     return false;
7954 
7955   // Store E instead of E unwrapped so that the type of the LValue's base is
7956   // what the user wanted.
7957   Result.setInvalid(E);
7958 
7959   QualType Pointee = E->getType()->castAs<PointerType>()->getPointeeType();
7960   Result.addUnsizedArray(Info, E, Pointee);
7961   return true;
7962 }
7963 
7964 namespace {
7965 class PointerExprEvaluator
7966   : public ExprEvaluatorBase<PointerExprEvaluator> {
7967   LValue &Result;
7968   bool InvalidBaseOK;
7969 
7970   bool Success(const Expr *E) {
7971     Result.set(E);
7972     return true;
7973   }
7974 
7975   bool evaluateLValue(const Expr *E, LValue &Result) {
7976     return EvaluateLValue(E, Result, Info, InvalidBaseOK);
7977   }
7978 
7979   bool evaluatePointer(const Expr *E, LValue &Result) {
7980     return EvaluatePointer(E, Result, Info, InvalidBaseOK);
7981   }
7982 
7983   bool visitNonBuiltinCallExpr(const CallExpr *E);
7984 public:
7985 
7986   PointerExprEvaluator(EvalInfo &info, LValue &Result, bool InvalidBaseOK)
7987       : ExprEvaluatorBaseTy(info), Result(Result),
7988         InvalidBaseOK(InvalidBaseOK) {}
7989 
7990   bool Success(const APValue &V, const Expr *E) {
7991     Result.setFrom(Info.Ctx, V);
7992     return true;
7993   }
7994   bool ZeroInitialization(const Expr *E) {
7995     Result.setNull(Info.Ctx, E->getType());
7996     return true;
7997   }
7998 
7999   bool VisitBinaryOperator(const BinaryOperator *E);
8000   bool VisitCastExpr(const CastExpr* E);
8001   bool VisitUnaryAddrOf(const UnaryOperator *E);
8002   bool VisitObjCStringLiteral(const ObjCStringLiteral *E)
8003       { return Success(E); }
8004   bool VisitObjCBoxedExpr(const ObjCBoxedExpr *E) {
8005     if (E->isExpressibleAsConstantInitializer())
8006       return Success(E);
8007     if (Info.noteFailure())
8008       EvaluateIgnoredValue(Info, E->getSubExpr());
8009     return Error(E);
8010   }
8011   bool VisitAddrLabelExpr(const AddrLabelExpr *E)
8012       { return Success(E); }
8013   bool VisitCallExpr(const CallExpr *E);
8014   bool VisitBuiltinCallExpr(const CallExpr *E, unsigned BuiltinOp);
8015   bool VisitBlockExpr(const BlockExpr *E) {
8016     if (!E->getBlockDecl()->hasCaptures())
8017       return Success(E);
8018     return Error(E);
8019   }
8020   bool VisitCXXThisExpr(const CXXThisExpr *E) {
8021     // Can't look at 'this' when checking a potential constant expression.
8022     if (Info.checkingPotentialConstantExpression())
8023       return false;
8024     if (!Info.CurrentCall->This) {
8025       if (Info.getLangOpts().CPlusPlus11)
8026         Info.FFDiag(E, diag::note_constexpr_this) << E->isImplicit();
8027       else
8028         Info.FFDiag(E);
8029       return false;
8030     }
8031     Result = *Info.CurrentCall->This;
8032     // If we are inside a lambda's call operator, the 'this' expression refers
8033     // to the enclosing '*this' object (either by value or reference) which is
8034     // either copied into the closure object's field that represents the '*this'
8035     // or refers to '*this'.
8036     if (isLambdaCallOperator(Info.CurrentCall->Callee)) {
8037       // Ensure we actually have captured 'this'. (an error will have
8038       // been previously reported if not).
8039       if (!Info.CurrentCall->LambdaThisCaptureField)
8040         return false;
8041 
8042       // Update 'Result' to refer to the data member/field of the closure object
8043       // that represents the '*this' capture.
8044       if (!HandleLValueMember(Info, E, Result,
8045                              Info.CurrentCall->LambdaThisCaptureField))
8046         return false;
8047       // If we captured '*this' by reference, replace the field with its referent.
8048       if (Info.CurrentCall->LambdaThisCaptureField->getType()
8049               ->isPointerType()) {
8050         APValue RVal;
8051         if (!handleLValueToRValueConversion(Info, E, E->getType(), Result,
8052                                             RVal))
8053           return false;
8054 
8055         Result.setFrom(Info.Ctx, RVal);
8056       }
8057     }
8058     return true;
8059   }
8060 
8061   bool VisitCXXNewExpr(const CXXNewExpr *E);
8062 
8063   bool VisitSourceLocExpr(const SourceLocExpr *E) {
8064     assert(E->isStringType() && "SourceLocExpr isn't a pointer type?");
8065     APValue LValResult = E->EvaluateInContext(
8066         Info.Ctx, Info.CurrentCall->CurSourceLocExprScope.getDefaultExpr());
8067     Result.setFrom(Info.Ctx, LValResult);
8068     return true;
8069   }
8070 
8071   // FIXME: Missing: @protocol, @selector
8072 };
8073 } // end anonymous namespace
8074 
8075 static bool EvaluatePointer(const Expr* E, LValue& Result, EvalInfo &Info,
8076                             bool InvalidBaseOK) {
8077   assert(E->isRValue() && E->getType()->hasPointerRepresentation());
8078   return PointerExprEvaluator(Info, Result, InvalidBaseOK).Visit(E);
8079 }
8080 
8081 bool PointerExprEvaluator::VisitBinaryOperator(const BinaryOperator *E) {
8082   if (E->getOpcode() != BO_Add &&
8083       E->getOpcode() != BO_Sub)
8084     return ExprEvaluatorBaseTy::VisitBinaryOperator(E);
8085 
8086   const Expr *PExp = E->getLHS();
8087   const Expr *IExp = E->getRHS();
8088   if (IExp->getType()->isPointerType())
8089     std::swap(PExp, IExp);
8090 
8091   bool EvalPtrOK = evaluatePointer(PExp, Result);
8092   if (!EvalPtrOK && !Info.noteFailure())
8093     return false;
8094 
8095   llvm::APSInt Offset;
8096   if (!EvaluateInteger(IExp, Offset, Info) || !EvalPtrOK)
8097     return false;
8098 
8099   if (E->getOpcode() == BO_Sub)
8100     negateAsSigned(Offset);
8101 
8102   QualType Pointee = PExp->getType()->castAs<PointerType>()->getPointeeType();
8103   return HandleLValueArrayAdjustment(Info, E, Result, Pointee, Offset);
8104 }
8105 
8106 bool PointerExprEvaluator::VisitUnaryAddrOf(const UnaryOperator *E) {
8107   return evaluateLValue(E->getSubExpr(), Result);
8108 }
8109 
8110 bool PointerExprEvaluator::VisitCastExpr(const CastExpr *E) {
8111   const Expr *SubExpr = E->getSubExpr();
8112 
8113   switch (E->getCastKind()) {
8114   default:
8115     break;
8116   case CK_BitCast:
8117   case CK_CPointerToObjCPointerCast:
8118   case CK_BlockPointerToObjCPointerCast:
8119   case CK_AnyPointerToBlockPointerCast:
8120   case CK_AddressSpaceConversion:
8121     if (!Visit(SubExpr))
8122       return false;
8123     // Bitcasts to cv void* are static_casts, not reinterpret_casts, so are
8124     // permitted in constant expressions in C++11. Bitcasts from cv void* are
8125     // also static_casts, but we disallow them as a resolution to DR1312.
8126     if (!E->getType()->isVoidPointerType()) {
8127       if (!Result.InvalidBase && !Result.Designator.Invalid &&
8128           !Result.IsNullPtr &&
8129           Info.Ctx.hasSameUnqualifiedType(Result.Designator.getType(Info.Ctx),
8130                                           E->getType()->getPointeeType()) &&
8131           Info.getStdAllocatorCaller("allocate")) {
8132         // Inside a call to std::allocator::allocate and friends, we permit
8133         // casting from void* back to cv1 T* for a pointer that points to a
8134         // cv2 T.
8135       } else {
8136         Result.Designator.setInvalid();
8137         if (SubExpr->getType()->isVoidPointerType())
8138           CCEDiag(E, diag::note_constexpr_invalid_cast)
8139             << 3 << SubExpr->getType();
8140         else
8141           CCEDiag(E, diag::note_constexpr_invalid_cast) << 2;
8142       }
8143     }
8144     if (E->getCastKind() == CK_AddressSpaceConversion && Result.IsNullPtr)
8145       ZeroInitialization(E);
8146     return true;
8147 
8148   case CK_DerivedToBase:
8149   case CK_UncheckedDerivedToBase:
8150     if (!evaluatePointer(E->getSubExpr(), Result))
8151       return false;
8152     if (!Result.Base && Result.Offset.isZero())
8153       return true;
8154 
8155     // Now figure out the necessary offset to add to the base LV to get from
8156     // the derived class to the base class.
8157     return HandleLValueBasePath(Info, E, E->getSubExpr()->getType()->
8158                                   castAs<PointerType>()->getPointeeType(),
8159                                 Result);
8160 
8161   case CK_BaseToDerived:
8162     if (!Visit(E->getSubExpr()))
8163       return false;
8164     if (!Result.Base && Result.Offset.isZero())
8165       return true;
8166     return HandleBaseToDerivedCast(Info, E, Result);
8167 
8168   case CK_Dynamic:
8169     if (!Visit(E->getSubExpr()))
8170       return false;
8171     return HandleDynamicCast(Info, cast<ExplicitCastExpr>(E), Result);
8172 
8173   case CK_NullToPointer:
8174     VisitIgnoredValue(E->getSubExpr());
8175     return ZeroInitialization(E);
8176 
8177   case CK_IntegralToPointer: {
8178     CCEDiag(E, diag::note_constexpr_invalid_cast) << 2;
8179 
8180     APValue Value;
8181     if (!EvaluateIntegerOrLValue(SubExpr, Value, Info))
8182       break;
8183 
8184     if (Value.isInt()) {
8185       unsigned Size = Info.Ctx.getTypeSize(E->getType());
8186       uint64_t N = Value.getInt().extOrTrunc(Size).getZExtValue();
8187       Result.Base = (Expr*)nullptr;
8188       Result.InvalidBase = false;
8189       Result.Offset = CharUnits::fromQuantity(N);
8190       Result.Designator.setInvalid();
8191       Result.IsNullPtr = false;
8192       return true;
8193     } else {
8194       // Cast is of an lvalue, no need to change value.
8195       Result.setFrom(Info.Ctx, Value);
8196       return true;
8197     }
8198   }
8199 
8200   case CK_ArrayToPointerDecay: {
8201     if (SubExpr->isGLValue()) {
8202       if (!evaluateLValue(SubExpr, Result))
8203         return false;
8204     } else {
8205       APValue &Value = Info.CurrentCall->createTemporary(
8206           SubExpr, SubExpr->getType(), false, Result);
8207       if (!EvaluateInPlace(Value, Info, Result, SubExpr))
8208         return false;
8209     }
8210     // The result is a pointer to the first element of the array.
8211     auto *AT = Info.Ctx.getAsArrayType(SubExpr->getType());
8212     if (auto *CAT = dyn_cast<ConstantArrayType>(AT))
8213       Result.addArray(Info, E, CAT);
8214     else
8215       Result.addUnsizedArray(Info, E, AT->getElementType());
8216     return true;
8217   }
8218 
8219   case CK_FunctionToPointerDecay:
8220     return evaluateLValue(SubExpr, Result);
8221 
8222   case CK_LValueToRValue: {
8223     LValue LVal;
8224     if (!evaluateLValue(E->getSubExpr(), LVal))
8225       return false;
8226 
8227     APValue RVal;
8228     // Note, we use the subexpression's type in order to retain cv-qualifiers.
8229     if (!handleLValueToRValueConversion(Info, E, E->getSubExpr()->getType(),
8230                                         LVal, RVal))
8231       return InvalidBaseOK &&
8232              evaluateLValueAsAllocSize(Info, LVal.Base, Result);
8233     return Success(RVal, E);
8234   }
8235   }
8236 
8237   return ExprEvaluatorBaseTy::VisitCastExpr(E);
8238 }
8239 
8240 static CharUnits GetAlignOfType(EvalInfo &Info, QualType T,
8241                                 UnaryExprOrTypeTrait ExprKind) {
8242   // C++ [expr.alignof]p3:
8243   //     When alignof is applied to a reference type, the result is the
8244   //     alignment of the referenced type.
8245   if (const ReferenceType *Ref = T->getAs<ReferenceType>())
8246     T = Ref->getPointeeType();
8247 
8248   if (T.getQualifiers().hasUnaligned())
8249     return CharUnits::One();
8250 
8251   const bool AlignOfReturnsPreferred =
8252       Info.Ctx.getLangOpts().getClangABICompat() <= LangOptions::ClangABI::Ver7;
8253 
8254   // __alignof is defined to return the preferred alignment.
8255   // Before 8, clang returned the preferred alignment for alignof and _Alignof
8256   // as well.
8257   if (ExprKind == UETT_PreferredAlignOf || AlignOfReturnsPreferred)
8258     return Info.Ctx.toCharUnitsFromBits(
8259       Info.Ctx.getPreferredTypeAlign(T.getTypePtr()));
8260   // alignof and _Alignof are defined to return the ABI alignment.
8261   else if (ExprKind == UETT_AlignOf)
8262     return Info.Ctx.getTypeAlignInChars(T.getTypePtr());
8263   else
8264     llvm_unreachable("GetAlignOfType on a non-alignment ExprKind");
8265 }
8266 
8267 static CharUnits GetAlignOfExpr(EvalInfo &Info, const Expr *E,
8268                                 UnaryExprOrTypeTrait ExprKind) {
8269   E = E->IgnoreParens();
8270 
8271   // The kinds of expressions that we have special-case logic here for
8272   // should be kept up to date with the special checks for those
8273   // expressions in Sema.
8274 
8275   // alignof decl is always accepted, even if it doesn't make sense: we default
8276   // to 1 in those cases.
8277   if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E))
8278     return Info.Ctx.getDeclAlign(DRE->getDecl(),
8279                                  /*RefAsPointee*/true);
8280 
8281   if (const MemberExpr *ME = dyn_cast<MemberExpr>(E))
8282     return Info.Ctx.getDeclAlign(ME->getMemberDecl(),
8283                                  /*RefAsPointee*/true);
8284 
8285   return GetAlignOfType(Info, E->getType(), ExprKind);
8286 }
8287 
8288 static CharUnits getBaseAlignment(EvalInfo &Info, const LValue &Value) {
8289   if (const auto *VD = Value.Base.dyn_cast<const ValueDecl *>())
8290     return Info.Ctx.getDeclAlign(VD);
8291   if (const auto *E = Value.Base.dyn_cast<const Expr *>())
8292     return GetAlignOfExpr(Info, E, UETT_AlignOf);
8293   return GetAlignOfType(Info, Value.Base.getTypeInfoType(), UETT_AlignOf);
8294 }
8295 
8296 /// Evaluate the value of the alignment argument to __builtin_align_{up,down},
8297 /// __builtin_is_aligned and __builtin_assume_aligned.
8298 static bool getAlignmentArgument(const Expr *E, QualType ForType,
8299                                  EvalInfo &Info, APSInt &Alignment) {
8300   if (!EvaluateInteger(E, Alignment, Info))
8301     return false;
8302   if (Alignment < 0 || !Alignment.isPowerOf2()) {
8303     Info.FFDiag(E, diag::note_constexpr_invalid_alignment) << Alignment;
8304     return false;
8305   }
8306   unsigned SrcWidth = Info.Ctx.getIntWidth(ForType);
8307   APSInt MaxValue(APInt::getOneBitSet(SrcWidth, SrcWidth - 1));
8308   if (APSInt::compareValues(Alignment, MaxValue) > 0) {
8309     Info.FFDiag(E, diag::note_constexpr_alignment_too_big)
8310         << MaxValue << ForType << Alignment;
8311     return false;
8312   }
8313   // Ensure both alignment and source value have the same bit width so that we
8314   // don't assert when computing the resulting value.
8315   APSInt ExtAlignment =
8316       APSInt(Alignment.zextOrTrunc(SrcWidth), /*isUnsigned=*/true);
8317   assert(APSInt::compareValues(Alignment, ExtAlignment) == 0 &&
8318          "Alignment should not be changed by ext/trunc");
8319   Alignment = ExtAlignment;
8320   assert(Alignment.getBitWidth() == SrcWidth);
8321   return true;
8322 }
8323 
8324 // To be clear: this happily visits unsupported builtins. Better name welcomed.
8325 bool PointerExprEvaluator::visitNonBuiltinCallExpr(const CallExpr *E) {
8326   if (ExprEvaluatorBaseTy::VisitCallExpr(E))
8327     return true;
8328 
8329   if (!(InvalidBaseOK && getAllocSizeAttr(E)))
8330     return false;
8331 
8332   Result.setInvalid(E);
8333   QualType PointeeTy = E->getType()->castAs<PointerType>()->getPointeeType();
8334   Result.addUnsizedArray(Info, E, PointeeTy);
8335   return true;
8336 }
8337 
8338 bool PointerExprEvaluator::VisitCallExpr(const CallExpr *E) {
8339   if (IsStringLiteralCall(E))
8340     return Success(E);
8341 
8342   if (unsigned BuiltinOp = E->getBuiltinCallee())
8343     return VisitBuiltinCallExpr(E, BuiltinOp);
8344 
8345   return visitNonBuiltinCallExpr(E);
8346 }
8347 
8348 // Determine if T is a character type for which we guarantee that
8349 // sizeof(T) == 1.
8350 static bool isOneByteCharacterType(QualType T) {
8351   return T->isCharType() || T->isChar8Type();
8352 }
8353 
8354 bool PointerExprEvaluator::VisitBuiltinCallExpr(const CallExpr *E,
8355                                                 unsigned BuiltinOp) {
8356   switch (BuiltinOp) {
8357   case Builtin::BI__builtin_addressof:
8358     return evaluateLValue(E->getArg(0), Result);
8359   case Builtin::BI__builtin_assume_aligned: {
8360     // We need to be very careful here because: if the pointer does not have the
8361     // asserted alignment, then the behavior is undefined, and undefined
8362     // behavior is non-constant.
8363     if (!evaluatePointer(E->getArg(0), Result))
8364       return false;
8365 
8366     LValue OffsetResult(Result);
8367     APSInt Alignment;
8368     if (!getAlignmentArgument(E->getArg(1), E->getArg(0)->getType(), Info,
8369                               Alignment))
8370       return false;
8371     CharUnits Align = CharUnits::fromQuantity(Alignment.getZExtValue());
8372 
8373     if (E->getNumArgs() > 2) {
8374       APSInt Offset;
8375       if (!EvaluateInteger(E->getArg(2), Offset, Info))
8376         return false;
8377 
8378       int64_t AdditionalOffset = -Offset.getZExtValue();
8379       OffsetResult.Offset += CharUnits::fromQuantity(AdditionalOffset);
8380     }
8381 
8382     // If there is a base object, then it must have the correct alignment.
8383     if (OffsetResult.Base) {
8384       CharUnits BaseAlignment = getBaseAlignment(Info, OffsetResult);
8385 
8386       if (BaseAlignment < Align) {
8387         Result.Designator.setInvalid();
8388         // FIXME: Add support to Diagnostic for long / long long.
8389         CCEDiag(E->getArg(0),
8390                 diag::note_constexpr_baa_insufficient_alignment) << 0
8391           << (unsigned)BaseAlignment.getQuantity()
8392           << (unsigned)Align.getQuantity();
8393         return false;
8394       }
8395     }
8396 
8397     // The offset must also have the correct alignment.
8398     if (OffsetResult.Offset.alignTo(Align) != OffsetResult.Offset) {
8399       Result.Designator.setInvalid();
8400 
8401       (OffsetResult.Base
8402            ? CCEDiag(E->getArg(0),
8403                      diag::note_constexpr_baa_insufficient_alignment) << 1
8404            : CCEDiag(E->getArg(0),
8405                      diag::note_constexpr_baa_value_insufficient_alignment))
8406         << (int)OffsetResult.Offset.getQuantity()
8407         << (unsigned)Align.getQuantity();
8408       return false;
8409     }
8410 
8411     return true;
8412   }
8413   case Builtin::BI__builtin_align_up:
8414   case Builtin::BI__builtin_align_down: {
8415     if (!evaluatePointer(E->getArg(0), Result))
8416       return false;
8417     APSInt Alignment;
8418     if (!getAlignmentArgument(E->getArg(1), E->getArg(0)->getType(), Info,
8419                               Alignment))
8420       return false;
8421     CharUnits BaseAlignment = getBaseAlignment(Info, Result);
8422     CharUnits PtrAlign = BaseAlignment.alignmentAtOffset(Result.Offset);
8423     // For align_up/align_down, we can return the same value if the alignment
8424     // is known to be greater or equal to the requested value.
8425     if (PtrAlign.getQuantity() >= Alignment)
8426       return true;
8427 
8428     // The alignment could be greater than the minimum at run-time, so we cannot
8429     // infer much about the resulting pointer value. One case is possible:
8430     // For `_Alignas(32) char buf[N]; __builtin_align_down(&buf[idx], 32)` we
8431     // can infer the correct index if the requested alignment is smaller than
8432     // the base alignment so we can perform the computation on the offset.
8433     if (BaseAlignment.getQuantity() >= Alignment) {
8434       assert(Alignment.getBitWidth() <= 64 &&
8435              "Cannot handle > 64-bit address-space");
8436       uint64_t Alignment64 = Alignment.getZExtValue();
8437       CharUnits NewOffset = CharUnits::fromQuantity(
8438           BuiltinOp == Builtin::BI__builtin_align_down
8439               ? llvm::alignDown(Result.Offset.getQuantity(), Alignment64)
8440               : llvm::alignTo(Result.Offset.getQuantity(), Alignment64));
8441       Result.adjustOffset(NewOffset - Result.Offset);
8442       // TODO: diagnose out-of-bounds values/only allow for arrays?
8443       return true;
8444     }
8445     // Otherwise, we cannot constant-evaluate the result.
8446     Info.FFDiag(E->getArg(0), diag::note_constexpr_alignment_adjust)
8447         << Alignment;
8448     return false;
8449   }
8450   case Builtin::BI__builtin_operator_new:
8451     return HandleOperatorNewCall(Info, E, Result);
8452   case Builtin::BI__builtin_launder:
8453     return evaluatePointer(E->getArg(0), Result);
8454   case Builtin::BIstrchr:
8455   case Builtin::BIwcschr:
8456   case Builtin::BImemchr:
8457   case Builtin::BIwmemchr:
8458     if (Info.getLangOpts().CPlusPlus11)
8459       Info.CCEDiag(E, diag::note_constexpr_invalid_function)
8460         << /*isConstexpr*/0 << /*isConstructor*/0
8461         << (std::string("'") + Info.Ctx.BuiltinInfo.getName(BuiltinOp) + "'");
8462     else
8463       Info.CCEDiag(E, diag::note_invalid_subexpr_in_const_expr);
8464     LLVM_FALLTHROUGH;
8465   case Builtin::BI__builtin_strchr:
8466   case Builtin::BI__builtin_wcschr:
8467   case Builtin::BI__builtin_memchr:
8468   case Builtin::BI__builtin_char_memchr:
8469   case Builtin::BI__builtin_wmemchr: {
8470     if (!Visit(E->getArg(0)))
8471       return false;
8472     APSInt Desired;
8473     if (!EvaluateInteger(E->getArg(1), Desired, Info))
8474       return false;
8475     uint64_t MaxLength = uint64_t(-1);
8476     if (BuiltinOp != Builtin::BIstrchr &&
8477         BuiltinOp != Builtin::BIwcschr &&
8478         BuiltinOp != Builtin::BI__builtin_strchr &&
8479         BuiltinOp != Builtin::BI__builtin_wcschr) {
8480       APSInt N;
8481       if (!EvaluateInteger(E->getArg(2), N, Info))
8482         return false;
8483       MaxLength = N.getExtValue();
8484     }
8485     // We cannot find the value if there are no candidates to match against.
8486     if (MaxLength == 0u)
8487       return ZeroInitialization(E);
8488     if (!Result.checkNullPointerForFoldAccess(Info, E, AK_Read) ||
8489         Result.Designator.Invalid)
8490       return false;
8491     QualType CharTy = Result.Designator.getType(Info.Ctx);
8492     bool IsRawByte = BuiltinOp == Builtin::BImemchr ||
8493                      BuiltinOp == Builtin::BI__builtin_memchr;
8494     assert(IsRawByte ||
8495            Info.Ctx.hasSameUnqualifiedType(
8496                CharTy, E->getArg(0)->getType()->getPointeeType()));
8497     // Pointers to const void may point to objects of incomplete type.
8498     if (IsRawByte && CharTy->isIncompleteType()) {
8499       Info.FFDiag(E, diag::note_constexpr_ltor_incomplete_type) << CharTy;
8500       return false;
8501     }
8502     // Give up on byte-oriented matching against multibyte elements.
8503     // FIXME: We can compare the bytes in the correct order.
8504     if (IsRawByte && !isOneByteCharacterType(CharTy)) {
8505       Info.FFDiag(E, diag::note_constexpr_memchr_unsupported)
8506           << (std::string("'") + Info.Ctx.BuiltinInfo.getName(BuiltinOp) + "'")
8507           << CharTy;
8508       return false;
8509     }
8510     // Figure out what value we're actually looking for (after converting to
8511     // the corresponding unsigned type if necessary).
8512     uint64_t DesiredVal;
8513     bool StopAtNull = false;
8514     switch (BuiltinOp) {
8515     case Builtin::BIstrchr:
8516     case Builtin::BI__builtin_strchr:
8517       // strchr compares directly to the passed integer, and therefore
8518       // always fails if given an int that is not a char.
8519       if (!APSInt::isSameValue(HandleIntToIntCast(Info, E, CharTy,
8520                                                   E->getArg(1)->getType(),
8521                                                   Desired),
8522                                Desired))
8523         return ZeroInitialization(E);
8524       StopAtNull = true;
8525       LLVM_FALLTHROUGH;
8526     case Builtin::BImemchr:
8527     case Builtin::BI__builtin_memchr:
8528     case Builtin::BI__builtin_char_memchr:
8529       // memchr compares by converting both sides to unsigned char. That's also
8530       // correct for strchr if we get this far (to cope with plain char being
8531       // unsigned in the strchr case).
8532       DesiredVal = Desired.trunc(Info.Ctx.getCharWidth()).getZExtValue();
8533       break;
8534 
8535     case Builtin::BIwcschr:
8536     case Builtin::BI__builtin_wcschr:
8537       StopAtNull = true;
8538       LLVM_FALLTHROUGH;
8539     case Builtin::BIwmemchr:
8540     case Builtin::BI__builtin_wmemchr:
8541       // wcschr and wmemchr are given a wchar_t to look for. Just use it.
8542       DesiredVal = Desired.getZExtValue();
8543       break;
8544     }
8545 
8546     for (; MaxLength; --MaxLength) {
8547       APValue Char;
8548       if (!handleLValueToRValueConversion(Info, E, CharTy, Result, Char) ||
8549           !Char.isInt())
8550         return false;
8551       if (Char.getInt().getZExtValue() == DesiredVal)
8552         return true;
8553       if (StopAtNull && !Char.getInt())
8554         break;
8555       if (!HandleLValueArrayAdjustment(Info, E, Result, CharTy, 1))
8556         return false;
8557     }
8558     // Not found: return nullptr.
8559     return ZeroInitialization(E);
8560   }
8561 
8562   case Builtin::BImemcpy:
8563   case Builtin::BImemmove:
8564   case Builtin::BIwmemcpy:
8565   case Builtin::BIwmemmove:
8566     if (Info.getLangOpts().CPlusPlus11)
8567       Info.CCEDiag(E, diag::note_constexpr_invalid_function)
8568         << /*isConstexpr*/0 << /*isConstructor*/0
8569         << (std::string("'") + Info.Ctx.BuiltinInfo.getName(BuiltinOp) + "'");
8570     else
8571       Info.CCEDiag(E, diag::note_invalid_subexpr_in_const_expr);
8572     LLVM_FALLTHROUGH;
8573   case Builtin::BI__builtin_memcpy:
8574   case Builtin::BI__builtin_memmove:
8575   case Builtin::BI__builtin_wmemcpy:
8576   case Builtin::BI__builtin_wmemmove: {
8577     bool WChar = BuiltinOp == Builtin::BIwmemcpy ||
8578                  BuiltinOp == Builtin::BIwmemmove ||
8579                  BuiltinOp == Builtin::BI__builtin_wmemcpy ||
8580                  BuiltinOp == Builtin::BI__builtin_wmemmove;
8581     bool Move = BuiltinOp == Builtin::BImemmove ||
8582                 BuiltinOp == Builtin::BIwmemmove ||
8583                 BuiltinOp == Builtin::BI__builtin_memmove ||
8584                 BuiltinOp == Builtin::BI__builtin_wmemmove;
8585 
8586     // The result of mem* is the first argument.
8587     if (!Visit(E->getArg(0)))
8588       return false;
8589     LValue Dest = Result;
8590 
8591     LValue Src;
8592     if (!EvaluatePointer(E->getArg(1), Src, Info))
8593       return false;
8594 
8595     APSInt N;
8596     if (!EvaluateInteger(E->getArg(2), N, Info))
8597       return false;
8598     assert(!N.isSigned() && "memcpy and friends take an unsigned size");
8599 
8600     // If the size is zero, we treat this as always being a valid no-op.
8601     // (Even if one of the src and dest pointers is null.)
8602     if (!N)
8603       return true;
8604 
8605     // Otherwise, if either of the operands is null, we can't proceed. Don't
8606     // try to determine the type of the copied objects, because there aren't
8607     // any.
8608     if (!Src.Base || !Dest.Base) {
8609       APValue Val;
8610       (!Src.Base ? Src : Dest).moveInto(Val);
8611       Info.FFDiag(E, diag::note_constexpr_memcpy_null)
8612           << Move << WChar << !!Src.Base
8613           << Val.getAsString(Info.Ctx, E->getArg(0)->getType());
8614       return false;
8615     }
8616     if (Src.Designator.Invalid || Dest.Designator.Invalid)
8617       return false;
8618 
8619     // We require that Src and Dest are both pointers to arrays of
8620     // trivially-copyable type. (For the wide version, the designator will be
8621     // invalid if the designated object is not a wchar_t.)
8622     QualType T = Dest.Designator.getType(Info.Ctx);
8623     QualType SrcT = Src.Designator.getType(Info.Ctx);
8624     if (!Info.Ctx.hasSameUnqualifiedType(T, SrcT)) {
8625       // FIXME: Consider using our bit_cast implementation to support this.
8626       Info.FFDiag(E, diag::note_constexpr_memcpy_type_pun) << Move << SrcT << T;
8627       return false;
8628     }
8629     if (T->isIncompleteType()) {
8630       Info.FFDiag(E, diag::note_constexpr_memcpy_incomplete_type) << Move << T;
8631       return false;
8632     }
8633     if (!T.isTriviallyCopyableType(Info.Ctx)) {
8634       Info.FFDiag(E, diag::note_constexpr_memcpy_nontrivial) << Move << T;
8635       return false;
8636     }
8637 
8638     // Figure out how many T's we're copying.
8639     uint64_t TSize = Info.Ctx.getTypeSizeInChars(T).getQuantity();
8640     if (!WChar) {
8641       uint64_t Remainder;
8642       llvm::APInt OrigN = N;
8643       llvm::APInt::udivrem(OrigN, TSize, N, Remainder);
8644       if (Remainder) {
8645         Info.FFDiag(E, diag::note_constexpr_memcpy_unsupported)
8646             << Move << WChar << 0 << T << OrigN.toString(10, /*Signed*/false)
8647             << (unsigned)TSize;
8648         return false;
8649       }
8650     }
8651 
8652     // Check that the copying will remain within the arrays, just so that we
8653     // can give a more meaningful diagnostic. This implicitly also checks that
8654     // N fits into 64 bits.
8655     uint64_t RemainingSrcSize = Src.Designator.validIndexAdjustments().second;
8656     uint64_t RemainingDestSize = Dest.Designator.validIndexAdjustments().second;
8657     if (N.ugt(RemainingSrcSize) || N.ugt(RemainingDestSize)) {
8658       Info.FFDiag(E, diag::note_constexpr_memcpy_unsupported)
8659           << Move << WChar << (N.ugt(RemainingSrcSize) ? 1 : 2) << T
8660           << N.toString(10, /*Signed*/false);
8661       return false;
8662     }
8663     uint64_t NElems = N.getZExtValue();
8664     uint64_t NBytes = NElems * TSize;
8665 
8666     // Check for overlap.
8667     int Direction = 1;
8668     if (HasSameBase(Src, Dest)) {
8669       uint64_t SrcOffset = Src.getLValueOffset().getQuantity();
8670       uint64_t DestOffset = Dest.getLValueOffset().getQuantity();
8671       if (DestOffset >= SrcOffset && DestOffset - SrcOffset < NBytes) {
8672         // Dest is inside the source region.
8673         if (!Move) {
8674           Info.FFDiag(E, diag::note_constexpr_memcpy_overlap) << WChar;
8675           return false;
8676         }
8677         // For memmove and friends, copy backwards.
8678         if (!HandleLValueArrayAdjustment(Info, E, Src, T, NElems - 1) ||
8679             !HandleLValueArrayAdjustment(Info, E, Dest, T, NElems - 1))
8680           return false;
8681         Direction = -1;
8682       } else if (!Move && SrcOffset >= DestOffset &&
8683                  SrcOffset - DestOffset < NBytes) {
8684         // Src is inside the destination region for memcpy: invalid.
8685         Info.FFDiag(E, diag::note_constexpr_memcpy_overlap) << WChar;
8686         return false;
8687       }
8688     }
8689 
8690     while (true) {
8691       APValue Val;
8692       // FIXME: Set WantObjectRepresentation to true if we're copying a
8693       // char-like type?
8694       if (!handleLValueToRValueConversion(Info, E, T, Src, Val) ||
8695           !handleAssignment(Info, E, Dest, T, Val))
8696         return false;
8697       // Do not iterate past the last element; if we're copying backwards, that
8698       // might take us off the start of the array.
8699       if (--NElems == 0)
8700         return true;
8701       if (!HandleLValueArrayAdjustment(Info, E, Src, T, Direction) ||
8702           !HandleLValueArrayAdjustment(Info, E, Dest, T, Direction))
8703         return false;
8704     }
8705   }
8706 
8707   default:
8708     break;
8709   }
8710 
8711   return visitNonBuiltinCallExpr(E);
8712 }
8713 
8714 static bool EvaluateArrayNewInitList(EvalInfo &Info, LValue &This,
8715                                      APValue &Result, const InitListExpr *ILE,
8716                                      QualType AllocType);
8717 static bool EvaluateArrayNewConstructExpr(EvalInfo &Info, LValue &This,
8718                                           APValue &Result,
8719                                           const CXXConstructExpr *CCE,
8720                                           QualType AllocType);
8721 
8722 bool PointerExprEvaluator::VisitCXXNewExpr(const CXXNewExpr *E) {
8723   if (!Info.getLangOpts().CPlusPlus20)
8724     Info.CCEDiag(E, diag::note_constexpr_new);
8725 
8726   // We cannot speculatively evaluate a delete expression.
8727   if (Info.SpeculativeEvaluationDepth)
8728     return false;
8729 
8730   FunctionDecl *OperatorNew = E->getOperatorNew();
8731 
8732   bool IsNothrow = false;
8733   bool IsPlacement = false;
8734   if (OperatorNew->isReservedGlobalPlacementOperator() &&
8735       Info.CurrentCall->isStdFunction() && !E->isArray()) {
8736     // FIXME Support array placement new.
8737     assert(E->getNumPlacementArgs() == 1);
8738     if (!EvaluatePointer(E->getPlacementArg(0), Result, Info))
8739       return false;
8740     if (Result.Designator.Invalid)
8741       return false;
8742     IsPlacement = true;
8743   } else if (!OperatorNew->isReplaceableGlobalAllocationFunction()) {
8744     Info.FFDiag(E, diag::note_constexpr_new_non_replaceable)
8745         << isa<CXXMethodDecl>(OperatorNew) << OperatorNew;
8746     return false;
8747   } else if (E->getNumPlacementArgs()) {
8748     // The only new-placement list we support is of the form (std::nothrow).
8749     //
8750     // FIXME: There is no restriction on this, but it's not clear that any
8751     // other form makes any sense. We get here for cases such as:
8752     //
8753     //   new (std::align_val_t{N}) X(int)
8754     //
8755     // (which should presumably be valid only if N is a multiple of
8756     // alignof(int), and in any case can't be deallocated unless N is
8757     // alignof(X) and X has new-extended alignment).
8758     if (E->getNumPlacementArgs() != 1 ||
8759         !E->getPlacementArg(0)->getType()->isNothrowT())
8760       return Error(E, diag::note_constexpr_new_placement);
8761 
8762     LValue Nothrow;
8763     if (!EvaluateLValue(E->getPlacementArg(0), Nothrow, Info))
8764       return false;
8765     IsNothrow = true;
8766   }
8767 
8768   const Expr *Init = E->getInitializer();
8769   const InitListExpr *ResizedArrayILE = nullptr;
8770   const CXXConstructExpr *ResizedArrayCCE = nullptr;
8771 
8772   QualType AllocType = E->getAllocatedType();
8773   if (Optional<const Expr*> ArraySize = E->getArraySize()) {
8774     const Expr *Stripped = *ArraySize;
8775     for (; auto *ICE = dyn_cast<ImplicitCastExpr>(Stripped);
8776          Stripped = ICE->getSubExpr())
8777       if (ICE->getCastKind() != CK_NoOp &&
8778           ICE->getCastKind() != CK_IntegralCast)
8779         break;
8780 
8781     llvm::APSInt ArrayBound;
8782     if (!EvaluateInteger(Stripped, ArrayBound, Info))
8783       return false;
8784 
8785     // C++ [expr.new]p9:
8786     //   The expression is erroneous if:
8787     //   -- [...] its value before converting to size_t [or] applying the
8788     //      second standard conversion sequence is less than zero
8789     if (ArrayBound.isSigned() && ArrayBound.isNegative()) {
8790       if (IsNothrow)
8791         return ZeroInitialization(E);
8792 
8793       Info.FFDiag(*ArraySize, diag::note_constexpr_new_negative)
8794           << ArrayBound << (*ArraySize)->getSourceRange();
8795       return false;
8796     }
8797 
8798     //   -- its value is such that the size of the allocated object would
8799     //      exceed the implementation-defined limit
8800     if (ConstantArrayType::getNumAddressingBits(Info.Ctx, AllocType,
8801                                                 ArrayBound) >
8802         ConstantArrayType::getMaxSizeBits(Info.Ctx)) {
8803       if (IsNothrow)
8804         return ZeroInitialization(E);
8805 
8806       Info.FFDiag(*ArraySize, diag::note_constexpr_new_too_large)
8807         << ArrayBound << (*ArraySize)->getSourceRange();
8808       return false;
8809     }
8810 
8811     //   -- the new-initializer is a braced-init-list and the number of
8812     //      array elements for which initializers are provided [...]
8813     //      exceeds the number of elements to initialize
8814     if (Init && !isa<CXXConstructExpr>(Init)) {
8815       auto *CAT = Info.Ctx.getAsConstantArrayType(Init->getType());
8816       assert(CAT && "unexpected type for array initializer");
8817 
8818       unsigned Bits =
8819           std::max(CAT->getSize().getBitWidth(), ArrayBound.getBitWidth());
8820       llvm::APInt InitBound = CAT->getSize().zextOrSelf(Bits);
8821       llvm::APInt AllocBound = ArrayBound.zextOrSelf(Bits);
8822       if (InitBound.ugt(AllocBound)) {
8823         if (IsNothrow)
8824           return ZeroInitialization(E);
8825 
8826         Info.FFDiag(*ArraySize, diag::note_constexpr_new_too_small)
8827             << AllocBound.toString(10, /*Signed=*/false)
8828             << InitBound.toString(10, /*Signed=*/false)
8829             << (*ArraySize)->getSourceRange();
8830         return false;
8831       }
8832 
8833       // If the sizes differ, we must have an initializer list, and we need
8834       // special handling for this case when we initialize.
8835       if (InitBound != AllocBound)
8836         ResizedArrayILE = cast<InitListExpr>(Init);
8837     } else if (Init) {
8838       ResizedArrayCCE = cast<CXXConstructExpr>(Init);
8839     }
8840 
8841     AllocType = Info.Ctx.getConstantArrayType(AllocType, ArrayBound, nullptr,
8842                                               ArrayType::Normal, 0);
8843   } else {
8844     assert(!AllocType->isArrayType() &&
8845            "array allocation with non-array new");
8846   }
8847 
8848   APValue *Val;
8849   if (IsPlacement) {
8850     AccessKinds AK = AK_Construct;
8851     struct FindObjectHandler {
8852       EvalInfo &Info;
8853       const Expr *E;
8854       QualType AllocType;
8855       const AccessKinds AccessKind;
8856       APValue *Value;
8857 
8858       typedef bool result_type;
8859       bool failed() { return false; }
8860       bool found(APValue &Subobj, QualType SubobjType) {
8861         // FIXME: Reject the cases where [basic.life]p8 would not permit the
8862         // old name of the object to be used to name the new object.
8863         if (!Info.Ctx.hasSameUnqualifiedType(SubobjType, AllocType)) {
8864           Info.FFDiag(E, diag::note_constexpr_placement_new_wrong_type) <<
8865             SubobjType << AllocType;
8866           return false;
8867         }
8868         Value = &Subobj;
8869         return true;
8870       }
8871       bool found(APSInt &Value, QualType SubobjType) {
8872         Info.FFDiag(E, diag::note_constexpr_construct_complex_elem);
8873         return false;
8874       }
8875       bool found(APFloat &Value, QualType SubobjType) {
8876         Info.FFDiag(E, diag::note_constexpr_construct_complex_elem);
8877         return false;
8878       }
8879     } Handler = {Info, E, AllocType, AK, nullptr};
8880 
8881     CompleteObject Obj = findCompleteObject(Info, E, AK, Result, AllocType);
8882     if (!Obj || !findSubobject(Info, E, Obj, Result.Designator, Handler))
8883       return false;
8884 
8885     Val = Handler.Value;
8886 
8887     // [basic.life]p1:
8888     //   The lifetime of an object o of type T ends when [...] the storage
8889     //   which the object occupies is [...] reused by an object that is not
8890     //   nested within o (6.6.2).
8891     *Val = APValue();
8892   } else {
8893     // Perform the allocation and obtain a pointer to the resulting object.
8894     Val = Info.createHeapAlloc(E, AllocType, Result);
8895     if (!Val)
8896       return false;
8897   }
8898 
8899   if (ResizedArrayILE) {
8900     if (!EvaluateArrayNewInitList(Info, Result, *Val, ResizedArrayILE,
8901                                   AllocType))
8902       return false;
8903   } else if (ResizedArrayCCE) {
8904     if (!EvaluateArrayNewConstructExpr(Info, Result, *Val, ResizedArrayCCE,
8905                                        AllocType))
8906       return false;
8907   } else if (Init) {
8908     if (!EvaluateInPlace(*Val, Info, Result, Init))
8909       return false;
8910   } else {
8911     *Val = getDefaultInitValue(AllocType);
8912   }
8913 
8914   // Array new returns a pointer to the first element, not a pointer to the
8915   // array.
8916   if (auto *AT = AllocType->getAsArrayTypeUnsafe())
8917     Result.addArray(Info, E, cast<ConstantArrayType>(AT));
8918 
8919   return true;
8920 }
8921 //===----------------------------------------------------------------------===//
8922 // Member Pointer Evaluation
8923 //===----------------------------------------------------------------------===//
8924 
8925 namespace {
8926 class MemberPointerExprEvaluator
8927   : public ExprEvaluatorBase<MemberPointerExprEvaluator> {
8928   MemberPtr &Result;
8929 
8930   bool Success(const ValueDecl *D) {
8931     Result = MemberPtr(D);
8932     return true;
8933   }
8934 public:
8935 
8936   MemberPointerExprEvaluator(EvalInfo &Info, MemberPtr &Result)
8937     : ExprEvaluatorBaseTy(Info), Result(Result) {}
8938 
8939   bool Success(const APValue &V, const Expr *E) {
8940     Result.setFrom(V);
8941     return true;
8942   }
8943   bool ZeroInitialization(const Expr *E) {
8944     return Success((const ValueDecl*)nullptr);
8945   }
8946 
8947   bool VisitCastExpr(const CastExpr *E);
8948   bool VisitUnaryAddrOf(const UnaryOperator *E);
8949 };
8950 } // end anonymous namespace
8951 
8952 static bool EvaluateMemberPointer(const Expr *E, MemberPtr &Result,
8953                                   EvalInfo &Info) {
8954   assert(E->isRValue() && E->getType()->isMemberPointerType());
8955   return MemberPointerExprEvaluator(Info, Result).Visit(E);
8956 }
8957 
8958 bool MemberPointerExprEvaluator::VisitCastExpr(const CastExpr *E) {
8959   switch (E->getCastKind()) {
8960   default:
8961     return ExprEvaluatorBaseTy::VisitCastExpr(E);
8962 
8963   case CK_NullToMemberPointer:
8964     VisitIgnoredValue(E->getSubExpr());
8965     return ZeroInitialization(E);
8966 
8967   case CK_BaseToDerivedMemberPointer: {
8968     if (!Visit(E->getSubExpr()))
8969       return false;
8970     if (E->path_empty())
8971       return true;
8972     // Base-to-derived member pointer casts store the path in derived-to-base
8973     // order, so iterate backwards. The CXXBaseSpecifier also provides us with
8974     // the wrong end of the derived->base arc, so stagger the path by one class.
8975     typedef std::reverse_iterator<CastExpr::path_const_iterator> ReverseIter;
8976     for (ReverseIter PathI(E->path_end() - 1), PathE(E->path_begin());
8977          PathI != PathE; ++PathI) {
8978       assert(!(*PathI)->isVirtual() && "memptr cast through vbase");
8979       const CXXRecordDecl *Derived = (*PathI)->getType()->getAsCXXRecordDecl();
8980       if (!Result.castToDerived(Derived))
8981         return Error(E);
8982     }
8983     const Type *FinalTy = E->getType()->castAs<MemberPointerType>()->getClass();
8984     if (!Result.castToDerived(FinalTy->getAsCXXRecordDecl()))
8985       return Error(E);
8986     return true;
8987   }
8988 
8989   case CK_DerivedToBaseMemberPointer:
8990     if (!Visit(E->getSubExpr()))
8991       return false;
8992     for (CastExpr::path_const_iterator PathI = E->path_begin(),
8993          PathE = E->path_end(); PathI != PathE; ++PathI) {
8994       assert(!(*PathI)->isVirtual() && "memptr cast through vbase");
8995       const CXXRecordDecl *Base = (*PathI)->getType()->getAsCXXRecordDecl();
8996       if (!Result.castToBase(Base))
8997         return Error(E);
8998     }
8999     return true;
9000   }
9001 }
9002 
9003 bool MemberPointerExprEvaluator::VisitUnaryAddrOf(const UnaryOperator *E) {
9004   // C++11 [expr.unary.op]p3 has very strict rules on how the address of a
9005   // member can be formed.
9006   return Success(cast<DeclRefExpr>(E->getSubExpr())->getDecl());
9007 }
9008 
9009 //===----------------------------------------------------------------------===//
9010 // Record Evaluation
9011 //===----------------------------------------------------------------------===//
9012 
9013 namespace {
9014   class RecordExprEvaluator
9015   : public ExprEvaluatorBase<RecordExprEvaluator> {
9016     const LValue &This;
9017     APValue &Result;
9018   public:
9019 
9020     RecordExprEvaluator(EvalInfo &info, const LValue &This, APValue &Result)
9021       : ExprEvaluatorBaseTy(info), This(This), Result(Result) {}
9022 
9023     bool Success(const APValue &V, const Expr *E) {
9024       Result = V;
9025       return true;
9026     }
9027     bool ZeroInitialization(const Expr *E) {
9028       return ZeroInitialization(E, E->getType());
9029     }
9030     bool ZeroInitialization(const Expr *E, QualType T);
9031 
9032     bool VisitCallExpr(const CallExpr *E) {
9033       return handleCallExpr(E, Result, &This);
9034     }
9035     bool VisitCastExpr(const CastExpr *E);
9036     bool VisitInitListExpr(const InitListExpr *E);
9037     bool VisitCXXConstructExpr(const CXXConstructExpr *E) {
9038       return VisitCXXConstructExpr(E, E->getType());
9039     }
9040     bool VisitLambdaExpr(const LambdaExpr *E);
9041     bool VisitCXXInheritedCtorInitExpr(const CXXInheritedCtorInitExpr *E);
9042     bool VisitCXXConstructExpr(const CXXConstructExpr *E, QualType T);
9043     bool VisitCXXStdInitializerListExpr(const CXXStdInitializerListExpr *E);
9044     bool VisitBinCmp(const BinaryOperator *E);
9045   };
9046 }
9047 
9048 /// Perform zero-initialization on an object of non-union class type.
9049 /// C++11 [dcl.init]p5:
9050 ///  To zero-initialize an object or reference of type T means:
9051 ///    [...]
9052 ///    -- if T is a (possibly cv-qualified) non-union class type,
9053 ///       each non-static data member and each base-class subobject is
9054 ///       zero-initialized
9055 static bool HandleClassZeroInitialization(EvalInfo &Info, const Expr *E,
9056                                           const RecordDecl *RD,
9057                                           const LValue &This, APValue &Result) {
9058   assert(!RD->isUnion() && "Expected non-union class type");
9059   const CXXRecordDecl *CD = dyn_cast<CXXRecordDecl>(RD);
9060   Result = APValue(APValue::UninitStruct(), CD ? CD->getNumBases() : 0,
9061                    std::distance(RD->field_begin(), RD->field_end()));
9062 
9063   if (RD->isInvalidDecl()) return false;
9064   const ASTRecordLayout &Layout = Info.Ctx.getASTRecordLayout(RD);
9065 
9066   if (CD) {
9067     unsigned Index = 0;
9068     for (CXXRecordDecl::base_class_const_iterator I = CD->bases_begin(),
9069            End = CD->bases_end(); I != End; ++I, ++Index) {
9070       const CXXRecordDecl *Base = I->getType()->getAsCXXRecordDecl();
9071       LValue Subobject = This;
9072       if (!HandleLValueDirectBase(Info, E, Subobject, CD, Base, &Layout))
9073         return false;
9074       if (!HandleClassZeroInitialization(Info, E, Base, Subobject,
9075                                          Result.getStructBase(Index)))
9076         return false;
9077     }
9078   }
9079 
9080   for (const auto *I : RD->fields()) {
9081     // -- if T is a reference type, no initialization is performed.
9082     if (I->getType()->isReferenceType())
9083       continue;
9084 
9085     LValue Subobject = This;
9086     if (!HandleLValueMember(Info, E, Subobject, I, &Layout))
9087       return false;
9088 
9089     ImplicitValueInitExpr VIE(I->getType());
9090     if (!EvaluateInPlace(
9091           Result.getStructField(I->getFieldIndex()), Info, Subobject, &VIE))
9092       return false;
9093   }
9094 
9095   return true;
9096 }
9097 
9098 bool RecordExprEvaluator::ZeroInitialization(const Expr *E, QualType T) {
9099   const RecordDecl *RD = T->castAs<RecordType>()->getDecl();
9100   if (RD->isInvalidDecl()) return false;
9101   if (RD->isUnion()) {
9102     // C++11 [dcl.init]p5: If T is a (possibly cv-qualified) union type, the
9103     // object's first non-static named data member is zero-initialized
9104     RecordDecl::field_iterator I = RD->field_begin();
9105     if (I == RD->field_end()) {
9106       Result = APValue((const FieldDecl*)nullptr);
9107       return true;
9108     }
9109 
9110     LValue Subobject = This;
9111     if (!HandleLValueMember(Info, E, Subobject, *I))
9112       return false;
9113     Result = APValue(*I);
9114     ImplicitValueInitExpr VIE(I->getType());
9115     return EvaluateInPlace(Result.getUnionValue(), Info, Subobject, &VIE);
9116   }
9117 
9118   if (isa<CXXRecordDecl>(RD) && cast<CXXRecordDecl>(RD)->getNumVBases()) {
9119     Info.FFDiag(E, diag::note_constexpr_virtual_base) << RD;
9120     return false;
9121   }
9122 
9123   return HandleClassZeroInitialization(Info, E, RD, This, Result);
9124 }
9125 
9126 bool RecordExprEvaluator::VisitCastExpr(const CastExpr *E) {
9127   switch (E->getCastKind()) {
9128   default:
9129     return ExprEvaluatorBaseTy::VisitCastExpr(E);
9130 
9131   case CK_ConstructorConversion:
9132     return Visit(E->getSubExpr());
9133 
9134   case CK_DerivedToBase:
9135   case CK_UncheckedDerivedToBase: {
9136     APValue DerivedObject;
9137     if (!Evaluate(DerivedObject, Info, E->getSubExpr()))
9138       return false;
9139     if (!DerivedObject.isStruct())
9140       return Error(E->getSubExpr());
9141 
9142     // Derived-to-base rvalue conversion: just slice off the derived part.
9143     APValue *Value = &DerivedObject;
9144     const CXXRecordDecl *RD = E->getSubExpr()->getType()->getAsCXXRecordDecl();
9145     for (CastExpr::path_const_iterator PathI = E->path_begin(),
9146          PathE = E->path_end(); PathI != PathE; ++PathI) {
9147       assert(!(*PathI)->isVirtual() && "record rvalue with virtual base");
9148       const CXXRecordDecl *Base = (*PathI)->getType()->getAsCXXRecordDecl();
9149       Value = &Value->getStructBase(getBaseIndex(RD, Base));
9150       RD = Base;
9151     }
9152     Result = *Value;
9153     return true;
9154   }
9155   }
9156 }
9157 
9158 bool RecordExprEvaluator::VisitInitListExpr(const InitListExpr *E) {
9159   if (E->isTransparent())
9160     return Visit(E->getInit(0));
9161 
9162   const RecordDecl *RD = E->getType()->castAs<RecordType>()->getDecl();
9163   if (RD->isInvalidDecl()) return false;
9164   const ASTRecordLayout &Layout = Info.Ctx.getASTRecordLayout(RD);
9165   auto *CXXRD = dyn_cast<CXXRecordDecl>(RD);
9166 
9167   EvalInfo::EvaluatingConstructorRAII EvalObj(
9168       Info,
9169       ObjectUnderConstruction{This.getLValueBase(), This.Designator.Entries},
9170       CXXRD && CXXRD->getNumBases());
9171 
9172   if (RD->isUnion()) {
9173     const FieldDecl *Field = E->getInitializedFieldInUnion();
9174     Result = APValue(Field);
9175     if (!Field)
9176       return true;
9177 
9178     // If the initializer list for a union does not contain any elements, the
9179     // first element of the union is value-initialized.
9180     // FIXME: The element should be initialized from an initializer list.
9181     //        Is this difference ever observable for initializer lists which
9182     //        we don't build?
9183     ImplicitValueInitExpr VIE(Field->getType());
9184     const Expr *InitExpr = E->getNumInits() ? E->getInit(0) : &VIE;
9185 
9186     LValue Subobject = This;
9187     if (!HandleLValueMember(Info, InitExpr, Subobject, Field, &Layout))
9188       return false;
9189 
9190     // Temporarily override This, in case there's a CXXDefaultInitExpr in here.
9191     ThisOverrideRAII ThisOverride(*Info.CurrentCall, &This,
9192                                   isa<CXXDefaultInitExpr>(InitExpr));
9193 
9194     return EvaluateInPlace(Result.getUnionValue(), Info, Subobject, InitExpr);
9195   }
9196 
9197   if (!Result.hasValue())
9198     Result = APValue(APValue::UninitStruct(), CXXRD ? CXXRD->getNumBases() : 0,
9199                      std::distance(RD->field_begin(), RD->field_end()));
9200   unsigned ElementNo = 0;
9201   bool Success = true;
9202 
9203   // Initialize base classes.
9204   if (CXXRD && CXXRD->getNumBases()) {
9205     for (const auto &Base : CXXRD->bases()) {
9206       assert(ElementNo < E->getNumInits() && "missing init for base class");
9207       const Expr *Init = E->getInit(ElementNo);
9208 
9209       LValue Subobject = This;
9210       if (!HandleLValueBase(Info, Init, Subobject, CXXRD, &Base))
9211         return false;
9212 
9213       APValue &FieldVal = Result.getStructBase(ElementNo);
9214       if (!EvaluateInPlace(FieldVal, Info, Subobject, Init)) {
9215         if (!Info.noteFailure())
9216           return false;
9217         Success = false;
9218       }
9219       ++ElementNo;
9220     }
9221 
9222     EvalObj.finishedConstructingBases();
9223   }
9224 
9225   // Initialize members.
9226   for (const auto *Field : RD->fields()) {
9227     // Anonymous bit-fields are not considered members of the class for
9228     // purposes of aggregate initialization.
9229     if (Field->isUnnamedBitfield())
9230       continue;
9231 
9232     LValue Subobject = This;
9233 
9234     bool HaveInit = ElementNo < E->getNumInits();
9235 
9236     // FIXME: Diagnostics here should point to the end of the initializer
9237     // list, not the start.
9238     if (!HandleLValueMember(Info, HaveInit ? E->getInit(ElementNo) : E,
9239                             Subobject, Field, &Layout))
9240       return false;
9241 
9242     // Perform an implicit value-initialization for members beyond the end of
9243     // the initializer list.
9244     ImplicitValueInitExpr VIE(HaveInit ? Info.Ctx.IntTy : Field->getType());
9245     const Expr *Init = HaveInit ? E->getInit(ElementNo++) : &VIE;
9246 
9247     // Temporarily override This, in case there's a CXXDefaultInitExpr in here.
9248     ThisOverrideRAII ThisOverride(*Info.CurrentCall, &This,
9249                                   isa<CXXDefaultInitExpr>(Init));
9250 
9251     APValue &FieldVal = Result.getStructField(Field->getFieldIndex());
9252     if (!EvaluateInPlace(FieldVal, Info, Subobject, Init) ||
9253         (Field->isBitField() && !truncateBitfieldValue(Info, Init,
9254                                                        FieldVal, Field))) {
9255       if (!Info.noteFailure())
9256         return false;
9257       Success = false;
9258     }
9259   }
9260 
9261   EvalObj.finishedConstructingFields();
9262 
9263   return Success;
9264 }
9265 
9266 bool RecordExprEvaluator::VisitCXXConstructExpr(const CXXConstructExpr *E,
9267                                                 QualType T) {
9268   // Note that E's type is not necessarily the type of our class here; we might
9269   // be initializing an array element instead.
9270   const CXXConstructorDecl *FD = E->getConstructor();
9271   if (FD->isInvalidDecl() || FD->getParent()->isInvalidDecl()) return false;
9272 
9273   bool ZeroInit = E->requiresZeroInitialization();
9274   if (CheckTrivialDefaultConstructor(Info, E->getExprLoc(), FD, ZeroInit)) {
9275     // If we've already performed zero-initialization, we're already done.
9276     if (Result.hasValue())
9277       return true;
9278 
9279     if (ZeroInit)
9280       return ZeroInitialization(E, T);
9281 
9282     Result = getDefaultInitValue(T);
9283     return true;
9284   }
9285 
9286   const FunctionDecl *Definition = nullptr;
9287   auto Body = FD->getBody(Definition);
9288 
9289   if (!CheckConstexprFunction(Info, E->getExprLoc(), FD, Definition, Body))
9290     return false;
9291 
9292   // Avoid materializing a temporary for an elidable copy/move constructor.
9293   if (E->isElidable() && !ZeroInit)
9294     if (const MaterializeTemporaryExpr *ME
9295           = dyn_cast<MaterializeTemporaryExpr>(E->getArg(0)))
9296       return Visit(ME->getSubExpr());
9297 
9298   if (ZeroInit && !ZeroInitialization(E, T))
9299     return false;
9300 
9301   auto Args = llvm::makeArrayRef(E->getArgs(), E->getNumArgs());
9302   return HandleConstructorCall(E, This, Args,
9303                                cast<CXXConstructorDecl>(Definition), Info,
9304                                Result);
9305 }
9306 
9307 bool RecordExprEvaluator::VisitCXXInheritedCtorInitExpr(
9308     const CXXInheritedCtorInitExpr *E) {
9309   if (!Info.CurrentCall) {
9310     assert(Info.checkingPotentialConstantExpression());
9311     return false;
9312   }
9313 
9314   const CXXConstructorDecl *FD = E->getConstructor();
9315   if (FD->isInvalidDecl() || FD->getParent()->isInvalidDecl())
9316     return false;
9317 
9318   const FunctionDecl *Definition = nullptr;
9319   auto Body = FD->getBody(Definition);
9320 
9321   if (!CheckConstexprFunction(Info, E->getExprLoc(), FD, Definition, Body))
9322     return false;
9323 
9324   return HandleConstructorCall(E, This, Info.CurrentCall->Arguments,
9325                                cast<CXXConstructorDecl>(Definition), Info,
9326                                Result);
9327 }
9328 
9329 bool RecordExprEvaluator::VisitCXXStdInitializerListExpr(
9330     const CXXStdInitializerListExpr *E) {
9331   const ConstantArrayType *ArrayType =
9332       Info.Ctx.getAsConstantArrayType(E->getSubExpr()->getType());
9333 
9334   LValue Array;
9335   if (!EvaluateLValue(E->getSubExpr(), Array, Info))
9336     return false;
9337 
9338   // Get a pointer to the first element of the array.
9339   Array.addArray(Info, E, ArrayType);
9340 
9341   auto InvalidType = [&] {
9342     Info.FFDiag(E, diag::note_constexpr_unsupported_layout)
9343       << E->getType();
9344     return false;
9345   };
9346 
9347   // FIXME: Perform the checks on the field types in SemaInit.
9348   RecordDecl *Record = E->getType()->castAs<RecordType>()->getDecl();
9349   RecordDecl::field_iterator Field = Record->field_begin();
9350   if (Field == Record->field_end())
9351     return InvalidType();
9352 
9353   // Start pointer.
9354   if (!Field->getType()->isPointerType() ||
9355       !Info.Ctx.hasSameType(Field->getType()->getPointeeType(),
9356                             ArrayType->getElementType()))
9357     return InvalidType();
9358 
9359   // FIXME: What if the initializer_list type has base classes, etc?
9360   Result = APValue(APValue::UninitStruct(), 0, 2);
9361   Array.moveInto(Result.getStructField(0));
9362 
9363   if (++Field == Record->field_end())
9364     return InvalidType();
9365 
9366   if (Field->getType()->isPointerType() &&
9367       Info.Ctx.hasSameType(Field->getType()->getPointeeType(),
9368                            ArrayType->getElementType())) {
9369     // End pointer.
9370     if (!HandleLValueArrayAdjustment(Info, E, Array,
9371                                      ArrayType->getElementType(),
9372                                      ArrayType->getSize().getZExtValue()))
9373       return false;
9374     Array.moveInto(Result.getStructField(1));
9375   } else if (Info.Ctx.hasSameType(Field->getType(), Info.Ctx.getSizeType()))
9376     // Length.
9377     Result.getStructField(1) = APValue(APSInt(ArrayType->getSize()));
9378   else
9379     return InvalidType();
9380 
9381   if (++Field != Record->field_end())
9382     return InvalidType();
9383 
9384   return true;
9385 }
9386 
9387 bool RecordExprEvaluator::VisitLambdaExpr(const LambdaExpr *E) {
9388   const CXXRecordDecl *ClosureClass = E->getLambdaClass();
9389   if (ClosureClass->isInvalidDecl())
9390     return false;
9391 
9392   const size_t NumFields =
9393       std::distance(ClosureClass->field_begin(), ClosureClass->field_end());
9394 
9395   assert(NumFields == (size_t)std::distance(E->capture_init_begin(),
9396                                             E->capture_init_end()) &&
9397          "The number of lambda capture initializers should equal the number of "
9398          "fields within the closure type");
9399 
9400   Result = APValue(APValue::UninitStruct(), /*NumBases*/0, NumFields);
9401   // Iterate through all the lambda's closure object's fields and initialize
9402   // them.
9403   auto *CaptureInitIt = E->capture_init_begin();
9404   const LambdaCapture *CaptureIt = ClosureClass->captures_begin();
9405   bool Success = true;
9406   for (const auto *Field : ClosureClass->fields()) {
9407     assert(CaptureInitIt != E->capture_init_end());
9408     // Get the initializer for this field
9409     Expr *const CurFieldInit = *CaptureInitIt++;
9410 
9411     // If there is no initializer, either this is a VLA or an error has
9412     // occurred.
9413     if (!CurFieldInit)
9414       return Error(E);
9415 
9416     APValue &FieldVal = Result.getStructField(Field->getFieldIndex());
9417     if (!EvaluateInPlace(FieldVal, Info, This, CurFieldInit)) {
9418       if (!Info.keepEvaluatingAfterFailure())
9419         return false;
9420       Success = false;
9421     }
9422     ++CaptureIt;
9423   }
9424   return Success;
9425 }
9426 
9427 static bool EvaluateRecord(const Expr *E, const LValue &This,
9428                            APValue &Result, EvalInfo &Info) {
9429   assert(E->isRValue() && E->getType()->isRecordType() &&
9430          "can't evaluate expression as a record rvalue");
9431   return RecordExprEvaluator(Info, This, Result).Visit(E);
9432 }
9433 
9434 //===----------------------------------------------------------------------===//
9435 // Temporary Evaluation
9436 //
9437 // Temporaries are represented in the AST as rvalues, but generally behave like
9438 // lvalues. The full-object of which the temporary is a subobject is implicitly
9439 // materialized so that a reference can bind to it.
9440 //===----------------------------------------------------------------------===//
9441 namespace {
9442 class TemporaryExprEvaluator
9443   : public LValueExprEvaluatorBase<TemporaryExprEvaluator> {
9444 public:
9445   TemporaryExprEvaluator(EvalInfo &Info, LValue &Result) :
9446     LValueExprEvaluatorBaseTy(Info, Result, false) {}
9447 
9448   /// Visit an expression which constructs the value of this temporary.
9449   bool VisitConstructExpr(const Expr *E) {
9450     APValue &Value =
9451         Info.CurrentCall->createTemporary(E, E->getType(), false, Result);
9452     return EvaluateInPlace(Value, Info, Result, E);
9453   }
9454 
9455   bool VisitCastExpr(const CastExpr *E) {
9456     switch (E->getCastKind()) {
9457     default:
9458       return LValueExprEvaluatorBaseTy::VisitCastExpr(E);
9459 
9460     case CK_ConstructorConversion:
9461       return VisitConstructExpr(E->getSubExpr());
9462     }
9463   }
9464   bool VisitInitListExpr(const InitListExpr *E) {
9465     return VisitConstructExpr(E);
9466   }
9467   bool VisitCXXConstructExpr(const CXXConstructExpr *E) {
9468     return VisitConstructExpr(E);
9469   }
9470   bool VisitCallExpr(const CallExpr *E) {
9471     return VisitConstructExpr(E);
9472   }
9473   bool VisitCXXStdInitializerListExpr(const CXXStdInitializerListExpr *E) {
9474     return VisitConstructExpr(E);
9475   }
9476   bool VisitLambdaExpr(const LambdaExpr *E) {
9477     return VisitConstructExpr(E);
9478   }
9479 };
9480 } // end anonymous namespace
9481 
9482 /// Evaluate an expression of record type as a temporary.
9483 static bool EvaluateTemporary(const Expr *E, LValue &Result, EvalInfo &Info) {
9484   assert(E->isRValue() && E->getType()->isRecordType());
9485   return TemporaryExprEvaluator(Info, Result).Visit(E);
9486 }
9487 
9488 //===----------------------------------------------------------------------===//
9489 // Vector Evaluation
9490 //===----------------------------------------------------------------------===//
9491 
9492 namespace {
9493   class VectorExprEvaluator
9494   : public ExprEvaluatorBase<VectorExprEvaluator> {
9495     APValue &Result;
9496   public:
9497 
9498     VectorExprEvaluator(EvalInfo &info, APValue &Result)
9499       : ExprEvaluatorBaseTy(info), Result(Result) {}
9500 
9501     bool Success(ArrayRef<APValue> V, const Expr *E) {
9502       assert(V.size() == E->getType()->castAs<VectorType>()->getNumElements());
9503       // FIXME: remove this APValue copy.
9504       Result = APValue(V.data(), V.size());
9505       return true;
9506     }
9507     bool Success(const APValue &V, const Expr *E) {
9508       assert(V.isVector());
9509       Result = V;
9510       return true;
9511     }
9512     bool ZeroInitialization(const Expr *E);
9513 
9514     bool VisitUnaryReal(const UnaryOperator *E)
9515       { return Visit(E->getSubExpr()); }
9516     bool VisitCastExpr(const CastExpr* E);
9517     bool VisitInitListExpr(const InitListExpr *E);
9518     bool VisitUnaryImag(const UnaryOperator *E);
9519     // FIXME: Missing: unary -, unary ~, binary add/sub/mul/div,
9520     //                 binary comparisons, binary and/or/xor,
9521     //                 conditional operator (for GNU conditional select),
9522     //                 shufflevector, ExtVectorElementExpr
9523   };
9524 } // end anonymous namespace
9525 
9526 static bool EvaluateVector(const Expr* E, APValue& Result, EvalInfo &Info) {
9527   assert(E->isRValue() && E->getType()->isVectorType() &&"not a vector rvalue");
9528   return VectorExprEvaluator(Info, Result).Visit(E);
9529 }
9530 
9531 bool VectorExprEvaluator::VisitCastExpr(const CastExpr *E) {
9532   const VectorType *VTy = E->getType()->castAs<VectorType>();
9533   unsigned NElts = VTy->getNumElements();
9534 
9535   const Expr *SE = E->getSubExpr();
9536   QualType SETy = SE->getType();
9537 
9538   switch (E->getCastKind()) {
9539   case CK_VectorSplat: {
9540     APValue Val = APValue();
9541     if (SETy->isIntegerType()) {
9542       APSInt IntResult;
9543       if (!EvaluateInteger(SE, IntResult, Info))
9544         return false;
9545       Val = APValue(std::move(IntResult));
9546     } else if (SETy->isRealFloatingType()) {
9547       APFloat FloatResult(0.0);
9548       if (!EvaluateFloat(SE, FloatResult, Info))
9549         return false;
9550       Val = APValue(std::move(FloatResult));
9551     } else {
9552       return Error(E);
9553     }
9554 
9555     // Splat and create vector APValue.
9556     SmallVector<APValue, 4> Elts(NElts, Val);
9557     return Success(Elts, E);
9558   }
9559   case CK_BitCast: {
9560     // Evaluate the operand into an APInt we can extract from.
9561     llvm::APInt SValInt;
9562     if (!EvalAndBitcastToAPInt(Info, SE, SValInt))
9563       return false;
9564     // Extract the elements
9565     QualType EltTy = VTy->getElementType();
9566     unsigned EltSize = Info.Ctx.getTypeSize(EltTy);
9567     bool BigEndian = Info.Ctx.getTargetInfo().isBigEndian();
9568     SmallVector<APValue, 4> Elts;
9569     if (EltTy->isRealFloatingType()) {
9570       const llvm::fltSemantics &Sem = Info.Ctx.getFloatTypeSemantics(EltTy);
9571       unsigned FloatEltSize = EltSize;
9572       if (&Sem == &APFloat::x87DoubleExtended())
9573         FloatEltSize = 80;
9574       for (unsigned i = 0; i < NElts; i++) {
9575         llvm::APInt Elt;
9576         if (BigEndian)
9577           Elt = SValInt.rotl(i*EltSize+FloatEltSize).trunc(FloatEltSize);
9578         else
9579           Elt = SValInt.rotr(i*EltSize).trunc(FloatEltSize);
9580         Elts.push_back(APValue(APFloat(Sem, Elt)));
9581       }
9582     } else if (EltTy->isIntegerType()) {
9583       for (unsigned i = 0; i < NElts; i++) {
9584         llvm::APInt Elt;
9585         if (BigEndian)
9586           Elt = SValInt.rotl(i*EltSize+EltSize).zextOrTrunc(EltSize);
9587         else
9588           Elt = SValInt.rotr(i*EltSize).zextOrTrunc(EltSize);
9589         Elts.push_back(APValue(APSInt(Elt, EltTy->isSignedIntegerType())));
9590       }
9591     } else {
9592       return Error(E);
9593     }
9594     return Success(Elts, E);
9595   }
9596   default:
9597     return ExprEvaluatorBaseTy::VisitCastExpr(E);
9598   }
9599 }
9600 
9601 bool
9602 VectorExprEvaluator::VisitInitListExpr(const InitListExpr *E) {
9603   const VectorType *VT = E->getType()->castAs<VectorType>();
9604   unsigned NumInits = E->getNumInits();
9605   unsigned NumElements = VT->getNumElements();
9606 
9607   QualType EltTy = VT->getElementType();
9608   SmallVector<APValue, 4> Elements;
9609 
9610   // The number of initializers can be less than the number of
9611   // vector elements. For OpenCL, this can be due to nested vector
9612   // initialization. For GCC compatibility, missing trailing elements
9613   // should be initialized with zeroes.
9614   unsigned CountInits = 0, CountElts = 0;
9615   while (CountElts < NumElements) {
9616     // Handle nested vector initialization.
9617     if (CountInits < NumInits
9618         && E->getInit(CountInits)->getType()->isVectorType()) {
9619       APValue v;
9620       if (!EvaluateVector(E->getInit(CountInits), v, Info))
9621         return Error(E);
9622       unsigned vlen = v.getVectorLength();
9623       for (unsigned j = 0; j < vlen; j++)
9624         Elements.push_back(v.getVectorElt(j));
9625       CountElts += vlen;
9626     } else if (EltTy->isIntegerType()) {
9627       llvm::APSInt sInt(32);
9628       if (CountInits < NumInits) {
9629         if (!EvaluateInteger(E->getInit(CountInits), sInt, Info))
9630           return false;
9631       } else // trailing integer zero.
9632         sInt = Info.Ctx.MakeIntValue(0, EltTy);
9633       Elements.push_back(APValue(sInt));
9634       CountElts++;
9635     } else {
9636       llvm::APFloat f(0.0);
9637       if (CountInits < NumInits) {
9638         if (!EvaluateFloat(E->getInit(CountInits), f, Info))
9639           return false;
9640       } else // trailing float zero.
9641         f = APFloat::getZero(Info.Ctx.getFloatTypeSemantics(EltTy));
9642       Elements.push_back(APValue(f));
9643       CountElts++;
9644     }
9645     CountInits++;
9646   }
9647   return Success(Elements, E);
9648 }
9649 
9650 bool
9651 VectorExprEvaluator::ZeroInitialization(const Expr *E) {
9652   const auto *VT = E->getType()->castAs<VectorType>();
9653   QualType EltTy = VT->getElementType();
9654   APValue ZeroElement;
9655   if (EltTy->isIntegerType())
9656     ZeroElement = APValue(Info.Ctx.MakeIntValue(0, EltTy));
9657   else
9658     ZeroElement =
9659         APValue(APFloat::getZero(Info.Ctx.getFloatTypeSemantics(EltTy)));
9660 
9661   SmallVector<APValue, 4> Elements(VT->getNumElements(), ZeroElement);
9662   return Success(Elements, E);
9663 }
9664 
9665 bool VectorExprEvaluator::VisitUnaryImag(const UnaryOperator *E) {
9666   VisitIgnoredValue(E->getSubExpr());
9667   return ZeroInitialization(E);
9668 }
9669 
9670 //===----------------------------------------------------------------------===//
9671 // Array Evaluation
9672 //===----------------------------------------------------------------------===//
9673 
9674 namespace {
9675   class ArrayExprEvaluator
9676   : public ExprEvaluatorBase<ArrayExprEvaluator> {
9677     const LValue &This;
9678     APValue &Result;
9679   public:
9680 
9681     ArrayExprEvaluator(EvalInfo &Info, const LValue &This, APValue &Result)
9682       : ExprEvaluatorBaseTy(Info), This(This), Result(Result) {}
9683 
9684     bool Success(const APValue &V, const Expr *E) {
9685       assert(V.isArray() && "expected array");
9686       Result = V;
9687       return true;
9688     }
9689 
9690     bool ZeroInitialization(const Expr *E) {
9691       const ConstantArrayType *CAT =
9692           Info.Ctx.getAsConstantArrayType(E->getType());
9693       if (!CAT)
9694         return Error(E);
9695 
9696       Result = APValue(APValue::UninitArray(), 0,
9697                        CAT->getSize().getZExtValue());
9698       if (!Result.hasArrayFiller()) return true;
9699 
9700       // Zero-initialize all elements.
9701       LValue Subobject = This;
9702       Subobject.addArray(Info, E, CAT);
9703       ImplicitValueInitExpr VIE(CAT->getElementType());
9704       return EvaluateInPlace(Result.getArrayFiller(), Info, Subobject, &VIE);
9705     }
9706 
9707     bool VisitCallExpr(const CallExpr *E) {
9708       return handleCallExpr(E, Result, &This);
9709     }
9710     bool VisitInitListExpr(const InitListExpr *E,
9711                            QualType AllocType = QualType());
9712     bool VisitArrayInitLoopExpr(const ArrayInitLoopExpr *E);
9713     bool VisitCXXConstructExpr(const CXXConstructExpr *E);
9714     bool VisitCXXConstructExpr(const CXXConstructExpr *E,
9715                                const LValue &Subobject,
9716                                APValue *Value, QualType Type);
9717     bool VisitStringLiteral(const StringLiteral *E,
9718                             QualType AllocType = QualType()) {
9719       expandStringLiteral(Info, E, Result, AllocType);
9720       return true;
9721     }
9722   };
9723 } // end anonymous namespace
9724 
9725 static bool EvaluateArray(const Expr *E, const LValue &This,
9726                           APValue &Result, EvalInfo &Info) {
9727   assert(E->isRValue() && E->getType()->isArrayType() && "not an array rvalue");
9728   return ArrayExprEvaluator(Info, This, Result).Visit(E);
9729 }
9730 
9731 static bool EvaluateArrayNewInitList(EvalInfo &Info, LValue &This,
9732                                      APValue &Result, const InitListExpr *ILE,
9733                                      QualType AllocType) {
9734   assert(ILE->isRValue() && ILE->getType()->isArrayType() &&
9735          "not an array rvalue");
9736   return ArrayExprEvaluator(Info, This, Result)
9737       .VisitInitListExpr(ILE, AllocType);
9738 }
9739 
9740 static bool EvaluateArrayNewConstructExpr(EvalInfo &Info, LValue &This,
9741                                           APValue &Result,
9742                                           const CXXConstructExpr *CCE,
9743                                           QualType AllocType) {
9744   assert(CCE->isRValue() && CCE->getType()->isArrayType() &&
9745          "not an array rvalue");
9746   return ArrayExprEvaluator(Info, This, Result)
9747       .VisitCXXConstructExpr(CCE, This, &Result, AllocType);
9748 }
9749 
9750 // Return true iff the given array filler may depend on the element index.
9751 static bool MaybeElementDependentArrayFiller(const Expr *FillerExpr) {
9752   // For now, just whitelist non-class value-initialization and initialization
9753   // lists comprised of them.
9754   if (isa<ImplicitValueInitExpr>(FillerExpr))
9755     return false;
9756   if (const InitListExpr *ILE = dyn_cast<InitListExpr>(FillerExpr)) {
9757     for (unsigned I = 0, E = ILE->getNumInits(); I != E; ++I) {
9758       if (MaybeElementDependentArrayFiller(ILE->getInit(I)))
9759         return true;
9760     }
9761     return false;
9762   }
9763   return true;
9764 }
9765 
9766 bool ArrayExprEvaluator::VisitInitListExpr(const InitListExpr *E,
9767                                            QualType AllocType) {
9768   const ConstantArrayType *CAT = Info.Ctx.getAsConstantArrayType(
9769       AllocType.isNull() ? E->getType() : AllocType);
9770   if (!CAT)
9771     return Error(E);
9772 
9773   // C++11 [dcl.init.string]p1: A char array [...] can be initialized by [...]
9774   // an appropriately-typed string literal enclosed in braces.
9775   if (E->isStringLiteralInit()) {
9776     auto *SL = dyn_cast<StringLiteral>(E->getInit(0)->IgnoreParens());
9777     // FIXME: Support ObjCEncodeExpr here once we support it in
9778     // ArrayExprEvaluator generally.
9779     if (!SL)
9780       return Error(E);
9781     return VisitStringLiteral(SL, AllocType);
9782   }
9783 
9784   bool Success = true;
9785 
9786   assert((!Result.isArray() || Result.getArrayInitializedElts() == 0) &&
9787          "zero-initialized array shouldn't have any initialized elts");
9788   APValue Filler;
9789   if (Result.isArray() && Result.hasArrayFiller())
9790     Filler = Result.getArrayFiller();
9791 
9792   unsigned NumEltsToInit = E->getNumInits();
9793   unsigned NumElts = CAT->getSize().getZExtValue();
9794   const Expr *FillerExpr = E->hasArrayFiller() ? E->getArrayFiller() : nullptr;
9795 
9796   // If the initializer might depend on the array index, run it for each
9797   // array element.
9798   if (NumEltsToInit != NumElts && MaybeElementDependentArrayFiller(FillerExpr))
9799     NumEltsToInit = NumElts;
9800 
9801   LLVM_DEBUG(llvm::dbgs() << "The number of elements to initialize: "
9802                           << NumEltsToInit << ".\n");
9803 
9804   Result = APValue(APValue::UninitArray(), NumEltsToInit, NumElts);
9805 
9806   // If the array was previously zero-initialized, preserve the
9807   // zero-initialized values.
9808   if (Filler.hasValue()) {
9809     for (unsigned I = 0, E = Result.getArrayInitializedElts(); I != E; ++I)
9810       Result.getArrayInitializedElt(I) = Filler;
9811     if (Result.hasArrayFiller())
9812       Result.getArrayFiller() = Filler;
9813   }
9814 
9815   LValue Subobject = This;
9816   Subobject.addArray(Info, E, CAT);
9817   for (unsigned Index = 0; Index != NumEltsToInit; ++Index) {
9818     const Expr *Init =
9819         Index < E->getNumInits() ? E->getInit(Index) : FillerExpr;
9820     if (!EvaluateInPlace(Result.getArrayInitializedElt(Index),
9821                          Info, Subobject, Init) ||
9822         !HandleLValueArrayAdjustment(Info, Init, Subobject,
9823                                      CAT->getElementType(), 1)) {
9824       if (!Info.noteFailure())
9825         return false;
9826       Success = false;
9827     }
9828   }
9829 
9830   if (!Result.hasArrayFiller())
9831     return Success;
9832 
9833   // If we get here, we have a trivial filler, which we can just evaluate
9834   // once and splat over the rest of the array elements.
9835   assert(FillerExpr && "no array filler for incomplete init list");
9836   return EvaluateInPlace(Result.getArrayFiller(), Info, Subobject,
9837                          FillerExpr) && Success;
9838 }
9839 
9840 bool ArrayExprEvaluator::VisitArrayInitLoopExpr(const ArrayInitLoopExpr *E) {
9841   LValue CommonLV;
9842   if (E->getCommonExpr() &&
9843       !Evaluate(Info.CurrentCall->createTemporary(
9844                     E->getCommonExpr(),
9845                     getStorageType(Info.Ctx, E->getCommonExpr()), false,
9846                     CommonLV),
9847                 Info, E->getCommonExpr()->getSourceExpr()))
9848     return false;
9849 
9850   auto *CAT = cast<ConstantArrayType>(E->getType()->castAsArrayTypeUnsafe());
9851 
9852   uint64_t Elements = CAT->getSize().getZExtValue();
9853   Result = APValue(APValue::UninitArray(), Elements, Elements);
9854 
9855   LValue Subobject = This;
9856   Subobject.addArray(Info, E, CAT);
9857 
9858   bool Success = true;
9859   for (EvalInfo::ArrayInitLoopIndex Index(Info); Index != Elements; ++Index) {
9860     if (!EvaluateInPlace(Result.getArrayInitializedElt(Index),
9861                          Info, Subobject, E->getSubExpr()) ||
9862         !HandleLValueArrayAdjustment(Info, E, Subobject,
9863                                      CAT->getElementType(), 1)) {
9864       if (!Info.noteFailure())
9865         return false;
9866       Success = false;
9867     }
9868   }
9869 
9870   return Success;
9871 }
9872 
9873 bool ArrayExprEvaluator::VisitCXXConstructExpr(const CXXConstructExpr *E) {
9874   return VisitCXXConstructExpr(E, This, &Result, E->getType());
9875 }
9876 
9877 bool ArrayExprEvaluator::VisitCXXConstructExpr(const CXXConstructExpr *E,
9878                                                const LValue &Subobject,
9879                                                APValue *Value,
9880                                                QualType Type) {
9881   bool HadZeroInit = Value->hasValue();
9882 
9883   if (const ConstantArrayType *CAT = Info.Ctx.getAsConstantArrayType(Type)) {
9884     unsigned N = CAT->getSize().getZExtValue();
9885 
9886     // Preserve the array filler if we had prior zero-initialization.
9887     APValue Filler =
9888       HadZeroInit && Value->hasArrayFiller() ? Value->getArrayFiller()
9889                                              : APValue();
9890 
9891     *Value = APValue(APValue::UninitArray(), N, N);
9892 
9893     if (HadZeroInit)
9894       for (unsigned I = 0; I != N; ++I)
9895         Value->getArrayInitializedElt(I) = Filler;
9896 
9897     // Initialize the elements.
9898     LValue ArrayElt = Subobject;
9899     ArrayElt.addArray(Info, E, CAT);
9900     for (unsigned I = 0; I != N; ++I)
9901       if (!VisitCXXConstructExpr(E, ArrayElt, &Value->getArrayInitializedElt(I),
9902                                  CAT->getElementType()) ||
9903           !HandleLValueArrayAdjustment(Info, E, ArrayElt,
9904                                        CAT->getElementType(), 1))
9905         return false;
9906 
9907     return true;
9908   }
9909 
9910   if (!Type->isRecordType())
9911     return Error(E);
9912 
9913   return RecordExprEvaluator(Info, Subobject, *Value)
9914              .VisitCXXConstructExpr(E, Type);
9915 }
9916 
9917 //===----------------------------------------------------------------------===//
9918 // Integer Evaluation
9919 //
9920 // As a GNU extension, we support casting pointers to sufficiently-wide integer
9921 // types and back in constant folding. Integer values are thus represented
9922 // either as an integer-valued APValue, or as an lvalue-valued APValue.
9923 //===----------------------------------------------------------------------===//
9924 
9925 namespace {
9926 class IntExprEvaluator
9927         : public ExprEvaluatorBase<IntExprEvaluator> {
9928   APValue &Result;
9929 public:
9930   IntExprEvaluator(EvalInfo &info, APValue &result)
9931       : ExprEvaluatorBaseTy(info), Result(result) {}
9932 
9933   bool Success(const llvm::APSInt &SI, const Expr *E, APValue &Result) {
9934     assert(E->getType()->isIntegralOrEnumerationType() &&
9935            "Invalid evaluation result.");
9936     assert(SI.isSigned() == E->getType()->isSignedIntegerOrEnumerationType() &&
9937            "Invalid evaluation result.");
9938     assert(SI.getBitWidth() == Info.Ctx.getIntWidth(E->getType()) &&
9939            "Invalid evaluation result.");
9940     Result = APValue(SI);
9941     return true;
9942   }
9943   bool Success(const llvm::APSInt &SI, const Expr *E) {
9944     return Success(SI, E, Result);
9945   }
9946 
9947   bool Success(const llvm::APInt &I, const Expr *E, APValue &Result) {
9948     assert(E->getType()->isIntegralOrEnumerationType() &&
9949            "Invalid evaluation result.");
9950     assert(I.getBitWidth() == Info.Ctx.getIntWidth(E->getType()) &&
9951            "Invalid evaluation result.");
9952     Result = APValue(APSInt(I));
9953     Result.getInt().setIsUnsigned(
9954                             E->getType()->isUnsignedIntegerOrEnumerationType());
9955     return true;
9956   }
9957   bool Success(const llvm::APInt &I, const Expr *E) {
9958     return Success(I, E, Result);
9959   }
9960 
9961   bool Success(uint64_t Value, const Expr *E, APValue &Result) {
9962     assert(E->getType()->isIntegralOrEnumerationType() &&
9963            "Invalid evaluation result.");
9964     Result = APValue(Info.Ctx.MakeIntValue(Value, E->getType()));
9965     return true;
9966   }
9967   bool Success(uint64_t Value, const Expr *E) {
9968     return Success(Value, E, Result);
9969   }
9970 
9971   bool Success(CharUnits Size, const Expr *E) {
9972     return Success(Size.getQuantity(), E);
9973   }
9974 
9975   bool Success(const APValue &V, const Expr *E) {
9976     if (V.isLValue() || V.isAddrLabelDiff() || V.isIndeterminate()) {
9977       Result = V;
9978       return true;
9979     }
9980     return Success(V.getInt(), E);
9981   }
9982 
9983   bool ZeroInitialization(const Expr *E) { return Success(0, E); }
9984 
9985   //===--------------------------------------------------------------------===//
9986   //                            Visitor Methods
9987   //===--------------------------------------------------------------------===//
9988 
9989   bool VisitConstantExpr(const ConstantExpr *E);
9990 
9991   bool VisitIntegerLiteral(const IntegerLiteral *E) {
9992     return Success(E->getValue(), E);
9993   }
9994   bool VisitCharacterLiteral(const CharacterLiteral *E) {
9995     return Success(E->getValue(), E);
9996   }
9997 
9998   bool CheckReferencedDecl(const Expr *E, const Decl *D);
9999   bool VisitDeclRefExpr(const DeclRefExpr *E) {
10000     if (CheckReferencedDecl(E, E->getDecl()))
10001       return true;
10002 
10003     return ExprEvaluatorBaseTy::VisitDeclRefExpr(E);
10004   }
10005   bool VisitMemberExpr(const MemberExpr *E) {
10006     if (CheckReferencedDecl(E, E->getMemberDecl())) {
10007       VisitIgnoredBaseExpression(E->getBase());
10008       return true;
10009     }
10010 
10011     return ExprEvaluatorBaseTy::VisitMemberExpr(E);
10012   }
10013 
10014   bool VisitCallExpr(const CallExpr *E);
10015   bool VisitBuiltinCallExpr(const CallExpr *E, unsigned BuiltinOp);
10016   bool VisitBinaryOperator(const BinaryOperator *E);
10017   bool VisitOffsetOfExpr(const OffsetOfExpr *E);
10018   bool VisitUnaryOperator(const UnaryOperator *E);
10019 
10020   bool VisitCastExpr(const CastExpr* E);
10021   bool VisitUnaryExprOrTypeTraitExpr(const UnaryExprOrTypeTraitExpr *E);
10022 
10023   bool VisitCXXBoolLiteralExpr(const CXXBoolLiteralExpr *E) {
10024     return Success(E->getValue(), E);
10025   }
10026 
10027   bool VisitObjCBoolLiteralExpr(const ObjCBoolLiteralExpr *E) {
10028     return Success(E->getValue(), E);
10029   }
10030 
10031   bool VisitArrayInitIndexExpr(const ArrayInitIndexExpr *E) {
10032     if (Info.ArrayInitIndex == uint64_t(-1)) {
10033       // We were asked to evaluate this subexpression independent of the
10034       // enclosing ArrayInitLoopExpr. We can't do that.
10035       Info.FFDiag(E);
10036       return false;
10037     }
10038     return Success(Info.ArrayInitIndex, E);
10039   }
10040 
10041   // Note, GNU defines __null as an integer, not a pointer.
10042   bool VisitGNUNullExpr(const GNUNullExpr *E) {
10043     return ZeroInitialization(E);
10044   }
10045 
10046   bool VisitTypeTraitExpr(const TypeTraitExpr *E) {
10047     return Success(E->getValue(), E);
10048   }
10049 
10050   bool VisitArrayTypeTraitExpr(const ArrayTypeTraitExpr *E) {
10051     return Success(E->getValue(), E);
10052   }
10053 
10054   bool VisitExpressionTraitExpr(const ExpressionTraitExpr *E) {
10055     return Success(E->getValue(), E);
10056   }
10057 
10058   bool VisitUnaryReal(const UnaryOperator *E);
10059   bool VisitUnaryImag(const UnaryOperator *E);
10060 
10061   bool VisitCXXNoexceptExpr(const CXXNoexceptExpr *E);
10062   bool VisitSizeOfPackExpr(const SizeOfPackExpr *E);
10063   bool VisitSourceLocExpr(const SourceLocExpr *E);
10064   bool VisitConceptSpecializationExpr(const ConceptSpecializationExpr *E);
10065   bool VisitRequiresExpr(const RequiresExpr *E);
10066   // FIXME: Missing: array subscript of vector, member of vector
10067 };
10068 
10069 class FixedPointExprEvaluator
10070     : public ExprEvaluatorBase<FixedPointExprEvaluator> {
10071   APValue &Result;
10072 
10073  public:
10074   FixedPointExprEvaluator(EvalInfo &info, APValue &result)
10075       : ExprEvaluatorBaseTy(info), Result(result) {}
10076 
10077   bool Success(const llvm::APInt &I, const Expr *E) {
10078     return Success(
10079         APFixedPoint(I, Info.Ctx.getFixedPointSemantics(E->getType())), E);
10080   }
10081 
10082   bool Success(uint64_t Value, const Expr *E) {
10083     return Success(
10084         APFixedPoint(Value, Info.Ctx.getFixedPointSemantics(E->getType())), E);
10085   }
10086 
10087   bool Success(const APValue &V, const Expr *E) {
10088     return Success(V.getFixedPoint(), E);
10089   }
10090 
10091   bool Success(const APFixedPoint &V, const Expr *E) {
10092     assert(E->getType()->isFixedPointType() && "Invalid evaluation result.");
10093     assert(V.getWidth() == Info.Ctx.getIntWidth(E->getType()) &&
10094            "Invalid evaluation result.");
10095     Result = APValue(V);
10096     return true;
10097   }
10098 
10099   //===--------------------------------------------------------------------===//
10100   //                            Visitor Methods
10101   //===--------------------------------------------------------------------===//
10102 
10103   bool VisitFixedPointLiteral(const FixedPointLiteral *E) {
10104     return Success(E->getValue(), E);
10105   }
10106 
10107   bool VisitCastExpr(const CastExpr *E);
10108   bool VisitUnaryOperator(const UnaryOperator *E);
10109   bool VisitBinaryOperator(const BinaryOperator *E);
10110 };
10111 } // end anonymous namespace
10112 
10113 /// EvaluateIntegerOrLValue - Evaluate an rvalue integral-typed expression, and
10114 /// produce either the integer value or a pointer.
10115 ///
10116 /// GCC has a heinous extension which folds casts between pointer types and
10117 /// pointer-sized integral types. We support this by allowing the evaluation of
10118 /// an integer rvalue to produce a pointer (represented as an lvalue) instead.
10119 /// Some simple arithmetic on such values is supported (they are treated much
10120 /// like char*).
10121 static bool EvaluateIntegerOrLValue(const Expr *E, APValue &Result,
10122                                     EvalInfo &Info) {
10123   assert(E->isRValue() && E->getType()->isIntegralOrEnumerationType());
10124   return IntExprEvaluator(Info, Result).Visit(E);
10125 }
10126 
10127 static bool EvaluateInteger(const Expr *E, APSInt &Result, EvalInfo &Info) {
10128   APValue Val;
10129   if (!EvaluateIntegerOrLValue(E, Val, Info))
10130     return false;
10131   if (!Val.isInt()) {
10132     // FIXME: It would be better to produce the diagnostic for casting
10133     //        a pointer to an integer.
10134     Info.FFDiag(E, diag::note_invalid_subexpr_in_const_expr);
10135     return false;
10136   }
10137   Result = Val.getInt();
10138   return true;
10139 }
10140 
10141 bool IntExprEvaluator::VisitSourceLocExpr(const SourceLocExpr *E) {
10142   APValue Evaluated = E->EvaluateInContext(
10143       Info.Ctx, Info.CurrentCall->CurSourceLocExprScope.getDefaultExpr());
10144   return Success(Evaluated, E);
10145 }
10146 
10147 static bool EvaluateFixedPoint(const Expr *E, APFixedPoint &Result,
10148                                EvalInfo &Info) {
10149   if (E->getType()->isFixedPointType()) {
10150     APValue Val;
10151     if (!FixedPointExprEvaluator(Info, Val).Visit(E))
10152       return false;
10153     if (!Val.isFixedPoint())
10154       return false;
10155 
10156     Result = Val.getFixedPoint();
10157     return true;
10158   }
10159   return false;
10160 }
10161 
10162 static bool EvaluateFixedPointOrInteger(const Expr *E, APFixedPoint &Result,
10163                                         EvalInfo &Info) {
10164   if (E->getType()->isIntegerType()) {
10165     auto FXSema = Info.Ctx.getFixedPointSemantics(E->getType());
10166     APSInt Val;
10167     if (!EvaluateInteger(E, Val, Info))
10168       return false;
10169     Result = APFixedPoint(Val, FXSema);
10170     return true;
10171   } else if (E->getType()->isFixedPointType()) {
10172     return EvaluateFixedPoint(E, Result, Info);
10173   }
10174   return false;
10175 }
10176 
10177 /// Check whether the given declaration can be directly converted to an integral
10178 /// rvalue. If not, no diagnostic is produced; there are other things we can
10179 /// try.
10180 bool IntExprEvaluator::CheckReferencedDecl(const Expr* E, const Decl* D) {
10181   // Enums are integer constant exprs.
10182   if (const EnumConstantDecl *ECD = dyn_cast<EnumConstantDecl>(D)) {
10183     // Check for signedness/width mismatches between E type and ECD value.
10184     bool SameSign = (ECD->getInitVal().isSigned()
10185                      == E->getType()->isSignedIntegerOrEnumerationType());
10186     bool SameWidth = (ECD->getInitVal().getBitWidth()
10187                       == Info.Ctx.getIntWidth(E->getType()));
10188     if (SameSign && SameWidth)
10189       return Success(ECD->getInitVal(), E);
10190     else {
10191       // Get rid of mismatch (otherwise Success assertions will fail)
10192       // by computing a new value matching the type of E.
10193       llvm::APSInt Val = ECD->getInitVal();
10194       if (!SameSign)
10195         Val.setIsSigned(!ECD->getInitVal().isSigned());
10196       if (!SameWidth)
10197         Val = Val.extOrTrunc(Info.Ctx.getIntWidth(E->getType()));
10198       return Success(Val, E);
10199     }
10200   }
10201   return false;
10202 }
10203 
10204 /// Values returned by __builtin_classify_type, chosen to match the values
10205 /// produced by GCC's builtin.
10206 enum class GCCTypeClass {
10207   None = -1,
10208   Void = 0,
10209   Integer = 1,
10210   // GCC reserves 2 for character types, but instead classifies them as
10211   // integers.
10212   Enum = 3,
10213   Bool = 4,
10214   Pointer = 5,
10215   // GCC reserves 6 for references, but appears to never use it (because
10216   // expressions never have reference type, presumably).
10217   PointerToDataMember = 7,
10218   RealFloat = 8,
10219   Complex = 9,
10220   // GCC reserves 10 for functions, but does not use it since GCC version 6 due
10221   // to decay to pointer. (Prior to version 6 it was only used in C++ mode).
10222   // GCC claims to reserve 11 for pointers to member functions, but *actually*
10223   // uses 12 for that purpose, same as for a class or struct. Maybe it
10224   // internally implements a pointer to member as a struct?  Who knows.
10225   PointerToMemberFunction = 12, // Not a bug, see above.
10226   ClassOrStruct = 12,
10227   Union = 13,
10228   // GCC reserves 14 for arrays, but does not use it since GCC version 6 due to
10229   // decay to pointer. (Prior to version 6 it was only used in C++ mode).
10230   // GCC reserves 15 for strings, but actually uses 5 (pointer) for string
10231   // literals.
10232 };
10233 
10234 /// EvaluateBuiltinClassifyType - Evaluate __builtin_classify_type the same way
10235 /// as GCC.
10236 static GCCTypeClass
10237 EvaluateBuiltinClassifyType(QualType T, const LangOptions &LangOpts) {
10238   assert(!T->isDependentType() && "unexpected dependent type");
10239 
10240   QualType CanTy = T.getCanonicalType();
10241   const BuiltinType *BT = dyn_cast<BuiltinType>(CanTy);
10242 
10243   switch (CanTy->getTypeClass()) {
10244 #define TYPE(ID, BASE)
10245 #define DEPENDENT_TYPE(ID, BASE) case Type::ID:
10246 #define NON_CANONICAL_TYPE(ID, BASE) case Type::ID:
10247 #define NON_CANONICAL_UNLESS_DEPENDENT_TYPE(ID, BASE) case Type::ID:
10248 #include "clang/AST/TypeNodes.inc"
10249   case Type::Auto:
10250   case Type::DeducedTemplateSpecialization:
10251       llvm_unreachable("unexpected non-canonical or dependent type");
10252 
10253   case Type::Builtin:
10254     switch (BT->getKind()) {
10255 #define BUILTIN_TYPE(ID, SINGLETON_ID)
10256 #define SIGNED_TYPE(ID, SINGLETON_ID) \
10257     case BuiltinType::ID: return GCCTypeClass::Integer;
10258 #define FLOATING_TYPE(ID, SINGLETON_ID) \
10259     case BuiltinType::ID: return GCCTypeClass::RealFloat;
10260 #define PLACEHOLDER_TYPE(ID, SINGLETON_ID) \
10261     case BuiltinType::ID: break;
10262 #include "clang/AST/BuiltinTypes.def"
10263     case BuiltinType::Void:
10264       return GCCTypeClass::Void;
10265 
10266     case BuiltinType::Bool:
10267       return GCCTypeClass::Bool;
10268 
10269     case BuiltinType::Char_U:
10270     case BuiltinType::UChar:
10271     case BuiltinType::WChar_U:
10272     case BuiltinType::Char8:
10273     case BuiltinType::Char16:
10274     case BuiltinType::Char32:
10275     case BuiltinType::UShort:
10276     case BuiltinType::UInt:
10277     case BuiltinType::ULong:
10278     case BuiltinType::ULongLong:
10279     case BuiltinType::UInt128:
10280       return GCCTypeClass::Integer;
10281 
10282     case BuiltinType::UShortAccum:
10283     case BuiltinType::UAccum:
10284     case BuiltinType::ULongAccum:
10285     case BuiltinType::UShortFract:
10286     case BuiltinType::UFract:
10287     case BuiltinType::ULongFract:
10288     case BuiltinType::SatUShortAccum:
10289     case BuiltinType::SatUAccum:
10290     case BuiltinType::SatULongAccum:
10291     case BuiltinType::SatUShortFract:
10292     case BuiltinType::SatUFract:
10293     case BuiltinType::SatULongFract:
10294       return GCCTypeClass::None;
10295 
10296     case BuiltinType::NullPtr:
10297 
10298     case BuiltinType::ObjCId:
10299     case BuiltinType::ObjCClass:
10300     case BuiltinType::ObjCSel:
10301 #define IMAGE_TYPE(ImgType, Id, SingletonId, Access, Suffix) \
10302     case BuiltinType::Id:
10303 #include "clang/Basic/OpenCLImageTypes.def"
10304 #define EXT_OPAQUE_TYPE(ExtType, Id, Ext) \
10305     case BuiltinType::Id:
10306 #include "clang/Basic/OpenCLExtensionTypes.def"
10307     case BuiltinType::OCLSampler:
10308     case BuiltinType::OCLEvent:
10309     case BuiltinType::OCLClkEvent:
10310     case BuiltinType::OCLQueue:
10311     case BuiltinType::OCLReserveID:
10312 #define SVE_TYPE(Name, Id, SingletonId) \
10313     case BuiltinType::Id:
10314 #include "clang/Basic/AArch64SVEACLETypes.def"
10315       return GCCTypeClass::None;
10316 
10317     case BuiltinType::Dependent:
10318       llvm_unreachable("unexpected dependent type");
10319     };
10320     llvm_unreachable("unexpected placeholder type");
10321 
10322   case Type::Enum:
10323     return LangOpts.CPlusPlus ? GCCTypeClass::Enum : GCCTypeClass::Integer;
10324 
10325   case Type::Pointer:
10326   case Type::ConstantArray:
10327   case Type::VariableArray:
10328   case Type::IncompleteArray:
10329   case Type::FunctionNoProto:
10330   case Type::FunctionProto:
10331     return GCCTypeClass::Pointer;
10332 
10333   case Type::MemberPointer:
10334     return CanTy->isMemberDataPointerType()
10335                ? GCCTypeClass::PointerToDataMember
10336                : GCCTypeClass::PointerToMemberFunction;
10337 
10338   case Type::Complex:
10339     return GCCTypeClass::Complex;
10340 
10341   case Type::Record:
10342     return CanTy->isUnionType() ? GCCTypeClass::Union
10343                                 : GCCTypeClass::ClassOrStruct;
10344 
10345   case Type::Atomic:
10346     // GCC classifies _Atomic T the same as T.
10347     return EvaluateBuiltinClassifyType(
10348         CanTy->castAs<AtomicType>()->getValueType(), LangOpts);
10349 
10350   case Type::BlockPointer:
10351   case Type::Vector:
10352   case Type::ExtVector:
10353   case Type::ConstantMatrix:
10354   case Type::ObjCObject:
10355   case Type::ObjCInterface:
10356   case Type::ObjCObjectPointer:
10357   case Type::Pipe:
10358   case Type::ExtInt:
10359     // GCC classifies vectors as None. We follow its lead and classify all
10360     // other types that don't fit into the regular classification the same way.
10361     return GCCTypeClass::None;
10362 
10363   case Type::LValueReference:
10364   case Type::RValueReference:
10365     llvm_unreachable("invalid type for expression");
10366   }
10367 
10368   llvm_unreachable("unexpected type class");
10369 }
10370 
10371 /// EvaluateBuiltinClassifyType - Evaluate __builtin_classify_type the same way
10372 /// as GCC.
10373 static GCCTypeClass
10374 EvaluateBuiltinClassifyType(const CallExpr *E, const LangOptions &LangOpts) {
10375   // If no argument was supplied, default to None. This isn't
10376   // ideal, however it is what gcc does.
10377   if (E->getNumArgs() == 0)
10378     return GCCTypeClass::None;
10379 
10380   // FIXME: Bizarrely, GCC treats a call with more than one argument as not
10381   // being an ICE, but still folds it to a constant using the type of the first
10382   // argument.
10383   return EvaluateBuiltinClassifyType(E->getArg(0)->getType(), LangOpts);
10384 }
10385 
10386 /// EvaluateBuiltinConstantPForLValue - Determine the result of
10387 /// __builtin_constant_p when applied to the given pointer.
10388 ///
10389 /// A pointer is only "constant" if it is null (or a pointer cast to integer)
10390 /// or it points to the first character of a string literal.
10391 static bool EvaluateBuiltinConstantPForLValue(const APValue &LV) {
10392   APValue::LValueBase Base = LV.getLValueBase();
10393   if (Base.isNull()) {
10394     // A null base is acceptable.
10395     return true;
10396   } else if (const Expr *E = Base.dyn_cast<const Expr *>()) {
10397     if (!isa<StringLiteral>(E))
10398       return false;
10399     return LV.getLValueOffset().isZero();
10400   } else if (Base.is<TypeInfoLValue>()) {
10401     // Surprisingly, GCC considers __builtin_constant_p(&typeid(int)) to
10402     // evaluate to true.
10403     return true;
10404   } else {
10405     // Any other base is not constant enough for GCC.
10406     return false;
10407   }
10408 }
10409 
10410 /// EvaluateBuiltinConstantP - Evaluate __builtin_constant_p as similarly to
10411 /// GCC as we can manage.
10412 static bool EvaluateBuiltinConstantP(EvalInfo &Info, const Expr *Arg) {
10413   // This evaluation is not permitted to have side-effects, so evaluate it in
10414   // a speculative evaluation context.
10415   SpeculativeEvaluationRAII SpeculativeEval(Info);
10416 
10417   // Constant-folding is always enabled for the operand of __builtin_constant_p
10418   // (even when the enclosing evaluation context otherwise requires a strict
10419   // language-specific constant expression).
10420   FoldConstant Fold(Info, true);
10421 
10422   QualType ArgType = Arg->getType();
10423 
10424   // __builtin_constant_p always has one operand. The rules which gcc follows
10425   // are not precisely documented, but are as follows:
10426   //
10427   //  - If the operand is of integral, floating, complex or enumeration type,
10428   //    and can be folded to a known value of that type, it returns 1.
10429   //  - If the operand can be folded to a pointer to the first character
10430   //    of a string literal (or such a pointer cast to an integral type)
10431   //    or to a null pointer or an integer cast to a pointer, it returns 1.
10432   //
10433   // Otherwise, it returns 0.
10434   //
10435   // FIXME: GCC also intends to return 1 for literals of aggregate types, but
10436   // its support for this did not work prior to GCC 9 and is not yet well
10437   // understood.
10438   if (ArgType->isIntegralOrEnumerationType() || ArgType->isFloatingType() ||
10439       ArgType->isAnyComplexType() || ArgType->isPointerType() ||
10440       ArgType->isNullPtrType()) {
10441     APValue V;
10442     if (!::EvaluateAsRValue(Info, Arg, V) || Info.EvalStatus.HasSideEffects) {
10443       Fold.keepDiagnostics();
10444       return false;
10445     }
10446 
10447     // For a pointer (possibly cast to integer), there are special rules.
10448     if (V.getKind() == APValue::LValue)
10449       return EvaluateBuiltinConstantPForLValue(V);
10450 
10451     // Otherwise, any constant value is good enough.
10452     return V.hasValue();
10453   }
10454 
10455   // Anything else isn't considered to be sufficiently constant.
10456   return false;
10457 }
10458 
10459 /// Retrieves the "underlying object type" of the given expression,
10460 /// as used by __builtin_object_size.
10461 static QualType getObjectType(APValue::LValueBase B) {
10462   if (const ValueDecl *D = B.dyn_cast<const ValueDecl*>()) {
10463     if (const VarDecl *VD = dyn_cast<VarDecl>(D))
10464       return VD->getType();
10465   } else if (const Expr *E = B.dyn_cast<const Expr*>()) {
10466     if (isa<CompoundLiteralExpr>(E))
10467       return E->getType();
10468   } else if (B.is<TypeInfoLValue>()) {
10469     return B.getTypeInfoType();
10470   } else if (B.is<DynamicAllocLValue>()) {
10471     return B.getDynamicAllocType();
10472   }
10473 
10474   return QualType();
10475 }
10476 
10477 /// A more selective version of E->IgnoreParenCasts for
10478 /// tryEvaluateBuiltinObjectSize. This ignores some casts/parens that serve only
10479 /// to change the type of E.
10480 /// Ex. For E = `(short*)((char*)(&foo))`, returns `&foo`
10481 ///
10482 /// Always returns an RValue with a pointer representation.
10483 static const Expr *ignorePointerCastsAndParens(const Expr *E) {
10484   assert(E->isRValue() && E->getType()->hasPointerRepresentation());
10485 
10486   auto *NoParens = E->IgnoreParens();
10487   auto *Cast = dyn_cast<CastExpr>(NoParens);
10488   if (Cast == nullptr)
10489     return NoParens;
10490 
10491   // We only conservatively allow a few kinds of casts, because this code is
10492   // inherently a simple solution that seeks to support the common case.
10493   auto CastKind = Cast->getCastKind();
10494   if (CastKind != CK_NoOp && CastKind != CK_BitCast &&
10495       CastKind != CK_AddressSpaceConversion)
10496     return NoParens;
10497 
10498   auto *SubExpr = Cast->getSubExpr();
10499   if (!SubExpr->getType()->hasPointerRepresentation() || !SubExpr->isRValue())
10500     return NoParens;
10501   return ignorePointerCastsAndParens(SubExpr);
10502 }
10503 
10504 /// Checks to see if the given LValue's Designator is at the end of the LValue's
10505 /// record layout. e.g.
10506 ///   struct { struct { int a, b; } fst, snd; } obj;
10507 ///   obj.fst   // no
10508 ///   obj.snd   // yes
10509 ///   obj.fst.a // no
10510 ///   obj.fst.b // no
10511 ///   obj.snd.a // no
10512 ///   obj.snd.b // yes
10513 ///
10514 /// Please note: this function is specialized for how __builtin_object_size
10515 /// views "objects".
10516 ///
10517 /// If this encounters an invalid RecordDecl or otherwise cannot determine the
10518 /// correct result, it will always return true.
10519 static bool isDesignatorAtObjectEnd(const ASTContext &Ctx, const LValue &LVal) {
10520   assert(!LVal.Designator.Invalid);
10521 
10522   auto IsLastOrInvalidFieldDecl = [&Ctx](const FieldDecl *FD, bool &Invalid) {
10523     const RecordDecl *Parent = FD->getParent();
10524     Invalid = Parent->isInvalidDecl();
10525     if (Invalid || Parent->isUnion())
10526       return true;
10527     const ASTRecordLayout &Layout = Ctx.getASTRecordLayout(Parent);
10528     return FD->getFieldIndex() + 1 == Layout.getFieldCount();
10529   };
10530 
10531   auto &Base = LVal.getLValueBase();
10532   if (auto *ME = dyn_cast_or_null<MemberExpr>(Base.dyn_cast<const Expr *>())) {
10533     if (auto *FD = dyn_cast<FieldDecl>(ME->getMemberDecl())) {
10534       bool Invalid;
10535       if (!IsLastOrInvalidFieldDecl(FD, Invalid))
10536         return Invalid;
10537     } else if (auto *IFD = dyn_cast<IndirectFieldDecl>(ME->getMemberDecl())) {
10538       for (auto *FD : IFD->chain()) {
10539         bool Invalid;
10540         if (!IsLastOrInvalidFieldDecl(cast<FieldDecl>(FD), Invalid))
10541           return Invalid;
10542       }
10543     }
10544   }
10545 
10546   unsigned I = 0;
10547   QualType BaseType = getType(Base);
10548   if (LVal.Designator.FirstEntryIsAnUnsizedArray) {
10549     // If we don't know the array bound, conservatively assume we're looking at
10550     // the final array element.
10551     ++I;
10552     if (BaseType->isIncompleteArrayType())
10553       BaseType = Ctx.getAsArrayType(BaseType)->getElementType();
10554     else
10555       BaseType = BaseType->castAs<PointerType>()->getPointeeType();
10556   }
10557 
10558   for (unsigned E = LVal.Designator.Entries.size(); I != E; ++I) {
10559     const auto &Entry = LVal.Designator.Entries[I];
10560     if (BaseType->isArrayType()) {
10561       // Because __builtin_object_size treats arrays as objects, we can ignore
10562       // the index iff this is the last array in the Designator.
10563       if (I + 1 == E)
10564         return true;
10565       const auto *CAT = cast<ConstantArrayType>(Ctx.getAsArrayType(BaseType));
10566       uint64_t Index = Entry.getAsArrayIndex();
10567       if (Index + 1 != CAT->getSize())
10568         return false;
10569       BaseType = CAT->getElementType();
10570     } else if (BaseType->isAnyComplexType()) {
10571       const auto *CT = BaseType->castAs<ComplexType>();
10572       uint64_t Index = Entry.getAsArrayIndex();
10573       if (Index != 1)
10574         return false;
10575       BaseType = CT->getElementType();
10576     } else if (auto *FD = getAsField(Entry)) {
10577       bool Invalid;
10578       if (!IsLastOrInvalidFieldDecl(FD, Invalid))
10579         return Invalid;
10580       BaseType = FD->getType();
10581     } else {
10582       assert(getAsBaseClass(Entry) && "Expecting cast to a base class");
10583       return false;
10584     }
10585   }
10586   return true;
10587 }
10588 
10589 /// Tests to see if the LValue has a user-specified designator (that isn't
10590 /// necessarily valid). Note that this always returns 'true' if the LValue has
10591 /// an unsized array as its first designator entry, because there's currently no
10592 /// way to tell if the user typed *foo or foo[0].
10593 static bool refersToCompleteObject(const LValue &LVal) {
10594   if (LVal.Designator.Invalid)
10595     return false;
10596 
10597   if (!LVal.Designator.Entries.empty())
10598     return LVal.Designator.isMostDerivedAnUnsizedArray();
10599 
10600   if (!LVal.InvalidBase)
10601     return true;
10602 
10603   // If `E` is a MemberExpr, then the first part of the designator is hiding in
10604   // the LValueBase.
10605   const auto *E = LVal.Base.dyn_cast<const Expr *>();
10606   return !E || !isa<MemberExpr>(E);
10607 }
10608 
10609 /// Attempts to detect a user writing into a piece of memory that's impossible
10610 /// to figure out the size of by just using types.
10611 static bool isUserWritingOffTheEnd(const ASTContext &Ctx, const LValue &LVal) {
10612   const SubobjectDesignator &Designator = LVal.Designator;
10613   // Notes:
10614   // - Users can only write off of the end when we have an invalid base. Invalid
10615   //   bases imply we don't know where the memory came from.
10616   // - We used to be a bit more aggressive here; we'd only be conservative if
10617   //   the array at the end was flexible, or if it had 0 or 1 elements. This
10618   //   broke some common standard library extensions (PR30346), but was
10619   //   otherwise seemingly fine. It may be useful to reintroduce this behavior
10620   //   with some sort of whitelist. OTOH, it seems that GCC is always
10621   //   conservative with the last element in structs (if it's an array), so our
10622   //   current behavior is more compatible than a whitelisting approach would
10623   //   be.
10624   return LVal.InvalidBase &&
10625          Designator.Entries.size() == Designator.MostDerivedPathLength &&
10626          Designator.MostDerivedIsArrayElement &&
10627          isDesignatorAtObjectEnd(Ctx, LVal);
10628 }
10629 
10630 /// Converts the given APInt to CharUnits, assuming the APInt is unsigned.
10631 /// Fails if the conversion would cause loss of precision.
10632 static bool convertUnsignedAPIntToCharUnits(const llvm::APInt &Int,
10633                                             CharUnits &Result) {
10634   auto CharUnitsMax = std::numeric_limits<CharUnits::QuantityType>::max();
10635   if (Int.ugt(CharUnitsMax))
10636     return false;
10637   Result = CharUnits::fromQuantity(Int.getZExtValue());
10638   return true;
10639 }
10640 
10641 /// Helper for tryEvaluateBuiltinObjectSize -- Given an LValue, this will
10642 /// determine how many bytes exist from the beginning of the object to either
10643 /// the end of the current subobject, or the end of the object itself, depending
10644 /// on what the LValue looks like + the value of Type.
10645 ///
10646 /// If this returns false, the value of Result is undefined.
10647 static bool determineEndOffset(EvalInfo &Info, SourceLocation ExprLoc,
10648                                unsigned Type, const LValue &LVal,
10649                                CharUnits &EndOffset) {
10650   bool DetermineForCompleteObject = refersToCompleteObject(LVal);
10651 
10652   auto CheckedHandleSizeof = [&](QualType Ty, CharUnits &Result) {
10653     if (Ty.isNull() || Ty->isIncompleteType() || Ty->isFunctionType())
10654       return false;
10655     return HandleSizeof(Info, ExprLoc, Ty, Result);
10656   };
10657 
10658   // We want to evaluate the size of the entire object. This is a valid fallback
10659   // for when Type=1 and the designator is invalid, because we're asked for an
10660   // upper-bound.
10661   if (!(Type & 1) || LVal.Designator.Invalid || DetermineForCompleteObject) {
10662     // Type=3 wants a lower bound, so we can't fall back to this.
10663     if (Type == 3 && !DetermineForCompleteObject)
10664       return false;
10665 
10666     llvm::APInt APEndOffset;
10667     if (isBaseAnAllocSizeCall(LVal.getLValueBase()) &&
10668         getBytesReturnedByAllocSizeCall(Info.Ctx, LVal, APEndOffset))
10669       return convertUnsignedAPIntToCharUnits(APEndOffset, EndOffset);
10670 
10671     if (LVal.InvalidBase)
10672       return false;
10673 
10674     QualType BaseTy = getObjectType(LVal.getLValueBase());
10675     return CheckedHandleSizeof(BaseTy, EndOffset);
10676   }
10677 
10678   // We want to evaluate the size of a subobject.
10679   const SubobjectDesignator &Designator = LVal.Designator;
10680 
10681   // The following is a moderately common idiom in C:
10682   //
10683   // struct Foo { int a; char c[1]; };
10684   // struct Foo *F = (struct Foo *)malloc(sizeof(struct Foo) + strlen(Bar));
10685   // strcpy(&F->c[0], Bar);
10686   //
10687   // In order to not break too much legacy code, we need to support it.
10688   if (isUserWritingOffTheEnd(Info.Ctx, LVal)) {
10689     // If we can resolve this to an alloc_size call, we can hand that back,
10690     // because we know for certain how many bytes there are to write to.
10691     llvm::APInt APEndOffset;
10692     if (isBaseAnAllocSizeCall(LVal.getLValueBase()) &&
10693         getBytesReturnedByAllocSizeCall(Info.Ctx, LVal, APEndOffset))
10694       return convertUnsignedAPIntToCharUnits(APEndOffset, EndOffset);
10695 
10696     // If we cannot determine the size of the initial allocation, then we can't
10697     // given an accurate upper-bound. However, we are still able to give
10698     // conservative lower-bounds for Type=3.
10699     if (Type == 1)
10700       return false;
10701   }
10702 
10703   CharUnits BytesPerElem;
10704   if (!CheckedHandleSizeof(Designator.MostDerivedType, BytesPerElem))
10705     return false;
10706 
10707   // According to the GCC documentation, we want the size of the subobject
10708   // denoted by the pointer. But that's not quite right -- what we actually
10709   // want is the size of the immediately-enclosing array, if there is one.
10710   int64_t ElemsRemaining;
10711   if (Designator.MostDerivedIsArrayElement &&
10712       Designator.Entries.size() == Designator.MostDerivedPathLength) {
10713     uint64_t ArraySize = Designator.getMostDerivedArraySize();
10714     uint64_t ArrayIndex = Designator.Entries.back().getAsArrayIndex();
10715     ElemsRemaining = ArraySize <= ArrayIndex ? 0 : ArraySize - ArrayIndex;
10716   } else {
10717     ElemsRemaining = Designator.isOnePastTheEnd() ? 0 : 1;
10718   }
10719 
10720   EndOffset = LVal.getLValueOffset() + BytesPerElem * ElemsRemaining;
10721   return true;
10722 }
10723 
10724 /// Tries to evaluate the __builtin_object_size for @p E. If successful,
10725 /// returns true and stores the result in @p Size.
10726 ///
10727 /// If @p WasError is non-null, this will report whether the failure to evaluate
10728 /// is to be treated as an Error in IntExprEvaluator.
10729 static bool tryEvaluateBuiltinObjectSize(const Expr *E, unsigned Type,
10730                                          EvalInfo &Info, uint64_t &Size) {
10731   // Determine the denoted object.
10732   LValue LVal;
10733   {
10734     // The operand of __builtin_object_size is never evaluated for side-effects.
10735     // If there are any, but we can determine the pointed-to object anyway, then
10736     // ignore the side-effects.
10737     SpeculativeEvaluationRAII SpeculativeEval(Info);
10738     IgnoreSideEffectsRAII Fold(Info);
10739 
10740     if (E->isGLValue()) {
10741       // It's possible for us to be given GLValues if we're called via
10742       // Expr::tryEvaluateObjectSize.
10743       APValue RVal;
10744       if (!EvaluateAsRValue(Info, E, RVal))
10745         return false;
10746       LVal.setFrom(Info.Ctx, RVal);
10747     } else if (!EvaluatePointer(ignorePointerCastsAndParens(E), LVal, Info,
10748                                 /*InvalidBaseOK=*/true))
10749       return false;
10750   }
10751 
10752   // If we point to before the start of the object, there are no accessible
10753   // bytes.
10754   if (LVal.getLValueOffset().isNegative()) {
10755     Size = 0;
10756     return true;
10757   }
10758 
10759   CharUnits EndOffset;
10760   if (!determineEndOffset(Info, E->getExprLoc(), Type, LVal, EndOffset))
10761     return false;
10762 
10763   // If we've fallen outside of the end offset, just pretend there's nothing to
10764   // write to/read from.
10765   if (EndOffset <= LVal.getLValueOffset())
10766     Size = 0;
10767   else
10768     Size = (EndOffset - LVal.getLValueOffset()).getQuantity();
10769   return true;
10770 }
10771 
10772 bool IntExprEvaluator::VisitConstantExpr(const ConstantExpr *E) {
10773   llvm::SaveAndRestore<bool> InConstantContext(Info.InConstantContext, true);
10774   if (E->getResultAPValueKind() != APValue::None)
10775     return Success(E->getAPValueResult(), E);
10776   return ExprEvaluatorBaseTy::VisitConstantExpr(E);
10777 }
10778 
10779 bool IntExprEvaluator::VisitCallExpr(const CallExpr *E) {
10780   if (unsigned BuiltinOp = E->getBuiltinCallee())
10781     return VisitBuiltinCallExpr(E, BuiltinOp);
10782 
10783   return ExprEvaluatorBaseTy::VisitCallExpr(E);
10784 }
10785 
10786 static bool getBuiltinAlignArguments(const CallExpr *E, EvalInfo &Info,
10787                                      APValue &Val, APSInt &Alignment) {
10788   QualType SrcTy = E->getArg(0)->getType();
10789   if (!getAlignmentArgument(E->getArg(1), SrcTy, Info, Alignment))
10790     return false;
10791   // Even though we are evaluating integer expressions we could get a pointer
10792   // argument for the __builtin_is_aligned() case.
10793   if (SrcTy->isPointerType()) {
10794     LValue Ptr;
10795     if (!EvaluatePointer(E->getArg(0), Ptr, Info))
10796       return false;
10797     Ptr.moveInto(Val);
10798   } else if (!SrcTy->isIntegralOrEnumerationType()) {
10799     Info.FFDiag(E->getArg(0));
10800     return false;
10801   } else {
10802     APSInt SrcInt;
10803     if (!EvaluateInteger(E->getArg(0), SrcInt, Info))
10804       return false;
10805     assert(SrcInt.getBitWidth() >= Alignment.getBitWidth() &&
10806            "Bit widths must be the same");
10807     Val = APValue(SrcInt);
10808   }
10809   assert(Val.hasValue());
10810   return true;
10811 }
10812 
10813 bool IntExprEvaluator::VisitBuiltinCallExpr(const CallExpr *E,
10814                                             unsigned BuiltinOp) {
10815   switch (BuiltinOp) {
10816   default:
10817     return ExprEvaluatorBaseTy::VisitCallExpr(E);
10818 
10819   case Builtin::BI__builtin_dynamic_object_size:
10820   case Builtin::BI__builtin_object_size: {
10821     // The type was checked when we built the expression.
10822     unsigned Type =
10823         E->getArg(1)->EvaluateKnownConstInt(Info.Ctx).getZExtValue();
10824     assert(Type <= 3 && "unexpected type");
10825 
10826     uint64_t Size;
10827     if (tryEvaluateBuiltinObjectSize(E->getArg(0), Type, Info, Size))
10828       return Success(Size, E);
10829 
10830     if (E->getArg(0)->HasSideEffects(Info.Ctx))
10831       return Success((Type & 2) ? 0 : -1, E);
10832 
10833     // Expression had no side effects, but we couldn't statically determine the
10834     // size of the referenced object.
10835     switch (Info.EvalMode) {
10836     case EvalInfo::EM_ConstantExpression:
10837     case EvalInfo::EM_ConstantFold:
10838     case EvalInfo::EM_IgnoreSideEffects:
10839       // Leave it to IR generation.
10840       return Error(E);
10841     case EvalInfo::EM_ConstantExpressionUnevaluated:
10842       // Reduce it to a constant now.
10843       return Success((Type & 2) ? 0 : -1, E);
10844     }
10845 
10846     llvm_unreachable("unexpected EvalMode");
10847   }
10848 
10849   case Builtin::BI__builtin_os_log_format_buffer_size: {
10850     analyze_os_log::OSLogBufferLayout Layout;
10851     analyze_os_log::computeOSLogBufferLayout(Info.Ctx, E, Layout);
10852     return Success(Layout.size().getQuantity(), E);
10853   }
10854 
10855   case Builtin::BI__builtin_is_aligned: {
10856     APValue Src;
10857     APSInt Alignment;
10858     if (!getBuiltinAlignArguments(E, Info, Src, Alignment))
10859       return false;
10860     if (Src.isLValue()) {
10861       // If we evaluated a pointer, check the minimum known alignment.
10862       LValue Ptr;
10863       Ptr.setFrom(Info.Ctx, Src);
10864       CharUnits BaseAlignment = getBaseAlignment(Info, Ptr);
10865       CharUnits PtrAlign = BaseAlignment.alignmentAtOffset(Ptr.Offset);
10866       // We can return true if the known alignment at the computed offset is
10867       // greater than the requested alignment.
10868       assert(PtrAlign.isPowerOfTwo());
10869       assert(Alignment.isPowerOf2());
10870       if (PtrAlign.getQuantity() >= Alignment)
10871         return Success(1, E);
10872       // If the alignment is not known to be sufficient, some cases could still
10873       // be aligned at run time. However, if the requested alignment is less or
10874       // equal to the base alignment and the offset is not aligned, we know that
10875       // the run-time value can never be aligned.
10876       if (BaseAlignment.getQuantity() >= Alignment &&
10877           PtrAlign.getQuantity() < Alignment)
10878         return Success(0, E);
10879       // Otherwise we can't infer whether the value is sufficiently aligned.
10880       // TODO: __builtin_is_aligned(__builtin_align_{down,up{(expr, N), N)
10881       //  in cases where we can't fully evaluate the pointer.
10882       Info.FFDiag(E->getArg(0), diag::note_constexpr_alignment_compute)
10883           << Alignment;
10884       return false;
10885     }
10886     assert(Src.isInt());
10887     return Success((Src.getInt() & (Alignment - 1)) == 0 ? 1 : 0, E);
10888   }
10889   case Builtin::BI__builtin_align_up: {
10890     APValue Src;
10891     APSInt Alignment;
10892     if (!getBuiltinAlignArguments(E, Info, Src, Alignment))
10893       return false;
10894     if (!Src.isInt())
10895       return Error(E);
10896     APSInt AlignedVal =
10897         APSInt((Src.getInt() + (Alignment - 1)) & ~(Alignment - 1),
10898                Src.getInt().isUnsigned());
10899     assert(AlignedVal.getBitWidth() == Src.getInt().getBitWidth());
10900     return Success(AlignedVal, E);
10901   }
10902   case Builtin::BI__builtin_align_down: {
10903     APValue Src;
10904     APSInt Alignment;
10905     if (!getBuiltinAlignArguments(E, Info, Src, Alignment))
10906       return false;
10907     if (!Src.isInt())
10908       return Error(E);
10909     APSInt AlignedVal =
10910         APSInt(Src.getInt() & ~(Alignment - 1), Src.getInt().isUnsigned());
10911     assert(AlignedVal.getBitWidth() == Src.getInt().getBitWidth());
10912     return Success(AlignedVal, E);
10913   }
10914 
10915   case Builtin::BI__builtin_bswap16:
10916   case Builtin::BI__builtin_bswap32:
10917   case Builtin::BI__builtin_bswap64: {
10918     APSInt Val;
10919     if (!EvaluateInteger(E->getArg(0), Val, Info))
10920       return false;
10921 
10922     return Success(Val.byteSwap(), E);
10923   }
10924 
10925   case Builtin::BI__builtin_classify_type:
10926     return Success((int)EvaluateBuiltinClassifyType(E, Info.getLangOpts()), E);
10927 
10928   case Builtin::BI__builtin_clrsb:
10929   case Builtin::BI__builtin_clrsbl:
10930   case Builtin::BI__builtin_clrsbll: {
10931     APSInt Val;
10932     if (!EvaluateInteger(E->getArg(0), Val, Info))
10933       return false;
10934 
10935     return Success(Val.getBitWidth() - Val.getMinSignedBits(), E);
10936   }
10937 
10938   case Builtin::BI__builtin_clz:
10939   case Builtin::BI__builtin_clzl:
10940   case Builtin::BI__builtin_clzll:
10941   case Builtin::BI__builtin_clzs: {
10942     APSInt Val;
10943     if (!EvaluateInteger(E->getArg(0), Val, Info))
10944       return false;
10945     if (!Val)
10946       return Error(E);
10947 
10948     return Success(Val.countLeadingZeros(), E);
10949   }
10950 
10951   case Builtin::BI__builtin_constant_p: {
10952     const Expr *Arg = E->getArg(0);
10953     if (EvaluateBuiltinConstantP(Info, Arg))
10954       return Success(true, E);
10955     if (Info.InConstantContext || Arg->HasSideEffects(Info.Ctx)) {
10956       // Outside a constant context, eagerly evaluate to false in the presence
10957       // of side-effects in order to avoid -Wunsequenced false-positives in
10958       // a branch on __builtin_constant_p(expr).
10959       return Success(false, E);
10960     }
10961     Info.FFDiag(E, diag::note_invalid_subexpr_in_const_expr);
10962     return false;
10963   }
10964 
10965   case Builtin::BI__builtin_is_constant_evaluated: {
10966     const auto *Callee = Info.CurrentCall->getCallee();
10967     if (Info.InConstantContext && !Info.CheckingPotentialConstantExpression &&
10968         (Info.CallStackDepth == 1 ||
10969          (Info.CallStackDepth == 2 && Callee->isInStdNamespace() &&
10970           Callee->getIdentifier() &&
10971           Callee->getIdentifier()->isStr("is_constant_evaluated")))) {
10972       // FIXME: Find a better way to avoid duplicated diagnostics.
10973       if (Info.EvalStatus.Diag)
10974         Info.report((Info.CallStackDepth == 1) ? E->getExprLoc()
10975                                                : Info.CurrentCall->CallLoc,
10976                     diag::warn_is_constant_evaluated_always_true_constexpr)
10977             << (Info.CallStackDepth == 1 ? "__builtin_is_constant_evaluated"
10978                                          : "std::is_constant_evaluated");
10979     }
10980 
10981     return Success(Info.InConstantContext, E);
10982   }
10983 
10984   case Builtin::BI__builtin_ctz:
10985   case Builtin::BI__builtin_ctzl:
10986   case Builtin::BI__builtin_ctzll:
10987   case Builtin::BI__builtin_ctzs: {
10988     APSInt Val;
10989     if (!EvaluateInteger(E->getArg(0), Val, Info))
10990       return false;
10991     if (!Val)
10992       return Error(E);
10993 
10994     return Success(Val.countTrailingZeros(), E);
10995   }
10996 
10997   case Builtin::BI__builtin_eh_return_data_regno: {
10998     int Operand = E->getArg(0)->EvaluateKnownConstInt(Info.Ctx).getZExtValue();
10999     Operand = Info.Ctx.getTargetInfo().getEHDataRegisterNumber(Operand);
11000     return Success(Operand, E);
11001   }
11002 
11003   case Builtin::BI__builtin_expect:
11004     return Visit(E->getArg(0));
11005 
11006   case Builtin::BI__builtin_ffs:
11007   case Builtin::BI__builtin_ffsl:
11008   case Builtin::BI__builtin_ffsll: {
11009     APSInt Val;
11010     if (!EvaluateInteger(E->getArg(0), Val, Info))
11011       return false;
11012 
11013     unsigned N = Val.countTrailingZeros();
11014     return Success(N == Val.getBitWidth() ? 0 : N + 1, E);
11015   }
11016 
11017   case Builtin::BI__builtin_fpclassify: {
11018     APFloat Val(0.0);
11019     if (!EvaluateFloat(E->getArg(5), Val, Info))
11020       return false;
11021     unsigned Arg;
11022     switch (Val.getCategory()) {
11023     case APFloat::fcNaN: Arg = 0; break;
11024     case APFloat::fcInfinity: Arg = 1; break;
11025     case APFloat::fcNormal: Arg = Val.isDenormal() ? 3 : 2; break;
11026     case APFloat::fcZero: Arg = 4; break;
11027     }
11028     return Visit(E->getArg(Arg));
11029   }
11030 
11031   case Builtin::BI__builtin_isinf_sign: {
11032     APFloat Val(0.0);
11033     return EvaluateFloat(E->getArg(0), Val, Info) &&
11034            Success(Val.isInfinity() ? (Val.isNegative() ? -1 : 1) : 0, E);
11035   }
11036 
11037   case Builtin::BI__builtin_isinf: {
11038     APFloat Val(0.0);
11039     return EvaluateFloat(E->getArg(0), Val, Info) &&
11040            Success(Val.isInfinity() ? 1 : 0, E);
11041   }
11042 
11043   case Builtin::BI__builtin_isfinite: {
11044     APFloat Val(0.0);
11045     return EvaluateFloat(E->getArg(0), Val, Info) &&
11046            Success(Val.isFinite() ? 1 : 0, E);
11047   }
11048 
11049   case Builtin::BI__builtin_isnan: {
11050     APFloat Val(0.0);
11051     return EvaluateFloat(E->getArg(0), Val, Info) &&
11052            Success(Val.isNaN() ? 1 : 0, E);
11053   }
11054 
11055   case Builtin::BI__builtin_isnormal: {
11056     APFloat Val(0.0);
11057     return EvaluateFloat(E->getArg(0), Val, Info) &&
11058            Success(Val.isNormal() ? 1 : 0, E);
11059   }
11060 
11061   case Builtin::BI__builtin_parity:
11062   case Builtin::BI__builtin_parityl:
11063   case Builtin::BI__builtin_parityll: {
11064     APSInt Val;
11065     if (!EvaluateInteger(E->getArg(0), Val, Info))
11066       return false;
11067 
11068     return Success(Val.countPopulation() % 2, E);
11069   }
11070 
11071   case Builtin::BI__builtin_popcount:
11072   case Builtin::BI__builtin_popcountl:
11073   case Builtin::BI__builtin_popcountll: {
11074     APSInt Val;
11075     if (!EvaluateInteger(E->getArg(0), Val, Info))
11076       return false;
11077 
11078     return Success(Val.countPopulation(), E);
11079   }
11080 
11081   case Builtin::BIstrlen:
11082   case Builtin::BIwcslen:
11083     // A call to strlen is not a constant expression.
11084     if (Info.getLangOpts().CPlusPlus11)
11085       Info.CCEDiag(E, diag::note_constexpr_invalid_function)
11086         << /*isConstexpr*/0 << /*isConstructor*/0
11087         << (std::string("'") + Info.Ctx.BuiltinInfo.getName(BuiltinOp) + "'");
11088     else
11089       Info.CCEDiag(E, diag::note_invalid_subexpr_in_const_expr);
11090     LLVM_FALLTHROUGH;
11091   case Builtin::BI__builtin_strlen:
11092   case Builtin::BI__builtin_wcslen: {
11093     // As an extension, we support __builtin_strlen() as a constant expression,
11094     // and support folding strlen() to a constant.
11095     LValue String;
11096     if (!EvaluatePointer(E->getArg(0), String, Info))
11097       return false;
11098 
11099     QualType CharTy = E->getArg(0)->getType()->getPointeeType();
11100 
11101     // Fast path: if it's a string literal, search the string value.
11102     if (const StringLiteral *S = dyn_cast_or_null<StringLiteral>(
11103             String.getLValueBase().dyn_cast<const Expr *>())) {
11104       // The string literal may have embedded null characters. Find the first
11105       // one and truncate there.
11106       StringRef Str = S->getBytes();
11107       int64_t Off = String.Offset.getQuantity();
11108       if (Off >= 0 && (uint64_t)Off <= (uint64_t)Str.size() &&
11109           S->getCharByteWidth() == 1 &&
11110           // FIXME: Add fast-path for wchar_t too.
11111           Info.Ctx.hasSameUnqualifiedType(CharTy, Info.Ctx.CharTy)) {
11112         Str = Str.substr(Off);
11113 
11114         StringRef::size_type Pos = Str.find(0);
11115         if (Pos != StringRef::npos)
11116           Str = Str.substr(0, Pos);
11117 
11118         return Success(Str.size(), E);
11119       }
11120 
11121       // Fall through to slow path to issue appropriate diagnostic.
11122     }
11123 
11124     // Slow path: scan the bytes of the string looking for the terminating 0.
11125     for (uint64_t Strlen = 0; /**/; ++Strlen) {
11126       APValue Char;
11127       if (!handleLValueToRValueConversion(Info, E, CharTy, String, Char) ||
11128           !Char.isInt())
11129         return false;
11130       if (!Char.getInt())
11131         return Success(Strlen, E);
11132       if (!HandleLValueArrayAdjustment(Info, E, String, CharTy, 1))
11133         return false;
11134     }
11135   }
11136 
11137   case Builtin::BIstrcmp:
11138   case Builtin::BIwcscmp:
11139   case Builtin::BIstrncmp:
11140   case Builtin::BIwcsncmp:
11141   case Builtin::BImemcmp:
11142   case Builtin::BIbcmp:
11143   case Builtin::BIwmemcmp:
11144     // A call to strlen is not a constant expression.
11145     if (Info.getLangOpts().CPlusPlus11)
11146       Info.CCEDiag(E, diag::note_constexpr_invalid_function)
11147         << /*isConstexpr*/0 << /*isConstructor*/0
11148         << (std::string("'") + Info.Ctx.BuiltinInfo.getName(BuiltinOp) + "'");
11149     else
11150       Info.CCEDiag(E, diag::note_invalid_subexpr_in_const_expr);
11151     LLVM_FALLTHROUGH;
11152   case Builtin::BI__builtin_strcmp:
11153   case Builtin::BI__builtin_wcscmp:
11154   case Builtin::BI__builtin_strncmp:
11155   case Builtin::BI__builtin_wcsncmp:
11156   case Builtin::BI__builtin_memcmp:
11157   case Builtin::BI__builtin_bcmp:
11158   case Builtin::BI__builtin_wmemcmp: {
11159     LValue String1, String2;
11160     if (!EvaluatePointer(E->getArg(0), String1, Info) ||
11161         !EvaluatePointer(E->getArg(1), String2, Info))
11162       return false;
11163 
11164     uint64_t MaxLength = uint64_t(-1);
11165     if (BuiltinOp != Builtin::BIstrcmp &&
11166         BuiltinOp != Builtin::BIwcscmp &&
11167         BuiltinOp != Builtin::BI__builtin_strcmp &&
11168         BuiltinOp != Builtin::BI__builtin_wcscmp) {
11169       APSInt N;
11170       if (!EvaluateInteger(E->getArg(2), N, Info))
11171         return false;
11172       MaxLength = N.getExtValue();
11173     }
11174 
11175     // Empty substrings compare equal by definition.
11176     if (MaxLength == 0u)
11177       return Success(0, E);
11178 
11179     if (!String1.checkNullPointerForFoldAccess(Info, E, AK_Read) ||
11180         !String2.checkNullPointerForFoldAccess(Info, E, AK_Read) ||
11181         String1.Designator.Invalid || String2.Designator.Invalid)
11182       return false;
11183 
11184     QualType CharTy1 = String1.Designator.getType(Info.Ctx);
11185     QualType CharTy2 = String2.Designator.getType(Info.Ctx);
11186 
11187     bool IsRawByte = BuiltinOp == Builtin::BImemcmp ||
11188                      BuiltinOp == Builtin::BIbcmp ||
11189                      BuiltinOp == Builtin::BI__builtin_memcmp ||
11190                      BuiltinOp == Builtin::BI__builtin_bcmp;
11191 
11192     assert(IsRawByte ||
11193            (Info.Ctx.hasSameUnqualifiedType(
11194                 CharTy1, E->getArg(0)->getType()->getPointeeType()) &&
11195             Info.Ctx.hasSameUnqualifiedType(CharTy1, CharTy2)));
11196 
11197     // For memcmp, allow comparing any arrays of '[[un]signed] char' or
11198     // 'char8_t', but no other types.
11199     if (IsRawByte &&
11200         !(isOneByteCharacterType(CharTy1) && isOneByteCharacterType(CharTy2))) {
11201       // FIXME: Consider using our bit_cast implementation to support this.
11202       Info.FFDiag(E, diag::note_constexpr_memcmp_unsupported)
11203           << (std::string("'") + Info.Ctx.BuiltinInfo.getName(BuiltinOp) + "'")
11204           << CharTy1 << CharTy2;
11205       return false;
11206     }
11207 
11208     const auto &ReadCurElems = [&](APValue &Char1, APValue &Char2) {
11209       return handleLValueToRValueConversion(Info, E, CharTy1, String1, Char1) &&
11210              handleLValueToRValueConversion(Info, E, CharTy2, String2, Char2) &&
11211              Char1.isInt() && Char2.isInt();
11212     };
11213     const auto &AdvanceElems = [&] {
11214       return HandleLValueArrayAdjustment(Info, E, String1, CharTy1, 1) &&
11215              HandleLValueArrayAdjustment(Info, E, String2, CharTy2, 1);
11216     };
11217 
11218     bool StopAtNull =
11219         (BuiltinOp != Builtin::BImemcmp && BuiltinOp != Builtin::BIbcmp &&
11220          BuiltinOp != Builtin::BIwmemcmp &&
11221          BuiltinOp != Builtin::BI__builtin_memcmp &&
11222          BuiltinOp != Builtin::BI__builtin_bcmp &&
11223          BuiltinOp != Builtin::BI__builtin_wmemcmp);
11224     bool IsWide = BuiltinOp == Builtin::BIwcscmp ||
11225                   BuiltinOp == Builtin::BIwcsncmp ||
11226                   BuiltinOp == Builtin::BIwmemcmp ||
11227                   BuiltinOp == Builtin::BI__builtin_wcscmp ||
11228                   BuiltinOp == Builtin::BI__builtin_wcsncmp ||
11229                   BuiltinOp == Builtin::BI__builtin_wmemcmp;
11230 
11231     for (; MaxLength; --MaxLength) {
11232       APValue Char1, Char2;
11233       if (!ReadCurElems(Char1, Char2))
11234         return false;
11235       if (Char1.getInt().ne(Char2.getInt())) {
11236         if (IsWide) // wmemcmp compares with wchar_t signedness.
11237           return Success(Char1.getInt() < Char2.getInt() ? -1 : 1, E);
11238         // memcmp always compares unsigned chars.
11239         return Success(Char1.getInt().ult(Char2.getInt()) ? -1 : 1, E);
11240       }
11241       if (StopAtNull && !Char1.getInt())
11242         return Success(0, E);
11243       assert(!(StopAtNull && !Char2.getInt()));
11244       if (!AdvanceElems())
11245         return false;
11246     }
11247     // We hit the strncmp / memcmp limit.
11248     return Success(0, E);
11249   }
11250 
11251   case Builtin::BI__atomic_always_lock_free:
11252   case Builtin::BI__atomic_is_lock_free:
11253   case Builtin::BI__c11_atomic_is_lock_free: {
11254     APSInt SizeVal;
11255     if (!EvaluateInteger(E->getArg(0), SizeVal, Info))
11256       return false;
11257 
11258     // For __atomic_is_lock_free(sizeof(_Atomic(T))), if the size is a power
11259     // of two less than the maximum inline atomic width, we know it is
11260     // lock-free.  If the size isn't a power of two, or greater than the
11261     // maximum alignment where we promote atomics, we know it is not lock-free
11262     // (at least not in the sense of atomic_is_lock_free).  Otherwise,
11263     // the answer can only be determined at runtime; for example, 16-byte
11264     // atomics have lock-free implementations on some, but not all,
11265     // x86-64 processors.
11266 
11267     // Check power-of-two.
11268     CharUnits Size = CharUnits::fromQuantity(SizeVal.getZExtValue());
11269     if (Size.isPowerOfTwo()) {
11270       // Check against inlining width.
11271       unsigned InlineWidthBits =
11272           Info.Ctx.getTargetInfo().getMaxAtomicInlineWidth();
11273       if (Size <= Info.Ctx.toCharUnitsFromBits(InlineWidthBits)) {
11274         if (BuiltinOp == Builtin::BI__c11_atomic_is_lock_free ||
11275             Size == CharUnits::One() ||
11276             E->getArg(1)->isNullPointerConstant(Info.Ctx,
11277                                                 Expr::NPC_NeverValueDependent))
11278           // OK, we will inline appropriately-aligned operations of this size,
11279           // and _Atomic(T) is appropriately-aligned.
11280           return Success(1, E);
11281 
11282         QualType PointeeType = E->getArg(1)->IgnoreImpCasts()->getType()->
11283           castAs<PointerType>()->getPointeeType();
11284         if (!PointeeType->isIncompleteType() &&
11285             Info.Ctx.getTypeAlignInChars(PointeeType) >= Size) {
11286           // OK, we will inline operations on this object.
11287           return Success(1, E);
11288         }
11289       }
11290     }
11291 
11292     return BuiltinOp == Builtin::BI__atomic_always_lock_free ?
11293         Success(0, E) : Error(E);
11294   }
11295   case Builtin::BIomp_is_initial_device:
11296     // We can decide statically which value the runtime would return if called.
11297     return Success(Info.getLangOpts().OpenMPIsDevice ? 0 : 1, E);
11298   case Builtin::BI__builtin_add_overflow:
11299   case Builtin::BI__builtin_sub_overflow:
11300   case Builtin::BI__builtin_mul_overflow:
11301   case Builtin::BI__builtin_sadd_overflow:
11302   case Builtin::BI__builtin_uadd_overflow:
11303   case Builtin::BI__builtin_uaddl_overflow:
11304   case Builtin::BI__builtin_uaddll_overflow:
11305   case Builtin::BI__builtin_usub_overflow:
11306   case Builtin::BI__builtin_usubl_overflow:
11307   case Builtin::BI__builtin_usubll_overflow:
11308   case Builtin::BI__builtin_umul_overflow:
11309   case Builtin::BI__builtin_umull_overflow:
11310   case Builtin::BI__builtin_umulll_overflow:
11311   case Builtin::BI__builtin_saddl_overflow:
11312   case Builtin::BI__builtin_saddll_overflow:
11313   case Builtin::BI__builtin_ssub_overflow:
11314   case Builtin::BI__builtin_ssubl_overflow:
11315   case Builtin::BI__builtin_ssubll_overflow:
11316   case Builtin::BI__builtin_smul_overflow:
11317   case Builtin::BI__builtin_smull_overflow:
11318   case Builtin::BI__builtin_smulll_overflow: {
11319     LValue ResultLValue;
11320     APSInt LHS, RHS;
11321 
11322     QualType ResultType = E->getArg(2)->getType()->getPointeeType();
11323     if (!EvaluateInteger(E->getArg(0), LHS, Info) ||
11324         !EvaluateInteger(E->getArg(1), RHS, Info) ||
11325         !EvaluatePointer(E->getArg(2), ResultLValue, Info))
11326       return false;
11327 
11328     APSInt Result;
11329     bool DidOverflow = false;
11330 
11331     // If the types don't have to match, enlarge all 3 to the largest of them.
11332     if (BuiltinOp == Builtin::BI__builtin_add_overflow ||
11333         BuiltinOp == Builtin::BI__builtin_sub_overflow ||
11334         BuiltinOp == Builtin::BI__builtin_mul_overflow) {
11335       bool IsSigned = LHS.isSigned() || RHS.isSigned() ||
11336                       ResultType->isSignedIntegerOrEnumerationType();
11337       bool AllSigned = LHS.isSigned() && RHS.isSigned() &&
11338                       ResultType->isSignedIntegerOrEnumerationType();
11339       uint64_t LHSSize = LHS.getBitWidth();
11340       uint64_t RHSSize = RHS.getBitWidth();
11341       uint64_t ResultSize = Info.Ctx.getTypeSize(ResultType);
11342       uint64_t MaxBits = std::max(std::max(LHSSize, RHSSize), ResultSize);
11343 
11344       // Add an additional bit if the signedness isn't uniformly agreed to. We
11345       // could do this ONLY if there is a signed and an unsigned that both have
11346       // MaxBits, but the code to check that is pretty nasty.  The issue will be
11347       // caught in the shrink-to-result later anyway.
11348       if (IsSigned && !AllSigned)
11349         ++MaxBits;
11350 
11351       LHS = APSInt(LHS.extOrTrunc(MaxBits), !IsSigned);
11352       RHS = APSInt(RHS.extOrTrunc(MaxBits), !IsSigned);
11353       Result = APSInt(MaxBits, !IsSigned);
11354     }
11355 
11356     // Find largest int.
11357     switch (BuiltinOp) {
11358     default:
11359       llvm_unreachable("Invalid value for BuiltinOp");
11360     case Builtin::BI__builtin_add_overflow:
11361     case Builtin::BI__builtin_sadd_overflow:
11362     case Builtin::BI__builtin_saddl_overflow:
11363     case Builtin::BI__builtin_saddll_overflow:
11364     case Builtin::BI__builtin_uadd_overflow:
11365     case Builtin::BI__builtin_uaddl_overflow:
11366     case Builtin::BI__builtin_uaddll_overflow:
11367       Result = LHS.isSigned() ? LHS.sadd_ov(RHS, DidOverflow)
11368                               : LHS.uadd_ov(RHS, DidOverflow);
11369       break;
11370     case Builtin::BI__builtin_sub_overflow:
11371     case Builtin::BI__builtin_ssub_overflow:
11372     case Builtin::BI__builtin_ssubl_overflow:
11373     case Builtin::BI__builtin_ssubll_overflow:
11374     case Builtin::BI__builtin_usub_overflow:
11375     case Builtin::BI__builtin_usubl_overflow:
11376     case Builtin::BI__builtin_usubll_overflow:
11377       Result = LHS.isSigned() ? LHS.ssub_ov(RHS, DidOverflow)
11378                               : LHS.usub_ov(RHS, DidOverflow);
11379       break;
11380     case Builtin::BI__builtin_mul_overflow:
11381     case Builtin::BI__builtin_smul_overflow:
11382     case Builtin::BI__builtin_smull_overflow:
11383     case Builtin::BI__builtin_smulll_overflow:
11384     case Builtin::BI__builtin_umul_overflow:
11385     case Builtin::BI__builtin_umull_overflow:
11386     case Builtin::BI__builtin_umulll_overflow:
11387       Result = LHS.isSigned() ? LHS.smul_ov(RHS, DidOverflow)
11388                               : LHS.umul_ov(RHS, DidOverflow);
11389       break;
11390     }
11391 
11392     // In the case where multiple sizes are allowed, truncate and see if
11393     // the values are the same.
11394     if (BuiltinOp == Builtin::BI__builtin_add_overflow ||
11395         BuiltinOp == Builtin::BI__builtin_sub_overflow ||
11396         BuiltinOp == Builtin::BI__builtin_mul_overflow) {
11397       // APSInt doesn't have a TruncOrSelf, so we use extOrTrunc instead,
11398       // since it will give us the behavior of a TruncOrSelf in the case where
11399       // its parameter <= its size.  We previously set Result to be at least the
11400       // type-size of the result, so getTypeSize(ResultType) <= Result.BitWidth
11401       // will work exactly like TruncOrSelf.
11402       APSInt Temp = Result.extOrTrunc(Info.Ctx.getTypeSize(ResultType));
11403       Temp.setIsSigned(ResultType->isSignedIntegerOrEnumerationType());
11404 
11405       if (!APSInt::isSameValue(Temp, Result))
11406         DidOverflow = true;
11407       Result = Temp;
11408     }
11409 
11410     APValue APV{Result};
11411     if (!handleAssignment(Info, E, ResultLValue, ResultType, APV))
11412       return false;
11413     return Success(DidOverflow, E);
11414   }
11415   }
11416 }
11417 
11418 /// Determine whether this is a pointer past the end of the complete
11419 /// object referred to by the lvalue.
11420 static bool isOnePastTheEndOfCompleteObject(const ASTContext &Ctx,
11421                                             const LValue &LV) {
11422   // A null pointer can be viewed as being "past the end" but we don't
11423   // choose to look at it that way here.
11424   if (!LV.getLValueBase())
11425     return false;
11426 
11427   // If the designator is valid and refers to a subobject, we're not pointing
11428   // past the end.
11429   if (!LV.getLValueDesignator().Invalid &&
11430       !LV.getLValueDesignator().isOnePastTheEnd())
11431     return false;
11432 
11433   // A pointer to an incomplete type might be past-the-end if the type's size is
11434   // zero.  We cannot tell because the type is incomplete.
11435   QualType Ty = getType(LV.getLValueBase());
11436   if (Ty->isIncompleteType())
11437     return true;
11438 
11439   // We're a past-the-end pointer if we point to the byte after the object,
11440   // no matter what our type or path is.
11441   auto Size = Ctx.getTypeSizeInChars(Ty);
11442   return LV.getLValueOffset() == Size;
11443 }
11444 
11445 namespace {
11446 
11447 /// Data recursive integer evaluator of certain binary operators.
11448 ///
11449 /// We use a data recursive algorithm for binary operators so that we are able
11450 /// to handle extreme cases of chained binary operators without causing stack
11451 /// overflow.
11452 class DataRecursiveIntBinOpEvaluator {
11453   struct EvalResult {
11454     APValue Val;
11455     bool Failed;
11456 
11457     EvalResult() : Failed(false) { }
11458 
11459     void swap(EvalResult &RHS) {
11460       Val.swap(RHS.Val);
11461       Failed = RHS.Failed;
11462       RHS.Failed = false;
11463     }
11464   };
11465 
11466   struct Job {
11467     const Expr *E;
11468     EvalResult LHSResult; // meaningful only for binary operator expression.
11469     enum { AnyExprKind, BinOpKind, BinOpVisitedLHSKind } Kind;
11470 
11471     Job() = default;
11472     Job(Job &&) = default;
11473 
11474     void startSpeculativeEval(EvalInfo &Info) {
11475       SpecEvalRAII = SpeculativeEvaluationRAII(Info);
11476     }
11477 
11478   private:
11479     SpeculativeEvaluationRAII SpecEvalRAII;
11480   };
11481 
11482   SmallVector<Job, 16> Queue;
11483 
11484   IntExprEvaluator &IntEval;
11485   EvalInfo &Info;
11486   APValue &FinalResult;
11487 
11488 public:
11489   DataRecursiveIntBinOpEvaluator(IntExprEvaluator &IntEval, APValue &Result)
11490     : IntEval(IntEval), Info(IntEval.getEvalInfo()), FinalResult(Result) { }
11491 
11492   /// True if \param E is a binary operator that we are going to handle
11493   /// data recursively.
11494   /// We handle binary operators that are comma, logical, or that have operands
11495   /// with integral or enumeration type.
11496   static bool shouldEnqueue(const BinaryOperator *E) {
11497     return E->getOpcode() == BO_Comma || E->isLogicalOp() ||
11498            (E->isRValue() && E->getType()->isIntegralOrEnumerationType() &&
11499             E->getLHS()->getType()->isIntegralOrEnumerationType() &&
11500             E->getRHS()->getType()->isIntegralOrEnumerationType());
11501   }
11502 
11503   bool Traverse(const BinaryOperator *E) {
11504     enqueue(E);
11505     EvalResult PrevResult;
11506     while (!Queue.empty())
11507       process(PrevResult);
11508 
11509     if (PrevResult.Failed) return false;
11510 
11511     FinalResult.swap(PrevResult.Val);
11512     return true;
11513   }
11514 
11515 private:
11516   bool Success(uint64_t Value, const Expr *E, APValue &Result) {
11517     return IntEval.Success(Value, E, Result);
11518   }
11519   bool Success(const APSInt &Value, const Expr *E, APValue &Result) {
11520     return IntEval.Success(Value, E, Result);
11521   }
11522   bool Error(const Expr *E) {
11523     return IntEval.Error(E);
11524   }
11525   bool Error(const Expr *E, diag::kind D) {
11526     return IntEval.Error(E, D);
11527   }
11528 
11529   OptionalDiagnostic CCEDiag(const Expr *E, diag::kind D) {
11530     return Info.CCEDiag(E, D);
11531   }
11532 
11533   // Returns true if visiting the RHS is necessary, false otherwise.
11534   bool VisitBinOpLHSOnly(EvalResult &LHSResult, const BinaryOperator *E,
11535                          bool &SuppressRHSDiags);
11536 
11537   bool VisitBinOp(const EvalResult &LHSResult, const EvalResult &RHSResult,
11538                   const BinaryOperator *E, APValue &Result);
11539 
11540   void EvaluateExpr(const Expr *E, EvalResult &Result) {
11541     Result.Failed = !Evaluate(Result.Val, Info, E);
11542     if (Result.Failed)
11543       Result.Val = APValue();
11544   }
11545 
11546   void process(EvalResult &Result);
11547 
11548   void enqueue(const Expr *E) {
11549     E = E->IgnoreParens();
11550     Queue.resize(Queue.size()+1);
11551     Queue.back().E = E;
11552     Queue.back().Kind = Job::AnyExprKind;
11553   }
11554 };
11555 
11556 }
11557 
11558 bool DataRecursiveIntBinOpEvaluator::
11559        VisitBinOpLHSOnly(EvalResult &LHSResult, const BinaryOperator *E,
11560                          bool &SuppressRHSDiags) {
11561   if (E->getOpcode() == BO_Comma) {
11562     // Ignore LHS but note if we could not evaluate it.
11563     if (LHSResult.Failed)
11564       return Info.noteSideEffect();
11565     return true;
11566   }
11567 
11568   if (E->isLogicalOp()) {
11569     bool LHSAsBool;
11570     if (!LHSResult.Failed && HandleConversionToBool(LHSResult.Val, LHSAsBool)) {
11571       // We were able to evaluate the LHS, see if we can get away with not
11572       // evaluating the RHS: 0 && X -> 0, 1 || X -> 1
11573       if (LHSAsBool == (E->getOpcode() == BO_LOr)) {
11574         Success(LHSAsBool, E, LHSResult.Val);
11575         return false; // Ignore RHS
11576       }
11577     } else {
11578       LHSResult.Failed = true;
11579 
11580       // Since we weren't able to evaluate the left hand side, it
11581       // might have had side effects.
11582       if (!Info.noteSideEffect())
11583         return false;
11584 
11585       // We can't evaluate the LHS; however, sometimes the result
11586       // is determined by the RHS: X && 0 -> 0, X || 1 -> 1.
11587       // Don't ignore RHS and suppress diagnostics from this arm.
11588       SuppressRHSDiags = true;
11589     }
11590 
11591     return true;
11592   }
11593 
11594   assert(E->getLHS()->getType()->isIntegralOrEnumerationType() &&
11595          E->getRHS()->getType()->isIntegralOrEnumerationType());
11596 
11597   if (LHSResult.Failed && !Info.noteFailure())
11598     return false; // Ignore RHS;
11599 
11600   return true;
11601 }
11602 
11603 static void addOrSubLValueAsInteger(APValue &LVal, const APSInt &Index,
11604                                     bool IsSub) {
11605   // Compute the new offset in the appropriate width, wrapping at 64 bits.
11606   // FIXME: When compiling for a 32-bit target, we should use 32-bit
11607   // offsets.
11608   assert(!LVal.hasLValuePath() && "have designator for integer lvalue");
11609   CharUnits &Offset = LVal.getLValueOffset();
11610   uint64_t Offset64 = Offset.getQuantity();
11611   uint64_t Index64 = Index.extOrTrunc(64).getZExtValue();
11612   Offset = CharUnits::fromQuantity(IsSub ? Offset64 - Index64
11613                                          : Offset64 + Index64);
11614 }
11615 
11616 bool DataRecursiveIntBinOpEvaluator::
11617        VisitBinOp(const EvalResult &LHSResult, const EvalResult &RHSResult,
11618                   const BinaryOperator *E, APValue &Result) {
11619   if (E->getOpcode() == BO_Comma) {
11620     if (RHSResult.Failed)
11621       return false;
11622     Result = RHSResult.Val;
11623     return true;
11624   }
11625 
11626   if (E->isLogicalOp()) {
11627     bool lhsResult, rhsResult;
11628     bool LHSIsOK = HandleConversionToBool(LHSResult.Val, lhsResult);
11629     bool RHSIsOK = HandleConversionToBool(RHSResult.Val, rhsResult);
11630 
11631     if (LHSIsOK) {
11632       if (RHSIsOK) {
11633         if (E->getOpcode() == BO_LOr)
11634           return Success(lhsResult || rhsResult, E, Result);
11635         else
11636           return Success(lhsResult && rhsResult, E, Result);
11637       }
11638     } else {
11639       if (RHSIsOK) {
11640         // We can't evaluate the LHS; however, sometimes the result
11641         // is determined by the RHS: X && 0 -> 0, X || 1 -> 1.
11642         if (rhsResult == (E->getOpcode() == BO_LOr))
11643           return Success(rhsResult, E, Result);
11644       }
11645     }
11646 
11647     return false;
11648   }
11649 
11650   assert(E->getLHS()->getType()->isIntegralOrEnumerationType() &&
11651          E->getRHS()->getType()->isIntegralOrEnumerationType());
11652 
11653   if (LHSResult.Failed || RHSResult.Failed)
11654     return false;
11655 
11656   const APValue &LHSVal = LHSResult.Val;
11657   const APValue &RHSVal = RHSResult.Val;
11658 
11659   // Handle cases like (unsigned long)&a + 4.
11660   if (E->isAdditiveOp() && LHSVal.isLValue() && RHSVal.isInt()) {
11661     Result = LHSVal;
11662     addOrSubLValueAsInteger(Result, RHSVal.getInt(), E->getOpcode() == BO_Sub);
11663     return true;
11664   }
11665 
11666   // Handle cases like 4 + (unsigned long)&a
11667   if (E->getOpcode() == BO_Add &&
11668       RHSVal.isLValue() && LHSVal.isInt()) {
11669     Result = RHSVal;
11670     addOrSubLValueAsInteger(Result, LHSVal.getInt(), /*IsSub*/false);
11671     return true;
11672   }
11673 
11674   if (E->getOpcode() == BO_Sub && LHSVal.isLValue() && RHSVal.isLValue()) {
11675     // Handle (intptr_t)&&A - (intptr_t)&&B.
11676     if (!LHSVal.getLValueOffset().isZero() ||
11677         !RHSVal.getLValueOffset().isZero())
11678       return false;
11679     const Expr *LHSExpr = LHSVal.getLValueBase().dyn_cast<const Expr*>();
11680     const Expr *RHSExpr = RHSVal.getLValueBase().dyn_cast<const Expr*>();
11681     if (!LHSExpr || !RHSExpr)
11682       return false;
11683     const AddrLabelExpr *LHSAddrExpr = dyn_cast<AddrLabelExpr>(LHSExpr);
11684     const AddrLabelExpr *RHSAddrExpr = dyn_cast<AddrLabelExpr>(RHSExpr);
11685     if (!LHSAddrExpr || !RHSAddrExpr)
11686       return false;
11687     // Make sure both labels come from the same function.
11688     if (LHSAddrExpr->getLabel()->getDeclContext() !=
11689         RHSAddrExpr->getLabel()->getDeclContext())
11690       return false;
11691     Result = APValue(LHSAddrExpr, RHSAddrExpr);
11692     return true;
11693   }
11694 
11695   // All the remaining cases expect both operands to be an integer
11696   if (!LHSVal.isInt() || !RHSVal.isInt())
11697     return Error(E);
11698 
11699   // Set up the width and signedness manually, in case it can't be deduced
11700   // from the operation we're performing.
11701   // FIXME: Don't do this in the cases where we can deduce it.
11702   APSInt Value(Info.Ctx.getIntWidth(E->getType()),
11703                E->getType()->isUnsignedIntegerOrEnumerationType());
11704   if (!handleIntIntBinOp(Info, E, LHSVal.getInt(), E->getOpcode(),
11705                          RHSVal.getInt(), Value))
11706     return false;
11707   return Success(Value, E, Result);
11708 }
11709 
11710 void DataRecursiveIntBinOpEvaluator::process(EvalResult &Result) {
11711   Job &job = Queue.back();
11712 
11713   switch (job.Kind) {
11714     case Job::AnyExprKind: {
11715       if (const BinaryOperator *Bop = dyn_cast<BinaryOperator>(job.E)) {
11716         if (shouldEnqueue(Bop)) {
11717           job.Kind = Job::BinOpKind;
11718           enqueue(Bop->getLHS());
11719           return;
11720         }
11721       }
11722 
11723       EvaluateExpr(job.E, Result);
11724       Queue.pop_back();
11725       return;
11726     }
11727 
11728     case Job::BinOpKind: {
11729       const BinaryOperator *Bop = cast<BinaryOperator>(job.E);
11730       bool SuppressRHSDiags = false;
11731       if (!VisitBinOpLHSOnly(Result, Bop, SuppressRHSDiags)) {
11732         Queue.pop_back();
11733         return;
11734       }
11735       if (SuppressRHSDiags)
11736         job.startSpeculativeEval(Info);
11737       job.LHSResult.swap(Result);
11738       job.Kind = Job::BinOpVisitedLHSKind;
11739       enqueue(Bop->getRHS());
11740       return;
11741     }
11742 
11743     case Job::BinOpVisitedLHSKind: {
11744       const BinaryOperator *Bop = cast<BinaryOperator>(job.E);
11745       EvalResult RHS;
11746       RHS.swap(Result);
11747       Result.Failed = !VisitBinOp(job.LHSResult, RHS, Bop, Result.Val);
11748       Queue.pop_back();
11749       return;
11750     }
11751   }
11752 
11753   llvm_unreachable("Invalid Job::Kind!");
11754 }
11755 
11756 namespace {
11757 /// Used when we determine that we should fail, but can keep evaluating prior to
11758 /// noting that we had a failure.
11759 class DelayedNoteFailureRAII {
11760   EvalInfo &Info;
11761   bool NoteFailure;
11762 
11763 public:
11764   DelayedNoteFailureRAII(EvalInfo &Info, bool NoteFailure = true)
11765       : Info(Info), NoteFailure(NoteFailure) {}
11766   ~DelayedNoteFailureRAII() {
11767     if (NoteFailure) {
11768       bool ContinueAfterFailure = Info.noteFailure();
11769       (void)ContinueAfterFailure;
11770       assert(ContinueAfterFailure &&
11771              "Shouldn't have kept evaluating on failure.");
11772     }
11773   }
11774 };
11775 
11776 enum class CmpResult {
11777   Unequal,
11778   Less,
11779   Equal,
11780   Greater,
11781   Unordered,
11782 };
11783 }
11784 
11785 template <class SuccessCB, class AfterCB>
11786 static bool
11787 EvaluateComparisonBinaryOperator(EvalInfo &Info, const BinaryOperator *E,
11788                                  SuccessCB &&Success, AfterCB &&DoAfter) {
11789   assert(E->isComparisonOp() && "expected comparison operator");
11790   assert((E->getOpcode() == BO_Cmp ||
11791           E->getType()->isIntegralOrEnumerationType()) &&
11792          "unsupported binary expression evaluation");
11793   auto Error = [&](const Expr *E) {
11794     Info.FFDiag(E, diag::note_invalid_subexpr_in_const_expr);
11795     return false;
11796   };
11797 
11798   bool IsRelational = E->isRelationalOp() || E->getOpcode() == BO_Cmp;
11799   bool IsEquality = E->isEqualityOp();
11800 
11801   QualType LHSTy = E->getLHS()->getType();
11802   QualType RHSTy = E->getRHS()->getType();
11803 
11804   if (LHSTy->isIntegralOrEnumerationType() &&
11805       RHSTy->isIntegralOrEnumerationType()) {
11806     APSInt LHS, RHS;
11807     bool LHSOK = EvaluateInteger(E->getLHS(), LHS, Info);
11808     if (!LHSOK && !Info.noteFailure())
11809       return false;
11810     if (!EvaluateInteger(E->getRHS(), RHS, Info) || !LHSOK)
11811       return false;
11812     if (LHS < RHS)
11813       return Success(CmpResult::Less, E);
11814     if (LHS > RHS)
11815       return Success(CmpResult::Greater, E);
11816     return Success(CmpResult::Equal, E);
11817   }
11818 
11819   if (LHSTy->isFixedPointType() || RHSTy->isFixedPointType()) {
11820     APFixedPoint LHSFX(Info.Ctx.getFixedPointSemantics(LHSTy));
11821     APFixedPoint RHSFX(Info.Ctx.getFixedPointSemantics(RHSTy));
11822 
11823     bool LHSOK = EvaluateFixedPointOrInteger(E->getLHS(), LHSFX, Info);
11824     if (!LHSOK && !Info.noteFailure())
11825       return false;
11826     if (!EvaluateFixedPointOrInteger(E->getRHS(), RHSFX, Info) || !LHSOK)
11827       return false;
11828     if (LHSFX < RHSFX)
11829       return Success(CmpResult::Less, E);
11830     if (LHSFX > RHSFX)
11831       return Success(CmpResult::Greater, E);
11832     return Success(CmpResult::Equal, E);
11833   }
11834 
11835   if (LHSTy->isAnyComplexType() || RHSTy->isAnyComplexType()) {
11836     ComplexValue LHS, RHS;
11837     bool LHSOK;
11838     if (E->isAssignmentOp()) {
11839       LValue LV;
11840       EvaluateLValue(E->getLHS(), LV, Info);
11841       LHSOK = false;
11842     } else if (LHSTy->isRealFloatingType()) {
11843       LHSOK = EvaluateFloat(E->getLHS(), LHS.FloatReal, Info);
11844       if (LHSOK) {
11845         LHS.makeComplexFloat();
11846         LHS.FloatImag = APFloat(LHS.FloatReal.getSemantics());
11847       }
11848     } else {
11849       LHSOK = EvaluateComplex(E->getLHS(), LHS, Info);
11850     }
11851     if (!LHSOK && !Info.noteFailure())
11852       return false;
11853 
11854     if (E->getRHS()->getType()->isRealFloatingType()) {
11855       if (!EvaluateFloat(E->getRHS(), RHS.FloatReal, Info) || !LHSOK)
11856         return false;
11857       RHS.makeComplexFloat();
11858       RHS.FloatImag = APFloat(RHS.FloatReal.getSemantics());
11859     } else if (!EvaluateComplex(E->getRHS(), RHS, Info) || !LHSOK)
11860       return false;
11861 
11862     if (LHS.isComplexFloat()) {
11863       APFloat::cmpResult CR_r =
11864         LHS.getComplexFloatReal().compare(RHS.getComplexFloatReal());
11865       APFloat::cmpResult CR_i =
11866         LHS.getComplexFloatImag().compare(RHS.getComplexFloatImag());
11867       bool IsEqual = CR_r == APFloat::cmpEqual && CR_i == APFloat::cmpEqual;
11868       return Success(IsEqual ? CmpResult::Equal : CmpResult::Unequal, E);
11869     } else {
11870       assert(IsEquality && "invalid complex comparison");
11871       bool IsEqual = LHS.getComplexIntReal() == RHS.getComplexIntReal() &&
11872                      LHS.getComplexIntImag() == RHS.getComplexIntImag();
11873       return Success(IsEqual ? CmpResult::Equal : CmpResult::Unequal, E);
11874     }
11875   }
11876 
11877   if (LHSTy->isRealFloatingType() &&
11878       RHSTy->isRealFloatingType()) {
11879     APFloat RHS(0.0), LHS(0.0);
11880 
11881     bool LHSOK = EvaluateFloat(E->getRHS(), RHS, Info);
11882     if (!LHSOK && !Info.noteFailure())
11883       return false;
11884 
11885     if (!EvaluateFloat(E->getLHS(), LHS, Info) || !LHSOK)
11886       return false;
11887 
11888     assert(E->isComparisonOp() && "Invalid binary operator!");
11889     auto GetCmpRes = [&]() {
11890       switch (LHS.compare(RHS)) {
11891       case APFloat::cmpEqual:
11892         return CmpResult::Equal;
11893       case APFloat::cmpLessThan:
11894         return CmpResult::Less;
11895       case APFloat::cmpGreaterThan:
11896         return CmpResult::Greater;
11897       case APFloat::cmpUnordered:
11898         return CmpResult::Unordered;
11899       }
11900       llvm_unreachable("Unrecognised APFloat::cmpResult enum");
11901     };
11902     return Success(GetCmpRes(), E);
11903   }
11904 
11905   if (LHSTy->isPointerType() && RHSTy->isPointerType()) {
11906     LValue LHSValue, RHSValue;
11907 
11908     bool LHSOK = EvaluatePointer(E->getLHS(), LHSValue, Info);
11909     if (!LHSOK && !Info.noteFailure())
11910       return false;
11911 
11912     if (!EvaluatePointer(E->getRHS(), RHSValue, Info) || !LHSOK)
11913       return false;
11914 
11915     // Reject differing bases from the normal codepath; we special-case
11916     // comparisons to null.
11917     if (!HasSameBase(LHSValue, RHSValue)) {
11918       // Inequalities and subtractions between unrelated pointers have
11919       // unspecified or undefined behavior.
11920       if (!IsEquality) {
11921         Info.FFDiag(E, diag::note_constexpr_pointer_comparison_unspecified);
11922         return false;
11923       }
11924       // A constant address may compare equal to the address of a symbol.
11925       // The one exception is that address of an object cannot compare equal
11926       // to a null pointer constant.
11927       if ((!LHSValue.Base && !LHSValue.Offset.isZero()) ||
11928           (!RHSValue.Base && !RHSValue.Offset.isZero()))
11929         return Error(E);
11930       // It's implementation-defined whether distinct literals will have
11931       // distinct addresses. In clang, the result of such a comparison is
11932       // unspecified, so it is not a constant expression. However, we do know
11933       // that the address of a literal will be non-null.
11934       if ((IsLiteralLValue(LHSValue) || IsLiteralLValue(RHSValue)) &&
11935           LHSValue.Base && RHSValue.Base)
11936         return Error(E);
11937       // We can't tell whether weak symbols will end up pointing to the same
11938       // object.
11939       if (IsWeakLValue(LHSValue) || IsWeakLValue(RHSValue))
11940         return Error(E);
11941       // We can't compare the address of the start of one object with the
11942       // past-the-end address of another object, per C++ DR1652.
11943       if ((LHSValue.Base && LHSValue.Offset.isZero() &&
11944            isOnePastTheEndOfCompleteObject(Info.Ctx, RHSValue)) ||
11945           (RHSValue.Base && RHSValue.Offset.isZero() &&
11946            isOnePastTheEndOfCompleteObject(Info.Ctx, LHSValue)))
11947         return Error(E);
11948       // We can't tell whether an object is at the same address as another
11949       // zero sized object.
11950       if ((RHSValue.Base && isZeroSized(LHSValue)) ||
11951           (LHSValue.Base && isZeroSized(RHSValue)))
11952         return Error(E);
11953       return Success(CmpResult::Unequal, E);
11954     }
11955 
11956     const CharUnits &LHSOffset = LHSValue.getLValueOffset();
11957     const CharUnits &RHSOffset = RHSValue.getLValueOffset();
11958 
11959     SubobjectDesignator &LHSDesignator = LHSValue.getLValueDesignator();
11960     SubobjectDesignator &RHSDesignator = RHSValue.getLValueDesignator();
11961 
11962     // C++11 [expr.rel]p3:
11963     //   Pointers to void (after pointer conversions) can be compared, with a
11964     //   result defined as follows: If both pointers represent the same
11965     //   address or are both the null pointer value, the result is true if the
11966     //   operator is <= or >= and false otherwise; otherwise the result is
11967     //   unspecified.
11968     // We interpret this as applying to pointers to *cv* void.
11969     if (LHSTy->isVoidPointerType() && LHSOffset != RHSOffset && IsRelational)
11970       Info.CCEDiag(E, diag::note_constexpr_void_comparison);
11971 
11972     // C++11 [expr.rel]p2:
11973     // - If two pointers point to non-static data members of the same object,
11974     //   or to subobjects or array elements fo such members, recursively, the
11975     //   pointer to the later declared member compares greater provided the
11976     //   two members have the same access control and provided their class is
11977     //   not a union.
11978     //   [...]
11979     // - Otherwise pointer comparisons are unspecified.
11980     if (!LHSDesignator.Invalid && !RHSDesignator.Invalid && IsRelational) {
11981       bool WasArrayIndex;
11982       unsigned Mismatch = FindDesignatorMismatch(
11983           getType(LHSValue.Base), LHSDesignator, RHSDesignator, WasArrayIndex);
11984       // At the point where the designators diverge, the comparison has a
11985       // specified value if:
11986       //  - we are comparing array indices
11987       //  - we are comparing fields of a union, or fields with the same access
11988       // Otherwise, the result is unspecified and thus the comparison is not a
11989       // constant expression.
11990       if (!WasArrayIndex && Mismatch < LHSDesignator.Entries.size() &&
11991           Mismatch < RHSDesignator.Entries.size()) {
11992         const FieldDecl *LF = getAsField(LHSDesignator.Entries[Mismatch]);
11993         const FieldDecl *RF = getAsField(RHSDesignator.Entries[Mismatch]);
11994         if (!LF && !RF)
11995           Info.CCEDiag(E, diag::note_constexpr_pointer_comparison_base_classes);
11996         else if (!LF)
11997           Info.CCEDiag(E, diag::note_constexpr_pointer_comparison_base_field)
11998               << getAsBaseClass(LHSDesignator.Entries[Mismatch])
11999               << RF->getParent() << RF;
12000         else if (!RF)
12001           Info.CCEDiag(E, diag::note_constexpr_pointer_comparison_base_field)
12002               << getAsBaseClass(RHSDesignator.Entries[Mismatch])
12003               << LF->getParent() << LF;
12004         else if (!LF->getParent()->isUnion() &&
12005                  LF->getAccess() != RF->getAccess())
12006           Info.CCEDiag(E,
12007                        diag::note_constexpr_pointer_comparison_differing_access)
12008               << LF << LF->getAccess() << RF << RF->getAccess()
12009               << LF->getParent();
12010       }
12011     }
12012 
12013     // The comparison here must be unsigned, and performed with the same
12014     // width as the pointer.
12015     unsigned PtrSize = Info.Ctx.getTypeSize(LHSTy);
12016     uint64_t CompareLHS = LHSOffset.getQuantity();
12017     uint64_t CompareRHS = RHSOffset.getQuantity();
12018     assert(PtrSize <= 64 && "Unexpected pointer width");
12019     uint64_t Mask = ~0ULL >> (64 - PtrSize);
12020     CompareLHS &= Mask;
12021     CompareRHS &= Mask;
12022 
12023     // If there is a base and this is a relational operator, we can only
12024     // compare pointers within the object in question; otherwise, the result
12025     // depends on where the object is located in memory.
12026     if (!LHSValue.Base.isNull() && IsRelational) {
12027       QualType BaseTy = getType(LHSValue.Base);
12028       if (BaseTy->isIncompleteType())
12029         return Error(E);
12030       CharUnits Size = Info.Ctx.getTypeSizeInChars(BaseTy);
12031       uint64_t OffsetLimit = Size.getQuantity();
12032       if (CompareLHS > OffsetLimit || CompareRHS > OffsetLimit)
12033         return Error(E);
12034     }
12035 
12036     if (CompareLHS < CompareRHS)
12037       return Success(CmpResult::Less, E);
12038     if (CompareLHS > CompareRHS)
12039       return Success(CmpResult::Greater, E);
12040     return Success(CmpResult::Equal, E);
12041   }
12042 
12043   if (LHSTy->isMemberPointerType()) {
12044     assert(IsEquality && "unexpected member pointer operation");
12045     assert(RHSTy->isMemberPointerType() && "invalid comparison");
12046 
12047     MemberPtr LHSValue, RHSValue;
12048 
12049     bool LHSOK = EvaluateMemberPointer(E->getLHS(), LHSValue, Info);
12050     if (!LHSOK && !Info.noteFailure())
12051       return false;
12052 
12053     if (!EvaluateMemberPointer(E->getRHS(), RHSValue, Info) || !LHSOK)
12054       return false;
12055 
12056     // C++11 [expr.eq]p2:
12057     //   If both operands are null, they compare equal. Otherwise if only one is
12058     //   null, they compare unequal.
12059     if (!LHSValue.getDecl() || !RHSValue.getDecl()) {
12060       bool Equal = !LHSValue.getDecl() && !RHSValue.getDecl();
12061       return Success(Equal ? CmpResult::Equal : CmpResult::Unequal, E);
12062     }
12063 
12064     //   Otherwise if either is a pointer to a virtual member function, the
12065     //   result is unspecified.
12066     if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(LHSValue.getDecl()))
12067       if (MD->isVirtual())
12068         Info.CCEDiag(E, diag::note_constexpr_compare_virtual_mem_ptr) << MD;
12069     if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(RHSValue.getDecl()))
12070       if (MD->isVirtual())
12071         Info.CCEDiag(E, diag::note_constexpr_compare_virtual_mem_ptr) << MD;
12072 
12073     //   Otherwise they compare equal if and only if they would refer to the
12074     //   same member of the same most derived object or the same subobject if
12075     //   they were dereferenced with a hypothetical object of the associated
12076     //   class type.
12077     bool Equal = LHSValue == RHSValue;
12078     return Success(Equal ? CmpResult::Equal : CmpResult::Unequal, E);
12079   }
12080 
12081   if (LHSTy->isNullPtrType()) {
12082     assert(E->isComparisonOp() && "unexpected nullptr operation");
12083     assert(RHSTy->isNullPtrType() && "missing pointer conversion");
12084     // C++11 [expr.rel]p4, [expr.eq]p3: If two operands of type std::nullptr_t
12085     // are compared, the result is true of the operator is <=, >= or ==, and
12086     // false otherwise.
12087     return Success(CmpResult::Equal, E);
12088   }
12089 
12090   return DoAfter();
12091 }
12092 
12093 bool RecordExprEvaluator::VisitBinCmp(const BinaryOperator *E) {
12094   if (!CheckLiteralType(Info, E))
12095     return false;
12096 
12097   auto OnSuccess = [&](CmpResult CR, const BinaryOperator *E) {
12098     ComparisonCategoryResult CCR;
12099     switch (CR) {
12100     case CmpResult::Unequal:
12101       llvm_unreachable("should never produce Unequal for three-way comparison");
12102     case CmpResult::Less:
12103       CCR = ComparisonCategoryResult::Less;
12104       break;
12105     case CmpResult::Equal:
12106       CCR = ComparisonCategoryResult::Equal;
12107       break;
12108     case CmpResult::Greater:
12109       CCR = ComparisonCategoryResult::Greater;
12110       break;
12111     case CmpResult::Unordered:
12112       CCR = ComparisonCategoryResult::Unordered;
12113       break;
12114     }
12115     // Evaluation succeeded. Lookup the information for the comparison category
12116     // type and fetch the VarDecl for the result.
12117     const ComparisonCategoryInfo &CmpInfo =
12118         Info.Ctx.CompCategories.getInfoForType(E->getType());
12119     const VarDecl *VD = CmpInfo.getValueInfo(CmpInfo.makeWeakResult(CCR))->VD;
12120     // Check and evaluate the result as a constant expression.
12121     LValue LV;
12122     LV.set(VD);
12123     if (!handleLValueToRValueConversion(Info, E, E->getType(), LV, Result))
12124       return false;
12125     return CheckConstantExpression(Info, E->getExprLoc(), E->getType(), Result);
12126   };
12127   return EvaluateComparisonBinaryOperator(Info, E, OnSuccess, [&]() {
12128     return ExprEvaluatorBaseTy::VisitBinCmp(E);
12129   });
12130 }
12131 
12132 bool IntExprEvaluator::VisitBinaryOperator(const BinaryOperator *E) {
12133   // We don't call noteFailure immediately because the assignment happens after
12134   // we evaluate LHS and RHS.
12135   if (!Info.keepEvaluatingAfterFailure() && E->isAssignmentOp())
12136     return Error(E);
12137 
12138   DelayedNoteFailureRAII MaybeNoteFailureLater(Info, E->isAssignmentOp());
12139   if (DataRecursiveIntBinOpEvaluator::shouldEnqueue(E))
12140     return DataRecursiveIntBinOpEvaluator(*this, Result).Traverse(E);
12141 
12142   assert((!E->getLHS()->getType()->isIntegralOrEnumerationType() ||
12143           !E->getRHS()->getType()->isIntegralOrEnumerationType()) &&
12144          "DataRecursiveIntBinOpEvaluator should have handled integral types");
12145 
12146   if (E->isComparisonOp()) {
12147     // Evaluate builtin binary comparisons by evaluating them as three-way
12148     // comparisons and then translating the result.
12149     auto OnSuccess = [&](CmpResult CR, const BinaryOperator *E) {
12150       assert((CR != CmpResult::Unequal || E->isEqualityOp()) &&
12151              "should only produce Unequal for equality comparisons");
12152       bool IsEqual   = CR == CmpResult::Equal,
12153            IsLess    = CR == CmpResult::Less,
12154            IsGreater = CR == CmpResult::Greater;
12155       auto Op = E->getOpcode();
12156       switch (Op) {
12157       default:
12158         llvm_unreachable("unsupported binary operator");
12159       case BO_EQ:
12160       case BO_NE:
12161         return Success(IsEqual == (Op == BO_EQ), E);
12162       case BO_LT:
12163         return Success(IsLess, E);
12164       case BO_GT:
12165         return Success(IsGreater, E);
12166       case BO_LE:
12167         return Success(IsEqual || IsLess, E);
12168       case BO_GE:
12169         return Success(IsEqual || IsGreater, E);
12170       }
12171     };
12172     return EvaluateComparisonBinaryOperator(Info, E, OnSuccess, [&]() {
12173       return ExprEvaluatorBaseTy::VisitBinaryOperator(E);
12174     });
12175   }
12176 
12177   QualType LHSTy = E->getLHS()->getType();
12178   QualType RHSTy = E->getRHS()->getType();
12179 
12180   if (LHSTy->isPointerType() && RHSTy->isPointerType() &&
12181       E->getOpcode() == BO_Sub) {
12182     LValue LHSValue, RHSValue;
12183 
12184     bool LHSOK = EvaluatePointer(E->getLHS(), LHSValue, Info);
12185     if (!LHSOK && !Info.noteFailure())
12186       return false;
12187 
12188     if (!EvaluatePointer(E->getRHS(), RHSValue, Info) || !LHSOK)
12189       return false;
12190 
12191     // Reject differing bases from the normal codepath; we special-case
12192     // comparisons to null.
12193     if (!HasSameBase(LHSValue, RHSValue)) {
12194       // Handle &&A - &&B.
12195       if (!LHSValue.Offset.isZero() || !RHSValue.Offset.isZero())
12196         return Error(E);
12197       const Expr *LHSExpr = LHSValue.Base.dyn_cast<const Expr *>();
12198       const Expr *RHSExpr = RHSValue.Base.dyn_cast<const Expr *>();
12199       if (!LHSExpr || !RHSExpr)
12200         return Error(E);
12201       const AddrLabelExpr *LHSAddrExpr = dyn_cast<AddrLabelExpr>(LHSExpr);
12202       const AddrLabelExpr *RHSAddrExpr = dyn_cast<AddrLabelExpr>(RHSExpr);
12203       if (!LHSAddrExpr || !RHSAddrExpr)
12204         return Error(E);
12205       // Make sure both labels come from the same function.
12206       if (LHSAddrExpr->getLabel()->getDeclContext() !=
12207           RHSAddrExpr->getLabel()->getDeclContext())
12208         return Error(E);
12209       return Success(APValue(LHSAddrExpr, RHSAddrExpr), E);
12210     }
12211     const CharUnits &LHSOffset = LHSValue.getLValueOffset();
12212     const CharUnits &RHSOffset = RHSValue.getLValueOffset();
12213 
12214     SubobjectDesignator &LHSDesignator = LHSValue.getLValueDesignator();
12215     SubobjectDesignator &RHSDesignator = RHSValue.getLValueDesignator();
12216 
12217     // C++11 [expr.add]p6:
12218     //   Unless both pointers point to elements of the same array object, or
12219     //   one past the last element of the array object, the behavior is
12220     //   undefined.
12221     if (!LHSDesignator.Invalid && !RHSDesignator.Invalid &&
12222         !AreElementsOfSameArray(getType(LHSValue.Base), LHSDesignator,
12223                                 RHSDesignator))
12224       Info.CCEDiag(E, diag::note_constexpr_pointer_subtraction_not_same_array);
12225 
12226     QualType Type = E->getLHS()->getType();
12227     QualType ElementType = Type->castAs<PointerType>()->getPointeeType();
12228 
12229     CharUnits ElementSize;
12230     if (!HandleSizeof(Info, E->getExprLoc(), ElementType, ElementSize))
12231       return false;
12232 
12233     // As an extension, a type may have zero size (empty struct or union in
12234     // C, array of zero length). Pointer subtraction in such cases has
12235     // undefined behavior, so is not constant.
12236     if (ElementSize.isZero()) {
12237       Info.FFDiag(E, diag::note_constexpr_pointer_subtraction_zero_size)
12238           << ElementType;
12239       return false;
12240     }
12241 
12242     // FIXME: LLVM and GCC both compute LHSOffset - RHSOffset at runtime,
12243     // and produce incorrect results when it overflows. Such behavior
12244     // appears to be non-conforming, but is common, so perhaps we should
12245     // assume the standard intended for such cases to be undefined behavior
12246     // and check for them.
12247 
12248     // Compute (LHSOffset - RHSOffset) / Size carefully, checking for
12249     // overflow in the final conversion to ptrdiff_t.
12250     APSInt LHS(llvm::APInt(65, (int64_t)LHSOffset.getQuantity(), true), false);
12251     APSInt RHS(llvm::APInt(65, (int64_t)RHSOffset.getQuantity(), true), false);
12252     APSInt ElemSize(llvm::APInt(65, (int64_t)ElementSize.getQuantity(), true),
12253                     false);
12254     APSInt TrueResult = (LHS - RHS) / ElemSize;
12255     APSInt Result = TrueResult.trunc(Info.Ctx.getIntWidth(E->getType()));
12256 
12257     if (Result.extend(65) != TrueResult &&
12258         !HandleOverflow(Info, E, TrueResult, E->getType()))
12259       return false;
12260     return Success(Result, E);
12261   }
12262 
12263   return ExprEvaluatorBaseTy::VisitBinaryOperator(E);
12264 }
12265 
12266 /// VisitUnaryExprOrTypeTraitExpr - Evaluate a sizeof, alignof or vec_step with
12267 /// a result as the expression's type.
12268 bool IntExprEvaluator::VisitUnaryExprOrTypeTraitExpr(
12269                                     const UnaryExprOrTypeTraitExpr *E) {
12270   switch(E->getKind()) {
12271   case UETT_PreferredAlignOf:
12272   case UETT_AlignOf: {
12273     if (E->isArgumentType())
12274       return Success(GetAlignOfType(Info, E->getArgumentType(), E->getKind()),
12275                      E);
12276     else
12277       return Success(GetAlignOfExpr(Info, E->getArgumentExpr(), E->getKind()),
12278                      E);
12279   }
12280 
12281   case UETT_VecStep: {
12282     QualType Ty = E->getTypeOfArgument();
12283 
12284     if (Ty->isVectorType()) {
12285       unsigned n = Ty->castAs<VectorType>()->getNumElements();
12286 
12287       // The vec_step built-in functions that take a 3-component
12288       // vector return 4. (OpenCL 1.1 spec 6.11.12)
12289       if (n == 3)
12290         n = 4;
12291 
12292       return Success(n, E);
12293     } else
12294       return Success(1, E);
12295   }
12296 
12297   case UETT_SizeOf: {
12298     QualType SrcTy = E->getTypeOfArgument();
12299     // C++ [expr.sizeof]p2: "When applied to a reference or a reference type,
12300     //   the result is the size of the referenced type."
12301     if (const ReferenceType *Ref = SrcTy->getAs<ReferenceType>())
12302       SrcTy = Ref->getPointeeType();
12303 
12304     CharUnits Sizeof;
12305     if (!HandleSizeof(Info, E->getExprLoc(), SrcTy, Sizeof))
12306       return false;
12307     return Success(Sizeof, E);
12308   }
12309   case UETT_OpenMPRequiredSimdAlign:
12310     assert(E->isArgumentType());
12311     return Success(
12312         Info.Ctx.toCharUnitsFromBits(
12313                     Info.Ctx.getOpenMPDefaultSimdAlign(E->getArgumentType()))
12314             .getQuantity(),
12315         E);
12316   }
12317 
12318   llvm_unreachable("unknown expr/type trait");
12319 }
12320 
12321 bool IntExprEvaluator::VisitOffsetOfExpr(const OffsetOfExpr *OOE) {
12322   CharUnits Result;
12323   unsigned n = OOE->getNumComponents();
12324   if (n == 0)
12325     return Error(OOE);
12326   QualType CurrentType = OOE->getTypeSourceInfo()->getType();
12327   for (unsigned i = 0; i != n; ++i) {
12328     OffsetOfNode ON = OOE->getComponent(i);
12329     switch (ON.getKind()) {
12330     case OffsetOfNode::Array: {
12331       const Expr *Idx = OOE->getIndexExpr(ON.getArrayExprIndex());
12332       APSInt IdxResult;
12333       if (!EvaluateInteger(Idx, IdxResult, Info))
12334         return false;
12335       const ArrayType *AT = Info.Ctx.getAsArrayType(CurrentType);
12336       if (!AT)
12337         return Error(OOE);
12338       CurrentType = AT->getElementType();
12339       CharUnits ElementSize = Info.Ctx.getTypeSizeInChars(CurrentType);
12340       Result += IdxResult.getSExtValue() * ElementSize;
12341       break;
12342     }
12343 
12344     case OffsetOfNode::Field: {
12345       FieldDecl *MemberDecl = ON.getField();
12346       const RecordType *RT = CurrentType->getAs<RecordType>();
12347       if (!RT)
12348         return Error(OOE);
12349       RecordDecl *RD = RT->getDecl();
12350       if (RD->isInvalidDecl()) return false;
12351       const ASTRecordLayout &RL = Info.Ctx.getASTRecordLayout(RD);
12352       unsigned i = MemberDecl->getFieldIndex();
12353       assert(i < RL.getFieldCount() && "offsetof field in wrong type");
12354       Result += Info.Ctx.toCharUnitsFromBits(RL.getFieldOffset(i));
12355       CurrentType = MemberDecl->getType().getNonReferenceType();
12356       break;
12357     }
12358 
12359     case OffsetOfNode::Identifier:
12360       llvm_unreachable("dependent __builtin_offsetof");
12361 
12362     case OffsetOfNode::Base: {
12363       CXXBaseSpecifier *BaseSpec = ON.getBase();
12364       if (BaseSpec->isVirtual())
12365         return Error(OOE);
12366 
12367       // Find the layout of the class whose base we are looking into.
12368       const RecordType *RT = CurrentType->getAs<RecordType>();
12369       if (!RT)
12370         return Error(OOE);
12371       RecordDecl *RD = RT->getDecl();
12372       if (RD->isInvalidDecl()) return false;
12373       const ASTRecordLayout &RL = Info.Ctx.getASTRecordLayout(RD);
12374 
12375       // Find the base class itself.
12376       CurrentType = BaseSpec->getType();
12377       const RecordType *BaseRT = CurrentType->getAs<RecordType>();
12378       if (!BaseRT)
12379         return Error(OOE);
12380 
12381       // Add the offset to the base.
12382       Result += RL.getBaseClassOffset(cast<CXXRecordDecl>(BaseRT->getDecl()));
12383       break;
12384     }
12385     }
12386   }
12387   return Success(Result, OOE);
12388 }
12389 
12390 bool IntExprEvaluator::VisitUnaryOperator(const UnaryOperator *E) {
12391   switch (E->getOpcode()) {
12392   default:
12393     // Address, indirect, pre/post inc/dec, etc are not valid constant exprs.
12394     // See C99 6.6p3.
12395     return Error(E);
12396   case UO_Extension:
12397     // FIXME: Should extension allow i-c-e extension expressions in its scope?
12398     // If so, we could clear the diagnostic ID.
12399     return Visit(E->getSubExpr());
12400   case UO_Plus:
12401     // The result is just the value.
12402     return Visit(E->getSubExpr());
12403   case UO_Minus: {
12404     if (!Visit(E->getSubExpr()))
12405       return false;
12406     if (!Result.isInt()) return Error(E);
12407     const APSInt &Value = Result.getInt();
12408     if (Value.isSigned() && Value.isMinSignedValue() && E->canOverflow() &&
12409         !HandleOverflow(Info, E, -Value.extend(Value.getBitWidth() + 1),
12410                         E->getType()))
12411       return false;
12412     return Success(-Value, E);
12413   }
12414   case UO_Not: {
12415     if (!Visit(E->getSubExpr()))
12416       return false;
12417     if (!Result.isInt()) return Error(E);
12418     return Success(~Result.getInt(), E);
12419   }
12420   case UO_LNot: {
12421     bool bres;
12422     if (!EvaluateAsBooleanCondition(E->getSubExpr(), bres, Info))
12423       return false;
12424     return Success(!bres, E);
12425   }
12426   }
12427 }
12428 
12429 /// HandleCast - This is used to evaluate implicit or explicit casts where the
12430 /// result type is integer.
12431 bool IntExprEvaluator::VisitCastExpr(const CastExpr *E) {
12432   const Expr *SubExpr = E->getSubExpr();
12433   QualType DestType = E->getType();
12434   QualType SrcType = SubExpr->getType();
12435 
12436   switch (E->getCastKind()) {
12437   case CK_BaseToDerived:
12438   case CK_DerivedToBase:
12439   case CK_UncheckedDerivedToBase:
12440   case CK_Dynamic:
12441   case CK_ToUnion:
12442   case CK_ArrayToPointerDecay:
12443   case CK_FunctionToPointerDecay:
12444   case CK_NullToPointer:
12445   case CK_NullToMemberPointer:
12446   case CK_BaseToDerivedMemberPointer:
12447   case CK_DerivedToBaseMemberPointer:
12448   case CK_ReinterpretMemberPointer:
12449   case CK_ConstructorConversion:
12450   case CK_IntegralToPointer:
12451   case CK_ToVoid:
12452   case CK_VectorSplat:
12453   case CK_IntegralToFloating:
12454   case CK_FloatingCast:
12455   case CK_CPointerToObjCPointerCast:
12456   case CK_BlockPointerToObjCPointerCast:
12457   case CK_AnyPointerToBlockPointerCast:
12458   case CK_ObjCObjectLValueCast:
12459   case CK_FloatingRealToComplex:
12460   case CK_FloatingComplexToReal:
12461   case CK_FloatingComplexCast:
12462   case CK_FloatingComplexToIntegralComplex:
12463   case CK_IntegralRealToComplex:
12464   case CK_IntegralComplexCast:
12465   case CK_IntegralComplexToFloatingComplex:
12466   case CK_BuiltinFnToFnPtr:
12467   case CK_ZeroToOCLOpaqueType:
12468   case CK_NonAtomicToAtomic:
12469   case CK_AddressSpaceConversion:
12470   case CK_IntToOCLSampler:
12471   case CK_FixedPointCast:
12472   case CK_IntegralToFixedPoint:
12473     llvm_unreachable("invalid cast kind for integral value");
12474 
12475   case CK_BitCast:
12476   case CK_Dependent:
12477   case CK_LValueBitCast:
12478   case CK_ARCProduceObject:
12479   case CK_ARCConsumeObject:
12480   case CK_ARCReclaimReturnedObject:
12481   case CK_ARCExtendBlockObject:
12482   case CK_CopyAndAutoreleaseBlockObject:
12483     return Error(E);
12484 
12485   case CK_UserDefinedConversion:
12486   case CK_LValueToRValue:
12487   case CK_AtomicToNonAtomic:
12488   case CK_NoOp:
12489   case CK_LValueToRValueBitCast:
12490     return ExprEvaluatorBaseTy::VisitCastExpr(E);
12491 
12492   case CK_MemberPointerToBoolean:
12493   case CK_PointerToBoolean:
12494   case CK_IntegralToBoolean:
12495   case CK_FloatingToBoolean:
12496   case CK_BooleanToSignedIntegral:
12497   case CK_FloatingComplexToBoolean:
12498   case CK_IntegralComplexToBoolean: {
12499     bool BoolResult;
12500     if (!EvaluateAsBooleanCondition(SubExpr, BoolResult, Info))
12501       return false;
12502     uint64_t IntResult = BoolResult;
12503     if (BoolResult && E->getCastKind() == CK_BooleanToSignedIntegral)
12504       IntResult = (uint64_t)-1;
12505     return Success(IntResult, E);
12506   }
12507 
12508   case CK_FixedPointToIntegral: {
12509     APFixedPoint Src(Info.Ctx.getFixedPointSemantics(SrcType));
12510     if (!EvaluateFixedPoint(SubExpr, Src, Info))
12511       return false;
12512     bool Overflowed;
12513     llvm::APSInt Result = Src.convertToInt(
12514         Info.Ctx.getIntWidth(DestType),
12515         DestType->isSignedIntegerOrEnumerationType(), &Overflowed);
12516     if (Overflowed && !HandleOverflow(Info, E, Result, DestType))
12517       return false;
12518     return Success(Result, E);
12519   }
12520 
12521   case CK_FixedPointToBoolean: {
12522     // Unsigned padding does not affect this.
12523     APValue Val;
12524     if (!Evaluate(Val, Info, SubExpr))
12525       return false;
12526     return Success(Val.getFixedPoint().getBoolValue(), E);
12527   }
12528 
12529   case CK_IntegralCast: {
12530     if (!Visit(SubExpr))
12531       return false;
12532 
12533     if (!Result.isInt()) {
12534       // Allow casts of address-of-label differences if they are no-ops
12535       // or narrowing.  (The narrowing case isn't actually guaranteed to
12536       // be constant-evaluatable except in some narrow cases which are hard
12537       // to detect here.  We let it through on the assumption the user knows
12538       // what they are doing.)
12539       if (Result.isAddrLabelDiff())
12540         return Info.Ctx.getTypeSize(DestType) <= Info.Ctx.getTypeSize(SrcType);
12541       // Only allow casts of lvalues if they are lossless.
12542       return Info.Ctx.getTypeSize(DestType) == Info.Ctx.getTypeSize(SrcType);
12543     }
12544 
12545     return Success(HandleIntToIntCast(Info, E, DestType, SrcType,
12546                                       Result.getInt()), E);
12547   }
12548 
12549   case CK_PointerToIntegral: {
12550     CCEDiag(E, diag::note_constexpr_invalid_cast) << 2;
12551 
12552     LValue LV;
12553     if (!EvaluatePointer(SubExpr, LV, Info))
12554       return false;
12555 
12556     if (LV.getLValueBase()) {
12557       // Only allow based lvalue casts if they are lossless.
12558       // FIXME: Allow a larger integer size than the pointer size, and allow
12559       // narrowing back down to pointer width in subsequent integral casts.
12560       // FIXME: Check integer type's active bits, not its type size.
12561       if (Info.Ctx.getTypeSize(DestType) != Info.Ctx.getTypeSize(SrcType))
12562         return Error(E);
12563 
12564       LV.Designator.setInvalid();
12565       LV.moveInto(Result);
12566       return true;
12567     }
12568 
12569     APSInt AsInt;
12570     APValue V;
12571     LV.moveInto(V);
12572     if (!V.toIntegralConstant(AsInt, SrcType, Info.Ctx))
12573       llvm_unreachable("Can't cast this!");
12574 
12575     return Success(HandleIntToIntCast(Info, E, DestType, SrcType, AsInt), E);
12576   }
12577 
12578   case CK_IntegralComplexToReal: {
12579     ComplexValue C;
12580     if (!EvaluateComplex(SubExpr, C, Info))
12581       return false;
12582     return Success(C.getComplexIntReal(), E);
12583   }
12584 
12585   case CK_FloatingToIntegral: {
12586     APFloat F(0.0);
12587     if (!EvaluateFloat(SubExpr, F, Info))
12588       return false;
12589 
12590     APSInt Value;
12591     if (!HandleFloatToIntCast(Info, E, SrcType, F, DestType, Value))
12592       return false;
12593     return Success(Value, E);
12594   }
12595   }
12596 
12597   llvm_unreachable("unknown cast resulting in integral value");
12598 }
12599 
12600 bool IntExprEvaluator::VisitUnaryReal(const UnaryOperator *E) {
12601   if (E->getSubExpr()->getType()->isAnyComplexType()) {
12602     ComplexValue LV;
12603     if (!EvaluateComplex(E->getSubExpr(), LV, Info))
12604       return false;
12605     if (!LV.isComplexInt())
12606       return Error(E);
12607     return Success(LV.getComplexIntReal(), E);
12608   }
12609 
12610   return Visit(E->getSubExpr());
12611 }
12612 
12613 bool IntExprEvaluator::VisitUnaryImag(const UnaryOperator *E) {
12614   if (E->getSubExpr()->getType()->isComplexIntegerType()) {
12615     ComplexValue LV;
12616     if (!EvaluateComplex(E->getSubExpr(), LV, Info))
12617       return false;
12618     if (!LV.isComplexInt())
12619       return Error(E);
12620     return Success(LV.getComplexIntImag(), E);
12621   }
12622 
12623   VisitIgnoredValue(E->getSubExpr());
12624   return Success(0, E);
12625 }
12626 
12627 bool IntExprEvaluator::VisitSizeOfPackExpr(const SizeOfPackExpr *E) {
12628   return Success(E->getPackLength(), E);
12629 }
12630 
12631 bool IntExprEvaluator::VisitCXXNoexceptExpr(const CXXNoexceptExpr *E) {
12632   return Success(E->getValue(), E);
12633 }
12634 
12635 bool IntExprEvaluator::VisitConceptSpecializationExpr(
12636        const ConceptSpecializationExpr *E) {
12637   return Success(E->isSatisfied(), E);
12638 }
12639 
12640 bool IntExprEvaluator::VisitRequiresExpr(const RequiresExpr *E) {
12641   return Success(E->isSatisfied(), E);
12642 }
12643 
12644 bool FixedPointExprEvaluator::VisitUnaryOperator(const UnaryOperator *E) {
12645   switch (E->getOpcode()) {
12646     default:
12647       // Invalid unary operators
12648       return Error(E);
12649     case UO_Plus:
12650       // The result is just the value.
12651       return Visit(E->getSubExpr());
12652     case UO_Minus: {
12653       if (!Visit(E->getSubExpr())) return false;
12654       if (!Result.isFixedPoint())
12655         return Error(E);
12656       bool Overflowed;
12657       APFixedPoint Negated = Result.getFixedPoint().negate(&Overflowed);
12658       if (Overflowed && !HandleOverflow(Info, E, Negated, E->getType()))
12659         return false;
12660       return Success(Negated, E);
12661     }
12662     case UO_LNot: {
12663       bool bres;
12664       if (!EvaluateAsBooleanCondition(E->getSubExpr(), bres, Info))
12665         return false;
12666       return Success(!bres, E);
12667     }
12668   }
12669 }
12670 
12671 bool FixedPointExprEvaluator::VisitCastExpr(const CastExpr *E) {
12672   const Expr *SubExpr = E->getSubExpr();
12673   QualType DestType = E->getType();
12674   assert(DestType->isFixedPointType() &&
12675          "Expected destination type to be a fixed point type");
12676   auto DestFXSema = Info.Ctx.getFixedPointSemantics(DestType);
12677 
12678   switch (E->getCastKind()) {
12679   case CK_FixedPointCast: {
12680     APFixedPoint Src(Info.Ctx.getFixedPointSemantics(SubExpr->getType()));
12681     if (!EvaluateFixedPoint(SubExpr, Src, Info))
12682       return false;
12683     bool Overflowed;
12684     APFixedPoint Result = Src.convert(DestFXSema, &Overflowed);
12685     if (Overflowed && !HandleOverflow(Info, E, Result, DestType))
12686       return false;
12687     return Success(Result, E);
12688   }
12689   case CK_IntegralToFixedPoint: {
12690     APSInt Src;
12691     if (!EvaluateInteger(SubExpr, Src, Info))
12692       return false;
12693 
12694     bool Overflowed;
12695     APFixedPoint IntResult = APFixedPoint::getFromIntValue(
12696         Src, Info.Ctx.getFixedPointSemantics(DestType), &Overflowed);
12697 
12698     if (Overflowed && !HandleOverflow(Info, E, IntResult, DestType))
12699       return false;
12700 
12701     return Success(IntResult, E);
12702   }
12703   case CK_NoOp:
12704   case CK_LValueToRValue:
12705     return ExprEvaluatorBaseTy::VisitCastExpr(E);
12706   default:
12707     return Error(E);
12708   }
12709 }
12710 
12711 bool FixedPointExprEvaluator::VisitBinaryOperator(const BinaryOperator *E) {
12712   const Expr *LHS = E->getLHS();
12713   const Expr *RHS = E->getRHS();
12714   FixedPointSemantics ResultFXSema =
12715       Info.Ctx.getFixedPointSemantics(E->getType());
12716 
12717   APFixedPoint LHSFX(Info.Ctx.getFixedPointSemantics(LHS->getType()));
12718   if (!EvaluateFixedPointOrInteger(LHS, LHSFX, Info))
12719     return false;
12720   APFixedPoint RHSFX(Info.Ctx.getFixedPointSemantics(RHS->getType()));
12721   if (!EvaluateFixedPointOrInteger(RHS, RHSFX, Info))
12722     return false;
12723 
12724   switch (E->getOpcode()) {
12725   case BO_Add: {
12726     bool AddOverflow, ConversionOverflow;
12727     APFixedPoint Result = LHSFX.add(RHSFX, &AddOverflow)
12728                               .convert(ResultFXSema, &ConversionOverflow);
12729     if ((AddOverflow || ConversionOverflow) &&
12730         !HandleOverflow(Info, E, Result, E->getType()))
12731       return false;
12732     return Success(Result, E);
12733   }
12734   default:
12735     return false;
12736   }
12737   llvm_unreachable("Should've exited before this");
12738 }
12739 
12740 //===----------------------------------------------------------------------===//
12741 // Float Evaluation
12742 //===----------------------------------------------------------------------===//
12743 
12744 namespace {
12745 class FloatExprEvaluator
12746   : public ExprEvaluatorBase<FloatExprEvaluator> {
12747   APFloat &Result;
12748 public:
12749   FloatExprEvaluator(EvalInfo &info, APFloat &result)
12750     : ExprEvaluatorBaseTy(info), Result(result) {}
12751 
12752   bool Success(const APValue &V, const Expr *e) {
12753     Result = V.getFloat();
12754     return true;
12755   }
12756 
12757   bool ZeroInitialization(const Expr *E) {
12758     Result = APFloat::getZero(Info.Ctx.getFloatTypeSemantics(E->getType()));
12759     return true;
12760   }
12761 
12762   bool VisitCallExpr(const CallExpr *E);
12763 
12764   bool VisitUnaryOperator(const UnaryOperator *E);
12765   bool VisitBinaryOperator(const BinaryOperator *E);
12766   bool VisitFloatingLiteral(const FloatingLiteral *E);
12767   bool VisitCastExpr(const CastExpr *E);
12768 
12769   bool VisitUnaryReal(const UnaryOperator *E);
12770   bool VisitUnaryImag(const UnaryOperator *E);
12771 
12772   // FIXME: Missing: array subscript of vector, member of vector
12773 };
12774 } // end anonymous namespace
12775 
12776 static bool EvaluateFloat(const Expr* E, APFloat& Result, EvalInfo &Info) {
12777   assert(E->isRValue() && E->getType()->isRealFloatingType());
12778   return FloatExprEvaluator(Info, Result).Visit(E);
12779 }
12780 
12781 static bool TryEvaluateBuiltinNaN(const ASTContext &Context,
12782                                   QualType ResultTy,
12783                                   const Expr *Arg,
12784                                   bool SNaN,
12785                                   llvm::APFloat &Result) {
12786   const StringLiteral *S = dyn_cast<StringLiteral>(Arg->IgnoreParenCasts());
12787   if (!S) return false;
12788 
12789   const llvm::fltSemantics &Sem = Context.getFloatTypeSemantics(ResultTy);
12790 
12791   llvm::APInt fill;
12792 
12793   // Treat empty strings as if they were zero.
12794   if (S->getString().empty())
12795     fill = llvm::APInt(32, 0);
12796   else if (S->getString().getAsInteger(0, fill))
12797     return false;
12798 
12799   if (Context.getTargetInfo().isNan2008()) {
12800     if (SNaN)
12801       Result = llvm::APFloat::getSNaN(Sem, false, &fill);
12802     else
12803       Result = llvm::APFloat::getQNaN(Sem, false, &fill);
12804   } else {
12805     // Prior to IEEE 754-2008, architectures were allowed to choose whether
12806     // the first bit of their significand was set for qNaN or sNaN. MIPS chose
12807     // a different encoding to what became a standard in 2008, and for pre-
12808     // 2008 revisions, MIPS interpreted sNaN-2008 as qNan and qNaN-2008 as
12809     // sNaN. This is now known as "legacy NaN" encoding.
12810     if (SNaN)
12811       Result = llvm::APFloat::getQNaN(Sem, false, &fill);
12812     else
12813       Result = llvm::APFloat::getSNaN(Sem, false, &fill);
12814   }
12815 
12816   return true;
12817 }
12818 
12819 bool FloatExprEvaluator::VisitCallExpr(const CallExpr *E) {
12820   switch (E->getBuiltinCallee()) {
12821   default:
12822     return ExprEvaluatorBaseTy::VisitCallExpr(E);
12823 
12824   case Builtin::BI__builtin_huge_val:
12825   case Builtin::BI__builtin_huge_valf:
12826   case Builtin::BI__builtin_huge_vall:
12827   case Builtin::BI__builtin_huge_valf128:
12828   case Builtin::BI__builtin_inf:
12829   case Builtin::BI__builtin_inff:
12830   case Builtin::BI__builtin_infl:
12831   case Builtin::BI__builtin_inff128: {
12832     const llvm::fltSemantics &Sem =
12833       Info.Ctx.getFloatTypeSemantics(E->getType());
12834     Result = llvm::APFloat::getInf(Sem);
12835     return true;
12836   }
12837 
12838   case Builtin::BI__builtin_nans:
12839   case Builtin::BI__builtin_nansf:
12840   case Builtin::BI__builtin_nansl:
12841   case Builtin::BI__builtin_nansf128:
12842     if (!TryEvaluateBuiltinNaN(Info.Ctx, E->getType(), E->getArg(0),
12843                                true, Result))
12844       return Error(E);
12845     return true;
12846 
12847   case Builtin::BI__builtin_nan:
12848   case Builtin::BI__builtin_nanf:
12849   case Builtin::BI__builtin_nanl:
12850   case Builtin::BI__builtin_nanf128:
12851     // If this is __builtin_nan() turn this into a nan, otherwise we
12852     // can't constant fold it.
12853     if (!TryEvaluateBuiltinNaN(Info.Ctx, E->getType(), E->getArg(0),
12854                                false, Result))
12855       return Error(E);
12856     return true;
12857 
12858   case Builtin::BI__builtin_fabs:
12859   case Builtin::BI__builtin_fabsf:
12860   case Builtin::BI__builtin_fabsl:
12861   case Builtin::BI__builtin_fabsf128:
12862     if (!EvaluateFloat(E->getArg(0), Result, Info))
12863       return false;
12864 
12865     if (Result.isNegative())
12866       Result.changeSign();
12867     return true;
12868 
12869   // FIXME: Builtin::BI__builtin_powi
12870   // FIXME: Builtin::BI__builtin_powif
12871   // FIXME: Builtin::BI__builtin_powil
12872 
12873   case Builtin::BI__builtin_copysign:
12874   case Builtin::BI__builtin_copysignf:
12875   case Builtin::BI__builtin_copysignl:
12876   case Builtin::BI__builtin_copysignf128: {
12877     APFloat RHS(0.);
12878     if (!EvaluateFloat(E->getArg(0), Result, Info) ||
12879         !EvaluateFloat(E->getArg(1), RHS, Info))
12880       return false;
12881     Result.copySign(RHS);
12882     return true;
12883   }
12884   }
12885 }
12886 
12887 bool FloatExprEvaluator::VisitUnaryReal(const UnaryOperator *E) {
12888   if (E->getSubExpr()->getType()->isAnyComplexType()) {
12889     ComplexValue CV;
12890     if (!EvaluateComplex(E->getSubExpr(), CV, Info))
12891       return false;
12892     Result = CV.FloatReal;
12893     return true;
12894   }
12895 
12896   return Visit(E->getSubExpr());
12897 }
12898 
12899 bool FloatExprEvaluator::VisitUnaryImag(const UnaryOperator *E) {
12900   if (E->getSubExpr()->getType()->isAnyComplexType()) {
12901     ComplexValue CV;
12902     if (!EvaluateComplex(E->getSubExpr(), CV, Info))
12903       return false;
12904     Result = CV.FloatImag;
12905     return true;
12906   }
12907 
12908   VisitIgnoredValue(E->getSubExpr());
12909   const llvm::fltSemantics &Sem = Info.Ctx.getFloatTypeSemantics(E->getType());
12910   Result = llvm::APFloat::getZero(Sem);
12911   return true;
12912 }
12913 
12914 bool FloatExprEvaluator::VisitUnaryOperator(const UnaryOperator *E) {
12915   switch (E->getOpcode()) {
12916   default: return Error(E);
12917   case UO_Plus:
12918     return EvaluateFloat(E->getSubExpr(), Result, Info);
12919   case UO_Minus:
12920     if (!EvaluateFloat(E->getSubExpr(), Result, Info))
12921       return false;
12922     Result.changeSign();
12923     return true;
12924   }
12925 }
12926 
12927 bool FloatExprEvaluator::VisitBinaryOperator(const BinaryOperator *E) {
12928   if (E->isPtrMemOp() || E->isAssignmentOp() || E->getOpcode() == BO_Comma)
12929     return ExprEvaluatorBaseTy::VisitBinaryOperator(E);
12930 
12931   APFloat RHS(0.0);
12932   bool LHSOK = EvaluateFloat(E->getLHS(), Result, Info);
12933   if (!LHSOK && !Info.noteFailure())
12934     return false;
12935   return EvaluateFloat(E->getRHS(), RHS, Info) && LHSOK &&
12936          handleFloatFloatBinOp(Info, E, Result, E->getOpcode(), RHS);
12937 }
12938 
12939 bool FloatExprEvaluator::VisitFloatingLiteral(const FloatingLiteral *E) {
12940   Result = E->getValue();
12941   return true;
12942 }
12943 
12944 bool FloatExprEvaluator::VisitCastExpr(const CastExpr *E) {
12945   const Expr* SubExpr = E->getSubExpr();
12946 
12947   switch (E->getCastKind()) {
12948   default:
12949     return ExprEvaluatorBaseTy::VisitCastExpr(E);
12950 
12951   case CK_IntegralToFloating: {
12952     APSInt IntResult;
12953     return EvaluateInteger(SubExpr, IntResult, Info) &&
12954            HandleIntToFloatCast(Info, E, SubExpr->getType(), IntResult,
12955                                 E->getType(), Result);
12956   }
12957 
12958   case CK_FloatingCast: {
12959     if (!Visit(SubExpr))
12960       return false;
12961     return HandleFloatToFloatCast(Info, E, SubExpr->getType(), E->getType(),
12962                                   Result);
12963   }
12964 
12965   case CK_FloatingComplexToReal: {
12966     ComplexValue V;
12967     if (!EvaluateComplex(SubExpr, V, Info))
12968       return false;
12969     Result = V.getComplexFloatReal();
12970     return true;
12971   }
12972   }
12973 }
12974 
12975 //===----------------------------------------------------------------------===//
12976 // Complex Evaluation (for float and integer)
12977 //===----------------------------------------------------------------------===//
12978 
12979 namespace {
12980 class ComplexExprEvaluator
12981   : public ExprEvaluatorBase<ComplexExprEvaluator> {
12982   ComplexValue &Result;
12983 
12984 public:
12985   ComplexExprEvaluator(EvalInfo &info, ComplexValue &Result)
12986     : ExprEvaluatorBaseTy(info), Result(Result) {}
12987 
12988   bool Success(const APValue &V, const Expr *e) {
12989     Result.setFrom(V);
12990     return true;
12991   }
12992 
12993   bool ZeroInitialization(const Expr *E);
12994 
12995   //===--------------------------------------------------------------------===//
12996   //                            Visitor Methods
12997   //===--------------------------------------------------------------------===//
12998 
12999   bool VisitImaginaryLiteral(const ImaginaryLiteral *E);
13000   bool VisitCastExpr(const CastExpr *E);
13001   bool VisitBinaryOperator(const BinaryOperator *E);
13002   bool VisitUnaryOperator(const UnaryOperator *E);
13003   bool VisitInitListExpr(const InitListExpr *E);
13004 };
13005 } // end anonymous namespace
13006 
13007 static bool EvaluateComplex(const Expr *E, ComplexValue &Result,
13008                             EvalInfo &Info) {
13009   assert(E->isRValue() && E->getType()->isAnyComplexType());
13010   return ComplexExprEvaluator(Info, Result).Visit(E);
13011 }
13012 
13013 bool ComplexExprEvaluator::ZeroInitialization(const Expr *E) {
13014   QualType ElemTy = E->getType()->castAs<ComplexType>()->getElementType();
13015   if (ElemTy->isRealFloatingType()) {
13016     Result.makeComplexFloat();
13017     APFloat Zero = APFloat::getZero(Info.Ctx.getFloatTypeSemantics(ElemTy));
13018     Result.FloatReal = Zero;
13019     Result.FloatImag = Zero;
13020   } else {
13021     Result.makeComplexInt();
13022     APSInt Zero = Info.Ctx.MakeIntValue(0, ElemTy);
13023     Result.IntReal = Zero;
13024     Result.IntImag = Zero;
13025   }
13026   return true;
13027 }
13028 
13029 bool ComplexExprEvaluator::VisitImaginaryLiteral(const ImaginaryLiteral *E) {
13030   const Expr* SubExpr = E->getSubExpr();
13031 
13032   if (SubExpr->getType()->isRealFloatingType()) {
13033     Result.makeComplexFloat();
13034     APFloat &Imag = Result.FloatImag;
13035     if (!EvaluateFloat(SubExpr, Imag, Info))
13036       return false;
13037 
13038     Result.FloatReal = APFloat(Imag.getSemantics());
13039     return true;
13040   } else {
13041     assert(SubExpr->getType()->isIntegerType() &&
13042            "Unexpected imaginary literal.");
13043 
13044     Result.makeComplexInt();
13045     APSInt &Imag = Result.IntImag;
13046     if (!EvaluateInteger(SubExpr, Imag, Info))
13047       return false;
13048 
13049     Result.IntReal = APSInt(Imag.getBitWidth(), !Imag.isSigned());
13050     return true;
13051   }
13052 }
13053 
13054 bool ComplexExprEvaluator::VisitCastExpr(const CastExpr *E) {
13055 
13056   switch (E->getCastKind()) {
13057   case CK_BitCast:
13058   case CK_BaseToDerived:
13059   case CK_DerivedToBase:
13060   case CK_UncheckedDerivedToBase:
13061   case CK_Dynamic:
13062   case CK_ToUnion:
13063   case CK_ArrayToPointerDecay:
13064   case CK_FunctionToPointerDecay:
13065   case CK_NullToPointer:
13066   case CK_NullToMemberPointer:
13067   case CK_BaseToDerivedMemberPointer:
13068   case CK_DerivedToBaseMemberPointer:
13069   case CK_MemberPointerToBoolean:
13070   case CK_ReinterpretMemberPointer:
13071   case CK_ConstructorConversion:
13072   case CK_IntegralToPointer:
13073   case CK_PointerToIntegral:
13074   case CK_PointerToBoolean:
13075   case CK_ToVoid:
13076   case CK_VectorSplat:
13077   case CK_IntegralCast:
13078   case CK_BooleanToSignedIntegral:
13079   case CK_IntegralToBoolean:
13080   case CK_IntegralToFloating:
13081   case CK_FloatingToIntegral:
13082   case CK_FloatingToBoolean:
13083   case CK_FloatingCast:
13084   case CK_CPointerToObjCPointerCast:
13085   case CK_BlockPointerToObjCPointerCast:
13086   case CK_AnyPointerToBlockPointerCast:
13087   case CK_ObjCObjectLValueCast:
13088   case CK_FloatingComplexToReal:
13089   case CK_FloatingComplexToBoolean:
13090   case CK_IntegralComplexToReal:
13091   case CK_IntegralComplexToBoolean:
13092   case CK_ARCProduceObject:
13093   case CK_ARCConsumeObject:
13094   case CK_ARCReclaimReturnedObject:
13095   case CK_ARCExtendBlockObject:
13096   case CK_CopyAndAutoreleaseBlockObject:
13097   case CK_BuiltinFnToFnPtr:
13098   case CK_ZeroToOCLOpaqueType:
13099   case CK_NonAtomicToAtomic:
13100   case CK_AddressSpaceConversion:
13101   case CK_IntToOCLSampler:
13102   case CK_FixedPointCast:
13103   case CK_FixedPointToBoolean:
13104   case CK_FixedPointToIntegral:
13105   case CK_IntegralToFixedPoint:
13106     llvm_unreachable("invalid cast kind for complex value");
13107 
13108   case CK_LValueToRValue:
13109   case CK_AtomicToNonAtomic:
13110   case CK_NoOp:
13111   case CK_LValueToRValueBitCast:
13112     return ExprEvaluatorBaseTy::VisitCastExpr(E);
13113 
13114   case CK_Dependent:
13115   case CK_LValueBitCast:
13116   case CK_UserDefinedConversion:
13117     return Error(E);
13118 
13119   case CK_FloatingRealToComplex: {
13120     APFloat &Real = Result.FloatReal;
13121     if (!EvaluateFloat(E->getSubExpr(), Real, Info))
13122       return false;
13123 
13124     Result.makeComplexFloat();
13125     Result.FloatImag = APFloat(Real.getSemantics());
13126     return true;
13127   }
13128 
13129   case CK_FloatingComplexCast: {
13130     if (!Visit(E->getSubExpr()))
13131       return false;
13132 
13133     QualType To = E->getType()->castAs<ComplexType>()->getElementType();
13134     QualType From
13135       = E->getSubExpr()->getType()->castAs<ComplexType>()->getElementType();
13136 
13137     return HandleFloatToFloatCast(Info, E, From, To, Result.FloatReal) &&
13138            HandleFloatToFloatCast(Info, E, From, To, Result.FloatImag);
13139   }
13140 
13141   case CK_FloatingComplexToIntegralComplex: {
13142     if (!Visit(E->getSubExpr()))
13143       return false;
13144 
13145     QualType To = E->getType()->castAs<ComplexType>()->getElementType();
13146     QualType From
13147       = E->getSubExpr()->getType()->castAs<ComplexType>()->getElementType();
13148     Result.makeComplexInt();
13149     return HandleFloatToIntCast(Info, E, From, Result.FloatReal,
13150                                 To, Result.IntReal) &&
13151            HandleFloatToIntCast(Info, E, From, Result.FloatImag,
13152                                 To, Result.IntImag);
13153   }
13154 
13155   case CK_IntegralRealToComplex: {
13156     APSInt &Real = Result.IntReal;
13157     if (!EvaluateInteger(E->getSubExpr(), Real, Info))
13158       return false;
13159 
13160     Result.makeComplexInt();
13161     Result.IntImag = APSInt(Real.getBitWidth(), !Real.isSigned());
13162     return true;
13163   }
13164 
13165   case CK_IntegralComplexCast: {
13166     if (!Visit(E->getSubExpr()))
13167       return false;
13168 
13169     QualType To = E->getType()->castAs<ComplexType>()->getElementType();
13170     QualType From
13171       = E->getSubExpr()->getType()->castAs<ComplexType>()->getElementType();
13172 
13173     Result.IntReal = HandleIntToIntCast(Info, E, To, From, Result.IntReal);
13174     Result.IntImag = HandleIntToIntCast(Info, E, To, From, Result.IntImag);
13175     return true;
13176   }
13177 
13178   case CK_IntegralComplexToFloatingComplex: {
13179     if (!Visit(E->getSubExpr()))
13180       return false;
13181 
13182     QualType To = E->getType()->castAs<ComplexType>()->getElementType();
13183     QualType From
13184       = E->getSubExpr()->getType()->castAs<ComplexType>()->getElementType();
13185     Result.makeComplexFloat();
13186     return HandleIntToFloatCast(Info, E, From, Result.IntReal,
13187                                 To, Result.FloatReal) &&
13188            HandleIntToFloatCast(Info, E, From, Result.IntImag,
13189                                 To, Result.FloatImag);
13190   }
13191   }
13192 
13193   llvm_unreachable("unknown cast resulting in complex value");
13194 }
13195 
13196 bool ComplexExprEvaluator::VisitBinaryOperator(const BinaryOperator *E) {
13197   if (E->isPtrMemOp() || E->isAssignmentOp() || E->getOpcode() == BO_Comma)
13198     return ExprEvaluatorBaseTy::VisitBinaryOperator(E);
13199 
13200   // Track whether the LHS or RHS is real at the type system level. When this is
13201   // the case we can simplify our evaluation strategy.
13202   bool LHSReal = false, RHSReal = false;
13203 
13204   bool LHSOK;
13205   if (E->getLHS()->getType()->isRealFloatingType()) {
13206     LHSReal = true;
13207     APFloat &Real = Result.FloatReal;
13208     LHSOK = EvaluateFloat(E->getLHS(), Real, Info);
13209     if (LHSOK) {
13210       Result.makeComplexFloat();
13211       Result.FloatImag = APFloat(Real.getSemantics());
13212     }
13213   } else {
13214     LHSOK = Visit(E->getLHS());
13215   }
13216   if (!LHSOK && !Info.noteFailure())
13217     return false;
13218 
13219   ComplexValue RHS;
13220   if (E->getRHS()->getType()->isRealFloatingType()) {
13221     RHSReal = true;
13222     APFloat &Real = RHS.FloatReal;
13223     if (!EvaluateFloat(E->getRHS(), Real, Info) || !LHSOK)
13224       return false;
13225     RHS.makeComplexFloat();
13226     RHS.FloatImag = APFloat(Real.getSemantics());
13227   } else if (!EvaluateComplex(E->getRHS(), RHS, Info) || !LHSOK)
13228     return false;
13229 
13230   assert(!(LHSReal && RHSReal) &&
13231          "Cannot have both operands of a complex operation be real.");
13232   switch (E->getOpcode()) {
13233   default: return Error(E);
13234   case BO_Add:
13235     if (Result.isComplexFloat()) {
13236       Result.getComplexFloatReal().add(RHS.getComplexFloatReal(),
13237                                        APFloat::rmNearestTiesToEven);
13238       if (LHSReal)
13239         Result.getComplexFloatImag() = RHS.getComplexFloatImag();
13240       else if (!RHSReal)
13241         Result.getComplexFloatImag().add(RHS.getComplexFloatImag(),
13242                                          APFloat::rmNearestTiesToEven);
13243     } else {
13244       Result.getComplexIntReal() += RHS.getComplexIntReal();
13245       Result.getComplexIntImag() += RHS.getComplexIntImag();
13246     }
13247     break;
13248   case BO_Sub:
13249     if (Result.isComplexFloat()) {
13250       Result.getComplexFloatReal().subtract(RHS.getComplexFloatReal(),
13251                                             APFloat::rmNearestTiesToEven);
13252       if (LHSReal) {
13253         Result.getComplexFloatImag() = RHS.getComplexFloatImag();
13254         Result.getComplexFloatImag().changeSign();
13255       } else if (!RHSReal) {
13256         Result.getComplexFloatImag().subtract(RHS.getComplexFloatImag(),
13257                                               APFloat::rmNearestTiesToEven);
13258       }
13259     } else {
13260       Result.getComplexIntReal() -= RHS.getComplexIntReal();
13261       Result.getComplexIntImag() -= RHS.getComplexIntImag();
13262     }
13263     break;
13264   case BO_Mul:
13265     if (Result.isComplexFloat()) {
13266       // This is an implementation of complex multiplication according to the
13267       // constraints laid out in C11 Annex G. The implementation uses the
13268       // following naming scheme:
13269       //   (a + ib) * (c + id)
13270       ComplexValue LHS = Result;
13271       APFloat &A = LHS.getComplexFloatReal();
13272       APFloat &B = LHS.getComplexFloatImag();
13273       APFloat &C = RHS.getComplexFloatReal();
13274       APFloat &D = RHS.getComplexFloatImag();
13275       APFloat &ResR = Result.getComplexFloatReal();
13276       APFloat &ResI = Result.getComplexFloatImag();
13277       if (LHSReal) {
13278         assert(!RHSReal && "Cannot have two real operands for a complex op!");
13279         ResR = A * C;
13280         ResI = A * D;
13281       } else if (RHSReal) {
13282         ResR = C * A;
13283         ResI = C * B;
13284       } else {
13285         // In the fully general case, we need to handle NaNs and infinities
13286         // robustly.
13287         APFloat AC = A * C;
13288         APFloat BD = B * D;
13289         APFloat AD = A * D;
13290         APFloat BC = B * C;
13291         ResR = AC - BD;
13292         ResI = AD + BC;
13293         if (ResR.isNaN() && ResI.isNaN()) {
13294           bool Recalc = false;
13295           if (A.isInfinity() || B.isInfinity()) {
13296             A = APFloat::copySign(
13297                 APFloat(A.getSemantics(), A.isInfinity() ? 1 : 0), A);
13298             B = APFloat::copySign(
13299                 APFloat(B.getSemantics(), B.isInfinity() ? 1 : 0), B);
13300             if (C.isNaN())
13301               C = APFloat::copySign(APFloat(C.getSemantics()), C);
13302             if (D.isNaN())
13303               D = APFloat::copySign(APFloat(D.getSemantics()), D);
13304             Recalc = true;
13305           }
13306           if (C.isInfinity() || D.isInfinity()) {
13307             C = APFloat::copySign(
13308                 APFloat(C.getSemantics(), C.isInfinity() ? 1 : 0), C);
13309             D = APFloat::copySign(
13310                 APFloat(D.getSemantics(), D.isInfinity() ? 1 : 0), D);
13311             if (A.isNaN())
13312               A = APFloat::copySign(APFloat(A.getSemantics()), A);
13313             if (B.isNaN())
13314               B = APFloat::copySign(APFloat(B.getSemantics()), B);
13315             Recalc = true;
13316           }
13317           if (!Recalc && (AC.isInfinity() || BD.isInfinity() ||
13318                           AD.isInfinity() || BC.isInfinity())) {
13319             if (A.isNaN())
13320               A = APFloat::copySign(APFloat(A.getSemantics()), A);
13321             if (B.isNaN())
13322               B = APFloat::copySign(APFloat(B.getSemantics()), B);
13323             if (C.isNaN())
13324               C = APFloat::copySign(APFloat(C.getSemantics()), C);
13325             if (D.isNaN())
13326               D = APFloat::copySign(APFloat(D.getSemantics()), D);
13327             Recalc = true;
13328           }
13329           if (Recalc) {
13330             ResR = APFloat::getInf(A.getSemantics()) * (A * C - B * D);
13331             ResI = APFloat::getInf(A.getSemantics()) * (A * D + B * C);
13332           }
13333         }
13334       }
13335     } else {
13336       ComplexValue LHS = Result;
13337       Result.getComplexIntReal() =
13338         (LHS.getComplexIntReal() * RHS.getComplexIntReal() -
13339          LHS.getComplexIntImag() * RHS.getComplexIntImag());
13340       Result.getComplexIntImag() =
13341         (LHS.getComplexIntReal() * RHS.getComplexIntImag() +
13342          LHS.getComplexIntImag() * RHS.getComplexIntReal());
13343     }
13344     break;
13345   case BO_Div:
13346     if (Result.isComplexFloat()) {
13347       // This is an implementation of complex division according to the
13348       // constraints laid out in C11 Annex G. The implementation uses the
13349       // following naming scheme:
13350       //   (a + ib) / (c + id)
13351       ComplexValue LHS = Result;
13352       APFloat &A = LHS.getComplexFloatReal();
13353       APFloat &B = LHS.getComplexFloatImag();
13354       APFloat &C = RHS.getComplexFloatReal();
13355       APFloat &D = RHS.getComplexFloatImag();
13356       APFloat &ResR = Result.getComplexFloatReal();
13357       APFloat &ResI = Result.getComplexFloatImag();
13358       if (RHSReal) {
13359         ResR = A / C;
13360         ResI = B / C;
13361       } else {
13362         if (LHSReal) {
13363           // No real optimizations we can do here, stub out with zero.
13364           B = APFloat::getZero(A.getSemantics());
13365         }
13366         int DenomLogB = 0;
13367         APFloat MaxCD = maxnum(abs(C), abs(D));
13368         if (MaxCD.isFinite()) {
13369           DenomLogB = ilogb(MaxCD);
13370           C = scalbn(C, -DenomLogB, APFloat::rmNearestTiesToEven);
13371           D = scalbn(D, -DenomLogB, APFloat::rmNearestTiesToEven);
13372         }
13373         APFloat Denom = C * C + D * D;
13374         ResR = scalbn((A * C + B * D) / Denom, -DenomLogB,
13375                       APFloat::rmNearestTiesToEven);
13376         ResI = scalbn((B * C - A * D) / Denom, -DenomLogB,
13377                       APFloat::rmNearestTiesToEven);
13378         if (ResR.isNaN() && ResI.isNaN()) {
13379           if (Denom.isPosZero() && (!A.isNaN() || !B.isNaN())) {
13380             ResR = APFloat::getInf(ResR.getSemantics(), C.isNegative()) * A;
13381             ResI = APFloat::getInf(ResR.getSemantics(), C.isNegative()) * B;
13382           } else if ((A.isInfinity() || B.isInfinity()) && C.isFinite() &&
13383                      D.isFinite()) {
13384             A = APFloat::copySign(
13385                 APFloat(A.getSemantics(), A.isInfinity() ? 1 : 0), A);
13386             B = APFloat::copySign(
13387                 APFloat(B.getSemantics(), B.isInfinity() ? 1 : 0), B);
13388             ResR = APFloat::getInf(ResR.getSemantics()) * (A * C + B * D);
13389             ResI = APFloat::getInf(ResI.getSemantics()) * (B * C - A * D);
13390           } else if (MaxCD.isInfinity() && A.isFinite() && B.isFinite()) {
13391             C = APFloat::copySign(
13392                 APFloat(C.getSemantics(), C.isInfinity() ? 1 : 0), C);
13393             D = APFloat::copySign(
13394                 APFloat(D.getSemantics(), D.isInfinity() ? 1 : 0), D);
13395             ResR = APFloat::getZero(ResR.getSemantics()) * (A * C + B * D);
13396             ResI = APFloat::getZero(ResI.getSemantics()) * (B * C - A * D);
13397           }
13398         }
13399       }
13400     } else {
13401       if (RHS.getComplexIntReal() == 0 && RHS.getComplexIntImag() == 0)
13402         return Error(E, diag::note_expr_divide_by_zero);
13403 
13404       ComplexValue LHS = Result;
13405       APSInt Den = RHS.getComplexIntReal() * RHS.getComplexIntReal() +
13406         RHS.getComplexIntImag() * RHS.getComplexIntImag();
13407       Result.getComplexIntReal() =
13408         (LHS.getComplexIntReal() * RHS.getComplexIntReal() +
13409          LHS.getComplexIntImag() * RHS.getComplexIntImag()) / Den;
13410       Result.getComplexIntImag() =
13411         (LHS.getComplexIntImag() * RHS.getComplexIntReal() -
13412          LHS.getComplexIntReal() * RHS.getComplexIntImag()) / Den;
13413     }
13414     break;
13415   }
13416 
13417   return true;
13418 }
13419 
13420 bool ComplexExprEvaluator::VisitUnaryOperator(const UnaryOperator *E) {
13421   // Get the operand value into 'Result'.
13422   if (!Visit(E->getSubExpr()))
13423     return false;
13424 
13425   switch (E->getOpcode()) {
13426   default:
13427     return Error(E);
13428   case UO_Extension:
13429     return true;
13430   case UO_Plus:
13431     // The result is always just the subexpr.
13432     return true;
13433   case UO_Minus:
13434     if (Result.isComplexFloat()) {
13435       Result.getComplexFloatReal().changeSign();
13436       Result.getComplexFloatImag().changeSign();
13437     }
13438     else {
13439       Result.getComplexIntReal() = -Result.getComplexIntReal();
13440       Result.getComplexIntImag() = -Result.getComplexIntImag();
13441     }
13442     return true;
13443   case UO_Not:
13444     if (Result.isComplexFloat())
13445       Result.getComplexFloatImag().changeSign();
13446     else
13447       Result.getComplexIntImag() = -Result.getComplexIntImag();
13448     return true;
13449   }
13450 }
13451 
13452 bool ComplexExprEvaluator::VisitInitListExpr(const InitListExpr *E) {
13453   if (E->getNumInits() == 2) {
13454     if (E->getType()->isComplexType()) {
13455       Result.makeComplexFloat();
13456       if (!EvaluateFloat(E->getInit(0), Result.FloatReal, Info))
13457         return false;
13458       if (!EvaluateFloat(E->getInit(1), Result.FloatImag, Info))
13459         return false;
13460     } else {
13461       Result.makeComplexInt();
13462       if (!EvaluateInteger(E->getInit(0), Result.IntReal, Info))
13463         return false;
13464       if (!EvaluateInteger(E->getInit(1), Result.IntImag, Info))
13465         return false;
13466     }
13467     return true;
13468   }
13469   return ExprEvaluatorBaseTy::VisitInitListExpr(E);
13470 }
13471 
13472 //===----------------------------------------------------------------------===//
13473 // Atomic expression evaluation, essentially just handling the NonAtomicToAtomic
13474 // implicit conversion.
13475 //===----------------------------------------------------------------------===//
13476 
13477 namespace {
13478 class AtomicExprEvaluator :
13479     public ExprEvaluatorBase<AtomicExprEvaluator> {
13480   const LValue *This;
13481   APValue &Result;
13482 public:
13483   AtomicExprEvaluator(EvalInfo &Info, const LValue *This, APValue &Result)
13484       : ExprEvaluatorBaseTy(Info), This(This), Result(Result) {}
13485 
13486   bool Success(const APValue &V, const Expr *E) {
13487     Result = V;
13488     return true;
13489   }
13490 
13491   bool ZeroInitialization(const Expr *E) {
13492     ImplicitValueInitExpr VIE(
13493         E->getType()->castAs<AtomicType>()->getValueType());
13494     // For atomic-qualified class (and array) types in C++, initialize the
13495     // _Atomic-wrapped subobject directly, in-place.
13496     return This ? EvaluateInPlace(Result, Info, *This, &VIE)
13497                 : Evaluate(Result, Info, &VIE);
13498   }
13499 
13500   bool VisitCastExpr(const CastExpr *E) {
13501     switch (E->getCastKind()) {
13502     default:
13503       return ExprEvaluatorBaseTy::VisitCastExpr(E);
13504     case CK_NonAtomicToAtomic:
13505       return This ? EvaluateInPlace(Result, Info, *This, E->getSubExpr())
13506                   : Evaluate(Result, Info, E->getSubExpr());
13507     }
13508   }
13509 };
13510 } // end anonymous namespace
13511 
13512 static bool EvaluateAtomic(const Expr *E, const LValue *This, APValue &Result,
13513                            EvalInfo &Info) {
13514   assert(E->isRValue() && E->getType()->isAtomicType());
13515   return AtomicExprEvaluator(Info, This, Result).Visit(E);
13516 }
13517 
13518 //===----------------------------------------------------------------------===//
13519 // Void expression evaluation, primarily for a cast to void on the LHS of a
13520 // comma operator
13521 //===----------------------------------------------------------------------===//
13522 
13523 namespace {
13524 class VoidExprEvaluator
13525   : public ExprEvaluatorBase<VoidExprEvaluator> {
13526 public:
13527   VoidExprEvaluator(EvalInfo &Info) : ExprEvaluatorBaseTy(Info) {}
13528 
13529   bool Success(const APValue &V, const Expr *e) { return true; }
13530 
13531   bool ZeroInitialization(const Expr *E) { return true; }
13532 
13533   bool VisitCastExpr(const CastExpr *E) {
13534     switch (E->getCastKind()) {
13535     default:
13536       return ExprEvaluatorBaseTy::VisitCastExpr(E);
13537     case CK_ToVoid:
13538       VisitIgnoredValue(E->getSubExpr());
13539       return true;
13540     }
13541   }
13542 
13543   bool VisitCallExpr(const CallExpr *E) {
13544     switch (E->getBuiltinCallee()) {
13545     case Builtin::BI__assume:
13546     case Builtin::BI__builtin_assume:
13547       // The argument is not evaluated!
13548       return true;
13549 
13550     case Builtin::BI__builtin_operator_delete:
13551       return HandleOperatorDeleteCall(Info, E);
13552 
13553     default:
13554       break;
13555     }
13556 
13557     return ExprEvaluatorBaseTy::VisitCallExpr(E);
13558   }
13559 
13560   bool VisitCXXDeleteExpr(const CXXDeleteExpr *E);
13561 };
13562 } // end anonymous namespace
13563 
13564 bool VoidExprEvaluator::VisitCXXDeleteExpr(const CXXDeleteExpr *E) {
13565   // We cannot speculatively evaluate a delete expression.
13566   if (Info.SpeculativeEvaluationDepth)
13567     return false;
13568 
13569   FunctionDecl *OperatorDelete = E->getOperatorDelete();
13570   if (!OperatorDelete->isReplaceableGlobalAllocationFunction()) {
13571     Info.FFDiag(E, diag::note_constexpr_new_non_replaceable)
13572         << isa<CXXMethodDecl>(OperatorDelete) << OperatorDelete;
13573     return false;
13574   }
13575 
13576   const Expr *Arg = E->getArgument();
13577 
13578   LValue Pointer;
13579   if (!EvaluatePointer(Arg, Pointer, Info))
13580     return false;
13581   if (Pointer.Designator.Invalid)
13582     return false;
13583 
13584   // Deleting a null pointer has no effect.
13585   if (Pointer.isNullPointer()) {
13586     // This is the only case where we need to produce an extension warning:
13587     // the only other way we can succeed is if we find a dynamic allocation,
13588     // and we will have warned when we allocated it in that case.
13589     if (!Info.getLangOpts().CPlusPlus20)
13590       Info.CCEDiag(E, diag::note_constexpr_new);
13591     return true;
13592   }
13593 
13594   Optional<DynAlloc *> Alloc = CheckDeleteKind(
13595       Info, E, Pointer, E->isArrayForm() ? DynAlloc::ArrayNew : DynAlloc::New);
13596   if (!Alloc)
13597     return false;
13598   QualType AllocType = Pointer.Base.getDynamicAllocType();
13599 
13600   // For the non-array case, the designator must be empty if the static type
13601   // does not have a virtual destructor.
13602   if (!E->isArrayForm() && Pointer.Designator.Entries.size() != 0 &&
13603       !hasVirtualDestructor(Arg->getType()->getPointeeType())) {
13604     Info.FFDiag(E, diag::note_constexpr_delete_base_nonvirt_dtor)
13605         << Arg->getType()->getPointeeType() << AllocType;
13606     return false;
13607   }
13608 
13609   // For a class type with a virtual destructor, the selected operator delete
13610   // is the one looked up when building the destructor.
13611   if (!E->isArrayForm() && !E->isGlobalDelete()) {
13612     const FunctionDecl *VirtualDelete = getVirtualOperatorDelete(AllocType);
13613     if (VirtualDelete &&
13614         !VirtualDelete->isReplaceableGlobalAllocationFunction()) {
13615       Info.FFDiag(E, diag::note_constexpr_new_non_replaceable)
13616           << isa<CXXMethodDecl>(VirtualDelete) << VirtualDelete;
13617       return false;
13618     }
13619   }
13620 
13621   if (!HandleDestruction(Info, E->getExprLoc(), Pointer.getLValueBase(),
13622                          (*Alloc)->Value, AllocType))
13623     return false;
13624 
13625   if (!Info.HeapAllocs.erase(Pointer.Base.dyn_cast<DynamicAllocLValue>())) {
13626     // The element was already erased. This means the destructor call also
13627     // deleted the object.
13628     // FIXME: This probably results in undefined behavior before we get this
13629     // far, and should be diagnosed elsewhere first.
13630     Info.FFDiag(E, diag::note_constexpr_double_delete);
13631     return false;
13632   }
13633 
13634   return true;
13635 }
13636 
13637 static bool EvaluateVoid(const Expr *E, EvalInfo &Info) {
13638   assert(E->isRValue() && E->getType()->isVoidType());
13639   return VoidExprEvaluator(Info).Visit(E);
13640 }
13641 
13642 //===----------------------------------------------------------------------===//
13643 // Top level Expr::EvaluateAsRValue method.
13644 //===----------------------------------------------------------------------===//
13645 
13646 static bool Evaluate(APValue &Result, EvalInfo &Info, const Expr *E) {
13647   // In C, function designators are not lvalues, but we evaluate them as if they
13648   // are.
13649   QualType T = E->getType();
13650   if (E->isGLValue() || T->isFunctionType()) {
13651     LValue LV;
13652     if (!EvaluateLValue(E, LV, Info))
13653       return false;
13654     LV.moveInto(Result);
13655   } else if (T->isVectorType()) {
13656     if (!EvaluateVector(E, Result, Info))
13657       return false;
13658   } else if (T->isIntegralOrEnumerationType()) {
13659     if (!IntExprEvaluator(Info, Result).Visit(E))
13660       return false;
13661   } else if (T->hasPointerRepresentation()) {
13662     LValue LV;
13663     if (!EvaluatePointer(E, LV, Info))
13664       return false;
13665     LV.moveInto(Result);
13666   } else if (T->isRealFloatingType()) {
13667     llvm::APFloat F(0.0);
13668     if (!EvaluateFloat(E, F, Info))
13669       return false;
13670     Result = APValue(F);
13671   } else if (T->isAnyComplexType()) {
13672     ComplexValue C;
13673     if (!EvaluateComplex(E, C, Info))
13674       return false;
13675     C.moveInto(Result);
13676   } else if (T->isFixedPointType()) {
13677     if (!FixedPointExprEvaluator(Info, Result).Visit(E)) return false;
13678   } else if (T->isMemberPointerType()) {
13679     MemberPtr P;
13680     if (!EvaluateMemberPointer(E, P, Info))
13681       return false;
13682     P.moveInto(Result);
13683     return true;
13684   } else if (T->isArrayType()) {
13685     LValue LV;
13686     APValue &Value =
13687         Info.CurrentCall->createTemporary(E, T, false, LV);
13688     if (!EvaluateArray(E, LV, Value, Info))
13689       return false;
13690     Result = Value;
13691   } else if (T->isRecordType()) {
13692     LValue LV;
13693     APValue &Value = Info.CurrentCall->createTemporary(E, T, false, LV);
13694     if (!EvaluateRecord(E, LV, Value, Info))
13695       return false;
13696     Result = Value;
13697   } else if (T->isVoidType()) {
13698     if (!Info.getLangOpts().CPlusPlus11)
13699       Info.CCEDiag(E, diag::note_constexpr_nonliteral)
13700         << E->getType();
13701     if (!EvaluateVoid(E, Info))
13702       return false;
13703   } else if (T->isAtomicType()) {
13704     QualType Unqual = T.getAtomicUnqualifiedType();
13705     if (Unqual->isArrayType() || Unqual->isRecordType()) {
13706       LValue LV;
13707       APValue &Value = Info.CurrentCall->createTemporary(E, Unqual, false, LV);
13708       if (!EvaluateAtomic(E, &LV, Value, Info))
13709         return false;
13710     } else {
13711       if (!EvaluateAtomic(E, nullptr, Result, Info))
13712         return false;
13713     }
13714   } else if (Info.getLangOpts().CPlusPlus11) {
13715     Info.FFDiag(E, diag::note_constexpr_nonliteral) << E->getType();
13716     return false;
13717   } else {
13718     Info.FFDiag(E, diag::note_invalid_subexpr_in_const_expr);
13719     return false;
13720   }
13721 
13722   return true;
13723 }
13724 
13725 /// EvaluateInPlace - Evaluate an expression in-place in an APValue. In some
13726 /// cases, the in-place evaluation is essential, since later initializers for
13727 /// an object can indirectly refer to subobjects which were initialized earlier.
13728 static bool EvaluateInPlace(APValue &Result, EvalInfo &Info, const LValue &This,
13729                             const Expr *E, bool AllowNonLiteralTypes) {
13730   assert(!E->isValueDependent());
13731 
13732   if (!AllowNonLiteralTypes && !CheckLiteralType(Info, E, &This))
13733     return false;
13734 
13735   if (E->isRValue()) {
13736     // Evaluate arrays and record types in-place, so that later initializers can
13737     // refer to earlier-initialized members of the object.
13738     QualType T = E->getType();
13739     if (T->isArrayType())
13740       return EvaluateArray(E, This, Result, Info);
13741     else if (T->isRecordType())
13742       return EvaluateRecord(E, This, Result, Info);
13743     else if (T->isAtomicType()) {
13744       QualType Unqual = T.getAtomicUnqualifiedType();
13745       if (Unqual->isArrayType() || Unqual->isRecordType())
13746         return EvaluateAtomic(E, &This, Result, Info);
13747     }
13748   }
13749 
13750   // For any other type, in-place evaluation is unimportant.
13751   return Evaluate(Result, Info, E);
13752 }
13753 
13754 /// EvaluateAsRValue - Try to evaluate this expression, performing an implicit
13755 /// lvalue-to-rvalue cast if it is an lvalue.
13756 static bool EvaluateAsRValue(EvalInfo &Info, const Expr *E, APValue &Result) {
13757   if (Info.EnableNewConstInterp) {
13758     if (!Info.Ctx.getInterpContext().evaluateAsRValue(Info, E, Result))
13759       return false;
13760   } else {
13761     if (E->getType().isNull())
13762       return false;
13763 
13764     if (!CheckLiteralType(Info, E))
13765       return false;
13766 
13767     if (!::Evaluate(Result, Info, E))
13768       return false;
13769 
13770     if (E->isGLValue()) {
13771       LValue LV;
13772       LV.setFrom(Info.Ctx, Result);
13773       if (!handleLValueToRValueConversion(Info, E, E->getType(), LV, Result))
13774         return false;
13775     }
13776   }
13777 
13778   // Check this core constant expression is a constant expression.
13779   return CheckConstantExpression(Info, E->getExprLoc(), E->getType(), Result) &&
13780          CheckMemoryLeaks(Info);
13781 }
13782 
13783 static bool FastEvaluateAsRValue(const Expr *Exp, Expr::EvalResult &Result,
13784                                  const ASTContext &Ctx, bool &IsConst) {
13785   // Fast-path evaluations of integer literals, since we sometimes see files
13786   // containing vast quantities of these.
13787   if (const IntegerLiteral *L = dyn_cast<IntegerLiteral>(Exp)) {
13788     Result.Val = APValue(APSInt(L->getValue(),
13789                                 L->getType()->isUnsignedIntegerType()));
13790     IsConst = true;
13791     return true;
13792   }
13793 
13794   // This case should be rare, but we need to check it before we check on
13795   // the type below.
13796   if (Exp->getType().isNull()) {
13797     IsConst = false;
13798     return true;
13799   }
13800 
13801   // FIXME: Evaluating values of large array and record types can cause
13802   // performance problems. Only do so in C++11 for now.
13803   if (Exp->isRValue() && (Exp->getType()->isArrayType() ||
13804                           Exp->getType()->isRecordType()) &&
13805       !Ctx.getLangOpts().CPlusPlus11) {
13806     IsConst = false;
13807     return true;
13808   }
13809   return false;
13810 }
13811 
13812 static bool hasUnacceptableSideEffect(Expr::EvalStatus &Result,
13813                                       Expr::SideEffectsKind SEK) {
13814   return (SEK < Expr::SE_AllowSideEffects && Result.HasSideEffects) ||
13815          (SEK < Expr::SE_AllowUndefinedBehavior && Result.HasUndefinedBehavior);
13816 }
13817 
13818 static bool EvaluateAsRValue(const Expr *E, Expr::EvalResult &Result,
13819                              const ASTContext &Ctx, EvalInfo &Info) {
13820   bool IsConst;
13821   if (FastEvaluateAsRValue(E, Result, Ctx, IsConst))
13822     return IsConst;
13823 
13824   return EvaluateAsRValue(Info, E, Result.Val);
13825 }
13826 
13827 static bool EvaluateAsInt(const Expr *E, Expr::EvalResult &ExprResult,
13828                           const ASTContext &Ctx,
13829                           Expr::SideEffectsKind AllowSideEffects,
13830                           EvalInfo &Info) {
13831   if (!E->getType()->isIntegralOrEnumerationType())
13832     return false;
13833 
13834   if (!::EvaluateAsRValue(E, ExprResult, Ctx, Info) ||
13835       !ExprResult.Val.isInt() ||
13836       hasUnacceptableSideEffect(ExprResult, AllowSideEffects))
13837     return false;
13838 
13839   return true;
13840 }
13841 
13842 static bool EvaluateAsFixedPoint(const Expr *E, Expr::EvalResult &ExprResult,
13843                                  const ASTContext &Ctx,
13844                                  Expr::SideEffectsKind AllowSideEffects,
13845                                  EvalInfo &Info) {
13846   if (!E->getType()->isFixedPointType())
13847     return false;
13848 
13849   if (!::EvaluateAsRValue(E, ExprResult, Ctx, Info))
13850     return false;
13851 
13852   if (!ExprResult.Val.isFixedPoint() ||
13853       hasUnacceptableSideEffect(ExprResult, AllowSideEffects))
13854     return false;
13855 
13856   return true;
13857 }
13858 
13859 /// EvaluateAsRValue - Return true if this is a constant which we can fold using
13860 /// any crazy technique (that has nothing to do with language standards) that
13861 /// we want to.  If this function returns true, it returns the folded constant
13862 /// in Result. If this expression is a glvalue, an lvalue-to-rvalue conversion
13863 /// will be applied to the result.
13864 bool Expr::EvaluateAsRValue(EvalResult &Result, const ASTContext &Ctx,
13865                             bool InConstantContext) const {
13866   assert(!isValueDependent() &&
13867          "Expression evaluator can't be called on a dependent expression.");
13868   EvalInfo Info(Ctx, Result, EvalInfo::EM_IgnoreSideEffects);
13869   Info.InConstantContext = InConstantContext;
13870   return ::EvaluateAsRValue(this, Result, Ctx, Info);
13871 }
13872 
13873 bool Expr::EvaluateAsBooleanCondition(bool &Result, const ASTContext &Ctx,
13874                                       bool InConstantContext) const {
13875   assert(!isValueDependent() &&
13876          "Expression evaluator can't be called on a dependent expression.");
13877   EvalResult Scratch;
13878   return EvaluateAsRValue(Scratch, Ctx, InConstantContext) &&
13879          HandleConversionToBool(Scratch.Val, Result);
13880 }
13881 
13882 bool Expr::EvaluateAsInt(EvalResult &Result, const ASTContext &Ctx,
13883                          SideEffectsKind AllowSideEffects,
13884                          bool InConstantContext) const {
13885   assert(!isValueDependent() &&
13886          "Expression evaluator can't be called on a dependent expression.");
13887   EvalInfo Info(Ctx, Result, EvalInfo::EM_IgnoreSideEffects);
13888   Info.InConstantContext = InConstantContext;
13889   return ::EvaluateAsInt(this, Result, Ctx, AllowSideEffects, Info);
13890 }
13891 
13892 bool Expr::EvaluateAsFixedPoint(EvalResult &Result, const ASTContext &Ctx,
13893                                 SideEffectsKind AllowSideEffects,
13894                                 bool InConstantContext) const {
13895   assert(!isValueDependent() &&
13896          "Expression evaluator can't be called on a dependent expression.");
13897   EvalInfo Info(Ctx, Result, EvalInfo::EM_IgnoreSideEffects);
13898   Info.InConstantContext = InConstantContext;
13899   return ::EvaluateAsFixedPoint(this, Result, Ctx, AllowSideEffects, Info);
13900 }
13901 
13902 bool Expr::EvaluateAsFloat(APFloat &Result, const ASTContext &Ctx,
13903                            SideEffectsKind AllowSideEffects,
13904                            bool InConstantContext) const {
13905   assert(!isValueDependent() &&
13906          "Expression evaluator can't be called on a dependent expression.");
13907 
13908   if (!getType()->isRealFloatingType())
13909     return false;
13910 
13911   EvalResult ExprResult;
13912   if (!EvaluateAsRValue(ExprResult, Ctx, InConstantContext) ||
13913       !ExprResult.Val.isFloat() ||
13914       hasUnacceptableSideEffect(ExprResult, AllowSideEffects))
13915     return false;
13916 
13917   Result = ExprResult.Val.getFloat();
13918   return true;
13919 }
13920 
13921 bool Expr::EvaluateAsLValue(EvalResult &Result, const ASTContext &Ctx,
13922                             bool InConstantContext) const {
13923   assert(!isValueDependent() &&
13924          "Expression evaluator can't be called on a dependent expression.");
13925 
13926   EvalInfo Info(Ctx, Result, EvalInfo::EM_ConstantFold);
13927   Info.InConstantContext = InConstantContext;
13928   LValue LV;
13929   CheckedTemporaries CheckedTemps;
13930   if (!EvaluateLValue(this, LV, Info) || !Info.discardCleanups() ||
13931       Result.HasSideEffects ||
13932       !CheckLValueConstantExpression(Info, getExprLoc(),
13933                                      Ctx.getLValueReferenceType(getType()), LV,
13934                                      Expr::EvaluateForCodeGen, CheckedTemps))
13935     return false;
13936 
13937   LV.moveInto(Result.Val);
13938   return true;
13939 }
13940 
13941 bool Expr::EvaluateAsConstantExpr(EvalResult &Result, ConstExprUsage Usage,
13942                                   const ASTContext &Ctx, bool InPlace) const {
13943   assert(!isValueDependent() &&
13944          "Expression evaluator can't be called on a dependent expression.");
13945 
13946   EvalInfo::EvaluationMode EM = EvalInfo::EM_ConstantExpression;
13947   EvalInfo Info(Ctx, Result, EM);
13948   Info.InConstantContext = true;
13949 
13950   if (InPlace) {
13951     Info.setEvaluatingDecl(this, Result.Val);
13952     LValue LVal;
13953     LVal.set(this);
13954     if (!::EvaluateInPlace(Result.Val, Info, LVal, this) ||
13955         Result.HasSideEffects)
13956       return false;
13957   } else if (!::Evaluate(Result.Val, Info, this) || Result.HasSideEffects)
13958     return false;
13959 
13960   if (!Info.discardCleanups())
13961     llvm_unreachable("Unhandled cleanup; missing full expression marker?");
13962 
13963   return CheckConstantExpression(Info, getExprLoc(), getStorageType(Ctx, this),
13964                                  Result.Val, Usage) &&
13965          CheckMemoryLeaks(Info);
13966 }
13967 
13968 bool Expr::EvaluateAsInitializer(APValue &Value, const ASTContext &Ctx,
13969                                  const VarDecl *VD,
13970                             SmallVectorImpl<PartialDiagnosticAt> &Notes) const {
13971   assert(!isValueDependent() &&
13972          "Expression evaluator can't be called on a dependent expression.");
13973 
13974   // FIXME: Evaluating initializers for large array and record types can cause
13975   // performance problems. Only do so in C++11 for now.
13976   if (isRValue() && (getType()->isArrayType() || getType()->isRecordType()) &&
13977       !Ctx.getLangOpts().CPlusPlus11)
13978     return false;
13979 
13980   Expr::EvalStatus EStatus;
13981   EStatus.Diag = &Notes;
13982 
13983   EvalInfo Info(Ctx, EStatus, VD->isConstexpr()
13984                                       ? EvalInfo::EM_ConstantExpression
13985                                       : EvalInfo::EM_ConstantFold);
13986   Info.setEvaluatingDecl(VD, Value);
13987   Info.InConstantContext = true;
13988 
13989   SourceLocation DeclLoc = VD->getLocation();
13990   QualType DeclTy = VD->getType();
13991 
13992   if (Info.EnableNewConstInterp) {
13993     auto &InterpCtx = const_cast<ASTContext &>(Ctx).getInterpContext();
13994     if (!InterpCtx.evaluateAsInitializer(Info, VD, Value))
13995       return false;
13996   } else {
13997     LValue LVal;
13998     LVal.set(VD);
13999 
14000     if (!EvaluateInPlace(Value, Info, LVal, this,
14001                          /*AllowNonLiteralTypes=*/true) ||
14002         EStatus.HasSideEffects)
14003       return false;
14004 
14005     // At this point, any lifetime-extended temporaries are completely
14006     // initialized.
14007     Info.performLifetimeExtension();
14008 
14009     if (!Info.discardCleanups())
14010       llvm_unreachable("Unhandled cleanup; missing full expression marker?");
14011   }
14012   return CheckConstantExpression(Info, DeclLoc, DeclTy, Value) &&
14013          CheckMemoryLeaks(Info);
14014 }
14015 
14016 bool VarDecl::evaluateDestruction(
14017     SmallVectorImpl<PartialDiagnosticAt> &Notes) const {
14018   Expr::EvalStatus EStatus;
14019   EStatus.Diag = &Notes;
14020 
14021   // Make a copy of the value for the destructor to mutate, if we know it.
14022   // Otherwise, treat the value as default-initialized; if the destructor works
14023   // anyway, then the destruction is constant (and must be essentially empty).
14024   APValue DestroyedValue =
14025       (getEvaluatedValue() && !getEvaluatedValue()->isAbsent())
14026           ? *getEvaluatedValue()
14027           : getDefaultInitValue(getType());
14028 
14029   EvalInfo Info(getASTContext(), EStatus, EvalInfo::EM_ConstantExpression);
14030   Info.setEvaluatingDecl(this, DestroyedValue,
14031                          EvalInfo::EvaluatingDeclKind::Dtor);
14032   Info.InConstantContext = true;
14033 
14034   SourceLocation DeclLoc = getLocation();
14035   QualType DeclTy = getType();
14036 
14037   LValue LVal;
14038   LVal.set(this);
14039 
14040   if (!HandleDestruction(Info, DeclLoc, LVal.Base, DestroyedValue, DeclTy) ||
14041       EStatus.HasSideEffects)
14042     return false;
14043 
14044   if (!Info.discardCleanups())
14045     llvm_unreachable("Unhandled cleanup; missing full expression marker?");
14046 
14047   ensureEvaluatedStmt()->HasConstantDestruction = true;
14048   return true;
14049 }
14050 
14051 /// isEvaluatable - Call EvaluateAsRValue to see if this expression can be
14052 /// constant folded, but discard the result.
14053 bool Expr::isEvaluatable(const ASTContext &Ctx, SideEffectsKind SEK) const {
14054   assert(!isValueDependent() &&
14055          "Expression evaluator can't be called on a dependent expression.");
14056 
14057   EvalResult Result;
14058   return EvaluateAsRValue(Result, Ctx, /* in constant context */ true) &&
14059          !hasUnacceptableSideEffect(Result, SEK);
14060 }
14061 
14062 APSInt Expr::EvaluateKnownConstInt(const ASTContext &Ctx,
14063                     SmallVectorImpl<PartialDiagnosticAt> *Diag) const {
14064   assert(!isValueDependent() &&
14065          "Expression evaluator can't be called on a dependent expression.");
14066 
14067   EvalResult EVResult;
14068   EVResult.Diag = Diag;
14069   EvalInfo Info(Ctx, EVResult, EvalInfo::EM_IgnoreSideEffects);
14070   Info.InConstantContext = true;
14071 
14072   bool Result = ::EvaluateAsRValue(this, EVResult, Ctx, Info);
14073   (void)Result;
14074   assert(Result && "Could not evaluate expression");
14075   assert(EVResult.Val.isInt() && "Expression did not evaluate to integer");
14076 
14077   return EVResult.Val.getInt();
14078 }
14079 
14080 APSInt Expr::EvaluateKnownConstIntCheckOverflow(
14081     const ASTContext &Ctx, SmallVectorImpl<PartialDiagnosticAt> *Diag) const {
14082   assert(!isValueDependent() &&
14083          "Expression evaluator can't be called on a dependent expression.");
14084 
14085   EvalResult EVResult;
14086   EVResult.Diag = Diag;
14087   EvalInfo Info(Ctx, EVResult, EvalInfo::EM_IgnoreSideEffects);
14088   Info.InConstantContext = true;
14089   Info.CheckingForUndefinedBehavior = true;
14090 
14091   bool Result = ::EvaluateAsRValue(Info, this, EVResult.Val);
14092   (void)Result;
14093   assert(Result && "Could not evaluate expression");
14094   assert(EVResult.Val.isInt() && "Expression did not evaluate to integer");
14095 
14096   return EVResult.Val.getInt();
14097 }
14098 
14099 void Expr::EvaluateForOverflow(const ASTContext &Ctx) const {
14100   assert(!isValueDependent() &&
14101          "Expression evaluator can't be called on a dependent expression.");
14102 
14103   bool IsConst;
14104   EvalResult EVResult;
14105   if (!FastEvaluateAsRValue(this, EVResult, Ctx, IsConst)) {
14106     EvalInfo Info(Ctx, EVResult, EvalInfo::EM_IgnoreSideEffects);
14107     Info.CheckingForUndefinedBehavior = true;
14108     (void)::EvaluateAsRValue(Info, this, EVResult.Val);
14109   }
14110 }
14111 
14112 bool Expr::EvalResult::isGlobalLValue() const {
14113   assert(Val.isLValue());
14114   return IsGlobalLValue(Val.getLValueBase());
14115 }
14116 
14117 
14118 /// isIntegerConstantExpr - this recursive routine will test if an expression is
14119 /// an integer constant expression.
14120 
14121 /// FIXME: Pass up a reason why! Invalid operation in i-c-e, division by zero,
14122 /// comma, etc
14123 
14124 // CheckICE - This function does the fundamental ICE checking: the returned
14125 // ICEDiag contains an ICEKind indicating whether the expression is an ICE,
14126 // and a (possibly null) SourceLocation indicating the location of the problem.
14127 //
14128 // Note that to reduce code duplication, this helper does no evaluation
14129 // itself; the caller checks whether the expression is evaluatable, and
14130 // in the rare cases where CheckICE actually cares about the evaluated
14131 // value, it calls into Evaluate.
14132 
14133 namespace {
14134 
14135 enum ICEKind {
14136   /// This expression is an ICE.
14137   IK_ICE,
14138   /// This expression is not an ICE, but if it isn't evaluated, it's
14139   /// a legal subexpression for an ICE. This return value is used to handle
14140   /// the comma operator in C99 mode, and non-constant subexpressions.
14141   IK_ICEIfUnevaluated,
14142   /// This expression is not an ICE, and is not a legal subexpression for one.
14143   IK_NotICE
14144 };
14145 
14146 struct ICEDiag {
14147   ICEKind Kind;
14148   SourceLocation Loc;
14149 
14150   ICEDiag(ICEKind IK, SourceLocation l) : Kind(IK), Loc(l) {}
14151 };
14152 
14153 }
14154 
14155 static ICEDiag NoDiag() { return ICEDiag(IK_ICE, SourceLocation()); }
14156 
14157 static ICEDiag Worst(ICEDiag A, ICEDiag B) { return A.Kind >= B.Kind ? A : B; }
14158 
14159 static ICEDiag CheckEvalInICE(const Expr* E, const ASTContext &Ctx) {
14160   Expr::EvalResult EVResult;
14161   Expr::EvalStatus Status;
14162   EvalInfo Info(Ctx, Status, EvalInfo::EM_ConstantExpression);
14163 
14164   Info.InConstantContext = true;
14165   if (!::EvaluateAsRValue(E, EVResult, Ctx, Info) || EVResult.HasSideEffects ||
14166       !EVResult.Val.isInt())
14167     return ICEDiag(IK_NotICE, E->getBeginLoc());
14168 
14169   return NoDiag();
14170 }
14171 
14172 static ICEDiag CheckICE(const Expr* E, const ASTContext &Ctx) {
14173   assert(!E->isValueDependent() && "Should not see value dependent exprs!");
14174   if (!E->getType()->isIntegralOrEnumerationType())
14175     return ICEDiag(IK_NotICE, E->getBeginLoc());
14176 
14177   switch (E->getStmtClass()) {
14178 #define ABSTRACT_STMT(Node)
14179 #define STMT(Node, Base) case Expr::Node##Class:
14180 #define EXPR(Node, Base)
14181 #include "clang/AST/StmtNodes.inc"
14182   case Expr::PredefinedExprClass:
14183   case Expr::FloatingLiteralClass:
14184   case Expr::ImaginaryLiteralClass:
14185   case Expr::StringLiteralClass:
14186   case Expr::ArraySubscriptExprClass:
14187   case Expr::MatrixSubscriptExprClass:
14188   case Expr::OMPArraySectionExprClass:
14189   case Expr::OMPArrayShapingExprClass:
14190   case Expr::OMPIteratorExprClass:
14191   case Expr::MemberExprClass:
14192   case Expr::CompoundAssignOperatorClass:
14193   case Expr::CompoundLiteralExprClass:
14194   case Expr::ExtVectorElementExprClass:
14195   case Expr::DesignatedInitExprClass:
14196   case Expr::ArrayInitLoopExprClass:
14197   case Expr::ArrayInitIndexExprClass:
14198   case Expr::NoInitExprClass:
14199   case Expr::DesignatedInitUpdateExprClass:
14200   case Expr::ImplicitValueInitExprClass:
14201   case Expr::ParenListExprClass:
14202   case Expr::VAArgExprClass:
14203   case Expr::AddrLabelExprClass:
14204   case Expr::StmtExprClass:
14205   case Expr::CXXMemberCallExprClass:
14206   case Expr::CUDAKernelCallExprClass:
14207   case Expr::CXXAddrspaceCastExprClass:
14208   case Expr::CXXDynamicCastExprClass:
14209   case Expr::CXXTypeidExprClass:
14210   case Expr::CXXUuidofExprClass:
14211   case Expr::MSPropertyRefExprClass:
14212   case Expr::MSPropertySubscriptExprClass:
14213   case Expr::CXXNullPtrLiteralExprClass:
14214   case Expr::UserDefinedLiteralClass:
14215   case Expr::CXXThisExprClass:
14216   case Expr::CXXThrowExprClass:
14217   case Expr::CXXNewExprClass:
14218   case Expr::CXXDeleteExprClass:
14219   case Expr::CXXPseudoDestructorExprClass:
14220   case Expr::UnresolvedLookupExprClass:
14221   case Expr::TypoExprClass:
14222   case Expr::RecoveryExprClass:
14223   case Expr::DependentScopeDeclRefExprClass:
14224   case Expr::CXXConstructExprClass:
14225   case Expr::CXXInheritedCtorInitExprClass:
14226   case Expr::CXXStdInitializerListExprClass:
14227   case Expr::CXXBindTemporaryExprClass:
14228   case Expr::ExprWithCleanupsClass:
14229   case Expr::CXXTemporaryObjectExprClass:
14230   case Expr::CXXUnresolvedConstructExprClass:
14231   case Expr::CXXDependentScopeMemberExprClass:
14232   case Expr::UnresolvedMemberExprClass:
14233   case Expr::ObjCStringLiteralClass:
14234   case Expr::ObjCBoxedExprClass:
14235   case Expr::ObjCArrayLiteralClass:
14236   case Expr::ObjCDictionaryLiteralClass:
14237   case Expr::ObjCEncodeExprClass:
14238   case Expr::ObjCMessageExprClass:
14239   case Expr::ObjCSelectorExprClass:
14240   case Expr::ObjCProtocolExprClass:
14241   case Expr::ObjCIvarRefExprClass:
14242   case Expr::ObjCPropertyRefExprClass:
14243   case Expr::ObjCSubscriptRefExprClass:
14244   case Expr::ObjCIsaExprClass:
14245   case Expr::ObjCAvailabilityCheckExprClass:
14246   case Expr::ShuffleVectorExprClass:
14247   case Expr::ConvertVectorExprClass:
14248   case Expr::BlockExprClass:
14249   case Expr::NoStmtClass:
14250   case Expr::OpaqueValueExprClass:
14251   case Expr::PackExpansionExprClass:
14252   case Expr::SubstNonTypeTemplateParmPackExprClass:
14253   case Expr::FunctionParmPackExprClass:
14254   case Expr::AsTypeExprClass:
14255   case Expr::ObjCIndirectCopyRestoreExprClass:
14256   case Expr::MaterializeTemporaryExprClass:
14257   case Expr::PseudoObjectExprClass:
14258   case Expr::AtomicExprClass:
14259   case Expr::LambdaExprClass:
14260   case Expr::CXXFoldExprClass:
14261   case Expr::CoawaitExprClass:
14262   case Expr::DependentCoawaitExprClass:
14263   case Expr::CoyieldExprClass:
14264     return ICEDiag(IK_NotICE, E->getBeginLoc());
14265 
14266   case Expr::InitListExprClass: {
14267     // C++03 [dcl.init]p13: If T is a scalar type, then a declaration of the
14268     // form "T x = { a };" is equivalent to "T x = a;".
14269     // Unless we're initializing a reference, T is a scalar as it is known to be
14270     // of integral or enumeration type.
14271     if (E->isRValue())
14272       if (cast<InitListExpr>(E)->getNumInits() == 1)
14273         return CheckICE(cast<InitListExpr>(E)->getInit(0), Ctx);
14274     return ICEDiag(IK_NotICE, E->getBeginLoc());
14275   }
14276 
14277   case Expr::SizeOfPackExprClass:
14278   case Expr::GNUNullExprClass:
14279   case Expr::SourceLocExprClass:
14280     return NoDiag();
14281 
14282   case Expr::SubstNonTypeTemplateParmExprClass:
14283     return
14284       CheckICE(cast<SubstNonTypeTemplateParmExpr>(E)->getReplacement(), Ctx);
14285 
14286   case Expr::ConstantExprClass:
14287     return CheckICE(cast<ConstantExpr>(E)->getSubExpr(), Ctx);
14288 
14289   case Expr::ParenExprClass:
14290     return CheckICE(cast<ParenExpr>(E)->getSubExpr(), Ctx);
14291   case Expr::GenericSelectionExprClass:
14292     return CheckICE(cast<GenericSelectionExpr>(E)->getResultExpr(), Ctx);
14293   case Expr::IntegerLiteralClass:
14294   case Expr::FixedPointLiteralClass:
14295   case Expr::CharacterLiteralClass:
14296   case Expr::ObjCBoolLiteralExprClass:
14297   case Expr::CXXBoolLiteralExprClass:
14298   case Expr::CXXScalarValueInitExprClass:
14299   case Expr::TypeTraitExprClass:
14300   case Expr::ConceptSpecializationExprClass:
14301   case Expr::RequiresExprClass:
14302   case Expr::ArrayTypeTraitExprClass:
14303   case Expr::ExpressionTraitExprClass:
14304   case Expr::CXXNoexceptExprClass:
14305     return NoDiag();
14306   case Expr::CallExprClass:
14307   case Expr::CXXOperatorCallExprClass: {
14308     // C99 6.6/3 allows function calls within unevaluated subexpressions of
14309     // constant expressions, but they can never be ICEs because an ICE cannot
14310     // contain an operand of (pointer to) function type.
14311     const CallExpr *CE = cast<CallExpr>(E);
14312     if (CE->getBuiltinCallee())
14313       return CheckEvalInICE(E, Ctx);
14314     return ICEDiag(IK_NotICE, E->getBeginLoc());
14315   }
14316   case Expr::CXXRewrittenBinaryOperatorClass:
14317     return CheckICE(cast<CXXRewrittenBinaryOperator>(E)->getSemanticForm(),
14318                     Ctx);
14319   case Expr::DeclRefExprClass: {
14320     if (isa<EnumConstantDecl>(cast<DeclRefExpr>(E)->getDecl()))
14321       return NoDiag();
14322     const ValueDecl *D = cast<DeclRefExpr>(E)->getDecl();
14323     if (Ctx.getLangOpts().CPlusPlus &&
14324         D && IsConstNonVolatile(D->getType())) {
14325       // Parameter variables are never constants.  Without this check,
14326       // getAnyInitializer() can find a default argument, which leads
14327       // to chaos.
14328       if (isa<ParmVarDecl>(D))
14329         return ICEDiag(IK_NotICE, cast<DeclRefExpr>(E)->getLocation());
14330 
14331       // C++ 7.1.5.1p2
14332       //   A variable of non-volatile const-qualified integral or enumeration
14333       //   type initialized by an ICE can be used in ICEs.
14334       if (const VarDecl *Dcl = dyn_cast<VarDecl>(D)) {
14335         if (!Dcl->getType()->isIntegralOrEnumerationType())
14336           return ICEDiag(IK_NotICE, cast<DeclRefExpr>(E)->getLocation());
14337 
14338         const VarDecl *VD;
14339         // Look for a declaration of this variable that has an initializer, and
14340         // check whether it is an ICE.
14341         if (Dcl->getAnyInitializer(VD) && VD->checkInitIsICE())
14342           return NoDiag();
14343         else
14344           return ICEDiag(IK_NotICE, cast<DeclRefExpr>(E)->getLocation());
14345       }
14346     }
14347     return ICEDiag(IK_NotICE, E->getBeginLoc());
14348   }
14349   case Expr::UnaryOperatorClass: {
14350     const UnaryOperator *Exp = cast<UnaryOperator>(E);
14351     switch (Exp->getOpcode()) {
14352     case UO_PostInc:
14353     case UO_PostDec:
14354     case UO_PreInc:
14355     case UO_PreDec:
14356     case UO_AddrOf:
14357     case UO_Deref:
14358     case UO_Coawait:
14359       // C99 6.6/3 allows increment and decrement within unevaluated
14360       // subexpressions of constant expressions, but they can never be ICEs
14361       // because an ICE cannot contain an lvalue operand.
14362       return ICEDiag(IK_NotICE, E->getBeginLoc());
14363     case UO_Extension:
14364     case UO_LNot:
14365     case UO_Plus:
14366     case UO_Minus:
14367     case UO_Not:
14368     case UO_Real:
14369     case UO_Imag:
14370       return CheckICE(Exp->getSubExpr(), Ctx);
14371     }
14372     llvm_unreachable("invalid unary operator class");
14373   }
14374   case Expr::OffsetOfExprClass: {
14375     // Note that per C99, offsetof must be an ICE. And AFAIK, using
14376     // EvaluateAsRValue matches the proposed gcc behavior for cases like
14377     // "offsetof(struct s{int x[4];}, x[1.0])".  This doesn't affect
14378     // compliance: we should warn earlier for offsetof expressions with
14379     // array subscripts that aren't ICEs, and if the array subscripts
14380     // are ICEs, the value of the offsetof must be an integer constant.
14381     return CheckEvalInICE(E, Ctx);
14382   }
14383   case Expr::UnaryExprOrTypeTraitExprClass: {
14384     const UnaryExprOrTypeTraitExpr *Exp = cast<UnaryExprOrTypeTraitExpr>(E);
14385     if ((Exp->getKind() ==  UETT_SizeOf) &&
14386         Exp->getTypeOfArgument()->isVariableArrayType())
14387       return ICEDiag(IK_NotICE, E->getBeginLoc());
14388     return NoDiag();
14389   }
14390   case Expr::BinaryOperatorClass: {
14391     const BinaryOperator *Exp = cast<BinaryOperator>(E);
14392     switch (Exp->getOpcode()) {
14393     case BO_PtrMemD:
14394     case BO_PtrMemI:
14395     case BO_Assign:
14396     case BO_MulAssign:
14397     case BO_DivAssign:
14398     case BO_RemAssign:
14399     case BO_AddAssign:
14400     case BO_SubAssign:
14401     case BO_ShlAssign:
14402     case BO_ShrAssign:
14403     case BO_AndAssign:
14404     case BO_XorAssign:
14405     case BO_OrAssign:
14406       // C99 6.6/3 allows assignments within unevaluated subexpressions of
14407       // constant expressions, but they can never be ICEs because an ICE cannot
14408       // contain an lvalue operand.
14409       return ICEDiag(IK_NotICE, E->getBeginLoc());
14410 
14411     case BO_Mul:
14412     case BO_Div:
14413     case BO_Rem:
14414     case BO_Add:
14415     case BO_Sub:
14416     case BO_Shl:
14417     case BO_Shr:
14418     case BO_LT:
14419     case BO_GT:
14420     case BO_LE:
14421     case BO_GE:
14422     case BO_EQ:
14423     case BO_NE:
14424     case BO_And:
14425     case BO_Xor:
14426     case BO_Or:
14427     case BO_Comma:
14428     case BO_Cmp: {
14429       ICEDiag LHSResult = CheckICE(Exp->getLHS(), Ctx);
14430       ICEDiag RHSResult = CheckICE(Exp->getRHS(), Ctx);
14431       if (Exp->getOpcode() == BO_Div ||
14432           Exp->getOpcode() == BO_Rem) {
14433         // EvaluateAsRValue gives an error for undefined Div/Rem, so make sure
14434         // we don't evaluate one.
14435         if (LHSResult.Kind == IK_ICE && RHSResult.Kind == IK_ICE) {
14436           llvm::APSInt REval = Exp->getRHS()->EvaluateKnownConstInt(Ctx);
14437           if (REval == 0)
14438             return ICEDiag(IK_ICEIfUnevaluated, E->getBeginLoc());
14439           if (REval.isSigned() && REval.isAllOnesValue()) {
14440             llvm::APSInt LEval = Exp->getLHS()->EvaluateKnownConstInt(Ctx);
14441             if (LEval.isMinSignedValue())
14442               return ICEDiag(IK_ICEIfUnevaluated, E->getBeginLoc());
14443           }
14444         }
14445       }
14446       if (Exp->getOpcode() == BO_Comma) {
14447         if (Ctx.getLangOpts().C99) {
14448           // C99 6.6p3 introduces a strange edge case: comma can be in an ICE
14449           // if it isn't evaluated.
14450           if (LHSResult.Kind == IK_ICE && RHSResult.Kind == IK_ICE)
14451             return ICEDiag(IK_ICEIfUnevaluated, E->getBeginLoc());
14452         } else {
14453           // In both C89 and C++, commas in ICEs are illegal.
14454           return ICEDiag(IK_NotICE, E->getBeginLoc());
14455         }
14456       }
14457       return Worst(LHSResult, RHSResult);
14458     }
14459     case BO_LAnd:
14460     case BO_LOr: {
14461       ICEDiag LHSResult = CheckICE(Exp->getLHS(), Ctx);
14462       ICEDiag RHSResult = CheckICE(Exp->getRHS(), Ctx);
14463       if (LHSResult.Kind == IK_ICE && RHSResult.Kind == IK_ICEIfUnevaluated) {
14464         // Rare case where the RHS has a comma "side-effect"; we need
14465         // to actually check the condition to see whether the side
14466         // with the comma is evaluated.
14467         if ((Exp->getOpcode() == BO_LAnd) !=
14468             (Exp->getLHS()->EvaluateKnownConstInt(Ctx) == 0))
14469           return RHSResult;
14470         return NoDiag();
14471       }
14472 
14473       return Worst(LHSResult, RHSResult);
14474     }
14475     }
14476     llvm_unreachable("invalid binary operator kind");
14477   }
14478   case Expr::ImplicitCastExprClass:
14479   case Expr::CStyleCastExprClass:
14480   case Expr::CXXFunctionalCastExprClass:
14481   case Expr::CXXStaticCastExprClass:
14482   case Expr::CXXReinterpretCastExprClass:
14483   case Expr::CXXConstCastExprClass:
14484   case Expr::ObjCBridgedCastExprClass: {
14485     const Expr *SubExpr = cast<CastExpr>(E)->getSubExpr();
14486     if (isa<ExplicitCastExpr>(E)) {
14487       if (const FloatingLiteral *FL
14488             = dyn_cast<FloatingLiteral>(SubExpr->IgnoreParenImpCasts())) {
14489         unsigned DestWidth = Ctx.getIntWidth(E->getType());
14490         bool DestSigned = E->getType()->isSignedIntegerOrEnumerationType();
14491         APSInt IgnoredVal(DestWidth, !DestSigned);
14492         bool Ignored;
14493         // If the value does not fit in the destination type, the behavior is
14494         // undefined, so we are not required to treat it as a constant
14495         // expression.
14496         if (FL->getValue().convertToInteger(IgnoredVal,
14497                                             llvm::APFloat::rmTowardZero,
14498                                             &Ignored) & APFloat::opInvalidOp)
14499           return ICEDiag(IK_NotICE, E->getBeginLoc());
14500         return NoDiag();
14501       }
14502     }
14503     switch (cast<CastExpr>(E)->getCastKind()) {
14504     case CK_LValueToRValue:
14505     case CK_AtomicToNonAtomic:
14506     case CK_NonAtomicToAtomic:
14507     case CK_NoOp:
14508     case CK_IntegralToBoolean:
14509     case CK_IntegralCast:
14510       return CheckICE(SubExpr, Ctx);
14511     default:
14512       return ICEDiag(IK_NotICE, E->getBeginLoc());
14513     }
14514   }
14515   case Expr::BinaryConditionalOperatorClass: {
14516     const BinaryConditionalOperator *Exp = cast<BinaryConditionalOperator>(E);
14517     ICEDiag CommonResult = CheckICE(Exp->getCommon(), Ctx);
14518     if (CommonResult.Kind == IK_NotICE) return CommonResult;
14519     ICEDiag FalseResult = CheckICE(Exp->getFalseExpr(), Ctx);
14520     if (FalseResult.Kind == IK_NotICE) return FalseResult;
14521     if (CommonResult.Kind == IK_ICEIfUnevaluated) return CommonResult;
14522     if (FalseResult.Kind == IK_ICEIfUnevaluated &&
14523         Exp->getCommon()->EvaluateKnownConstInt(Ctx) != 0) return NoDiag();
14524     return FalseResult;
14525   }
14526   case Expr::ConditionalOperatorClass: {
14527     const ConditionalOperator *Exp = cast<ConditionalOperator>(E);
14528     // If the condition (ignoring parens) is a __builtin_constant_p call,
14529     // then only the true side is actually considered in an integer constant
14530     // expression, and it is fully evaluated.  This is an important GNU
14531     // extension.  See GCC PR38377 for discussion.
14532     if (const CallExpr *CallCE
14533         = dyn_cast<CallExpr>(Exp->getCond()->IgnoreParenCasts()))
14534       if (CallCE->getBuiltinCallee() == Builtin::BI__builtin_constant_p)
14535         return CheckEvalInICE(E, Ctx);
14536     ICEDiag CondResult = CheckICE(Exp->getCond(), Ctx);
14537     if (CondResult.Kind == IK_NotICE)
14538       return CondResult;
14539 
14540     ICEDiag TrueResult = CheckICE(Exp->getTrueExpr(), Ctx);
14541     ICEDiag FalseResult = CheckICE(Exp->getFalseExpr(), Ctx);
14542 
14543     if (TrueResult.Kind == IK_NotICE)
14544       return TrueResult;
14545     if (FalseResult.Kind == IK_NotICE)
14546       return FalseResult;
14547     if (CondResult.Kind == IK_ICEIfUnevaluated)
14548       return CondResult;
14549     if (TrueResult.Kind == IK_ICE && FalseResult.Kind == IK_ICE)
14550       return NoDiag();
14551     // Rare case where the diagnostics depend on which side is evaluated
14552     // Note that if we get here, CondResult is 0, and at least one of
14553     // TrueResult and FalseResult is non-zero.
14554     if (Exp->getCond()->EvaluateKnownConstInt(Ctx) == 0)
14555       return FalseResult;
14556     return TrueResult;
14557   }
14558   case Expr::CXXDefaultArgExprClass:
14559     return CheckICE(cast<CXXDefaultArgExpr>(E)->getExpr(), Ctx);
14560   case Expr::CXXDefaultInitExprClass:
14561     return CheckICE(cast<CXXDefaultInitExpr>(E)->getExpr(), Ctx);
14562   case Expr::ChooseExprClass: {
14563     return CheckICE(cast<ChooseExpr>(E)->getChosenSubExpr(), Ctx);
14564   }
14565   case Expr::BuiltinBitCastExprClass: {
14566     if (!checkBitCastConstexprEligibility(nullptr, Ctx, cast<CastExpr>(E)))
14567       return ICEDiag(IK_NotICE, E->getBeginLoc());
14568     return CheckICE(cast<CastExpr>(E)->getSubExpr(), Ctx);
14569   }
14570   }
14571 
14572   llvm_unreachable("Invalid StmtClass!");
14573 }
14574 
14575 /// Evaluate an expression as a C++11 integral constant expression.
14576 static bool EvaluateCPlusPlus11IntegralConstantExpr(const ASTContext &Ctx,
14577                                                     const Expr *E,
14578                                                     llvm::APSInt *Value,
14579                                                     SourceLocation *Loc) {
14580   if (!E->getType()->isIntegralOrUnscopedEnumerationType()) {
14581     if (Loc) *Loc = E->getExprLoc();
14582     return false;
14583   }
14584 
14585   APValue Result;
14586   if (!E->isCXX11ConstantExpr(Ctx, &Result, Loc))
14587     return false;
14588 
14589   if (!Result.isInt()) {
14590     if (Loc) *Loc = E->getExprLoc();
14591     return false;
14592   }
14593 
14594   if (Value) *Value = Result.getInt();
14595   return true;
14596 }
14597 
14598 bool Expr::isIntegerConstantExpr(const ASTContext &Ctx,
14599                                  SourceLocation *Loc) const {
14600   assert(!isValueDependent() &&
14601          "Expression evaluator can't be called on a dependent expression.");
14602 
14603   if (Ctx.getLangOpts().CPlusPlus11)
14604     return EvaluateCPlusPlus11IntegralConstantExpr(Ctx, this, nullptr, Loc);
14605 
14606   ICEDiag D = CheckICE(this, Ctx);
14607   if (D.Kind != IK_ICE) {
14608     if (Loc) *Loc = D.Loc;
14609     return false;
14610   }
14611   return true;
14612 }
14613 
14614 bool Expr::isIntegerConstantExpr(llvm::APSInt &Value, const ASTContext &Ctx,
14615                                  SourceLocation *Loc, bool isEvaluated) const {
14616   assert(!isValueDependent() &&
14617          "Expression evaluator can't be called on a dependent expression.");
14618 
14619   if (Ctx.getLangOpts().CPlusPlus11)
14620     return EvaluateCPlusPlus11IntegralConstantExpr(Ctx, this, &Value, Loc);
14621 
14622   if (!isIntegerConstantExpr(Ctx, Loc))
14623     return false;
14624 
14625   // The only possible side-effects here are due to UB discovered in the
14626   // evaluation (for instance, INT_MAX + 1). In such a case, we are still
14627   // required to treat the expression as an ICE, so we produce the folded
14628   // value.
14629   EvalResult ExprResult;
14630   Expr::EvalStatus Status;
14631   EvalInfo Info(Ctx, Status, EvalInfo::EM_IgnoreSideEffects);
14632   Info.InConstantContext = true;
14633 
14634   if (!::EvaluateAsInt(this, ExprResult, Ctx, SE_AllowSideEffects, Info))
14635     llvm_unreachable("ICE cannot be evaluated!");
14636 
14637   Value = ExprResult.Val.getInt();
14638   return true;
14639 }
14640 
14641 bool Expr::isCXX98IntegralConstantExpr(const ASTContext &Ctx) const {
14642   assert(!isValueDependent() &&
14643          "Expression evaluator can't be called on a dependent expression.");
14644 
14645   return CheckICE(this, Ctx).Kind == IK_ICE;
14646 }
14647 
14648 bool Expr::isCXX11ConstantExpr(const ASTContext &Ctx, APValue *Result,
14649                                SourceLocation *Loc) const {
14650   assert(!isValueDependent() &&
14651          "Expression evaluator can't be called on a dependent expression.");
14652 
14653   // We support this checking in C++98 mode in order to diagnose compatibility
14654   // issues.
14655   assert(Ctx.getLangOpts().CPlusPlus);
14656 
14657   // Build evaluation settings.
14658   Expr::EvalStatus Status;
14659   SmallVector<PartialDiagnosticAt, 8> Diags;
14660   Status.Diag = &Diags;
14661   EvalInfo Info(Ctx, Status, EvalInfo::EM_ConstantExpression);
14662 
14663   APValue Scratch;
14664   bool IsConstExpr =
14665       ::EvaluateAsRValue(Info, this, Result ? *Result : Scratch) &&
14666       // FIXME: We don't produce a diagnostic for this, but the callers that
14667       // call us on arbitrary full-expressions should generally not care.
14668       Info.discardCleanups() && !Status.HasSideEffects;
14669 
14670   if (!Diags.empty()) {
14671     IsConstExpr = false;
14672     if (Loc) *Loc = Diags[0].first;
14673   } else if (!IsConstExpr) {
14674     // FIXME: This shouldn't happen.
14675     if (Loc) *Loc = getExprLoc();
14676   }
14677 
14678   return IsConstExpr;
14679 }
14680 
14681 bool Expr::EvaluateWithSubstitution(APValue &Value, ASTContext &Ctx,
14682                                     const FunctionDecl *Callee,
14683                                     ArrayRef<const Expr*> Args,
14684                                     const Expr *This) const {
14685   assert(!isValueDependent() &&
14686          "Expression evaluator can't be called on a dependent expression.");
14687 
14688   Expr::EvalStatus Status;
14689   EvalInfo Info(Ctx, Status, EvalInfo::EM_ConstantExpressionUnevaluated);
14690   Info.InConstantContext = true;
14691 
14692   LValue ThisVal;
14693   const LValue *ThisPtr = nullptr;
14694   if (This) {
14695 #ifndef NDEBUG
14696     auto *MD = dyn_cast<CXXMethodDecl>(Callee);
14697     assert(MD && "Don't provide `this` for non-methods.");
14698     assert(!MD->isStatic() && "Don't provide `this` for static methods.");
14699 #endif
14700     if (!This->isValueDependent() &&
14701         EvaluateObjectArgument(Info, This, ThisVal) &&
14702         !Info.EvalStatus.HasSideEffects)
14703       ThisPtr = &ThisVal;
14704 
14705     // Ignore any side-effects from a failed evaluation. This is safe because
14706     // they can't interfere with any other argument evaluation.
14707     Info.EvalStatus.HasSideEffects = false;
14708   }
14709 
14710   ArgVector ArgValues(Args.size());
14711   for (ArrayRef<const Expr*>::iterator I = Args.begin(), E = Args.end();
14712        I != E; ++I) {
14713     if ((*I)->isValueDependent() ||
14714         !Evaluate(ArgValues[I - Args.begin()], Info, *I) ||
14715         Info.EvalStatus.HasSideEffects)
14716       // If evaluation fails, throw away the argument entirely.
14717       ArgValues[I - Args.begin()] = APValue();
14718 
14719     // Ignore any side-effects from a failed evaluation. This is safe because
14720     // they can't interfere with any other argument evaluation.
14721     Info.EvalStatus.HasSideEffects = false;
14722   }
14723 
14724   // Parameter cleanups happen in the caller and are not part of this
14725   // evaluation.
14726   Info.discardCleanups();
14727   Info.EvalStatus.HasSideEffects = false;
14728 
14729   // Build fake call to Callee.
14730   CallStackFrame Frame(Info, Callee->getLocation(), Callee, ThisPtr,
14731                        ArgValues.data());
14732   // FIXME: Missing ExprWithCleanups in enable_if conditions?
14733   FullExpressionRAII Scope(Info);
14734   return Evaluate(Value, Info, this) && Scope.destroy() &&
14735          !Info.EvalStatus.HasSideEffects;
14736 }
14737 
14738 bool Expr::isPotentialConstantExpr(const FunctionDecl *FD,
14739                                    SmallVectorImpl<
14740                                      PartialDiagnosticAt> &Diags) {
14741   // FIXME: It would be useful to check constexpr function templates, but at the
14742   // moment the constant expression evaluator cannot cope with the non-rigorous
14743   // ASTs which we build for dependent expressions.
14744   if (FD->isDependentContext())
14745     return true;
14746 
14747   // Bail out if a constexpr constructor has an initializer that contains an
14748   // error. We deliberately don't produce a diagnostic, as we have produced a
14749   // relevant diagnostic when parsing the error initializer.
14750   if (const auto *Ctor = dyn_cast<CXXConstructorDecl>(FD)) {
14751     for (const auto *InitExpr : Ctor->inits()) {
14752       if (InitExpr->getInit() && InitExpr->getInit()->containsErrors())
14753         return false;
14754     }
14755   }
14756   Expr::EvalStatus Status;
14757   Status.Diag = &Diags;
14758 
14759   EvalInfo Info(FD->getASTContext(), Status, EvalInfo::EM_ConstantExpression);
14760   Info.InConstantContext = true;
14761   Info.CheckingPotentialConstantExpression = true;
14762 
14763   // The constexpr VM attempts to compile all methods to bytecode here.
14764   if (Info.EnableNewConstInterp) {
14765     Info.Ctx.getInterpContext().isPotentialConstantExpr(Info, FD);
14766     return Diags.empty();
14767   }
14768 
14769   const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD);
14770   const CXXRecordDecl *RD = MD ? MD->getParent()->getCanonicalDecl() : nullptr;
14771 
14772   // Fabricate an arbitrary expression on the stack and pretend that it
14773   // is a temporary being used as the 'this' pointer.
14774   LValue This;
14775   ImplicitValueInitExpr VIE(RD ? Info.Ctx.getRecordType(RD) : Info.Ctx.IntTy);
14776   This.set({&VIE, Info.CurrentCall->Index});
14777 
14778   ArrayRef<const Expr*> Args;
14779 
14780   APValue Scratch;
14781   if (const CXXConstructorDecl *CD = dyn_cast<CXXConstructorDecl>(FD)) {
14782     // Evaluate the call as a constant initializer, to allow the construction
14783     // of objects of non-literal types.
14784     Info.setEvaluatingDecl(This.getLValueBase(), Scratch);
14785     HandleConstructorCall(&VIE, This, Args, CD, Info, Scratch);
14786   } else {
14787     SourceLocation Loc = FD->getLocation();
14788     HandleFunctionCall(Loc, FD, (MD && MD->isInstance()) ? &This : nullptr,
14789                        Args, FD->getBody(), Info, Scratch, nullptr);
14790   }
14791 
14792   return Diags.empty();
14793 }
14794 
14795 bool Expr::isPotentialConstantExprUnevaluated(Expr *E,
14796                                               const FunctionDecl *FD,
14797                                               SmallVectorImpl<
14798                                                 PartialDiagnosticAt> &Diags) {
14799   assert(!E->isValueDependent() &&
14800          "Expression evaluator can't be called on a dependent expression.");
14801 
14802   Expr::EvalStatus Status;
14803   Status.Diag = &Diags;
14804 
14805   EvalInfo Info(FD->getASTContext(), Status,
14806                 EvalInfo::EM_ConstantExpressionUnevaluated);
14807   Info.InConstantContext = true;
14808   Info.CheckingPotentialConstantExpression = true;
14809 
14810   // Fabricate a call stack frame to give the arguments a plausible cover story.
14811   ArrayRef<const Expr*> Args;
14812   ArgVector ArgValues(0);
14813   bool Success = EvaluateArgs(Args, ArgValues, Info, FD);
14814   (void)Success;
14815   assert(Success &&
14816          "Failed to set up arguments for potential constant evaluation");
14817   CallStackFrame Frame(Info, SourceLocation(), FD, nullptr, ArgValues.data());
14818 
14819   APValue ResultScratch;
14820   Evaluate(ResultScratch, Info, E);
14821   return Diags.empty();
14822 }
14823 
14824 bool Expr::tryEvaluateObjectSize(uint64_t &Result, ASTContext &Ctx,
14825                                  unsigned Type) const {
14826   if (!getType()->isPointerType())
14827     return false;
14828 
14829   Expr::EvalStatus Status;
14830   EvalInfo Info(Ctx, Status, EvalInfo::EM_ConstantFold);
14831   return tryEvaluateBuiltinObjectSize(this, Type, Info, Result);
14832 }
14833