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->getLocStart(), 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->getLocStart(),
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->getLocStart(), 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->getLocStart(), diag::note_constexpr_stmt_expr_unsupported);
3995     return ESR_Failed;
3996   }
3997   llvm_unreachable("Invalid EvalStmtResult!");
3998 }
3999 
4000 // Evaluate a statement.
4001 static EvalStmtResult EvaluateStmt(StmtResult &Result, EvalInfo &Info,
4002                                    const Stmt *S, const SwitchCase *Case) {
4003   if (!Info.nextStep(S))
4004     return ESR_Failed;
4005 
4006   // If we're hunting down a 'case' or 'default' label, recurse through
4007   // substatements until we hit the label.
4008   if (Case) {
4009     // FIXME: We don't start the lifetime of objects whose initialization we
4010     // jump over. However, such objects must be of class type with a trivial
4011     // default constructor that initialize all subobjects, so must be empty,
4012     // so this almost never matters.
4013     switch (S->getStmtClass()) {
4014     case Stmt::CompoundStmtClass:
4015       // FIXME: Precompute which substatement of a compound statement we
4016       // would jump to, and go straight there rather than performing a
4017       // linear scan each time.
4018     case Stmt::LabelStmtClass:
4019     case Stmt::AttributedStmtClass:
4020     case Stmt::DoStmtClass:
4021       break;
4022 
4023     case Stmt::CaseStmtClass:
4024     case Stmt::DefaultStmtClass:
4025       if (Case == S)
4026         Case = nullptr;
4027       break;
4028 
4029     case Stmt::IfStmtClass: {
4030       // FIXME: Precompute which side of an 'if' we would jump to, and go
4031       // straight there rather than scanning both sides.
4032       const IfStmt *IS = cast<IfStmt>(S);
4033 
4034       // Wrap the evaluation in a block scope, in case it's a DeclStmt
4035       // preceded by our switch label.
4036       BlockScopeRAII Scope(Info);
4037 
4038       EvalStmtResult ESR = EvaluateStmt(Result, Info, IS->getThen(), Case);
4039       if (ESR != ESR_CaseNotFound || !IS->getElse())
4040         return ESR;
4041       return EvaluateStmt(Result, Info, IS->getElse(), Case);
4042     }
4043 
4044     case Stmt::WhileStmtClass: {
4045       EvalStmtResult ESR =
4046           EvaluateLoopBody(Result, Info, cast<WhileStmt>(S)->getBody(), Case);
4047       if (ESR != ESR_Continue)
4048         return ESR;
4049       break;
4050     }
4051 
4052     case Stmt::ForStmtClass: {
4053       const ForStmt *FS = cast<ForStmt>(S);
4054       EvalStmtResult ESR =
4055           EvaluateLoopBody(Result, Info, FS->getBody(), Case);
4056       if (ESR != ESR_Continue)
4057         return ESR;
4058       if (FS->getInc()) {
4059         FullExpressionRAII IncScope(Info);
4060         if (!EvaluateIgnoredValue(Info, FS->getInc()))
4061           return ESR_Failed;
4062       }
4063       break;
4064     }
4065 
4066     case Stmt::DeclStmtClass:
4067       // FIXME: If the variable has initialization that can't be jumped over,
4068       // bail out of any immediately-surrounding compound-statement too.
4069     default:
4070       return ESR_CaseNotFound;
4071     }
4072   }
4073 
4074   switch (S->getStmtClass()) {
4075   default:
4076     if (const Expr *E = dyn_cast<Expr>(S)) {
4077       // Don't bother evaluating beyond an expression-statement which couldn't
4078       // be evaluated.
4079       FullExpressionRAII Scope(Info);
4080       if (!EvaluateIgnoredValue(Info, E))
4081         return ESR_Failed;
4082       return ESR_Succeeded;
4083     }
4084 
4085     Info.FFDiag(S->getLocStart());
4086     return ESR_Failed;
4087 
4088   case Stmt::NullStmtClass:
4089     return ESR_Succeeded;
4090 
4091   case Stmt::DeclStmtClass: {
4092     const DeclStmt *DS = cast<DeclStmt>(S);
4093     for (const auto *DclIt : DS->decls()) {
4094       // Each declaration initialization is its own full-expression.
4095       // FIXME: This isn't quite right; if we're performing aggregate
4096       // initialization, each braced subexpression is its own full-expression.
4097       FullExpressionRAII Scope(Info);
4098       if (!EvaluateDecl(Info, DclIt) && !Info.noteFailure())
4099         return ESR_Failed;
4100     }
4101     return ESR_Succeeded;
4102   }
4103 
4104   case Stmt::ReturnStmtClass: {
4105     const Expr *RetExpr = cast<ReturnStmt>(S)->getRetValue();
4106     FullExpressionRAII Scope(Info);
4107     if (RetExpr &&
4108         !(Result.Slot
4109               ? EvaluateInPlace(Result.Value, Info, *Result.Slot, RetExpr)
4110               : Evaluate(Result.Value, Info, RetExpr)))
4111       return ESR_Failed;
4112     return ESR_Returned;
4113   }
4114 
4115   case Stmt::CompoundStmtClass: {
4116     BlockScopeRAII Scope(Info);
4117 
4118     const CompoundStmt *CS = cast<CompoundStmt>(S);
4119     for (const auto *BI : CS->body()) {
4120       EvalStmtResult ESR = EvaluateStmt(Result, Info, BI, Case);
4121       if (ESR == ESR_Succeeded)
4122         Case = nullptr;
4123       else if (ESR != ESR_CaseNotFound)
4124         return ESR;
4125     }
4126     return Case ? ESR_CaseNotFound : ESR_Succeeded;
4127   }
4128 
4129   case Stmt::IfStmtClass: {
4130     const IfStmt *IS = cast<IfStmt>(S);
4131 
4132     // Evaluate the condition, as either a var decl or as an expression.
4133     BlockScopeRAII Scope(Info);
4134     if (const Stmt *Init = IS->getInit()) {
4135       EvalStmtResult ESR = EvaluateStmt(Result, Info, Init);
4136       if (ESR != ESR_Succeeded)
4137         return ESR;
4138     }
4139     bool Cond;
4140     if (!EvaluateCond(Info, IS->getConditionVariable(), IS->getCond(), Cond))
4141       return ESR_Failed;
4142 
4143     if (const Stmt *SubStmt = Cond ? IS->getThen() : IS->getElse()) {
4144       EvalStmtResult ESR = EvaluateStmt(Result, Info, SubStmt);
4145       if (ESR != ESR_Succeeded)
4146         return ESR;
4147     }
4148     return ESR_Succeeded;
4149   }
4150 
4151   case Stmt::WhileStmtClass: {
4152     const WhileStmt *WS = cast<WhileStmt>(S);
4153     while (true) {
4154       BlockScopeRAII Scope(Info);
4155       bool Continue;
4156       if (!EvaluateCond(Info, WS->getConditionVariable(), WS->getCond(),
4157                         Continue))
4158         return ESR_Failed;
4159       if (!Continue)
4160         break;
4161 
4162       EvalStmtResult ESR = EvaluateLoopBody(Result, Info, WS->getBody());
4163       if (ESR != ESR_Continue)
4164         return ESR;
4165     }
4166     return ESR_Succeeded;
4167   }
4168 
4169   case Stmt::DoStmtClass: {
4170     const DoStmt *DS = cast<DoStmt>(S);
4171     bool Continue;
4172     do {
4173       EvalStmtResult ESR = EvaluateLoopBody(Result, Info, DS->getBody(), Case);
4174       if (ESR != ESR_Continue)
4175         return ESR;
4176       Case = nullptr;
4177 
4178       FullExpressionRAII CondScope(Info);
4179       if (!EvaluateAsBooleanCondition(DS->getCond(), Continue, Info))
4180         return ESR_Failed;
4181     } while (Continue);
4182     return ESR_Succeeded;
4183   }
4184 
4185   case Stmt::ForStmtClass: {
4186     const ForStmt *FS = cast<ForStmt>(S);
4187     BlockScopeRAII Scope(Info);
4188     if (FS->getInit()) {
4189       EvalStmtResult ESR = EvaluateStmt(Result, Info, FS->getInit());
4190       if (ESR != ESR_Succeeded)
4191         return ESR;
4192     }
4193     while (true) {
4194       BlockScopeRAII Scope(Info);
4195       bool Continue = true;
4196       if (FS->getCond() && !EvaluateCond(Info, FS->getConditionVariable(),
4197                                          FS->getCond(), Continue))
4198         return ESR_Failed;
4199       if (!Continue)
4200         break;
4201 
4202       EvalStmtResult ESR = EvaluateLoopBody(Result, Info, FS->getBody());
4203       if (ESR != ESR_Continue)
4204         return ESR;
4205 
4206       if (FS->getInc()) {
4207         FullExpressionRAII IncScope(Info);
4208         if (!EvaluateIgnoredValue(Info, FS->getInc()))
4209           return ESR_Failed;
4210       }
4211     }
4212     return ESR_Succeeded;
4213   }
4214 
4215   case Stmt::CXXForRangeStmtClass: {
4216     const CXXForRangeStmt *FS = cast<CXXForRangeStmt>(S);
4217     BlockScopeRAII Scope(Info);
4218 
4219     // Initialize the __range variable.
4220     EvalStmtResult ESR = EvaluateStmt(Result, Info, FS->getRangeStmt());
4221     if (ESR != ESR_Succeeded)
4222       return ESR;
4223 
4224     // Create the __begin and __end iterators.
4225     ESR = EvaluateStmt(Result, Info, FS->getBeginStmt());
4226     if (ESR != ESR_Succeeded)
4227       return ESR;
4228     ESR = EvaluateStmt(Result, Info, FS->getEndStmt());
4229     if (ESR != ESR_Succeeded)
4230       return ESR;
4231 
4232     while (true) {
4233       // Condition: __begin != __end.
4234       {
4235         bool Continue = true;
4236         FullExpressionRAII CondExpr(Info);
4237         if (!EvaluateAsBooleanCondition(FS->getCond(), Continue, Info))
4238           return ESR_Failed;
4239         if (!Continue)
4240           break;
4241       }
4242 
4243       // User's variable declaration, initialized by *__begin.
4244       BlockScopeRAII InnerScope(Info);
4245       ESR = EvaluateStmt(Result, Info, FS->getLoopVarStmt());
4246       if (ESR != ESR_Succeeded)
4247         return ESR;
4248 
4249       // Loop body.
4250       ESR = EvaluateLoopBody(Result, Info, FS->getBody());
4251       if (ESR != ESR_Continue)
4252         return ESR;
4253 
4254       // Increment: ++__begin
4255       if (!EvaluateIgnoredValue(Info, FS->getInc()))
4256         return ESR_Failed;
4257     }
4258 
4259     return ESR_Succeeded;
4260   }
4261 
4262   case Stmt::SwitchStmtClass:
4263     return EvaluateSwitch(Result, Info, cast<SwitchStmt>(S));
4264 
4265   case Stmt::ContinueStmtClass:
4266     return ESR_Continue;
4267 
4268   case Stmt::BreakStmtClass:
4269     return ESR_Break;
4270 
4271   case Stmt::LabelStmtClass:
4272     return EvaluateStmt(Result, Info, cast<LabelStmt>(S)->getSubStmt(), Case);
4273 
4274   case Stmt::AttributedStmtClass:
4275     // As a general principle, C++11 attributes can be ignored without
4276     // any semantic impact.
4277     return EvaluateStmt(Result, Info, cast<AttributedStmt>(S)->getSubStmt(),
4278                         Case);
4279 
4280   case Stmt::CaseStmtClass:
4281   case Stmt::DefaultStmtClass:
4282     return EvaluateStmt(Result, Info, cast<SwitchCase>(S)->getSubStmt(), Case);
4283   }
4284 }
4285 
4286 /// CheckTrivialDefaultConstructor - Check whether a constructor is a trivial
4287 /// default constructor. If so, we'll fold it whether or not it's marked as
4288 /// constexpr. If it is marked as constexpr, we will never implicitly define it,
4289 /// so we need special handling.
4290 static bool CheckTrivialDefaultConstructor(EvalInfo &Info, SourceLocation Loc,
4291                                            const CXXConstructorDecl *CD,
4292                                            bool IsValueInitialization) {
4293   if (!CD->isTrivial() || !CD->isDefaultConstructor())
4294     return false;
4295 
4296   // Value-initialization does not call a trivial default constructor, so such a
4297   // call is a core constant expression whether or not the constructor is
4298   // constexpr.
4299   if (!CD->isConstexpr() && !IsValueInitialization) {
4300     if (Info.getLangOpts().CPlusPlus11) {
4301       // FIXME: If DiagDecl is an implicitly-declared special member function,
4302       // we should be much more explicit about why it's not constexpr.
4303       Info.CCEDiag(Loc, diag::note_constexpr_invalid_function, 1)
4304         << /*IsConstexpr*/0 << /*IsConstructor*/1 << CD;
4305       Info.Note(CD->getLocation(), diag::note_declared_at);
4306     } else {
4307       Info.CCEDiag(Loc, diag::note_invalid_subexpr_in_const_expr);
4308     }
4309   }
4310   return true;
4311 }
4312 
4313 /// CheckConstexprFunction - Check that a function can be called in a constant
4314 /// expression.
4315 static bool CheckConstexprFunction(EvalInfo &Info, SourceLocation CallLoc,
4316                                    const FunctionDecl *Declaration,
4317                                    const FunctionDecl *Definition,
4318                                    const Stmt *Body) {
4319   // Potential constant expressions can contain calls to declared, but not yet
4320   // defined, constexpr functions.
4321   if (Info.checkingPotentialConstantExpression() && !Definition &&
4322       Declaration->isConstexpr())
4323     return false;
4324 
4325   // Bail out with no diagnostic if the function declaration itself is invalid.
4326   // We will have produced a relevant diagnostic while parsing it.
4327   if (Declaration->isInvalidDecl())
4328     return false;
4329 
4330   // Can we evaluate this function call?
4331   if (Definition && Definition->isConstexpr() &&
4332       !Definition->isInvalidDecl() && Body)
4333     return true;
4334 
4335   if (Info.getLangOpts().CPlusPlus11) {
4336     const FunctionDecl *DiagDecl = Definition ? Definition : Declaration;
4337 
4338     // If this function is not constexpr because it is an inherited
4339     // non-constexpr constructor, diagnose that directly.
4340     auto *CD = dyn_cast<CXXConstructorDecl>(DiagDecl);
4341     if (CD && CD->isInheritingConstructor()) {
4342       auto *Inherited = CD->getInheritedConstructor().getConstructor();
4343       if (!Inherited->isConstexpr())
4344         DiagDecl = CD = Inherited;
4345     }
4346 
4347     // FIXME: If DiagDecl is an implicitly-declared special member function
4348     // or an inheriting constructor, we should be much more explicit about why
4349     // it's not constexpr.
4350     if (CD && CD->isInheritingConstructor())
4351       Info.FFDiag(CallLoc, diag::note_constexpr_invalid_inhctor, 1)
4352         << CD->getInheritedConstructor().getConstructor()->getParent();
4353     else
4354       Info.FFDiag(CallLoc, diag::note_constexpr_invalid_function, 1)
4355         << DiagDecl->isConstexpr() << (bool)CD << DiagDecl;
4356     Info.Note(DiagDecl->getLocation(), diag::note_declared_at);
4357   } else {
4358     Info.FFDiag(CallLoc, diag::note_invalid_subexpr_in_const_expr);
4359   }
4360   return false;
4361 }
4362 
4363 /// Determine if a class has any fields that might need to be copied by a
4364 /// trivial copy or move operation.
4365 static bool hasFields(const CXXRecordDecl *RD) {
4366   if (!RD || RD->isEmpty())
4367     return false;
4368   for (auto *FD : RD->fields()) {
4369     if (FD->isUnnamedBitfield())
4370       continue;
4371     return true;
4372   }
4373   for (auto &Base : RD->bases())
4374     if (hasFields(Base.getType()->getAsCXXRecordDecl()))
4375       return true;
4376   return false;
4377 }
4378 
4379 namespace {
4380 typedef SmallVector<APValue, 8> ArgVector;
4381 }
4382 
4383 /// EvaluateArgs - Evaluate the arguments to a function call.
4384 static bool EvaluateArgs(ArrayRef<const Expr*> Args, ArgVector &ArgValues,
4385                          EvalInfo &Info) {
4386   bool Success = true;
4387   for (ArrayRef<const Expr*>::iterator I = Args.begin(), E = Args.end();
4388        I != E; ++I) {
4389     if (!Evaluate(ArgValues[I - Args.begin()], Info, *I)) {
4390       // If we're checking for a potential constant expression, evaluate all
4391       // initializers even if some of them fail.
4392       if (!Info.noteFailure())
4393         return false;
4394       Success = false;
4395     }
4396   }
4397   return Success;
4398 }
4399 
4400 /// Evaluate a function call.
4401 static bool HandleFunctionCall(SourceLocation CallLoc,
4402                                const FunctionDecl *Callee, const LValue *This,
4403                                ArrayRef<const Expr*> Args, const Stmt *Body,
4404                                EvalInfo &Info, APValue &Result,
4405                                const LValue *ResultSlot) {
4406   ArgVector ArgValues(Args.size());
4407   if (!EvaluateArgs(Args, ArgValues, Info))
4408     return false;
4409 
4410   if (!Info.CheckCallLimit(CallLoc))
4411     return false;
4412 
4413   CallStackFrame Frame(Info, CallLoc, Callee, This, ArgValues.data());
4414 
4415   // For a trivial copy or move assignment, perform an APValue copy. This is
4416   // essential for unions, where the operations performed by the assignment
4417   // operator cannot be represented as statements.
4418   //
4419   // Skip this for non-union classes with no fields; in that case, the defaulted
4420   // copy/move does not actually read the object.
4421   const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Callee);
4422   if (MD && MD->isDefaulted() &&
4423       (MD->getParent()->isUnion() ||
4424        (MD->isTrivial() && hasFields(MD->getParent())))) {
4425     assert(This &&
4426            (MD->isCopyAssignmentOperator() || MD->isMoveAssignmentOperator()));
4427     LValue RHS;
4428     RHS.setFrom(Info.Ctx, ArgValues[0]);
4429     APValue RHSValue;
4430     if (!handleLValueToRValueConversion(Info, Args[0], Args[0]->getType(),
4431                                         RHS, RHSValue))
4432       return false;
4433     if (!handleAssignment(Info, Args[0], *This, MD->getThisType(Info.Ctx),
4434                           RHSValue))
4435       return false;
4436     This->moveInto(Result);
4437     return true;
4438   } else if (MD && isLambdaCallOperator(MD)) {
4439     // We're in a lambda; determine the lambda capture field maps unless we're
4440     // just constexpr checking a lambda's call operator. constexpr checking is
4441     // done before the captures have been added to the closure object (unless
4442     // we're inferring constexpr-ness), so we don't have access to them in this
4443     // case. But since we don't need the captures to constexpr check, we can
4444     // just ignore them.
4445     if (!Info.checkingPotentialConstantExpression())
4446       MD->getParent()->getCaptureFields(Frame.LambdaCaptureFields,
4447                                         Frame.LambdaThisCaptureField);
4448   }
4449 
4450   StmtResult Ret = {Result, ResultSlot};
4451   EvalStmtResult ESR = EvaluateStmt(Ret, Info, Body);
4452   if (ESR == ESR_Succeeded) {
4453     if (Callee->getReturnType()->isVoidType())
4454       return true;
4455     Info.FFDiag(Callee->getLocEnd(), diag::note_constexpr_no_return);
4456   }
4457   return ESR == ESR_Returned;
4458 }
4459 
4460 /// Evaluate a constructor call.
4461 static bool HandleConstructorCall(const Expr *E, const LValue &This,
4462                                   APValue *ArgValues,
4463                                   const CXXConstructorDecl *Definition,
4464                                   EvalInfo &Info, APValue &Result) {
4465   SourceLocation CallLoc = E->getExprLoc();
4466   if (!Info.CheckCallLimit(CallLoc))
4467     return false;
4468 
4469   const CXXRecordDecl *RD = Definition->getParent();
4470   if (RD->getNumVBases()) {
4471     Info.FFDiag(CallLoc, diag::note_constexpr_virtual_base) << RD;
4472     return false;
4473   }
4474 
4475   EvalInfo::EvaluatingConstructorRAII EvalObj(
4476       Info, {This.getLValueBase(),
4477              {This.getLValueCallIndex(), This.getLValueVersion()}});
4478   CallStackFrame Frame(Info, CallLoc, Definition, &This, ArgValues);
4479 
4480   // FIXME: Creating an APValue just to hold a nonexistent return value is
4481   // wasteful.
4482   APValue RetVal;
4483   StmtResult Ret = {RetVal, nullptr};
4484 
4485   // If it's a delegating constructor, delegate.
4486   if (Definition->isDelegatingConstructor()) {
4487     CXXConstructorDecl::init_const_iterator I = Definition->init_begin();
4488     {
4489       FullExpressionRAII InitScope(Info);
4490       if (!EvaluateInPlace(Result, Info, This, (*I)->getInit()))
4491         return false;
4492     }
4493     return EvaluateStmt(Ret, Info, Definition->getBody()) != ESR_Failed;
4494   }
4495 
4496   // For a trivial copy or move constructor, perform an APValue copy. This is
4497   // essential for unions (or classes with anonymous union members), where the
4498   // operations performed by the constructor cannot be represented by
4499   // ctor-initializers.
4500   //
4501   // Skip this for empty non-union classes; we should not perform an
4502   // lvalue-to-rvalue conversion on them because their copy constructor does not
4503   // actually read them.
4504   if (Definition->isDefaulted() && Definition->isCopyOrMoveConstructor() &&
4505       (Definition->getParent()->isUnion() ||
4506        (Definition->isTrivial() && hasFields(Definition->getParent())))) {
4507     LValue RHS;
4508     RHS.setFrom(Info.Ctx, ArgValues[0]);
4509     return handleLValueToRValueConversion(
4510         Info, E, Definition->getParamDecl(0)->getType().getNonReferenceType(),
4511         RHS, Result);
4512   }
4513 
4514   // Reserve space for the struct members.
4515   if (!RD->isUnion() && Result.isUninit())
4516     Result = APValue(APValue::UninitStruct(), RD->getNumBases(),
4517                      std::distance(RD->field_begin(), RD->field_end()));
4518 
4519   if (RD->isInvalidDecl()) return false;
4520   const ASTRecordLayout &Layout = Info.Ctx.getASTRecordLayout(RD);
4521 
4522   // A scope for temporaries lifetime-extended by reference members.
4523   BlockScopeRAII LifetimeExtendedScope(Info);
4524 
4525   bool Success = true;
4526   unsigned BasesSeen = 0;
4527 #ifndef NDEBUG
4528   CXXRecordDecl::base_class_const_iterator BaseIt = RD->bases_begin();
4529 #endif
4530   for (const auto *I : Definition->inits()) {
4531     LValue Subobject = This;
4532     LValue SubobjectParent = This;
4533     APValue *Value = &Result;
4534 
4535     // Determine the subobject to initialize.
4536     FieldDecl *FD = nullptr;
4537     if (I->isBaseInitializer()) {
4538       QualType BaseType(I->getBaseClass(), 0);
4539 #ifndef NDEBUG
4540       // Non-virtual base classes are initialized in the order in the class
4541       // definition. We have already checked for virtual base classes.
4542       assert(!BaseIt->isVirtual() && "virtual base for literal type");
4543       assert(Info.Ctx.hasSameType(BaseIt->getType(), BaseType) &&
4544              "base class initializers not in expected order");
4545       ++BaseIt;
4546 #endif
4547       if (!HandleLValueDirectBase(Info, I->getInit(), Subobject, RD,
4548                                   BaseType->getAsCXXRecordDecl(), &Layout))
4549         return false;
4550       Value = &Result.getStructBase(BasesSeen++);
4551     } else if ((FD = I->getMember())) {
4552       if (!HandleLValueMember(Info, I->getInit(), Subobject, FD, &Layout))
4553         return false;
4554       if (RD->isUnion()) {
4555         Result = APValue(FD);
4556         Value = &Result.getUnionValue();
4557       } else {
4558         Value = &Result.getStructField(FD->getFieldIndex());
4559       }
4560     } else if (IndirectFieldDecl *IFD = I->getIndirectMember()) {
4561       // Walk the indirect field decl's chain to find the object to initialize,
4562       // and make sure we've initialized every step along it.
4563       auto IndirectFieldChain = IFD->chain();
4564       for (auto *C : IndirectFieldChain) {
4565         FD = cast<FieldDecl>(C);
4566         CXXRecordDecl *CD = cast<CXXRecordDecl>(FD->getParent());
4567         // Switch the union field if it differs. This happens if we had
4568         // preceding zero-initialization, and we're now initializing a union
4569         // subobject other than the first.
4570         // FIXME: In this case, the values of the other subobjects are
4571         // specified, since zero-initialization sets all padding bits to zero.
4572         if (Value->isUninit() ||
4573             (Value->isUnion() && Value->getUnionField() != FD)) {
4574           if (CD->isUnion())
4575             *Value = APValue(FD);
4576           else
4577             *Value = APValue(APValue::UninitStruct(), CD->getNumBases(),
4578                              std::distance(CD->field_begin(), CD->field_end()));
4579         }
4580         // Store Subobject as its parent before updating it for the last element
4581         // in the chain.
4582         if (C == IndirectFieldChain.back())
4583           SubobjectParent = Subobject;
4584         if (!HandleLValueMember(Info, I->getInit(), Subobject, FD))
4585           return false;
4586         if (CD->isUnion())
4587           Value = &Value->getUnionValue();
4588         else
4589           Value = &Value->getStructField(FD->getFieldIndex());
4590       }
4591     } else {
4592       llvm_unreachable("unknown base initializer kind");
4593     }
4594 
4595     // Need to override This for implicit field initializers as in this case
4596     // This refers to innermost anonymous struct/union containing initializer,
4597     // not to currently constructed class.
4598     const Expr *Init = I->getInit();
4599     ThisOverrideRAII ThisOverride(*Info.CurrentCall, &SubobjectParent,
4600                                   isa<CXXDefaultInitExpr>(Init));
4601     FullExpressionRAII InitScope(Info);
4602     if (!EvaluateInPlace(*Value, Info, Subobject, Init) ||
4603         (FD && FD->isBitField() &&
4604          !truncateBitfieldValue(Info, Init, *Value, FD))) {
4605       // If we're checking for a potential constant expression, evaluate all
4606       // initializers even if some of them fail.
4607       if (!Info.noteFailure())
4608         return false;
4609       Success = false;
4610     }
4611   }
4612 
4613   return Success &&
4614          EvaluateStmt(Ret, Info, Definition->getBody()) != ESR_Failed;
4615 }
4616 
4617 static bool HandleConstructorCall(const Expr *E, const LValue &This,
4618                                   ArrayRef<const Expr*> Args,
4619                                   const CXXConstructorDecl *Definition,
4620                                   EvalInfo &Info, APValue &Result) {
4621   ArgVector ArgValues(Args.size());
4622   if (!EvaluateArgs(Args, ArgValues, Info))
4623     return false;
4624 
4625   return HandleConstructorCall(E, This, ArgValues.data(), Definition,
4626                                Info, Result);
4627 }
4628 
4629 //===----------------------------------------------------------------------===//
4630 // Generic Evaluation
4631 //===----------------------------------------------------------------------===//
4632 namespace {
4633 
4634 template <class Derived>
4635 class ExprEvaluatorBase
4636   : public ConstStmtVisitor<Derived, bool> {
4637 private:
4638   Derived &getDerived() { return static_cast<Derived&>(*this); }
4639   bool DerivedSuccess(const APValue &V, const Expr *E) {
4640     return getDerived().Success(V, E);
4641   }
4642   bool DerivedZeroInitialization(const Expr *E) {
4643     return getDerived().ZeroInitialization(E);
4644   }
4645 
4646   // Check whether a conditional operator with a non-constant condition is a
4647   // potential constant expression. If neither arm is a potential constant
4648   // expression, then the conditional operator is not either.
4649   template<typename ConditionalOperator>
4650   void CheckPotentialConstantConditional(const ConditionalOperator *E) {
4651     assert(Info.checkingPotentialConstantExpression());
4652 
4653     // Speculatively evaluate both arms.
4654     SmallVector<PartialDiagnosticAt, 8> Diag;
4655     {
4656       SpeculativeEvaluationRAII Speculate(Info, &Diag);
4657       StmtVisitorTy::Visit(E->getFalseExpr());
4658       if (Diag.empty())
4659         return;
4660     }
4661 
4662     {
4663       SpeculativeEvaluationRAII Speculate(Info, &Diag);
4664       Diag.clear();
4665       StmtVisitorTy::Visit(E->getTrueExpr());
4666       if (Diag.empty())
4667         return;
4668     }
4669 
4670     Error(E, diag::note_constexpr_conditional_never_const);
4671   }
4672 
4673 
4674   template<typename ConditionalOperator>
4675   bool HandleConditionalOperator(const ConditionalOperator *E) {
4676     bool BoolResult;
4677     if (!EvaluateAsBooleanCondition(E->getCond(), BoolResult, Info)) {
4678       if (Info.checkingPotentialConstantExpression() && Info.noteFailure()) {
4679         CheckPotentialConstantConditional(E);
4680         return false;
4681       }
4682       if (Info.noteFailure()) {
4683         StmtVisitorTy::Visit(E->getTrueExpr());
4684         StmtVisitorTy::Visit(E->getFalseExpr());
4685       }
4686       return false;
4687     }
4688 
4689     Expr *EvalExpr = BoolResult ? E->getTrueExpr() : E->getFalseExpr();
4690     return StmtVisitorTy::Visit(EvalExpr);
4691   }
4692 
4693 protected:
4694   EvalInfo &Info;
4695   typedef ConstStmtVisitor<Derived, bool> StmtVisitorTy;
4696   typedef ExprEvaluatorBase ExprEvaluatorBaseTy;
4697 
4698   OptionalDiagnostic CCEDiag(const Expr *E, diag::kind D) {
4699     return Info.CCEDiag(E, D);
4700   }
4701 
4702   bool ZeroInitialization(const Expr *E) { return Error(E); }
4703 
4704 public:
4705   ExprEvaluatorBase(EvalInfo &Info) : Info(Info) {}
4706 
4707   EvalInfo &getEvalInfo() { return Info; }
4708 
4709   /// Report an evaluation error. This should only be called when an error is
4710   /// first discovered. When propagating an error, just return false.
4711   bool Error(const Expr *E, diag::kind D) {
4712     Info.FFDiag(E, D);
4713     return false;
4714   }
4715   bool Error(const Expr *E) {
4716     return Error(E, diag::note_invalid_subexpr_in_const_expr);
4717   }
4718 
4719   bool VisitStmt(const Stmt *) {
4720     llvm_unreachable("Expression evaluator should not be called on stmts");
4721   }
4722   bool VisitExpr(const Expr *E) {
4723     return Error(E);
4724   }
4725 
4726   bool VisitParenExpr(const ParenExpr *E)
4727     { return StmtVisitorTy::Visit(E->getSubExpr()); }
4728   bool VisitUnaryExtension(const UnaryOperator *E)
4729     { return StmtVisitorTy::Visit(E->getSubExpr()); }
4730   bool VisitUnaryPlus(const UnaryOperator *E)
4731     { return StmtVisitorTy::Visit(E->getSubExpr()); }
4732   bool VisitChooseExpr(const ChooseExpr *E)
4733     { return StmtVisitorTy::Visit(E->getChosenSubExpr()); }
4734   bool VisitGenericSelectionExpr(const GenericSelectionExpr *E)
4735     { return StmtVisitorTy::Visit(E->getResultExpr()); }
4736   bool VisitSubstNonTypeTemplateParmExpr(const SubstNonTypeTemplateParmExpr *E)
4737     { return StmtVisitorTy::Visit(E->getReplacement()); }
4738   bool VisitCXXDefaultArgExpr(const CXXDefaultArgExpr *E) {
4739     TempVersionRAII RAII(*Info.CurrentCall);
4740     return StmtVisitorTy::Visit(E->getExpr());
4741   }
4742   bool VisitCXXDefaultInitExpr(const CXXDefaultInitExpr *E) {
4743     TempVersionRAII RAII(*Info.CurrentCall);
4744     // The initializer may not have been parsed yet, or might be erroneous.
4745     if (!E->getExpr())
4746       return Error(E);
4747     return StmtVisitorTy::Visit(E->getExpr());
4748   }
4749   // We cannot create any objects for which cleanups are required, so there is
4750   // nothing to do here; all cleanups must come from unevaluated subexpressions.
4751   bool VisitExprWithCleanups(const ExprWithCleanups *E)
4752     { return StmtVisitorTy::Visit(E->getSubExpr()); }
4753 
4754   bool VisitCXXReinterpretCastExpr(const CXXReinterpretCastExpr *E) {
4755     CCEDiag(E, diag::note_constexpr_invalid_cast) << 0;
4756     return static_cast<Derived*>(this)->VisitCastExpr(E);
4757   }
4758   bool VisitCXXDynamicCastExpr(const CXXDynamicCastExpr *E) {
4759     CCEDiag(E, diag::note_constexpr_invalid_cast) << 1;
4760     return static_cast<Derived*>(this)->VisitCastExpr(E);
4761   }
4762 
4763   bool VisitBinaryOperator(const BinaryOperator *E) {
4764     switch (E->getOpcode()) {
4765     default:
4766       return Error(E);
4767 
4768     case BO_Comma:
4769       VisitIgnoredValue(E->getLHS());
4770       return StmtVisitorTy::Visit(E->getRHS());
4771 
4772     case BO_PtrMemD:
4773     case BO_PtrMemI: {
4774       LValue Obj;
4775       if (!HandleMemberPointerAccess(Info, E, Obj))
4776         return false;
4777       APValue Result;
4778       if (!handleLValueToRValueConversion(Info, E, E->getType(), Obj, Result))
4779         return false;
4780       return DerivedSuccess(Result, E);
4781     }
4782     }
4783   }
4784 
4785   bool VisitBinaryConditionalOperator(const BinaryConditionalOperator *E) {
4786     // Evaluate and cache the common expression. We treat it as a temporary,
4787     // even though it's not quite the same thing.
4788     if (!Evaluate(Info.CurrentCall->createTemporary(E->getOpaqueValue(), false),
4789                   Info, E->getCommon()))
4790       return false;
4791 
4792     return HandleConditionalOperator(E);
4793   }
4794 
4795   bool VisitConditionalOperator(const ConditionalOperator *E) {
4796     bool IsBcpCall = false;
4797     // If the condition (ignoring parens) is a __builtin_constant_p call,
4798     // the result is a constant expression if it can be folded without
4799     // side-effects. This is an important GNU extension. See GCC PR38377
4800     // for discussion.
4801     if (const CallExpr *CallCE =
4802           dyn_cast<CallExpr>(E->getCond()->IgnoreParenCasts()))
4803       if (CallCE->getBuiltinCallee() == Builtin::BI__builtin_constant_p)
4804         IsBcpCall = true;
4805 
4806     // Always assume __builtin_constant_p(...) ? ... : ... is a potential
4807     // constant expression; we can't check whether it's potentially foldable.
4808     if (Info.checkingPotentialConstantExpression() && IsBcpCall)
4809       return false;
4810 
4811     FoldConstant Fold(Info, IsBcpCall);
4812     if (!HandleConditionalOperator(E)) {
4813       Fold.keepDiagnostics();
4814       return false;
4815     }
4816 
4817     return true;
4818   }
4819 
4820   bool VisitOpaqueValueExpr(const OpaqueValueExpr *E) {
4821     if (APValue *Value = Info.CurrentCall->getCurrentTemporary(E))
4822       return DerivedSuccess(*Value, E);
4823 
4824     const Expr *Source = E->getSourceExpr();
4825     if (!Source)
4826       return Error(E);
4827     if (Source == E) { // sanity checking.
4828       assert(0 && "OpaqueValueExpr recursively refers to itself");
4829       return Error(E);
4830     }
4831     return StmtVisitorTy::Visit(Source);
4832   }
4833 
4834   bool VisitCallExpr(const CallExpr *E) {
4835     APValue Result;
4836     if (!handleCallExpr(E, Result, nullptr))
4837       return false;
4838     return DerivedSuccess(Result, E);
4839   }
4840 
4841   bool handleCallExpr(const CallExpr *E, APValue &Result,
4842                      const LValue *ResultSlot) {
4843     const Expr *Callee = E->getCallee()->IgnoreParens();
4844     QualType CalleeType = Callee->getType();
4845 
4846     const FunctionDecl *FD = nullptr;
4847     LValue *This = nullptr, ThisVal;
4848     auto Args = llvm::makeArrayRef(E->getArgs(), E->getNumArgs());
4849     bool HasQualifier = false;
4850 
4851     // Extract function decl and 'this' pointer from the callee.
4852     if (CalleeType->isSpecificBuiltinType(BuiltinType::BoundMember)) {
4853       const ValueDecl *Member = nullptr;
4854       if (const MemberExpr *ME = dyn_cast<MemberExpr>(Callee)) {
4855         // Explicit bound member calls, such as x.f() or p->g();
4856         if (!EvaluateObjectArgument(Info, ME->getBase(), ThisVal))
4857           return false;
4858         Member = ME->getMemberDecl();
4859         This = &ThisVal;
4860         HasQualifier = ME->hasQualifier();
4861       } else if (const BinaryOperator *BE = dyn_cast<BinaryOperator>(Callee)) {
4862         // Indirect bound member calls ('.*' or '->*').
4863         Member = HandleMemberPointerAccess(Info, BE, ThisVal, false);
4864         if (!Member) return false;
4865         This = &ThisVal;
4866       } else
4867         return Error(Callee);
4868 
4869       FD = dyn_cast<FunctionDecl>(Member);
4870       if (!FD)
4871         return Error(Callee);
4872     } else if (CalleeType->isFunctionPointerType()) {
4873       LValue Call;
4874       if (!EvaluatePointer(Callee, Call, Info))
4875         return false;
4876 
4877       if (!Call.getLValueOffset().isZero())
4878         return Error(Callee);
4879       FD = dyn_cast_or_null<FunctionDecl>(
4880                              Call.getLValueBase().dyn_cast<const ValueDecl*>());
4881       if (!FD)
4882         return Error(Callee);
4883       // Don't call function pointers which have been cast to some other type.
4884       // Per DR (no number yet), the caller and callee can differ in noexcept.
4885       if (!Info.Ctx.hasSameFunctionTypeIgnoringExceptionSpec(
4886         CalleeType->getPointeeType(), FD->getType())) {
4887         return Error(E);
4888       }
4889 
4890       // Overloaded operator calls to member functions are represented as normal
4891       // calls with '*this' as the first argument.
4892       const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD);
4893       if (MD && !MD->isStatic()) {
4894         // FIXME: When selecting an implicit conversion for an overloaded
4895         // operator delete, we sometimes try to evaluate calls to conversion
4896         // operators without a 'this' parameter!
4897         if (Args.empty())
4898           return Error(E);
4899 
4900         if (!EvaluateObjectArgument(Info, Args[0], ThisVal))
4901           return false;
4902         This = &ThisVal;
4903         Args = Args.slice(1);
4904       } else if (MD && MD->isLambdaStaticInvoker()) {
4905         // Map the static invoker for the lambda back to the call operator.
4906         // Conveniently, we don't have to slice out the 'this' argument (as is
4907         // being done for the non-static case), since a static member function
4908         // doesn't have an implicit argument passed in.
4909         const CXXRecordDecl *ClosureClass = MD->getParent();
4910         assert(
4911             ClosureClass->captures_begin() == ClosureClass->captures_end() &&
4912             "Number of captures must be zero for conversion to function-ptr");
4913 
4914         const CXXMethodDecl *LambdaCallOp =
4915             ClosureClass->getLambdaCallOperator();
4916 
4917         // Set 'FD', the function that will be called below, to the call
4918         // operator.  If the closure object represents a generic lambda, find
4919         // the corresponding specialization of the call operator.
4920 
4921         if (ClosureClass->isGenericLambda()) {
4922           assert(MD->isFunctionTemplateSpecialization() &&
4923                  "A generic lambda's static-invoker function must be a "
4924                  "template specialization");
4925           const TemplateArgumentList *TAL = MD->getTemplateSpecializationArgs();
4926           FunctionTemplateDecl *CallOpTemplate =
4927               LambdaCallOp->getDescribedFunctionTemplate();
4928           void *InsertPos = nullptr;
4929           FunctionDecl *CorrespondingCallOpSpecialization =
4930               CallOpTemplate->findSpecialization(TAL->asArray(), InsertPos);
4931           assert(CorrespondingCallOpSpecialization &&
4932                  "We must always have a function call operator specialization "
4933                  "that corresponds to our static invoker specialization");
4934           FD = cast<CXXMethodDecl>(CorrespondingCallOpSpecialization);
4935         } else
4936           FD = LambdaCallOp;
4937       }
4938 
4939 
4940     } else
4941       return Error(E);
4942 
4943     if (This && !This->checkSubobject(Info, E, CSK_This))
4944       return false;
4945 
4946     // DR1358 allows virtual constexpr functions in some cases. Don't allow
4947     // calls to such functions in constant expressions.
4948     if (This && !HasQualifier &&
4949         isa<CXXMethodDecl>(FD) && cast<CXXMethodDecl>(FD)->isVirtual())
4950       return Error(E, diag::note_constexpr_virtual_call);
4951 
4952     const FunctionDecl *Definition = nullptr;
4953     Stmt *Body = FD->getBody(Definition);
4954 
4955     if (!CheckConstexprFunction(Info, E->getExprLoc(), FD, Definition, Body) ||
4956         !HandleFunctionCall(E->getExprLoc(), Definition, This, Args, Body, Info,
4957                             Result, ResultSlot))
4958       return false;
4959 
4960     return true;
4961   }
4962 
4963   bool VisitCompoundLiteralExpr(const CompoundLiteralExpr *E) {
4964     return StmtVisitorTy::Visit(E->getInitializer());
4965   }
4966   bool VisitInitListExpr(const InitListExpr *E) {
4967     if (E->getNumInits() == 0)
4968       return DerivedZeroInitialization(E);
4969     if (E->getNumInits() == 1)
4970       return StmtVisitorTy::Visit(E->getInit(0));
4971     return Error(E);
4972   }
4973   bool VisitImplicitValueInitExpr(const ImplicitValueInitExpr *E) {
4974     return DerivedZeroInitialization(E);
4975   }
4976   bool VisitCXXScalarValueInitExpr(const CXXScalarValueInitExpr *E) {
4977     return DerivedZeroInitialization(E);
4978   }
4979   bool VisitCXXNullPtrLiteralExpr(const CXXNullPtrLiteralExpr *E) {
4980     return DerivedZeroInitialization(E);
4981   }
4982 
4983   /// A member expression where the object is a prvalue is itself a prvalue.
4984   bool VisitMemberExpr(const MemberExpr *E) {
4985     assert(!E->isArrow() && "missing call to bound member function?");
4986 
4987     APValue Val;
4988     if (!Evaluate(Val, Info, E->getBase()))
4989       return false;
4990 
4991     QualType BaseTy = E->getBase()->getType();
4992 
4993     const FieldDecl *FD = dyn_cast<FieldDecl>(E->getMemberDecl());
4994     if (!FD) return Error(E);
4995     assert(!FD->getType()->isReferenceType() && "prvalue reference?");
4996     assert(BaseTy->castAs<RecordType>()->getDecl()->getCanonicalDecl() ==
4997            FD->getParent()->getCanonicalDecl() && "record / field mismatch");
4998 
4999     CompleteObject Obj(&Val, BaseTy, true);
5000     SubobjectDesignator Designator(BaseTy);
5001     Designator.addDeclUnchecked(FD);
5002 
5003     APValue Result;
5004     return extractSubobject(Info, E, Obj, Designator, Result) &&
5005            DerivedSuccess(Result, E);
5006   }
5007 
5008   bool VisitCastExpr(const CastExpr *E) {
5009     switch (E->getCastKind()) {
5010     default:
5011       break;
5012 
5013     case CK_AtomicToNonAtomic: {
5014       APValue AtomicVal;
5015       // This does not need to be done in place even for class/array types:
5016       // atomic-to-non-atomic conversion implies copying the object
5017       // representation.
5018       if (!Evaluate(AtomicVal, Info, E->getSubExpr()))
5019         return false;
5020       return DerivedSuccess(AtomicVal, E);
5021     }
5022 
5023     case CK_NoOp:
5024     case CK_UserDefinedConversion:
5025       return StmtVisitorTy::Visit(E->getSubExpr());
5026 
5027     case CK_LValueToRValue: {
5028       LValue LVal;
5029       if (!EvaluateLValue(E->getSubExpr(), LVal, Info))
5030         return false;
5031       APValue RVal;
5032       // Note, we use the subexpression's type in order to retain cv-qualifiers.
5033       if (!handleLValueToRValueConversion(Info, E, E->getSubExpr()->getType(),
5034                                           LVal, RVal))
5035         return false;
5036       return DerivedSuccess(RVal, E);
5037     }
5038     }
5039 
5040     return Error(E);
5041   }
5042 
5043   bool VisitUnaryPostInc(const UnaryOperator *UO) {
5044     return VisitUnaryPostIncDec(UO);
5045   }
5046   bool VisitUnaryPostDec(const UnaryOperator *UO) {
5047     return VisitUnaryPostIncDec(UO);
5048   }
5049   bool VisitUnaryPostIncDec(const UnaryOperator *UO) {
5050     if (!Info.getLangOpts().CPlusPlus14 && !Info.keepEvaluatingAfterFailure())
5051       return Error(UO);
5052 
5053     LValue LVal;
5054     if (!EvaluateLValue(UO->getSubExpr(), LVal, Info))
5055       return false;
5056     APValue RVal;
5057     if (!handleIncDec(this->Info, UO, LVal, UO->getSubExpr()->getType(),
5058                       UO->isIncrementOp(), &RVal))
5059       return false;
5060     return DerivedSuccess(RVal, UO);
5061   }
5062 
5063   bool VisitStmtExpr(const StmtExpr *E) {
5064     // We will have checked the full-expressions inside the statement expression
5065     // when they were completed, and don't need to check them again now.
5066     if (Info.checkingForOverflow())
5067       return Error(E);
5068 
5069     BlockScopeRAII Scope(Info);
5070     const CompoundStmt *CS = E->getSubStmt();
5071     if (CS->body_empty())
5072       return true;
5073 
5074     for (CompoundStmt::const_body_iterator BI = CS->body_begin(),
5075                                            BE = CS->body_end();
5076          /**/; ++BI) {
5077       if (BI + 1 == BE) {
5078         const Expr *FinalExpr = dyn_cast<Expr>(*BI);
5079         if (!FinalExpr) {
5080           Info.FFDiag((*BI)->getLocStart(),
5081                     diag::note_constexpr_stmt_expr_unsupported);
5082           return false;
5083         }
5084         return this->Visit(FinalExpr);
5085       }
5086 
5087       APValue ReturnValue;
5088       StmtResult Result = { ReturnValue, nullptr };
5089       EvalStmtResult ESR = EvaluateStmt(Result, Info, *BI);
5090       if (ESR != ESR_Succeeded) {
5091         // FIXME: If the statement-expression terminated due to 'return',
5092         // 'break', or 'continue', it would be nice to propagate that to
5093         // the outer statement evaluation rather than bailing out.
5094         if (ESR != ESR_Failed)
5095           Info.FFDiag((*BI)->getLocStart(),
5096                     diag::note_constexpr_stmt_expr_unsupported);
5097         return false;
5098       }
5099     }
5100 
5101     llvm_unreachable("Return from function from the loop above.");
5102   }
5103 
5104   /// Visit a value which is evaluated, but whose value is ignored.
5105   void VisitIgnoredValue(const Expr *E) {
5106     EvaluateIgnoredValue(Info, E);
5107   }
5108 
5109   /// Potentially visit a MemberExpr's base expression.
5110   void VisitIgnoredBaseExpression(const Expr *E) {
5111     // While MSVC doesn't evaluate the base expression, it does diagnose the
5112     // presence of side-effecting behavior.
5113     if (Info.getLangOpts().MSVCCompat && !E->HasSideEffects(Info.Ctx))
5114       return;
5115     VisitIgnoredValue(E);
5116   }
5117 };
5118 
5119 } // namespace
5120 
5121 //===----------------------------------------------------------------------===//
5122 // Common base class for lvalue and temporary evaluation.
5123 //===----------------------------------------------------------------------===//
5124 namespace {
5125 template<class Derived>
5126 class LValueExprEvaluatorBase
5127   : public ExprEvaluatorBase<Derived> {
5128 protected:
5129   LValue &Result;
5130   bool InvalidBaseOK;
5131   typedef LValueExprEvaluatorBase LValueExprEvaluatorBaseTy;
5132   typedef ExprEvaluatorBase<Derived> ExprEvaluatorBaseTy;
5133 
5134   bool Success(APValue::LValueBase B) {
5135     Result.set(B);
5136     return true;
5137   }
5138 
5139   bool evaluatePointer(const Expr *E, LValue &Result) {
5140     return EvaluatePointer(E, Result, this->Info, InvalidBaseOK);
5141   }
5142 
5143 public:
5144   LValueExprEvaluatorBase(EvalInfo &Info, LValue &Result, bool InvalidBaseOK)
5145       : ExprEvaluatorBaseTy(Info), Result(Result),
5146         InvalidBaseOK(InvalidBaseOK) {}
5147 
5148   bool Success(const APValue &V, const Expr *E) {
5149     Result.setFrom(this->Info.Ctx, V);
5150     return true;
5151   }
5152 
5153   bool VisitMemberExpr(const MemberExpr *E) {
5154     // Handle non-static data members.
5155     QualType BaseTy;
5156     bool EvalOK;
5157     if (E->isArrow()) {
5158       EvalOK = evaluatePointer(E->getBase(), Result);
5159       BaseTy = E->getBase()->getType()->castAs<PointerType>()->getPointeeType();
5160     } else if (E->getBase()->isRValue()) {
5161       assert(E->getBase()->getType()->isRecordType());
5162       EvalOK = EvaluateTemporary(E->getBase(), Result, this->Info);
5163       BaseTy = E->getBase()->getType();
5164     } else {
5165       EvalOK = this->Visit(E->getBase());
5166       BaseTy = E->getBase()->getType();
5167     }
5168     if (!EvalOK) {
5169       if (!InvalidBaseOK)
5170         return false;
5171       Result.setInvalid(E);
5172       return true;
5173     }
5174 
5175     const ValueDecl *MD = E->getMemberDecl();
5176     if (const FieldDecl *FD = dyn_cast<FieldDecl>(E->getMemberDecl())) {
5177       assert(BaseTy->getAs<RecordType>()->getDecl()->getCanonicalDecl() ==
5178              FD->getParent()->getCanonicalDecl() && "record / field mismatch");
5179       (void)BaseTy;
5180       if (!HandleLValueMember(this->Info, E, Result, FD))
5181         return false;
5182     } else if (const IndirectFieldDecl *IFD = dyn_cast<IndirectFieldDecl>(MD)) {
5183       if (!HandleLValueIndirectMember(this->Info, E, Result, IFD))
5184         return false;
5185     } else
5186       return this->Error(E);
5187 
5188     if (MD->getType()->isReferenceType()) {
5189       APValue RefValue;
5190       if (!handleLValueToRValueConversion(this->Info, E, MD->getType(), Result,
5191                                           RefValue))
5192         return false;
5193       return Success(RefValue, E);
5194     }
5195     return true;
5196   }
5197 
5198   bool VisitBinaryOperator(const BinaryOperator *E) {
5199     switch (E->getOpcode()) {
5200     default:
5201       return ExprEvaluatorBaseTy::VisitBinaryOperator(E);
5202 
5203     case BO_PtrMemD:
5204     case BO_PtrMemI:
5205       return HandleMemberPointerAccess(this->Info, E, Result);
5206     }
5207   }
5208 
5209   bool VisitCastExpr(const CastExpr *E) {
5210     switch (E->getCastKind()) {
5211     default:
5212       return ExprEvaluatorBaseTy::VisitCastExpr(E);
5213 
5214     case CK_DerivedToBase:
5215     case CK_UncheckedDerivedToBase:
5216       if (!this->Visit(E->getSubExpr()))
5217         return false;
5218 
5219       // Now figure out the necessary offset to add to the base LV to get from
5220       // the derived class to the base class.
5221       return HandleLValueBasePath(this->Info, E, E->getSubExpr()->getType(),
5222                                   Result);
5223     }
5224   }
5225 };
5226 }
5227 
5228 //===----------------------------------------------------------------------===//
5229 // LValue Evaluation
5230 //
5231 // This is used for evaluating lvalues (in C and C++), xvalues (in C++11),
5232 // function designators (in C), decl references to void objects (in C), and
5233 // temporaries (if building with -Wno-address-of-temporary).
5234 //
5235 // LValue evaluation produces values comprising a base expression of one of the
5236 // following types:
5237 // - Declarations
5238 //  * VarDecl
5239 //  * FunctionDecl
5240 // - Literals
5241 //  * CompoundLiteralExpr in C (and in global scope in C++)
5242 //  * StringLiteral
5243 //  * CXXTypeidExpr
5244 //  * PredefinedExpr
5245 //  * ObjCStringLiteralExpr
5246 //  * ObjCEncodeExpr
5247 //  * AddrLabelExpr
5248 //  * BlockExpr
5249 //  * CallExpr for a MakeStringConstant builtin
5250 // - Locals and temporaries
5251 //  * MaterializeTemporaryExpr
5252 //  * Any Expr, with a CallIndex indicating the function in which the temporary
5253 //    was evaluated, for cases where the MaterializeTemporaryExpr is missing
5254 //    from the AST (FIXME).
5255 //  * A MaterializeTemporaryExpr that has static storage duration, with no
5256 //    CallIndex, for a lifetime-extended temporary.
5257 // plus an offset in bytes.
5258 //===----------------------------------------------------------------------===//
5259 namespace {
5260 class LValueExprEvaluator
5261   : public LValueExprEvaluatorBase<LValueExprEvaluator> {
5262 public:
5263   LValueExprEvaluator(EvalInfo &Info, LValue &Result, bool InvalidBaseOK) :
5264     LValueExprEvaluatorBaseTy(Info, Result, InvalidBaseOK) {}
5265 
5266   bool VisitVarDecl(const Expr *E, const VarDecl *VD);
5267   bool VisitUnaryPreIncDec(const UnaryOperator *UO);
5268 
5269   bool VisitDeclRefExpr(const DeclRefExpr *E);
5270   bool VisitPredefinedExpr(const PredefinedExpr *E) { return Success(E); }
5271   bool VisitMaterializeTemporaryExpr(const MaterializeTemporaryExpr *E);
5272   bool VisitCompoundLiteralExpr(const CompoundLiteralExpr *E);
5273   bool VisitMemberExpr(const MemberExpr *E);
5274   bool VisitStringLiteral(const StringLiteral *E) { return Success(E); }
5275   bool VisitObjCEncodeExpr(const ObjCEncodeExpr *E) { return Success(E); }
5276   bool VisitCXXTypeidExpr(const CXXTypeidExpr *E);
5277   bool VisitCXXUuidofExpr(const CXXUuidofExpr *E);
5278   bool VisitArraySubscriptExpr(const ArraySubscriptExpr *E);
5279   bool VisitUnaryDeref(const UnaryOperator *E);
5280   bool VisitUnaryReal(const UnaryOperator *E);
5281   bool VisitUnaryImag(const UnaryOperator *E);
5282   bool VisitUnaryPreInc(const UnaryOperator *UO) {
5283     return VisitUnaryPreIncDec(UO);
5284   }
5285   bool VisitUnaryPreDec(const UnaryOperator *UO) {
5286     return VisitUnaryPreIncDec(UO);
5287   }
5288   bool VisitBinAssign(const BinaryOperator *BO);
5289   bool VisitCompoundAssignOperator(const CompoundAssignOperator *CAO);
5290 
5291   bool VisitCastExpr(const CastExpr *E) {
5292     switch (E->getCastKind()) {
5293     default:
5294       return LValueExprEvaluatorBaseTy::VisitCastExpr(E);
5295 
5296     case CK_LValueBitCast:
5297       this->CCEDiag(E, diag::note_constexpr_invalid_cast) << 2;
5298       if (!Visit(E->getSubExpr()))
5299         return false;
5300       Result.Designator.setInvalid();
5301       return true;
5302 
5303     case CK_BaseToDerived:
5304       if (!Visit(E->getSubExpr()))
5305         return false;
5306       return HandleBaseToDerivedCast(Info, E, Result);
5307     }
5308   }
5309 };
5310 } // end anonymous namespace
5311 
5312 /// Evaluate an expression as an lvalue. This can be legitimately called on
5313 /// expressions which are not glvalues, in three cases:
5314 ///  * function designators in C, and
5315 ///  * "extern void" objects
5316 ///  * @selector() expressions in Objective-C
5317 static bool EvaluateLValue(const Expr *E, LValue &Result, EvalInfo &Info,
5318                            bool InvalidBaseOK) {
5319   assert(E->isGLValue() || E->getType()->isFunctionType() ||
5320          E->getType()->isVoidType() || isa<ObjCSelectorExpr>(E));
5321   return LValueExprEvaluator(Info, Result, InvalidBaseOK).Visit(E);
5322 }
5323 
5324 bool LValueExprEvaluator::VisitDeclRefExpr(const DeclRefExpr *E) {
5325   if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(E->getDecl()))
5326     return Success(FD);
5327   if (const VarDecl *VD = dyn_cast<VarDecl>(E->getDecl()))
5328     return VisitVarDecl(E, VD);
5329   if (const BindingDecl *BD = dyn_cast<BindingDecl>(E->getDecl()))
5330     return Visit(BD->getBinding());
5331   return Error(E);
5332 }
5333 
5334 
5335 bool LValueExprEvaluator::VisitVarDecl(const Expr *E, const VarDecl *VD) {
5336 
5337   // If we are within a lambda's call operator, check whether the 'VD' referred
5338   // to within 'E' actually represents a lambda-capture that maps to a
5339   // data-member/field within the closure object, and if so, evaluate to the
5340   // field or what the field refers to.
5341   if (Info.CurrentCall && isLambdaCallOperator(Info.CurrentCall->Callee) &&
5342       isa<DeclRefExpr>(E) &&
5343       cast<DeclRefExpr>(E)->refersToEnclosingVariableOrCapture()) {
5344     // We don't always have a complete capture-map when checking or inferring if
5345     // the function call operator meets the requirements of a constexpr function
5346     // - but we don't need to evaluate the captures to determine constexprness
5347     // (dcl.constexpr C++17).
5348     if (Info.checkingPotentialConstantExpression())
5349       return false;
5350 
5351     if (auto *FD = Info.CurrentCall->LambdaCaptureFields.lookup(VD)) {
5352       // Start with 'Result' referring to the complete closure object...
5353       Result = *Info.CurrentCall->This;
5354       // ... then update it to refer to the field of the closure object
5355       // that represents the capture.
5356       if (!HandleLValueMember(Info, E, Result, FD))
5357         return false;
5358       // And if the field is of reference type, update 'Result' to refer to what
5359       // the field refers to.
5360       if (FD->getType()->isReferenceType()) {
5361         APValue RVal;
5362         if (!handleLValueToRValueConversion(Info, E, FD->getType(), Result,
5363                                             RVal))
5364           return false;
5365         Result.setFrom(Info.Ctx, RVal);
5366       }
5367       return true;
5368     }
5369   }
5370   CallStackFrame *Frame = nullptr;
5371   if (VD->hasLocalStorage() && Info.CurrentCall->Index > 1) {
5372     // Only if a local variable was declared in the function currently being
5373     // evaluated, do we expect to be able to find its value in the current
5374     // frame. (Otherwise it was likely declared in an enclosing context and
5375     // could either have a valid evaluatable value (for e.g. a constexpr
5376     // variable) or be ill-formed (and trigger an appropriate evaluation
5377     // diagnostic)).
5378     if (Info.CurrentCall->Callee &&
5379         Info.CurrentCall->Callee->Equals(VD->getDeclContext())) {
5380       Frame = Info.CurrentCall;
5381     }
5382   }
5383 
5384   if (!VD->getType()->isReferenceType()) {
5385     if (Frame) {
5386       Result.set({VD, Frame->Index,
5387                   Info.CurrentCall->getCurrentTemporaryVersion(VD)});
5388       return true;
5389     }
5390     return Success(VD);
5391   }
5392 
5393   APValue *V;
5394   if (!evaluateVarDeclInit(Info, E, VD, Frame, V, nullptr))
5395     return false;
5396   if (V->isUninit()) {
5397     if (!Info.checkingPotentialConstantExpression())
5398       Info.FFDiag(E, diag::note_constexpr_use_uninit_reference);
5399     return false;
5400   }
5401   return Success(*V, E);
5402 }
5403 
5404 bool LValueExprEvaluator::VisitMaterializeTemporaryExpr(
5405     const MaterializeTemporaryExpr *E) {
5406   // Walk through the expression to find the materialized temporary itself.
5407   SmallVector<const Expr *, 2> CommaLHSs;
5408   SmallVector<SubobjectAdjustment, 2> Adjustments;
5409   const Expr *Inner = E->GetTemporaryExpr()->
5410       skipRValueSubobjectAdjustments(CommaLHSs, Adjustments);
5411 
5412   // If we passed any comma operators, evaluate their LHSs.
5413   for (unsigned I = 0, N = CommaLHSs.size(); I != N; ++I)
5414     if (!EvaluateIgnoredValue(Info, CommaLHSs[I]))
5415       return false;
5416 
5417   // A materialized temporary with static storage duration can appear within the
5418   // result of a constant expression evaluation, so we need to preserve its
5419   // value for use outside this evaluation.
5420   APValue *Value;
5421   if (E->getStorageDuration() == SD_Static) {
5422     Value = Info.Ctx.getMaterializedTemporaryValue(E, true);
5423     *Value = APValue();
5424     Result.set(E);
5425   } else {
5426     Value = &createTemporary(E, E->getStorageDuration() == SD_Automatic, Result,
5427                              *Info.CurrentCall);
5428   }
5429 
5430   QualType Type = Inner->getType();
5431 
5432   // Materialize the temporary itself.
5433   if (!EvaluateInPlace(*Value, Info, Result, Inner) ||
5434       (E->getStorageDuration() == SD_Static &&
5435        !CheckConstantExpression(Info, E->getExprLoc(), Type, *Value))) {
5436     *Value = APValue();
5437     return false;
5438   }
5439 
5440   // Adjust our lvalue to refer to the desired subobject.
5441   for (unsigned I = Adjustments.size(); I != 0; /**/) {
5442     --I;
5443     switch (Adjustments[I].Kind) {
5444     case SubobjectAdjustment::DerivedToBaseAdjustment:
5445       if (!HandleLValueBasePath(Info, Adjustments[I].DerivedToBase.BasePath,
5446                                 Type, Result))
5447         return false;
5448       Type = Adjustments[I].DerivedToBase.BasePath->getType();
5449       break;
5450 
5451     case SubobjectAdjustment::FieldAdjustment:
5452       if (!HandleLValueMember(Info, E, Result, Adjustments[I].Field))
5453         return false;
5454       Type = Adjustments[I].Field->getType();
5455       break;
5456 
5457     case SubobjectAdjustment::MemberPointerAdjustment:
5458       if (!HandleMemberPointerAccess(this->Info, Type, Result,
5459                                      Adjustments[I].Ptr.RHS))
5460         return false;
5461       Type = Adjustments[I].Ptr.MPT->getPointeeType();
5462       break;
5463     }
5464   }
5465 
5466   return true;
5467 }
5468 
5469 bool
5470 LValueExprEvaluator::VisitCompoundLiteralExpr(const CompoundLiteralExpr *E) {
5471   assert((!Info.getLangOpts().CPlusPlus || E->isFileScope()) &&
5472          "lvalue compound literal in c++?");
5473   // Defer visiting the literal until the lvalue-to-rvalue conversion. We can
5474   // only see this when folding in C, so there's no standard to follow here.
5475   return Success(E);
5476 }
5477 
5478 bool LValueExprEvaluator::VisitCXXTypeidExpr(const CXXTypeidExpr *E) {
5479   if (!E->isPotentiallyEvaluated())
5480     return Success(E);
5481 
5482   Info.FFDiag(E, diag::note_constexpr_typeid_polymorphic)
5483     << E->getExprOperand()->getType()
5484     << E->getExprOperand()->getSourceRange();
5485   return false;
5486 }
5487 
5488 bool LValueExprEvaluator::VisitCXXUuidofExpr(const CXXUuidofExpr *E) {
5489   return Success(E);
5490 }
5491 
5492 bool LValueExprEvaluator::VisitMemberExpr(const MemberExpr *E) {
5493   // Handle static data members.
5494   if (const VarDecl *VD = dyn_cast<VarDecl>(E->getMemberDecl())) {
5495     VisitIgnoredBaseExpression(E->getBase());
5496     return VisitVarDecl(E, VD);
5497   }
5498 
5499   // Handle static member functions.
5500   if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(E->getMemberDecl())) {
5501     if (MD->isStatic()) {
5502       VisitIgnoredBaseExpression(E->getBase());
5503       return Success(MD);
5504     }
5505   }
5506 
5507   // Handle non-static data members.
5508   return LValueExprEvaluatorBaseTy::VisitMemberExpr(E);
5509 }
5510 
5511 bool LValueExprEvaluator::VisitArraySubscriptExpr(const ArraySubscriptExpr *E) {
5512   // FIXME: Deal with vectors as array subscript bases.
5513   if (E->getBase()->getType()->isVectorType())
5514     return Error(E);
5515 
5516   bool Success = true;
5517   if (!evaluatePointer(E->getBase(), Result)) {
5518     if (!Info.noteFailure())
5519       return false;
5520     Success = false;
5521   }
5522 
5523   APSInt Index;
5524   if (!EvaluateInteger(E->getIdx(), Index, Info))
5525     return false;
5526 
5527   return Success &&
5528          HandleLValueArrayAdjustment(Info, E, Result, E->getType(), Index);
5529 }
5530 
5531 bool LValueExprEvaluator::VisitUnaryDeref(const UnaryOperator *E) {
5532   return evaluatePointer(E->getSubExpr(), Result);
5533 }
5534 
5535 bool LValueExprEvaluator::VisitUnaryReal(const UnaryOperator *E) {
5536   if (!Visit(E->getSubExpr()))
5537     return false;
5538   // __real is a no-op on scalar lvalues.
5539   if (E->getSubExpr()->getType()->isAnyComplexType())
5540     HandleLValueComplexElement(Info, E, Result, E->getType(), false);
5541   return true;
5542 }
5543 
5544 bool LValueExprEvaluator::VisitUnaryImag(const UnaryOperator *E) {
5545   assert(E->getSubExpr()->getType()->isAnyComplexType() &&
5546          "lvalue __imag__ on scalar?");
5547   if (!Visit(E->getSubExpr()))
5548     return false;
5549   HandleLValueComplexElement(Info, E, Result, E->getType(), true);
5550   return true;
5551 }
5552 
5553 bool LValueExprEvaluator::VisitUnaryPreIncDec(const UnaryOperator *UO) {
5554   if (!Info.getLangOpts().CPlusPlus14 && !Info.keepEvaluatingAfterFailure())
5555     return Error(UO);
5556 
5557   if (!this->Visit(UO->getSubExpr()))
5558     return false;
5559 
5560   return handleIncDec(
5561       this->Info, UO, Result, UO->getSubExpr()->getType(),
5562       UO->isIncrementOp(), nullptr);
5563 }
5564 
5565 bool LValueExprEvaluator::VisitCompoundAssignOperator(
5566     const CompoundAssignOperator *CAO) {
5567   if (!Info.getLangOpts().CPlusPlus14 && !Info.keepEvaluatingAfterFailure())
5568     return Error(CAO);
5569 
5570   APValue RHS;
5571 
5572   // The overall lvalue result is the result of evaluating the LHS.
5573   if (!this->Visit(CAO->getLHS())) {
5574     if (Info.noteFailure())
5575       Evaluate(RHS, this->Info, CAO->getRHS());
5576     return false;
5577   }
5578 
5579   if (!Evaluate(RHS, this->Info, CAO->getRHS()))
5580     return false;
5581 
5582   return handleCompoundAssignment(
5583       this->Info, CAO,
5584       Result, CAO->getLHS()->getType(), CAO->getComputationLHSType(),
5585       CAO->getOpForCompoundAssignment(CAO->getOpcode()), RHS);
5586 }
5587 
5588 bool LValueExprEvaluator::VisitBinAssign(const BinaryOperator *E) {
5589   if (!Info.getLangOpts().CPlusPlus14 && !Info.keepEvaluatingAfterFailure())
5590     return Error(E);
5591 
5592   APValue NewVal;
5593 
5594   if (!this->Visit(E->getLHS())) {
5595     if (Info.noteFailure())
5596       Evaluate(NewVal, this->Info, E->getRHS());
5597     return false;
5598   }
5599 
5600   if (!Evaluate(NewVal, this->Info, E->getRHS()))
5601     return false;
5602 
5603   return handleAssignment(this->Info, E, Result, E->getLHS()->getType(),
5604                           NewVal);
5605 }
5606 
5607 //===----------------------------------------------------------------------===//
5608 // Pointer Evaluation
5609 //===----------------------------------------------------------------------===//
5610 
5611 /// Attempts to compute the number of bytes available at the pointer
5612 /// returned by a function with the alloc_size attribute. Returns true if we
5613 /// were successful. Places an unsigned number into `Result`.
5614 ///
5615 /// This expects the given CallExpr to be a call to a function with an
5616 /// alloc_size attribute.
5617 static bool getBytesReturnedByAllocSizeCall(const ASTContext &Ctx,
5618                                             const CallExpr *Call,
5619                                             llvm::APInt &Result) {
5620   const AllocSizeAttr *AllocSize = getAllocSizeAttr(Call);
5621 
5622   assert(AllocSize && AllocSize->getElemSizeParam().isValid());
5623   unsigned SizeArgNo = AllocSize->getElemSizeParam().getASTIndex();
5624   unsigned BitsInSizeT = Ctx.getTypeSize(Ctx.getSizeType());
5625   if (Call->getNumArgs() <= SizeArgNo)
5626     return false;
5627 
5628   auto EvaluateAsSizeT = [&](const Expr *E, APSInt &Into) {
5629     if (!E->EvaluateAsInt(Into, Ctx, Expr::SE_AllowSideEffects))
5630       return false;
5631     if (Into.isNegative() || !Into.isIntN(BitsInSizeT))
5632       return false;
5633     Into = Into.zextOrSelf(BitsInSizeT);
5634     return true;
5635   };
5636 
5637   APSInt SizeOfElem;
5638   if (!EvaluateAsSizeT(Call->getArg(SizeArgNo), SizeOfElem))
5639     return false;
5640 
5641   if (!AllocSize->getNumElemsParam().isValid()) {
5642     Result = std::move(SizeOfElem);
5643     return true;
5644   }
5645 
5646   APSInt NumberOfElems;
5647   unsigned NumArgNo = AllocSize->getNumElemsParam().getASTIndex();
5648   if (!EvaluateAsSizeT(Call->getArg(NumArgNo), NumberOfElems))
5649     return false;
5650 
5651   bool Overflow;
5652   llvm::APInt BytesAvailable = SizeOfElem.umul_ov(NumberOfElems, Overflow);
5653   if (Overflow)
5654     return false;
5655 
5656   Result = std::move(BytesAvailable);
5657   return true;
5658 }
5659 
5660 /// Convenience function. LVal's base must be a call to an alloc_size
5661 /// function.
5662 static bool getBytesReturnedByAllocSizeCall(const ASTContext &Ctx,
5663                                             const LValue &LVal,
5664                                             llvm::APInt &Result) {
5665   assert(isBaseAnAllocSizeCall(LVal.getLValueBase()) &&
5666          "Can't get the size of a non alloc_size function");
5667   const auto *Base = LVal.getLValueBase().get<const Expr *>();
5668   const CallExpr *CE = tryUnwrapAllocSizeCall(Base);
5669   return getBytesReturnedByAllocSizeCall(Ctx, CE, Result);
5670 }
5671 
5672 /// Attempts to evaluate the given LValueBase as the result of a call to
5673 /// a function with the alloc_size attribute. If it was possible to do so, this
5674 /// function will return true, make Result's Base point to said function call,
5675 /// and mark Result's Base as invalid.
5676 static bool evaluateLValueAsAllocSize(EvalInfo &Info, APValue::LValueBase Base,
5677                                       LValue &Result) {
5678   if (Base.isNull())
5679     return false;
5680 
5681   // Because we do no form of static analysis, we only support const variables.
5682   //
5683   // Additionally, we can't support parameters, nor can we support static
5684   // variables (in the latter case, use-before-assign isn't UB; in the former,
5685   // we have no clue what they'll be assigned to).
5686   const auto *VD =
5687       dyn_cast_or_null<VarDecl>(Base.dyn_cast<const ValueDecl *>());
5688   if (!VD || !VD->isLocalVarDecl() || !VD->getType().isConstQualified())
5689     return false;
5690 
5691   const Expr *Init = VD->getAnyInitializer();
5692   if (!Init)
5693     return false;
5694 
5695   const Expr *E = Init->IgnoreParens();
5696   if (!tryUnwrapAllocSizeCall(E))
5697     return false;
5698 
5699   // Store E instead of E unwrapped so that the type of the LValue's base is
5700   // what the user wanted.
5701   Result.setInvalid(E);
5702 
5703   QualType Pointee = E->getType()->castAs<PointerType>()->getPointeeType();
5704   Result.addUnsizedArray(Info, E, Pointee);
5705   return true;
5706 }
5707 
5708 namespace {
5709 class PointerExprEvaluator
5710   : public ExprEvaluatorBase<PointerExprEvaluator> {
5711   LValue &Result;
5712   bool InvalidBaseOK;
5713 
5714   bool Success(const Expr *E) {
5715     Result.set(E);
5716     return true;
5717   }
5718 
5719   bool evaluateLValue(const Expr *E, LValue &Result) {
5720     return EvaluateLValue(E, Result, Info, InvalidBaseOK);
5721   }
5722 
5723   bool evaluatePointer(const Expr *E, LValue &Result) {
5724     return EvaluatePointer(E, Result, Info, InvalidBaseOK);
5725   }
5726 
5727   bool visitNonBuiltinCallExpr(const CallExpr *E);
5728 public:
5729 
5730   PointerExprEvaluator(EvalInfo &info, LValue &Result, bool InvalidBaseOK)
5731       : ExprEvaluatorBaseTy(info), Result(Result),
5732         InvalidBaseOK(InvalidBaseOK) {}
5733 
5734   bool Success(const APValue &V, const Expr *E) {
5735     Result.setFrom(Info.Ctx, V);
5736     return true;
5737   }
5738   bool ZeroInitialization(const Expr *E) {
5739     auto TargetVal = Info.Ctx.getTargetNullPointerValue(E->getType());
5740     Result.setNull(E->getType(), TargetVal);
5741     return true;
5742   }
5743 
5744   bool VisitBinaryOperator(const BinaryOperator *E);
5745   bool VisitCastExpr(const CastExpr* E);
5746   bool VisitUnaryAddrOf(const UnaryOperator *E);
5747   bool VisitObjCStringLiteral(const ObjCStringLiteral *E)
5748       { return Success(E); }
5749   bool VisitObjCBoxedExpr(const ObjCBoxedExpr *E) {
5750     if (Info.noteFailure())
5751       EvaluateIgnoredValue(Info, E->getSubExpr());
5752     return Error(E);
5753   }
5754   bool VisitAddrLabelExpr(const AddrLabelExpr *E)
5755       { return Success(E); }
5756   bool VisitCallExpr(const CallExpr *E);
5757   bool VisitBuiltinCallExpr(const CallExpr *E, unsigned BuiltinOp);
5758   bool VisitBlockExpr(const BlockExpr *E) {
5759     if (!E->getBlockDecl()->hasCaptures())
5760       return Success(E);
5761     return Error(E);
5762   }
5763   bool VisitCXXThisExpr(const CXXThisExpr *E) {
5764     // Can't look at 'this' when checking a potential constant expression.
5765     if (Info.checkingPotentialConstantExpression())
5766       return false;
5767     if (!Info.CurrentCall->This) {
5768       if (Info.getLangOpts().CPlusPlus11)
5769         Info.FFDiag(E, diag::note_constexpr_this) << E->isImplicit();
5770       else
5771         Info.FFDiag(E);
5772       return false;
5773     }
5774     Result = *Info.CurrentCall->This;
5775     // If we are inside a lambda's call operator, the 'this' expression refers
5776     // to the enclosing '*this' object (either by value or reference) which is
5777     // either copied into the closure object's field that represents the '*this'
5778     // or refers to '*this'.
5779     if (isLambdaCallOperator(Info.CurrentCall->Callee)) {
5780       // Update 'Result' to refer to the data member/field of the closure object
5781       // that represents the '*this' capture.
5782       if (!HandleLValueMember(Info, E, Result,
5783                              Info.CurrentCall->LambdaThisCaptureField))
5784         return false;
5785       // If we captured '*this' by reference, replace the field with its referent.
5786       if (Info.CurrentCall->LambdaThisCaptureField->getType()
5787               ->isPointerType()) {
5788         APValue RVal;
5789         if (!handleLValueToRValueConversion(Info, E, E->getType(), Result,
5790                                             RVal))
5791           return false;
5792 
5793         Result.setFrom(Info.Ctx, RVal);
5794       }
5795     }
5796     return true;
5797   }
5798 
5799   // FIXME: Missing: @protocol, @selector
5800 };
5801 } // end anonymous namespace
5802 
5803 static bool EvaluatePointer(const Expr* E, LValue& Result, EvalInfo &Info,
5804                             bool InvalidBaseOK) {
5805   assert(E->isRValue() && E->getType()->hasPointerRepresentation());
5806   return PointerExprEvaluator(Info, Result, InvalidBaseOK).Visit(E);
5807 }
5808 
5809 bool PointerExprEvaluator::VisitBinaryOperator(const BinaryOperator *E) {
5810   if (E->getOpcode() != BO_Add &&
5811       E->getOpcode() != BO_Sub)
5812     return ExprEvaluatorBaseTy::VisitBinaryOperator(E);
5813 
5814   const Expr *PExp = E->getLHS();
5815   const Expr *IExp = E->getRHS();
5816   if (IExp->getType()->isPointerType())
5817     std::swap(PExp, IExp);
5818 
5819   bool EvalPtrOK = evaluatePointer(PExp, Result);
5820   if (!EvalPtrOK && !Info.noteFailure())
5821     return false;
5822 
5823   llvm::APSInt Offset;
5824   if (!EvaluateInteger(IExp, Offset, Info) || !EvalPtrOK)
5825     return false;
5826 
5827   if (E->getOpcode() == BO_Sub)
5828     negateAsSigned(Offset);
5829 
5830   QualType Pointee = PExp->getType()->castAs<PointerType>()->getPointeeType();
5831   return HandleLValueArrayAdjustment(Info, E, Result, Pointee, Offset);
5832 }
5833 
5834 bool PointerExprEvaluator::VisitUnaryAddrOf(const UnaryOperator *E) {
5835   return evaluateLValue(E->getSubExpr(), Result);
5836 }
5837 
5838 bool PointerExprEvaluator::VisitCastExpr(const CastExpr *E) {
5839   const Expr *SubExpr = E->getSubExpr();
5840 
5841   switch (E->getCastKind()) {
5842   default:
5843     break;
5844 
5845   case CK_BitCast:
5846   case CK_CPointerToObjCPointerCast:
5847   case CK_BlockPointerToObjCPointerCast:
5848   case CK_AnyPointerToBlockPointerCast:
5849   case CK_AddressSpaceConversion:
5850     if (!Visit(SubExpr))
5851       return false;
5852     // Bitcasts to cv void* are static_casts, not reinterpret_casts, so are
5853     // permitted in constant expressions in C++11. Bitcasts from cv void* are
5854     // also static_casts, but we disallow them as a resolution to DR1312.
5855     if (!E->getType()->isVoidPointerType()) {
5856       // If we changed anything other than cvr-qualifiers, we can't use this
5857       // value for constant folding. FIXME: Qualification conversions should
5858       // always be CK_NoOp, but we get this wrong in C.
5859       if (!Info.Ctx.hasCvrSimilarType(E->getType(), E->getSubExpr()->getType()))
5860         Result.Designator.setInvalid();
5861       if (SubExpr->getType()->isVoidPointerType())
5862         CCEDiag(E, diag::note_constexpr_invalid_cast)
5863           << 3 << SubExpr->getType();
5864       else
5865         CCEDiag(E, diag::note_constexpr_invalid_cast) << 2;
5866     }
5867     if (E->getCastKind() == CK_AddressSpaceConversion && Result.IsNullPtr)
5868       ZeroInitialization(E);
5869     return true;
5870 
5871   case CK_DerivedToBase:
5872   case CK_UncheckedDerivedToBase:
5873     if (!evaluatePointer(E->getSubExpr(), Result))
5874       return false;
5875     if (!Result.Base && Result.Offset.isZero())
5876       return true;
5877 
5878     // Now figure out the necessary offset to add to the base LV to get from
5879     // the derived class to the base class.
5880     return HandleLValueBasePath(Info, E, E->getSubExpr()->getType()->
5881                                   castAs<PointerType>()->getPointeeType(),
5882                                 Result);
5883 
5884   case CK_BaseToDerived:
5885     if (!Visit(E->getSubExpr()))
5886       return false;
5887     if (!Result.Base && Result.Offset.isZero())
5888       return true;
5889     return HandleBaseToDerivedCast(Info, E, Result);
5890 
5891   case CK_NullToPointer:
5892     VisitIgnoredValue(E->getSubExpr());
5893     return ZeroInitialization(E);
5894 
5895   case CK_IntegralToPointer: {
5896     CCEDiag(E, diag::note_constexpr_invalid_cast) << 2;
5897 
5898     APValue Value;
5899     if (!EvaluateIntegerOrLValue(SubExpr, Value, Info))
5900       break;
5901 
5902     if (Value.isInt()) {
5903       unsigned Size = Info.Ctx.getTypeSize(E->getType());
5904       uint64_t N = Value.getInt().extOrTrunc(Size).getZExtValue();
5905       Result.Base = (Expr*)nullptr;
5906       Result.InvalidBase = false;
5907       Result.Offset = CharUnits::fromQuantity(N);
5908       Result.Designator.setInvalid();
5909       Result.IsNullPtr = false;
5910       return true;
5911     } else {
5912       // Cast is of an lvalue, no need to change value.
5913       Result.setFrom(Info.Ctx, Value);
5914       return true;
5915     }
5916   }
5917 
5918   case CK_ArrayToPointerDecay: {
5919     if (SubExpr->isGLValue()) {
5920       if (!evaluateLValue(SubExpr, Result))
5921         return false;
5922     } else {
5923       APValue &Value = createTemporary(SubExpr, false, Result,
5924                                        *Info.CurrentCall);
5925       if (!EvaluateInPlace(Value, Info, Result, SubExpr))
5926         return false;
5927     }
5928     // The result is a pointer to the first element of the array.
5929     auto *AT = Info.Ctx.getAsArrayType(SubExpr->getType());
5930     if (auto *CAT = dyn_cast<ConstantArrayType>(AT))
5931       Result.addArray(Info, E, CAT);
5932     else
5933       Result.addUnsizedArray(Info, E, AT->getElementType());
5934     return true;
5935   }
5936 
5937   case CK_FunctionToPointerDecay:
5938     return evaluateLValue(SubExpr, Result);
5939 
5940   case CK_LValueToRValue: {
5941     LValue LVal;
5942     if (!evaluateLValue(E->getSubExpr(), LVal))
5943       return false;
5944 
5945     APValue RVal;
5946     // Note, we use the subexpression's type in order to retain cv-qualifiers.
5947     if (!handleLValueToRValueConversion(Info, E, E->getSubExpr()->getType(),
5948                                         LVal, RVal))
5949       return InvalidBaseOK &&
5950              evaluateLValueAsAllocSize(Info, LVal.Base, Result);
5951     return Success(RVal, E);
5952   }
5953   }
5954 
5955   return ExprEvaluatorBaseTy::VisitCastExpr(E);
5956 }
5957 
5958 static CharUnits GetAlignOfType(EvalInfo &Info, QualType T) {
5959   // C++ [expr.alignof]p3:
5960   //     When alignof is applied to a reference type, the result is the
5961   //     alignment of the referenced type.
5962   if (const ReferenceType *Ref = T->getAs<ReferenceType>())
5963     T = Ref->getPointeeType();
5964 
5965   // __alignof is defined to return the preferred alignment.
5966   if (T.getQualifiers().hasUnaligned())
5967     return CharUnits::One();
5968   return Info.Ctx.toCharUnitsFromBits(
5969     Info.Ctx.getPreferredTypeAlign(T.getTypePtr()));
5970 }
5971 
5972 static CharUnits GetAlignOfExpr(EvalInfo &Info, const Expr *E) {
5973   E = E->IgnoreParens();
5974 
5975   // The kinds of expressions that we have special-case logic here for
5976   // should be kept up to date with the special checks for those
5977   // expressions in Sema.
5978 
5979   // alignof decl is always accepted, even if it doesn't make sense: we default
5980   // to 1 in those cases.
5981   if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E))
5982     return Info.Ctx.getDeclAlign(DRE->getDecl(),
5983                                  /*RefAsPointee*/true);
5984 
5985   if (const MemberExpr *ME = dyn_cast<MemberExpr>(E))
5986     return Info.Ctx.getDeclAlign(ME->getMemberDecl(),
5987                                  /*RefAsPointee*/true);
5988 
5989   return GetAlignOfType(Info, E->getType());
5990 }
5991 
5992 // To be clear: this happily visits unsupported builtins. Better name welcomed.
5993 bool PointerExprEvaluator::visitNonBuiltinCallExpr(const CallExpr *E) {
5994   if (ExprEvaluatorBaseTy::VisitCallExpr(E))
5995     return true;
5996 
5997   if (!(InvalidBaseOK && getAllocSizeAttr(E)))
5998     return false;
5999 
6000   Result.setInvalid(E);
6001   QualType PointeeTy = E->getType()->castAs<PointerType>()->getPointeeType();
6002   Result.addUnsizedArray(Info, E, PointeeTy);
6003   return true;
6004 }
6005 
6006 bool PointerExprEvaluator::VisitCallExpr(const CallExpr *E) {
6007   if (IsStringLiteralCall(E))
6008     return Success(E);
6009 
6010   if (unsigned BuiltinOp = E->getBuiltinCallee())
6011     return VisitBuiltinCallExpr(E, BuiltinOp);
6012 
6013   return visitNonBuiltinCallExpr(E);
6014 }
6015 
6016 bool PointerExprEvaluator::VisitBuiltinCallExpr(const CallExpr *E,
6017                                                 unsigned BuiltinOp) {
6018   switch (BuiltinOp) {
6019   case Builtin::BI__builtin_addressof:
6020     return evaluateLValue(E->getArg(0), Result);
6021   case Builtin::BI__builtin_assume_aligned: {
6022     // We need to be very careful here because: if the pointer does not have the
6023     // asserted alignment, then the behavior is undefined, and undefined
6024     // behavior is non-constant.
6025     if (!evaluatePointer(E->getArg(0), Result))
6026       return false;
6027 
6028     LValue OffsetResult(Result);
6029     APSInt Alignment;
6030     if (!EvaluateInteger(E->getArg(1), Alignment, Info))
6031       return false;
6032     CharUnits Align = CharUnits::fromQuantity(Alignment.getZExtValue());
6033 
6034     if (E->getNumArgs() > 2) {
6035       APSInt Offset;
6036       if (!EvaluateInteger(E->getArg(2), Offset, Info))
6037         return false;
6038 
6039       int64_t AdditionalOffset = -Offset.getZExtValue();
6040       OffsetResult.Offset += CharUnits::fromQuantity(AdditionalOffset);
6041     }
6042 
6043     // If there is a base object, then it must have the correct alignment.
6044     if (OffsetResult.Base) {
6045       CharUnits BaseAlignment;
6046       if (const ValueDecl *VD =
6047           OffsetResult.Base.dyn_cast<const ValueDecl*>()) {
6048         BaseAlignment = Info.Ctx.getDeclAlign(VD);
6049       } else {
6050         BaseAlignment =
6051           GetAlignOfExpr(Info, OffsetResult.Base.get<const Expr*>());
6052       }
6053 
6054       if (BaseAlignment < Align) {
6055         Result.Designator.setInvalid();
6056         // FIXME: Add support to Diagnostic for long / long long.
6057         CCEDiag(E->getArg(0),
6058                 diag::note_constexpr_baa_insufficient_alignment) << 0
6059           << (unsigned)BaseAlignment.getQuantity()
6060           << (unsigned)Align.getQuantity();
6061         return false;
6062       }
6063     }
6064 
6065     // The offset must also have the correct alignment.
6066     if (OffsetResult.Offset.alignTo(Align) != OffsetResult.Offset) {
6067       Result.Designator.setInvalid();
6068 
6069       (OffsetResult.Base
6070            ? CCEDiag(E->getArg(0),
6071                      diag::note_constexpr_baa_insufficient_alignment) << 1
6072            : CCEDiag(E->getArg(0),
6073                      diag::note_constexpr_baa_value_insufficient_alignment))
6074         << (int)OffsetResult.Offset.getQuantity()
6075         << (unsigned)Align.getQuantity();
6076       return false;
6077     }
6078 
6079     return true;
6080   }
6081 
6082   case Builtin::BIstrchr:
6083   case Builtin::BIwcschr:
6084   case Builtin::BImemchr:
6085   case Builtin::BIwmemchr:
6086     if (Info.getLangOpts().CPlusPlus11)
6087       Info.CCEDiag(E, diag::note_constexpr_invalid_function)
6088         << /*isConstexpr*/0 << /*isConstructor*/0
6089         << (std::string("'") + Info.Ctx.BuiltinInfo.getName(BuiltinOp) + "'");
6090     else
6091       Info.CCEDiag(E, diag::note_invalid_subexpr_in_const_expr);
6092     LLVM_FALLTHROUGH;
6093   case Builtin::BI__builtin_strchr:
6094   case Builtin::BI__builtin_wcschr:
6095   case Builtin::BI__builtin_memchr:
6096   case Builtin::BI__builtin_char_memchr:
6097   case Builtin::BI__builtin_wmemchr: {
6098     if (!Visit(E->getArg(0)))
6099       return false;
6100     APSInt Desired;
6101     if (!EvaluateInteger(E->getArg(1), Desired, Info))
6102       return false;
6103     uint64_t MaxLength = uint64_t(-1);
6104     if (BuiltinOp != Builtin::BIstrchr &&
6105         BuiltinOp != Builtin::BIwcschr &&
6106         BuiltinOp != Builtin::BI__builtin_strchr &&
6107         BuiltinOp != Builtin::BI__builtin_wcschr) {
6108       APSInt N;
6109       if (!EvaluateInteger(E->getArg(2), N, Info))
6110         return false;
6111       MaxLength = N.getExtValue();
6112     }
6113 
6114     QualType CharTy = E->getArg(0)->getType()->getPointeeType();
6115 
6116     // Figure out what value we're actually looking for (after converting to
6117     // the corresponding unsigned type if necessary).
6118     uint64_t DesiredVal;
6119     bool StopAtNull = false;
6120     switch (BuiltinOp) {
6121     case Builtin::BIstrchr:
6122     case Builtin::BI__builtin_strchr:
6123       // strchr compares directly to the passed integer, and therefore
6124       // always fails if given an int that is not a char.
6125       if (!APSInt::isSameValue(HandleIntToIntCast(Info, E, CharTy,
6126                                                   E->getArg(1)->getType(),
6127                                                   Desired),
6128                                Desired))
6129         return ZeroInitialization(E);
6130       StopAtNull = true;
6131       LLVM_FALLTHROUGH;
6132     case Builtin::BImemchr:
6133     case Builtin::BI__builtin_memchr:
6134     case Builtin::BI__builtin_char_memchr:
6135       // memchr compares by converting both sides to unsigned char. That's also
6136       // correct for strchr if we get this far (to cope with plain char being
6137       // unsigned in the strchr case).
6138       DesiredVal = Desired.trunc(Info.Ctx.getCharWidth()).getZExtValue();
6139       break;
6140 
6141     case Builtin::BIwcschr:
6142     case Builtin::BI__builtin_wcschr:
6143       StopAtNull = true;
6144       LLVM_FALLTHROUGH;
6145     case Builtin::BIwmemchr:
6146     case Builtin::BI__builtin_wmemchr:
6147       // wcschr and wmemchr are given a wchar_t to look for. Just use it.
6148       DesiredVal = Desired.getZExtValue();
6149       break;
6150     }
6151 
6152     for (; MaxLength; --MaxLength) {
6153       APValue Char;
6154       if (!handleLValueToRValueConversion(Info, E, CharTy, Result, Char) ||
6155           !Char.isInt())
6156         return false;
6157       if (Char.getInt().getZExtValue() == DesiredVal)
6158         return true;
6159       if (StopAtNull && !Char.getInt())
6160         break;
6161       if (!HandleLValueArrayAdjustment(Info, E, Result, CharTy, 1))
6162         return false;
6163     }
6164     // Not found: return nullptr.
6165     return ZeroInitialization(E);
6166   }
6167 
6168   case Builtin::BImemcpy:
6169   case Builtin::BImemmove:
6170   case Builtin::BIwmemcpy:
6171   case Builtin::BIwmemmove:
6172     if (Info.getLangOpts().CPlusPlus11)
6173       Info.CCEDiag(E, diag::note_constexpr_invalid_function)
6174         << /*isConstexpr*/0 << /*isConstructor*/0
6175         << (std::string("'") + Info.Ctx.BuiltinInfo.getName(BuiltinOp) + "'");
6176     else
6177       Info.CCEDiag(E, diag::note_invalid_subexpr_in_const_expr);
6178     LLVM_FALLTHROUGH;
6179   case Builtin::BI__builtin_memcpy:
6180   case Builtin::BI__builtin_memmove:
6181   case Builtin::BI__builtin_wmemcpy:
6182   case Builtin::BI__builtin_wmemmove: {
6183     bool WChar = BuiltinOp == Builtin::BIwmemcpy ||
6184                  BuiltinOp == Builtin::BIwmemmove ||
6185                  BuiltinOp == Builtin::BI__builtin_wmemcpy ||
6186                  BuiltinOp == Builtin::BI__builtin_wmemmove;
6187     bool Move = BuiltinOp == Builtin::BImemmove ||
6188                 BuiltinOp == Builtin::BIwmemmove ||
6189                 BuiltinOp == Builtin::BI__builtin_memmove ||
6190                 BuiltinOp == Builtin::BI__builtin_wmemmove;
6191 
6192     // The result of mem* is the first argument.
6193     if (!Visit(E->getArg(0)) || Result.Designator.Invalid)
6194       return false;
6195     LValue Dest = Result;
6196 
6197     LValue Src;
6198     if (!EvaluatePointer(E->getArg(1), Src, Info) || Src.Designator.Invalid)
6199       return false;
6200 
6201     APSInt N;
6202     if (!EvaluateInteger(E->getArg(2), N, Info))
6203       return false;
6204     assert(!N.isSigned() && "memcpy and friends take an unsigned size");
6205 
6206     // If the size is zero, we treat this as always being a valid no-op.
6207     // (Even if one of the src and dest pointers is null.)
6208     if (!N)
6209       return true;
6210 
6211     // We require that Src and Dest are both pointers to arrays of
6212     // trivially-copyable type. (For the wide version, the designator will be
6213     // invalid if the designated object is not a wchar_t.)
6214     QualType T = Dest.Designator.getType(Info.Ctx);
6215     QualType SrcT = Src.Designator.getType(Info.Ctx);
6216     if (!Info.Ctx.hasSameUnqualifiedType(T, SrcT)) {
6217       Info.FFDiag(E, diag::note_constexpr_memcpy_type_pun) << Move << SrcT << T;
6218       return false;
6219     }
6220     if (!T.isTriviallyCopyableType(Info.Ctx)) {
6221       Info.FFDiag(E, diag::note_constexpr_memcpy_nontrivial) << Move << T;
6222       return false;
6223     }
6224 
6225     // Figure out how many T's we're copying.
6226     uint64_t TSize = Info.Ctx.getTypeSizeInChars(T).getQuantity();
6227     if (!WChar) {
6228       uint64_t Remainder;
6229       llvm::APInt OrigN = N;
6230       llvm::APInt::udivrem(OrigN, TSize, N, Remainder);
6231       if (Remainder) {
6232         Info.FFDiag(E, diag::note_constexpr_memcpy_unsupported)
6233             << Move << WChar << 0 << T << OrigN.toString(10, /*Signed*/false)
6234             << (unsigned)TSize;
6235         return false;
6236       }
6237     }
6238 
6239     // Check that the copying will remain within the arrays, just so that we
6240     // can give a more meaningful diagnostic. This implicitly also checks that
6241     // N fits into 64 bits.
6242     uint64_t RemainingSrcSize = Src.Designator.validIndexAdjustments().second;
6243     uint64_t RemainingDestSize = Dest.Designator.validIndexAdjustments().second;
6244     if (N.ugt(RemainingSrcSize) || N.ugt(RemainingDestSize)) {
6245       Info.FFDiag(E, diag::note_constexpr_memcpy_unsupported)
6246           << Move << WChar << (N.ugt(RemainingSrcSize) ? 1 : 2) << T
6247           << N.toString(10, /*Signed*/false);
6248       return false;
6249     }
6250     uint64_t NElems = N.getZExtValue();
6251     uint64_t NBytes = NElems * TSize;
6252 
6253     // Check for overlap.
6254     int Direction = 1;
6255     if (HasSameBase(Src, Dest)) {
6256       uint64_t SrcOffset = Src.getLValueOffset().getQuantity();
6257       uint64_t DestOffset = Dest.getLValueOffset().getQuantity();
6258       if (DestOffset >= SrcOffset && DestOffset - SrcOffset < NBytes) {
6259         // Dest is inside the source region.
6260         if (!Move) {
6261           Info.FFDiag(E, diag::note_constexpr_memcpy_overlap) << WChar;
6262           return false;
6263         }
6264         // For memmove and friends, copy backwards.
6265         if (!HandleLValueArrayAdjustment(Info, E, Src, T, NElems - 1) ||
6266             !HandleLValueArrayAdjustment(Info, E, Dest, T, NElems - 1))
6267           return false;
6268         Direction = -1;
6269       } else if (!Move && SrcOffset >= DestOffset &&
6270                  SrcOffset - DestOffset < NBytes) {
6271         // Src is inside the destination region for memcpy: invalid.
6272         Info.FFDiag(E, diag::note_constexpr_memcpy_overlap) << WChar;
6273         return false;
6274       }
6275     }
6276 
6277     while (true) {
6278       APValue Val;
6279       if (!handleLValueToRValueConversion(Info, E, T, Src, Val) ||
6280           !handleAssignment(Info, E, Dest, T, Val))
6281         return false;
6282       // Do not iterate past the last element; if we're copying backwards, that
6283       // might take us off the start of the array.
6284       if (--NElems == 0)
6285         return true;
6286       if (!HandleLValueArrayAdjustment(Info, E, Src, T, Direction) ||
6287           !HandleLValueArrayAdjustment(Info, E, Dest, T, Direction))
6288         return false;
6289     }
6290   }
6291 
6292   default:
6293     return visitNonBuiltinCallExpr(E);
6294   }
6295 }
6296 
6297 //===----------------------------------------------------------------------===//
6298 // Member Pointer Evaluation
6299 //===----------------------------------------------------------------------===//
6300 
6301 namespace {
6302 class MemberPointerExprEvaluator
6303   : public ExprEvaluatorBase<MemberPointerExprEvaluator> {
6304   MemberPtr &Result;
6305 
6306   bool Success(const ValueDecl *D) {
6307     Result = MemberPtr(D);
6308     return true;
6309   }
6310 public:
6311 
6312   MemberPointerExprEvaluator(EvalInfo &Info, MemberPtr &Result)
6313     : ExprEvaluatorBaseTy(Info), Result(Result) {}
6314 
6315   bool Success(const APValue &V, const Expr *E) {
6316     Result.setFrom(V);
6317     return true;
6318   }
6319   bool ZeroInitialization(const Expr *E) {
6320     return Success((const ValueDecl*)nullptr);
6321   }
6322 
6323   bool VisitCastExpr(const CastExpr *E);
6324   bool VisitUnaryAddrOf(const UnaryOperator *E);
6325 };
6326 } // end anonymous namespace
6327 
6328 static bool EvaluateMemberPointer(const Expr *E, MemberPtr &Result,
6329                                   EvalInfo &Info) {
6330   assert(E->isRValue() && E->getType()->isMemberPointerType());
6331   return MemberPointerExprEvaluator(Info, Result).Visit(E);
6332 }
6333 
6334 bool MemberPointerExprEvaluator::VisitCastExpr(const CastExpr *E) {
6335   switch (E->getCastKind()) {
6336   default:
6337     return ExprEvaluatorBaseTy::VisitCastExpr(E);
6338 
6339   case CK_NullToMemberPointer:
6340     VisitIgnoredValue(E->getSubExpr());
6341     return ZeroInitialization(E);
6342 
6343   case CK_BaseToDerivedMemberPointer: {
6344     if (!Visit(E->getSubExpr()))
6345       return false;
6346     if (E->path_empty())
6347       return true;
6348     // Base-to-derived member pointer casts store the path in derived-to-base
6349     // order, so iterate backwards. The CXXBaseSpecifier also provides us with
6350     // the wrong end of the derived->base arc, so stagger the path by one class.
6351     typedef std::reverse_iterator<CastExpr::path_const_iterator> ReverseIter;
6352     for (ReverseIter PathI(E->path_end() - 1), PathE(E->path_begin());
6353          PathI != PathE; ++PathI) {
6354       assert(!(*PathI)->isVirtual() && "memptr cast through vbase");
6355       const CXXRecordDecl *Derived = (*PathI)->getType()->getAsCXXRecordDecl();
6356       if (!Result.castToDerived(Derived))
6357         return Error(E);
6358     }
6359     const Type *FinalTy = E->getType()->castAs<MemberPointerType>()->getClass();
6360     if (!Result.castToDerived(FinalTy->getAsCXXRecordDecl()))
6361       return Error(E);
6362     return true;
6363   }
6364 
6365   case CK_DerivedToBaseMemberPointer:
6366     if (!Visit(E->getSubExpr()))
6367       return false;
6368     for (CastExpr::path_const_iterator PathI = E->path_begin(),
6369          PathE = E->path_end(); PathI != PathE; ++PathI) {
6370       assert(!(*PathI)->isVirtual() && "memptr cast through vbase");
6371       const CXXRecordDecl *Base = (*PathI)->getType()->getAsCXXRecordDecl();
6372       if (!Result.castToBase(Base))
6373         return Error(E);
6374     }
6375     return true;
6376   }
6377 }
6378 
6379 bool MemberPointerExprEvaluator::VisitUnaryAddrOf(const UnaryOperator *E) {
6380   // C++11 [expr.unary.op]p3 has very strict rules on how the address of a
6381   // member can be formed.
6382   return Success(cast<DeclRefExpr>(E->getSubExpr())->getDecl());
6383 }
6384 
6385 //===----------------------------------------------------------------------===//
6386 // Record Evaluation
6387 //===----------------------------------------------------------------------===//
6388 
6389 namespace {
6390   class RecordExprEvaluator
6391   : public ExprEvaluatorBase<RecordExprEvaluator> {
6392     const LValue &This;
6393     APValue &Result;
6394   public:
6395 
6396     RecordExprEvaluator(EvalInfo &info, const LValue &This, APValue &Result)
6397       : ExprEvaluatorBaseTy(info), This(This), Result(Result) {}
6398 
6399     bool Success(const APValue &V, const Expr *E) {
6400       Result = V;
6401       return true;
6402     }
6403     bool ZeroInitialization(const Expr *E) {
6404       return ZeroInitialization(E, E->getType());
6405     }
6406     bool ZeroInitialization(const Expr *E, QualType T);
6407 
6408     bool VisitCallExpr(const CallExpr *E) {
6409       return handleCallExpr(E, Result, &This);
6410     }
6411     bool VisitCastExpr(const CastExpr *E);
6412     bool VisitInitListExpr(const InitListExpr *E);
6413     bool VisitCXXConstructExpr(const CXXConstructExpr *E) {
6414       return VisitCXXConstructExpr(E, E->getType());
6415     }
6416     bool VisitLambdaExpr(const LambdaExpr *E);
6417     bool VisitCXXInheritedCtorInitExpr(const CXXInheritedCtorInitExpr *E);
6418     bool VisitCXXConstructExpr(const CXXConstructExpr *E, QualType T);
6419     bool VisitCXXStdInitializerListExpr(const CXXStdInitializerListExpr *E);
6420 
6421     bool VisitBinCmp(const BinaryOperator *E);
6422   };
6423 }
6424 
6425 /// Perform zero-initialization on an object of non-union class type.
6426 /// C++11 [dcl.init]p5:
6427 ///  To zero-initialize an object or reference of type T means:
6428 ///    [...]
6429 ///    -- if T is a (possibly cv-qualified) non-union class type,
6430 ///       each non-static data member and each base-class subobject is
6431 ///       zero-initialized
6432 static bool HandleClassZeroInitialization(EvalInfo &Info, const Expr *E,
6433                                           const RecordDecl *RD,
6434                                           const LValue &This, APValue &Result) {
6435   assert(!RD->isUnion() && "Expected non-union class type");
6436   const CXXRecordDecl *CD = dyn_cast<CXXRecordDecl>(RD);
6437   Result = APValue(APValue::UninitStruct(), CD ? CD->getNumBases() : 0,
6438                    std::distance(RD->field_begin(), RD->field_end()));
6439 
6440   if (RD->isInvalidDecl()) return false;
6441   const ASTRecordLayout &Layout = Info.Ctx.getASTRecordLayout(RD);
6442 
6443   if (CD) {
6444     unsigned Index = 0;
6445     for (CXXRecordDecl::base_class_const_iterator I = CD->bases_begin(),
6446            End = CD->bases_end(); I != End; ++I, ++Index) {
6447       const CXXRecordDecl *Base = I->getType()->getAsCXXRecordDecl();
6448       LValue Subobject = This;
6449       if (!HandleLValueDirectBase(Info, E, Subobject, CD, Base, &Layout))
6450         return false;
6451       if (!HandleClassZeroInitialization(Info, E, Base, Subobject,
6452                                          Result.getStructBase(Index)))
6453         return false;
6454     }
6455   }
6456 
6457   for (const auto *I : RD->fields()) {
6458     // -- if T is a reference type, no initialization is performed.
6459     if (I->getType()->isReferenceType())
6460       continue;
6461 
6462     LValue Subobject = This;
6463     if (!HandleLValueMember(Info, E, Subobject, I, &Layout))
6464       return false;
6465 
6466     ImplicitValueInitExpr VIE(I->getType());
6467     if (!EvaluateInPlace(
6468           Result.getStructField(I->getFieldIndex()), Info, Subobject, &VIE))
6469       return false;
6470   }
6471 
6472   return true;
6473 }
6474 
6475 bool RecordExprEvaluator::ZeroInitialization(const Expr *E, QualType T) {
6476   const RecordDecl *RD = T->castAs<RecordType>()->getDecl();
6477   if (RD->isInvalidDecl()) return false;
6478   if (RD->isUnion()) {
6479     // C++11 [dcl.init]p5: If T is a (possibly cv-qualified) union type, the
6480     // object's first non-static named data member is zero-initialized
6481     RecordDecl::field_iterator I = RD->field_begin();
6482     if (I == RD->field_end()) {
6483       Result = APValue((const FieldDecl*)nullptr);
6484       return true;
6485     }
6486 
6487     LValue Subobject = This;
6488     if (!HandleLValueMember(Info, E, Subobject, *I))
6489       return false;
6490     Result = APValue(*I);
6491     ImplicitValueInitExpr VIE(I->getType());
6492     return EvaluateInPlace(Result.getUnionValue(), Info, Subobject, &VIE);
6493   }
6494 
6495   if (isa<CXXRecordDecl>(RD) && cast<CXXRecordDecl>(RD)->getNumVBases()) {
6496     Info.FFDiag(E, diag::note_constexpr_virtual_base) << RD;
6497     return false;
6498   }
6499 
6500   return HandleClassZeroInitialization(Info, E, RD, This, Result);
6501 }
6502 
6503 bool RecordExprEvaluator::VisitCastExpr(const CastExpr *E) {
6504   switch (E->getCastKind()) {
6505   default:
6506     return ExprEvaluatorBaseTy::VisitCastExpr(E);
6507 
6508   case CK_ConstructorConversion:
6509     return Visit(E->getSubExpr());
6510 
6511   case CK_DerivedToBase:
6512   case CK_UncheckedDerivedToBase: {
6513     APValue DerivedObject;
6514     if (!Evaluate(DerivedObject, Info, E->getSubExpr()))
6515       return false;
6516     if (!DerivedObject.isStruct())
6517       return Error(E->getSubExpr());
6518 
6519     // Derived-to-base rvalue conversion: just slice off the derived part.
6520     APValue *Value = &DerivedObject;
6521     const CXXRecordDecl *RD = E->getSubExpr()->getType()->getAsCXXRecordDecl();
6522     for (CastExpr::path_const_iterator PathI = E->path_begin(),
6523          PathE = E->path_end(); PathI != PathE; ++PathI) {
6524       assert(!(*PathI)->isVirtual() && "record rvalue with virtual base");
6525       const CXXRecordDecl *Base = (*PathI)->getType()->getAsCXXRecordDecl();
6526       Value = &Value->getStructBase(getBaseIndex(RD, Base));
6527       RD = Base;
6528     }
6529     Result = *Value;
6530     return true;
6531   }
6532   }
6533 }
6534 
6535 bool RecordExprEvaluator::VisitInitListExpr(const InitListExpr *E) {
6536   if (E->isTransparent())
6537     return Visit(E->getInit(0));
6538 
6539   const RecordDecl *RD = E->getType()->castAs<RecordType>()->getDecl();
6540   if (RD->isInvalidDecl()) return false;
6541   const ASTRecordLayout &Layout = Info.Ctx.getASTRecordLayout(RD);
6542 
6543   if (RD->isUnion()) {
6544     const FieldDecl *Field = E->getInitializedFieldInUnion();
6545     Result = APValue(Field);
6546     if (!Field)
6547       return true;
6548 
6549     // If the initializer list for a union does not contain any elements, the
6550     // first element of the union is value-initialized.
6551     // FIXME: The element should be initialized from an initializer list.
6552     //        Is this difference ever observable for initializer lists which
6553     //        we don't build?
6554     ImplicitValueInitExpr VIE(Field->getType());
6555     const Expr *InitExpr = E->getNumInits() ? E->getInit(0) : &VIE;
6556 
6557     LValue Subobject = This;
6558     if (!HandleLValueMember(Info, InitExpr, Subobject, Field, &Layout))
6559       return false;
6560 
6561     // Temporarily override This, in case there's a CXXDefaultInitExpr in here.
6562     ThisOverrideRAII ThisOverride(*Info.CurrentCall, &This,
6563                                   isa<CXXDefaultInitExpr>(InitExpr));
6564 
6565     return EvaluateInPlace(Result.getUnionValue(), Info, Subobject, InitExpr);
6566   }
6567 
6568   auto *CXXRD = dyn_cast<CXXRecordDecl>(RD);
6569   if (Result.isUninit())
6570     Result = APValue(APValue::UninitStruct(), CXXRD ? CXXRD->getNumBases() : 0,
6571                      std::distance(RD->field_begin(), RD->field_end()));
6572   unsigned ElementNo = 0;
6573   bool Success = true;
6574 
6575   // Initialize base classes.
6576   if (CXXRD) {
6577     for (const auto &Base : CXXRD->bases()) {
6578       assert(ElementNo < E->getNumInits() && "missing init for base class");
6579       const Expr *Init = E->getInit(ElementNo);
6580 
6581       LValue Subobject = This;
6582       if (!HandleLValueBase(Info, Init, Subobject, CXXRD, &Base))
6583         return false;
6584 
6585       APValue &FieldVal = Result.getStructBase(ElementNo);
6586       if (!EvaluateInPlace(FieldVal, Info, Subobject, Init)) {
6587         if (!Info.noteFailure())
6588           return false;
6589         Success = false;
6590       }
6591       ++ElementNo;
6592     }
6593   }
6594 
6595   // Initialize members.
6596   for (const auto *Field : RD->fields()) {
6597     // Anonymous bit-fields are not considered members of the class for
6598     // purposes of aggregate initialization.
6599     if (Field->isUnnamedBitfield())
6600       continue;
6601 
6602     LValue Subobject = This;
6603 
6604     bool HaveInit = ElementNo < E->getNumInits();
6605 
6606     // FIXME: Diagnostics here should point to the end of the initializer
6607     // list, not the start.
6608     if (!HandleLValueMember(Info, HaveInit ? E->getInit(ElementNo) : E,
6609                             Subobject, Field, &Layout))
6610       return false;
6611 
6612     // Perform an implicit value-initialization for members beyond the end of
6613     // the initializer list.
6614     ImplicitValueInitExpr VIE(HaveInit ? Info.Ctx.IntTy : Field->getType());
6615     const Expr *Init = HaveInit ? E->getInit(ElementNo++) : &VIE;
6616 
6617     // Temporarily override This, in case there's a CXXDefaultInitExpr in here.
6618     ThisOverrideRAII ThisOverride(*Info.CurrentCall, &This,
6619                                   isa<CXXDefaultInitExpr>(Init));
6620 
6621     APValue &FieldVal = Result.getStructField(Field->getFieldIndex());
6622     if (!EvaluateInPlace(FieldVal, Info, Subobject, Init) ||
6623         (Field->isBitField() && !truncateBitfieldValue(Info, Init,
6624                                                        FieldVal, Field))) {
6625       if (!Info.noteFailure())
6626         return false;
6627       Success = false;
6628     }
6629   }
6630 
6631   return Success;
6632 }
6633 
6634 bool RecordExprEvaluator::VisitCXXConstructExpr(const CXXConstructExpr *E,
6635                                                 QualType T) {
6636   // Note that E's type is not necessarily the type of our class here; we might
6637   // be initializing an array element instead.
6638   const CXXConstructorDecl *FD = E->getConstructor();
6639   if (FD->isInvalidDecl() || FD->getParent()->isInvalidDecl()) return false;
6640 
6641   bool ZeroInit = E->requiresZeroInitialization();
6642   if (CheckTrivialDefaultConstructor(Info, E->getExprLoc(), FD, ZeroInit)) {
6643     // If we've already performed zero-initialization, we're already done.
6644     if (!Result.isUninit())
6645       return true;
6646 
6647     // We can get here in two different ways:
6648     //  1) We're performing value-initialization, and should zero-initialize
6649     //     the object, or
6650     //  2) We're performing default-initialization of an object with a trivial
6651     //     constexpr default constructor, in which case we should start the
6652     //     lifetimes of all the base subobjects (there can be no data member
6653     //     subobjects in this case) per [basic.life]p1.
6654     // Either way, ZeroInitialization is appropriate.
6655     return ZeroInitialization(E, T);
6656   }
6657 
6658   const FunctionDecl *Definition = nullptr;
6659   auto Body = FD->getBody(Definition);
6660 
6661   if (!CheckConstexprFunction(Info, E->getExprLoc(), FD, Definition, Body))
6662     return false;
6663 
6664   // Avoid materializing a temporary for an elidable copy/move constructor.
6665   if (E->isElidable() && !ZeroInit)
6666     if (const MaterializeTemporaryExpr *ME
6667           = dyn_cast<MaterializeTemporaryExpr>(E->getArg(0)))
6668       return Visit(ME->GetTemporaryExpr());
6669 
6670   if (ZeroInit && !ZeroInitialization(E, T))
6671     return false;
6672 
6673   auto Args = llvm::makeArrayRef(E->getArgs(), E->getNumArgs());
6674   return HandleConstructorCall(E, This, Args,
6675                                cast<CXXConstructorDecl>(Definition), Info,
6676                                Result);
6677 }
6678 
6679 bool RecordExprEvaluator::VisitCXXInheritedCtorInitExpr(
6680     const CXXInheritedCtorInitExpr *E) {
6681   if (!Info.CurrentCall) {
6682     assert(Info.checkingPotentialConstantExpression());
6683     return false;
6684   }
6685 
6686   const CXXConstructorDecl *FD = E->getConstructor();
6687   if (FD->isInvalidDecl() || FD->getParent()->isInvalidDecl())
6688     return false;
6689 
6690   const FunctionDecl *Definition = nullptr;
6691   auto Body = FD->getBody(Definition);
6692 
6693   if (!CheckConstexprFunction(Info, E->getExprLoc(), FD, Definition, Body))
6694     return false;
6695 
6696   return HandleConstructorCall(E, This, Info.CurrentCall->Arguments,
6697                                cast<CXXConstructorDecl>(Definition), Info,
6698                                Result);
6699 }
6700 
6701 bool RecordExprEvaluator::VisitCXXStdInitializerListExpr(
6702     const CXXStdInitializerListExpr *E) {
6703   const ConstantArrayType *ArrayType =
6704       Info.Ctx.getAsConstantArrayType(E->getSubExpr()->getType());
6705 
6706   LValue Array;
6707   if (!EvaluateLValue(E->getSubExpr(), Array, Info))
6708     return false;
6709 
6710   // Get a pointer to the first element of the array.
6711   Array.addArray(Info, E, ArrayType);
6712 
6713   // FIXME: Perform the checks on the field types in SemaInit.
6714   RecordDecl *Record = E->getType()->castAs<RecordType>()->getDecl();
6715   RecordDecl::field_iterator Field = Record->field_begin();
6716   if (Field == Record->field_end())
6717     return Error(E);
6718 
6719   // Start pointer.
6720   if (!Field->getType()->isPointerType() ||
6721       !Info.Ctx.hasSameType(Field->getType()->getPointeeType(),
6722                             ArrayType->getElementType()))
6723     return Error(E);
6724 
6725   // FIXME: What if the initializer_list type has base classes, etc?
6726   Result = APValue(APValue::UninitStruct(), 0, 2);
6727   Array.moveInto(Result.getStructField(0));
6728 
6729   if (++Field == Record->field_end())
6730     return Error(E);
6731 
6732   if (Field->getType()->isPointerType() &&
6733       Info.Ctx.hasSameType(Field->getType()->getPointeeType(),
6734                            ArrayType->getElementType())) {
6735     // End pointer.
6736     if (!HandleLValueArrayAdjustment(Info, E, Array,
6737                                      ArrayType->getElementType(),
6738                                      ArrayType->getSize().getZExtValue()))
6739       return false;
6740     Array.moveInto(Result.getStructField(1));
6741   } else if (Info.Ctx.hasSameType(Field->getType(), Info.Ctx.getSizeType()))
6742     // Length.
6743     Result.getStructField(1) = APValue(APSInt(ArrayType->getSize()));
6744   else
6745     return Error(E);
6746 
6747   if (++Field != Record->field_end())
6748     return Error(E);
6749 
6750   return true;
6751 }
6752 
6753 bool RecordExprEvaluator::VisitLambdaExpr(const LambdaExpr *E) {
6754   const CXXRecordDecl *ClosureClass = E->getLambdaClass();
6755   if (ClosureClass->isInvalidDecl()) return false;
6756 
6757   if (Info.checkingPotentialConstantExpression()) return true;
6758 
6759   const size_t NumFields =
6760       std::distance(ClosureClass->field_begin(), ClosureClass->field_end());
6761 
6762   assert(NumFields == (size_t)std::distance(E->capture_init_begin(),
6763                                             E->capture_init_end()) &&
6764          "The number of lambda capture initializers should equal the number of "
6765          "fields within the closure type");
6766 
6767   Result = APValue(APValue::UninitStruct(), /*NumBases*/0, NumFields);
6768   // Iterate through all the lambda's closure object's fields and initialize
6769   // them.
6770   auto *CaptureInitIt = E->capture_init_begin();
6771   const LambdaCapture *CaptureIt = ClosureClass->captures_begin();
6772   bool Success = true;
6773   for (const auto *Field : ClosureClass->fields()) {
6774     assert(CaptureInitIt != E->capture_init_end());
6775     // Get the initializer for this field
6776     Expr *const CurFieldInit = *CaptureInitIt++;
6777 
6778     // If there is no initializer, either this is a VLA or an error has
6779     // occurred.
6780     if (!CurFieldInit)
6781       return Error(E);
6782 
6783     APValue &FieldVal = Result.getStructField(Field->getFieldIndex());
6784     if (!EvaluateInPlace(FieldVal, Info, This, CurFieldInit)) {
6785       if (!Info.keepEvaluatingAfterFailure())
6786         return false;
6787       Success = false;
6788     }
6789     ++CaptureIt;
6790   }
6791   return Success;
6792 }
6793 
6794 static bool EvaluateRecord(const Expr *E, const LValue &This,
6795                            APValue &Result, EvalInfo &Info) {
6796   assert(E->isRValue() && E->getType()->isRecordType() &&
6797          "can't evaluate expression as a record rvalue");
6798   return RecordExprEvaluator(Info, This, Result).Visit(E);
6799 }
6800 
6801 //===----------------------------------------------------------------------===//
6802 // Temporary Evaluation
6803 //
6804 // Temporaries are represented in the AST as rvalues, but generally behave like
6805 // lvalues. The full-object of which the temporary is a subobject is implicitly
6806 // materialized so that a reference can bind to it.
6807 //===----------------------------------------------------------------------===//
6808 namespace {
6809 class TemporaryExprEvaluator
6810   : public LValueExprEvaluatorBase<TemporaryExprEvaluator> {
6811 public:
6812   TemporaryExprEvaluator(EvalInfo &Info, LValue &Result) :
6813     LValueExprEvaluatorBaseTy(Info, Result, false) {}
6814 
6815   /// Visit an expression which constructs the value of this temporary.
6816   bool VisitConstructExpr(const Expr *E) {
6817     APValue &Value = createTemporary(E, false, Result, *Info.CurrentCall);
6818     return EvaluateInPlace(Value, Info, Result, E);
6819   }
6820 
6821   bool VisitCastExpr(const CastExpr *E) {
6822     switch (E->getCastKind()) {
6823     default:
6824       return LValueExprEvaluatorBaseTy::VisitCastExpr(E);
6825 
6826     case CK_ConstructorConversion:
6827       return VisitConstructExpr(E->getSubExpr());
6828     }
6829   }
6830   bool VisitInitListExpr(const InitListExpr *E) {
6831     return VisitConstructExpr(E);
6832   }
6833   bool VisitCXXConstructExpr(const CXXConstructExpr *E) {
6834     return VisitConstructExpr(E);
6835   }
6836   bool VisitCallExpr(const CallExpr *E) {
6837     return VisitConstructExpr(E);
6838   }
6839   bool VisitCXXStdInitializerListExpr(const CXXStdInitializerListExpr *E) {
6840     return VisitConstructExpr(E);
6841   }
6842   bool VisitLambdaExpr(const LambdaExpr *E) {
6843     return VisitConstructExpr(E);
6844   }
6845 };
6846 } // end anonymous namespace
6847 
6848 /// Evaluate an expression of record type as a temporary.
6849 static bool EvaluateTemporary(const Expr *E, LValue &Result, EvalInfo &Info) {
6850   assert(E->isRValue() && E->getType()->isRecordType());
6851   return TemporaryExprEvaluator(Info, Result).Visit(E);
6852 }
6853 
6854 //===----------------------------------------------------------------------===//
6855 // Vector Evaluation
6856 //===----------------------------------------------------------------------===//
6857 
6858 namespace {
6859   class VectorExprEvaluator
6860   : public ExprEvaluatorBase<VectorExprEvaluator> {
6861     APValue &Result;
6862   public:
6863 
6864     VectorExprEvaluator(EvalInfo &info, APValue &Result)
6865       : ExprEvaluatorBaseTy(info), Result(Result) {}
6866 
6867     bool Success(ArrayRef<APValue> V, const Expr *E) {
6868       assert(V.size() == E->getType()->castAs<VectorType>()->getNumElements());
6869       // FIXME: remove this APValue copy.
6870       Result = APValue(V.data(), V.size());
6871       return true;
6872     }
6873     bool Success(const APValue &V, const Expr *E) {
6874       assert(V.isVector());
6875       Result = V;
6876       return true;
6877     }
6878     bool ZeroInitialization(const Expr *E);
6879 
6880     bool VisitUnaryReal(const UnaryOperator *E)
6881       { return Visit(E->getSubExpr()); }
6882     bool VisitCastExpr(const CastExpr* E);
6883     bool VisitInitListExpr(const InitListExpr *E);
6884     bool VisitUnaryImag(const UnaryOperator *E);
6885     // FIXME: Missing: unary -, unary ~, binary add/sub/mul/div,
6886     //                 binary comparisons, binary and/or/xor,
6887     //                 shufflevector, ExtVectorElementExpr
6888   };
6889 } // end anonymous namespace
6890 
6891 static bool EvaluateVector(const Expr* E, APValue& Result, EvalInfo &Info) {
6892   assert(E->isRValue() && E->getType()->isVectorType() &&"not a vector rvalue");
6893   return VectorExprEvaluator(Info, Result).Visit(E);
6894 }
6895 
6896 bool VectorExprEvaluator::VisitCastExpr(const CastExpr *E) {
6897   const VectorType *VTy = E->getType()->castAs<VectorType>();
6898   unsigned NElts = VTy->getNumElements();
6899 
6900   const Expr *SE = E->getSubExpr();
6901   QualType SETy = SE->getType();
6902 
6903   switch (E->getCastKind()) {
6904   case CK_VectorSplat: {
6905     APValue Val = APValue();
6906     if (SETy->isIntegerType()) {
6907       APSInt IntResult;
6908       if (!EvaluateInteger(SE, IntResult, Info))
6909         return false;
6910       Val = APValue(std::move(IntResult));
6911     } else if (SETy->isRealFloatingType()) {
6912       APFloat FloatResult(0.0);
6913       if (!EvaluateFloat(SE, FloatResult, Info))
6914         return false;
6915       Val = APValue(std::move(FloatResult));
6916     } else {
6917       return Error(E);
6918     }
6919 
6920     // Splat and create vector APValue.
6921     SmallVector<APValue, 4> Elts(NElts, Val);
6922     return Success(Elts, E);
6923   }
6924   case CK_BitCast: {
6925     // Evaluate the operand into an APInt we can extract from.
6926     llvm::APInt SValInt;
6927     if (!EvalAndBitcastToAPInt(Info, SE, SValInt))
6928       return false;
6929     // Extract the elements
6930     QualType EltTy = VTy->getElementType();
6931     unsigned EltSize = Info.Ctx.getTypeSize(EltTy);
6932     bool BigEndian = Info.Ctx.getTargetInfo().isBigEndian();
6933     SmallVector<APValue, 4> Elts;
6934     if (EltTy->isRealFloatingType()) {
6935       const llvm::fltSemantics &Sem = Info.Ctx.getFloatTypeSemantics(EltTy);
6936       unsigned FloatEltSize = EltSize;
6937       if (&Sem == &APFloat::x87DoubleExtended())
6938         FloatEltSize = 80;
6939       for (unsigned i = 0; i < NElts; i++) {
6940         llvm::APInt Elt;
6941         if (BigEndian)
6942           Elt = SValInt.rotl(i*EltSize+FloatEltSize).trunc(FloatEltSize);
6943         else
6944           Elt = SValInt.rotr(i*EltSize).trunc(FloatEltSize);
6945         Elts.push_back(APValue(APFloat(Sem, Elt)));
6946       }
6947     } else if (EltTy->isIntegerType()) {
6948       for (unsigned i = 0; i < NElts; i++) {
6949         llvm::APInt Elt;
6950         if (BigEndian)
6951           Elt = SValInt.rotl(i*EltSize+EltSize).zextOrTrunc(EltSize);
6952         else
6953           Elt = SValInt.rotr(i*EltSize).zextOrTrunc(EltSize);
6954         Elts.push_back(APValue(APSInt(Elt, EltTy->isSignedIntegerType())));
6955       }
6956     } else {
6957       return Error(E);
6958     }
6959     return Success(Elts, E);
6960   }
6961   default:
6962     return ExprEvaluatorBaseTy::VisitCastExpr(E);
6963   }
6964 }
6965 
6966 bool
6967 VectorExprEvaluator::VisitInitListExpr(const InitListExpr *E) {
6968   const VectorType *VT = E->getType()->castAs<VectorType>();
6969   unsigned NumInits = E->getNumInits();
6970   unsigned NumElements = VT->getNumElements();
6971 
6972   QualType EltTy = VT->getElementType();
6973   SmallVector<APValue, 4> Elements;
6974 
6975   // The number of initializers can be less than the number of
6976   // vector elements. For OpenCL, this can be due to nested vector
6977   // initialization. For GCC compatibility, missing trailing elements
6978   // should be initialized with zeroes.
6979   unsigned CountInits = 0, CountElts = 0;
6980   while (CountElts < NumElements) {
6981     // Handle nested vector initialization.
6982     if (CountInits < NumInits
6983         && E->getInit(CountInits)->getType()->isVectorType()) {
6984       APValue v;
6985       if (!EvaluateVector(E->getInit(CountInits), v, Info))
6986         return Error(E);
6987       unsigned vlen = v.getVectorLength();
6988       for (unsigned j = 0; j < vlen; j++)
6989         Elements.push_back(v.getVectorElt(j));
6990       CountElts += vlen;
6991     } else if (EltTy->isIntegerType()) {
6992       llvm::APSInt sInt(32);
6993       if (CountInits < NumInits) {
6994         if (!EvaluateInteger(E->getInit(CountInits), sInt, Info))
6995           return false;
6996       } else // trailing integer zero.
6997         sInt = Info.Ctx.MakeIntValue(0, EltTy);
6998       Elements.push_back(APValue(sInt));
6999       CountElts++;
7000     } else {
7001       llvm::APFloat f(0.0);
7002       if (CountInits < NumInits) {
7003         if (!EvaluateFloat(E->getInit(CountInits), f, Info))
7004           return false;
7005       } else // trailing float zero.
7006         f = APFloat::getZero(Info.Ctx.getFloatTypeSemantics(EltTy));
7007       Elements.push_back(APValue(f));
7008       CountElts++;
7009     }
7010     CountInits++;
7011   }
7012   return Success(Elements, E);
7013 }
7014 
7015 bool
7016 VectorExprEvaluator::ZeroInitialization(const Expr *E) {
7017   const VectorType *VT = E->getType()->getAs<VectorType>();
7018   QualType EltTy = VT->getElementType();
7019   APValue ZeroElement;
7020   if (EltTy->isIntegerType())
7021     ZeroElement = APValue(Info.Ctx.MakeIntValue(0, EltTy));
7022   else
7023     ZeroElement =
7024         APValue(APFloat::getZero(Info.Ctx.getFloatTypeSemantics(EltTy)));
7025 
7026   SmallVector<APValue, 4> Elements(VT->getNumElements(), ZeroElement);
7027   return Success(Elements, E);
7028 }
7029 
7030 bool VectorExprEvaluator::VisitUnaryImag(const UnaryOperator *E) {
7031   VisitIgnoredValue(E->getSubExpr());
7032   return ZeroInitialization(E);
7033 }
7034 
7035 //===----------------------------------------------------------------------===//
7036 // Array Evaluation
7037 //===----------------------------------------------------------------------===//
7038 
7039 namespace {
7040   class ArrayExprEvaluator
7041   : public ExprEvaluatorBase<ArrayExprEvaluator> {
7042     const LValue &This;
7043     APValue &Result;
7044   public:
7045 
7046     ArrayExprEvaluator(EvalInfo &Info, const LValue &This, APValue &Result)
7047       : ExprEvaluatorBaseTy(Info), This(This), Result(Result) {}
7048 
7049     bool Success(const APValue &V, const Expr *E) {
7050       assert((V.isArray() || V.isLValue()) &&
7051              "expected array or string literal");
7052       Result = V;
7053       return true;
7054     }
7055 
7056     bool ZeroInitialization(const Expr *E) {
7057       const ConstantArrayType *CAT =
7058           Info.Ctx.getAsConstantArrayType(E->getType());
7059       if (!CAT)
7060         return Error(E);
7061 
7062       Result = APValue(APValue::UninitArray(), 0,
7063                        CAT->getSize().getZExtValue());
7064       if (!Result.hasArrayFiller()) return true;
7065 
7066       // Zero-initialize all elements.
7067       LValue Subobject = This;
7068       Subobject.addArray(Info, E, CAT);
7069       ImplicitValueInitExpr VIE(CAT->getElementType());
7070       return EvaluateInPlace(Result.getArrayFiller(), Info, Subobject, &VIE);
7071     }
7072 
7073     bool VisitCallExpr(const CallExpr *E) {
7074       return handleCallExpr(E, Result, &This);
7075     }
7076     bool VisitInitListExpr(const InitListExpr *E);
7077     bool VisitArrayInitLoopExpr(const ArrayInitLoopExpr *E);
7078     bool VisitCXXConstructExpr(const CXXConstructExpr *E);
7079     bool VisitCXXConstructExpr(const CXXConstructExpr *E,
7080                                const LValue &Subobject,
7081                                APValue *Value, QualType Type);
7082   };
7083 } // end anonymous namespace
7084 
7085 static bool EvaluateArray(const Expr *E, const LValue &This,
7086                           APValue &Result, EvalInfo &Info) {
7087   assert(E->isRValue() && E->getType()->isArrayType() && "not an array rvalue");
7088   return ArrayExprEvaluator(Info, This, Result).Visit(E);
7089 }
7090 
7091 // Return true iff the given array filler may depend on the element index.
7092 static bool MaybeElementDependentArrayFiller(const Expr *FillerExpr) {
7093   // For now, just whitelist non-class value-initialization and initialization
7094   // lists comprised of them.
7095   if (isa<ImplicitValueInitExpr>(FillerExpr))
7096     return false;
7097   if (const InitListExpr *ILE = dyn_cast<InitListExpr>(FillerExpr)) {
7098     for (unsigned I = 0, E = ILE->getNumInits(); I != E; ++I) {
7099       if (MaybeElementDependentArrayFiller(ILE->getInit(I)))
7100         return true;
7101     }
7102     return false;
7103   }
7104   return true;
7105 }
7106 
7107 bool ArrayExprEvaluator::VisitInitListExpr(const InitListExpr *E) {
7108   const ConstantArrayType *CAT = Info.Ctx.getAsConstantArrayType(E->getType());
7109   if (!CAT)
7110     return Error(E);
7111 
7112   // C++11 [dcl.init.string]p1: A char array [...] can be initialized by [...]
7113   // an appropriately-typed string literal enclosed in braces.
7114   if (E->isStringLiteralInit()) {
7115     LValue LV;
7116     if (!EvaluateLValue(E->getInit(0), LV, Info))
7117       return false;
7118     APValue Val;
7119     LV.moveInto(Val);
7120     return Success(Val, E);
7121   }
7122 
7123   bool Success = true;
7124 
7125   assert((!Result.isArray() || Result.getArrayInitializedElts() == 0) &&
7126          "zero-initialized array shouldn't have any initialized elts");
7127   APValue Filler;
7128   if (Result.isArray() && Result.hasArrayFiller())
7129     Filler = Result.getArrayFiller();
7130 
7131   unsigned NumEltsToInit = E->getNumInits();
7132   unsigned NumElts = CAT->getSize().getZExtValue();
7133   const Expr *FillerExpr = E->hasArrayFiller() ? E->getArrayFiller() : nullptr;
7134 
7135   // If the initializer might depend on the array index, run it for each
7136   // array element.
7137   if (NumEltsToInit != NumElts && MaybeElementDependentArrayFiller(FillerExpr))
7138     NumEltsToInit = NumElts;
7139 
7140   LLVM_DEBUG(llvm::dbgs() << "The number of elements to initialize: "
7141                           << NumEltsToInit << ".\n");
7142 
7143   Result = APValue(APValue::UninitArray(), NumEltsToInit, NumElts);
7144 
7145   // If the array was previously zero-initialized, preserve the
7146   // zero-initialized values.
7147   if (!Filler.isUninit()) {
7148     for (unsigned I = 0, E = Result.getArrayInitializedElts(); I != E; ++I)
7149       Result.getArrayInitializedElt(I) = Filler;
7150     if (Result.hasArrayFiller())
7151       Result.getArrayFiller() = Filler;
7152   }
7153 
7154   LValue Subobject = This;
7155   Subobject.addArray(Info, E, CAT);
7156   for (unsigned Index = 0; Index != NumEltsToInit; ++Index) {
7157     const Expr *Init =
7158         Index < E->getNumInits() ? E->getInit(Index) : FillerExpr;
7159     if (!EvaluateInPlace(Result.getArrayInitializedElt(Index),
7160                          Info, Subobject, Init) ||
7161         !HandleLValueArrayAdjustment(Info, Init, Subobject,
7162                                      CAT->getElementType(), 1)) {
7163       if (!Info.noteFailure())
7164         return false;
7165       Success = false;
7166     }
7167   }
7168 
7169   if (!Result.hasArrayFiller())
7170     return Success;
7171 
7172   // If we get here, we have a trivial filler, which we can just evaluate
7173   // once and splat over the rest of the array elements.
7174   assert(FillerExpr && "no array filler for incomplete init list");
7175   return EvaluateInPlace(Result.getArrayFiller(), Info, Subobject,
7176                          FillerExpr) && Success;
7177 }
7178 
7179 bool ArrayExprEvaluator::VisitArrayInitLoopExpr(const ArrayInitLoopExpr *E) {
7180   if (E->getCommonExpr() &&
7181       !Evaluate(Info.CurrentCall->createTemporary(E->getCommonExpr(), false),
7182                 Info, E->getCommonExpr()->getSourceExpr()))
7183     return false;
7184 
7185   auto *CAT = cast<ConstantArrayType>(E->getType()->castAsArrayTypeUnsafe());
7186 
7187   uint64_t Elements = CAT->getSize().getZExtValue();
7188   Result = APValue(APValue::UninitArray(), Elements, Elements);
7189 
7190   LValue Subobject = This;
7191   Subobject.addArray(Info, E, CAT);
7192 
7193   bool Success = true;
7194   for (EvalInfo::ArrayInitLoopIndex Index(Info); Index != Elements; ++Index) {
7195     if (!EvaluateInPlace(Result.getArrayInitializedElt(Index),
7196                          Info, Subobject, E->getSubExpr()) ||
7197         !HandleLValueArrayAdjustment(Info, E, Subobject,
7198                                      CAT->getElementType(), 1)) {
7199       if (!Info.noteFailure())
7200         return false;
7201       Success = false;
7202     }
7203   }
7204 
7205   return Success;
7206 }
7207 
7208 bool ArrayExprEvaluator::VisitCXXConstructExpr(const CXXConstructExpr *E) {
7209   return VisitCXXConstructExpr(E, This, &Result, E->getType());
7210 }
7211 
7212 bool ArrayExprEvaluator::VisitCXXConstructExpr(const CXXConstructExpr *E,
7213                                                const LValue &Subobject,
7214                                                APValue *Value,
7215                                                QualType Type) {
7216   bool HadZeroInit = !Value->isUninit();
7217 
7218   if (const ConstantArrayType *CAT = Info.Ctx.getAsConstantArrayType(Type)) {
7219     unsigned N = CAT->getSize().getZExtValue();
7220 
7221     // Preserve the array filler if we had prior zero-initialization.
7222     APValue Filler =
7223       HadZeroInit && Value->hasArrayFiller() ? Value->getArrayFiller()
7224                                              : APValue();
7225 
7226     *Value = APValue(APValue::UninitArray(), N, N);
7227 
7228     if (HadZeroInit)
7229       for (unsigned I = 0; I != N; ++I)
7230         Value->getArrayInitializedElt(I) = Filler;
7231 
7232     // Initialize the elements.
7233     LValue ArrayElt = Subobject;
7234     ArrayElt.addArray(Info, E, CAT);
7235     for (unsigned I = 0; I != N; ++I)
7236       if (!VisitCXXConstructExpr(E, ArrayElt, &Value->getArrayInitializedElt(I),
7237                                  CAT->getElementType()) ||
7238           !HandleLValueArrayAdjustment(Info, E, ArrayElt,
7239                                        CAT->getElementType(), 1))
7240         return false;
7241 
7242     return true;
7243   }
7244 
7245   if (!Type->isRecordType())
7246     return Error(E);
7247 
7248   return RecordExprEvaluator(Info, Subobject, *Value)
7249              .VisitCXXConstructExpr(E, Type);
7250 }
7251 
7252 //===----------------------------------------------------------------------===//
7253 // Integer Evaluation
7254 //
7255 // As a GNU extension, we support casting pointers to sufficiently-wide integer
7256 // types and back in constant folding. Integer values are thus represented
7257 // either as an integer-valued APValue, or as an lvalue-valued APValue.
7258 //===----------------------------------------------------------------------===//
7259 
7260 namespace {
7261 class IntExprEvaluator
7262         : public ExprEvaluatorBase<IntExprEvaluator> {
7263   APValue &Result;
7264 public:
7265   IntExprEvaluator(EvalInfo &info, APValue &result)
7266       : ExprEvaluatorBaseTy(info), Result(result) {}
7267 
7268   bool Success(const llvm::APSInt &SI, const Expr *E, APValue &Result) {
7269     assert(E->getType()->isIntegralOrEnumerationType() &&
7270            "Invalid evaluation result.");
7271     assert(SI.isSigned() == E->getType()->isSignedIntegerOrEnumerationType() &&
7272            "Invalid evaluation result.");
7273     assert(SI.getBitWidth() == Info.Ctx.getIntWidth(E->getType()) &&
7274            "Invalid evaluation result.");
7275     Result = APValue(SI);
7276     return true;
7277   }
7278   bool Success(const llvm::APSInt &SI, const Expr *E) {
7279     return Success(SI, E, Result);
7280   }
7281 
7282   bool Success(const llvm::APInt &I, const Expr *E, APValue &Result) {
7283     assert(E->getType()->isIntegralOrEnumerationType() &&
7284            "Invalid evaluation result.");
7285     assert(I.getBitWidth() == Info.Ctx.getIntWidth(E->getType()) &&
7286            "Invalid evaluation result.");
7287     Result = APValue(APSInt(I));
7288     Result.getInt().setIsUnsigned(
7289                             E->getType()->isUnsignedIntegerOrEnumerationType());
7290     return true;
7291   }
7292   bool Success(const llvm::APInt &I, const Expr *E) {
7293     return Success(I, E, Result);
7294   }
7295 
7296   bool Success(uint64_t Value, const Expr *E, APValue &Result) {
7297     assert(E->getType()->isIntegralOrEnumerationType() &&
7298            "Invalid evaluation result.");
7299     Result = APValue(Info.Ctx.MakeIntValue(Value, E->getType()));
7300     return true;
7301   }
7302   bool Success(uint64_t Value, const Expr *E) {
7303     return Success(Value, E, Result);
7304   }
7305 
7306   bool Success(CharUnits Size, const Expr *E) {
7307     return Success(Size.getQuantity(), E);
7308   }
7309 
7310   bool Success(const APValue &V, const Expr *E) {
7311     if (V.isLValue() || V.isAddrLabelDiff()) {
7312       Result = V;
7313       return true;
7314     }
7315     return Success(V.getInt(), E);
7316   }
7317 
7318   bool ZeroInitialization(const Expr *E) { return Success(0, E); }
7319 
7320   //===--------------------------------------------------------------------===//
7321   //                            Visitor Methods
7322   //===--------------------------------------------------------------------===//
7323 
7324   bool VisitIntegerLiteral(const IntegerLiteral *E) {
7325     return Success(E->getValue(), E);
7326   }
7327   bool VisitCharacterLiteral(const CharacterLiteral *E) {
7328     return Success(E->getValue(), E);
7329   }
7330 
7331   bool CheckReferencedDecl(const Expr *E, const Decl *D);
7332   bool VisitDeclRefExpr(const DeclRefExpr *E) {
7333     if (CheckReferencedDecl(E, E->getDecl()))
7334       return true;
7335 
7336     return ExprEvaluatorBaseTy::VisitDeclRefExpr(E);
7337   }
7338   bool VisitMemberExpr(const MemberExpr *E) {
7339     if (CheckReferencedDecl(E, E->getMemberDecl())) {
7340       VisitIgnoredBaseExpression(E->getBase());
7341       return true;
7342     }
7343 
7344     return ExprEvaluatorBaseTy::VisitMemberExpr(E);
7345   }
7346 
7347   bool VisitCallExpr(const CallExpr *E);
7348   bool VisitBuiltinCallExpr(const CallExpr *E, unsigned BuiltinOp);
7349   bool VisitBinaryOperator(const BinaryOperator *E);
7350   bool VisitOffsetOfExpr(const OffsetOfExpr *E);
7351   bool VisitUnaryOperator(const UnaryOperator *E);
7352 
7353   bool VisitCastExpr(const CastExpr* E);
7354   bool VisitUnaryExprOrTypeTraitExpr(const UnaryExprOrTypeTraitExpr *E);
7355 
7356   bool VisitCXXBoolLiteralExpr(const CXXBoolLiteralExpr *E) {
7357     return Success(E->getValue(), E);
7358   }
7359 
7360   bool VisitObjCBoolLiteralExpr(const ObjCBoolLiteralExpr *E) {
7361     return Success(E->getValue(), E);
7362   }
7363 
7364   bool VisitArrayInitIndexExpr(const ArrayInitIndexExpr *E) {
7365     if (Info.ArrayInitIndex == uint64_t(-1)) {
7366       // We were asked to evaluate this subexpression independent of the
7367       // enclosing ArrayInitLoopExpr. We can't do that.
7368       Info.FFDiag(E);
7369       return false;
7370     }
7371     return Success(Info.ArrayInitIndex, E);
7372   }
7373 
7374   // Note, GNU defines __null as an integer, not a pointer.
7375   bool VisitGNUNullExpr(const GNUNullExpr *E) {
7376     return ZeroInitialization(E);
7377   }
7378 
7379   bool VisitTypeTraitExpr(const TypeTraitExpr *E) {
7380     return Success(E->getValue(), E);
7381   }
7382 
7383   bool VisitArrayTypeTraitExpr(const ArrayTypeTraitExpr *E) {
7384     return Success(E->getValue(), E);
7385   }
7386 
7387   bool VisitExpressionTraitExpr(const ExpressionTraitExpr *E) {
7388     return Success(E->getValue(), E);
7389   }
7390 
7391   bool VisitUnaryReal(const UnaryOperator *E);
7392   bool VisitUnaryImag(const UnaryOperator *E);
7393 
7394   bool VisitCXXNoexceptExpr(const CXXNoexceptExpr *E);
7395   bool VisitSizeOfPackExpr(const SizeOfPackExpr *E);
7396 
7397   // FIXME: Missing: array subscript of vector, member of vector
7398 };
7399 
7400 class FixedPointExprEvaluator
7401     : public ExprEvaluatorBase<FixedPointExprEvaluator> {
7402   APValue &Result;
7403 
7404  public:
7405   FixedPointExprEvaluator(EvalInfo &info, APValue &result)
7406       : ExprEvaluatorBaseTy(info), Result(result) {}
7407 
7408   bool Success(const llvm::APSInt &SI, const Expr *E, APValue &Result) {
7409     assert(E->getType()->isFixedPointType() && "Invalid evaluation result.");
7410     assert(SI.isSigned() == E->getType()->isSignedFixedPointType() &&
7411            "Invalid evaluation result.");
7412     assert(SI.getBitWidth() == Info.Ctx.getIntWidth(E->getType()) &&
7413            "Invalid evaluation result.");
7414     Result = APValue(SI);
7415     return true;
7416   }
7417   bool Success(const llvm::APSInt &SI, const Expr *E) {
7418     return Success(SI, E, Result);
7419   }
7420 
7421   bool Success(const llvm::APInt &I, const Expr *E, APValue &Result) {
7422     assert(E->getType()->isFixedPointType() && "Invalid evaluation result.");
7423     assert(I.getBitWidth() == Info.Ctx.getIntWidth(E->getType()) &&
7424            "Invalid evaluation result.");
7425     Result = APValue(APSInt(I));
7426     Result.getInt().setIsUnsigned(E->getType()->isUnsignedFixedPointType());
7427     return true;
7428   }
7429   bool Success(const llvm::APInt &I, const Expr *E) {
7430     return Success(I, E, Result);
7431   }
7432 
7433   bool Success(uint64_t Value, const Expr *E, APValue &Result) {
7434     assert(E->getType()->isFixedPointType() && "Invalid evaluation result.");
7435     Result = APValue(Info.Ctx.MakeIntValue(Value, E->getType()));
7436     return true;
7437   }
7438   bool Success(uint64_t Value, const Expr *E) {
7439     return Success(Value, E, Result);
7440   }
7441 
7442   bool Success(CharUnits Size, const Expr *E) {
7443     return Success(Size.getQuantity(), E);
7444   }
7445 
7446   bool Success(const APValue &V, const Expr *E) {
7447     if (V.isLValue() || V.isAddrLabelDiff()) {
7448       Result = V;
7449       return true;
7450     }
7451     return Success(V.getInt(), E);
7452   }
7453 
7454   bool ZeroInitialization(const Expr *E) { return Success(0, E); }
7455 
7456   //===--------------------------------------------------------------------===//
7457   //                            Visitor Methods
7458   //===--------------------------------------------------------------------===//
7459 
7460   bool VisitFixedPointLiteral(const FixedPointLiteral *E) {
7461     return Success(E->getValue(), E);
7462   }
7463 
7464   bool VisitUnaryOperator(const UnaryOperator *E);
7465 };
7466 } // end anonymous namespace
7467 
7468 /// EvaluateIntegerOrLValue - Evaluate an rvalue integral-typed expression, and
7469 /// produce either the integer value or a pointer.
7470 ///
7471 /// GCC has a heinous extension which folds casts between pointer types and
7472 /// pointer-sized integral types. We support this by allowing the evaluation of
7473 /// an integer rvalue to produce a pointer (represented as an lvalue) instead.
7474 /// Some simple arithmetic on such values is supported (they are treated much
7475 /// like char*).
7476 static bool EvaluateIntegerOrLValue(const Expr *E, APValue &Result,
7477                                     EvalInfo &Info) {
7478   assert(E->isRValue() && E->getType()->isIntegralOrEnumerationType());
7479   return IntExprEvaluator(Info, Result).Visit(E);
7480 }
7481 
7482 static bool EvaluateInteger(const Expr *E, APSInt &Result, EvalInfo &Info) {
7483   APValue Val;
7484   if (!EvaluateIntegerOrLValue(E, Val, Info))
7485     return false;
7486   if (!Val.isInt()) {
7487     // FIXME: It would be better to produce the diagnostic for casting
7488     //        a pointer to an integer.
7489     Info.FFDiag(E, diag::note_invalid_subexpr_in_const_expr);
7490     return false;
7491   }
7492   Result = Val.getInt();
7493   return true;
7494 }
7495 
7496 /// Check whether the given declaration can be directly converted to an integral
7497 /// rvalue. If not, no diagnostic is produced; there are other things we can
7498 /// try.
7499 bool IntExprEvaluator::CheckReferencedDecl(const Expr* E, const Decl* D) {
7500   // Enums are integer constant exprs.
7501   if (const EnumConstantDecl *ECD = dyn_cast<EnumConstantDecl>(D)) {
7502     // Check for signedness/width mismatches between E type and ECD value.
7503     bool SameSign = (ECD->getInitVal().isSigned()
7504                      == E->getType()->isSignedIntegerOrEnumerationType());
7505     bool SameWidth = (ECD->getInitVal().getBitWidth()
7506                       == Info.Ctx.getIntWidth(E->getType()));
7507     if (SameSign && SameWidth)
7508       return Success(ECD->getInitVal(), E);
7509     else {
7510       // Get rid of mismatch (otherwise Success assertions will fail)
7511       // by computing a new value matching the type of E.
7512       llvm::APSInt Val = ECD->getInitVal();
7513       if (!SameSign)
7514         Val.setIsSigned(!ECD->getInitVal().isSigned());
7515       if (!SameWidth)
7516         Val = Val.extOrTrunc(Info.Ctx.getIntWidth(E->getType()));
7517       return Success(Val, E);
7518     }
7519   }
7520   return false;
7521 }
7522 
7523 /// Values returned by __builtin_classify_type, chosen to match the values
7524 /// produced by GCC's builtin.
7525 enum class GCCTypeClass {
7526   None = -1,
7527   Void = 0,
7528   Integer = 1,
7529   // GCC reserves 2 for character types, but instead classifies them as
7530   // integers.
7531   Enum = 3,
7532   Bool = 4,
7533   Pointer = 5,
7534   // GCC reserves 6 for references, but appears to never use it (because
7535   // expressions never have reference type, presumably).
7536   PointerToDataMember = 7,
7537   RealFloat = 8,
7538   Complex = 9,
7539   // GCC reserves 10 for functions, but does not use it since GCC version 6 due
7540   // to decay to pointer. (Prior to version 6 it was only used in C++ mode).
7541   // GCC claims to reserve 11 for pointers to member functions, but *actually*
7542   // uses 12 for that purpose, same as for a class or struct. Maybe it
7543   // internally implements a pointer to member as a struct?  Who knows.
7544   PointerToMemberFunction = 12, // Not a bug, see above.
7545   ClassOrStruct = 12,
7546   Union = 13,
7547   // GCC reserves 14 for arrays, but does not use it since GCC version 6 due to
7548   // decay to pointer. (Prior to version 6 it was only used in C++ mode).
7549   // GCC reserves 15 for strings, but actually uses 5 (pointer) for string
7550   // literals.
7551 };
7552 
7553 /// EvaluateBuiltinClassifyType - Evaluate __builtin_classify_type the same way
7554 /// as GCC.
7555 static GCCTypeClass
7556 EvaluateBuiltinClassifyType(QualType T, const LangOptions &LangOpts) {
7557   assert(!T->isDependentType() && "unexpected dependent type");
7558 
7559   QualType CanTy = T.getCanonicalType();
7560   const BuiltinType *BT = dyn_cast<BuiltinType>(CanTy);
7561 
7562   switch (CanTy->getTypeClass()) {
7563 #define TYPE(ID, BASE)
7564 #define DEPENDENT_TYPE(ID, BASE) case Type::ID:
7565 #define NON_CANONICAL_TYPE(ID, BASE) case Type::ID:
7566 #define NON_CANONICAL_UNLESS_DEPENDENT_TYPE(ID, BASE) case Type::ID:
7567 #include "clang/AST/TypeNodes.def"
7568   case Type::Auto:
7569   case Type::DeducedTemplateSpecialization:
7570       llvm_unreachable("unexpected non-canonical or dependent type");
7571 
7572   case Type::Builtin:
7573     switch (BT->getKind()) {
7574 #define BUILTIN_TYPE(ID, SINGLETON_ID)
7575 #define SIGNED_TYPE(ID, SINGLETON_ID) \
7576     case BuiltinType::ID: return GCCTypeClass::Integer;
7577 #define FLOATING_TYPE(ID, SINGLETON_ID) \
7578     case BuiltinType::ID: return GCCTypeClass::RealFloat;
7579 #define PLACEHOLDER_TYPE(ID, SINGLETON_ID) \
7580     case BuiltinType::ID: break;
7581 #include "clang/AST/BuiltinTypes.def"
7582     case BuiltinType::Void:
7583       return GCCTypeClass::Void;
7584 
7585     case BuiltinType::Bool:
7586       return GCCTypeClass::Bool;
7587 
7588     case BuiltinType::Char_U:
7589     case BuiltinType::UChar:
7590     case BuiltinType::WChar_U:
7591     case BuiltinType::Char8:
7592     case BuiltinType::Char16:
7593     case BuiltinType::Char32:
7594     case BuiltinType::UShort:
7595     case BuiltinType::UInt:
7596     case BuiltinType::ULong:
7597     case BuiltinType::ULongLong:
7598     case BuiltinType::UInt128:
7599       return GCCTypeClass::Integer;
7600 
7601     case BuiltinType::UShortAccum:
7602     case BuiltinType::UAccum:
7603     case BuiltinType::ULongAccum:
7604     case BuiltinType::UShortFract:
7605     case BuiltinType::UFract:
7606     case BuiltinType::ULongFract:
7607     case BuiltinType::SatUShortAccum:
7608     case BuiltinType::SatUAccum:
7609     case BuiltinType::SatULongAccum:
7610     case BuiltinType::SatUShortFract:
7611     case BuiltinType::SatUFract:
7612     case BuiltinType::SatULongFract:
7613       return GCCTypeClass::None;
7614 
7615     case BuiltinType::NullPtr:
7616 
7617     case BuiltinType::ObjCId:
7618     case BuiltinType::ObjCClass:
7619     case BuiltinType::ObjCSel:
7620 #define IMAGE_TYPE(ImgType, Id, SingletonId, Access, Suffix) \
7621     case BuiltinType::Id:
7622 #include "clang/Basic/OpenCLImageTypes.def"
7623     case BuiltinType::OCLSampler:
7624     case BuiltinType::OCLEvent:
7625     case BuiltinType::OCLClkEvent:
7626     case BuiltinType::OCLQueue:
7627     case BuiltinType::OCLReserveID:
7628       return GCCTypeClass::None;
7629 
7630     case BuiltinType::Dependent:
7631       llvm_unreachable("unexpected dependent type");
7632     };
7633     llvm_unreachable("unexpected placeholder type");
7634 
7635   case Type::Enum:
7636     return LangOpts.CPlusPlus ? GCCTypeClass::Enum : GCCTypeClass::Integer;
7637 
7638   case Type::Pointer:
7639   case Type::ConstantArray:
7640   case Type::VariableArray:
7641   case Type::IncompleteArray:
7642   case Type::FunctionNoProto:
7643   case Type::FunctionProto:
7644     return GCCTypeClass::Pointer;
7645 
7646   case Type::MemberPointer:
7647     return CanTy->isMemberDataPointerType()
7648                ? GCCTypeClass::PointerToDataMember
7649                : GCCTypeClass::PointerToMemberFunction;
7650 
7651   case Type::Complex:
7652     return GCCTypeClass::Complex;
7653 
7654   case Type::Record:
7655     return CanTy->isUnionType() ? GCCTypeClass::Union
7656                                 : GCCTypeClass::ClassOrStruct;
7657 
7658   case Type::Atomic:
7659     // GCC classifies _Atomic T the same as T.
7660     return EvaluateBuiltinClassifyType(
7661         CanTy->castAs<AtomicType>()->getValueType(), LangOpts);
7662 
7663   case Type::BlockPointer:
7664   case Type::Vector:
7665   case Type::ExtVector:
7666   case Type::ObjCObject:
7667   case Type::ObjCInterface:
7668   case Type::ObjCObjectPointer:
7669   case Type::Pipe:
7670     // GCC classifies vectors as None. We follow its lead and classify all
7671     // other types that don't fit into the regular classification the same way.
7672     return GCCTypeClass::None;
7673 
7674   case Type::LValueReference:
7675   case Type::RValueReference:
7676     llvm_unreachable("invalid type for expression");
7677   }
7678 
7679   llvm_unreachable("unexpected type class");
7680 }
7681 
7682 /// EvaluateBuiltinClassifyType - Evaluate __builtin_classify_type the same way
7683 /// as GCC.
7684 static GCCTypeClass
7685 EvaluateBuiltinClassifyType(const CallExpr *E, const LangOptions &LangOpts) {
7686   // If no argument was supplied, default to None. This isn't
7687   // ideal, however it is what gcc does.
7688   if (E->getNumArgs() == 0)
7689     return GCCTypeClass::None;
7690 
7691   // FIXME: Bizarrely, GCC treats a call with more than one argument as not
7692   // being an ICE, but still folds it to a constant using the type of the first
7693   // argument.
7694   return EvaluateBuiltinClassifyType(E->getArg(0)->getType(), LangOpts);
7695 }
7696 
7697 /// EvaluateBuiltinConstantPForLValue - Determine the result of
7698 /// __builtin_constant_p when applied to the given lvalue.
7699 ///
7700 /// An lvalue is only "constant" if it is a pointer or reference to the first
7701 /// character of a string literal.
7702 template<typename LValue>
7703 static bool EvaluateBuiltinConstantPForLValue(const LValue &LV) {
7704   const Expr *E = LV.getLValueBase().template dyn_cast<const Expr*>();
7705   return E && isa<StringLiteral>(E) && LV.getLValueOffset().isZero();
7706 }
7707 
7708 /// EvaluateBuiltinConstantP - Evaluate __builtin_constant_p as similarly to
7709 /// GCC as we can manage.
7710 static bool EvaluateBuiltinConstantP(ASTContext &Ctx, const Expr *Arg) {
7711   QualType ArgType = Arg->getType();
7712 
7713   // __builtin_constant_p always has one operand. The rules which gcc follows
7714   // are not precisely documented, but are as follows:
7715   //
7716   //  - If the operand is of integral, floating, complex or enumeration type,
7717   //    and can be folded to a known value of that type, it returns 1.
7718   //  - If the operand and can be folded to a pointer to the first character
7719   //    of a string literal (or such a pointer cast to an integral type), it
7720   //    returns 1.
7721   //
7722   // Otherwise, it returns 0.
7723   //
7724   // FIXME: GCC also intends to return 1 for literals of aggregate types, but
7725   // its support for this does not currently work.
7726   if (ArgType->isIntegralOrEnumerationType()) {
7727     Expr::EvalResult Result;
7728     if (!Arg->EvaluateAsRValue(Result, Ctx) || Result.HasSideEffects)
7729       return false;
7730 
7731     APValue &V = Result.Val;
7732     if (V.getKind() == APValue::Int)
7733       return true;
7734     if (V.getKind() == APValue::LValue)
7735       return EvaluateBuiltinConstantPForLValue(V);
7736   } else if (ArgType->isFloatingType() || ArgType->isAnyComplexType()) {
7737     return Arg->isEvaluatable(Ctx);
7738   } else if (ArgType->isPointerType() || Arg->isGLValue()) {
7739     LValue LV;
7740     Expr::EvalStatus Status;
7741     EvalInfo Info(Ctx, Status, EvalInfo::EM_ConstantFold);
7742     if ((Arg->isGLValue() ? EvaluateLValue(Arg, LV, Info)
7743                           : EvaluatePointer(Arg, LV, Info)) &&
7744         !Status.HasSideEffects)
7745       return EvaluateBuiltinConstantPForLValue(LV);
7746   }
7747 
7748   // Anything else isn't considered to be sufficiently constant.
7749   return false;
7750 }
7751 
7752 /// Retrieves the "underlying object type" of the given expression,
7753 /// as used by __builtin_object_size.
7754 static QualType getObjectType(APValue::LValueBase B) {
7755   if (const ValueDecl *D = B.dyn_cast<const ValueDecl*>()) {
7756     if (const VarDecl *VD = dyn_cast<VarDecl>(D))
7757       return VD->getType();
7758   } else if (const Expr *E = B.get<const Expr*>()) {
7759     if (isa<CompoundLiteralExpr>(E))
7760       return E->getType();
7761   }
7762 
7763   return QualType();
7764 }
7765 
7766 /// A more selective version of E->IgnoreParenCasts for
7767 /// tryEvaluateBuiltinObjectSize. This ignores some casts/parens that serve only
7768 /// to change the type of E.
7769 /// Ex. For E = `(short*)((char*)(&foo))`, returns `&foo`
7770 ///
7771 /// Always returns an RValue with a pointer representation.
7772 static const Expr *ignorePointerCastsAndParens(const Expr *E) {
7773   assert(E->isRValue() && E->getType()->hasPointerRepresentation());
7774 
7775   auto *NoParens = E->IgnoreParens();
7776   auto *Cast = dyn_cast<CastExpr>(NoParens);
7777   if (Cast == nullptr)
7778     return NoParens;
7779 
7780   // We only conservatively allow a few kinds of casts, because this code is
7781   // inherently a simple solution that seeks to support the common case.
7782   auto CastKind = Cast->getCastKind();
7783   if (CastKind != CK_NoOp && CastKind != CK_BitCast &&
7784       CastKind != CK_AddressSpaceConversion)
7785     return NoParens;
7786 
7787   auto *SubExpr = Cast->getSubExpr();
7788   if (!SubExpr->getType()->hasPointerRepresentation() || !SubExpr->isRValue())
7789     return NoParens;
7790   return ignorePointerCastsAndParens(SubExpr);
7791 }
7792 
7793 /// Checks to see if the given LValue's Designator is at the end of the LValue's
7794 /// record layout. e.g.
7795 ///   struct { struct { int a, b; } fst, snd; } obj;
7796 ///   obj.fst   // no
7797 ///   obj.snd   // yes
7798 ///   obj.fst.a // no
7799 ///   obj.fst.b // no
7800 ///   obj.snd.a // no
7801 ///   obj.snd.b // yes
7802 ///
7803 /// Please note: this function is specialized for how __builtin_object_size
7804 /// views "objects".
7805 ///
7806 /// If this encounters an invalid RecordDecl or otherwise cannot determine the
7807 /// correct result, it will always return true.
7808 static bool isDesignatorAtObjectEnd(const ASTContext &Ctx, const LValue &LVal) {
7809   assert(!LVal.Designator.Invalid);
7810 
7811   auto IsLastOrInvalidFieldDecl = [&Ctx](const FieldDecl *FD, bool &Invalid) {
7812     const RecordDecl *Parent = FD->getParent();
7813     Invalid = Parent->isInvalidDecl();
7814     if (Invalid || Parent->isUnion())
7815       return true;
7816     const ASTRecordLayout &Layout = Ctx.getASTRecordLayout(Parent);
7817     return FD->getFieldIndex() + 1 == Layout.getFieldCount();
7818   };
7819 
7820   auto &Base = LVal.getLValueBase();
7821   if (auto *ME = dyn_cast_or_null<MemberExpr>(Base.dyn_cast<const Expr *>())) {
7822     if (auto *FD = dyn_cast<FieldDecl>(ME->getMemberDecl())) {
7823       bool Invalid;
7824       if (!IsLastOrInvalidFieldDecl(FD, Invalid))
7825         return Invalid;
7826     } else if (auto *IFD = dyn_cast<IndirectFieldDecl>(ME->getMemberDecl())) {
7827       for (auto *FD : IFD->chain()) {
7828         bool Invalid;
7829         if (!IsLastOrInvalidFieldDecl(cast<FieldDecl>(FD), Invalid))
7830           return Invalid;
7831       }
7832     }
7833   }
7834 
7835   unsigned I = 0;
7836   QualType BaseType = getType(Base);
7837   if (LVal.Designator.FirstEntryIsAnUnsizedArray) {
7838     // If we don't know the array bound, conservatively assume we're looking at
7839     // the final array element.
7840     ++I;
7841     if (BaseType->isIncompleteArrayType())
7842       BaseType = Ctx.getAsArrayType(BaseType)->getElementType();
7843     else
7844       BaseType = BaseType->castAs<PointerType>()->getPointeeType();
7845   }
7846 
7847   for (unsigned E = LVal.Designator.Entries.size(); I != E; ++I) {
7848     const auto &Entry = LVal.Designator.Entries[I];
7849     if (BaseType->isArrayType()) {
7850       // Because __builtin_object_size treats arrays as objects, we can ignore
7851       // the index iff this is the last array in the Designator.
7852       if (I + 1 == E)
7853         return true;
7854       const auto *CAT = cast<ConstantArrayType>(Ctx.getAsArrayType(BaseType));
7855       uint64_t Index = Entry.ArrayIndex;
7856       if (Index + 1 != CAT->getSize())
7857         return false;
7858       BaseType = CAT->getElementType();
7859     } else if (BaseType->isAnyComplexType()) {
7860       const auto *CT = BaseType->castAs<ComplexType>();
7861       uint64_t Index = Entry.ArrayIndex;
7862       if (Index != 1)
7863         return false;
7864       BaseType = CT->getElementType();
7865     } else if (auto *FD = getAsField(Entry)) {
7866       bool Invalid;
7867       if (!IsLastOrInvalidFieldDecl(FD, Invalid))
7868         return Invalid;
7869       BaseType = FD->getType();
7870     } else {
7871       assert(getAsBaseClass(Entry) && "Expecting cast to a base class");
7872       return false;
7873     }
7874   }
7875   return true;
7876 }
7877 
7878 /// Tests to see if the LValue has a user-specified designator (that isn't
7879 /// necessarily valid). Note that this always returns 'true' if the LValue has
7880 /// an unsized array as its first designator entry, because there's currently no
7881 /// way to tell if the user typed *foo or foo[0].
7882 static bool refersToCompleteObject(const LValue &LVal) {
7883   if (LVal.Designator.Invalid)
7884     return false;
7885 
7886   if (!LVal.Designator.Entries.empty())
7887     return LVal.Designator.isMostDerivedAnUnsizedArray();
7888 
7889   if (!LVal.InvalidBase)
7890     return true;
7891 
7892   // If `E` is a MemberExpr, then the first part of the designator is hiding in
7893   // the LValueBase.
7894   const auto *E = LVal.Base.dyn_cast<const Expr *>();
7895   return !E || !isa<MemberExpr>(E);
7896 }
7897 
7898 /// Attempts to detect a user writing into a piece of memory that's impossible
7899 /// to figure out the size of by just using types.
7900 static bool isUserWritingOffTheEnd(const ASTContext &Ctx, const LValue &LVal) {
7901   const SubobjectDesignator &Designator = LVal.Designator;
7902   // Notes:
7903   // - Users can only write off of the end when we have an invalid base. Invalid
7904   //   bases imply we don't know where the memory came from.
7905   // - We used to be a bit more aggressive here; we'd only be conservative if
7906   //   the array at the end was flexible, or if it had 0 or 1 elements. This
7907   //   broke some common standard library extensions (PR30346), but was
7908   //   otherwise seemingly fine. It may be useful to reintroduce this behavior
7909   //   with some sort of whitelist. OTOH, it seems that GCC is always
7910   //   conservative with the last element in structs (if it's an array), so our
7911   //   current behavior is more compatible than a whitelisting approach would
7912   //   be.
7913   return LVal.InvalidBase &&
7914          Designator.Entries.size() == Designator.MostDerivedPathLength &&
7915          Designator.MostDerivedIsArrayElement &&
7916          isDesignatorAtObjectEnd(Ctx, LVal);
7917 }
7918 
7919 /// Converts the given APInt to CharUnits, assuming the APInt is unsigned.
7920 /// Fails if the conversion would cause loss of precision.
7921 static bool convertUnsignedAPIntToCharUnits(const llvm::APInt &Int,
7922                                             CharUnits &Result) {
7923   auto CharUnitsMax = std::numeric_limits<CharUnits::QuantityType>::max();
7924   if (Int.ugt(CharUnitsMax))
7925     return false;
7926   Result = CharUnits::fromQuantity(Int.getZExtValue());
7927   return true;
7928 }
7929 
7930 /// Helper for tryEvaluateBuiltinObjectSize -- Given an LValue, this will
7931 /// determine how many bytes exist from the beginning of the object to either
7932 /// the end of the current subobject, or the end of the object itself, depending
7933 /// on what the LValue looks like + the value of Type.
7934 ///
7935 /// If this returns false, the value of Result is undefined.
7936 static bool determineEndOffset(EvalInfo &Info, SourceLocation ExprLoc,
7937                                unsigned Type, const LValue &LVal,
7938                                CharUnits &EndOffset) {
7939   bool DetermineForCompleteObject = refersToCompleteObject(LVal);
7940 
7941   auto CheckedHandleSizeof = [&](QualType Ty, CharUnits &Result) {
7942     if (Ty.isNull() || Ty->isIncompleteType() || Ty->isFunctionType())
7943       return false;
7944     return HandleSizeof(Info, ExprLoc, Ty, Result);
7945   };
7946 
7947   // We want to evaluate the size of the entire object. This is a valid fallback
7948   // for when Type=1 and the designator is invalid, because we're asked for an
7949   // upper-bound.
7950   if (!(Type & 1) || LVal.Designator.Invalid || DetermineForCompleteObject) {
7951     // Type=3 wants a lower bound, so we can't fall back to this.
7952     if (Type == 3 && !DetermineForCompleteObject)
7953       return false;
7954 
7955     llvm::APInt APEndOffset;
7956     if (isBaseAnAllocSizeCall(LVal.getLValueBase()) &&
7957         getBytesReturnedByAllocSizeCall(Info.Ctx, LVal, APEndOffset))
7958       return convertUnsignedAPIntToCharUnits(APEndOffset, EndOffset);
7959 
7960     if (LVal.InvalidBase)
7961       return false;
7962 
7963     QualType BaseTy = getObjectType(LVal.getLValueBase());
7964     return CheckedHandleSizeof(BaseTy, EndOffset);
7965   }
7966 
7967   // We want to evaluate the size of a subobject.
7968   const SubobjectDesignator &Designator = LVal.Designator;
7969 
7970   // The following is a moderately common idiom in C:
7971   //
7972   // struct Foo { int a; char c[1]; };
7973   // struct Foo *F = (struct Foo *)malloc(sizeof(struct Foo) + strlen(Bar));
7974   // strcpy(&F->c[0], Bar);
7975   //
7976   // In order to not break too much legacy code, we need to support it.
7977   if (isUserWritingOffTheEnd(Info.Ctx, LVal)) {
7978     // If we can resolve this to an alloc_size call, we can hand that back,
7979     // because we know for certain how many bytes there are to write to.
7980     llvm::APInt APEndOffset;
7981     if (isBaseAnAllocSizeCall(LVal.getLValueBase()) &&
7982         getBytesReturnedByAllocSizeCall(Info.Ctx, LVal, APEndOffset))
7983       return convertUnsignedAPIntToCharUnits(APEndOffset, EndOffset);
7984 
7985     // If we cannot determine the size of the initial allocation, then we can't
7986     // given an accurate upper-bound. However, we are still able to give
7987     // conservative lower-bounds for Type=3.
7988     if (Type == 1)
7989       return false;
7990   }
7991 
7992   CharUnits BytesPerElem;
7993   if (!CheckedHandleSizeof(Designator.MostDerivedType, BytesPerElem))
7994     return false;
7995 
7996   // According to the GCC documentation, we want the size of the subobject
7997   // denoted by the pointer. But that's not quite right -- what we actually
7998   // want is the size of the immediately-enclosing array, if there is one.
7999   int64_t ElemsRemaining;
8000   if (Designator.MostDerivedIsArrayElement &&
8001       Designator.Entries.size() == Designator.MostDerivedPathLength) {
8002     uint64_t ArraySize = Designator.getMostDerivedArraySize();
8003     uint64_t ArrayIndex = Designator.Entries.back().ArrayIndex;
8004     ElemsRemaining = ArraySize <= ArrayIndex ? 0 : ArraySize - ArrayIndex;
8005   } else {
8006     ElemsRemaining = Designator.isOnePastTheEnd() ? 0 : 1;
8007   }
8008 
8009   EndOffset = LVal.getLValueOffset() + BytesPerElem * ElemsRemaining;
8010   return true;
8011 }
8012 
8013 /// Tries to evaluate the __builtin_object_size for @p E. If successful,
8014 /// returns true and stores the result in @p Size.
8015 ///
8016 /// If @p WasError is non-null, this will report whether the failure to evaluate
8017 /// is to be treated as an Error in IntExprEvaluator.
8018 static bool tryEvaluateBuiltinObjectSize(const Expr *E, unsigned Type,
8019                                          EvalInfo &Info, uint64_t &Size) {
8020   // Determine the denoted object.
8021   LValue LVal;
8022   {
8023     // The operand of __builtin_object_size is never evaluated for side-effects.
8024     // If there are any, but we can determine the pointed-to object anyway, then
8025     // ignore the side-effects.
8026     SpeculativeEvaluationRAII SpeculativeEval(Info);
8027     FoldOffsetRAII Fold(Info);
8028 
8029     if (E->isGLValue()) {
8030       // It's possible for us to be given GLValues if we're called via
8031       // Expr::tryEvaluateObjectSize.
8032       APValue RVal;
8033       if (!EvaluateAsRValue(Info, E, RVal))
8034         return false;
8035       LVal.setFrom(Info.Ctx, RVal);
8036     } else if (!EvaluatePointer(ignorePointerCastsAndParens(E), LVal, Info,
8037                                 /*InvalidBaseOK=*/true))
8038       return false;
8039   }
8040 
8041   // If we point to before the start of the object, there are no accessible
8042   // bytes.
8043   if (LVal.getLValueOffset().isNegative()) {
8044     Size = 0;
8045     return true;
8046   }
8047 
8048   CharUnits EndOffset;
8049   if (!determineEndOffset(Info, E->getExprLoc(), Type, LVal, EndOffset))
8050     return false;
8051 
8052   // If we've fallen outside of the end offset, just pretend there's nothing to
8053   // write to/read from.
8054   if (EndOffset <= LVal.getLValueOffset())
8055     Size = 0;
8056   else
8057     Size = (EndOffset - LVal.getLValueOffset()).getQuantity();
8058   return true;
8059 }
8060 
8061 bool IntExprEvaluator::VisitCallExpr(const CallExpr *E) {
8062   if (unsigned BuiltinOp = E->getBuiltinCallee())
8063     return VisitBuiltinCallExpr(E, BuiltinOp);
8064 
8065   return ExprEvaluatorBaseTy::VisitCallExpr(E);
8066 }
8067 
8068 bool IntExprEvaluator::VisitBuiltinCallExpr(const CallExpr *E,
8069                                             unsigned BuiltinOp) {
8070   switch (unsigned BuiltinOp = E->getBuiltinCallee()) {
8071   default:
8072     return ExprEvaluatorBaseTy::VisitCallExpr(E);
8073 
8074   case Builtin::BI__builtin_object_size: {
8075     // The type was checked when we built the expression.
8076     unsigned Type =
8077         E->getArg(1)->EvaluateKnownConstInt(Info.Ctx).getZExtValue();
8078     assert(Type <= 3 && "unexpected type");
8079 
8080     uint64_t Size;
8081     if (tryEvaluateBuiltinObjectSize(E->getArg(0), Type, Info, Size))
8082       return Success(Size, E);
8083 
8084     if (E->getArg(0)->HasSideEffects(Info.Ctx))
8085       return Success((Type & 2) ? 0 : -1, E);
8086 
8087     // Expression had no side effects, but we couldn't statically determine the
8088     // size of the referenced object.
8089     switch (Info.EvalMode) {
8090     case EvalInfo::EM_ConstantExpression:
8091     case EvalInfo::EM_PotentialConstantExpression:
8092     case EvalInfo::EM_ConstantFold:
8093     case EvalInfo::EM_EvaluateForOverflow:
8094     case EvalInfo::EM_IgnoreSideEffects:
8095     case EvalInfo::EM_OffsetFold:
8096       // Leave it to IR generation.
8097       return Error(E);
8098     case EvalInfo::EM_ConstantExpressionUnevaluated:
8099     case EvalInfo::EM_PotentialConstantExpressionUnevaluated:
8100       // Reduce it to a constant now.
8101       return Success((Type & 2) ? 0 : -1, E);
8102     }
8103 
8104     llvm_unreachable("unexpected EvalMode");
8105   }
8106 
8107   case Builtin::BI__builtin_bswap16:
8108   case Builtin::BI__builtin_bswap32:
8109   case Builtin::BI__builtin_bswap64: {
8110     APSInt Val;
8111     if (!EvaluateInteger(E->getArg(0), Val, Info))
8112       return false;
8113 
8114     return Success(Val.byteSwap(), E);
8115   }
8116 
8117   case Builtin::BI__builtin_classify_type:
8118     return Success((int)EvaluateBuiltinClassifyType(E, Info.getLangOpts()), E);
8119 
8120   // FIXME: BI__builtin_clrsb
8121   // FIXME: BI__builtin_clrsbl
8122   // FIXME: BI__builtin_clrsbll
8123 
8124   case Builtin::BI__builtin_clz:
8125   case Builtin::BI__builtin_clzl:
8126   case Builtin::BI__builtin_clzll:
8127   case Builtin::BI__builtin_clzs: {
8128     APSInt Val;
8129     if (!EvaluateInteger(E->getArg(0), Val, Info))
8130       return false;
8131     if (!Val)
8132       return Error(E);
8133 
8134     return Success(Val.countLeadingZeros(), E);
8135   }
8136 
8137   case Builtin::BI__builtin_constant_p:
8138     return Success(EvaluateBuiltinConstantP(Info.Ctx, E->getArg(0)), E);
8139 
8140   case Builtin::BI__builtin_ctz:
8141   case Builtin::BI__builtin_ctzl:
8142   case Builtin::BI__builtin_ctzll:
8143   case Builtin::BI__builtin_ctzs: {
8144     APSInt Val;
8145     if (!EvaluateInteger(E->getArg(0), Val, Info))
8146       return false;
8147     if (!Val)
8148       return Error(E);
8149 
8150     return Success(Val.countTrailingZeros(), E);
8151   }
8152 
8153   case Builtin::BI__builtin_eh_return_data_regno: {
8154     int Operand = E->getArg(0)->EvaluateKnownConstInt(Info.Ctx).getZExtValue();
8155     Operand = Info.Ctx.getTargetInfo().getEHDataRegisterNumber(Operand);
8156     return Success(Operand, E);
8157   }
8158 
8159   case Builtin::BI__builtin_expect:
8160     return Visit(E->getArg(0));
8161 
8162   case Builtin::BI__builtin_ffs:
8163   case Builtin::BI__builtin_ffsl:
8164   case Builtin::BI__builtin_ffsll: {
8165     APSInt Val;
8166     if (!EvaluateInteger(E->getArg(0), Val, Info))
8167       return false;
8168 
8169     unsigned N = Val.countTrailingZeros();
8170     return Success(N == Val.getBitWidth() ? 0 : N + 1, E);
8171   }
8172 
8173   case Builtin::BI__builtin_fpclassify: {
8174     APFloat Val(0.0);
8175     if (!EvaluateFloat(E->getArg(5), Val, Info))
8176       return false;
8177     unsigned Arg;
8178     switch (Val.getCategory()) {
8179     case APFloat::fcNaN: Arg = 0; break;
8180     case APFloat::fcInfinity: Arg = 1; break;
8181     case APFloat::fcNormal: Arg = Val.isDenormal() ? 3 : 2; break;
8182     case APFloat::fcZero: Arg = 4; break;
8183     }
8184     return Visit(E->getArg(Arg));
8185   }
8186 
8187   case Builtin::BI__builtin_isinf_sign: {
8188     APFloat Val(0.0);
8189     return EvaluateFloat(E->getArg(0), Val, Info) &&
8190            Success(Val.isInfinity() ? (Val.isNegative() ? -1 : 1) : 0, E);
8191   }
8192 
8193   case Builtin::BI__builtin_isinf: {
8194     APFloat Val(0.0);
8195     return EvaluateFloat(E->getArg(0), Val, Info) &&
8196            Success(Val.isInfinity() ? 1 : 0, E);
8197   }
8198 
8199   case Builtin::BI__builtin_isfinite: {
8200     APFloat Val(0.0);
8201     return EvaluateFloat(E->getArg(0), Val, Info) &&
8202            Success(Val.isFinite() ? 1 : 0, E);
8203   }
8204 
8205   case Builtin::BI__builtin_isnan: {
8206     APFloat Val(0.0);
8207     return EvaluateFloat(E->getArg(0), Val, Info) &&
8208            Success(Val.isNaN() ? 1 : 0, E);
8209   }
8210 
8211   case Builtin::BI__builtin_isnormal: {
8212     APFloat Val(0.0);
8213     return EvaluateFloat(E->getArg(0), Val, Info) &&
8214            Success(Val.isNormal() ? 1 : 0, E);
8215   }
8216 
8217   case Builtin::BI__builtin_parity:
8218   case Builtin::BI__builtin_parityl:
8219   case Builtin::BI__builtin_parityll: {
8220     APSInt Val;
8221     if (!EvaluateInteger(E->getArg(0), Val, Info))
8222       return false;
8223 
8224     return Success(Val.countPopulation() % 2, E);
8225   }
8226 
8227   case Builtin::BI__builtin_popcount:
8228   case Builtin::BI__builtin_popcountl:
8229   case Builtin::BI__builtin_popcountll: {
8230     APSInt Val;
8231     if (!EvaluateInteger(E->getArg(0), Val, Info))
8232       return false;
8233 
8234     return Success(Val.countPopulation(), E);
8235   }
8236 
8237   case Builtin::BIstrlen:
8238   case Builtin::BIwcslen:
8239     // A call to strlen is not a constant expression.
8240     if (Info.getLangOpts().CPlusPlus11)
8241       Info.CCEDiag(E, diag::note_constexpr_invalid_function)
8242         << /*isConstexpr*/0 << /*isConstructor*/0
8243         << (std::string("'") + Info.Ctx.BuiltinInfo.getName(BuiltinOp) + "'");
8244     else
8245       Info.CCEDiag(E, diag::note_invalid_subexpr_in_const_expr);
8246     LLVM_FALLTHROUGH;
8247   case Builtin::BI__builtin_strlen:
8248   case Builtin::BI__builtin_wcslen: {
8249     // As an extension, we support __builtin_strlen() as a constant expression,
8250     // and support folding strlen() to a constant.
8251     LValue String;
8252     if (!EvaluatePointer(E->getArg(0), String, Info))
8253       return false;
8254 
8255     QualType CharTy = E->getArg(0)->getType()->getPointeeType();
8256 
8257     // Fast path: if it's a string literal, search the string value.
8258     if (const StringLiteral *S = dyn_cast_or_null<StringLiteral>(
8259             String.getLValueBase().dyn_cast<const Expr *>())) {
8260       // The string literal may have embedded null characters. Find the first
8261       // one and truncate there.
8262       StringRef Str = S->getBytes();
8263       int64_t Off = String.Offset.getQuantity();
8264       if (Off >= 0 && (uint64_t)Off <= (uint64_t)Str.size() &&
8265           S->getCharByteWidth() == 1 &&
8266           // FIXME: Add fast-path for wchar_t too.
8267           Info.Ctx.hasSameUnqualifiedType(CharTy, Info.Ctx.CharTy)) {
8268         Str = Str.substr(Off);
8269 
8270         StringRef::size_type Pos = Str.find(0);
8271         if (Pos != StringRef::npos)
8272           Str = Str.substr(0, Pos);
8273 
8274         return Success(Str.size(), E);
8275       }
8276 
8277       // Fall through to slow path to issue appropriate diagnostic.
8278     }
8279 
8280     // Slow path: scan the bytes of the string looking for the terminating 0.
8281     for (uint64_t Strlen = 0; /**/; ++Strlen) {
8282       APValue Char;
8283       if (!handleLValueToRValueConversion(Info, E, CharTy, String, Char) ||
8284           !Char.isInt())
8285         return false;
8286       if (!Char.getInt())
8287         return Success(Strlen, E);
8288       if (!HandleLValueArrayAdjustment(Info, E, String, CharTy, 1))
8289         return false;
8290     }
8291   }
8292 
8293   case Builtin::BIstrcmp:
8294   case Builtin::BIwcscmp:
8295   case Builtin::BIstrncmp:
8296   case Builtin::BIwcsncmp:
8297   case Builtin::BImemcmp:
8298   case Builtin::BIwmemcmp:
8299     // A call to strlen is not a constant expression.
8300     if (Info.getLangOpts().CPlusPlus11)
8301       Info.CCEDiag(E, diag::note_constexpr_invalid_function)
8302         << /*isConstexpr*/0 << /*isConstructor*/0
8303         << (std::string("'") + Info.Ctx.BuiltinInfo.getName(BuiltinOp) + "'");
8304     else
8305       Info.CCEDiag(E, diag::note_invalid_subexpr_in_const_expr);
8306     LLVM_FALLTHROUGH;
8307   case Builtin::BI__builtin_strcmp:
8308   case Builtin::BI__builtin_wcscmp:
8309   case Builtin::BI__builtin_strncmp:
8310   case Builtin::BI__builtin_wcsncmp:
8311   case Builtin::BI__builtin_memcmp:
8312   case Builtin::BI__builtin_wmemcmp: {
8313     LValue String1, String2;
8314     if (!EvaluatePointer(E->getArg(0), String1, Info) ||
8315         !EvaluatePointer(E->getArg(1), String2, Info))
8316       return false;
8317 
8318     QualType CharTy = E->getArg(0)->getType()->getPointeeType();
8319 
8320     uint64_t MaxLength = uint64_t(-1);
8321     if (BuiltinOp != Builtin::BIstrcmp &&
8322         BuiltinOp != Builtin::BIwcscmp &&
8323         BuiltinOp != Builtin::BI__builtin_strcmp &&
8324         BuiltinOp != Builtin::BI__builtin_wcscmp) {
8325       APSInt N;
8326       if (!EvaluateInteger(E->getArg(2), N, Info))
8327         return false;
8328       MaxLength = N.getExtValue();
8329     }
8330     bool StopAtNull = (BuiltinOp != Builtin::BImemcmp &&
8331                        BuiltinOp != Builtin::BIwmemcmp &&
8332                        BuiltinOp != Builtin::BI__builtin_memcmp &&
8333                        BuiltinOp != Builtin::BI__builtin_wmemcmp);
8334     bool IsWide = BuiltinOp == Builtin::BIwcscmp ||
8335                   BuiltinOp == Builtin::BIwcsncmp ||
8336                   BuiltinOp == Builtin::BIwmemcmp ||
8337                   BuiltinOp == Builtin::BI__builtin_wcscmp ||
8338                   BuiltinOp == Builtin::BI__builtin_wcsncmp ||
8339                   BuiltinOp == Builtin::BI__builtin_wmemcmp;
8340     for (; MaxLength; --MaxLength) {
8341       APValue Char1, Char2;
8342       if (!handleLValueToRValueConversion(Info, E, CharTy, String1, Char1) ||
8343           !handleLValueToRValueConversion(Info, E, CharTy, String2, Char2) ||
8344           !Char1.isInt() || !Char2.isInt())
8345         return false;
8346       if (Char1.getInt() != Char2.getInt()) {
8347         if (IsWide) // wmemcmp compares with wchar_t signedness.
8348           return Success(Char1.getInt() < Char2.getInt() ? -1 : 1, E);
8349         // memcmp always compares unsigned chars.
8350         return Success(Char1.getInt().ult(Char2.getInt()) ? -1 : 1, E);
8351       }
8352       if (StopAtNull && !Char1.getInt())
8353         return Success(0, E);
8354       assert(!(StopAtNull && !Char2.getInt()));
8355       if (!HandleLValueArrayAdjustment(Info, E, String1, CharTy, 1) ||
8356           !HandleLValueArrayAdjustment(Info, E, String2, CharTy, 1))
8357         return false;
8358     }
8359     // We hit the strncmp / memcmp limit.
8360     return Success(0, E);
8361   }
8362 
8363   case Builtin::BI__atomic_always_lock_free:
8364   case Builtin::BI__atomic_is_lock_free:
8365   case Builtin::BI__c11_atomic_is_lock_free: {
8366     APSInt SizeVal;
8367     if (!EvaluateInteger(E->getArg(0), SizeVal, Info))
8368       return false;
8369 
8370     // For __atomic_is_lock_free(sizeof(_Atomic(T))), if the size is a power
8371     // of two less than the maximum inline atomic width, we know it is
8372     // lock-free.  If the size isn't a power of two, or greater than the
8373     // maximum alignment where we promote atomics, we know it is not lock-free
8374     // (at least not in the sense of atomic_is_lock_free).  Otherwise,
8375     // the answer can only be determined at runtime; for example, 16-byte
8376     // atomics have lock-free implementations on some, but not all,
8377     // x86-64 processors.
8378 
8379     // Check power-of-two.
8380     CharUnits Size = CharUnits::fromQuantity(SizeVal.getZExtValue());
8381     if (Size.isPowerOfTwo()) {
8382       // Check against inlining width.
8383       unsigned InlineWidthBits =
8384           Info.Ctx.getTargetInfo().getMaxAtomicInlineWidth();
8385       if (Size <= Info.Ctx.toCharUnitsFromBits(InlineWidthBits)) {
8386         if (BuiltinOp == Builtin::BI__c11_atomic_is_lock_free ||
8387             Size == CharUnits::One() ||
8388             E->getArg(1)->isNullPointerConstant(Info.Ctx,
8389                                                 Expr::NPC_NeverValueDependent))
8390           // OK, we will inline appropriately-aligned operations of this size,
8391           // and _Atomic(T) is appropriately-aligned.
8392           return Success(1, E);
8393 
8394         QualType PointeeType = E->getArg(1)->IgnoreImpCasts()->getType()->
8395           castAs<PointerType>()->getPointeeType();
8396         if (!PointeeType->isIncompleteType() &&
8397             Info.Ctx.getTypeAlignInChars(PointeeType) >= Size) {
8398           // OK, we will inline operations on this object.
8399           return Success(1, E);
8400         }
8401       }
8402     }
8403 
8404     return BuiltinOp == Builtin::BI__atomic_always_lock_free ?
8405         Success(0, E) : Error(E);
8406   }
8407   case Builtin::BIomp_is_initial_device:
8408     // We can decide statically which value the runtime would return if called.
8409     return Success(Info.getLangOpts().OpenMPIsDevice ? 0 : 1, E);
8410   case Builtin::BI__builtin_add_overflow:
8411   case Builtin::BI__builtin_sub_overflow:
8412   case Builtin::BI__builtin_mul_overflow:
8413   case Builtin::BI__builtin_sadd_overflow:
8414   case Builtin::BI__builtin_uadd_overflow:
8415   case Builtin::BI__builtin_uaddl_overflow:
8416   case Builtin::BI__builtin_uaddll_overflow:
8417   case Builtin::BI__builtin_usub_overflow:
8418   case Builtin::BI__builtin_usubl_overflow:
8419   case Builtin::BI__builtin_usubll_overflow:
8420   case Builtin::BI__builtin_umul_overflow:
8421   case Builtin::BI__builtin_umull_overflow:
8422   case Builtin::BI__builtin_umulll_overflow:
8423   case Builtin::BI__builtin_saddl_overflow:
8424   case Builtin::BI__builtin_saddll_overflow:
8425   case Builtin::BI__builtin_ssub_overflow:
8426   case Builtin::BI__builtin_ssubl_overflow:
8427   case Builtin::BI__builtin_ssubll_overflow:
8428   case Builtin::BI__builtin_smul_overflow:
8429   case Builtin::BI__builtin_smull_overflow:
8430   case Builtin::BI__builtin_smulll_overflow: {
8431     LValue ResultLValue;
8432     APSInt LHS, RHS;
8433 
8434     QualType ResultType = E->getArg(2)->getType()->getPointeeType();
8435     if (!EvaluateInteger(E->getArg(0), LHS, Info) ||
8436         !EvaluateInteger(E->getArg(1), RHS, Info) ||
8437         !EvaluatePointer(E->getArg(2), ResultLValue, Info))
8438       return false;
8439 
8440     APSInt Result;
8441     bool DidOverflow = false;
8442 
8443     // If the types don't have to match, enlarge all 3 to the largest of them.
8444     if (BuiltinOp == Builtin::BI__builtin_add_overflow ||
8445         BuiltinOp == Builtin::BI__builtin_sub_overflow ||
8446         BuiltinOp == Builtin::BI__builtin_mul_overflow) {
8447       bool IsSigned = LHS.isSigned() || RHS.isSigned() ||
8448                       ResultType->isSignedIntegerOrEnumerationType();
8449       bool AllSigned = LHS.isSigned() && RHS.isSigned() &&
8450                       ResultType->isSignedIntegerOrEnumerationType();
8451       uint64_t LHSSize = LHS.getBitWidth();
8452       uint64_t RHSSize = RHS.getBitWidth();
8453       uint64_t ResultSize = Info.Ctx.getTypeSize(ResultType);
8454       uint64_t MaxBits = std::max(std::max(LHSSize, RHSSize), ResultSize);
8455 
8456       // Add an additional bit if the signedness isn't uniformly agreed to. We
8457       // could do this ONLY if there is a signed and an unsigned that both have
8458       // MaxBits, but the code to check that is pretty nasty.  The issue will be
8459       // caught in the shrink-to-result later anyway.
8460       if (IsSigned && !AllSigned)
8461         ++MaxBits;
8462 
8463       LHS = APSInt(IsSigned ? LHS.sextOrSelf(MaxBits) : LHS.zextOrSelf(MaxBits),
8464                    !IsSigned);
8465       RHS = APSInt(IsSigned ? RHS.sextOrSelf(MaxBits) : RHS.zextOrSelf(MaxBits),
8466                    !IsSigned);
8467       Result = APSInt(MaxBits, !IsSigned);
8468     }
8469 
8470     // Find largest int.
8471     switch (BuiltinOp) {
8472     default:
8473       llvm_unreachable("Invalid value for BuiltinOp");
8474     case Builtin::BI__builtin_add_overflow:
8475     case Builtin::BI__builtin_sadd_overflow:
8476     case Builtin::BI__builtin_saddl_overflow:
8477     case Builtin::BI__builtin_saddll_overflow:
8478     case Builtin::BI__builtin_uadd_overflow:
8479     case Builtin::BI__builtin_uaddl_overflow:
8480     case Builtin::BI__builtin_uaddll_overflow:
8481       Result = LHS.isSigned() ? LHS.sadd_ov(RHS, DidOverflow)
8482                               : LHS.uadd_ov(RHS, DidOverflow);
8483       break;
8484     case Builtin::BI__builtin_sub_overflow:
8485     case Builtin::BI__builtin_ssub_overflow:
8486     case Builtin::BI__builtin_ssubl_overflow:
8487     case Builtin::BI__builtin_ssubll_overflow:
8488     case Builtin::BI__builtin_usub_overflow:
8489     case Builtin::BI__builtin_usubl_overflow:
8490     case Builtin::BI__builtin_usubll_overflow:
8491       Result = LHS.isSigned() ? LHS.ssub_ov(RHS, DidOverflow)
8492                               : LHS.usub_ov(RHS, DidOverflow);
8493       break;
8494     case Builtin::BI__builtin_mul_overflow:
8495     case Builtin::BI__builtin_smul_overflow:
8496     case Builtin::BI__builtin_smull_overflow:
8497     case Builtin::BI__builtin_smulll_overflow:
8498     case Builtin::BI__builtin_umul_overflow:
8499     case Builtin::BI__builtin_umull_overflow:
8500     case Builtin::BI__builtin_umulll_overflow:
8501       Result = LHS.isSigned() ? LHS.smul_ov(RHS, DidOverflow)
8502                               : LHS.umul_ov(RHS, DidOverflow);
8503       break;
8504     }
8505 
8506     // In the case where multiple sizes are allowed, truncate and see if
8507     // the values are the same.
8508     if (BuiltinOp == Builtin::BI__builtin_add_overflow ||
8509         BuiltinOp == Builtin::BI__builtin_sub_overflow ||
8510         BuiltinOp == Builtin::BI__builtin_mul_overflow) {
8511       // APSInt doesn't have a TruncOrSelf, so we use extOrTrunc instead,
8512       // since it will give us the behavior of a TruncOrSelf in the case where
8513       // its parameter <= its size.  We previously set Result to be at least the
8514       // type-size of the result, so getTypeSize(ResultType) <= Result.BitWidth
8515       // will work exactly like TruncOrSelf.
8516       APSInt Temp = Result.extOrTrunc(Info.Ctx.getTypeSize(ResultType));
8517       Temp.setIsSigned(ResultType->isSignedIntegerOrEnumerationType());
8518 
8519       if (!APSInt::isSameValue(Temp, Result))
8520         DidOverflow = true;
8521       Result = Temp;
8522     }
8523 
8524     APValue APV{Result};
8525     if (!handleAssignment(Info, E, ResultLValue, ResultType, APV))
8526       return false;
8527     return Success(DidOverflow, E);
8528   }
8529   }
8530 }
8531 
8532 /// Determine whether this is a pointer past the end of the complete
8533 /// object referred to by the lvalue.
8534 static bool isOnePastTheEndOfCompleteObject(const ASTContext &Ctx,
8535                                             const LValue &LV) {
8536   // A null pointer can be viewed as being "past the end" but we don't
8537   // choose to look at it that way here.
8538   if (!LV.getLValueBase())
8539     return false;
8540 
8541   // If the designator is valid and refers to a subobject, we're not pointing
8542   // past the end.
8543   if (!LV.getLValueDesignator().Invalid &&
8544       !LV.getLValueDesignator().isOnePastTheEnd())
8545     return false;
8546 
8547   // A pointer to an incomplete type might be past-the-end if the type's size is
8548   // zero.  We cannot tell because the type is incomplete.
8549   QualType Ty = getType(LV.getLValueBase());
8550   if (Ty->isIncompleteType())
8551     return true;
8552 
8553   // We're a past-the-end pointer if we point to the byte after the object,
8554   // no matter what our type or path is.
8555   auto Size = Ctx.getTypeSizeInChars(Ty);
8556   return LV.getLValueOffset() == Size;
8557 }
8558 
8559 namespace {
8560 
8561 /// Data recursive integer evaluator of certain binary operators.
8562 ///
8563 /// We use a data recursive algorithm for binary operators so that we are able
8564 /// to handle extreme cases of chained binary operators without causing stack
8565 /// overflow.
8566 class DataRecursiveIntBinOpEvaluator {
8567   struct EvalResult {
8568     APValue Val;
8569     bool Failed;
8570 
8571     EvalResult() : Failed(false) { }
8572 
8573     void swap(EvalResult &RHS) {
8574       Val.swap(RHS.Val);
8575       Failed = RHS.Failed;
8576       RHS.Failed = false;
8577     }
8578   };
8579 
8580   struct Job {
8581     const Expr *E;
8582     EvalResult LHSResult; // meaningful only for binary operator expression.
8583     enum { AnyExprKind, BinOpKind, BinOpVisitedLHSKind } Kind;
8584 
8585     Job() = default;
8586     Job(Job &&) = default;
8587 
8588     void startSpeculativeEval(EvalInfo &Info) {
8589       SpecEvalRAII = SpeculativeEvaluationRAII(Info);
8590     }
8591 
8592   private:
8593     SpeculativeEvaluationRAII SpecEvalRAII;
8594   };
8595 
8596   SmallVector<Job, 16> Queue;
8597 
8598   IntExprEvaluator &IntEval;
8599   EvalInfo &Info;
8600   APValue &FinalResult;
8601 
8602 public:
8603   DataRecursiveIntBinOpEvaluator(IntExprEvaluator &IntEval, APValue &Result)
8604     : IntEval(IntEval), Info(IntEval.getEvalInfo()), FinalResult(Result) { }
8605 
8606   /// True if \param E is a binary operator that we are going to handle
8607   /// data recursively.
8608   /// We handle binary operators that are comma, logical, or that have operands
8609   /// with integral or enumeration type.
8610   static bool shouldEnqueue(const BinaryOperator *E) {
8611     return E->getOpcode() == BO_Comma || E->isLogicalOp() ||
8612            (E->isRValue() && E->getType()->isIntegralOrEnumerationType() &&
8613             E->getLHS()->getType()->isIntegralOrEnumerationType() &&
8614             E->getRHS()->getType()->isIntegralOrEnumerationType());
8615   }
8616 
8617   bool Traverse(const BinaryOperator *E) {
8618     enqueue(E);
8619     EvalResult PrevResult;
8620     while (!Queue.empty())
8621       process(PrevResult);
8622 
8623     if (PrevResult.Failed) return false;
8624 
8625     FinalResult.swap(PrevResult.Val);
8626     return true;
8627   }
8628 
8629 private:
8630   bool Success(uint64_t Value, const Expr *E, APValue &Result) {
8631     return IntEval.Success(Value, E, Result);
8632   }
8633   bool Success(const APSInt &Value, const Expr *E, APValue &Result) {
8634     return IntEval.Success(Value, E, Result);
8635   }
8636   bool Error(const Expr *E) {
8637     return IntEval.Error(E);
8638   }
8639   bool Error(const Expr *E, diag::kind D) {
8640     return IntEval.Error(E, D);
8641   }
8642 
8643   OptionalDiagnostic CCEDiag(const Expr *E, diag::kind D) {
8644     return Info.CCEDiag(E, D);
8645   }
8646 
8647   // Returns true if visiting the RHS is necessary, false otherwise.
8648   bool VisitBinOpLHSOnly(EvalResult &LHSResult, const BinaryOperator *E,
8649                          bool &SuppressRHSDiags);
8650 
8651   bool VisitBinOp(const EvalResult &LHSResult, const EvalResult &RHSResult,
8652                   const BinaryOperator *E, APValue &Result);
8653 
8654   void EvaluateExpr(const Expr *E, EvalResult &Result) {
8655     Result.Failed = !Evaluate(Result.Val, Info, E);
8656     if (Result.Failed)
8657       Result.Val = APValue();
8658   }
8659 
8660   void process(EvalResult &Result);
8661 
8662   void enqueue(const Expr *E) {
8663     E = E->IgnoreParens();
8664     Queue.resize(Queue.size()+1);
8665     Queue.back().E = E;
8666     Queue.back().Kind = Job::AnyExprKind;
8667   }
8668 };
8669 
8670 }
8671 
8672 bool DataRecursiveIntBinOpEvaluator::
8673        VisitBinOpLHSOnly(EvalResult &LHSResult, const BinaryOperator *E,
8674                          bool &SuppressRHSDiags) {
8675   if (E->getOpcode() == BO_Comma) {
8676     // Ignore LHS but note if we could not evaluate it.
8677     if (LHSResult.Failed)
8678       return Info.noteSideEffect();
8679     return true;
8680   }
8681 
8682   if (E->isLogicalOp()) {
8683     bool LHSAsBool;
8684     if (!LHSResult.Failed && HandleConversionToBool(LHSResult.Val, LHSAsBool)) {
8685       // We were able to evaluate the LHS, see if we can get away with not
8686       // evaluating the RHS: 0 && X -> 0, 1 || X -> 1
8687       if (LHSAsBool == (E->getOpcode() == BO_LOr)) {
8688         Success(LHSAsBool, E, LHSResult.Val);
8689         return false; // Ignore RHS
8690       }
8691     } else {
8692       LHSResult.Failed = true;
8693 
8694       // Since we weren't able to evaluate the left hand side, it
8695       // might have had side effects.
8696       if (!Info.noteSideEffect())
8697         return false;
8698 
8699       // We can't evaluate the LHS; however, sometimes the result
8700       // is determined by the RHS: X && 0 -> 0, X || 1 -> 1.
8701       // Don't ignore RHS and suppress diagnostics from this arm.
8702       SuppressRHSDiags = true;
8703     }
8704 
8705     return true;
8706   }
8707 
8708   assert(E->getLHS()->getType()->isIntegralOrEnumerationType() &&
8709          E->getRHS()->getType()->isIntegralOrEnumerationType());
8710 
8711   if (LHSResult.Failed && !Info.noteFailure())
8712     return false; // Ignore RHS;
8713 
8714   return true;
8715 }
8716 
8717 static void addOrSubLValueAsInteger(APValue &LVal, const APSInt &Index,
8718                                     bool IsSub) {
8719   // Compute the new offset in the appropriate width, wrapping at 64 bits.
8720   // FIXME: When compiling for a 32-bit target, we should use 32-bit
8721   // offsets.
8722   assert(!LVal.hasLValuePath() && "have designator for integer lvalue");
8723   CharUnits &Offset = LVal.getLValueOffset();
8724   uint64_t Offset64 = Offset.getQuantity();
8725   uint64_t Index64 = Index.extOrTrunc(64).getZExtValue();
8726   Offset = CharUnits::fromQuantity(IsSub ? Offset64 - Index64
8727                                          : Offset64 + Index64);
8728 }
8729 
8730 bool DataRecursiveIntBinOpEvaluator::
8731        VisitBinOp(const EvalResult &LHSResult, const EvalResult &RHSResult,
8732                   const BinaryOperator *E, APValue &Result) {
8733   if (E->getOpcode() == BO_Comma) {
8734     if (RHSResult.Failed)
8735       return false;
8736     Result = RHSResult.Val;
8737     return true;
8738   }
8739 
8740   if (E->isLogicalOp()) {
8741     bool lhsResult, rhsResult;
8742     bool LHSIsOK = HandleConversionToBool(LHSResult.Val, lhsResult);
8743     bool RHSIsOK = HandleConversionToBool(RHSResult.Val, rhsResult);
8744 
8745     if (LHSIsOK) {
8746       if (RHSIsOK) {
8747         if (E->getOpcode() == BO_LOr)
8748           return Success(lhsResult || rhsResult, E, Result);
8749         else
8750           return Success(lhsResult && rhsResult, E, Result);
8751       }
8752     } else {
8753       if (RHSIsOK) {
8754         // We can't evaluate the LHS; however, sometimes the result
8755         // is determined by the RHS: X && 0 -> 0, X || 1 -> 1.
8756         if (rhsResult == (E->getOpcode() == BO_LOr))
8757           return Success(rhsResult, E, Result);
8758       }
8759     }
8760 
8761     return false;
8762   }
8763 
8764   assert(E->getLHS()->getType()->isIntegralOrEnumerationType() &&
8765          E->getRHS()->getType()->isIntegralOrEnumerationType());
8766 
8767   if (LHSResult.Failed || RHSResult.Failed)
8768     return false;
8769 
8770   const APValue &LHSVal = LHSResult.Val;
8771   const APValue &RHSVal = RHSResult.Val;
8772 
8773   // Handle cases like (unsigned long)&a + 4.
8774   if (E->isAdditiveOp() && LHSVal.isLValue() && RHSVal.isInt()) {
8775     Result = LHSVal;
8776     addOrSubLValueAsInteger(Result, RHSVal.getInt(), E->getOpcode() == BO_Sub);
8777     return true;
8778   }
8779 
8780   // Handle cases like 4 + (unsigned long)&a
8781   if (E->getOpcode() == BO_Add &&
8782       RHSVal.isLValue() && LHSVal.isInt()) {
8783     Result = RHSVal;
8784     addOrSubLValueAsInteger(Result, LHSVal.getInt(), /*IsSub*/false);
8785     return true;
8786   }
8787 
8788   if (E->getOpcode() == BO_Sub && LHSVal.isLValue() && RHSVal.isLValue()) {
8789     // Handle (intptr_t)&&A - (intptr_t)&&B.
8790     if (!LHSVal.getLValueOffset().isZero() ||
8791         !RHSVal.getLValueOffset().isZero())
8792       return false;
8793     const Expr *LHSExpr = LHSVal.getLValueBase().dyn_cast<const Expr*>();
8794     const Expr *RHSExpr = RHSVal.getLValueBase().dyn_cast<const Expr*>();
8795     if (!LHSExpr || !RHSExpr)
8796       return false;
8797     const AddrLabelExpr *LHSAddrExpr = dyn_cast<AddrLabelExpr>(LHSExpr);
8798     const AddrLabelExpr *RHSAddrExpr = dyn_cast<AddrLabelExpr>(RHSExpr);
8799     if (!LHSAddrExpr || !RHSAddrExpr)
8800       return false;
8801     // Make sure both labels come from the same function.
8802     if (LHSAddrExpr->getLabel()->getDeclContext() !=
8803         RHSAddrExpr->getLabel()->getDeclContext())
8804       return false;
8805     Result = APValue(LHSAddrExpr, RHSAddrExpr);
8806     return true;
8807   }
8808 
8809   // All the remaining cases expect both operands to be an integer
8810   if (!LHSVal.isInt() || !RHSVal.isInt())
8811     return Error(E);
8812 
8813   // Set up the width and signedness manually, in case it can't be deduced
8814   // from the operation we're performing.
8815   // FIXME: Don't do this in the cases where we can deduce it.
8816   APSInt Value(Info.Ctx.getIntWidth(E->getType()),
8817                E->getType()->isUnsignedIntegerOrEnumerationType());
8818   if (!handleIntIntBinOp(Info, E, LHSVal.getInt(), E->getOpcode(),
8819                          RHSVal.getInt(), Value))
8820     return false;
8821   return Success(Value, E, Result);
8822 }
8823 
8824 void DataRecursiveIntBinOpEvaluator::process(EvalResult &Result) {
8825   Job &job = Queue.back();
8826 
8827   switch (job.Kind) {
8828     case Job::AnyExprKind: {
8829       if (const BinaryOperator *Bop = dyn_cast<BinaryOperator>(job.E)) {
8830         if (shouldEnqueue(Bop)) {
8831           job.Kind = Job::BinOpKind;
8832           enqueue(Bop->getLHS());
8833           return;
8834         }
8835       }
8836 
8837       EvaluateExpr(job.E, Result);
8838       Queue.pop_back();
8839       return;
8840     }
8841 
8842     case Job::BinOpKind: {
8843       const BinaryOperator *Bop = cast<BinaryOperator>(job.E);
8844       bool SuppressRHSDiags = false;
8845       if (!VisitBinOpLHSOnly(Result, Bop, SuppressRHSDiags)) {
8846         Queue.pop_back();
8847         return;
8848       }
8849       if (SuppressRHSDiags)
8850         job.startSpeculativeEval(Info);
8851       job.LHSResult.swap(Result);
8852       job.Kind = Job::BinOpVisitedLHSKind;
8853       enqueue(Bop->getRHS());
8854       return;
8855     }
8856 
8857     case Job::BinOpVisitedLHSKind: {
8858       const BinaryOperator *Bop = cast<BinaryOperator>(job.E);
8859       EvalResult RHS;
8860       RHS.swap(Result);
8861       Result.Failed = !VisitBinOp(job.LHSResult, RHS, Bop, Result.Val);
8862       Queue.pop_back();
8863       return;
8864     }
8865   }
8866 
8867   llvm_unreachable("Invalid Job::Kind!");
8868 }
8869 
8870 namespace {
8871 /// Used when we determine that we should fail, but can keep evaluating prior to
8872 /// noting that we had a failure.
8873 class DelayedNoteFailureRAII {
8874   EvalInfo &Info;
8875   bool NoteFailure;
8876 
8877 public:
8878   DelayedNoteFailureRAII(EvalInfo &Info, bool NoteFailure = true)
8879       : Info(Info), NoteFailure(NoteFailure) {}
8880   ~DelayedNoteFailureRAII() {
8881     if (NoteFailure) {
8882       bool ContinueAfterFailure = Info.noteFailure();
8883       (void)ContinueAfterFailure;
8884       assert(ContinueAfterFailure &&
8885              "Shouldn't have kept evaluating on failure.");
8886     }
8887   }
8888 };
8889 }
8890 
8891 template <class SuccessCB, class AfterCB>
8892 static bool
8893 EvaluateComparisonBinaryOperator(EvalInfo &Info, const BinaryOperator *E,
8894                                  SuccessCB &&Success, AfterCB &&DoAfter) {
8895   assert(E->isComparisonOp() && "expected comparison operator");
8896   assert((E->getOpcode() == BO_Cmp ||
8897           E->getType()->isIntegralOrEnumerationType()) &&
8898          "unsupported binary expression evaluation");
8899   auto Error = [&](const Expr *E) {
8900     Info.FFDiag(E, diag::note_invalid_subexpr_in_const_expr);
8901     return false;
8902   };
8903 
8904   using CCR = ComparisonCategoryResult;
8905   bool IsRelational = E->isRelationalOp();
8906   bool IsEquality = E->isEqualityOp();
8907   if (E->getOpcode() == BO_Cmp) {
8908     const ComparisonCategoryInfo &CmpInfo =
8909         Info.Ctx.CompCategories.getInfoForType(E->getType());
8910     IsRelational = CmpInfo.isOrdered();
8911     IsEquality = CmpInfo.isEquality();
8912   }
8913 
8914   QualType LHSTy = E->getLHS()->getType();
8915   QualType RHSTy = E->getRHS()->getType();
8916 
8917   if (LHSTy->isIntegralOrEnumerationType() &&
8918       RHSTy->isIntegralOrEnumerationType()) {
8919     APSInt LHS, RHS;
8920     bool LHSOK = EvaluateInteger(E->getLHS(), LHS, Info);
8921     if (!LHSOK && !Info.noteFailure())
8922       return false;
8923     if (!EvaluateInteger(E->getRHS(), RHS, Info) || !LHSOK)
8924       return false;
8925     if (LHS < RHS)
8926       return Success(CCR::Less, E);
8927     if (LHS > RHS)
8928       return Success(CCR::Greater, E);
8929     return Success(CCR::Equal, E);
8930   }
8931 
8932   if (LHSTy->isAnyComplexType() || RHSTy->isAnyComplexType()) {
8933     ComplexValue LHS, RHS;
8934     bool LHSOK;
8935     if (E->isAssignmentOp()) {
8936       LValue LV;
8937       EvaluateLValue(E->getLHS(), LV, Info);
8938       LHSOK = false;
8939     } else if (LHSTy->isRealFloatingType()) {
8940       LHSOK = EvaluateFloat(E->getLHS(), LHS.FloatReal, Info);
8941       if (LHSOK) {
8942         LHS.makeComplexFloat();
8943         LHS.FloatImag = APFloat(LHS.FloatReal.getSemantics());
8944       }
8945     } else {
8946       LHSOK = EvaluateComplex(E->getLHS(), LHS, Info);
8947     }
8948     if (!LHSOK && !Info.noteFailure())
8949       return false;
8950 
8951     if (E->getRHS()->getType()->isRealFloatingType()) {
8952       if (!EvaluateFloat(E->getRHS(), RHS.FloatReal, Info) || !LHSOK)
8953         return false;
8954       RHS.makeComplexFloat();
8955       RHS.FloatImag = APFloat(RHS.FloatReal.getSemantics());
8956     } else if (!EvaluateComplex(E->getRHS(), RHS, Info) || !LHSOK)
8957       return false;
8958 
8959     if (LHS.isComplexFloat()) {
8960       APFloat::cmpResult CR_r =
8961         LHS.getComplexFloatReal().compare(RHS.getComplexFloatReal());
8962       APFloat::cmpResult CR_i =
8963         LHS.getComplexFloatImag().compare(RHS.getComplexFloatImag());
8964       bool IsEqual = CR_r == APFloat::cmpEqual && CR_i == APFloat::cmpEqual;
8965       return Success(IsEqual ? CCR::Equal : CCR::Nonequal, E);
8966     } else {
8967       assert(IsEquality && "invalid complex comparison");
8968       bool IsEqual = LHS.getComplexIntReal() == RHS.getComplexIntReal() &&
8969                      LHS.getComplexIntImag() == RHS.getComplexIntImag();
8970       return Success(IsEqual ? CCR::Equal : CCR::Nonequal, E);
8971     }
8972   }
8973 
8974   if (LHSTy->isRealFloatingType() &&
8975       RHSTy->isRealFloatingType()) {
8976     APFloat RHS(0.0), LHS(0.0);
8977 
8978     bool LHSOK = EvaluateFloat(E->getRHS(), RHS, Info);
8979     if (!LHSOK && !Info.noteFailure())
8980       return false;
8981 
8982     if (!EvaluateFloat(E->getLHS(), LHS, Info) || !LHSOK)
8983       return false;
8984 
8985     assert(E->isComparisonOp() && "Invalid binary operator!");
8986     auto GetCmpRes = [&]() {
8987       switch (LHS.compare(RHS)) {
8988       case APFloat::cmpEqual:
8989         return CCR::Equal;
8990       case APFloat::cmpLessThan:
8991         return CCR::Less;
8992       case APFloat::cmpGreaterThan:
8993         return CCR::Greater;
8994       case APFloat::cmpUnordered:
8995         return CCR::Unordered;
8996       }
8997       llvm_unreachable("Unrecognised APFloat::cmpResult enum");
8998     };
8999     return Success(GetCmpRes(), E);
9000   }
9001 
9002   if (LHSTy->isPointerType() && RHSTy->isPointerType()) {
9003     LValue LHSValue, RHSValue;
9004 
9005     bool LHSOK = EvaluatePointer(E->getLHS(), LHSValue, Info);
9006     if (!LHSOK && !Info.noteFailure())
9007       return false;
9008 
9009     if (!EvaluatePointer(E->getRHS(), RHSValue, Info) || !LHSOK)
9010       return false;
9011 
9012     // Reject differing bases from the normal codepath; we special-case
9013     // comparisons to null.
9014     if (!HasSameBase(LHSValue, RHSValue)) {
9015       // Inequalities and subtractions between unrelated pointers have
9016       // unspecified or undefined behavior.
9017       if (!IsEquality)
9018         return Error(E);
9019       // A constant address may compare equal to the address of a symbol.
9020       // The one exception is that address of an object cannot compare equal
9021       // to a null pointer constant.
9022       if ((!LHSValue.Base && !LHSValue.Offset.isZero()) ||
9023           (!RHSValue.Base && !RHSValue.Offset.isZero()))
9024         return Error(E);
9025       // It's implementation-defined whether distinct literals will have
9026       // distinct addresses. In clang, the result of such a comparison is
9027       // unspecified, so it is not a constant expression. However, we do know
9028       // that the address of a literal will be non-null.
9029       if ((IsLiteralLValue(LHSValue) || IsLiteralLValue(RHSValue)) &&
9030           LHSValue.Base && RHSValue.Base)
9031         return Error(E);
9032       // We can't tell whether weak symbols will end up pointing to the same
9033       // object.
9034       if (IsWeakLValue(LHSValue) || IsWeakLValue(RHSValue))
9035         return Error(E);
9036       // We can't compare the address of the start of one object with the
9037       // past-the-end address of another object, per C++ DR1652.
9038       if ((LHSValue.Base && LHSValue.Offset.isZero() &&
9039            isOnePastTheEndOfCompleteObject(Info.Ctx, RHSValue)) ||
9040           (RHSValue.Base && RHSValue.Offset.isZero() &&
9041            isOnePastTheEndOfCompleteObject(Info.Ctx, LHSValue)))
9042         return Error(E);
9043       // We can't tell whether an object is at the same address as another
9044       // zero sized object.
9045       if ((RHSValue.Base && isZeroSized(LHSValue)) ||
9046           (LHSValue.Base && isZeroSized(RHSValue)))
9047         return Error(E);
9048       return Success(CCR::Nonequal, E);
9049     }
9050 
9051     const CharUnits &LHSOffset = LHSValue.getLValueOffset();
9052     const CharUnits &RHSOffset = RHSValue.getLValueOffset();
9053 
9054     SubobjectDesignator &LHSDesignator = LHSValue.getLValueDesignator();
9055     SubobjectDesignator &RHSDesignator = RHSValue.getLValueDesignator();
9056 
9057     // C++11 [expr.rel]p3:
9058     //   Pointers to void (after pointer conversions) can be compared, with a
9059     //   result defined as follows: If both pointers represent the same
9060     //   address or are both the null pointer value, the result is true if the
9061     //   operator is <= or >= and false otherwise; otherwise the result is
9062     //   unspecified.
9063     // We interpret this as applying to pointers to *cv* void.
9064     if (LHSTy->isVoidPointerType() && LHSOffset != RHSOffset && IsRelational)
9065       Info.CCEDiag(E, diag::note_constexpr_void_comparison);
9066 
9067     // C++11 [expr.rel]p2:
9068     // - If two pointers point to non-static data members of the same object,
9069     //   or to subobjects or array elements fo such members, recursively, the
9070     //   pointer to the later declared member compares greater provided the
9071     //   two members have the same access control and provided their class is
9072     //   not a union.
9073     //   [...]
9074     // - Otherwise pointer comparisons are unspecified.
9075     if (!LHSDesignator.Invalid && !RHSDesignator.Invalid && IsRelational) {
9076       bool WasArrayIndex;
9077       unsigned Mismatch = FindDesignatorMismatch(
9078           getType(LHSValue.Base), LHSDesignator, RHSDesignator, WasArrayIndex);
9079       // At the point where the designators diverge, the comparison has a
9080       // specified value if:
9081       //  - we are comparing array indices
9082       //  - we are comparing fields of a union, or fields with the same access
9083       // Otherwise, the result is unspecified and thus the comparison is not a
9084       // constant expression.
9085       if (!WasArrayIndex && Mismatch < LHSDesignator.Entries.size() &&
9086           Mismatch < RHSDesignator.Entries.size()) {
9087         const FieldDecl *LF = getAsField(LHSDesignator.Entries[Mismatch]);
9088         const FieldDecl *RF = getAsField(RHSDesignator.Entries[Mismatch]);
9089         if (!LF && !RF)
9090           Info.CCEDiag(E, diag::note_constexpr_pointer_comparison_base_classes);
9091         else if (!LF)
9092           Info.CCEDiag(E, diag::note_constexpr_pointer_comparison_base_field)
9093               << getAsBaseClass(LHSDesignator.Entries[Mismatch])
9094               << RF->getParent() << RF;
9095         else if (!RF)
9096           Info.CCEDiag(E, diag::note_constexpr_pointer_comparison_base_field)
9097               << getAsBaseClass(RHSDesignator.Entries[Mismatch])
9098               << LF->getParent() << LF;
9099         else if (!LF->getParent()->isUnion() &&
9100                  LF->getAccess() != RF->getAccess())
9101           Info.CCEDiag(E,
9102                        diag::note_constexpr_pointer_comparison_differing_access)
9103               << LF << LF->getAccess() << RF << RF->getAccess()
9104               << LF->getParent();
9105       }
9106     }
9107 
9108     // The comparison here must be unsigned, and performed with the same
9109     // width as the pointer.
9110     unsigned PtrSize = Info.Ctx.getTypeSize(LHSTy);
9111     uint64_t CompareLHS = LHSOffset.getQuantity();
9112     uint64_t CompareRHS = RHSOffset.getQuantity();
9113     assert(PtrSize <= 64 && "Unexpected pointer width");
9114     uint64_t Mask = ~0ULL >> (64 - PtrSize);
9115     CompareLHS &= Mask;
9116     CompareRHS &= Mask;
9117 
9118     // If there is a base and this is a relational operator, we can only
9119     // compare pointers within the object in question; otherwise, the result
9120     // depends on where the object is located in memory.
9121     if (!LHSValue.Base.isNull() && IsRelational) {
9122       QualType BaseTy = getType(LHSValue.Base);
9123       if (BaseTy->isIncompleteType())
9124         return Error(E);
9125       CharUnits Size = Info.Ctx.getTypeSizeInChars(BaseTy);
9126       uint64_t OffsetLimit = Size.getQuantity();
9127       if (CompareLHS > OffsetLimit || CompareRHS > OffsetLimit)
9128         return Error(E);
9129     }
9130 
9131     if (CompareLHS < CompareRHS)
9132       return Success(CCR::Less, E);
9133     if (CompareLHS > CompareRHS)
9134       return Success(CCR::Greater, E);
9135     return Success(CCR::Equal, E);
9136   }
9137 
9138   if (LHSTy->isMemberPointerType()) {
9139     assert(IsEquality && "unexpected member pointer operation");
9140     assert(RHSTy->isMemberPointerType() && "invalid comparison");
9141 
9142     MemberPtr LHSValue, RHSValue;
9143 
9144     bool LHSOK = EvaluateMemberPointer(E->getLHS(), LHSValue, Info);
9145     if (!LHSOK && !Info.noteFailure())
9146       return false;
9147 
9148     if (!EvaluateMemberPointer(E->getRHS(), RHSValue, Info) || !LHSOK)
9149       return false;
9150 
9151     // C++11 [expr.eq]p2:
9152     //   If both operands are null, they compare equal. Otherwise if only one is
9153     //   null, they compare unequal.
9154     if (!LHSValue.getDecl() || !RHSValue.getDecl()) {
9155       bool Equal = !LHSValue.getDecl() && !RHSValue.getDecl();
9156       return Success(Equal ? CCR::Equal : CCR::Nonequal, E);
9157     }
9158 
9159     //   Otherwise if either is a pointer to a virtual member function, the
9160     //   result is unspecified.
9161     if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(LHSValue.getDecl()))
9162       if (MD->isVirtual())
9163         Info.CCEDiag(E, diag::note_constexpr_compare_virtual_mem_ptr) << MD;
9164     if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(RHSValue.getDecl()))
9165       if (MD->isVirtual())
9166         Info.CCEDiag(E, diag::note_constexpr_compare_virtual_mem_ptr) << MD;
9167 
9168     //   Otherwise they compare equal if and only if they would refer to the
9169     //   same member of the same most derived object or the same subobject if
9170     //   they were dereferenced with a hypothetical object of the associated
9171     //   class type.
9172     bool Equal = LHSValue == RHSValue;
9173     return Success(Equal ? CCR::Equal : CCR::Nonequal, E);
9174   }
9175 
9176   if (LHSTy->isNullPtrType()) {
9177     assert(E->isComparisonOp() && "unexpected nullptr operation");
9178     assert(RHSTy->isNullPtrType() && "missing pointer conversion");
9179     // C++11 [expr.rel]p4, [expr.eq]p3: If two operands of type std::nullptr_t
9180     // are compared, the result is true of the operator is <=, >= or ==, and
9181     // false otherwise.
9182     return Success(CCR::Equal, E);
9183   }
9184 
9185   return DoAfter();
9186 }
9187 
9188 bool RecordExprEvaluator::VisitBinCmp(const BinaryOperator *E) {
9189   if (!CheckLiteralType(Info, E))
9190     return false;
9191 
9192   auto OnSuccess = [&](ComparisonCategoryResult ResKind,
9193                        const BinaryOperator *E) {
9194     // Evaluation succeeded. Lookup the information for the comparison category
9195     // type and fetch the VarDecl for the result.
9196     const ComparisonCategoryInfo &CmpInfo =
9197         Info.Ctx.CompCategories.getInfoForType(E->getType());
9198     const VarDecl *VD =
9199         CmpInfo.getValueInfo(CmpInfo.makeWeakResult(ResKind))->VD;
9200     // Check and evaluate the result as a constant expression.
9201     LValue LV;
9202     LV.set(VD);
9203     if (!handleLValueToRValueConversion(Info, E, E->getType(), LV, Result))
9204       return false;
9205     return CheckConstantExpression(Info, E->getExprLoc(), E->getType(), Result);
9206   };
9207   return EvaluateComparisonBinaryOperator(Info, E, OnSuccess, [&]() {
9208     return ExprEvaluatorBaseTy::VisitBinCmp(E);
9209   });
9210 }
9211 
9212 bool IntExprEvaluator::VisitBinaryOperator(const BinaryOperator *E) {
9213   // We don't call noteFailure immediately because the assignment happens after
9214   // we evaluate LHS and RHS.
9215   if (!Info.keepEvaluatingAfterFailure() && E->isAssignmentOp())
9216     return Error(E);
9217 
9218   DelayedNoteFailureRAII MaybeNoteFailureLater(Info, E->isAssignmentOp());
9219   if (DataRecursiveIntBinOpEvaluator::shouldEnqueue(E))
9220     return DataRecursiveIntBinOpEvaluator(*this, Result).Traverse(E);
9221 
9222   assert((!E->getLHS()->getType()->isIntegralOrEnumerationType() ||
9223           !E->getRHS()->getType()->isIntegralOrEnumerationType()) &&
9224          "DataRecursiveIntBinOpEvaluator should have handled integral types");
9225 
9226   if (E->isComparisonOp()) {
9227     // Evaluate builtin binary comparisons by evaluating them as C++2a three-way
9228     // comparisons and then translating the result.
9229     auto OnSuccess = [&](ComparisonCategoryResult ResKind,
9230                          const BinaryOperator *E) {
9231       using CCR = ComparisonCategoryResult;
9232       bool IsEqual   = ResKind == CCR::Equal,
9233            IsLess    = ResKind == CCR::Less,
9234            IsGreater = ResKind == CCR::Greater;
9235       auto Op = E->getOpcode();
9236       switch (Op) {
9237       default:
9238         llvm_unreachable("unsupported binary operator");
9239       case BO_EQ:
9240       case BO_NE:
9241         return Success(IsEqual == (Op == BO_EQ), E);
9242       case BO_LT: return Success(IsLess, E);
9243       case BO_GT: return Success(IsGreater, E);
9244       case BO_LE: return Success(IsEqual || IsLess, E);
9245       case BO_GE: return Success(IsEqual || IsGreater, E);
9246       }
9247     };
9248     return EvaluateComparisonBinaryOperator(Info, E, OnSuccess, [&]() {
9249       return ExprEvaluatorBaseTy::VisitBinaryOperator(E);
9250     });
9251   }
9252 
9253   QualType LHSTy = E->getLHS()->getType();
9254   QualType RHSTy = E->getRHS()->getType();
9255 
9256   if (LHSTy->isPointerType() && RHSTy->isPointerType() &&
9257       E->getOpcode() == BO_Sub) {
9258     LValue LHSValue, RHSValue;
9259 
9260     bool LHSOK = EvaluatePointer(E->getLHS(), LHSValue, Info);
9261     if (!LHSOK && !Info.noteFailure())
9262       return false;
9263 
9264     if (!EvaluatePointer(E->getRHS(), RHSValue, Info) || !LHSOK)
9265       return false;
9266 
9267     // Reject differing bases from the normal codepath; we special-case
9268     // comparisons to null.
9269     if (!HasSameBase(LHSValue, RHSValue)) {
9270       // Handle &&A - &&B.
9271       if (!LHSValue.Offset.isZero() || !RHSValue.Offset.isZero())
9272         return Error(E);
9273       const Expr *LHSExpr = LHSValue.Base.dyn_cast<const Expr *>();
9274       const Expr *RHSExpr = RHSValue.Base.dyn_cast<const Expr *>();
9275       if (!LHSExpr || !RHSExpr)
9276         return Error(E);
9277       const AddrLabelExpr *LHSAddrExpr = dyn_cast<AddrLabelExpr>(LHSExpr);
9278       const AddrLabelExpr *RHSAddrExpr = dyn_cast<AddrLabelExpr>(RHSExpr);
9279       if (!LHSAddrExpr || !RHSAddrExpr)
9280         return Error(E);
9281       // Make sure both labels come from the same function.
9282       if (LHSAddrExpr->getLabel()->getDeclContext() !=
9283           RHSAddrExpr->getLabel()->getDeclContext())
9284         return Error(E);
9285       return Success(APValue(LHSAddrExpr, RHSAddrExpr), E);
9286     }
9287     const CharUnits &LHSOffset = LHSValue.getLValueOffset();
9288     const CharUnits &RHSOffset = RHSValue.getLValueOffset();
9289 
9290     SubobjectDesignator &LHSDesignator = LHSValue.getLValueDesignator();
9291     SubobjectDesignator &RHSDesignator = RHSValue.getLValueDesignator();
9292 
9293     // C++11 [expr.add]p6:
9294     //   Unless both pointers point to elements of the same array object, or
9295     //   one past the last element of the array object, the behavior is
9296     //   undefined.
9297     if (!LHSDesignator.Invalid && !RHSDesignator.Invalid &&
9298         !AreElementsOfSameArray(getType(LHSValue.Base), LHSDesignator,
9299                                 RHSDesignator))
9300       Info.CCEDiag(E, diag::note_constexpr_pointer_subtraction_not_same_array);
9301 
9302     QualType Type = E->getLHS()->getType();
9303     QualType ElementType = Type->getAs<PointerType>()->getPointeeType();
9304 
9305     CharUnits ElementSize;
9306     if (!HandleSizeof(Info, E->getExprLoc(), ElementType, ElementSize))
9307       return false;
9308 
9309     // As an extension, a type may have zero size (empty struct or union in
9310     // C, array of zero length). Pointer subtraction in such cases has
9311     // undefined behavior, so is not constant.
9312     if (ElementSize.isZero()) {
9313       Info.FFDiag(E, diag::note_constexpr_pointer_subtraction_zero_size)
9314           << ElementType;
9315       return false;
9316     }
9317 
9318     // FIXME: LLVM and GCC both compute LHSOffset - RHSOffset at runtime,
9319     // and produce incorrect results when it overflows. Such behavior
9320     // appears to be non-conforming, but is common, so perhaps we should
9321     // assume the standard intended for such cases to be undefined behavior
9322     // and check for them.
9323 
9324     // Compute (LHSOffset - RHSOffset) / Size carefully, checking for
9325     // overflow in the final conversion to ptrdiff_t.
9326     APSInt LHS(llvm::APInt(65, (int64_t)LHSOffset.getQuantity(), true), false);
9327     APSInt RHS(llvm::APInt(65, (int64_t)RHSOffset.getQuantity(), true), false);
9328     APSInt ElemSize(llvm::APInt(65, (int64_t)ElementSize.getQuantity(), true),
9329                     false);
9330     APSInt TrueResult = (LHS - RHS) / ElemSize;
9331     APSInt Result = TrueResult.trunc(Info.Ctx.getIntWidth(E->getType()));
9332 
9333     if (Result.extend(65) != TrueResult &&
9334         !HandleOverflow(Info, E, TrueResult, E->getType()))
9335       return false;
9336     return Success(Result, E);
9337   }
9338 
9339   return ExprEvaluatorBaseTy::VisitBinaryOperator(E);
9340 }
9341 
9342 /// VisitUnaryExprOrTypeTraitExpr - Evaluate a sizeof, alignof or vec_step with
9343 /// a result as the expression's type.
9344 bool IntExprEvaluator::VisitUnaryExprOrTypeTraitExpr(
9345                                     const UnaryExprOrTypeTraitExpr *E) {
9346   switch(E->getKind()) {
9347   case UETT_AlignOf: {
9348     if (E->isArgumentType())
9349       return Success(GetAlignOfType(Info, E->getArgumentType()), E);
9350     else
9351       return Success(GetAlignOfExpr(Info, E->getArgumentExpr()), E);
9352   }
9353 
9354   case UETT_VecStep: {
9355     QualType Ty = E->getTypeOfArgument();
9356 
9357     if (Ty->isVectorType()) {
9358       unsigned n = Ty->castAs<VectorType>()->getNumElements();
9359 
9360       // The vec_step built-in functions that take a 3-component
9361       // vector return 4. (OpenCL 1.1 spec 6.11.12)
9362       if (n == 3)
9363         n = 4;
9364 
9365       return Success(n, E);
9366     } else
9367       return Success(1, E);
9368   }
9369 
9370   case UETT_SizeOf: {
9371     QualType SrcTy = E->getTypeOfArgument();
9372     // C++ [expr.sizeof]p2: "When applied to a reference or a reference type,
9373     //   the result is the size of the referenced type."
9374     if (const ReferenceType *Ref = SrcTy->getAs<ReferenceType>())
9375       SrcTy = Ref->getPointeeType();
9376 
9377     CharUnits Sizeof;
9378     if (!HandleSizeof(Info, E->getExprLoc(), SrcTy, Sizeof))
9379       return false;
9380     return Success(Sizeof, E);
9381   }
9382   case UETT_OpenMPRequiredSimdAlign:
9383     assert(E->isArgumentType());
9384     return Success(
9385         Info.Ctx.toCharUnitsFromBits(
9386                     Info.Ctx.getOpenMPDefaultSimdAlign(E->getArgumentType()))
9387             .getQuantity(),
9388         E);
9389   }
9390 
9391   llvm_unreachable("unknown expr/type trait");
9392 }
9393 
9394 bool IntExprEvaluator::VisitOffsetOfExpr(const OffsetOfExpr *OOE) {
9395   CharUnits Result;
9396   unsigned n = OOE->getNumComponents();
9397   if (n == 0)
9398     return Error(OOE);
9399   QualType CurrentType = OOE->getTypeSourceInfo()->getType();
9400   for (unsigned i = 0; i != n; ++i) {
9401     OffsetOfNode ON = OOE->getComponent(i);
9402     switch (ON.getKind()) {
9403     case OffsetOfNode::Array: {
9404       const Expr *Idx = OOE->getIndexExpr(ON.getArrayExprIndex());
9405       APSInt IdxResult;
9406       if (!EvaluateInteger(Idx, IdxResult, Info))
9407         return false;
9408       const ArrayType *AT = Info.Ctx.getAsArrayType(CurrentType);
9409       if (!AT)
9410         return Error(OOE);
9411       CurrentType = AT->getElementType();
9412       CharUnits ElementSize = Info.Ctx.getTypeSizeInChars(CurrentType);
9413       Result += IdxResult.getSExtValue() * ElementSize;
9414       break;
9415     }
9416 
9417     case OffsetOfNode::Field: {
9418       FieldDecl *MemberDecl = ON.getField();
9419       const RecordType *RT = CurrentType->getAs<RecordType>();
9420       if (!RT)
9421         return Error(OOE);
9422       RecordDecl *RD = RT->getDecl();
9423       if (RD->isInvalidDecl()) return false;
9424       const ASTRecordLayout &RL = Info.Ctx.getASTRecordLayout(RD);
9425       unsigned i = MemberDecl->getFieldIndex();
9426       assert(i < RL.getFieldCount() && "offsetof field in wrong type");
9427       Result += Info.Ctx.toCharUnitsFromBits(RL.getFieldOffset(i));
9428       CurrentType = MemberDecl->getType().getNonReferenceType();
9429       break;
9430     }
9431 
9432     case OffsetOfNode::Identifier:
9433       llvm_unreachable("dependent __builtin_offsetof");
9434 
9435     case OffsetOfNode::Base: {
9436       CXXBaseSpecifier *BaseSpec = ON.getBase();
9437       if (BaseSpec->isVirtual())
9438         return Error(OOE);
9439 
9440       // Find the layout of the class whose base we are looking into.
9441       const RecordType *RT = CurrentType->getAs<RecordType>();
9442       if (!RT)
9443         return Error(OOE);
9444       RecordDecl *RD = RT->getDecl();
9445       if (RD->isInvalidDecl()) return false;
9446       const ASTRecordLayout &RL = Info.Ctx.getASTRecordLayout(RD);
9447 
9448       // Find the base class itself.
9449       CurrentType = BaseSpec->getType();
9450       const RecordType *BaseRT = CurrentType->getAs<RecordType>();
9451       if (!BaseRT)
9452         return Error(OOE);
9453 
9454       // Add the offset to the base.
9455       Result += RL.getBaseClassOffset(cast<CXXRecordDecl>(BaseRT->getDecl()));
9456       break;
9457     }
9458     }
9459   }
9460   return Success(Result, OOE);
9461 }
9462 
9463 bool IntExprEvaluator::VisitUnaryOperator(const UnaryOperator *E) {
9464   switch (E->getOpcode()) {
9465   default:
9466     // Address, indirect, pre/post inc/dec, etc are not valid constant exprs.
9467     // See C99 6.6p3.
9468     return Error(E);
9469   case UO_Extension:
9470     // FIXME: Should extension allow i-c-e extension expressions in its scope?
9471     // If so, we could clear the diagnostic ID.
9472     return Visit(E->getSubExpr());
9473   case UO_Plus:
9474     // The result is just the value.
9475     return Visit(E->getSubExpr());
9476   case UO_Minus: {
9477     if (!Visit(E->getSubExpr()))
9478       return false;
9479     if (!Result.isInt()) return Error(E);
9480     const APSInt &Value = Result.getInt();
9481     if (Value.isSigned() && Value.isMinSignedValue() && E->canOverflow() &&
9482         !HandleOverflow(Info, E, -Value.extend(Value.getBitWidth() + 1),
9483                         E->getType()))
9484       return false;
9485     return Success(-Value, E);
9486   }
9487   case UO_Not: {
9488     if (!Visit(E->getSubExpr()))
9489       return false;
9490     if (!Result.isInt()) return Error(E);
9491     return Success(~Result.getInt(), E);
9492   }
9493   case UO_LNot: {
9494     bool bres;
9495     if (!EvaluateAsBooleanCondition(E->getSubExpr(), bres, Info))
9496       return false;
9497     return Success(!bres, E);
9498   }
9499   }
9500 }
9501 
9502 /// HandleCast - This is used to evaluate implicit or explicit casts where the
9503 /// result type is integer.
9504 bool IntExprEvaluator::VisitCastExpr(const CastExpr *E) {
9505   const Expr *SubExpr = E->getSubExpr();
9506   QualType DestType = E->getType();
9507   QualType SrcType = SubExpr->getType();
9508 
9509   switch (E->getCastKind()) {
9510   case CK_BaseToDerived:
9511   case CK_DerivedToBase:
9512   case CK_UncheckedDerivedToBase:
9513   case CK_Dynamic:
9514   case CK_ToUnion:
9515   case CK_ArrayToPointerDecay:
9516   case CK_FunctionToPointerDecay:
9517   case CK_NullToPointer:
9518   case CK_NullToMemberPointer:
9519   case CK_BaseToDerivedMemberPointer:
9520   case CK_DerivedToBaseMemberPointer:
9521   case CK_ReinterpretMemberPointer:
9522   case CK_ConstructorConversion:
9523   case CK_IntegralToPointer:
9524   case CK_ToVoid:
9525   case CK_VectorSplat:
9526   case CK_IntegralToFloating:
9527   case CK_FloatingCast:
9528   case CK_CPointerToObjCPointerCast:
9529   case CK_BlockPointerToObjCPointerCast:
9530   case CK_AnyPointerToBlockPointerCast:
9531   case CK_ObjCObjectLValueCast:
9532   case CK_FloatingRealToComplex:
9533   case CK_FloatingComplexToReal:
9534   case CK_FloatingComplexCast:
9535   case CK_FloatingComplexToIntegralComplex:
9536   case CK_IntegralRealToComplex:
9537   case CK_IntegralComplexCast:
9538   case CK_IntegralComplexToFloatingComplex:
9539   case CK_BuiltinFnToFnPtr:
9540   case CK_ZeroToOCLEvent:
9541   case CK_ZeroToOCLQueue:
9542   case CK_NonAtomicToAtomic:
9543   case CK_AddressSpaceConversion:
9544   case CK_IntToOCLSampler:
9545     llvm_unreachable("invalid cast kind for integral value");
9546 
9547   case CK_BitCast:
9548   case CK_Dependent:
9549   case CK_LValueBitCast:
9550   case CK_ARCProduceObject:
9551   case CK_ARCConsumeObject:
9552   case CK_ARCReclaimReturnedObject:
9553   case CK_ARCExtendBlockObject:
9554   case CK_CopyAndAutoreleaseBlockObject:
9555     return Error(E);
9556 
9557   case CK_UserDefinedConversion:
9558   case CK_LValueToRValue:
9559   case CK_AtomicToNonAtomic:
9560   case CK_NoOp:
9561     return ExprEvaluatorBaseTy::VisitCastExpr(E);
9562 
9563   case CK_MemberPointerToBoolean:
9564   case CK_PointerToBoolean:
9565   case CK_IntegralToBoolean:
9566   case CK_FloatingToBoolean:
9567   case CK_BooleanToSignedIntegral:
9568   case CK_FloatingComplexToBoolean:
9569   case CK_IntegralComplexToBoolean: {
9570     bool BoolResult;
9571     if (!EvaluateAsBooleanCondition(SubExpr, BoolResult, Info))
9572       return false;
9573     uint64_t IntResult = BoolResult;
9574     if (BoolResult && E->getCastKind() == CK_BooleanToSignedIntegral)
9575       IntResult = (uint64_t)-1;
9576     return Success(IntResult, E);
9577   }
9578 
9579   case CK_IntegralCast: {
9580     if (!Visit(SubExpr))
9581       return false;
9582 
9583     if (!Result.isInt()) {
9584       // Allow casts of address-of-label differences if they are no-ops
9585       // or narrowing.  (The narrowing case isn't actually guaranteed to
9586       // be constant-evaluatable except in some narrow cases which are hard
9587       // to detect here.  We let it through on the assumption the user knows
9588       // what they are doing.)
9589       if (Result.isAddrLabelDiff())
9590         return Info.Ctx.getTypeSize(DestType) <= Info.Ctx.getTypeSize(SrcType);
9591       // Only allow casts of lvalues if they are lossless.
9592       return Info.Ctx.getTypeSize(DestType) == Info.Ctx.getTypeSize(SrcType);
9593     }
9594 
9595     return Success(HandleIntToIntCast(Info, E, DestType, SrcType,
9596                                       Result.getInt()), E);
9597   }
9598 
9599   case CK_PointerToIntegral: {
9600     CCEDiag(E, diag::note_constexpr_invalid_cast) << 2;
9601 
9602     LValue LV;
9603     if (!EvaluatePointer(SubExpr, LV, Info))
9604       return false;
9605 
9606     if (LV.getLValueBase()) {
9607       // Only allow based lvalue casts if they are lossless.
9608       // FIXME: Allow a larger integer size than the pointer size, and allow
9609       // narrowing back down to pointer width in subsequent integral casts.
9610       // FIXME: Check integer type's active bits, not its type size.
9611       if (Info.Ctx.getTypeSize(DestType) != Info.Ctx.getTypeSize(SrcType))
9612         return Error(E);
9613 
9614       LV.Designator.setInvalid();
9615       LV.moveInto(Result);
9616       return true;
9617     }
9618 
9619     uint64_t V;
9620     if (LV.isNullPointer())
9621       V = Info.Ctx.getTargetNullPointerValue(SrcType);
9622     else
9623       V = LV.getLValueOffset().getQuantity();
9624 
9625     APSInt AsInt = Info.Ctx.MakeIntValue(V, SrcType);
9626     return Success(HandleIntToIntCast(Info, E, DestType, SrcType, AsInt), E);
9627   }
9628 
9629   case CK_IntegralComplexToReal: {
9630     ComplexValue C;
9631     if (!EvaluateComplex(SubExpr, C, Info))
9632       return false;
9633     return Success(C.getComplexIntReal(), E);
9634   }
9635 
9636   case CK_FloatingToIntegral: {
9637     APFloat F(0.0);
9638     if (!EvaluateFloat(SubExpr, F, Info))
9639       return false;
9640 
9641     APSInt Value;
9642     if (!HandleFloatToIntCast(Info, E, SrcType, F, DestType, Value))
9643       return false;
9644     return Success(Value, E);
9645   }
9646   }
9647 
9648   llvm_unreachable("unknown cast resulting in integral value");
9649 }
9650 
9651 bool IntExprEvaluator::VisitUnaryReal(const UnaryOperator *E) {
9652   if (E->getSubExpr()->getType()->isAnyComplexType()) {
9653     ComplexValue LV;
9654     if (!EvaluateComplex(E->getSubExpr(), LV, Info))
9655       return false;
9656     if (!LV.isComplexInt())
9657       return Error(E);
9658     return Success(LV.getComplexIntReal(), E);
9659   }
9660 
9661   return Visit(E->getSubExpr());
9662 }
9663 
9664 bool IntExprEvaluator::VisitUnaryImag(const UnaryOperator *E) {
9665   if (E->getSubExpr()->getType()->isComplexIntegerType()) {
9666     ComplexValue LV;
9667     if (!EvaluateComplex(E->getSubExpr(), LV, Info))
9668       return false;
9669     if (!LV.isComplexInt())
9670       return Error(E);
9671     return Success(LV.getComplexIntImag(), E);
9672   }
9673 
9674   VisitIgnoredValue(E->getSubExpr());
9675   return Success(0, E);
9676 }
9677 
9678 bool IntExprEvaluator::VisitSizeOfPackExpr(const SizeOfPackExpr *E) {
9679   return Success(E->getPackLength(), E);
9680 }
9681 
9682 bool IntExprEvaluator::VisitCXXNoexceptExpr(const CXXNoexceptExpr *E) {
9683   return Success(E->getValue(), E);
9684 }
9685 
9686 bool FixedPointExprEvaluator::VisitUnaryOperator(const UnaryOperator *E) {
9687   switch (E->getOpcode()) {
9688     default:
9689       // Invalid unary operators
9690       return Error(E);
9691     case UO_Plus:
9692       // The result is just the value.
9693       return Visit(E->getSubExpr());
9694     case UO_Minus: {
9695       if (!Visit(E->getSubExpr())) return false;
9696       if (!Result.isInt()) return Error(E);
9697       const APSInt &Value = Result.getInt();
9698       if (Value.isSigned() && Value.isMinSignedValue() && E->canOverflow()) {
9699         SmallString<64> S;
9700         FixedPointValueToString(S, Value,
9701                                 Info.Ctx.getTypeInfo(E->getType()).Width);
9702         Info.CCEDiag(E, diag::note_constexpr_overflow) << S << E->getType();
9703         if (Info.noteUndefinedBehavior()) return false;
9704       }
9705       return Success(-Value, E);
9706     }
9707     case UO_LNot: {
9708       bool bres;
9709       if (!EvaluateAsBooleanCondition(E->getSubExpr(), bres, Info))
9710         return false;
9711       return Success(!bres, E);
9712     }
9713   }
9714 }
9715 
9716 //===----------------------------------------------------------------------===//
9717 // Float Evaluation
9718 //===----------------------------------------------------------------------===//
9719 
9720 namespace {
9721 class FloatExprEvaluator
9722   : public ExprEvaluatorBase<FloatExprEvaluator> {
9723   APFloat &Result;
9724 public:
9725   FloatExprEvaluator(EvalInfo &info, APFloat &result)
9726     : ExprEvaluatorBaseTy(info), Result(result) {}
9727 
9728   bool Success(const APValue &V, const Expr *e) {
9729     Result = V.getFloat();
9730     return true;
9731   }
9732 
9733   bool ZeroInitialization(const Expr *E) {
9734     Result = APFloat::getZero(Info.Ctx.getFloatTypeSemantics(E->getType()));
9735     return true;
9736   }
9737 
9738   bool VisitCallExpr(const CallExpr *E);
9739 
9740   bool VisitUnaryOperator(const UnaryOperator *E);
9741   bool VisitBinaryOperator(const BinaryOperator *E);
9742   bool VisitFloatingLiteral(const FloatingLiteral *E);
9743   bool VisitCastExpr(const CastExpr *E);
9744 
9745   bool VisitUnaryReal(const UnaryOperator *E);
9746   bool VisitUnaryImag(const UnaryOperator *E);
9747 
9748   // FIXME: Missing: array subscript of vector, member of vector
9749 };
9750 } // end anonymous namespace
9751 
9752 static bool EvaluateFloat(const Expr* E, APFloat& Result, EvalInfo &Info) {
9753   assert(E->isRValue() && E->getType()->isRealFloatingType());
9754   return FloatExprEvaluator(Info, Result).Visit(E);
9755 }
9756 
9757 static bool TryEvaluateBuiltinNaN(const ASTContext &Context,
9758                                   QualType ResultTy,
9759                                   const Expr *Arg,
9760                                   bool SNaN,
9761                                   llvm::APFloat &Result) {
9762   const StringLiteral *S = dyn_cast<StringLiteral>(Arg->IgnoreParenCasts());
9763   if (!S) return false;
9764 
9765   const llvm::fltSemantics &Sem = Context.getFloatTypeSemantics(ResultTy);
9766 
9767   llvm::APInt fill;
9768 
9769   // Treat empty strings as if they were zero.
9770   if (S->getString().empty())
9771     fill = llvm::APInt(32, 0);
9772   else if (S->getString().getAsInteger(0, fill))
9773     return false;
9774 
9775   if (Context.getTargetInfo().isNan2008()) {
9776     if (SNaN)
9777       Result = llvm::APFloat::getSNaN(Sem, false, &fill);
9778     else
9779       Result = llvm::APFloat::getQNaN(Sem, false, &fill);
9780   } else {
9781     // Prior to IEEE 754-2008, architectures were allowed to choose whether
9782     // the first bit of their significand was set for qNaN or sNaN. MIPS chose
9783     // a different encoding to what became a standard in 2008, and for pre-
9784     // 2008 revisions, MIPS interpreted sNaN-2008 as qNan and qNaN-2008 as
9785     // sNaN. This is now known as "legacy NaN" encoding.
9786     if (SNaN)
9787       Result = llvm::APFloat::getQNaN(Sem, false, &fill);
9788     else
9789       Result = llvm::APFloat::getSNaN(Sem, false, &fill);
9790   }
9791 
9792   return true;
9793 }
9794 
9795 bool FloatExprEvaluator::VisitCallExpr(const CallExpr *E) {
9796   switch (E->getBuiltinCallee()) {
9797   default:
9798     return ExprEvaluatorBaseTy::VisitCallExpr(E);
9799 
9800   case Builtin::BI__builtin_huge_val:
9801   case Builtin::BI__builtin_huge_valf:
9802   case Builtin::BI__builtin_huge_vall:
9803   case Builtin::BI__builtin_huge_valf128:
9804   case Builtin::BI__builtin_inf:
9805   case Builtin::BI__builtin_inff:
9806   case Builtin::BI__builtin_infl:
9807   case Builtin::BI__builtin_inff128: {
9808     const llvm::fltSemantics &Sem =
9809       Info.Ctx.getFloatTypeSemantics(E->getType());
9810     Result = llvm::APFloat::getInf(Sem);
9811     return true;
9812   }
9813 
9814   case Builtin::BI__builtin_nans:
9815   case Builtin::BI__builtin_nansf:
9816   case Builtin::BI__builtin_nansl:
9817   case Builtin::BI__builtin_nansf128:
9818     if (!TryEvaluateBuiltinNaN(Info.Ctx, E->getType(), E->getArg(0),
9819                                true, Result))
9820       return Error(E);
9821     return true;
9822 
9823   case Builtin::BI__builtin_nan:
9824   case Builtin::BI__builtin_nanf:
9825   case Builtin::BI__builtin_nanl:
9826   case Builtin::BI__builtin_nanf128:
9827     // If this is __builtin_nan() turn this into a nan, otherwise we
9828     // can't constant fold it.
9829     if (!TryEvaluateBuiltinNaN(Info.Ctx, E->getType(), E->getArg(0),
9830                                false, Result))
9831       return Error(E);
9832     return true;
9833 
9834   case Builtin::BI__builtin_fabs:
9835   case Builtin::BI__builtin_fabsf:
9836   case Builtin::BI__builtin_fabsl:
9837   case Builtin::BI__builtin_fabsf128:
9838     if (!EvaluateFloat(E->getArg(0), Result, Info))
9839       return false;
9840 
9841     if (Result.isNegative())
9842       Result.changeSign();
9843     return true;
9844 
9845   // FIXME: Builtin::BI__builtin_powi
9846   // FIXME: Builtin::BI__builtin_powif
9847   // FIXME: Builtin::BI__builtin_powil
9848 
9849   case Builtin::BI__builtin_copysign:
9850   case Builtin::BI__builtin_copysignf:
9851   case Builtin::BI__builtin_copysignl:
9852   case Builtin::BI__builtin_copysignf128: {
9853     APFloat RHS(0.);
9854     if (!EvaluateFloat(E->getArg(0), Result, Info) ||
9855         !EvaluateFloat(E->getArg(1), RHS, Info))
9856       return false;
9857     Result.copySign(RHS);
9858     return true;
9859   }
9860   }
9861 }
9862 
9863 bool FloatExprEvaluator::VisitUnaryReal(const UnaryOperator *E) {
9864   if (E->getSubExpr()->getType()->isAnyComplexType()) {
9865     ComplexValue CV;
9866     if (!EvaluateComplex(E->getSubExpr(), CV, Info))
9867       return false;
9868     Result = CV.FloatReal;
9869     return true;
9870   }
9871 
9872   return Visit(E->getSubExpr());
9873 }
9874 
9875 bool FloatExprEvaluator::VisitUnaryImag(const UnaryOperator *E) {
9876   if (E->getSubExpr()->getType()->isAnyComplexType()) {
9877     ComplexValue CV;
9878     if (!EvaluateComplex(E->getSubExpr(), CV, Info))
9879       return false;
9880     Result = CV.FloatImag;
9881     return true;
9882   }
9883 
9884   VisitIgnoredValue(E->getSubExpr());
9885   const llvm::fltSemantics &Sem = Info.Ctx.getFloatTypeSemantics(E->getType());
9886   Result = llvm::APFloat::getZero(Sem);
9887   return true;
9888 }
9889 
9890 bool FloatExprEvaluator::VisitUnaryOperator(const UnaryOperator *E) {
9891   switch (E->getOpcode()) {
9892   default: return Error(E);
9893   case UO_Plus:
9894     return EvaluateFloat(E->getSubExpr(), Result, Info);
9895   case UO_Minus:
9896     if (!EvaluateFloat(E->getSubExpr(), Result, Info))
9897       return false;
9898     Result.changeSign();
9899     return true;
9900   }
9901 }
9902 
9903 bool FloatExprEvaluator::VisitBinaryOperator(const BinaryOperator *E) {
9904   if (E->isPtrMemOp() || E->isAssignmentOp() || E->getOpcode() == BO_Comma)
9905     return ExprEvaluatorBaseTy::VisitBinaryOperator(E);
9906 
9907   APFloat RHS(0.0);
9908   bool LHSOK = EvaluateFloat(E->getLHS(), Result, Info);
9909   if (!LHSOK && !Info.noteFailure())
9910     return false;
9911   return EvaluateFloat(E->getRHS(), RHS, Info) && LHSOK &&
9912          handleFloatFloatBinOp(Info, E, Result, E->getOpcode(), RHS);
9913 }
9914 
9915 bool FloatExprEvaluator::VisitFloatingLiteral(const FloatingLiteral *E) {
9916   Result = E->getValue();
9917   return true;
9918 }
9919 
9920 bool FloatExprEvaluator::VisitCastExpr(const CastExpr *E) {
9921   const Expr* SubExpr = E->getSubExpr();
9922 
9923   switch (E->getCastKind()) {
9924   default:
9925     return ExprEvaluatorBaseTy::VisitCastExpr(E);
9926 
9927   case CK_IntegralToFloating: {
9928     APSInt IntResult;
9929     return EvaluateInteger(SubExpr, IntResult, Info) &&
9930            HandleIntToFloatCast(Info, E, SubExpr->getType(), IntResult,
9931                                 E->getType(), Result);
9932   }
9933 
9934   case CK_FloatingCast: {
9935     if (!Visit(SubExpr))
9936       return false;
9937     return HandleFloatToFloatCast(Info, E, SubExpr->getType(), E->getType(),
9938                                   Result);
9939   }
9940 
9941   case CK_FloatingComplexToReal: {
9942     ComplexValue V;
9943     if (!EvaluateComplex(SubExpr, V, Info))
9944       return false;
9945     Result = V.getComplexFloatReal();
9946     return true;
9947   }
9948   }
9949 }
9950 
9951 //===----------------------------------------------------------------------===//
9952 // Complex Evaluation (for float and integer)
9953 //===----------------------------------------------------------------------===//
9954 
9955 namespace {
9956 class ComplexExprEvaluator
9957   : public ExprEvaluatorBase<ComplexExprEvaluator> {
9958   ComplexValue &Result;
9959 
9960 public:
9961   ComplexExprEvaluator(EvalInfo &info, ComplexValue &Result)
9962     : ExprEvaluatorBaseTy(info), Result(Result) {}
9963 
9964   bool Success(const APValue &V, const Expr *e) {
9965     Result.setFrom(V);
9966     return true;
9967   }
9968 
9969   bool ZeroInitialization(const Expr *E);
9970 
9971   //===--------------------------------------------------------------------===//
9972   //                            Visitor Methods
9973   //===--------------------------------------------------------------------===//
9974 
9975   bool VisitImaginaryLiteral(const ImaginaryLiteral *E);
9976   bool VisitCastExpr(const CastExpr *E);
9977   bool VisitBinaryOperator(const BinaryOperator *E);
9978   bool VisitUnaryOperator(const UnaryOperator *E);
9979   bool VisitInitListExpr(const InitListExpr *E);
9980 };
9981 } // end anonymous namespace
9982 
9983 static bool EvaluateComplex(const Expr *E, ComplexValue &Result,
9984                             EvalInfo &Info) {
9985   assert(E->isRValue() && E->getType()->isAnyComplexType());
9986   return ComplexExprEvaluator(Info, Result).Visit(E);
9987 }
9988 
9989 bool ComplexExprEvaluator::ZeroInitialization(const Expr *E) {
9990   QualType ElemTy = E->getType()->castAs<ComplexType>()->getElementType();
9991   if (ElemTy->isRealFloatingType()) {
9992     Result.makeComplexFloat();
9993     APFloat Zero = APFloat::getZero(Info.Ctx.getFloatTypeSemantics(ElemTy));
9994     Result.FloatReal = Zero;
9995     Result.FloatImag = Zero;
9996   } else {
9997     Result.makeComplexInt();
9998     APSInt Zero = Info.Ctx.MakeIntValue(0, ElemTy);
9999     Result.IntReal = Zero;
10000     Result.IntImag = Zero;
10001   }
10002   return true;
10003 }
10004 
10005 bool ComplexExprEvaluator::VisitImaginaryLiteral(const ImaginaryLiteral *E) {
10006   const Expr* SubExpr = E->getSubExpr();
10007 
10008   if (SubExpr->getType()->isRealFloatingType()) {
10009     Result.makeComplexFloat();
10010     APFloat &Imag = Result.FloatImag;
10011     if (!EvaluateFloat(SubExpr, Imag, Info))
10012       return false;
10013 
10014     Result.FloatReal = APFloat(Imag.getSemantics());
10015     return true;
10016   } else {
10017     assert(SubExpr->getType()->isIntegerType() &&
10018            "Unexpected imaginary literal.");
10019 
10020     Result.makeComplexInt();
10021     APSInt &Imag = Result.IntImag;
10022     if (!EvaluateInteger(SubExpr, Imag, Info))
10023       return false;
10024 
10025     Result.IntReal = APSInt(Imag.getBitWidth(), !Imag.isSigned());
10026     return true;
10027   }
10028 }
10029 
10030 bool ComplexExprEvaluator::VisitCastExpr(const CastExpr *E) {
10031 
10032   switch (E->getCastKind()) {
10033   case CK_BitCast:
10034   case CK_BaseToDerived:
10035   case CK_DerivedToBase:
10036   case CK_UncheckedDerivedToBase:
10037   case CK_Dynamic:
10038   case CK_ToUnion:
10039   case CK_ArrayToPointerDecay:
10040   case CK_FunctionToPointerDecay:
10041   case CK_NullToPointer:
10042   case CK_NullToMemberPointer:
10043   case CK_BaseToDerivedMemberPointer:
10044   case CK_DerivedToBaseMemberPointer:
10045   case CK_MemberPointerToBoolean:
10046   case CK_ReinterpretMemberPointer:
10047   case CK_ConstructorConversion:
10048   case CK_IntegralToPointer:
10049   case CK_PointerToIntegral:
10050   case CK_PointerToBoolean:
10051   case CK_ToVoid:
10052   case CK_VectorSplat:
10053   case CK_IntegralCast:
10054   case CK_BooleanToSignedIntegral:
10055   case CK_IntegralToBoolean:
10056   case CK_IntegralToFloating:
10057   case CK_FloatingToIntegral:
10058   case CK_FloatingToBoolean:
10059   case CK_FloatingCast:
10060   case CK_CPointerToObjCPointerCast:
10061   case CK_BlockPointerToObjCPointerCast:
10062   case CK_AnyPointerToBlockPointerCast:
10063   case CK_ObjCObjectLValueCast:
10064   case CK_FloatingComplexToReal:
10065   case CK_FloatingComplexToBoolean:
10066   case CK_IntegralComplexToReal:
10067   case CK_IntegralComplexToBoolean:
10068   case CK_ARCProduceObject:
10069   case CK_ARCConsumeObject:
10070   case CK_ARCReclaimReturnedObject:
10071   case CK_ARCExtendBlockObject:
10072   case CK_CopyAndAutoreleaseBlockObject:
10073   case CK_BuiltinFnToFnPtr:
10074   case CK_ZeroToOCLEvent:
10075   case CK_ZeroToOCLQueue:
10076   case CK_NonAtomicToAtomic:
10077   case CK_AddressSpaceConversion:
10078   case CK_IntToOCLSampler:
10079     llvm_unreachable("invalid cast kind for complex value");
10080 
10081   case CK_LValueToRValue:
10082   case CK_AtomicToNonAtomic:
10083   case CK_NoOp:
10084     return ExprEvaluatorBaseTy::VisitCastExpr(E);
10085 
10086   case CK_Dependent:
10087   case CK_LValueBitCast:
10088   case CK_UserDefinedConversion:
10089     return Error(E);
10090 
10091   case CK_FloatingRealToComplex: {
10092     APFloat &Real = Result.FloatReal;
10093     if (!EvaluateFloat(E->getSubExpr(), Real, Info))
10094       return false;
10095 
10096     Result.makeComplexFloat();
10097     Result.FloatImag = APFloat(Real.getSemantics());
10098     return true;
10099   }
10100 
10101   case CK_FloatingComplexCast: {
10102     if (!Visit(E->getSubExpr()))
10103       return false;
10104 
10105     QualType To = E->getType()->getAs<ComplexType>()->getElementType();
10106     QualType From
10107       = E->getSubExpr()->getType()->getAs<ComplexType>()->getElementType();
10108 
10109     return HandleFloatToFloatCast(Info, E, From, To, Result.FloatReal) &&
10110            HandleFloatToFloatCast(Info, E, From, To, Result.FloatImag);
10111   }
10112 
10113   case CK_FloatingComplexToIntegralComplex: {
10114     if (!Visit(E->getSubExpr()))
10115       return false;
10116 
10117     QualType To = E->getType()->getAs<ComplexType>()->getElementType();
10118     QualType From
10119       = E->getSubExpr()->getType()->getAs<ComplexType>()->getElementType();
10120     Result.makeComplexInt();
10121     return HandleFloatToIntCast(Info, E, From, Result.FloatReal,
10122                                 To, Result.IntReal) &&
10123            HandleFloatToIntCast(Info, E, From, Result.FloatImag,
10124                                 To, Result.IntImag);
10125   }
10126 
10127   case CK_IntegralRealToComplex: {
10128     APSInt &Real = Result.IntReal;
10129     if (!EvaluateInteger(E->getSubExpr(), Real, Info))
10130       return false;
10131 
10132     Result.makeComplexInt();
10133     Result.IntImag = APSInt(Real.getBitWidth(), !Real.isSigned());
10134     return true;
10135   }
10136 
10137   case CK_IntegralComplexCast: {
10138     if (!Visit(E->getSubExpr()))
10139       return false;
10140 
10141     QualType To = E->getType()->getAs<ComplexType>()->getElementType();
10142     QualType From
10143       = E->getSubExpr()->getType()->getAs<ComplexType>()->getElementType();
10144 
10145     Result.IntReal = HandleIntToIntCast(Info, E, To, From, Result.IntReal);
10146     Result.IntImag = HandleIntToIntCast(Info, E, To, From, Result.IntImag);
10147     return true;
10148   }
10149 
10150   case CK_IntegralComplexToFloatingComplex: {
10151     if (!Visit(E->getSubExpr()))
10152       return false;
10153 
10154     QualType To = E->getType()->castAs<ComplexType>()->getElementType();
10155     QualType From
10156       = E->getSubExpr()->getType()->castAs<ComplexType>()->getElementType();
10157     Result.makeComplexFloat();
10158     return HandleIntToFloatCast(Info, E, From, Result.IntReal,
10159                                 To, Result.FloatReal) &&
10160            HandleIntToFloatCast(Info, E, From, Result.IntImag,
10161                                 To, Result.FloatImag);
10162   }
10163   }
10164 
10165   llvm_unreachable("unknown cast resulting in complex value");
10166 }
10167 
10168 bool ComplexExprEvaluator::VisitBinaryOperator(const BinaryOperator *E) {
10169   if (E->isPtrMemOp() || E->isAssignmentOp() || E->getOpcode() == BO_Comma)
10170     return ExprEvaluatorBaseTy::VisitBinaryOperator(E);
10171 
10172   // Track whether the LHS or RHS is real at the type system level. When this is
10173   // the case we can simplify our evaluation strategy.
10174   bool LHSReal = false, RHSReal = false;
10175 
10176   bool LHSOK;
10177   if (E->getLHS()->getType()->isRealFloatingType()) {
10178     LHSReal = true;
10179     APFloat &Real = Result.FloatReal;
10180     LHSOK = EvaluateFloat(E->getLHS(), Real, Info);
10181     if (LHSOK) {
10182       Result.makeComplexFloat();
10183       Result.FloatImag = APFloat(Real.getSemantics());
10184     }
10185   } else {
10186     LHSOK = Visit(E->getLHS());
10187   }
10188   if (!LHSOK && !Info.noteFailure())
10189     return false;
10190 
10191   ComplexValue RHS;
10192   if (E->getRHS()->getType()->isRealFloatingType()) {
10193     RHSReal = true;
10194     APFloat &Real = RHS.FloatReal;
10195     if (!EvaluateFloat(E->getRHS(), Real, Info) || !LHSOK)
10196       return false;
10197     RHS.makeComplexFloat();
10198     RHS.FloatImag = APFloat(Real.getSemantics());
10199   } else if (!EvaluateComplex(E->getRHS(), RHS, Info) || !LHSOK)
10200     return false;
10201 
10202   assert(!(LHSReal && RHSReal) &&
10203          "Cannot have both operands of a complex operation be real.");
10204   switch (E->getOpcode()) {
10205   default: return Error(E);
10206   case BO_Add:
10207     if (Result.isComplexFloat()) {
10208       Result.getComplexFloatReal().add(RHS.getComplexFloatReal(),
10209                                        APFloat::rmNearestTiesToEven);
10210       if (LHSReal)
10211         Result.getComplexFloatImag() = RHS.getComplexFloatImag();
10212       else if (!RHSReal)
10213         Result.getComplexFloatImag().add(RHS.getComplexFloatImag(),
10214                                          APFloat::rmNearestTiesToEven);
10215     } else {
10216       Result.getComplexIntReal() += RHS.getComplexIntReal();
10217       Result.getComplexIntImag() += RHS.getComplexIntImag();
10218     }
10219     break;
10220   case BO_Sub:
10221     if (Result.isComplexFloat()) {
10222       Result.getComplexFloatReal().subtract(RHS.getComplexFloatReal(),
10223                                             APFloat::rmNearestTiesToEven);
10224       if (LHSReal) {
10225         Result.getComplexFloatImag() = RHS.getComplexFloatImag();
10226         Result.getComplexFloatImag().changeSign();
10227       } else if (!RHSReal) {
10228         Result.getComplexFloatImag().subtract(RHS.getComplexFloatImag(),
10229                                               APFloat::rmNearestTiesToEven);
10230       }
10231     } else {
10232       Result.getComplexIntReal() -= RHS.getComplexIntReal();
10233       Result.getComplexIntImag() -= RHS.getComplexIntImag();
10234     }
10235     break;
10236   case BO_Mul:
10237     if (Result.isComplexFloat()) {
10238       // This is an implementation of complex multiplication according to the
10239       // constraints laid out in C11 Annex G. The implemention uses the
10240       // following naming scheme:
10241       //   (a + ib) * (c + id)
10242       ComplexValue LHS = Result;
10243       APFloat &A = LHS.getComplexFloatReal();
10244       APFloat &B = LHS.getComplexFloatImag();
10245       APFloat &C = RHS.getComplexFloatReal();
10246       APFloat &D = RHS.getComplexFloatImag();
10247       APFloat &ResR = Result.getComplexFloatReal();
10248       APFloat &ResI = Result.getComplexFloatImag();
10249       if (LHSReal) {
10250         assert(!RHSReal && "Cannot have two real operands for a complex op!");
10251         ResR = A * C;
10252         ResI = A * D;
10253       } else if (RHSReal) {
10254         ResR = C * A;
10255         ResI = C * B;
10256       } else {
10257         // In the fully general case, we need to handle NaNs and infinities
10258         // robustly.
10259         APFloat AC = A * C;
10260         APFloat BD = B * D;
10261         APFloat AD = A * D;
10262         APFloat BC = B * C;
10263         ResR = AC - BD;
10264         ResI = AD + BC;
10265         if (ResR.isNaN() && ResI.isNaN()) {
10266           bool Recalc = false;
10267           if (A.isInfinity() || B.isInfinity()) {
10268             A = APFloat::copySign(
10269                 APFloat(A.getSemantics(), A.isInfinity() ? 1 : 0), A);
10270             B = APFloat::copySign(
10271                 APFloat(B.getSemantics(), B.isInfinity() ? 1 : 0), B);
10272             if (C.isNaN())
10273               C = APFloat::copySign(APFloat(C.getSemantics()), C);
10274             if (D.isNaN())
10275               D = APFloat::copySign(APFloat(D.getSemantics()), D);
10276             Recalc = true;
10277           }
10278           if (C.isInfinity() || D.isInfinity()) {
10279             C = APFloat::copySign(
10280                 APFloat(C.getSemantics(), C.isInfinity() ? 1 : 0), C);
10281             D = APFloat::copySign(
10282                 APFloat(D.getSemantics(), D.isInfinity() ? 1 : 0), D);
10283             if (A.isNaN())
10284               A = APFloat::copySign(APFloat(A.getSemantics()), A);
10285             if (B.isNaN())
10286               B = APFloat::copySign(APFloat(B.getSemantics()), B);
10287             Recalc = true;
10288           }
10289           if (!Recalc && (AC.isInfinity() || BD.isInfinity() ||
10290                           AD.isInfinity() || BC.isInfinity())) {
10291             if (A.isNaN())
10292               A = APFloat::copySign(APFloat(A.getSemantics()), A);
10293             if (B.isNaN())
10294               B = APFloat::copySign(APFloat(B.getSemantics()), B);
10295             if (C.isNaN())
10296               C = APFloat::copySign(APFloat(C.getSemantics()), C);
10297             if (D.isNaN())
10298               D = APFloat::copySign(APFloat(D.getSemantics()), D);
10299             Recalc = true;
10300           }
10301           if (Recalc) {
10302             ResR = APFloat::getInf(A.getSemantics()) * (A * C - B * D);
10303             ResI = APFloat::getInf(A.getSemantics()) * (A * D + B * C);
10304           }
10305         }
10306       }
10307     } else {
10308       ComplexValue LHS = Result;
10309       Result.getComplexIntReal() =
10310         (LHS.getComplexIntReal() * RHS.getComplexIntReal() -
10311          LHS.getComplexIntImag() * RHS.getComplexIntImag());
10312       Result.getComplexIntImag() =
10313         (LHS.getComplexIntReal() * RHS.getComplexIntImag() +
10314          LHS.getComplexIntImag() * RHS.getComplexIntReal());
10315     }
10316     break;
10317   case BO_Div:
10318     if (Result.isComplexFloat()) {
10319       // This is an implementation of complex division according to the
10320       // constraints laid out in C11 Annex G. The implemention uses the
10321       // following naming scheme:
10322       //   (a + ib) / (c + id)
10323       ComplexValue LHS = Result;
10324       APFloat &A = LHS.getComplexFloatReal();
10325       APFloat &B = LHS.getComplexFloatImag();
10326       APFloat &C = RHS.getComplexFloatReal();
10327       APFloat &D = RHS.getComplexFloatImag();
10328       APFloat &ResR = Result.getComplexFloatReal();
10329       APFloat &ResI = Result.getComplexFloatImag();
10330       if (RHSReal) {
10331         ResR = A / C;
10332         ResI = B / C;
10333       } else {
10334         if (LHSReal) {
10335           // No real optimizations we can do here, stub out with zero.
10336           B = APFloat::getZero(A.getSemantics());
10337         }
10338         int DenomLogB = 0;
10339         APFloat MaxCD = maxnum(abs(C), abs(D));
10340         if (MaxCD.isFinite()) {
10341           DenomLogB = ilogb(MaxCD);
10342           C = scalbn(C, -DenomLogB, APFloat::rmNearestTiesToEven);
10343           D = scalbn(D, -DenomLogB, APFloat::rmNearestTiesToEven);
10344         }
10345         APFloat Denom = C * C + D * D;
10346         ResR = scalbn((A * C + B * D) / Denom, -DenomLogB,
10347                       APFloat::rmNearestTiesToEven);
10348         ResI = scalbn((B * C - A * D) / Denom, -DenomLogB,
10349                       APFloat::rmNearestTiesToEven);
10350         if (ResR.isNaN() && ResI.isNaN()) {
10351           if (Denom.isPosZero() && (!A.isNaN() || !B.isNaN())) {
10352             ResR = APFloat::getInf(ResR.getSemantics(), C.isNegative()) * A;
10353             ResI = APFloat::getInf(ResR.getSemantics(), C.isNegative()) * B;
10354           } else if ((A.isInfinity() || B.isInfinity()) && C.isFinite() &&
10355                      D.isFinite()) {
10356             A = APFloat::copySign(
10357                 APFloat(A.getSemantics(), A.isInfinity() ? 1 : 0), A);
10358             B = APFloat::copySign(
10359                 APFloat(B.getSemantics(), B.isInfinity() ? 1 : 0), B);
10360             ResR = APFloat::getInf(ResR.getSemantics()) * (A * C + B * D);
10361             ResI = APFloat::getInf(ResI.getSemantics()) * (B * C - A * D);
10362           } else if (MaxCD.isInfinity() && A.isFinite() && B.isFinite()) {
10363             C = APFloat::copySign(
10364                 APFloat(C.getSemantics(), C.isInfinity() ? 1 : 0), C);
10365             D = APFloat::copySign(
10366                 APFloat(D.getSemantics(), D.isInfinity() ? 1 : 0), D);
10367             ResR = APFloat::getZero(ResR.getSemantics()) * (A * C + B * D);
10368             ResI = APFloat::getZero(ResI.getSemantics()) * (B * C - A * D);
10369           }
10370         }
10371       }
10372     } else {
10373       if (RHS.getComplexIntReal() == 0 && RHS.getComplexIntImag() == 0)
10374         return Error(E, diag::note_expr_divide_by_zero);
10375 
10376       ComplexValue LHS = Result;
10377       APSInt Den = RHS.getComplexIntReal() * RHS.getComplexIntReal() +
10378         RHS.getComplexIntImag() * RHS.getComplexIntImag();
10379       Result.getComplexIntReal() =
10380         (LHS.getComplexIntReal() * RHS.getComplexIntReal() +
10381          LHS.getComplexIntImag() * RHS.getComplexIntImag()) / Den;
10382       Result.getComplexIntImag() =
10383         (LHS.getComplexIntImag() * RHS.getComplexIntReal() -
10384          LHS.getComplexIntReal() * RHS.getComplexIntImag()) / Den;
10385     }
10386     break;
10387   }
10388 
10389   return true;
10390 }
10391 
10392 bool ComplexExprEvaluator::VisitUnaryOperator(const UnaryOperator *E) {
10393   // Get the operand value into 'Result'.
10394   if (!Visit(E->getSubExpr()))
10395     return false;
10396 
10397   switch (E->getOpcode()) {
10398   default:
10399     return Error(E);
10400   case UO_Extension:
10401     return true;
10402   case UO_Plus:
10403     // The result is always just the subexpr.
10404     return true;
10405   case UO_Minus:
10406     if (Result.isComplexFloat()) {
10407       Result.getComplexFloatReal().changeSign();
10408       Result.getComplexFloatImag().changeSign();
10409     }
10410     else {
10411       Result.getComplexIntReal() = -Result.getComplexIntReal();
10412       Result.getComplexIntImag() = -Result.getComplexIntImag();
10413     }
10414     return true;
10415   case UO_Not:
10416     if (Result.isComplexFloat())
10417       Result.getComplexFloatImag().changeSign();
10418     else
10419       Result.getComplexIntImag() = -Result.getComplexIntImag();
10420     return true;
10421   }
10422 }
10423 
10424 bool ComplexExprEvaluator::VisitInitListExpr(const InitListExpr *E) {
10425   if (E->getNumInits() == 2) {
10426     if (E->getType()->isComplexType()) {
10427       Result.makeComplexFloat();
10428       if (!EvaluateFloat(E->getInit(0), Result.FloatReal, Info))
10429         return false;
10430       if (!EvaluateFloat(E->getInit(1), Result.FloatImag, Info))
10431         return false;
10432     } else {
10433       Result.makeComplexInt();
10434       if (!EvaluateInteger(E->getInit(0), Result.IntReal, Info))
10435         return false;
10436       if (!EvaluateInteger(E->getInit(1), Result.IntImag, Info))
10437         return false;
10438     }
10439     return true;
10440   }
10441   return ExprEvaluatorBaseTy::VisitInitListExpr(E);
10442 }
10443 
10444 //===----------------------------------------------------------------------===//
10445 // Atomic expression evaluation, essentially just handling the NonAtomicToAtomic
10446 // implicit conversion.
10447 //===----------------------------------------------------------------------===//
10448 
10449 namespace {
10450 class AtomicExprEvaluator :
10451     public ExprEvaluatorBase<AtomicExprEvaluator> {
10452   const LValue *This;
10453   APValue &Result;
10454 public:
10455   AtomicExprEvaluator(EvalInfo &Info, const LValue *This, APValue &Result)
10456       : ExprEvaluatorBaseTy(Info), This(This), Result(Result) {}
10457 
10458   bool Success(const APValue &V, const Expr *E) {
10459     Result = V;
10460     return true;
10461   }
10462 
10463   bool ZeroInitialization(const Expr *E) {
10464     ImplicitValueInitExpr VIE(
10465         E->getType()->castAs<AtomicType>()->getValueType());
10466     // For atomic-qualified class (and array) types in C++, initialize the
10467     // _Atomic-wrapped subobject directly, in-place.
10468     return This ? EvaluateInPlace(Result, Info, *This, &VIE)
10469                 : Evaluate(Result, Info, &VIE);
10470   }
10471 
10472   bool VisitCastExpr(const CastExpr *E) {
10473     switch (E->getCastKind()) {
10474     default:
10475       return ExprEvaluatorBaseTy::VisitCastExpr(E);
10476     case CK_NonAtomicToAtomic:
10477       return This ? EvaluateInPlace(Result, Info, *This, E->getSubExpr())
10478                   : Evaluate(Result, Info, E->getSubExpr());
10479     }
10480   }
10481 };
10482 } // end anonymous namespace
10483 
10484 static bool EvaluateAtomic(const Expr *E, const LValue *This, APValue &Result,
10485                            EvalInfo &Info) {
10486   assert(E->isRValue() && E->getType()->isAtomicType());
10487   return AtomicExprEvaluator(Info, This, Result).Visit(E);
10488 }
10489 
10490 //===----------------------------------------------------------------------===//
10491 // Void expression evaluation, primarily for a cast to void on the LHS of a
10492 // comma operator
10493 //===----------------------------------------------------------------------===//
10494 
10495 namespace {
10496 class VoidExprEvaluator
10497   : public ExprEvaluatorBase<VoidExprEvaluator> {
10498 public:
10499   VoidExprEvaluator(EvalInfo &Info) : ExprEvaluatorBaseTy(Info) {}
10500 
10501   bool Success(const APValue &V, const Expr *e) { return true; }
10502 
10503   bool ZeroInitialization(const Expr *E) { return true; }
10504 
10505   bool VisitCastExpr(const CastExpr *E) {
10506     switch (E->getCastKind()) {
10507     default:
10508       return ExprEvaluatorBaseTy::VisitCastExpr(E);
10509     case CK_ToVoid:
10510       VisitIgnoredValue(E->getSubExpr());
10511       return true;
10512     }
10513   }
10514 
10515   bool VisitCallExpr(const CallExpr *E) {
10516     switch (E->getBuiltinCallee()) {
10517     default:
10518       return ExprEvaluatorBaseTy::VisitCallExpr(E);
10519     case Builtin::BI__assume:
10520     case Builtin::BI__builtin_assume:
10521       // The argument is not evaluated!
10522       return true;
10523     }
10524   }
10525 };
10526 } // end anonymous namespace
10527 
10528 static bool EvaluateVoid(const Expr *E, EvalInfo &Info) {
10529   assert(E->isRValue() && E->getType()->isVoidType());
10530   return VoidExprEvaluator(Info).Visit(E);
10531 }
10532 
10533 //===----------------------------------------------------------------------===//
10534 // Top level Expr::EvaluateAsRValue method.
10535 //===----------------------------------------------------------------------===//
10536 
10537 static bool Evaluate(APValue &Result, EvalInfo &Info, const Expr *E) {
10538   // In C, function designators are not lvalues, but we evaluate them as if they
10539   // are.
10540   QualType T = E->getType();
10541   if (E->isGLValue() || T->isFunctionType()) {
10542     LValue LV;
10543     if (!EvaluateLValue(E, LV, Info))
10544       return false;
10545     LV.moveInto(Result);
10546   } else if (T->isVectorType()) {
10547     if (!EvaluateVector(E, Result, Info))
10548       return false;
10549   } else if (T->isIntegralOrEnumerationType()) {
10550     if (!IntExprEvaluator(Info, Result).Visit(E))
10551       return false;
10552   } else if (T->hasPointerRepresentation()) {
10553     LValue LV;
10554     if (!EvaluatePointer(E, LV, Info))
10555       return false;
10556     LV.moveInto(Result);
10557   } else if (T->isRealFloatingType()) {
10558     llvm::APFloat F(0.0);
10559     if (!EvaluateFloat(E, F, Info))
10560       return false;
10561     Result = APValue(F);
10562   } else if (T->isAnyComplexType()) {
10563     ComplexValue C;
10564     if (!EvaluateComplex(E, C, Info))
10565       return false;
10566     C.moveInto(Result);
10567   } else if (T->isFixedPointType()) {
10568     if (!FixedPointExprEvaluator(Info, Result).Visit(E)) return false;
10569   } else if (T->isMemberPointerType()) {
10570     MemberPtr P;
10571     if (!EvaluateMemberPointer(E, P, Info))
10572       return false;
10573     P.moveInto(Result);
10574     return true;
10575   } else if (T->isArrayType()) {
10576     LValue LV;
10577     APValue &Value = createTemporary(E, false, LV, *Info.CurrentCall);
10578     if (!EvaluateArray(E, LV, Value, Info))
10579       return false;
10580     Result = Value;
10581   } else if (T->isRecordType()) {
10582     LValue LV;
10583     APValue &Value = createTemporary(E, false, LV, *Info.CurrentCall);
10584     if (!EvaluateRecord(E, LV, Value, Info))
10585       return false;
10586     Result = Value;
10587   } else if (T->isVoidType()) {
10588     if (!Info.getLangOpts().CPlusPlus11)
10589       Info.CCEDiag(E, diag::note_constexpr_nonliteral)
10590         << E->getType();
10591     if (!EvaluateVoid(E, Info))
10592       return false;
10593   } else if (T->isAtomicType()) {
10594     QualType Unqual = T.getAtomicUnqualifiedType();
10595     if (Unqual->isArrayType() || Unqual->isRecordType()) {
10596       LValue LV;
10597       APValue &Value = createTemporary(E, false, LV, *Info.CurrentCall);
10598       if (!EvaluateAtomic(E, &LV, Value, Info))
10599         return false;
10600     } else {
10601       if (!EvaluateAtomic(E, nullptr, Result, Info))
10602         return false;
10603     }
10604   } else if (Info.getLangOpts().CPlusPlus11) {
10605     Info.FFDiag(E, diag::note_constexpr_nonliteral) << E->getType();
10606     return false;
10607   } else {
10608     Info.FFDiag(E, diag::note_invalid_subexpr_in_const_expr);
10609     return false;
10610   }
10611 
10612   return true;
10613 }
10614 
10615 /// EvaluateInPlace - Evaluate an expression in-place in an APValue. In some
10616 /// cases, the in-place evaluation is essential, since later initializers for
10617 /// an object can indirectly refer to subobjects which were initialized earlier.
10618 static bool EvaluateInPlace(APValue &Result, EvalInfo &Info, const LValue &This,
10619                             const Expr *E, bool AllowNonLiteralTypes) {
10620   assert(!E->isValueDependent());
10621 
10622   if (!AllowNonLiteralTypes && !CheckLiteralType(Info, E, &This))
10623     return false;
10624 
10625   if (E->isRValue()) {
10626     // Evaluate arrays and record types in-place, so that later initializers can
10627     // refer to earlier-initialized members of the object.
10628     QualType T = E->getType();
10629     if (T->isArrayType())
10630       return EvaluateArray(E, This, Result, Info);
10631     else if (T->isRecordType())
10632       return EvaluateRecord(E, This, Result, Info);
10633     else if (T->isAtomicType()) {
10634       QualType Unqual = T.getAtomicUnqualifiedType();
10635       if (Unqual->isArrayType() || Unqual->isRecordType())
10636         return EvaluateAtomic(E, &This, Result, Info);
10637     }
10638   }
10639 
10640   // For any other type, in-place evaluation is unimportant.
10641   return Evaluate(Result, Info, E);
10642 }
10643 
10644 /// EvaluateAsRValue - Try to evaluate this expression, performing an implicit
10645 /// lvalue-to-rvalue cast if it is an lvalue.
10646 static bool EvaluateAsRValue(EvalInfo &Info, const Expr *E, APValue &Result) {
10647   if (E->getType().isNull())
10648     return false;
10649 
10650   if (!CheckLiteralType(Info, E))
10651     return false;
10652 
10653   if (!::Evaluate(Result, Info, E))
10654     return false;
10655 
10656   if (E->isGLValue()) {
10657     LValue LV;
10658     LV.setFrom(Info.Ctx, Result);
10659     if (!handleLValueToRValueConversion(Info, E, E->getType(), LV, Result))
10660       return false;
10661   }
10662 
10663   // Check this core constant expression is a constant expression.
10664   return CheckConstantExpression(Info, E->getExprLoc(), E->getType(), Result);
10665 }
10666 
10667 static bool FastEvaluateAsRValue(const Expr *Exp, Expr::EvalResult &Result,
10668                                  const ASTContext &Ctx, bool &IsConst) {
10669   // Fast-path evaluations of integer literals, since we sometimes see files
10670   // containing vast quantities of these.
10671   if (const IntegerLiteral *L = dyn_cast<IntegerLiteral>(Exp)) {
10672     Result.Val = APValue(APSInt(L->getValue(),
10673                                 L->getType()->isUnsignedIntegerType()));
10674     IsConst = true;
10675     return true;
10676   }
10677 
10678   // This case should be rare, but we need to check it before we check on
10679   // the type below.
10680   if (Exp->getType().isNull()) {
10681     IsConst = false;
10682     return true;
10683   }
10684 
10685   // FIXME: Evaluating values of large array and record types can cause
10686   // performance problems. Only do so in C++11 for now.
10687   if (Exp->isRValue() && (Exp->getType()->isArrayType() ||
10688                           Exp->getType()->isRecordType()) &&
10689       !Ctx.getLangOpts().CPlusPlus11) {
10690     IsConst = false;
10691     return true;
10692   }
10693   return false;
10694 }
10695 
10696 
10697 /// EvaluateAsRValue - Return true if this is a constant which we can fold using
10698 /// any crazy technique (that has nothing to do with language standards) that
10699 /// we want to.  If this function returns true, it returns the folded constant
10700 /// in Result. If this expression is a glvalue, an lvalue-to-rvalue conversion
10701 /// will be applied to the result.
10702 bool Expr::EvaluateAsRValue(EvalResult &Result, const ASTContext &Ctx) const {
10703   bool IsConst;
10704   if (FastEvaluateAsRValue(this, Result, Ctx, IsConst))
10705     return IsConst;
10706 
10707   EvalInfo Info(Ctx, Result, EvalInfo::EM_IgnoreSideEffects);
10708   return ::EvaluateAsRValue(Info, this, Result.Val);
10709 }
10710 
10711 bool Expr::EvaluateAsBooleanCondition(bool &Result,
10712                                       const ASTContext &Ctx) const {
10713   EvalResult Scratch;
10714   return EvaluateAsRValue(Scratch, Ctx) &&
10715          HandleConversionToBool(Scratch.Val, Result);
10716 }
10717 
10718 static bool hasUnacceptableSideEffect(Expr::EvalStatus &Result,
10719                                       Expr::SideEffectsKind SEK) {
10720   return (SEK < Expr::SE_AllowSideEffects && Result.HasSideEffects) ||
10721          (SEK < Expr::SE_AllowUndefinedBehavior && Result.HasUndefinedBehavior);
10722 }
10723 
10724 bool Expr::EvaluateAsInt(APSInt &Result, const ASTContext &Ctx,
10725                          SideEffectsKind AllowSideEffects) const {
10726   if (!getType()->isIntegralOrEnumerationType())
10727     return false;
10728 
10729   EvalResult ExprResult;
10730   if (!EvaluateAsRValue(ExprResult, Ctx) || !ExprResult.Val.isInt() ||
10731       hasUnacceptableSideEffect(ExprResult, AllowSideEffects))
10732     return false;
10733 
10734   Result = ExprResult.Val.getInt();
10735   return true;
10736 }
10737 
10738 bool Expr::EvaluateAsFloat(APFloat &Result, const ASTContext &Ctx,
10739                            SideEffectsKind AllowSideEffects) const {
10740   if (!getType()->isRealFloatingType())
10741     return false;
10742 
10743   EvalResult ExprResult;
10744   if (!EvaluateAsRValue(ExprResult, Ctx) || !ExprResult.Val.isFloat() ||
10745       hasUnacceptableSideEffect(ExprResult, AllowSideEffects))
10746     return false;
10747 
10748   Result = ExprResult.Val.getFloat();
10749   return true;
10750 }
10751 
10752 bool Expr::EvaluateAsLValue(EvalResult &Result, const ASTContext &Ctx) const {
10753   EvalInfo Info(Ctx, Result, EvalInfo::EM_ConstantFold);
10754 
10755   LValue LV;
10756   if (!EvaluateLValue(this, LV, Info) || Result.HasSideEffects ||
10757       !CheckLValueConstantExpression(Info, getExprLoc(),
10758                                      Ctx.getLValueReferenceType(getType()), LV,
10759                                      Expr::EvaluateForCodeGen))
10760     return false;
10761 
10762   LV.moveInto(Result.Val);
10763   return true;
10764 }
10765 
10766 bool Expr::EvaluateAsConstantExpr(EvalResult &Result, ConstExprUsage Usage,
10767                                   const ASTContext &Ctx) const {
10768   EvalInfo::EvaluationMode EM = EvalInfo::EM_ConstantExpression;
10769   EvalInfo Info(Ctx, Result, EM);
10770   if (!::Evaluate(Result.Val, Info, this))
10771     return false;
10772 
10773   return CheckConstantExpression(Info, getExprLoc(), getType(), Result.Val,
10774                                  Usage);
10775 }
10776 
10777 bool Expr::EvaluateAsInitializer(APValue &Value, const ASTContext &Ctx,
10778                                  const VarDecl *VD,
10779                             SmallVectorImpl<PartialDiagnosticAt> &Notes) const {
10780   // FIXME: Evaluating initializers for large array and record types can cause
10781   // performance problems. Only do so in C++11 for now.
10782   if (isRValue() && (getType()->isArrayType() || getType()->isRecordType()) &&
10783       !Ctx.getLangOpts().CPlusPlus11)
10784     return false;
10785 
10786   Expr::EvalStatus EStatus;
10787   EStatus.Diag = &Notes;
10788 
10789   EvalInfo InitInfo(Ctx, EStatus, VD->isConstexpr()
10790                                       ? EvalInfo::EM_ConstantExpression
10791                                       : EvalInfo::EM_ConstantFold);
10792   InitInfo.setEvaluatingDecl(VD, Value);
10793 
10794   LValue LVal;
10795   LVal.set(VD);
10796 
10797   // C++11 [basic.start.init]p2:
10798   //  Variables with static storage duration or thread storage duration shall be
10799   //  zero-initialized before any other initialization takes place.
10800   // This behavior is not present in C.
10801   if (Ctx.getLangOpts().CPlusPlus && !VD->hasLocalStorage() &&
10802       !VD->getType()->isReferenceType()) {
10803     ImplicitValueInitExpr VIE(VD->getType());
10804     if (!EvaluateInPlace(Value, InitInfo, LVal, &VIE,
10805                          /*AllowNonLiteralTypes=*/true))
10806       return false;
10807   }
10808 
10809   if (!EvaluateInPlace(Value, InitInfo, LVal, this,
10810                        /*AllowNonLiteralTypes=*/true) ||
10811       EStatus.HasSideEffects)
10812     return false;
10813 
10814   return CheckConstantExpression(InitInfo, VD->getLocation(), VD->getType(),
10815                                  Value);
10816 }
10817 
10818 /// isEvaluatable - Call EvaluateAsRValue to see if this expression can be
10819 /// constant folded, but discard the result.
10820 bool Expr::isEvaluatable(const ASTContext &Ctx, SideEffectsKind SEK) const {
10821   EvalResult Result;
10822   return EvaluateAsRValue(Result, Ctx) &&
10823          !hasUnacceptableSideEffect(Result, SEK);
10824 }
10825 
10826 APSInt Expr::EvaluateKnownConstInt(const ASTContext &Ctx,
10827                     SmallVectorImpl<PartialDiagnosticAt> *Diag) const {
10828   EvalResult EvalResult;
10829   EvalResult.Diag = Diag;
10830   bool Result = EvaluateAsRValue(EvalResult, Ctx);
10831   (void)Result;
10832   assert(Result && "Could not evaluate expression");
10833   assert(EvalResult.Val.isInt() && "Expression did not evaluate to integer");
10834 
10835   return EvalResult.Val.getInt();
10836 }
10837 
10838 void Expr::EvaluateForOverflow(const ASTContext &Ctx) const {
10839   bool IsConst;
10840   EvalResult EvalResult;
10841   if (!FastEvaluateAsRValue(this, EvalResult, Ctx, IsConst)) {
10842     EvalInfo Info(Ctx, EvalResult, EvalInfo::EM_EvaluateForOverflow);
10843     (void)::EvaluateAsRValue(Info, this, EvalResult.Val);
10844   }
10845 }
10846 
10847 bool Expr::EvalResult::isGlobalLValue() const {
10848   assert(Val.isLValue());
10849   return IsGlobalLValue(Val.getLValueBase());
10850 }
10851 
10852 
10853 /// isIntegerConstantExpr - this recursive routine will test if an expression is
10854 /// an integer constant expression.
10855 
10856 /// FIXME: Pass up a reason why! Invalid operation in i-c-e, division by zero,
10857 /// comma, etc
10858 
10859 // CheckICE - This function does the fundamental ICE checking: the returned
10860 // ICEDiag contains an ICEKind indicating whether the expression is an ICE,
10861 // and a (possibly null) SourceLocation indicating the location of the problem.
10862 //
10863 // Note that to reduce code duplication, this helper does no evaluation
10864 // itself; the caller checks whether the expression is evaluatable, and
10865 // in the rare cases where CheckICE actually cares about the evaluated
10866 // value, it calls into Evaluate.
10867 
10868 namespace {
10869 
10870 enum ICEKind {
10871   /// This expression is an ICE.
10872   IK_ICE,
10873   /// This expression is not an ICE, but if it isn't evaluated, it's
10874   /// a legal subexpression for an ICE. This return value is used to handle
10875   /// the comma operator in C99 mode, and non-constant subexpressions.
10876   IK_ICEIfUnevaluated,
10877   /// This expression is not an ICE, and is not a legal subexpression for one.
10878   IK_NotICE
10879 };
10880 
10881 struct ICEDiag {
10882   ICEKind Kind;
10883   SourceLocation Loc;
10884 
10885   ICEDiag(ICEKind IK, SourceLocation l) : Kind(IK), Loc(l) {}
10886 };
10887 
10888 }
10889 
10890 static ICEDiag NoDiag() { return ICEDiag(IK_ICE, SourceLocation()); }
10891 
10892 static ICEDiag Worst(ICEDiag A, ICEDiag B) { return A.Kind >= B.Kind ? A : B; }
10893 
10894 static ICEDiag CheckEvalInICE(const Expr* E, const ASTContext &Ctx) {
10895   Expr::EvalResult EVResult;
10896   if (!E->EvaluateAsRValue(EVResult, Ctx) || EVResult.HasSideEffects ||
10897       !EVResult.Val.isInt())
10898     return ICEDiag(IK_NotICE, E->getLocStart());
10899 
10900   return NoDiag();
10901 }
10902 
10903 static ICEDiag CheckICE(const Expr* E, const ASTContext &Ctx) {
10904   assert(!E->isValueDependent() && "Should not see value dependent exprs!");
10905   if (!E->getType()->isIntegralOrEnumerationType())
10906     return ICEDiag(IK_NotICE, E->getLocStart());
10907 
10908   switch (E->getStmtClass()) {
10909 #define ABSTRACT_STMT(Node)
10910 #define STMT(Node, Base) case Expr::Node##Class:
10911 #define EXPR(Node, Base)
10912 #include "clang/AST/StmtNodes.inc"
10913   case Expr::PredefinedExprClass:
10914   case Expr::FloatingLiteralClass:
10915   case Expr::ImaginaryLiteralClass:
10916   case Expr::StringLiteralClass:
10917   case Expr::ArraySubscriptExprClass:
10918   case Expr::OMPArraySectionExprClass:
10919   case Expr::MemberExprClass:
10920   case Expr::CompoundAssignOperatorClass:
10921   case Expr::CompoundLiteralExprClass:
10922   case Expr::ExtVectorElementExprClass:
10923   case Expr::DesignatedInitExprClass:
10924   case Expr::ArrayInitLoopExprClass:
10925   case Expr::ArrayInitIndexExprClass:
10926   case Expr::NoInitExprClass:
10927   case Expr::DesignatedInitUpdateExprClass:
10928   case Expr::ImplicitValueInitExprClass:
10929   case Expr::ParenListExprClass:
10930   case Expr::VAArgExprClass:
10931   case Expr::AddrLabelExprClass:
10932   case Expr::StmtExprClass:
10933   case Expr::CXXMemberCallExprClass:
10934   case Expr::CUDAKernelCallExprClass:
10935   case Expr::CXXDynamicCastExprClass:
10936   case Expr::CXXTypeidExprClass:
10937   case Expr::CXXUuidofExprClass:
10938   case Expr::MSPropertyRefExprClass:
10939   case Expr::MSPropertySubscriptExprClass:
10940   case Expr::CXXNullPtrLiteralExprClass:
10941   case Expr::UserDefinedLiteralClass:
10942   case Expr::CXXThisExprClass:
10943   case Expr::CXXThrowExprClass:
10944   case Expr::CXXNewExprClass:
10945   case Expr::CXXDeleteExprClass:
10946   case Expr::CXXPseudoDestructorExprClass:
10947   case Expr::UnresolvedLookupExprClass:
10948   case Expr::TypoExprClass:
10949   case Expr::DependentScopeDeclRefExprClass:
10950   case Expr::CXXConstructExprClass:
10951   case Expr::CXXInheritedCtorInitExprClass:
10952   case Expr::CXXStdInitializerListExprClass:
10953   case Expr::CXXBindTemporaryExprClass:
10954   case Expr::ExprWithCleanupsClass:
10955   case Expr::CXXTemporaryObjectExprClass:
10956   case Expr::CXXUnresolvedConstructExprClass:
10957   case Expr::CXXDependentScopeMemberExprClass:
10958   case Expr::UnresolvedMemberExprClass:
10959   case Expr::ObjCStringLiteralClass:
10960   case Expr::ObjCBoxedExprClass:
10961   case Expr::ObjCArrayLiteralClass:
10962   case Expr::ObjCDictionaryLiteralClass:
10963   case Expr::ObjCEncodeExprClass:
10964   case Expr::ObjCMessageExprClass:
10965   case Expr::ObjCSelectorExprClass:
10966   case Expr::ObjCProtocolExprClass:
10967   case Expr::ObjCIvarRefExprClass:
10968   case Expr::ObjCPropertyRefExprClass:
10969   case Expr::ObjCSubscriptRefExprClass:
10970   case Expr::ObjCIsaExprClass:
10971   case Expr::ObjCAvailabilityCheckExprClass:
10972   case Expr::ShuffleVectorExprClass:
10973   case Expr::ConvertVectorExprClass:
10974   case Expr::BlockExprClass:
10975   case Expr::NoStmtClass:
10976   case Expr::OpaqueValueExprClass:
10977   case Expr::PackExpansionExprClass:
10978   case Expr::SubstNonTypeTemplateParmPackExprClass:
10979   case Expr::FunctionParmPackExprClass:
10980   case Expr::AsTypeExprClass:
10981   case Expr::ObjCIndirectCopyRestoreExprClass:
10982   case Expr::MaterializeTemporaryExprClass:
10983   case Expr::PseudoObjectExprClass:
10984   case Expr::AtomicExprClass:
10985   case Expr::LambdaExprClass:
10986   case Expr::CXXFoldExprClass:
10987   case Expr::CoawaitExprClass:
10988   case Expr::DependentCoawaitExprClass:
10989   case Expr::CoyieldExprClass:
10990     return ICEDiag(IK_NotICE, E->getLocStart());
10991 
10992   case Expr::InitListExprClass: {
10993     // C++03 [dcl.init]p13: If T is a scalar type, then a declaration of the
10994     // form "T x = { a };" is equivalent to "T x = a;".
10995     // Unless we're initializing a reference, T is a scalar as it is known to be
10996     // of integral or enumeration type.
10997     if (E->isRValue())
10998       if (cast<InitListExpr>(E)->getNumInits() == 1)
10999         return CheckICE(cast<InitListExpr>(E)->getInit(0), Ctx);
11000     return ICEDiag(IK_NotICE, E->getLocStart());
11001   }
11002 
11003   case Expr::SizeOfPackExprClass:
11004   case Expr::GNUNullExprClass:
11005     // GCC considers the GNU __null value to be an integral constant expression.
11006     return NoDiag();
11007 
11008   case Expr::SubstNonTypeTemplateParmExprClass:
11009     return
11010       CheckICE(cast<SubstNonTypeTemplateParmExpr>(E)->getReplacement(), Ctx);
11011 
11012   case Expr::ParenExprClass:
11013     return CheckICE(cast<ParenExpr>(E)->getSubExpr(), Ctx);
11014   case Expr::GenericSelectionExprClass:
11015     return CheckICE(cast<GenericSelectionExpr>(E)->getResultExpr(), Ctx);
11016   case Expr::IntegerLiteralClass:
11017   case Expr::FixedPointLiteralClass:
11018   case Expr::CharacterLiteralClass:
11019   case Expr::ObjCBoolLiteralExprClass:
11020   case Expr::CXXBoolLiteralExprClass:
11021   case Expr::CXXScalarValueInitExprClass:
11022   case Expr::TypeTraitExprClass:
11023   case Expr::ArrayTypeTraitExprClass:
11024   case Expr::ExpressionTraitExprClass:
11025   case Expr::CXXNoexceptExprClass:
11026     return NoDiag();
11027   case Expr::CallExprClass:
11028   case Expr::CXXOperatorCallExprClass: {
11029     // C99 6.6/3 allows function calls within unevaluated subexpressions of
11030     // constant expressions, but they can never be ICEs because an ICE cannot
11031     // contain an operand of (pointer to) function type.
11032     const CallExpr *CE = cast<CallExpr>(E);
11033     if (CE->getBuiltinCallee())
11034       return CheckEvalInICE(E, Ctx);
11035     return ICEDiag(IK_NotICE, E->getLocStart());
11036   }
11037   case Expr::DeclRefExprClass: {
11038     if (isa<EnumConstantDecl>(cast<DeclRefExpr>(E)->getDecl()))
11039       return NoDiag();
11040     const ValueDecl *D = cast<DeclRefExpr>(E)->getDecl();
11041     if (Ctx.getLangOpts().CPlusPlus &&
11042         D && IsConstNonVolatile(D->getType())) {
11043       // Parameter variables are never constants.  Without this check,
11044       // getAnyInitializer() can find a default argument, which leads
11045       // to chaos.
11046       if (isa<ParmVarDecl>(D))
11047         return ICEDiag(IK_NotICE, cast<DeclRefExpr>(E)->getLocation());
11048 
11049       // C++ 7.1.5.1p2
11050       //   A variable of non-volatile const-qualified integral or enumeration
11051       //   type initialized by an ICE can be used in ICEs.
11052       if (const VarDecl *Dcl = dyn_cast<VarDecl>(D)) {
11053         if (!Dcl->getType()->isIntegralOrEnumerationType())
11054           return ICEDiag(IK_NotICE, cast<DeclRefExpr>(E)->getLocation());
11055 
11056         const VarDecl *VD;
11057         // Look for a declaration of this variable that has an initializer, and
11058         // check whether it is an ICE.
11059         if (Dcl->getAnyInitializer(VD) && VD->checkInitIsICE())
11060           return NoDiag();
11061         else
11062           return ICEDiag(IK_NotICE, cast<DeclRefExpr>(E)->getLocation());
11063       }
11064     }
11065     return ICEDiag(IK_NotICE, E->getLocStart());
11066   }
11067   case Expr::UnaryOperatorClass: {
11068     const UnaryOperator *Exp = cast<UnaryOperator>(E);
11069     switch (Exp->getOpcode()) {
11070     case UO_PostInc:
11071     case UO_PostDec:
11072     case UO_PreInc:
11073     case UO_PreDec:
11074     case UO_AddrOf:
11075     case UO_Deref:
11076     case UO_Coawait:
11077       // C99 6.6/3 allows increment and decrement within unevaluated
11078       // subexpressions of constant expressions, but they can never be ICEs
11079       // because an ICE cannot contain an lvalue operand.
11080       return ICEDiag(IK_NotICE, E->getLocStart());
11081     case UO_Extension:
11082     case UO_LNot:
11083     case UO_Plus:
11084     case UO_Minus:
11085     case UO_Not:
11086     case UO_Real:
11087     case UO_Imag:
11088       return CheckICE(Exp->getSubExpr(), Ctx);
11089     }
11090 
11091     // OffsetOf falls through here.
11092     LLVM_FALLTHROUGH;
11093   }
11094   case Expr::OffsetOfExprClass: {
11095     // Note that per C99, offsetof must be an ICE. And AFAIK, using
11096     // EvaluateAsRValue matches the proposed gcc behavior for cases like
11097     // "offsetof(struct s{int x[4];}, x[1.0])".  This doesn't affect
11098     // compliance: we should warn earlier for offsetof expressions with
11099     // array subscripts that aren't ICEs, and if the array subscripts
11100     // are ICEs, the value of the offsetof must be an integer constant.
11101     return CheckEvalInICE(E, Ctx);
11102   }
11103   case Expr::UnaryExprOrTypeTraitExprClass: {
11104     const UnaryExprOrTypeTraitExpr *Exp = cast<UnaryExprOrTypeTraitExpr>(E);
11105     if ((Exp->getKind() ==  UETT_SizeOf) &&
11106         Exp->getTypeOfArgument()->isVariableArrayType())
11107       return ICEDiag(IK_NotICE, E->getLocStart());
11108     return NoDiag();
11109   }
11110   case Expr::BinaryOperatorClass: {
11111     const BinaryOperator *Exp = cast<BinaryOperator>(E);
11112     switch (Exp->getOpcode()) {
11113     case BO_PtrMemD:
11114     case BO_PtrMemI:
11115     case BO_Assign:
11116     case BO_MulAssign:
11117     case BO_DivAssign:
11118     case BO_RemAssign:
11119     case BO_AddAssign:
11120     case BO_SubAssign:
11121     case BO_ShlAssign:
11122     case BO_ShrAssign:
11123     case BO_AndAssign:
11124     case BO_XorAssign:
11125     case BO_OrAssign:
11126       // C99 6.6/3 allows assignments within unevaluated subexpressions of
11127       // constant expressions, but they can never be ICEs because an ICE cannot
11128       // contain an lvalue operand.
11129       return ICEDiag(IK_NotICE, E->getLocStart());
11130 
11131     case BO_Mul:
11132     case BO_Div:
11133     case BO_Rem:
11134     case BO_Add:
11135     case BO_Sub:
11136     case BO_Shl:
11137     case BO_Shr:
11138     case BO_LT:
11139     case BO_GT:
11140     case BO_LE:
11141     case BO_GE:
11142     case BO_EQ:
11143     case BO_NE:
11144     case BO_And:
11145     case BO_Xor:
11146     case BO_Or:
11147     case BO_Comma:
11148     case BO_Cmp: {
11149       ICEDiag LHSResult = CheckICE(Exp->getLHS(), Ctx);
11150       ICEDiag RHSResult = CheckICE(Exp->getRHS(), Ctx);
11151       if (Exp->getOpcode() == BO_Div ||
11152           Exp->getOpcode() == BO_Rem) {
11153         // EvaluateAsRValue gives an error for undefined Div/Rem, so make sure
11154         // we don't evaluate one.
11155         if (LHSResult.Kind == IK_ICE && RHSResult.Kind == IK_ICE) {
11156           llvm::APSInt REval = Exp->getRHS()->EvaluateKnownConstInt(Ctx);
11157           if (REval == 0)
11158             return ICEDiag(IK_ICEIfUnevaluated, E->getLocStart());
11159           if (REval.isSigned() && REval.isAllOnesValue()) {
11160             llvm::APSInt LEval = Exp->getLHS()->EvaluateKnownConstInt(Ctx);
11161             if (LEval.isMinSignedValue())
11162               return ICEDiag(IK_ICEIfUnevaluated, E->getLocStart());
11163           }
11164         }
11165       }
11166       if (Exp->getOpcode() == BO_Comma) {
11167         if (Ctx.getLangOpts().C99) {
11168           // C99 6.6p3 introduces a strange edge case: comma can be in an ICE
11169           // if it isn't evaluated.
11170           if (LHSResult.Kind == IK_ICE && RHSResult.Kind == IK_ICE)
11171             return ICEDiag(IK_ICEIfUnevaluated, E->getLocStart());
11172         } else {
11173           // In both C89 and C++, commas in ICEs are illegal.
11174           return ICEDiag(IK_NotICE, E->getLocStart());
11175         }
11176       }
11177       return Worst(LHSResult, RHSResult);
11178     }
11179     case BO_LAnd:
11180     case BO_LOr: {
11181       ICEDiag LHSResult = CheckICE(Exp->getLHS(), Ctx);
11182       ICEDiag RHSResult = CheckICE(Exp->getRHS(), Ctx);
11183       if (LHSResult.Kind == IK_ICE && RHSResult.Kind == IK_ICEIfUnevaluated) {
11184         // Rare case where the RHS has a comma "side-effect"; we need
11185         // to actually check the condition to see whether the side
11186         // with the comma is evaluated.
11187         if ((Exp->getOpcode() == BO_LAnd) !=
11188             (Exp->getLHS()->EvaluateKnownConstInt(Ctx) == 0))
11189           return RHSResult;
11190         return NoDiag();
11191       }
11192 
11193       return Worst(LHSResult, RHSResult);
11194     }
11195     }
11196     LLVM_FALLTHROUGH;
11197   }
11198   case Expr::ImplicitCastExprClass:
11199   case Expr::CStyleCastExprClass:
11200   case Expr::CXXFunctionalCastExprClass:
11201   case Expr::CXXStaticCastExprClass:
11202   case Expr::CXXReinterpretCastExprClass:
11203   case Expr::CXXConstCastExprClass:
11204   case Expr::ObjCBridgedCastExprClass: {
11205     const Expr *SubExpr = cast<CastExpr>(E)->getSubExpr();
11206     if (isa<ExplicitCastExpr>(E)) {
11207       if (const FloatingLiteral *FL
11208             = dyn_cast<FloatingLiteral>(SubExpr->IgnoreParenImpCasts())) {
11209         unsigned DestWidth = Ctx.getIntWidth(E->getType());
11210         bool DestSigned = E->getType()->isSignedIntegerOrEnumerationType();
11211         APSInt IgnoredVal(DestWidth, !DestSigned);
11212         bool Ignored;
11213         // If the value does not fit in the destination type, the behavior is
11214         // undefined, so we are not required to treat it as a constant
11215         // expression.
11216         if (FL->getValue().convertToInteger(IgnoredVal,
11217                                             llvm::APFloat::rmTowardZero,
11218                                             &Ignored) & APFloat::opInvalidOp)
11219           return ICEDiag(IK_NotICE, E->getLocStart());
11220         return NoDiag();
11221       }
11222     }
11223     switch (cast<CastExpr>(E)->getCastKind()) {
11224     case CK_LValueToRValue:
11225     case CK_AtomicToNonAtomic:
11226     case CK_NonAtomicToAtomic:
11227     case CK_NoOp:
11228     case CK_IntegralToBoolean:
11229     case CK_IntegralCast:
11230       return CheckICE(SubExpr, Ctx);
11231     default:
11232       return ICEDiag(IK_NotICE, E->getLocStart());
11233     }
11234   }
11235   case Expr::BinaryConditionalOperatorClass: {
11236     const BinaryConditionalOperator *Exp = cast<BinaryConditionalOperator>(E);
11237     ICEDiag CommonResult = CheckICE(Exp->getCommon(), Ctx);
11238     if (CommonResult.Kind == IK_NotICE) return CommonResult;
11239     ICEDiag FalseResult = CheckICE(Exp->getFalseExpr(), Ctx);
11240     if (FalseResult.Kind == IK_NotICE) return FalseResult;
11241     if (CommonResult.Kind == IK_ICEIfUnevaluated) return CommonResult;
11242     if (FalseResult.Kind == IK_ICEIfUnevaluated &&
11243         Exp->getCommon()->EvaluateKnownConstInt(Ctx) != 0) return NoDiag();
11244     return FalseResult;
11245   }
11246   case Expr::ConditionalOperatorClass: {
11247     const ConditionalOperator *Exp = cast<ConditionalOperator>(E);
11248     // If the condition (ignoring parens) is a __builtin_constant_p call,
11249     // then only the true side is actually considered in an integer constant
11250     // expression, and it is fully evaluated.  This is an important GNU
11251     // extension.  See GCC PR38377 for discussion.
11252     if (const CallExpr *CallCE
11253         = dyn_cast<CallExpr>(Exp->getCond()->IgnoreParenCasts()))
11254       if (CallCE->getBuiltinCallee() == Builtin::BI__builtin_constant_p)
11255         return CheckEvalInICE(E, Ctx);
11256     ICEDiag CondResult = CheckICE(Exp->getCond(), Ctx);
11257     if (CondResult.Kind == IK_NotICE)
11258       return CondResult;
11259 
11260     ICEDiag TrueResult = CheckICE(Exp->getTrueExpr(), Ctx);
11261     ICEDiag FalseResult = CheckICE(Exp->getFalseExpr(), Ctx);
11262 
11263     if (TrueResult.Kind == IK_NotICE)
11264       return TrueResult;
11265     if (FalseResult.Kind == IK_NotICE)
11266       return FalseResult;
11267     if (CondResult.Kind == IK_ICEIfUnevaluated)
11268       return CondResult;
11269     if (TrueResult.Kind == IK_ICE && FalseResult.Kind == IK_ICE)
11270       return NoDiag();
11271     // Rare case where the diagnostics depend on which side is evaluated
11272     // Note that if we get here, CondResult is 0, and at least one of
11273     // TrueResult and FalseResult is non-zero.
11274     if (Exp->getCond()->EvaluateKnownConstInt(Ctx) == 0)
11275       return FalseResult;
11276     return TrueResult;
11277   }
11278   case Expr::CXXDefaultArgExprClass:
11279     return CheckICE(cast<CXXDefaultArgExpr>(E)->getExpr(), Ctx);
11280   case Expr::CXXDefaultInitExprClass:
11281     return CheckICE(cast<CXXDefaultInitExpr>(E)->getExpr(), Ctx);
11282   case Expr::ChooseExprClass: {
11283     return CheckICE(cast<ChooseExpr>(E)->getChosenSubExpr(), Ctx);
11284   }
11285   }
11286 
11287   llvm_unreachable("Invalid StmtClass!");
11288 }
11289 
11290 /// Evaluate an expression as a C++11 integral constant expression.
11291 static bool EvaluateCPlusPlus11IntegralConstantExpr(const ASTContext &Ctx,
11292                                                     const Expr *E,
11293                                                     llvm::APSInt *Value,
11294                                                     SourceLocation *Loc) {
11295   if (!E->getType()->isIntegralOrUnscopedEnumerationType()) {
11296     if (Loc) *Loc = E->getExprLoc();
11297     return false;
11298   }
11299 
11300   APValue Result;
11301   if (!E->isCXX11ConstantExpr(Ctx, &Result, Loc))
11302     return false;
11303 
11304   if (!Result.isInt()) {
11305     if (Loc) *Loc = E->getExprLoc();
11306     return false;
11307   }
11308 
11309   if (Value) *Value = Result.getInt();
11310   return true;
11311 }
11312 
11313 bool Expr::isIntegerConstantExpr(const ASTContext &Ctx,
11314                                  SourceLocation *Loc) const {
11315   if (Ctx.getLangOpts().CPlusPlus11)
11316     return EvaluateCPlusPlus11IntegralConstantExpr(Ctx, this, nullptr, Loc);
11317 
11318   ICEDiag D = CheckICE(this, Ctx);
11319   if (D.Kind != IK_ICE) {
11320     if (Loc) *Loc = D.Loc;
11321     return false;
11322   }
11323   return true;
11324 }
11325 
11326 bool Expr::isIntegerConstantExpr(llvm::APSInt &Value, const ASTContext &Ctx,
11327                                  SourceLocation *Loc, bool isEvaluated) const {
11328   if (Ctx.getLangOpts().CPlusPlus11)
11329     return EvaluateCPlusPlus11IntegralConstantExpr(Ctx, this, &Value, Loc);
11330 
11331   if (!isIntegerConstantExpr(Ctx, Loc))
11332     return false;
11333   // The only possible side-effects here are due to UB discovered in the
11334   // evaluation (for instance, INT_MAX + 1). In such a case, we are still
11335   // required to treat the expression as an ICE, so we produce the folded
11336   // value.
11337   if (!EvaluateAsInt(Value, Ctx, SE_AllowSideEffects))
11338     llvm_unreachable("ICE cannot be evaluated!");
11339   return true;
11340 }
11341 
11342 bool Expr::isCXX98IntegralConstantExpr(const ASTContext &Ctx) const {
11343   return CheckICE(this, Ctx).Kind == IK_ICE;
11344 }
11345 
11346 bool Expr::isCXX11ConstantExpr(const ASTContext &Ctx, APValue *Result,
11347                                SourceLocation *Loc) const {
11348   // We support this checking in C++98 mode in order to diagnose compatibility
11349   // issues.
11350   assert(Ctx.getLangOpts().CPlusPlus);
11351 
11352   // Build evaluation settings.
11353   Expr::EvalStatus Status;
11354   SmallVector<PartialDiagnosticAt, 8> Diags;
11355   Status.Diag = &Diags;
11356   EvalInfo Info(Ctx, Status, EvalInfo::EM_ConstantExpression);
11357 
11358   APValue Scratch;
11359   bool IsConstExpr = ::EvaluateAsRValue(Info, this, Result ? *Result : Scratch);
11360 
11361   if (!Diags.empty()) {
11362     IsConstExpr = false;
11363     if (Loc) *Loc = Diags[0].first;
11364   } else if (!IsConstExpr) {
11365     // FIXME: This shouldn't happen.
11366     if (Loc) *Loc = getExprLoc();
11367   }
11368 
11369   return IsConstExpr;
11370 }
11371 
11372 bool Expr::EvaluateWithSubstitution(APValue &Value, ASTContext &Ctx,
11373                                     const FunctionDecl *Callee,
11374                                     ArrayRef<const Expr*> Args,
11375                                     const Expr *This) const {
11376   Expr::EvalStatus Status;
11377   EvalInfo Info(Ctx, Status, EvalInfo::EM_ConstantExpressionUnevaluated);
11378 
11379   LValue ThisVal;
11380   const LValue *ThisPtr = nullptr;
11381   if (This) {
11382 #ifndef NDEBUG
11383     auto *MD = dyn_cast<CXXMethodDecl>(Callee);
11384     assert(MD && "Don't provide `this` for non-methods.");
11385     assert(!MD->isStatic() && "Don't provide `this` for static methods.");
11386 #endif
11387     if (EvaluateObjectArgument(Info, This, ThisVal))
11388       ThisPtr = &ThisVal;
11389     if (Info.EvalStatus.HasSideEffects)
11390       return false;
11391   }
11392 
11393   ArgVector ArgValues(Args.size());
11394   for (ArrayRef<const Expr*>::iterator I = Args.begin(), E = Args.end();
11395        I != E; ++I) {
11396     if ((*I)->isValueDependent() ||
11397         !Evaluate(ArgValues[I - Args.begin()], Info, *I))
11398       // If evaluation fails, throw away the argument entirely.
11399       ArgValues[I - Args.begin()] = APValue();
11400     if (Info.EvalStatus.HasSideEffects)
11401       return false;
11402   }
11403 
11404   // Build fake call to Callee.
11405   CallStackFrame Frame(Info, Callee->getLocation(), Callee, ThisPtr,
11406                        ArgValues.data());
11407   return Evaluate(Value, Info, this) && !Info.EvalStatus.HasSideEffects;
11408 }
11409 
11410 bool Expr::isPotentialConstantExpr(const FunctionDecl *FD,
11411                                    SmallVectorImpl<
11412                                      PartialDiagnosticAt> &Diags) {
11413   // FIXME: It would be useful to check constexpr function templates, but at the
11414   // moment the constant expression evaluator cannot cope with the non-rigorous
11415   // ASTs which we build for dependent expressions.
11416   if (FD->isDependentContext())
11417     return true;
11418 
11419   Expr::EvalStatus Status;
11420   Status.Diag = &Diags;
11421 
11422   EvalInfo Info(FD->getASTContext(), Status,
11423                 EvalInfo::EM_PotentialConstantExpression);
11424 
11425   const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD);
11426   const CXXRecordDecl *RD = MD ? MD->getParent()->getCanonicalDecl() : nullptr;
11427 
11428   // Fabricate an arbitrary expression on the stack and pretend that it
11429   // is a temporary being used as the 'this' pointer.
11430   LValue This;
11431   ImplicitValueInitExpr VIE(RD ? Info.Ctx.getRecordType(RD) : Info.Ctx.IntTy);
11432   This.set({&VIE, Info.CurrentCall->Index});
11433 
11434   ArrayRef<const Expr*> Args;
11435 
11436   APValue Scratch;
11437   if (const CXXConstructorDecl *CD = dyn_cast<CXXConstructorDecl>(FD)) {
11438     // Evaluate the call as a constant initializer, to allow the construction
11439     // of objects of non-literal types.
11440     Info.setEvaluatingDecl(This.getLValueBase(), Scratch);
11441     HandleConstructorCall(&VIE, This, Args, CD, Info, Scratch);
11442   } else {
11443     SourceLocation Loc = FD->getLocation();
11444     HandleFunctionCall(Loc, FD, (MD && MD->isInstance()) ? &This : nullptr,
11445                        Args, FD->getBody(), Info, Scratch, nullptr);
11446   }
11447 
11448   return Diags.empty();
11449 }
11450 
11451 bool Expr::isPotentialConstantExprUnevaluated(Expr *E,
11452                                               const FunctionDecl *FD,
11453                                               SmallVectorImpl<
11454                                                 PartialDiagnosticAt> &Diags) {
11455   Expr::EvalStatus Status;
11456   Status.Diag = &Diags;
11457 
11458   EvalInfo Info(FD->getASTContext(), Status,
11459                 EvalInfo::EM_PotentialConstantExpressionUnevaluated);
11460 
11461   // Fabricate a call stack frame to give the arguments a plausible cover story.
11462   ArrayRef<const Expr*> Args;
11463   ArgVector ArgValues(0);
11464   bool Success = EvaluateArgs(Args, ArgValues, Info);
11465   (void)Success;
11466   assert(Success &&
11467          "Failed to set up arguments for potential constant evaluation");
11468   CallStackFrame Frame(Info, SourceLocation(), FD, nullptr, ArgValues.data());
11469 
11470   APValue ResultScratch;
11471   Evaluate(ResultScratch, Info, E);
11472   return Diags.empty();
11473 }
11474 
11475 bool Expr::tryEvaluateObjectSize(uint64_t &Result, ASTContext &Ctx,
11476                                  unsigned Type) const {
11477   if (!getType()->isPointerType())
11478     return false;
11479 
11480   Expr::EvalStatus Status;
11481   EvalInfo Info(Ctx, Status, EvalInfo::EM_ConstantFold);
11482   return tryEvaluateBuiltinObjectSize(this, Type, Info, Result);
11483 }
11484