1 //===--- ExprConstant.cpp - Expression Constant Evaluator -----------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file implements the Expr constant evaluator.
11 //
12 // Constant expression evaluation produces four main results:
13 //
14 //  * A success/failure flag indicating whether constant folding was successful.
15 //    This is the 'bool' return value used by most of the code in this file. A
16 //    'false' return value indicates that constant folding has failed, and any
17 //    appropriate diagnostic has already been produced.
18 //
19 //  * An evaluated result, valid only if constant folding has not failed.
20 //
21 //  * A flag indicating if evaluation encountered (unevaluated) side-effects.
22 //    These arise in cases such as (sideEffect(), 0) and (sideEffect() || 1),
23 //    where it is possible to determine the evaluated result regardless.
24 //
25 //  * A set of notes indicating why the evaluation was not a constant expression
26 //    (under the C++11 / C++1y rules only, at the moment), or, if folding failed
27 //    too, why the expression could not be folded.
28 //
29 // If we are checking for a potential constant expression, failure to constant
30 // fold a potential constant sub-expression will be indicated by a 'false'
31 // return value (the expression could not be folded) and no diagnostic (the
32 // expression is not necessarily non-constant).
33 //
34 //===----------------------------------------------------------------------===//
35 
36 #include "clang/AST/APValue.h"
37 #include "clang/AST/ASTContext.h"
38 #include "clang/AST/ASTDiagnostic.h"
39 #include "clang/AST/ASTLambda.h"
40 #include "clang/AST/CharUnits.h"
41 #include "clang/AST/Expr.h"
42 #include "clang/AST/RecordLayout.h"
43 #include "clang/AST/StmtVisitor.h"
44 #include "clang/AST/TypeLoc.h"
45 #include "clang/Basic/Builtins.h"
46 #include "clang/Basic/TargetInfo.h"
47 #include "llvm/Support/raw_ostream.h"
48 #include <cstring>
49 #include <functional>
50 
51 #define DEBUG_TYPE "exprconstant"
52 
53 using namespace clang;
54 using llvm::APSInt;
55 using llvm::APFloat;
56 
57 static bool IsGlobalLValue(APValue::LValueBase B);
58 
59 namespace {
60   struct LValue;
61   struct CallStackFrame;
62   struct EvalInfo;
63 
64   static QualType getType(APValue::LValueBase B) {
65     if (!B) return QualType();
66     if (const ValueDecl *D = B.dyn_cast<const ValueDecl*>()) {
67       // FIXME: It's unclear where we're supposed to take the type from, and
68       // this actually matters for arrays of unknown bound. Eg:
69       //
70       // extern int arr[]; void f() { extern int arr[3]; };
71       // constexpr int *p = &arr[1]; // valid?
72       //
73       // For now, we take the array bound from the most recent declaration.
74       for (auto *Redecl = cast<ValueDecl>(D->getMostRecentDecl()); Redecl;
75            Redecl = cast_or_null<ValueDecl>(Redecl->getPreviousDecl())) {
76         QualType T = Redecl->getType();
77         if (!T->isIncompleteArrayType())
78           return T;
79       }
80       return D->getType();
81     }
82 
83     const Expr *Base = B.get<const Expr*>();
84 
85     // For a materialized temporary, the type of the temporary we materialized
86     // may not be the type of the expression.
87     if (const MaterializeTemporaryExpr *MTE =
88             dyn_cast<MaterializeTemporaryExpr>(Base)) {
89       SmallVector<const Expr *, 2> CommaLHSs;
90       SmallVector<SubobjectAdjustment, 2> Adjustments;
91       const Expr *Temp = MTE->GetTemporaryExpr();
92       const Expr *Inner = Temp->skipRValueSubobjectAdjustments(CommaLHSs,
93                                                                Adjustments);
94       // Keep any cv-qualifiers from the reference if we generated a temporary
95       // for it directly. Otherwise use the type after adjustment.
96       if (!Adjustments.empty())
97         return Inner->getType();
98     }
99 
100     return Base->getType();
101   }
102 
103   /// Get an LValue path entry, which is known to not be an array index, as a
104   /// field or base class.
105   static
106   APValue::BaseOrMemberType getAsBaseOrMember(APValue::LValuePathEntry E) {
107     APValue::BaseOrMemberType Value;
108     Value.setFromOpaqueValue(E.BaseOrMember);
109     return Value;
110   }
111 
112   /// Get an LValue path entry, which is known to not be an array index, as a
113   /// field declaration.
114   static const FieldDecl *getAsField(APValue::LValuePathEntry E) {
115     return dyn_cast<FieldDecl>(getAsBaseOrMember(E).getPointer());
116   }
117   /// Get an LValue path entry, which is known to not be an array index, as a
118   /// base class declaration.
119   static const CXXRecordDecl *getAsBaseClass(APValue::LValuePathEntry E) {
120     return dyn_cast<CXXRecordDecl>(getAsBaseOrMember(E).getPointer());
121   }
122   /// Determine whether this LValue path entry for a base class names a virtual
123   /// base class.
124   static bool isVirtualBaseClass(APValue::LValuePathEntry E) {
125     return getAsBaseOrMember(E).getInt();
126   }
127 
128   /// Given a CallExpr, try to get the alloc_size attribute. May return null.
129   static const AllocSizeAttr *getAllocSizeAttr(const CallExpr *CE) {
130     const FunctionDecl *Callee = CE->getDirectCallee();
131     return Callee ? Callee->getAttr<AllocSizeAttr>() : nullptr;
132   }
133 
134   /// Attempts to unwrap a CallExpr (with an alloc_size attribute) from an Expr.
135   /// This will look through a single cast.
136   ///
137   /// Returns null if we couldn't unwrap a function with alloc_size.
138   static const CallExpr *tryUnwrapAllocSizeCall(const Expr *E) {
139     if (!E->getType()->isPointerType())
140       return nullptr;
141 
142     E = E->IgnoreParens();
143     // If we're doing a variable assignment from e.g. malloc(N), there will
144     // probably be a cast of some kind. In exotic cases, we might also see a
145     // top-level ExprWithCleanups. Ignore them either way.
146     if (const auto *EC = dyn_cast<ExprWithCleanups>(E))
147       E = EC->getSubExpr()->IgnoreParens();
148 
149     if (const auto *Cast = dyn_cast<CastExpr>(E))
150       E = Cast->getSubExpr()->IgnoreParens();
151 
152     if (const auto *CE = dyn_cast<CallExpr>(E))
153       return getAllocSizeAttr(CE) ? CE : nullptr;
154     return nullptr;
155   }
156 
157   /// Determines whether or not the given Base contains a call to a function
158   /// with the alloc_size attribute.
159   static bool isBaseAnAllocSizeCall(APValue::LValueBase Base) {
160     const auto *E = Base.dyn_cast<const Expr *>();
161     return E && E->getType()->isPointerType() && tryUnwrapAllocSizeCall(E);
162   }
163 
164   /// The bound to claim that an array of unknown bound has.
165   /// The value in MostDerivedArraySize is undefined in this case. So, set it
166   /// to an arbitrary value that's likely to loudly break things if it's used.
167   static const uint64_t AssumedSizeForUnsizedArray =
168       std::numeric_limits<uint64_t>::max() / 2;
169 
170   /// Determines if an LValue with the given LValueBase will have an unsized
171   /// array in its designator.
172   /// Find the path length and type of the most-derived subobject in the given
173   /// path, and find the size of the containing array, if any.
174   static unsigned
175   findMostDerivedSubobject(ASTContext &Ctx, APValue::LValueBase Base,
176                            ArrayRef<APValue::LValuePathEntry> Path,
177                            uint64_t &ArraySize, QualType &Type, bool &IsArray,
178                            bool &FirstEntryIsUnsizedArray) {
179     // This only accepts LValueBases from APValues, and APValues don't support
180     // arrays that lack size info.
181     assert(!isBaseAnAllocSizeCall(Base) &&
182            "Unsized arrays shouldn't appear here");
183     unsigned MostDerivedLength = 0;
184     Type = getType(Base);
185 
186     for (unsigned I = 0, N = Path.size(); I != N; ++I) {
187       if (Type->isArrayType()) {
188         const ArrayType *AT = Ctx.getAsArrayType(Type);
189         Type = AT->getElementType();
190         MostDerivedLength = I + 1;
191         IsArray = true;
192 
193         if (auto *CAT = dyn_cast<ConstantArrayType>(AT)) {
194           ArraySize = CAT->getSize().getZExtValue();
195         } else {
196           assert(I == 0 && "unexpected unsized array designator");
197           FirstEntryIsUnsizedArray = true;
198           ArraySize = AssumedSizeForUnsizedArray;
199         }
200       } else if (Type->isAnyComplexType()) {
201         const ComplexType *CT = Type->castAs<ComplexType>();
202         Type = CT->getElementType();
203         ArraySize = 2;
204         MostDerivedLength = I + 1;
205         IsArray = true;
206       } else if (const FieldDecl *FD = getAsField(Path[I])) {
207         Type = FD->getType();
208         ArraySize = 0;
209         MostDerivedLength = I + 1;
210         IsArray = false;
211       } else {
212         // Path[I] describes a base class.
213         ArraySize = 0;
214         IsArray = false;
215       }
216     }
217     return MostDerivedLength;
218   }
219 
220   // The order of this enum is important for diagnostics.
221   enum CheckSubobjectKind {
222     CSK_Base, CSK_Derived, CSK_Field, CSK_ArrayToPointer, CSK_ArrayIndex,
223     CSK_This, CSK_Real, CSK_Imag
224   };
225 
226   /// A path from a glvalue to a subobject of that glvalue.
227   struct SubobjectDesignator {
228     /// True if the subobject was named in a manner not supported by C++11. Such
229     /// lvalues can still be folded, but they are not core constant expressions
230     /// and we cannot perform lvalue-to-rvalue conversions on them.
231     unsigned Invalid : 1;
232 
233     /// Is this a pointer one past the end of an object?
234     unsigned IsOnePastTheEnd : 1;
235 
236     /// Indicator of whether the first entry is an unsized array.
237     unsigned FirstEntryIsAnUnsizedArray : 1;
238 
239     /// Indicator of whether the most-derived object is an array element.
240     unsigned MostDerivedIsArrayElement : 1;
241 
242     /// The length of the path to the most-derived object of which this is a
243     /// subobject.
244     unsigned MostDerivedPathLength : 28;
245 
246     /// The size of the array of which the most-derived object is an element.
247     /// This will always be 0 if the most-derived object is not an array
248     /// element. 0 is not an indicator of whether or not the most-derived object
249     /// is an array, however, because 0-length arrays are allowed.
250     ///
251     /// If the current array is an unsized array, the value of this is
252     /// undefined.
253     uint64_t MostDerivedArraySize;
254 
255     /// The type of the most derived object referred to by this address.
256     QualType MostDerivedType;
257 
258     typedef APValue::LValuePathEntry PathEntry;
259 
260     /// The entries on the path from the glvalue to the designated subobject.
261     SmallVector<PathEntry, 8> Entries;
262 
263     SubobjectDesignator() : Invalid(true) {}
264 
265     explicit SubobjectDesignator(QualType T)
266         : Invalid(false), IsOnePastTheEnd(false),
267           FirstEntryIsAnUnsizedArray(false), MostDerivedIsArrayElement(false),
268           MostDerivedPathLength(0), MostDerivedArraySize(0),
269           MostDerivedType(T) {}
270 
271     SubobjectDesignator(ASTContext &Ctx, const APValue &V)
272         : Invalid(!V.isLValue() || !V.hasLValuePath()), IsOnePastTheEnd(false),
273           FirstEntryIsAnUnsizedArray(false), MostDerivedIsArrayElement(false),
274           MostDerivedPathLength(0), MostDerivedArraySize(0) {
275       assert(V.isLValue() && "Non-LValue used to make an LValue designator?");
276       if (!Invalid) {
277         IsOnePastTheEnd = V.isLValueOnePastTheEnd();
278         ArrayRef<PathEntry> VEntries = V.getLValuePath();
279         Entries.insert(Entries.end(), VEntries.begin(), VEntries.end());
280         if (V.getLValueBase()) {
281           bool IsArray = false;
282           bool FirstIsUnsizedArray = false;
283           MostDerivedPathLength = findMostDerivedSubobject(
284               Ctx, V.getLValueBase(), V.getLValuePath(), MostDerivedArraySize,
285               MostDerivedType, IsArray, FirstIsUnsizedArray);
286           MostDerivedIsArrayElement = IsArray;
287           FirstEntryIsAnUnsizedArray = FirstIsUnsizedArray;
288         }
289       }
290     }
291 
292     void setInvalid() {
293       Invalid = true;
294       Entries.clear();
295     }
296 
297     /// Determine whether the most derived subobject is an array without a
298     /// known bound.
299     bool isMostDerivedAnUnsizedArray() const {
300       assert(!Invalid && "Calling this makes no sense on invalid designators");
301       return Entries.size() == 1 && FirstEntryIsAnUnsizedArray;
302     }
303 
304     /// Determine what the most derived array's size is. Results in an assertion
305     /// failure if the most derived array lacks a size.
306     uint64_t getMostDerivedArraySize() const {
307       assert(!isMostDerivedAnUnsizedArray() && "Unsized array has no size");
308       return MostDerivedArraySize;
309     }
310 
311     /// Determine whether this is a one-past-the-end pointer.
312     bool isOnePastTheEnd() const {
313       assert(!Invalid);
314       if (IsOnePastTheEnd)
315         return true;
316       if (!isMostDerivedAnUnsizedArray() && MostDerivedIsArrayElement &&
317           Entries[MostDerivedPathLength - 1].ArrayIndex == MostDerivedArraySize)
318         return true;
319       return false;
320     }
321 
322     /// Get the range of valid index adjustments in the form
323     ///   {maximum value that can be subtracted from this pointer,
324     ///    maximum value that can be added to this pointer}
325     std::pair<uint64_t, uint64_t> validIndexAdjustments() {
326       if (Invalid || isMostDerivedAnUnsizedArray())
327         return {0, 0};
328 
329       // [expr.add]p4: For the purposes of these operators, a pointer to a
330       // nonarray object behaves the same as a pointer to the first element of
331       // an array of length one with the type of the object as its element type.
332       bool IsArray = MostDerivedPathLength == Entries.size() &&
333                      MostDerivedIsArrayElement;
334       uint64_t ArrayIndex =
335           IsArray ? Entries.back().ArrayIndex : (uint64_t)IsOnePastTheEnd;
336       uint64_t ArraySize =
337           IsArray ? getMostDerivedArraySize() : (uint64_t)1;
338       return {ArrayIndex, ArraySize - ArrayIndex};
339     }
340 
341     /// Check that this refers to a valid subobject.
342     bool isValidSubobject() const {
343       if (Invalid)
344         return false;
345       return !isOnePastTheEnd();
346     }
347     /// Check that this refers to a valid subobject, and if not, produce a
348     /// relevant diagnostic and set the designator as invalid.
349     bool checkSubobject(EvalInfo &Info, const Expr *E, CheckSubobjectKind CSK);
350 
351     /// Get the type of the designated object.
352     QualType getType(ASTContext &Ctx) const {
353       assert(!Invalid && "invalid designator has no subobject type");
354       return MostDerivedPathLength == Entries.size()
355                  ? MostDerivedType
356                  : Ctx.getRecordType(getAsBaseClass(Entries.back()));
357     }
358 
359     /// Update this designator to refer to the first element within this array.
360     void addArrayUnchecked(const ConstantArrayType *CAT) {
361       PathEntry Entry;
362       Entry.ArrayIndex = 0;
363       Entries.push_back(Entry);
364 
365       // This is a most-derived object.
366       MostDerivedType = CAT->getElementType();
367       MostDerivedIsArrayElement = true;
368       MostDerivedArraySize = CAT->getSize().getZExtValue();
369       MostDerivedPathLength = Entries.size();
370     }
371     /// Update this designator to refer to the first element within the array of
372     /// elements of type T. This is an array of unknown size.
373     void addUnsizedArrayUnchecked(QualType ElemTy) {
374       PathEntry Entry;
375       Entry.ArrayIndex = 0;
376       Entries.push_back(Entry);
377 
378       MostDerivedType = ElemTy;
379       MostDerivedIsArrayElement = true;
380       // The value in MostDerivedArraySize is undefined in this case. So, set it
381       // to an arbitrary value that's likely to loudly break things if it's
382       // used.
383       MostDerivedArraySize = AssumedSizeForUnsizedArray;
384       MostDerivedPathLength = Entries.size();
385     }
386     /// Update this designator to refer to the given base or member of this
387     /// object.
388     void addDeclUnchecked(const Decl *D, bool Virtual = false) {
389       PathEntry Entry;
390       APValue::BaseOrMemberType Value(D, Virtual);
391       Entry.BaseOrMember = Value.getOpaqueValue();
392       Entries.push_back(Entry);
393 
394       // If this isn't a base class, it's a new most-derived object.
395       if (const FieldDecl *FD = dyn_cast<FieldDecl>(D)) {
396         MostDerivedType = FD->getType();
397         MostDerivedIsArrayElement = false;
398         MostDerivedArraySize = 0;
399         MostDerivedPathLength = Entries.size();
400       }
401     }
402     /// Update this designator to refer to the given complex component.
403     void addComplexUnchecked(QualType EltTy, bool Imag) {
404       PathEntry Entry;
405       Entry.ArrayIndex = Imag;
406       Entries.push_back(Entry);
407 
408       // This is technically a most-derived object, though in practice this
409       // is unlikely to matter.
410       MostDerivedType = EltTy;
411       MostDerivedIsArrayElement = true;
412       MostDerivedArraySize = 2;
413       MostDerivedPathLength = Entries.size();
414     }
415     void diagnoseUnsizedArrayPointerArithmetic(EvalInfo &Info, const Expr *E);
416     void diagnosePointerArithmetic(EvalInfo &Info, const Expr *E,
417                                    const APSInt &N);
418     /// Add N to the address of this subobject.
419     void adjustIndex(EvalInfo &Info, const Expr *E, APSInt N) {
420       if (Invalid || !N) return;
421       uint64_t TruncatedN = N.extOrTrunc(64).getZExtValue();
422       if (isMostDerivedAnUnsizedArray()) {
423         diagnoseUnsizedArrayPointerArithmetic(Info, E);
424         // Can't verify -- trust that the user is doing the right thing (or if
425         // not, trust that the caller will catch the bad behavior).
426         // FIXME: Should we reject if this overflows, at least?
427         Entries.back().ArrayIndex += TruncatedN;
428         return;
429       }
430 
431       // [expr.add]p4: For the purposes of these operators, a pointer to a
432       // nonarray object behaves the same as a pointer to the first element of
433       // an array of length one with the type of the object as its element type.
434       bool IsArray = MostDerivedPathLength == Entries.size() &&
435                      MostDerivedIsArrayElement;
436       uint64_t ArrayIndex =
437           IsArray ? Entries.back().ArrayIndex : (uint64_t)IsOnePastTheEnd;
438       uint64_t ArraySize =
439           IsArray ? getMostDerivedArraySize() : (uint64_t)1;
440 
441       if (N < -(int64_t)ArrayIndex || N > ArraySize - ArrayIndex) {
442         // Calculate the actual index in a wide enough type, so we can include
443         // it in the note.
444         N = N.extend(std::max<unsigned>(N.getBitWidth() + 1, 65));
445         (llvm::APInt&)N += ArrayIndex;
446         assert(N.ugt(ArraySize) && "bounds check failed for in-bounds index");
447         diagnosePointerArithmetic(Info, E, N);
448         setInvalid();
449         return;
450       }
451 
452       ArrayIndex += TruncatedN;
453       assert(ArrayIndex <= ArraySize &&
454              "bounds check succeeded for out-of-bounds index");
455 
456       if (IsArray)
457         Entries.back().ArrayIndex = ArrayIndex;
458       else
459         IsOnePastTheEnd = (ArrayIndex != 0);
460     }
461   };
462 
463   /// A stack frame in the constexpr call stack.
464   struct CallStackFrame {
465     EvalInfo &Info;
466 
467     /// Parent - The caller of this stack frame.
468     CallStackFrame *Caller;
469 
470     /// Callee - The function which was called.
471     const FunctionDecl *Callee;
472 
473     /// This - The binding for the this pointer in this call, if any.
474     const LValue *This;
475 
476     /// Arguments - Parameter bindings for this function call, indexed by
477     /// parameters' function scope indices.
478     APValue *Arguments;
479 
480     // Note that we intentionally use std::map here so that references to
481     // values are stable.
482     typedef std::pair<const void *, unsigned> MapKeyTy;
483     typedef std::map<MapKeyTy, APValue> MapTy;
484     /// Temporaries - Temporary lvalues materialized within this stack frame.
485     MapTy Temporaries;
486 
487     /// CallLoc - The location of the call expression for this call.
488     SourceLocation CallLoc;
489 
490     /// Index - The call index of this call.
491     unsigned Index;
492 
493     /// The stack of integers for tracking version numbers for temporaries.
494     SmallVector<unsigned, 2> TempVersionStack = {1};
495     unsigned CurTempVersion = TempVersionStack.back();
496 
497     unsigned getTempVersion() const { return TempVersionStack.back(); }
498 
499     void pushTempVersion() {
500       TempVersionStack.push_back(++CurTempVersion);
501     }
502 
503     void popTempVersion() {
504       TempVersionStack.pop_back();
505     }
506 
507     // FIXME: Adding this to every 'CallStackFrame' may have a nontrivial impact
508     // on the overall stack usage of deeply-recursing constexpr evaluataions.
509     // (We should cache this map rather than recomputing it repeatedly.)
510     // But let's try this and see how it goes; we can look into caching the map
511     // as a later change.
512 
513     /// LambdaCaptureFields - Mapping from captured variables/this to
514     /// corresponding data members in the closure class.
515     llvm::DenseMap<const VarDecl *, FieldDecl *> LambdaCaptureFields;
516     FieldDecl *LambdaThisCaptureField;
517 
518     CallStackFrame(EvalInfo &Info, SourceLocation CallLoc,
519                    const FunctionDecl *Callee, const LValue *This,
520                    APValue *Arguments);
521     ~CallStackFrame();
522 
523     // Return the temporary for Key whose version number is Version.
524     APValue *getTemporary(const void *Key, unsigned Version) {
525       MapKeyTy KV(Key, Version);
526       auto LB = Temporaries.lower_bound(KV);
527       if (LB != Temporaries.end() && LB->first == KV)
528         return &LB->second;
529       // Pair (Key,Version) wasn't found in the map. Check that no elements
530       // in the map have 'Key' as their key.
531       assert((LB == Temporaries.end() || LB->first.first != Key) &&
532              (LB == Temporaries.begin() || std::prev(LB)->first.first != Key) &&
533              "Element with key 'Key' found in map");
534       return nullptr;
535     }
536 
537     // Return the current temporary for Key in the map.
538     APValue *getCurrentTemporary(const void *Key) {
539       auto UB = Temporaries.upper_bound(MapKeyTy(Key, UINT_MAX));
540       if (UB != Temporaries.begin() && std::prev(UB)->first.first == Key)
541         return &std::prev(UB)->second;
542       return nullptr;
543     }
544 
545     // Return the version number of the current temporary for Key.
546     unsigned getCurrentTemporaryVersion(const void *Key) const {
547       auto UB = Temporaries.upper_bound(MapKeyTy(Key, UINT_MAX));
548       if (UB != Temporaries.begin() && std::prev(UB)->first.first == Key)
549         return std::prev(UB)->first.second;
550       return 0;
551     }
552 
553     APValue &createTemporary(const void *Key, bool IsLifetimeExtended);
554   };
555 
556   /// Temporarily override 'this'.
557   class ThisOverrideRAII {
558   public:
559     ThisOverrideRAII(CallStackFrame &Frame, const LValue *NewThis, bool Enable)
560         : Frame(Frame), OldThis(Frame.This) {
561       if (Enable)
562         Frame.This = NewThis;
563     }
564     ~ThisOverrideRAII() {
565       Frame.This = OldThis;
566     }
567   private:
568     CallStackFrame &Frame;
569     const LValue *OldThis;
570   };
571 
572   /// A partial diagnostic which we might know in advance that we are not going
573   /// to emit.
574   class OptionalDiagnostic {
575     PartialDiagnostic *Diag;
576 
577   public:
578     explicit OptionalDiagnostic(PartialDiagnostic *Diag = nullptr)
579       : Diag(Diag) {}
580 
581     template<typename T>
582     OptionalDiagnostic &operator<<(const T &v) {
583       if (Diag)
584         *Diag << v;
585       return *this;
586     }
587 
588     OptionalDiagnostic &operator<<(const APSInt &I) {
589       if (Diag) {
590         SmallVector<char, 32> Buffer;
591         I.toString(Buffer);
592         *Diag << StringRef(Buffer.data(), Buffer.size());
593       }
594       return *this;
595     }
596 
597     OptionalDiagnostic &operator<<(const APFloat &F) {
598       if (Diag) {
599         // FIXME: Force the precision of the source value down so we don't
600         // print digits which are usually useless (we don't really care here if
601         // we truncate a digit by accident in edge cases).  Ideally,
602         // APFloat::toString would automatically print the shortest
603         // representation which rounds to the correct value, but it's a bit
604         // tricky to implement.
605         unsigned precision =
606             llvm::APFloat::semanticsPrecision(F.getSemantics());
607         precision = (precision * 59 + 195) / 196;
608         SmallVector<char, 32> Buffer;
609         F.toString(Buffer, precision);
610         *Diag << StringRef(Buffer.data(), Buffer.size());
611       }
612       return *this;
613     }
614   };
615 
616   /// A cleanup, and a flag indicating whether it is lifetime-extended.
617   class Cleanup {
618     llvm::PointerIntPair<APValue*, 1, bool> Value;
619 
620   public:
621     Cleanup(APValue *Val, bool IsLifetimeExtended)
622         : Value(Val, IsLifetimeExtended) {}
623 
624     bool isLifetimeExtended() const { return Value.getInt(); }
625     void endLifetime() {
626       *Value.getPointer() = APValue();
627     }
628   };
629 
630   /// EvalInfo - This is a private struct used by the evaluator to capture
631   /// information about a subexpression as it is folded.  It retains information
632   /// about the AST context, but also maintains information about the folded
633   /// expression.
634   ///
635   /// If an expression could be evaluated, it is still possible it is not a C
636   /// "integer constant expression" or constant expression.  If not, this struct
637   /// captures information about how and why not.
638   ///
639   /// One bit of information passed *into* the request for constant folding
640   /// indicates whether the subexpression is "evaluated" or not according to C
641   /// rules.  For example, the RHS of (0 && foo()) is not evaluated.  We can
642   /// evaluate the expression regardless of what the RHS is, but C only allows
643   /// certain things in certain situations.
644   struct EvalInfo {
645     ASTContext &Ctx;
646 
647     /// EvalStatus - Contains information about the evaluation.
648     Expr::EvalStatus &EvalStatus;
649 
650     /// CurrentCall - The top of the constexpr call stack.
651     CallStackFrame *CurrentCall;
652 
653     /// CallStackDepth - The number of calls in the call stack right now.
654     unsigned CallStackDepth;
655 
656     /// NextCallIndex - The next call index to assign.
657     unsigned NextCallIndex;
658 
659     /// StepsLeft - The remaining number of evaluation steps we're permitted
660     /// to perform. This is essentially a limit for the number of statements
661     /// we will evaluate.
662     unsigned StepsLeft;
663 
664     /// BottomFrame - The frame in which evaluation started. This must be
665     /// initialized after CurrentCall and CallStackDepth.
666     CallStackFrame BottomFrame;
667 
668     /// A stack of values whose lifetimes end at the end of some surrounding
669     /// evaluation frame.
670     llvm::SmallVector<Cleanup, 16> CleanupStack;
671 
672     /// EvaluatingDecl - This is the declaration whose initializer is being
673     /// evaluated, if any.
674     APValue::LValueBase EvaluatingDecl;
675 
676     /// EvaluatingDeclValue - This is the value being constructed for the
677     /// declaration whose initializer is being evaluated, if any.
678     APValue *EvaluatingDeclValue;
679 
680     /// EvaluatingObject - Pair of the AST node that an lvalue represents and
681     /// the call index that that lvalue was allocated in.
682     typedef std::pair<APValue::LValueBase, std::pair<unsigned, unsigned>>
683         EvaluatingObject;
684 
685     /// EvaluatingConstructors - Set of objects that are currently being
686     /// constructed.
687     llvm::DenseSet<EvaluatingObject> EvaluatingConstructors;
688 
689     struct EvaluatingConstructorRAII {
690       EvalInfo &EI;
691       EvaluatingObject Object;
692       bool DidInsert;
693       EvaluatingConstructorRAII(EvalInfo &EI, EvaluatingObject Object)
694           : EI(EI), Object(Object) {
695         DidInsert = EI.EvaluatingConstructors.insert(Object).second;
696       }
697       ~EvaluatingConstructorRAII() {
698         if (DidInsert) EI.EvaluatingConstructors.erase(Object);
699       }
700     };
701 
702     bool isEvaluatingConstructor(APValue::LValueBase Decl, unsigned CallIndex,
703                                  unsigned Version) {
704       return EvaluatingConstructors.count(
705           EvaluatingObject(Decl, {CallIndex, Version}));
706     }
707 
708     /// The current array initialization index, if we're performing array
709     /// initialization.
710     uint64_t ArrayInitIndex = -1;
711 
712     /// HasActiveDiagnostic - Was the previous diagnostic stored? If so, further
713     /// notes attached to it will also be stored, otherwise they will not be.
714     bool HasActiveDiagnostic;
715 
716     /// Have we emitted a diagnostic explaining why we couldn't constant
717     /// fold (not just why it's not strictly a constant expression)?
718     bool HasFoldFailureDiagnostic;
719 
720     /// Whether or not we're currently speculatively evaluating.
721     bool IsSpeculativelyEvaluating;
722 
723     enum EvaluationMode {
724       /// Evaluate as a constant expression. Stop if we find that the expression
725       /// is not a constant expression.
726       EM_ConstantExpression,
727 
728       /// Evaluate as a potential constant expression. Keep going if we hit a
729       /// construct that we can't evaluate yet (because we don't yet know the
730       /// value of something) but stop if we hit something that could never be
731       /// a constant expression.
732       EM_PotentialConstantExpression,
733 
734       /// Fold the expression to a constant. Stop if we hit a side-effect that
735       /// we can't model.
736       EM_ConstantFold,
737 
738       /// Evaluate the expression looking for integer overflow and similar
739       /// issues. Don't worry about side-effects, and try to visit all
740       /// subexpressions.
741       EM_EvaluateForOverflow,
742 
743       /// Evaluate in any way we know how. Don't worry about side-effects that
744       /// can't be modeled.
745       EM_IgnoreSideEffects,
746 
747       /// Evaluate as a constant expression. Stop if we find that the expression
748       /// is not a constant expression. Some expressions can be retried in the
749       /// optimizer if we don't constant fold them here, but in an unevaluated
750       /// context we try to fold them immediately since the optimizer never
751       /// gets a chance to look at it.
752       EM_ConstantExpressionUnevaluated,
753 
754       /// Evaluate as a potential constant expression. Keep going if we hit a
755       /// construct that we can't evaluate yet (because we don't yet know the
756       /// value of something) but stop if we hit something that could never be
757       /// a constant expression. Some expressions can be retried in the
758       /// optimizer if we don't constant fold them here, but in an unevaluated
759       /// context we try to fold them immediately since the optimizer never
760       /// gets a chance to look at it.
761       EM_PotentialConstantExpressionUnevaluated,
762 
763       /// Evaluate as a constant expression. In certain scenarios, if:
764       /// - we find a MemberExpr with a base that can't be evaluated, or
765       /// - we find a variable initialized with a call to a function that has
766       ///   the alloc_size attribute on it
767       /// then we may consider evaluation to have succeeded.
768       ///
769       /// In either case, the LValue returned shall have an invalid base; in the
770       /// former, the base will be the invalid MemberExpr, in the latter, the
771       /// base will be either the alloc_size CallExpr or a CastExpr wrapping
772       /// said CallExpr.
773       EM_OffsetFold,
774     } EvalMode;
775 
776     /// Are we checking whether the expression is a potential constant
777     /// expression?
778     bool checkingPotentialConstantExpression() const {
779       return EvalMode == EM_PotentialConstantExpression ||
780              EvalMode == EM_PotentialConstantExpressionUnevaluated;
781     }
782 
783     /// Are we checking an expression for overflow?
784     // FIXME: We should check for any kind of undefined or suspicious behavior
785     // in such constructs, not just overflow.
786     bool checkingForOverflow() { return EvalMode == EM_EvaluateForOverflow; }
787 
788     EvalInfo(const ASTContext &C, Expr::EvalStatus &S, EvaluationMode Mode)
789       : Ctx(const_cast<ASTContext &>(C)), EvalStatus(S), CurrentCall(nullptr),
790         CallStackDepth(0), NextCallIndex(1),
791         StepsLeft(getLangOpts().ConstexprStepLimit),
792         BottomFrame(*this, SourceLocation(), nullptr, nullptr, nullptr),
793         EvaluatingDecl((const ValueDecl *)nullptr),
794         EvaluatingDeclValue(nullptr), HasActiveDiagnostic(false),
795         HasFoldFailureDiagnostic(false), IsSpeculativelyEvaluating(false),
796         EvalMode(Mode) {}
797 
798     void setEvaluatingDecl(APValue::LValueBase Base, APValue &Value) {
799       EvaluatingDecl = Base;
800       EvaluatingDeclValue = &Value;
801       EvaluatingConstructors.insert({Base, {0, 0}});
802     }
803 
804     const LangOptions &getLangOpts() const { return Ctx.getLangOpts(); }
805 
806     bool CheckCallLimit(SourceLocation Loc) {
807       // Don't perform any constexpr calls (other than the call we're checking)
808       // when checking a potential constant expression.
809       if (checkingPotentialConstantExpression() && CallStackDepth > 1)
810         return false;
811       if (NextCallIndex == 0) {
812         // NextCallIndex has wrapped around.
813         FFDiag(Loc, diag::note_constexpr_call_limit_exceeded);
814         return false;
815       }
816       if (CallStackDepth <= getLangOpts().ConstexprCallDepth)
817         return true;
818       FFDiag(Loc, diag::note_constexpr_depth_limit_exceeded)
819         << getLangOpts().ConstexprCallDepth;
820       return false;
821     }
822 
823     CallStackFrame *getCallFrame(unsigned CallIndex) {
824       assert(CallIndex && "no call index in getCallFrame");
825       // We will eventually hit BottomFrame, which has Index 1, so Frame can't
826       // be null in this loop.
827       CallStackFrame *Frame = CurrentCall;
828       while (Frame->Index > CallIndex)
829         Frame = Frame->Caller;
830       return (Frame->Index == CallIndex) ? Frame : nullptr;
831     }
832 
833     bool nextStep(const Stmt *S) {
834       if (!StepsLeft) {
835         FFDiag(S->getBeginLoc(), diag::note_constexpr_step_limit_exceeded);
836         return false;
837       }
838       --StepsLeft;
839       return true;
840     }
841 
842   private:
843     /// Add a diagnostic to the diagnostics list.
844     PartialDiagnostic &addDiag(SourceLocation Loc, diag::kind DiagId) {
845       PartialDiagnostic PD(DiagId, Ctx.getDiagAllocator());
846       EvalStatus.Diag->push_back(std::make_pair(Loc, PD));
847       return EvalStatus.Diag->back().second;
848     }
849 
850     /// Add notes containing a call stack to the current point of evaluation.
851     void addCallStack(unsigned Limit);
852 
853   private:
854     OptionalDiagnostic Diag(SourceLocation Loc, diag::kind DiagId,
855                             unsigned ExtraNotes, bool IsCCEDiag) {
856 
857       if (EvalStatus.Diag) {
858         // If we have a prior diagnostic, it will be noting that the expression
859         // isn't a constant expression. This diagnostic is more important,
860         // unless we require this evaluation to produce a constant expression.
861         //
862         // FIXME: We might want to show both diagnostics to the user in
863         // EM_ConstantFold mode.
864         if (!EvalStatus.Diag->empty()) {
865           switch (EvalMode) {
866           case EM_ConstantFold:
867           case EM_IgnoreSideEffects:
868           case EM_EvaluateForOverflow:
869             if (!HasFoldFailureDiagnostic)
870               break;
871             // We've already failed to fold something. Keep that diagnostic.
872             LLVM_FALLTHROUGH;
873           case EM_ConstantExpression:
874           case EM_PotentialConstantExpression:
875           case EM_ConstantExpressionUnevaluated:
876           case EM_PotentialConstantExpressionUnevaluated:
877           case EM_OffsetFold:
878             HasActiveDiagnostic = false;
879             return OptionalDiagnostic();
880           }
881         }
882 
883         unsigned CallStackNotes = CallStackDepth - 1;
884         unsigned Limit = Ctx.getDiagnostics().getConstexprBacktraceLimit();
885         if (Limit)
886           CallStackNotes = std::min(CallStackNotes, Limit + 1);
887         if (checkingPotentialConstantExpression())
888           CallStackNotes = 0;
889 
890         HasActiveDiagnostic = true;
891         HasFoldFailureDiagnostic = !IsCCEDiag;
892         EvalStatus.Diag->clear();
893         EvalStatus.Diag->reserve(1 + ExtraNotes + CallStackNotes);
894         addDiag(Loc, DiagId);
895         if (!checkingPotentialConstantExpression())
896           addCallStack(Limit);
897         return OptionalDiagnostic(&(*EvalStatus.Diag)[0].second);
898       }
899       HasActiveDiagnostic = false;
900       return OptionalDiagnostic();
901     }
902   public:
903     // Diagnose that the evaluation could not be folded (FF => FoldFailure)
904     OptionalDiagnostic
905     FFDiag(SourceLocation Loc,
906           diag::kind DiagId = diag::note_invalid_subexpr_in_const_expr,
907           unsigned ExtraNotes = 0) {
908       return Diag(Loc, DiagId, ExtraNotes, false);
909     }
910 
911     OptionalDiagnostic FFDiag(const Expr *E, diag::kind DiagId
912                               = diag::note_invalid_subexpr_in_const_expr,
913                             unsigned ExtraNotes = 0) {
914       if (EvalStatus.Diag)
915         return Diag(E->getExprLoc(), DiagId, ExtraNotes, /*IsCCEDiag*/false);
916       HasActiveDiagnostic = false;
917       return OptionalDiagnostic();
918     }
919 
920     /// Diagnose that the evaluation does not produce a C++11 core constant
921     /// expression.
922     ///
923     /// FIXME: Stop evaluating if we're in EM_ConstantExpression or
924     /// EM_PotentialConstantExpression mode and we produce one of these.
925     OptionalDiagnostic CCEDiag(SourceLocation Loc, diag::kind DiagId
926                                  = diag::note_invalid_subexpr_in_const_expr,
927                                unsigned ExtraNotes = 0) {
928       // Don't override a previous diagnostic. Don't bother collecting
929       // diagnostics if we're evaluating for overflow.
930       if (!EvalStatus.Diag || !EvalStatus.Diag->empty()) {
931         HasActiveDiagnostic = false;
932         return OptionalDiagnostic();
933       }
934       return Diag(Loc, DiagId, ExtraNotes, true);
935     }
936     OptionalDiagnostic CCEDiag(const Expr *E, diag::kind DiagId
937                                  = diag::note_invalid_subexpr_in_const_expr,
938                                unsigned ExtraNotes = 0) {
939       return CCEDiag(E->getExprLoc(), DiagId, ExtraNotes);
940     }
941     /// Add a note to a prior diagnostic.
942     OptionalDiagnostic Note(SourceLocation Loc, diag::kind DiagId) {
943       if (!HasActiveDiagnostic)
944         return OptionalDiagnostic();
945       return OptionalDiagnostic(&addDiag(Loc, DiagId));
946     }
947 
948     /// Add a stack of notes to a prior diagnostic.
949     void addNotes(ArrayRef<PartialDiagnosticAt> Diags) {
950       if (HasActiveDiagnostic) {
951         EvalStatus.Diag->insert(EvalStatus.Diag->end(),
952                                 Diags.begin(), Diags.end());
953       }
954     }
955 
956     /// Should we continue evaluation after encountering a side-effect that we
957     /// couldn't model?
958     bool keepEvaluatingAfterSideEffect() {
959       switch (EvalMode) {
960       case EM_PotentialConstantExpression:
961       case EM_PotentialConstantExpressionUnevaluated:
962       case EM_EvaluateForOverflow:
963       case EM_IgnoreSideEffects:
964         return true;
965 
966       case EM_ConstantExpression:
967       case EM_ConstantExpressionUnevaluated:
968       case EM_ConstantFold:
969       case EM_OffsetFold:
970         return false;
971       }
972       llvm_unreachable("Missed EvalMode case");
973     }
974 
975     /// Note that we have had a side-effect, and determine whether we should
976     /// keep evaluating.
977     bool noteSideEffect() {
978       EvalStatus.HasSideEffects = true;
979       return keepEvaluatingAfterSideEffect();
980     }
981 
982     /// Should we continue evaluation after encountering undefined behavior?
983     bool keepEvaluatingAfterUndefinedBehavior() {
984       switch (EvalMode) {
985       case EM_EvaluateForOverflow:
986       case EM_IgnoreSideEffects:
987       case EM_ConstantFold:
988       case EM_OffsetFold:
989         return true;
990 
991       case EM_PotentialConstantExpression:
992       case EM_PotentialConstantExpressionUnevaluated:
993       case EM_ConstantExpression:
994       case EM_ConstantExpressionUnevaluated:
995         return false;
996       }
997       llvm_unreachable("Missed EvalMode case");
998     }
999 
1000     /// Note that we hit something that was technically undefined behavior, but
1001     /// that we can evaluate past it (such as signed overflow or floating-point
1002     /// division by zero.)
1003     bool noteUndefinedBehavior() {
1004       EvalStatus.HasUndefinedBehavior = true;
1005       return keepEvaluatingAfterUndefinedBehavior();
1006     }
1007 
1008     /// Should we continue evaluation as much as possible after encountering a
1009     /// construct which can't be reduced to a value?
1010     bool keepEvaluatingAfterFailure() {
1011       if (!StepsLeft)
1012         return false;
1013 
1014       switch (EvalMode) {
1015       case EM_PotentialConstantExpression:
1016       case EM_PotentialConstantExpressionUnevaluated:
1017       case EM_EvaluateForOverflow:
1018         return true;
1019 
1020       case EM_ConstantExpression:
1021       case EM_ConstantExpressionUnevaluated:
1022       case EM_ConstantFold:
1023       case EM_IgnoreSideEffects:
1024       case EM_OffsetFold:
1025         return false;
1026       }
1027       llvm_unreachable("Missed EvalMode case");
1028     }
1029 
1030     /// Notes that we failed to evaluate an expression that other expressions
1031     /// directly depend on, and determine if we should keep evaluating. This
1032     /// should only be called if we actually intend to keep evaluating.
1033     ///
1034     /// Call noteSideEffect() instead if we may be able to ignore the value that
1035     /// we failed to evaluate, e.g. if we failed to evaluate Foo() in:
1036     ///
1037     /// (Foo(), 1)      // use noteSideEffect
1038     /// (Foo() || true) // use noteSideEffect
1039     /// Foo() + 1       // use noteFailure
1040     LLVM_NODISCARD bool noteFailure() {
1041       // Failure when evaluating some expression often means there is some
1042       // subexpression whose evaluation was skipped. Therefore, (because we
1043       // don't track whether we skipped an expression when unwinding after an
1044       // evaluation failure) every evaluation failure that bubbles up from a
1045       // subexpression implies that a side-effect has potentially happened. We
1046       // skip setting the HasSideEffects flag to true until we decide to
1047       // continue evaluating after that point, which happens here.
1048       bool KeepGoing = keepEvaluatingAfterFailure();
1049       EvalStatus.HasSideEffects |= KeepGoing;
1050       return KeepGoing;
1051     }
1052 
1053     class ArrayInitLoopIndex {
1054       EvalInfo &Info;
1055       uint64_t OuterIndex;
1056 
1057     public:
1058       ArrayInitLoopIndex(EvalInfo &Info)
1059           : Info(Info), OuterIndex(Info.ArrayInitIndex) {
1060         Info.ArrayInitIndex = 0;
1061       }
1062       ~ArrayInitLoopIndex() { Info.ArrayInitIndex = OuterIndex; }
1063 
1064       operator uint64_t&() { return Info.ArrayInitIndex; }
1065     };
1066   };
1067 
1068   /// Object used to treat all foldable expressions as constant expressions.
1069   struct FoldConstant {
1070     EvalInfo &Info;
1071     bool Enabled;
1072     bool HadNoPriorDiags;
1073     EvalInfo::EvaluationMode OldMode;
1074 
1075     explicit FoldConstant(EvalInfo &Info, bool Enabled)
1076       : Info(Info),
1077         Enabled(Enabled),
1078         HadNoPriorDiags(Info.EvalStatus.Diag &&
1079                         Info.EvalStatus.Diag->empty() &&
1080                         !Info.EvalStatus.HasSideEffects),
1081         OldMode(Info.EvalMode) {
1082       if (Enabled &&
1083           (Info.EvalMode == EvalInfo::EM_ConstantExpression ||
1084            Info.EvalMode == EvalInfo::EM_ConstantExpressionUnevaluated))
1085         Info.EvalMode = EvalInfo::EM_ConstantFold;
1086     }
1087     void keepDiagnostics() { Enabled = false; }
1088     ~FoldConstant() {
1089       if (Enabled && HadNoPriorDiags && !Info.EvalStatus.Diag->empty() &&
1090           !Info.EvalStatus.HasSideEffects)
1091         Info.EvalStatus.Diag->clear();
1092       Info.EvalMode = OldMode;
1093     }
1094   };
1095 
1096   /// RAII object used to treat the current evaluation as the correct pointer
1097   /// offset fold for the current EvalMode
1098   struct FoldOffsetRAII {
1099     EvalInfo &Info;
1100     EvalInfo::EvaluationMode OldMode;
1101     explicit FoldOffsetRAII(EvalInfo &Info)
1102         : Info(Info), OldMode(Info.EvalMode) {
1103       if (!Info.checkingPotentialConstantExpression())
1104         Info.EvalMode = EvalInfo::EM_OffsetFold;
1105     }
1106 
1107     ~FoldOffsetRAII() { Info.EvalMode = OldMode; }
1108   };
1109 
1110   /// RAII object used to optionally suppress diagnostics and side-effects from
1111   /// a speculative evaluation.
1112   class SpeculativeEvaluationRAII {
1113     EvalInfo *Info = nullptr;
1114     Expr::EvalStatus OldStatus;
1115     bool OldIsSpeculativelyEvaluating;
1116 
1117     void moveFromAndCancel(SpeculativeEvaluationRAII &&Other) {
1118       Info = Other.Info;
1119       OldStatus = Other.OldStatus;
1120       OldIsSpeculativelyEvaluating = Other.OldIsSpeculativelyEvaluating;
1121       Other.Info = nullptr;
1122     }
1123 
1124     void maybeRestoreState() {
1125       if (!Info)
1126         return;
1127 
1128       Info->EvalStatus = OldStatus;
1129       Info->IsSpeculativelyEvaluating = OldIsSpeculativelyEvaluating;
1130     }
1131 
1132   public:
1133     SpeculativeEvaluationRAII() = default;
1134 
1135     SpeculativeEvaluationRAII(
1136         EvalInfo &Info, SmallVectorImpl<PartialDiagnosticAt> *NewDiag = nullptr)
1137         : Info(&Info), OldStatus(Info.EvalStatus),
1138           OldIsSpeculativelyEvaluating(Info.IsSpeculativelyEvaluating) {
1139       Info.EvalStatus.Diag = NewDiag;
1140       Info.IsSpeculativelyEvaluating = true;
1141     }
1142 
1143     SpeculativeEvaluationRAII(const SpeculativeEvaluationRAII &Other) = delete;
1144     SpeculativeEvaluationRAII(SpeculativeEvaluationRAII &&Other) {
1145       moveFromAndCancel(std::move(Other));
1146     }
1147 
1148     SpeculativeEvaluationRAII &operator=(SpeculativeEvaluationRAII &&Other) {
1149       maybeRestoreState();
1150       moveFromAndCancel(std::move(Other));
1151       return *this;
1152     }
1153 
1154     ~SpeculativeEvaluationRAII() { maybeRestoreState(); }
1155   };
1156 
1157   /// RAII object wrapping a full-expression or block scope, and handling
1158   /// the ending of the lifetime of temporaries created within it.
1159   template<bool IsFullExpression>
1160   class ScopeRAII {
1161     EvalInfo &Info;
1162     unsigned OldStackSize;
1163   public:
1164     ScopeRAII(EvalInfo &Info)
1165         : Info(Info), OldStackSize(Info.CleanupStack.size()) {
1166       // Push a new temporary version. This is needed to distinguish between
1167       // temporaries created in different iterations of a loop.
1168       Info.CurrentCall->pushTempVersion();
1169     }
1170     ~ScopeRAII() {
1171       // Body moved to a static method to encourage the compiler to inline away
1172       // instances of this class.
1173       cleanup(Info, OldStackSize);
1174       Info.CurrentCall->popTempVersion();
1175     }
1176   private:
1177     static void cleanup(EvalInfo &Info, unsigned OldStackSize) {
1178       unsigned NewEnd = OldStackSize;
1179       for (unsigned I = OldStackSize, N = Info.CleanupStack.size();
1180            I != N; ++I) {
1181         if (IsFullExpression && Info.CleanupStack[I].isLifetimeExtended()) {
1182           // Full-expression cleanup of a lifetime-extended temporary: nothing
1183           // to do, just move this cleanup to the right place in the stack.
1184           std::swap(Info.CleanupStack[I], Info.CleanupStack[NewEnd]);
1185           ++NewEnd;
1186         } else {
1187           // End the lifetime of the object.
1188           Info.CleanupStack[I].endLifetime();
1189         }
1190       }
1191       Info.CleanupStack.erase(Info.CleanupStack.begin() + NewEnd,
1192                               Info.CleanupStack.end());
1193     }
1194   };
1195   typedef ScopeRAII<false> BlockScopeRAII;
1196   typedef ScopeRAII<true> FullExpressionRAII;
1197 }
1198 
1199 bool SubobjectDesignator::checkSubobject(EvalInfo &Info, const Expr *E,
1200                                          CheckSubobjectKind CSK) {
1201   if (Invalid)
1202     return false;
1203   if (isOnePastTheEnd()) {
1204     Info.CCEDiag(E, diag::note_constexpr_past_end_subobject)
1205       << CSK;
1206     setInvalid();
1207     return false;
1208   }
1209   // Note, we do not diagnose if isMostDerivedAnUnsizedArray(), because there
1210   // must actually be at least one array element; even a VLA cannot have a
1211   // bound of zero. And if our index is nonzero, we already had a CCEDiag.
1212   return true;
1213 }
1214 
1215 void SubobjectDesignator::diagnoseUnsizedArrayPointerArithmetic(EvalInfo &Info,
1216                                                                 const Expr *E) {
1217   Info.CCEDiag(E, diag::note_constexpr_unsized_array_indexed);
1218   // Do not set the designator as invalid: we can represent this situation,
1219   // and correct handling of __builtin_object_size requires us to do so.
1220 }
1221 
1222 void SubobjectDesignator::diagnosePointerArithmetic(EvalInfo &Info,
1223                                                     const Expr *E,
1224                                                     const APSInt &N) {
1225   // If we're complaining, we must be able to statically determine the size of
1226   // the most derived array.
1227   if (MostDerivedPathLength == Entries.size() && MostDerivedIsArrayElement)
1228     Info.CCEDiag(E, diag::note_constexpr_array_index)
1229       << N << /*array*/ 0
1230       << static_cast<unsigned>(getMostDerivedArraySize());
1231   else
1232     Info.CCEDiag(E, diag::note_constexpr_array_index)
1233       << N << /*non-array*/ 1;
1234   setInvalid();
1235 }
1236 
1237 CallStackFrame::CallStackFrame(EvalInfo &Info, SourceLocation CallLoc,
1238                                const FunctionDecl *Callee, const LValue *This,
1239                                APValue *Arguments)
1240     : Info(Info), Caller(Info.CurrentCall), Callee(Callee), This(This),
1241       Arguments(Arguments), CallLoc(CallLoc), Index(Info.NextCallIndex++) {
1242   Info.CurrentCall = this;
1243   ++Info.CallStackDepth;
1244 }
1245 
1246 CallStackFrame::~CallStackFrame() {
1247   assert(Info.CurrentCall == this && "calls retired out of order");
1248   --Info.CallStackDepth;
1249   Info.CurrentCall = Caller;
1250 }
1251 
1252 APValue &CallStackFrame::createTemporary(const void *Key,
1253                                          bool IsLifetimeExtended) {
1254   unsigned Version = Info.CurrentCall->getTempVersion();
1255   APValue &Result = Temporaries[MapKeyTy(Key, Version)];
1256   assert(Result.isUninit() && "temporary created multiple times");
1257   Info.CleanupStack.push_back(Cleanup(&Result, IsLifetimeExtended));
1258   return Result;
1259 }
1260 
1261 static void describeCall(CallStackFrame *Frame, raw_ostream &Out);
1262 
1263 void EvalInfo::addCallStack(unsigned Limit) {
1264   // Determine which calls to skip, if any.
1265   unsigned ActiveCalls = CallStackDepth - 1;
1266   unsigned SkipStart = ActiveCalls, SkipEnd = SkipStart;
1267   if (Limit && Limit < ActiveCalls) {
1268     SkipStart = Limit / 2 + Limit % 2;
1269     SkipEnd = ActiveCalls - Limit / 2;
1270   }
1271 
1272   // Walk the call stack and add the diagnostics.
1273   unsigned CallIdx = 0;
1274   for (CallStackFrame *Frame = CurrentCall; Frame != &BottomFrame;
1275        Frame = Frame->Caller, ++CallIdx) {
1276     // Skip this call?
1277     if (CallIdx >= SkipStart && CallIdx < SkipEnd) {
1278       if (CallIdx == SkipStart) {
1279         // Note that we're skipping calls.
1280         addDiag(Frame->CallLoc, diag::note_constexpr_calls_suppressed)
1281           << unsigned(ActiveCalls - Limit);
1282       }
1283       continue;
1284     }
1285 
1286     // Use a different note for an inheriting constructor, because from the
1287     // user's perspective it's not really a function at all.
1288     if (auto *CD = dyn_cast_or_null<CXXConstructorDecl>(Frame->Callee)) {
1289       if (CD->isInheritingConstructor()) {
1290         addDiag(Frame->CallLoc, diag::note_constexpr_inherited_ctor_call_here)
1291           << CD->getParent();
1292         continue;
1293       }
1294     }
1295 
1296     SmallVector<char, 128> Buffer;
1297     llvm::raw_svector_ostream Out(Buffer);
1298     describeCall(Frame, Out);
1299     addDiag(Frame->CallLoc, diag::note_constexpr_call_here) << Out.str();
1300   }
1301 }
1302 
1303 namespace {
1304   struct ComplexValue {
1305   private:
1306     bool IsInt;
1307 
1308   public:
1309     APSInt IntReal, IntImag;
1310     APFloat FloatReal, FloatImag;
1311 
1312     ComplexValue() : FloatReal(APFloat::Bogus()), FloatImag(APFloat::Bogus()) {}
1313 
1314     void makeComplexFloat() { IsInt = false; }
1315     bool isComplexFloat() const { return !IsInt; }
1316     APFloat &getComplexFloatReal() { return FloatReal; }
1317     APFloat &getComplexFloatImag() { return FloatImag; }
1318 
1319     void makeComplexInt() { IsInt = true; }
1320     bool isComplexInt() const { return IsInt; }
1321     APSInt &getComplexIntReal() { return IntReal; }
1322     APSInt &getComplexIntImag() { return IntImag; }
1323 
1324     void moveInto(APValue &v) const {
1325       if (isComplexFloat())
1326         v = APValue(FloatReal, FloatImag);
1327       else
1328         v = APValue(IntReal, IntImag);
1329     }
1330     void setFrom(const APValue &v) {
1331       assert(v.isComplexFloat() || v.isComplexInt());
1332       if (v.isComplexFloat()) {
1333         makeComplexFloat();
1334         FloatReal = v.getComplexFloatReal();
1335         FloatImag = v.getComplexFloatImag();
1336       } else {
1337         makeComplexInt();
1338         IntReal = v.getComplexIntReal();
1339         IntImag = v.getComplexIntImag();
1340       }
1341     }
1342   };
1343 
1344   struct LValue {
1345     APValue::LValueBase Base;
1346     CharUnits Offset;
1347     SubobjectDesignator Designator;
1348     bool IsNullPtr : 1;
1349     bool InvalidBase : 1;
1350 
1351     const APValue::LValueBase getLValueBase() const { return Base; }
1352     CharUnits &getLValueOffset() { return Offset; }
1353     const CharUnits &getLValueOffset() const { return Offset; }
1354     SubobjectDesignator &getLValueDesignator() { return Designator; }
1355     const SubobjectDesignator &getLValueDesignator() const { return Designator;}
1356     bool isNullPointer() const { return IsNullPtr;}
1357 
1358     unsigned getLValueCallIndex() const { return Base.getCallIndex(); }
1359     unsigned getLValueVersion() const { return Base.getVersion(); }
1360 
1361     void moveInto(APValue &V) const {
1362       if (Designator.Invalid)
1363         V = APValue(Base, Offset, APValue::NoLValuePath(), IsNullPtr);
1364       else {
1365         assert(!InvalidBase && "APValues can't handle invalid LValue bases");
1366         V = APValue(Base, Offset, Designator.Entries,
1367                     Designator.IsOnePastTheEnd, IsNullPtr);
1368       }
1369     }
1370     void setFrom(ASTContext &Ctx, const APValue &V) {
1371       assert(V.isLValue() && "Setting LValue from a non-LValue?");
1372       Base = V.getLValueBase();
1373       Offset = V.getLValueOffset();
1374       InvalidBase = false;
1375       Designator = SubobjectDesignator(Ctx, V);
1376       IsNullPtr = V.isNullPointer();
1377     }
1378 
1379     void set(APValue::LValueBase B, bool BInvalid = false) {
1380 #ifndef NDEBUG
1381       // We only allow a few types of invalid bases. Enforce that here.
1382       if (BInvalid) {
1383         const auto *E = B.get<const Expr *>();
1384         assert((isa<MemberExpr>(E) || tryUnwrapAllocSizeCall(E)) &&
1385                "Unexpected type of invalid base");
1386       }
1387 #endif
1388 
1389       Base = B;
1390       Offset = CharUnits::fromQuantity(0);
1391       InvalidBase = BInvalid;
1392       Designator = SubobjectDesignator(getType(B));
1393       IsNullPtr = false;
1394     }
1395 
1396     void setNull(QualType PointerTy, uint64_t TargetVal) {
1397       Base = (Expr *)nullptr;
1398       Offset = CharUnits::fromQuantity(TargetVal);
1399       InvalidBase = false;
1400       Designator = SubobjectDesignator(PointerTy->getPointeeType());
1401       IsNullPtr = true;
1402     }
1403 
1404     void setInvalid(APValue::LValueBase B, unsigned I = 0) {
1405       set(B, true);
1406     }
1407 
1408     // Check that this LValue is not based on a null pointer. If it is, produce
1409     // a diagnostic and mark the designator as invalid.
1410     bool checkNullPointer(EvalInfo &Info, const Expr *E,
1411                           CheckSubobjectKind CSK) {
1412       if (Designator.Invalid)
1413         return false;
1414       if (IsNullPtr) {
1415         Info.CCEDiag(E, diag::note_constexpr_null_subobject)
1416           << CSK;
1417         Designator.setInvalid();
1418         return false;
1419       }
1420       return true;
1421     }
1422 
1423     // Check this LValue refers to an object. If not, set the designator to be
1424     // invalid and emit a diagnostic.
1425     bool checkSubobject(EvalInfo &Info, const Expr *E, CheckSubobjectKind CSK) {
1426       return (CSK == CSK_ArrayToPointer || checkNullPointer(Info, E, CSK)) &&
1427              Designator.checkSubobject(Info, E, CSK);
1428     }
1429 
1430     void addDecl(EvalInfo &Info, const Expr *E,
1431                  const Decl *D, bool Virtual = false) {
1432       if (checkSubobject(Info, E, isa<FieldDecl>(D) ? CSK_Field : CSK_Base))
1433         Designator.addDeclUnchecked(D, Virtual);
1434     }
1435     void addUnsizedArray(EvalInfo &Info, const Expr *E, QualType ElemTy) {
1436       if (!Designator.Entries.empty()) {
1437         Info.CCEDiag(E, diag::note_constexpr_unsupported_unsized_array);
1438         Designator.setInvalid();
1439         return;
1440       }
1441       if (checkSubobject(Info, E, CSK_ArrayToPointer)) {
1442         assert(getType(Base)->isPointerType() || getType(Base)->isArrayType());
1443         Designator.FirstEntryIsAnUnsizedArray = true;
1444         Designator.addUnsizedArrayUnchecked(ElemTy);
1445       }
1446     }
1447     void addArray(EvalInfo &Info, const Expr *E, const ConstantArrayType *CAT) {
1448       if (checkSubobject(Info, E, CSK_ArrayToPointer))
1449         Designator.addArrayUnchecked(CAT);
1450     }
1451     void addComplex(EvalInfo &Info, const Expr *E, QualType EltTy, bool Imag) {
1452       if (checkSubobject(Info, E, Imag ? CSK_Imag : CSK_Real))
1453         Designator.addComplexUnchecked(EltTy, Imag);
1454     }
1455     void clearIsNullPointer() {
1456       IsNullPtr = false;
1457     }
1458     void adjustOffsetAndIndex(EvalInfo &Info, const Expr *E,
1459                               const APSInt &Index, CharUnits ElementSize) {
1460       // An index of 0 has no effect. (In C, adding 0 to a null pointer is UB,
1461       // but we're not required to diagnose it and it's valid in C++.)
1462       if (!Index)
1463         return;
1464 
1465       // Compute the new offset in the appropriate width, wrapping at 64 bits.
1466       // FIXME: When compiling for a 32-bit target, we should use 32-bit
1467       // offsets.
1468       uint64_t Offset64 = Offset.getQuantity();
1469       uint64_t ElemSize64 = ElementSize.getQuantity();
1470       uint64_t Index64 = Index.extOrTrunc(64).getZExtValue();
1471       Offset = CharUnits::fromQuantity(Offset64 + ElemSize64 * Index64);
1472 
1473       if (checkNullPointer(Info, E, CSK_ArrayIndex))
1474         Designator.adjustIndex(Info, E, Index);
1475       clearIsNullPointer();
1476     }
1477     void adjustOffset(CharUnits N) {
1478       Offset += N;
1479       if (N.getQuantity())
1480         clearIsNullPointer();
1481     }
1482   };
1483 
1484   struct MemberPtr {
1485     MemberPtr() {}
1486     explicit MemberPtr(const ValueDecl *Decl) :
1487       DeclAndIsDerivedMember(Decl, false), Path() {}
1488 
1489     /// The member or (direct or indirect) field referred to by this member
1490     /// pointer, or 0 if this is a null member pointer.
1491     const ValueDecl *getDecl() const {
1492       return DeclAndIsDerivedMember.getPointer();
1493     }
1494     /// Is this actually a member of some type derived from the relevant class?
1495     bool isDerivedMember() const {
1496       return DeclAndIsDerivedMember.getInt();
1497     }
1498     /// Get the class which the declaration actually lives in.
1499     const CXXRecordDecl *getContainingRecord() const {
1500       return cast<CXXRecordDecl>(
1501           DeclAndIsDerivedMember.getPointer()->getDeclContext());
1502     }
1503 
1504     void moveInto(APValue &V) const {
1505       V = APValue(getDecl(), isDerivedMember(), Path);
1506     }
1507     void setFrom(const APValue &V) {
1508       assert(V.isMemberPointer());
1509       DeclAndIsDerivedMember.setPointer(V.getMemberPointerDecl());
1510       DeclAndIsDerivedMember.setInt(V.isMemberPointerToDerivedMember());
1511       Path.clear();
1512       ArrayRef<const CXXRecordDecl*> P = V.getMemberPointerPath();
1513       Path.insert(Path.end(), P.begin(), P.end());
1514     }
1515 
1516     /// DeclAndIsDerivedMember - The member declaration, and a flag indicating
1517     /// whether the member is a member of some class derived from the class type
1518     /// of the member pointer.
1519     llvm::PointerIntPair<const ValueDecl*, 1, bool> DeclAndIsDerivedMember;
1520     /// Path - The path of base/derived classes from the member declaration's
1521     /// class (exclusive) to the class type of the member pointer (inclusive).
1522     SmallVector<const CXXRecordDecl*, 4> Path;
1523 
1524     /// Perform a cast towards the class of the Decl (either up or down the
1525     /// hierarchy).
1526     bool castBack(const CXXRecordDecl *Class) {
1527       assert(!Path.empty());
1528       const CXXRecordDecl *Expected;
1529       if (Path.size() >= 2)
1530         Expected = Path[Path.size() - 2];
1531       else
1532         Expected = getContainingRecord();
1533       if (Expected->getCanonicalDecl() != Class->getCanonicalDecl()) {
1534         // C++11 [expr.static.cast]p12: In a conversion from (D::*) to (B::*),
1535         // if B does not contain the original member and is not a base or
1536         // derived class of the class containing the original member, the result
1537         // of the cast is undefined.
1538         // C++11 [conv.mem]p2 does not cover this case for a cast from (B::*) to
1539         // (D::*). We consider that to be a language defect.
1540         return false;
1541       }
1542       Path.pop_back();
1543       return true;
1544     }
1545     /// Perform a base-to-derived member pointer cast.
1546     bool castToDerived(const CXXRecordDecl *Derived) {
1547       if (!getDecl())
1548         return true;
1549       if (!isDerivedMember()) {
1550         Path.push_back(Derived);
1551         return true;
1552       }
1553       if (!castBack(Derived))
1554         return false;
1555       if (Path.empty())
1556         DeclAndIsDerivedMember.setInt(false);
1557       return true;
1558     }
1559     /// Perform a derived-to-base member pointer cast.
1560     bool castToBase(const CXXRecordDecl *Base) {
1561       if (!getDecl())
1562         return true;
1563       if (Path.empty())
1564         DeclAndIsDerivedMember.setInt(true);
1565       if (isDerivedMember()) {
1566         Path.push_back(Base);
1567         return true;
1568       }
1569       return castBack(Base);
1570     }
1571   };
1572 
1573   /// Compare two member pointers, which are assumed to be of the same type.
1574   static bool operator==(const MemberPtr &LHS, const MemberPtr &RHS) {
1575     if (!LHS.getDecl() || !RHS.getDecl())
1576       return !LHS.getDecl() && !RHS.getDecl();
1577     if (LHS.getDecl()->getCanonicalDecl() != RHS.getDecl()->getCanonicalDecl())
1578       return false;
1579     return LHS.Path == RHS.Path;
1580   }
1581 }
1582 
1583 static bool Evaluate(APValue &Result, EvalInfo &Info, const Expr *E);
1584 static bool EvaluateInPlace(APValue &Result, EvalInfo &Info,
1585                             const LValue &This, const Expr *E,
1586                             bool AllowNonLiteralTypes = false);
1587 static bool EvaluateLValue(const Expr *E, LValue &Result, EvalInfo &Info,
1588                            bool InvalidBaseOK = false);
1589 static bool EvaluatePointer(const Expr *E, LValue &Result, EvalInfo &Info,
1590                             bool InvalidBaseOK = false);
1591 static bool EvaluateMemberPointer(const Expr *E, MemberPtr &Result,
1592                                   EvalInfo &Info);
1593 static bool EvaluateTemporary(const Expr *E, LValue &Result, EvalInfo &Info);
1594 static bool EvaluateInteger(const Expr *E, APSInt &Result, EvalInfo &Info);
1595 static bool EvaluateIntegerOrLValue(const Expr *E, APValue &Result,
1596                                     EvalInfo &Info);
1597 static bool EvaluateFloat(const Expr *E, APFloat &Result, EvalInfo &Info);
1598 static bool EvaluateComplex(const Expr *E, ComplexValue &Res, EvalInfo &Info);
1599 static bool EvaluateAtomic(const Expr *E, const LValue *This, APValue &Result,
1600                            EvalInfo &Info);
1601 static bool EvaluateAsRValue(EvalInfo &Info, const Expr *E, APValue &Result);
1602 
1603 //===----------------------------------------------------------------------===//
1604 // Misc utilities
1605 //===----------------------------------------------------------------------===//
1606 
1607 /// A helper function to create a temporary and set an LValue.
1608 template <class KeyTy>
1609 static APValue &createTemporary(const KeyTy *Key, bool IsLifetimeExtended,
1610                                 LValue &LV, CallStackFrame &Frame) {
1611   LV.set({Key, Frame.Info.CurrentCall->Index,
1612           Frame.Info.CurrentCall->getTempVersion()});
1613   return Frame.createTemporary(Key, IsLifetimeExtended);
1614 }
1615 
1616 /// Negate an APSInt in place, converting it to a signed form if necessary, and
1617 /// preserving its value (by extending by up to one bit as needed).
1618 static void negateAsSigned(APSInt &Int) {
1619   if (Int.isUnsigned() || Int.isMinSignedValue()) {
1620     Int = Int.extend(Int.getBitWidth() + 1);
1621     Int.setIsSigned(true);
1622   }
1623   Int = -Int;
1624 }
1625 
1626 /// Produce a string describing the given constexpr call.
1627 static void describeCall(CallStackFrame *Frame, raw_ostream &Out) {
1628   unsigned ArgIndex = 0;
1629   bool IsMemberCall = isa<CXXMethodDecl>(Frame->Callee) &&
1630                       !isa<CXXConstructorDecl>(Frame->Callee) &&
1631                       cast<CXXMethodDecl>(Frame->Callee)->isInstance();
1632 
1633   if (!IsMemberCall)
1634     Out << *Frame->Callee << '(';
1635 
1636   if (Frame->This && IsMemberCall) {
1637     APValue Val;
1638     Frame->This->moveInto(Val);
1639     Val.printPretty(Out, Frame->Info.Ctx,
1640                     Frame->This->Designator.MostDerivedType);
1641     // FIXME: Add parens around Val if needed.
1642     Out << "->" << *Frame->Callee << '(';
1643     IsMemberCall = false;
1644   }
1645 
1646   for (FunctionDecl::param_const_iterator I = Frame->Callee->param_begin(),
1647        E = Frame->Callee->param_end(); I != E; ++I, ++ArgIndex) {
1648     if (ArgIndex > (unsigned)IsMemberCall)
1649       Out << ", ";
1650 
1651     const ParmVarDecl *Param = *I;
1652     const APValue &Arg = Frame->Arguments[ArgIndex];
1653     Arg.printPretty(Out, Frame->Info.Ctx, Param->getType());
1654 
1655     if (ArgIndex == 0 && IsMemberCall)
1656       Out << "->" << *Frame->Callee << '(';
1657   }
1658 
1659   Out << ')';
1660 }
1661 
1662 /// Evaluate an expression to see if it had side-effects, and discard its
1663 /// result.
1664 /// \return \c true if the caller should keep evaluating.
1665 static bool EvaluateIgnoredValue(EvalInfo &Info, const Expr *E) {
1666   APValue Scratch;
1667   if (!Evaluate(Scratch, Info, E))
1668     // We don't need the value, but we might have skipped a side effect here.
1669     return Info.noteSideEffect();
1670   return true;
1671 }
1672 
1673 /// Should this call expression be treated as a string literal?
1674 static bool IsStringLiteralCall(const CallExpr *E) {
1675   unsigned Builtin = E->getBuiltinCallee();
1676   return (Builtin == Builtin::BI__builtin___CFStringMakeConstantString ||
1677           Builtin == Builtin::BI__builtin___NSStringMakeConstantString);
1678 }
1679 
1680 static bool IsGlobalLValue(APValue::LValueBase B) {
1681   // C++11 [expr.const]p3 An address constant expression is a prvalue core
1682   // constant expression of pointer type that evaluates to...
1683 
1684   // ... a null pointer value, or a prvalue core constant expression of type
1685   // std::nullptr_t.
1686   if (!B) return true;
1687 
1688   if (const ValueDecl *D = B.dyn_cast<const ValueDecl*>()) {
1689     // ... the address of an object with static storage duration,
1690     if (const VarDecl *VD = dyn_cast<VarDecl>(D))
1691       return VD->hasGlobalStorage();
1692     // ... the address of a function,
1693     return isa<FunctionDecl>(D);
1694   }
1695 
1696   const Expr *E = B.get<const Expr*>();
1697   switch (E->getStmtClass()) {
1698   default:
1699     return false;
1700   case Expr::CompoundLiteralExprClass: {
1701     const CompoundLiteralExpr *CLE = cast<CompoundLiteralExpr>(E);
1702     return CLE->isFileScope() && CLE->isLValue();
1703   }
1704   case Expr::MaterializeTemporaryExprClass:
1705     // A materialized temporary might have been lifetime-extended to static
1706     // storage duration.
1707     return cast<MaterializeTemporaryExpr>(E)->getStorageDuration() == SD_Static;
1708   // A string literal has static storage duration.
1709   case Expr::StringLiteralClass:
1710   case Expr::PredefinedExprClass:
1711   case Expr::ObjCStringLiteralClass:
1712   case Expr::ObjCEncodeExprClass:
1713   case Expr::CXXTypeidExprClass:
1714   case Expr::CXXUuidofExprClass:
1715     return true;
1716   case Expr::CallExprClass:
1717     return IsStringLiteralCall(cast<CallExpr>(E));
1718   // For GCC compatibility, &&label has static storage duration.
1719   case Expr::AddrLabelExprClass:
1720     return true;
1721   // A Block literal expression may be used as the initialization value for
1722   // Block variables at global or local static scope.
1723   case Expr::BlockExprClass:
1724     return !cast<BlockExpr>(E)->getBlockDecl()->hasCaptures();
1725   case Expr::ImplicitValueInitExprClass:
1726     // FIXME:
1727     // We can never form an lvalue with an implicit value initialization as its
1728     // base through expression evaluation, so these only appear in one case: the
1729     // implicit variable declaration we invent when checking whether a constexpr
1730     // constructor can produce a constant expression. We must assume that such
1731     // an expression might be a global lvalue.
1732     return true;
1733   }
1734 }
1735 
1736 static const ValueDecl *GetLValueBaseDecl(const LValue &LVal) {
1737   return LVal.Base.dyn_cast<const ValueDecl*>();
1738 }
1739 
1740 static bool IsLiteralLValue(const LValue &Value) {
1741   if (Value.getLValueCallIndex())
1742     return false;
1743   const Expr *E = Value.Base.dyn_cast<const Expr*>();
1744   return E && !isa<MaterializeTemporaryExpr>(E);
1745 }
1746 
1747 static bool IsWeakLValue(const LValue &Value) {
1748   const ValueDecl *Decl = GetLValueBaseDecl(Value);
1749   return Decl && Decl->isWeak();
1750 }
1751 
1752 static bool isZeroSized(const LValue &Value) {
1753   const ValueDecl *Decl = GetLValueBaseDecl(Value);
1754   if (Decl && isa<VarDecl>(Decl)) {
1755     QualType Ty = Decl->getType();
1756     if (Ty->isArrayType())
1757       return Ty->isIncompleteType() ||
1758              Decl->getASTContext().getTypeSize(Ty) == 0;
1759   }
1760   return false;
1761 }
1762 
1763 static bool HasSameBase(const LValue &A, const LValue &B) {
1764   if (!A.getLValueBase())
1765     return !B.getLValueBase();
1766   if (!B.getLValueBase())
1767     return false;
1768 
1769   if (A.getLValueBase().getOpaqueValue() !=
1770       B.getLValueBase().getOpaqueValue()) {
1771     const Decl *ADecl = GetLValueBaseDecl(A);
1772     if (!ADecl)
1773       return false;
1774     const Decl *BDecl = GetLValueBaseDecl(B);
1775     if (!BDecl || ADecl->getCanonicalDecl() != BDecl->getCanonicalDecl())
1776       return false;
1777   }
1778 
1779   return IsGlobalLValue(A.getLValueBase()) ||
1780          (A.getLValueCallIndex() == B.getLValueCallIndex() &&
1781           A.getLValueVersion() == B.getLValueVersion());
1782 }
1783 
1784 static void NoteLValueLocation(EvalInfo &Info, APValue::LValueBase Base) {
1785   assert(Base && "no location for a null lvalue");
1786   const ValueDecl *VD = Base.dyn_cast<const ValueDecl*>();
1787   if (VD)
1788     Info.Note(VD->getLocation(), diag::note_declared_at);
1789   else
1790     Info.Note(Base.get<const Expr*>()->getExprLoc(),
1791               diag::note_constexpr_temporary_here);
1792 }
1793 
1794 /// Check that this reference or pointer core constant expression is a valid
1795 /// value for an address or reference constant expression. Return true if we
1796 /// can fold this expression, whether or not it's a constant expression.
1797 static bool CheckLValueConstantExpression(EvalInfo &Info, SourceLocation Loc,
1798                                           QualType Type, const LValue &LVal,
1799                                           Expr::ConstExprUsage Usage) {
1800   bool IsReferenceType = Type->isReferenceType();
1801 
1802   APValue::LValueBase Base = LVal.getLValueBase();
1803   const SubobjectDesignator &Designator = LVal.getLValueDesignator();
1804 
1805   // Check that the object is a global. Note that the fake 'this' object we
1806   // manufacture when checking potential constant expressions is conservatively
1807   // assumed to be global here.
1808   if (!IsGlobalLValue(Base)) {
1809     if (Info.getLangOpts().CPlusPlus11) {
1810       const ValueDecl *VD = Base.dyn_cast<const ValueDecl*>();
1811       Info.FFDiag(Loc, diag::note_constexpr_non_global, 1)
1812         << IsReferenceType << !Designator.Entries.empty()
1813         << !!VD << VD;
1814       NoteLValueLocation(Info, Base);
1815     } else {
1816       Info.FFDiag(Loc);
1817     }
1818     // Don't allow references to temporaries to escape.
1819     return false;
1820   }
1821   assert((Info.checkingPotentialConstantExpression() ||
1822           LVal.getLValueCallIndex() == 0) &&
1823          "have call index for global lvalue");
1824 
1825   if (const ValueDecl *VD = Base.dyn_cast<const ValueDecl*>()) {
1826     if (const VarDecl *Var = dyn_cast<const VarDecl>(VD)) {
1827       // Check if this is a thread-local variable.
1828       if (Var->getTLSKind())
1829         return false;
1830 
1831       // A dllimport variable never acts like a constant.
1832       if (Usage == Expr::EvaluateForCodeGen && Var->hasAttr<DLLImportAttr>())
1833         return false;
1834     }
1835     if (const auto *FD = dyn_cast<const FunctionDecl>(VD)) {
1836       // __declspec(dllimport) must be handled very carefully:
1837       // We must never initialize an expression with the thunk in C++.
1838       // Doing otherwise would allow the same id-expression to yield
1839       // different addresses for the same function in different translation
1840       // units.  However, this means that we must dynamically initialize the
1841       // expression with the contents of the import address table at runtime.
1842       //
1843       // The C language has no notion of ODR; furthermore, it has no notion of
1844       // dynamic initialization.  This means that we are permitted to
1845       // perform initialization with the address of the thunk.
1846       if (Info.getLangOpts().CPlusPlus && Usage == Expr::EvaluateForCodeGen &&
1847           FD->hasAttr<DLLImportAttr>())
1848         return false;
1849     }
1850   }
1851 
1852   // Allow address constant expressions to be past-the-end pointers. This is
1853   // an extension: the standard requires them to point to an object.
1854   if (!IsReferenceType)
1855     return true;
1856 
1857   // A reference constant expression must refer to an object.
1858   if (!Base) {
1859     // FIXME: diagnostic
1860     Info.CCEDiag(Loc);
1861     return true;
1862   }
1863 
1864   // Does this refer one past the end of some object?
1865   if (!Designator.Invalid && Designator.isOnePastTheEnd()) {
1866     const ValueDecl *VD = Base.dyn_cast<const ValueDecl*>();
1867     Info.FFDiag(Loc, diag::note_constexpr_past_end, 1)
1868       << !Designator.Entries.empty() << !!VD << VD;
1869     NoteLValueLocation(Info, Base);
1870   }
1871 
1872   return true;
1873 }
1874 
1875 /// Member pointers are constant expressions unless they point to a
1876 /// non-virtual dllimport member function.
1877 static bool CheckMemberPointerConstantExpression(EvalInfo &Info,
1878                                                  SourceLocation Loc,
1879                                                  QualType Type,
1880                                                  const APValue &Value,
1881                                                  Expr::ConstExprUsage Usage) {
1882   const ValueDecl *Member = Value.getMemberPointerDecl();
1883   const auto *FD = dyn_cast_or_null<CXXMethodDecl>(Member);
1884   if (!FD)
1885     return true;
1886   return Usage == Expr::EvaluateForMangling || FD->isVirtual() ||
1887          !FD->hasAttr<DLLImportAttr>();
1888 }
1889 
1890 /// Check that this core constant expression is of literal type, and if not,
1891 /// produce an appropriate diagnostic.
1892 static bool CheckLiteralType(EvalInfo &Info, const Expr *E,
1893                              const LValue *This = nullptr) {
1894   if (!E->isRValue() || E->getType()->isLiteralType(Info.Ctx))
1895     return true;
1896 
1897   // C++1y: A constant initializer for an object o [...] may also invoke
1898   // constexpr constructors for o and its subobjects even if those objects
1899   // are of non-literal class types.
1900   //
1901   // C++11 missed this detail for aggregates, so classes like this:
1902   //   struct foo_t { union { int i; volatile int j; } u; };
1903   // are not (obviously) initializable like so:
1904   //   __attribute__((__require_constant_initialization__))
1905   //   static const foo_t x = {{0}};
1906   // because "i" is a subobject with non-literal initialization (due to the
1907   // volatile member of the union). See:
1908   //   http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_active.html#1677
1909   // Therefore, we use the C++1y behavior.
1910   if (This && Info.EvaluatingDecl == This->getLValueBase())
1911     return true;
1912 
1913   // Prvalue constant expressions must be of literal types.
1914   if (Info.getLangOpts().CPlusPlus11)
1915     Info.FFDiag(E, diag::note_constexpr_nonliteral)
1916       << E->getType();
1917   else
1918     Info.FFDiag(E, diag::note_invalid_subexpr_in_const_expr);
1919   return false;
1920 }
1921 
1922 /// Check that this core constant expression value is a valid value for a
1923 /// constant expression. If not, report an appropriate diagnostic. Does not
1924 /// check that the expression is of literal type.
1925 static bool
1926 CheckConstantExpression(EvalInfo &Info, SourceLocation DiagLoc, QualType Type,
1927                         const APValue &Value,
1928                         Expr::ConstExprUsage Usage = Expr::EvaluateForCodeGen) {
1929   if (Value.isUninit()) {
1930     Info.FFDiag(DiagLoc, diag::note_constexpr_uninitialized)
1931       << true << Type;
1932     return false;
1933   }
1934 
1935   // We allow _Atomic(T) to be initialized from anything that T can be
1936   // initialized from.
1937   if (const AtomicType *AT = Type->getAs<AtomicType>())
1938     Type = AT->getValueType();
1939 
1940   // Core issue 1454: For a literal constant expression of array or class type,
1941   // each subobject of its value shall have been initialized by a constant
1942   // expression.
1943   if (Value.isArray()) {
1944     QualType EltTy = Type->castAsArrayTypeUnsafe()->getElementType();
1945     for (unsigned I = 0, N = Value.getArrayInitializedElts(); I != N; ++I) {
1946       if (!CheckConstantExpression(Info, DiagLoc, EltTy,
1947                                    Value.getArrayInitializedElt(I), Usage))
1948         return false;
1949     }
1950     if (!Value.hasArrayFiller())
1951       return true;
1952     return CheckConstantExpression(Info, DiagLoc, EltTy, Value.getArrayFiller(),
1953                                    Usage);
1954   }
1955   if (Value.isUnion() && Value.getUnionField()) {
1956     return CheckConstantExpression(Info, DiagLoc,
1957                                    Value.getUnionField()->getType(),
1958                                    Value.getUnionValue(), Usage);
1959   }
1960   if (Value.isStruct()) {
1961     RecordDecl *RD = Type->castAs<RecordType>()->getDecl();
1962     if (const CXXRecordDecl *CD = dyn_cast<CXXRecordDecl>(RD)) {
1963       unsigned BaseIndex = 0;
1964       for (const CXXBaseSpecifier &BS : CD->bases()) {
1965         if (!CheckConstantExpression(Info, DiagLoc, BS.getType(),
1966                                      Value.getStructBase(BaseIndex), Usage))
1967           return false;
1968         ++BaseIndex;
1969       }
1970     }
1971     for (const auto *I : RD->fields()) {
1972       if (I->isUnnamedBitfield())
1973         continue;
1974 
1975       if (!CheckConstantExpression(Info, DiagLoc, I->getType(),
1976                                    Value.getStructField(I->getFieldIndex()),
1977                                    Usage))
1978         return false;
1979     }
1980   }
1981 
1982   if (Value.isLValue()) {
1983     LValue LVal;
1984     LVal.setFrom(Info.Ctx, Value);
1985     return CheckLValueConstantExpression(Info, DiagLoc, Type, LVal, Usage);
1986   }
1987 
1988   if (Value.isMemberPointer())
1989     return CheckMemberPointerConstantExpression(Info, DiagLoc, Type, Value, Usage);
1990 
1991   // Everything else is fine.
1992   return true;
1993 }
1994 
1995 static bool EvalPointerValueAsBool(const APValue &Value, bool &Result) {
1996   // A null base expression indicates a null pointer.  These are always
1997   // evaluatable, and they are false unless the offset is zero.
1998   if (!Value.getLValueBase()) {
1999     Result = !Value.getLValueOffset().isZero();
2000     return true;
2001   }
2002 
2003   // We have a non-null base.  These are generally known to be true, but if it's
2004   // a weak declaration it can be null at runtime.
2005   Result = true;
2006   const ValueDecl *Decl = Value.getLValueBase().dyn_cast<const ValueDecl*>();
2007   return !Decl || !Decl->isWeak();
2008 }
2009 
2010 static bool HandleConversionToBool(const APValue &Val, bool &Result) {
2011   switch (Val.getKind()) {
2012   case APValue::Uninitialized:
2013     return false;
2014   case APValue::Int:
2015     Result = Val.getInt().getBoolValue();
2016     return true;
2017   case APValue::Float:
2018     Result = !Val.getFloat().isZero();
2019     return true;
2020   case APValue::ComplexInt:
2021     Result = Val.getComplexIntReal().getBoolValue() ||
2022              Val.getComplexIntImag().getBoolValue();
2023     return true;
2024   case APValue::ComplexFloat:
2025     Result = !Val.getComplexFloatReal().isZero() ||
2026              !Val.getComplexFloatImag().isZero();
2027     return true;
2028   case APValue::LValue:
2029     return EvalPointerValueAsBool(Val, Result);
2030   case APValue::MemberPointer:
2031     Result = Val.getMemberPointerDecl();
2032     return true;
2033   case APValue::Vector:
2034   case APValue::Array:
2035   case APValue::Struct:
2036   case APValue::Union:
2037   case APValue::AddrLabelDiff:
2038     return false;
2039   }
2040 
2041   llvm_unreachable("unknown APValue kind");
2042 }
2043 
2044 static bool EvaluateAsBooleanCondition(const Expr *E, bool &Result,
2045                                        EvalInfo &Info) {
2046   assert(E->isRValue() && "missing lvalue-to-rvalue conv in bool condition");
2047   APValue Val;
2048   if (!Evaluate(Val, Info, E))
2049     return false;
2050   return HandleConversionToBool(Val, Result);
2051 }
2052 
2053 template<typename T>
2054 static bool HandleOverflow(EvalInfo &Info, const Expr *E,
2055                            const T &SrcValue, QualType DestType) {
2056   Info.CCEDiag(E, diag::note_constexpr_overflow)
2057     << SrcValue << DestType;
2058   return Info.noteUndefinedBehavior();
2059 }
2060 
2061 static bool HandleFloatToIntCast(EvalInfo &Info, const Expr *E,
2062                                  QualType SrcType, const APFloat &Value,
2063                                  QualType DestType, APSInt &Result) {
2064   unsigned DestWidth = Info.Ctx.getIntWidth(DestType);
2065   // Determine whether we are converting to unsigned or signed.
2066   bool DestSigned = DestType->isSignedIntegerOrEnumerationType();
2067 
2068   Result = APSInt(DestWidth, !DestSigned);
2069   bool ignored;
2070   if (Value.convertToInteger(Result, llvm::APFloat::rmTowardZero, &ignored)
2071       & APFloat::opInvalidOp)
2072     return HandleOverflow(Info, E, Value, DestType);
2073   return true;
2074 }
2075 
2076 static bool HandleFloatToFloatCast(EvalInfo &Info, const Expr *E,
2077                                    QualType SrcType, QualType DestType,
2078                                    APFloat &Result) {
2079   APFloat Value = Result;
2080   bool ignored;
2081   if (Result.convert(Info.Ctx.getFloatTypeSemantics(DestType),
2082                      APFloat::rmNearestTiesToEven, &ignored)
2083       & APFloat::opOverflow)
2084     return HandleOverflow(Info, E, Value, DestType);
2085   return true;
2086 }
2087 
2088 static APSInt HandleIntToIntCast(EvalInfo &Info, const Expr *E,
2089                                  QualType DestType, QualType SrcType,
2090                                  const APSInt &Value) {
2091   unsigned DestWidth = Info.Ctx.getIntWidth(DestType);
2092   APSInt Result = Value;
2093   // Figure out if this is a truncate, extend or noop cast.
2094   // If the input is signed, do a sign extend, noop, or truncate.
2095   Result = Result.extOrTrunc(DestWidth);
2096   Result.setIsUnsigned(DestType->isUnsignedIntegerOrEnumerationType());
2097   return Result;
2098 }
2099 
2100 static bool HandleIntToFloatCast(EvalInfo &Info, const Expr *E,
2101                                  QualType SrcType, const APSInt &Value,
2102                                  QualType DestType, APFloat &Result) {
2103   Result = APFloat(Info.Ctx.getFloatTypeSemantics(DestType), 1);
2104   if (Result.convertFromAPInt(Value, Value.isSigned(),
2105                               APFloat::rmNearestTiesToEven)
2106       & APFloat::opOverflow)
2107     return HandleOverflow(Info, E, Value, DestType);
2108   return true;
2109 }
2110 
2111 static bool truncateBitfieldValue(EvalInfo &Info, const Expr *E,
2112                                   APValue &Value, const FieldDecl *FD) {
2113   assert(FD->isBitField() && "truncateBitfieldValue on non-bitfield");
2114 
2115   if (!Value.isInt()) {
2116     // Trying to store a pointer-cast-to-integer into a bitfield.
2117     // FIXME: In this case, we should provide the diagnostic for casting
2118     // a pointer to an integer.
2119     assert(Value.isLValue() && "integral value neither int nor lvalue?");
2120     Info.FFDiag(E);
2121     return false;
2122   }
2123 
2124   APSInt &Int = Value.getInt();
2125   unsigned OldBitWidth = Int.getBitWidth();
2126   unsigned NewBitWidth = FD->getBitWidthValue(Info.Ctx);
2127   if (NewBitWidth < OldBitWidth)
2128     Int = Int.trunc(NewBitWidth).extend(OldBitWidth);
2129   return true;
2130 }
2131 
2132 static bool EvalAndBitcastToAPInt(EvalInfo &Info, const Expr *E,
2133                                   llvm::APInt &Res) {
2134   APValue SVal;
2135   if (!Evaluate(SVal, Info, E))
2136     return false;
2137   if (SVal.isInt()) {
2138     Res = SVal.getInt();
2139     return true;
2140   }
2141   if (SVal.isFloat()) {
2142     Res = SVal.getFloat().bitcastToAPInt();
2143     return true;
2144   }
2145   if (SVal.isVector()) {
2146     QualType VecTy = E->getType();
2147     unsigned VecSize = Info.Ctx.getTypeSize(VecTy);
2148     QualType EltTy = VecTy->castAs<VectorType>()->getElementType();
2149     unsigned EltSize = Info.Ctx.getTypeSize(EltTy);
2150     bool BigEndian = Info.Ctx.getTargetInfo().isBigEndian();
2151     Res = llvm::APInt::getNullValue(VecSize);
2152     for (unsigned i = 0; i < SVal.getVectorLength(); i++) {
2153       APValue &Elt = SVal.getVectorElt(i);
2154       llvm::APInt EltAsInt;
2155       if (Elt.isInt()) {
2156         EltAsInt = Elt.getInt();
2157       } else if (Elt.isFloat()) {
2158         EltAsInt = Elt.getFloat().bitcastToAPInt();
2159       } else {
2160         // Don't try to handle vectors of anything other than int or float
2161         // (not sure if it's possible to hit this case).
2162         Info.FFDiag(E, diag::note_invalid_subexpr_in_const_expr);
2163         return false;
2164       }
2165       unsigned BaseEltSize = EltAsInt.getBitWidth();
2166       if (BigEndian)
2167         Res |= EltAsInt.zextOrTrunc(VecSize).rotr(i*EltSize+BaseEltSize);
2168       else
2169         Res |= EltAsInt.zextOrTrunc(VecSize).rotl(i*EltSize);
2170     }
2171     return true;
2172   }
2173   // Give up if the input isn't an int, float, or vector.  For example, we
2174   // reject "(v4i16)(intptr_t)&a".
2175   Info.FFDiag(E, diag::note_invalid_subexpr_in_const_expr);
2176   return false;
2177 }
2178 
2179 /// Perform the given integer operation, which is known to need at most BitWidth
2180 /// bits, and check for overflow in the original type (if that type was not an
2181 /// unsigned type).
2182 template<typename Operation>
2183 static bool CheckedIntArithmetic(EvalInfo &Info, const Expr *E,
2184                                  const APSInt &LHS, const APSInt &RHS,
2185                                  unsigned BitWidth, Operation Op,
2186                                  APSInt &Result) {
2187   if (LHS.isUnsigned()) {
2188     Result = Op(LHS, RHS);
2189     return true;
2190   }
2191 
2192   APSInt Value(Op(LHS.extend(BitWidth), RHS.extend(BitWidth)), false);
2193   Result = Value.trunc(LHS.getBitWidth());
2194   if (Result.extend(BitWidth) != Value) {
2195     if (Info.checkingForOverflow())
2196       Info.Ctx.getDiagnostics().Report(E->getExprLoc(),
2197                                        diag::warn_integer_constant_overflow)
2198           << Result.toString(10) << E->getType();
2199     else
2200       return HandleOverflow(Info, E, Value, E->getType());
2201   }
2202   return true;
2203 }
2204 
2205 /// Perform the given binary integer operation.
2206 static bool handleIntIntBinOp(EvalInfo &Info, const Expr *E, const APSInt &LHS,
2207                               BinaryOperatorKind Opcode, APSInt RHS,
2208                               APSInt &Result) {
2209   switch (Opcode) {
2210   default:
2211     Info.FFDiag(E);
2212     return false;
2213   case BO_Mul:
2214     return CheckedIntArithmetic(Info, E, LHS, RHS, LHS.getBitWidth() * 2,
2215                                 std::multiplies<APSInt>(), Result);
2216   case BO_Add:
2217     return CheckedIntArithmetic(Info, E, LHS, RHS, LHS.getBitWidth() + 1,
2218                                 std::plus<APSInt>(), Result);
2219   case BO_Sub:
2220     return CheckedIntArithmetic(Info, E, LHS, RHS, LHS.getBitWidth() + 1,
2221                                 std::minus<APSInt>(), Result);
2222   case BO_And: Result = LHS & RHS; return true;
2223   case BO_Xor: Result = LHS ^ RHS; return true;
2224   case BO_Or:  Result = LHS | RHS; return true;
2225   case BO_Div:
2226   case BO_Rem:
2227     if (RHS == 0) {
2228       Info.FFDiag(E, diag::note_expr_divide_by_zero);
2229       return false;
2230     }
2231     Result = (Opcode == BO_Rem ? LHS % RHS : LHS / RHS);
2232     // Check for overflow case: INT_MIN / -1 or INT_MIN % -1. APSInt supports
2233     // this operation and gives the two's complement result.
2234     if (RHS.isNegative() && RHS.isAllOnesValue() &&
2235         LHS.isSigned() && LHS.isMinSignedValue())
2236       return HandleOverflow(Info, E, -LHS.extend(LHS.getBitWidth() + 1),
2237                             E->getType());
2238     return true;
2239   case BO_Shl: {
2240     if (Info.getLangOpts().OpenCL)
2241       // OpenCL 6.3j: shift values are effectively % word size of LHS.
2242       RHS &= APSInt(llvm::APInt(RHS.getBitWidth(),
2243                     static_cast<uint64_t>(LHS.getBitWidth() - 1)),
2244                     RHS.isUnsigned());
2245     else if (RHS.isSigned() && RHS.isNegative()) {
2246       // During constant-folding, a negative shift is an opposite shift. Such
2247       // a shift is not a constant expression.
2248       Info.CCEDiag(E, diag::note_constexpr_negative_shift) << RHS;
2249       RHS = -RHS;
2250       goto shift_right;
2251     }
2252   shift_left:
2253     // C++11 [expr.shift]p1: Shift width must be less than the bit width of
2254     // the shifted type.
2255     unsigned SA = (unsigned) RHS.getLimitedValue(LHS.getBitWidth()-1);
2256     if (SA != RHS) {
2257       Info.CCEDiag(E, diag::note_constexpr_large_shift)
2258         << RHS << E->getType() << LHS.getBitWidth();
2259     } else if (LHS.isSigned()) {
2260       // C++11 [expr.shift]p2: A signed left shift must have a non-negative
2261       // operand, and must not overflow the corresponding unsigned type.
2262       if (LHS.isNegative())
2263         Info.CCEDiag(E, diag::note_constexpr_lshift_of_negative) << LHS;
2264       else if (LHS.countLeadingZeros() < SA)
2265         Info.CCEDiag(E, diag::note_constexpr_lshift_discards);
2266     }
2267     Result = LHS << SA;
2268     return true;
2269   }
2270   case BO_Shr: {
2271     if (Info.getLangOpts().OpenCL)
2272       // OpenCL 6.3j: shift values are effectively % word size of LHS.
2273       RHS &= APSInt(llvm::APInt(RHS.getBitWidth(),
2274                     static_cast<uint64_t>(LHS.getBitWidth() - 1)),
2275                     RHS.isUnsigned());
2276     else if (RHS.isSigned() && RHS.isNegative()) {
2277       // During constant-folding, a negative shift is an opposite shift. Such a
2278       // shift is not a constant expression.
2279       Info.CCEDiag(E, diag::note_constexpr_negative_shift) << RHS;
2280       RHS = -RHS;
2281       goto shift_left;
2282     }
2283   shift_right:
2284     // C++11 [expr.shift]p1: Shift width must be less than the bit width of the
2285     // shifted type.
2286     unsigned SA = (unsigned) RHS.getLimitedValue(LHS.getBitWidth()-1);
2287     if (SA != RHS)
2288       Info.CCEDiag(E, diag::note_constexpr_large_shift)
2289         << RHS << E->getType() << LHS.getBitWidth();
2290     Result = LHS >> SA;
2291     return true;
2292   }
2293 
2294   case BO_LT: Result = LHS < RHS; return true;
2295   case BO_GT: Result = LHS > RHS; return true;
2296   case BO_LE: Result = LHS <= RHS; return true;
2297   case BO_GE: Result = LHS >= RHS; return true;
2298   case BO_EQ: Result = LHS == RHS; return true;
2299   case BO_NE: Result = LHS != RHS; return true;
2300   case BO_Cmp:
2301     llvm_unreachable("BO_Cmp should be handled elsewhere");
2302   }
2303 }
2304 
2305 /// Perform the given binary floating-point operation, in-place, on LHS.
2306 static bool handleFloatFloatBinOp(EvalInfo &Info, const Expr *E,
2307                                   APFloat &LHS, BinaryOperatorKind Opcode,
2308                                   const APFloat &RHS) {
2309   switch (Opcode) {
2310   default:
2311     Info.FFDiag(E);
2312     return false;
2313   case BO_Mul:
2314     LHS.multiply(RHS, APFloat::rmNearestTiesToEven);
2315     break;
2316   case BO_Add:
2317     LHS.add(RHS, APFloat::rmNearestTiesToEven);
2318     break;
2319   case BO_Sub:
2320     LHS.subtract(RHS, APFloat::rmNearestTiesToEven);
2321     break;
2322   case BO_Div:
2323     LHS.divide(RHS, APFloat::rmNearestTiesToEven);
2324     break;
2325   }
2326 
2327   if (LHS.isInfinity() || LHS.isNaN()) {
2328     Info.CCEDiag(E, diag::note_constexpr_float_arithmetic) << LHS.isNaN();
2329     return Info.noteUndefinedBehavior();
2330   }
2331   return true;
2332 }
2333 
2334 /// Cast an lvalue referring to a base subobject to a derived class, by
2335 /// truncating the lvalue's path to the given length.
2336 static bool CastToDerivedClass(EvalInfo &Info, const Expr *E, LValue &Result,
2337                                const RecordDecl *TruncatedType,
2338                                unsigned TruncatedElements) {
2339   SubobjectDesignator &D = Result.Designator;
2340 
2341   // Check we actually point to a derived class object.
2342   if (TruncatedElements == D.Entries.size())
2343     return true;
2344   assert(TruncatedElements >= D.MostDerivedPathLength &&
2345          "not casting to a derived class");
2346   if (!Result.checkSubobject(Info, E, CSK_Derived))
2347     return false;
2348 
2349   // Truncate the path to the subobject, and remove any derived-to-base offsets.
2350   const RecordDecl *RD = TruncatedType;
2351   for (unsigned I = TruncatedElements, N = D.Entries.size(); I != N; ++I) {
2352     if (RD->isInvalidDecl()) return false;
2353     const ASTRecordLayout &Layout = Info.Ctx.getASTRecordLayout(RD);
2354     const CXXRecordDecl *Base = getAsBaseClass(D.Entries[I]);
2355     if (isVirtualBaseClass(D.Entries[I]))
2356       Result.Offset -= Layout.getVBaseClassOffset(Base);
2357     else
2358       Result.Offset -= Layout.getBaseClassOffset(Base);
2359     RD = Base;
2360   }
2361   D.Entries.resize(TruncatedElements);
2362   return true;
2363 }
2364 
2365 static bool HandleLValueDirectBase(EvalInfo &Info, const Expr *E, LValue &Obj,
2366                                    const CXXRecordDecl *Derived,
2367                                    const CXXRecordDecl *Base,
2368                                    const ASTRecordLayout *RL = nullptr) {
2369   if (!RL) {
2370     if (Derived->isInvalidDecl()) return false;
2371     RL = &Info.Ctx.getASTRecordLayout(Derived);
2372   }
2373 
2374   Obj.getLValueOffset() += RL->getBaseClassOffset(Base);
2375   Obj.addDecl(Info, E, Base, /*Virtual*/ false);
2376   return true;
2377 }
2378 
2379 static bool HandleLValueBase(EvalInfo &Info, const Expr *E, LValue &Obj,
2380                              const CXXRecordDecl *DerivedDecl,
2381                              const CXXBaseSpecifier *Base) {
2382   const CXXRecordDecl *BaseDecl = Base->getType()->getAsCXXRecordDecl();
2383 
2384   if (!Base->isVirtual())
2385     return HandleLValueDirectBase(Info, E, Obj, DerivedDecl, BaseDecl);
2386 
2387   SubobjectDesignator &D = Obj.Designator;
2388   if (D.Invalid)
2389     return false;
2390 
2391   // Extract most-derived object and corresponding type.
2392   DerivedDecl = D.MostDerivedType->getAsCXXRecordDecl();
2393   if (!CastToDerivedClass(Info, E, Obj, DerivedDecl, D.MostDerivedPathLength))
2394     return false;
2395 
2396   // Find the virtual base class.
2397   if (DerivedDecl->isInvalidDecl()) return false;
2398   const ASTRecordLayout &Layout = Info.Ctx.getASTRecordLayout(DerivedDecl);
2399   Obj.getLValueOffset() += Layout.getVBaseClassOffset(BaseDecl);
2400   Obj.addDecl(Info, E, BaseDecl, /*Virtual*/ true);
2401   return true;
2402 }
2403 
2404 static bool HandleLValueBasePath(EvalInfo &Info, const CastExpr *E,
2405                                  QualType Type, LValue &Result) {
2406   for (CastExpr::path_const_iterator PathI = E->path_begin(),
2407                                      PathE = E->path_end();
2408        PathI != PathE; ++PathI) {
2409     if (!HandleLValueBase(Info, E, Result, Type->getAsCXXRecordDecl(),
2410                           *PathI))
2411       return false;
2412     Type = (*PathI)->getType();
2413   }
2414   return true;
2415 }
2416 
2417 /// Update LVal to refer to the given field, which must be a member of the type
2418 /// currently described by LVal.
2419 static bool HandleLValueMember(EvalInfo &Info, const Expr *E, LValue &LVal,
2420                                const FieldDecl *FD,
2421                                const ASTRecordLayout *RL = nullptr) {
2422   if (!RL) {
2423     if (FD->getParent()->isInvalidDecl()) return false;
2424     RL = &Info.Ctx.getASTRecordLayout(FD->getParent());
2425   }
2426 
2427   unsigned I = FD->getFieldIndex();
2428   LVal.adjustOffset(Info.Ctx.toCharUnitsFromBits(RL->getFieldOffset(I)));
2429   LVal.addDecl(Info, E, FD);
2430   return true;
2431 }
2432 
2433 /// Update LVal to refer to the given indirect field.
2434 static bool HandleLValueIndirectMember(EvalInfo &Info, const Expr *E,
2435                                        LValue &LVal,
2436                                        const IndirectFieldDecl *IFD) {
2437   for (const auto *C : IFD->chain())
2438     if (!HandleLValueMember(Info, E, LVal, cast<FieldDecl>(C)))
2439       return false;
2440   return true;
2441 }
2442 
2443 /// Get the size of the given type in char units.
2444 static bool HandleSizeof(EvalInfo &Info, SourceLocation Loc,
2445                          QualType Type, CharUnits &Size) {
2446   // sizeof(void), __alignof__(void), sizeof(function) = 1 as a gcc
2447   // extension.
2448   if (Type->isVoidType() || Type->isFunctionType()) {
2449     Size = CharUnits::One();
2450     return true;
2451   }
2452 
2453   if (Type->isDependentType()) {
2454     Info.FFDiag(Loc);
2455     return false;
2456   }
2457 
2458   if (!Type->isConstantSizeType()) {
2459     // sizeof(vla) is not a constantexpr: C99 6.5.3.4p2.
2460     // FIXME: Better diagnostic.
2461     Info.FFDiag(Loc);
2462     return false;
2463   }
2464 
2465   Size = Info.Ctx.getTypeSizeInChars(Type);
2466   return true;
2467 }
2468 
2469 /// Update a pointer value to model pointer arithmetic.
2470 /// \param Info - Information about the ongoing evaluation.
2471 /// \param E - The expression being evaluated, for diagnostic purposes.
2472 /// \param LVal - The pointer value to be updated.
2473 /// \param EltTy - The pointee type represented by LVal.
2474 /// \param Adjustment - The adjustment, in objects of type EltTy, to add.
2475 static bool HandleLValueArrayAdjustment(EvalInfo &Info, const Expr *E,
2476                                         LValue &LVal, QualType EltTy,
2477                                         APSInt Adjustment) {
2478   CharUnits SizeOfPointee;
2479   if (!HandleSizeof(Info, E->getExprLoc(), EltTy, SizeOfPointee))
2480     return false;
2481 
2482   LVal.adjustOffsetAndIndex(Info, E, Adjustment, SizeOfPointee);
2483   return true;
2484 }
2485 
2486 static bool HandleLValueArrayAdjustment(EvalInfo &Info, const Expr *E,
2487                                         LValue &LVal, QualType EltTy,
2488                                         int64_t Adjustment) {
2489   return HandleLValueArrayAdjustment(Info, E, LVal, EltTy,
2490                                      APSInt::get(Adjustment));
2491 }
2492 
2493 /// Update an lvalue to refer to a component of a complex number.
2494 /// \param Info - Information about the ongoing evaluation.
2495 /// \param LVal - The lvalue to be updated.
2496 /// \param EltTy - The complex number's component type.
2497 /// \param Imag - False for the real component, true for the imaginary.
2498 static bool HandleLValueComplexElement(EvalInfo &Info, const Expr *E,
2499                                        LValue &LVal, QualType EltTy,
2500                                        bool Imag) {
2501   if (Imag) {
2502     CharUnits SizeOfComponent;
2503     if (!HandleSizeof(Info, E->getExprLoc(), EltTy, SizeOfComponent))
2504       return false;
2505     LVal.Offset += SizeOfComponent;
2506   }
2507   LVal.addComplex(Info, E, EltTy, Imag);
2508   return true;
2509 }
2510 
2511 static bool handleLValueToRValueConversion(EvalInfo &Info, const Expr *Conv,
2512                                            QualType Type, const LValue &LVal,
2513                                            APValue &RVal);
2514 
2515 /// Try to evaluate the initializer for a variable declaration.
2516 ///
2517 /// \param Info   Information about the ongoing evaluation.
2518 /// \param E      An expression to be used when printing diagnostics.
2519 /// \param VD     The variable whose initializer should be obtained.
2520 /// \param Frame  The frame in which the variable was created. Must be null
2521 ///               if this variable is not local to the evaluation.
2522 /// \param Result Filled in with a pointer to the value of the variable.
2523 static bool evaluateVarDeclInit(EvalInfo &Info, const Expr *E,
2524                                 const VarDecl *VD, CallStackFrame *Frame,
2525                                 APValue *&Result, const LValue *LVal) {
2526 
2527   // If this is a parameter to an active constexpr function call, perform
2528   // argument substitution.
2529   if (const ParmVarDecl *PVD = dyn_cast<ParmVarDecl>(VD)) {
2530     // Assume arguments of a potential constant expression are unknown
2531     // constant expressions.
2532     if (Info.checkingPotentialConstantExpression())
2533       return false;
2534     if (!Frame || !Frame->Arguments) {
2535       Info.FFDiag(E, diag::note_invalid_subexpr_in_const_expr);
2536       return false;
2537     }
2538     Result = &Frame->Arguments[PVD->getFunctionScopeIndex()];
2539     return true;
2540   }
2541 
2542   // If this is a local variable, dig out its value.
2543   if (Frame) {
2544     Result = LVal ? Frame->getTemporary(VD, LVal->getLValueVersion())
2545                   : Frame->getCurrentTemporary(VD);
2546     if (!Result) {
2547       // Assume variables referenced within a lambda's call operator that were
2548       // not declared within the call operator are captures and during checking
2549       // of a potential constant expression, assume they are unknown constant
2550       // expressions.
2551       assert(isLambdaCallOperator(Frame->Callee) &&
2552              (VD->getDeclContext() != Frame->Callee || VD->isInitCapture()) &&
2553              "missing value for local variable");
2554       if (Info.checkingPotentialConstantExpression())
2555         return false;
2556       // FIXME: implement capture evaluation during constant expr evaluation.
2557       Info.FFDiag(E->getBeginLoc(),
2558                   diag::note_unimplemented_constexpr_lambda_feature_ast)
2559           << "captures not currently allowed";
2560       return false;
2561     }
2562     return true;
2563   }
2564 
2565   // Dig out the initializer, and use the declaration which it's attached to.
2566   const Expr *Init = VD->getAnyInitializer(VD);
2567   if (!Init || Init->isValueDependent()) {
2568     // If we're checking a potential constant expression, the variable could be
2569     // initialized later.
2570     if (!Info.checkingPotentialConstantExpression())
2571       Info.FFDiag(E, diag::note_invalid_subexpr_in_const_expr);
2572     return false;
2573   }
2574 
2575   // If we're currently evaluating the initializer of this declaration, use that
2576   // in-flight value.
2577   if (Info.EvaluatingDecl.dyn_cast<const ValueDecl*>() == VD) {
2578     Result = Info.EvaluatingDeclValue;
2579     return true;
2580   }
2581 
2582   // Never evaluate the initializer of a weak variable. We can't be sure that
2583   // this is the definition which will be used.
2584   if (VD->isWeak()) {
2585     Info.FFDiag(E, diag::note_invalid_subexpr_in_const_expr);
2586     return false;
2587   }
2588 
2589   // Check that we can fold the initializer. In C++, we will have already done
2590   // this in the cases where it matters for conformance.
2591   SmallVector<PartialDiagnosticAt, 8> Notes;
2592   if (!VD->evaluateValue(Notes)) {
2593     Info.FFDiag(E, diag::note_constexpr_var_init_non_constant,
2594               Notes.size() + 1) << VD;
2595     Info.Note(VD->getLocation(), diag::note_declared_at);
2596     Info.addNotes(Notes);
2597     return false;
2598   } else if (!VD->checkInitIsICE()) {
2599     Info.CCEDiag(E, diag::note_constexpr_var_init_non_constant,
2600                  Notes.size() + 1) << VD;
2601     Info.Note(VD->getLocation(), diag::note_declared_at);
2602     Info.addNotes(Notes);
2603   }
2604 
2605   Result = VD->getEvaluatedValue();
2606   return true;
2607 }
2608 
2609 static bool IsConstNonVolatile(QualType T) {
2610   Qualifiers Quals = T.getQualifiers();
2611   return Quals.hasConst() && !Quals.hasVolatile();
2612 }
2613 
2614 /// Get the base index of the given base class within an APValue representing
2615 /// the given derived class.
2616 static unsigned getBaseIndex(const CXXRecordDecl *Derived,
2617                              const CXXRecordDecl *Base) {
2618   Base = Base->getCanonicalDecl();
2619   unsigned Index = 0;
2620   for (CXXRecordDecl::base_class_const_iterator I = Derived->bases_begin(),
2621          E = Derived->bases_end(); I != E; ++I, ++Index) {
2622     if (I->getType()->getAsCXXRecordDecl()->getCanonicalDecl() == Base)
2623       return Index;
2624   }
2625 
2626   llvm_unreachable("base class missing from derived class's bases list");
2627 }
2628 
2629 /// Extract the value of a character from a string literal.
2630 static APSInt extractStringLiteralCharacter(EvalInfo &Info, const Expr *Lit,
2631                                             uint64_t Index) {
2632   // FIXME: Support MakeStringConstant
2633   if (const auto *ObjCEnc = dyn_cast<ObjCEncodeExpr>(Lit)) {
2634     std::string Str;
2635     Info.Ctx.getObjCEncodingForType(ObjCEnc->getEncodedType(), Str);
2636     assert(Index <= Str.size() && "Index too large");
2637     return APSInt::getUnsigned(Str.c_str()[Index]);
2638   }
2639 
2640   if (auto PE = dyn_cast<PredefinedExpr>(Lit))
2641     Lit = PE->getFunctionName();
2642   const StringLiteral *S = cast<StringLiteral>(Lit);
2643   const ConstantArrayType *CAT =
2644       Info.Ctx.getAsConstantArrayType(S->getType());
2645   assert(CAT && "string literal isn't an array");
2646   QualType CharType = CAT->getElementType();
2647   assert(CharType->isIntegerType() && "unexpected character type");
2648 
2649   APSInt Value(S->getCharByteWidth() * Info.Ctx.getCharWidth(),
2650                CharType->isUnsignedIntegerType());
2651   if (Index < S->getLength())
2652     Value = S->getCodeUnit(Index);
2653   return Value;
2654 }
2655 
2656 // Expand a string literal into an array of characters.
2657 static void expandStringLiteral(EvalInfo &Info, const Expr *Lit,
2658                                 APValue &Result) {
2659   const StringLiteral *S = cast<StringLiteral>(Lit);
2660   const ConstantArrayType *CAT =
2661       Info.Ctx.getAsConstantArrayType(S->getType());
2662   assert(CAT && "string literal isn't an array");
2663   QualType CharType = CAT->getElementType();
2664   assert(CharType->isIntegerType() && "unexpected character type");
2665 
2666   unsigned Elts = CAT->getSize().getZExtValue();
2667   Result = APValue(APValue::UninitArray(),
2668                    std::min(S->getLength(), Elts), Elts);
2669   APSInt Value(S->getCharByteWidth() * Info.Ctx.getCharWidth(),
2670                CharType->isUnsignedIntegerType());
2671   if (Result.hasArrayFiller())
2672     Result.getArrayFiller() = APValue(Value);
2673   for (unsigned I = 0, N = Result.getArrayInitializedElts(); I != N; ++I) {
2674     Value = S->getCodeUnit(I);
2675     Result.getArrayInitializedElt(I) = APValue(Value);
2676   }
2677 }
2678 
2679 // Expand an array so that it has more than Index filled elements.
2680 static void expandArray(APValue &Array, unsigned Index) {
2681   unsigned Size = Array.getArraySize();
2682   assert(Index < Size);
2683 
2684   // Always at least double the number of elements for which we store a value.
2685   unsigned OldElts = Array.getArrayInitializedElts();
2686   unsigned NewElts = std::max(Index+1, OldElts * 2);
2687   NewElts = std::min(Size, std::max(NewElts, 8u));
2688 
2689   // Copy the data across.
2690   APValue NewValue(APValue::UninitArray(), NewElts, Size);
2691   for (unsigned I = 0; I != OldElts; ++I)
2692     NewValue.getArrayInitializedElt(I).swap(Array.getArrayInitializedElt(I));
2693   for (unsigned I = OldElts; I != NewElts; ++I)
2694     NewValue.getArrayInitializedElt(I) = Array.getArrayFiller();
2695   if (NewValue.hasArrayFiller())
2696     NewValue.getArrayFiller() = Array.getArrayFiller();
2697   Array.swap(NewValue);
2698 }
2699 
2700 /// Determine whether a type would actually be read by an lvalue-to-rvalue
2701 /// conversion. If it's of class type, we may assume that the copy operation
2702 /// is trivial. Note that this is never true for a union type with fields
2703 /// (because the copy always "reads" the active member) and always true for
2704 /// a non-class type.
2705 static bool isReadByLvalueToRvalueConversion(QualType T) {
2706   CXXRecordDecl *RD = T->getBaseElementTypeUnsafe()->getAsCXXRecordDecl();
2707   if (!RD || (RD->isUnion() && !RD->field_empty()))
2708     return true;
2709   if (RD->isEmpty())
2710     return false;
2711 
2712   for (auto *Field : RD->fields())
2713     if (isReadByLvalueToRvalueConversion(Field->getType()))
2714       return true;
2715 
2716   for (auto &BaseSpec : RD->bases())
2717     if (isReadByLvalueToRvalueConversion(BaseSpec.getType()))
2718       return true;
2719 
2720   return false;
2721 }
2722 
2723 /// Diagnose an attempt to read from any unreadable field within the specified
2724 /// type, which might be a class type.
2725 static bool diagnoseUnreadableFields(EvalInfo &Info, const Expr *E,
2726                                      QualType T) {
2727   CXXRecordDecl *RD = T->getBaseElementTypeUnsafe()->getAsCXXRecordDecl();
2728   if (!RD)
2729     return false;
2730 
2731   if (!RD->hasMutableFields())
2732     return false;
2733 
2734   for (auto *Field : RD->fields()) {
2735     // If we're actually going to read this field in some way, then it can't
2736     // be mutable. If we're in a union, then assigning to a mutable field
2737     // (even an empty one) can change the active member, so that's not OK.
2738     // FIXME: Add core issue number for the union case.
2739     if (Field->isMutable() &&
2740         (RD->isUnion() || isReadByLvalueToRvalueConversion(Field->getType()))) {
2741       Info.FFDiag(E, diag::note_constexpr_ltor_mutable, 1) << Field;
2742       Info.Note(Field->getLocation(), diag::note_declared_at);
2743       return true;
2744     }
2745 
2746     if (diagnoseUnreadableFields(Info, E, Field->getType()))
2747       return true;
2748   }
2749 
2750   for (auto &BaseSpec : RD->bases())
2751     if (diagnoseUnreadableFields(Info, E, BaseSpec.getType()))
2752       return true;
2753 
2754   // All mutable fields were empty, and thus not actually read.
2755   return false;
2756 }
2757 
2758 /// Kinds of access we can perform on an object, for diagnostics.
2759 enum AccessKinds {
2760   AK_Read,
2761   AK_Assign,
2762   AK_Increment,
2763   AK_Decrement
2764 };
2765 
2766 namespace {
2767 /// A handle to a complete object (an object that is not a subobject of
2768 /// another object).
2769 struct CompleteObject {
2770   /// The value of the complete object.
2771   APValue *Value;
2772   /// The type of the complete object.
2773   QualType Type;
2774   bool LifetimeStartedInEvaluation;
2775 
2776   CompleteObject() : Value(nullptr) {}
2777   CompleteObject(APValue *Value, QualType Type,
2778                  bool LifetimeStartedInEvaluation)
2779       : Value(Value), Type(Type),
2780         LifetimeStartedInEvaluation(LifetimeStartedInEvaluation) {
2781     assert(Value && "missing value for complete object");
2782   }
2783 
2784   explicit operator bool() const { return Value; }
2785 };
2786 } // end anonymous namespace
2787 
2788 /// Find the designated sub-object of an rvalue.
2789 template<typename SubobjectHandler>
2790 typename SubobjectHandler::result_type
2791 findSubobject(EvalInfo &Info, const Expr *E, const CompleteObject &Obj,
2792               const SubobjectDesignator &Sub, SubobjectHandler &handler) {
2793   if (Sub.Invalid)
2794     // A diagnostic will have already been produced.
2795     return handler.failed();
2796   if (Sub.isOnePastTheEnd() || Sub.isMostDerivedAnUnsizedArray()) {
2797     if (Info.getLangOpts().CPlusPlus11)
2798       Info.FFDiag(E, Sub.isOnePastTheEnd()
2799                          ? diag::note_constexpr_access_past_end
2800                          : diag::note_constexpr_access_unsized_array)
2801           << handler.AccessKind;
2802     else
2803       Info.FFDiag(E);
2804     return handler.failed();
2805   }
2806 
2807   APValue *O = Obj.Value;
2808   QualType ObjType = Obj.Type;
2809   const FieldDecl *LastField = nullptr;
2810   const bool MayReadMutableMembers =
2811       Obj.LifetimeStartedInEvaluation && Info.getLangOpts().CPlusPlus14;
2812 
2813   // Walk the designator's path to find the subobject.
2814   for (unsigned I = 0, N = Sub.Entries.size(); /**/; ++I) {
2815     if (O->isUninit()) {
2816       if (!Info.checkingPotentialConstantExpression())
2817         Info.FFDiag(E, diag::note_constexpr_access_uninit) << handler.AccessKind;
2818       return handler.failed();
2819     }
2820 
2821     if (I == N) {
2822       // If we are reading an object of class type, there may still be more
2823       // things we need to check: if there are any mutable subobjects, we
2824       // cannot perform this read. (This only happens when performing a trivial
2825       // copy or assignment.)
2826       if (ObjType->isRecordType() && handler.AccessKind == AK_Read &&
2827           !MayReadMutableMembers && diagnoseUnreadableFields(Info, E, ObjType))
2828         return handler.failed();
2829 
2830       if (!handler.found(*O, ObjType))
2831         return false;
2832 
2833       // If we modified a bit-field, truncate it to the right width.
2834       if (handler.AccessKind != AK_Read &&
2835           LastField && LastField->isBitField() &&
2836           !truncateBitfieldValue(Info, E, *O, LastField))
2837         return false;
2838 
2839       return true;
2840     }
2841 
2842     LastField = nullptr;
2843     if (ObjType->isArrayType()) {
2844       // Next subobject is an array element.
2845       const ConstantArrayType *CAT = Info.Ctx.getAsConstantArrayType(ObjType);
2846       assert(CAT && "vla in literal type?");
2847       uint64_t Index = Sub.Entries[I].ArrayIndex;
2848       if (CAT->getSize().ule(Index)) {
2849         // Note, it should not be possible to form a pointer with a valid
2850         // designator which points more than one past the end of the array.
2851         if (Info.getLangOpts().CPlusPlus11)
2852           Info.FFDiag(E, diag::note_constexpr_access_past_end)
2853             << handler.AccessKind;
2854         else
2855           Info.FFDiag(E);
2856         return handler.failed();
2857       }
2858 
2859       ObjType = CAT->getElementType();
2860 
2861       // An array object is represented as either an Array APValue or as an
2862       // LValue which refers to a string literal.
2863       if (O->isLValue()) {
2864         assert(I == N - 1 && "extracting subobject of character?");
2865         assert(!O->hasLValuePath() || O->getLValuePath().empty());
2866         if (handler.AccessKind != AK_Read)
2867           expandStringLiteral(Info, O->getLValueBase().get<const Expr *>(),
2868                               *O);
2869         else
2870           return handler.foundString(*O, ObjType, Index);
2871       }
2872 
2873       if (O->getArrayInitializedElts() > Index)
2874         O = &O->getArrayInitializedElt(Index);
2875       else if (handler.AccessKind != AK_Read) {
2876         expandArray(*O, Index);
2877         O = &O->getArrayInitializedElt(Index);
2878       } else
2879         O = &O->getArrayFiller();
2880     } else if (ObjType->isAnyComplexType()) {
2881       // Next subobject is a complex number.
2882       uint64_t Index = Sub.Entries[I].ArrayIndex;
2883       if (Index > 1) {
2884         if (Info.getLangOpts().CPlusPlus11)
2885           Info.FFDiag(E, diag::note_constexpr_access_past_end)
2886             << handler.AccessKind;
2887         else
2888           Info.FFDiag(E);
2889         return handler.failed();
2890       }
2891 
2892       bool WasConstQualified = ObjType.isConstQualified();
2893       ObjType = ObjType->castAs<ComplexType>()->getElementType();
2894       if (WasConstQualified)
2895         ObjType.addConst();
2896 
2897       assert(I == N - 1 && "extracting subobject of scalar?");
2898       if (O->isComplexInt()) {
2899         return handler.found(Index ? O->getComplexIntImag()
2900                                    : O->getComplexIntReal(), ObjType);
2901       } else {
2902         assert(O->isComplexFloat());
2903         return handler.found(Index ? O->getComplexFloatImag()
2904                                    : O->getComplexFloatReal(), ObjType);
2905       }
2906     } else if (const FieldDecl *Field = getAsField(Sub.Entries[I])) {
2907       // In C++14 onwards, it is permitted to read a mutable member whose
2908       // lifetime began within the evaluation.
2909       // FIXME: Should we also allow this in C++11?
2910       if (Field->isMutable() && handler.AccessKind == AK_Read &&
2911           !MayReadMutableMembers) {
2912         Info.FFDiag(E, diag::note_constexpr_ltor_mutable, 1)
2913           << Field;
2914         Info.Note(Field->getLocation(), diag::note_declared_at);
2915         return handler.failed();
2916       }
2917 
2918       // Next subobject is a class, struct or union field.
2919       RecordDecl *RD = ObjType->castAs<RecordType>()->getDecl();
2920       if (RD->isUnion()) {
2921         const FieldDecl *UnionField = O->getUnionField();
2922         if (!UnionField ||
2923             UnionField->getCanonicalDecl() != Field->getCanonicalDecl()) {
2924           Info.FFDiag(E, diag::note_constexpr_access_inactive_union_member)
2925             << handler.AccessKind << Field << !UnionField << UnionField;
2926           return handler.failed();
2927         }
2928         O = &O->getUnionValue();
2929       } else
2930         O = &O->getStructField(Field->getFieldIndex());
2931 
2932       bool WasConstQualified = ObjType.isConstQualified();
2933       ObjType = Field->getType();
2934       if (WasConstQualified && !Field->isMutable())
2935         ObjType.addConst();
2936 
2937       if (ObjType.isVolatileQualified()) {
2938         if (Info.getLangOpts().CPlusPlus) {
2939           // FIXME: Include a description of the path to the volatile subobject.
2940           Info.FFDiag(E, diag::note_constexpr_access_volatile_obj, 1)
2941             << handler.AccessKind << 2 << Field;
2942           Info.Note(Field->getLocation(), diag::note_declared_at);
2943         } else {
2944           Info.FFDiag(E, diag::note_invalid_subexpr_in_const_expr);
2945         }
2946         return handler.failed();
2947       }
2948 
2949       LastField = Field;
2950     } else {
2951       // Next subobject is a base class.
2952       const CXXRecordDecl *Derived = ObjType->getAsCXXRecordDecl();
2953       const CXXRecordDecl *Base = getAsBaseClass(Sub.Entries[I]);
2954       O = &O->getStructBase(getBaseIndex(Derived, Base));
2955 
2956       bool WasConstQualified = ObjType.isConstQualified();
2957       ObjType = Info.Ctx.getRecordType(Base);
2958       if (WasConstQualified)
2959         ObjType.addConst();
2960     }
2961   }
2962 }
2963 
2964 namespace {
2965 struct ExtractSubobjectHandler {
2966   EvalInfo &Info;
2967   APValue &Result;
2968 
2969   static const AccessKinds AccessKind = AK_Read;
2970 
2971   typedef bool result_type;
2972   bool failed() { return false; }
2973   bool found(APValue &Subobj, QualType SubobjType) {
2974     Result = Subobj;
2975     return true;
2976   }
2977   bool found(APSInt &Value, QualType SubobjType) {
2978     Result = APValue(Value);
2979     return true;
2980   }
2981   bool found(APFloat &Value, QualType SubobjType) {
2982     Result = APValue(Value);
2983     return true;
2984   }
2985   bool foundString(APValue &Subobj, QualType SubobjType, uint64_t Character) {
2986     Result = APValue(extractStringLiteralCharacter(
2987         Info, Subobj.getLValueBase().get<const Expr *>(), Character));
2988     return true;
2989   }
2990 };
2991 } // end anonymous namespace
2992 
2993 const AccessKinds ExtractSubobjectHandler::AccessKind;
2994 
2995 /// Extract the designated sub-object of an rvalue.
2996 static bool extractSubobject(EvalInfo &Info, const Expr *E,
2997                              const CompleteObject &Obj,
2998                              const SubobjectDesignator &Sub,
2999                              APValue &Result) {
3000   ExtractSubobjectHandler Handler = { Info, Result };
3001   return findSubobject(Info, E, Obj, Sub, Handler);
3002 }
3003 
3004 namespace {
3005 struct ModifySubobjectHandler {
3006   EvalInfo &Info;
3007   APValue &NewVal;
3008   const Expr *E;
3009 
3010   typedef bool result_type;
3011   static const AccessKinds AccessKind = AK_Assign;
3012 
3013   bool checkConst(QualType QT) {
3014     // Assigning to a const object has undefined behavior.
3015     if (QT.isConstQualified()) {
3016       Info.FFDiag(E, diag::note_constexpr_modify_const_type) << QT;
3017       return false;
3018     }
3019     return true;
3020   }
3021 
3022   bool failed() { return false; }
3023   bool found(APValue &Subobj, QualType SubobjType) {
3024     if (!checkConst(SubobjType))
3025       return false;
3026     // We've been given ownership of NewVal, so just swap it in.
3027     Subobj.swap(NewVal);
3028     return true;
3029   }
3030   bool found(APSInt &Value, QualType SubobjType) {
3031     if (!checkConst(SubobjType))
3032       return false;
3033     if (!NewVal.isInt()) {
3034       // Maybe trying to write a cast pointer value into a complex?
3035       Info.FFDiag(E);
3036       return false;
3037     }
3038     Value = NewVal.getInt();
3039     return true;
3040   }
3041   bool found(APFloat &Value, QualType SubobjType) {
3042     if (!checkConst(SubobjType))
3043       return false;
3044     Value = NewVal.getFloat();
3045     return true;
3046   }
3047   bool foundString(APValue &Subobj, QualType SubobjType, uint64_t Character) {
3048     llvm_unreachable("shouldn't encounter string elements with ExpandArrays");
3049   }
3050 };
3051 } // end anonymous namespace
3052 
3053 const AccessKinds ModifySubobjectHandler::AccessKind;
3054 
3055 /// Update the designated sub-object of an rvalue to the given value.
3056 static bool modifySubobject(EvalInfo &Info, const Expr *E,
3057                             const CompleteObject &Obj,
3058                             const SubobjectDesignator &Sub,
3059                             APValue &NewVal) {
3060   ModifySubobjectHandler Handler = { Info, NewVal, E };
3061   return findSubobject(Info, E, Obj, Sub, Handler);
3062 }
3063 
3064 /// Find the position where two subobject designators diverge, or equivalently
3065 /// the length of the common initial subsequence.
3066 static unsigned FindDesignatorMismatch(QualType ObjType,
3067                                        const SubobjectDesignator &A,
3068                                        const SubobjectDesignator &B,
3069                                        bool &WasArrayIndex) {
3070   unsigned I = 0, N = std::min(A.Entries.size(), B.Entries.size());
3071   for (/**/; I != N; ++I) {
3072     if (!ObjType.isNull() &&
3073         (ObjType->isArrayType() || ObjType->isAnyComplexType())) {
3074       // Next subobject is an array element.
3075       if (A.Entries[I].ArrayIndex != B.Entries[I].ArrayIndex) {
3076         WasArrayIndex = true;
3077         return I;
3078       }
3079       if (ObjType->isAnyComplexType())
3080         ObjType = ObjType->castAs<ComplexType>()->getElementType();
3081       else
3082         ObjType = ObjType->castAsArrayTypeUnsafe()->getElementType();
3083     } else {
3084       if (A.Entries[I].BaseOrMember != B.Entries[I].BaseOrMember) {
3085         WasArrayIndex = false;
3086         return I;
3087       }
3088       if (const FieldDecl *FD = getAsField(A.Entries[I]))
3089         // Next subobject is a field.
3090         ObjType = FD->getType();
3091       else
3092         // Next subobject is a base class.
3093         ObjType = QualType();
3094     }
3095   }
3096   WasArrayIndex = false;
3097   return I;
3098 }
3099 
3100 /// Determine whether the given subobject designators refer to elements of the
3101 /// same array object.
3102 static bool AreElementsOfSameArray(QualType ObjType,
3103                                    const SubobjectDesignator &A,
3104                                    const SubobjectDesignator &B) {
3105   if (A.Entries.size() != B.Entries.size())
3106     return false;
3107 
3108   bool IsArray = A.MostDerivedIsArrayElement;
3109   if (IsArray && A.MostDerivedPathLength != A.Entries.size())
3110     // A is a subobject of the array element.
3111     return false;
3112 
3113   // If A (and B) designates an array element, the last entry will be the array
3114   // index. That doesn't have to match. Otherwise, we're in the 'implicit array
3115   // of length 1' case, and the entire path must match.
3116   bool WasArrayIndex;
3117   unsigned CommonLength = FindDesignatorMismatch(ObjType, A, B, WasArrayIndex);
3118   return CommonLength >= A.Entries.size() - IsArray;
3119 }
3120 
3121 /// Find the complete object to which an LValue refers.
3122 static CompleteObject findCompleteObject(EvalInfo &Info, const Expr *E,
3123                                          AccessKinds AK, const LValue &LVal,
3124                                          QualType LValType) {
3125   if (!LVal.Base) {
3126     Info.FFDiag(E, diag::note_constexpr_access_null) << AK;
3127     return CompleteObject();
3128   }
3129 
3130   CallStackFrame *Frame = nullptr;
3131   if (LVal.getLValueCallIndex()) {
3132     Frame = Info.getCallFrame(LVal.getLValueCallIndex());
3133     if (!Frame) {
3134       Info.FFDiag(E, diag::note_constexpr_lifetime_ended, 1)
3135         << AK << LVal.Base.is<const ValueDecl*>();
3136       NoteLValueLocation(Info, LVal.Base);
3137       return CompleteObject();
3138     }
3139   }
3140 
3141   // C++11 DR1311: An lvalue-to-rvalue conversion on a volatile-qualified type
3142   // is not a constant expression (even if the object is non-volatile). We also
3143   // apply this rule to C++98, in order to conform to the expected 'volatile'
3144   // semantics.
3145   if (LValType.isVolatileQualified()) {
3146     if (Info.getLangOpts().CPlusPlus)
3147       Info.FFDiag(E, diag::note_constexpr_access_volatile_type)
3148         << AK << LValType;
3149     else
3150       Info.FFDiag(E);
3151     return CompleteObject();
3152   }
3153 
3154   // Compute value storage location and type of base object.
3155   APValue *BaseVal = nullptr;
3156   QualType BaseType = getType(LVal.Base);
3157   bool LifetimeStartedInEvaluation = Frame;
3158 
3159   if (const ValueDecl *D = LVal.Base.dyn_cast<const ValueDecl*>()) {
3160     // In C++98, const, non-volatile integers initialized with ICEs are ICEs.
3161     // In C++11, constexpr, non-volatile variables initialized with constant
3162     // expressions are constant expressions too. Inside constexpr functions,
3163     // parameters are constant expressions even if they're non-const.
3164     // In C++1y, objects local to a constant expression (those with a Frame) are
3165     // both readable and writable inside constant expressions.
3166     // In C, such things can also be folded, although they are not ICEs.
3167     const VarDecl *VD = dyn_cast<VarDecl>(D);
3168     if (VD) {
3169       if (const VarDecl *VDef = VD->getDefinition(Info.Ctx))
3170         VD = VDef;
3171     }
3172     if (!VD || VD->isInvalidDecl()) {
3173       Info.FFDiag(E);
3174       return CompleteObject();
3175     }
3176 
3177     // Accesses of volatile-qualified objects are not allowed.
3178     if (BaseType.isVolatileQualified()) {
3179       if (Info.getLangOpts().CPlusPlus) {
3180         Info.FFDiag(E, diag::note_constexpr_access_volatile_obj, 1)
3181           << AK << 1 << VD;
3182         Info.Note(VD->getLocation(), diag::note_declared_at);
3183       } else {
3184         Info.FFDiag(E);
3185       }
3186       return CompleteObject();
3187     }
3188 
3189     // Unless we're looking at a local variable or argument in a constexpr call,
3190     // the variable we're reading must be const.
3191     if (!Frame) {
3192       if (Info.getLangOpts().CPlusPlus14 &&
3193           VD == Info.EvaluatingDecl.dyn_cast<const ValueDecl *>()) {
3194         // OK, we can read and modify an object if we're in the process of
3195         // evaluating its initializer, because its lifetime began in this
3196         // evaluation.
3197       } else if (AK != AK_Read) {
3198         // All the remaining cases only permit reading.
3199         Info.FFDiag(E, diag::note_constexpr_modify_global);
3200         return CompleteObject();
3201       } else if (VD->isConstexpr()) {
3202         // OK, we can read this variable.
3203       } else if (BaseType->isIntegralOrEnumerationType()) {
3204         // In OpenCL if a variable is in constant address space it is a const value.
3205         if (!(BaseType.isConstQualified() ||
3206               (Info.getLangOpts().OpenCL &&
3207                BaseType.getAddressSpace() == LangAS::opencl_constant))) {
3208           if (Info.getLangOpts().CPlusPlus) {
3209             Info.FFDiag(E, diag::note_constexpr_ltor_non_const_int, 1) << VD;
3210             Info.Note(VD->getLocation(), diag::note_declared_at);
3211           } else {
3212             Info.FFDiag(E);
3213           }
3214           return CompleteObject();
3215         }
3216       } else if (BaseType->isFloatingType() && BaseType.isConstQualified()) {
3217         // We support folding of const floating-point types, in order to make
3218         // static const data members of such types (supported as an extension)
3219         // more useful.
3220         if (Info.getLangOpts().CPlusPlus11) {
3221           Info.CCEDiag(E, diag::note_constexpr_ltor_non_constexpr, 1) << VD;
3222           Info.Note(VD->getLocation(), diag::note_declared_at);
3223         } else {
3224           Info.CCEDiag(E);
3225         }
3226       } else if (BaseType.isConstQualified() && VD->hasDefinition(Info.Ctx)) {
3227         Info.CCEDiag(E, diag::note_constexpr_ltor_non_constexpr) << VD;
3228         // Keep evaluating to see what we can do.
3229       } else {
3230         // FIXME: Allow folding of values of any literal type in all languages.
3231         if (Info.checkingPotentialConstantExpression() &&
3232             VD->getType().isConstQualified() && !VD->hasDefinition(Info.Ctx)) {
3233           // The definition of this variable could be constexpr. We can't
3234           // access it right now, but may be able to in future.
3235         } else if (Info.getLangOpts().CPlusPlus11) {
3236           Info.FFDiag(E, diag::note_constexpr_ltor_non_constexpr, 1) << VD;
3237           Info.Note(VD->getLocation(), diag::note_declared_at);
3238         } else {
3239           Info.FFDiag(E);
3240         }
3241         return CompleteObject();
3242       }
3243     }
3244 
3245     if (!evaluateVarDeclInit(Info, E, VD, Frame, BaseVal, &LVal))
3246       return CompleteObject();
3247   } else {
3248     const Expr *Base = LVal.Base.dyn_cast<const Expr*>();
3249 
3250     if (!Frame) {
3251       if (const MaterializeTemporaryExpr *MTE =
3252               dyn_cast<MaterializeTemporaryExpr>(Base)) {
3253         assert(MTE->getStorageDuration() == SD_Static &&
3254                "should have a frame for a non-global materialized temporary");
3255 
3256         // Per C++1y [expr.const]p2:
3257         //  an lvalue-to-rvalue conversion [is not allowed unless it applies to]
3258         //   - a [...] glvalue of integral or enumeration type that refers to
3259         //     a non-volatile const object [...]
3260         //   [...]
3261         //   - a [...] glvalue of literal type that refers to a non-volatile
3262         //     object whose lifetime began within the evaluation of e.
3263         //
3264         // C++11 misses the 'began within the evaluation of e' check and
3265         // instead allows all temporaries, including things like:
3266         //   int &&r = 1;
3267         //   int x = ++r;
3268         //   constexpr int k = r;
3269         // Therefore we use the C++14 rules in C++11 too.
3270         const ValueDecl *VD = Info.EvaluatingDecl.dyn_cast<const ValueDecl*>();
3271         const ValueDecl *ED = MTE->getExtendingDecl();
3272         if (!(BaseType.isConstQualified() &&
3273               BaseType->isIntegralOrEnumerationType()) &&
3274             !(VD && VD->getCanonicalDecl() == ED->getCanonicalDecl())) {
3275           Info.FFDiag(E, diag::note_constexpr_access_static_temporary, 1) << AK;
3276           Info.Note(MTE->getExprLoc(), diag::note_constexpr_temporary_here);
3277           return CompleteObject();
3278         }
3279 
3280         BaseVal = Info.Ctx.getMaterializedTemporaryValue(MTE, false);
3281         assert(BaseVal && "got reference to unevaluated temporary");
3282         LifetimeStartedInEvaluation = true;
3283       } else {
3284         Info.FFDiag(E);
3285         return CompleteObject();
3286       }
3287     } else {
3288       BaseVal = Frame->getTemporary(Base, LVal.Base.getVersion());
3289       assert(BaseVal && "missing value for temporary");
3290     }
3291 
3292     // Volatile temporary objects cannot be accessed in constant expressions.
3293     if (BaseType.isVolatileQualified()) {
3294       if (Info.getLangOpts().CPlusPlus) {
3295         Info.FFDiag(E, diag::note_constexpr_access_volatile_obj, 1)
3296           << AK << 0;
3297         Info.Note(Base->getExprLoc(), diag::note_constexpr_temporary_here);
3298       } else {
3299         Info.FFDiag(E);
3300       }
3301       return CompleteObject();
3302     }
3303   }
3304 
3305   // During the construction of an object, it is not yet 'const'.
3306   // FIXME: This doesn't do quite the right thing for const subobjects of the
3307   // object under construction.
3308   if (Info.isEvaluatingConstructor(LVal.getLValueBase(),
3309                                    LVal.getLValueCallIndex(),
3310                                    LVal.getLValueVersion())) {
3311     BaseType = Info.Ctx.getCanonicalType(BaseType);
3312     BaseType.removeLocalConst();
3313     LifetimeStartedInEvaluation = true;
3314   }
3315 
3316   // In C++14, we can't safely access any mutable state when we might be
3317   // evaluating after an unmodeled side effect.
3318   //
3319   // FIXME: Not all local state is mutable. Allow local constant subobjects
3320   // to be read here (but take care with 'mutable' fields).
3321   if ((Frame && Info.getLangOpts().CPlusPlus14 &&
3322        Info.EvalStatus.HasSideEffects) ||
3323       (AK != AK_Read && Info.IsSpeculativelyEvaluating))
3324     return CompleteObject();
3325 
3326   return CompleteObject(BaseVal, BaseType, LifetimeStartedInEvaluation);
3327 }
3328 
3329 /// Perform an lvalue-to-rvalue conversion on the given glvalue. This
3330 /// can also be used for 'lvalue-to-lvalue' conversions for looking up the
3331 /// glvalue referred to by an entity of reference type.
3332 ///
3333 /// \param Info - Information about the ongoing evaluation.
3334 /// \param Conv - The expression for which we are performing the conversion.
3335 ///               Used for diagnostics.
3336 /// \param Type - The type of the glvalue (before stripping cv-qualifiers in the
3337 ///               case of a non-class type).
3338 /// \param LVal - The glvalue on which we are attempting to perform this action.
3339 /// \param RVal - The produced value will be placed here.
3340 static bool handleLValueToRValueConversion(EvalInfo &Info, const Expr *Conv,
3341                                            QualType Type,
3342                                            const LValue &LVal, APValue &RVal) {
3343   if (LVal.Designator.Invalid)
3344     return false;
3345 
3346   // Check for special cases where there is no existing APValue to look at.
3347   const Expr *Base = LVal.Base.dyn_cast<const Expr*>();
3348   if (Base && !LVal.getLValueCallIndex() && !Type.isVolatileQualified()) {
3349     if (const CompoundLiteralExpr *CLE = dyn_cast<CompoundLiteralExpr>(Base)) {
3350       // In C99, a CompoundLiteralExpr is an lvalue, and we defer evaluating the
3351       // initializer until now for such expressions. Such an expression can't be
3352       // an ICE in C, so this only matters for fold.
3353       if (Type.isVolatileQualified()) {
3354         Info.FFDiag(Conv);
3355         return false;
3356       }
3357       APValue Lit;
3358       if (!Evaluate(Lit, Info, CLE->getInitializer()))
3359         return false;
3360       CompleteObject LitObj(&Lit, Base->getType(), false);
3361       return extractSubobject(Info, Conv, LitObj, LVal.Designator, RVal);
3362     } else if (isa<StringLiteral>(Base) || isa<PredefinedExpr>(Base)) {
3363       // We represent a string literal array as an lvalue pointing at the
3364       // corresponding expression, rather than building an array of chars.
3365       // FIXME: Support ObjCEncodeExpr, MakeStringConstant
3366       APValue Str(Base, CharUnits::Zero(), APValue::NoLValuePath(), 0);
3367       CompleteObject StrObj(&Str, Base->getType(), false);
3368       return extractSubobject(Info, Conv, StrObj, LVal.Designator, RVal);
3369     }
3370   }
3371 
3372   CompleteObject Obj = findCompleteObject(Info, Conv, AK_Read, LVal, Type);
3373   return Obj && extractSubobject(Info, Conv, Obj, LVal.Designator, RVal);
3374 }
3375 
3376 /// Perform an assignment of Val to LVal. Takes ownership of Val.
3377 static bool handleAssignment(EvalInfo &Info, const Expr *E, const LValue &LVal,
3378                              QualType LValType, APValue &Val) {
3379   if (LVal.Designator.Invalid)
3380     return false;
3381 
3382   if (!Info.getLangOpts().CPlusPlus14) {
3383     Info.FFDiag(E);
3384     return false;
3385   }
3386 
3387   CompleteObject Obj = findCompleteObject(Info, E, AK_Assign, LVal, LValType);
3388   return Obj && modifySubobject(Info, E, Obj, LVal.Designator, Val);
3389 }
3390 
3391 namespace {
3392 struct CompoundAssignSubobjectHandler {
3393   EvalInfo &Info;
3394   const Expr *E;
3395   QualType PromotedLHSType;
3396   BinaryOperatorKind Opcode;
3397   const APValue &RHS;
3398 
3399   static const AccessKinds AccessKind = AK_Assign;
3400 
3401   typedef bool result_type;
3402 
3403   bool checkConst(QualType QT) {
3404     // Assigning to a const object has undefined behavior.
3405     if (QT.isConstQualified()) {
3406       Info.FFDiag(E, diag::note_constexpr_modify_const_type) << QT;
3407       return false;
3408     }
3409     return true;
3410   }
3411 
3412   bool failed() { return false; }
3413   bool found(APValue &Subobj, QualType SubobjType) {
3414     switch (Subobj.getKind()) {
3415     case APValue::Int:
3416       return found(Subobj.getInt(), SubobjType);
3417     case APValue::Float:
3418       return found(Subobj.getFloat(), SubobjType);
3419     case APValue::ComplexInt:
3420     case APValue::ComplexFloat:
3421       // FIXME: Implement complex compound assignment.
3422       Info.FFDiag(E);
3423       return false;
3424     case APValue::LValue:
3425       return foundPointer(Subobj, SubobjType);
3426     default:
3427       // FIXME: can this happen?
3428       Info.FFDiag(E);
3429       return false;
3430     }
3431   }
3432   bool found(APSInt &Value, QualType SubobjType) {
3433     if (!checkConst(SubobjType))
3434       return false;
3435 
3436     if (!SubobjType->isIntegerType() || !RHS.isInt()) {
3437       // We don't support compound assignment on integer-cast-to-pointer
3438       // values.
3439       Info.FFDiag(E);
3440       return false;
3441     }
3442 
3443     APSInt LHS = HandleIntToIntCast(Info, E, PromotedLHSType,
3444                                     SubobjType, Value);
3445     if (!handleIntIntBinOp(Info, E, LHS, Opcode, RHS.getInt(), LHS))
3446       return false;
3447     Value = HandleIntToIntCast(Info, E, SubobjType, PromotedLHSType, LHS);
3448     return true;
3449   }
3450   bool found(APFloat &Value, QualType SubobjType) {
3451     return checkConst(SubobjType) &&
3452            HandleFloatToFloatCast(Info, E, SubobjType, PromotedLHSType,
3453                                   Value) &&
3454            handleFloatFloatBinOp(Info, E, Value, Opcode, RHS.getFloat()) &&
3455            HandleFloatToFloatCast(Info, E, PromotedLHSType, SubobjType, Value);
3456   }
3457   bool foundPointer(APValue &Subobj, QualType SubobjType) {
3458     if (!checkConst(SubobjType))
3459       return false;
3460 
3461     QualType PointeeType;
3462     if (const PointerType *PT = SubobjType->getAs<PointerType>())
3463       PointeeType = PT->getPointeeType();
3464 
3465     if (PointeeType.isNull() || !RHS.isInt() ||
3466         (Opcode != BO_Add && Opcode != BO_Sub)) {
3467       Info.FFDiag(E);
3468       return false;
3469     }
3470 
3471     APSInt Offset = RHS.getInt();
3472     if (Opcode == BO_Sub)
3473       negateAsSigned(Offset);
3474 
3475     LValue LVal;
3476     LVal.setFrom(Info.Ctx, Subobj);
3477     if (!HandleLValueArrayAdjustment(Info, E, LVal, PointeeType, Offset))
3478       return false;
3479     LVal.moveInto(Subobj);
3480     return true;
3481   }
3482   bool foundString(APValue &Subobj, QualType SubobjType, uint64_t Character) {
3483     llvm_unreachable("shouldn't encounter string elements here");
3484   }
3485 };
3486 } // end anonymous namespace
3487 
3488 const AccessKinds CompoundAssignSubobjectHandler::AccessKind;
3489 
3490 /// Perform a compound assignment of LVal <op>= RVal.
3491 static bool handleCompoundAssignment(
3492     EvalInfo &Info, const Expr *E,
3493     const LValue &LVal, QualType LValType, QualType PromotedLValType,
3494     BinaryOperatorKind Opcode, const APValue &RVal) {
3495   if (LVal.Designator.Invalid)
3496     return false;
3497 
3498   if (!Info.getLangOpts().CPlusPlus14) {
3499     Info.FFDiag(E);
3500     return false;
3501   }
3502 
3503   CompleteObject Obj = findCompleteObject(Info, E, AK_Assign, LVal, LValType);
3504   CompoundAssignSubobjectHandler Handler = { Info, E, PromotedLValType, Opcode,
3505                                              RVal };
3506   return Obj && findSubobject(Info, E, Obj, LVal.Designator, Handler);
3507 }
3508 
3509 namespace {
3510 struct IncDecSubobjectHandler {
3511   EvalInfo &Info;
3512   const UnaryOperator *E;
3513   AccessKinds AccessKind;
3514   APValue *Old;
3515 
3516   typedef bool result_type;
3517 
3518   bool checkConst(QualType QT) {
3519     // Assigning to a const object has undefined behavior.
3520     if (QT.isConstQualified()) {
3521       Info.FFDiag(E, diag::note_constexpr_modify_const_type) << QT;
3522       return false;
3523     }
3524     return true;
3525   }
3526 
3527   bool failed() { return false; }
3528   bool found(APValue &Subobj, QualType SubobjType) {
3529     // Stash the old value. Also clear Old, so we don't clobber it later
3530     // if we're post-incrementing a complex.
3531     if (Old) {
3532       *Old = Subobj;
3533       Old = nullptr;
3534     }
3535 
3536     switch (Subobj.getKind()) {
3537     case APValue::Int:
3538       return found(Subobj.getInt(), SubobjType);
3539     case APValue::Float:
3540       return found(Subobj.getFloat(), SubobjType);
3541     case APValue::ComplexInt:
3542       return found(Subobj.getComplexIntReal(),
3543                    SubobjType->castAs<ComplexType>()->getElementType()
3544                      .withCVRQualifiers(SubobjType.getCVRQualifiers()));
3545     case APValue::ComplexFloat:
3546       return found(Subobj.getComplexFloatReal(),
3547                    SubobjType->castAs<ComplexType>()->getElementType()
3548                      .withCVRQualifiers(SubobjType.getCVRQualifiers()));
3549     case APValue::LValue:
3550       return foundPointer(Subobj, SubobjType);
3551     default:
3552       // FIXME: can this happen?
3553       Info.FFDiag(E);
3554       return false;
3555     }
3556   }
3557   bool found(APSInt &Value, QualType SubobjType) {
3558     if (!checkConst(SubobjType))
3559       return false;
3560 
3561     if (!SubobjType->isIntegerType()) {
3562       // We don't support increment / decrement on integer-cast-to-pointer
3563       // values.
3564       Info.FFDiag(E);
3565       return false;
3566     }
3567 
3568     if (Old) *Old = APValue(Value);
3569 
3570     // bool arithmetic promotes to int, and the conversion back to bool
3571     // doesn't reduce mod 2^n, so special-case it.
3572     if (SubobjType->isBooleanType()) {
3573       if (AccessKind == AK_Increment)
3574         Value = 1;
3575       else
3576         Value = !Value;
3577       return true;
3578     }
3579 
3580     bool WasNegative = Value.isNegative();
3581     if (AccessKind == AK_Increment) {
3582       ++Value;
3583 
3584       if (!WasNegative && Value.isNegative() && E->canOverflow()) {
3585         APSInt ActualValue(Value, /*IsUnsigned*/true);
3586         return HandleOverflow(Info, E, ActualValue, SubobjType);
3587       }
3588     } else {
3589       --Value;
3590 
3591       if (WasNegative && !Value.isNegative() && E->canOverflow()) {
3592         unsigned BitWidth = Value.getBitWidth();
3593         APSInt ActualValue(Value.sext(BitWidth + 1), /*IsUnsigned*/false);
3594         ActualValue.setBit(BitWidth);
3595         return HandleOverflow(Info, E, ActualValue, SubobjType);
3596       }
3597     }
3598     return true;
3599   }
3600   bool found(APFloat &Value, QualType SubobjType) {
3601     if (!checkConst(SubobjType))
3602       return false;
3603 
3604     if (Old) *Old = APValue(Value);
3605 
3606     APFloat One(Value.getSemantics(), 1);
3607     if (AccessKind == AK_Increment)
3608       Value.add(One, APFloat::rmNearestTiesToEven);
3609     else
3610       Value.subtract(One, APFloat::rmNearestTiesToEven);
3611     return true;
3612   }
3613   bool foundPointer(APValue &Subobj, QualType SubobjType) {
3614     if (!checkConst(SubobjType))
3615       return false;
3616 
3617     QualType PointeeType;
3618     if (const PointerType *PT = SubobjType->getAs<PointerType>())
3619       PointeeType = PT->getPointeeType();
3620     else {
3621       Info.FFDiag(E);
3622       return false;
3623     }
3624 
3625     LValue LVal;
3626     LVal.setFrom(Info.Ctx, Subobj);
3627     if (!HandleLValueArrayAdjustment(Info, E, LVal, PointeeType,
3628                                      AccessKind == AK_Increment ? 1 : -1))
3629       return false;
3630     LVal.moveInto(Subobj);
3631     return true;
3632   }
3633   bool foundString(APValue &Subobj, QualType SubobjType, uint64_t Character) {
3634     llvm_unreachable("shouldn't encounter string elements here");
3635   }
3636 };
3637 } // end anonymous namespace
3638 
3639 /// Perform an increment or decrement on LVal.
3640 static bool handleIncDec(EvalInfo &Info, const Expr *E, const LValue &LVal,
3641                          QualType LValType, bool IsIncrement, APValue *Old) {
3642   if (LVal.Designator.Invalid)
3643     return false;
3644 
3645   if (!Info.getLangOpts().CPlusPlus14) {
3646     Info.FFDiag(E);
3647     return false;
3648   }
3649 
3650   AccessKinds AK = IsIncrement ? AK_Increment : AK_Decrement;
3651   CompleteObject Obj = findCompleteObject(Info, E, AK, LVal, LValType);
3652   IncDecSubobjectHandler Handler = {Info, cast<UnaryOperator>(E), AK, Old};
3653   return Obj && findSubobject(Info, E, Obj, LVal.Designator, Handler);
3654 }
3655 
3656 /// Build an lvalue for the object argument of a member function call.
3657 static bool EvaluateObjectArgument(EvalInfo &Info, const Expr *Object,
3658                                    LValue &This) {
3659   if (Object->getType()->isPointerType())
3660     return EvaluatePointer(Object, This, Info);
3661 
3662   if (Object->isGLValue())
3663     return EvaluateLValue(Object, This, Info);
3664 
3665   if (Object->getType()->isLiteralType(Info.Ctx))
3666     return EvaluateTemporary(Object, This, Info);
3667 
3668   Info.FFDiag(Object, diag::note_constexpr_nonliteral) << Object->getType();
3669   return false;
3670 }
3671 
3672 /// HandleMemberPointerAccess - Evaluate a member access operation and build an
3673 /// lvalue referring to the result.
3674 ///
3675 /// \param Info - Information about the ongoing evaluation.
3676 /// \param LV - An lvalue referring to the base of the member pointer.
3677 /// \param RHS - The member pointer expression.
3678 /// \param IncludeMember - Specifies whether the member itself is included in
3679 ///        the resulting LValue subobject designator. This is not possible when
3680 ///        creating a bound member function.
3681 /// \return The field or method declaration to which the member pointer refers,
3682 ///         or 0 if evaluation fails.
3683 static const ValueDecl *HandleMemberPointerAccess(EvalInfo &Info,
3684                                                   QualType LVType,
3685                                                   LValue &LV,
3686                                                   const Expr *RHS,
3687                                                   bool IncludeMember = true) {
3688   MemberPtr MemPtr;
3689   if (!EvaluateMemberPointer(RHS, MemPtr, Info))
3690     return nullptr;
3691 
3692   // C++11 [expr.mptr.oper]p6: If the second operand is the null pointer to
3693   // member value, the behavior is undefined.
3694   if (!MemPtr.getDecl()) {
3695     // FIXME: Specific diagnostic.
3696     Info.FFDiag(RHS);
3697     return nullptr;
3698   }
3699 
3700   if (MemPtr.isDerivedMember()) {
3701     // This is a member of some derived class. Truncate LV appropriately.
3702     // The end of the derived-to-base path for the base object must match the
3703     // derived-to-base path for the member pointer.
3704     if (LV.Designator.MostDerivedPathLength + MemPtr.Path.size() >
3705         LV.Designator.Entries.size()) {
3706       Info.FFDiag(RHS);
3707       return nullptr;
3708     }
3709     unsigned PathLengthToMember =
3710         LV.Designator.Entries.size() - MemPtr.Path.size();
3711     for (unsigned I = 0, N = MemPtr.Path.size(); I != N; ++I) {
3712       const CXXRecordDecl *LVDecl = getAsBaseClass(
3713           LV.Designator.Entries[PathLengthToMember + I]);
3714       const CXXRecordDecl *MPDecl = MemPtr.Path[I];
3715       if (LVDecl->getCanonicalDecl() != MPDecl->getCanonicalDecl()) {
3716         Info.FFDiag(RHS);
3717         return nullptr;
3718       }
3719     }
3720 
3721     // Truncate the lvalue to the appropriate derived class.
3722     if (!CastToDerivedClass(Info, RHS, LV, MemPtr.getContainingRecord(),
3723                             PathLengthToMember))
3724       return nullptr;
3725   } else if (!MemPtr.Path.empty()) {
3726     // Extend the LValue path with the member pointer's path.
3727     LV.Designator.Entries.reserve(LV.Designator.Entries.size() +
3728                                   MemPtr.Path.size() + IncludeMember);
3729 
3730     // Walk down to the appropriate base class.
3731     if (const PointerType *PT = LVType->getAs<PointerType>())
3732       LVType = PT->getPointeeType();
3733     const CXXRecordDecl *RD = LVType->getAsCXXRecordDecl();
3734     assert(RD && "member pointer access on non-class-type expression");
3735     // The first class in the path is that of the lvalue.
3736     for (unsigned I = 1, N = MemPtr.Path.size(); I != N; ++I) {
3737       const CXXRecordDecl *Base = MemPtr.Path[N - I - 1];
3738       if (!HandleLValueDirectBase(Info, RHS, LV, RD, Base))
3739         return nullptr;
3740       RD = Base;
3741     }
3742     // Finally cast to the class containing the member.
3743     if (!HandleLValueDirectBase(Info, RHS, LV, RD,
3744                                 MemPtr.getContainingRecord()))
3745       return nullptr;
3746   }
3747 
3748   // Add the member. Note that we cannot build bound member functions here.
3749   if (IncludeMember) {
3750     if (const FieldDecl *FD = dyn_cast<FieldDecl>(MemPtr.getDecl())) {
3751       if (!HandleLValueMember(Info, RHS, LV, FD))
3752         return nullptr;
3753     } else if (const IndirectFieldDecl *IFD =
3754                  dyn_cast<IndirectFieldDecl>(MemPtr.getDecl())) {
3755       if (!HandleLValueIndirectMember(Info, RHS, LV, IFD))
3756         return nullptr;
3757     } else {
3758       llvm_unreachable("can't construct reference to bound member function");
3759     }
3760   }
3761 
3762   return MemPtr.getDecl();
3763 }
3764 
3765 static const ValueDecl *HandleMemberPointerAccess(EvalInfo &Info,
3766                                                   const BinaryOperator *BO,
3767                                                   LValue &LV,
3768                                                   bool IncludeMember = true) {
3769   assert(BO->getOpcode() == BO_PtrMemD || BO->getOpcode() == BO_PtrMemI);
3770 
3771   if (!EvaluateObjectArgument(Info, BO->getLHS(), LV)) {
3772     if (Info.noteFailure()) {
3773       MemberPtr MemPtr;
3774       EvaluateMemberPointer(BO->getRHS(), MemPtr, Info);
3775     }
3776     return nullptr;
3777   }
3778 
3779   return HandleMemberPointerAccess(Info, BO->getLHS()->getType(), LV,
3780                                    BO->getRHS(), IncludeMember);
3781 }
3782 
3783 /// HandleBaseToDerivedCast - Apply the given base-to-derived cast operation on
3784 /// the provided lvalue, which currently refers to the base object.
3785 static bool HandleBaseToDerivedCast(EvalInfo &Info, const CastExpr *E,
3786                                     LValue &Result) {
3787   SubobjectDesignator &D = Result.Designator;
3788   if (D.Invalid || !Result.checkNullPointer(Info, E, CSK_Derived))
3789     return false;
3790 
3791   QualType TargetQT = E->getType();
3792   if (const PointerType *PT = TargetQT->getAs<PointerType>())
3793     TargetQT = PT->getPointeeType();
3794 
3795   // Check this cast lands within the final derived-to-base subobject path.
3796   if (D.MostDerivedPathLength + E->path_size() > D.Entries.size()) {
3797     Info.CCEDiag(E, diag::note_constexpr_invalid_downcast)
3798       << D.MostDerivedType << TargetQT;
3799     return false;
3800   }
3801 
3802   // Check the type of the final cast. We don't need to check the path,
3803   // since a cast can only be formed if the path is unique.
3804   unsigned NewEntriesSize = D.Entries.size() - E->path_size();
3805   const CXXRecordDecl *TargetType = TargetQT->getAsCXXRecordDecl();
3806   const CXXRecordDecl *FinalType;
3807   if (NewEntriesSize == D.MostDerivedPathLength)
3808     FinalType = D.MostDerivedType->getAsCXXRecordDecl();
3809   else
3810     FinalType = getAsBaseClass(D.Entries[NewEntriesSize - 1]);
3811   if (FinalType->getCanonicalDecl() != TargetType->getCanonicalDecl()) {
3812     Info.CCEDiag(E, diag::note_constexpr_invalid_downcast)
3813       << D.MostDerivedType << TargetQT;
3814     return false;
3815   }
3816 
3817   // Truncate the lvalue to the appropriate derived class.
3818   return CastToDerivedClass(Info, E, Result, TargetType, NewEntriesSize);
3819 }
3820 
3821 namespace {
3822 enum EvalStmtResult {
3823   /// Evaluation failed.
3824   ESR_Failed,
3825   /// Hit a 'return' statement.
3826   ESR_Returned,
3827   /// Evaluation succeeded.
3828   ESR_Succeeded,
3829   /// Hit a 'continue' statement.
3830   ESR_Continue,
3831   /// Hit a 'break' statement.
3832   ESR_Break,
3833   /// Still scanning for 'case' or 'default' statement.
3834   ESR_CaseNotFound
3835 };
3836 }
3837 
3838 static bool EvaluateVarDecl(EvalInfo &Info, const VarDecl *VD) {
3839   // We don't need to evaluate the initializer for a static local.
3840   if (!VD->hasLocalStorage())
3841     return true;
3842 
3843   LValue Result;
3844   APValue &Val = createTemporary(VD, true, Result, *Info.CurrentCall);
3845 
3846   const Expr *InitE = VD->getInit();
3847   if (!InitE) {
3848     Info.FFDiag(VD->getBeginLoc(), diag::note_constexpr_uninitialized)
3849         << false << VD->getType();
3850     Val = APValue();
3851     return false;
3852   }
3853 
3854   if (InitE->isValueDependent())
3855     return false;
3856 
3857   if (!EvaluateInPlace(Val, Info, Result, InitE)) {
3858     // Wipe out any partially-computed value, to allow tracking that this
3859     // evaluation failed.
3860     Val = APValue();
3861     return false;
3862   }
3863 
3864   return true;
3865 }
3866 
3867 static bool EvaluateDecl(EvalInfo &Info, const Decl *D) {
3868   bool OK = true;
3869 
3870   if (const VarDecl *VD = dyn_cast<VarDecl>(D))
3871     OK &= EvaluateVarDecl(Info, VD);
3872 
3873   if (const DecompositionDecl *DD = dyn_cast<DecompositionDecl>(D))
3874     for (auto *BD : DD->bindings())
3875       if (auto *VD = BD->getHoldingVar())
3876         OK &= EvaluateDecl(Info, VD);
3877 
3878   return OK;
3879 }
3880 
3881 
3882 /// Evaluate a condition (either a variable declaration or an expression).
3883 static bool EvaluateCond(EvalInfo &Info, const VarDecl *CondDecl,
3884                          const Expr *Cond, bool &Result) {
3885   FullExpressionRAII Scope(Info);
3886   if (CondDecl && !EvaluateDecl(Info, CondDecl))
3887     return false;
3888   return EvaluateAsBooleanCondition(Cond, Result, Info);
3889 }
3890 
3891 namespace {
3892 /// A location where the result (returned value) of evaluating a
3893 /// statement should be stored.
3894 struct StmtResult {
3895   /// The APValue that should be filled in with the returned value.
3896   APValue &Value;
3897   /// The location containing the result, if any (used to support RVO).
3898   const LValue *Slot;
3899 };
3900 
3901 struct TempVersionRAII {
3902   CallStackFrame &Frame;
3903 
3904   TempVersionRAII(CallStackFrame &Frame) : Frame(Frame) {
3905     Frame.pushTempVersion();
3906   }
3907 
3908   ~TempVersionRAII() {
3909     Frame.popTempVersion();
3910   }
3911 };
3912 
3913 }
3914 
3915 static EvalStmtResult EvaluateStmt(StmtResult &Result, EvalInfo &Info,
3916                                    const Stmt *S,
3917                                    const SwitchCase *SC = nullptr);
3918 
3919 /// Evaluate the body of a loop, and translate the result as appropriate.
3920 static EvalStmtResult EvaluateLoopBody(StmtResult &Result, EvalInfo &Info,
3921                                        const Stmt *Body,
3922                                        const SwitchCase *Case = nullptr) {
3923   BlockScopeRAII Scope(Info);
3924   switch (EvalStmtResult ESR = EvaluateStmt(Result, Info, Body, Case)) {
3925   case ESR_Break:
3926     return ESR_Succeeded;
3927   case ESR_Succeeded:
3928   case ESR_Continue:
3929     return ESR_Continue;
3930   case ESR_Failed:
3931   case ESR_Returned:
3932   case ESR_CaseNotFound:
3933     return ESR;
3934   }
3935   llvm_unreachable("Invalid EvalStmtResult!");
3936 }
3937 
3938 /// Evaluate a switch statement.
3939 static EvalStmtResult EvaluateSwitch(StmtResult &Result, EvalInfo &Info,
3940                                      const SwitchStmt *SS) {
3941   BlockScopeRAII Scope(Info);
3942 
3943   // Evaluate the switch condition.
3944   APSInt Value;
3945   {
3946     FullExpressionRAII Scope(Info);
3947     if (const Stmt *Init = SS->getInit()) {
3948       EvalStmtResult ESR = EvaluateStmt(Result, Info, Init);
3949       if (ESR != ESR_Succeeded)
3950         return ESR;
3951     }
3952     if (SS->getConditionVariable() &&
3953         !EvaluateDecl(Info, SS->getConditionVariable()))
3954       return ESR_Failed;
3955     if (!EvaluateInteger(SS->getCond(), Value, Info))
3956       return ESR_Failed;
3957   }
3958 
3959   // Find the switch case corresponding to the value of the condition.
3960   // FIXME: Cache this lookup.
3961   const SwitchCase *Found = nullptr;
3962   for (const SwitchCase *SC = SS->getSwitchCaseList(); SC;
3963        SC = SC->getNextSwitchCase()) {
3964     if (isa<DefaultStmt>(SC)) {
3965       Found = SC;
3966       continue;
3967     }
3968 
3969     const CaseStmt *CS = cast<CaseStmt>(SC);
3970     APSInt LHS = CS->getLHS()->EvaluateKnownConstInt(Info.Ctx);
3971     APSInt RHS = CS->getRHS() ? CS->getRHS()->EvaluateKnownConstInt(Info.Ctx)
3972                               : LHS;
3973     if (LHS <= Value && Value <= RHS) {
3974       Found = SC;
3975       break;
3976     }
3977   }
3978 
3979   if (!Found)
3980     return ESR_Succeeded;
3981 
3982   // Search the switch body for the switch case and evaluate it from there.
3983   switch (EvalStmtResult ESR = EvaluateStmt(Result, Info, SS->getBody(), Found)) {
3984   case ESR_Break:
3985     return ESR_Succeeded;
3986   case ESR_Succeeded:
3987   case ESR_Continue:
3988   case ESR_Failed:
3989   case ESR_Returned:
3990     return ESR;
3991   case ESR_CaseNotFound:
3992     // This can only happen if the switch case is nested within a statement
3993     // expression. We have no intention of supporting that.
3994     Info.FFDiag(Found->getBeginLoc(),
3995                 diag::note_constexpr_stmt_expr_unsupported);
3996     return ESR_Failed;
3997   }
3998   llvm_unreachable("Invalid EvalStmtResult!");
3999 }
4000 
4001 // Evaluate a statement.
4002 static EvalStmtResult EvaluateStmt(StmtResult &Result, EvalInfo &Info,
4003                                    const Stmt *S, const SwitchCase *Case) {
4004   if (!Info.nextStep(S))
4005     return ESR_Failed;
4006 
4007   // If we're hunting down a 'case' or 'default' label, recurse through
4008   // substatements until we hit the label.
4009   if (Case) {
4010     // FIXME: We don't start the lifetime of objects whose initialization we
4011     // jump over. However, such objects must be of class type with a trivial
4012     // default constructor that initialize all subobjects, so must be empty,
4013     // so this almost never matters.
4014     switch (S->getStmtClass()) {
4015     case Stmt::CompoundStmtClass:
4016       // FIXME: Precompute which substatement of a compound statement we
4017       // would jump to, and go straight there rather than performing a
4018       // linear scan each time.
4019     case Stmt::LabelStmtClass:
4020     case Stmt::AttributedStmtClass:
4021     case Stmt::DoStmtClass:
4022       break;
4023 
4024     case Stmt::CaseStmtClass:
4025     case Stmt::DefaultStmtClass:
4026       if (Case == S)
4027         Case = nullptr;
4028       break;
4029 
4030     case Stmt::IfStmtClass: {
4031       // FIXME: Precompute which side of an 'if' we would jump to, and go
4032       // straight there rather than scanning both sides.
4033       const IfStmt *IS = cast<IfStmt>(S);
4034 
4035       // Wrap the evaluation in a block scope, in case it's a DeclStmt
4036       // preceded by our switch label.
4037       BlockScopeRAII Scope(Info);
4038 
4039       EvalStmtResult ESR = EvaluateStmt(Result, Info, IS->getThen(), Case);
4040       if (ESR != ESR_CaseNotFound || !IS->getElse())
4041         return ESR;
4042       return EvaluateStmt(Result, Info, IS->getElse(), Case);
4043     }
4044 
4045     case Stmt::WhileStmtClass: {
4046       EvalStmtResult ESR =
4047           EvaluateLoopBody(Result, Info, cast<WhileStmt>(S)->getBody(), Case);
4048       if (ESR != ESR_Continue)
4049         return ESR;
4050       break;
4051     }
4052 
4053     case Stmt::ForStmtClass: {
4054       const ForStmt *FS = cast<ForStmt>(S);
4055       EvalStmtResult ESR =
4056           EvaluateLoopBody(Result, Info, FS->getBody(), Case);
4057       if (ESR != ESR_Continue)
4058         return ESR;
4059       if (FS->getInc()) {
4060         FullExpressionRAII IncScope(Info);
4061         if (!EvaluateIgnoredValue(Info, FS->getInc()))
4062           return ESR_Failed;
4063       }
4064       break;
4065     }
4066 
4067     case Stmt::DeclStmtClass:
4068       // FIXME: If the variable has initialization that can't be jumped over,
4069       // bail out of any immediately-surrounding compound-statement too.
4070     default:
4071       return ESR_CaseNotFound;
4072     }
4073   }
4074 
4075   switch (S->getStmtClass()) {
4076   default:
4077     if (const Expr *E = dyn_cast<Expr>(S)) {
4078       // Don't bother evaluating beyond an expression-statement which couldn't
4079       // be evaluated.
4080       FullExpressionRAII Scope(Info);
4081       if (!EvaluateIgnoredValue(Info, E))
4082         return ESR_Failed;
4083       return ESR_Succeeded;
4084     }
4085 
4086     Info.FFDiag(S->getBeginLoc());
4087     return ESR_Failed;
4088 
4089   case Stmt::NullStmtClass:
4090     return ESR_Succeeded;
4091 
4092   case Stmt::DeclStmtClass: {
4093     const DeclStmt *DS = cast<DeclStmt>(S);
4094     for (const auto *DclIt : DS->decls()) {
4095       // Each declaration initialization is its own full-expression.
4096       // FIXME: This isn't quite right; if we're performing aggregate
4097       // initialization, each braced subexpression is its own full-expression.
4098       FullExpressionRAII Scope(Info);
4099       if (!EvaluateDecl(Info, DclIt) && !Info.noteFailure())
4100         return ESR_Failed;
4101     }
4102     return ESR_Succeeded;
4103   }
4104 
4105   case Stmt::ReturnStmtClass: {
4106     const Expr *RetExpr = cast<ReturnStmt>(S)->getRetValue();
4107     FullExpressionRAII Scope(Info);
4108     if (RetExpr &&
4109         !(Result.Slot
4110               ? EvaluateInPlace(Result.Value, Info, *Result.Slot, RetExpr)
4111               : Evaluate(Result.Value, Info, RetExpr)))
4112       return ESR_Failed;
4113     return ESR_Returned;
4114   }
4115 
4116   case Stmt::CompoundStmtClass: {
4117     BlockScopeRAII Scope(Info);
4118 
4119     const CompoundStmt *CS = cast<CompoundStmt>(S);
4120     for (const auto *BI : CS->body()) {
4121       EvalStmtResult ESR = EvaluateStmt(Result, Info, BI, Case);
4122       if (ESR == ESR_Succeeded)
4123         Case = nullptr;
4124       else if (ESR != ESR_CaseNotFound)
4125         return ESR;
4126     }
4127     return Case ? ESR_CaseNotFound : ESR_Succeeded;
4128   }
4129 
4130   case Stmt::IfStmtClass: {
4131     const IfStmt *IS = cast<IfStmt>(S);
4132 
4133     // Evaluate the condition, as either a var decl or as an expression.
4134     BlockScopeRAII Scope(Info);
4135     if (const Stmt *Init = IS->getInit()) {
4136       EvalStmtResult ESR = EvaluateStmt(Result, Info, Init);
4137       if (ESR != ESR_Succeeded)
4138         return ESR;
4139     }
4140     bool Cond;
4141     if (!EvaluateCond(Info, IS->getConditionVariable(), IS->getCond(), Cond))
4142       return ESR_Failed;
4143 
4144     if (const Stmt *SubStmt = Cond ? IS->getThen() : IS->getElse()) {
4145       EvalStmtResult ESR = EvaluateStmt(Result, Info, SubStmt);
4146       if (ESR != ESR_Succeeded)
4147         return ESR;
4148     }
4149     return ESR_Succeeded;
4150   }
4151 
4152   case Stmt::WhileStmtClass: {
4153     const WhileStmt *WS = cast<WhileStmt>(S);
4154     while (true) {
4155       BlockScopeRAII Scope(Info);
4156       bool Continue;
4157       if (!EvaluateCond(Info, WS->getConditionVariable(), WS->getCond(),
4158                         Continue))
4159         return ESR_Failed;
4160       if (!Continue)
4161         break;
4162 
4163       EvalStmtResult ESR = EvaluateLoopBody(Result, Info, WS->getBody());
4164       if (ESR != ESR_Continue)
4165         return ESR;
4166     }
4167     return ESR_Succeeded;
4168   }
4169 
4170   case Stmt::DoStmtClass: {
4171     const DoStmt *DS = cast<DoStmt>(S);
4172     bool Continue;
4173     do {
4174       EvalStmtResult ESR = EvaluateLoopBody(Result, Info, DS->getBody(), Case);
4175       if (ESR != ESR_Continue)
4176         return ESR;
4177       Case = nullptr;
4178 
4179       FullExpressionRAII CondScope(Info);
4180       if (!EvaluateAsBooleanCondition(DS->getCond(), Continue, Info))
4181         return ESR_Failed;
4182     } while (Continue);
4183     return ESR_Succeeded;
4184   }
4185 
4186   case Stmt::ForStmtClass: {
4187     const ForStmt *FS = cast<ForStmt>(S);
4188     BlockScopeRAII Scope(Info);
4189     if (FS->getInit()) {
4190       EvalStmtResult ESR = EvaluateStmt(Result, Info, FS->getInit());
4191       if (ESR != ESR_Succeeded)
4192         return ESR;
4193     }
4194     while (true) {
4195       BlockScopeRAII Scope(Info);
4196       bool Continue = true;
4197       if (FS->getCond() && !EvaluateCond(Info, FS->getConditionVariable(),
4198                                          FS->getCond(), Continue))
4199         return ESR_Failed;
4200       if (!Continue)
4201         break;
4202 
4203       EvalStmtResult ESR = EvaluateLoopBody(Result, Info, FS->getBody());
4204       if (ESR != ESR_Continue)
4205         return ESR;
4206 
4207       if (FS->getInc()) {
4208         FullExpressionRAII IncScope(Info);
4209         if (!EvaluateIgnoredValue(Info, FS->getInc()))
4210           return ESR_Failed;
4211       }
4212     }
4213     return ESR_Succeeded;
4214   }
4215 
4216   case Stmt::CXXForRangeStmtClass: {
4217     const CXXForRangeStmt *FS = cast<CXXForRangeStmt>(S);
4218     BlockScopeRAII Scope(Info);
4219 
4220     // Initialize the __range variable.
4221     EvalStmtResult ESR = EvaluateStmt(Result, Info, FS->getRangeStmt());
4222     if (ESR != ESR_Succeeded)
4223       return ESR;
4224 
4225     // Create the __begin and __end iterators.
4226     ESR = EvaluateStmt(Result, Info, FS->getBeginStmt());
4227     if (ESR != ESR_Succeeded)
4228       return ESR;
4229     ESR = EvaluateStmt(Result, Info, FS->getEndStmt());
4230     if (ESR != ESR_Succeeded)
4231       return ESR;
4232 
4233     while (true) {
4234       // Condition: __begin != __end.
4235       {
4236         bool Continue = true;
4237         FullExpressionRAII CondExpr(Info);
4238         if (!EvaluateAsBooleanCondition(FS->getCond(), Continue, Info))
4239           return ESR_Failed;
4240         if (!Continue)
4241           break;
4242       }
4243 
4244       // User's variable declaration, initialized by *__begin.
4245       BlockScopeRAII InnerScope(Info);
4246       ESR = EvaluateStmt(Result, Info, FS->getLoopVarStmt());
4247       if (ESR != ESR_Succeeded)
4248         return ESR;
4249 
4250       // Loop body.
4251       ESR = EvaluateLoopBody(Result, Info, FS->getBody());
4252       if (ESR != ESR_Continue)
4253         return ESR;
4254 
4255       // Increment: ++__begin
4256       if (!EvaluateIgnoredValue(Info, FS->getInc()))
4257         return ESR_Failed;
4258     }
4259 
4260     return ESR_Succeeded;
4261   }
4262 
4263   case Stmt::SwitchStmtClass:
4264     return EvaluateSwitch(Result, Info, cast<SwitchStmt>(S));
4265 
4266   case Stmt::ContinueStmtClass:
4267     return ESR_Continue;
4268 
4269   case Stmt::BreakStmtClass:
4270     return ESR_Break;
4271 
4272   case Stmt::LabelStmtClass:
4273     return EvaluateStmt(Result, Info, cast<LabelStmt>(S)->getSubStmt(), Case);
4274 
4275   case Stmt::AttributedStmtClass:
4276     // As a general principle, C++11 attributes can be ignored without
4277     // any semantic impact.
4278     return EvaluateStmt(Result, Info, cast<AttributedStmt>(S)->getSubStmt(),
4279                         Case);
4280 
4281   case Stmt::CaseStmtClass:
4282   case Stmt::DefaultStmtClass:
4283     return EvaluateStmt(Result, Info, cast<SwitchCase>(S)->getSubStmt(), Case);
4284   }
4285 }
4286 
4287 /// CheckTrivialDefaultConstructor - Check whether a constructor is a trivial
4288 /// default constructor. If so, we'll fold it whether or not it's marked as
4289 /// constexpr. If it is marked as constexpr, we will never implicitly define it,
4290 /// so we need special handling.
4291 static bool CheckTrivialDefaultConstructor(EvalInfo &Info, SourceLocation Loc,
4292                                            const CXXConstructorDecl *CD,
4293                                            bool IsValueInitialization) {
4294   if (!CD->isTrivial() || !CD->isDefaultConstructor())
4295     return false;
4296 
4297   // Value-initialization does not call a trivial default constructor, so such a
4298   // call is a core constant expression whether or not the constructor is
4299   // constexpr.
4300   if (!CD->isConstexpr() && !IsValueInitialization) {
4301     if (Info.getLangOpts().CPlusPlus11) {
4302       // FIXME: If DiagDecl is an implicitly-declared special member function,
4303       // we should be much more explicit about why it's not constexpr.
4304       Info.CCEDiag(Loc, diag::note_constexpr_invalid_function, 1)
4305         << /*IsConstexpr*/0 << /*IsConstructor*/1 << CD;
4306       Info.Note(CD->getLocation(), diag::note_declared_at);
4307     } else {
4308       Info.CCEDiag(Loc, diag::note_invalid_subexpr_in_const_expr);
4309     }
4310   }
4311   return true;
4312 }
4313 
4314 /// CheckConstexprFunction - Check that a function can be called in a constant
4315 /// expression.
4316 static bool CheckConstexprFunction(EvalInfo &Info, SourceLocation CallLoc,
4317                                    const FunctionDecl *Declaration,
4318                                    const FunctionDecl *Definition,
4319                                    const Stmt *Body) {
4320   // Potential constant expressions can contain calls to declared, but not yet
4321   // defined, constexpr functions.
4322   if (Info.checkingPotentialConstantExpression() && !Definition &&
4323       Declaration->isConstexpr())
4324     return false;
4325 
4326   // Bail out with no diagnostic if the function declaration itself is invalid.
4327   // We will have produced a relevant diagnostic while parsing it.
4328   if (Declaration->isInvalidDecl())
4329     return false;
4330 
4331   // Can we evaluate this function call?
4332   if (Definition && Definition->isConstexpr() &&
4333       !Definition->isInvalidDecl() && Body)
4334     return true;
4335 
4336   if (Info.getLangOpts().CPlusPlus11) {
4337     const FunctionDecl *DiagDecl = Definition ? Definition : Declaration;
4338 
4339     // If this function is not constexpr because it is an inherited
4340     // non-constexpr constructor, diagnose that directly.
4341     auto *CD = dyn_cast<CXXConstructorDecl>(DiagDecl);
4342     if (CD && CD->isInheritingConstructor()) {
4343       auto *Inherited = CD->getInheritedConstructor().getConstructor();
4344       if (!Inherited->isConstexpr())
4345         DiagDecl = CD = Inherited;
4346     }
4347 
4348     // FIXME: If DiagDecl is an implicitly-declared special member function
4349     // or an inheriting constructor, we should be much more explicit about why
4350     // it's not constexpr.
4351     if (CD && CD->isInheritingConstructor())
4352       Info.FFDiag(CallLoc, diag::note_constexpr_invalid_inhctor, 1)
4353         << CD->getInheritedConstructor().getConstructor()->getParent();
4354     else
4355       Info.FFDiag(CallLoc, diag::note_constexpr_invalid_function, 1)
4356         << DiagDecl->isConstexpr() << (bool)CD << DiagDecl;
4357     Info.Note(DiagDecl->getLocation(), diag::note_declared_at);
4358   } else {
4359     Info.FFDiag(CallLoc, diag::note_invalid_subexpr_in_const_expr);
4360   }
4361   return false;
4362 }
4363 
4364 /// Determine if a class has any fields that might need to be copied by a
4365 /// trivial copy or move operation.
4366 static bool hasFields(const CXXRecordDecl *RD) {
4367   if (!RD || RD->isEmpty())
4368     return false;
4369   for (auto *FD : RD->fields()) {
4370     if (FD->isUnnamedBitfield())
4371       continue;
4372     return true;
4373   }
4374   for (auto &Base : RD->bases())
4375     if (hasFields(Base.getType()->getAsCXXRecordDecl()))
4376       return true;
4377   return false;
4378 }
4379 
4380 namespace {
4381 typedef SmallVector<APValue, 8> ArgVector;
4382 }
4383 
4384 /// EvaluateArgs - Evaluate the arguments to a function call.
4385 static bool EvaluateArgs(ArrayRef<const Expr*> Args, ArgVector &ArgValues,
4386                          EvalInfo &Info) {
4387   bool Success = true;
4388   for (ArrayRef<const Expr*>::iterator I = Args.begin(), E = Args.end();
4389        I != E; ++I) {
4390     if (!Evaluate(ArgValues[I - Args.begin()], Info, *I)) {
4391       // If we're checking for a potential constant expression, evaluate all
4392       // initializers even if some of them fail.
4393       if (!Info.noteFailure())
4394         return false;
4395       Success = false;
4396     }
4397   }
4398   return Success;
4399 }
4400 
4401 /// Evaluate a function call.
4402 static bool HandleFunctionCall(SourceLocation CallLoc,
4403                                const FunctionDecl *Callee, const LValue *This,
4404                                ArrayRef<const Expr*> Args, const Stmt *Body,
4405                                EvalInfo &Info, APValue &Result,
4406                                const LValue *ResultSlot) {
4407   ArgVector ArgValues(Args.size());
4408   if (!EvaluateArgs(Args, ArgValues, Info))
4409     return false;
4410 
4411   if (!Info.CheckCallLimit(CallLoc))
4412     return false;
4413 
4414   CallStackFrame Frame(Info, CallLoc, Callee, This, ArgValues.data());
4415 
4416   // For a trivial copy or move assignment, perform an APValue copy. This is
4417   // essential for unions, where the operations performed by the assignment
4418   // operator cannot be represented as statements.
4419   //
4420   // Skip this for non-union classes with no fields; in that case, the defaulted
4421   // copy/move does not actually read the object.
4422   const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Callee);
4423   if (MD && MD->isDefaulted() &&
4424       (MD->getParent()->isUnion() ||
4425        (MD->isTrivial() && hasFields(MD->getParent())))) {
4426     assert(This &&
4427            (MD->isCopyAssignmentOperator() || MD->isMoveAssignmentOperator()));
4428     LValue RHS;
4429     RHS.setFrom(Info.Ctx, ArgValues[0]);
4430     APValue RHSValue;
4431     if (!handleLValueToRValueConversion(Info, Args[0], Args[0]->getType(),
4432                                         RHS, RHSValue))
4433       return false;
4434     if (!handleAssignment(Info, Args[0], *This, MD->getThisType(Info.Ctx),
4435                           RHSValue))
4436       return false;
4437     This->moveInto(Result);
4438     return true;
4439   } else if (MD && isLambdaCallOperator(MD)) {
4440     // We're in a lambda; determine the lambda capture field maps unless we're
4441     // just constexpr checking a lambda's call operator. constexpr checking is
4442     // done before the captures have been added to the closure object (unless
4443     // we're inferring constexpr-ness), so we don't have access to them in this
4444     // case. But since we don't need the captures to constexpr check, we can
4445     // just ignore them.
4446     if (!Info.checkingPotentialConstantExpression())
4447       MD->getParent()->getCaptureFields(Frame.LambdaCaptureFields,
4448                                         Frame.LambdaThisCaptureField);
4449   }
4450 
4451   StmtResult Ret = {Result, ResultSlot};
4452   EvalStmtResult ESR = EvaluateStmt(Ret, Info, Body);
4453   if (ESR == ESR_Succeeded) {
4454     if (Callee->getReturnType()->isVoidType())
4455       return true;
4456     Info.FFDiag(Callee->getEndLoc(), diag::note_constexpr_no_return);
4457   }
4458   return ESR == ESR_Returned;
4459 }
4460 
4461 /// Evaluate a constructor call.
4462 static bool HandleConstructorCall(const Expr *E, const LValue &This,
4463                                   APValue *ArgValues,
4464                                   const CXXConstructorDecl *Definition,
4465                                   EvalInfo &Info, APValue &Result) {
4466   SourceLocation CallLoc = E->getExprLoc();
4467   if (!Info.CheckCallLimit(CallLoc))
4468     return false;
4469 
4470   const CXXRecordDecl *RD = Definition->getParent();
4471   if (RD->getNumVBases()) {
4472     Info.FFDiag(CallLoc, diag::note_constexpr_virtual_base) << RD;
4473     return false;
4474   }
4475 
4476   EvalInfo::EvaluatingConstructorRAII EvalObj(
4477       Info, {This.getLValueBase(),
4478              {This.getLValueCallIndex(), This.getLValueVersion()}});
4479   CallStackFrame Frame(Info, CallLoc, Definition, &This, ArgValues);
4480 
4481   // FIXME: Creating an APValue just to hold a nonexistent return value is
4482   // wasteful.
4483   APValue RetVal;
4484   StmtResult Ret = {RetVal, nullptr};
4485 
4486   // If it's a delegating constructor, delegate.
4487   if (Definition->isDelegatingConstructor()) {
4488     CXXConstructorDecl::init_const_iterator I = Definition->init_begin();
4489     {
4490       FullExpressionRAII InitScope(Info);
4491       if (!EvaluateInPlace(Result, Info, This, (*I)->getInit()))
4492         return false;
4493     }
4494     return EvaluateStmt(Ret, Info, Definition->getBody()) != ESR_Failed;
4495   }
4496 
4497   // For a trivial copy or move constructor, perform an APValue copy. This is
4498   // essential for unions (or classes with anonymous union members), where the
4499   // operations performed by the constructor cannot be represented by
4500   // ctor-initializers.
4501   //
4502   // Skip this for empty non-union classes; we should not perform an
4503   // lvalue-to-rvalue conversion on them because their copy constructor does not
4504   // actually read them.
4505   if (Definition->isDefaulted() && Definition->isCopyOrMoveConstructor() &&
4506       (Definition->getParent()->isUnion() ||
4507        (Definition->isTrivial() && hasFields(Definition->getParent())))) {
4508     LValue RHS;
4509     RHS.setFrom(Info.Ctx, ArgValues[0]);
4510     return handleLValueToRValueConversion(
4511         Info, E, Definition->getParamDecl(0)->getType().getNonReferenceType(),
4512         RHS, Result);
4513   }
4514 
4515   // Reserve space for the struct members.
4516   if (!RD->isUnion() && Result.isUninit())
4517     Result = APValue(APValue::UninitStruct(), RD->getNumBases(),
4518                      std::distance(RD->field_begin(), RD->field_end()));
4519 
4520   if (RD->isInvalidDecl()) return false;
4521   const ASTRecordLayout &Layout = Info.Ctx.getASTRecordLayout(RD);
4522 
4523   // A scope for temporaries lifetime-extended by reference members.
4524   BlockScopeRAII LifetimeExtendedScope(Info);
4525 
4526   bool Success = true;
4527   unsigned BasesSeen = 0;
4528 #ifndef NDEBUG
4529   CXXRecordDecl::base_class_const_iterator BaseIt = RD->bases_begin();
4530 #endif
4531   for (const auto *I : Definition->inits()) {
4532     LValue Subobject = This;
4533     LValue SubobjectParent = This;
4534     APValue *Value = &Result;
4535 
4536     // Determine the subobject to initialize.
4537     FieldDecl *FD = nullptr;
4538     if (I->isBaseInitializer()) {
4539       QualType BaseType(I->getBaseClass(), 0);
4540 #ifndef NDEBUG
4541       // Non-virtual base classes are initialized in the order in the class
4542       // definition. We have already checked for virtual base classes.
4543       assert(!BaseIt->isVirtual() && "virtual base for literal type");
4544       assert(Info.Ctx.hasSameType(BaseIt->getType(), BaseType) &&
4545              "base class initializers not in expected order");
4546       ++BaseIt;
4547 #endif
4548       if (!HandleLValueDirectBase(Info, I->getInit(), Subobject, RD,
4549                                   BaseType->getAsCXXRecordDecl(), &Layout))
4550         return false;
4551       Value = &Result.getStructBase(BasesSeen++);
4552     } else if ((FD = I->getMember())) {
4553       if (!HandleLValueMember(Info, I->getInit(), Subobject, FD, &Layout))
4554         return false;
4555       if (RD->isUnion()) {
4556         Result = APValue(FD);
4557         Value = &Result.getUnionValue();
4558       } else {
4559         Value = &Result.getStructField(FD->getFieldIndex());
4560       }
4561     } else if (IndirectFieldDecl *IFD = I->getIndirectMember()) {
4562       // Walk the indirect field decl's chain to find the object to initialize,
4563       // and make sure we've initialized every step along it.
4564       auto IndirectFieldChain = IFD->chain();
4565       for (auto *C : IndirectFieldChain) {
4566         FD = cast<FieldDecl>(C);
4567         CXXRecordDecl *CD = cast<CXXRecordDecl>(FD->getParent());
4568         // Switch the union field if it differs. This happens if we had
4569         // preceding zero-initialization, and we're now initializing a union
4570         // subobject other than the first.
4571         // FIXME: In this case, the values of the other subobjects are
4572         // specified, since zero-initialization sets all padding bits to zero.
4573         if (Value->isUninit() ||
4574             (Value->isUnion() && Value->getUnionField() != FD)) {
4575           if (CD->isUnion())
4576             *Value = APValue(FD);
4577           else
4578             *Value = APValue(APValue::UninitStruct(), CD->getNumBases(),
4579                              std::distance(CD->field_begin(), CD->field_end()));
4580         }
4581         // Store Subobject as its parent before updating it for the last element
4582         // in the chain.
4583         if (C == IndirectFieldChain.back())
4584           SubobjectParent = Subobject;
4585         if (!HandleLValueMember(Info, I->getInit(), Subobject, FD))
4586           return false;
4587         if (CD->isUnion())
4588           Value = &Value->getUnionValue();
4589         else
4590           Value = &Value->getStructField(FD->getFieldIndex());
4591       }
4592     } else {
4593       llvm_unreachable("unknown base initializer kind");
4594     }
4595 
4596     // Need to override This for implicit field initializers as in this case
4597     // This refers to innermost anonymous struct/union containing initializer,
4598     // not to currently constructed class.
4599     const Expr *Init = I->getInit();
4600     ThisOverrideRAII ThisOverride(*Info.CurrentCall, &SubobjectParent,
4601                                   isa<CXXDefaultInitExpr>(Init));
4602     FullExpressionRAII InitScope(Info);
4603     if (!EvaluateInPlace(*Value, Info, Subobject, Init) ||
4604         (FD && FD->isBitField() &&
4605          !truncateBitfieldValue(Info, Init, *Value, FD))) {
4606       // If we're checking for a potential constant expression, evaluate all
4607       // initializers even if some of them fail.
4608       if (!Info.noteFailure())
4609         return false;
4610       Success = false;
4611     }
4612   }
4613 
4614   return Success &&
4615          EvaluateStmt(Ret, Info, Definition->getBody()) != ESR_Failed;
4616 }
4617 
4618 static bool HandleConstructorCall(const Expr *E, const LValue &This,
4619                                   ArrayRef<const Expr*> Args,
4620                                   const CXXConstructorDecl *Definition,
4621                                   EvalInfo &Info, APValue &Result) {
4622   ArgVector ArgValues(Args.size());
4623   if (!EvaluateArgs(Args, ArgValues, Info))
4624     return false;
4625 
4626   return HandleConstructorCall(E, This, ArgValues.data(), Definition,
4627                                Info, Result);
4628 }
4629 
4630 //===----------------------------------------------------------------------===//
4631 // Generic Evaluation
4632 //===----------------------------------------------------------------------===//
4633 namespace {
4634 
4635 template <class Derived>
4636 class ExprEvaluatorBase
4637   : public ConstStmtVisitor<Derived, bool> {
4638 private:
4639   Derived &getDerived() { return static_cast<Derived&>(*this); }
4640   bool DerivedSuccess(const APValue &V, const Expr *E) {
4641     return getDerived().Success(V, E);
4642   }
4643   bool DerivedZeroInitialization(const Expr *E) {
4644     return getDerived().ZeroInitialization(E);
4645   }
4646 
4647   // Check whether a conditional operator with a non-constant condition is a
4648   // potential constant expression. If neither arm is a potential constant
4649   // expression, then the conditional operator is not either.
4650   template<typename ConditionalOperator>
4651   void CheckPotentialConstantConditional(const ConditionalOperator *E) {
4652     assert(Info.checkingPotentialConstantExpression());
4653 
4654     // Speculatively evaluate both arms.
4655     SmallVector<PartialDiagnosticAt, 8> Diag;
4656     {
4657       SpeculativeEvaluationRAII Speculate(Info, &Diag);
4658       StmtVisitorTy::Visit(E->getFalseExpr());
4659       if (Diag.empty())
4660         return;
4661     }
4662 
4663     {
4664       SpeculativeEvaluationRAII Speculate(Info, &Diag);
4665       Diag.clear();
4666       StmtVisitorTy::Visit(E->getTrueExpr());
4667       if (Diag.empty())
4668         return;
4669     }
4670 
4671     Error(E, diag::note_constexpr_conditional_never_const);
4672   }
4673 
4674 
4675   template<typename ConditionalOperator>
4676   bool HandleConditionalOperator(const ConditionalOperator *E) {
4677     bool BoolResult;
4678     if (!EvaluateAsBooleanCondition(E->getCond(), BoolResult, Info)) {
4679       if (Info.checkingPotentialConstantExpression() && Info.noteFailure()) {
4680         CheckPotentialConstantConditional(E);
4681         return false;
4682       }
4683       if (Info.noteFailure()) {
4684         StmtVisitorTy::Visit(E->getTrueExpr());
4685         StmtVisitorTy::Visit(E->getFalseExpr());
4686       }
4687       return false;
4688     }
4689 
4690     Expr *EvalExpr = BoolResult ? E->getTrueExpr() : E->getFalseExpr();
4691     return StmtVisitorTy::Visit(EvalExpr);
4692   }
4693 
4694 protected:
4695   EvalInfo &Info;
4696   typedef ConstStmtVisitor<Derived, bool> StmtVisitorTy;
4697   typedef ExprEvaluatorBase ExprEvaluatorBaseTy;
4698 
4699   OptionalDiagnostic CCEDiag(const Expr *E, diag::kind D) {
4700     return Info.CCEDiag(E, D);
4701   }
4702 
4703   bool ZeroInitialization(const Expr *E) { return Error(E); }
4704 
4705 public:
4706   ExprEvaluatorBase(EvalInfo &Info) : Info(Info) {}
4707 
4708   EvalInfo &getEvalInfo() { return Info; }
4709 
4710   /// Report an evaluation error. This should only be called when an error is
4711   /// first discovered. When propagating an error, just return false.
4712   bool Error(const Expr *E, diag::kind D) {
4713     Info.FFDiag(E, D);
4714     return false;
4715   }
4716   bool Error(const Expr *E) {
4717     return Error(E, diag::note_invalid_subexpr_in_const_expr);
4718   }
4719 
4720   bool VisitStmt(const Stmt *) {
4721     llvm_unreachable("Expression evaluator should not be called on stmts");
4722   }
4723   bool VisitExpr(const Expr *E) {
4724     return Error(E);
4725   }
4726 
4727   bool VisitParenExpr(const ParenExpr *E)
4728     { return StmtVisitorTy::Visit(E->getSubExpr()); }
4729   bool VisitUnaryExtension(const UnaryOperator *E)
4730     { return StmtVisitorTy::Visit(E->getSubExpr()); }
4731   bool VisitUnaryPlus(const UnaryOperator *E)
4732     { return StmtVisitorTy::Visit(E->getSubExpr()); }
4733   bool VisitChooseExpr(const ChooseExpr *E)
4734     { return StmtVisitorTy::Visit(E->getChosenSubExpr()); }
4735   bool VisitGenericSelectionExpr(const GenericSelectionExpr *E)
4736     { return StmtVisitorTy::Visit(E->getResultExpr()); }
4737   bool VisitSubstNonTypeTemplateParmExpr(const SubstNonTypeTemplateParmExpr *E)
4738     { return StmtVisitorTy::Visit(E->getReplacement()); }
4739   bool VisitCXXDefaultArgExpr(const CXXDefaultArgExpr *E) {
4740     TempVersionRAII RAII(*Info.CurrentCall);
4741     return StmtVisitorTy::Visit(E->getExpr());
4742   }
4743   bool VisitCXXDefaultInitExpr(const CXXDefaultInitExpr *E) {
4744     TempVersionRAII RAII(*Info.CurrentCall);
4745     // The initializer may not have been parsed yet, or might be erroneous.
4746     if (!E->getExpr())
4747       return Error(E);
4748     return StmtVisitorTy::Visit(E->getExpr());
4749   }
4750   // We cannot create any objects for which cleanups are required, so there is
4751   // nothing to do here; all cleanups must come from unevaluated subexpressions.
4752   bool VisitExprWithCleanups(const ExprWithCleanups *E)
4753     { return StmtVisitorTy::Visit(E->getSubExpr()); }
4754 
4755   bool VisitCXXReinterpretCastExpr(const CXXReinterpretCastExpr *E) {
4756     CCEDiag(E, diag::note_constexpr_invalid_cast) << 0;
4757     return static_cast<Derived*>(this)->VisitCastExpr(E);
4758   }
4759   bool VisitCXXDynamicCastExpr(const CXXDynamicCastExpr *E) {
4760     CCEDiag(E, diag::note_constexpr_invalid_cast) << 1;
4761     return static_cast<Derived*>(this)->VisitCastExpr(E);
4762   }
4763 
4764   bool VisitBinaryOperator(const BinaryOperator *E) {
4765     switch (E->getOpcode()) {
4766     default:
4767       return Error(E);
4768 
4769     case BO_Comma:
4770       VisitIgnoredValue(E->getLHS());
4771       return StmtVisitorTy::Visit(E->getRHS());
4772 
4773     case BO_PtrMemD:
4774     case BO_PtrMemI: {
4775       LValue Obj;
4776       if (!HandleMemberPointerAccess(Info, E, Obj))
4777         return false;
4778       APValue Result;
4779       if (!handleLValueToRValueConversion(Info, E, E->getType(), Obj, Result))
4780         return false;
4781       return DerivedSuccess(Result, E);
4782     }
4783     }
4784   }
4785 
4786   bool VisitBinaryConditionalOperator(const BinaryConditionalOperator *E) {
4787     // Evaluate and cache the common expression. We treat it as a temporary,
4788     // even though it's not quite the same thing.
4789     if (!Evaluate(Info.CurrentCall->createTemporary(E->getOpaqueValue(), false),
4790                   Info, E->getCommon()))
4791       return false;
4792 
4793     return HandleConditionalOperator(E);
4794   }
4795 
4796   bool VisitConditionalOperator(const ConditionalOperator *E) {
4797     bool IsBcpCall = false;
4798     // If the condition (ignoring parens) is a __builtin_constant_p call,
4799     // the result is a constant expression if it can be folded without
4800     // side-effects. This is an important GNU extension. See GCC PR38377
4801     // for discussion.
4802     if (const CallExpr *CallCE =
4803           dyn_cast<CallExpr>(E->getCond()->IgnoreParenCasts()))
4804       if (CallCE->getBuiltinCallee() == Builtin::BI__builtin_constant_p)
4805         IsBcpCall = true;
4806 
4807     // Always assume __builtin_constant_p(...) ? ... : ... is a potential
4808     // constant expression; we can't check whether it's potentially foldable.
4809     if (Info.checkingPotentialConstantExpression() && IsBcpCall)
4810       return false;
4811 
4812     FoldConstant Fold(Info, IsBcpCall);
4813     if (!HandleConditionalOperator(E)) {
4814       Fold.keepDiagnostics();
4815       return false;
4816     }
4817 
4818     return true;
4819   }
4820 
4821   bool VisitOpaqueValueExpr(const OpaqueValueExpr *E) {
4822     if (APValue *Value = Info.CurrentCall->getCurrentTemporary(E))
4823       return DerivedSuccess(*Value, E);
4824 
4825     const Expr *Source = E->getSourceExpr();
4826     if (!Source)
4827       return Error(E);
4828     if (Source == E) { // sanity checking.
4829       assert(0 && "OpaqueValueExpr recursively refers to itself");
4830       return Error(E);
4831     }
4832     return StmtVisitorTy::Visit(Source);
4833   }
4834 
4835   bool VisitCallExpr(const CallExpr *E) {
4836     APValue Result;
4837     if (!handleCallExpr(E, Result, nullptr))
4838       return false;
4839     return DerivedSuccess(Result, E);
4840   }
4841 
4842   bool handleCallExpr(const CallExpr *E, APValue &Result,
4843                      const LValue *ResultSlot) {
4844     const Expr *Callee = E->getCallee()->IgnoreParens();
4845     QualType CalleeType = Callee->getType();
4846 
4847     const FunctionDecl *FD = nullptr;
4848     LValue *This = nullptr, ThisVal;
4849     auto Args = llvm::makeArrayRef(E->getArgs(), E->getNumArgs());
4850     bool HasQualifier = false;
4851 
4852     // Extract function decl and 'this' pointer from the callee.
4853     if (CalleeType->isSpecificBuiltinType(BuiltinType::BoundMember)) {
4854       const ValueDecl *Member = nullptr;
4855       if (const MemberExpr *ME = dyn_cast<MemberExpr>(Callee)) {
4856         // Explicit bound member calls, such as x.f() or p->g();
4857         if (!EvaluateObjectArgument(Info, ME->getBase(), ThisVal))
4858           return false;
4859         Member = ME->getMemberDecl();
4860         This = &ThisVal;
4861         HasQualifier = ME->hasQualifier();
4862       } else if (const BinaryOperator *BE = dyn_cast<BinaryOperator>(Callee)) {
4863         // Indirect bound member calls ('.*' or '->*').
4864         Member = HandleMemberPointerAccess(Info, BE, ThisVal, false);
4865         if (!Member) return false;
4866         This = &ThisVal;
4867       } else
4868         return Error(Callee);
4869 
4870       FD = dyn_cast<FunctionDecl>(Member);
4871       if (!FD)
4872         return Error(Callee);
4873     } else if (CalleeType->isFunctionPointerType()) {
4874       LValue Call;
4875       if (!EvaluatePointer(Callee, Call, Info))
4876         return false;
4877 
4878       if (!Call.getLValueOffset().isZero())
4879         return Error(Callee);
4880       FD = dyn_cast_or_null<FunctionDecl>(
4881                              Call.getLValueBase().dyn_cast<const ValueDecl*>());
4882       if (!FD)
4883         return Error(Callee);
4884       // Don't call function pointers which have been cast to some other type.
4885       // Per DR (no number yet), the caller and callee can differ in noexcept.
4886       if (!Info.Ctx.hasSameFunctionTypeIgnoringExceptionSpec(
4887         CalleeType->getPointeeType(), FD->getType())) {
4888         return Error(E);
4889       }
4890 
4891       // Overloaded operator calls to member functions are represented as normal
4892       // calls with '*this' as the first argument.
4893       const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD);
4894       if (MD && !MD->isStatic()) {
4895         // FIXME: When selecting an implicit conversion for an overloaded
4896         // operator delete, we sometimes try to evaluate calls to conversion
4897         // operators without a 'this' parameter!
4898         if (Args.empty())
4899           return Error(E);
4900 
4901         if (!EvaluateObjectArgument(Info, Args[0], ThisVal))
4902           return false;
4903         This = &ThisVal;
4904         Args = Args.slice(1);
4905       } else if (MD && MD->isLambdaStaticInvoker()) {
4906         // Map the static invoker for the lambda back to the call operator.
4907         // Conveniently, we don't have to slice out the 'this' argument (as is
4908         // being done for the non-static case), since a static member function
4909         // doesn't have an implicit argument passed in.
4910         const CXXRecordDecl *ClosureClass = MD->getParent();
4911         assert(
4912             ClosureClass->captures_begin() == ClosureClass->captures_end() &&
4913             "Number of captures must be zero for conversion to function-ptr");
4914 
4915         const CXXMethodDecl *LambdaCallOp =
4916             ClosureClass->getLambdaCallOperator();
4917 
4918         // Set 'FD', the function that will be called below, to the call
4919         // operator.  If the closure object represents a generic lambda, find
4920         // the corresponding specialization of the call operator.
4921 
4922         if (ClosureClass->isGenericLambda()) {
4923           assert(MD->isFunctionTemplateSpecialization() &&
4924                  "A generic lambda's static-invoker function must be a "
4925                  "template specialization");
4926           const TemplateArgumentList *TAL = MD->getTemplateSpecializationArgs();
4927           FunctionTemplateDecl *CallOpTemplate =
4928               LambdaCallOp->getDescribedFunctionTemplate();
4929           void *InsertPos = nullptr;
4930           FunctionDecl *CorrespondingCallOpSpecialization =
4931               CallOpTemplate->findSpecialization(TAL->asArray(), InsertPos);
4932           assert(CorrespondingCallOpSpecialization &&
4933                  "We must always have a function call operator specialization "
4934                  "that corresponds to our static invoker specialization");
4935           FD = cast<CXXMethodDecl>(CorrespondingCallOpSpecialization);
4936         } else
4937           FD = LambdaCallOp;
4938       }
4939 
4940 
4941     } else
4942       return Error(E);
4943 
4944     if (This && !This->checkSubobject(Info, E, CSK_This))
4945       return false;
4946 
4947     // DR1358 allows virtual constexpr functions in some cases. Don't allow
4948     // calls to such functions in constant expressions.
4949     if (This && !HasQualifier &&
4950         isa<CXXMethodDecl>(FD) && cast<CXXMethodDecl>(FD)->isVirtual())
4951       return Error(E, diag::note_constexpr_virtual_call);
4952 
4953     const FunctionDecl *Definition = nullptr;
4954     Stmt *Body = FD->getBody(Definition);
4955 
4956     if (!CheckConstexprFunction(Info, E->getExprLoc(), FD, Definition, Body) ||
4957         !HandleFunctionCall(E->getExprLoc(), Definition, This, Args, Body, Info,
4958                             Result, ResultSlot))
4959       return false;
4960 
4961     return true;
4962   }
4963 
4964   bool VisitCompoundLiteralExpr(const CompoundLiteralExpr *E) {
4965     return StmtVisitorTy::Visit(E->getInitializer());
4966   }
4967   bool VisitInitListExpr(const InitListExpr *E) {
4968     if (E->getNumInits() == 0)
4969       return DerivedZeroInitialization(E);
4970     if (E->getNumInits() == 1)
4971       return StmtVisitorTy::Visit(E->getInit(0));
4972     return Error(E);
4973   }
4974   bool VisitImplicitValueInitExpr(const ImplicitValueInitExpr *E) {
4975     return DerivedZeroInitialization(E);
4976   }
4977   bool VisitCXXScalarValueInitExpr(const CXXScalarValueInitExpr *E) {
4978     return DerivedZeroInitialization(E);
4979   }
4980   bool VisitCXXNullPtrLiteralExpr(const CXXNullPtrLiteralExpr *E) {
4981     return DerivedZeroInitialization(E);
4982   }
4983 
4984   /// A member expression where the object is a prvalue is itself a prvalue.
4985   bool VisitMemberExpr(const MemberExpr *E) {
4986     assert(!E->isArrow() && "missing call to bound member function?");
4987 
4988     APValue Val;
4989     if (!Evaluate(Val, Info, E->getBase()))
4990       return false;
4991 
4992     QualType BaseTy = E->getBase()->getType();
4993 
4994     const FieldDecl *FD = dyn_cast<FieldDecl>(E->getMemberDecl());
4995     if (!FD) return Error(E);
4996     assert(!FD->getType()->isReferenceType() && "prvalue reference?");
4997     assert(BaseTy->castAs<RecordType>()->getDecl()->getCanonicalDecl() ==
4998            FD->getParent()->getCanonicalDecl() && "record / field mismatch");
4999 
5000     CompleteObject Obj(&Val, BaseTy, true);
5001     SubobjectDesignator Designator(BaseTy);
5002     Designator.addDeclUnchecked(FD);
5003 
5004     APValue Result;
5005     return extractSubobject(Info, E, Obj, Designator, Result) &&
5006            DerivedSuccess(Result, E);
5007   }
5008 
5009   bool VisitCastExpr(const CastExpr *E) {
5010     switch (E->getCastKind()) {
5011     default:
5012       break;
5013 
5014     case CK_AtomicToNonAtomic: {
5015       APValue AtomicVal;
5016       // This does not need to be done in place even for class/array types:
5017       // atomic-to-non-atomic conversion implies copying the object
5018       // representation.
5019       if (!Evaluate(AtomicVal, Info, E->getSubExpr()))
5020         return false;
5021       return DerivedSuccess(AtomicVal, E);
5022     }
5023 
5024     case CK_NoOp:
5025     case CK_UserDefinedConversion:
5026       return StmtVisitorTy::Visit(E->getSubExpr());
5027 
5028     case CK_LValueToRValue: {
5029       LValue LVal;
5030       if (!EvaluateLValue(E->getSubExpr(), LVal, Info))
5031         return false;
5032       APValue RVal;
5033       // Note, we use the subexpression's type in order to retain cv-qualifiers.
5034       if (!handleLValueToRValueConversion(Info, E, E->getSubExpr()->getType(),
5035                                           LVal, RVal))
5036         return false;
5037       return DerivedSuccess(RVal, E);
5038     }
5039     }
5040 
5041     return Error(E);
5042   }
5043 
5044   bool VisitUnaryPostInc(const UnaryOperator *UO) {
5045     return VisitUnaryPostIncDec(UO);
5046   }
5047   bool VisitUnaryPostDec(const UnaryOperator *UO) {
5048     return VisitUnaryPostIncDec(UO);
5049   }
5050   bool VisitUnaryPostIncDec(const UnaryOperator *UO) {
5051     if (!Info.getLangOpts().CPlusPlus14 && !Info.keepEvaluatingAfterFailure())
5052       return Error(UO);
5053 
5054     LValue LVal;
5055     if (!EvaluateLValue(UO->getSubExpr(), LVal, Info))
5056       return false;
5057     APValue RVal;
5058     if (!handleIncDec(this->Info, UO, LVal, UO->getSubExpr()->getType(),
5059                       UO->isIncrementOp(), &RVal))
5060       return false;
5061     return DerivedSuccess(RVal, UO);
5062   }
5063 
5064   bool VisitStmtExpr(const StmtExpr *E) {
5065     // We will have checked the full-expressions inside the statement expression
5066     // when they were completed, and don't need to check them again now.
5067     if (Info.checkingForOverflow())
5068       return Error(E);
5069 
5070     BlockScopeRAII Scope(Info);
5071     const CompoundStmt *CS = E->getSubStmt();
5072     if (CS->body_empty())
5073       return true;
5074 
5075     for (CompoundStmt::const_body_iterator BI = CS->body_begin(),
5076                                            BE = CS->body_end();
5077          /**/; ++BI) {
5078       if (BI + 1 == BE) {
5079         const Expr *FinalExpr = dyn_cast<Expr>(*BI);
5080         if (!FinalExpr) {
5081           Info.FFDiag((*BI)->getBeginLoc(),
5082                       diag::note_constexpr_stmt_expr_unsupported);
5083           return false;
5084         }
5085         return this->Visit(FinalExpr);
5086       }
5087 
5088       APValue ReturnValue;
5089       StmtResult Result = { ReturnValue, nullptr };
5090       EvalStmtResult ESR = EvaluateStmt(Result, Info, *BI);
5091       if (ESR != ESR_Succeeded) {
5092         // FIXME: If the statement-expression terminated due to 'return',
5093         // 'break', or 'continue', it would be nice to propagate that to
5094         // the outer statement evaluation rather than bailing out.
5095         if (ESR != ESR_Failed)
5096           Info.FFDiag((*BI)->getBeginLoc(),
5097                       diag::note_constexpr_stmt_expr_unsupported);
5098         return false;
5099       }
5100     }
5101 
5102     llvm_unreachable("Return from function from the loop above.");
5103   }
5104 
5105   /// Visit a value which is evaluated, but whose value is ignored.
5106   void VisitIgnoredValue(const Expr *E) {
5107     EvaluateIgnoredValue(Info, E);
5108   }
5109 
5110   /// Potentially visit a MemberExpr's base expression.
5111   void VisitIgnoredBaseExpression(const Expr *E) {
5112     // While MSVC doesn't evaluate the base expression, it does diagnose the
5113     // presence of side-effecting behavior.
5114     if (Info.getLangOpts().MSVCCompat && !E->HasSideEffects(Info.Ctx))
5115       return;
5116     VisitIgnoredValue(E);
5117   }
5118 };
5119 
5120 } // namespace
5121 
5122 //===----------------------------------------------------------------------===//
5123 // Common base class for lvalue and temporary evaluation.
5124 //===----------------------------------------------------------------------===//
5125 namespace {
5126 template<class Derived>
5127 class LValueExprEvaluatorBase
5128   : public ExprEvaluatorBase<Derived> {
5129 protected:
5130   LValue &Result;
5131   bool InvalidBaseOK;
5132   typedef LValueExprEvaluatorBase LValueExprEvaluatorBaseTy;
5133   typedef ExprEvaluatorBase<Derived> ExprEvaluatorBaseTy;
5134 
5135   bool Success(APValue::LValueBase B) {
5136     Result.set(B);
5137     return true;
5138   }
5139 
5140   bool evaluatePointer(const Expr *E, LValue &Result) {
5141     return EvaluatePointer(E, Result, this->Info, InvalidBaseOK);
5142   }
5143 
5144 public:
5145   LValueExprEvaluatorBase(EvalInfo &Info, LValue &Result, bool InvalidBaseOK)
5146       : ExprEvaluatorBaseTy(Info), Result(Result),
5147         InvalidBaseOK(InvalidBaseOK) {}
5148 
5149   bool Success(const APValue &V, const Expr *E) {
5150     Result.setFrom(this->Info.Ctx, V);
5151     return true;
5152   }
5153 
5154   bool VisitMemberExpr(const MemberExpr *E) {
5155     // Handle non-static data members.
5156     QualType BaseTy;
5157     bool EvalOK;
5158     if (E->isArrow()) {
5159       EvalOK = evaluatePointer(E->getBase(), Result);
5160       BaseTy = E->getBase()->getType()->castAs<PointerType>()->getPointeeType();
5161     } else if (E->getBase()->isRValue()) {
5162       assert(E->getBase()->getType()->isRecordType());
5163       EvalOK = EvaluateTemporary(E->getBase(), Result, this->Info);
5164       BaseTy = E->getBase()->getType();
5165     } else {
5166       EvalOK = this->Visit(E->getBase());
5167       BaseTy = E->getBase()->getType();
5168     }
5169     if (!EvalOK) {
5170       if (!InvalidBaseOK)
5171         return false;
5172       Result.setInvalid(E);
5173       return true;
5174     }
5175 
5176     const ValueDecl *MD = E->getMemberDecl();
5177     if (const FieldDecl *FD = dyn_cast<FieldDecl>(E->getMemberDecl())) {
5178       assert(BaseTy->getAs<RecordType>()->getDecl()->getCanonicalDecl() ==
5179              FD->getParent()->getCanonicalDecl() && "record / field mismatch");
5180       (void)BaseTy;
5181       if (!HandleLValueMember(this->Info, E, Result, FD))
5182         return false;
5183     } else if (const IndirectFieldDecl *IFD = dyn_cast<IndirectFieldDecl>(MD)) {
5184       if (!HandleLValueIndirectMember(this->Info, E, Result, IFD))
5185         return false;
5186     } else
5187       return this->Error(E);
5188 
5189     if (MD->getType()->isReferenceType()) {
5190       APValue RefValue;
5191       if (!handleLValueToRValueConversion(this->Info, E, MD->getType(), Result,
5192                                           RefValue))
5193         return false;
5194       return Success(RefValue, E);
5195     }
5196     return true;
5197   }
5198 
5199   bool VisitBinaryOperator(const BinaryOperator *E) {
5200     switch (E->getOpcode()) {
5201     default:
5202       return ExprEvaluatorBaseTy::VisitBinaryOperator(E);
5203 
5204     case BO_PtrMemD:
5205     case BO_PtrMemI:
5206       return HandleMemberPointerAccess(this->Info, E, Result);
5207     }
5208   }
5209 
5210   bool VisitCastExpr(const CastExpr *E) {
5211     switch (E->getCastKind()) {
5212     default:
5213       return ExprEvaluatorBaseTy::VisitCastExpr(E);
5214 
5215     case CK_DerivedToBase:
5216     case CK_UncheckedDerivedToBase:
5217       if (!this->Visit(E->getSubExpr()))
5218         return false;
5219 
5220       // Now figure out the necessary offset to add to the base LV to get from
5221       // the derived class to the base class.
5222       return HandleLValueBasePath(this->Info, E, E->getSubExpr()->getType(),
5223                                   Result);
5224     }
5225   }
5226 };
5227 }
5228 
5229 //===----------------------------------------------------------------------===//
5230 // LValue Evaluation
5231 //
5232 // This is used for evaluating lvalues (in C and C++), xvalues (in C++11),
5233 // function designators (in C), decl references to void objects (in C), and
5234 // temporaries (if building with -Wno-address-of-temporary).
5235 //
5236 // LValue evaluation produces values comprising a base expression of one of the
5237 // following types:
5238 // - Declarations
5239 //  * VarDecl
5240 //  * FunctionDecl
5241 // - Literals
5242 //  * CompoundLiteralExpr in C (and in global scope in C++)
5243 //  * StringLiteral
5244 //  * CXXTypeidExpr
5245 //  * PredefinedExpr
5246 //  * ObjCStringLiteralExpr
5247 //  * ObjCEncodeExpr
5248 //  * AddrLabelExpr
5249 //  * BlockExpr
5250 //  * CallExpr for a MakeStringConstant builtin
5251 // - Locals and temporaries
5252 //  * MaterializeTemporaryExpr
5253 //  * Any Expr, with a CallIndex indicating the function in which the temporary
5254 //    was evaluated, for cases where the MaterializeTemporaryExpr is missing
5255 //    from the AST (FIXME).
5256 //  * A MaterializeTemporaryExpr that has static storage duration, with no
5257 //    CallIndex, for a lifetime-extended temporary.
5258 // plus an offset in bytes.
5259 //===----------------------------------------------------------------------===//
5260 namespace {
5261 class LValueExprEvaluator
5262   : public LValueExprEvaluatorBase<LValueExprEvaluator> {
5263 public:
5264   LValueExprEvaluator(EvalInfo &Info, LValue &Result, bool InvalidBaseOK) :
5265     LValueExprEvaluatorBaseTy(Info, Result, InvalidBaseOK) {}
5266 
5267   bool VisitVarDecl(const Expr *E, const VarDecl *VD);
5268   bool VisitUnaryPreIncDec(const UnaryOperator *UO);
5269 
5270   bool VisitDeclRefExpr(const DeclRefExpr *E);
5271   bool VisitPredefinedExpr(const PredefinedExpr *E) { return Success(E); }
5272   bool VisitMaterializeTemporaryExpr(const MaterializeTemporaryExpr *E);
5273   bool VisitCompoundLiteralExpr(const CompoundLiteralExpr *E);
5274   bool VisitMemberExpr(const MemberExpr *E);
5275   bool VisitStringLiteral(const StringLiteral *E) { return Success(E); }
5276   bool VisitObjCEncodeExpr(const ObjCEncodeExpr *E) { return Success(E); }
5277   bool VisitCXXTypeidExpr(const CXXTypeidExpr *E);
5278   bool VisitCXXUuidofExpr(const CXXUuidofExpr *E);
5279   bool VisitArraySubscriptExpr(const ArraySubscriptExpr *E);
5280   bool VisitUnaryDeref(const UnaryOperator *E);
5281   bool VisitUnaryReal(const UnaryOperator *E);
5282   bool VisitUnaryImag(const UnaryOperator *E);
5283   bool VisitUnaryPreInc(const UnaryOperator *UO) {
5284     return VisitUnaryPreIncDec(UO);
5285   }
5286   bool VisitUnaryPreDec(const UnaryOperator *UO) {
5287     return VisitUnaryPreIncDec(UO);
5288   }
5289   bool VisitBinAssign(const BinaryOperator *BO);
5290   bool VisitCompoundAssignOperator(const CompoundAssignOperator *CAO);
5291 
5292   bool VisitCastExpr(const CastExpr *E) {
5293     switch (E->getCastKind()) {
5294     default:
5295       return LValueExprEvaluatorBaseTy::VisitCastExpr(E);
5296 
5297     case CK_LValueBitCast:
5298       this->CCEDiag(E, diag::note_constexpr_invalid_cast) << 2;
5299       if (!Visit(E->getSubExpr()))
5300         return false;
5301       Result.Designator.setInvalid();
5302       return true;
5303 
5304     case CK_BaseToDerived:
5305       if (!Visit(E->getSubExpr()))
5306         return false;
5307       return HandleBaseToDerivedCast(Info, E, Result);
5308     }
5309   }
5310 };
5311 } // end anonymous namespace
5312 
5313 /// Evaluate an expression as an lvalue. This can be legitimately called on
5314 /// expressions which are not glvalues, in three cases:
5315 ///  * function designators in C, and
5316 ///  * "extern void" objects
5317 ///  * @selector() expressions in Objective-C
5318 static bool EvaluateLValue(const Expr *E, LValue &Result, EvalInfo &Info,
5319                            bool InvalidBaseOK) {
5320   assert(E->isGLValue() || E->getType()->isFunctionType() ||
5321          E->getType()->isVoidType() || isa<ObjCSelectorExpr>(E));
5322   return LValueExprEvaluator(Info, Result, InvalidBaseOK).Visit(E);
5323 }
5324 
5325 bool LValueExprEvaluator::VisitDeclRefExpr(const DeclRefExpr *E) {
5326   if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(E->getDecl()))
5327     return Success(FD);
5328   if (const VarDecl *VD = dyn_cast<VarDecl>(E->getDecl()))
5329     return VisitVarDecl(E, VD);
5330   if (const BindingDecl *BD = dyn_cast<BindingDecl>(E->getDecl()))
5331     return Visit(BD->getBinding());
5332   return Error(E);
5333 }
5334 
5335 
5336 bool LValueExprEvaluator::VisitVarDecl(const Expr *E, const VarDecl *VD) {
5337 
5338   // If we are within a lambda's call operator, check whether the 'VD' referred
5339   // to within 'E' actually represents a lambda-capture that maps to a
5340   // data-member/field within the closure object, and if so, evaluate to the
5341   // field or what the field refers to.
5342   if (Info.CurrentCall && isLambdaCallOperator(Info.CurrentCall->Callee) &&
5343       isa<DeclRefExpr>(E) &&
5344       cast<DeclRefExpr>(E)->refersToEnclosingVariableOrCapture()) {
5345     // We don't always have a complete capture-map when checking or inferring if
5346     // the function call operator meets the requirements of a constexpr function
5347     // - but we don't need to evaluate the captures to determine constexprness
5348     // (dcl.constexpr C++17).
5349     if (Info.checkingPotentialConstantExpression())
5350       return false;
5351 
5352     if (auto *FD = Info.CurrentCall->LambdaCaptureFields.lookup(VD)) {
5353       // Start with 'Result' referring to the complete closure object...
5354       Result = *Info.CurrentCall->This;
5355       // ... then update it to refer to the field of the closure object
5356       // that represents the capture.
5357       if (!HandleLValueMember(Info, E, Result, FD))
5358         return false;
5359       // And if the field is of reference type, update 'Result' to refer to what
5360       // the field refers to.
5361       if (FD->getType()->isReferenceType()) {
5362         APValue RVal;
5363         if (!handleLValueToRValueConversion(Info, E, FD->getType(), Result,
5364                                             RVal))
5365           return false;
5366         Result.setFrom(Info.Ctx, RVal);
5367       }
5368       return true;
5369     }
5370   }
5371   CallStackFrame *Frame = nullptr;
5372   if (VD->hasLocalStorage() && Info.CurrentCall->Index > 1) {
5373     // Only if a local variable was declared in the function currently being
5374     // evaluated, do we expect to be able to find its value in the current
5375     // frame. (Otherwise it was likely declared in an enclosing context and
5376     // could either have a valid evaluatable value (for e.g. a constexpr
5377     // variable) or be ill-formed (and trigger an appropriate evaluation
5378     // diagnostic)).
5379     if (Info.CurrentCall->Callee &&
5380         Info.CurrentCall->Callee->Equals(VD->getDeclContext())) {
5381       Frame = Info.CurrentCall;
5382     }
5383   }
5384 
5385   if (!VD->getType()->isReferenceType()) {
5386     if (Frame) {
5387       Result.set({VD, Frame->Index,
5388                   Info.CurrentCall->getCurrentTemporaryVersion(VD)});
5389       return true;
5390     }
5391     return Success(VD);
5392   }
5393 
5394   APValue *V;
5395   if (!evaluateVarDeclInit(Info, E, VD, Frame, V, nullptr))
5396     return false;
5397   if (V->isUninit()) {
5398     if (!Info.checkingPotentialConstantExpression())
5399       Info.FFDiag(E, diag::note_constexpr_use_uninit_reference);
5400     return false;
5401   }
5402   return Success(*V, E);
5403 }
5404 
5405 bool LValueExprEvaluator::VisitMaterializeTemporaryExpr(
5406     const MaterializeTemporaryExpr *E) {
5407   // Walk through the expression to find the materialized temporary itself.
5408   SmallVector<const Expr *, 2> CommaLHSs;
5409   SmallVector<SubobjectAdjustment, 2> Adjustments;
5410   const Expr *Inner = E->GetTemporaryExpr()->
5411       skipRValueSubobjectAdjustments(CommaLHSs, Adjustments);
5412 
5413   // If we passed any comma operators, evaluate their LHSs.
5414   for (unsigned I = 0, N = CommaLHSs.size(); I != N; ++I)
5415     if (!EvaluateIgnoredValue(Info, CommaLHSs[I]))
5416       return false;
5417 
5418   // A materialized temporary with static storage duration can appear within the
5419   // result of a constant expression evaluation, so we need to preserve its
5420   // value for use outside this evaluation.
5421   APValue *Value;
5422   if (E->getStorageDuration() == SD_Static) {
5423     Value = Info.Ctx.getMaterializedTemporaryValue(E, true);
5424     *Value = APValue();
5425     Result.set(E);
5426   } else {
5427     Value = &createTemporary(E, E->getStorageDuration() == SD_Automatic, Result,
5428                              *Info.CurrentCall);
5429   }
5430 
5431   QualType Type = Inner->getType();
5432 
5433   // Materialize the temporary itself.
5434   if (!EvaluateInPlace(*Value, Info, Result, Inner) ||
5435       (E->getStorageDuration() == SD_Static &&
5436        !CheckConstantExpression(Info, E->getExprLoc(), Type, *Value))) {
5437     *Value = APValue();
5438     return false;
5439   }
5440 
5441   // Adjust our lvalue to refer to the desired subobject.
5442   for (unsigned I = Adjustments.size(); I != 0; /**/) {
5443     --I;
5444     switch (Adjustments[I].Kind) {
5445     case SubobjectAdjustment::DerivedToBaseAdjustment:
5446       if (!HandleLValueBasePath(Info, Adjustments[I].DerivedToBase.BasePath,
5447                                 Type, Result))
5448         return false;
5449       Type = Adjustments[I].DerivedToBase.BasePath->getType();
5450       break;
5451 
5452     case SubobjectAdjustment::FieldAdjustment:
5453       if (!HandleLValueMember(Info, E, Result, Adjustments[I].Field))
5454         return false;
5455       Type = Adjustments[I].Field->getType();
5456       break;
5457 
5458     case SubobjectAdjustment::MemberPointerAdjustment:
5459       if (!HandleMemberPointerAccess(this->Info, Type, Result,
5460                                      Adjustments[I].Ptr.RHS))
5461         return false;
5462       Type = Adjustments[I].Ptr.MPT->getPointeeType();
5463       break;
5464     }
5465   }
5466 
5467   return true;
5468 }
5469 
5470 bool
5471 LValueExprEvaluator::VisitCompoundLiteralExpr(const CompoundLiteralExpr *E) {
5472   assert((!Info.getLangOpts().CPlusPlus || E->isFileScope()) &&
5473          "lvalue compound literal in c++?");
5474   // Defer visiting the literal until the lvalue-to-rvalue conversion. We can
5475   // only see this when folding in C, so there's no standard to follow here.
5476   return Success(E);
5477 }
5478 
5479 bool LValueExprEvaluator::VisitCXXTypeidExpr(const CXXTypeidExpr *E) {
5480   if (!E->isPotentiallyEvaluated())
5481     return Success(E);
5482 
5483   Info.FFDiag(E, diag::note_constexpr_typeid_polymorphic)
5484     << E->getExprOperand()->getType()
5485     << E->getExprOperand()->getSourceRange();
5486   return false;
5487 }
5488 
5489 bool LValueExprEvaluator::VisitCXXUuidofExpr(const CXXUuidofExpr *E) {
5490   return Success(E);
5491 }
5492 
5493 bool LValueExprEvaluator::VisitMemberExpr(const MemberExpr *E) {
5494   // Handle static data members.
5495   if (const VarDecl *VD = dyn_cast<VarDecl>(E->getMemberDecl())) {
5496     VisitIgnoredBaseExpression(E->getBase());
5497     return VisitVarDecl(E, VD);
5498   }
5499 
5500   // Handle static member functions.
5501   if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(E->getMemberDecl())) {
5502     if (MD->isStatic()) {
5503       VisitIgnoredBaseExpression(E->getBase());
5504       return Success(MD);
5505     }
5506   }
5507 
5508   // Handle non-static data members.
5509   return LValueExprEvaluatorBaseTy::VisitMemberExpr(E);
5510 }
5511 
5512 bool LValueExprEvaluator::VisitArraySubscriptExpr(const ArraySubscriptExpr *E) {
5513   // FIXME: Deal with vectors as array subscript bases.
5514   if (E->getBase()->getType()->isVectorType())
5515     return Error(E);
5516 
5517   bool Success = true;
5518   if (!evaluatePointer(E->getBase(), Result)) {
5519     if (!Info.noteFailure())
5520       return false;
5521     Success = false;
5522   }
5523 
5524   APSInt Index;
5525   if (!EvaluateInteger(E->getIdx(), Index, Info))
5526     return false;
5527 
5528   return Success &&
5529          HandleLValueArrayAdjustment(Info, E, Result, E->getType(), Index);
5530 }
5531 
5532 bool LValueExprEvaluator::VisitUnaryDeref(const UnaryOperator *E) {
5533   return evaluatePointer(E->getSubExpr(), Result);
5534 }
5535 
5536 bool LValueExprEvaluator::VisitUnaryReal(const UnaryOperator *E) {
5537   if (!Visit(E->getSubExpr()))
5538     return false;
5539   // __real is a no-op on scalar lvalues.
5540   if (E->getSubExpr()->getType()->isAnyComplexType())
5541     HandleLValueComplexElement(Info, E, Result, E->getType(), false);
5542   return true;
5543 }
5544 
5545 bool LValueExprEvaluator::VisitUnaryImag(const UnaryOperator *E) {
5546   assert(E->getSubExpr()->getType()->isAnyComplexType() &&
5547          "lvalue __imag__ on scalar?");
5548   if (!Visit(E->getSubExpr()))
5549     return false;
5550   HandleLValueComplexElement(Info, E, Result, E->getType(), true);
5551   return true;
5552 }
5553 
5554 bool LValueExprEvaluator::VisitUnaryPreIncDec(const UnaryOperator *UO) {
5555   if (!Info.getLangOpts().CPlusPlus14 && !Info.keepEvaluatingAfterFailure())
5556     return Error(UO);
5557 
5558   if (!this->Visit(UO->getSubExpr()))
5559     return false;
5560 
5561   return handleIncDec(
5562       this->Info, UO, Result, UO->getSubExpr()->getType(),
5563       UO->isIncrementOp(), nullptr);
5564 }
5565 
5566 bool LValueExprEvaluator::VisitCompoundAssignOperator(
5567     const CompoundAssignOperator *CAO) {
5568   if (!Info.getLangOpts().CPlusPlus14 && !Info.keepEvaluatingAfterFailure())
5569     return Error(CAO);
5570 
5571   APValue RHS;
5572 
5573   // The overall lvalue result is the result of evaluating the LHS.
5574   if (!this->Visit(CAO->getLHS())) {
5575     if (Info.noteFailure())
5576       Evaluate(RHS, this->Info, CAO->getRHS());
5577     return false;
5578   }
5579 
5580   if (!Evaluate(RHS, this->Info, CAO->getRHS()))
5581     return false;
5582 
5583   return handleCompoundAssignment(
5584       this->Info, CAO,
5585       Result, CAO->getLHS()->getType(), CAO->getComputationLHSType(),
5586       CAO->getOpForCompoundAssignment(CAO->getOpcode()), RHS);
5587 }
5588 
5589 bool LValueExprEvaluator::VisitBinAssign(const BinaryOperator *E) {
5590   if (!Info.getLangOpts().CPlusPlus14 && !Info.keepEvaluatingAfterFailure())
5591     return Error(E);
5592 
5593   APValue NewVal;
5594 
5595   if (!this->Visit(E->getLHS())) {
5596     if (Info.noteFailure())
5597       Evaluate(NewVal, this->Info, E->getRHS());
5598     return false;
5599   }
5600 
5601   if (!Evaluate(NewVal, this->Info, E->getRHS()))
5602     return false;
5603 
5604   return handleAssignment(this->Info, E, Result, E->getLHS()->getType(),
5605                           NewVal);
5606 }
5607 
5608 //===----------------------------------------------------------------------===//
5609 // Pointer Evaluation
5610 //===----------------------------------------------------------------------===//
5611 
5612 /// Attempts to compute the number of bytes available at the pointer
5613 /// returned by a function with the alloc_size attribute. Returns true if we
5614 /// were successful. Places an unsigned number into `Result`.
5615 ///
5616 /// This expects the given CallExpr to be a call to a function with an
5617 /// alloc_size attribute.
5618 static bool getBytesReturnedByAllocSizeCall(const ASTContext &Ctx,
5619                                             const CallExpr *Call,
5620                                             llvm::APInt &Result) {
5621   const AllocSizeAttr *AllocSize = getAllocSizeAttr(Call);
5622 
5623   assert(AllocSize && AllocSize->getElemSizeParam().isValid());
5624   unsigned SizeArgNo = AllocSize->getElemSizeParam().getASTIndex();
5625   unsigned BitsInSizeT = Ctx.getTypeSize(Ctx.getSizeType());
5626   if (Call->getNumArgs() <= SizeArgNo)
5627     return false;
5628 
5629   auto EvaluateAsSizeT = [&](const Expr *E, APSInt &Into) {
5630     if (!E->EvaluateAsInt(Into, Ctx, Expr::SE_AllowSideEffects))
5631       return false;
5632     if (Into.isNegative() || !Into.isIntN(BitsInSizeT))
5633       return false;
5634     Into = Into.zextOrSelf(BitsInSizeT);
5635     return true;
5636   };
5637 
5638   APSInt SizeOfElem;
5639   if (!EvaluateAsSizeT(Call->getArg(SizeArgNo), SizeOfElem))
5640     return false;
5641 
5642   if (!AllocSize->getNumElemsParam().isValid()) {
5643     Result = std::move(SizeOfElem);
5644     return true;
5645   }
5646 
5647   APSInt NumberOfElems;
5648   unsigned NumArgNo = AllocSize->getNumElemsParam().getASTIndex();
5649   if (!EvaluateAsSizeT(Call->getArg(NumArgNo), NumberOfElems))
5650     return false;
5651 
5652   bool Overflow;
5653   llvm::APInt BytesAvailable = SizeOfElem.umul_ov(NumberOfElems, Overflow);
5654   if (Overflow)
5655     return false;
5656 
5657   Result = std::move(BytesAvailable);
5658   return true;
5659 }
5660 
5661 /// Convenience function. LVal's base must be a call to an alloc_size
5662 /// function.
5663 static bool getBytesReturnedByAllocSizeCall(const ASTContext &Ctx,
5664                                             const LValue &LVal,
5665                                             llvm::APInt &Result) {
5666   assert(isBaseAnAllocSizeCall(LVal.getLValueBase()) &&
5667          "Can't get the size of a non alloc_size function");
5668   const auto *Base = LVal.getLValueBase().get<const Expr *>();
5669   const CallExpr *CE = tryUnwrapAllocSizeCall(Base);
5670   return getBytesReturnedByAllocSizeCall(Ctx, CE, Result);
5671 }
5672 
5673 /// Attempts to evaluate the given LValueBase as the result of a call to
5674 /// a function with the alloc_size attribute. If it was possible to do so, this
5675 /// function will return true, make Result's Base point to said function call,
5676 /// and mark Result's Base as invalid.
5677 static bool evaluateLValueAsAllocSize(EvalInfo &Info, APValue::LValueBase Base,
5678                                       LValue &Result) {
5679   if (Base.isNull())
5680     return false;
5681 
5682   // Because we do no form of static analysis, we only support const variables.
5683   //
5684   // Additionally, we can't support parameters, nor can we support static
5685   // variables (in the latter case, use-before-assign isn't UB; in the former,
5686   // we have no clue what they'll be assigned to).
5687   const auto *VD =
5688       dyn_cast_or_null<VarDecl>(Base.dyn_cast<const ValueDecl *>());
5689   if (!VD || !VD->isLocalVarDecl() || !VD->getType().isConstQualified())
5690     return false;
5691 
5692   const Expr *Init = VD->getAnyInitializer();
5693   if (!Init)
5694     return false;
5695 
5696   const Expr *E = Init->IgnoreParens();
5697   if (!tryUnwrapAllocSizeCall(E))
5698     return false;
5699 
5700   // Store E instead of E unwrapped so that the type of the LValue's base is
5701   // what the user wanted.
5702   Result.setInvalid(E);
5703 
5704   QualType Pointee = E->getType()->castAs<PointerType>()->getPointeeType();
5705   Result.addUnsizedArray(Info, E, Pointee);
5706   return true;
5707 }
5708 
5709 namespace {
5710 class PointerExprEvaluator
5711   : public ExprEvaluatorBase<PointerExprEvaluator> {
5712   LValue &Result;
5713   bool InvalidBaseOK;
5714 
5715   bool Success(const Expr *E) {
5716     Result.set(E);
5717     return true;
5718   }
5719 
5720   bool evaluateLValue(const Expr *E, LValue &Result) {
5721     return EvaluateLValue(E, Result, Info, InvalidBaseOK);
5722   }
5723 
5724   bool evaluatePointer(const Expr *E, LValue &Result) {
5725     return EvaluatePointer(E, Result, Info, InvalidBaseOK);
5726   }
5727 
5728   bool visitNonBuiltinCallExpr(const CallExpr *E);
5729 public:
5730 
5731   PointerExprEvaluator(EvalInfo &info, LValue &Result, bool InvalidBaseOK)
5732       : ExprEvaluatorBaseTy(info), Result(Result),
5733         InvalidBaseOK(InvalidBaseOK) {}
5734 
5735   bool Success(const APValue &V, const Expr *E) {
5736     Result.setFrom(Info.Ctx, V);
5737     return true;
5738   }
5739   bool ZeroInitialization(const Expr *E) {
5740     auto TargetVal = Info.Ctx.getTargetNullPointerValue(E->getType());
5741     Result.setNull(E->getType(), TargetVal);
5742     return true;
5743   }
5744 
5745   bool VisitBinaryOperator(const BinaryOperator *E);
5746   bool VisitCastExpr(const CastExpr* E);
5747   bool VisitUnaryAddrOf(const UnaryOperator *E);
5748   bool VisitObjCStringLiteral(const ObjCStringLiteral *E)
5749       { return Success(E); }
5750   bool VisitObjCBoxedExpr(const ObjCBoxedExpr *E) {
5751     if (Info.noteFailure())
5752       EvaluateIgnoredValue(Info, E->getSubExpr());
5753     return Error(E);
5754   }
5755   bool VisitAddrLabelExpr(const AddrLabelExpr *E)
5756       { return Success(E); }
5757   bool VisitCallExpr(const CallExpr *E);
5758   bool VisitBuiltinCallExpr(const CallExpr *E, unsigned BuiltinOp);
5759   bool VisitBlockExpr(const BlockExpr *E) {
5760     if (!E->getBlockDecl()->hasCaptures())
5761       return Success(E);
5762     return Error(E);
5763   }
5764   bool VisitCXXThisExpr(const CXXThisExpr *E) {
5765     // Can't look at 'this' when checking a potential constant expression.
5766     if (Info.checkingPotentialConstantExpression())
5767       return false;
5768     if (!Info.CurrentCall->This) {
5769       if (Info.getLangOpts().CPlusPlus11)
5770         Info.FFDiag(E, diag::note_constexpr_this) << E->isImplicit();
5771       else
5772         Info.FFDiag(E);
5773       return false;
5774     }
5775     Result = *Info.CurrentCall->This;
5776     // If we are inside a lambda's call operator, the 'this' expression refers
5777     // to the enclosing '*this' object (either by value or reference) which is
5778     // either copied into the closure object's field that represents the '*this'
5779     // or refers to '*this'.
5780     if (isLambdaCallOperator(Info.CurrentCall->Callee)) {
5781       // Update 'Result' to refer to the data member/field of the closure object
5782       // that represents the '*this' capture.
5783       if (!HandleLValueMember(Info, E, Result,
5784                              Info.CurrentCall->LambdaThisCaptureField))
5785         return false;
5786       // If we captured '*this' by reference, replace the field with its referent.
5787       if (Info.CurrentCall->LambdaThisCaptureField->getType()
5788               ->isPointerType()) {
5789         APValue RVal;
5790         if (!handleLValueToRValueConversion(Info, E, E->getType(), Result,
5791                                             RVal))
5792           return false;
5793 
5794         Result.setFrom(Info.Ctx, RVal);
5795       }
5796     }
5797     return true;
5798   }
5799 
5800   // FIXME: Missing: @protocol, @selector
5801 };
5802 } // end anonymous namespace
5803 
5804 static bool EvaluatePointer(const Expr* E, LValue& Result, EvalInfo &Info,
5805                             bool InvalidBaseOK) {
5806   assert(E->isRValue() && E->getType()->hasPointerRepresentation());
5807   return PointerExprEvaluator(Info, Result, InvalidBaseOK).Visit(E);
5808 }
5809 
5810 bool PointerExprEvaluator::VisitBinaryOperator(const BinaryOperator *E) {
5811   if (E->getOpcode() != BO_Add &&
5812       E->getOpcode() != BO_Sub)
5813     return ExprEvaluatorBaseTy::VisitBinaryOperator(E);
5814 
5815   const Expr *PExp = E->getLHS();
5816   const Expr *IExp = E->getRHS();
5817   if (IExp->getType()->isPointerType())
5818     std::swap(PExp, IExp);
5819 
5820   bool EvalPtrOK = evaluatePointer(PExp, Result);
5821   if (!EvalPtrOK && !Info.noteFailure())
5822     return false;
5823 
5824   llvm::APSInt Offset;
5825   if (!EvaluateInteger(IExp, Offset, Info) || !EvalPtrOK)
5826     return false;
5827 
5828   if (E->getOpcode() == BO_Sub)
5829     negateAsSigned(Offset);
5830 
5831   QualType Pointee = PExp->getType()->castAs<PointerType>()->getPointeeType();
5832   return HandleLValueArrayAdjustment(Info, E, Result, Pointee, Offset);
5833 }
5834 
5835 bool PointerExprEvaluator::VisitUnaryAddrOf(const UnaryOperator *E) {
5836   return evaluateLValue(E->getSubExpr(), Result);
5837 }
5838 
5839 bool PointerExprEvaluator::VisitCastExpr(const CastExpr *E) {
5840   const Expr *SubExpr = E->getSubExpr();
5841 
5842   switch (E->getCastKind()) {
5843   default:
5844     break;
5845 
5846   case CK_BitCast:
5847   case CK_CPointerToObjCPointerCast:
5848   case CK_BlockPointerToObjCPointerCast:
5849   case CK_AnyPointerToBlockPointerCast:
5850   case CK_AddressSpaceConversion:
5851     if (!Visit(SubExpr))
5852       return false;
5853     // Bitcasts to cv void* are static_casts, not reinterpret_casts, so are
5854     // permitted in constant expressions in C++11. Bitcasts from cv void* are
5855     // also static_casts, but we disallow them as a resolution to DR1312.
5856     if (!E->getType()->isVoidPointerType()) {
5857       // If we changed anything other than cvr-qualifiers, we can't use this
5858       // value for constant folding. FIXME: Qualification conversions should
5859       // always be CK_NoOp, but we get this wrong in C.
5860       if (!Info.Ctx.hasCvrSimilarType(E->getType(), E->getSubExpr()->getType()))
5861         Result.Designator.setInvalid();
5862       if (SubExpr->getType()->isVoidPointerType())
5863         CCEDiag(E, diag::note_constexpr_invalid_cast)
5864           << 3 << SubExpr->getType();
5865       else
5866         CCEDiag(E, diag::note_constexpr_invalid_cast) << 2;
5867     }
5868     if (E->getCastKind() == CK_AddressSpaceConversion && Result.IsNullPtr)
5869       ZeroInitialization(E);
5870     return true;
5871 
5872   case CK_DerivedToBase:
5873   case CK_UncheckedDerivedToBase:
5874     if (!evaluatePointer(E->getSubExpr(), Result))
5875       return false;
5876     if (!Result.Base && Result.Offset.isZero())
5877       return true;
5878 
5879     // Now figure out the necessary offset to add to the base LV to get from
5880     // the derived class to the base class.
5881     return HandleLValueBasePath(Info, E, E->getSubExpr()->getType()->
5882                                   castAs<PointerType>()->getPointeeType(),
5883                                 Result);
5884 
5885   case CK_BaseToDerived:
5886     if (!Visit(E->getSubExpr()))
5887       return false;
5888     if (!Result.Base && Result.Offset.isZero())
5889       return true;
5890     return HandleBaseToDerivedCast(Info, E, Result);
5891 
5892   case CK_NullToPointer:
5893     VisitIgnoredValue(E->getSubExpr());
5894     return ZeroInitialization(E);
5895 
5896   case CK_IntegralToPointer: {
5897     CCEDiag(E, diag::note_constexpr_invalid_cast) << 2;
5898 
5899     APValue Value;
5900     if (!EvaluateIntegerOrLValue(SubExpr, Value, Info))
5901       break;
5902 
5903     if (Value.isInt()) {
5904       unsigned Size = Info.Ctx.getTypeSize(E->getType());
5905       uint64_t N = Value.getInt().extOrTrunc(Size).getZExtValue();
5906       Result.Base = (Expr*)nullptr;
5907       Result.InvalidBase = false;
5908       Result.Offset = CharUnits::fromQuantity(N);
5909       Result.Designator.setInvalid();
5910       Result.IsNullPtr = false;
5911       return true;
5912     } else {
5913       // Cast is of an lvalue, no need to change value.
5914       Result.setFrom(Info.Ctx, Value);
5915       return true;
5916     }
5917   }
5918 
5919   case CK_ArrayToPointerDecay: {
5920     if (SubExpr->isGLValue()) {
5921       if (!evaluateLValue(SubExpr, Result))
5922         return false;
5923     } else {
5924       APValue &Value = createTemporary(SubExpr, false, Result,
5925                                        *Info.CurrentCall);
5926       if (!EvaluateInPlace(Value, Info, Result, SubExpr))
5927         return false;
5928     }
5929     // The result is a pointer to the first element of the array.
5930     auto *AT = Info.Ctx.getAsArrayType(SubExpr->getType());
5931     if (auto *CAT = dyn_cast<ConstantArrayType>(AT))
5932       Result.addArray(Info, E, CAT);
5933     else
5934       Result.addUnsizedArray(Info, E, AT->getElementType());
5935     return true;
5936   }
5937 
5938   case CK_FunctionToPointerDecay:
5939     return evaluateLValue(SubExpr, Result);
5940 
5941   case CK_LValueToRValue: {
5942     LValue LVal;
5943     if (!evaluateLValue(E->getSubExpr(), LVal))
5944       return false;
5945 
5946     APValue RVal;
5947     // Note, we use the subexpression's type in order to retain cv-qualifiers.
5948     if (!handleLValueToRValueConversion(Info, E, E->getSubExpr()->getType(),
5949                                         LVal, RVal))
5950       return InvalidBaseOK &&
5951              evaluateLValueAsAllocSize(Info, LVal.Base, Result);
5952     return Success(RVal, E);
5953   }
5954   }
5955 
5956   return ExprEvaluatorBaseTy::VisitCastExpr(E);
5957 }
5958 
5959 static CharUnits GetAlignOfType(EvalInfo &Info, QualType T) {
5960   // C++ [expr.alignof]p3:
5961   //     When alignof is applied to a reference type, the result is the
5962   //     alignment of the referenced type.
5963   if (const ReferenceType *Ref = T->getAs<ReferenceType>())
5964     T = Ref->getPointeeType();
5965 
5966   // __alignof is defined to return the preferred alignment.
5967   if (T.getQualifiers().hasUnaligned())
5968     return CharUnits::One();
5969   return Info.Ctx.toCharUnitsFromBits(
5970     Info.Ctx.getPreferredTypeAlign(T.getTypePtr()));
5971 }
5972 
5973 static CharUnits GetAlignOfExpr(EvalInfo &Info, const Expr *E) {
5974   E = E->IgnoreParens();
5975 
5976   // The kinds of expressions that we have special-case logic here for
5977   // should be kept up to date with the special checks for those
5978   // expressions in Sema.
5979 
5980   // alignof decl is always accepted, even if it doesn't make sense: we default
5981   // to 1 in those cases.
5982   if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E))
5983     return Info.Ctx.getDeclAlign(DRE->getDecl(),
5984                                  /*RefAsPointee*/true);
5985 
5986   if (const MemberExpr *ME = dyn_cast<MemberExpr>(E))
5987     return Info.Ctx.getDeclAlign(ME->getMemberDecl(),
5988                                  /*RefAsPointee*/true);
5989 
5990   return GetAlignOfType(Info, E->getType());
5991 }
5992 
5993 // To be clear: this happily visits unsupported builtins. Better name welcomed.
5994 bool PointerExprEvaluator::visitNonBuiltinCallExpr(const CallExpr *E) {
5995   if (ExprEvaluatorBaseTy::VisitCallExpr(E))
5996     return true;
5997 
5998   if (!(InvalidBaseOK && getAllocSizeAttr(E)))
5999     return false;
6000 
6001   Result.setInvalid(E);
6002   QualType PointeeTy = E->getType()->castAs<PointerType>()->getPointeeType();
6003   Result.addUnsizedArray(Info, E, PointeeTy);
6004   return true;
6005 }
6006 
6007 bool PointerExprEvaluator::VisitCallExpr(const CallExpr *E) {
6008   if (IsStringLiteralCall(E))
6009     return Success(E);
6010 
6011   if (unsigned BuiltinOp = E->getBuiltinCallee())
6012     return VisitBuiltinCallExpr(E, BuiltinOp);
6013 
6014   return visitNonBuiltinCallExpr(E);
6015 }
6016 
6017 bool PointerExprEvaluator::VisitBuiltinCallExpr(const CallExpr *E,
6018                                                 unsigned BuiltinOp) {
6019   switch (BuiltinOp) {
6020   case Builtin::BI__builtin_addressof:
6021     return evaluateLValue(E->getArg(0), Result);
6022   case Builtin::BI__builtin_assume_aligned: {
6023     // We need to be very careful here because: if the pointer does not have the
6024     // asserted alignment, then the behavior is undefined, and undefined
6025     // behavior is non-constant.
6026     if (!evaluatePointer(E->getArg(0), Result))
6027       return false;
6028 
6029     LValue OffsetResult(Result);
6030     APSInt Alignment;
6031     if (!EvaluateInteger(E->getArg(1), Alignment, Info))
6032       return false;
6033     CharUnits Align = CharUnits::fromQuantity(Alignment.getZExtValue());
6034 
6035     if (E->getNumArgs() > 2) {
6036       APSInt Offset;
6037       if (!EvaluateInteger(E->getArg(2), Offset, Info))
6038         return false;
6039 
6040       int64_t AdditionalOffset = -Offset.getZExtValue();
6041       OffsetResult.Offset += CharUnits::fromQuantity(AdditionalOffset);
6042     }
6043 
6044     // If there is a base object, then it must have the correct alignment.
6045     if (OffsetResult.Base) {
6046       CharUnits BaseAlignment;
6047       if (const ValueDecl *VD =
6048           OffsetResult.Base.dyn_cast<const ValueDecl*>()) {
6049         BaseAlignment = Info.Ctx.getDeclAlign(VD);
6050       } else {
6051         BaseAlignment =
6052           GetAlignOfExpr(Info, OffsetResult.Base.get<const Expr*>());
6053       }
6054 
6055       if (BaseAlignment < Align) {
6056         Result.Designator.setInvalid();
6057         // FIXME: Add support to Diagnostic for long / long long.
6058         CCEDiag(E->getArg(0),
6059                 diag::note_constexpr_baa_insufficient_alignment) << 0
6060           << (unsigned)BaseAlignment.getQuantity()
6061           << (unsigned)Align.getQuantity();
6062         return false;
6063       }
6064     }
6065 
6066     // The offset must also have the correct alignment.
6067     if (OffsetResult.Offset.alignTo(Align) != OffsetResult.Offset) {
6068       Result.Designator.setInvalid();
6069 
6070       (OffsetResult.Base
6071            ? CCEDiag(E->getArg(0),
6072                      diag::note_constexpr_baa_insufficient_alignment) << 1
6073            : CCEDiag(E->getArg(0),
6074                      diag::note_constexpr_baa_value_insufficient_alignment))
6075         << (int)OffsetResult.Offset.getQuantity()
6076         << (unsigned)Align.getQuantity();
6077       return false;
6078     }
6079 
6080     return true;
6081   }
6082 
6083   case Builtin::BIstrchr:
6084   case Builtin::BIwcschr:
6085   case Builtin::BImemchr:
6086   case Builtin::BIwmemchr:
6087     if (Info.getLangOpts().CPlusPlus11)
6088       Info.CCEDiag(E, diag::note_constexpr_invalid_function)
6089         << /*isConstexpr*/0 << /*isConstructor*/0
6090         << (std::string("'") + Info.Ctx.BuiltinInfo.getName(BuiltinOp) + "'");
6091     else
6092       Info.CCEDiag(E, diag::note_invalid_subexpr_in_const_expr);
6093     LLVM_FALLTHROUGH;
6094   case Builtin::BI__builtin_strchr:
6095   case Builtin::BI__builtin_wcschr:
6096   case Builtin::BI__builtin_memchr:
6097   case Builtin::BI__builtin_char_memchr:
6098   case Builtin::BI__builtin_wmemchr: {
6099     if (!Visit(E->getArg(0)))
6100       return false;
6101     APSInt Desired;
6102     if (!EvaluateInteger(E->getArg(1), Desired, Info))
6103       return false;
6104     uint64_t MaxLength = uint64_t(-1);
6105     if (BuiltinOp != Builtin::BIstrchr &&
6106         BuiltinOp != Builtin::BIwcschr &&
6107         BuiltinOp != Builtin::BI__builtin_strchr &&
6108         BuiltinOp != Builtin::BI__builtin_wcschr) {
6109       APSInt N;
6110       if (!EvaluateInteger(E->getArg(2), N, Info))
6111         return false;
6112       MaxLength = N.getExtValue();
6113     }
6114 
6115     QualType CharTy = E->getArg(0)->getType()->getPointeeType();
6116 
6117     // Figure out what value we're actually looking for (after converting to
6118     // the corresponding unsigned type if necessary).
6119     uint64_t DesiredVal;
6120     bool StopAtNull = false;
6121     switch (BuiltinOp) {
6122     case Builtin::BIstrchr:
6123     case Builtin::BI__builtin_strchr:
6124       // strchr compares directly to the passed integer, and therefore
6125       // always fails if given an int that is not a char.
6126       if (!APSInt::isSameValue(HandleIntToIntCast(Info, E, CharTy,
6127                                                   E->getArg(1)->getType(),
6128                                                   Desired),
6129                                Desired))
6130         return ZeroInitialization(E);
6131       StopAtNull = true;
6132       LLVM_FALLTHROUGH;
6133     case Builtin::BImemchr:
6134     case Builtin::BI__builtin_memchr:
6135     case Builtin::BI__builtin_char_memchr:
6136       // memchr compares by converting both sides to unsigned char. That's also
6137       // correct for strchr if we get this far (to cope with plain char being
6138       // unsigned in the strchr case).
6139       DesiredVal = Desired.trunc(Info.Ctx.getCharWidth()).getZExtValue();
6140       break;
6141 
6142     case Builtin::BIwcschr:
6143     case Builtin::BI__builtin_wcschr:
6144       StopAtNull = true;
6145       LLVM_FALLTHROUGH;
6146     case Builtin::BIwmemchr:
6147     case Builtin::BI__builtin_wmemchr:
6148       // wcschr and wmemchr are given a wchar_t to look for. Just use it.
6149       DesiredVal = Desired.getZExtValue();
6150       break;
6151     }
6152 
6153     for (; MaxLength; --MaxLength) {
6154       APValue Char;
6155       if (!handleLValueToRValueConversion(Info, E, CharTy, Result, Char) ||
6156           !Char.isInt())
6157         return false;
6158       if (Char.getInt().getZExtValue() == DesiredVal)
6159         return true;
6160       if (StopAtNull && !Char.getInt())
6161         break;
6162       if (!HandleLValueArrayAdjustment(Info, E, Result, CharTy, 1))
6163         return false;
6164     }
6165     // Not found: return nullptr.
6166     return ZeroInitialization(E);
6167   }
6168 
6169   case Builtin::BImemcpy:
6170   case Builtin::BImemmove:
6171   case Builtin::BIwmemcpy:
6172   case Builtin::BIwmemmove:
6173     if (Info.getLangOpts().CPlusPlus11)
6174       Info.CCEDiag(E, diag::note_constexpr_invalid_function)
6175         << /*isConstexpr*/0 << /*isConstructor*/0
6176         << (std::string("'") + Info.Ctx.BuiltinInfo.getName(BuiltinOp) + "'");
6177     else
6178       Info.CCEDiag(E, diag::note_invalid_subexpr_in_const_expr);
6179     LLVM_FALLTHROUGH;
6180   case Builtin::BI__builtin_memcpy:
6181   case Builtin::BI__builtin_memmove:
6182   case Builtin::BI__builtin_wmemcpy:
6183   case Builtin::BI__builtin_wmemmove: {
6184     bool WChar = BuiltinOp == Builtin::BIwmemcpy ||
6185                  BuiltinOp == Builtin::BIwmemmove ||
6186                  BuiltinOp == Builtin::BI__builtin_wmemcpy ||
6187                  BuiltinOp == Builtin::BI__builtin_wmemmove;
6188     bool Move = BuiltinOp == Builtin::BImemmove ||
6189                 BuiltinOp == Builtin::BIwmemmove ||
6190                 BuiltinOp == Builtin::BI__builtin_memmove ||
6191                 BuiltinOp == Builtin::BI__builtin_wmemmove;
6192 
6193     // The result of mem* is the first argument.
6194     if (!Visit(E->getArg(0)))
6195       return false;
6196     LValue Dest = Result;
6197 
6198     LValue Src;
6199     if (!EvaluatePointer(E->getArg(1), Src, Info))
6200       return false;
6201 
6202     APSInt N;
6203     if (!EvaluateInteger(E->getArg(2), N, Info))
6204       return false;
6205     assert(!N.isSigned() && "memcpy and friends take an unsigned size");
6206 
6207     // If the size is zero, we treat this as always being a valid no-op.
6208     // (Even if one of the src and dest pointers is null.)
6209     if (!N)
6210       return true;
6211 
6212     // Otherwise, if either of the operands is null, we can't proceed. Don't
6213     // try to determine the type of the copied objects, because there aren't
6214     // any.
6215     if (!Src.Base || !Dest.Base) {
6216       APValue Val;
6217       (!Src.Base ? Src : Dest).moveInto(Val);
6218       Info.FFDiag(E, diag::note_constexpr_memcpy_null)
6219           << Move << WChar << !!Src.Base
6220           << Val.getAsString(Info.Ctx, E->getArg(0)->getType());
6221       return false;
6222     }
6223     if (Src.Designator.Invalid || Dest.Designator.Invalid)
6224       return false;
6225 
6226     // We require that Src and Dest are both pointers to arrays of
6227     // trivially-copyable type. (For the wide version, the designator will be
6228     // invalid if the designated object is not a wchar_t.)
6229     QualType T = Dest.Designator.getType(Info.Ctx);
6230     QualType SrcT = Src.Designator.getType(Info.Ctx);
6231     if (!Info.Ctx.hasSameUnqualifiedType(T, SrcT)) {
6232       Info.FFDiag(E, diag::note_constexpr_memcpy_type_pun) << Move << SrcT << T;
6233       return false;
6234     }
6235     if (!T.isTriviallyCopyableType(Info.Ctx)) {
6236       Info.FFDiag(E, diag::note_constexpr_memcpy_nontrivial) << Move << T;
6237       return false;
6238     }
6239 
6240     // Figure out how many T's we're copying.
6241     uint64_t TSize = Info.Ctx.getTypeSizeInChars(T).getQuantity();
6242     if (!WChar) {
6243       uint64_t Remainder;
6244       llvm::APInt OrigN = N;
6245       llvm::APInt::udivrem(OrigN, TSize, N, Remainder);
6246       if (Remainder) {
6247         Info.FFDiag(E, diag::note_constexpr_memcpy_unsupported)
6248             << Move << WChar << 0 << T << OrigN.toString(10, /*Signed*/false)
6249             << (unsigned)TSize;
6250         return false;
6251       }
6252     }
6253 
6254     // Check that the copying will remain within the arrays, just so that we
6255     // can give a more meaningful diagnostic. This implicitly also checks that
6256     // N fits into 64 bits.
6257     uint64_t RemainingSrcSize = Src.Designator.validIndexAdjustments().second;
6258     uint64_t RemainingDestSize = Dest.Designator.validIndexAdjustments().second;
6259     if (N.ugt(RemainingSrcSize) || N.ugt(RemainingDestSize)) {
6260       Info.FFDiag(E, diag::note_constexpr_memcpy_unsupported)
6261           << Move << WChar << (N.ugt(RemainingSrcSize) ? 1 : 2) << T
6262           << N.toString(10, /*Signed*/false);
6263       return false;
6264     }
6265     uint64_t NElems = N.getZExtValue();
6266     uint64_t NBytes = NElems * TSize;
6267 
6268     // Check for overlap.
6269     int Direction = 1;
6270     if (HasSameBase(Src, Dest)) {
6271       uint64_t SrcOffset = Src.getLValueOffset().getQuantity();
6272       uint64_t DestOffset = Dest.getLValueOffset().getQuantity();
6273       if (DestOffset >= SrcOffset && DestOffset - SrcOffset < NBytes) {
6274         // Dest is inside the source region.
6275         if (!Move) {
6276           Info.FFDiag(E, diag::note_constexpr_memcpy_overlap) << WChar;
6277           return false;
6278         }
6279         // For memmove and friends, copy backwards.
6280         if (!HandleLValueArrayAdjustment(Info, E, Src, T, NElems - 1) ||
6281             !HandleLValueArrayAdjustment(Info, E, Dest, T, NElems - 1))
6282           return false;
6283         Direction = -1;
6284       } else if (!Move && SrcOffset >= DestOffset &&
6285                  SrcOffset - DestOffset < NBytes) {
6286         // Src is inside the destination region for memcpy: invalid.
6287         Info.FFDiag(E, diag::note_constexpr_memcpy_overlap) << WChar;
6288         return false;
6289       }
6290     }
6291 
6292     while (true) {
6293       APValue Val;
6294       if (!handleLValueToRValueConversion(Info, E, T, Src, Val) ||
6295           !handleAssignment(Info, E, Dest, T, Val))
6296         return false;
6297       // Do not iterate past the last element; if we're copying backwards, that
6298       // might take us off the start of the array.
6299       if (--NElems == 0)
6300         return true;
6301       if (!HandleLValueArrayAdjustment(Info, E, Src, T, Direction) ||
6302           !HandleLValueArrayAdjustment(Info, E, Dest, T, Direction))
6303         return false;
6304     }
6305   }
6306 
6307   default:
6308     return visitNonBuiltinCallExpr(E);
6309   }
6310 }
6311 
6312 //===----------------------------------------------------------------------===//
6313 // Member Pointer Evaluation
6314 //===----------------------------------------------------------------------===//
6315 
6316 namespace {
6317 class MemberPointerExprEvaluator
6318   : public ExprEvaluatorBase<MemberPointerExprEvaluator> {
6319   MemberPtr &Result;
6320 
6321   bool Success(const ValueDecl *D) {
6322     Result = MemberPtr(D);
6323     return true;
6324   }
6325 public:
6326 
6327   MemberPointerExprEvaluator(EvalInfo &Info, MemberPtr &Result)
6328     : ExprEvaluatorBaseTy(Info), Result(Result) {}
6329 
6330   bool Success(const APValue &V, const Expr *E) {
6331     Result.setFrom(V);
6332     return true;
6333   }
6334   bool ZeroInitialization(const Expr *E) {
6335     return Success((const ValueDecl*)nullptr);
6336   }
6337 
6338   bool VisitCastExpr(const CastExpr *E);
6339   bool VisitUnaryAddrOf(const UnaryOperator *E);
6340 };
6341 } // end anonymous namespace
6342 
6343 static bool EvaluateMemberPointer(const Expr *E, MemberPtr &Result,
6344                                   EvalInfo &Info) {
6345   assert(E->isRValue() && E->getType()->isMemberPointerType());
6346   return MemberPointerExprEvaluator(Info, Result).Visit(E);
6347 }
6348 
6349 bool MemberPointerExprEvaluator::VisitCastExpr(const CastExpr *E) {
6350   switch (E->getCastKind()) {
6351   default:
6352     return ExprEvaluatorBaseTy::VisitCastExpr(E);
6353 
6354   case CK_NullToMemberPointer:
6355     VisitIgnoredValue(E->getSubExpr());
6356     return ZeroInitialization(E);
6357 
6358   case CK_BaseToDerivedMemberPointer: {
6359     if (!Visit(E->getSubExpr()))
6360       return false;
6361     if (E->path_empty())
6362       return true;
6363     // Base-to-derived member pointer casts store the path in derived-to-base
6364     // order, so iterate backwards. The CXXBaseSpecifier also provides us with
6365     // the wrong end of the derived->base arc, so stagger the path by one class.
6366     typedef std::reverse_iterator<CastExpr::path_const_iterator> ReverseIter;
6367     for (ReverseIter PathI(E->path_end() - 1), PathE(E->path_begin());
6368          PathI != PathE; ++PathI) {
6369       assert(!(*PathI)->isVirtual() && "memptr cast through vbase");
6370       const CXXRecordDecl *Derived = (*PathI)->getType()->getAsCXXRecordDecl();
6371       if (!Result.castToDerived(Derived))
6372         return Error(E);
6373     }
6374     const Type *FinalTy = E->getType()->castAs<MemberPointerType>()->getClass();
6375     if (!Result.castToDerived(FinalTy->getAsCXXRecordDecl()))
6376       return Error(E);
6377     return true;
6378   }
6379 
6380   case CK_DerivedToBaseMemberPointer:
6381     if (!Visit(E->getSubExpr()))
6382       return false;
6383     for (CastExpr::path_const_iterator PathI = E->path_begin(),
6384          PathE = E->path_end(); PathI != PathE; ++PathI) {
6385       assert(!(*PathI)->isVirtual() && "memptr cast through vbase");
6386       const CXXRecordDecl *Base = (*PathI)->getType()->getAsCXXRecordDecl();
6387       if (!Result.castToBase(Base))
6388         return Error(E);
6389     }
6390     return true;
6391   }
6392 }
6393 
6394 bool MemberPointerExprEvaluator::VisitUnaryAddrOf(const UnaryOperator *E) {
6395   // C++11 [expr.unary.op]p3 has very strict rules on how the address of a
6396   // member can be formed.
6397   return Success(cast<DeclRefExpr>(E->getSubExpr())->getDecl());
6398 }
6399 
6400 //===----------------------------------------------------------------------===//
6401 // Record Evaluation
6402 //===----------------------------------------------------------------------===//
6403 
6404 namespace {
6405   class RecordExprEvaluator
6406   : public ExprEvaluatorBase<RecordExprEvaluator> {
6407     const LValue &This;
6408     APValue &Result;
6409   public:
6410 
6411     RecordExprEvaluator(EvalInfo &info, const LValue &This, APValue &Result)
6412       : ExprEvaluatorBaseTy(info), This(This), Result(Result) {}
6413 
6414     bool Success(const APValue &V, const Expr *E) {
6415       Result = V;
6416       return true;
6417     }
6418     bool ZeroInitialization(const Expr *E) {
6419       return ZeroInitialization(E, E->getType());
6420     }
6421     bool ZeroInitialization(const Expr *E, QualType T);
6422 
6423     bool VisitCallExpr(const CallExpr *E) {
6424       return handleCallExpr(E, Result, &This);
6425     }
6426     bool VisitCastExpr(const CastExpr *E);
6427     bool VisitInitListExpr(const InitListExpr *E);
6428     bool VisitCXXConstructExpr(const CXXConstructExpr *E) {
6429       return VisitCXXConstructExpr(E, E->getType());
6430     }
6431     bool VisitLambdaExpr(const LambdaExpr *E);
6432     bool VisitCXXInheritedCtorInitExpr(const CXXInheritedCtorInitExpr *E);
6433     bool VisitCXXConstructExpr(const CXXConstructExpr *E, QualType T);
6434     bool VisitCXXStdInitializerListExpr(const CXXStdInitializerListExpr *E);
6435 
6436     bool VisitBinCmp(const BinaryOperator *E);
6437   };
6438 }
6439 
6440 /// Perform zero-initialization on an object of non-union class type.
6441 /// C++11 [dcl.init]p5:
6442 ///  To zero-initialize an object or reference of type T means:
6443 ///    [...]
6444 ///    -- if T is a (possibly cv-qualified) non-union class type,
6445 ///       each non-static data member and each base-class subobject is
6446 ///       zero-initialized
6447 static bool HandleClassZeroInitialization(EvalInfo &Info, const Expr *E,
6448                                           const RecordDecl *RD,
6449                                           const LValue &This, APValue &Result) {
6450   assert(!RD->isUnion() && "Expected non-union class type");
6451   const CXXRecordDecl *CD = dyn_cast<CXXRecordDecl>(RD);
6452   Result = APValue(APValue::UninitStruct(), CD ? CD->getNumBases() : 0,
6453                    std::distance(RD->field_begin(), RD->field_end()));
6454 
6455   if (RD->isInvalidDecl()) return false;
6456   const ASTRecordLayout &Layout = Info.Ctx.getASTRecordLayout(RD);
6457 
6458   if (CD) {
6459     unsigned Index = 0;
6460     for (CXXRecordDecl::base_class_const_iterator I = CD->bases_begin(),
6461            End = CD->bases_end(); I != End; ++I, ++Index) {
6462       const CXXRecordDecl *Base = I->getType()->getAsCXXRecordDecl();
6463       LValue Subobject = This;
6464       if (!HandleLValueDirectBase(Info, E, Subobject, CD, Base, &Layout))
6465         return false;
6466       if (!HandleClassZeroInitialization(Info, E, Base, Subobject,
6467                                          Result.getStructBase(Index)))
6468         return false;
6469     }
6470   }
6471 
6472   for (const auto *I : RD->fields()) {
6473     // -- if T is a reference type, no initialization is performed.
6474     if (I->getType()->isReferenceType())
6475       continue;
6476 
6477     LValue Subobject = This;
6478     if (!HandleLValueMember(Info, E, Subobject, I, &Layout))
6479       return false;
6480 
6481     ImplicitValueInitExpr VIE(I->getType());
6482     if (!EvaluateInPlace(
6483           Result.getStructField(I->getFieldIndex()), Info, Subobject, &VIE))
6484       return false;
6485   }
6486 
6487   return true;
6488 }
6489 
6490 bool RecordExprEvaluator::ZeroInitialization(const Expr *E, QualType T) {
6491   const RecordDecl *RD = T->castAs<RecordType>()->getDecl();
6492   if (RD->isInvalidDecl()) return false;
6493   if (RD->isUnion()) {
6494     // C++11 [dcl.init]p5: If T is a (possibly cv-qualified) union type, the
6495     // object's first non-static named data member is zero-initialized
6496     RecordDecl::field_iterator I = RD->field_begin();
6497     if (I == RD->field_end()) {
6498       Result = APValue((const FieldDecl*)nullptr);
6499       return true;
6500     }
6501 
6502     LValue Subobject = This;
6503     if (!HandleLValueMember(Info, E, Subobject, *I))
6504       return false;
6505     Result = APValue(*I);
6506     ImplicitValueInitExpr VIE(I->getType());
6507     return EvaluateInPlace(Result.getUnionValue(), Info, Subobject, &VIE);
6508   }
6509 
6510   if (isa<CXXRecordDecl>(RD) && cast<CXXRecordDecl>(RD)->getNumVBases()) {
6511     Info.FFDiag(E, diag::note_constexpr_virtual_base) << RD;
6512     return false;
6513   }
6514 
6515   return HandleClassZeroInitialization(Info, E, RD, This, Result);
6516 }
6517 
6518 bool RecordExprEvaluator::VisitCastExpr(const CastExpr *E) {
6519   switch (E->getCastKind()) {
6520   default:
6521     return ExprEvaluatorBaseTy::VisitCastExpr(E);
6522 
6523   case CK_ConstructorConversion:
6524     return Visit(E->getSubExpr());
6525 
6526   case CK_DerivedToBase:
6527   case CK_UncheckedDerivedToBase: {
6528     APValue DerivedObject;
6529     if (!Evaluate(DerivedObject, Info, E->getSubExpr()))
6530       return false;
6531     if (!DerivedObject.isStruct())
6532       return Error(E->getSubExpr());
6533 
6534     // Derived-to-base rvalue conversion: just slice off the derived part.
6535     APValue *Value = &DerivedObject;
6536     const CXXRecordDecl *RD = E->getSubExpr()->getType()->getAsCXXRecordDecl();
6537     for (CastExpr::path_const_iterator PathI = E->path_begin(),
6538          PathE = E->path_end(); PathI != PathE; ++PathI) {
6539       assert(!(*PathI)->isVirtual() && "record rvalue with virtual base");
6540       const CXXRecordDecl *Base = (*PathI)->getType()->getAsCXXRecordDecl();
6541       Value = &Value->getStructBase(getBaseIndex(RD, Base));
6542       RD = Base;
6543     }
6544     Result = *Value;
6545     return true;
6546   }
6547   }
6548 }
6549 
6550 bool RecordExprEvaluator::VisitInitListExpr(const InitListExpr *E) {
6551   if (E->isTransparent())
6552     return Visit(E->getInit(0));
6553 
6554   const RecordDecl *RD = E->getType()->castAs<RecordType>()->getDecl();
6555   if (RD->isInvalidDecl()) return false;
6556   const ASTRecordLayout &Layout = Info.Ctx.getASTRecordLayout(RD);
6557 
6558   if (RD->isUnion()) {
6559     const FieldDecl *Field = E->getInitializedFieldInUnion();
6560     Result = APValue(Field);
6561     if (!Field)
6562       return true;
6563 
6564     // If the initializer list for a union does not contain any elements, the
6565     // first element of the union is value-initialized.
6566     // FIXME: The element should be initialized from an initializer list.
6567     //        Is this difference ever observable for initializer lists which
6568     //        we don't build?
6569     ImplicitValueInitExpr VIE(Field->getType());
6570     const Expr *InitExpr = E->getNumInits() ? E->getInit(0) : &VIE;
6571 
6572     LValue Subobject = This;
6573     if (!HandleLValueMember(Info, InitExpr, Subobject, Field, &Layout))
6574       return false;
6575 
6576     // Temporarily override This, in case there's a CXXDefaultInitExpr in here.
6577     ThisOverrideRAII ThisOverride(*Info.CurrentCall, &This,
6578                                   isa<CXXDefaultInitExpr>(InitExpr));
6579 
6580     return EvaluateInPlace(Result.getUnionValue(), Info, Subobject, InitExpr);
6581   }
6582 
6583   auto *CXXRD = dyn_cast<CXXRecordDecl>(RD);
6584   if (Result.isUninit())
6585     Result = APValue(APValue::UninitStruct(), CXXRD ? CXXRD->getNumBases() : 0,
6586                      std::distance(RD->field_begin(), RD->field_end()));
6587   unsigned ElementNo = 0;
6588   bool Success = true;
6589 
6590   // Initialize base classes.
6591   if (CXXRD) {
6592     for (const auto &Base : CXXRD->bases()) {
6593       assert(ElementNo < E->getNumInits() && "missing init for base class");
6594       const Expr *Init = E->getInit(ElementNo);
6595 
6596       LValue Subobject = This;
6597       if (!HandleLValueBase(Info, Init, Subobject, CXXRD, &Base))
6598         return false;
6599 
6600       APValue &FieldVal = Result.getStructBase(ElementNo);
6601       if (!EvaluateInPlace(FieldVal, Info, Subobject, Init)) {
6602         if (!Info.noteFailure())
6603           return false;
6604         Success = false;
6605       }
6606       ++ElementNo;
6607     }
6608   }
6609 
6610   // Initialize members.
6611   for (const auto *Field : RD->fields()) {
6612     // Anonymous bit-fields are not considered members of the class for
6613     // purposes of aggregate initialization.
6614     if (Field->isUnnamedBitfield())
6615       continue;
6616 
6617     LValue Subobject = This;
6618 
6619     bool HaveInit = ElementNo < E->getNumInits();
6620 
6621     // FIXME: Diagnostics here should point to the end of the initializer
6622     // list, not the start.
6623     if (!HandleLValueMember(Info, HaveInit ? E->getInit(ElementNo) : E,
6624                             Subobject, Field, &Layout))
6625       return false;
6626 
6627     // Perform an implicit value-initialization for members beyond the end of
6628     // the initializer list.
6629     ImplicitValueInitExpr VIE(HaveInit ? Info.Ctx.IntTy : Field->getType());
6630     const Expr *Init = HaveInit ? E->getInit(ElementNo++) : &VIE;
6631 
6632     // Temporarily override This, in case there's a CXXDefaultInitExpr in here.
6633     ThisOverrideRAII ThisOverride(*Info.CurrentCall, &This,
6634                                   isa<CXXDefaultInitExpr>(Init));
6635 
6636     APValue &FieldVal = Result.getStructField(Field->getFieldIndex());
6637     if (!EvaluateInPlace(FieldVal, Info, Subobject, Init) ||
6638         (Field->isBitField() && !truncateBitfieldValue(Info, Init,
6639                                                        FieldVal, Field))) {
6640       if (!Info.noteFailure())
6641         return false;
6642       Success = false;
6643     }
6644   }
6645 
6646   return Success;
6647 }
6648 
6649 bool RecordExprEvaluator::VisitCXXConstructExpr(const CXXConstructExpr *E,
6650                                                 QualType T) {
6651   // Note that E's type is not necessarily the type of our class here; we might
6652   // be initializing an array element instead.
6653   const CXXConstructorDecl *FD = E->getConstructor();
6654   if (FD->isInvalidDecl() || FD->getParent()->isInvalidDecl()) return false;
6655 
6656   bool ZeroInit = E->requiresZeroInitialization();
6657   if (CheckTrivialDefaultConstructor(Info, E->getExprLoc(), FD, ZeroInit)) {
6658     // If we've already performed zero-initialization, we're already done.
6659     if (!Result.isUninit())
6660       return true;
6661 
6662     // We can get here in two different ways:
6663     //  1) We're performing value-initialization, and should zero-initialize
6664     //     the object, or
6665     //  2) We're performing default-initialization of an object with a trivial
6666     //     constexpr default constructor, in which case we should start the
6667     //     lifetimes of all the base subobjects (there can be no data member
6668     //     subobjects in this case) per [basic.life]p1.
6669     // Either way, ZeroInitialization is appropriate.
6670     return ZeroInitialization(E, T);
6671   }
6672 
6673   const FunctionDecl *Definition = nullptr;
6674   auto Body = FD->getBody(Definition);
6675 
6676   if (!CheckConstexprFunction(Info, E->getExprLoc(), FD, Definition, Body))
6677     return false;
6678 
6679   // Avoid materializing a temporary for an elidable copy/move constructor.
6680   if (E->isElidable() && !ZeroInit)
6681     if (const MaterializeTemporaryExpr *ME
6682           = dyn_cast<MaterializeTemporaryExpr>(E->getArg(0)))
6683       return Visit(ME->GetTemporaryExpr());
6684 
6685   if (ZeroInit && !ZeroInitialization(E, T))
6686     return false;
6687 
6688   auto Args = llvm::makeArrayRef(E->getArgs(), E->getNumArgs());
6689   return HandleConstructorCall(E, This, Args,
6690                                cast<CXXConstructorDecl>(Definition), Info,
6691                                Result);
6692 }
6693 
6694 bool RecordExprEvaluator::VisitCXXInheritedCtorInitExpr(
6695     const CXXInheritedCtorInitExpr *E) {
6696   if (!Info.CurrentCall) {
6697     assert(Info.checkingPotentialConstantExpression());
6698     return false;
6699   }
6700 
6701   const CXXConstructorDecl *FD = E->getConstructor();
6702   if (FD->isInvalidDecl() || FD->getParent()->isInvalidDecl())
6703     return false;
6704 
6705   const FunctionDecl *Definition = nullptr;
6706   auto Body = FD->getBody(Definition);
6707 
6708   if (!CheckConstexprFunction(Info, E->getExprLoc(), FD, Definition, Body))
6709     return false;
6710 
6711   return HandleConstructorCall(E, This, Info.CurrentCall->Arguments,
6712                                cast<CXXConstructorDecl>(Definition), Info,
6713                                Result);
6714 }
6715 
6716 bool RecordExprEvaluator::VisitCXXStdInitializerListExpr(
6717     const CXXStdInitializerListExpr *E) {
6718   const ConstantArrayType *ArrayType =
6719       Info.Ctx.getAsConstantArrayType(E->getSubExpr()->getType());
6720 
6721   LValue Array;
6722   if (!EvaluateLValue(E->getSubExpr(), Array, Info))
6723     return false;
6724 
6725   // Get a pointer to the first element of the array.
6726   Array.addArray(Info, E, ArrayType);
6727 
6728   // FIXME: Perform the checks on the field types in SemaInit.
6729   RecordDecl *Record = E->getType()->castAs<RecordType>()->getDecl();
6730   RecordDecl::field_iterator Field = Record->field_begin();
6731   if (Field == Record->field_end())
6732     return Error(E);
6733 
6734   // Start pointer.
6735   if (!Field->getType()->isPointerType() ||
6736       !Info.Ctx.hasSameType(Field->getType()->getPointeeType(),
6737                             ArrayType->getElementType()))
6738     return Error(E);
6739 
6740   // FIXME: What if the initializer_list type has base classes, etc?
6741   Result = APValue(APValue::UninitStruct(), 0, 2);
6742   Array.moveInto(Result.getStructField(0));
6743 
6744   if (++Field == Record->field_end())
6745     return Error(E);
6746 
6747   if (Field->getType()->isPointerType() &&
6748       Info.Ctx.hasSameType(Field->getType()->getPointeeType(),
6749                            ArrayType->getElementType())) {
6750     // End pointer.
6751     if (!HandleLValueArrayAdjustment(Info, E, Array,
6752                                      ArrayType->getElementType(),
6753                                      ArrayType->getSize().getZExtValue()))
6754       return false;
6755     Array.moveInto(Result.getStructField(1));
6756   } else if (Info.Ctx.hasSameType(Field->getType(), Info.Ctx.getSizeType()))
6757     // Length.
6758     Result.getStructField(1) = APValue(APSInt(ArrayType->getSize()));
6759   else
6760     return Error(E);
6761 
6762   if (++Field != Record->field_end())
6763     return Error(E);
6764 
6765   return true;
6766 }
6767 
6768 bool RecordExprEvaluator::VisitLambdaExpr(const LambdaExpr *E) {
6769   const CXXRecordDecl *ClosureClass = E->getLambdaClass();
6770   if (ClosureClass->isInvalidDecl()) return false;
6771 
6772   if (Info.checkingPotentialConstantExpression()) return true;
6773 
6774   const size_t NumFields =
6775       std::distance(ClosureClass->field_begin(), ClosureClass->field_end());
6776 
6777   assert(NumFields == (size_t)std::distance(E->capture_init_begin(),
6778                                             E->capture_init_end()) &&
6779          "The number of lambda capture initializers should equal the number of "
6780          "fields within the closure type");
6781 
6782   Result = APValue(APValue::UninitStruct(), /*NumBases*/0, NumFields);
6783   // Iterate through all the lambda's closure object's fields and initialize
6784   // them.
6785   auto *CaptureInitIt = E->capture_init_begin();
6786   const LambdaCapture *CaptureIt = ClosureClass->captures_begin();
6787   bool Success = true;
6788   for (const auto *Field : ClosureClass->fields()) {
6789     assert(CaptureInitIt != E->capture_init_end());
6790     // Get the initializer for this field
6791     Expr *const CurFieldInit = *CaptureInitIt++;
6792 
6793     // If there is no initializer, either this is a VLA or an error has
6794     // occurred.
6795     if (!CurFieldInit)
6796       return Error(E);
6797 
6798     APValue &FieldVal = Result.getStructField(Field->getFieldIndex());
6799     if (!EvaluateInPlace(FieldVal, Info, This, CurFieldInit)) {
6800       if (!Info.keepEvaluatingAfterFailure())
6801         return false;
6802       Success = false;
6803     }
6804     ++CaptureIt;
6805   }
6806   return Success;
6807 }
6808 
6809 static bool EvaluateRecord(const Expr *E, const LValue &This,
6810                            APValue &Result, EvalInfo &Info) {
6811   assert(E->isRValue() && E->getType()->isRecordType() &&
6812          "can't evaluate expression as a record rvalue");
6813   return RecordExprEvaluator(Info, This, Result).Visit(E);
6814 }
6815 
6816 //===----------------------------------------------------------------------===//
6817 // Temporary Evaluation
6818 //
6819 // Temporaries are represented in the AST as rvalues, but generally behave like
6820 // lvalues. The full-object of which the temporary is a subobject is implicitly
6821 // materialized so that a reference can bind to it.
6822 //===----------------------------------------------------------------------===//
6823 namespace {
6824 class TemporaryExprEvaluator
6825   : public LValueExprEvaluatorBase<TemporaryExprEvaluator> {
6826 public:
6827   TemporaryExprEvaluator(EvalInfo &Info, LValue &Result) :
6828     LValueExprEvaluatorBaseTy(Info, Result, false) {}
6829 
6830   /// Visit an expression which constructs the value of this temporary.
6831   bool VisitConstructExpr(const Expr *E) {
6832     APValue &Value = createTemporary(E, false, Result, *Info.CurrentCall);
6833     return EvaluateInPlace(Value, Info, Result, E);
6834   }
6835 
6836   bool VisitCastExpr(const CastExpr *E) {
6837     switch (E->getCastKind()) {
6838     default:
6839       return LValueExprEvaluatorBaseTy::VisitCastExpr(E);
6840 
6841     case CK_ConstructorConversion:
6842       return VisitConstructExpr(E->getSubExpr());
6843     }
6844   }
6845   bool VisitInitListExpr(const InitListExpr *E) {
6846     return VisitConstructExpr(E);
6847   }
6848   bool VisitCXXConstructExpr(const CXXConstructExpr *E) {
6849     return VisitConstructExpr(E);
6850   }
6851   bool VisitCallExpr(const CallExpr *E) {
6852     return VisitConstructExpr(E);
6853   }
6854   bool VisitCXXStdInitializerListExpr(const CXXStdInitializerListExpr *E) {
6855     return VisitConstructExpr(E);
6856   }
6857   bool VisitLambdaExpr(const LambdaExpr *E) {
6858     return VisitConstructExpr(E);
6859   }
6860 };
6861 } // end anonymous namespace
6862 
6863 /// Evaluate an expression of record type as a temporary.
6864 static bool EvaluateTemporary(const Expr *E, LValue &Result, EvalInfo &Info) {
6865   assert(E->isRValue() && E->getType()->isRecordType());
6866   return TemporaryExprEvaluator(Info, Result).Visit(E);
6867 }
6868 
6869 //===----------------------------------------------------------------------===//
6870 // Vector Evaluation
6871 //===----------------------------------------------------------------------===//
6872 
6873 namespace {
6874   class VectorExprEvaluator
6875   : public ExprEvaluatorBase<VectorExprEvaluator> {
6876     APValue &Result;
6877   public:
6878 
6879     VectorExprEvaluator(EvalInfo &info, APValue &Result)
6880       : ExprEvaluatorBaseTy(info), Result(Result) {}
6881 
6882     bool Success(ArrayRef<APValue> V, const Expr *E) {
6883       assert(V.size() == E->getType()->castAs<VectorType>()->getNumElements());
6884       // FIXME: remove this APValue copy.
6885       Result = APValue(V.data(), V.size());
6886       return true;
6887     }
6888     bool Success(const APValue &V, const Expr *E) {
6889       assert(V.isVector());
6890       Result = V;
6891       return true;
6892     }
6893     bool ZeroInitialization(const Expr *E);
6894 
6895     bool VisitUnaryReal(const UnaryOperator *E)
6896       { return Visit(E->getSubExpr()); }
6897     bool VisitCastExpr(const CastExpr* E);
6898     bool VisitInitListExpr(const InitListExpr *E);
6899     bool VisitUnaryImag(const UnaryOperator *E);
6900     // FIXME: Missing: unary -, unary ~, binary add/sub/mul/div,
6901     //                 binary comparisons, binary and/or/xor,
6902     //                 shufflevector, ExtVectorElementExpr
6903   };
6904 } // end anonymous namespace
6905 
6906 static bool EvaluateVector(const Expr* E, APValue& Result, EvalInfo &Info) {
6907   assert(E->isRValue() && E->getType()->isVectorType() &&"not a vector rvalue");
6908   return VectorExprEvaluator(Info, Result).Visit(E);
6909 }
6910 
6911 bool VectorExprEvaluator::VisitCastExpr(const CastExpr *E) {
6912   const VectorType *VTy = E->getType()->castAs<VectorType>();
6913   unsigned NElts = VTy->getNumElements();
6914 
6915   const Expr *SE = E->getSubExpr();
6916   QualType SETy = SE->getType();
6917 
6918   switch (E->getCastKind()) {
6919   case CK_VectorSplat: {
6920     APValue Val = APValue();
6921     if (SETy->isIntegerType()) {
6922       APSInt IntResult;
6923       if (!EvaluateInteger(SE, IntResult, Info))
6924         return false;
6925       Val = APValue(std::move(IntResult));
6926     } else if (SETy->isRealFloatingType()) {
6927       APFloat FloatResult(0.0);
6928       if (!EvaluateFloat(SE, FloatResult, Info))
6929         return false;
6930       Val = APValue(std::move(FloatResult));
6931     } else {
6932       return Error(E);
6933     }
6934 
6935     // Splat and create vector APValue.
6936     SmallVector<APValue, 4> Elts(NElts, Val);
6937     return Success(Elts, E);
6938   }
6939   case CK_BitCast: {
6940     // Evaluate the operand into an APInt we can extract from.
6941     llvm::APInt SValInt;
6942     if (!EvalAndBitcastToAPInt(Info, SE, SValInt))
6943       return false;
6944     // Extract the elements
6945     QualType EltTy = VTy->getElementType();
6946     unsigned EltSize = Info.Ctx.getTypeSize(EltTy);
6947     bool BigEndian = Info.Ctx.getTargetInfo().isBigEndian();
6948     SmallVector<APValue, 4> Elts;
6949     if (EltTy->isRealFloatingType()) {
6950       const llvm::fltSemantics &Sem = Info.Ctx.getFloatTypeSemantics(EltTy);
6951       unsigned FloatEltSize = EltSize;
6952       if (&Sem == &APFloat::x87DoubleExtended())
6953         FloatEltSize = 80;
6954       for (unsigned i = 0; i < NElts; i++) {
6955         llvm::APInt Elt;
6956         if (BigEndian)
6957           Elt = SValInt.rotl(i*EltSize+FloatEltSize).trunc(FloatEltSize);
6958         else
6959           Elt = SValInt.rotr(i*EltSize).trunc(FloatEltSize);
6960         Elts.push_back(APValue(APFloat(Sem, Elt)));
6961       }
6962     } else if (EltTy->isIntegerType()) {
6963       for (unsigned i = 0; i < NElts; i++) {
6964         llvm::APInt Elt;
6965         if (BigEndian)
6966           Elt = SValInt.rotl(i*EltSize+EltSize).zextOrTrunc(EltSize);
6967         else
6968           Elt = SValInt.rotr(i*EltSize).zextOrTrunc(EltSize);
6969         Elts.push_back(APValue(APSInt(Elt, EltTy->isSignedIntegerType())));
6970       }
6971     } else {
6972       return Error(E);
6973     }
6974     return Success(Elts, E);
6975   }
6976   default:
6977     return ExprEvaluatorBaseTy::VisitCastExpr(E);
6978   }
6979 }
6980 
6981 bool
6982 VectorExprEvaluator::VisitInitListExpr(const InitListExpr *E) {
6983   const VectorType *VT = E->getType()->castAs<VectorType>();
6984   unsigned NumInits = E->getNumInits();
6985   unsigned NumElements = VT->getNumElements();
6986 
6987   QualType EltTy = VT->getElementType();
6988   SmallVector<APValue, 4> Elements;
6989 
6990   // The number of initializers can be less than the number of
6991   // vector elements. For OpenCL, this can be due to nested vector
6992   // initialization. For GCC compatibility, missing trailing elements
6993   // should be initialized with zeroes.
6994   unsigned CountInits = 0, CountElts = 0;
6995   while (CountElts < NumElements) {
6996     // Handle nested vector initialization.
6997     if (CountInits < NumInits
6998         && E->getInit(CountInits)->getType()->isVectorType()) {
6999       APValue v;
7000       if (!EvaluateVector(E->getInit(CountInits), v, Info))
7001         return Error(E);
7002       unsigned vlen = v.getVectorLength();
7003       for (unsigned j = 0; j < vlen; j++)
7004         Elements.push_back(v.getVectorElt(j));
7005       CountElts += vlen;
7006     } else if (EltTy->isIntegerType()) {
7007       llvm::APSInt sInt(32);
7008       if (CountInits < NumInits) {
7009         if (!EvaluateInteger(E->getInit(CountInits), sInt, Info))
7010           return false;
7011       } else // trailing integer zero.
7012         sInt = Info.Ctx.MakeIntValue(0, EltTy);
7013       Elements.push_back(APValue(sInt));
7014       CountElts++;
7015     } else {
7016       llvm::APFloat f(0.0);
7017       if (CountInits < NumInits) {
7018         if (!EvaluateFloat(E->getInit(CountInits), f, Info))
7019           return false;
7020       } else // trailing float zero.
7021         f = APFloat::getZero(Info.Ctx.getFloatTypeSemantics(EltTy));
7022       Elements.push_back(APValue(f));
7023       CountElts++;
7024     }
7025     CountInits++;
7026   }
7027   return Success(Elements, E);
7028 }
7029 
7030 bool
7031 VectorExprEvaluator::ZeroInitialization(const Expr *E) {
7032   const VectorType *VT = E->getType()->getAs<VectorType>();
7033   QualType EltTy = VT->getElementType();
7034   APValue ZeroElement;
7035   if (EltTy->isIntegerType())
7036     ZeroElement = APValue(Info.Ctx.MakeIntValue(0, EltTy));
7037   else
7038     ZeroElement =
7039         APValue(APFloat::getZero(Info.Ctx.getFloatTypeSemantics(EltTy)));
7040 
7041   SmallVector<APValue, 4> Elements(VT->getNumElements(), ZeroElement);
7042   return Success(Elements, E);
7043 }
7044 
7045 bool VectorExprEvaluator::VisitUnaryImag(const UnaryOperator *E) {
7046   VisitIgnoredValue(E->getSubExpr());
7047   return ZeroInitialization(E);
7048 }
7049 
7050 //===----------------------------------------------------------------------===//
7051 // Array Evaluation
7052 //===----------------------------------------------------------------------===//
7053 
7054 namespace {
7055   class ArrayExprEvaluator
7056   : public ExprEvaluatorBase<ArrayExprEvaluator> {
7057     const LValue &This;
7058     APValue &Result;
7059   public:
7060 
7061     ArrayExprEvaluator(EvalInfo &Info, const LValue &This, APValue &Result)
7062       : ExprEvaluatorBaseTy(Info), This(This), Result(Result) {}
7063 
7064     bool Success(const APValue &V, const Expr *E) {
7065       assert((V.isArray() || V.isLValue()) &&
7066              "expected array or string literal");
7067       Result = V;
7068       return true;
7069     }
7070 
7071     bool ZeroInitialization(const Expr *E) {
7072       const ConstantArrayType *CAT =
7073           Info.Ctx.getAsConstantArrayType(E->getType());
7074       if (!CAT)
7075         return Error(E);
7076 
7077       Result = APValue(APValue::UninitArray(), 0,
7078                        CAT->getSize().getZExtValue());
7079       if (!Result.hasArrayFiller()) return true;
7080 
7081       // Zero-initialize all elements.
7082       LValue Subobject = This;
7083       Subobject.addArray(Info, E, CAT);
7084       ImplicitValueInitExpr VIE(CAT->getElementType());
7085       return EvaluateInPlace(Result.getArrayFiller(), Info, Subobject, &VIE);
7086     }
7087 
7088     bool VisitCallExpr(const CallExpr *E) {
7089       return handleCallExpr(E, Result, &This);
7090     }
7091     bool VisitInitListExpr(const InitListExpr *E);
7092     bool VisitArrayInitLoopExpr(const ArrayInitLoopExpr *E);
7093     bool VisitCXXConstructExpr(const CXXConstructExpr *E);
7094     bool VisitCXXConstructExpr(const CXXConstructExpr *E,
7095                                const LValue &Subobject,
7096                                APValue *Value, QualType Type);
7097   };
7098 } // end anonymous namespace
7099 
7100 static bool EvaluateArray(const Expr *E, const LValue &This,
7101                           APValue &Result, EvalInfo &Info) {
7102   assert(E->isRValue() && E->getType()->isArrayType() && "not an array rvalue");
7103   return ArrayExprEvaluator(Info, This, Result).Visit(E);
7104 }
7105 
7106 // Return true iff the given array filler may depend on the element index.
7107 static bool MaybeElementDependentArrayFiller(const Expr *FillerExpr) {
7108   // For now, just whitelist non-class value-initialization and initialization
7109   // lists comprised of them.
7110   if (isa<ImplicitValueInitExpr>(FillerExpr))
7111     return false;
7112   if (const InitListExpr *ILE = dyn_cast<InitListExpr>(FillerExpr)) {
7113     for (unsigned I = 0, E = ILE->getNumInits(); I != E; ++I) {
7114       if (MaybeElementDependentArrayFiller(ILE->getInit(I)))
7115         return true;
7116     }
7117     return false;
7118   }
7119   return true;
7120 }
7121 
7122 bool ArrayExprEvaluator::VisitInitListExpr(const InitListExpr *E) {
7123   const ConstantArrayType *CAT = Info.Ctx.getAsConstantArrayType(E->getType());
7124   if (!CAT)
7125     return Error(E);
7126 
7127   // C++11 [dcl.init.string]p1: A char array [...] can be initialized by [...]
7128   // an appropriately-typed string literal enclosed in braces.
7129   if (E->isStringLiteralInit()) {
7130     LValue LV;
7131     if (!EvaluateLValue(E->getInit(0), LV, Info))
7132       return false;
7133     APValue Val;
7134     LV.moveInto(Val);
7135     return Success(Val, E);
7136   }
7137 
7138   bool Success = true;
7139 
7140   assert((!Result.isArray() || Result.getArrayInitializedElts() == 0) &&
7141          "zero-initialized array shouldn't have any initialized elts");
7142   APValue Filler;
7143   if (Result.isArray() && Result.hasArrayFiller())
7144     Filler = Result.getArrayFiller();
7145 
7146   unsigned NumEltsToInit = E->getNumInits();
7147   unsigned NumElts = CAT->getSize().getZExtValue();
7148   const Expr *FillerExpr = E->hasArrayFiller() ? E->getArrayFiller() : nullptr;
7149 
7150   // If the initializer might depend on the array index, run it for each
7151   // array element.
7152   if (NumEltsToInit != NumElts && MaybeElementDependentArrayFiller(FillerExpr))
7153     NumEltsToInit = NumElts;
7154 
7155   LLVM_DEBUG(llvm::dbgs() << "The number of elements to initialize: "
7156                           << NumEltsToInit << ".\n");
7157 
7158   Result = APValue(APValue::UninitArray(), NumEltsToInit, NumElts);
7159 
7160   // If the array was previously zero-initialized, preserve the
7161   // zero-initialized values.
7162   if (!Filler.isUninit()) {
7163     for (unsigned I = 0, E = Result.getArrayInitializedElts(); I != E; ++I)
7164       Result.getArrayInitializedElt(I) = Filler;
7165     if (Result.hasArrayFiller())
7166       Result.getArrayFiller() = Filler;
7167   }
7168 
7169   LValue Subobject = This;
7170   Subobject.addArray(Info, E, CAT);
7171   for (unsigned Index = 0; Index != NumEltsToInit; ++Index) {
7172     const Expr *Init =
7173         Index < E->getNumInits() ? E->getInit(Index) : FillerExpr;
7174     if (!EvaluateInPlace(Result.getArrayInitializedElt(Index),
7175                          Info, Subobject, Init) ||
7176         !HandleLValueArrayAdjustment(Info, Init, Subobject,
7177                                      CAT->getElementType(), 1)) {
7178       if (!Info.noteFailure())
7179         return false;
7180       Success = false;
7181     }
7182   }
7183 
7184   if (!Result.hasArrayFiller())
7185     return Success;
7186 
7187   // If we get here, we have a trivial filler, which we can just evaluate
7188   // once and splat over the rest of the array elements.
7189   assert(FillerExpr && "no array filler for incomplete init list");
7190   return EvaluateInPlace(Result.getArrayFiller(), Info, Subobject,
7191                          FillerExpr) && Success;
7192 }
7193 
7194 bool ArrayExprEvaluator::VisitArrayInitLoopExpr(const ArrayInitLoopExpr *E) {
7195   if (E->getCommonExpr() &&
7196       !Evaluate(Info.CurrentCall->createTemporary(E->getCommonExpr(), false),
7197                 Info, E->getCommonExpr()->getSourceExpr()))
7198     return false;
7199 
7200   auto *CAT = cast<ConstantArrayType>(E->getType()->castAsArrayTypeUnsafe());
7201 
7202   uint64_t Elements = CAT->getSize().getZExtValue();
7203   Result = APValue(APValue::UninitArray(), Elements, Elements);
7204 
7205   LValue Subobject = This;
7206   Subobject.addArray(Info, E, CAT);
7207 
7208   bool Success = true;
7209   for (EvalInfo::ArrayInitLoopIndex Index(Info); Index != Elements; ++Index) {
7210     if (!EvaluateInPlace(Result.getArrayInitializedElt(Index),
7211                          Info, Subobject, E->getSubExpr()) ||
7212         !HandleLValueArrayAdjustment(Info, E, Subobject,
7213                                      CAT->getElementType(), 1)) {
7214       if (!Info.noteFailure())
7215         return false;
7216       Success = false;
7217     }
7218   }
7219 
7220   return Success;
7221 }
7222 
7223 bool ArrayExprEvaluator::VisitCXXConstructExpr(const CXXConstructExpr *E) {
7224   return VisitCXXConstructExpr(E, This, &Result, E->getType());
7225 }
7226 
7227 bool ArrayExprEvaluator::VisitCXXConstructExpr(const CXXConstructExpr *E,
7228                                                const LValue &Subobject,
7229                                                APValue *Value,
7230                                                QualType Type) {
7231   bool HadZeroInit = !Value->isUninit();
7232 
7233   if (const ConstantArrayType *CAT = Info.Ctx.getAsConstantArrayType(Type)) {
7234     unsigned N = CAT->getSize().getZExtValue();
7235 
7236     // Preserve the array filler if we had prior zero-initialization.
7237     APValue Filler =
7238       HadZeroInit && Value->hasArrayFiller() ? Value->getArrayFiller()
7239                                              : APValue();
7240 
7241     *Value = APValue(APValue::UninitArray(), N, N);
7242 
7243     if (HadZeroInit)
7244       for (unsigned I = 0; I != N; ++I)
7245         Value->getArrayInitializedElt(I) = Filler;
7246 
7247     // Initialize the elements.
7248     LValue ArrayElt = Subobject;
7249     ArrayElt.addArray(Info, E, CAT);
7250     for (unsigned I = 0; I != N; ++I)
7251       if (!VisitCXXConstructExpr(E, ArrayElt, &Value->getArrayInitializedElt(I),
7252                                  CAT->getElementType()) ||
7253           !HandleLValueArrayAdjustment(Info, E, ArrayElt,
7254                                        CAT->getElementType(), 1))
7255         return false;
7256 
7257     return true;
7258   }
7259 
7260   if (!Type->isRecordType())
7261     return Error(E);
7262 
7263   return RecordExprEvaluator(Info, Subobject, *Value)
7264              .VisitCXXConstructExpr(E, Type);
7265 }
7266 
7267 //===----------------------------------------------------------------------===//
7268 // Integer Evaluation
7269 //
7270 // As a GNU extension, we support casting pointers to sufficiently-wide integer
7271 // types and back in constant folding. Integer values are thus represented
7272 // either as an integer-valued APValue, or as an lvalue-valued APValue.
7273 //===----------------------------------------------------------------------===//
7274 
7275 namespace {
7276 class IntExprEvaluator
7277         : public ExprEvaluatorBase<IntExprEvaluator> {
7278   APValue &Result;
7279 public:
7280   IntExprEvaluator(EvalInfo &info, APValue &result)
7281       : ExprEvaluatorBaseTy(info), Result(result) {}
7282 
7283   bool Success(const llvm::APSInt &SI, const Expr *E, APValue &Result) {
7284     assert(E->getType()->isIntegralOrEnumerationType() &&
7285            "Invalid evaluation result.");
7286     assert(SI.isSigned() == E->getType()->isSignedIntegerOrEnumerationType() &&
7287            "Invalid evaluation result.");
7288     assert(SI.getBitWidth() == Info.Ctx.getIntWidth(E->getType()) &&
7289            "Invalid evaluation result.");
7290     Result = APValue(SI);
7291     return true;
7292   }
7293   bool Success(const llvm::APSInt &SI, const Expr *E) {
7294     return Success(SI, E, Result);
7295   }
7296 
7297   bool Success(const llvm::APInt &I, const Expr *E, APValue &Result) {
7298     assert(E->getType()->isIntegralOrEnumerationType() &&
7299            "Invalid evaluation result.");
7300     assert(I.getBitWidth() == Info.Ctx.getIntWidth(E->getType()) &&
7301            "Invalid evaluation result.");
7302     Result = APValue(APSInt(I));
7303     Result.getInt().setIsUnsigned(
7304                             E->getType()->isUnsignedIntegerOrEnumerationType());
7305     return true;
7306   }
7307   bool Success(const llvm::APInt &I, const Expr *E) {
7308     return Success(I, E, Result);
7309   }
7310 
7311   bool Success(uint64_t Value, const Expr *E, APValue &Result) {
7312     assert(E->getType()->isIntegralOrEnumerationType() &&
7313            "Invalid evaluation result.");
7314     Result = APValue(Info.Ctx.MakeIntValue(Value, E->getType()));
7315     return true;
7316   }
7317   bool Success(uint64_t Value, const Expr *E) {
7318     return Success(Value, E, Result);
7319   }
7320 
7321   bool Success(CharUnits Size, const Expr *E) {
7322     return Success(Size.getQuantity(), E);
7323   }
7324 
7325   bool Success(const APValue &V, const Expr *E) {
7326     if (V.isLValue() || V.isAddrLabelDiff()) {
7327       Result = V;
7328       return true;
7329     }
7330     return Success(V.getInt(), E);
7331   }
7332 
7333   bool ZeroInitialization(const Expr *E) { return Success(0, E); }
7334 
7335   //===--------------------------------------------------------------------===//
7336   //                            Visitor Methods
7337   //===--------------------------------------------------------------------===//
7338 
7339   bool VisitIntegerLiteral(const IntegerLiteral *E) {
7340     return Success(E->getValue(), E);
7341   }
7342   bool VisitCharacterLiteral(const CharacterLiteral *E) {
7343     return Success(E->getValue(), E);
7344   }
7345 
7346   bool CheckReferencedDecl(const Expr *E, const Decl *D);
7347   bool VisitDeclRefExpr(const DeclRefExpr *E) {
7348     if (CheckReferencedDecl(E, E->getDecl()))
7349       return true;
7350 
7351     return ExprEvaluatorBaseTy::VisitDeclRefExpr(E);
7352   }
7353   bool VisitMemberExpr(const MemberExpr *E) {
7354     if (CheckReferencedDecl(E, E->getMemberDecl())) {
7355       VisitIgnoredBaseExpression(E->getBase());
7356       return true;
7357     }
7358 
7359     return ExprEvaluatorBaseTy::VisitMemberExpr(E);
7360   }
7361 
7362   bool VisitCallExpr(const CallExpr *E);
7363   bool VisitBuiltinCallExpr(const CallExpr *E, unsigned BuiltinOp);
7364   bool VisitBinaryOperator(const BinaryOperator *E);
7365   bool VisitOffsetOfExpr(const OffsetOfExpr *E);
7366   bool VisitUnaryOperator(const UnaryOperator *E);
7367 
7368   bool VisitCastExpr(const CastExpr* E);
7369   bool VisitUnaryExprOrTypeTraitExpr(const UnaryExprOrTypeTraitExpr *E);
7370 
7371   bool VisitCXXBoolLiteralExpr(const CXXBoolLiteralExpr *E) {
7372     return Success(E->getValue(), E);
7373   }
7374 
7375   bool VisitObjCBoolLiteralExpr(const ObjCBoolLiteralExpr *E) {
7376     return Success(E->getValue(), E);
7377   }
7378 
7379   bool VisitArrayInitIndexExpr(const ArrayInitIndexExpr *E) {
7380     if (Info.ArrayInitIndex == uint64_t(-1)) {
7381       // We were asked to evaluate this subexpression independent of the
7382       // enclosing ArrayInitLoopExpr. We can't do that.
7383       Info.FFDiag(E);
7384       return false;
7385     }
7386     return Success(Info.ArrayInitIndex, E);
7387   }
7388 
7389   // Note, GNU defines __null as an integer, not a pointer.
7390   bool VisitGNUNullExpr(const GNUNullExpr *E) {
7391     return ZeroInitialization(E);
7392   }
7393 
7394   bool VisitTypeTraitExpr(const TypeTraitExpr *E) {
7395     return Success(E->getValue(), E);
7396   }
7397 
7398   bool VisitArrayTypeTraitExpr(const ArrayTypeTraitExpr *E) {
7399     return Success(E->getValue(), E);
7400   }
7401 
7402   bool VisitExpressionTraitExpr(const ExpressionTraitExpr *E) {
7403     return Success(E->getValue(), E);
7404   }
7405 
7406   bool VisitUnaryReal(const UnaryOperator *E);
7407   bool VisitUnaryImag(const UnaryOperator *E);
7408 
7409   bool VisitCXXNoexceptExpr(const CXXNoexceptExpr *E);
7410   bool VisitSizeOfPackExpr(const SizeOfPackExpr *E);
7411 
7412   // FIXME: Missing: array subscript of vector, member of vector
7413 };
7414 
7415 class FixedPointExprEvaluator
7416     : public ExprEvaluatorBase<FixedPointExprEvaluator> {
7417   APValue &Result;
7418 
7419  public:
7420   FixedPointExprEvaluator(EvalInfo &info, APValue &result)
7421       : ExprEvaluatorBaseTy(info), Result(result) {}
7422 
7423   bool Success(const llvm::APSInt &SI, const Expr *E, APValue &Result) {
7424     assert(E->getType()->isFixedPointType() && "Invalid evaluation result.");
7425     assert(SI.isSigned() == E->getType()->isSignedFixedPointType() &&
7426            "Invalid evaluation result.");
7427     assert(SI.getBitWidth() == Info.Ctx.getIntWidth(E->getType()) &&
7428            "Invalid evaluation result.");
7429     Result = APValue(SI);
7430     return true;
7431   }
7432   bool Success(const llvm::APSInt &SI, const Expr *E) {
7433     return Success(SI, E, Result);
7434   }
7435 
7436   bool Success(const llvm::APInt &I, const Expr *E, APValue &Result) {
7437     assert(E->getType()->isFixedPointType() && "Invalid evaluation result.");
7438     assert(I.getBitWidth() == Info.Ctx.getIntWidth(E->getType()) &&
7439            "Invalid evaluation result.");
7440     Result = APValue(APSInt(I));
7441     Result.getInt().setIsUnsigned(E->getType()->isUnsignedFixedPointType());
7442     return true;
7443   }
7444   bool Success(const llvm::APInt &I, const Expr *E) {
7445     return Success(I, E, Result);
7446   }
7447 
7448   bool Success(uint64_t Value, const Expr *E, APValue &Result) {
7449     assert(E->getType()->isFixedPointType() && "Invalid evaluation result.");
7450     Result = APValue(Info.Ctx.MakeIntValue(Value, E->getType()));
7451     return true;
7452   }
7453   bool Success(uint64_t Value, const Expr *E) {
7454     return Success(Value, E, Result);
7455   }
7456 
7457   bool Success(CharUnits Size, const Expr *E) {
7458     return Success(Size.getQuantity(), E);
7459   }
7460 
7461   bool Success(const APValue &V, const Expr *E) {
7462     if (V.isLValue() || V.isAddrLabelDiff()) {
7463       Result = V;
7464       return true;
7465     }
7466     return Success(V.getInt(), E);
7467   }
7468 
7469   bool ZeroInitialization(const Expr *E) { return Success(0, E); }
7470 
7471   //===--------------------------------------------------------------------===//
7472   //                            Visitor Methods
7473   //===--------------------------------------------------------------------===//
7474 
7475   bool VisitFixedPointLiteral(const FixedPointLiteral *E) {
7476     return Success(E->getValue(), E);
7477   }
7478 
7479   bool VisitUnaryOperator(const UnaryOperator *E);
7480 };
7481 } // end anonymous namespace
7482 
7483 /// EvaluateIntegerOrLValue - Evaluate an rvalue integral-typed expression, and
7484 /// produce either the integer value or a pointer.
7485 ///
7486 /// GCC has a heinous extension which folds casts between pointer types and
7487 /// pointer-sized integral types. We support this by allowing the evaluation of
7488 /// an integer rvalue to produce a pointer (represented as an lvalue) instead.
7489 /// Some simple arithmetic on such values is supported (they are treated much
7490 /// like char*).
7491 static bool EvaluateIntegerOrLValue(const Expr *E, APValue &Result,
7492                                     EvalInfo &Info) {
7493   assert(E->isRValue() && E->getType()->isIntegralOrEnumerationType());
7494   return IntExprEvaluator(Info, Result).Visit(E);
7495 }
7496 
7497 static bool EvaluateInteger(const Expr *E, APSInt &Result, EvalInfo &Info) {
7498   APValue Val;
7499   if (!EvaluateIntegerOrLValue(E, Val, Info))
7500     return false;
7501   if (!Val.isInt()) {
7502     // FIXME: It would be better to produce the diagnostic for casting
7503     //        a pointer to an integer.
7504     Info.FFDiag(E, diag::note_invalid_subexpr_in_const_expr);
7505     return false;
7506   }
7507   Result = Val.getInt();
7508   return true;
7509 }
7510 
7511 /// Check whether the given declaration can be directly converted to an integral
7512 /// rvalue. If not, no diagnostic is produced; there are other things we can
7513 /// try.
7514 bool IntExprEvaluator::CheckReferencedDecl(const Expr* E, const Decl* D) {
7515   // Enums are integer constant exprs.
7516   if (const EnumConstantDecl *ECD = dyn_cast<EnumConstantDecl>(D)) {
7517     // Check for signedness/width mismatches between E type and ECD value.
7518     bool SameSign = (ECD->getInitVal().isSigned()
7519                      == E->getType()->isSignedIntegerOrEnumerationType());
7520     bool SameWidth = (ECD->getInitVal().getBitWidth()
7521                       == Info.Ctx.getIntWidth(E->getType()));
7522     if (SameSign && SameWidth)
7523       return Success(ECD->getInitVal(), E);
7524     else {
7525       // Get rid of mismatch (otherwise Success assertions will fail)
7526       // by computing a new value matching the type of E.
7527       llvm::APSInt Val = ECD->getInitVal();
7528       if (!SameSign)
7529         Val.setIsSigned(!ECD->getInitVal().isSigned());
7530       if (!SameWidth)
7531         Val = Val.extOrTrunc(Info.Ctx.getIntWidth(E->getType()));
7532       return Success(Val, E);
7533     }
7534   }
7535   return false;
7536 }
7537 
7538 /// Values returned by __builtin_classify_type, chosen to match the values
7539 /// produced by GCC's builtin.
7540 enum class GCCTypeClass {
7541   None = -1,
7542   Void = 0,
7543   Integer = 1,
7544   // GCC reserves 2 for character types, but instead classifies them as
7545   // integers.
7546   Enum = 3,
7547   Bool = 4,
7548   Pointer = 5,
7549   // GCC reserves 6 for references, but appears to never use it (because
7550   // expressions never have reference type, presumably).
7551   PointerToDataMember = 7,
7552   RealFloat = 8,
7553   Complex = 9,
7554   // GCC reserves 10 for functions, but does not use it since GCC version 6 due
7555   // to decay to pointer. (Prior to version 6 it was only used in C++ mode).
7556   // GCC claims to reserve 11 for pointers to member functions, but *actually*
7557   // uses 12 for that purpose, same as for a class or struct. Maybe it
7558   // internally implements a pointer to member as a struct?  Who knows.
7559   PointerToMemberFunction = 12, // Not a bug, see above.
7560   ClassOrStruct = 12,
7561   Union = 13,
7562   // GCC reserves 14 for arrays, but does not use it since GCC version 6 due to
7563   // decay to pointer. (Prior to version 6 it was only used in C++ mode).
7564   // GCC reserves 15 for strings, but actually uses 5 (pointer) for string
7565   // literals.
7566 };
7567 
7568 /// EvaluateBuiltinClassifyType - Evaluate __builtin_classify_type the same way
7569 /// as GCC.
7570 static GCCTypeClass
7571 EvaluateBuiltinClassifyType(QualType T, const LangOptions &LangOpts) {
7572   assert(!T->isDependentType() && "unexpected dependent type");
7573 
7574   QualType CanTy = T.getCanonicalType();
7575   const BuiltinType *BT = dyn_cast<BuiltinType>(CanTy);
7576 
7577   switch (CanTy->getTypeClass()) {
7578 #define TYPE(ID, BASE)
7579 #define DEPENDENT_TYPE(ID, BASE) case Type::ID:
7580 #define NON_CANONICAL_TYPE(ID, BASE) case Type::ID:
7581 #define NON_CANONICAL_UNLESS_DEPENDENT_TYPE(ID, BASE) case Type::ID:
7582 #include "clang/AST/TypeNodes.def"
7583   case Type::Auto:
7584   case Type::DeducedTemplateSpecialization:
7585       llvm_unreachable("unexpected non-canonical or dependent type");
7586 
7587   case Type::Builtin:
7588     switch (BT->getKind()) {
7589 #define BUILTIN_TYPE(ID, SINGLETON_ID)
7590 #define SIGNED_TYPE(ID, SINGLETON_ID) \
7591     case BuiltinType::ID: return GCCTypeClass::Integer;
7592 #define FLOATING_TYPE(ID, SINGLETON_ID) \
7593     case BuiltinType::ID: return GCCTypeClass::RealFloat;
7594 #define PLACEHOLDER_TYPE(ID, SINGLETON_ID) \
7595     case BuiltinType::ID: break;
7596 #include "clang/AST/BuiltinTypes.def"
7597     case BuiltinType::Void:
7598       return GCCTypeClass::Void;
7599 
7600     case BuiltinType::Bool:
7601       return GCCTypeClass::Bool;
7602 
7603     case BuiltinType::Char_U:
7604     case BuiltinType::UChar:
7605     case BuiltinType::WChar_U:
7606     case BuiltinType::Char8:
7607     case BuiltinType::Char16:
7608     case BuiltinType::Char32:
7609     case BuiltinType::UShort:
7610     case BuiltinType::UInt:
7611     case BuiltinType::ULong:
7612     case BuiltinType::ULongLong:
7613     case BuiltinType::UInt128:
7614       return GCCTypeClass::Integer;
7615 
7616     case BuiltinType::UShortAccum:
7617     case BuiltinType::UAccum:
7618     case BuiltinType::ULongAccum:
7619     case BuiltinType::UShortFract:
7620     case BuiltinType::UFract:
7621     case BuiltinType::ULongFract:
7622     case BuiltinType::SatUShortAccum:
7623     case BuiltinType::SatUAccum:
7624     case BuiltinType::SatULongAccum:
7625     case BuiltinType::SatUShortFract:
7626     case BuiltinType::SatUFract:
7627     case BuiltinType::SatULongFract:
7628       return GCCTypeClass::None;
7629 
7630     case BuiltinType::NullPtr:
7631 
7632     case BuiltinType::ObjCId:
7633     case BuiltinType::ObjCClass:
7634     case BuiltinType::ObjCSel:
7635 #define IMAGE_TYPE(ImgType, Id, SingletonId, Access, Suffix) \
7636     case BuiltinType::Id:
7637 #include "clang/Basic/OpenCLImageTypes.def"
7638     case BuiltinType::OCLSampler:
7639     case BuiltinType::OCLEvent:
7640     case BuiltinType::OCLClkEvent:
7641     case BuiltinType::OCLQueue:
7642     case BuiltinType::OCLReserveID:
7643       return GCCTypeClass::None;
7644 
7645     case BuiltinType::Dependent:
7646       llvm_unreachable("unexpected dependent type");
7647     };
7648     llvm_unreachable("unexpected placeholder type");
7649 
7650   case Type::Enum:
7651     return LangOpts.CPlusPlus ? GCCTypeClass::Enum : GCCTypeClass::Integer;
7652 
7653   case Type::Pointer:
7654   case Type::ConstantArray:
7655   case Type::VariableArray:
7656   case Type::IncompleteArray:
7657   case Type::FunctionNoProto:
7658   case Type::FunctionProto:
7659     return GCCTypeClass::Pointer;
7660 
7661   case Type::MemberPointer:
7662     return CanTy->isMemberDataPointerType()
7663                ? GCCTypeClass::PointerToDataMember
7664                : GCCTypeClass::PointerToMemberFunction;
7665 
7666   case Type::Complex:
7667     return GCCTypeClass::Complex;
7668 
7669   case Type::Record:
7670     return CanTy->isUnionType() ? GCCTypeClass::Union
7671                                 : GCCTypeClass::ClassOrStruct;
7672 
7673   case Type::Atomic:
7674     // GCC classifies _Atomic T the same as T.
7675     return EvaluateBuiltinClassifyType(
7676         CanTy->castAs<AtomicType>()->getValueType(), LangOpts);
7677 
7678   case Type::BlockPointer:
7679   case Type::Vector:
7680   case Type::ExtVector:
7681   case Type::ObjCObject:
7682   case Type::ObjCInterface:
7683   case Type::ObjCObjectPointer:
7684   case Type::Pipe:
7685     // GCC classifies vectors as None. We follow its lead and classify all
7686     // other types that don't fit into the regular classification the same way.
7687     return GCCTypeClass::None;
7688 
7689   case Type::LValueReference:
7690   case Type::RValueReference:
7691     llvm_unreachable("invalid type for expression");
7692   }
7693 
7694   llvm_unreachable("unexpected type class");
7695 }
7696 
7697 /// EvaluateBuiltinClassifyType - Evaluate __builtin_classify_type the same way
7698 /// as GCC.
7699 static GCCTypeClass
7700 EvaluateBuiltinClassifyType(const CallExpr *E, const LangOptions &LangOpts) {
7701   // If no argument was supplied, default to None. This isn't
7702   // ideal, however it is what gcc does.
7703   if (E->getNumArgs() == 0)
7704     return GCCTypeClass::None;
7705 
7706   // FIXME: Bizarrely, GCC treats a call with more than one argument as not
7707   // being an ICE, but still folds it to a constant using the type of the first
7708   // argument.
7709   return EvaluateBuiltinClassifyType(E->getArg(0)->getType(), LangOpts);
7710 }
7711 
7712 /// EvaluateBuiltinConstantPForLValue - Determine the result of
7713 /// __builtin_constant_p when applied to the given lvalue.
7714 ///
7715 /// An lvalue is only "constant" if it is a pointer or reference to the first
7716 /// character of a string literal.
7717 template<typename LValue>
7718 static bool EvaluateBuiltinConstantPForLValue(const LValue &LV) {
7719   const Expr *E = LV.getLValueBase().template dyn_cast<const Expr*>();
7720   return E && isa<StringLiteral>(E) && LV.getLValueOffset().isZero();
7721 }
7722 
7723 /// EvaluateBuiltinConstantP - Evaluate __builtin_constant_p as similarly to
7724 /// GCC as we can manage.
7725 static bool EvaluateBuiltinConstantP(ASTContext &Ctx, const Expr *Arg) {
7726   QualType ArgType = Arg->getType();
7727 
7728   // __builtin_constant_p always has one operand. The rules which gcc follows
7729   // are not precisely documented, but are as follows:
7730   //
7731   //  - If the operand is of integral, floating, complex or enumeration type,
7732   //    and can be folded to a known value of that type, it returns 1.
7733   //  - If the operand and can be folded to a pointer to the first character
7734   //    of a string literal (or such a pointer cast to an integral type), it
7735   //    returns 1.
7736   //
7737   // Otherwise, it returns 0.
7738   //
7739   // FIXME: GCC also intends to return 1 for literals of aggregate types, but
7740   // its support for this does not currently work.
7741   if (ArgType->isIntegralOrEnumerationType()) {
7742     Expr::EvalResult Result;
7743     if (!Arg->EvaluateAsRValue(Result, Ctx) || Result.HasSideEffects)
7744       return false;
7745 
7746     APValue &V = Result.Val;
7747     if (V.getKind() == APValue::Int)
7748       return true;
7749     if (V.getKind() == APValue::LValue)
7750       return EvaluateBuiltinConstantPForLValue(V);
7751   } else if (ArgType->isFloatingType() || ArgType->isAnyComplexType()) {
7752     return Arg->isEvaluatable(Ctx);
7753   } else if (ArgType->isPointerType() || Arg->isGLValue()) {
7754     LValue LV;
7755     Expr::EvalStatus Status;
7756     EvalInfo Info(Ctx, Status, EvalInfo::EM_ConstantFold);
7757     if ((Arg->isGLValue() ? EvaluateLValue(Arg, LV, Info)
7758                           : EvaluatePointer(Arg, LV, Info)) &&
7759         !Status.HasSideEffects)
7760       return EvaluateBuiltinConstantPForLValue(LV);
7761   }
7762 
7763   // Anything else isn't considered to be sufficiently constant.
7764   return false;
7765 }
7766 
7767 /// Retrieves the "underlying object type" of the given expression,
7768 /// as used by __builtin_object_size.
7769 static QualType getObjectType(APValue::LValueBase B) {
7770   if (const ValueDecl *D = B.dyn_cast<const ValueDecl*>()) {
7771     if (const VarDecl *VD = dyn_cast<VarDecl>(D))
7772       return VD->getType();
7773   } else if (const Expr *E = B.get<const Expr*>()) {
7774     if (isa<CompoundLiteralExpr>(E))
7775       return E->getType();
7776   }
7777 
7778   return QualType();
7779 }
7780 
7781 /// A more selective version of E->IgnoreParenCasts for
7782 /// tryEvaluateBuiltinObjectSize. This ignores some casts/parens that serve only
7783 /// to change the type of E.
7784 /// Ex. For E = `(short*)((char*)(&foo))`, returns `&foo`
7785 ///
7786 /// Always returns an RValue with a pointer representation.
7787 static const Expr *ignorePointerCastsAndParens(const Expr *E) {
7788   assert(E->isRValue() && E->getType()->hasPointerRepresentation());
7789 
7790   auto *NoParens = E->IgnoreParens();
7791   auto *Cast = dyn_cast<CastExpr>(NoParens);
7792   if (Cast == nullptr)
7793     return NoParens;
7794 
7795   // We only conservatively allow a few kinds of casts, because this code is
7796   // inherently a simple solution that seeks to support the common case.
7797   auto CastKind = Cast->getCastKind();
7798   if (CastKind != CK_NoOp && CastKind != CK_BitCast &&
7799       CastKind != CK_AddressSpaceConversion)
7800     return NoParens;
7801 
7802   auto *SubExpr = Cast->getSubExpr();
7803   if (!SubExpr->getType()->hasPointerRepresentation() || !SubExpr->isRValue())
7804     return NoParens;
7805   return ignorePointerCastsAndParens(SubExpr);
7806 }
7807 
7808 /// Checks to see if the given LValue's Designator is at the end of the LValue's
7809 /// record layout. e.g.
7810 ///   struct { struct { int a, b; } fst, snd; } obj;
7811 ///   obj.fst   // no
7812 ///   obj.snd   // yes
7813 ///   obj.fst.a // no
7814 ///   obj.fst.b // no
7815 ///   obj.snd.a // no
7816 ///   obj.snd.b // yes
7817 ///
7818 /// Please note: this function is specialized for how __builtin_object_size
7819 /// views "objects".
7820 ///
7821 /// If this encounters an invalid RecordDecl or otherwise cannot determine the
7822 /// correct result, it will always return true.
7823 static bool isDesignatorAtObjectEnd(const ASTContext &Ctx, const LValue &LVal) {
7824   assert(!LVal.Designator.Invalid);
7825 
7826   auto IsLastOrInvalidFieldDecl = [&Ctx](const FieldDecl *FD, bool &Invalid) {
7827     const RecordDecl *Parent = FD->getParent();
7828     Invalid = Parent->isInvalidDecl();
7829     if (Invalid || Parent->isUnion())
7830       return true;
7831     const ASTRecordLayout &Layout = Ctx.getASTRecordLayout(Parent);
7832     return FD->getFieldIndex() + 1 == Layout.getFieldCount();
7833   };
7834 
7835   auto &Base = LVal.getLValueBase();
7836   if (auto *ME = dyn_cast_or_null<MemberExpr>(Base.dyn_cast<const Expr *>())) {
7837     if (auto *FD = dyn_cast<FieldDecl>(ME->getMemberDecl())) {
7838       bool Invalid;
7839       if (!IsLastOrInvalidFieldDecl(FD, Invalid))
7840         return Invalid;
7841     } else if (auto *IFD = dyn_cast<IndirectFieldDecl>(ME->getMemberDecl())) {
7842       for (auto *FD : IFD->chain()) {
7843         bool Invalid;
7844         if (!IsLastOrInvalidFieldDecl(cast<FieldDecl>(FD), Invalid))
7845           return Invalid;
7846       }
7847     }
7848   }
7849 
7850   unsigned I = 0;
7851   QualType BaseType = getType(Base);
7852   if (LVal.Designator.FirstEntryIsAnUnsizedArray) {
7853     // If we don't know the array bound, conservatively assume we're looking at
7854     // the final array element.
7855     ++I;
7856     if (BaseType->isIncompleteArrayType())
7857       BaseType = Ctx.getAsArrayType(BaseType)->getElementType();
7858     else
7859       BaseType = BaseType->castAs<PointerType>()->getPointeeType();
7860   }
7861 
7862   for (unsigned E = LVal.Designator.Entries.size(); I != E; ++I) {
7863     const auto &Entry = LVal.Designator.Entries[I];
7864     if (BaseType->isArrayType()) {
7865       // Because __builtin_object_size treats arrays as objects, we can ignore
7866       // the index iff this is the last array in the Designator.
7867       if (I + 1 == E)
7868         return true;
7869       const auto *CAT = cast<ConstantArrayType>(Ctx.getAsArrayType(BaseType));
7870       uint64_t Index = Entry.ArrayIndex;
7871       if (Index + 1 != CAT->getSize())
7872         return false;
7873       BaseType = CAT->getElementType();
7874     } else if (BaseType->isAnyComplexType()) {
7875       const auto *CT = BaseType->castAs<ComplexType>();
7876       uint64_t Index = Entry.ArrayIndex;
7877       if (Index != 1)
7878         return false;
7879       BaseType = CT->getElementType();
7880     } else if (auto *FD = getAsField(Entry)) {
7881       bool Invalid;
7882       if (!IsLastOrInvalidFieldDecl(FD, Invalid))
7883         return Invalid;
7884       BaseType = FD->getType();
7885     } else {
7886       assert(getAsBaseClass(Entry) && "Expecting cast to a base class");
7887       return false;
7888     }
7889   }
7890   return true;
7891 }
7892 
7893 /// Tests to see if the LValue has a user-specified designator (that isn't
7894 /// necessarily valid). Note that this always returns 'true' if the LValue has
7895 /// an unsized array as its first designator entry, because there's currently no
7896 /// way to tell if the user typed *foo or foo[0].
7897 static bool refersToCompleteObject(const LValue &LVal) {
7898   if (LVal.Designator.Invalid)
7899     return false;
7900 
7901   if (!LVal.Designator.Entries.empty())
7902     return LVal.Designator.isMostDerivedAnUnsizedArray();
7903 
7904   if (!LVal.InvalidBase)
7905     return true;
7906 
7907   // If `E` is a MemberExpr, then the first part of the designator is hiding in
7908   // the LValueBase.
7909   const auto *E = LVal.Base.dyn_cast<const Expr *>();
7910   return !E || !isa<MemberExpr>(E);
7911 }
7912 
7913 /// Attempts to detect a user writing into a piece of memory that's impossible
7914 /// to figure out the size of by just using types.
7915 static bool isUserWritingOffTheEnd(const ASTContext &Ctx, const LValue &LVal) {
7916   const SubobjectDesignator &Designator = LVal.Designator;
7917   // Notes:
7918   // - Users can only write off of the end when we have an invalid base. Invalid
7919   //   bases imply we don't know where the memory came from.
7920   // - We used to be a bit more aggressive here; we'd only be conservative if
7921   //   the array at the end was flexible, or if it had 0 or 1 elements. This
7922   //   broke some common standard library extensions (PR30346), but was
7923   //   otherwise seemingly fine. It may be useful to reintroduce this behavior
7924   //   with some sort of whitelist. OTOH, it seems that GCC is always
7925   //   conservative with the last element in structs (if it's an array), so our
7926   //   current behavior is more compatible than a whitelisting approach would
7927   //   be.
7928   return LVal.InvalidBase &&
7929          Designator.Entries.size() == Designator.MostDerivedPathLength &&
7930          Designator.MostDerivedIsArrayElement &&
7931          isDesignatorAtObjectEnd(Ctx, LVal);
7932 }
7933 
7934 /// Converts the given APInt to CharUnits, assuming the APInt is unsigned.
7935 /// Fails if the conversion would cause loss of precision.
7936 static bool convertUnsignedAPIntToCharUnits(const llvm::APInt &Int,
7937                                             CharUnits &Result) {
7938   auto CharUnitsMax = std::numeric_limits<CharUnits::QuantityType>::max();
7939   if (Int.ugt(CharUnitsMax))
7940     return false;
7941   Result = CharUnits::fromQuantity(Int.getZExtValue());
7942   return true;
7943 }
7944 
7945 /// Helper for tryEvaluateBuiltinObjectSize -- Given an LValue, this will
7946 /// determine how many bytes exist from the beginning of the object to either
7947 /// the end of the current subobject, or the end of the object itself, depending
7948 /// on what the LValue looks like + the value of Type.
7949 ///
7950 /// If this returns false, the value of Result is undefined.
7951 static bool determineEndOffset(EvalInfo &Info, SourceLocation ExprLoc,
7952                                unsigned Type, const LValue &LVal,
7953                                CharUnits &EndOffset) {
7954   bool DetermineForCompleteObject = refersToCompleteObject(LVal);
7955 
7956   auto CheckedHandleSizeof = [&](QualType Ty, CharUnits &Result) {
7957     if (Ty.isNull() || Ty->isIncompleteType() || Ty->isFunctionType())
7958       return false;
7959     return HandleSizeof(Info, ExprLoc, Ty, Result);
7960   };
7961 
7962   // We want to evaluate the size of the entire object. This is a valid fallback
7963   // for when Type=1 and the designator is invalid, because we're asked for an
7964   // upper-bound.
7965   if (!(Type & 1) || LVal.Designator.Invalid || DetermineForCompleteObject) {
7966     // Type=3 wants a lower bound, so we can't fall back to this.
7967     if (Type == 3 && !DetermineForCompleteObject)
7968       return false;
7969 
7970     llvm::APInt APEndOffset;
7971     if (isBaseAnAllocSizeCall(LVal.getLValueBase()) &&
7972         getBytesReturnedByAllocSizeCall(Info.Ctx, LVal, APEndOffset))
7973       return convertUnsignedAPIntToCharUnits(APEndOffset, EndOffset);
7974 
7975     if (LVal.InvalidBase)
7976       return false;
7977 
7978     QualType BaseTy = getObjectType(LVal.getLValueBase());
7979     return CheckedHandleSizeof(BaseTy, EndOffset);
7980   }
7981 
7982   // We want to evaluate the size of a subobject.
7983   const SubobjectDesignator &Designator = LVal.Designator;
7984 
7985   // The following is a moderately common idiom in C:
7986   //
7987   // struct Foo { int a; char c[1]; };
7988   // struct Foo *F = (struct Foo *)malloc(sizeof(struct Foo) + strlen(Bar));
7989   // strcpy(&F->c[0], Bar);
7990   //
7991   // In order to not break too much legacy code, we need to support it.
7992   if (isUserWritingOffTheEnd(Info.Ctx, LVal)) {
7993     // If we can resolve this to an alloc_size call, we can hand that back,
7994     // because we know for certain how many bytes there are to write to.
7995     llvm::APInt APEndOffset;
7996     if (isBaseAnAllocSizeCall(LVal.getLValueBase()) &&
7997         getBytesReturnedByAllocSizeCall(Info.Ctx, LVal, APEndOffset))
7998       return convertUnsignedAPIntToCharUnits(APEndOffset, EndOffset);
7999 
8000     // If we cannot determine the size of the initial allocation, then we can't
8001     // given an accurate upper-bound. However, we are still able to give
8002     // conservative lower-bounds for Type=3.
8003     if (Type == 1)
8004       return false;
8005   }
8006 
8007   CharUnits BytesPerElem;
8008   if (!CheckedHandleSizeof(Designator.MostDerivedType, BytesPerElem))
8009     return false;
8010 
8011   // According to the GCC documentation, we want the size of the subobject
8012   // denoted by the pointer. But that's not quite right -- what we actually
8013   // want is the size of the immediately-enclosing array, if there is one.
8014   int64_t ElemsRemaining;
8015   if (Designator.MostDerivedIsArrayElement &&
8016       Designator.Entries.size() == Designator.MostDerivedPathLength) {
8017     uint64_t ArraySize = Designator.getMostDerivedArraySize();
8018     uint64_t ArrayIndex = Designator.Entries.back().ArrayIndex;
8019     ElemsRemaining = ArraySize <= ArrayIndex ? 0 : ArraySize - ArrayIndex;
8020   } else {
8021     ElemsRemaining = Designator.isOnePastTheEnd() ? 0 : 1;
8022   }
8023 
8024   EndOffset = LVal.getLValueOffset() + BytesPerElem * ElemsRemaining;
8025   return true;
8026 }
8027 
8028 /// Tries to evaluate the __builtin_object_size for @p E. If successful,
8029 /// returns true and stores the result in @p Size.
8030 ///
8031 /// If @p WasError is non-null, this will report whether the failure to evaluate
8032 /// is to be treated as an Error in IntExprEvaluator.
8033 static bool tryEvaluateBuiltinObjectSize(const Expr *E, unsigned Type,
8034                                          EvalInfo &Info, uint64_t &Size) {
8035   // Determine the denoted object.
8036   LValue LVal;
8037   {
8038     // The operand of __builtin_object_size is never evaluated for side-effects.
8039     // If there are any, but we can determine the pointed-to object anyway, then
8040     // ignore the side-effects.
8041     SpeculativeEvaluationRAII SpeculativeEval(Info);
8042     FoldOffsetRAII Fold(Info);
8043 
8044     if (E->isGLValue()) {
8045       // It's possible for us to be given GLValues if we're called via
8046       // Expr::tryEvaluateObjectSize.
8047       APValue RVal;
8048       if (!EvaluateAsRValue(Info, E, RVal))
8049         return false;
8050       LVal.setFrom(Info.Ctx, RVal);
8051     } else if (!EvaluatePointer(ignorePointerCastsAndParens(E), LVal, Info,
8052                                 /*InvalidBaseOK=*/true))
8053       return false;
8054   }
8055 
8056   // If we point to before the start of the object, there are no accessible
8057   // bytes.
8058   if (LVal.getLValueOffset().isNegative()) {
8059     Size = 0;
8060     return true;
8061   }
8062 
8063   CharUnits EndOffset;
8064   if (!determineEndOffset(Info, E->getExprLoc(), Type, LVal, EndOffset))
8065     return false;
8066 
8067   // If we've fallen outside of the end offset, just pretend there's nothing to
8068   // write to/read from.
8069   if (EndOffset <= LVal.getLValueOffset())
8070     Size = 0;
8071   else
8072     Size = (EndOffset - LVal.getLValueOffset()).getQuantity();
8073   return true;
8074 }
8075 
8076 bool IntExprEvaluator::VisitCallExpr(const CallExpr *E) {
8077   if (unsigned BuiltinOp = E->getBuiltinCallee())
8078     return VisitBuiltinCallExpr(E, BuiltinOp);
8079 
8080   return ExprEvaluatorBaseTy::VisitCallExpr(E);
8081 }
8082 
8083 bool IntExprEvaluator::VisitBuiltinCallExpr(const CallExpr *E,
8084                                             unsigned BuiltinOp) {
8085   switch (unsigned BuiltinOp = E->getBuiltinCallee()) {
8086   default:
8087     return ExprEvaluatorBaseTy::VisitCallExpr(E);
8088 
8089   case Builtin::BI__builtin_object_size: {
8090     // The type was checked when we built the expression.
8091     unsigned Type =
8092         E->getArg(1)->EvaluateKnownConstInt(Info.Ctx).getZExtValue();
8093     assert(Type <= 3 && "unexpected type");
8094 
8095     uint64_t Size;
8096     if (tryEvaluateBuiltinObjectSize(E->getArg(0), Type, Info, Size))
8097       return Success(Size, E);
8098 
8099     if (E->getArg(0)->HasSideEffects(Info.Ctx))
8100       return Success((Type & 2) ? 0 : -1, E);
8101 
8102     // Expression had no side effects, but we couldn't statically determine the
8103     // size of the referenced object.
8104     switch (Info.EvalMode) {
8105     case EvalInfo::EM_ConstantExpression:
8106     case EvalInfo::EM_PotentialConstantExpression:
8107     case EvalInfo::EM_ConstantFold:
8108     case EvalInfo::EM_EvaluateForOverflow:
8109     case EvalInfo::EM_IgnoreSideEffects:
8110     case EvalInfo::EM_OffsetFold:
8111       // Leave it to IR generation.
8112       return Error(E);
8113     case EvalInfo::EM_ConstantExpressionUnevaluated:
8114     case EvalInfo::EM_PotentialConstantExpressionUnevaluated:
8115       // Reduce it to a constant now.
8116       return Success((Type & 2) ? 0 : -1, E);
8117     }
8118 
8119     llvm_unreachable("unexpected EvalMode");
8120   }
8121 
8122   case Builtin::BI__builtin_bswap16:
8123   case Builtin::BI__builtin_bswap32:
8124   case Builtin::BI__builtin_bswap64: {
8125     APSInt Val;
8126     if (!EvaluateInteger(E->getArg(0), Val, Info))
8127       return false;
8128 
8129     return Success(Val.byteSwap(), E);
8130   }
8131 
8132   case Builtin::BI__builtin_classify_type:
8133     return Success((int)EvaluateBuiltinClassifyType(E, Info.getLangOpts()), E);
8134 
8135   case Builtin::BI__builtin_clrsb:
8136   case Builtin::BI__builtin_clrsbl:
8137   case Builtin::BI__builtin_clrsbll: {
8138     APSInt Val;
8139     if (!EvaluateInteger(E->getArg(0), Val, Info))
8140       return false;
8141 
8142     return Success(Val.getBitWidth() - Val.getMinSignedBits(), E);
8143   }
8144 
8145   case Builtin::BI__builtin_clz:
8146   case Builtin::BI__builtin_clzl:
8147   case Builtin::BI__builtin_clzll:
8148   case Builtin::BI__builtin_clzs: {
8149     APSInt Val;
8150     if (!EvaluateInteger(E->getArg(0), Val, Info))
8151       return false;
8152     if (!Val)
8153       return Error(E);
8154 
8155     return Success(Val.countLeadingZeros(), E);
8156   }
8157 
8158   case Builtin::BI__builtin_constant_p:
8159     return Success(EvaluateBuiltinConstantP(Info.Ctx, E->getArg(0)), E);
8160 
8161   case Builtin::BI__builtin_ctz:
8162   case Builtin::BI__builtin_ctzl:
8163   case Builtin::BI__builtin_ctzll:
8164   case Builtin::BI__builtin_ctzs: {
8165     APSInt Val;
8166     if (!EvaluateInteger(E->getArg(0), Val, Info))
8167       return false;
8168     if (!Val)
8169       return Error(E);
8170 
8171     return Success(Val.countTrailingZeros(), E);
8172   }
8173 
8174   case Builtin::BI__builtin_eh_return_data_regno: {
8175     int Operand = E->getArg(0)->EvaluateKnownConstInt(Info.Ctx).getZExtValue();
8176     Operand = Info.Ctx.getTargetInfo().getEHDataRegisterNumber(Operand);
8177     return Success(Operand, E);
8178   }
8179 
8180   case Builtin::BI__builtin_expect:
8181     return Visit(E->getArg(0));
8182 
8183   case Builtin::BI__builtin_ffs:
8184   case Builtin::BI__builtin_ffsl:
8185   case Builtin::BI__builtin_ffsll: {
8186     APSInt Val;
8187     if (!EvaluateInteger(E->getArg(0), Val, Info))
8188       return false;
8189 
8190     unsigned N = Val.countTrailingZeros();
8191     return Success(N == Val.getBitWidth() ? 0 : N + 1, E);
8192   }
8193 
8194   case Builtin::BI__builtin_fpclassify: {
8195     APFloat Val(0.0);
8196     if (!EvaluateFloat(E->getArg(5), Val, Info))
8197       return false;
8198     unsigned Arg;
8199     switch (Val.getCategory()) {
8200     case APFloat::fcNaN: Arg = 0; break;
8201     case APFloat::fcInfinity: Arg = 1; break;
8202     case APFloat::fcNormal: Arg = Val.isDenormal() ? 3 : 2; break;
8203     case APFloat::fcZero: Arg = 4; break;
8204     }
8205     return Visit(E->getArg(Arg));
8206   }
8207 
8208   case Builtin::BI__builtin_isinf_sign: {
8209     APFloat Val(0.0);
8210     return EvaluateFloat(E->getArg(0), Val, Info) &&
8211            Success(Val.isInfinity() ? (Val.isNegative() ? -1 : 1) : 0, E);
8212   }
8213 
8214   case Builtin::BI__builtin_isinf: {
8215     APFloat Val(0.0);
8216     return EvaluateFloat(E->getArg(0), Val, Info) &&
8217            Success(Val.isInfinity() ? 1 : 0, E);
8218   }
8219 
8220   case Builtin::BI__builtin_isfinite: {
8221     APFloat Val(0.0);
8222     return EvaluateFloat(E->getArg(0), Val, Info) &&
8223            Success(Val.isFinite() ? 1 : 0, E);
8224   }
8225 
8226   case Builtin::BI__builtin_isnan: {
8227     APFloat Val(0.0);
8228     return EvaluateFloat(E->getArg(0), Val, Info) &&
8229            Success(Val.isNaN() ? 1 : 0, E);
8230   }
8231 
8232   case Builtin::BI__builtin_isnormal: {
8233     APFloat Val(0.0);
8234     return EvaluateFloat(E->getArg(0), Val, Info) &&
8235            Success(Val.isNormal() ? 1 : 0, E);
8236   }
8237 
8238   case Builtin::BI__builtin_parity:
8239   case Builtin::BI__builtin_parityl:
8240   case Builtin::BI__builtin_parityll: {
8241     APSInt Val;
8242     if (!EvaluateInteger(E->getArg(0), Val, Info))
8243       return false;
8244 
8245     return Success(Val.countPopulation() % 2, E);
8246   }
8247 
8248   case Builtin::BI__builtin_popcount:
8249   case Builtin::BI__builtin_popcountl:
8250   case Builtin::BI__builtin_popcountll: {
8251     APSInt Val;
8252     if (!EvaluateInteger(E->getArg(0), Val, Info))
8253       return false;
8254 
8255     return Success(Val.countPopulation(), E);
8256   }
8257 
8258   case Builtin::BIstrlen:
8259   case Builtin::BIwcslen:
8260     // A call to strlen is not a constant expression.
8261     if (Info.getLangOpts().CPlusPlus11)
8262       Info.CCEDiag(E, diag::note_constexpr_invalid_function)
8263         << /*isConstexpr*/0 << /*isConstructor*/0
8264         << (std::string("'") + Info.Ctx.BuiltinInfo.getName(BuiltinOp) + "'");
8265     else
8266       Info.CCEDiag(E, diag::note_invalid_subexpr_in_const_expr);
8267     LLVM_FALLTHROUGH;
8268   case Builtin::BI__builtin_strlen:
8269   case Builtin::BI__builtin_wcslen: {
8270     // As an extension, we support __builtin_strlen() as a constant expression,
8271     // and support folding strlen() to a constant.
8272     LValue String;
8273     if (!EvaluatePointer(E->getArg(0), String, Info))
8274       return false;
8275 
8276     QualType CharTy = E->getArg(0)->getType()->getPointeeType();
8277 
8278     // Fast path: if it's a string literal, search the string value.
8279     if (const StringLiteral *S = dyn_cast_or_null<StringLiteral>(
8280             String.getLValueBase().dyn_cast<const Expr *>())) {
8281       // The string literal may have embedded null characters. Find the first
8282       // one and truncate there.
8283       StringRef Str = S->getBytes();
8284       int64_t Off = String.Offset.getQuantity();
8285       if (Off >= 0 && (uint64_t)Off <= (uint64_t)Str.size() &&
8286           S->getCharByteWidth() == 1 &&
8287           // FIXME: Add fast-path for wchar_t too.
8288           Info.Ctx.hasSameUnqualifiedType(CharTy, Info.Ctx.CharTy)) {
8289         Str = Str.substr(Off);
8290 
8291         StringRef::size_type Pos = Str.find(0);
8292         if (Pos != StringRef::npos)
8293           Str = Str.substr(0, Pos);
8294 
8295         return Success(Str.size(), E);
8296       }
8297 
8298       // Fall through to slow path to issue appropriate diagnostic.
8299     }
8300 
8301     // Slow path: scan the bytes of the string looking for the terminating 0.
8302     for (uint64_t Strlen = 0; /**/; ++Strlen) {
8303       APValue Char;
8304       if (!handleLValueToRValueConversion(Info, E, CharTy, String, Char) ||
8305           !Char.isInt())
8306         return false;
8307       if (!Char.getInt())
8308         return Success(Strlen, E);
8309       if (!HandleLValueArrayAdjustment(Info, E, String, CharTy, 1))
8310         return false;
8311     }
8312   }
8313 
8314   case Builtin::BIstrcmp:
8315   case Builtin::BIwcscmp:
8316   case Builtin::BIstrncmp:
8317   case Builtin::BIwcsncmp:
8318   case Builtin::BImemcmp:
8319   case Builtin::BIwmemcmp:
8320     // A call to strlen is not a constant expression.
8321     if (Info.getLangOpts().CPlusPlus11)
8322       Info.CCEDiag(E, diag::note_constexpr_invalid_function)
8323         << /*isConstexpr*/0 << /*isConstructor*/0
8324         << (std::string("'") + Info.Ctx.BuiltinInfo.getName(BuiltinOp) + "'");
8325     else
8326       Info.CCEDiag(E, diag::note_invalid_subexpr_in_const_expr);
8327     LLVM_FALLTHROUGH;
8328   case Builtin::BI__builtin_strcmp:
8329   case Builtin::BI__builtin_wcscmp:
8330   case Builtin::BI__builtin_strncmp:
8331   case Builtin::BI__builtin_wcsncmp:
8332   case Builtin::BI__builtin_memcmp:
8333   case Builtin::BI__builtin_wmemcmp: {
8334     LValue String1, String2;
8335     if (!EvaluatePointer(E->getArg(0), String1, Info) ||
8336         !EvaluatePointer(E->getArg(1), String2, Info))
8337       return false;
8338 
8339     QualType CharTy = E->getArg(0)->getType()->getPointeeType();
8340 
8341     uint64_t MaxLength = uint64_t(-1);
8342     if (BuiltinOp != Builtin::BIstrcmp &&
8343         BuiltinOp != Builtin::BIwcscmp &&
8344         BuiltinOp != Builtin::BI__builtin_strcmp &&
8345         BuiltinOp != Builtin::BI__builtin_wcscmp) {
8346       APSInt N;
8347       if (!EvaluateInteger(E->getArg(2), N, Info))
8348         return false;
8349       MaxLength = N.getExtValue();
8350     }
8351     bool StopAtNull = (BuiltinOp != Builtin::BImemcmp &&
8352                        BuiltinOp != Builtin::BIwmemcmp &&
8353                        BuiltinOp != Builtin::BI__builtin_memcmp &&
8354                        BuiltinOp != Builtin::BI__builtin_wmemcmp);
8355     bool IsWide = BuiltinOp == Builtin::BIwcscmp ||
8356                   BuiltinOp == Builtin::BIwcsncmp ||
8357                   BuiltinOp == Builtin::BIwmemcmp ||
8358                   BuiltinOp == Builtin::BI__builtin_wcscmp ||
8359                   BuiltinOp == Builtin::BI__builtin_wcsncmp ||
8360                   BuiltinOp == Builtin::BI__builtin_wmemcmp;
8361     for (; MaxLength; --MaxLength) {
8362       APValue Char1, Char2;
8363       if (!handleLValueToRValueConversion(Info, E, CharTy, String1, Char1) ||
8364           !handleLValueToRValueConversion(Info, E, CharTy, String2, Char2) ||
8365           !Char1.isInt() || !Char2.isInt())
8366         return false;
8367       if (Char1.getInt() != Char2.getInt()) {
8368         if (IsWide) // wmemcmp compares with wchar_t signedness.
8369           return Success(Char1.getInt() < Char2.getInt() ? -1 : 1, E);
8370         // memcmp always compares unsigned chars.
8371         return Success(Char1.getInt().ult(Char2.getInt()) ? -1 : 1, E);
8372       }
8373       if (StopAtNull && !Char1.getInt())
8374         return Success(0, E);
8375       assert(!(StopAtNull && !Char2.getInt()));
8376       if (!HandleLValueArrayAdjustment(Info, E, String1, CharTy, 1) ||
8377           !HandleLValueArrayAdjustment(Info, E, String2, CharTy, 1))
8378         return false;
8379     }
8380     // We hit the strncmp / memcmp limit.
8381     return Success(0, E);
8382   }
8383 
8384   case Builtin::BI__atomic_always_lock_free:
8385   case Builtin::BI__atomic_is_lock_free:
8386   case Builtin::BI__c11_atomic_is_lock_free: {
8387     APSInt SizeVal;
8388     if (!EvaluateInteger(E->getArg(0), SizeVal, Info))
8389       return false;
8390 
8391     // For __atomic_is_lock_free(sizeof(_Atomic(T))), if the size is a power
8392     // of two less than the maximum inline atomic width, we know it is
8393     // lock-free.  If the size isn't a power of two, or greater than the
8394     // maximum alignment where we promote atomics, we know it is not lock-free
8395     // (at least not in the sense of atomic_is_lock_free).  Otherwise,
8396     // the answer can only be determined at runtime; for example, 16-byte
8397     // atomics have lock-free implementations on some, but not all,
8398     // x86-64 processors.
8399 
8400     // Check power-of-two.
8401     CharUnits Size = CharUnits::fromQuantity(SizeVal.getZExtValue());
8402     if (Size.isPowerOfTwo()) {
8403       // Check against inlining width.
8404       unsigned InlineWidthBits =
8405           Info.Ctx.getTargetInfo().getMaxAtomicInlineWidth();
8406       if (Size <= Info.Ctx.toCharUnitsFromBits(InlineWidthBits)) {
8407         if (BuiltinOp == Builtin::BI__c11_atomic_is_lock_free ||
8408             Size == CharUnits::One() ||
8409             E->getArg(1)->isNullPointerConstant(Info.Ctx,
8410                                                 Expr::NPC_NeverValueDependent))
8411           // OK, we will inline appropriately-aligned operations of this size,
8412           // and _Atomic(T) is appropriately-aligned.
8413           return Success(1, E);
8414 
8415         QualType PointeeType = E->getArg(1)->IgnoreImpCasts()->getType()->
8416           castAs<PointerType>()->getPointeeType();
8417         if (!PointeeType->isIncompleteType() &&
8418             Info.Ctx.getTypeAlignInChars(PointeeType) >= Size) {
8419           // OK, we will inline operations on this object.
8420           return Success(1, E);
8421         }
8422       }
8423     }
8424 
8425     return BuiltinOp == Builtin::BI__atomic_always_lock_free ?
8426         Success(0, E) : Error(E);
8427   }
8428   case Builtin::BIomp_is_initial_device:
8429     // We can decide statically which value the runtime would return if called.
8430     return Success(Info.getLangOpts().OpenMPIsDevice ? 0 : 1, E);
8431   case Builtin::BI__builtin_add_overflow:
8432   case Builtin::BI__builtin_sub_overflow:
8433   case Builtin::BI__builtin_mul_overflow:
8434   case Builtin::BI__builtin_sadd_overflow:
8435   case Builtin::BI__builtin_uadd_overflow:
8436   case Builtin::BI__builtin_uaddl_overflow:
8437   case Builtin::BI__builtin_uaddll_overflow:
8438   case Builtin::BI__builtin_usub_overflow:
8439   case Builtin::BI__builtin_usubl_overflow:
8440   case Builtin::BI__builtin_usubll_overflow:
8441   case Builtin::BI__builtin_umul_overflow:
8442   case Builtin::BI__builtin_umull_overflow:
8443   case Builtin::BI__builtin_umulll_overflow:
8444   case Builtin::BI__builtin_saddl_overflow:
8445   case Builtin::BI__builtin_saddll_overflow:
8446   case Builtin::BI__builtin_ssub_overflow:
8447   case Builtin::BI__builtin_ssubl_overflow:
8448   case Builtin::BI__builtin_ssubll_overflow:
8449   case Builtin::BI__builtin_smul_overflow:
8450   case Builtin::BI__builtin_smull_overflow:
8451   case Builtin::BI__builtin_smulll_overflow: {
8452     LValue ResultLValue;
8453     APSInt LHS, RHS;
8454 
8455     QualType ResultType = E->getArg(2)->getType()->getPointeeType();
8456     if (!EvaluateInteger(E->getArg(0), LHS, Info) ||
8457         !EvaluateInteger(E->getArg(1), RHS, Info) ||
8458         !EvaluatePointer(E->getArg(2), ResultLValue, Info))
8459       return false;
8460 
8461     APSInt Result;
8462     bool DidOverflow = false;
8463 
8464     // If the types don't have to match, enlarge all 3 to the largest of them.
8465     if (BuiltinOp == Builtin::BI__builtin_add_overflow ||
8466         BuiltinOp == Builtin::BI__builtin_sub_overflow ||
8467         BuiltinOp == Builtin::BI__builtin_mul_overflow) {
8468       bool IsSigned = LHS.isSigned() || RHS.isSigned() ||
8469                       ResultType->isSignedIntegerOrEnumerationType();
8470       bool AllSigned = LHS.isSigned() && RHS.isSigned() &&
8471                       ResultType->isSignedIntegerOrEnumerationType();
8472       uint64_t LHSSize = LHS.getBitWidth();
8473       uint64_t RHSSize = RHS.getBitWidth();
8474       uint64_t ResultSize = Info.Ctx.getTypeSize(ResultType);
8475       uint64_t MaxBits = std::max(std::max(LHSSize, RHSSize), ResultSize);
8476 
8477       // Add an additional bit if the signedness isn't uniformly agreed to. We
8478       // could do this ONLY if there is a signed and an unsigned that both have
8479       // MaxBits, but the code to check that is pretty nasty.  The issue will be
8480       // caught in the shrink-to-result later anyway.
8481       if (IsSigned && !AllSigned)
8482         ++MaxBits;
8483 
8484       LHS = APSInt(IsSigned ? LHS.sextOrSelf(MaxBits) : LHS.zextOrSelf(MaxBits),
8485                    !IsSigned);
8486       RHS = APSInt(IsSigned ? RHS.sextOrSelf(MaxBits) : RHS.zextOrSelf(MaxBits),
8487                    !IsSigned);
8488       Result = APSInt(MaxBits, !IsSigned);
8489     }
8490 
8491     // Find largest int.
8492     switch (BuiltinOp) {
8493     default:
8494       llvm_unreachable("Invalid value for BuiltinOp");
8495     case Builtin::BI__builtin_add_overflow:
8496     case Builtin::BI__builtin_sadd_overflow:
8497     case Builtin::BI__builtin_saddl_overflow:
8498     case Builtin::BI__builtin_saddll_overflow:
8499     case Builtin::BI__builtin_uadd_overflow:
8500     case Builtin::BI__builtin_uaddl_overflow:
8501     case Builtin::BI__builtin_uaddll_overflow:
8502       Result = LHS.isSigned() ? LHS.sadd_ov(RHS, DidOverflow)
8503                               : LHS.uadd_ov(RHS, DidOverflow);
8504       break;
8505     case Builtin::BI__builtin_sub_overflow:
8506     case Builtin::BI__builtin_ssub_overflow:
8507     case Builtin::BI__builtin_ssubl_overflow:
8508     case Builtin::BI__builtin_ssubll_overflow:
8509     case Builtin::BI__builtin_usub_overflow:
8510     case Builtin::BI__builtin_usubl_overflow:
8511     case Builtin::BI__builtin_usubll_overflow:
8512       Result = LHS.isSigned() ? LHS.ssub_ov(RHS, DidOverflow)
8513                               : LHS.usub_ov(RHS, DidOverflow);
8514       break;
8515     case Builtin::BI__builtin_mul_overflow:
8516     case Builtin::BI__builtin_smul_overflow:
8517     case Builtin::BI__builtin_smull_overflow:
8518     case Builtin::BI__builtin_smulll_overflow:
8519     case Builtin::BI__builtin_umul_overflow:
8520     case Builtin::BI__builtin_umull_overflow:
8521     case Builtin::BI__builtin_umulll_overflow:
8522       Result = LHS.isSigned() ? LHS.smul_ov(RHS, DidOverflow)
8523                               : LHS.umul_ov(RHS, DidOverflow);
8524       break;
8525     }
8526 
8527     // In the case where multiple sizes are allowed, truncate and see if
8528     // the values are the same.
8529     if (BuiltinOp == Builtin::BI__builtin_add_overflow ||
8530         BuiltinOp == Builtin::BI__builtin_sub_overflow ||
8531         BuiltinOp == Builtin::BI__builtin_mul_overflow) {
8532       // APSInt doesn't have a TruncOrSelf, so we use extOrTrunc instead,
8533       // since it will give us the behavior of a TruncOrSelf in the case where
8534       // its parameter <= its size.  We previously set Result to be at least the
8535       // type-size of the result, so getTypeSize(ResultType) <= Result.BitWidth
8536       // will work exactly like TruncOrSelf.
8537       APSInt Temp = Result.extOrTrunc(Info.Ctx.getTypeSize(ResultType));
8538       Temp.setIsSigned(ResultType->isSignedIntegerOrEnumerationType());
8539 
8540       if (!APSInt::isSameValue(Temp, Result))
8541         DidOverflow = true;
8542       Result = Temp;
8543     }
8544 
8545     APValue APV{Result};
8546     if (!handleAssignment(Info, E, ResultLValue, ResultType, APV))
8547       return false;
8548     return Success(DidOverflow, E);
8549   }
8550   }
8551 }
8552 
8553 /// Determine whether this is a pointer past the end of the complete
8554 /// object referred to by the lvalue.
8555 static bool isOnePastTheEndOfCompleteObject(const ASTContext &Ctx,
8556                                             const LValue &LV) {
8557   // A null pointer can be viewed as being "past the end" but we don't
8558   // choose to look at it that way here.
8559   if (!LV.getLValueBase())
8560     return false;
8561 
8562   // If the designator is valid and refers to a subobject, we're not pointing
8563   // past the end.
8564   if (!LV.getLValueDesignator().Invalid &&
8565       !LV.getLValueDesignator().isOnePastTheEnd())
8566     return false;
8567 
8568   // A pointer to an incomplete type might be past-the-end if the type's size is
8569   // zero.  We cannot tell because the type is incomplete.
8570   QualType Ty = getType(LV.getLValueBase());
8571   if (Ty->isIncompleteType())
8572     return true;
8573 
8574   // We're a past-the-end pointer if we point to the byte after the object,
8575   // no matter what our type or path is.
8576   auto Size = Ctx.getTypeSizeInChars(Ty);
8577   return LV.getLValueOffset() == Size;
8578 }
8579 
8580 namespace {
8581 
8582 /// Data recursive integer evaluator of certain binary operators.
8583 ///
8584 /// We use a data recursive algorithm for binary operators so that we are able
8585 /// to handle extreme cases of chained binary operators without causing stack
8586 /// overflow.
8587 class DataRecursiveIntBinOpEvaluator {
8588   struct EvalResult {
8589     APValue Val;
8590     bool Failed;
8591 
8592     EvalResult() : Failed(false) { }
8593 
8594     void swap(EvalResult &RHS) {
8595       Val.swap(RHS.Val);
8596       Failed = RHS.Failed;
8597       RHS.Failed = false;
8598     }
8599   };
8600 
8601   struct Job {
8602     const Expr *E;
8603     EvalResult LHSResult; // meaningful only for binary operator expression.
8604     enum { AnyExprKind, BinOpKind, BinOpVisitedLHSKind } Kind;
8605 
8606     Job() = default;
8607     Job(Job &&) = default;
8608 
8609     void startSpeculativeEval(EvalInfo &Info) {
8610       SpecEvalRAII = SpeculativeEvaluationRAII(Info);
8611     }
8612 
8613   private:
8614     SpeculativeEvaluationRAII SpecEvalRAII;
8615   };
8616 
8617   SmallVector<Job, 16> Queue;
8618 
8619   IntExprEvaluator &IntEval;
8620   EvalInfo &Info;
8621   APValue &FinalResult;
8622 
8623 public:
8624   DataRecursiveIntBinOpEvaluator(IntExprEvaluator &IntEval, APValue &Result)
8625     : IntEval(IntEval), Info(IntEval.getEvalInfo()), FinalResult(Result) { }
8626 
8627   /// True if \param E is a binary operator that we are going to handle
8628   /// data recursively.
8629   /// We handle binary operators that are comma, logical, or that have operands
8630   /// with integral or enumeration type.
8631   static bool shouldEnqueue(const BinaryOperator *E) {
8632     return E->getOpcode() == BO_Comma || E->isLogicalOp() ||
8633            (E->isRValue() && E->getType()->isIntegralOrEnumerationType() &&
8634             E->getLHS()->getType()->isIntegralOrEnumerationType() &&
8635             E->getRHS()->getType()->isIntegralOrEnumerationType());
8636   }
8637 
8638   bool Traverse(const BinaryOperator *E) {
8639     enqueue(E);
8640     EvalResult PrevResult;
8641     while (!Queue.empty())
8642       process(PrevResult);
8643 
8644     if (PrevResult.Failed) return false;
8645 
8646     FinalResult.swap(PrevResult.Val);
8647     return true;
8648   }
8649 
8650 private:
8651   bool Success(uint64_t Value, const Expr *E, APValue &Result) {
8652     return IntEval.Success(Value, E, Result);
8653   }
8654   bool Success(const APSInt &Value, const Expr *E, APValue &Result) {
8655     return IntEval.Success(Value, E, Result);
8656   }
8657   bool Error(const Expr *E) {
8658     return IntEval.Error(E);
8659   }
8660   bool Error(const Expr *E, diag::kind D) {
8661     return IntEval.Error(E, D);
8662   }
8663 
8664   OptionalDiagnostic CCEDiag(const Expr *E, diag::kind D) {
8665     return Info.CCEDiag(E, D);
8666   }
8667 
8668   // Returns true if visiting the RHS is necessary, false otherwise.
8669   bool VisitBinOpLHSOnly(EvalResult &LHSResult, const BinaryOperator *E,
8670                          bool &SuppressRHSDiags);
8671 
8672   bool VisitBinOp(const EvalResult &LHSResult, const EvalResult &RHSResult,
8673                   const BinaryOperator *E, APValue &Result);
8674 
8675   void EvaluateExpr(const Expr *E, EvalResult &Result) {
8676     Result.Failed = !Evaluate(Result.Val, Info, E);
8677     if (Result.Failed)
8678       Result.Val = APValue();
8679   }
8680 
8681   void process(EvalResult &Result);
8682 
8683   void enqueue(const Expr *E) {
8684     E = E->IgnoreParens();
8685     Queue.resize(Queue.size()+1);
8686     Queue.back().E = E;
8687     Queue.back().Kind = Job::AnyExprKind;
8688   }
8689 };
8690 
8691 }
8692 
8693 bool DataRecursiveIntBinOpEvaluator::
8694        VisitBinOpLHSOnly(EvalResult &LHSResult, const BinaryOperator *E,
8695                          bool &SuppressRHSDiags) {
8696   if (E->getOpcode() == BO_Comma) {
8697     // Ignore LHS but note if we could not evaluate it.
8698     if (LHSResult.Failed)
8699       return Info.noteSideEffect();
8700     return true;
8701   }
8702 
8703   if (E->isLogicalOp()) {
8704     bool LHSAsBool;
8705     if (!LHSResult.Failed && HandleConversionToBool(LHSResult.Val, LHSAsBool)) {
8706       // We were able to evaluate the LHS, see if we can get away with not
8707       // evaluating the RHS: 0 && X -> 0, 1 || X -> 1
8708       if (LHSAsBool == (E->getOpcode() == BO_LOr)) {
8709         Success(LHSAsBool, E, LHSResult.Val);
8710         return false; // Ignore RHS
8711       }
8712     } else {
8713       LHSResult.Failed = true;
8714 
8715       // Since we weren't able to evaluate the left hand side, it
8716       // might have had side effects.
8717       if (!Info.noteSideEffect())
8718         return false;
8719 
8720       // We can't evaluate the LHS; however, sometimes the result
8721       // is determined by the RHS: X && 0 -> 0, X || 1 -> 1.
8722       // Don't ignore RHS and suppress diagnostics from this arm.
8723       SuppressRHSDiags = true;
8724     }
8725 
8726     return true;
8727   }
8728 
8729   assert(E->getLHS()->getType()->isIntegralOrEnumerationType() &&
8730          E->getRHS()->getType()->isIntegralOrEnumerationType());
8731 
8732   if (LHSResult.Failed && !Info.noteFailure())
8733     return false; // Ignore RHS;
8734 
8735   return true;
8736 }
8737 
8738 static void addOrSubLValueAsInteger(APValue &LVal, const APSInt &Index,
8739                                     bool IsSub) {
8740   // Compute the new offset in the appropriate width, wrapping at 64 bits.
8741   // FIXME: When compiling for a 32-bit target, we should use 32-bit
8742   // offsets.
8743   assert(!LVal.hasLValuePath() && "have designator for integer lvalue");
8744   CharUnits &Offset = LVal.getLValueOffset();
8745   uint64_t Offset64 = Offset.getQuantity();
8746   uint64_t Index64 = Index.extOrTrunc(64).getZExtValue();
8747   Offset = CharUnits::fromQuantity(IsSub ? Offset64 - Index64
8748                                          : Offset64 + Index64);
8749 }
8750 
8751 bool DataRecursiveIntBinOpEvaluator::
8752        VisitBinOp(const EvalResult &LHSResult, const EvalResult &RHSResult,
8753                   const BinaryOperator *E, APValue &Result) {
8754   if (E->getOpcode() == BO_Comma) {
8755     if (RHSResult.Failed)
8756       return false;
8757     Result = RHSResult.Val;
8758     return true;
8759   }
8760 
8761   if (E->isLogicalOp()) {
8762     bool lhsResult, rhsResult;
8763     bool LHSIsOK = HandleConversionToBool(LHSResult.Val, lhsResult);
8764     bool RHSIsOK = HandleConversionToBool(RHSResult.Val, rhsResult);
8765 
8766     if (LHSIsOK) {
8767       if (RHSIsOK) {
8768         if (E->getOpcode() == BO_LOr)
8769           return Success(lhsResult || rhsResult, E, Result);
8770         else
8771           return Success(lhsResult && rhsResult, E, Result);
8772       }
8773     } else {
8774       if (RHSIsOK) {
8775         // We can't evaluate the LHS; however, sometimes the result
8776         // is determined by the RHS: X && 0 -> 0, X || 1 -> 1.
8777         if (rhsResult == (E->getOpcode() == BO_LOr))
8778           return Success(rhsResult, E, Result);
8779       }
8780     }
8781 
8782     return false;
8783   }
8784 
8785   assert(E->getLHS()->getType()->isIntegralOrEnumerationType() &&
8786          E->getRHS()->getType()->isIntegralOrEnumerationType());
8787 
8788   if (LHSResult.Failed || RHSResult.Failed)
8789     return false;
8790 
8791   const APValue &LHSVal = LHSResult.Val;
8792   const APValue &RHSVal = RHSResult.Val;
8793 
8794   // Handle cases like (unsigned long)&a + 4.
8795   if (E->isAdditiveOp() && LHSVal.isLValue() && RHSVal.isInt()) {
8796     Result = LHSVal;
8797     addOrSubLValueAsInteger(Result, RHSVal.getInt(), E->getOpcode() == BO_Sub);
8798     return true;
8799   }
8800 
8801   // Handle cases like 4 + (unsigned long)&a
8802   if (E->getOpcode() == BO_Add &&
8803       RHSVal.isLValue() && LHSVal.isInt()) {
8804     Result = RHSVal;
8805     addOrSubLValueAsInteger(Result, LHSVal.getInt(), /*IsSub*/false);
8806     return true;
8807   }
8808 
8809   if (E->getOpcode() == BO_Sub && LHSVal.isLValue() && RHSVal.isLValue()) {
8810     // Handle (intptr_t)&&A - (intptr_t)&&B.
8811     if (!LHSVal.getLValueOffset().isZero() ||
8812         !RHSVal.getLValueOffset().isZero())
8813       return false;
8814     const Expr *LHSExpr = LHSVal.getLValueBase().dyn_cast<const Expr*>();
8815     const Expr *RHSExpr = RHSVal.getLValueBase().dyn_cast<const Expr*>();
8816     if (!LHSExpr || !RHSExpr)
8817       return false;
8818     const AddrLabelExpr *LHSAddrExpr = dyn_cast<AddrLabelExpr>(LHSExpr);
8819     const AddrLabelExpr *RHSAddrExpr = dyn_cast<AddrLabelExpr>(RHSExpr);
8820     if (!LHSAddrExpr || !RHSAddrExpr)
8821       return false;
8822     // Make sure both labels come from the same function.
8823     if (LHSAddrExpr->getLabel()->getDeclContext() !=
8824         RHSAddrExpr->getLabel()->getDeclContext())
8825       return false;
8826     Result = APValue(LHSAddrExpr, RHSAddrExpr);
8827     return true;
8828   }
8829 
8830   // All the remaining cases expect both operands to be an integer
8831   if (!LHSVal.isInt() || !RHSVal.isInt())
8832     return Error(E);
8833 
8834   // Set up the width and signedness manually, in case it can't be deduced
8835   // from the operation we're performing.
8836   // FIXME: Don't do this in the cases where we can deduce it.
8837   APSInt Value(Info.Ctx.getIntWidth(E->getType()),
8838                E->getType()->isUnsignedIntegerOrEnumerationType());
8839   if (!handleIntIntBinOp(Info, E, LHSVal.getInt(), E->getOpcode(),
8840                          RHSVal.getInt(), Value))
8841     return false;
8842   return Success(Value, E, Result);
8843 }
8844 
8845 void DataRecursiveIntBinOpEvaluator::process(EvalResult &Result) {
8846   Job &job = Queue.back();
8847 
8848   switch (job.Kind) {
8849     case Job::AnyExprKind: {
8850       if (const BinaryOperator *Bop = dyn_cast<BinaryOperator>(job.E)) {
8851         if (shouldEnqueue(Bop)) {
8852           job.Kind = Job::BinOpKind;
8853           enqueue(Bop->getLHS());
8854           return;
8855         }
8856       }
8857 
8858       EvaluateExpr(job.E, Result);
8859       Queue.pop_back();
8860       return;
8861     }
8862 
8863     case Job::BinOpKind: {
8864       const BinaryOperator *Bop = cast<BinaryOperator>(job.E);
8865       bool SuppressRHSDiags = false;
8866       if (!VisitBinOpLHSOnly(Result, Bop, SuppressRHSDiags)) {
8867         Queue.pop_back();
8868         return;
8869       }
8870       if (SuppressRHSDiags)
8871         job.startSpeculativeEval(Info);
8872       job.LHSResult.swap(Result);
8873       job.Kind = Job::BinOpVisitedLHSKind;
8874       enqueue(Bop->getRHS());
8875       return;
8876     }
8877 
8878     case Job::BinOpVisitedLHSKind: {
8879       const BinaryOperator *Bop = cast<BinaryOperator>(job.E);
8880       EvalResult RHS;
8881       RHS.swap(Result);
8882       Result.Failed = !VisitBinOp(job.LHSResult, RHS, Bop, Result.Val);
8883       Queue.pop_back();
8884       return;
8885     }
8886   }
8887 
8888   llvm_unreachable("Invalid Job::Kind!");
8889 }
8890 
8891 namespace {
8892 /// Used when we determine that we should fail, but can keep evaluating prior to
8893 /// noting that we had a failure.
8894 class DelayedNoteFailureRAII {
8895   EvalInfo &Info;
8896   bool NoteFailure;
8897 
8898 public:
8899   DelayedNoteFailureRAII(EvalInfo &Info, bool NoteFailure = true)
8900       : Info(Info), NoteFailure(NoteFailure) {}
8901   ~DelayedNoteFailureRAII() {
8902     if (NoteFailure) {
8903       bool ContinueAfterFailure = Info.noteFailure();
8904       (void)ContinueAfterFailure;
8905       assert(ContinueAfterFailure &&
8906              "Shouldn't have kept evaluating on failure.");
8907     }
8908   }
8909 };
8910 }
8911 
8912 template <class SuccessCB, class AfterCB>
8913 static bool
8914 EvaluateComparisonBinaryOperator(EvalInfo &Info, const BinaryOperator *E,
8915                                  SuccessCB &&Success, AfterCB &&DoAfter) {
8916   assert(E->isComparisonOp() && "expected comparison operator");
8917   assert((E->getOpcode() == BO_Cmp ||
8918           E->getType()->isIntegralOrEnumerationType()) &&
8919          "unsupported binary expression evaluation");
8920   auto Error = [&](const Expr *E) {
8921     Info.FFDiag(E, diag::note_invalid_subexpr_in_const_expr);
8922     return false;
8923   };
8924 
8925   using CCR = ComparisonCategoryResult;
8926   bool IsRelational = E->isRelationalOp();
8927   bool IsEquality = E->isEqualityOp();
8928   if (E->getOpcode() == BO_Cmp) {
8929     const ComparisonCategoryInfo &CmpInfo =
8930         Info.Ctx.CompCategories.getInfoForType(E->getType());
8931     IsRelational = CmpInfo.isOrdered();
8932     IsEquality = CmpInfo.isEquality();
8933   }
8934 
8935   QualType LHSTy = E->getLHS()->getType();
8936   QualType RHSTy = E->getRHS()->getType();
8937 
8938   if (LHSTy->isIntegralOrEnumerationType() &&
8939       RHSTy->isIntegralOrEnumerationType()) {
8940     APSInt LHS, RHS;
8941     bool LHSOK = EvaluateInteger(E->getLHS(), LHS, Info);
8942     if (!LHSOK && !Info.noteFailure())
8943       return false;
8944     if (!EvaluateInteger(E->getRHS(), RHS, Info) || !LHSOK)
8945       return false;
8946     if (LHS < RHS)
8947       return Success(CCR::Less, E);
8948     if (LHS > RHS)
8949       return Success(CCR::Greater, E);
8950     return Success(CCR::Equal, E);
8951   }
8952 
8953   if (LHSTy->isAnyComplexType() || RHSTy->isAnyComplexType()) {
8954     ComplexValue LHS, RHS;
8955     bool LHSOK;
8956     if (E->isAssignmentOp()) {
8957       LValue LV;
8958       EvaluateLValue(E->getLHS(), LV, Info);
8959       LHSOK = false;
8960     } else if (LHSTy->isRealFloatingType()) {
8961       LHSOK = EvaluateFloat(E->getLHS(), LHS.FloatReal, Info);
8962       if (LHSOK) {
8963         LHS.makeComplexFloat();
8964         LHS.FloatImag = APFloat(LHS.FloatReal.getSemantics());
8965       }
8966     } else {
8967       LHSOK = EvaluateComplex(E->getLHS(), LHS, Info);
8968     }
8969     if (!LHSOK && !Info.noteFailure())
8970       return false;
8971 
8972     if (E->getRHS()->getType()->isRealFloatingType()) {
8973       if (!EvaluateFloat(E->getRHS(), RHS.FloatReal, Info) || !LHSOK)
8974         return false;
8975       RHS.makeComplexFloat();
8976       RHS.FloatImag = APFloat(RHS.FloatReal.getSemantics());
8977     } else if (!EvaluateComplex(E->getRHS(), RHS, Info) || !LHSOK)
8978       return false;
8979 
8980     if (LHS.isComplexFloat()) {
8981       APFloat::cmpResult CR_r =
8982         LHS.getComplexFloatReal().compare(RHS.getComplexFloatReal());
8983       APFloat::cmpResult CR_i =
8984         LHS.getComplexFloatImag().compare(RHS.getComplexFloatImag());
8985       bool IsEqual = CR_r == APFloat::cmpEqual && CR_i == APFloat::cmpEqual;
8986       return Success(IsEqual ? CCR::Equal : CCR::Nonequal, E);
8987     } else {
8988       assert(IsEquality && "invalid complex comparison");
8989       bool IsEqual = LHS.getComplexIntReal() == RHS.getComplexIntReal() &&
8990                      LHS.getComplexIntImag() == RHS.getComplexIntImag();
8991       return Success(IsEqual ? CCR::Equal : CCR::Nonequal, E);
8992     }
8993   }
8994 
8995   if (LHSTy->isRealFloatingType() &&
8996       RHSTy->isRealFloatingType()) {
8997     APFloat RHS(0.0), LHS(0.0);
8998 
8999     bool LHSOK = EvaluateFloat(E->getRHS(), RHS, Info);
9000     if (!LHSOK && !Info.noteFailure())
9001       return false;
9002 
9003     if (!EvaluateFloat(E->getLHS(), LHS, Info) || !LHSOK)
9004       return false;
9005 
9006     assert(E->isComparisonOp() && "Invalid binary operator!");
9007     auto GetCmpRes = [&]() {
9008       switch (LHS.compare(RHS)) {
9009       case APFloat::cmpEqual:
9010         return CCR::Equal;
9011       case APFloat::cmpLessThan:
9012         return CCR::Less;
9013       case APFloat::cmpGreaterThan:
9014         return CCR::Greater;
9015       case APFloat::cmpUnordered:
9016         return CCR::Unordered;
9017       }
9018       llvm_unreachable("Unrecognised APFloat::cmpResult enum");
9019     };
9020     return Success(GetCmpRes(), E);
9021   }
9022 
9023   if (LHSTy->isPointerType() && RHSTy->isPointerType()) {
9024     LValue LHSValue, RHSValue;
9025 
9026     bool LHSOK = EvaluatePointer(E->getLHS(), LHSValue, Info);
9027     if (!LHSOK && !Info.noteFailure())
9028       return false;
9029 
9030     if (!EvaluatePointer(E->getRHS(), RHSValue, Info) || !LHSOK)
9031       return false;
9032 
9033     // Reject differing bases from the normal codepath; we special-case
9034     // comparisons to null.
9035     if (!HasSameBase(LHSValue, RHSValue)) {
9036       // Inequalities and subtractions between unrelated pointers have
9037       // unspecified or undefined behavior.
9038       if (!IsEquality)
9039         return Error(E);
9040       // A constant address may compare equal to the address of a symbol.
9041       // The one exception is that address of an object cannot compare equal
9042       // to a null pointer constant.
9043       if ((!LHSValue.Base && !LHSValue.Offset.isZero()) ||
9044           (!RHSValue.Base && !RHSValue.Offset.isZero()))
9045         return Error(E);
9046       // It's implementation-defined whether distinct literals will have
9047       // distinct addresses. In clang, the result of such a comparison is
9048       // unspecified, so it is not a constant expression. However, we do know
9049       // that the address of a literal will be non-null.
9050       if ((IsLiteralLValue(LHSValue) || IsLiteralLValue(RHSValue)) &&
9051           LHSValue.Base && RHSValue.Base)
9052         return Error(E);
9053       // We can't tell whether weak symbols will end up pointing to the same
9054       // object.
9055       if (IsWeakLValue(LHSValue) || IsWeakLValue(RHSValue))
9056         return Error(E);
9057       // We can't compare the address of the start of one object with the
9058       // past-the-end address of another object, per C++ DR1652.
9059       if ((LHSValue.Base && LHSValue.Offset.isZero() &&
9060            isOnePastTheEndOfCompleteObject(Info.Ctx, RHSValue)) ||
9061           (RHSValue.Base && RHSValue.Offset.isZero() &&
9062            isOnePastTheEndOfCompleteObject(Info.Ctx, LHSValue)))
9063         return Error(E);
9064       // We can't tell whether an object is at the same address as another
9065       // zero sized object.
9066       if ((RHSValue.Base && isZeroSized(LHSValue)) ||
9067           (LHSValue.Base && isZeroSized(RHSValue)))
9068         return Error(E);
9069       return Success(CCR::Nonequal, E);
9070     }
9071 
9072     const CharUnits &LHSOffset = LHSValue.getLValueOffset();
9073     const CharUnits &RHSOffset = RHSValue.getLValueOffset();
9074 
9075     SubobjectDesignator &LHSDesignator = LHSValue.getLValueDesignator();
9076     SubobjectDesignator &RHSDesignator = RHSValue.getLValueDesignator();
9077 
9078     // C++11 [expr.rel]p3:
9079     //   Pointers to void (after pointer conversions) can be compared, with a
9080     //   result defined as follows: If both pointers represent the same
9081     //   address or are both the null pointer value, the result is true if the
9082     //   operator is <= or >= and false otherwise; otherwise the result is
9083     //   unspecified.
9084     // We interpret this as applying to pointers to *cv* void.
9085     if (LHSTy->isVoidPointerType() && LHSOffset != RHSOffset && IsRelational)
9086       Info.CCEDiag(E, diag::note_constexpr_void_comparison);
9087 
9088     // C++11 [expr.rel]p2:
9089     // - If two pointers point to non-static data members of the same object,
9090     //   or to subobjects or array elements fo such members, recursively, the
9091     //   pointer to the later declared member compares greater provided the
9092     //   two members have the same access control and provided their class is
9093     //   not a union.
9094     //   [...]
9095     // - Otherwise pointer comparisons are unspecified.
9096     if (!LHSDesignator.Invalid && !RHSDesignator.Invalid && IsRelational) {
9097       bool WasArrayIndex;
9098       unsigned Mismatch = FindDesignatorMismatch(
9099           getType(LHSValue.Base), LHSDesignator, RHSDesignator, WasArrayIndex);
9100       // At the point where the designators diverge, the comparison has a
9101       // specified value if:
9102       //  - we are comparing array indices
9103       //  - we are comparing fields of a union, or fields with the same access
9104       // Otherwise, the result is unspecified and thus the comparison is not a
9105       // constant expression.
9106       if (!WasArrayIndex && Mismatch < LHSDesignator.Entries.size() &&
9107           Mismatch < RHSDesignator.Entries.size()) {
9108         const FieldDecl *LF = getAsField(LHSDesignator.Entries[Mismatch]);
9109         const FieldDecl *RF = getAsField(RHSDesignator.Entries[Mismatch]);
9110         if (!LF && !RF)
9111           Info.CCEDiag(E, diag::note_constexpr_pointer_comparison_base_classes);
9112         else if (!LF)
9113           Info.CCEDiag(E, diag::note_constexpr_pointer_comparison_base_field)
9114               << getAsBaseClass(LHSDesignator.Entries[Mismatch])
9115               << RF->getParent() << RF;
9116         else if (!RF)
9117           Info.CCEDiag(E, diag::note_constexpr_pointer_comparison_base_field)
9118               << getAsBaseClass(RHSDesignator.Entries[Mismatch])
9119               << LF->getParent() << LF;
9120         else if (!LF->getParent()->isUnion() &&
9121                  LF->getAccess() != RF->getAccess())
9122           Info.CCEDiag(E,
9123                        diag::note_constexpr_pointer_comparison_differing_access)
9124               << LF << LF->getAccess() << RF << RF->getAccess()
9125               << LF->getParent();
9126       }
9127     }
9128 
9129     // The comparison here must be unsigned, and performed with the same
9130     // width as the pointer.
9131     unsigned PtrSize = Info.Ctx.getTypeSize(LHSTy);
9132     uint64_t CompareLHS = LHSOffset.getQuantity();
9133     uint64_t CompareRHS = RHSOffset.getQuantity();
9134     assert(PtrSize <= 64 && "Unexpected pointer width");
9135     uint64_t Mask = ~0ULL >> (64 - PtrSize);
9136     CompareLHS &= Mask;
9137     CompareRHS &= Mask;
9138 
9139     // If there is a base and this is a relational operator, we can only
9140     // compare pointers within the object in question; otherwise, the result
9141     // depends on where the object is located in memory.
9142     if (!LHSValue.Base.isNull() && IsRelational) {
9143       QualType BaseTy = getType(LHSValue.Base);
9144       if (BaseTy->isIncompleteType())
9145         return Error(E);
9146       CharUnits Size = Info.Ctx.getTypeSizeInChars(BaseTy);
9147       uint64_t OffsetLimit = Size.getQuantity();
9148       if (CompareLHS > OffsetLimit || CompareRHS > OffsetLimit)
9149         return Error(E);
9150     }
9151 
9152     if (CompareLHS < CompareRHS)
9153       return Success(CCR::Less, E);
9154     if (CompareLHS > CompareRHS)
9155       return Success(CCR::Greater, E);
9156     return Success(CCR::Equal, E);
9157   }
9158 
9159   if (LHSTy->isMemberPointerType()) {
9160     assert(IsEquality && "unexpected member pointer operation");
9161     assert(RHSTy->isMemberPointerType() && "invalid comparison");
9162 
9163     MemberPtr LHSValue, RHSValue;
9164 
9165     bool LHSOK = EvaluateMemberPointer(E->getLHS(), LHSValue, Info);
9166     if (!LHSOK && !Info.noteFailure())
9167       return false;
9168 
9169     if (!EvaluateMemberPointer(E->getRHS(), RHSValue, Info) || !LHSOK)
9170       return false;
9171 
9172     // C++11 [expr.eq]p2:
9173     //   If both operands are null, they compare equal. Otherwise if only one is
9174     //   null, they compare unequal.
9175     if (!LHSValue.getDecl() || !RHSValue.getDecl()) {
9176       bool Equal = !LHSValue.getDecl() && !RHSValue.getDecl();
9177       return Success(Equal ? CCR::Equal : CCR::Nonequal, E);
9178     }
9179 
9180     //   Otherwise if either is a pointer to a virtual member function, the
9181     //   result is unspecified.
9182     if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(LHSValue.getDecl()))
9183       if (MD->isVirtual())
9184         Info.CCEDiag(E, diag::note_constexpr_compare_virtual_mem_ptr) << MD;
9185     if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(RHSValue.getDecl()))
9186       if (MD->isVirtual())
9187         Info.CCEDiag(E, diag::note_constexpr_compare_virtual_mem_ptr) << MD;
9188 
9189     //   Otherwise they compare equal if and only if they would refer to the
9190     //   same member of the same most derived object or the same subobject if
9191     //   they were dereferenced with a hypothetical object of the associated
9192     //   class type.
9193     bool Equal = LHSValue == RHSValue;
9194     return Success(Equal ? CCR::Equal : CCR::Nonequal, E);
9195   }
9196 
9197   if (LHSTy->isNullPtrType()) {
9198     assert(E->isComparisonOp() && "unexpected nullptr operation");
9199     assert(RHSTy->isNullPtrType() && "missing pointer conversion");
9200     // C++11 [expr.rel]p4, [expr.eq]p3: If two operands of type std::nullptr_t
9201     // are compared, the result is true of the operator is <=, >= or ==, and
9202     // false otherwise.
9203     return Success(CCR::Equal, E);
9204   }
9205 
9206   return DoAfter();
9207 }
9208 
9209 bool RecordExprEvaluator::VisitBinCmp(const BinaryOperator *E) {
9210   if (!CheckLiteralType(Info, E))
9211     return false;
9212 
9213   auto OnSuccess = [&](ComparisonCategoryResult ResKind,
9214                        const BinaryOperator *E) {
9215     // Evaluation succeeded. Lookup the information for the comparison category
9216     // type and fetch the VarDecl for the result.
9217     const ComparisonCategoryInfo &CmpInfo =
9218         Info.Ctx.CompCategories.getInfoForType(E->getType());
9219     const VarDecl *VD =
9220         CmpInfo.getValueInfo(CmpInfo.makeWeakResult(ResKind))->VD;
9221     // Check and evaluate the result as a constant expression.
9222     LValue LV;
9223     LV.set(VD);
9224     if (!handleLValueToRValueConversion(Info, E, E->getType(), LV, Result))
9225       return false;
9226     return CheckConstantExpression(Info, E->getExprLoc(), E->getType(), Result);
9227   };
9228   return EvaluateComparisonBinaryOperator(Info, E, OnSuccess, [&]() {
9229     return ExprEvaluatorBaseTy::VisitBinCmp(E);
9230   });
9231 }
9232 
9233 bool IntExprEvaluator::VisitBinaryOperator(const BinaryOperator *E) {
9234   // We don't call noteFailure immediately because the assignment happens after
9235   // we evaluate LHS and RHS.
9236   if (!Info.keepEvaluatingAfterFailure() && E->isAssignmentOp())
9237     return Error(E);
9238 
9239   DelayedNoteFailureRAII MaybeNoteFailureLater(Info, E->isAssignmentOp());
9240   if (DataRecursiveIntBinOpEvaluator::shouldEnqueue(E))
9241     return DataRecursiveIntBinOpEvaluator(*this, Result).Traverse(E);
9242 
9243   assert((!E->getLHS()->getType()->isIntegralOrEnumerationType() ||
9244           !E->getRHS()->getType()->isIntegralOrEnumerationType()) &&
9245          "DataRecursiveIntBinOpEvaluator should have handled integral types");
9246 
9247   if (E->isComparisonOp()) {
9248     // Evaluate builtin binary comparisons by evaluating them as C++2a three-way
9249     // comparisons and then translating the result.
9250     auto OnSuccess = [&](ComparisonCategoryResult ResKind,
9251                          const BinaryOperator *E) {
9252       using CCR = ComparisonCategoryResult;
9253       bool IsEqual   = ResKind == CCR::Equal,
9254            IsLess    = ResKind == CCR::Less,
9255            IsGreater = ResKind == CCR::Greater;
9256       auto Op = E->getOpcode();
9257       switch (Op) {
9258       default:
9259         llvm_unreachable("unsupported binary operator");
9260       case BO_EQ:
9261       case BO_NE:
9262         return Success(IsEqual == (Op == BO_EQ), E);
9263       case BO_LT: return Success(IsLess, E);
9264       case BO_GT: return Success(IsGreater, E);
9265       case BO_LE: return Success(IsEqual || IsLess, E);
9266       case BO_GE: return Success(IsEqual || IsGreater, E);
9267       }
9268     };
9269     return EvaluateComparisonBinaryOperator(Info, E, OnSuccess, [&]() {
9270       return ExprEvaluatorBaseTy::VisitBinaryOperator(E);
9271     });
9272   }
9273 
9274   QualType LHSTy = E->getLHS()->getType();
9275   QualType RHSTy = E->getRHS()->getType();
9276 
9277   if (LHSTy->isPointerType() && RHSTy->isPointerType() &&
9278       E->getOpcode() == BO_Sub) {
9279     LValue LHSValue, RHSValue;
9280 
9281     bool LHSOK = EvaluatePointer(E->getLHS(), LHSValue, Info);
9282     if (!LHSOK && !Info.noteFailure())
9283       return false;
9284 
9285     if (!EvaluatePointer(E->getRHS(), RHSValue, Info) || !LHSOK)
9286       return false;
9287 
9288     // Reject differing bases from the normal codepath; we special-case
9289     // comparisons to null.
9290     if (!HasSameBase(LHSValue, RHSValue)) {
9291       // Handle &&A - &&B.
9292       if (!LHSValue.Offset.isZero() || !RHSValue.Offset.isZero())
9293         return Error(E);
9294       const Expr *LHSExpr = LHSValue.Base.dyn_cast<const Expr *>();
9295       const Expr *RHSExpr = RHSValue.Base.dyn_cast<const Expr *>();
9296       if (!LHSExpr || !RHSExpr)
9297         return Error(E);
9298       const AddrLabelExpr *LHSAddrExpr = dyn_cast<AddrLabelExpr>(LHSExpr);
9299       const AddrLabelExpr *RHSAddrExpr = dyn_cast<AddrLabelExpr>(RHSExpr);
9300       if (!LHSAddrExpr || !RHSAddrExpr)
9301         return Error(E);
9302       // Make sure both labels come from the same function.
9303       if (LHSAddrExpr->getLabel()->getDeclContext() !=
9304           RHSAddrExpr->getLabel()->getDeclContext())
9305         return Error(E);
9306       return Success(APValue(LHSAddrExpr, RHSAddrExpr), E);
9307     }
9308     const CharUnits &LHSOffset = LHSValue.getLValueOffset();
9309     const CharUnits &RHSOffset = RHSValue.getLValueOffset();
9310 
9311     SubobjectDesignator &LHSDesignator = LHSValue.getLValueDesignator();
9312     SubobjectDesignator &RHSDesignator = RHSValue.getLValueDesignator();
9313 
9314     // C++11 [expr.add]p6:
9315     //   Unless both pointers point to elements of the same array object, or
9316     //   one past the last element of the array object, the behavior is
9317     //   undefined.
9318     if (!LHSDesignator.Invalid && !RHSDesignator.Invalid &&
9319         !AreElementsOfSameArray(getType(LHSValue.Base), LHSDesignator,
9320                                 RHSDesignator))
9321       Info.CCEDiag(E, diag::note_constexpr_pointer_subtraction_not_same_array);
9322 
9323     QualType Type = E->getLHS()->getType();
9324     QualType ElementType = Type->getAs<PointerType>()->getPointeeType();
9325 
9326     CharUnits ElementSize;
9327     if (!HandleSizeof(Info, E->getExprLoc(), ElementType, ElementSize))
9328       return false;
9329 
9330     // As an extension, a type may have zero size (empty struct or union in
9331     // C, array of zero length). Pointer subtraction in such cases has
9332     // undefined behavior, so is not constant.
9333     if (ElementSize.isZero()) {
9334       Info.FFDiag(E, diag::note_constexpr_pointer_subtraction_zero_size)
9335           << ElementType;
9336       return false;
9337     }
9338 
9339     // FIXME: LLVM and GCC both compute LHSOffset - RHSOffset at runtime,
9340     // and produce incorrect results when it overflows. Such behavior
9341     // appears to be non-conforming, but is common, so perhaps we should
9342     // assume the standard intended for such cases to be undefined behavior
9343     // and check for them.
9344 
9345     // Compute (LHSOffset - RHSOffset) / Size carefully, checking for
9346     // overflow in the final conversion to ptrdiff_t.
9347     APSInt LHS(llvm::APInt(65, (int64_t)LHSOffset.getQuantity(), true), false);
9348     APSInt RHS(llvm::APInt(65, (int64_t)RHSOffset.getQuantity(), true), false);
9349     APSInt ElemSize(llvm::APInt(65, (int64_t)ElementSize.getQuantity(), true),
9350                     false);
9351     APSInt TrueResult = (LHS - RHS) / ElemSize;
9352     APSInt Result = TrueResult.trunc(Info.Ctx.getIntWidth(E->getType()));
9353 
9354     if (Result.extend(65) != TrueResult &&
9355         !HandleOverflow(Info, E, TrueResult, E->getType()))
9356       return false;
9357     return Success(Result, E);
9358   }
9359 
9360   return ExprEvaluatorBaseTy::VisitBinaryOperator(E);
9361 }
9362 
9363 /// VisitUnaryExprOrTypeTraitExpr - Evaluate a sizeof, alignof or vec_step with
9364 /// a result as the expression's type.
9365 bool IntExprEvaluator::VisitUnaryExprOrTypeTraitExpr(
9366                                     const UnaryExprOrTypeTraitExpr *E) {
9367   switch(E->getKind()) {
9368   case UETT_AlignOf: {
9369     if (E->isArgumentType())
9370       return Success(GetAlignOfType(Info, E->getArgumentType()), E);
9371     else
9372       return Success(GetAlignOfExpr(Info, E->getArgumentExpr()), E);
9373   }
9374 
9375   case UETT_VecStep: {
9376     QualType Ty = E->getTypeOfArgument();
9377 
9378     if (Ty->isVectorType()) {
9379       unsigned n = Ty->castAs<VectorType>()->getNumElements();
9380 
9381       // The vec_step built-in functions that take a 3-component
9382       // vector return 4. (OpenCL 1.1 spec 6.11.12)
9383       if (n == 3)
9384         n = 4;
9385 
9386       return Success(n, E);
9387     } else
9388       return Success(1, E);
9389   }
9390 
9391   case UETT_SizeOf: {
9392     QualType SrcTy = E->getTypeOfArgument();
9393     // C++ [expr.sizeof]p2: "When applied to a reference or a reference type,
9394     //   the result is the size of the referenced type."
9395     if (const ReferenceType *Ref = SrcTy->getAs<ReferenceType>())
9396       SrcTy = Ref->getPointeeType();
9397 
9398     CharUnits Sizeof;
9399     if (!HandleSizeof(Info, E->getExprLoc(), SrcTy, Sizeof))
9400       return false;
9401     return Success(Sizeof, E);
9402   }
9403   case UETT_OpenMPRequiredSimdAlign:
9404     assert(E->isArgumentType());
9405     return Success(
9406         Info.Ctx.toCharUnitsFromBits(
9407                     Info.Ctx.getOpenMPDefaultSimdAlign(E->getArgumentType()))
9408             .getQuantity(),
9409         E);
9410   }
9411 
9412   llvm_unreachable("unknown expr/type trait");
9413 }
9414 
9415 bool IntExprEvaluator::VisitOffsetOfExpr(const OffsetOfExpr *OOE) {
9416   CharUnits Result;
9417   unsigned n = OOE->getNumComponents();
9418   if (n == 0)
9419     return Error(OOE);
9420   QualType CurrentType = OOE->getTypeSourceInfo()->getType();
9421   for (unsigned i = 0; i != n; ++i) {
9422     OffsetOfNode ON = OOE->getComponent(i);
9423     switch (ON.getKind()) {
9424     case OffsetOfNode::Array: {
9425       const Expr *Idx = OOE->getIndexExpr(ON.getArrayExprIndex());
9426       APSInt IdxResult;
9427       if (!EvaluateInteger(Idx, IdxResult, Info))
9428         return false;
9429       const ArrayType *AT = Info.Ctx.getAsArrayType(CurrentType);
9430       if (!AT)
9431         return Error(OOE);
9432       CurrentType = AT->getElementType();
9433       CharUnits ElementSize = Info.Ctx.getTypeSizeInChars(CurrentType);
9434       Result += IdxResult.getSExtValue() * ElementSize;
9435       break;
9436     }
9437 
9438     case OffsetOfNode::Field: {
9439       FieldDecl *MemberDecl = ON.getField();
9440       const RecordType *RT = CurrentType->getAs<RecordType>();
9441       if (!RT)
9442         return Error(OOE);
9443       RecordDecl *RD = RT->getDecl();
9444       if (RD->isInvalidDecl()) return false;
9445       const ASTRecordLayout &RL = Info.Ctx.getASTRecordLayout(RD);
9446       unsigned i = MemberDecl->getFieldIndex();
9447       assert(i < RL.getFieldCount() && "offsetof field in wrong type");
9448       Result += Info.Ctx.toCharUnitsFromBits(RL.getFieldOffset(i));
9449       CurrentType = MemberDecl->getType().getNonReferenceType();
9450       break;
9451     }
9452 
9453     case OffsetOfNode::Identifier:
9454       llvm_unreachable("dependent __builtin_offsetof");
9455 
9456     case OffsetOfNode::Base: {
9457       CXXBaseSpecifier *BaseSpec = ON.getBase();
9458       if (BaseSpec->isVirtual())
9459         return Error(OOE);
9460 
9461       // Find the layout of the class whose base we are looking into.
9462       const RecordType *RT = CurrentType->getAs<RecordType>();
9463       if (!RT)
9464         return Error(OOE);
9465       RecordDecl *RD = RT->getDecl();
9466       if (RD->isInvalidDecl()) return false;
9467       const ASTRecordLayout &RL = Info.Ctx.getASTRecordLayout(RD);
9468 
9469       // Find the base class itself.
9470       CurrentType = BaseSpec->getType();
9471       const RecordType *BaseRT = CurrentType->getAs<RecordType>();
9472       if (!BaseRT)
9473         return Error(OOE);
9474 
9475       // Add the offset to the base.
9476       Result += RL.getBaseClassOffset(cast<CXXRecordDecl>(BaseRT->getDecl()));
9477       break;
9478     }
9479     }
9480   }
9481   return Success(Result, OOE);
9482 }
9483 
9484 bool IntExprEvaluator::VisitUnaryOperator(const UnaryOperator *E) {
9485   switch (E->getOpcode()) {
9486   default:
9487     // Address, indirect, pre/post inc/dec, etc are not valid constant exprs.
9488     // See C99 6.6p3.
9489     return Error(E);
9490   case UO_Extension:
9491     // FIXME: Should extension allow i-c-e extension expressions in its scope?
9492     // If so, we could clear the diagnostic ID.
9493     return Visit(E->getSubExpr());
9494   case UO_Plus:
9495     // The result is just the value.
9496     return Visit(E->getSubExpr());
9497   case UO_Minus: {
9498     if (!Visit(E->getSubExpr()))
9499       return false;
9500     if (!Result.isInt()) return Error(E);
9501     const APSInt &Value = Result.getInt();
9502     if (Value.isSigned() && Value.isMinSignedValue() && E->canOverflow() &&
9503         !HandleOverflow(Info, E, -Value.extend(Value.getBitWidth() + 1),
9504                         E->getType()))
9505       return false;
9506     return Success(-Value, E);
9507   }
9508   case UO_Not: {
9509     if (!Visit(E->getSubExpr()))
9510       return false;
9511     if (!Result.isInt()) return Error(E);
9512     return Success(~Result.getInt(), E);
9513   }
9514   case UO_LNot: {
9515     bool bres;
9516     if (!EvaluateAsBooleanCondition(E->getSubExpr(), bres, Info))
9517       return false;
9518     return Success(!bres, E);
9519   }
9520   }
9521 }
9522 
9523 /// HandleCast - This is used to evaluate implicit or explicit casts where the
9524 /// result type is integer.
9525 bool IntExprEvaluator::VisitCastExpr(const CastExpr *E) {
9526   const Expr *SubExpr = E->getSubExpr();
9527   QualType DestType = E->getType();
9528   QualType SrcType = SubExpr->getType();
9529 
9530   switch (E->getCastKind()) {
9531   case CK_BaseToDerived:
9532   case CK_DerivedToBase:
9533   case CK_UncheckedDerivedToBase:
9534   case CK_Dynamic:
9535   case CK_ToUnion:
9536   case CK_ArrayToPointerDecay:
9537   case CK_FunctionToPointerDecay:
9538   case CK_NullToPointer:
9539   case CK_NullToMemberPointer:
9540   case CK_BaseToDerivedMemberPointer:
9541   case CK_DerivedToBaseMemberPointer:
9542   case CK_ReinterpretMemberPointer:
9543   case CK_ConstructorConversion:
9544   case CK_IntegralToPointer:
9545   case CK_ToVoid:
9546   case CK_VectorSplat:
9547   case CK_IntegralToFloating:
9548   case CK_FloatingCast:
9549   case CK_CPointerToObjCPointerCast:
9550   case CK_BlockPointerToObjCPointerCast:
9551   case CK_AnyPointerToBlockPointerCast:
9552   case CK_ObjCObjectLValueCast:
9553   case CK_FloatingRealToComplex:
9554   case CK_FloatingComplexToReal:
9555   case CK_FloatingComplexCast:
9556   case CK_FloatingComplexToIntegralComplex:
9557   case CK_IntegralRealToComplex:
9558   case CK_IntegralComplexCast:
9559   case CK_IntegralComplexToFloatingComplex:
9560   case CK_BuiltinFnToFnPtr:
9561   case CK_ZeroToOCLEvent:
9562   case CK_ZeroToOCLQueue:
9563   case CK_NonAtomicToAtomic:
9564   case CK_AddressSpaceConversion:
9565   case CK_IntToOCLSampler:
9566     llvm_unreachable("invalid cast kind for integral value");
9567 
9568   case CK_BitCast:
9569   case CK_Dependent:
9570   case CK_LValueBitCast:
9571   case CK_ARCProduceObject:
9572   case CK_ARCConsumeObject:
9573   case CK_ARCReclaimReturnedObject:
9574   case CK_ARCExtendBlockObject:
9575   case CK_CopyAndAutoreleaseBlockObject:
9576     return Error(E);
9577 
9578   case CK_UserDefinedConversion:
9579   case CK_LValueToRValue:
9580   case CK_AtomicToNonAtomic:
9581   case CK_NoOp:
9582     return ExprEvaluatorBaseTy::VisitCastExpr(E);
9583 
9584   case CK_MemberPointerToBoolean:
9585   case CK_PointerToBoolean:
9586   case CK_IntegralToBoolean:
9587   case CK_FloatingToBoolean:
9588   case CK_BooleanToSignedIntegral:
9589   case CK_FloatingComplexToBoolean:
9590   case CK_IntegralComplexToBoolean: {
9591     bool BoolResult;
9592     if (!EvaluateAsBooleanCondition(SubExpr, BoolResult, Info))
9593       return false;
9594     uint64_t IntResult = BoolResult;
9595     if (BoolResult && E->getCastKind() == CK_BooleanToSignedIntegral)
9596       IntResult = (uint64_t)-1;
9597     return Success(IntResult, E);
9598   }
9599 
9600   case CK_IntegralCast: {
9601     if (!Visit(SubExpr))
9602       return false;
9603 
9604     if (!Result.isInt()) {
9605       // Allow casts of address-of-label differences if they are no-ops
9606       // or narrowing.  (The narrowing case isn't actually guaranteed to
9607       // be constant-evaluatable except in some narrow cases which are hard
9608       // to detect here.  We let it through on the assumption the user knows
9609       // what they are doing.)
9610       if (Result.isAddrLabelDiff())
9611         return Info.Ctx.getTypeSize(DestType) <= Info.Ctx.getTypeSize(SrcType);
9612       // Only allow casts of lvalues if they are lossless.
9613       return Info.Ctx.getTypeSize(DestType) == Info.Ctx.getTypeSize(SrcType);
9614     }
9615 
9616     return Success(HandleIntToIntCast(Info, E, DestType, SrcType,
9617                                       Result.getInt()), E);
9618   }
9619 
9620   case CK_PointerToIntegral: {
9621     CCEDiag(E, diag::note_constexpr_invalid_cast) << 2;
9622 
9623     LValue LV;
9624     if (!EvaluatePointer(SubExpr, LV, Info))
9625       return false;
9626 
9627     if (LV.getLValueBase()) {
9628       // Only allow based lvalue casts if they are lossless.
9629       // FIXME: Allow a larger integer size than the pointer size, and allow
9630       // narrowing back down to pointer width in subsequent integral casts.
9631       // FIXME: Check integer type's active bits, not its type size.
9632       if (Info.Ctx.getTypeSize(DestType) != Info.Ctx.getTypeSize(SrcType))
9633         return Error(E);
9634 
9635       LV.Designator.setInvalid();
9636       LV.moveInto(Result);
9637       return true;
9638     }
9639 
9640     uint64_t V;
9641     if (LV.isNullPointer())
9642       V = Info.Ctx.getTargetNullPointerValue(SrcType);
9643     else
9644       V = LV.getLValueOffset().getQuantity();
9645 
9646     APSInt AsInt = Info.Ctx.MakeIntValue(V, SrcType);
9647     return Success(HandleIntToIntCast(Info, E, DestType, SrcType, AsInt), E);
9648   }
9649 
9650   case CK_IntegralComplexToReal: {
9651     ComplexValue C;
9652     if (!EvaluateComplex(SubExpr, C, Info))
9653       return false;
9654     return Success(C.getComplexIntReal(), E);
9655   }
9656 
9657   case CK_FloatingToIntegral: {
9658     APFloat F(0.0);
9659     if (!EvaluateFloat(SubExpr, F, Info))
9660       return false;
9661 
9662     APSInt Value;
9663     if (!HandleFloatToIntCast(Info, E, SrcType, F, DestType, Value))
9664       return false;
9665     return Success(Value, E);
9666   }
9667   }
9668 
9669   llvm_unreachable("unknown cast resulting in integral value");
9670 }
9671 
9672 bool IntExprEvaluator::VisitUnaryReal(const UnaryOperator *E) {
9673   if (E->getSubExpr()->getType()->isAnyComplexType()) {
9674     ComplexValue LV;
9675     if (!EvaluateComplex(E->getSubExpr(), LV, Info))
9676       return false;
9677     if (!LV.isComplexInt())
9678       return Error(E);
9679     return Success(LV.getComplexIntReal(), E);
9680   }
9681 
9682   return Visit(E->getSubExpr());
9683 }
9684 
9685 bool IntExprEvaluator::VisitUnaryImag(const UnaryOperator *E) {
9686   if (E->getSubExpr()->getType()->isComplexIntegerType()) {
9687     ComplexValue LV;
9688     if (!EvaluateComplex(E->getSubExpr(), LV, Info))
9689       return false;
9690     if (!LV.isComplexInt())
9691       return Error(E);
9692     return Success(LV.getComplexIntImag(), E);
9693   }
9694 
9695   VisitIgnoredValue(E->getSubExpr());
9696   return Success(0, E);
9697 }
9698 
9699 bool IntExprEvaluator::VisitSizeOfPackExpr(const SizeOfPackExpr *E) {
9700   return Success(E->getPackLength(), E);
9701 }
9702 
9703 bool IntExprEvaluator::VisitCXXNoexceptExpr(const CXXNoexceptExpr *E) {
9704   return Success(E->getValue(), E);
9705 }
9706 
9707 bool FixedPointExprEvaluator::VisitUnaryOperator(const UnaryOperator *E) {
9708   switch (E->getOpcode()) {
9709     default:
9710       // Invalid unary operators
9711       return Error(E);
9712     case UO_Plus:
9713       // The result is just the value.
9714       return Visit(E->getSubExpr());
9715     case UO_Minus: {
9716       if (!Visit(E->getSubExpr())) return false;
9717       if (!Result.isInt()) return Error(E);
9718       const APSInt &Value = Result.getInt();
9719       if (Value.isSigned() && Value.isMinSignedValue() && E->canOverflow()) {
9720         SmallString<64> S;
9721         FixedPointValueToString(S, Value,
9722                                 Info.Ctx.getTypeInfo(E->getType()).Width);
9723         Info.CCEDiag(E, diag::note_constexpr_overflow) << S << E->getType();
9724         if (Info.noteUndefinedBehavior()) return false;
9725       }
9726       return Success(-Value, E);
9727     }
9728     case UO_LNot: {
9729       bool bres;
9730       if (!EvaluateAsBooleanCondition(E->getSubExpr(), bres, Info))
9731         return false;
9732       return Success(!bres, E);
9733     }
9734   }
9735 }
9736 
9737 //===----------------------------------------------------------------------===//
9738 // Float Evaluation
9739 //===----------------------------------------------------------------------===//
9740 
9741 namespace {
9742 class FloatExprEvaluator
9743   : public ExprEvaluatorBase<FloatExprEvaluator> {
9744   APFloat &Result;
9745 public:
9746   FloatExprEvaluator(EvalInfo &info, APFloat &result)
9747     : ExprEvaluatorBaseTy(info), Result(result) {}
9748 
9749   bool Success(const APValue &V, const Expr *e) {
9750     Result = V.getFloat();
9751     return true;
9752   }
9753 
9754   bool ZeroInitialization(const Expr *E) {
9755     Result = APFloat::getZero(Info.Ctx.getFloatTypeSemantics(E->getType()));
9756     return true;
9757   }
9758 
9759   bool VisitCallExpr(const CallExpr *E);
9760 
9761   bool VisitUnaryOperator(const UnaryOperator *E);
9762   bool VisitBinaryOperator(const BinaryOperator *E);
9763   bool VisitFloatingLiteral(const FloatingLiteral *E);
9764   bool VisitCastExpr(const CastExpr *E);
9765 
9766   bool VisitUnaryReal(const UnaryOperator *E);
9767   bool VisitUnaryImag(const UnaryOperator *E);
9768 
9769   // FIXME: Missing: array subscript of vector, member of vector
9770 };
9771 } // end anonymous namespace
9772 
9773 static bool EvaluateFloat(const Expr* E, APFloat& Result, EvalInfo &Info) {
9774   assert(E->isRValue() && E->getType()->isRealFloatingType());
9775   return FloatExprEvaluator(Info, Result).Visit(E);
9776 }
9777 
9778 static bool TryEvaluateBuiltinNaN(const ASTContext &Context,
9779                                   QualType ResultTy,
9780                                   const Expr *Arg,
9781                                   bool SNaN,
9782                                   llvm::APFloat &Result) {
9783   const StringLiteral *S = dyn_cast<StringLiteral>(Arg->IgnoreParenCasts());
9784   if (!S) return false;
9785 
9786   const llvm::fltSemantics &Sem = Context.getFloatTypeSemantics(ResultTy);
9787 
9788   llvm::APInt fill;
9789 
9790   // Treat empty strings as if they were zero.
9791   if (S->getString().empty())
9792     fill = llvm::APInt(32, 0);
9793   else if (S->getString().getAsInteger(0, fill))
9794     return false;
9795 
9796   if (Context.getTargetInfo().isNan2008()) {
9797     if (SNaN)
9798       Result = llvm::APFloat::getSNaN(Sem, false, &fill);
9799     else
9800       Result = llvm::APFloat::getQNaN(Sem, false, &fill);
9801   } else {
9802     // Prior to IEEE 754-2008, architectures were allowed to choose whether
9803     // the first bit of their significand was set for qNaN or sNaN. MIPS chose
9804     // a different encoding to what became a standard in 2008, and for pre-
9805     // 2008 revisions, MIPS interpreted sNaN-2008 as qNan and qNaN-2008 as
9806     // sNaN. This is now known as "legacy NaN" encoding.
9807     if (SNaN)
9808       Result = llvm::APFloat::getQNaN(Sem, false, &fill);
9809     else
9810       Result = llvm::APFloat::getSNaN(Sem, false, &fill);
9811   }
9812 
9813   return true;
9814 }
9815 
9816 bool FloatExprEvaluator::VisitCallExpr(const CallExpr *E) {
9817   switch (E->getBuiltinCallee()) {
9818   default:
9819     return ExprEvaluatorBaseTy::VisitCallExpr(E);
9820 
9821   case Builtin::BI__builtin_huge_val:
9822   case Builtin::BI__builtin_huge_valf:
9823   case Builtin::BI__builtin_huge_vall:
9824   case Builtin::BI__builtin_huge_valf128:
9825   case Builtin::BI__builtin_inf:
9826   case Builtin::BI__builtin_inff:
9827   case Builtin::BI__builtin_infl:
9828   case Builtin::BI__builtin_inff128: {
9829     const llvm::fltSemantics &Sem =
9830       Info.Ctx.getFloatTypeSemantics(E->getType());
9831     Result = llvm::APFloat::getInf(Sem);
9832     return true;
9833   }
9834 
9835   case Builtin::BI__builtin_nans:
9836   case Builtin::BI__builtin_nansf:
9837   case Builtin::BI__builtin_nansl:
9838   case Builtin::BI__builtin_nansf128:
9839     if (!TryEvaluateBuiltinNaN(Info.Ctx, E->getType(), E->getArg(0),
9840                                true, Result))
9841       return Error(E);
9842     return true;
9843 
9844   case Builtin::BI__builtin_nan:
9845   case Builtin::BI__builtin_nanf:
9846   case Builtin::BI__builtin_nanl:
9847   case Builtin::BI__builtin_nanf128:
9848     // If this is __builtin_nan() turn this into a nan, otherwise we
9849     // can't constant fold it.
9850     if (!TryEvaluateBuiltinNaN(Info.Ctx, E->getType(), E->getArg(0),
9851                                false, Result))
9852       return Error(E);
9853     return true;
9854 
9855   case Builtin::BI__builtin_fabs:
9856   case Builtin::BI__builtin_fabsf:
9857   case Builtin::BI__builtin_fabsl:
9858   case Builtin::BI__builtin_fabsf128:
9859     if (!EvaluateFloat(E->getArg(0), Result, Info))
9860       return false;
9861 
9862     if (Result.isNegative())
9863       Result.changeSign();
9864     return true;
9865 
9866   // FIXME: Builtin::BI__builtin_powi
9867   // FIXME: Builtin::BI__builtin_powif
9868   // FIXME: Builtin::BI__builtin_powil
9869 
9870   case Builtin::BI__builtin_copysign:
9871   case Builtin::BI__builtin_copysignf:
9872   case Builtin::BI__builtin_copysignl:
9873   case Builtin::BI__builtin_copysignf128: {
9874     APFloat RHS(0.);
9875     if (!EvaluateFloat(E->getArg(0), Result, Info) ||
9876         !EvaluateFloat(E->getArg(1), RHS, Info))
9877       return false;
9878     Result.copySign(RHS);
9879     return true;
9880   }
9881   }
9882 }
9883 
9884 bool FloatExprEvaluator::VisitUnaryReal(const UnaryOperator *E) {
9885   if (E->getSubExpr()->getType()->isAnyComplexType()) {
9886     ComplexValue CV;
9887     if (!EvaluateComplex(E->getSubExpr(), CV, Info))
9888       return false;
9889     Result = CV.FloatReal;
9890     return true;
9891   }
9892 
9893   return Visit(E->getSubExpr());
9894 }
9895 
9896 bool FloatExprEvaluator::VisitUnaryImag(const UnaryOperator *E) {
9897   if (E->getSubExpr()->getType()->isAnyComplexType()) {
9898     ComplexValue CV;
9899     if (!EvaluateComplex(E->getSubExpr(), CV, Info))
9900       return false;
9901     Result = CV.FloatImag;
9902     return true;
9903   }
9904 
9905   VisitIgnoredValue(E->getSubExpr());
9906   const llvm::fltSemantics &Sem = Info.Ctx.getFloatTypeSemantics(E->getType());
9907   Result = llvm::APFloat::getZero(Sem);
9908   return true;
9909 }
9910 
9911 bool FloatExprEvaluator::VisitUnaryOperator(const UnaryOperator *E) {
9912   switch (E->getOpcode()) {
9913   default: return Error(E);
9914   case UO_Plus:
9915     return EvaluateFloat(E->getSubExpr(), Result, Info);
9916   case UO_Minus:
9917     if (!EvaluateFloat(E->getSubExpr(), Result, Info))
9918       return false;
9919     Result.changeSign();
9920     return true;
9921   }
9922 }
9923 
9924 bool FloatExprEvaluator::VisitBinaryOperator(const BinaryOperator *E) {
9925   if (E->isPtrMemOp() || E->isAssignmentOp() || E->getOpcode() == BO_Comma)
9926     return ExprEvaluatorBaseTy::VisitBinaryOperator(E);
9927 
9928   APFloat RHS(0.0);
9929   bool LHSOK = EvaluateFloat(E->getLHS(), Result, Info);
9930   if (!LHSOK && !Info.noteFailure())
9931     return false;
9932   return EvaluateFloat(E->getRHS(), RHS, Info) && LHSOK &&
9933          handleFloatFloatBinOp(Info, E, Result, E->getOpcode(), RHS);
9934 }
9935 
9936 bool FloatExprEvaluator::VisitFloatingLiteral(const FloatingLiteral *E) {
9937   Result = E->getValue();
9938   return true;
9939 }
9940 
9941 bool FloatExprEvaluator::VisitCastExpr(const CastExpr *E) {
9942   const Expr* SubExpr = E->getSubExpr();
9943 
9944   switch (E->getCastKind()) {
9945   default:
9946     return ExprEvaluatorBaseTy::VisitCastExpr(E);
9947 
9948   case CK_IntegralToFloating: {
9949     APSInt IntResult;
9950     return EvaluateInteger(SubExpr, IntResult, Info) &&
9951            HandleIntToFloatCast(Info, E, SubExpr->getType(), IntResult,
9952                                 E->getType(), Result);
9953   }
9954 
9955   case CK_FloatingCast: {
9956     if (!Visit(SubExpr))
9957       return false;
9958     return HandleFloatToFloatCast(Info, E, SubExpr->getType(), E->getType(),
9959                                   Result);
9960   }
9961 
9962   case CK_FloatingComplexToReal: {
9963     ComplexValue V;
9964     if (!EvaluateComplex(SubExpr, V, Info))
9965       return false;
9966     Result = V.getComplexFloatReal();
9967     return true;
9968   }
9969   }
9970 }
9971 
9972 //===----------------------------------------------------------------------===//
9973 // Complex Evaluation (for float and integer)
9974 //===----------------------------------------------------------------------===//
9975 
9976 namespace {
9977 class ComplexExprEvaluator
9978   : public ExprEvaluatorBase<ComplexExprEvaluator> {
9979   ComplexValue &Result;
9980 
9981 public:
9982   ComplexExprEvaluator(EvalInfo &info, ComplexValue &Result)
9983     : ExprEvaluatorBaseTy(info), Result(Result) {}
9984 
9985   bool Success(const APValue &V, const Expr *e) {
9986     Result.setFrom(V);
9987     return true;
9988   }
9989 
9990   bool ZeroInitialization(const Expr *E);
9991 
9992   //===--------------------------------------------------------------------===//
9993   //                            Visitor Methods
9994   //===--------------------------------------------------------------------===//
9995 
9996   bool VisitImaginaryLiteral(const ImaginaryLiteral *E);
9997   bool VisitCastExpr(const CastExpr *E);
9998   bool VisitBinaryOperator(const BinaryOperator *E);
9999   bool VisitUnaryOperator(const UnaryOperator *E);
10000   bool VisitInitListExpr(const InitListExpr *E);
10001 };
10002 } // end anonymous namespace
10003 
10004 static bool EvaluateComplex(const Expr *E, ComplexValue &Result,
10005                             EvalInfo &Info) {
10006   assert(E->isRValue() && E->getType()->isAnyComplexType());
10007   return ComplexExprEvaluator(Info, Result).Visit(E);
10008 }
10009 
10010 bool ComplexExprEvaluator::ZeroInitialization(const Expr *E) {
10011   QualType ElemTy = E->getType()->castAs<ComplexType>()->getElementType();
10012   if (ElemTy->isRealFloatingType()) {
10013     Result.makeComplexFloat();
10014     APFloat Zero = APFloat::getZero(Info.Ctx.getFloatTypeSemantics(ElemTy));
10015     Result.FloatReal = Zero;
10016     Result.FloatImag = Zero;
10017   } else {
10018     Result.makeComplexInt();
10019     APSInt Zero = Info.Ctx.MakeIntValue(0, ElemTy);
10020     Result.IntReal = Zero;
10021     Result.IntImag = Zero;
10022   }
10023   return true;
10024 }
10025 
10026 bool ComplexExprEvaluator::VisitImaginaryLiteral(const ImaginaryLiteral *E) {
10027   const Expr* SubExpr = E->getSubExpr();
10028 
10029   if (SubExpr->getType()->isRealFloatingType()) {
10030     Result.makeComplexFloat();
10031     APFloat &Imag = Result.FloatImag;
10032     if (!EvaluateFloat(SubExpr, Imag, Info))
10033       return false;
10034 
10035     Result.FloatReal = APFloat(Imag.getSemantics());
10036     return true;
10037   } else {
10038     assert(SubExpr->getType()->isIntegerType() &&
10039            "Unexpected imaginary literal.");
10040 
10041     Result.makeComplexInt();
10042     APSInt &Imag = Result.IntImag;
10043     if (!EvaluateInteger(SubExpr, Imag, Info))
10044       return false;
10045 
10046     Result.IntReal = APSInt(Imag.getBitWidth(), !Imag.isSigned());
10047     return true;
10048   }
10049 }
10050 
10051 bool ComplexExprEvaluator::VisitCastExpr(const CastExpr *E) {
10052 
10053   switch (E->getCastKind()) {
10054   case CK_BitCast:
10055   case CK_BaseToDerived:
10056   case CK_DerivedToBase:
10057   case CK_UncheckedDerivedToBase:
10058   case CK_Dynamic:
10059   case CK_ToUnion:
10060   case CK_ArrayToPointerDecay:
10061   case CK_FunctionToPointerDecay:
10062   case CK_NullToPointer:
10063   case CK_NullToMemberPointer:
10064   case CK_BaseToDerivedMemberPointer:
10065   case CK_DerivedToBaseMemberPointer:
10066   case CK_MemberPointerToBoolean:
10067   case CK_ReinterpretMemberPointer:
10068   case CK_ConstructorConversion:
10069   case CK_IntegralToPointer:
10070   case CK_PointerToIntegral:
10071   case CK_PointerToBoolean:
10072   case CK_ToVoid:
10073   case CK_VectorSplat:
10074   case CK_IntegralCast:
10075   case CK_BooleanToSignedIntegral:
10076   case CK_IntegralToBoolean:
10077   case CK_IntegralToFloating:
10078   case CK_FloatingToIntegral:
10079   case CK_FloatingToBoolean:
10080   case CK_FloatingCast:
10081   case CK_CPointerToObjCPointerCast:
10082   case CK_BlockPointerToObjCPointerCast:
10083   case CK_AnyPointerToBlockPointerCast:
10084   case CK_ObjCObjectLValueCast:
10085   case CK_FloatingComplexToReal:
10086   case CK_FloatingComplexToBoolean:
10087   case CK_IntegralComplexToReal:
10088   case CK_IntegralComplexToBoolean:
10089   case CK_ARCProduceObject:
10090   case CK_ARCConsumeObject:
10091   case CK_ARCReclaimReturnedObject:
10092   case CK_ARCExtendBlockObject:
10093   case CK_CopyAndAutoreleaseBlockObject:
10094   case CK_BuiltinFnToFnPtr:
10095   case CK_ZeroToOCLEvent:
10096   case CK_ZeroToOCLQueue:
10097   case CK_NonAtomicToAtomic:
10098   case CK_AddressSpaceConversion:
10099   case CK_IntToOCLSampler:
10100     llvm_unreachable("invalid cast kind for complex value");
10101 
10102   case CK_LValueToRValue:
10103   case CK_AtomicToNonAtomic:
10104   case CK_NoOp:
10105     return ExprEvaluatorBaseTy::VisitCastExpr(E);
10106 
10107   case CK_Dependent:
10108   case CK_LValueBitCast:
10109   case CK_UserDefinedConversion:
10110     return Error(E);
10111 
10112   case CK_FloatingRealToComplex: {
10113     APFloat &Real = Result.FloatReal;
10114     if (!EvaluateFloat(E->getSubExpr(), Real, Info))
10115       return false;
10116 
10117     Result.makeComplexFloat();
10118     Result.FloatImag = APFloat(Real.getSemantics());
10119     return true;
10120   }
10121 
10122   case CK_FloatingComplexCast: {
10123     if (!Visit(E->getSubExpr()))
10124       return false;
10125 
10126     QualType To = E->getType()->getAs<ComplexType>()->getElementType();
10127     QualType From
10128       = E->getSubExpr()->getType()->getAs<ComplexType>()->getElementType();
10129 
10130     return HandleFloatToFloatCast(Info, E, From, To, Result.FloatReal) &&
10131            HandleFloatToFloatCast(Info, E, From, To, Result.FloatImag);
10132   }
10133 
10134   case CK_FloatingComplexToIntegralComplex: {
10135     if (!Visit(E->getSubExpr()))
10136       return false;
10137 
10138     QualType To = E->getType()->getAs<ComplexType>()->getElementType();
10139     QualType From
10140       = E->getSubExpr()->getType()->getAs<ComplexType>()->getElementType();
10141     Result.makeComplexInt();
10142     return HandleFloatToIntCast(Info, E, From, Result.FloatReal,
10143                                 To, Result.IntReal) &&
10144            HandleFloatToIntCast(Info, E, From, Result.FloatImag,
10145                                 To, Result.IntImag);
10146   }
10147 
10148   case CK_IntegralRealToComplex: {
10149     APSInt &Real = Result.IntReal;
10150     if (!EvaluateInteger(E->getSubExpr(), Real, Info))
10151       return false;
10152 
10153     Result.makeComplexInt();
10154     Result.IntImag = APSInt(Real.getBitWidth(), !Real.isSigned());
10155     return true;
10156   }
10157 
10158   case CK_IntegralComplexCast: {
10159     if (!Visit(E->getSubExpr()))
10160       return false;
10161 
10162     QualType To = E->getType()->getAs<ComplexType>()->getElementType();
10163     QualType From
10164       = E->getSubExpr()->getType()->getAs<ComplexType>()->getElementType();
10165 
10166     Result.IntReal = HandleIntToIntCast(Info, E, To, From, Result.IntReal);
10167     Result.IntImag = HandleIntToIntCast(Info, E, To, From, Result.IntImag);
10168     return true;
10169   }
10170 
10171   case CK_IntegralComplexToFloatingComplex: {
10172     if (!Visit(E->getSubExpr()))
10173       return false;
10174 
10175     QualType To = E->getType()->castAs<ComplexType>()->getElementType();
10176     QualType From
10177       = E->getSubExpr()->getType()->castAs<ComplexType>()->getElementType();
10178     Result.makeComplexFloat();
10179     return HandleIntToFloatCast(Info, E, From, Result.IntReal,
10180                                 To, Result.FloatReal) &&
10181            HandleIntToFloatCast(Info, E, From, Result.IntImag,
10182                                 To, Result.FloatImag);
10183   }
10184   }
10185 
10186   llvm_unreachable("unknown cast resulting in complex value");
10187 }
10188 
10189 bool ComplexExprEvaluator::VisitBinaryOperator(const BinaryOperator *E) {
10190   if (E->isPtrMemOp() || E->isAssignmentOp() || E->getOpcode() == BO_Comma)
10191     return ExprEvaluatorBaseTy::VisitBinaryOperator(E);
10192 
10193   // Track whether the LHS or RHS is real at the type system level. When this is
10194   // the case we can simplify our evaluation strategy.
10195   bool LHSReal = false, RHSReal = false;
10196 
10197   bool LHSOK;
10198   if (E->getLHS()->getType()->isRealFloatingType()) {
10199     LHSReal = true;
10200     APFloat &Real = Result.FloatReal;
10201     LHSOK = EvaluateFloat(E->getLHS(), Real, Info);
10202     if (LHSOK) {
10203       Result.makeComplexFloat();
10204       Result.FloatImag = APFloat(Real.getSemantics());
10205     }
10206   } else {
10207     LHSOK = Visit(E->getLHS());
10208   }
10209   if (!LHSOK && !Info.noteFailure())
10210     return false;
10211 
10212   ComplexValue RHS;
10213   if (E->getRHS()->getType()->isRealFloatingType()) {
10214     RHSReal = true;
10215     APFloat &Real = RHS.FloatReal;
10216     if (!EvaluateFloat(E->getRHS(), Real, Info) || !LHSOK)
10217       return false;
10218     RHS.makeComplexFloat();
10219     RHS.FloatImag = APFloat(Real.getSemantics());
10220   } else if (!EvaluateComplex(E->getRHS(), RHS, Info) || !LHSOK)
10221     return false;
10222 
10223   assert(!(LHSReal && RHSReal) &&
10224          "Cannot have both operands of a complex operation be real.");
10225   switch (E->getOpcode()) {
10226   default: return Error(E);
10227   case BO_Add:
10228     if (Result.isComplexFloat()) {
10229       Result.getComplexFloatReal().add(RHS.getComplexFloatReal(),
10230                                        APFloat::rmNearestTiesToEven);
10231       if (LHSReal)
10232         Result.getComplexFloatImag() = RHS.getComplexFloatImag();
10233       else if (!RHSReal)
10234         Result.getComplexFloatImag().add(RHS.getComplexFloatImag(),
10235                                          APFloat::rmNearestTiesToEven);
10236     } else {
10237       Result.getComplexIntReal() += RHS.getComplexIntReal();
10238       Result.getComplexIntImag() += RHS.getComplexIntImag();
10239     }
10240     break;
10241   case BO_Sub:
10242     if (Result.isComplexFloat()) {
10243       Result.getComplexFloatReal().subtract(RHS.getComplexFloatReal(),
10244                                             APFloat::rmNearestTiesToEven);
10245       if (LHSReal) {
10246         Result.getComplexFloatImag() = RHS.getComplexFloatImag();
10247         Result.getComplexFloatImag().changeSign();
10248       } else if (!RHSReal) {
10249         Result.getComplexFloatImag().subtract(RHS.getComplexFloatImag(),
10250                                               APFloat::rmNearestTiesToEven);
10251       }
10252     } else {
10253       Result.getComplexIntReal() -= RHS.getComplexIntReal();
10254       Result.getComplexIntImag() -= RHS.getComplexIntImag();
10255     }
10256     break;
10257   case BO_Mul:
10258     if (Result.isComplexFloat()) {
10259       // This is an implementation of complex multiplication according to the
10260       // constraints laid out in C11 Annex G. The implemention uses the
10261       // following naming scheme:
10262       //   (a + ib) * (c + id)
10263       ComplexValue LHS = Result;
10264       APFloat &A = LHS.getComplexFloatReal();
10265       APFloat &B = LHS.getComplexFloatImag();
10266       APFloat &C = RHS.getComplexFloatReal();
10267       APFloat &D = RHS.getComplexFloatImag();
10268       APFloat &ResR = Result.getComplexFloatReal();
10269       APFloat &ResI = Result.getComplexFloatImag();
10270       if (LHSReal) {
10271         assert(!RHSReal && "Cannot have two real operands for a complex op!");
10272         ResR = A * C;
10273         ResI = A * D;
10274       } else if (RHSReal) {
10275         ResR = C * A;
10276         ResI = C * B;
10277       } else {
10278         // In the fully general case, we need to handle NaNs and infinities
10279         // robustly.
10280         APFloat AC = A * C;
10281         APFloat BD = B * D;
10282         APFloat AD = A * D;
10283         APFloat BC = B * C;
10284         ResR = AC - BD;
10285         ResI = AD + BC;
10286         if (ResR.isNaN() && ResI.isNaN()) {
10287           bool Recalc = false;
10288           if (A.isInfinity() || B.isInfinity()) {
10289             A = APFloat::copySign(
10290                 APFloat(A.getSemantics(), A.isInfinity() ? 1 : 0), A);
10291             B = APFloat::copySign(
10292                 APFloat(B.getSemantics(), B.isInfinity() ? 1 : 0), B);
10293             if (C.isNaN())
10294               C = APFloat::copySign(APFloat(C.getSemantics()), C);
10295             if (D.isNaN())
10296               D = APFloat::copySign(APFloat(D.getSemantics()), D);
10297             Recalc = true;
10298           }
10299           if (C.isInfinity() || D.isInfinity()) {
10300             C = APFloat::copySign(
10301                 APFloat(C.getSemantics(), C.isInfinity() ? 1 : 0), C);
10302             D = APFloat::copySign(
10303                 APFloat(D.getSemantics(), D.isInfinity() ? 1 : 0), D);
10304             if (A.isNaN())
10305               A = APFloat::copySign(APFloat(A.getSemantics()), A);
10306             if (B.isNaN())
10307               B = APFloat::copySign(APFloat(B.getSemantics()), B);
10308             Recalc = true;
10309           }
10310           if (!Recalc && (AC.isInfinity() || BD.isInfinity() ||
10311                           AD.isInfinity() || BC.isInfinity())) {
10312             if (A.isNaN())
10313               A = APFloat::copySign(APFloat(A.getSemantics()), A);
10314             if (B.isNaN())
10315               B = APFloat::copySign(APFloat(B.getSemantics()), B);
10316             if (C.isNaN())
10317               C = APFloat::copySign(APFloat(C.getSemantics()), C);
10318             if (D.isNaN())
10319               D = APFloat::copySign(APFloat(D.getSemantics()), D);
10320             Recalc = true;
10321           }
10322           if (Recalc) {
10323             ResR = APFloat::getInf(A.getSemantics()) * (A * C - B * D);
10324             ResI = APFloat::getInf(A.getSemantics()) * (A * D + B * C);
10325           }
10326         }
10327       }
10328     } else {
10329       ComplexValue LHS = Result;
10330       Result.getComplexIntReal() =
10331         (LHS.getComplexIntReal() * RHS.getComplexIntReal() -
10332          LHS.getComplexIntImag() * RHS.getComplexIntImag());
10333       Result.getComplexIntImag() =
10334         (LHS.getComplexIntReal() * RHS.getComplexIntImag() +
10335          LHS.getComplexIntImag() * RHS.getComplexIntReal());
10336     }
10337     break;
10338   case BO_Div:
10339     if (Result.isComplexFloat()) {
10340       // This is an implementation of complex division according to the
10341       // constraints laid out in C11 Annex G. The implemention uses the
10342       // following naming scheme:
10343       //   (a + ib) / (c + id)
10344       ComplexValue LHS = Result;
10345       APFloat &A = LHS.getComplexFloatReal();
10346       APFloat &B = LHS.getComplexFloatImag();
10347       APFloat &C = RHS.getComplexFloatReal();
10348       APFloat &D = RHS.getComplexFloatImag();
10349       APFloat &ResR = Result.getComplexFloatReal();
10350       APFloat &ResI = Result.getComplexFloatImag();
10351       if (RHSReal) {
10352         ResR = A / C;
10353         ResI = B / C;
10354       } else {
10355         if (LHSReal) {
10356           // No real optimizations we can do here, stub out with zero.
10357           B = APFloat::getZero(A.getSemantics());
10358         }
10359         int DenomLogB = 0;
10360         APFloat MaxCD = maxnum(abs(C), abs(D));
10361         if (MaxCD.isFinite()) {
10362           DenomLogB = ilogb(MaxCD);
10363           C = scalbn(C, -DenomLogB, APFloat::rmNearestTiesToEven);
10364           D = scalbn(D, -DenomLogB, APFloat::rmNearestTiesToEven);
10365         }
10366         APFloat Denom = C * C + D * D;
10367         ResR = scalbn((A * C + B * D) / Denom, -DenomLogB,
10368                       APFloat::rmNearestTiesToEven);
10369         ResI = scalbn((B * C - A * D) / Denom, -DenomLogB,
10370                       APFloat::rmNearestTiesToEven);
10371         if (ResR.isNaN() && ResI.isNaN()) {
10372           if (Denom.isPosZero() && (!A.isNaN() || !B.isNaN())) {
10373             ResR = APFloat::getInf(ResR.getSemantics(), C.isNegative()) * A;
10374             ResI = APFloat::getInf(ResR.getSemantics(), C.isNegative()) * B;
10375           } else if ((A.isInfinity() || B.isInfinity()) && C.isFinite() &&
10376                      D.isFinite()) {
10377             A = APFloat::copySign(
10378                 APFloat(A.getSemantics(), A.isInfinity() ? 1 : 0), A);
10379             B = APFloat::copySign(
10380                 APFloat(B.getSemantics(), B.isInfinity() ? 1 : 0), B);
10381             ResR = APFloat::getInf(ResR.getSemantics()) * (A * C + B * D);
10382             ResI = APFloat::getInf(ResI.getSemantics()) * (B * C - A * D);
10383           } else if (MaxCD.isInfinity() && A.isFinite() && B.isFinite()) {
10384             C = APFloat::copySign(
10385                 APFloat(C.getSemantics(), C.isInfinity() ? 1 : 0), C);
10386             D = APFloat::copySign(
10387                 APFloat(D.getSemantics(), D.isInfinity() ? 1 : 0), D);
10388             ResR = APFloat::getZero(ResR.getSemantics()) * (A * C + B * D);
10389             ResI = APFloat::getZero(ResI.getSemantics()) * (B * C - A * D);
10390           }
10391         }
10392       }
10393     } else {
10394       if (RHS.getComplexIntReal() == 0 && RHS.getComplexIntImag() == 0)
10395         return Error(E, diag::note_expr_divide_by_zero);
10396 
10397       ComplexValue LHS = Result;
10398       APSInt Den = RHS.getComplexIntReal() * RHS.getComplexIntReal() +
10399         RHS.getComplexIntImag() * RHS.getComplexIntImag();
10400       Result.getComplexIntReal() =
10401         (LHS.getComplexIntReal() * RHS.getComplexIntReal() +
10402          LHS.getComplexIntImag() * RHS.getComplexIntImag()) / Den;
10403       Result.getComplexIntImag() =
10404         (LHS.getComplexIntImag() * RHS.getComplexIntReal() -
10405          LHS.getComplexIntReal() * RHS.getComplexIntImag()) / Den;
10406     }
10407     break;
10408   }
10409 
10410   return true;
10411 }
10412 
10413 bool ComplexExprEvaluator::VisitUnaryOperator(const UnaryOperator *E) {
10414   // Get the operand value into 'Result'.
10415   if (!Visit(E->getSubExpr()))
10416     return false;
10417 
10418   switch (E->getOpcode()) {
10419   default:
10420     return Error(E);
10421   case UO_Extension:
10422     return true;
10423   case UO_Plus:
10424     // The result is always just the subexpr.
10425     return true;
10426   case UO_Minus:
10427     if (Result.isComplexFloat()) {
10428       Result.getComplexFloatReal().changeSign();
10429       Result.getComplexFloatImag().changeSign();
10430     }
10431     else {
10432       Result.getComplexIntReal() = -Result.getComplexIntReal();
10433       Result.getComplexIntImag() = -Result.getComplexIntImag();
10434     }
10435     return true;
10436   case UO_Not:
10437     if (Result.isComplexFloat())
10438       Result.getComplexFloatImag().changeSign();
10439     else
10440       Result.getComplexIntImag() = -Result.getComplexIntImag();
10441     return true;
10442   }
10443 }
10444 
10445 bool ComplexExprEvaluator::VisitInitListExpr(const InitListExpr *E) {
10446   if (E->getNumInits() == 2) {
10447     if (E->getType()->isComplexType()) {
10448       Result.makeComplexFloat();
10449       if (!EvaluateFloat(E->getInit(0), Result.FloatReal, Info))
10450         return false;
10451       if (!EvaluateFloat(E->getInit(1), Result.FloatImag, Info))
10452         return false;
10453     } else {
10454       Result.makeComplexInt();
10455       if (!EvaluateInteger(E->getInit(0), Result.IntReal, Info))
10456         return false;
10457       if (!EvaluateInteger(E->getInit(1), Result.IntImag, Info))
10458         return false;
10459     }
10460     return true;
10461   }
10462   return ExprEvaluatorBaseTy::VisitInitListExpr(E);
10463 }
10464 
10465 //===----------------------------------------------------------------------===//
10466 // Atomic expression evaluation, essentially just handling the NonAtomicToAtomic
10467 // implicit conversion.
10468 //===----------------------------------------------------------------------===//
10469 
10470 namespace {
10471 class AtomicExprEvaluator :
10472     public ExprEvaluatorBase<AtomicExprEvaluator> {
10473   const LValue *This;
10474   APValue &Result;
10475 public:
10476   AtomicExprEvaluator(EvalInfo &Info, const LValue *This, APValue &Result)
10477       : ExprEvaluatorBaseTy(Info), This(This), Result(Result) {}
10478 
10479   bool Success(const APValue &V, const Expr *E) {
10480     Result = V;
10481     return true;
10482   }
10483 
10484   bool ZeroInitialization(const Expr *E) {
10485     ImplicitValueInitExpr VIE(
10486         E->getType()->castAs<AtomicType>()->getValueType());
10487     // For atomic-qualified class (and array) types in C++, initialize the
10488     // _Atomic-wrapped subobject directly, in-place.
10489     return This ? EvaluateInPlace(Result, Info, *This, &VIE)
10490                 : Evaluate(Result, Info, &VIE);
10491   }
10492 
10493   bool VisitCastExpr(const CastExpr *E) {
10494     switch (E->getCastKind()) {
10495     default:
10496       return ExprEvaluatorBaseTy::VisitCastExpr(E);
10497     case CK_NonAtomicToAtomic:
10498       return This ? EvaluateInPlace(Result, Info, *This, E->getSubExpr())
10499                   : Evaluate(Result, Info, E->getSubExpr());
10500     }
10501   }
10502 };
10503 } // end anonymous namespace
10504 
10505 static bool EvaluateAtomic(const Expr *E, const LValue *This, APValue &Result,
10506                            EvalInfo &Info) {
10507   assert(E->isRValue() && E->getType()->isAtomicType());
10508   return AtomicExprEvaluator(Info, This, Result).Visit(E);
10509 }
10510 
10511 //===----------------------------------------------------------------------===//
10512 // Void expression evaluation, primarily for a cast to void on the LHS of a
10513 // comma operator
10514 //===----------------------------------------------------------------------===//
10515 
10516 namespace {
10517 class VoidExprEvaluator
10518   : public ExprEvaluatorBase<VoidExprEvaluator> {
10519 public:
10520   VoidExprEvaluator(EvalInfo &Info) : ExprEvaluatorBaseTy(Info) {}
10521 
10522   bool Success(const APValue &V, const Expr *e) { return true; }
10523 
10524   bool ZeroInitialization(const Expr *E) { return true; }
10525 
10526   bool VisitCastExpr(const CastExpr *E) {
10527     switch (E->getCastKind()) {
10528     default:
10529       return ExprEvaluatorBaseTy::VisitCastExpr(E);
10530     case CK_ToVoid:
10531       VisitIgnoredValue(E->getSubExpr());
10532       return true;
10533     }
10534   }
10535 
10536   bool VisitCallExpr(const CallExpr *E) {
10537     switch (E->getBuiltinCallee()) {
10538     default:
10539       return ExprEvaluatorBaseTy::VisitCallExpr(E);
10540     case Builtin::BI__assume:
10541     case Builtin::BI__builtin_assume:
10542       // The argument is not evaluated!
10543       return true;
10544     }
10545   }
10546 };
10547 } // end anonymous namespace
10548 
10549 static bool EvaluateVoid(const Expr *E, EvalInfo &Info) {
10550   assert(E->isRValue() && E->getType()->isVoidType());
10551   return VoidExprEvaluator(Info).Visit(E);
10552 }
10553 
10554 //===----------------------------------------------------------------------===//
10555 // Top level Expr::EvaluateAsRValue method.
10556 //===----------------------------------------------------------------------===//
10557 
10558 static bool Evaluate(APValue &Result, EvalInfo &Info, const Expr *E) {
10559   // In C, function designators are not lvalues, but we evaluate them as if they
10560   // are.
10561   QualType T = E->getType();
10562   if (E->isGLValue() || T->isFunctionType()) {
10563     LValue LV;
10564     if (!EvaluateLValue(E, LV, Info))
10565       return false;
10566     LV.moveInto(Result);
10567   } else if (T->isVectorType()) {
10568     if (!EvaluateVector(E, Result, Info))
10569       return false;
10570   } else if (T->isIntegralOrEnumerationType()) {
10571     if (!IntExprEvaluator(Info, Result).Visit(E))
10572       return false;
10573   } else if (T->hasPointerRepresentation()) {
10574     LValue LV;
10575     if (!EvaluatePointer(E, LV, Info))
10576       return false;
10577     LV.moveInto(Result);
10578   } else if (T->isRealFloatingType()) {
10579     llvm::APFloat F(0.0);
10580     if (!EvaluateFloat(E, F, Info))
10581       return false;
10582     Result = APValue(F);
10583   } else if (T->isAnyComplexType()) {
10584     ComplexValue C;
10585     if (!EvaluateComplex(E, C, Info))
10586       return false;
10587     C.moveInto(Result);
10588   } else if (T->isFixedPointType()) {
10589     if (!FixedPointExprEvaluator(Info, Result).Visit(E)) return false;
10590   } else if (T->isMemberPointerType()) {
10591     MemberPtr P;
10592     if (!EvaluateMemberPointer(E, P, Info))
10593       return false;
10594     P.moveInto(Result);
10595     return true;
10596   } else if (T->isArrayType()) {
10597     LValue LV;
10598     APValue &Value = createTemporary(E, false, LV, *Info.CurrentCall);
10599     if (!EvaluateArray(E, LV, Value, Info))
10600       return false;
10601     Result = Value;
10602   } else if (T->isRecordType()) {
10603     LValue LV;
10604     APValue &Value = createTemporary(E, false, LV, *Info.CurrentCall);
10605     if (!EvaluateRecord(E, LV, Value, Info))
10606       return false;
10607     Result = Value;
10608   } else if (T->isVoidType()) {
10609     if (!Info.getLangOpts().CPlusPlus11)
10610       Info.CCEDiag(E, diag::note_constexpr_nonliteral)
10611         << E->getType();
10612     if (!EvaluateVoid(E, Info))
10613       return false;
10614   } else if (T->isAtomicType()) {
10615     QualType Unqual = T.getAtomicUnqualifiedType();
10616     if (Unqual->isArrayType() || Unqual->isRecordType()) {
10617       LValue LV;
10618       APValue &Value = createTemporary(E, false, LV, *Info.CurrentCall);
10619       if (!EvaluateAtomic(E, &LV, Value, Info))
10620         return false;
10621     } else {
10622       if (!EvaluateAtomic(E, nullptr, Result, Info))
10623         return false;
10624     }
10625   } else if (Info.getLangOpts().CPlusPlus11) {
10626     Info.FFDiag(E, diag::note_constexpr_nonliteral) << E->getType();
10627     return false;
10628   } else {
10629     Info.FFDiag(E, diag::note_invalid_subexpr_in_const_expr);
10630     return false;
10631   }
10632 
10633   return true;
10634 }
10635 
10636 /// EvaluateInPlace - Evaluate an expression in-place in an APValue. In some
10637 /// cases, the in-place evaluation is essential, since later initializers for
10638 /// an object can indirectly refer to subobjects which were initialized earlier.
10639 static bool EvaluateInPlace(APValue &Result, EvalInfo &Info, const LValue &This,
10640                             const Expr *E, bool AllowNonLiteralTypes) {
10641   assert(!E->isValueDependent());
10642 
10643   if (!AllowNonLiteralTypes && !CheckLiteralType(Info, E, &This))
10644     return false;
10645 
10646   if (E->isRValue()) {
10647     // Evaluate arrays and record types in-place, so that later initializers can
10648     // refer to earlier-initialized members of the object.
10649     QualType T = E->getType();
10650     if (T->isArrayType())
10651       return EvaluateArray(E, This, Result, Info);
10652     else if (T->isRecordType())
10653       return EvaluateRecord(E, This, Result, Info);
10654     else if (T->isAtomicType()) {
10655       QualType Unqual = T.getAtomicUnqualifiedType();
10656       if (Unqual->isArrayType() || Unqual->isRecordType())
10657         return EvaluateAtomic(E, &This, Result, Info);
10658     }
10659   }
10660 
10661   // For any other type, in-place evaluation is unimportant.
10662   return Evaluate(Result, Info, E);
10663 }
10664 
10665 /// EvaluateAsRValue - Try to evaluate this expression, performing an implicit
10666 /// lvalue-to-rvalue cast if it is an lvalue.
10667 static bool EvaluateAsRValue(EvalInfo &Info, const Expr *E, APValue &Result) {
10668   if (E->getType().isNull())
10669     return false;
10670 
10671   if (!CheckLiteralType(Info, E))
10672     return false;
10673 
10674   if (!::Evaluate(Result, Info, E))
10675     return false;
10676 
10677   if (E->isGLValue()) {
10678     LValue LV;
10679     LV.setFrom(Info.Ctx, Result);
10680     if (!handleLValueToRValueConversion(Info, E, E->getType(), LV, Result))
10681       return false;
10682   }
10683 
10684   // Check this core constant expression is a constant expression.
10685   return CheckConstantExpression(Info, E->getExprLoc(), E->getType(), Result);
10686 }
10687 
10688 static bool FastEvaluateAsRValue(const Expr *Exp, Expr::EvalResult &Result,
10689                                  const ASTContext &Ctx, bool &IsConst) {
10690   // Fast-path evaluations of integer literals, since we sometimes see files
10691   // containing vast quantities of these.
10692   if (const IntegerLiteral *L = dyn_cast<IntegerLiteral>(Exp)) {
10693     Result.Val = APValue(APSInt(L->getValue(),
10694                                 L->getType()->isUnsignedIntegerType()));
10695     IsConst = true;
10696     return true;
10697   }
10698 
10699   // This case should be rare, but we need to check it before we check on
10700   // the type below.
10701   if (Exp->getType().isNull()) {
10702     IsConst = false;
10703     return true;
10704   }
10705 
10706   // FIXME: Evaluating values of large array and record types can cause
10707   // performance problems. Only do so in C++11 for now.
10708   if (Exp->isRValue() && (Exp->getType()->isArrayType() ||
10709                           Exp->getType()->isRecordType()) &&
10710       !Ctx.getLangOpts().CPlusPlus11) {
10711     IsConst = false;
10712     return true;
10713   }
10714   return false;
10715 }
10716 
10717 
10718 /// EvaluateAsRValue - Return true if this is a constant which we can fold using
10719 /// any crazy technique (that has nothing to do with language standards) that
10720 /// we want to.  If this function returns true, it returns the folded constant
10721 /// in Result. If this expression is a glvalue, an lvalue-to-rvalue conversion
10722 /// will be applied to the result.
10723 bool Expr::EvaluateAsRValue(EvalResult &Result, const ASTContext &Ctx) const {
10724   bool IsConst;
10725   if (FastEvaluateAsRValue(this, Result, Ctx, IsConst))
10726     return IsConst;
10727 
10728   EvalInfo Info(Ctx, Result, EvalInfo::EM_IgnoreSideEffects);
10729   return ::EvaluateAsRValue(Info, this, Result.Val);
10730 }
10731 
10732 bool Expr::EvaluateAsBooleanCondition(bool &Result,
10733                                       const ASTContext &Ctx) const {
10734   EvalResult Scratch;
10735   return EvaluateAsRValue(Scratch, Ctx) &&
10736          HandleConversionToBool(Scratch.Val, Result);
10737 }
10738 
10739 static bool hasUnacceptableSideEffect(Expr::EvalStatus &Result,
10740                                       Expr::SideEffectsKind SEK) {
10741   return (SEK < Expr::SE_AllowSideEffects && Result.HasSideEffects) ||
10742          (SEK < Expr::SE_AllowUndefinedBehavior && Result.HasUndefinedBehavior);
10743 }
10744 
10745 bool Expr::EvaluateAsInt(APSInt &Result, const ASTContext &Ctx,
10746                          SideEffectsKind AllowSideEffects) const {
10747   if (!getType()->isIntegralOrEnumerationType())
10748     return false;
10749 
10750   EvalResult ExprResult;
10751   if (!EvaluateAsRValue(ExprResult, Ctx) || !ExprResult.Val.isInt() ||
10752       hasUnacceptableSideEffect(ExprResult, AllowSideEffects))
10753     return false;
10754 
10755   Result = ExprResult.Val.getInt();
10756   return true;
10757 }
10758 
10759 bool Expr::EvaluateAsFloat(APFloat &Result, const ASTContext &Ctx,
10760                            SideEffectsKind AllowSideEffects) const {
10761   if (!getType()->isRealFloatingType())
10762     return false;
10763 
10764   EvalResult ExprResult;
10765   if (!EvaluateAsRValue(ExprResult, Ctx) || !ExprResult.Val.isFloat() ||
10766       hasUnacceptableSideEffect(ExprResult, AllowSideEffects))
10767     return false;
10768 
10769   Result = ExprResult.Val.getFloat();
10770   return true;
10771 }
10772 
10773 bool Expr::EvaluateAsLValue(EvalResult &Result, const ASTContext &Ctx) const {
10774   EvalInfo Info(Ctx, Result, EvalInfo::EM_ConstantFold);
10775 
10776   LValue LV;
10777   if (!EvaluateLValue(this, LV, Info) || Result.HasSideEffects ||
10778       !CheckLValueConstantExpression(Info, getExprLoc(),
10779                                      Ctx.getLValueReferenceType(getType()), LV,
10780                                      Expr::EvaluateForCodeGen))
10781     return false;
10782 
10783   LV.moveInto(Result.Val);
10784   return true;
10785 }
10786 
10787 bool Expr::EvaluateAsConstantExpr(EvalResult &Result, ConstExprUsage Usage,
10788                                   const ASTContext &Ctx) const {
10789   EvalInfo::EvaluationMode EM = EvalInfo::EM_ConstantExpression;
10790   EvalInfo Info(Ctx, Result, EM);
10791   if (!::Evaluate(Result.Val, Info, this))
10792     return false;
10793 
10794   return CheckConstantExpression(Info, getExprLoc(), getType(), Result.Val,
10795                                  Usage);
10796 }
10797 
10798 bool Expr::EvaluateAsInitializer(APValue &Value, const ASTContext &Ctx,
10799                                  const VarDecl *VD,
10800                             SmallVectorImpl<PartialDiagnosticAt> &Notes) const {
10801   // FIXME: Evaluating initializers for large array and record types can cause
10802   // performance problems. Only do so in C++11 for now.
10803   if (isRValue() && (getType()->isArrayType() || getType()->isRecordType()) &&
10804       !Ctx.getLangOpts().CPlusPlus11)
10805     return false;
10806 
10807   Expr::EvalStatus EStatus;
10808   EStatus.Diag = &Notes;
10809 
10810   EvalInfo InitInfo(Ctx, EStatus, VD->isConstexpr()
10811                                       ? EvalInfo::EM_ConstantExpression
10812                                       : EvalInfo::EM_ConstantFold);
10813   InitInfo.setEvaluatingDecl(VD, Value);
10814 
10815   LValue LVal;
10816   LVal.set(VD);
10817 
10818   // C++11 [basic.start.init]p2:
10819   //  Variables with static storage duration or thread storage duration shall be
10820   //  zero-initialized before any other initialization takes place.
10821   // This behavior is not present in C.
10822   if (Ctx.getLangOpts().CPlusPlus && !VD->hasLocalStorage() &&
10823       !VD->getType()->isReferenceType()) {
10824     ImplicitValueInitExpr VIE(VD->getType());
10825     if (!EvaluateInPlace(Value, InitInfo, LVal, &VIE,
10826                          /*AllowNonLiteralTypes=*/true))
10827       return false;
10828   }
10829 
10830   if (!EvaluateInPlace(Value, InitInfo, LVal, this,
10831                        /*AllowNonLiteralTypes=*/true) ||
10832       EStatus.HasSideEffects)
10833     return false;
10834 
10835   return CheckConstantExpression(InitInfo, VD->getLocation(), VD->getType(),
10836                                  Value);
10837 }
10838 
10839 /// isEvaluatable - Call EvaluateAsRValue to see if this expression can be
10840 /// constant folded, but discard the result.
10841 bool Expr::isEvaluatable(const ASTContext &Ctx, SideEffectsKind SEK) const {
10842   EvalResult Result;
10843   return EvaluateAsRValue(Result, Ctx) &&
10844          !hasUnacceptableSideEffect(Result, SEK);
10845 }
10846 
10847 APSInt Expr::EvaluateKnownConstInt(const ASTContext &Ctx,
10848                     SmallVectorImpl<PartialDiagnosticAt> *Diag) const {
10849   EvalResult EvalResult;
10850   EvalResult.Diag = Diag;
10851   bool Result = EvaluateAsRValue(EvalResult, Ctx);
10852   (void)Result;
10853   assert(Result && "Could not evaluate expression");
10854   assert(EvalResult.Val.isInt() && "Expression did not evaluate to integer");
10855 
10856   return EvalResult.Val.getInt();
10857 }
10858 
10859 void Expr::EvaluateForOverflow(const ASTContext &Ctx) const {
10860   bool IsConst;
10861   EvalResult EvalResult;
10862   if (!FastEvaluateAsRValue(this, EvalResult, Ctx, IsConst)) {
10863     EvalInfo Info(Ctx, EvalResult, EvalInfo::EM_EvaluateForOverflow);
10864     (void)::EvaluateAsRValue(Info, this, EvalResult.Val);
10865   }
10866 }
10867 
10868 bool Expr::EvalResult::isGlobalLValue() const {
10869   assert(Val.isLValue());
10870   return IsGlobalLValue(Val.getLValueBase());
10871 }
10872 
10873 
10874 /// isIntegerConstantExpr - this recursive routine will test if an expression is
10875 /// an integer constant expression.
10876 
10877 /// FIXME: Pass up a reason why! Invalid operation in i-c-e, division by zero,
10878 /// comma, etc
10879 
10880 // CheckICE - This function does the fundamental ICE checking: the returned
10881 // ICEDiag contains an ICEKind indicating whether the expression is an ICE,
10882 // and a (possibly null) SourceLocation indicating the location of the problem.
10883 //
10884 // Note that to reduce code duplication, this helper does no evaluation
10885 // itself; the caller checks whether the expression is evaluatable, and
10886 // in the rare cases where CheckICE actually cares about the evaluated
10887 // value, it calls into Evaluate.
10888 
10889 namespace {
10890 
10891 enum ICEKind {
10892   /// This expression is an ICE.
10893   IK_ICE,
10894   /// This expression is not an ICE, but if it isn't evaluated, it's
10895   /// a legal subexpression for an ICE. This return value is used to handle
10896   /// the comma operator in C99 mode, and non-constant subexpressions.
10897   IK_ICEIfUnevaluated,
10898   /// This expression is not an ICE, and is not a legal subexpression for one.
10899   IK_NotICE
10900 };
10901 
10902 struct ICEDiag {
10903   ICEKind Kind;
10904   SourceLocation Loc;
10905 
10906   ICEDiag(ICEKind IK, SourceLocation l) : Kind(IK), Loc(l) {}
10907 };
10908 
10909 }
10910 
10911 static ICEDiag NoDiag() { return ICEDiag(IK_ICE, SourceLocation()); }
10912 
10913 static ICEDiag Worst(ICEDiag A, ICEDiag B) { return A.Kind >= B.Kind ? A : B; }
10914 
10915 static ICEDiag CheckEvalInICE(const Expr* E, const ASTContext &Ctx) {
10916   Expr::EvalResult EVResult;
10917   if (!E->EvaluateAsRValue(EVResult, Ctx) || EVResult.HasSideEffects ||
10918       !EVResult.Val.isInt())
10919     return ICEDiag(IK_NotICE, E->getBeginLoc());
10920 
10921   return NoDiag();
10922 }
10923 
10924 static ICEDiag CheckICE(const Expr* E, const ASTContext &Ctx) {
10925   assert(!E->isValueDependent() && "Should not see value dependent exprs!");
10926   if (!E->getType()->isIntegralOrEnumerationType())
10927     return ICEDiag(IK_NotICE, E->getBeginLoc());
10928 
10929   switch (E->getStmtClass()) {
10930 #define ABSTRACT_STMT(Node)
10931 #define STMT(Node, Base) case Expr::Node##Class:
10932 #define EXPR(Node, Base)
10933 #include "clang/AST/StmtNodes.inc"
10934   case Expr::PredefinedExprClass:
10935   case Expr::FloatingLiteralClass:
10936   case Expr::ImaginaryLiteralClass:
10937   case Expr::StringLiteralClass:
10938   case Expr::ArraySubscriptExprClass:
10939   case Expr::OMPArraySectionExprClass:
10940   case Expr::MemberExprClass:
10941   case Expr::CompoundAssignOperatorClass:
10942   case Expr::CompoundLiteralExprClass:
10943   case Expr::ExtVectorElementExprClass:
10944   case Expr::DesignatedInitExprClass:
10945   case Expr::ArrayInitLoopExprClass:
10946   case Expr::ArrayInitIndexExprClass:
10947   case Expr::NoInitExprClass:
10948   case Expr::DesignatedInitUpdateExprClass:
10949   case Expr::ImplicitValueInitExprClass:
10950   case Expr::ParenListExprClass:
10951   case Expr::VAArgExprClass:
10952   case Expr::AddrLabelExprClass:
10953   case Expr::StmtExprClass:
10954   case Expr::CXXMemberCallExprClass:
10955   case Expr::CUDAKernelCallExprClass:
10956   case Expr::CXXDynamicCastExprClass:
10957   case Expr::CXXTypeidExprClass:
10958   case Expr::CXXUuidofExprClass:
10959   case Expr::MSPropertyRefExprClass:
10960   case Expr::MSPropertySubscriptExprClass:
10961   case Expr::CXXNullPtrLiteralExprClass:
10962   case Expr::UserDefinedLiteralClass:
10963   case Expr::CXXThisExprClass:
10964   case Expr::CXXThrowExprClass:
10965   case Expr::CXXNewExprClass:
10966   case Expr::CXXDeleteExprClass:
10967   case Expr::CXXPseudoDestructorExprClass:
10968   case Expr::UnresolvedLookupExprClass:
10969   case Expr::TypoExprClass:
10970   case Expr::DependentScopeDeclRefExprClass:
10971   case Expr::CXXConstructExprClass:
10972   case Expr::CXXInheritedCtorInitExprClass:
10973   case Expr::CXXStdInitializerListExprClass:
10974   case Expr::CXXBindTemporaryExprClass:
10975   case Expr::ExprWithCleanupsClass:
10976   case Expr::CXXTemporaryObjectExprClass:
10977   case Expr::CXXUnresolvedConstructExprClass:
10978   case Expr::CXXDependentScopeMemberExprClass:
10979   case Expr::UnresolvedMemberExprClass:
10980   case Expr::ObjCStringLiteralClass:
10981   case Expr::ObjCBoxedExprClass:
10982   case Expr::ObjCArrayLiteralClass:
10983   case Expr::ObjCDictionaryLiteralClass:
10984   case Expr::ObjCEncodeExprClass:
10985   case Expr::ObjCMessageExprClass:
10986   case Expr::ObjCSelectorExprClass:
10987   case Expr::ObjCProtocolExprClass:
10988   case Expr::ObjCIvarRefExprClass:
10989   case Expr::ObjCPropertyRefExprClass:
10990   case Expr::ObjCSubscriptRefExprClass:
10991   case Expr::ObjCIsaExprClass:
10992   case Expr::ObjCAvailabilityCheckExprClass:
10993   case Expr::ShuffleVectorExprClass:
10994   case Expr::ConvertVectorExprClass:
10995   case Expr::BlockExprClass:
10996   case Expr::NoStmtClass:
10997   case Expr::OpaqueValueExprClass:
10998   case Expr::PackExpansionExprClass:
10999   case Expr::SubstNonTypeTemplateParmPackExprClass:
11000   case Expr::FunctionParmPackExprClass:
11001   case Expr::AsTypeExprClass:
11002   case Expr::ObjCIndirectCopyRestoreExprClass:
11003   case Expr::MaterializeTemporaryExprClass:
11004   case Expr::PseudoObjectExprClass:
11005   case Expr::AtomicExprClass:
11006   case Expr::LambdaExprClass:
11007   case Expr::CXXFoldExprClass:
11008   case Expr::CoawaitExprClass:
11009   case Expr::DependentCoawaitExprClass:
11010   case Expr::CoyieldExprClass:
11011     return ICEDiag(IK_NotICE, E->getBeginLoc());
11012 
11013   case Expr::InitListExprClass: {
11014     // C++03 [dcl.init]p13: If T is a scalar type, then a declaration of the
11015     // form "T x = { a };" is equivalent to "T x = a;".
11016     // Unless we're initializing a reference, T is a scalar as it is known to be
11017     // of integral or enumeration type.
11018     if (E->isRValue())
11019       if (cast<InitListExpr>(E)->getNumInits() == 1)
11020         return CheckICE(cast<InitListExpr>(E)->getInit(0), Ctx);
11021     return ICEDiag(IK_NotICE, E->getBeginLoc());
11022   }
11023 
11024   case Expr::SizeOfPackExprClass:
11025   case Expr::GNUNullExprClass:
11026     // GCC considers the GNU __null value to be an integral constant expression.
11027     return NoDiag();
11028 
11029   case Expr::SubstNonTypeTemplateParmExprClass:
11030     return
11031       CheckICE(cast<SubstNonTypeTemplateParmExpr>(E)->getReplacement(), Ctx);
11032 
11033   case Expr::ParenExprClass:
11034     return CheckICE(cast<ParenExpr>(E)->getSubExpr(), Ctx);
11035   case Expr::GenericSelectionExprClass:
11036     return CheckICE(cast<GenericSelectionExpr>(E)->getResultExpr(), Ctx);
11037   case Expr::IntegerLiteralClass:
11038   case Expr::FixedPointLiteralClass:
11039   case Expr::CharacterLiteralClass:
11040   case Expr::ObjCBoolLiteralExprClass:
11041   case Expr::CXXBoolLiteralExprClass:
11042   case Expr::CXXScalarValueInitExprClass:
11043   case Expr::TypeTraitExprClass:
11044   case Expr::ArrayTypeTraitExprClass:
11045   case Expr::ExpressionTraitExprClass:
11046   case Expr::CXXNoexceptExprClass:
11047     return NoDiag();
11048   case Expr::CallExprClass:
11049   case Expr::CXXOperatorCallExprClass: {
11050     // C99 6.6/3 allows function calls within unevaluated subexpressions of
11051     // constant expressions, but they can never be ICEs because an ICE cannot
11052     // contain an operand of (pointer to) function type.
11053     const CallExpr *CE = cast<CallExpr>(E);
11054     if (CE->getBuiltinCallee())
11055       return CheckEvalInICE(E, Ctx);
11056     return ICEDiag(IK_NotICE, E->getBeginLoc());
11057   }
11058   case Expr::DeclRefExprClass: {
11059     if (isa<EnumConstantDecl>(cast<DeclRefExpr>(E)->getDecl()))
11060       return NoDiag();
11061     const ValueDecl *D = cast<DeclRefExpr>(E)->getDecl();
11062     if (Ctx.getLangOpts().CPlusPlus &&
11063         D && IsConstNonVolatile(D->getType())) {
11064       // Parameter variables are never constants.  Without this check,
11065       // getAnyInitializer() can find a default argument, which leads
11066       // to chaos.
11067       if (isa<ParmVarDecl>(D))
11068         return ICEDiag(IK_NotICE, cast<DeclRefExpr>(E)->getLocation());
11069 
11070       // C++ 7.1.5.1p2
11071       //   A variable of non-volatile const-qualified integral or enumeration
11072       //   type initialized by an ICE can be used in ICEs.
11073       if (const VarDecl *Dcl = dyn_cast<VarDecl>(D)) {
11074         if (!Dcl->getType()->isIntegralOrEnumerationType())
11075           return ICEDiag(IK_NotICE, cast<DeclRefExpr>(E)->getLocation());
11076 
11077         const VarDecl *VD;
11078         // Look for a declaration of this variable that has an initializer, and
11079         // check whether it is an ICE.
11080         if (Dcl->getAnyInitializer(VD) && VD->checkInitIsICE())
11081           return NoDiag();
11082         else
11083           return ICEDiag(IK_NotICE, cast<DeclRefExpr>(E)->getLocation());
11084       }
11085     }
11086     return ICEDiag(IK_NotICE, E->getBeginLoc());
11087   }
11088   case Expr::UnaryOperatorClass: {
11089     const UnaryOperator *Exp = cast<UnaryOperator>(E);
11090     switch (Exp->getOpcode()) {
11091     case UO_PostInc:
11092     case UO_PostDec:
11093     case UO_PreInc:
11094     case UO_PreDec:
11095     case UO_AddrOf:
11096     case UO_Deref:
11097     case UO_Coawait:
11098       // C99 6.6/3 allows increment and decrement within unevaluated
11099       // subexpressions of constant expressions, but they can never be ICEs
11100       // because an ICE cannot contain an lvalue operand.
11101       return ICEDiag(IK_NotICE, E->getBeginLoc());
11102     case UO_Extension:
11103     case UO_LNot:
11104     case UO_Plus:
11105     case UO_Minus:
11106     case UO_Not:
11107     case UO_Real:
11108     case UO_Imag:
11109       return CheckICE(Exp->getSubExpr(), Ctx);
11110     }
11111 
11112     // OffsetOf falls through here.
11113     LLVM_FALLTHROUGH;
11114   }
11115   case Expr::OffsetOfExprClass: {
11116     // Note that per C99, offsetof must be an ICE. And AFAIK, using
11117     // EvaluateAsRValue matches the proposed gcc behavior for cases like
11118     // "offsetof(struct s{int x[4];}, x[1.0])".  This doesn't affect
11119     // compliance: we should warn earlier for offsetof expressions with
11120     // array subscripts that aren't ICEs, and if the array subscripts
11121     // are ICEs, the value of the offsetof must be an integer constant.
11122     return CheckEvalInICE(E, Ctx);
11123   }
11124   case Expr::UnaryExprOrTypeTraitExprClass: {
11125     const UnaryExprOrTypeTraitExpr *Exp = cast<UnaryExprOrTypeTraitExpr>(E);
11126     if ((Exp->getKind() ==  UETT_SizeOf) &&
11127         Exp->getTypeOfArgument()->isVariableArrayType())
11128       return ICEDiag(IK_NotICE, E->getBeginLoc());
11129     return NoDiag();
11130   }
11131   case Expr::BinaryOperatorClass: {
11132     const BinaryOperator *Exp = cast<BinaryOperator>(E);
11133     switch (Exp->getOpcode()) {
11134     case BO_PtrMemD:
11135     case BO_PtrMemI:
11136     case BO_Assign:
11137     case BO_MulAssign:
11138     case BO_DivAssign:
11139     case BO_RemAssign:
11140     case BO_AddAssign:
11141     case BO_SubAssign:
11142     case BO_ShlAssign:
11143     case BO_ShrAssign:
11144     case BO_AndAssign:
11145     case BO_XorAssign:
11146     case BO_OrAssign:
11147       // C99 6.6/3 allows assignments within unevaluated subexpressions of
11148       // constant expressions, but they can never be ICEs because an ICE cannot
11149       // contain an lvalue operand.
11150       return ICEDiag(IK_NotICE, E->getBeginLoc());
11151 
11152     case BO_Mul:
11153     case BO_Div:
11154     case BO_Rem:
11155     case BO_Add:
11156     case BO_Sub:
11157     case BO_Shl:
11158     case BO_Shr:
11159     case BO_LT:
11160     case BO_GT:
11161     case BO_LE:
11162     case BO_GE:
11163     case BO_EQ:
11164     case BO_NE:
11165     case BO_And:
11166     case BO_Xor:
11167     case BO_Or:
11168     case BO_Comma:
11169     case BO_Cmp: {
11170       ICEDiag LHSResult = CheckICE(Exp->getLHS(), Ctx);
11171       ICEDiag RHSResult = CheckICE(Exp->getRHS(), Ctx);
11172       if (Exp->getOpcode() == BO_Div ||
11173           Exp->getOpcode() == BO_Rem) {
11174         // EvaluateAsRValue gives an error for undefined Div/Rem, so make sure
11175         // we don't evaluate one.
11176         if (LHSResult.Kind == IK_ICE && RHSResult.Kind == IK_ICE) {
11177           llvm::APSInt REval = Exp->getRHS()->EvaluateKnownConstInt(Ctx);
11178           if (REval == 0)
11179             return ICEDiag(IK_ICEIfUnevaluated, E->getBeginLoc());
11180           if (REval.isSigned() && REval.isAllOnesValue()) {
11181             llvm::APSInt LEval = Exp->getLHS()->EvaluateKnownConstInt(Ctx);
11182             if (LEval.isMinSignedValue())
11183               return ICEDiag(IK_ICEIfUnevaluated, E->getBeginLoc());
11184           }
11185         }
11186       }
11187       if (Exp->getOpcode() == BO_Comma) {
11188         if (Ctx.getLangOpts().C99) {
11189           // C99 6.6p3 introduces a strange edge case: comma can be in an ICE
11190           // if it isn't evaluated.
11191           if (LHSResult.Kind == IK_ICE && RHSResult.Kind == IK_ICE)
11192             return ICEDiag(IK_ICEIfUnevaluated, E->getBeginLoc());
11193         } else {
11194           // In both C89 and C++, commas in ICEs are illegal.
11195           return ICEDiag(IK_NotICE, E->getBeginLoc());
11196         }
11197       }
11198       return Worst(LHSResult, RHSResult);
11199     }
11200     case BO_LAnd:
11201     case BO_LOr: {
11202       ICEDiag LHSResult = CheckICE(Exp->getLHS(), Ctx);
11203       ICEDiag RHSResult = CheckICE(Exp->getRHS(), Ctx);
11204       if (LHSResult.Kind == IK_ICE && RHSResult.Kind == IK_ICEIfUnevaluated) {
11205         // Rare case where the RHS has a comma "side-effect"; we need
11206         // to actually check the condition to see whether the side
11207         // with the comma is evaluated.
11208         if ((Exp->getOpcode() == BO_LAnd) !=
11209             (Exp->getLHS()->EvaluateKnownConstInt(Ctx) == 0))
11210           return RHSResult;
11211         return NoDiag();
11212       }
11213 
11214       return Worst(LHSResult, RHSResult);
11215     }
11216     }
11217     LLVM_FALLTHROUGH;
11218   }
11219   case Expr::ImplicitCastExprClass:
11220   case Expr::CStyleCastExprClass:
11221   case Expr::CXXFunctionalCastExprClass:
11222   case Expr::CXXStaticCastExprClass:
11223   case Expr::CXXReinterpretCastExprClass:
11224   case Expr::CXXConstCastExprClass:
11225   case Expr::ObjCBridgedCastExprClass: {
11226     const Expr *SubExpr = cast<CastExpr>(E)->getSubExpr();
11227     if (isa<ExplicitCastExpr>(E)) {
11228       if (const FloatingLiteral *FL
11229             = dyn_cast<FloatingLiteral>(SubExpr->IgnoreParenImpCasts())) {
11230         unsigned DestWidth = Ctx.getIntWidth(E->getType());
11231         bool DestSigned = E->getType()->isSignedIntegerOrEnumerationType();
11232         APSInt IgnoredVal(DestWidth, !DestSigned);
11233         bool Ignored;
11234         // If the value does not fit in the destination type, the behavior is
11235         // undefined, so we are not required to treat it as a constant
11236         // expression.
11237         if (FL->getValue().convertToInteger(IgnoredVal,
11238                                             llvm::APFloat::rmTowardZero,
11239                                             &Ignored) & APFloat::opInvalidOp)
11240           return ICEDiag(IK_NotICE, E->getBeginLoc());
11241         return NoDiag();
11242       }
11243     }
11244     switch (cast<CastExpr>(E)->getCastKind()) {
11245     case CK_LValueToRValue:
11246     case CK_AtomicToNonAtomic:
11247     case CK_NonAtomicToAtomic:
11248     case CK_NoOp:
11249     case CK_IntegralToBoolean:
11250     case CK_IntegralCast:
11251       return CheckICE(SubExpr, Ctx);
11252     default:
11253       return ICEDiag(IK_NotICE, E->getBeginLoc());
11254     }
11255   }
11256   case Expr::BinaryConditionalOperatorClass: {
11257     const BinaryConditionalOperator *Exp = cast<BinaryConditionalOperator>(E);
11258     ICEDiag CommonResult = CheckICE(Exp->getCommon(), Ctx);
11259     if (CommonResult.Kind == IK_NotICE) return CommonResult;
11260     ICEDiag FalseResult = CheckICE(Exp->getFalseExpr(), Ctx);
11261     if (FalseResult.Kind == IK_NotICE) return FalseResult;
11262     if (CommonResult.Kind == IK_ICEIfUnevaluated) return CommonResult;
11263     if (FalseResult.Kind == IK_ICEIfUnevaluated &&
11264         Exp->getCommon()->EvaluateKnownConstInt(Ctx) != 0) return NoDiag();
11265     return FalseResult;
11266   }
11267   case Expr::ConditionalOperatorClass: {
11268     const ConditionalOperator *Exp = cast<ConditionalOperator>(E);
11269     // If the condition (ignoring parens) is a __builtin_constant_p call,
11270     // then only the true side is actually considered in an integer constant
11271     // expression, and it is fully evaluated.  This is an important GNU
11272     // extension.  See GCC PR38377 for discussion.
11273     if (const CallExpr *CallCE
11274         = dyn_cast<CallExpr>(Exp->getCond()->IgnoreParenCasts()))
11275       if (CallCE->getBuiltinCallee() == Builtin::BI__builtin_constant_p)
11276         return CheckEvalInICE(E, Ctx);
11277     ICEDiag CondResult = CheckICE(Exp->getCond(), Ctx);
11278     if (CondResult.Kind == IK_NotICE)
11279       return CondResult;
11280 
11281     ICEDiag TrueResult = CheckICE(Exp->getTrueExpr(), Ctx);
11282     ICEDiag FalseResult = CheckICE(Exp->getFalseExpr(), Ctx);
11283 
11284     if (TrueResult.Kind == IK_NotICE)
11285       return TrueResult;
11286     if (FalseResult.Kind == IK_NotICE)
11287       return FalseResult;
11288     if (CondResult.Kind == IK_ICEIfUnevaluated)
11289       return CondResult;
11290     if (TrueResult.Kind == IK_ICE && FalseResult.Kind == IK_ICE)
11291       return NoDiag();
11292     // Rare case where the diagnostics depend on which side is evaluated
11293     // Note that if we get here, CondResult is 0, and at least one of
11294     // TrueResult and FalseResult is non-zero.
11295     if (Exp->getCond()->EvaluateKnownConstInt(Ctx) == 0)
11296       return FalseResult;
11297     return TrueResult;
11298   }
11299   case Expr::CXXDefaultArgExprClass:
11300     return CheckICE(cast<CXXDefaultArgExpr>(E)->getExpr(), Ctx);
11301   case Expr::CXXDefaultInitExprClass:
11302     return CheckICE(cast<CXXDefaultInitExpr>(E)->getExpr(), Ctx);
11303   case Expr::ChooseExprClass: {
11304     return CheckICE(cast<ChooseExpr>(E)->getChosenSubExpr(), Ctx);
11305   }
11306   }
11307 
11308   llvm_unreachable("Invalid StmtClass!");
11309 }
11310 
11311 /// Evaluate an expression as a C++11 integral constant expression.
11312 static bool EvaluateCPlusPlus11IntegralConstantExpr(const ASTContext &Ctx,
11313                                                     const Expr *E,
11314                                                     llvm::APSInt *Value,
11315                                                     SourceLocation *Loc) {
11316   if (!E->getType()->isIntegralOrUnscopedEnumerationType()) {
11317     if (Loc) *Loc = E->getExprLoc();
11318     return false;
11319   }
11320 
11321   APValue Result;
11322   if (!E->isCXX11ConstantExpr(Ctx, &Result, Loc))
11323     return false;
11324 
11325   if (!Result.isInt()) {
11326     if (Loc) *Loc = E->getExprLoc();
11327     return false;
11328   }
11329 
11330   if (Value) *Value = Result.getInt();
11331   return true;
11332 }
11333 
11334 bool Expr::isIntegerConstantExpr(const ASTContext &Ctx,
11335                                  SourceLocation *Loc) const {
11336   if (Ctx.getLangOpts().CPlusPlus11)
11337     return EvaluateCPlusPlus11IntegralConstantExpr(Ctx, this, nullptr, Loc);
11338 
11339   ICEDiag D = CheckICE(this, Ctx);
11340   if (D.Kind != IK_ICE) {
11341     if (Loc) *Loc = D.Loc;
11342     return false;
11343   }
11344   return true;
11345 }
11346 
11347 bool Expr::isIntegerConstantExpr(llvm::APSInt &Value, const ASTContext &Ctx,
11348                                  SourceLocation *Loc, bool isEvaluated) const {
11349   if (Ctx.getLangOpts().CPlusPlus11)
11350     return EvaluateCPlusPlus11IntegralConstantExpr(Ctx, this, &Value, Loc);
11351 
11352   if (!isIntegerConstantExpr(Ctx, Loc))
11353     return false;
11354   // The only possible side-effects here are due to UB discovered in the
11355   // evaluation (for instance, INT_MAX + 1). In such a case, we are still
11356   // required to treat the expression as an ICE, so we produce the folded
11357   // value.
11358   if (!EvaluateAsInt(Value, Ctx, SE_AllowSideEffects))
11359     llvm_unreachable("ICE cannot be evaluated!");
11360   return true;
11361 }
11362 
11363 bool Expr::isCXX98IntegralConstantExpr(const ASTContext &Ctx) const {
11364   return CheckICE(this, Ctx).Kind == IK_ICE;
11365 }
11366 
11367 bool Expr::isCXX11ConstantExpr(const ASTContext &Ctx, APValue *Result,
11368                                SourceLocation *Loc) const {
11369   // We support this checking in C++98 mode in order to diagnose compatibility
11370   // issues.
11371   assert(Ctx.getLangOpts().CPlusPlus);
11372 
11373   // Build evaluation settings.
11374   Expr::EvalStatus Status;
11375   SmallVector<PartialDiagnosticAt, 8> Diags;
11376   Status.Diag = &Diags;
11377   EvalInfo Info(Ctx, Status, EvalInfo::EM_ConstantExpression);
11378 
11379   APValue Scratch;
11380   bool IsConstExpr = ::EvaluateAsRValue(Info, this, Result ? *Result : Scratch);
11381 
11382   if (!Diags.empty()) {
11383     IsConstExpr = false;
11384     if (Loc) *Loc = Diags[0].first;
11385   } else if (!IsConstExpr) {
11386     // FIXME: This shouldn't happen.
11387     if (Loc) *Loc = getExprLoc();
11388   }
11389 
11390   return IsConstExpr;
11391 }
11392 
11393 bool Expr::EvaluateWithSubstitution(APValue &Value, ASTContext &Ctx,
11394                                     const FunctionDecl *Callee,
11395                                     ArrayRef<const Expr*> Args,
11396                                     const Expr *This) const {
11397   Expr::EvalStatus Status;
11398   EvalInfo Info(Ctx, Status, EvalInfo::EM_ConstantExpressionUnevaluated);
11399 
11400   LValue ThisVal;
11401   const LValue *ThisPtr = nullptr;
11402   if (This) {
11403 #ifndef NDEBUG
11404     auto *MD = dyn_cast<CXXMethodDecl>(Callee);
11405     assert(MD && "Don't provide `this` for non-methods.");
11406     assert(!MD->isStatic() && "Don't provide `this` for static methods.");
11407 #endif
11408     if (EvaluateObjectArgument(Info, This, ThisVal))
11409       ThisPtr = &ThisVal;
11410     if (Info.EvalStatus.HasSideEffects)
11411       return false;
11412   }
11413 
11414   ArgVector ArgValues(Args.size());
11415   for (ArrayRef<const Expr*>::iterator I = Args.begin(), E = Args.end();
11416        I != E; ++I) {
11417     if ((*I)->isValueDependent() ||
11418         !Evaluate(ArgValues[I - Args.begin()], Info, *I))
11419       // If evaluation fails, throw away the argument entirely.
11420       ArgValues[I - Args.begin()] = APValue();
11421     if (Info.EvalStatus.HasSideEffects)
11422       return false;
11423   }
11424 
11425   // Build fake call to Callee.
11426   CallStackFrame Frame(Info, Callee->getLocation(), Callee, ThisPtr,
11427                        ArgValues.data());
11428   return Evaluate(Value, Info, this) && !Info.EvalStatus.HasSideEffects;
11429 }
11430 
11431 bool Expr::isPotentialConstantExpr(const FunctionDecl *FD,
11432                                    SmallVectorImpl<
11433                                      PartialDiagnosticAt> &Diags) {
11434   // FIXME: It would be useful to check constexpr function templates, but at the
11435   // moment the constant expression evaluator cannot cope with the non-rigorous
11436   // ASTs which we build for dependent expressions.
11437   if (FD->isDependentContext())
11438     return true;
11439 
11440   Expr::EvalStatus Status;
11441   Status.Diag = &Diags;
11442 
11443   EvalInfo Info(FD->getASTContext(), Status,
11444                 EvalInfo::EM_PotentialConstantExpression);
11445 
11446   const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD);
11447   const CXXRecordDecl *RD = MD ? MD->getParent()->getCanonicalDecl() : nullptr;
11448 
11449   // Fabricate an arbitrary expression on the stack and pretend that it
11450   // is a temporary being used as the 'this' pointer.
11451   LValue This;
11452   ImplicitValueInitExpr VIE(RD ? Info.Ctx.getRecordType(RD) : Info.Ctx.IntTy);
11453   This.set({&VIE, Info.CurrentCall->Index});
11454 
11455   ArrayRef<const Expr*> Args;
11456 
11457   APValue Scratch;
11458   if (const CXXConstructorDecl *CD = dyn_cast<CXXConstructorDecl>(FD)) {
11459     // Evaluate the call as a constant initializer, to allow the construction
11460     // of objects of non-literal types.
11461     Info.setEvaluatingDecl(This.getLValueBase(), Scratch);
11462     HandleConstructorCall(&VIE, This, Args, CD, Info, Scratch);
11463   } else {
11464     SourceLocation Loc = FD->getLocation();
11465     HandleFunctionCall(Loc, FD, (MD && MD->isInstance()) ? &This : nullptr,
11466                        Args, FD->getBody(), Info, Scratch, nullptr);
11467   }
11468 
11469   return Diags.empty();
11470 }
11471 
11472 bool Expr::isPotentialConstantExprUnevaluated(Expr *E,
11473                                               const FunctionDecl *FD,
11474                                               SmallVectorImpl<
11475                                                 PartialDiagnosticAt> &Diags) {
11476   Expr::EvalStatus Status;
11477   Status.Diag = &Diags;
11478 
11479   EvalInfo Info(FD->getASTContext(), Status,
11480                 EvalInfo::EM_PotentialConstantExpressionUnevaluated);
11481 
11482   // Fabricate a call stack frame to give the arguments a plausible cover story.
11483   ArrayRef<const Expr*> Args;
11484   ArgVector ArgValues(0);
11485   bool Success = EvaluateArgs(Args, ArgValues, Info);
11486   (void)Success;
11487   assert(Success &&
11488          "Failed to set up arguments for potential constant evaluation");
11489   CallStackFrame Frame(Info, SourceLocation(), FD, nullptr, ArgValues.data());
11490 
11491   APValue ResultScratch;
11492   Evaluate(ResultScratch, Info, E);
11493   return Diags.empty();
11494 }
11495 
11496 bool Expr::tryEvaluateObjectSize(uint64_t &Result, ASTContext &Ctx,
11497                                  unsigned Type) const {
11498   if (!getType()->isPointerType())
11499     return false;
11500 
11501   Expr::EvalStatus Status;
11502   EvalInfo Info(Ctx, Status, EvalInfo::EM_ConstantFold);
11503   return tryEvaluateBuiltinObjectSize(this, Type, Info, Result);
11504 }
11505