xref: /llvm-project-15.0.7/clang/lib/AST/Expr.cpp (revision 2d6b9dbf)
1 //===--- Expr.cpp - Expression AST Node Implementation --------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // This file implements the Expr class and subclasses.
10 //
11 //===----------------------------------------------------------------------===//
12 
13 #include "clang/AST/Expr.h"
14 #include "clang/AST/APValue.h"
15 #include "clang/AST/ASTContext.h"
16 #include "clang/AST/Attr.h"
17 #include "clang/AST/ComputeDependence.h"
18 #include "clang/AST/DeclCXX.h"
19 #include "clang/AST/DeclObjC.h"
20 #include "clang/AST/DeclTemplate.h"
21 #include "clang/AST/DependenceFlags.h"
22 #include "clang/AST/EvaluatedExprVisitor.h"
23 #include "clang/AST/ExprCXX.h"
24 #include "clang/AST/Mangle.h"
25 #include "clang/AST/RecordLayout.h"
26 #include "clang/AST/StmtVisitor.h"
27 #include "clang/Basic/Builtins.h"
28 #include "clang/Basic/CharInfo.h"
29 #include "clang/Basic/SourceManager.h"
30 #include "clang/Basic/TargetInfo.h"
31 #include "clang/Lex/Lexer.h"
32 #include "clang/Lex/LiteralSupport.h"
33 #include "llvm/Support/ErrorHandling.h"
34 #include "llvm/Support/raw_ostream.h"
35 #include <algorithm>
36 #include <cstring>
37 using namespace clang;
38 
39 const Expr *Expr::getBestDynamicClassTypeExpr() const {
40   const Expr *E = this;
41   while (true) {
42     E = E->ignoreParenBaseCasts();
43 
44     // Follow the RHS of a comma operator.
45     if (auto *BO = dyn_cast<BinaryOperator>(E)) {
46       if (BO->getOpcode() == BO_Comma) {
47         E = BO->getRHS();
48         continue;
49       }
50     }
51 
52     // Step into initializer for materialized temporaries.
53     if (auto *MTE = dyn_cast<MaterializeTemporaryExpr>(E)) {
54       E = MTE->getSubExpr();
55       continue;
56     }
57 
58     break;
59   }
60 
61   return E;
62 }
63 
64 const CXXRecordDecl *Expr::getBestDynamicClassType() const {
65   const Expr *E = getBestDynamicClassTypeExpr();
66   QualType DerivedType = E->getType();
67   if (const PointerType *PTy = DerivedType->getAs<PointerType>())
68     DerivedType = PTy->getPointeeType();
69 
70   if (DerivedType->isDependentType())
71     return nullptr;
72 
73   const RecordType *Ty = DerivedType->castAs<RecordType>();
74   Decl *D = Ty->getDecl();
75   return cast<CXXRecordDecl>(D);
76 }
77 
78 const Expr *Expr::skipRValueSubobjectAdjustments(
79     SmallVectorImpl<const Expr *> &CommaLHSs,
80     SmallVectorImpl<SubobjectAdjustment> &Adjustments) const {
81   const Expr *E = this;
82   while (true) {
83     E = E->IgnoreParens();
84 
85     if (const CastExpr *CE = dyn_cast<CastExpr>(E)) {
86       if ((CE->getCastKind() == CK_DerivedToBase ||
87            CE->getCastKind() == CK_UncheckedDerivedToBase) &&
88           E->getType()->isRecordType()) {
89         E = CE->getSubExpr();
90         auto *Derived =
91             cast<CXXRecordDecl>(E->getType()->castAs<RecordType>()->getDecl());
92         Adjustments.push_back(SubobjectAdjustment(CE, Derived));
93         continue;
94       }
95 
96       if (CE->getCastKind() == CK_NoOp) {
97         E = CE->getSubExpr();
98         continue;
99       }
100     } else if (const MemberExpr *ME = dyn_cast<MemberExpr>(E)) {
101       if (!ME->isArrow()) {
102         assert(ME->getBase()->getType()->isRecordType());
103         if (FieldDecl *Field = dyn_cast<FieldDecl>(ME->getMemberDecl())) {
104           if (!Field->isBitField() && !Field->getType()->isReferenceType()) {
105             E = ME->getBase();
106             Adjustments.push_back(SubobjectAdjustment(Field));
107             continue;
108           }
109         }
110       }
111     } else if (const BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) {
112       if (BO->getOpcode() == BO_PtrMemD) {
113         assert(BO->getRHS()->isRValue());
114         E = BO->getLHS();
115         const MemberPointerType *MPT =
116           BO->getRHS()->getType()->getAs<MemberPointerType>();
117         Adjustments.push_back(SubobjectAdjustment(MPT, BO->getRHS()));
118         continue;
119       } else if (BO->getOpcode() == BO_Comma) {
120         CommaLHSs.push_back(BO->getLHS());
121         E = BO->getRHS();
122         continue;
123       }
124     }
125 
126     // Nothing changed.
127     break;
128   }
129   return E;
130 }
131 
132 bool Expr::isKnownToHaveBooleanValue(bool Semantic) const {
133   const Expr *E = IgnoreParens();
134 
135   // If this value has _Bool type, it is obvious 0/1.
136   if (E->getType()->isBooleanType()) return true;
137   // If this is a non-scalar-integer type, we don't care enough to try.
138   if (!E->getType()->isIntegralOrEnumerationType()) return false;
139 
140   if (const UnaryOperator *UO = dyn_cast<UnaryOperator>(E)) {
141     switch (UO->getOpcode()) {
142     case UO_Plus:
143       return UO->getSubExpr()->isKnownToHaveBooleanValue(Semantic);
144     case UO_LNot:
145       return true;
146     default:
147       return false;
148     }
149   }
150 
151   // Only look through implicit casts.  If the user writes
152   // '(int) (a && b)' treat it as an arbitrary int.
153   // FIXME: Should we look through any cast expression in !Semantic mode?
154   if (const ImplicitCastExpr *CE = dyn_cast<ImplicitCastExpr>(E))
155     return CE->getSubExpr()->isKnownToHaveBooleanValue(Semantic);
156 
157   if (const BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) {
158     switch (BO->getOpcode()) {
159     default: return false;
160     case BO_LT:   // Relational operators.
161     case BO_GT:
162     case BO_LE:
163     case BO_GE:
164     case BO_EQ:   // Equality operators.
165     case BO_NE:
166     case BO_LAnd: // AND operator.
167     case BO_LOr:  // Logical OR operator.
168       return true;
169 
170     case BO_And:  // Bitwise AND operator.
171     case BO_Xor:  // Bitwise XOR operator.
172     case BO_Or:   // Bitwise OR operator.
173       // Handle things like (x==2)|(y==12).
174       return BO->getLHS()->isKnownToHaveBooleanValue(Semantic) &&
175              BO->getRHS()->isKnownToHaveBooleanValue(Semantic);
176 
177     case BO_Comma:
178     case BO_Assign:
179       return BO->getRHS()->isKnownToHaveBooleanValue(Semantic);
180     }
181   }
182 
183   if (const ConditionalOperator *CO = dyn_cast<ConditionalOperator>(E))
184     return CO->getTrueExpr()->isKnownToHaveBooleanValue(Semantic) &&
185            CO->getFalseExpr()->isKnownToHaveBooleanValue(Semantic);
186 
187   if (isa<ObjCBoolLiteralExpr>(E))
188     return true;
189 
190   if (const auto *OVE = dyn_cast<OpaqueValueExpr>(E))
191     return OVE->getSourceExpr()->isKnownToHaveBooleanValue(Semantic);
192 
193   if (const FieldDecl *FD = E->getSourceBitField())
194     if (!Semantic && FD->getType()->isUnsignedIntegerType() &&
195         !FD->getBitWidth()->isValueDependent() &&
196         FD->getBitWidthValue(FD->getASTContext()) == 1)
197       return true;
198 
199   return false;
200 }
201 
202 // Amusing macro metaprogramming hack: check whether a class provides
203 // a more specific implementation of getExprLoc().
204 //
205 // See also Stmt.cpp:{getBeginLoc(),getEndLoc()}.
206 namespace {
207   /// This implementation is used when a class provides a custom
208   /// implementation of getExprLoc.
209   template <class E, class T>
210   SourceLocation getExprLocImpl(const Expr *expr,
211                                 SourceLocation (T::*v)() const) {
212     return static_cast<const E*>(expr)->getExprLoc();
213   }
214 
215   /// This implementation is used when a class doesn't provide
216   /// a custom implementation of getExprLoc.  Overload resolution
217   /// should pick it over the implementation above because it's
218   /// more specialized according to function template partial ordering.
219   template <class E>
220   SourceLocation getExprLocImpl(const Expr *expr,
221                                 SourceLocation (Expr::*v)() const) {
222     return static_cast<const E *>(expr)->getBeginLoc();
223   }
224 }
225 
226 SourceLocation Expr::getExprLoc() const {
227   switch (getStmtClass()) {
228   case Stmt::NoStmtClass: llvm_unreachable("statement without class");
229 #define ABSTRACT_STMT(type)
230 #define STMT(type, base) \
231   case Stmt::type##Class: break;
232 #define EXPR(type, base) \
233   case Stmt::type##Class: return getExprLocImpl<type>(this, &type::getExprLoc);
234 #include "clang/AST/StmtNodes.inc"
235   }
236   llvm_unreachable("unknown expression kind");
237 }
238 
239 //===----------------------------------------------------------------------===//
240 // Primary Expressions.
241 //===----------------------------------------------------------------------===//
242 
243 static void AssertResultStorageKind(ConstantExpr::ResultStorageKind Kind) {
244   assert((Kind == ConstantExpr::RSK_APValue ||
245           Kind == ConstantExpr::RSK_Int64 || Kind == ConstantExpr::RSK_None) &&
246          "Invalid StorageKind Value");
247 }
248 
249 ConstantExpr::ResultStorageKind
250 ConstantExpr::getStorageKind(const APValue &Value) {
251   switch (Value.getKind()) {
252   case APValue::None:
253   case APValue::Indeterminate:
254     return ConstantExpr::RSK_None;
255   case APValue::Int:
256     if (!Value.getInt().needsCleanup())
257       return ConstantExpr::RSK_Int64;
258     LLVM_FALLTHROUGH;
259   default:
260     return ConstantExpr::RSK_APValue;
261   }
262 }
263 
264 ConstantExpr::ResultStorageKind
265 ConstantExpr::getStorageKind(const Type *T, const ASTContext &Context) {
266   if (T->isIntegralOrEnumerationType() && Context.getTypeInfo(T).Width <= 64)
267     return ConstantExpr::RSK_Int64;
268   return ConstantExpr::RSK_APValue;
269 }
270 
271 void ConstantExpr::DefaultInit(ResultStorageKind StorageKind) {
272   ConstantExprBits.ResultKind = StorageKind;
273   ConstantExprBits.APValueKind = APValue::None;
274   ConstantExprBits.HasCleanup = false;
275   if (StorageKind == ConstantExpr::RSK_APValue)
276     ::new (getTrailingObjects<APValue>()) APValue();
277 }
278 
279 ConstantExpr::ConstantExpr(Expr *subexpr, ResultStorageKind StorageKind)
280     : FullExpr(ConstantExprClass, subexpr) {
281   DefaultInit(StorageKind);
282 }
283 
284 ConstantExpr *ConstantExpr::Create(const ASTContext &Context, Expr *E,
285                                    ResultStorageKind StorageKind,
286                                    bool IsImmediateInvocation) {
287   assert(!isa<ConstantExpr>(E));
288   AssertResultStorageKind(StorageKind);
289   unsigned Size = totalSizeToAlloc<APValue, uint64_t>(
290       StorageKind == ConstantExpr::RSK_APValue,
291       StorageKind == ConstantExpr::RSK_Int64);
292   void *Mem = Context.Allocate(Size, alignof(ConstantExpr));
293   ConstantExpr *Self = new (Mem) ConstantExpr(E, StorageKind);
294   Self->ConstantExprBits.IsImmediateInvocation =
295       IsImmediateInvocation;
296   return Self;
297 }
298 
299 ConstantExpr *ConstantExpr::Create(const ASTContext &Context, Expr *E,
300                                    const APValue &Result) {
301   ResultStorageKind StorageKind = getStorageKind(Result);
302   ConstantExpr *Self = Create(Context, E, StorageKind);
303   Self->SetResult(Result, Context);
304   return Self;
305 }
306 
307 ConstantExpr::ConstantExpr(ResultStorageKind StorageKind, EmptyShell Empty)
308     : FullExpr(ConstantExprClass, Empty) {
309   DefaultInit(StorageKind);
310 }
311 
312 ConstantExpr *ConstantExpr::CreateEmpty(const ASTContext &Context,
313                                         ResultStorageKind StorageKind,
314                                         EmptyShell Empty) {
315   AssertResultStorageKind(StorageKind);
316   unsigned Size = totalSizeToAlloc<APValue, uint64_t>(
317       StorageKind == ConstantExpr::RSK_APValue,
318       StorageKind == ConstantExpr::RSK_Int64);
319   void *Mem = Context.Allocate(Size, alignof(ConstantExpr));
320   ConstantExpr *Self = new (Mem) ConstantExpr(StorageKind, Empty);
321   return Self;
322 }
323 
324 void ConstantExpr::MoveIntoResult(APValue &Value, const ASTContext &Context) {
325   assert((unsigned)getStorageKind(Value) <= ConstantExprBits.ResultKind &&
326          "Invalid storage for this value kind");
327   ConstantExprBits.APValueKind = Value.getKind();
328   switch (ConstantExprBits.ResultKind) {
329   case RSK_None:
330     return;
331   case RSK_Int64:
332     Int64Result() = *Value.getInt().getRawData();
333     ConstantExprBits.BitWidth = Value.getInt().getBitWidth();
334     ConstantExprBits.IsUnsigned = Value.getInt().isUnsigned();
335     return;
336   case RSK_APValue:
337     if (!ConstantExprBits.HasCleanup && Value.needsCleanup()) {
338       ConstantExprBits.HasCleanup = true;
339       Context.addDestruction(&APValueResult());
340     }
341     APValueResult() = std::move(Value);
342     return;
343   }
344   llvm_unreachable("Invalid ResultKind Bits");
345 }
346 
347 llvm::APSInt ConstantExpr::getResultAsAPSInt() const {
348   switch (ConstantExprBits.ResultKind) {
349   case ConstantExpr::RSK_APValue:
350     return APValueResult().getInt();
351   case ConstantExpr::RSK_Int64:
352     return llvm::APSInt(llvm::APInt(ConstantExprBits.BitWidth, Int64Result()),
353                         ConstantExprBits.IsUnsigned);
354   default:
355     llvm_unreachable("invalid Accessor");
356   }
357 }
358 
359 APValue ConstantExpr::getAPValueResult() const {
360   assert(hasAPValueResult());
361 
362   switch (ConstantExprBits.ResultKind) {
363   case ConstantExpr::RSK_APValue:
364     return APValueResult();
365   case ConstantExpr::RSK_Int64:
366     return APValue(
367         llvm::APSInt(llvm::APInt(ConstantExprBits.BitWidth, Int64Result()),
368                      ConstantExprBits.IsUnsigned));
369   case ConstantExpr::RSK_None:
370     return APValue();
371   }
372   llvm_unreachable("invalid ResultKind");
373 }
374 
375 DeclRefExpr::DeclRefExpr(const ASTContext &Ctx, ValueDecl *D,
376                          bool RefersToEnclosingVariableOrCapture, QualType T,
377                          ExprValueKind VK, SourceLocation L,
378                          const DeclarationNameLoc &LocInfo,
379                          NonOdrUseReason NOUR)
380     : Expr(DeclRefExprClass, T, VK, OK_Ordinary), D(D), DNLoc(LocInfo) {
381   DeclRefExprBits.HasQualifier = false;
382   DeclRefExprBits.HasTemplateKWAndArgsInfo = false;
383   DeclRefExprBits.HasFoundDecl = false;
384   DeclRefExprBits.HadMultipleCandidates = false;
385   DeclRefExprBits.RefersToEnclosingVariableOrCapture =
386       RefersToEnclosingVariableOrCapture;
387   DeclRefExprBits.NonOdrUseReason = NOUR;
388   DeclRefExprBits.Loc = L;
389   setDependence(computeDependence(this, Ctx));
390 }
391 
392 DeclRefExpr::DeclRefExpr(const ASTContext &Ctx,
393                          NestedNameSpecifierLoc QualifierLoc,
394                          SourceLocation TemplateKWLoc, ValueDecl *D,
395                          bool RefersToEnclosingVariableOrCapture,
396                          const DeclarationNameInfo &NameInfo, NamedDecl *FoundD,
397                          const TemplateArgumentListInfo *TemplateArgs,
398                          QualType T, ExprValueKind VK, NonOdrUseReason NOUR)
399     : Expr(DeclRefExprClass, T, VK, OK_Ordinary), D(D),
400       DNLoc(NameInfo.getInfo()) {
401   DeclRefExprBits.Loc = NameInfo.getLoc();
402   DeclRefExprBits.HasQualifier = QualifierLoc ? 1 : 0;
403   if (QualifierLoc)
404     new (getTrailingObjects<NestedNameSpecifierLoc>())
405         NestedNameSpecifierLoc(QualifierLoc);
406   DeclRefExprBits.HasFoundDecl = FoundD ? 1 : 0;
407   if (FoundD)
408     *getTrailingObjects<NamedDecl *>() = FoundD;
409   DeclRefExprBits.HasTemplateKWAndArgsInfo
410     = (TemplateArgs || TemplateKWLoc.isValid()) ? 1 : 0;
411   DeclRefExprBits.RefersToEnclosingVariableOrCapture =
412       RefersToEnclosingVariableOrCapture;
413   DeclRefExprBits.NonOdrUseReason = NOUR;
414   if (TemplateArgs) {
415     auto Deps = TemplateArgumentDependence::None;
416     getTrailingObjects<ASTTemplateKWAndArgsInfo>()->initializeFrom(
417         TemplateKWLoc, *TemplateArgs, getTrailingObjects<TemplateArgumentLoc>(),
418         Deps);
419     assert(!(Deps & TemplateArgumentDependence::Dependent) &&
420            "built a DeclRefExpr with dependent template args");
421   } else if (TemplateKWLoc.isValid()) {
422     getTrailingObjects<ASTTemplateKWAndArgsInfo>()->initializeFrom(
423         TemplateKWLoc);
424   }
425   DeclRefExprBits.HadMultipleCandidates = 0;
426   setDependence(computeDependence(this, Ctx));
427 }
428 
429 DeclRefExpr *DeclRefExpr::Create(const ASTContext &Context,
430                                  NestedNameSpecifierLoc QualifierLoc,
431                                  SourceLocation TemplateKWLoc, ValueDecl *D,
432                                  bool RefersToEnclosingVariableOrCapture,
433                                  SourceLocation NameLoc, QualType T,
434                                  ExprValueKind VK, NamedDecl *FoundD,
435                                  const TemplateArgumentListInfo *TemplateArgs,
436                                  NonOdrUseReason NOUR) {
437   return Create(Context, QualifierLoc, TemplateKWLoc, D,
438                 RefersToEnclosingVariableOrCapture,
439                 DeclarationNameInfo(D->getDeclName(), NameLoc),
440                 T, VK, FoundD, TemplateArgs, NOUR);
441 }
442 
443 DeclRefExpr *DeclRefExpr::Create(const ASTContext &Context,
444                                  NestedNameSpecifierLoc QualifierLoc,
445                                  SourceLocation TemplateKWLoc, ValueDecl *D,
446                                  bool RefersToEnclosingVariableOrCapture,
447                                  const DeclarationNameInfo &NameInfo,
448                                  QualType T, ExprValueKind VK,
449                                  NamedDecl *FoundD,
450                                  const TemplateArgumentListInfo *TemplateArgs,
451                                  NonOdrUseReason NOUR) {
452   // Filter out cases where the found Decl is the same as the value refenenced.
453   if (D == FoundD)
454     FoundD = nullptr;
455 
456   bool HasTemplateKWAndArgsInfo = TemplateArgs || TemplateKWLoc.isValid();
457   std::size_t Size =
458       totalSizeToAlloc<NestedNameSpecifierLoc, NamedDecl *,
459                        ASTTemplateKWAndArgsInfo, TemplateArgumentLoc>(
460           QualifierLoc ? 1 : 0, FoundD ? 1 : 0,
461           HasTemplateKWAndArgsInfo ? 1 : 0,
462           TemplateArgs ? TemplateArgs->size() : 0);
463 
464   void *Mem = Context.Allocate(Size, alignof(DeclRefExpr));
465   return new (Mem) DeclRefExpr(Context, QualifierLoc, TemplateKWLoc, D,
466                                RefersToEnclosingVariableOrCapture, NameInfo,
467                                FoundD, TemplateArgs, T, VK, NOUR);
468 }
469 
470 DeclRefExpr *DeclRefExpr::CreateEmpty(const ASTContext &Context,
471                                       bool HasQualifier,
472                                       bool HasFoundDecl,
473                                       bool HasTemplateKWAndArgsInfo,
474                                       unsigned NumTemplateArgs) {
475   assert(NumTemplateArgs == 0 || HasTemplateKWAndArgsInfo);
476   std::size_t Size =
477       totalSizeToAlloc<NestedNameSpecifierLoc, NamedDecl *,
478                        ASTTemplateKWAndArgsInfo, TemplateArgumentLoc>(
479           HasQualifier ? 1 : 0, HasFoundDecl ? 1 : 0, HasTemplateKWAndArgsInfo,
480           NumTemplateArgs);
481   void *Mem = Context.Allocate(Size, alignof(DeclRefExpr));
482   return new (Mem) DeclRefExpr(EmptyShell());
483 }
484 
485 SourceLocation DeclRefExpr::getBeginLoc() const {
486   if (hasQualifier())
487     return getQualifierLoc().getBeginLoc();
488   return getNameInfo().getBeginLoc();
489 }
490 SourceLocation DeclRefExpr::getEndLoc() const {
491   if (hasExplicitTemplateArgs())
492     return getRAngleLoc();
493   return getNameInfo().getEndLoc();
494 }
495 
496 PredefinedExpr::PredefinedExpr(SourceLocation L, QualType FNTy, IdentKind IK,
497                                StringLiteral *SL)
498     : Expr(PredefinedExprClass, FNTy, VK_LValue, OK_Ordinary) {
499   PredefinedExprBits.Kind = IK;
500   assert((getIdentKind() == IK) &&
501          "IdentKind do not fit in PredefinedExprBitfields!");
502   bool HasFunctionName = SL != nullptr;
503   PredefinedExprBits.HasFunctionName = HasFunctionName;
504   PredefinedExprBits.Loc = L;
505   if (HasFunctionName)
506     setFunctionName(SL);
507   setDependence(computeDependence(this));
508 }
509 
510 PredefinedExpr::PredefinedExpr(SourceLocation L, QualType FnTy, IdentKind IK,
511                                TypeSourceInfo *Info)
512     : Expr(PredefinedExprClass, FnTy, VK_LValue, OK_Ordinary) {
513   PredefinedExprBits.Kind = IK;
514   assert((getIdentKind() == IK) &&
515          "IdentKind do not fit in PredefinedExprBitFields!");
516   assert(IK == UniqueStableNameType &&
517          "Constructor only valid with UniqueStableNameType");
518   PredefinedExprBits.HasFunctionName = false;
519   PredefinedExprBits.Loc = L;
520   setTypeSourceInfo(Info);
521   setDependence(computeDependence(this));
522 }
523 
524 PredefinedExpr::PredefinedExpr(SourceLocation L, QualType FnTy, IdentKind IK,
525                                Expr *E)
526     : Expr(PredefinedExprClass, FnTy, VK_LValue, OK_Ordinary) {
527   PredefinedExprBits.Kind = IK;
528   assert((getIdentKind() == IK) &&
529          "IdentKind do not fit in PredefinedExprBitFields!");
530   assert(IK == UniqueStableNameExpr &&
531          "Constructor only valid with UniqueStableNameExpr");
532   PredefinedExprBits.HasFunctionName = false;
533   PredefinedExprBits.Loc = L;
534   setExpr(E);
535   setDependence(computeDependence(this));
536 }
537 
538 PredefinedExpr::PredefinedExpr(EmptyShell Empty, bool HasFunctionName)
539     : Expr(PredefinedExprClass, Empty) {
540   PredefinedExprBits.HasFunctionName = HasFunctionName;
541 }
542 
543 PredefinedExpr *PredefinedExpr::Create(const ASTContext &Ctx, SourceLocation L,
544                                        QualType FNTy, IdentKind IK,
545                                        StringLiteral *SL) {
546   bool HasFunctionName = SL != nullptr;
547   void *Mem = Ctx.Allocate(
548       totalSizeToAlloc<Stmt *, Expr *, TypeSourceInfo *>(HasFunctionName, 0, 0),
549       alignof(PredefinedExpr));
550   return new (Mem) PredefinedExpr(L, FNTy, IK, SL);
551 }
552 
553 PredefinedExpr *PredefinedExpr::Create(const ASTContext &Ctx, SourceLocation L,
554                                        QualType FNTy, IdentKind IK,
555                                        StringLiteral *SL,
556                                        TypeSourceInfo *Info) {
557   assert(IK == UniqueStableNameType && "Only valid with UniqueStableNameType");
558   bool HasFunctionName = SL != nullptr;
559   void *Mem = Ctx.Allocate(totalSizeToAlloc<Stmt *, Expr *, TypeSourceInfo *>(
560                                HasFunctionName, 0, !HasFunctionName),
561                            alignof(PredefinedExpr));
562   if (HasFunctionName)
563     return new (Mem) PredefinedExpr(L, FNTy, IK, SL);
564   return new (Mem) PredefinedExpr(L, FNTy, IK, Info);
565 }
566 
567 PredefinedExpr *PredefinedExpr::Create(const ASTContext &Ctx, SourceLocation L,
568                                        QualType FNTy, IdentKind IK,
569                                        StringLiteral *SL, Expr *E) {
570   assert(IK == UniqueStableNameExpr && "Only valid with UniqueStableNameExpr");
571   bool HasFunctionName = SL != nullptr;
572   void *Mem = Ctx.Allocate(totalSizeToAlloc<Stmt *, Expr *, TypeSourceInfo *>(
573                                HasFunctionName, !HasFunctionName, 0),
574                            alignof(PredefinedExpr));
575   if (HasFunctionName)
576     return new (Mem) PredefinedExpr(L, FNTy, IK, SL);
577   return new (Mem) PredefinedExpr(L, FNTy, IK, E);
578 }
579 
580 PredefinedExpr *PredefinedExpr::CreateEmpty(const ASTContext &Ctx,
581                                             bool HasFunctionName) {
582   void *Mem = Ctx.Allocate(
583       totalSizeToAlloc<Stmt *, Expr *, TypeSourceInfo *>(HasFunctionName, 0, 0),
584       alignof(PredefinedExpr));
585   return new (Mem) PredefinedExpr(EmptyShell(), HasFunctionName);
586 }
587 
588 StringRef PredefinedExpr::getIdentKindName(PredefinedExpr::IdentKind IK) {
589   switch (IK) {
590   case Func:
591     return "__func__";
592   case Function:
593     return "__FUNCTION__";
594   case FuncDName:
595     return "__FUNCDNAME__";
596   case LFunction:
597     return "L__FUNCTION__";
598   case PrettyFunction:
599     return "__PRETTY_FUNCTION__";
600   case FuncSig:
601     return "__FUNCSIG__";
602   case LFuncSig:
603     return "L__FUNCSIG__";
604   case UniqueStableNameType:
605   case UniqueStableNameExpr:
606     return "__builtin_unique_stable_name";
607   case PrettyFunctionNoVirtual:
608     break;
609   }
610   llvm_unreachable("Unknown ident kind for PredefinedExpr");
611 }
612 
613 std::string PredefinedExpr::ComputeName(ASTContext &Context, IdentKind IK,
614                                         QualType Ty) {
615   std::unique_ptr<MangleContext> Ctx{ItaniumMangleContext::create(
616       Context, Context.getDiagnostics(), /*IsUniqueNameMangler*/ true)};
617 
618   Ty = Ty.getCanonicalType();
619 
620   SmallString<256> Buffer;
621   llvm::raw_svector_ostream Out(Buffer);
622   Ctx->mangleTypeName(Ty, Out);
623   return std::string(Buffer.str());
624 }
625 
626 // FIXME: Maybe this should use DeclPrinter with a special "print predefined
627 // expr" policy instead.
628 std::string PredefinedExpr::ComputeName(IdentKind IK, const Decl *CurrentDecl) {
629   ASTContext &Context = CurrentDecl->getASTContext();
630 
631   if (IK == PredefinedExpr::FuncDName) {
632     if (const NamedDecl *ND = dyn_cast<NamedDecl>(CurrentDecl)) {
633       std::unique_ptr<MangleContext> MC;
634       MC.reset(Context.createMangleContext());
635 
636       if (MC->shouldMangleDeclName(ND)) {
637         SmallString<256> Buffer;
638         llvm::raw_svector_ostream Out(Buffer);
639         GlobalDecl GD;
640         if (const CXXConstructorDecl *CD = dyn_cast<CXXConstructorDecl>(ND))
641           GD = GlobalDecl(CD, Ctor_Base);
642         else if (const CXXDestructorDecl *DD = dyn_cast<CXXDestructorDecl>(ND))
643           GD = GlobalDecl(DD, Dtor_Base);
644         else if (ND->hasAttr<CUDAGlobalAttr>())
645           GD = GlobalDecl(cast<FunctionDecl>(ND));
646         else
647           GD = GlobalDecl(ND);
648         MC->mangleName(GD, Out);
649 
650         if (!Buffer.empty() && Buffer.front() == '\01')
651           return std::string(Buffer.substr(1));
652         return std::string(Buffer.str());
653       } else
654         return std::string(ND->getIdentifier()->getName());
655     }
656     return "";
657   }
658   if (isa<BlockDecl>(CurrentDecl)) {
659     // For blocks we only emit something if it is enclosed in a function
660     // For top-level block we'd like to include the name of variable, but we
661     // don't have it at this point.
662     auto DC = CurrentDecl->getDeclContext();
663     if (DC->isFileContext())
664       return "";
665 
666     SmallString<256> Buffer;
667     llvm::raw_svector_ostream Out(Buffer);
668     if (auto *DCBlock = dyn_cast<BlockDecl>(DC))
669       // For nested blocks, propagate up to the parent.
670       Out << ComputeName(IK, DCBlock);
671     else if (auto *DCDecl = dyn_cast<Decl>(DC))
672       Out << ComputeName(IK, DCDecl) << "_block_invoke";
673     return std::string(Out.str());
674   }
675   if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(CurrentDecl)) {
676     if (IK != PrettyFunction && IK != PrettyFunctionNoVirtual &&
677         IK != FuncSig && IK != LFuncSig)
678       return FD->getNameAsString();
679 
680     SmallString<256> Name;
681     llvm::raw_svector_ostream Out(Name);
682 
683     if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) {
684       if (MD->isVirtual() && IK != PrettyFunctionNoVirtual)
685         Out << "virtual ";
686       if (MD->isStatic())
687         Out << "static ";
688     }
689 
690     PrintingPolicy Policy(Context.getLangOpts());
691     std::string Proto;
692     llvm::raw_string_ostream POut(Proto);
693 
694     const FunctionDecl *Decl = FD;
695     if (const FunctionDecl* Pattern = FD->getTemplateInstantiationPattern())
696       Decl = Pattern;
697     const FunctionType *AFT = Decl->getType()->getAs<FunctionType>();
698     const FunctionProtoType *FT = nullptr;
699     if (FD->hasWrittenPrototype())
700       FT = dyn_cast<FunctionProtoType>(AFT);
701 
702     if (IK == FuncSig || IK == LFuncSig) {
703       switch (AFT->getCallConv()) {
704       case CC_C: POut << "__cdecl "; break;
705       case CC_X86StdCall: POut << "__stdcall "; break;
706       case CC_X86FastCall: POut << "__fastcall "; break;
707       case CC_X86ThisCall: POut << "__thiscall "; break;
708       case CC_X86VectorCall: POut << "__vectorcall "; break;
709       case CC_X86RegCall: POut << "__regcall "; break;
710       // Only bother printing the conventions that MSVC knows about.
711       default: break;
712       }
713     }
714 
715     FD->printQualifiedName(POut, Policy);
716 
717     POut << "(";
718     if (FT) {
719       for (unsigned i = 0, e = Decl->getNumParams(); i != e; ++i) {
720         if (i) POut << ", ";
721         POut << Decl->getParamDecl(i)->getType().stream(Policy);
722       }
723 
724       if (FT->isVariadic()) {
725         if (FD->getNumParams()) POut << ", ";
726         POut << "...";
727       } else if ((IK == FuncSig || IK == LFuncSig ||
728                   !Context.getLangOpts().CPlusPlus) &&
729                  !Decl->getNumParams()) {
730         POut << "void";
731       }
732     }
733     POut << ")";
734 
735     if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) {
736       assert(FT && "We must have a written prototype in this case.");
737       if (FT->isConst())
738         POut << " const";
739       if (FT->isVolatile())
740         POut << " volatile";
741       RefQualifierKind Ref = MD->getRefQualifier();
742       if (Ref == RQ_LValue)
743         POut << " &";
744       else if (Ref == RQ_RValue)
745         POut << " &&";
746     }
747 
748     typedef SmallVector<const ClassTemplateSpecializationDecl *, 8> SpecsTy;
749     SpecsTy Specs;
750     const DeclContext *Ctx = FD->getDeclContext();
751     while (Ctx && isa<NamedDecl>(Ctx)) {
752       const ClassTemplateSpecializationDecl *Spec
753                                = dyn_cast<ClassTemplateSpecializationDecl>(Ctx);
754       if (Spec && !Spec->isExplicitSpecialization())
755         Specs.push_back(Spec);
756       Ctx = Ctx->getParent();
757     }
758 
759     std::string TemplateParams;
760     llvm::raw_string_ostream TOut(TemplateParams);
761     for (SpecsTy::reverse_iterator I = Specs.rbegin(), E = Specs.rend();
762          I != E; ++I) {
763       const TemplateParameterList *Params
764                   = (*I)->getSpecializedTemplate()->getTemplateParameters();
765       const TemplateArgumentList &Args = (*I)->getTemplateArgs();
766       assert(Params->size() == Args.size());
767       for (unsigned i = 0, numParams = Params->size(); i != numParams; ++i) {
768         StringRef Param = Params->getParam(i)->getName();
769         if (Param.empty()) continue;
770         TOut << Param << " = ";
771         Args.get(i).print(Policy, TOut);
772         TOut << ", ";
773       }
774     }
775 
776     FunctionTemplateSpecializationInfo *FSI
777                                           = FD->getTemplateSpecializationInfo();
778     if (FSI && !FSI->isExplicitSpecialization()) {
779       const TemplateParameterList* Params
780                                   = FSI->getTemplate()->getTemplateParameters();
781       const TemplateArgumentList* Args = FSI->TemplateArguments;
782       assert(Params->size() == Args->size());
783       for (unsigned i = 0, e = Params->size(); i != e; ++i) {
784         StringRef Param = Params->getParam(i)->getName();
785         if (Param.empty()) continue;
786         TOut << Param << " = ";
787         Args->get(i).print(Policy, TOut);
788         TOut << ", ";
789       }
790     }
791 
792     TOut.flush();
793     if (!TemplateParams.empty()) {
794       // remove the trailing comma and space
795       TemplateParams.resize(TemplateParams.size() - 2);
796       POut << " [" << TemplateParams << "]";
797     }
798 
799     POut.flush();
800 
801     // Print "auto" for all deduced return types. This includes C++1y return
802     // type deduction and lambdas. For trailing return types resolve the
803     // decltype expression. Otherwise print the real type when this is
804     // not a constructor or destructor.
805     if (isa<CXXMethodDecl>(FD) &&
806          cast<CXXMethodDecl>(FD)->getParent()->isLambda())
807       Proto = "auto " + Proto;
808     else if (FT && FT->getReturnType()->getAs<DecltypeType>())
809       FT->getReturnType()
810           ->getAs<DecltypeType>()
811           ->getUnderlyingType()
812           .getAsStringInternal(Proto, Policy);
813     else if (!isa<CXXConstructorDecl>(FD) && !isa<CXXDestructorDecl>(FD))
814       AFT->getReturnType().getAsStringInternal(Proto, Policy);
815 
816     Out << Proto;
817 
818     return std::string(Name);
819   }
820   if (const CapturedDecl *CD = dyn_cast<CapturedDecl>(CurrentDecl)) {
821     for (const DeclContext *DC = CD->getParent(); DC; DC = DC->getParent())
822       // Skip to its enclosing function or method, but not its enclosing
823       // CapturedDecl.
824       if (DC->isFunctionOrMethod() && (DC->getDeclKind() != Decl::Captured)) {
825         const Decl *D = Decl::castFromDeclContext(DC);
826         return ComputeName(IK, D);
827       }
828     llvm_unreachable("CapturedDecl not inside a function or method");
829   }
830   if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(CurrentDecl)) {
831     SmallString<256> Name;
832     llvm::raw_svector_ostream Out(Name);
833     Out << (MD->isInstanceMethod() ? '-' : '+');
834     Out << '[';
835 
836     // For incorrect code, there might not be an ObjCInterfaceDecl.  Do
837     // a null check to avoid a crash.
838     if (const ObjCInterfaceDecl *ID = MD->getClassInterface())
839       Out << *ID;
840 
841     if (const ObjCCategoryImplDecl *CID =
842         dyn_cast<ObjCCategoryImplDecl>(MD->getDeclContext()))
843       Out << '(' << *CID << ')';
844 
845     Out <<  ' ';
846     MD->getSelector().print(Out);
847     Out <<  ']';
848 
849     return std::string(Name);
850   }
851   if (isa<TranslationUnitDecl>(CurrentDecl) && IK == PrettyFunction) {
852     // __PRETTY_FUNCTION__ -> "top level", the others produce an empty string.
853     return "top level";
854   }
855   return "";
856 }
857 
858 void APNumericStorage::setIntValue(const ASTContext &C,
859                                    const llvm::APInt &Val) {
860   if (hasAllocation())
861     C.Deallocate(pVal);
862 
863   BitWidth = Val.getBitWidth();
864   unsigned NumWords = Val.getNumWords();
865   const uint64_t* Words = Val.getRawData();
866   if (NumWords > 1) {
867     pVal = new (C) uint64_t[NumWords];
868     std::copy(Words, Words + NumWords, pVal);
869   } else if (NumWords == 1)
870     VAL = Words[0];
871   else
872     VAL = 0;
873 }
874 
875 IntegerLiteral::IntegerLiteral(const ASTContext &C, const llvm::APInt &V,
876                                QualType type, SourceLocation l)
877     : Expr(IntegerLiteralClass, type, VK_RValue, OK_Ordinary), Loc(l) {
878   assert(type->isIntegerType() && "Illegal type in IntegerLiteral");
879   assert(V.getBitWidth() == C.getIntWidth(type) &&
880          "Integer type is not the correct size for constant.");
881   setValue(C, V);
882   setDependence(ExprDependence::None);
883 }
884 
885 IntegerLiteral *
886 IntegerLiteral::Create(const ASTContext &C, const llvm::APInt &V,
887                        QualType type, SourceLocation l) {
888   return new (C) IntegerLiteral(C, V, type, l);
889 }
890 
891 IntegerLiteral *
892 IntegerLiteral::Create(const ASTContext &C, EmptyShell Empty) {
893   return new (C) IntegerLiteral(Empty);
894 }
895 
896 FixedPointLiteral::FixedPointLiteral(const ASTContext &C, const llvm::APInt &V,
897                                      QualType type, SourceLocation l,
898                                      unsigned Scale)
899     : Expr(FixedPointLiteralClass, type, VK_RValue, OK_Ordinary), Loc(l),
900       Scale(Scale) {
901   assert(type->isFixedPointType() && "Illegal type in FixedPointLiteral");
902   assert(V.getBitWidth() == C.getTypeInfo(type).Width &&
903          "Fixed point type is not the correct size for constant.");
904   setValue(C, V);
905   setDependence(ExprDependence::None);
906 }
907 
908 FixedPointLiteral *FixedPointLiteral::CreateFromRawInt(const ASTContext &C,
909                                                        const llvm::APInt &V,
910                                                        QualType type,
911                                                        SourceLocation l,
912                                                        unsigned Scale) {
913   return new (C) FixedPointLiteral(C, V, type, l, Scale);
914 }
915 
916 FixedPointLiteral *FixedPointLiteral::Create(const ASTContext &C,
917                                              EmptyShell Empty) {
918   return new (C) FixedPointLiteral(Empty);
919 }
920 
921 std::string FixedPointLiteral::getValueAsString(unsigned Radix) const {
922   // Currently the longest decimal number that can be printed is the max for an
923   // unsigned long _Accum: 4294967295.99999999976716935634613037109375
924   // which is 43 characters.
925   SmallString<64> S;
926   FixedPointValueToString(
927       S, llvm::APSInt::getUnsigned(getValue().getZExtValue()), Scale);
928   return std::string(S.str());
929 }
930 
931 FloatingLiteral::FloatingLiteral(const ASTContext &C, const llvm::APFloat &V,
932                                  bool isexact, QualType Type, SourceLocation L)
933     : Expr(FloatingLiteralClass, Type, VK_RValue, OK_Ordinary), Loc(L) {
934   setSemantics(V.getSemantics());
935   FloatingLiteralBits.IsExact = isexact;
936   setValue(C, V);
937   setDependence(ExprDependence::None);
938 }
939 
940 FloatingLiteral::FloatingLiteral(const ASTContext &C, EmptyShell Empty)
941   : Expr(FloatingLiteralClass, Empty) {
942   setRawSemantics(llvm::APFloatBase::S_IEEEhalf);
943   FloatingLiteralBits.IsExact = false;
944 }
945 
946 FloatingLiteral *
947 FloatingLiteral::Create(const ASTContext &C, const llvm::APFloat &V,
948                         bool isexact, QualType Type, SourceLocation L) {
949   return new (C) FloatingLiteral(C, V, isexact, Type, L);
950 }
951 
952 FloatingLiteral *
953 FloatingLiteral::Create(const ASTContext &C, EmptyShell Empty) {
954   return new (C) FloatingLiteral(C, Empty);
955 }
956 
957 /// getValueAsApproximateDouble - This returns the value as an inaccurate
958 /// double.  Note that this may cause loss of precision, but is useful for
959 /// debugging dumps, etc.
960 double FloatingLiteral::getValueAsApproximateDouble() const {
961   llvm::APFloat V = getValue();
962   bool ignored;
963   V.convert(llvm::APFloat::IEEEdouble(), llvm::APFloat::rmNearestTiesToEven,
964             &ignored);
965   return V.convertToDouble();
966 }
967 
968 unsigned StringLiteral::mapCharByteWidth(TargetInfo const &Target,
969                                          StringKind SK) {
970   unsigned CharByteWidth = 0;
971   switch (SK) {
972   case Ascii:
973   case UTF8:
974     CharByteWidth = Target.getCharWidth();
975     break;
976   case Wide:
977     CharByteWidth = Target.getWCharWidth();
978     break;
979   case UTF16:
980     CharByteWidth = Target.getChar16Width();
981     break;
982   case UTF32:
983     CharByteWidth = Target.getChar32Width();
984     break;
985   }
986   assert((CharByteWidth & 7) == 0 && "Assumes character size is byte multiple");
987   CharByteWidth /= 8;
988   assert((CharByteWidth == 1 || CharByteWidth == 2 || CharByteWidth == 4) &&
989          "The only supported character byte widths are 1,2 and 4!");
990   return CharByteWidth;
991 }
992 
993 StringLiteral::StringLiteral(const ASTContext &Ctx, StringRef Str,
994                              StringKind Kind, bool Pascal, QualType Ty,
995                              const SourceLocation *Loc,
996                              unsigned NumConcatenated)
997     : Expr(StringLiteralClass, Ty, VK_LValue, OK_Ordinary) {
998   assert(Ctx.getAsConstantArrayType(Ty) &&
999          "StringLiteral must be of constant array type!");
1000   unsigned CharByteWidth = mapCharByteWidth(Ctx.getTargetInfo(), Kind);
1001   unsigned ByteLength = Str.size();
1002   assert((ByteLength % CharByteWidth == 0) &&
1003          "The size of the data must be a multiple of CharByteWidth!");
1004 
1005   // Avoid the expensive division. The compiler should be able to figure it
1006   // out by itself. However as of clang 7, even with the appropriate
1007   // llvm_unreachable added just here, it is not able to do so.
1008   unsigned Length;
1009   switch (CharByteWidth) {
1010   case 1:
1011     Length = ByteLength;
1012     break;
1013   case 2:
1014     Length = ByteLength / 2;
1015     break;
1016   case 4:
1017     Length = ByteLength / 4;
1018     break;
1019   default:
1020     llvm_unreachable("Unsupported character width!");
1021   }
1022 
1023   StringLiteralBits.Kind = Kind;
1024   StringLiteralBits.CharByteWidth = CharByteWidth;
1025   StringLiteralBits.IsPascal = Pascal;
1026   StringLiteralBits.NumConcatenated = NumConcatenated;
1027   *getTrailingObjects<unsigned>() = Length;
1028 
1029   // Initialize the trailing array of SourceLocation.
1030   // This is safe since SourceLocation is POD-like.
1031   std::memcpy(getTrailingObjects<SourceLocation>(), Loc,
1032               NumConcatenated * sizeof(SourceLocation));
1033 
1034   // Initialize the trailing array of char holding the string data.
1035   std::memcpy(getTrailingObjects<char>(), Str.data(), ByteLength);
1036 
1037   setDependence(ExprDependence::None);
1038 }
1039 
1040 StringLiteral::StringLiteral(EmptyShell Empty, unsigned NumConcatenated,
1041                              unsigned Length, unsigned CharByteWidth)
1042     : Expr(StringLiteralClass, Empty) {
1043   StringLiteralBits.CharByteWidth = CharByteWidth;
1044   StringLiteralBits.NumConcatenated = NumConcatenated;
1045   *getTrailingObjects<unsigned>() = Length;
1046 }
1047 
1048 StringLiteral *StringLiteral::Create(const ASTContext &Ctx, StringRef Str,
1049                                      StringKind Kind, bool Pascal, QualType Ty,
1050                                      const SourceLocation *Loc,
1051                                      unsigned NumConcatenated) {
1052   void *Mem = Ctx.Allocate(totalSizeToAlloc<unsigned, SourceLocation, char>(
1053                                1, NumConcatenated, Str.size()),
1054                            alignof(StringLiteral));
1055   return new (Mem)
1056       StringLiteral(Ctx, Str, Kind, Pascal, Ty, Loc, NumConcatenated);
1057 }
1058 
1059 StringLiteral *StringLiteral::CreateEmpty(const ASTContext &Ctx,
1060                                           unsigned NumConcatenated,
1061                                           unsigned Length,
1062                                           unsigned CharByteWidth) {
1063   void *Mem = Ctx.Allocate(totalSizeToAlloc<unsigned, SourceLocation, char>(
1064                                1, NumConcatenated, Length * CharByteWidth),
1065                            alignof(StringLiteral));
1066   return new (Mem)
1067       StringLiteral(EmptyShell(), NumConcatenated, Length, CharByteWidth);
1068 }
1069 
1070 void StringLiteral::outputString(raw_ostream &OS) const {
1071   switch (getKind()) {
1072   case Ascii: break; // no prefix.
1073   case Wide:  OS << 'L'; break;
1074   case UTF8:  OS << "u8"; break;
1075   case UTF16: OS << 'u'; break;
1076   case UTF32: OS << 'U'; break;
1077   }
1078   OS << '"';
1079   static const char Hex[] = "0123456789ABCDEF";
1080 
1081   unsigned LastSlashX = getLength();
1082   for (unsigned I = 0, N = getLength(); I != N; ++I) {
1083     switch (uint32_t Char = getCodeUnit(I)) {
1084     default:
1085       // FIXME: Convert UTF-8 back to codepoints before rendering.
1086 
1087       // Convert UTF-16 surrogate pairs back to codepoints before rendering.
1088       // Leave invalid surrogates alone; we'll use \x for those.
1089       if (getKind() == UTF16 && I != N - 1 && Char >= 0xd800 &&
1090           Char <= 0xdbff) {
1091         uint32_t Trail = getCodeUnit(I + 1);
1092         if (Trail >= 0xdc00 && Trail <= 0xdfff) {
1093           Char = 0x10000 + ((Char - 0xd800) << 10) + (Trail - 0xdc00);
1094           ++I;
1095         }
1096       }
1097 
1098       if (Char > 0xff) {
1099         // If this is a wide string, output characters over 0xff using \x
1100         // escapes. Otherwise, this is a UTF-16 or UTF-32 string, and Char is a
1101         // codepoint: use \x escapes for invalid codepoints.
1102         if (getKind() == Wide ||
1103             (Char >= 0xd800 && Char <= 0xdfff) || Char >= 0x110000) {
1104           // FIXME: Is this the best way to print wchar_t?
1105           OS << "\\x";
1106           int Shift = 28;
1107           while ((Char >> Shift) == 0)
1108             Shift -= 4;
1109           for (/**/; Shift >= 0; Shift -= 4)
1110             OS << Hex[(Char >> Shift) & 15];
1111           LastSlashX = I;
1112           break;
1113         }
1114 
1115         if (Char > 0xffff)
1116           OS << "\\U00"
1117              << Hex[(Char >> 20) & 15]
1118              << Hex[(Char >> 16) & 15];
1119         else
1120           OS << "\\u";
1121         OS << Hex[(Char >> 12) & 15]
1122            << Hex[(Char >>  8) & 15]
1123            << Hex[(Char >>  4) & 15]
1124            << Hex[(Char >>  0) & 15];
1125         break;
1126       }
1127 
1128       // If we used \x... for the previous character, and this character is a
1129       // hexadecimal digit, prevent it being slurped as part of the \x.
1130       if (LastSlashX + 1 == I) {
1131         switch (Char) {
1132           case '0': case '1': case '2': case '3': case '4':
1133           case '5': case '6': case '7': case '8': case '9':
1134           case 'a': case 'b': case 'c': case 'd': case 'e': case 'f':
1135           case 'A': case 'B': case 'C': case 'D': case 'E': case 'F':
1136             OS << "\"\"";
1137         }
1138       }
1139 
1140       assert(Char <= 0xff &&
1141              "Characters above 0xff should already have been handled.");
1142 
1143       if (isPrintable(Char))
1144         OS << (char)Char;
1145       else  // Output anything hard as an octal escape.
1146         OS << '\\'
1147            << (char)('0' + ((Char >> 6) & 7))
1148            << (char)('0' + ((Char >> 3) & 7))
1149            << (char)('0' + ((Char >> 0) & 7));
1150       break;
1151     // Handle some common non-printable cases to make dumps prettier.
1152     case '\\': OS << "\\\\"; break;
1153     case '"': OS << "\\\""; break;
1154     case '\a': OS << "\\a"; break;
1155     case '\b': OS << "\\b"; break;
1156     case '\f': OS << "\\f"; break;
1157     case '\n': OS << "\\n"; break;
1158     case '\r': OS << "\\r"; break;
1159     case '\t': OS << "\\t"; break;
1160     case '\v': OS << "\\v"; break;
1161     }
1162   }
1163   OS << '"';
1164 }
1165 
1166 /// getLocationOfByte - Return a source location that points to the specified
1167 /// byte of this string literal.
1168 ///
1169 /// Strings are amazingly complex.  They can be formed from multiple tokens and
1170 /// can have escape sequences in them in addition to the usual trigraph and
1171 /// escaped newline business.  This routine handles this complexity.
1172 ///
1173 /// The *StartToken sets the first token to be searched in this function and
1174 /// the *StartTokenByteOffset is the byte offset of the first token. Before
1175 /// returning, it updates the *StartToken to the TokNo of the token being found
1176 /// and sets *StartTokenByteOffset to the byte offset of the token in the
1177 /// string.
1178 /// Using these two parameters can reduce the time complexity from O(n^2) to
1179 /// O(n) if one wants to get the location of byte for all the tokens in a
1180 /// string.
1181 ///
1182 SourceLocation
1183 StringLiteral::getLocationOfByte(unsigned ByteNo, const SourceManager &SM,
1184                                  const LangOptions &Features,
1185                                  const TargetInfo &Target, unsigned *StartToken,
1186                                  unsigned *StartTokenByteOffset) const {
1187   assert((getKind() == StringLiteral::Ascii ||
1188           getKind() == StringLiteral::UTF8) &&
1189          "Only narrow string literals are currently supported");
1190 
1191   // Loop over all of the tokens in this string until we find the one that
1192   // contains the byte we're looking for.
1193   unsigned TokNo = 0;
1194   unsigned StringOffset = 0;
1195   if (StartToken)
1196     TokNo = *StartToken;
1197   if (StartTokenByteOffset) {
1198     StringOffset = *StartTokenByteOffset;
1199     ByteNo -= StringOffset;
1200   }
1201   while (1) {
1202     assert(TokNo < getNumConcatenated() && "Invalid byte number!");
1203     SourceLocation StrTokLoc = getStrTokenLoc(TokNo);
1204 
1205     // Get the spelling of the string so that we can get the data that makes up
1206     // the string literal, not the identifier for the macro it is potentially
1207     // expanded through.
1208     SourceLocation StrTokSpellingLoc = SM.getSpellingLoc(StrTokLoc);
1209 
1210     // Re-lex the token to get its length and original spelling.
1211     std::pair<FileID, unsigned> LocInfo =
1212         SM.getDecomposedLoc(StrTokSpellingLoc);
1213     bool Invalid = false;
1214     StringRef Buffer = SM.getBufferData(LocInfo.first, &Invalid);
1215     if (Invalid) {
1216       if (StartTokenByteOffset != nullptr)
1217         *StartTokenByteOffset = StringOffset;
1218       if (StartToken != nullptr)
1219         *StartToken = TokNo;
1220       return StrTokSpellingLoc;
1221     }
1222 
1223     const char *StrData = Buffer.data()+LocInfo.second;
1224 
1225     // Create a lexer starting at the beginning of this token.
1226     Lexer TheLexer(SM.getLocForStartOfFile(LocInfo.first), Features,
1227                    Buffer.begin(), StrData, Buffer.end());
1228     Token TheTok;
1229     TheLexer.LexFromRawLexer(TheTok);
1230 
1231     // Use the StringLiteralParser to compute the length of the string in bytes.
1232     StringLiteralParser SLP(TheTok, SM, Features, Target);
1233     unsigned TokNumBytes = SLP.GetStringLength();
1234 
1235     // If the byte is in this token, return the location of the byte.
1236     if (ByteNo < TokNumBytes ||
1237         (ByteNo == TokNumBytes && TokNo == getNumConcatenated() - 1)) {
1238       unsigned Offset = SLP.getOffsetOfStringByte(TheTok, ByteNo);
1239 
1240       // Now that we know the offset of the token in the spelling, use the
1241       // preprocessor to get the offset in the original source.
1242       if (StartTokenByteOffset != nullptr)
1243         *StartTokenByteOffset = StringOffset;
1244       if (StartToken != nullptr)
1245         *StartToken = TokNo;
1246       return Lexer::AdvanceToTokenCharacter(StrTokLoc, Offset, SM, Features);
1247     }
1248 
1249     // Move to the next string token.
1250     StringOffset += TokNumBytes;
1251     ++TokNo;
1252     ByteNo -= TokNumBytes;
1253   }
1254 }
1255 
1256 /// getOpcodeStr - Turn an Opcode enum value into the punctuation char it
1257 /// corresponds to, e.g. "sizeof" or "[pre]++".
1258 StringRef UnaryOperator::getOpcodeStr(Opcode Op) {
1259   switch (Op) {
1260 #define UNARY_OPERATION(Name, Spelling) case UO_##Name: return Spelling;
1261 #include "clang/AST/OperationKinds.def"
1262   }
1263   llvm_unreachable("Unknown unary operator");
1264 }
1265 
1266 UnaryOperatorKind
1267 UnaryOperator::getOverloadedOpcode(OverloadedOperatorKind OO, bool Postfix) {
1268   switch (OO) {
1269   default: llvm_unreachable("No unary operator for overloaded function");
1270   case OO_PlusPlus:   return Postfix ? UO_PostInc : UO_PreInc;
1271   case OO_MinusMinus: return Postfix ? UO_PostDec : UO_PreDec;
1272   case OO_Amp:        return UO_AddrOf;
1273   case OO_Star:       return UO_Deref;
1274   case OO_Plus:       return UO_Plus;
1275   case OO_Minus:      return UO_Minus;
1276   case OO_Tilde:      return UO_Not;
1277   case OO_Exclaim:    return UO_LNot;
1278   case OO_Coawait:    return UO_Coawait;
1279   }
1280 }
1281 
1282 OverloadedOperatorKind UnaryOperator::getOverloadedOperator(Opcode Opc) {
1283   switch (Opc) {
1284   case UO_PostInc: case UO_PreInc: return OO_PlusPlus;
1285   case UO_PostDec: case UO_PreDec: return OO_MinusMinus;
1286   case UO_AddrOf: return OO_Amp;
1287   case UO_Deref: return OO_Star;
1288   case UO_Plus: return OO_Plus;
1289   case UO_Minus: return OO_Minus;
1290   case UO_Not: return OO_Tilde;
1291   case UO_LNot: return OO_Exclaim;
1292   case UO_Coawait: return OO_Coawait;
1293   default: return OO_None;
1294   }
1295 }
1296 
1297 
1298 //===----------------------------------------------------------------------===//
1299 // Postfix Operators.
1300 //===----------------------------------------------------------------------===//
1301 
1302 CallExpr::CallExpr(StmtClass SC, Expr *Fn, ArrayRef<Expr *> PreArgs,
1303                    ArrayRef<Expr *> Args, QualType Ty, ExprValueKind VK,
1304                    SourceLocation RParenLoc, unsigned MinNumArgs,
1305                    ADLCallKind UsesADL)
1306     : Expr(SC, Ty, VK, OK_Ordinary), RParenLoc(RParenLoc) {
1307   NumArgs = std::max<unsigned>(Args.size(), MinNumArgs);
1308   unsigned NumPreArgs = PreArgs.size();
1309   CallExprBits.NumPreArgs = NumPreArgs;
1310   assert((NumPreArgs == getNumPreArgs()) && "NumPreArgs overflow!");
1311 
1312   unsigned OffsetToTrailingObjects = offsetToTrailingObjects(SC);
1313   CallExprBits.OffsetToTrailingObjects = OffsetToTrailingObjects;
1314   assert((CallExprBits.OffsetToTrailingObjects == OffsetToTrailingObjects) &&
1315          "OffsetToTrailingObjects overflow!");
1316 
1317   CallExprBits.UsesADL = static_cast<bool>(UsesADL);
1318 
1319   setCallee(Fn);
1320   for (unsigned I = 0; I != NumPreArgs; ++I)
1321     setPreArg(I, PreArgs[I]);
1322   for (unsigned I = 0; I != Args.size(); ++I)
1323     setArg(I, Args[I]);
1324   for (unsigned I = Args.size(); I != NumArgs; ++I)
1325     setArg(I, nullptr);
1326 
1327   setDependence(computeDependence(this, PreArgs));
1328 }
1329 
1330 CallExpr::CallExpr(StmtClass SC, unsigned NumPreArgs, unsigned NumArgs,
1331                    EmptyShell Empty)
1332     : Expr(SC, Empty), NumArgs(NumArgs) {
1333   CallExprBits.NumPreArgs = NumPreArgs;
1334   assert((NumPreArgs == getNumPreArgs()) && "NumPreArgs overflow!");
1335 
1336   unsigned OffsetToTrailingObjects = offsetToTrailingObjects(SC);
1337   CallExprBits.OffsetToTrailingObjects = OffsetToTrailingObjects;
1338   assert((CallExprBits.OffsetToTrailingObjects == OffsetToTrailingObjects) &&
1339          "OffsetToTrailingObjects overflow!");
1340 }
1341 
1342 CallExpr *CallExpr::Create(const ASTContext &Ctx, Expr *Fn,
1343                            ArrayRef<Expr *> Args, QualType Ty, ExprValueKind VK,
1344                            SourceLocation RParenLoc, unsigned MinNumArgs,
1345                            ADLCallKind UsesADL) {
1346   unsigned NumArgs = std::max<unsigned>(Args.size(), MinNumArgs);
1347   unsigned SizeOfTrailingObjects =
1348       CallExpr::sizeOfTrailingObjects(/*NumPreArgs=*/0, NumArgs);
1349   void *Mem =
1350       Ctx.Allocate(sizeof(CallExpr) + SizeOfTrailingObjects, alignof(CallExpr));
1351   return new (Mem) CallExpr(CallExprClass, Fn, /*PreArgs=*/{}, Args, Ty, VK,
1352                             RParenLoc, MinNumArgs, UsesADL);
1353 }
1354 
1355 CallExpr *CallExpr::CreateTemporary(void *Mem, Expr *Fn, QualType Ty,
1356                                     ExprValueKind VK, SourceLocation RParenLoc,
1357                                     ADLCallKind UsesADL) {
1358   assert(!(reinterpret_cast<uintptr_t>(Mem) % alignof(CallExpr)) &&
1359          "Misaligned memory in CallExpr::CreateTemporary!");
1360   return new (Mem) CallExpr(CallExprClass, Fn, /*PreArgs=*/{}, /*Args=*/{}, Ty,
1361                             VK, RParenLoc, /*MinNumArgs=*/0, UsesADL);
1362 }
1363 
1364 CallExpr *CallExpr::CreateEmpty(const ASTContext &Ctx, unsigned NumArgs,
1365                                 EmptyShell Empty) {
1366   unsigned SizeOfTrailingObjects =
1367       CallExpr::sizeOfTrailingObjects(/*NumPreArgs=*/0, NumArgs);
1368   void *Mem =
1369       Ctx.Allocate(sizeof(CallExpr) + SizeOfTrailingObjects, alignof(CallExpr));
1370   return new (Mem) CallExpr(CallExprClass, /*NumPreArgs=*/0, NumArgs, Empty);
1371 }
1372 
1373 unsigned CallExpr::offsetToTrailingObjects(StmtClass SC) {
1374   switch (SC) {
1375   case CallExprClass:
1376     return sizeof(CallExpr);
1377   case CXXOperatorCallExprClass:
1378     return sizeof(CXXOperatorCallExpr);
1379   case CXXMemberCallExprClass:
1380     return sizeof(CXXMemberCallExpr);
1381   case UserDefinedLiteralClass:
1382     return sizeof(UserDefinedLiteral);
1383   case CUDAKernelCallExprClass:
1384     return sizeof(CUDAKernelCallExpr);
1385   default:
1386     llvm_unreachable("unexpected class deriving from CallExpr!");
1387   }
1388 }
1389 
1390 Decl *Expr::getReferencedDeclOfCallee() {
1391   Expr *CEE = IgnoreParenImpCasts();
1392 
1393   while (SubstNonTypeTemplateParmExpr *NTTP =
1394              dyn_cast<SubstNonTypeTemplateParmExpr>(CEE)) {
1395     CEE = NTTP->getReplacement()->IgnoreParenImpCasts();
1396   }
1397 
1398   // If we're calling a dereference, look at the pointer instead.
1399   while (true) {
1400     if (BinaryOperator *BO = dyn_cast<BinaryOperator>(CEE)) {
1401       if (BO->isPtrMemOp()) {
1402         CEE = BO->getRHS()->IgnoreParenImpCasts();
1403         continue;
1404       }
1405     } else if (UnaryOperator *UO = dyn_cast<UnaryOperator>(CEE)) {
1406       if (UO->getOpcode() == UO_Deref || UO->getOpcode() == UO_AddrOf ||
1407           UO->getOpcode() == UO_Plus) {
1408         CEE = UO->getSubExpr()->IgnoreParenImpCasts();
1409         continue;
1410       }
1411     }
1412     break;
1413   }
1414 
1415   if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(CEE))
1416     return DRE->getDecl();
1417   if (MemberExpr *ME = dyn_cast<MemberExpr>(CEE))
1418     return ME->getMemberDecl();
1419   if (auto *BE = dyn_cast<BlockExpr>(CEE))
1420     return BE->getBlockDecl();
1421 
1422   return nullptr;
1423 }
1424 
1425 /// If this is a call to a builtin, return the builtin ID. If not, return 0.
1426 unsigned CallExpr::getBuiltinCallee() const {
1427   auto *FDecl =
1428       dyn_cast_or_null<FunctionDecl>(getCallee()->getReferencedDeclOfCallee());
1429   return FDecl ? FDecl->getBuiltinID() : 0;
1430 }
1431 
1432 bool CallExpr::isUnevaluatedBuiltinCall(const ASTContext &Ctx) const {
1433   if (unsigned BI = getBuiltinCallee())
1434     return Ctx.BuiltinInfo.isUnevaluated(BI);
1435   return false;
1436 }
1437 
1438 QualType CallExpr::getCallReturnType(const ASTContext &Ctx) const {
1439   const Expr *Callee = getCallee();
1440   QualType CalleeType = Callee->getType();
1441   if (const auto *FnTypePtr = CalleeType->getAs<PointerType>()) {
1442     CalleeType = FnTypePtr->getPointeeType();
1443   } else if (const auto *BPT = CalleeType->getAs<BlockPointerType>()) {
1444     CalleeType = BPT->getPointeeType();
1445   } else if (CalleeType->isSpecificPlaceholderType(BuiltinType::BoundMember)) {
1446     if (isa<CXXPseudoDestructorExpr>(Callee->IgnoreParens()))
1447       return Ctx.VoidTy;
1448 
1449     // This should never be overloaded and so should never return null.
1450     CalleeType = Expr::findBoundMemberType(Callee);
1451   }
1452 
1453   const FunctionType *FnType = CalleeType->castAs<FunctionType>();
1454   return FnType->getReturnType();
1455 }
1456 
1457 const Attr *CallExpr::getUnusedResultAttr(const ASTContext &Ctx) const {
1458   // If the return type is a struct, union, or enum that is marked nodiscard,
1459   // then return the return type attribute.
1460   if (const TagDecl *TD = getCallReturnType(Ctx)->getAsTagDecl())
1461     if (const auto *A = TD->getAttr<WarnUnusedResultAttr>())
1462       return A;
1463 
1464   // Otherwise, see if the callee is marked nodiscard and return that attribute
1465   // instead.
1466   const Decl *D = getCalleeDecl();
1467   return D ? D->getAttr<WarnUnusedResultAttr>() : nullptr;
1468 }
1469 
1470 SourceLocation CallExpr::getBeginLoc() const {
1471   if (isa<CXXOperatorCallExpr>(this))
1472     return cast<CXXOperatorCallExpr>(this)->getBeginLoc();
1473 
1474   SourceLocation begin = getCallee()->getBeginLoc();
1475   if (begin.isInvalid() && getNumArgs() > 0 && getArg(0))
1476     begin = getArg(0)->getBeginLoc();
1477   return begin;
1478 }
1479 SourceLocation CallExpr::getEndLoc() const {
1480   if (isa<CXXOperatorCallExpr>(this))
1481     return cast<CXXOperatorCallExpr>(this)->getEndLoc();
1482 
1483   SourceLocation end = getRParenLoc();
1484   if (end.isInvalid() && getNumArgs() > 0 && getArg(getNumArgs() - 1))
1485     end = getArg(getNumArgs() - 1)->getEndLoc();
1486   return end;
1487 }
1488 
1489 OffsetOfExpr *OffsetOfExpr::Create(const ASTContext &C, QualType type,
1490                                    SourceLocation OperatorLoc,
1491                                    TypeSourceInfo *tsi,
1492                                    ArrayRef<OffsetOfNode> comps,
1493                                    ArrayRef<Expr*> exprs,
1494                                    SourceLocation RParenLoc) {
1495   void *Mem = C.Allocate(
1496       totalSizeToAlloc<OffsetOfNode, Expr *>(comps.size(), exprs.size()));
1497 
1498   return new (Mem) OffsetOfExpr(C, type, OperatorLoc, tsi, comps, exprs,
1499                                 RParenLoc);
1500 }
1501 
1502 OffsetOfExpr *OffsetOfExpr::CreateEmpty(const ASTContext &C,
1503                                         unsigned numComps, unsigned numExprs) {
1504   void *Mem =
1505       C.Allocate(totalSizeToAlloc<OffsetOfNode, Expr *>(numComps, numExprs));
1506   return new (Mem) OffsetOfExpr(numComps, numExprs);
1507 }
1508 
1509 OffsetOfExpr::OffsetOfExpr(const ASTContext &C, QualType type,
1510                            SourceLocation OperatorLoc, TypeSourceInfo *tsi,
1511                            ArrayRef<OffsetOfNode> comps, ArrayRef<Expr *> exprs,
1512                            SourceLocation RParenLoc)
1513     : Expr(OffsetOfExprClass, type, VK_RValue, OK_Ordinary),
1514       OperatorLoc(OperatorLoc), RParenLoc(RParenLoc), TSInfo(tsi),
1515       NumComps(comps.size()), NumExprs(exprs.size()) {
1516   for (unsigned i = 0; i != comps.size(); ++i)
1517     setComponent(i, comps[i]);
1518   for (unsigned i = 0; i != exprs.size(); ++i)
1519     setIndexExpr(i, exprs[i]);
1520 
1521   setDependence(computeDependence(this));
1522 }
1523 
1524 IdentifierInfo *OffsetOfNode::getFieldName() const {
1525   assert(getKind() == Field || getKind() == Identifier);
1526   if (getKind() == Field)
1527     return getField()->getIdentifier();
1528 
1529   return reinterpret_cast<IdentifierInfo *> (Data & ~(uintptr_t)Mask);
1530 }
1531 
1532 UnaryExprOrTypeTraitExpr::UnaryExprOrTypeTraitExpr(
1533     UnaryExprOrTypeTrait ExprKind, Expr *E, QualType resultType,
1534     SourceLocation op, SourceLocation rp)
1535     : Expr(UnaryExprOrTypeTraitExprClass, resultType, VK_RValue, OK_Ordinary),
1536       OpLoc(op), RParenLoc(rp) {
1537   UnaryExprOrTypeTraitExprBits.Kind = ExprKind;
1538   UnaryExprOrTypeTraitExprBits.IsType = false;
1539   Argument.Ex = E;
1540   setDependence(computeDependence(this));
1541 }
1542 
1543 MemberExpr::MemberExpr(Expr *Base, bool IsArrow, SourceLocation OperatorLoc,
1544                        ValueDecl *MemberDecl,
1545                        const DeclarationNameInfo &NameInfo, QualType T,
1546                        ExprValueKind VK, ExprObjectKind OK,
1547                        NonOdrUseReason NOUR)
1548     : Expr(MemberExprClass, T, VK, OK), Base(Base), MemberDecl(MemberDecl),
1549       MemberDNLoc(NameInfo.getInfo()), MemberLoc(NameInfo.getLoc()) {
1550   assert(!NameInfo.getName() ||
1551          MemberDecl->getDeclName() == NameInfo.getName());
1552   MemberExprBits.IsArrow = IsArrow;
1553   MemberExprBits.HasQualifierOrFoundDecl = false;
1554   MemberExprBits.HasTemplateKWAndArgsInfo = false;
1555   MemberExprBits.HadMultipleCandidates = false;
1556   MemberExprBits.NonOdrUseReason = NOUR;
1557   MemberExprBits.OperatorLoc = OperatorLoc;
1558   setDependence(computeDependence(this));
1559 }
1560 
1561 MemberExpr *MemberExpr::Create(
1562     const ASTContext &C, Expr *Base, bool IsArrow, SourceLocation OperatorLoc,
1563     NestedNameSpecifierLoc QualifierLoc, SourceLocation TemplateKWLoc,
1564     ValueDecl *MemberDecl, DeclAccessPair FoundDecl,
1565     DeclarationNameInfo NameInfo, const TemplateArgumentListInfo *TemplateArgs,
1566     QualType T, ExprValueKind VK, ExprObjectKind OK, NonOdrUseReason NOUR) {
1567   bool HasQualOrFound = QualifierLoc || FoundDecl.getDecl() != MemberDecl ||
1568                         FoundDecl.getAccess() != MemberDecl->getAccess();
1569   bool HasTemplateKWAndArgsInfo = TemplateArgs || TemplateKWLoc.isValid();
1570   std::size_t Size =
1571       totalSizeToAlloc<MemberExprNameQualifier, ASTTemplateKWAndArgsInfo,
1572                        TemplateArgumentLoc>(
1573           HasQualOrFound ? 1 : 0, HasTemplateKWAndArgsInfo ? 1 : 0,
1574           TemplateArgs ? TemplateArgs->size() : 0);
1575 
1576   void *Mem = C.Allocate(Size, alignof(MemberExpr));
1577   MemberExpr *E = new (Mem) MemberExpr(Base, IsArrow, OperatorLoc, MemberDecl,
1578                                        NameInfo, T, VK, OK, NOUR);
1579 
1580   // FIXME: remove remaining dependence computation to computeDependence().
1581   auto Deps = E->getDependence();
1582   if (HasQualOrFound) {
1583     // FIXME: Wrong. We should be looking at the member declaration we found.
1584     if (QualifierLoc && QualifierLoc.getNestedNameSpecifier()->isDependent())
1585       Deps |= ExprDependence::TypeValueInstantiation;
1586     else if (QualifierLoc &&
1587              QualifierLoc.getNestedNameSpecifier()->isInstantiationDependent())
1588       Deps |= ExprDependence::Instantiation;
1589 
1590     E->MemberExprBits.HasQualifierOrFoundDecl = true;
1591 
1592     MemberExprNameQualifier *NQ =
1593         E->getTrailingObjects<MemberExprNameQualifier>();
1594     NQ->QualifierLoc = QualifierLoc;
1595     NQ->FoundDecl = FoundDecl;
1596   }
1597 
1598   E->MemberExprBits.HasTemplateKWAndArgsInfo =
1599       TemplateArgs || TemplateKWLoc.isValid();
1600 
1601   if (TemplateArgs) {
1602     auto TemplateArgDeps = TemplateArgumentDependence::None;
1603     E->getTrailingObjects<ASTTemplateKWAndArgsInfo>()->initializeFrom(
1604         TemplateKWLoc, *TemplateArgs,
1605         E->getTrailingObjects<TemplateArgumentLoc>(), TemplateArgDeps);
1606     if (TemplateArgDeps & TemplateArgumentDependence::Instantiation)
1607       Deps |= ExprDependence::Instantiation;
1608   } else if (TemplateKWLoc.isValid()) {
1609     E->getTrailingObjects<ASTTemplateKWAndArgsInfo>()->initializeFrom(
1610         TemplateKWLoc);
1611   }
1612   E->setDependence(Deps);
1613 
1614   return E;
1615 }
1616 
1617 MemberExpr *MemberExpr::CreateEmpty(const ASTContext &Context,
1618                                     bool HasQualifier, bool HasFoundDecl,
1619                                     bool HasTemplateKWAndArgsInfo,
1620                                     unsigned NumTemplateArgs) {
1621   assert((!NumTemplateArgs || HasTemplateKWAndArgsInfo) &&
1622          "template args but no template arg info?");
1623   bool HasQualOrFound = HasQualifier || HasFoundDecl;
1624   std::size_t Size =
1625       totalSizeToAlloc<MemberExprNameQualifier, ASTTemplateKWAndArgsInfo,
1626                        TemplateArgumentLoc>(HasQualOrFound ? 1 : 0,
1627                                             HasTemplateKWAndArgsInfo ? 1 : 0,
1628                                             NumTemplateArgs);
1629   void *Mem = Context.Allocate(Size, alignof(MemberExpr));
1630   return new (Mem) MemberExpr(EmptyShell());
1631 }
1632 
1633 SourceLocation MemberExpr::getBeginLoc() const {
1634   if (isImplicitAccess()) {
1635     if (hasQualifier())
1636       return getQualifierLoc().getBeginLoc();
1637     return MemberLoc;
1638   }
1639 
1640   // FIXME: We don't want this to happen. Rather, we should be able to
1641   // detect all kinds of implicit accesses more cleanly.
1642   SourceLocation BaseStartLoc = getBase()->getBeginLoc();
1643   if (BaseStartLoc.isValid())
1644     return BaseStartLoc;
1645   return MemberLoc;
1646 }
1647 SourceLocation MemberExpr::getEndLoc() const {
1648   SourceLocation EndLoc = getMemberNameInfo().getEndLoc();
1649   if (hasExplicitTemplateArgs())
1650     EndLoc = getRAngleLoc();
1651   else if (EndLoc.isInvalid())
1652     EndLoc = getBase()->getEndLoc();
1653   return EndLoc;
1654 }
1655 
1656 bool CastExpr::CastConsistency() const {
1657   switch (getCastKind()) {
1658   case CK_DerivedToBase:
1659   case CK_UncheckedDerivedToBase:
1660   case CK_DerivedToBaseMemberPointer:
1661   case CK_BaseToDerived:
1662   case CK_BaseToDerivedMemberPointer:
1663     assert(!path_empty() && "Cast kind should have a base path!");
1664     break;
1665 
1666   case CK_CPointerToObjCPointerCast:
1667     assert(getType()->isObjCObjectPointerType());
1668     assert(getSubExpr()->getType()->isPointerType());
1669     goto CheckNoBasePath;
1670 
1671   case CK_BlockPointerToObjCPointerCast:
1672     assert(getType()->isObjCObjectPointerType());
1673     assert(getSubExpr()->getType()->isBlockPointerType());
1674     goto CheckNoBasePath;
1675 
1676   case CK_ReinterpretMemberPointer:
1677     assert(getType()->isMemberPointerType());
1678     assert(getSubExpr()->getType()->isMemberPointerType());
1679     goto CheckNoBasePath;
1680 
1681   case CK_BitCast:
1682     // Arbitrary casts to C pointer types count as bitcasts.
1683     // Otherwise, we should only have block and ObjC pointer casts
1684     // here if they stay within the type kind.
1685     if (!getType()->isPointerType()) {
1686       assert(getType()->isObjCObjectPointerType() ==
1687              getSubExpr()->getType()->isObjCObjectPointerType());
1688       assert(getType()->isBlockPointerType() ==
1689              getSubExpr()->getType()->isBlockPointerType());
1690     }
1691     goto CheckNoBasePath;
1692 
1693   case CK_AnyPointerToBlockPointerCast:
1694     assert(getType()->isBlockPointerType());
1695     assert(getSubExpr()->getType()->isAnyPointerType() &&
1696            !getSubExpr()->getType()->isBlockPointerType());
1697     goto CheckNoBasePath;
1698 
1699   case CK_CopyAndAutoreleaseBlockObject:
1700     assert(getType()->isBlockPointerType());
1701     assert(getSubExpr()->getType()->isBlockPointerType());
1702     goto CheckNoBasePath;
1703 
1704   case CK_FunctionToPointerDecay:
1705     assert(getType()->isPointerType());
1706     assert(getSubExpr()->getType()->isFunctionType());
1707     goto CheckNoBasePath;
1708 
1709   case CK_AddressSpaceConversion: {
1710     auto Ty = getType();
1711     auto SETy = getSubExpr()->getType();
1712     assert(getValueKindForType(Ty) == Expr::getValueKindForType(SETy));
1713     if (isRValue()) {
1714       Ty = Ty->getPointeeType();
1715       SETy = SETy->getPointeeType();
1716     }
1717     assert(!Ty.isNull() && !SETy.isNull() &&
1718            Ty.getAddressSpace() != SETy.getAddressSpace());
1719     goto CheckNoBasePath;
1720   }
1721   // These should not have an inheritance path.
1722   case CK_Dynamic:
1723   case CK_ToUnion:
1724   case CK_ArrayToPointerDecay:
1725   case CK_NullToMemberPointer:
1726   case CK_NullToPointer:
1727   case CK_ConstructorConversion:
1728   case CK_IntegralToPointer:
1729   case CK_PointerToIntegral:
1730   case CK_ToVoid:
1731   case CK_VectorSplat:
1732   case CK_IntegralCast:
1733   case CK_BooleanToSignedIntegral:
1734   case CK_IntegralToFloating:
1735   case CK_FloatingToIntegral:
1736   case CK_FloatingCast:
1737   case CK_ObjCObjectLValueCast:
1738   case CK_FloatingRealToComplex:
1739   case CK_FloatingComplexToReal:
1740   case CK_FloatingComplexCast:
1741   case CK_FloatingComplexToIntegralComplex:
1742   case CK_IntegralRealToComplex:
1743   case CK_IntegralComplexToReal:
1744   case CK_IntegralComplexCast:
1745   case CK_IntegralComplexToFloatingComplex:
1746   case CK_ARCProduceObject:
1747   case CK_ARCConsumeObject:
1748   case CK_ARCReclaimReturnedObject:
1749   case CK_ARCExtendBlockObject:
1750   case CK_ZeroToOCLOpaqueType:
1751   case CK_IntToOCLSampler:
1752   case CK_FixedPointCast:
1753   case CK_FixedPointToIntegral:
1754   case CK_IntegralToFixedPoint:
1755     assert(!getType()->isBooleanType() && "unheralded conversion to bool");
1756     goto CheckNoBasePath;
1757 
1758   case CK_Dependent:
1759   case CK_LValueToRValue:
1760   case CK_NoOp:
1761   case CK_AtomicToNonAtomic:
1762   case CK_NonAtomicToAtomic:
1763   case CK_PointerToBoolean:
1764   case CK_IntegralToBoolean:
1765   case CK_FloatingToBoolean:
1766   case CK_MemberPointerToBoolean:
1767   case CK_FloatingComplexToBoolean:
1768   case CK_IntegralComplexToBoolean:
1769   case CK_LValueBitCast:            // -> bool&
1770   case CK_LValueToRValueBitCast:
1771   case CK_UserDefinedConversion:    // operator bool()
1772   case CK_BuiltinFnToFnPtr:
1773   case CK_FixedPointToBoolean:
1774   CheckNoBasePath:
1775     assert(path_empty() && "Cast kind should not have a base path!");
1776     break;
1777   }
1778   return true;
1779 }
1780 
1781 const char *CastExpr::getCastKindName(CastKind CK) {
1782   switch (CK) {
1783 #define CAST_OPERATION(Name) case CK_##Name: return #Name;
1784 #include "clang/AST/OperationKinds.def"
1785   }
1786   llvm_unreachable("Unhandled cast kind!");
1787 }
1788 
1789 namespace {
1790   const Expr *skipImplicitTemporary(const Expr *E) {
1791     // Skip through reference binding to temporary.
1792     if (auto *Materialize = dyn_cast<MaterializeTemporaryExpr>(E))
1793       E = Materialize->getSubExpr();
1794 
1795     // Skip any temporary bindings; they're implicit.
1796     if (auto *Binder = dyn_cast<CXXBindTemporaryExpr>(E))
1797       E = Binder->getSubExpr();
1798 
1799     return E;
1800   }
1801 }
1802 
1803 Expr *CastExpr::getSubExprAsWritten() {
1804   const Expr *SubExpr = nullptr;
1805   const CastExpr *E = this;
1806   do {
1807     SubExpr = skipImplicitTemporary(E->getSubExpr());
1808 
1809     // Conversions by constructor and conversion functions have a
1810     // subexpression describing the call; strip it off.
1811     if (E->getCastKind() == CK_ConstructorConversion)
1812       SubExpr =
1813         skipImplicitTemporary(cast<CXXConstructExpr>(SubExpr)->getArg(0));
1814     else if (E->getCastKind() == CK_UserDefinedConversion) {
1815       assert((isa<CXXMemberCallExpr>(SubExpr) ||
1816               isa<BlockExpr>(SubExpr)) &&
1817              "Unexpected SubExpr for CK_UserDefinedConversion.");
1818       if (auto *MCE = dyn_cast<CXXMemberCallExpr>(SubExpr))
1819         SubExpr = MCE->getImplicitObjectArgument();
1820     }
1821 
1822     // If the subexpression we're left with is an implicit cast, look
1823     // through that, too.
1824   } while ((E = dyn_cast<ImplicitCastExpr>(SubExpr)));
1825 
1826   return const_cast<Expr*>(SubExpr);
1827 }
1828 
1829 NamedDecl *CastExpr::getConversionFunction() const {
1830   const Expr *SubExpr = nullptr;
1831 
1832   for (const CastExpr *E = this; E; E = dyn_cast<ImplicitCastExpr>(SubExpr)) {
1833     SubExpr = skipImplicitTemporary(E->getSubExpr());
1834 
1835     if (E->getCastKind() == CK_ConstructorConversion)
1836       return cast<CXXConstructExpr>(SubExpr)->getConstructor();
1837 
1838     if (E->getCastKind() == CK_UserDefinedConversion) {
1839       if (auto *MCE = dyn_cast<CXXMemberCallExpr>(SubExpr))
1840         return MCE->getMethodDecl();
1841     }
1842   }
1843 
1844   return nullptr;
1845 }
1846 
1847 CXXBaseSpecifier **CastExpr::path_buffer() {
1848   switch (getStmtClass()) {
1849 #define ABSTRACT_STMT(x)
1850 #define CASTEXPR(Type, Base)                                                   \
1851   case Stmt::Type##Class:                                                      \
1852     return static_cast<Type *>(this)->getTrailingObjects<CXXBaseSpecifier *>();
1853 #define STMT(Type, Base)
1854 #include "clang/AST/StmtNodes.inc"
1855   default:
1856     llvm_unreachable("non-cast expressions not possible here");
1857   }
1858 }
1859 
1860 const FieldDecl *CastExpr::getTargetFieldForToUnionCast(QualType unionType,
1861                                                         QualType opType) {
1862   auto RD = unionType->castAs<RecordType>()->getDecl();
1863   return getTargetFieldForToUnionCast(RD, opType);
1864 }
1865 
1866 const FieldDecl *CastExpr::getTargetFieldForToUnionCast(const RecordDecl *RD,
1867                                                         QualType OpType) {
1868   auto &Ctx = RD->getASTContext();
1869   RecordDecl::field_iterator Field, FieldEnd;
1870   for (Field = RD->field_begin(), FieldEnd = RD->field_end();
1871        Field != FieldEnd; ++Field) {
1872     if (Ctx.hasSameUnqualifiedType(Field->getType(), OpType) &&
1873         !Field->isUnnamedBitfield()) {
1874       return *Field;
1875     }
1876   }
1877   return nullptr;
1878 }
1879 
1880 ImplicitCastExpr *ImplicitCastExpr::Create(const ASTContext &C, QualType T,
1881                                            CastKind Kind, Expr *Operand,
1882                                            const CXXCastPath *BasePath,
1883                                            ExprValueKind VK) {
1884   unsigned PathSize = (BasePath ? BasePath->size() : 0);
1885   void *Buffer = C.Allocate(totalSizeToAlloc<CXXBaseSpecifier *>(PathSize));
1886   // Per C++ [conv.lval]p3, lvalue-to-rvalue conversions on class and
1887   // std::nullptr_t have special semantics not captured by CK_LValueToRValue.
1888   assert((Kind != CK_LValueToRValue ||
1889           !(T->isNullPtrType() || T->getAsCXXRecordDecl())) &&
1890          "invalid type for lvalue-to-rvalue conversion");
1891   ImplicitCastExpr *E =
1892     new (Buffer) ImplicitCastExpr(T, Kind, Operand, PathSize, VK);
1893   if (PathSize)
1894     std::uninitialized_copy_n(BasePath->data(), BasePath->size(),
1895                               E->getTrailingObjects<CXXBaseSpecifier *>());
1896   return E;
1897 }
1898 
1899 ImplicitCastExpr *ImplicitCastExpr::CreateEmpty(const ASTContext &C,
1900                                                 unsigned PathSize) {
1901   void *Buffer = C.Allocate(totalSizeToAlloc<CXXBaseSpecifier *>(PathSize));
1902   return new (Buffer) ImplicitCastExpr(EmptyShell(), PathSize);
1903 }
1904 
1905 
1906 CStyleCastExpr *CStyleCastExpr::Create(const ASTContext &C, QualType T,
1907                                        ExprValueKind VK, CastKind K, Expr *Op,
1908                                        const CXXCastPath *BasePath,
1909                                        TypeSourceInfo *WrittenTy,
1910                                        SourceLocation L, SourceLocation R) {
1911   unsigned PathSize = (BasePath ? BasePath->size() : 0);
1912   void *Buffer = C.Allocate(totalSizeToAlloc<CXXBaseSpecifier *>(PathSize));
1913   CStyleCastExpr *E =
1914     new (Buffer) CStyleCastExpr(T, VK, K, Op, PathSize, WrittenTy, L, R);
1915   if (PathSize)
1916     std::uninitialized_copy_n(BasePath->data(), BasePath->size(),
1917                               E->getTrailingObjects<CXXBaseSpecifier *>());
1918   return E;
1919 }
1920 
1921 CStyleCastExpr *CStyleCastExpr::CreateEmpty(const ASTContext &C,
1922                                             unsigned PathSize) {
1923   void *Buffer = C.Allocate(totalSizeToAlloc<CXXBaseSpecifier *>(PathSize));
1924   return new (Buffer) CStyleCastExpr(EmptyShell(), PathSize);
1925 }
1926 
1927 /// getOpcodeStr - Turn an Opcode enum value into the punctuation char it
1928 /// corresponds to, e.g. "<<=".
1929 StringRef BinaryOperator::getOpcodeStr(Opcode Op) {
1930   switch (Op) {
1931 #define BINARY_OPERATION(Name, Spelling) case BO_##Name: return Spelling;
1932 #include "clang/AST/OperationKinds.def"
1933   }
1934   llvm_unreachable("Invalid OpCode!");
1935 }
1936 
1937 BinaryOperatorKind
1938 BinaryOperator::getOverloadedOpcode(OverloadedOperatorKind OO) {
1939   switch (OO) {
1940   default: llvm_unreachable("Not an overloadable binary operator");
1941   case OO_Plus: return BO_Add;
1942   case OO_Minus: return BO_Sub;
1943   case OO_Star: return BO_Mul;
1944   case OO_Slash: return BO_Div;
1945   case OO_Percent: return BO_Rem;
1946   case OO_Caret: return BO_Xor;
1947   case OO_Amp: return BO_And;
1948   case OO_Pipe: return BO_Or;
1949   case OO_Equal: return BO_Assign;
1950   case OO_Spaceship: return BO_Cmp;
1951   case OO_Less: return BO_LT;
1952   case OO_Greater: return BO_GT;
1953   case OO_PlusEqual: return BO_AddAssign;
1954   case OO_MinusEqual: return BO_SubAssign;
1955   case OO_StarEqual: return BO_MulAssign;
1956   case OO_SlashEqual: return BO_DivAssign;
1957   case OO_PercentEqual: return BO_RemAssign;
1958   case OO_CaretEqual: return BO_XorAssign;
1959   case OO_AmpEqual: return BO_AndAssign;
1960   case OO_PipeEqual: return BO_OrAssign;
1961   case OO_LessLess: return BO_Shl;
1962   case OO_GreaterGreater: return BO_Shr;
1963   case OO_LessLessEqual: return BO_ShlAssign;
1964   case OO_GreaterGreaterEqual: return BO_ShrAssign;
1965   case OO_EqualEqual: return BO_EQ;
1966   case OO_ExclaimEqual: return BO_NE;
1967   case OO_LessEqual: return BO_LE;
1968   case OO_GreaterEqual: return BO_GE;
1969   case OO_AmpAmp: return BO_LAnd;
1970   case OO_PipePipe: return BO_LOr;
1971   case OO_Comma: return BO_Comma;
1972   case OO_ArrowStar: return BO_PtrMemI;
1973   }
1974 }
1975 
1976 OverloadedOperatorKind BinaryOperator::getOverloadedOperator(Opcode Opc) {
1977   static const OverloadedOperatorKind OverOps[] = {
1978     /* .* Cannot be overloaded */OO_None, OO_ArrowStar,
1979     OO_Star, OO_Slash, OO_Percent,
1980     OO_Plus, OO_Minus,
1981     OO_LessLess, OO_GreaterGreater,
1982     OO_Spaceship,
1983     OO_Less, OO_Greater, OO_LessEqual, OO_GreaterEqual,
1984     OO_EqualEqual, OO_ExclaimEqual,
1985     OO_Amp,
1986     OO_Caret,
1987     OO_Pipe,
1988     OO_AmpAmp,
1989     OO_PipePipe,
1990     OO_Equal, OO_StarEqual,
1991     OO_SlashEqual, OO_PercentEqual,
1992     OO_PlusEqual, OO_MinusEqual,
1993     OO_LessLessEqual, OO_GreaterGreaterEqual,
1994     OO_AmpEqual, OO_CaretEqual,
1995     OO_PipeEqual,
1996     OO_Comma
1997   };
1998   return OverOps[Opc];
1999 }
2000 
2001 bool BinaryOperator::isNullPointerArithmeticExtension(ASTContext &Ctx,
2002                                                       Opcode Opc,
2003                                                       Expr *LHS, Expr *RHS) {
2004   if (Opc != BO_Add)
2005     return false;
2006 
2007   // Check that we have one pointer and one integer operand.
2008   Expr *PExp;
2009   if (LHS->getType()->isPointerType()) {
2010     if (!RHS->getType()->isIntegerType())
2011       return false;
2012     PExp = LHS;
2013   } else if (RHS->getType()->isPointerType()) {
2014     if (!LHS->getType()->isIntegerType())
2015       return false;
2016     PExp = RHS;
2017   } else {
2018     return false;
2019   }
2020 
2021   // Check that the pointer is a nullptr.
2022   if (!PExp->IgnoreParenCasts()
2023           ->isNullPointerConstant(Ctx, Expr::NPC_ValueDependentIsNotNull))
2024     return false;
2025 
2026   // Check that the pointee type is char-sized.
2027   const PointerType *PTy = PExp->getType()->getAs<PointerType>();
2028   if (!PTy || !PTy->getPointeeType()->isCharType())
2029     return false;
2030 
2031   return true;
2032 }
2033 
2034 static QualType getDecayedSourceLocExprType(const ASTContext &Ctx,
2035                                             SourceLocExpr::IdentKind Kind) {
2036   switch (Kind) {
2037   case SourceLocExpr::File:
2038   case SourceLocExpr::Function: {
2039     QualType ArrTy = Ctx.getStringLiteralArrayType(Ctx.CharTy, 0);
2040     return Ctx.getPointerType(ArrTy->getAsArrayTypeUnsafe()->getElementType());
2041   }
2042   case SourceLocExpr::Line:
2043   case SourceLocExpr::Column:
2044     return Ctx.UnsignedIntTy;
2045   }
2046   llvm_unreachable("unhandled case");
2047 }
2048 
2049 SourceLocExpr::SourceLocExpr(const ASTContext &Ctx, IdentKind Kind,
2050                              SourceLocation BLoc, SourceLocation RParenLoc,
2051                              DeclContext *ParentContext)
2052     : Expr(SourceLocExprClass, getDecayedSourceLocExprType(Ctx, Kind),
2053            VK_RValue, OK_Ordinary),
2054       BuiltinLoc(BLoc), RParenLoc(RParenLoc), ParentContext(ParentContext) {
2055   SourceLocExprBits.Kind = Kind;
2056   setDependence(ExprDependence::None);
2057 }
2058 
2059 StringRef SourceLocExpr::getBuiltinStr() const {
2060   switch (getIdentKind()) {
2061   case File:
2062     return "__builtin_FILE";
2063   case Function:
2064     return "__builtin_FUNCTION";
2065   case Line:
2066     return "__builtin_LINE";
2067   case Column:
2068     return "__builtin_COLUMN";
2069   }
2070   llvm_unreachable("unexpected IdentKind!");
2071 }
2072 
2073 APValue SourceLocExpr::EvaluateInContext(const ASTContext &Ctx,
2074                                          const Expr *DefaultExpr) const {
2075   SourceLocation Loc;
2076   const DeclContext *Context;
2077 
2078   std::tie(Loc,
2079            Context) = [&]() -> std::pair<SourceLocation, const DeclContext *> {
2080     if (auto *DIE = dyn_cast_or_null<CXXDefaultInitExpr>(DefaultExpr))
2081       return {DIE->getUsedLocation(), DIE->getUsedContext()};
2082     if (auto *DAE = dyn_cast_or_null<CXXDefaultArgExpr>(DefaultExpr))
2083       return {DAE->getUsedLocation(), DAE->getUsedContext()};
2084     return {this->getLocation(), this->getParentContext()};
2085   }();
2086 
2087   PresumedLoc PLoc = Ctx.getSourceManager().getPresumedLoc(
2088       Ctx.getSourceManager().getExpansionRange(Loc).getEnd());
2089 
2090   auto MakeStringLiteral = [&](StringRef Tmp) {
2091     using LValuePathEntry = APValue::LValuePathEntry;
2092     StringLiteral *Res = Ctx.getPredefinedStringLiteralFromCache(Tmp);
2093     // Decay the string to a pointer to the first character.
2094     LValuePathEntry Path[1] = {LValuePathEntry::ArrayIndex(0)};
2095     return APValue(Res, CharUnits::Zero(), Path, /*OnePastTheEnd=*/false);
2096   };
2097 
2098   switch (getIdentKind()) {
2099   case SourceLocExpr::File:
2100     return MakeStringLiteral(PLoc.getFilename());
2101   case SourceLocExpr::Function: {
2102     const Decl *CurDecl = dyn_cast_or_null<Decl>(Context);
2103     return MakeStringLiteral(
2104         CurDecl ? PredefinedExpr::ComputeName(PredefinedExpr::Function, CurDecl)
2105                 : std::string(""));
2106   }
2107   case SourceLocExpr::Line:
2108   case SourceLocExpr::Column: {
2109     llvm::APSInt IntVal(Ctx.getIntWidth(Ctx.UnsignedIntTy),
2110                         /*isUnsigned=*/true);
2111     IntVal = getIdentKind() == SourceLocExpr::Line ? PLoc.getLine()
2112                                                    : PLoc.getColumn();
2113     return APValue(IntVal);
2114   }
2115   }
2116   llvm_unreachable("unhandled case");
2117 }
2118 
2119 InitListExpr::InitListExpr(const ASTContext &C, SourceLocation lbraceloc,
2120                            ArrayRef<Expr *> initExprs, SourceLocation rbraceloc)
2121     : Expr(InitListExprClass, QualType(), VK_RValue, OK_Ordinary),
2122       InitExprs(C, initExprs.size()), LBraceLoc(lbraceloc),
2123       RBraceLoc(rbraceloc), AltForm(nullptr, true) {
2124   sawArrayRangeDesignator(false);
2125   InitExprs.insert(C, InitExprs.end(), initExprs.begin(), initExprs.end());
2126 
2127   setDependence(computeDependence(this));
2128 }
2129 
2130 void InitListExpr::reserveInits(const ASTContext &C, unsigned NumInits) {
2131   if (NumInits > InitExprs.size())
2132     InitExprs.reserve(C, NumInits);
2133 }
2134 
2135 void InitListExpr::resizeInits(const ASTContext &C, unsigned NumInits) {
2136   InitExprs.resize(C, NumInits, nullptr);
2137 }
2138 
2139 Expr *InitListExpr::updateInit(const ASTContext &C, unsigned Init, Expr *expr) {
2140   if (Init >= InitExprs.size()) {
2141     InitExprs.insert(C, InitExprs.end(), Init - InitExprs.size() + 1, nullptr);
2142     setInit(Init, expr);
2143     return nullptr;
2144   }
2145 
2146   Expr *Result = cast_or_null<Expr>(InitExprs[Init]);
2147   setInit(Init, expr);
2148   return Result;
2149 }
2150 
2151 void InitListExpr::setArrayFiller(Expr *filler) {
2152   assert(!hasArrayFiller() && "Filler already set!");
2153   ArrayFillerOrUnionFieldInit = filler;
2154   // Fill out any "holes" in the array due to designated initializers.
2155   Expr **inits = getInits();
2156   for (unsigned i = 0, e = getNumInits(); i != e; ++i)
2157     if (inits[i] == nullptr)
2158       inits[i] = filler;
2159 }
2160 
2161 bool InitListExpr::isStringLiteralInit() const {
2162   if (getNumInits() != 1)
2163     return false;
2164   const ArrayType *AT = getType()->getAsArrayTypeUnsafe();
2165   if (!AT || !AT->getElementType()->isIntegerType())
2166     return false;
2167   // It is possible for getInit() to return null.
2168   const Expr *Init = getInit(0);
2169   if (!Init)
2170     return false;
2171   Init = Init->IgnoreParens();
2172   return isa<StringLiteral>(Init) || isa<ObjCEncodeExpr>(Init);
2173 }
2174 
2175 bool InitListExpr::isTransparent() const {
2176   assert(isSemanticForm() && "syntactic form never semantically transparent");
2177 
2178   // A glvalue InitListExpr is always just sugar.
2179   if (isGLValue()) {
2180     assert(getNumInits() == 1 && "multiple inits in glvalue init list");
2181     return true;
2182   }
2183 
2184   // Otherwise, we're sugar if and only if we have exactly one initializer that
2185   // is of the same type.
2186   if (getNumInits() != 1 || !getInit(0))
2187     return false;
2188 
2189   // Don't confuse aggregate initialization of a struct X { X &x; }; with a
2190   // transparent struct copy.
2191   if (!getInit(0)->isRValue() && getType()->isRecordType())
2192     return false;
2193 
2194   return getType().getCanonicalType() ==
2195          getInit(0)->getType().getCanonicalType();
2196 }
2197 
2198 bool InitListExpr::isIdiomaticZeroInitializer(const LangOptions &LangOpts) const {
2199   assert(isSyntacticForm() && "only test syntactic form as zero initializer");
2200 
2201   if (LangOpts.CPlusPlus || getNumInits() != 1 || !getInit(0)) {
2202     return false;
2203   }
2204 
2205   const IntegerLiteral *Lit = dyn_cast<IntegerLiteral>(getInit(0)->IgnoreImplicit());
2206   return Lit && Lit->getValue() == 0;
2207 }
2208 
2209 SourceLocation InitListExpr::getBeginLoc() const {
2210   if (InitListExpr *SyntacticForm = getSyntacticForm())
2211     return SyntacticForm->getBeginLoc();
2212   SourceLocation Beg = LBraceLoc;
2213   if (Beg.isInvalid()) {
2214     // Find the first non-null initializer.
2215     for (InitExprsTy::const_iterator I = InitExprs.begin(),
2216                                      E = InitExprs.end();
2217       I != E; ++I) {
2218       if (Stmt *S = *I) {
2219         Beg = S->getBeginLoc();
2220         break;
2221       }
2222     }
2223   }
2224   return Beg;
2225 }
2226 
2227 SourceLocation InitListExpr::getEndLoc() const {
2228   if (InitListExpr *SyntacticForm = getSyntacticForm())
2229     return SyntacticForm->getEndLoc();
2230   SourceLocation End = RBraceLoc;
2231   if (End.isInvalid()) {
2232     // Find the first non-null initializer from the end.
2233     for (InitExprsTy::const_reverse_iterator I = InitExprs.rbegin(),
2234          E = InitExprs.rend();
2235          I != E; ++I) {
2236       if (Stmt *S = *I) {
2237         End = S->getEndLoc();
2238         break;
2239       }
2240     }
2241   }
2242   return End;
2243 }
2244 
2245 /// getFunctionType - Return the underlying function type for this block.
2246 ///
2247 const FunctionProtoType *BlockExpr::getFunctionType() const {
2248   // The block pointer is never sugared, but the function type might be.
2249   return cast<BlockPointerType>(getType())
2250            ->getPointeeType()->castAs<FunctionProtoType>();
2251 }
2252 
2253 SourceLocation BlockExpr::getCaretLocation() const {
2254   return TheBlock->getCaretLocation();
2255 }
2256 const Stmt *BlockExpr::getBody() const {
2257   return TheBlock->getBody();
2258 }
2259 Stmt *BlockExpr::getBody() {
2260   return TheBlock->getBody();
2261 }
2262 
2263 
2264 //===----------------------------------------------------------------------===//
2265 // Generic Expression Routines
2266 //===----------------------------------------------------------------------===//
2267 
2268 /// isUnusedResultAWarning - Return true if this immediate expression should
2269 /// be warned about if the result is unused.  If so, fill in Loc and Ranges
2270 /// with location to warn on and the source range[s] to report with the
2271 /// warning.
2272 bool Expr::isUnusedResultAWarning(const Expr *&WarnE, SourceLocation &Loc,
2273                                   SourceRange &R1, SourceRange &R2,
2274                                   ASTContext &Ctx) const {
2275   // Don't warn if the expr is type dependent. The type could end up
2276   // instantiating to void.
2277   if (isTypeDependent())
2278     return false;
2279 
2280   switch (getStmtClass()) {
2281   default:
2282     if (getType()->isVoidType())
2283       return false;
2284     WarnE = this;
2285     Loc = getExprLoc();
2286     R1 = getSourceRange();
2287     return true;
2288   case ParenExprClass:
2289     return cast<ParenExpr>(this)->getSubExpr()->
2290       isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx);
2291   case GenericSelectionExprClass:
2292     return cast<GenericSelectionExpr>(this)->getResultExpr()->
2293       isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx);
2294   case CoawaitExprClass:
2295   case CoyieldExprClass:
2296     return cast<CoroutineSuspendExpr>(this)->getResumeExpr()->
2297       isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx);
2298   case ChooseExprClass:
2299     return cast<ChooseExpr>(this)->getChosenSubExpr()->
2300       isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx);
2301   case UnaryOperatorClass: {
2302     const UnaryOperator *UO = cast<UnaryOperator>(this);
2303 
2304     switch (UO->getOpcode()) {
2305     case UO_Plus:
2306     case UO_Minus:
2307     case UO_AddrOf:
2308     case UO_Not:
2309     case UO_LNot:
2310     case UO_Deref:
2311       break;
2312     case UO_Coawait:
2313       // This is just the 'operator co_await' call inside the guts of a
2314       // dependent co_await call.
2315     case UO_PostInc:
2316     case UO_PostDec:
2317     case UO_PreInc:
2318     case UO_PreDec:                 // ++/--
2319       return false;  // Not a warning.
2320     case UO_Real:
2321     case UO_Imag:
2322       // accessing a piece of a volatile complex is a side-effect.
2323       if (Ctx.getCanonicalType(UO->getSubExpr()->getType())
2324           .isVolatileQualified())
2325         return false;
2326       break;
2327     case UO_Extension:
2328       return UO->getSubExpr()->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx);
2329     }
2330     WarnE = this;
2331     Loc = UO->getOperatorLoc();
2332     R1 = UO->getSubExpr()->getSourceRange();
2333     return true;
2334   }
2335   case BinaryOperatorClass: {
2336     const BinaryOperator *BO = cast<BinaryOperator>(this);
2337     switch (BO->getOpcode()) {
2338       default:
2339         break;
2340       // Consider the RHS of comma for side effects. LHS was checked by
2341       // Sema::CheckCommaOperands.
2342       case BO_Comma:
2343         // ((foo = <blah>), 0) is an idiom for hiding the result (and
2344         // lvalue-ness) of an assignment written in a macro.
2345         if (IntegerLiteral *IE =
2346               dyn_cast<IntegerLiteral>(BO->getRHS()->IgnoreParens()))
2347           if (IE->getValue() == 0)
2348             return false;
2349         return BO->getRHS()->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx);
2350       // Consider '||', '&&' to have side effects if the LHS or RHS does.
2351       case BO_LAnd:
2352       case BO_LOr:
2353         if (!BO->getLHS()->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx) ||
2354             !BO->getRHS()->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx))
2355           return false;
2356         break;
2357     }
2358     if (BO->isAssignmentOp())
2359       return false;
2360     WarnE = this;
2361     Loc = BO->getOperatorLoc();
2362     R1 = BO->getLHS()->getSourceRange();
2363     R2 = BO->getRHS()->getSourceRange();
2364     return true;
2365   }
2366   case CompoundAssignOperatorClass:
2367   case VAArgExprClass:
2368   case AtomicExprClass:
2369     return false;
2370 
2371   case ConditionalOperatorClass: {
2372     // If only one of the LHS or RHS is a warning, the operator might
2373     // be being used for control flow. Only warn if both the LHS and
2374     // RHS are warnings.
2375     const auto *Exp = cast<ConditionalOperator>(this);
2376     return Exp->getLHS()->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx) &&
2377            Exp->getRHS()->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx);
2378   }
2379   case BinaryConditionalOperatorClass: {
2380     const auto *Exp = cast<BinaryConditionalOperator>(this);
2381     return Exp->getFalseExpr()->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx);
2382   }
2383 
2384   case MemberExprClass:
2385     WarnE = this;
2386     Loc = cast<MemberExpr>(this)->getMemberLoc();
2387     R1 = SourceRange(Loc, Loc);
2388     R2 = cast<MemberExpr>(this)->getBase()->getSourceRange();
2389     return true;
2390 
2391   case ArraySubscriptExprClass:
2392     WarnE = this;
2393     Loc = cast<ArraySubscriptExpr>(this)->getRBracketLoc();
2394     R1 = cast<ArraySubscriptExpr>(this)->getLHS()->getSourceRange();
2395     R2 = cast<ArraySubscriptExpr>(this)->getRHS()->getSourceRange();
2396     return true;
2397 
2398   case CXXOperatorCallExprClass: {
2399     // Warn about operator ==,!=,<,>,<=, and >= even when user-defined operator
2400     // overloads as there is no reasonable way to define these such that they
2401     // have non-trivial, desirable side-effects. See the -Wunused-comparison
2402     // warning: operators == and != are commonly typo'ed, and so warning on them
2403     // provides additional value as well. If this list is updated,
2404     // DiagnoseUnusedComparison should be as well.
2405     const CXXOperatorCallExpr *Op = cast<CXXOperatorCallExpr>(this);
2406     switch (Op->getOperator()) {
2407     default:
2408       break;
2409     case OO_EqualEqual:
2410     case OO_ExclaimEqual:
2411     case OO_Less:
2412     case OO_Greater:
2413     case OO_GreaterEqual:
2414     case OO_LessEqual:
2415       if (Op->getCallReturnType(Ctx)->isReferenceType() ||
2416           Op->getCallReturnType(Ctx)->isVoidType())
2417         break;
2418       WarnE = this;
2419       Loc = Op->getOperatorLoc();
2420       R1 = Op->getSourceRange();
2421       return true;
2422     }
2423 
2424     // Fallthrough for generic call handling.
2425     LLVM_FALLTHROUGH;
2426   }
2427   case CallExprClass:
2428   case CXXMemberCallExprClass:
2429   case UserDefinedLiteralClass: {
2430     // If this is a direct call, get the callee.
2431     const CallExpr *CE = cast<CallExpr>(this);
2432     if (const Decl *FD = CE->getCalleeDecl()) {
2433       // If the callee has attribute pure, const, or warn_unused_result, warn
2434       // about it. void foo() { strlen("bar"); } should warn.
2435       //
2436       // Note: If new cases are added here, DiagnoseUnusedExprResult should be
2437       // updated to match for QoI.
2438       if (CE->hasUnusedResultAttr(Ctx) ||
2439           FD->hasAttr<PureAttr>() || FD->hasAttr<ConstAttr>()) {
2440         WarnE = this;
2441         Loc = CE->getCallee()->getBeginLoc();
2442         R1 = CE->getCallee()->getSourceRange();
2443 
2444         if (unsigned NumArgs = CE->getNumArgs())
2445           R2 = SourceRange(CE->getArg(0)->getBeginLoc(),
2446                            CE->getArg(NumArgs - 1)->getEndLoc());
2447         return true;
2448       }
2449     }
2450     return false;
2451   }
2452 
2453   // If we don't know precisely what we're looking at, let's not warn.
2454   case UnresolvedLookupExprClass:
2455   case CXXUnresolvedConstructExprClass:
2456   case RecoveryExprClass:
2457     return false;
2458 
2459   case CXXTemporaryObjectExprClass:
2460   case CXXConstructExprClass: {
2461     if (const CXXRecordDecl *Type = getType()->getAsCXXRecordDecl()) {
2462       const auto *WarnURAttr = Type->getAttr<WarnUnusedResultAttr>();
2463       if (Type->hasAttr<WarnUnusedAttr>() ||
2464           (WarnURAttr && WarnURAttr->IsCXX11NoDiscard())) {
2465         WarnE = this;
2466         Loc = getBeginLoc();
2467         R1 = getSourceRange();
2468         return true;
2469       }
2470     }
2471 
2472     const auto *CE = cast<CXXConstructExpr>(this);
2473     if (const CXXConstructorDecl *Ctor = CE->getConstructor()) {
2474       const auto *WarnURAttr = Ctor->getAttr<WarnUnusedResultAttr>();
2475       if (WarnURAttr && WarnURAttr->IsCXX11NoDiscard()) {
2476         WarnE = this;
2477         Loc = getBeginLoc();
2478         R1 = getSourceRange();
2479 
2480         if (unsigned NumArgs = CE->getNumArgs())
2481           R2 = SourceRange(CE->getArg(0)->getBeginLoc(),
2482                            CE->getArg(NumArgs - 1)->getEndLoc());
2483         return true;
2484       }
2485     }
2486 
2487     return false;
2488   }
2489 
2490   case ObjCMessageExprClass: {
2491     const ObjCMessageExpr *ME = cast<ObjCMessageExpr>(this);
2492     if (Ctx.getLangOpts().ObjCAutoRefCount &&
2493         ME->isInstanceMessage() &&
2494         !ME->getType()->isVoidType() &&
2495         ME->getMethodFamily() == OMF_init) {
2496       WarnE = this;
2497       Loc = getExprLoc();
2498       R1 = ME->getSourceRange();
2499       return true;
2500     }
2501 
2502     if (const ObjCMethodDecl *MD = ME->getMethodDecl())
2503       if (MD->hasAttr<WarnUnusedResultAttr>()) {
2504         WarnE = this;
2505         Loc = getExprLoc();
2506         return true;
2507       }
2508 
2509     return false;
2510   }
2511 
2512   case ObjCPropertyRefExprClass:
2513     WarnE = this;
2514     Loc = getExprLoc();
2515     R1 = getSourceRange();
2516     return true;
2517 
2518   case PseudoObjectExprClass: {
2519     const PseudoObjectExpr *PO = cast<PseudoObjectExpr>(this);
2520 
2521     // Only complain about things that have the form of a getter.
2522     if (isa<UnaryOperator>(PO->getSyntacticForm()) ||
2523         isa<BinaryOperator>(PO->getSyntacticForm()))
2524       return false;
2525 
2526     WarnE = this;
2527     Loc = getExprLoc();
2528     R1 = getSourceRange();
2529     return true;
2530   }
2531 
2532   case StmtExprClass: {
2533     // Statement exprs don't logically have side effects themselves, but are
2534     // sometimes used in macros in ways that give them a type that is unused.
2535     // For example ({ blah; foo(); }) will end up with a type if foo has a type.
2536     // however, if the result of the stmt expr is dead, we don't want to emit a
2537     // warning.
2538     const CompoundStmt *CS = cast<StmtExpr>(this)->getSubStmt();
2539     if (!CS->body_empty()) {
2540       if (const Expr *E = dyn_cast<Expr>(CS->body_back()))
2541         return E->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx);
2542       if (const LabelStmt *Label = dyn_cast<LabelStmt>(CS->body_back()))
2543         if (const Expr *E = dyn_cast<Expr>(Label->getSubStmt()))
2544           return E->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx);
2545     }
2546 
2547     if (getType()->isVoidType())
2548       return false;
2549     WarnE = this;
2550     Loc = cast<StmtExpr>(this)->getLParenLoc();
2551     R1 = getSourceRange();
2552     return true;
2553   }
2554   case CXXFunctionalCastExprClass:
2555   case CStyleCastExprClass: {
2556     // Ignore an explicit cast to void unless the operand is a non-trivial
2557     // volatile lvalue.
2558     const CastExpr *CE = cast<CastExpr>(this);
2559     if (CE->getCastKind() == CK_ToVoid) {
2560       if (CE->getSubExpr()->isGLValue() &&
2561           CE->getSubExpr()->getType().isVolatileQualified()) {
2562         const DeclRefExpr *DRE =
2563             dyn_cast<DeclRefExpr>(CE->getSubExpr()->IgnoreParens());
2564         if (!(DRE && isa<VarDecl>(DRE->getDecl()) &&
2565               cast<VarDecl>(DRE->getDecl())->hasLocalStorage()) &&
2566             !isa<CallExpr>(CE->getSubExpr()->IgnoreParens())) {
2567           return CE->getSubExpr()->isUnusedResultAWarning(WarnE, Loc,
2568                                                           R1, R2, Ctx);
2569         }
2570       }
2571       return false;
2572     }
2573 
2574     // If this is a cast to a constructor conversion, check the operand.
2575     // Otherwise, the result of the cast is unused.
2576     if (CE->getCastKind() == CK_ConstructorConversion)
2577       return CE->getSubExpr()->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx);
2578 
2579     WarnE = this;
2580     if (const CXXFunctionalCastExpr *CXXCE =
2581             dyn_cast<CXXFunctionalCastExpr>(this)) {
2582       Loc = CXXCE->getBeginLoc();
2583       R1 = CXXCE->getSubExpr()->getSourceRange();
2584     } else {
2585       const CStyleCastExpr *CStyleCE = cast<CStyleCastExpr>(this);
2586       Loc = CStyleCE->getLParenLoc();
2587       R1 = CStyleCE->getSubExpr()->getSourceRange();
2588     }
2589     return true;
2590   }
2591   case ImplicitCastExprClass: {
2592     const CastExpr *ICE = cast<ImplicitCastExpr>(this);
2593 
2594     // lvalue-to-rvalue conversion on a volatile lvalue is a side-effect.
2595     if (ICE->getCastKind() == CK_LValueToRValue &&
2596         ICE->getSubExpr()->getType().isVolatileQualified())
2597       return false;
2598 
2599     return ICE->getSubExpr()->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx);
2600   }
2601   case CXXDefaultArgExprClass:
2602     return (cast<CXXDefaultArgExpr>(this)
2603             ->getExpr()->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx));
2604   case CXXDefaultInitExprClass:
2605     return (cast<CXXDefaultInitExpr>(this)
2606             ->getExpr()->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx));
2607 
2608   case CXXNewExprClass:
2609     // FIXME: In theory, there might be new expressions that don't have side
2610     // effects (e.g. a placement new with an uninitialized POD).
2611   case CXXDeleteExprClass:
2612     return false;
2613   case MaterializeTemporaryExprClass:
2614     return cast<MaterializeTemporaryExpr>(this)
2615         ->getSubExpr()
2616         ->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx);
2617   case CXXBindTemporaryExprClass:
2618     return cast<CXXBindTemporaryExpr>(this)->getSubExpr()
2619                ->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx);
2620   case ExprWithCleanupsClass:
2621     return cast<ExprWithCleanups>(this)->getSubExpr()
2622                ->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx);
2623   }
2624 }
2625 
2626 /// isOBJCGCCandidate - Check if an expression is objc gc'able.
2627 /// returns true, if it is; false otherwise.
2628 bool Expr::isOBJCGCCandidate(ASTContext &Ctx) const {
2629   const Expr *E = IgnoreParens();
2630   switch (E->getStmtClass()) {
2631   default:
2632     return false;
2633   case ObjCIvarRefExprClass:
2634     return true;
2635   case Expr::UnaryOperatorClass:
2636     return cast<UnaryOperator>(E)->getSubExpr()->isOBJCGCCandidate(Ctx);
2637   case ImplicitCastExprClass:
2638     return cast<ImplicitCastExpr>(E)->getSubExpr()->isOBJCGCCandidate(Ctx);
2639   case MaterializeTemporaryExprClass:
2640     return cast<MaterializeTemporaryExpr>(E)->getSubExpr()->isOBJCGCCandidate(
2641         Ctx);
2642   case CStyleCastExprClass:
2643     return cast<CStyleCastExpr>(E)->getSubExpr()->isOBJCGCCandidate(Ctx);
2644   case DeclRefExprClass: {
2645     const Decl *D = cast<DeclRefExpr>(E)->getDecl();
2646 
2647     if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
2648       if (VD->hasGlobalStorage())
2649         return true;
2650       QualType T = VD->getType();
2651       // dereferencing to a  pointer is always a gc'able candidate,
2652       // unless it is __weak.
2653       return T->isPointerType() &&
2654              (Ctx.getObjCGCAttrKind(T) != Qualifiers::Weak);
2655     }
2656     return false;
2657   }
2658   case MemberExprClass: {
2659     const MemberExpr *M = cast<MemberExpr>(E);
2660     return M->getBase()->isOBJCGCCandidate(Ctx);
2661   }
2662   case ArraySubscriptExprClass:
2663     return cast<ArraySubscriptExpr>(E)->getBase()->isOBJCGCCandidate(Ctx);
2664   }
2665 }
2666 
2667 bool Expr::isBoundMemberFunction(ASTContext &Ctx) const {
2668   if (isTypeDependent())
2669     return false;
2670   return ClassifyLValue(Ctx) == Expr::LV_MemberFunction;
2671 }
2672 
2673 QualType Expr::findBoundMemberType(const Expr *expr) {
2674   assert(expr->hasPlaceholderType(BuiltinType::BoundMember));
2675 
2676   // Bound member expressions are always one of these possibilities:
2677   //   x->m      x.m      x->*y      x.*y
2678   // (possibly parenthesized)
2679 
2680   expr = expr->IgnoreParens();
2681   if (const MemberExpr *mem = dyn_cast<MemberExpr>(expr)) {
2682     assert(isa<CXXMethodDecl>(mem->getMemberDecl()));
2683     return mem->getMemberDecl()->getType();
2684   }
2685 
2686   if (const BinaryOperator *op = dyn_cast<BinaryOperator>(expr)) {
2687     QualType type = op->getRHS()->getType()->castAs<MemberPointerType>()
2688                       ->getPointeeType();
2689     assert(type->isFunctionType());
2690     return type;
2691   }
2692 
2693   assert(isa<UnresolvedMemberExpr>(expr) || isa<CXXPseudoDestructorExpr>(expr));
2694   return QualType();
2695 }
2696 
2697 static Expr *IgnoreImpCastsSingleStep(Expr *E) {
2698   if (auto *ICE = dyn_cast<ImplicitCastExpr>(E))
2699     return ICE->getSubExpr();
2700 
2701   if (auto *FE = dyn_cast<FullExpr>(E))
2702     return FE->getSubExpr();
2703 
2704   return E;
2705 }
2706 
2707 static Expr *IgnoreImpCastsExtraSingleStep(Expr *E) {
2708   // FIXME: Skip MaterializeTemporaryExpr and SubstNonTypeTemplateParmExpr in
2709   // addition to what IgnoreImpCasts() skips to account for the current
2710   // behaviour of IgnoreParenImpCasts().
2711   Expr *SubE = IgnoreImpCastsSingleStep(E);
2712   if (SubE != E)
2713     return SubE;
2714 
2715   if (auto *MTE = dyn_cast<MaterializeTemporaryExpr>(E))
2716     return MTE->getSubExpr();
2717 
2718   if (auto *NTTP = dyn_cast<SubstNonTypeTemplateParmExpr>(E))
2719     return NTTP->getReplacement();
2720 
2721   return E;
2722 }
2723 
2724 static Expr *IgnoreCastsSingleStep(Expr *E) {
2725   if (auto *CE = dyn_cast<CastExpr>(E))
2726     return CE->getSubExpr();
2727 
2728   if (auto *FE = dyn_cast<FullExpr>(E))
2729     return FE->getSubExpr();
2730 
2731   if (auto *MTE = dyn_cast<MaterializeTemporaryExpr>(E))
2732     return MTE->getSubExpr();
2733 
2734   if (auto *NTTP = dyn_cast<SubstNonTypeTemplateParmExpr>(E))
2735     return NTTP->getReplacement();
2736 
2737   return E;
2738 }
2739 
2740 static Expr *IgnoreLValueCastsSingleStep(Expr *E) {
2741   // Skip what IgnoreCastsSingleStep skips, except that only
2742   // lvalue-to-rvalue casts are skipped.
2743   if (auto *CE = dyn_cast<CastExpr>(E))
2744     if (CE->getCastKind() != CK_LValueToRValue)
2745       return E;
2746 
2747   return IgnoreCastsSingleStep(E);
2748 }
2749 
2750 static Expr *IgnoreBaseCastsSingleStep(Expr *E) {
2751   if (auto *CE = dyn_cast<CastExpr>(E))
2752     if (CE->getCastKind() == CK_DerivedToBase ||
2753         CE->getCastKind() == CK_UncheckedDerivedToBase ||
2754         CE->getCastKind() == CK_NoOp)
2755       return CE->getSubExpr();
2756 
2757   return E;
2758 }
2759 
2760 static Expr *IgnoreImplicitSingleStep(Expr *E) {
2761   Expr *SubE = IgnoreImpCastsSingleStep(E);
2762   if (SubE != E)
2763     return SubE;
2764 
2765   if (auto *MTE = dyn_cast<MaterializeTemporaryExpr>(E))
2766     return MTE->getSubExpr();
2767 
2768   if (auto *BTE = dyn_cast<CXXBindTemporaryExpr>(E))
2769     return BTE->getSubExpr();
2770 
2771   return E;
2772 }
2773 
2774 static Expr *IgnoreImplicitAsWrittenSingleStep(Expr *E) {
2775   if (auto *ICE = dyn_cast<ImplicitCastExpr>(E))
2776     return ICE->getSubExprAsWritten();
2777 
2778   return IgnoreImplicitSingleStep(E);
2779 }
2780 
2781 static Expr *IgnoreParensOnlySingleStep(Expr *E) {
2782   if (auto *PE = dyn_cast<ParenExpr>(E))
2783     return PE->getSubExpr();
2784   return E;
2785 }
2786 
2787 static Expr *IgnoreParensSingleStep(Expr *E) {
2788   if (auto *PE = dyn_cast<ParenExpr>(E))
2789     return PE->getSubExpr();
2790 
2791   if (auto *UO = dyn_cast<UnaryOperator>(E)) {
2792     if (UO->getOpcode() == UO_Extension)
2793       return UO->getSubExpr();
2794   }
2795 
2796   else if (auto *GSE = dyn_cast<GenericSelectionExpr>(E)) {
2797     if (!GSE->isResultDependent())
2798       return GSE->getResultExpr();
2799   }
2800 
2801   else if (auto *CE = dyn_cast<ChooseExpr>(E)) {
2802     if (!CE->isConditionDependent())
2803       return CE->getChosenSubExpr();
2804   }
2805 
2806   return E;
2807 }
2808 
2809 static Expr *IgnoreNoopCastsSingleStep(const ASTContext &Ctx, Expr *E) {
2810   if (auto *CE = dyn_cast<CastExpr>(E)) {
2811     // We ignore integer <-> casts that are of the same width, ptr<->ptr and
2812     // ptr<->int casts of the same width. We also ignore all identity casts.
2813     Expr *SubExpr = CE->getSubExpr();
2814     bool IsIdentityCast =
2815         Ctx.hasSameUnqualifiedType(E->getType(), SubExpr->getType());
2816     bool IsSameWidthCast =
2817         (E->getType()->isPointerType() || E->getType()->isIntegralType(Ctx)) &&
2818         (SubExpr->getType()->isPointerType() ||
2819          SubExpr->getType()->isIntegralType(Ctx)) &&
2820         (Ctx.getTypeSize(E->getType()) == Ctx.getTypeSize(SubExpr->getType()));
2821 
2822     if (IsIdentityCast || IsSameWidthCast)
2823       return SubExpr;
2824   }
2825 
2826   else if (auto *NTTP = dyn_cast<SubstNonTypeTemplateParmExpr>(E))
2827     return NTTP->getReplacement();
2828 
2829   return E;
2830 }
2831 
2832 static Expr *IgnoreExprNodesImpl(Expr *E) { return E; }
2833 template <typename FnTy, typename... FnTys>
2834 static Expr *IgnoreExprNodesImpl(Expr *E, FnTy &&Fn, FnTys &&... Fns) {
2835   return IgnoreExprNodesImpl(Fn(E), std::forward<FnTys>(Fns)...);
2836 }
2837 
2838 /// Given an expression E and functions Fn_1,...,Fn_n : Expr * -> Expr *,
2839 /// Recursively apply each of the functions to E until reaching a fixed point.
2840 /// Note that a null E is valid; in this case nothing is done.
2841 template <typename... FnTys>
2842 static Expr *IgnoreExprNodes(Expr *E, FnTys &&... Fns) {
2843   Expr *LastE = nullptr;
2844   while (E != LastE) {
2845     LastE = E;
2846     E = IgnoreExprNodesImpl(E, std::forward<FnTys>(Fns)...);
2847   }
2848   return E;
2849 }
2850 
2851 Expr *Expr::IgnoreImpCasts() {
2852   return IgnoreExprNodes(this, IgnoreImpCastsSingleStep);
2853 }
2854 
2855 Expr *Expr::IgnoreCasts() {
2856   return IgnoreExprNodes(this, IgnoreCastsSingleStep);
2857 }
2858 
2859 Expr *Expr::IgnoreImplicit() {
2860   return IgnoreExprNodes(this, IgnoreImplicitSingleStep);
2861 }
2862 
2863 Expr *Expr::IgnoreImplicitAsWritten() {
2864   return IgnoreExprNodes(this, IgnoreImplicitAsWrittenSingleStep);
2865 }
2866 
2867 Expr *Expr::IgnoreParens() {
2868   return IgnoreExprNodes(this, IgnoreParensSingleStep);
2869 }
2870 
2871 Expr *Expr::IgnoreParenImpCasts() {
2872   return IgnoreExprNodes(this, IgnoreParensSingleStep,
2873                          IgnoreImpCastsExtraSingleStep);
2874 }
2875 
2876 Expr *Expr::IgnoreParenCasts() {
2877   return IgnoreExprNodes(this, IgnoreParensSingleStep, IgnoreCastsSingleStep);
2878 }
2879 
2880 Expr *Expr::IgnoreConversionOperator() {
2881   if (auto *MCE = dyn_cast<CXXMemberCallExpr>(this)) {
2882     if (MCE->getMethodDecl() && isa<CXXConversionDecl>(MCE->getMethodDecl()))
2883       return MCE->getImplicitObjectArgument();
2884   }
2885   return this;
2886 }
2887 
2888 Expr *Expr::IgnoreParenLValueCasts() {
2889   return IgnoreExprNodes(this, IgnoreParensSingleStep,
2890                          IgnoreLValueCastsSingleStep);
2891 }
2892 
2893 Expr *Expr::ignoreParenBaseCasts() {
2894   return IgnoreExprNodes(this, IgnoreParensSingleStep,
2895                          IgnoreBaseCastsSingleStep);
2896 }
2897 
2898 Expr *Expr::IgnoreParenNoopCasts(const ASTContext &Ctx) {
2899   return IgnoreExprNodes(this, IgnoreParensSingleStep, [&Ctx](Expr *E) {
2900     return IgnoreNoopCastsSingleStep(Ctx, E);
2901   });
2902 }
2903 
2904 Expr *Expr::IgnoreUnlessSpelledInSource() {
2905   Expr *E = this;
2906 
2907   Expr *LastE = nullptr;
2908   while (E != LastE) {
2909     LastE = E;
2910     E = IgnoreExprNodes(E, IgnoreImplicitSingleStep, IgnoreImpCastsSingleStep,
2911                         IgnoreParensOnlySingleStep);
2912 
2913     auto SR = E->getSourceRange();
2914 
2915     if (auto *C = dyn_cast<CXXConstructExpr>(E)) {
2916       if (C->getNumArgs() == 1) {
2917         Expr *A = C->getArg(0);
2918         if (A->getSourceRange() == SR || !isa<CXXTemporaryObjectExpr>(C))
2919           E = A;
2920       }
2921     }
2922 
2923     if (auto *C = dyn_cast<CXXMemberCallExpr>(E)) {
2924       Expr *ExprNode = C->getImplicitObjectArgument()->IgnoreParenImpCasts();
2925       if (ExprNode->getSourceRange() == SR)
2926         E = ExprNode;
2927     }
2928   }
2929 
2930   return E;
2931 }
2932 
2933 bool Expr::isDefaultArgument() const {
2934   const Expr *E = this;
2935   if (const MaterializeTemporaryExpr *M = dyn_cast<MaterializeTemporaryExpr>(E))
2936     E = M->getSubExpr();
2937 
2938   while (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E))
2939     E = ICE->getSubExprAsWritten();
2940 
2941   return isa<CXXDefaultArgExpr>(E);
2942 }
2943 
2944 /// Skip over any no-op casts and any temporary-binding
2945 /// expressions.
2946 static const Expr *skipTemporaryBindingsNoOpCastsAndParens(const Expr *E) {
2947   if (const MaterializeTemporaryExpr *M = dyn_cast<MaterializeTemporaryExpr>(E))
2948     E = M->getSubExpr();
2949 
2950   while (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) {
2951     if (ICE->getCastKind() == CK_NoOp)
2952       E = ICE->getSubExpr();
2953     else
2954       break;
2955   }
2956 
2957   while (const CXXBindTemporaryExpr *BE = dyn_cast<CXXBindTemporaryExpr>(E))
2958     E = BE->getSubExpr();
2959 
2960   while (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) {
2961     if (ICE->getCastKind() == CK_NoOp)
2962       E = ICE->getSubExpr();
2963     else
2964       break;
2965   }
2966 
2967   return E->IgnoreParens();
2968 }
2969 
2970 /// isTemporaryObject - Determines if this expression produces a
2971 /// temporary of the given class type.
2972 bool Expr::isTemporaryObject(ASTContext &C, const CXXRecordDecl *TempTy) const {
2973   if (!C.hasSameUnqualifiedType(getType(), C.getTypeDeclType(TempTy)))
2974     return false;
2975 
2976   const Expr *E = skipTemporaryBindingsNoOpCastsAndParens(this);
2977 
2978   // Temporaries are by definition pr-values of class type.
2979   if (!E->Classify(C).isPRValue()) {
2980     // In this context, property reference is a message call and is pr-value.
2981     if (!isa<ObjCPropertyRefExpr>(E))
2982       return false;
2983   }
2984 
2985   // Black-list a few cases which yield pr-values of class type that don't
2986   // refer to temporaries of that type:
2987 
2988   // - implicit derived-to-base conversions
2989   if (isa<ImplicitCastExpr>(E)) {
2990     switch (cast<ImplicitCastExpr>(E)->getCastKind()) {
2991     case CK_DerivedToBase:
2992     case CK_UncheckedDerivedToBase:
2993       return false;
2994     default:
2995       break;
2996     }
2997   }
2998 
2999   // - member expressions (all)
3000   if (isa<MemberExpr>(E))
3001     return false;
3002 
3003   if (const BinaryOperator *BO = dyn_cast<BinaryOperator>(E))
3004     if (BO->isPtrMemOp())
3005       return false;
3006 
3007   // - opaque values (all)
3008   if (isa<OpaqueValueExpr>(E))
3009     return false;
3010 
3011   return true;
3012 }
3013 
3014 bool Expr::isImplicitCXXThis() const {
3015   const Expr *E = this;
3016 
3017   // Strip away parentheses and casts we don't care about.
3018   while (true) {
3019     if (const ParenExpr *Paren = dyn_cast<ParenExpr>(E)) {
3020       E = Paren->getSubExpr();
3021       continue;
3022     }
3023 
3024     if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) {
3025       if (ICE->getCastKind() == CK_NoOp ||
3026           ICE->getCastKind() == CK_LValueToRValue ||
3027           ICE->getCastKind() == CK_DerivedToBase ||
3028           ICE->getCastKind() == CK_UncheckedDerivedToBase) {
3029         E = ICE->getSubExpr();
3030         continue;
3031       }
3032     }
3033 
3034     if (const UnaryOperator* UnOp = dyn_cast<UnaryOperator>(E)) {
3035       if (UnOp->getOpcode() == UO_Extension) {
3036         E = UnOp->getSubExpr();
3037         continue;
3038       }
3039     }
3040 
3041     if (const MaterializeTemporaryExpr *M
3042                                       = dyn_cast<MaterializeTemporaryExpr>(E)) {
3043       E = M->getSubExpr();
3044       continue;
3045     }
3046 
3047     break;
3048   }
3049 
3050   if (const CXXThisExpr *This = dyn_cast<CXXThisExpr>(E))
3051     return This->isImplicit();
3052 
3053   return false;
3054 }
3055 
3056 /// hasAnyTypeDependentArguments - Determines if any of the expressions
3057 /// in Exprs is type-dependent.
3058 bool Expr::hasAnyTypeDependentArguments(ArrayRef<Expr *> Exprs) {
3059   for (unsigned I = 0; I < Exprs.size(); ++I)
3060     if (Exprs[I]->isTypeDependent())
3061       return true;
3062 
3063   return false;
3064 }
3065 
3066 bool Expr::isConstantInitializer(ASTContext &Ctx, bool IsForRef,
3067                                  const Expr **Culprit) const {
3068   assert(!isValueDependent() &&
3069          "Expression evaluator can't be called on a dependent expression.");
3070 
3071   // This function is attempting whether an expression is an initializer
3072   // which can be evaluated at compile-time. It very closely parallels
3073   // ConstExprEmitter in CGExprConstant.cpp; if they don't match, it
3074   // will lead to unexpected results.  Like ConstExprEmitter, it falls back
3075   // to isEvaluatable most of the time.
3076   //
3077   // If we ever capture reference-binding directly in the AST, we can
3078   // kill the second parameter.
3079 
3080   if (IsForRef) {
3081     EvalResult Result;
3082     if (EvaluateAsLValue(Result, Ctx) && !Result.HasSideEffects)
3083       return true;
3084     if (Culprit)
3085       *Culprit = this;
3086     return false;
3087   }
3088 
3089   switch (getStmtClass()) {
3090   default: break;
3091   case Stmt::ExprWithCleanupsClass:
3092     return cast<ExprWithCleanups>(this)->getSubExpr()->isConstantInitializer(
3093         Ctx, IsForRef, Culprit);
3094   case StringLiteralClass:
3095   case ObjCEncodeExprClass:
3096     return true;
3097   case CXXTemporaryObjectExprClass:
3098   case CXXConstructExprClass: {
3099     const CXXConstructExpr *CE = cast<CXXConstructExpr>(this);
3100 
3101     if (CE->getConstructor()->isTrivial() &&
3102         CE->getConstructor()->getParent()->hasTrivialDestructor()) {
3103       // Trivial default constructor
3104       if (!CE->getNumArgs()) return true;
3105 
3106       // Trivial copy constructor
3107       assert(CE->getNumArgs() == 1 && "trivial ctor with > 1 argument");
3108       return CE->getArg(0)->isConstantInitializer(Ctx, false, Culprit);
3109     }
3110 
3111     break;
3112   }
3113   case ConstantExprClass: {
3114     // FIXME: We should be able to return "true" here, but it can lead to extra
3115     // error messages. E.g. in Sema/array-init.c.
3116     const Expr *Exp = cast<ConstantExpr>(this)->getSubExpr();
3117     return Exp->isConstantInitializer(Ctx, false, Culprit);
3118   }
3119   case CompoundLiteralExprClass: {
3120     // This handles gcc's extension that allows global initializers like
3121     // "struct x {int x;} x = (struct x) {};".
3122     // FIXME: This accepts other cases it shouldn't!
3123     const Expr *Exp = cast<CompoundLiteralExpr>(this)->getInitializer();
3124     return Exp->isConstantInitializer(Ctx, false, Culprit);
3125   }
3126   case DesignatedInitUpdateExprClass: {
3127     const DesignatedInitUpdateExpr *DIUE = cast<DesignatedInitUpdateExpr>(this);
3128     return DIUE->getBase()->isConstantInitializer(Ctx, false, Culprit) &&
3129            DIUE->getUpdater()->isConstantInitializer(Ctx, false, Culprit);
3130   }
3131   case InitListExprClass: {
3132     const InitListExpr *ILE = cast<InitListExpr>(this);
3133     assert(ILE->isSemanticForm() && "InitListExpr must be in semantic form");
3134     if (ILE->getType()->isArrayType()) {
3135       unsigned numInits = ILE->getNumInits();
3136       for (unsigned i = 0; i < numInits; i++) {
3137         if (!ILE->getInit(i)->isConstantInitializer(Ctx, false, Culprit))
3138           return false;
3139       }
3140       return true;
3141     }
3142 
3143     if (ILE->getType()->isRecordType()) {
3144       unsigned ElementNo = 0;
3145       RecordDecl *RD = ILE->getType()->castAs<RecordType>()->getDecl();
3146       for (const auto *Field : RD->fields()) {
3147         // If this is a union, skip all the fields that aren't being initialized.
3148         if (RD->isUnion() && ILE->getInitializedFieldInUnion() != Field)
3149           continue;
3150 
3151         // Don't emit anonymous bitfields, they just affect layout.
3152         if (Field->isUnnamedBitfield())
3153           continue;
3154 
3155         if (ElementNo < ILE->getNumInits()) {
3156           const Expr *Elt = ILE->getInit(ElementNo++);
3157           if (Field->isBitField()) {
3158             // Bitfields have to evaluate to an integer.
3159             EvalResult Result;
3160             if (!Elt->EvaluateAsInt(Result, Ctx)) {
3161               if (Culprit)
3162                 *Culprit = Elt;
3163               return false;
3164             }
3165           } else {
3166             bool RefType = Field->getType()->isReferenceType();
3167             if (!Elt->isConstantInitializer(Ctx, RefType, Culprit))
3168               return false;
3169           }
3170         }
3171       }
3172       return true;
3173     }
3174 
3175     break;
3176   }
3177   case ImplicitValueInitExprClass:
3178   case NoInitExprClass:
3179     return true;
3180   case ParenExprClass:
3181     return cast<ParenExpr>(this)->getSubExpr()
3182       ->isConstantInitializer(Ctx, IsForRef, Culprit);
3183   case GenericSelectionExprClass:
3184     return cast<GenericSelectionExpr>(this)->getResultExpr()
3185       ->isConstantInitializer(Ctx, IsForRef, Culprit);
3186   case ChooseExprClass:
3187     if (cast<ChooseExpr>(this)->isConditionDependent()) {
3188       if (Culprit)
3189         *Culprit = this;
3190       return false;
3191     }
3192     return cast<ChooseExpr>(this)->getChosenSubExpr()
3193       ->isConstantInitializer(Ctx, IsForRef, Culprit);
3194   case UnaryOperatorClass: {
3195     const UnaryOperator* Exp = cast<UnaryOperator>(this);
3196     if (Exp->getOpcode() == UO_Extension)
3197       return Exp->getSubExpr()->isConstantInitializer(Ctx, false, Culprit);
3198     break;
3199   }
3200   case CXXFunctionalCastExprClass:
3201   case CXXStaticCastExprClass:
3202   case ImplicitCastExprClass:
3203   case CStyleCastExprClass:
3204   case ObjCBridgedCastExprClass:
3205   case CXXDynamicCastExprClass:
3206   case CXXReinterpretCastExprClass:
3207   case CXXConstCastExprClass: {
3208     const CastExpr *CE = cast<CastExpr>(this);
3209 
3210     // Handle misc casts we want to ignore.
3211     if (CE->getCastKind() == CK_NoOp ||
3212         CE->getCastKind() == CK_LValueToRValue ||
3213         CE->getCastKind() == CK_ToUnion ||
3214         CE->getCastKind() == CK_ConstructorConversion ||
3215         CE->getCastKind() == CK_NonAtomicToAtomic ||
3216         CE->getCastKind() == CK_AtomicToNonAtomic ||
3217         CE->getCastKind() == CK_IntToOCLSampler)
3218       return CE->getSubExpr()->isConstantInitializer(Ctx, false, Culprit);
3219 
3220     break;
3221   }
3222   case MaterializeTemporaryExprClass:
3223     return cast<MaterializeTemporaryExpr>(this)
3224         ->getSubExpr()
3225         ->isConstantInitializer(Ctx, false, Culprit);
3226 
3227   case SubstNonTypeTemplateParmExprClass:
3228     return cast<SubstNonTypeTemplateParmExpr>(this)->getReplacement()
3229       ->isConstantInitializer(Ctx, false, Culprit);
3230   case CXXDefaultArgExprClass:
3231     return cast<CXXDefaultArgExpr>(this)->getExpr()
3232       ->isConstantInitializer(Ctx, false, Culprit);
3233   case CXXDefaultInitExprClass:
3234     return cast<CXXDefaultInitExpr>(this)->getExpr()
3235       ->isConstantInitializer(Ctx, false, Culprit);
3236   }
3237   // Allow certain forms of UB in constant initializers: signed integer
3238   // overflow and floating-point division by zero. We'll give a warning on
3239   // these, but they're common enough that we have to accept them.
3240   if (isEvaluatable(Ctx, SE_AllowUndefinedBehavior))
3241     return true;
3242   if (Culprit)
3243     *Culprit = this;
3244   return false;
3245 }
3246 
3247 bool CallExpr::isBuiltinAssumeFalse(const ASTContext &Ctx) const {
3248   const FunctionDecl* FD = getDirectCallee();
3249   if (!FD || (FD->getBuiltinID() != Builtin::BI__assume &&
3250               FD->getBuiltinID() != Builtin::BI__builtin_assume))
3251     return false;
3252 
3253   const Expr* Arg = getArg(0);
3254   bool ArgVal;
3255   return !Arg->isValueDependent() &&
3256          Arg->EvaluateAsBooleanCondition(ArgVal, Ctx) && !ArgVal;
3257 }
3258 
3259 namespace {
3260   /// Look for any side effects within a Stmt.
3261   class SideEffectFinder : public ConstEvaluatedExprVisitor<SideEffectFinder> {
3262     typedef ConstEvaluatedExprVisitor<SideEffectFinder> Inherited;
3263     const bool IncludePossibleEffects;
3264     bool HasSideEffects;
3265 
3266   public:
3267     explicit SideEffectFinder(const ASTContext &Context, bool IncludePossible)
3268       : Inherited(Context),
3269         IncludePossibleEffects(IncludePossible), HasSideEffects(false) { }
3270 
3271     bool hasSideEffects() const { return HasSideEffects; }
3272 
3273     void VisitExpr(const Expr *E) {
3274       if (!HasSideEffects &&
3275           E->HasSideEffects(Context, IncludePossibleEffects))
3276         HasSideEffects = true;
3277     }
3278   };
3279 }
3280 
3281 bool Expr::HasSideEffects(const ASTContext &Ctx,
3282                           bool IncludePossibleEffects) const {
3283   // In circumstances where we care about definite side effects instead of
3284   // potential side effects, we want to ignore expressions that are part of a
3285   // macro expansion as a potential side effect.
3286   if (!IncludePossibleEffects && getExprLoc().isMacroID())
3287     return false;
3288 
3289   if (isInstantiationDependent())
3290     return IncludePossibleEffects;
3291 
3292   switch (getStmtClass()) {
3293   case NoStmtClass:
3294   #define ABSTRACT_STMT(Type)
3295   #define STMT(Type, Base) case Type##Class:
3296   #define EXPR(Type, Base)
3297   #include "clang/AST/StmtNodes.inc"
3298     llvm_unreachable("unexpected Expr kind");
3299 
3300   case DependentScopeDeclRefExprClass:
3301   case CXXUnresolvedConstructExprClass:
3302   case CXXDependentScopeMemberExprClass:
3303   case UnresolvedLookupExprClass:
3304   case UnresolvedMemberExprClass:
3305   case PackExpansionExprClass:
3306   case SubstNonTypeTemplateParmPackExprClass:
3307   case FunctionParmPackExprClass:
3308   case TypoExprClass:
3309   case RecoveryExprClass:
3310   case CXXFoldExprClass:
3311     llvm_unreachable("shouldn't see dependent / unresolved nodes here");
3312 
3313   case DeclRefExprClass:
3314   case ObjCIvarRefExprClass:
3315   case PredefinedExprClass:
3316   case IntegerLiteralClass:
3317   case FixedPointLiteralClass:
3318   case FloatingLiteralClass:
3319   case ImaginaryLiteralClass:
3320   case StringLiteralClass:
3321   case CharacterLiteralClass:
3322   case OffsetOfExprClass:
3323   case ImplicitValueInitExprClass:
3324   case UnaryExprOrTypeTraitExprClass:
3325   case AddrLabelExprClass:
3326   case GNUNullExprClass:
3327   case ArrayInitIndexExprClass:
3328   case NoInitExprClass:
3329   case CXXBoolLiteralExprClass:
3330   case CXXNullPtrLiteralExprClass:
3331   case CXXThisExprClass:
3332   case CXXScalarValueInitExprClass:
3333   case TypeTraitExprClass:
3334   case ArrayTypeTraitExprClass:
3335   case ExpressionTraitExprClass:
3336   case CXXNoexceptExprClass:
3337   case SizeOfPackExprClass:
3338   case ObjCStringLiteralClass:
3339   case ObjCEncodeExprClass:
3340   case ObjCBoolLiteralExprClass:
3341   case ObjCAvailabilityCheckExprClass:
3342   case CXXUuidofExprClass:
3343   case OpaqueValueExprClass:
3344   case SourceLocExprClass:
3345   case ConceptSpecializationExprClass:
3346   case RequiresExprClass:
3347     // These never have a side-effect.
3348     return false;
3349 
3350   case ConstantExprClass:
3351     // FIXME: Move this into the "return false;" block above.
3352     return cast<ConstantExpr>(this)->getSubExpr()->HasSideEffects(
3353         Ctx, IncludePossibleEffects);
3354 
3355   case CallExprClass:
3356   case CXXOperatorCallExprClass:
3357   case CXXMemberCallExprClass:
3358   case CUDAKernelCallExprClass:
3359   case UserDefinedLiteralClass: {
3360     // We don't know a call definitely has side effects, except for calls
3361     // to pure/const functions that definitely don't.
3362     // If the call itself is considered side-effect free, check the operands.
3363     const Decl *FD = cast<CallExpr>(this)->getCalleeDecl();
3364     bool IsPure = FD && (FD->hasAttr<ConstAttr>() || FD->hasAttr<PureAttr>());
3365     if (IsPure || !IncludePossibleEffects)
3366       break;
3367     return true;
3368   }
3369 
3370   case BlockExprClass:
3371   case CXXBindTemporaryExprClass:
3372     if (!IncludePossibleEffects)
3373       break;
3374     return true;
3375 
3376   case MSPropertyRefExprClass:
3377   case MSPropertySubscriptExprClass:
3378   case CompoundAssignOperatorClass:
3379   case VAArgExprClass:
3380   case AtomicExprClass:
3381   case CXXThrowExprClass:
3382   case CXXNewExprClass:
3383   case CXXDeleteExprClass:
3384   case CoawaitExprClass:
3385   case DependentCoawaitExprClass:
3386   case CoyieldExprClass:
3387     // These always have a side-effect.
3388     return true;
3389 
3390   case StmtExprClass: {
3391     // StmtExprs have a side-effect if any substatement does.
3392     SideEffectFinder Finder(Ctx, IncludePossibleEffects);
3393     Finder.Visit(cast<StmtExpr>(this)->getSubStmt());
3394     return Finder.hasSideEffects();
3395   }
3396 
3397   case ExprWithCleanupsClass:
3398     if (IncludePossibleEffects)
3399       if (cast<ExprWithCleanups>(this)->cleanupsHaveSideEffects())
3400         return true;
3401     break;
3402 
3403   case ParenExprClass:
3404   case ArraySubscriptExprClass:
3405   case OMPArraySectionExprClass:
3406   case OMPArrayShapingExprClass:
3407   case OMPIteratorExprClass:
3408   case MemberExprClass:
3409   case ConditionalOperatorClass:
3410   case BinaryConditionalOperatorClass:
3411   case CompoundLiteralExprClass:
3412   case ExtVectorElementExprClass:
3413   case DesignatedInitExprClass:
3414   case DesignatedInitUpdateExprClass:
3415   case ArrayInitLoopExprClass:
3416   case ParenListExprClass:
3417   case CXXPseudoDestructorExprClass:
3418   case CXXRewrittenBinaryOperatorClass:
3419   case CXXStdInitializerListExprClass:
3420   case SubstNonTypeTemplateParmExprClass:
3421   case MaterializeTemporaryExprClass:
3422   case ShuffleVectorExprClass:
3423   case ConvertVectorExprClass:
3424   case AsTypeExprClass:
3425     // These have a side-effect if any subexpression does.
3426     break;
3427 
3428   case UnaryOperatorClass:
3429     if (cast<UnaryOperator>(this)->isIncrementDecrementOp())
3430       return true;
3431     break;
3432 
3433   case BinaryOperatorClass:
3434     if (cast<BinaryOperator>(this)->isAssignmentOp())
3435       return true;
3436     break;
3437 
3438   case InitListExprClass:
3439     // FIXME: The children for an InitListExpr doesn't include the array filler.
3440     if (const Expr *E = cast<InitListExpr>(this)->getArrayFiller())
3441       if (E->HasSideEffects(Ctx, IncludePossibleEffects))
3442         return true;
3443     break;
3444 
3445   case GenericSelectionExprClass:
3446     return cast<GenericSelectionExpr>(this)->getResultExpr()->
3447         HasSideEffects(Ctx, IncludePossibleEffects);
3448 
3449   case ChooseExprClass:
3450     return cast<ChooseExpr>(this)->getChosenSubExpr()->HasSideEffects(
3451         Ctx, IncludePossibleEffects);
3452 
3453   case CXXDefaultArgExprClass:
3454     return cast<CXXDefaultArgExpr>(this)->getExpr()->HasSideEffects(
3455         Ctx, IncludePossibleEffects);
3456 
3457   case CXXDefaultInitExprClass: {
3458     const FieldDecl *FD = cast<CXXDefaultInitExpr>(this)->getField();
3459     if (const Expr *E = FD->getInClassInitializer())
3460       return E->HasSideEffects(Ctx, IncludePossibleEffects);
3461     // If we've not yet parsed the initializer, assume it has side-effects.
3462     return true;
3463   }
3464 
3465   case CXXDynamicCastExprClass: {
3466     // A dynamic_cast expression has side-effects if it can throw.
3467     const CXXDynamicCastExpr *DCE = cast<CXXDynamicCastExpr>(this);
3468     if (DCE->getTypeAsWritten()->isReferenceType() &&
3469         DCE->getCastKind() == CK_Dynamic)
3470       return true;
3471     }
3472     LLVM_FALLTHROUGH;
3473   case ImplicitCastExprClass:
3474   case CStyleCastExprClass:
3475   case CXXStaticCastExprClass:
3476   case CXXReinterpretCastExprClass:
3477   case CXXConstCastExprClass:
3478   case CXXFunctionalCastExprClass:
3479   case BuiltinBitCastExprClass: {
3480     // While volatile reads are side-effecting in both C and C++, we treat them
3481     // as having possible (not definite) side-effects. This allows idiomatic
3482     // code to behave without warning, such as sizeof(*v) for a volatile-
3483     // qualified pointer.
3484     if (!IncludePossibleEffects)
3485       break;
3486 
3487     const CastExpr *CE = cast<CastExpr>(this);
3488     if (CE->getCastKind() == CK_LValueToRValue &&
3489         CE->getSubExpr()->getType().isVolatileQualified())
3490       return true;
3491     break;
3492   }
3493 
3494   case CXXTypeidExprClass:
3495     // typeid might throw if its subexpression is potentially-evaluated, so has
3496     // side-effects in that case whether or not its subexpression does.
3497     return cast<CXXTypeidExpr>(this)->isPotentiallyEvaluated();
3498 
3499   case CXXConstructExprClass:
3500   case CXXTemporaryObjectExprClass: {
3501     const CXXConstructExpr *CE = cast<CXXConstructExpr>(this);
3502     if (!CE->getConstructor()->isTrivial() && IncludePossibleEffects)
3503       return true;
3504     // A trivial constructor does not add any side-effects of its own. Just look
3505     // at its arguments.
3506     break;
3507   }
3508 
3509   case CXXInheritedCtorInitExprClass: {
3510     const auto *ICIE = cast<CXXInheritedCtorInitExpr>(this);
3511     if (!ICIE->getConstructor()->isTrivial() && IncludePossibleEffects)
3512       return true;
3513     break;
3514   }
3515 
3516   case LambdaExprClass: {
3517     const LambdaExpr *LE = cast<LambdaExpr>(this);
3518     for (Expr *E : LE->capture_inits())
3519       if (E->HasSideEffects(Ctx, IncludePossibleEffects))
3520         return true;
3521     return false;
3522   }
3523 
3524   case PseudoObjectExprClass: {
3525     // Only look for side-effects in the semantic form, and look past
3526     // OpaqueValueExpr bindings in that form.
3527     const PseudoObjectExpr *PO = cast<PseudoObjectExpr>(this);
3528     for (PseudoObjectExpr::const_semantics_iterator I = PO->semantics_begin(),
3529                                                     E = PO->semantics_end();
3530          I != E; ++I) {
3531       const Expr *Subexpr = *I;
3532       if (const OpaqueValueExpr *OVE = dyn_cast<OpaqueValueExpr>(Subexpr))
3533         Subexpr = OVE->getSourceExpr();
3534       if (Subexpr->HasSideEffects(Ctx, IncludePossibleEffects))
3535         return true;
3536     }
3537     return false;
3538   }
3539 
3540   case ObjCBoxedExprClass:
3541   case ObjCArrayLiteralClass:
3542   case ObjCDictionaryLiteralClass:
3543   case ObjCSelectorExprClass:
3544   case ObjCProtocolExprClass:
3545   case ObjCIsaExprClass:
3546   case ObjCIndirectCopyRestoreExprClass:
3547   case ObjCSubscriptRefExprClass:
3548   case ObjCBridgedCastExprClass:
3549   case ObjCMessageExprClass:
3550   case ObjCPropertyRefExprClass:
3551   // FIXME: Classify these cases better.
3552     if (IncludePossibleEffects)
3553       return true;
3554     break;
3555   }
3556 
3557   // Recurse to children.
3558   for (const Stmt *SubStmt : children())
3559     if (SubStmt &&
3560         cast<Expr>(SubStmt)->HasSideEffects(Ctx, IncludePossibleEffects))
3561       return true;
3562 
3563   return false;
3564 }
3565 
3566 namespace {
3567   /// Look for a call to a non-trivial function within an expression.
3568   class NonTrivialCallFinder : public ConstEvaluatedExprVisitor<NonTrivialCallFinder>
3569   {
3570     typedef ConstEvaluatedExprVisitor<NonTrivialCallFinder> Inherited;
3571 
3572     bool NonTrivial;
3573 
3574   public:
3575     explicit NonTrivialCallFinder(const ASTContext &Context)
3576       : Inherited(Context), NonTrivial(false) { }
3577 
3578     bool hasNonTrivialCall() const { return NonTrivial; }
3579 
3580     void VisitCallExpr(const CallExpr *E) {
3581       if (const CXXMethodDecl *Method
3582           = dyn_cast_or_null<const CXXMethodDecl>(E->getCalleeDecl())) {
3583         if (Method->isTrivial()) {
3584           // Recurse to children of the call.
3585           Inherited::VisitStmt(E);
3586           return;
3587         }
3588       }
3589 
3590       NonTrivial = true;
3591     }
3592 
3593     void VisitCXXConstructExpr(const CXXConstructExpr *E) {
3594       if (E->getConstructor()->isTrivial()) {
3595         // Recurse to children of the call.
3596         Inherited::VisitStmt(E);
3597         return;
3598       }
3599 
3600       NonTrivial = true;
3601     }
3602 
3603     void VisitCXXBindTemporaryExpr(const CXXBindTemporaryExpr *E) {
3604       if (E->getTemporary()->getDestructor()->isTrivial()) {
3605         Inherited::VisitStmt(E);
3606         return;
3607       }
3608 
3609       NonTrivial = true;
3610     }
3611   };
3612 }
3613 
3614 bool Expr::hasNonTrivialCall(const ASTContext &Ctx) const {
3615   NonTrivialCallFinder Finder(Ctx);
3616   Finder.Visit(this);
3617   return Finder.hasNonTrivialCall();
3618 }
3619 
3620 /// isNullPointerConstant - C99 6.3.2.3p3 - Return whether this is a null
3621 /// pointer constant or not, as well as the specific kind of constant detected.
3622 /// Null pointer constants can be integer constant expressions with the
3623 /// value zero, casts of zero to void*, nullptr (C++0X), or __null
3624 /// (a GNU extension).
3625 Expr::NullPointerConstantKind
3626 Expr::isNullPointerConstant(ASTContext &Ctx,
3627                             NullPointerConstantValueDependence NPC) const {
3628   if (isValueDependent() &&
3629       (!Ctx.getLangOpts().CPlusPlus11 || Ctx.getLangOpts().MSVCCompat)) {
3630     switch (NPC) {
3631     case NPC_NeverValueDependent:
3632       llvm_unreachable("Unexpected value dependent expression!");
3633     case NPC_ValueDependentIsNull:
3634       if (isTypeDependent() || getType()->isIntegralType(Ctx))
3635         return NPCK_ZeroExpression;
3636       else
3637         return NPCK_NotNull;
3638 
3639     case NPC_ValueDependentIsNotNull:
3640       return NPCK_NotNull;
3641     }
3642   }
3643 
3644   // Strip off a cast to void*, if it exists. Except in C++.
3645   if (const ExplicitCastExpr *CE = dyn_cast<ExplicitCastExpr>(this)) {
3646     if (!Ctx.getLangOpts().CPlusPlus) {
3647       // Check that it is a cast to void*.
3648       if (const PointerType *PT = CE->getType()->getAs<PointerType>()) {
3649         QualType Pointee = PT->getPointeeType();
3650         Qualifiers Qs = Pointee.getQualifiers();
3651         // Only (void*)0 or equivalent are treated as nullptr. If pointee type
3652         // has non-default address space it is not treated as nullptr.
3653         // (__generic void*)0 in OpenCL 2.0 should not be treated as nullptr
3654         // since it cannot be assigned to a pointer to constant address space.
3655         if ((Ctx.getLangOpts().OpenCLVersion >= 200 &&
3656              Pointee.getAddressSpace() == LangAS::opencl_generic) ||
3657             (Ctx.getLangOpts().OpenCL &&
3658              Ctx.getLangOpts().OpenCLVersion < 200 &&
3659              Pointee.getAddressSpace() == LangAS::opencl_private))
3660           Qs.removeAddressSpace();
3661 
3662         if (Pointee->isVoidType() && Qs.empty() && // to void*
3663             CE->getSubExpr()->getType()->isIntegerType()) // from int
3664           return CE->getSubExpr()->isNullPointerConstant(Ctx, NPC);
3665       }
3666     }
3667   } else if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(this)) {
3668     // Ignore the ImplicitCastExpr type entirely.
3669     return ICE->getSubExpr()->isNullPointerConstant(Ctx, NPC);
3670   } else if (const ParenExpr *PE = dyn_cast<ParenExpr>(this)) {
3671     // Accept ((void*)0) as a null pointer constant, as many other
3672     // implementations do.
3673     return PE->getSubExpr()->isNullPointerConstant(Ctx, NPC);
3674   } else if (const GenericSelectionExpr *GE =
3675                dyn_cast<GenericSelectionExpr>(this)) {
3676     if (GE->isResultDependent())
3677       return NPCK_NotNull;
3678     return GE->getResultExpr()->isNullPointerConstant(Ctx, NPC);
3679   } else if (const ChooseExpr *CE = dyn_cast<ChooseExpr>(this)) {
3680     if (CE->isConditionDependent())
3681       return NPCK_NotNull;
3682     return CE->getChosenSubExpr()->isNullPointerConstant(Ctx, NPC);
3683   } else if (const CXXDefaultArgExpr *DefaultArg
3684                = dyn_cast<CXXDefaultArgExpr>(this)) {
3685     // See through default argument expressions.
3686     return DefaultArg->getExpr()->isNullPointerConstant(Ctx, NPC);
3687   } else if (const CXXDefaultInitExpr *DefaultInit
3688                = dyn_cast<CXXDefaultInitExpr>(this)) {
3689     // See through default initializer expressions.
3690     return DefaultInit->getExpr()->isNullPointerConstant(Ctx, NPC);
3691   } else if (isa<GNUNullExpr>(this)) {
3692     // The GNU __null extension is always a null pointer constant.
3693     return NPCK_GNUNull;
3694   } else if (const MaterializeTemporaryExpr *M
3695                                    = dyn_cast<MaterializeTemporaryExpr>(this)) {
3696     return M->getSubExpr()->isNullPointerConstant(Ctx, NPC);
3697   } else if (const OpaqueValueExpr *OVE = dyn_cast<OpaqueValueExpr>(this)) {
3698     if (const Expr *Source = OVE->getSourceExpr())
3699       return Source->isNullPointerConstant(Ctx, NPC);
3700   }
3701 
3702   // C++11 nullptr_t is always a null pointer constant.
3703   if (getType()->isNullPtrType())
3704     return NPCK_CXX11_nullptr;
3705 
3706   if (const RecordType *UT = getType()->getAsUnionType())
3707     if (!Ctx.getLangOpts().CPlusPlus11 &&
3708         UT && UT->getDecl()->hasAttr<TransparentUnionAttr>())
3709       if (const CompoundLiteralExpr *CLE = dyn_cast<CompoundLiteralExpr>(this)){
3710         const Expr *InitExpr = CLE->getInitializer();
3711         if (const InitListExpr *ILE = dyn_cast<InitListExpr>(InitExpr))
3712           return ILE->getInit(0)->isNullPointerConstant(Ctx, NPC);
3713       }
3714   // This expression must be an integer type.
3715   if (!getType()->isIntegerType() ||
3716       (Ctx.getLangOpts().CPlusPlus && getType()->isEnumeralType()))
3717     return NPCK_NotNull;
3718 
3719   if (Ctx.getLangOpts().CPlusPlus11) {
3720     // C++11 [conv.ptr]p1: A null pointer constant is an integer literal with
3721     // value zero or a prvalue of type std::nullptr_t.
3722     // Microsoft mode permits C++98 rules reflecting MSVC behavior.
3723     const IntegerLiteral *Lit = dyn_cast<IntegerLiteral>(this);
3724     if (Lit && !Lit->getValue())
3725       return NPCK_ZeroLiteral;
3726     else if (!Ctx.getLangOpts().MSVCCompat || !isCXX98IntegralConstantExpr(Ctx))
3727       return NPCK_NotNull;
3728   } else {
3729     // If we have an integer constant expression, we need to *evaluate* it and
3730     // test for the value 0.
3731     if (!isIntegerConstantExpr(Ctx))
3732       return NPCK_NotNull;
3733   }
3734 
3735   if (EvaluateKnownConstInt(Ctx) != 0)
3736     return NPCK_NotNull;
3737 
3738   if (isa<IntegerLiteral>(this))
3739     return NPCK_ZeroLiteral;
3740   return NPCK_ZeroExpression;
3741 }
3742 
3743 /// If this expression is an l-value for an Objective C
3744 /// property, find the underlying property reference expression.
3745 const ObjCPropertyRefExpr *Expr::getObjCProperty() const {
3746   const Expr *E = this;
3747   while (true) {
3748     assert((E->getValueKind() == VK_LValue &&
3749             E->getObjectKind() == OK_ObjCProperty) &&
3750            "expression is not a property reference");
3751     E = E->IgnoreParenCasts();
3752     if (const BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) {
3753       if (BO->getOpcode() == BO_Comma) {
3754         E = BO->getRHS();
3755         continue;
3756       }
3757     }
3758 
3759     break;
3760   }
3761 
3762   return cast<ObjCPropertyRefExpr>(E);
3763 }
3764 
3765 bool Expr::isObjCSelfExpr() const {
3766   const Expr *E = IgnoreParenImpCasts();
3767 
3768   const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E);
3769   if (!DRE)
3770     return false;
3771 
3772   const ImplicitParamDecl *Param = dyn_cast<ImplicitParamDecl>(DRE->getDecl());
3773   if (!Param)
3774     return false;
3775 
3776   const ObjCMethodDecl *M = dyn_cast<ObjCMethodDecl>(Param->getDeclContext());
3777   if (!M)
3778     return false;
3779 
3780   return M->getSelfDecl() == Param;
3781 }
3782 
3783 FieldDecl *Expr::getSourceBitField() {
3784   Expr *E = this->IgnoreParens();
3785 
3786   while (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) {
3787     if (ICE->getCastKind() == CK_LValueToRValue ||
3788         (ICE->getValueKind() != VK_RValue && ICE->getCastKind() == CK_NoOp))
3789       E = ICE->getSubExpr()->IgnoreParens();
3790     else
3791       break;
3792   }
3793 
3794   if (MemberExpr *MemRef = dyn_cast<MemberExpr>(E))
3795     if (FieldDecl *Field = dyn_cast<FieldDecl>(MemRef->getMemberDecl()))
3796       if (Field->isBitField())
3797         return Field;
3798 
3799   if (ObjCIvarRefExpr *IvarRef = dyn_cast<ObjCIvarRefExpr>(E)) {
3800     FieldDecl *Ivar = IvarRef->getDecl();
3801     if (Ivar->isBitField())
3802       return Ivar;
3803   }
3804 
3805   if (DeclRefExpr *DeclRef = dyn_cast<DeclRefExpr>(E)) {
3806     if (FieldDecl *Field = dyn_cast<FieldDecl>(DeclRef->getDecl()))
3807       if (Field->isBitField())
3808         return Field;
3809 
3810     if (BindingDecl *BD = dyn_cast<BindingDecl>(DeclRef->getDecl()))
3811       if (Expr *E = BD->getBinding())
3812         return E->getSourceBitField();
3813   }
3814 
3815   if (BinaryOperator *BinOp = dyn_cast<BinaryOperator>(E)) {
3816     if (BinOp->isAssignmentOp() && BinOp->getLHS())
3817       return BinOp->getLHS()->getSourceBitField();
3818 
3819     if (BinOp->getOpcode() == BO_Comma && BinOp->getRHS())
3820       return BinOp->getRHS()->getSourceBitField();
3821   }
3822 
3823   if (UnaryOperator *UnOp = dyn_cast<UnaryOperator>(E))
3824     if (UnOp->isPrefix() && UnOp->isIncrementDecrementOp())
3825       return UnOp->getSubExpr()->getSourceBitField();
3826 
3827   return nullptr;
3828 }
3829 
3830 bool Expr::refersToVectorElement() const {
3831   // FIXME: Why do we not just look at the ObjectKind here?
3832   const Expr *E = this->IgnoreParens();
3833 
3834   while (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) {
3835     if (ICE->getValueKind() != VK_RValue &&
3836         ICE->getCastKind() == CK_NoOp)
3837       E = ICE->getSubExpr()->IgnoreParens();
3838     else
3839       break;
3840   }
3841 
3842   if (const ArraySubscriptExpr *ASE = dyn_cast<ArraySubscriptExpr>(E))
3843     return ASE->getBase()->getType()->isVectorType();
3844 
3845   if (isa<ExtVectorElementExpr>(E))
3846     return true;
3847 
3848   if (auto *DRE = dyn_cast<DeclRefExpr>(E))
3849     if (auto *BD = dyn_cast<BindingDecl>(DRE->getDecl()))
3850       if (auto *E = BD->getBinding())
3851         return E->refersToVectorElement();
3852 
3853   return false;
3854 }
3855 
3856 bool Expr::refersToGlobalRegisterVar() const {
3857   const Expr *E = this->IgnoreParenImpCasts();
3858 
3859   if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E))
3860     if (const auto *VD = dyn_cast<VarDecl>(DRE->getDecl()))
3861       if (VD->getStorageClass() == SC_Register &&
3862           VD->hasAttr<AsmLabelAttr>() && !VD->isLocalVarDecl())
3863         return true;
3864 
3865   return false;
3866 }
3867 
3868 bool Expr::isSameComparisonOperand(const Expr* E1, const Expr* E2) {
3869   E1 = E1->IgnoreParens();
3870   E2 = E2->IgnoreParens();
3871 
3872   if (E1->getStmtClass() != E2->getStmtClass())
3873     return false;
3874 
3875   switch (E1->getStmtClass()) {
3876     default:
3877       return false;
3878     case CXXThisExprClass:
3879       return true;
3880     case DeclRefExprClass: {
3881       // DeclRefExpr without an ImplicitCastExpr can happen for integral
3882       // template parameters.
3883       const auto *DRE1 = cast<DeclRefExpr>(E1);
3884       const auto *DRE2 = cast<DeclRefExpr>(E2);
3885       return DRE1->isRValue() && DRE2->isRValue() &&
3886              DRE1->getDecl() == DRE2->getDecl();
3887     }
3888     case ImplicitCastExprClass: {
3889       // Peel off implicit casts.
3890       while (true) {
3891         const auto *ICE1 = dyn_cast<ImplicitCastExpr>(E1);
3892         const auto *ICE2 = dyn_cast<ImplicitCastExpr>(E2);
3893         if (!ICE1 || !ICE2)
3894           return false;
3895         if (ICE1->getCastKind() != ICE2->getCastKind())
3896           return false;
3897         E1 = ICE1->getSubExpr()->IgnoreParens();
3898         E2 = ICE2->getSubExpr()->IgnoreParens();
3899         // The final cast must be one of these types.
3900         if (ICE1->getCastKind() == CK_LValueToRValue ||
3901             ICE1->getCastKind() == CK_ArrayToPointerDecay ||
3902             ICE1->getCastKind() == CK_FunctionToPointerDecay) {
3903           break;
3904         }
3905       }
3906 
3907       const auto *DRE1 = dyn_cast<DeclRefExpr>(E1);
3908       const auto *DRE2 = dyn_cast<DeclRefExpr>(E2);
3909       if (DRE1 && DRE2)
3910         return declaresSameEntity(DRE1->getDecl(), DRE2->getDecl());
3911 
3912       const auto *Ivar1 = dyn_cast<ObjCIvarRefExpr>(E1);
3913       const auto *Ivar2 = dyn_cast<ObjCIvarRefExpr>(E2);
3914       if (Ivar1 && Ivar2) {
3915         return Ivar1->isFreeIvar() && Ivar2->isFreeIvar() &&
3916                declaresSameEntity(Ivar1->getDecl(), Ivar2->getDecl());
3917       }
3918 
3919       const auto *Array1 = dyn_cast<ArraySubscriptExpr>(E1);
3920       const auto *Array2 = dyn_cast<ArraySubscriptExpr>(E2);
3921       if (Array1 && Array2) {
3922         if (!isSameComparisonOperand(Array1->getBase(), Array2->getBase()))
3923           return false;
3924 
3925         auto Idx1 = Array1->getIdx();
3926         auto Idx2 = Array2->getIdx();
3927         const auto Integer1 = dyn_cast<IntegerLiteral>(Idx1);
3928         const auto Integer2 = dyn_cast<IntegerLiteral>(Idx2);
3929         if (Integer1 && Integer2) {
3930           if (!llvm::APInt::isSameValue(Integer1->getValue(),
3931                                         Integer2->getValue()))
3932             return false;
3933         } else {
3934           if (!isSameComparisonOperand(Idx1, Idx2))
3935             return false;
3936         }
3937 
3938         return true;
3939       }
3940 
3941       // Walk the MemberExpr chain.
3942       while (isa<MemberExpr>(E1) && isa<MemberExpr>(E2)) {
3943         const auto *ME1 = cast<MemberExpr>(E1);
3944         const auto *ME2 = cast<MemberExpr>(E2);
3945         if (!declaresSameEntity(ME1->getMemberDecl(), ME2->getMemberDecl()))
3946           return false;
3947         if (const auto *D = dyn_cast<VarDecl>(ME1->getMemberDecl()))
3948           if (D->isStaticDataMember())
3949             return true;
3950         E1 = ME1->getBase()->IgnoreParenImpCasts();
3951         E2 = ME2->getBase()->IgnoreParenImpCasts();
3952       }
3953 
3954       if (isa<CXXThisExpr>(E1) && isa<CXXThisExpr>(E2))
3955         return true;
3956 
3957       // A static member variable can end the MemberExpr chain with either
3958       // a MemberExpr or a DeclRefExpr.
3959       auto getAnyDecl = [](const Expr *E) -> const ValueDecl * {
3960         if (const auto *DRE = dyn_cast<DeclRefExpr>(E))
3961           return DRE->getDecl();
3962         if (const auto *ME = dyn_cast<MemberExpr>(E))
3963           return ME->getMemberDecl();
3964         return nullptr;
3965       };
3966 
3967       const ValueDecl *VD1 = getAnyDecl(E1);
3968       const ValueDecl *VD2 = getAnyDecl(E2);
3969       return declaresSameEntity(VD1, VD2);
3970     }
3971   }
3972 }
3973 
3974 /// isArrow - Return true if the base expression is a pointer to vector,
3975 /// return false if the base expression is a vector.
3976 bool ExtVectorElementExpr::isArrow() const {
3977   return getBase()->getType()->isPointerType();
3978 }
3979 
3980 unsigned ExtVectorElementExpr::getNumElements() const {
3981   if (const VectorType *VT = getType()->getAs<VectorType>())
3982     return VT->getNumElements();
3983   return 1;
3984 }
3985 
3986 /// containsDuplicateElements - Return true if any element access is repeated.
3987 bool ExtVectorElementExpr::containsDuplicateElements() const {
3988   // FIXME: Refactor this code to an accessor on the AST node which returns the
3989   // "type" of component access, and share with code below and in Sema.
3990   StringRef Comp = Accessor->getName();
3991 
3992   // Halving swizzles do not contain duplicate elements.
3993   if (Comp == "hi" || Comp == "lo" || Comp == "even" || Comp == "odd")
3994     return false;
3995 
3996   // Advance past s-char prefix on hex swizzles.
3997   if (Comp[0] == 's' || Comp[0] == 'S')
3998     Comp = Comp.substr(1);
3999 
4000   for (unsigned i = 0, e = Comp.size(); i != e; ++i)
4001     if (Comp.substr(i + 1).find(Comp[i]) != StringRef::npos)
4002         return true;
4003 
4004   return false;
4005 }
4006 
4007 /// getEncodedElementAccess - We encode the fields as a llvm ConstantArray.
4008 void ExtVectorElementExpr::getEncodedElementAccess(
4009     SmallVectorImpl<uint32_t> &Elts) const {
4010   StringRef Comp = Accessor->getName();
4011   bool isNumericAccessor = false;
4012   if (Comp[0] == 's' || Comp[0] == 'S') {
4013     Comp = Comp.substr(1);
4014     isNumericAccessor = true;
4015   }
4016 
4017   bool isHi =   Comp == "hi";
4018   bool isLo =   Comp == "lo";
4019   bool isEven = Comp == "even";
4020   bool isOdd  = Comp == "odd";
4021 
4022   for (unsigned i = 0, e = getNumElements(); i != e; ++i) {
4023     uint64_t Index;
4024 
4025     if (isHi)
4026       Index = e + i;
4027     else if (isLo)
4028       Index = i;
4029     else if (isEven)
4030       Index = 2 * i;
4031     else if (isOdd)
4032       Index = 2 * i + 1;
4033     else
4034       Index = ExtVectorType::getAccessorIdx(Comp[i], isNumericAccessor);
4035 
4036     Elts.push_back(Index);
4037   }
4038 }
4039 
4040 ShuffleVectorExpr::ShuffleVectorExpr(const ASTContext &C, ArrayRef<Expr *> args,
4041                                      QualType Type, SourceLocation BLoc,
4042                                      SourceLocation RP)
4043     : Expr(ShuffleVectorExprClass, Type, VK_RValue, OK_Ordinary),
4044       BuiltinLoc(BLoc), RParenLoc(RP), NumExprs(args.size()) {
4045   SubExprs = new (C) Stmt*[args.size()];
4046   for (unsigned i = 0; i != args.size(); i++)
4047     SubExprs[i] = args[i];
4048 
4049   setDependence(computeDependence(this));
4050 }
4051 
4052 void ShuffleVectorExpr::setExprs(const ASTContext &C, ArrayRef<Expr *> Exprs) {
4053   if (SubExprs) C.Deallocate(SubExprs);
4054 
4055   this->NumExprs = Exprs.size();
4056   SubExprs = new (C) Stmt*[NumExprs];
4057   memcpy(SubExprs, Exprs.data(), sizeof(Expr *) * Exprs.size());
4058 }
4059 
4060 GenericSelectionExpr::GenericSelectionExpr(
4061     const ASTContext &, SourceLocation GenericLoc, Expr *ControllingExpr,
4062     ArrayRef<TypeSourceInfo *> AssocTypes, ArrayRef<Expr *> AssocExprs,
4063     SourceLocation DefaultLoc, SourceLocation RParenLoc,
4064     bool ContainsUnexpandedParameterPack, unsigned ResultIndex)
4065     : Expr(GenericSelectionExprClass, AssocExprs[ResultIndex]->getType(),
4066            AssocExprs[ResultIndex]->getValueKind(),
4067            AssocExprs[ResultIndex]->getObjectKind()),
4068       NumAssocs(AssocExprs.size()), ResultIndex(ResultIndex),
4069       DefaultLoc(DefaultLoc), RParenLoc(RParenLoc) {
4070   assert(AssocTypes.size() == AssocExprs.size() &&
4071          "Must have the same number of association expressions"
4072          " and TypeSourceInfo!");
4073   assert(ResultIndex < NumAssocs && "ResultIndex is out-of-bounds!");
4074 
4075   GenericSelectionExprBits.GenericLoc = GenericLoc;
4076   getTrailingObjects<Stmt *>()[ControllingIndex] = ControllingExpr;
4077   std::copy(AssocExprs.begin(), AssocExprs.end(),
4078             getTrailingObjects<Stmt *>() + AssocExprStartIndex);
4079   std::copy(AssocTypes.begin(), AssocTypes.end(),
4080             getTrailingObjects<TypeSourceInfo *>());
4081 
4082   setDependence(computeDependence(this, ContainsUnexpandedParameterPack));
4083 }
4084 
4085 GenericSelectionExpr::GenericSelectionExpr(
4086     const ASTContext &Context, SourceLocation GenericLoc, Expr *ControllingExpr,
4087     ArrayRef<TypeSourceInfo *> AssocTypes, ArrayRef<Expr *> AssocExprs,
4088     SourceLocation DefaultLoc, SourceLocation RParenLoc,
4089     bool ContainsUnexpandedParameterPack)
4090     : Expr(GenericSelectionExprClass, Context.DependentTy, VK_RValue,
4091            OK_Ordinary),
4092       NumAssocs(AssocExprs.size()), ResultIndex(ResultDependentIndex),
4093       DefaultLoc(DefaultLoc), RParenLoc(RParenLoc) {
4094   assert(AssocTypes.size() == AssocExprs.size() &&
4095          "Must have the same number of association expressions"
4096          " and TypeSourceInfo!");
4097 
4098   GenericSelectionExprBits.GenericLoc = GenericLoc;
4099   getTrailingObjects<Stmt *>()[ControllingIndex] = ControllingExpr;
4100   std::copy(AssocExprs.begin(), AssocExprs.end(),
4101             getTrailingObjects<Stmt *>() + AssocExprStartIndex);
4102   std::copy(AssocTypes.begin(), AssocTypes.end(),
4103             getTrailingObjects<TypeSourceInfo *>());
4104 
4105   setDependence(computeDependence(this, ContainsUnexpandedParameterPack));
4106 }
4107 
4108 GenericSelectionExpr::GenericSelectionExpr(EmptyShell Empty, unsigned NumAssocs)
4109     : Expr(GenericSelectionExprClass, Empty), NumAssocs(NumAssocs) {}
4110 
4111 GenericSelectionExpr *GenericSelectionExpr::Create(
4112     const ASTContext &Context, SourceLocation GenericLoc, Expr *ControllingExpr,
4113     ArrayRef<TypeSourceInfo *> AssocTypes, ArrayRef<Expr *> AssocExprs,
4114     SourceLocation DefaultLoc, SourceLocation RParenLoc,
4115     bool ContainsUnexpandedParameterPack, unsigned ResultIndex) {
4116   unsigned NumAssocs = AssocExprs.size();
4117   void *Mem = Context.Allocate(
4118       totalSizeToAlloc<Stmt *, TypeSourceInfo *>(1 + NumAssocs, NumAssocs),
4119       alignof(GenericSelectionExpr));
4120   return new (Mem) GenericSelectionExpr(
4121       Context, GenericLoc, ControllingExpr, AssocTypes, AssocExprs, DefaultLoc,
4122       RParenLoc, ContainsUnexpandedParameterPack, ResultIndex);
4123 }
4124 
4125 GenericSelectionExpr *GenericSelectionExpr::Create(
4126     const ASTContext &Context, SourceLocation GenericLoc, Expr *ControllingExpr,
4127     ArrayRef<TypeSourceInfo *> AssocTypes, ArrayRef<Expr *> AssocExprs,
4128     SourceLocation DefaultLoc, SourceLocation RParenLoc,
4129     bool ContainsUnexpandedParameterPack) {
4130   unsigned NumAssocs = AssocExprs.size();
4131   void *Mem = Context.Allocate(
4132       totalSizeToAlloc<Stmt *, TypeSourceInfo *>(1 + NumAssocs, NumAssocs),
4133       alignof(GenericSelectionExpr));
4134   return new (Mem) GenericSelectionExpr(
4135       Context, GenericLoc, ControllingExpr, AssocTypes, AssocExprs, DefaultLoc,
4136       RParenLoc, ContainsUnexpandedParameterPack);
4137 }
4138 
4139 GenericSelectionExpr *
4140 GenericSelectionExpr::CreateEmpty(const ASTContext &Context,
4141                                   unsigned NumAssocs) {
4142   void *Mem = Context.Allocate(
4143       totalSizeToAlloc<Stmt *, TypeSourceInfo *>(1 + NumAssocs, NumAssocs),
4144       alignof(GenericSelectionExpr));
4145   return new (Mem) GenericSelectionExpr(EmptyShell(), NumAssocs);
4146 }
4147 
4148 //===----------------------------------------------------------------------===//
4149 //  DesignatedInitExpr
4150 //===----------------------------------------------------------------------===//
4151 
4152 IdentifierInfo *DesignatedInitExpr::Designator::getFieldName() const {
4153   assert(Kind == FieldDesignator && "Only valid on a field designator");
4154   if (Field.NameOrField & 0x01)
4155     return reinterpret_cast<IdentifierInfo *>(Field.NameOrField&~0x01);
4156   else
4157     return getField()->getIdentifier();
4158 }
4159 
4160 DesignatedInitExpr::DesignatedInitExpr(const ASTContext &C, QualType Ty,
4161                                        llvm::ArrayRef<Designator> Designators,
4162                                        SourceLocation EqualOrColonLoc,
4163                                        bool GNUSyntax,
4164                                        ArrayRef<Expr *> IndexExprs, Expr *Init)
4165     : Expr(DesignatedInitExprClass, Ty, Init->getValueKind(),
4166            Init->getObjectKind()),
4167       EqualOrColonLoc(EqualOrColonLoc), GNUSyntax(GNUSyntax),
4168       NumDesignators(Designators.size()), NumSubExprs(IndexExprs.size() + 1) {
4169   this->Designators = new (C) Designator[NumDesignators];
4170 
4171   // Record the initializer itself.
4172   child_iterator Child = child_begin();
4173   *Child++ = Init;
4174 
4175   // Copy the designators and their subexpressions, computing
4176   // value-dependence along the way.
4177   unsigned IndexIdx = 0;
4178   for (unsigned I = 0; I != NumDesignators; ++I) {
4179     this->Designators[I] = Designators[I];
4180     if (this->Designators[I].isArrayDesignator()) {
4181       // Copy the index expressions into permanent storage.
4182       *Child++ = IndexExprs[IndexIdx++];
4183     } else if (this->Designators[I].isArrayRangeDesignator()) {
4184       // Copy the start/end expressions into permanent storage.
4185       *Child++ = IndexExprs[IndexIdx++];
4186       *Child++ = IndexExprs[IndexIdx++];
4187     }
4188   }
4189 
4190   assert(IndexIdx == IndexExprs.size() && "Wrong number of index expressions");
4191   setDependence(computeDependence(this));
4192 }
4193 
4194 DesignatedInitExpr *
4195 DesignatedInitExpr::Create(const ASTContext &C,
4196                            llvm::ArrayRef<Designator> Designators,
4197                            ArrayRef<Expr*> IndexExprs,
4198                            SourceLocation ColonOrEqualLoc,
4199                            bool UsesColonSyntax, Expr *Init) {
4200   void *Mem = C.Allocate(totalSizeToAlloc<Stmt *>(IndexExprs.size() + 1),
4201                          alignof(DesignatedInitExpr));
4202   return new (Mem) DesignatedInitExpr(C, C.VoidTy, Designators,
4203                                       ColonOrEqualLoc, UsesColonSyntax,
4204                                       IndexExprs, Init);
4205 }
4206 
4207 DesignatedInitExpr *DesignatedInitExpr::CreateEmpty(const ASTContext &C,
4208                                                     unsigned NumIndexExprs) {
4209   void *Mem = C.Allocate(totalSizeToAlloc<Stmt *>(NumIndexExprs + 1),
4210                          alignof(DesignatedInitExpr));
4211   return new (Mem) DesignatedInitExpr(NumIndexExprs + 1);
4212 }
4213 
4214 void DesignatedInitExpr::setDesignators(const ASTContext &C,
4215                                         const Designator *Desigs,
4216                                         unsigned NumDesigs) {
4217   Designators = new (C) Designator[NumDesigs];
4218   NumDesignators = NumDesigs;
4219   for (unsigned I = 0; I != NumDesigs; ++I)
4220     Designators[I] = Desigs[I];
4221 }
4222 
4223 SourceRange DesignatedInitExpr::getDesignatorsSourceRange() const {
4224   DesignatedInitExpr *DIE = const_cast<DesignatedInitExpr*>(this);
4225   if (size() == 1)
4226     return DIE->getDesignator(0)->getSourceRange();
4227   return SourceRange(DIE->getDesignator(0)->getBeginLoc(),
4228                      DIE->getDesignator(size() - 1)->getEndLoc());
4229 }
4230 
4231 SourceLocation DesignatedInitExpr::getBeginLoc() const {
4232   SourceLocation StartLoc;
4233   auto *DIE = const_cast<DesignatedInitExpr *>(this);
4234   Designator &First = *DIE->getDesignator(0);
4235   if (First.isFieldDesignator()) {
4236     if (GNUSyntax)
4237       StartLoc = SourceLocation::getFromRawEncoding(First.Field.FieldLoc);
4238     else
4239       StartLoc = SourceLocation::getFromRawEncoding(First.Field.DotLoc);
4240   } else
4241     StartLoc =
4242       SourceLocation::getFromRawEncoding(First.ArrayOrRange.LBracketLoc);
4243   return StartLoc;
4244 }
4245 
4246 SourceLocation DesignatedInitExpr::getEndLoc() const {
4247   return getInit()->getEndLoc();
4248 }
4249 
4250 Expr *DesignatedInitExpr::getArrayIndex(const Designator& D) const {
4251   assert(D.Kind == Designator::ArrayDesignator && "Requires array designator");
4252   return getSubExpr(D.ArrayOrRange.Index + 1);
4253 }
4254 
4255 Expr *DesignatedInitExpr::getArrayRangeStart(const Designator &D) const {
4256   assert(D.Kind == Designator::ArrayRangeDesignator &&
4257          "Requires array range designator");
4258   return getSubExpr(D.ArrayOrRange.Index + 1);
4259 }
4260 
4261 Expr *DesignatedInitExpr::getArrayRangeEnd(const Designator &D) const {
4262   assert(D.Kind == Designator::ArrayRangeDesignator &&
4263          "Requires array range designator");
4264   return getSubExpr(D.ArrayOrRange.Index + 2);
4265 }
4266 
4267 /// Replaces the designator at index @p Idx with the series
4268 /// of designators in [First, Last).
4269 void DesignatedInitExpr::ExpandDesignator(const ASTContext &C, unsigned Idx,
4270                                           const Designator *First,
4271                                           const Designator *Last) {
4272   unsigned NumNewDesignators = Last - First;
4273   if (NumNewDesignators == 0) {
4274     std::copy_backward(Designators + Idx + 1,
4275                        Designators + NumDesignators,
4276                        Designators + Idx);
4277     --NumNewDesignators;
4278     return;
4279   } else if (NumNewDesignators == 1) {
4280     Designators[Idx] = *First;
4281     return;
4282   }
4283 
4284   Designator *NewDesignators
4285     = new (C) Designator[NumDesignators - 1 + NumNewDesignators];
4286   std::copy(Designators, Designators + Idx, NewDesignators);
4287   std::copy(First, Last, NewDesignators + Idx);
4288   std::copy(Designators + Idx + 1, Designators + NumDesignators,
4289             NewDesignators + Idx + NumNewDesignators);
4290   Designators = NewDesignators;
4291   NumDesignators = NumDesignators - 1 + NumNewDesignators;
4292 }
4293 
4294 DesignatedInitUpdateExpr::DesignatedInitUpdateExpr(const ASTContext &C,
4295                                                    SourceLocation lBraceLoc,
4296                                                    Expr *baseExpr,
4297                                                    SourceLocation rBraceLoc)
4298     : Expr(DesignatedInitUpdateExprClass, baseExpr->getType(), VK_RValue,
4299            OK_Ordinary) {
4300   BaseAndUpdaterExprs[0] = baseExpr;
4301 
4302   InitListExpr *ILE = new (C) InitListExpr(C, lBraceLoc, None, rBraceLoc);
4303   ILE->setType(baseExpr->getType());
4304   BaseAndUpdaterExprs[1] = ILE;
4305 
4306   // FIXME: this is wrong, set it correctly.
4307   setDependence(ExprDependence::None);
4308 }
4309 
4310 SourceLocation DesignatedInitUpdateExpr::getBeginLoc() const {
4311   return getBase()->getBeginLoc();
4312 }
4313 
4314 SourceLocation DesignatedInitUpdateExpr::getEndLoc() const {
4315   return getBase()->getEndLoc();
4316 }
4317 
4318 ParenListExpr::ParenListExpr(SourceLocation LParenLoc, ArrayRef<Expr *> Exprs,
4319                              SourceLocation RParenLoc)
4320     : Expr(ParenListExprClass, QualType(), VK_RValue, OK_Ordinary),
4321       LParenLoc(LParenLoc), RParenLoc(RParenLoc) {
4322   ParenListExprBits.NumExprs = Exprs.size();
4323 
4324   for (unsigned I = 0, N = Exprs.size(); I != N; ++I)
4325     getTrailingObjects<Stmt *>()[I] = Exprs[I];
4326   setDependence(computeDependence(this));
4327 }
4328 
4329 ParenListExpr::ParenListExpr(EmptyShell Empty, unsigned NumExprs)
4330     : Expr(ParenListExprClass, Empty) {
4331   ParenListExprBits.NumExprs = NumExprs;
4332 }
4333 
4334 ParenListExpr *ParenListExpr::Create(const ASTContext &Ctx,
4335                                      SourceLocation LParenLoc,
4336                                      ArrayRef<Expr *> Exprs,
4337                                      SourceLocation RParenLoc) {
4338   void *Mem = Ctx.Allocate(totalSizeToAlloc<Stmt *>(Exprs.size()),
4339                            alignof(ParenListExpr));
4340   return new (Mem) ParenListExpr(LParenLoc, Exprs, RParenLoc);
4341 }
4342 
4343 ParenListExpr *ParenListExpr::CreateEmpty(const ASTContext &Ctx,
4344                                           unsigned NumExprs) {
4345   void *Mem =
4346       Ctx.Allocate(totalSizeToAlloc<Stmt *>(NumExprs), alignof(ParenListExpr));
4347   return new (Mem) ParenListExpr(EmptyShell(), NumExprs);
4348 }
4349 
4350 BinaryOperator::BinaryOperator(const ASTContext &Ctx, Expr *lhs, Expr *rhs,
4351                                Opcode opc, QualType ResTy, ExprValueKind VK,
4352                                ExprObjectKind OK, SourceLocation opLoc,
4353                                FPOptions FPFeatures)
4354     : Expr(BinaryOperatorClass, ResTy, VK, OK) {
4355   BinaryOperatorBits.Opc = opc;
4356   assert(!isCompoundAssignmentOp() &&
4357          "Use CompoundAssignOperator for compound assignments");
4358   BinaryOperatorBits.OpLoc = opLoc;
4359   SubExprs[LHS] = lhs;
4360   SubExprs[RHS] = rhs;
4361   BinaryOperatorBits.HasFPFeatures =
4362       FPFeatures.requiresTrailingStorage(Ctx.getLangOpts());
4363   if (BinaryOperatorBits.HasFPFeatures)
4364     *getTrailingFPFeatures() = FPFeatures;
4365   setDependence(computeDependence(this));
4366 }
4367 
4368 BinaryOperator::BinaryOperator(const ASTContext &Ctx, Expr *lhs, Expr *rhs,
4369                                Opcode opc, QualType ResTy, ExprValueKind VK,
4370                                ExprObjectKind OK, SourceLocation opLoc,
4371                                FPOptions FPFeatures, bool dead2)
4372     : Expr(CompoundAssignOperatorClass, ResTy, VK, OK) {
4373   BinaryOperatorBits.Opc = opc;
4374   assert(isCompoundAssignmentOp() &&
4375          "Use CompoundAssignOperator for compound assignments");
4376   BinaryOperatorBits.OpLoc = opLoc;
4377   SubExprs[LHS] = lhs;
4378   SubExprs[RHS] = rhs;
4379   BinaryOperatorBits.HasFPFeatures =
4380       FPFeatures.requiresTrailingStorage(Ctx.getLangOpts());
4381   if (BinaryOperatorBits.HasFPFeatures)
4382     *getTrailingFPFeatures() = FPFeatures;
4383   setDependence(computeDependence(this));
4384 }
4385 
4386 BinaryOperator *BinaryOperator::CreateEmpty(const ASTContext &C,
4387                                             bool HasFPFeatures) {
4388   unsigned Extra = sizeOfTrailingObjects(HasFPFeatures);
4389   void *Mem =
4390       C.Allocate(sizeof(BinaryOperator) + Extra, alignof(BinaryOperator));
4391   return new (Mem) BinaryOperator(EmptyShell());
4392 }
4393 
4394 BinaryOperator *BinaryOperator::Create(const ASTContext &C, Expr *lhs,
4395                                        Expr *rhs, Opcode opc, QualType ResTy,
4396                                        ExprValueKind VK, ExprObjectKind OK,
4397                                        SourceLocation opLoc,
4398                                        FPOptions FPFeatures) {
4399   bool HasFPFeatures = FPFeatures.requiresTrailingStorage(C.getLangOpts());
4400   unsigned Extra = sizeOfTrailingObjects(HasFPFeatures);
4401   void *Mem =
4402       C.Allocate(sizeof(BinaryOperator) + Extra, alignof(BinaryOperator));
4403   return new (Mem)
4404       BinaryOperator(C, lhs, rhs, opc, ResTy, VK, OK, opLoc, FPFeatures);
4405 }
4406 
4407 CompoundAssignOperator *
4408 CompoundAssignOperator::CreateEmpty(const ASTContext &C, bool HasFPFeatures) {
4409   unsigned Extra = sizeOfTrailingObjects(HasFPFeatures);
4410   void *Mem = C.Allocate(sizeof(CompoundAssignOperator) + Extra,
4411                          alignof(CompoundAssignOperator));
4412   return new (Mem) CompoundAssignOperator(C, EmptyShell(), HasFPFeatures);
4413 }
4414 
4415 CompoundAssignOperator *CompoundAssignOperator::Create(
4416     const ASTContext &C, Expr *lhs, Expr *rhs, Opcode opc, QualType ResTy,
4417     ExprValueKind VK, ExprObjectKind OK, SourceLocation opLoc,
4418     FPOptions FPFeatures, QualType CompLHSType, QualType CompResultType) {
4419   bool HasFPFeatures = FPFeatures.requiresTrailingStorage(C.getLangOpts());
4420   unsigned Extra = sizeOfTrailingObjects(HasFPFeatures);
4421   void *Mem = C.Allocate(sizeof(CompoundAssignOperator) + Extra,
4422                          alignof(CompoundAssignOperator));
4423   return new (Mem)
4424       CompoundAssignOperator(C, lhs, rhs, opc, ResTy, VK, OK, opLoc, FPFeatures,
4425                              CompLHSType, CompResultType);
4426 }
4427 
4428 const OpaqueValueExpr *OpaqueValueExpr::findInCopyConstruct(const Expr *e) {
4429   if (const ExprWithCleanups *ewc = dyn_cast<ExprWithCleanups>(e))
4430     e = ewc->getSubExpr();
4431   if (const MaterializeTemporaryExpr *m = dyn_cast<MaterializeTemporaryExpr>(e))
4432     e = m->getSubExpr();
4433   e = cast<CXXConstructExpr>(e)->getArg(0);
4434   while (const ImplicitCastExpr *ice = dyn_cast<ImplicitCastExpr>(e))
4435     e = ice->getSubExpr();
4436   return cast<OpaqueValueExpr>(e);
4437 }
4438 
4439 PseudoObjectExpr *PseudoObjectExpr::Create(const ASTContext &Context,
4440                                            EmptyShell sh,
4441                                            unsigned numSemanticExprs) {
4442   void *buffer =
4443       Context.Allocate(totalSizeToAlloc<Expr *>(1 + numSemanticExprs),
4444                        alignof(PseudoObjectExpr));
4445   return new(buffer) PseudoObjectExpr(sh, numSemanticExprs);
4446 }
4447 
4448 PseudoObjectExpr::PseudoObjectExpr(EmptyShell shell, unsigned numSemanticExprs)
4449   : Expr(PseudoObjectExprClass, shell) {
4450   PseudoObjectExprBits.NumSubExprs = numSemanticExprs + 1;
4451 }
4452 
4453 PseudoObjectExpr *PseudoObjectExpr::Create(const ASTContext &C, Expr *syntax,
4454                                            ArrayRef<Expr*> semantics,
4455                                            unsigned resultIndex) {
4456   assert(syntax && "no syntactic expression!");
4457   assert(semantics.size() && "no semantic expressions!");
4458 
4459   QualType type;
4460   ExprValueKind VK;
4461   if (resultIndex == NoResult) {
4462     type = C.VoidTy;
4463     VK = VK_RValue;
4464   } else {
4465     assert(resultIndex < semantics.size());
4466     type = semantics[resultIndex]->getType();
4467     VK = semantics[resultIndex]->getValueKind();
4468     assert(semantics[resultIndex]->getObjectKind() == OK_Ordinary);
4469   }
4470 
4471   void *buffer = C.Allocate(totalSizeToAlloc<Expr *>(semantics.size() + 1),
4472                             alignof(PseudoObjectExpr));
4473   return new(buffer) PseudoObjectExpr(type, VK, syntax, semantics,
4474                                       resultIndex);
4475 }
4476 
4477 PseudoObjectExpr::PseudoObjectExpr(QualType type, ExprValueKind VK,
4478                                    Expr *syntax, ArrayRef<Expr *> semantics,
4479                                    unsigned resultIndex)
4480     : Expr(PseudoObjectExprClass, type, VK, OK_Ordinary) {
4481   PseudoObjectExprBits.NumSubExprs = semantics.size() + 1;
4482   PseudoObjectExprBits.ResultIndex = resultIndex + 1;
4483 
4484   for (unsigned i = 0, e = semantics.size() + 1; i != e; ++i) {
4485     Expr *E = (i == 0 ? syntax : semantics[i-1]);
4486     getSubExprsBuffer()[i] = E;
4487 
4488     if (isa<OpaqueValueExpr>(E))
4489       assert(cast<OpaqueValueExpr>(E)->getSourceExpr() != nullptr &&
4490              "opaque-value semantic expressions for pseudo-object "
4491              "operations must have sources");
4492   }
4493 
4494   setDependence(computeDependence(this));
4495 }
4496 
4497 //===----------------------------------------------------------------------===//
4498 //  Child Iterators for iterating over subexpressions/substatements
4499 //===----------------------------------------------------------------------===//
4500 
4501 // UnaryExprOrTypeTraitExpr
4502 Stmt::child_range UnaryExprOrTypeTraitExpr::children() {
4503   const_child_range CCR =
4504       const_cast<const UnaryExprOrTypeTraitExpr *>(this)->children();
4505   return child_range(cast_away_const(CCR.begin()), cast_away_const(CCR.end()));
4506 }
4507 
4508 Stmt::const_child_range UnaryExprOrTypeTraitExpr::children() const {
4509   // If this is of a type and the type is a VLA type (and not a typedef), the
4510   // size expression of the VLA needs to be treated as an executable expression.
4511   // Why isn't this weirdness documented better in StmtIterator?
4512   if (isArgumentType()) {
4513     if (const VariableArrayType *T =
4514             dyn_cast<VariableArrayType>(getArgumentType().getTypePtr()))
4515       return const_child_range(const_child_iterator(T), const_child_iterator());
4516     return const_child_range(const_child_iterator(), const_child_iterator());
4517   }
4518   return const_child_range(&Argument.Ex, &Argument.Ex + 1);
4519 }
4520 
4521 AtomicExpr::AtomicExpr(SourceLocation BLoc, ArrayRef<Expr *> args, QualType t,
4522                        AtomicOp op, SourceLocation RP)
4523     : Expr(AtomicExprClass, t, VK_RValue, OK_Ordinary),
4524       NumSubExprs(args.size()), BuiltinLoc(BLoc), RParenLoc(RP), Op(op) {
4525   assert(args.size() == getNumSubExprs(op) && "wrong number of subexpressions");
4526   for (unsigned i = 0; i != args.size(); i++)
4527     SubExprs[i] = args[i];
4528   setDependence(computeDependence(this));
4529 }
4530 
4531 unsigned AtomicExpr::getNumSubExprs(AtomicOp Op) {
4532   switch (Op) {
4533   case AO__c11_atomic_init:
4534   case AO__opencl_atomic_init:
4535   case AO__c11_atomic_load:
4536   case AO__atomic_load_n:
4537     return 2;
4538 
4539   case AO__opencl_atomic_load:
4540   case AO__c11_atomic_store:
4541   case AO__c11_atomic_exchange:
4542   case AO__atomic_load:
4543   case AO__atomic_store:
4544   case AO__atomic_store_n:
4545   case AO__atomic_exchange_n:
4546   case AO__c11_atomic_fetch_add:
4547   case AO__c11_atomic_fetch_sub:
4548   case AO__c11_atomic_fetch_and:
4549   case AO__c11_atomic_fetch_or:
4550   case AO__c11_atomic_fetch_xor:
4551   case AO__c11_atomic_fetch_max:
4552   case AO__c11_atomic_fetch_min:
4553   case AO__atomic_fetch_add:
4554   case AO__atomic_fetch_sub:
4555   case AO__atomic_fetch_and:
4556   case AO__atomic_fetch_or:
4557   case AO__atomic_fetch_xor:
4558   case AO__atomic_fetch_nand:
4559   case AO__atomic_add_fetch:
4560   case AO__atomic_sub_fetch:
4561   case AO__atomic_and_fetch:
4562   case AO__atomic_or_fetch:
4563   case AO__atomic_xor_fetch:
4564   case AO__atomic_nand_fetch:
4565   case AO__atomic_min_fetch:
4566   case AO__atomic_max_fetch:
4567   case AO__atomic_fetch_min:
4568   case AO__atomic_fetch_max:
4569     return 3;
4570 
4571   case AO__opencl_atomic_store:
4572   case AO__opencl_atomic_exchange:
4573   case AO__opencl_atomic_fetch_add:
4574   case AO__opencl_atomic_fetch_sub:
4575   case AO__opencl_atomic_fetch_and:
4576   case AO__opencl_atomic_fetch_or:
4577   case AO__opencl_atomic_fetch_xor:
4578   case AO__opencl_atomic_fetch_min:
4579   case AO__opencl_atomic_fetch_max:
4580   case AO__atomic_exchange:
4581     return 4;
4582 
4583   case AO__c11_atomic_compare_exchange_strong:
4584   case AO__c11_atomic_compare_exchange_weak:
4585     return 5;
4586 
4587   case AO__opencl_atomic_compare_exchange_strong:
4588   case AO__opencl_atomic_compare_exchange_weak:
4589   case AO__atomic_compare_exchange:
4590   case AO__atomic_compare_exchange_n:
4591     return 6;
4592   }
4593   llvm_unreachable("unknown atomic op");
4594 }
4595 
4596 QualType AtomicExpr::getValueType() const {
4597   auto T = getPtr()->getType()->castAs<PointerType>()->getPointeeType();
4598   if (auto AT = T->getAs<AtomicType>())
4599     return AT->getValueType();
4600   return T;
4601 }
4602 
4603 QualType OMPArraySectionExpr::getBaseOriginalType(const Expr *Base) {
4604   unsigned ArraySectionCount = 0;
4605   while (auto *OASE = dyn_cast<OMPArraySectionExpr>(Base->IgnoreParens())) {
4606     Base = OASE->getBase();
4607     ++ArraySectionCount;
4608   }
4609   while (auto *ASE =
4610              dyn_cast<ArraySubscriptExpr>(Base->IgnoreParenImpCasts())) {
4611     Base = ASE->getBase();
4612     ++ArraySectionCount;
4613   }
4614   Base = Base->IgnoreParenImpCasts();
4615   auto OriginalTy = Base->getType();
4616   if (auto *DRE = dyn_cast<DeclRefExpr>(Base))
4617     if (auto *PVD = dyn_cast<ParmVarDecl>(DRE->getDecl()))
4618       OriginalTy = PVD->getOriginalType().getNonReferenceType();
4619 
4620   for (unsigned Cnt = 0; Cnt < ArraySectionCount; ++Cnt) {
4621     if (OriginalTy->isAnyPointerType())
4622       OriginalTy = OriginalTy->getPointeeType();
4623     else {
4624       assert (OriginalTy->isArrayType());
4625       OriginalTy = OriginalTy->castAsArrayTypeUnsafe()->getElementType();
4626     }
4627   }
4628   return OriginalTy;
4629 }
4630 
4631 RecoveryExpr::RecoveryExpr(ASTContext &Ctx, SourceLocation BeginLoc,
4632                            SourceLocation EndLoc, ArrayRef<Expr *> SubExprs)
4633     : Expr(RecoveryExprClass, Ctx.DependentTy, VK_LValue, OK_Ordinary),
4634       BeginLoc(BeginLoc), EndLoc(EndLoc), NumExprs(SubExprs.size()) {
4635 #ifndef NDEBUG
4636   for (auto *E : SubExprs)
4637     assert(E != nullptr);
4638 #endif
4639 
4640   llvm::copy(SubExprs, getTrailingObjects<Expr *>());
4641   setDependence(computeDependence(this));
4642 }
4643 
4644 RecoveryExpr *RecoveryExpr::Create(ASTContext &Ctx, SourceLocation BeginLoc,
4645                                    SourceLocation EndLoc,
4646                                    ArrayRef<Expr *> SubExprs) {
4647   void *Mem = Ctx.Allocate(totalSizeToAlloc<Expr *>(SubExprs.size()),
4648                            alignof(RecoveryExpr));
4649   return new (Mem) RecoveryExpr(Ctx, BeginLoc, EndLoc, SubExprs);
4650 }
4651 
4652 RecoveryExpr *RecoveryExpr::CreateEmpty(ASTContext &Ctx, unsigned NumSubExprs) {
4653   void *Mem = Ctx.Allocate(totalSizeToAlloc<Expr *>(NumSubExprs),
4654                            alignof(RecoveryExpr));
4655   return new (Mem) RecoveryExpr(EmptyShell(), NumSubExprs);
4656 }
4657 
4658 void OMPArrayShapingExpr::setDimensions(ArrayRef<Expr *> Dims) {
4659   assert(
4660       NumDims == Dims.size() &&
4661       "Preallocated number of dimensions is different from the provided one.");
4662   llvm::copy(Dims, getTrailingObjects<Expr *>());
4663 }
4664 
4665 void OMPArrayShapingExpr::setBracketsRanges(ArrayRef<SourceRange> BR) {
4666   assert(
4667       NumDims == BR.size() &&
4668       "Preallocated number of dimensions is different from the provided one.");
4669   llvm::copy(BR, getTrailingObjects<SourceRange>());
4670 }
4671 
4672 OMPArrayShapingExpr::OMPArrayShapingExpr(QualType ExprTy, Expr *Op,
4673                                          SourceLocation L, SourceLocation R,
4674                                          ArrayRef<Expr *> Dims)
4675     : Expr(OMPArrayShapingExprClass, ExprTy, VK_LValue, OK_Ordinary), LPLoc(L),
4676       RPLoc(R), NumDims(Dims.size()) {
4677   setBase(Op);
4678   setDimensions(Dims);
4679   setDependence(computeDependence(this));
4680 }
4681 
4682 OMPArrayShapingExpr *
4683 OMPArrayShapingExpr::Create(const ASTContext &Context, QualType T, Expr *Op,
4684                             SourceLocation L, SourceLocation R,
4685                             ArrayRef<Expr *> Dims,
4686                             ArrayRef<SourceRange> BracketRanges) {
4687   assert(Dims.size() == BracketRanges.size() &&
4688          "Different number of dimensions and brackets ranges.");
4689   void *Mem = Context.Allocate(
4690       totalSizeToAlloc<Expr *, SourceRange>(Dims.size() + 1, Dims.size()),
4691       alignof(OMPArrayShapingExpr));
4692   auto *E = new (Mem) OMPArrayShapingExpr(T, Op, L, R, Dims);
4693   E->setBracketsRanges(BracketRanges);
4694   return E;
4695 }
4696 
4697 OMPArrayShapingExpr *OMPArrayShapingExpr::CreateEmpty(const ASTContext &Context,
4698                                                       unsigned NumDims) {
4699   void *Mem = Context.Allocate(
4700       totalSizeToAlloc<Expr *, SourceRange>(NumDims + 1, NumDims),
4701       alignof(OMPArrayShapingExpr));
4702   return new (Mem) OMPArrayShapingExpr(EmptyShell(), NumDims);
4703 }
4704 
4705 void OMPIteratorExpr::setIteratorDeclaration(unsigned I, Decl *D) {
4706   assert(I < NumIterators &&
4707          "Idx is greater or equal the number of iterators definitions.");
4708   getTrailingObjects<Decl *>()[I] = D;
4709 }
4710 
4711 void OMPIteratorExpr::setAssignmentLoc(unsigned I, SourceLocation Loc) {
4712   assert(I < NumIterators &&
4713          "Idx is greater or equal the number of iterators definitions.");
4714   getTrailingObjects<
4715       SourceLocation>()[I * static_cast<int>(RangeLocOffset::Total) +
4716                         static_cast<int>(RangeLocOffset::AssignLoc)] = Loc;
4717 }
4718 
4719 void OMPIteratorExpr::setIteratorRange(unsigned I, Expr *Begin,
4720                                        SourceLocation ColonLoc, Expr *End,
4721                                        SourceLocation SecondColonLoc,
4722                                        Expr *Step) {
4723   assert(I < NumIterators &&
4724          "Idx is greater or equal the number of iterators definitions.");
4725   getTrailingObjects<Expr *>()[I * static_cast<int>(RangeExprOffset::Total) +
4726                                static_cast<int>(RangeExprOffset::Begin)] =
4727       Begin;
4728   getTrailingObjects<Expr *>()[I * static_cast<int>(RangeExprOffset::Total) +
4729                                static_cast<int>(RangeExprOffset::End)] = End;
4730   getTrailingObjects<Expr *>()[I * static_cast<int>(RangeExprOffset::Total) +
4731                                static_cast<int>(RangeExprOffset::Step)] = Step;
4732   getTrailingObjects<
4733       SourceLocation>()[I * static_cast<int>(RangeLocOffset::Total) +
4734                         static_cast<int>(RangeLocOffset::FirstColonLoc)] =
4735       ColonLoc;
4736   getTrailingObjects<
4737       SourceLocation>()[I * static_cast<int>(RangeLocOffset::Total) +
4738                         static_cast<int>(RangeLocOffset::SecondColonLoc)] =
4739       SecondColonLoc;
4740 }
4741 
4742 Decl *OMPIteratorExpr::getIteratorDecl(unsigned I) {
4743   return getTrailingObjects<Decl *>()[I];
4744 }
4745 
4746 OMPIteratorExpr::IteratorRange OMPIteratorExpr::getIteratorRange(unsigned I) {
4747   IteratorRange Res;
4748   Res.Begin =
4749       getTrailingObjects<Expr *>()[I * static_cast<int>(
4750                                            RangeExprOffset::Total) +
4751                                    static_cast<int>(RangeExprOffset::Begin)];
4752   Res.End =
4753       getTrailingObjects<Expr *>()[I * static_cast<int>(
4754                                            RangeExprOffset::Total) +
4755                                    static_cast<int>(RangeExprOffset::End)];
4756   Res.Step =
4757       getTrailingObjects<Expr *>()[I * static_cast<int>(
4758                                            RangeExprOffset::Total) +
4759                                    static_cast<int>(RangeExprOffset::Step)];
4760   return Res;
4761 }
4762 
4763 SourceLocation OMPIteratorExpr::getAssignLoc(unsigned I) const {
4764   return getTrailingObjects<
4765       SourceLocation>()[I * static_cast<int>(RangeLocOffset::Total) +
4766                         static_cast<int>(RangeLocOffset::AssignLoc)];
4767 }
4768 
4769 SourceLocation OMPIteratorExpr::getColonLoc(unsigned I) const {
4770   return getTrailingObjects<
4771       SourceLocation>()[I * static_cast<int>(RangeLocOffset::Total) +
4772                         static_cast<int>(RangeLocOffset::FirstColonLoc)];
4773 }
4774 
4775 SourceLocation OMPIteratorExpr::getSecondColonLoc(unsigned I) const {
4776   return getTrailingObjects<
4777       SourceLocation>()[I * static_cast<int>(RangeLocOffset::Total) +
4778                         static_cast<int>(RangeLocOffset::SecondColonLoc)];
4779 }
4780 
4781 void OMPIteratorExpr::setHelper(unsigned I, const OMPIteratorHelperData &D) {
4782   getTrailingObjects<OMPIteratorHelperData>()[I] = D;
4783 }
4784 
4785 OMPIteratorHelperData &OMPIteratorExpr::getHelper(unsigned I) {
4786   return getTrailingObjects<OMPIteratorHelperData>()[I];
4787 }
4788 
4789 const OMPIteratorHelperData &OMPIteratorExpr::getHelper(unsigned I) const {
4790   return getTrailingObjects<OMPIteratorHelperData>()[I];
4791 }
4792 
4793 OMPIteratorExpr::OMPIteratorExpr(
4794     QualType ExprTy, SourceLocation IteratorKwLoc, SourceLocation L,
4795     SourceLocation R, ArrayRef<OMPIteratorExpr::IteratorDefinition> Data,
4796     ArrayRef<OMPIteratorHelperData> Helpers)
4797     : Expr(OMPIteratorExprClass, ExprTy, VK_LValue, OK_Ordinary),
4798       IteratorKwLoc(IteratorKwLoc), LPLoc(L), RPLoc(R),
4799       NumIterators(Data.size()) {
4800   for (unsigned I = 0, E = Data.size(); I < E; ++I) {
4801     const IteratorDefinition &D = Data[I];
4802     setIteratorDeclaration(I, D.IteratorDecl);
4803     setAssignmentLoc(I, D.AssignmentLoc);
4804     setIteratorRange(I, D.Range.Begin, D.ColonLoc, D.Range.End,
4805                      D.SecondColonLoc, D.Range.Step);
4806     setHelper(I, Helpers[I]);
4807   }
4808   setDependence(computeDependence(this));
4809 }
4810 
4811 OMPIteratorExpr *
4812 OMPIteratorExpr::Create(const ASTContext &Context, QualType T,
4813                         SourceLocation IteratorKwLoc, SourceLocation L,
4814                         SourceLocation R,
4815                         ArrayRef<OMPIteratorExpr::IteratorDefinition> Data,
4816                         ArrayRef<OMPIteratorHelperData> Helpers) {
4817   assert(Data.size() == Helpers.size() &&
4818          "Data and helpers must have the same size.");
4819   void *Mem = Context.Allocate(
4820       totalSizeToAlloc<Decl *, Expr *, SourceLocation, OMPIteratorHelperData>(
4821           Data.size(), Data.size() * static_cast<int>(RangeExprOffset::Total),
4822           Data.size() * static_cast<int>(RangeLocOffset::Total),
4823           Helpers.size()),
4824       alignof(OMPIteratorExpr));
4825   return new (Mem) OMPIteratorExpr(T, IteratorKwLoc, L, R, Data, Helpers);
4826 }
4827 
4828 OMPIteratorExpr *OMPIteratorExpr::CreateEmpty(const ASTContext &Context,
4829                                               unsigned NumIterators) {
4830   void *Mem = Context.Allocate(
4831       totalSizeToAlloc<Decl *, Expr *, SourceLocation, OMPIteratorHelperData>(
4832           NumIterators, NumIterators * static_cast<int>(RangeExprOffset::Total),
4833           NumIterators * static_cast<int>(RangeLocOffset::Total), NumIterators),
4834       alignof(OMPIteratorExpr));
4835   return new (Mem) OMPIteratorExpr(EmptyShell(), NumIterators);
4836 }
4837