1 //===--- SemaExpr.cpp - Semantic Analysis for Expressions -----------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 //  This file implements semantic analysis for expressions.
11 //
12 //===----------------------------------------------------------------------===//
13 
14 #include "clang/Sema/SemaInternal.h"
15 #include "TreeTransform.h"
16 #include "clang/AST/ASTConsumer.h"
17 #include "clang/AST/ASTContext.h"
18 #include "clang/AST/ASTLambda.h"
19 #include "clang/AST/ASTMutationListener.h"
20 #include "clang/AST/CXXInheritance.h"
21 #include "clang/AST/DeclObjC.h"
22 #include "clang/AST/DeclTemplate.h"
23 #include "clang/AST/EvaluatedExprVisitor.h"
24 #include "clang/AST/Expr.h"
25 #include "clang/AST/ExprCXX.h"
26 #include "clang/AST/ExprObjC.h"
27 #include "clang/AST/ExprOpenMP.h"
28 #include "clang/AST/RecursiveASTVisitor.h"
29 #include "clang/AST/TypeLoc.h"
30 #include "clang/Basic/PartialDiagnostic.h"
31 #include "clang/Basic/SourceManager.h"
32 #include "clang/Basic/TargetInfo.h"
33 #include "clang/Lex/LiteralSupport.h"
34 #include "clang/Lex/Preprocessor.h"
35 #include "clang/Sema/AnalysisBasedWarnings.h"
36 #include "clang/Sema/DeclSpec.h"
37 #include "clang/Sema/DelayedDiagnostic.h"
38 #include "clang/Sema/Designator.h"
39 #include "clang/Sema/Initialization.h"
40 #include "clang/Sema/Lookup.h"
41 #include "clang/Sema/ParsedTemplate.h"
42 #include "clang/Sema/Scope.h"
43 #include "clang/Sema/ScopeInfo.h"
44 #include "clang/Sema/SemaFixItUtils.h"
45 #include "clang/Sema/Template.h"
46 #include "llvm/Support/ConvertUTF.h"
47 using namespace clang;
48 using namespace sema;
49 
50 /// \brief Determine whether the use of this declaration is valid, without
51 /// emitting diagnostics.
52 bool Sema::CanUseDecl(NamedDecl *D, bool TreatUnavailableAsInvalid) {
53   // See if this is an auto-typed variable whose initializer we are parsing.
54   if (ParsingInitForAutoVars.count(D))
55     return false;
56 
57   // See if this is a deleted function.
58   if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
59     if (FD->isDeleted())
60       return false;
61 
62     // If the function has a deduced return type, and we can't deduce it,
63     // then we can't use it either.
64     if (getLangOpts().CPlusPlus14 && FD->getReturnType()->isUndeducedType() &&
65         DeduceReturnType(FD, SourceLocation(), /*Diagnose*/ false))
66       return false;
67   }
68 
69   // See if this function is unavailable.
70   if (TreatUnavailableAsInvalid && D->getAvailability() == AR_Unavailable &&
71       cast<Decl>(CurContext)->getAvailability() != AR_Unavailable)
72     return false;
73 
74   return true;
75 }
76 
77 static void DiagnoseUnusedOfDecl(Sema &S, NamedDecl *D, SourceLocation Loc) {
78   // Warn if this is used but marked unused.
79   if (const auto *A = D->getAttr<UnusedAttr>()) {
80     // [[maybe_unused]] should not diagnose uses, but __attribute__((unused))
81     // should diagnose them.
82     if (A->getSemanticSpelling() != UnusedAttr::CXX11_maybe_unused) {
83       const Decl *DC = cast_or_null<Decl>(S.getCurObjCLexicalContext());
84       if (DC && !DC->hasAttr<UnusedAttr>())
85         S.Diag(Loc, diag::warn_used_but_marked_unused) << D->getDeclName();
86     }
87   }
88 }
89 
90 static bool HasRedeclarationWithoutAvailabilityInCategory(const Decl *D) {
91   const auto *OMD = dyn_cast<ObjCMethodDecl>(D);
92   if (!OMD)
93     return false;
94   const ObjCInterfaceDecl *OID = OMD->getClassInterface();
95   if (!OID)
96     return false;
97 
98   for (const ObjCCategoryDecl *Cat : OID->visible_categories())
99     if (ObjCMethodDecl *CatMeth =
100             Cat->getMethod(OMD->getSelector(), OMD->isInstanceMethod()))
101       if (!CatMeth->hasAttr<AvailabilityAttr>())
102         return true;
103   return false;
104 }
105 
106 static AvailabilityResult
107 DiagnoseAvailabilityOfDecl(Sema &S, NamedDecl *D, SourceLocation Loc,
108                            const ObjCInterfaceDecl *UnknownObjCClass,
109                            bool ObjCPropertyAccess) {
110   // See if this declaration is unavailable or deprecated.
111   std::string Message;
112   AvailabilityResult Result = D->getAvailability(&Message);
113 
114   // For typedefs, if the typedef declaration appears available look
115   // to the underlying type to see if it is more restrictive.
116   while (const TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D)) {
117     if (Result == AR_Available) {
118       if (const TagType *TT = TD->getUnderlyingType()->getAs<TagType>()) {
119         D = TT->getDecl();
120         Result = D->getAvailability(&Message);
121         continue;
122       }
123     }
124     break;
125   }
126 
127   // Forward class declarations get their attributes from their definition.
128   if (ObjCInterfaceDecl *IDecl = dyn_cast<ObjCInterfaceDecl>(D)) {
129     if (IDecl->getDefinition()) {
130       D = IDecl->getDefinition();
131       Result = D->getAvailability(&Message);
132     }
133   }
134 
135   if (const EnumConstantDecl *ECD = dyn_cast<EnumConstantDecl>(D))
136     if (Result == AR_Available) {
137       const DeclContext *DC = ECD->getDeclContext();
138       if (const EnumDecl *TheEnumDecl = dyn_cast<EnumDecl>(DC))
139         Result = TheEnumDecl->getAvailability(&Message);
140     }
141 
142   const ObjCPropertyDecl *ObjCPDecl = nullptr;
143   if (Result == AR_Deprecated || Result == AR_Unavailable ||
144       Result == AR_NotYetIntroduced) {
145     if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
146       if (const ObjCPropertyDecl *PD = MD->findPropertyDecl()) {
147         AvailabilityResult PDeclResult = PD->getAvailability(nullptr);
148         if (PDeclResult == Result)
149           ObjCPDecl = PD;
150       }
151     }
152   }
153 
154   switch (Result) {
155     case AR_Available:
156       break;
157 
158     case AR_Deprecated:
159       if (S.getCurContextAvailability() != AR_Deprecated)
160         S.EmitAvailabilityWarning(Sema::AD_Deprecation,
161                                   D, Message, Loc, UnknownObjCClass, ObjCPDecl,
162                                   ObjCPropertyAccess);
163       break;
164 
165     case AR_NotYetIntroduced: {
166       // Don't do this for enums, they can't be redeclared.
167       if (isa<EnumConstantDecl>(D) || isa<EnumDecl>(D))
168         break;
169 
170       bool Warn = !D->getAttr<AvailabilityAttr>()->isInherited();
171       // Objective-C method declarations in categories are not modelled as
172       // redeclarations, so manually look for a redeclaration in a category
173       // if necessary.
174       if (Warn && HasRedeclarationWithoutAvailabilityInCategory(D))
175         Warn = false;
176       // In general, D will point to the most recent redeclaration. However,
177       // for `@class A;` decls, this isn't true -- manually go through the
178       // redecl chain in that case.
179       if (Warn && isa<ObjCInterfaceDecl>(D))
180         for (Decl *Redecl = D->getMostRecentDecl(); Redecl && Warn;
181              Redecl = Redecl->getPreviousDecl())
182           if (!Redecl->hasAttr<AvailabilityAttr>() ||
183               Redecl->getAttr<AvailabilityAttr>()->isInherited())
184             Warn = false;
185 
186       if (Warn)
187         S.EmitAvailabilityWarning(Sema::AD_Partial, D, Message, Loc,
188                                   UnknownObjCClass, ObjCPDecl,
189                                   ObjCPropertyAccess);
190       break;
191     }
192 
193     case AR_Unavailable:
194       if (S.getCurContextAvailability() != AR_Unavailable)
195         S.EmitAvailabilityWarning(Sema::AD_Unavailable,
196                                   D, Message, Loc, UnknownObjCClass, ObjCPDecl,
197                                   ObjCPropertyAccess);
198       break;
199 
200     }
201     return Result;
202 }
203 
204 /// \brief Emit a note explaining that this function is deleted.
205 void Sema::NoteDeletedFunction(FunctionDecl *Decl) {
206   assert(Decl->isDeleted());
207 
208   CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Decl);
209 
210   if (Method && Method->isDeleted() && Method->isDefaulted()) {
211     // If the method was explicitly defaulted, point at that declaration.
212     if (!Method->isImplicit())
213       Diag(Decl->getLocation(), diag::note_implicitly_deleted);
214 
215     // Try to diagnose why this special member function was implicitly
216     // deleted. This might fail, if that reason no longer applies.
217     CXXSpecialMember CSM = getSpecialMember(Method);
218     if (CSM != CXXInvalid)
219       ShouldDeleteSpecialMember(Method, CSM, /*Diagnose=*/true);
220 
221     return;
222   }
223 
224   if (CXXConstructorDecl *CD = dyn_cast<CXXConstructorDecl>(Decl)) {
225     if (CXXConstructorDecl *BaseCD =
226             const_cast<CXXConstructorDecl*>(CD->getInheritedConstructor())) {
227       Diag(Decl->getLocation(), diag::note_inherited_deleted_here);
228       if (BaseCD->isDeleted()) {
229         NoteDeletedFunction(BaseCD);
230       } else {
231         // FIXME: An explanation of why exactly it can't be inherited
232         // would be nice.
233         Diag(BaseCD->getLocation(), diag::note_cannot_inherit);
234       }
235       return;
236     }
237   }
238 
239   Diag(Decl->getLocation(), diag::note_availability_specified_here)
240     << Decl << true;
241 }
242 
243 /// \brief Determine whether a FunctionDecl was ever declared with an
244 /// explicit storage class.
245 static bool hasAnyExplicitStorageClass(const FunctionDecl *D) {
246   for (auto I : D->redecls()) {
247     if (I->getStorageClass() != SC_None)
248       return true;
249   }
250   return false;
251 }
252 
253 /// \brief Check whether we're in an extern inline function and referring to a
254 /// variable or function with internal linkage (C11 6.7.4p3).
255 ///
256 /// This is only a warning because we used to silently accept this code, but
257 /// in many cases it will not behave correctly. This is not enabled in C++ mode
258 /// because the restriction language is a bit weaker (C++11 [basic.def.odr]p6)
259 /// and so while there may still be user mistakes, most of the time we can't
260 /// prove that there are errors.
261 static void diagnoseUseOfInternalDeclInInlineFunction(Sema &S,
262                                                       const NamedDecl *D,
263                                                       SourceLocation Loc) {
264   // This is disabled under C++; there are too many ways for this to fire in
265   // contexts where the warning is a false positive, or where it is technically
266   // correct but benign.
267   if (S.getLangOpts().CPlusPlus)
268     return;
269 
270   // Check if this is an inlined function or method.
271   FunctionDecl *Current = S.getCurFunctionDecl();
272   if (!Current)
273     return;
274   if (!Current->isInlined())
275     return;
276   if (!Current->isExternallyVisible())
277     return;
278 
279   // Check if the decl has internal linkage.
280   if (D->getFormalLinkage() != InternalLinkage)
281     return;
282 
283   // Downgrade from ExtWarn to Extension if
284   //  (1) the supposedly external inline function is in the main file,
285   //      and probably won't be included anywhere else.
286   //  (2) the thing we're referencing is a pure function.
287   //  (3) the thing we're referencing is another inline function.
288   // This last can give us false negatives, but it's better than warning on
289   // wrappers for simple C library functions.
290   const FunctionDecl *UsedFn = dyn_cast<FunctionDecl>(D);
291   bool DowngradeWarning = S.getSourceManager().isInMainFile(Loc);
292   if (!DowngradeWarning && UsedFn)
293     DowngradeWarning = UsedFn->isInlined() || UsedFn->hasAttr<ConstAttr>();
294 
295   S.Diag(Loc, DowngradeWarning ? diag::ext_internal_in_extern_inline_quiet
296                                : diag::ext_internal_in_extern_inline)
297     << /*IsVar=*/!UsedFn << D;
298 
299   S.MaybeSuggestAddingStaticToDecl(Current);
300 
301   S.Diag(D->getCanonicalDecl()->getLocation(), diag::note_entity_declared_at)
302       << D;
303 }
304 
305 void Sema::MaybeSuggestAddingStaticToDecl(const FunctionDecl *Cur) {
306   const FunctionDecl *First = Cur->getFirstDecl();
307 
308   // Suggest "static" on the function, if possible.
309   if (!hasAnyExplicitStorageClass(First)) {
310     SourceLocation DeclBegin = First->getSourceRange().getBegin();
311     Diag(DeclBegin, diag::note_convert_inline_to_static)
312       << Cur << FixItHint::CreateInsertion(DeclBegin, "static ");
313   }
314 }
315 
316 /// \brief Determine whether the use of this declaration is valid, and
317 /// emit any corresponding diagnostics.
318 ///
319 /// This routine diagnoses various problems with referencing
320 /// declarations that can occur when using a declaration. For example,
321 /// it might warn if a deprecated or unavailable declaration is being
322 /// used, or produce an error (and return true) if a C++0x deleted
323 /// function is being used.
324 ///
325 /// \returns true if there was an error (this declaration cannot be
326 /// referenced), false otherwise.
327 ///
328 bool Sema::DiagnoseUseOfDecl(NamedDecl *D, SourceLocation Loc,
329                              const ObjCInterfaceDecl *UnknownObjCClass,
330                              bool ObjCPropertyAccess) {
331   if (getLangOpts().CPlusPlus && isa<FunctionDecl>(D)) {
332     // If there were any diagnostics suppressed by template argument deduction,
333     // emit them now.
334     auto Pos = SuppressedDiagnostics.find(D->getCanonicalDecl());
335     if (Pos != SuppressedDiagnostics.end()) {
336       for (const PartialDiagnosticAt &Suppressed : Pos->second)
337         Diag(Suppressed.first, Suppressed.second);
338 
339       // Clear out the list of suppressed diagnostics, so that we don't emit
340       // them again for this specialization. However, we don't obsolete this
341       // entry from the table, because we want to avoid ever emitting these
342       // diagnostics again.
343       Pos->second.clear();
344     }
345 
346     // C++ [basic.start.main]p3:
347     //   The function 'main' shall not be used within a program.
348     if (cast<FunctionDecl>(D)->isMain())
349       Diag(Loc, diag::ext_main_used);
350   }
351 
352   // See if this is an auto-typed variable whose initializer we are parsing.
353   if (ParsingInitForAutoVars.count(D)) {
354     const AutoType *AT = cast<VarDecl>(D)->getType()->getContainedAutoType();
355 
356     Diag(Loc, diag::err_auto_variable_cannot_appear_in_own_initializer)
357       << D->getDeclName() << (unsigned)AT->getKeyword();
358     return true;
359   }
360 
361   // See if this is a deleted function.
362   if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
363     if (FD->isDeleted()) {
364       Diag(Loc, diag::err_deleted_function_use);
365       NoteDeletedFunction(FD);
366       return true;
367     }
368 
369     // If the function has a deduced return type, and we can't deduce it,
370     // then we can't use it either.
371     if (getLangOpts().CPlusPlus14 && FD->getReturnType()->isUndeducedType() &&
372         DeduceReturnType(FD, Loc))
373       return true;
374   }
375 
376   // [OpenMP 4.0], 2.15 declare reduction Directive, Restrictions
377   // Only the variables omp_in and omp_out are allowed in the combiner.
378   // Only the variables omp_priv and omp_orig are allowed in the
379   // initializer-clause.
380   auto *DRD = dyn_cast<OMPDeclareReductionDecl>(CurContext);
381   if (LangOpts.OpenMP && DRD && !CurContext->containsDecl(D) &&
382       isa<VarDecl>(D)) {
383     Diag(Loc, diag::err_omp_wrong_var_in_declare_reduction)
384         << getCurFunction()->HasOMPDeclareReductionCombiner;
385     Diag(D->getLocation(), diag::note_entity_declared_at) << D;
386     return true;
387   }
388   DiagnoseAvailabilityOfDecl(*this, D, Loc, UnknownObjCClass,
389                              ObjCPropertyAccess);
390 
391   DiagnoseUnusedOfDecl(*this, D, Loc);
392 
393   diagnoseUseOfInternalDeclInInlineFunction(*this, D, Loc);
394 
395   return false;
396 }
397 
398 /// \brief Retrieve the message suffix that should be added to a
399 /// diagnostic complaining about the given function being deleted or
400 /// unavailable.
401 std::string Sema::getDeletedOrUnavailableSuffix(const FunctionDecl *FD) {
402   std::string Message;
403   if (FD->getAvailability(&Message))
404     return ": " + Message;
405 
406   return std::string();
407 }
408 
409 /// DiagnoseSentinelCalls - This routine checks whether a call or
410 /// message-send is to a declaration with the sentinel attribute, and
411 /// if so, it checks that the requirements of the sentinel are
412 /// satisfied.
413 void Sema::DiagnoseSentinelCalls(NamedDecl *D, SourceLocation Loc,
414                                  ArrayRef<Expr *> Args) {
415   const SentinelAttr *attr = D->getAttr<SentinelAttr>();
416   if (!attr)
417     return;
418 
419   // The number of formal parameters of the declaration.
420   unsigned numFormalParams;
421 
422   // The kind of declaration.  This is also an index into a %select in
423   // the diagnostic.
424   enum CalleeType { CT_Function, CT_Method, CT_Block } calleeType;
425 
426   if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
427     numFormalParams = MD->param_size();
428     calleeType = CT_Method;
429   } else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
430     numFormalParams = FD->param_size();
431     calleeType = CT_Function;
432   } else if (isa<VarDecl>(D)) {
433     QualType type = cast<ValueDecl>(D)->getType();
434     const FunctionType *fn = nullptr;
435     if (const PointerType *ptr = type->getAs<PointerType>()) {
436       fn = ptr->getPointeeType()->getAs<FunctionType>();
437       if (!fn) return;
438       calleeType = CT_Function;
439     } else if (const BlockPointerType *ptr = type->getAs<BlockPointerType>()) {
440       fn = ptr->getPointeeType()->castAs<FunctionType>();
441       calleeType = CT_Block;
442     } else {
443       return;
444     }
445 
446     if (const FunctionProtoType *proto = dyn_cast<FunctionProtoType>(fn)) {
447       numFormalParams = proto->getNumParams();
448     } else {
449       numFormalParams = 0;
450     }
451   } else {
452     return;
453   }
454 
455   // "nullPos" is the number of formal parameters at the end which
456   // effectively count as part of the variadic arguments.  This is
457   // useful if you would prefer to not have *any* formal parameters,
458   // but the language forces you to have at least one.
459   unsigned nullPos = attr->getNullPos();
460   assert((nullPos == 0 || nullPos == 1) && "invalid null position on sentinel");
461   numFormalParams = (nullPos > numFormalParams ? 0 : numFormalParams - nullPos);
462 
463   // The number of arguments which should follow the sentinel.
464   unsigned numArgsAfterSentinel = attr->getSentinel();
465 
466   // If there aren't enough arguments for all the formal parameters,
467   // the sentinel, and the args after the sentinel, complain.
468   if (Args.size() < numFormalParams + numArgsAfterSentinel + 1) {
469     Diag(Loc, diag::warn_not_enough_argument) << D->getDeclName();
470     Diag(D->getLocation(), diag::note_sentinel_here) << int(calleeType);
471     return;
472   }
473 
474   // Otherwise, find the sentinel expression.
475   Expr *sentinelExpr = Args[Args.size() - numArgsAfterSentinel - 1];
476   if (!sentinelExpr) return;
477   if (sentinelExpr->isValueDependent()) return;
478   if (Context.isSentinelNullExpr(sentinelExpr)) return;
479 
480   // Pick a reasonable string to insert.  Optimistically use 'nil', 'nullptr',
481   // or 'NULL' if those are actually defined in the context.  Only use
482   // 'nil' for ObjC methods, where it's much more likely that the
483   // variadic arguments form a list of object pointers.
484   SourceLocation MissingNilLoc
485     = getLocForEndOfToken(sentinelExpr->getLocEnd());
486   std::string NullValue;
487   if (calleeType == CT_Method && PP.isMacroDefined("nil"))
488     NullValue = "nil";
489   else if (getLangOpts().CPlusPlus11)
490     NullValue = "nullptr";
491   else if (PP.isMacroDefined("NULL"))
492     NullValue = "NULL";
493   else
494     NullValue = "(void*) 0";
495 
496   if (MissingNilLoc.isInvalid())
497     Diag(Loc, diag::warn_missing_sentinel) << int(calleeType);
498   else
499     Diag(MissingNilLoc, diag::warn_missing_sentinel)
500       << int(calleeType)
501       << FixItHint::CreateInsertion(MissingNilLoc, ", " + NullValue);
502   Diag(D->getLocation(), diag::note_sentinel_here) << int(calleeType);
503 }
504 
505 SourceRange Sema::getExprRange(Expr *E) const {
506   return E ? E->getSourceRange() : SourceRange();
507 }
508 
509 //===----------------------------------------------------------------------===//
510 //  Standard Promotions and Conversions
511 //===----------------------------------------------------------------------===//
512 
513 /// DefaultFunctionArrayConversion (C99 6.3.2.1p3, C99 6.3.2.1p4).
514 ExprResult Sema::DefaultFunctionArrayConversion(Expr *E, bool Diagnose) {
515   // Handle any placeholder expressions which made it here.
516   if (E->getType()->isPlaceholderType()) {
517     ExprResult result = CheckPlaceholderExpr(E);
518     if (result.isInvalid()) return ExprError();
519     E = result.get();
520   }
521 
522   QualType Ty = E->getType();
523   assert(!Ty.isNull() && "DefaultFunctionArrayConversion - missing type");
524 
525   if (Ty->isFunctionType()) {
526     // If we are here, we are not calling a function but taking
527     // its address (which is not allowed in OpenCL v1.0 s6.8.a.3).
528     if (getLangOpts().OpenCL) {
529       if (Diagnose)
530         Diag(E->getExprLoc(), diag::err_opencl_taking_function_address);
531       return ExprError();
532     }
533 
534     if (auto *DRE = dyn_cast<DeclRefExpr>(E->IgnoreParenCasts()))
535       if (auto *FD = dyn_cast<FunctionDecl>(DRE->getDecl()))
536         if (!checkAddressOfFunctionIsAvailable(FD, Diagnose, E->getExprLoc()))
537           return ExprError();
538 
539     E = ImpCastExprToType(E, Context.getPointerType(Ty),
540                           CK_FunctionToPointerDecay).get();
541   } else if (Ty->isArrayType()) {
542     // In C90 mode, arrays only promote to pointers if the array expression is
543     // an lvalue.  The relevant legalese is C90 6.2.2.1p3: "an lvalue that has
544     // type 'array of type' is converted to an expression that has type 'pointer
545     // to type'...".  In C99 this was changed to: C99 6.3.2.1p3: "an expression
546     // that has type 'array of type' ...".  The relevant change is "an lvalue"
547     // (C90) to "an expression" (C99).
548     //
549     // C++ 4.2p1:
550     // An lvalue or rvalue of type "array of N T" or "array of unknown bound of
551     // T" can be converted to an rvalue of type "pointer to T".
552     //
553     if (getLangOpts().C99 || getLangOpts().CPlusPlus || E->isLValue())
554       E = ImpCastExprToType(E, Context.getArrayDecayedType(Ty),
555                             CK_ArrayToPointerDecay).get();
556   }
557   return E;
558 }
559 
560 static void CheckForNullPointerDereference(Sema &S, Expr *E) {
561   // Check to see if we are dereferencing a null pointer.  If so,
562   // and if not volatile-qualified, this is undefined behavior that the
563   // optimizer will delete, so warn about it.  People sometimes try to use this
564   // to get a deterministic trap and are surprised by clang's behavior.  This
565   // only handles the pattern "*null", which is a very syntactic check.
566   if (UnaryOperator *UO = dyn_cast<UnaryOperator>(E->IgnoreParenCasts()))
567     if (UO->getOpcode() == UO_Deref &&
568         UO->getSubExpr()->IgnoreParenCasts()->
569           isNullPointerConstant(S.Context, Expr::NPC_ValueDependentIsNotNull) &&
570         !UO->getType().isVolatileQualified()) {
571     S.DiagRuntimeBehavior(UO->getOperatorLoc(), UO,
572                           S.PDiag(diag::warn_indirection_through_null)
573                             << UO->getSubExpr()->getSourceRange());
574     S.DiagRuntimeBehavior(UO->getOperatorLoc(), UO,
575                         S.PDiag(diag::note_indirection_through_null));
576   }
577 }
578 
579 static void DiagnoseDirectIsaAccess(Sema &S, const ObjCIvarRefExpr *OIRE,
580                                     SourceLocation AssignLoc,
581                                     const Expr* RHS) {
582   const ObjCIvarDecl *IV = OIRE->getDecl();
583   if (!IV)
584     return;
585 
586   DeclarationName MemberName = IV->getDeclName();
587   IdentifierInfo *Member = MemberName.getAsIdentifierInfo();
588   if (!Member || !Member->isStr("isa"))
589     return;
590 
591   const Expr *Base = OIRE->getBase();
592   QualType BaseType = Base->getType();
593   if (OIRE->isArrow())
594     BaseType = BaseType->getPointeeType();
595   if (const ObjCObjectType *OTy = BaseType->getAs<ObjCObjectType>())
596     if (ObjCInterfaceDecl *IDecl = OTy->getInterface()) {
597       ObjCInterfaceDecl *ClassDeclared = nullptr;
598       ObjCIvarDecl *IV = IDecl->lookupInstanceVariable(Member, ClassDeclared);
599       if (!ClassDeclared->getSuperClass()
600           && (*ClassDeclared->ivar_begin()) == IV) {
601         if (RHS) {
602           NamedDecl *ObjectSetClass =
603             S.LookupSingleName(S.TUScope,
604                                &S.Context.Idents.get("object_setClass"),
605                                SourceLocation(), S.LookupOrdinaryName);
606           if (ObjectSetClass) {
607             SourceLocation RHSLocEnd = S.getLocForEndOfToken(RHS->getLocEnd());
608             S.Diag(OIRE->getExprLoc(), diag::warn_objc_isa_assign) <<
609             FixItHint::CreateInsertion(OIRE->getLocStart(), "object_setClass(") <<
610             FixItHint::CreateReplacement(SourceRange(OIRE->getOpLoc(),
611                                                      AssignLoc), ",") <<
612             FixItHint::CreateInsertion(RHSLocEnd, ")");
613           }
614           else
615             S.Diag(OIRE->getLocation(), diag::warn_objc_isa_assign);
616         } else {
617           NamedDecl *ObjectGetClass =
618             S.LookupSingleName(S.TUScope,
619                                &S.Context.Idents.get("object_getClass"),
620                                SourceLocation(), S.LookupOrdinaryName);
621           if (ObjectGetClass)
622             S.Diag(OIRE->getExprLoc(), diag::warn_objc_isa_use) <<
623             FixItHint::CreateInsertion(OIRE->getLocStart(), "object_getClass(") <<
624             FixItHint::CreateReplacement(
625                                          SourceRange(OIRE->getOpLoc(),
626                                                      OIRE->getLocEnd()), ")");
627           else
628             S.Diag(OIRE->getLocation(), diag::warn_objc_isa_use);
629         }
630         S.Diag(IV->getLocation(), diag::note_ivar_decl);
631       }
632     }
633 }
634 
635 ExprResult Sema::DefaultLvalueConversion(Expr *E) {
636   // Handle any placeholder expressions which made it here.
637   if (E->getType()->isPlaceholderType()) {
638     ExprResult result = CheckPlaceholderExpr(E);
639     if (result.isInvalid()) return ExprError();
640     E = result.get();
641   }
642 
643   // C++ [conv.lval]p1:
644   //   A glvalue of a non-function, non-array type T can be
645   //   converted to a prvalue.
646   if (!E->isGLValue()) return E;
647 
648   QualType T = E->getType();
649   assert(!T.isNull() && "r-value conversion on typeless expression?");
650 
651   // We don't want to throw lvalue-to-rvalue casts on top of
652   // expressions of certain types in C++.
653   if (getLangOpts().CPlusPlus &&
654       (E->getType() == Context.OverloadTy ||
655        T->isDependentType() ||
656        T->isRecordType()))
657     return E;
658 
659   // The C standard is actually really unclear on this point, and
660   // DR106 tells us what the result should be but not why.  It's
661   // generally best to say that void types just doesn't undergo
662   // lvalue-to-rvalue at all.  Note that expressions of unqualified
663   // 'void' type are never l-values, but qualified void can be.
664   if (T->isVoidType())
665     return E;
666 
667   // OpenCL usually rejects direct accesses to values of 'half' type.
668   if (getLangOpts().OpenCL && !getOpenCLOptions().cl_khr_fp16 &&
669       T->isHalfType()) {
670     Diag(E->getExprLoc(), diag::err_opencl_half_load_store)
671       << 0 << T;
672     return ExprError();
673   }
674 
675   CheckForNullPointerDereference(*this, E);
676   if (const ObjCIsaExpr *OISA = dyn_cast<ObjCIsaExpr>(E->IgnoreParenCasts())) {
677     NamedDecl *ObjectGetClass = LookupSingleName(TUScope,
678                                      &Context.Idents.get("object_getClass"),
679                                      SourceLocation(), LookupOrdinaryName);
680     if (ObjectGetClass)
681       Diag(E->getExprLoc(), diag::warn_objc_isa_use) <<
682         FixItHint::CreateInsertion(OISA->getLocStart(), "object_getClass(") <<
683         FixItHint::CreateReplacement(
684                     SourceRange(OISA->getOpLoc(), OISA->getIsaMemberLoc()), ")");
685     else
686       Diag(E->getExprLoc(), diag::warn_objc_isa_use);
687   }
688   else if (const ObjCIvarRefExpr *OIRE =
689             dyn_cast<ObjCIvarRefExpr>(E->IgnoreParenCasts()))
690     DiagnoseDirectIsaAccess(*this, OIRE, SourceLocation(), /* Expr*/nullptr);
691 
692   // C++ [conv.lval]p1:
693   //   [...] If T is a non-class type, the type of the prvalue is the
694   //   cv-unqualified version of T. Otherwise, the type of the
695   //   rvalue is T.
696   //
697   // C99 6.3.2.1p2:
698   //   If the lvalue has qualified type, the value has the unqualified
699   //   version of the type of the lvalue; otherwise, the value has the
700   //   type of the lvalue.
701   if (T.hasQualifiers())
702     T = T.getUnqualifiedType();
703 
704   // Under the MS ABI, lock down the inheritance model now.
705   if (T->isMemberPointerType() &&
706       Context.getTargetInfo().getCXXABI().isMicrosoft())
707     (void)isCompleteType(E->getExprLoc(), T);
708 
709   UpdateMarkingForLValueToRValue(E);
710 
711   // Loading a __weak object implicitly retains the value, so we need a cleanup to
712   // balance that.
713   if (getLangOpts().ObjCAutoRefCount &&
714       E->getType().getObjCLifetime() == Qualifiers::OCL_Weak)
715     ExprNeedsCleanups = true;
716 
717   ExprResult Res = ImplicitCastExpr::Create(Context, T, CK_LValueToRValue, E,
718                                             nullptr, VK_RValue);
719 
720   // C11 6.3.2.1p2:
721   //   ... if the lvalue has atomic type, the value has the non-atomic version
722   //   of the type of the lvalue ...
723   if (const AtomicType *Atomic = T->getAs<AtomicType>()) {
724     T = Atomic->getValueType().getUnqualifiedType();
725     Res = ImplicitCastExpr::Create(Context, T, CK_AtomicToNonAtomic, Res.get(),
726                                    nullptr, VK_RValue);
727   }
728 
729   return Res;
730 }
731 
732 ExprResult Sema::DefaultFunctionArrayLvalueConversion(Expr *E, bool Diagnose) {
733   ExprResult Res = DefaultFunctionArrayConversion(E, Diagnose);
734   if (Res.isInvalid())
735     return ExprError();
736   Res = DefaultLvalueConversion(Res.get());
737   if (Res.isInvalid())
738     return ExprError();
739   return Res;
740 }
741 
742 /// CallExprUnaryConversions - a special case of an unary conversion
743 /// performed on a function designator of a call expression.
744 ExprResult Sema::CallExprUnaryConversions(Expr *E) {
745   QualType Ty = E->getType();
746   ExprResult Res = E;
747   // Only do implicit cast for a function type, but not for a pointer
748   // to function type.
749   if (Ty->isFunctionType()) {
750     Res = ImpCastExprToType(E, Context.getPointerType(Ty),
751                             CK_FunctionToPointerDecay).get();
752     if (Res.isInvalid())
753       return ExprError();
754   }
755   Res = DefaultLvalueConversion(Res.get());
756   if (Res.isInvalid())
757     return ExprError();
758   return Res.get();
759 }
760 
761 /// UsualUnaryConversions - Performs various conversions that are common to most
762 /// operators (C99 6.3). The conversions of array and function types are
763 /// sometimes suppressed. For example, the array->pointer conversion doesn't
764 /// apply if the array is an argument to the sizeof or address (&) operators.
765 /// In these instances, this routine should *not* be called.
766 ExprResult Sema::UsualUnaryConversions(Expr *E) {
767   // First, convert to an r-value.
768   ExprResult Res = DefaultFunctionArrayLvalueConversion(E);
769   if (Res.isInvalid())
770     return ExprError();
771   E = Res.get();
772 
773   QualType Ty = E->getType();
774   assert(!Ty.isNull() && "UsualUnaryConversions - missing type");
775 
776   // Half FP have to be promoted to float unless it is natively supported
777   if (Ty->isHalfType() && !getLangOpts().NativeHalfType)
778     return ImpCastExprToType(Res.get(), Context.FloatTy, CK_FloatingCast);
779 
780   // Try to perform integral promotions if the object has a theoretically
781   // promotable type.
782   if (Ty->isIntegralOrUnscopedEnumerationType()) {
783     // C99 6.3.1.1p2:
784     //
785     //   The following may be used in an expression wherever an int or
786     //   unsigned int may be used:
787     //     - an object or expression with an integer type whose integer
788     //       conversion rank is less than or equal to the rank of int
789     //       and unsigned int.
790     //     - A bit-field of type _Bool, int, signed int, or unsigned int.
791     //
792     //   If an int can represent all values of the original type, the
793     //   value is converted to an int; otherwise, it is converted to an
794     //   unsigned int. These are called the integer promotions. All
795     //   other types are unchanged by the integer promotions.
796 
797     QualType PTy = Context.isPromotableBitField(E);
798     if (!PTy.isNull()) {
799       E = ImpCastExprToType(E, PTy, CK_IntegralCast).get();
800       return E;
801     }
802     if (Ty->isPromotableIntegerType()) {
803       QualType PT = Context.getPromotedIntegerType(Ty);
804       E = ImpCastExprToType(E, PT, CK_IntegralCast).get();
805       return E;
806     }
807   }
808   return E;
809 }
810 
811 /// DefaultArgumentPromotion (C99 6.5.2.2p6). Used for function calls that
812 /// do not have a prototype. Arguments that have type float or __fp16
813 /// are promoted to double. All other argument types are converted by
814 /// UsualUnaryConversions().
815 ExprResult Sema::DefaultArgumentPromotion(Expr *E) {
816   QualType Ty = E->getType();
817   assert(!Ty.isNull() && "DefaultArgumentPromotion - missing type");
818 
819   ExprResult Res = UsualUnaryConversions(E);
820   if (Res.isInvalid())
821     return ExprError();
822   E = Res.get();
823 
824   // If this is a 'float' or '__fp16' (CVR qualified or typedef) promote to
825   // double.
826   const BuiltinType *BTy = Ty->getAs<BuiltinType>();
827   if (BTy && (BTy->getKind() == BuiltinType::Half ||
828               BTy->getKind() == BuiltinType::Float))
829     E = ImpCastExprToType(E, Context.DoubleTy, CK_FloatingCast).get();
830 
831   // C++ performs lvalue-to-rvalue conversion as a default argument
832   // promotion, even on class types, but note:
833   //   C++11 [conv.lval]p2:
834   //     When an lvalue-to-rvalue conversion occurs in an unevaluated
835   //     operand or a subexpression thereof the value contained in the
836   //     referenced object is not accessed. Otherwise, if the glvalue
837   //     has a class type, the conversion copy-initializes a temporary
838   //     of type T from the glvalue and the result of the conversion
839   //     is a prvalue for the temporary.
840   // FIXME: add some way to gate this entire thing for correctness in
841   // potentially potentially evaluated contexts.
842   if (getLangOpts().CPlusPlus && E->isGLValue() && !isUnevaluatedContext()) {
843     ExprResult Temp = PerformCopyInitialization(
844                        InitializedEntity::InitializeTemporary(E->getType()),
845                                                 E->getExprLoc(), E);
846     if (Temp.isInvalid())
847       return ExprError();
848     E = Temp.get();
849   }
850 
851   return E;
852 }
853 
854 /// Determine the degree of POD-ness for an expression.
855 /// Incomplete types are considered POD, since this check can be performed
856 /// when we're in an unevaluated context.
857 Sema::VarArgKind Sema::isValidVarArgType(const QualType &Ty) {
858   if (Ty->isIncompleteType()) {
859     // C++11 [expr.call]p7:
860     //   After these conversions, if the argument does not have arithmetic,
861     //   enumeration, pointer, pointer to member, or class type, the program
862     //   is ill-formed.
863     //
864     // Since we've already performed array-to-pointer and function-to-pointer
865     // decay, the only such type in C++ is cv void. This also handles
866     // initializer lists as variadic arguments.
867     if (Ty->isVoidType())
868       return VAK_Invalid;
869 
870     if (Ty->isObjCObjectType())
871       return VAK_Invalid;
872     return VAK_Valid;
873   }
874 
875   if (Ty.isCXX98PODType(Context))
876     return VAK_Valid;
877 
878   // C++11 [expr.call]p7:
879   //   Passing a potentially-evaluated argument of class type (Clause 9)
880   //   having a non-trivial copy constructor, a non-trivial move constructor,
881   //   or a non-trivial destructor, with no corresponding parameter,
882   //   is conditionally-supported with implementation-defined semantics.
883   if (getLangOpts().CPlusPlus11 && !Ty->isDependentType())
884     if (CXXRecordDecl *Record = Ty->getAsCXXRecordDecl())
885       if (!Record->hasNonTrivialCopyConstructor() &&
886           !Record->hasNonTrivialMoveConstructor() &&
887           !Record->hasNonTrivialDestructor())
888         return VAK_ValidInCXX11;
889 
890   if (getLangOpts().ObjCAutoRefCount && Ty->isObjCLifetimeType())
891     return VAK_Valid;
892 
893   if (Ty->isObjCObjectType())
894     return VAK_Invalid;
895 
896   if (getLangOpts().MSVCCompat)
897     return VAK_MSVCUndefined;
898 
899   // FIXME: In C++11, these cases are conditionally-supported, meaning we're
900   // permitted to reject them. We should consider doing so.
901   return VAK_Undefined;
902 }
903 
904 void Sema::checkVariadicArgument(const Expr *E, VariadicCallType CT) {
905   // Don't allow one to pass an Objective-C interface to a vararg.
906   const QualType &Ty = E->getType();
907   VarArgKind VAK = isValidVarArgType(Ty);
908 
909   // Complain about passing non-POD types through varargs.
910   switch (VAK) {
911   case VAK_ValidInCXX11:
912     DiagRuntimeBehavior(
913         E->getLocStart(), nullptr,
914         PDiag(diag::warn_cxx98_compat_pass_non_pod_arg_to_vararg)
915           << Ty << CT);
916     // Fall through.
917   case VAK_Valid:
918     if (Ty->isRecordType()) {
919       // This is unlikely to be what the user intended. If the class has a
920       // 'c_str' member function, the user probably meant to call that.
921       DiagRuntimeBehavior(E->getLocStart(), nullptr,
922                           PDiag(diag::warn_pass_class_arg_to_vararg)
923                             << Ty << CT << hasCStrMethod(E) << ".c_str()");
924     }
925     break;
926 
927   case VAK_Undefined:
928   case VAK_MSVCUndefined:
929     DiagRuntimeBehavior(
930         E->getLocStart(), nullptr,
931         PDiag(diag::warn_cannot_pass_non_pod_arg_to_vararg)
932           << getLangOpts().CPlusPlus11 << Ty << CT);
933     break;
934 
935   case VAK_Invalid:
936     if (Ty->isObjCObjectType())
937       DiagRuntimeBehavior(
938           E->getLocStart(), nullptr,
939           PDiag(diag::err_cannot_pass_objc_interface_to_vararg)
940             << Ty << CT);
941     else
942       Diag(E->getLocStart(), diag::err_cannot_pass_to_vararg)
943         << isa<InitListExpr>(E) << Ty << CT;
944     break;
945   }
946 }
947 
948 /// DefaultVariadicArgumentPromotion - Like DefaultArgumentPromotion, but
949 /// will create a trap if the resulting type is not a POD type.
950 ExprResult Sema::DefaultVariadicArgumentPromotion(Expr *E, VariadicCallType CT,
951                                                   FunctionDecl *FDecl) {
952   if (const BuiltinType *PlaceholderTy = E->getType()->getAsPlaceholderType()) {
953     // Strip the unbridged-cast placeholder expression off, if applicable.
954     if (PlaceholderTy->getKind() == BuiltinType::ARCUnbridgedCast &&
955         (CT == VariadicMethod ||
956          (FDecl && FDecl->hasAttr<CFAuditedTransferAttr>()))) {
957       E = stripARCUnbridgedCast(E);
958 
959     // Otherwise, do normal placeholder checking.
960     } else {
961       ExprResult ExprRes = CheckPlaceholderExpr(E);
962       if (ExprRes.isInvalid())
963         return ExprError();
964       E = ExprRes.get();
965     }
966   }
967 
968   ExprResult ExprRes = DefaultArgumentPromotion(E);
969   if (ExprRes.isInvalid())
970     return ExprError();
971   E = ExprRes.get();
972 
973   // Diagnostics regarding non-POD argument types are
974   // emitted along with format string checking in Sema::CheckFunctionCall().
975   if (isValidVarArgType(E->getType()) == VAK_Undefined) {
976     // Turn this into a trap.
977     CXXScopeSpec SS;
978     SourceLocation TemplateKWLoc;
979     UnqualifiedId Name;
980     Name.setIdentifier(PP.getIdentifierInfo("__builtin_trap"),
981                        E->getLocStart());
982     ExprResult TrapFn = ActOnIdExpression(TUScope, SS, TemplateKWLoc,
983                                           Name, true, false);
984     if (TrapFn.isInvalid())
985       return ExprError();
986 
987     ExprResult Call = ActOnCallExpr(TUScope, TrapFn.get(),
988                                     E->getLocStart(), None,
989                                     E->getLocEnd());
990     if (Call.isInvalid())
991       return ExprError();
992 
993     ExprResult Comma = ActOnBinOp(TUScope, E->getLocStart(), tok::comma,
994                                   Call.get(), E);
995     if (Comma.isInvalid())
996       return ExprError();
997     return Comma.get();
998   }
999 
1000   if (!getLangOpts().CPlusPlus &&
1001       RequireCompleteType(E->getExprLoc(), E->getType(),
1002                           diag::err_call_incomplete_argument))
1003     return ExprError();
1004 
1005   return E;
1006 }
1007 
1008 /// \brief Converts an integer to complex float type.  Helper function of
1009 /// UsualArithmeticConversions()
1010 ///
1011 /// \return false if the integer expression is an integer type and is
1012 /// successfully converted to the complex type.
1013 static bool handleIntegerToComplexFloatConversion(Sema &S, ExprResult &IntExpr,
1014                                                   ExprResult &ComplexExpr,
1015                                                   QualType IntTy,
1016                                                   QualType ComplexTy,
1017                                                   bool SkipCast) {
1018   if (IntTy->isComplexType() || IntTy->isRealFloatingType()) return true;
1019   if (SkipCast) return false;
1020   if (IntTy->isIntegerType()) {
1021     QualType fpTy = cast<ComplexType>(ComplexTy)->getElementType();
1022     IntExpr = S.ImpCastExprToType(IntExpr.get(), fpTy, CK_IntegralToFloating);
1023     IntExpr = S.ImpCastExprToType(IntExpr.get(), ComplexTy,
1024                                   CK_FloatingRealToComplex);
1025   } else {
1026     assert(IntTy->isComplexIntegerType());
1027     IntExpr = S.ImpCastExprToType(IntExpr.get(), ComplexTy,
1028                                   CK_IntegralComplexToFloatingComplex);
1029   }
1030   return false;
1031 }
1032 
1033 /// \brief Handle arithmetic conversion with complex types.  Helper function of
1034 /// UsualArithmeticConversions()
1035 static QualType handleComplexFloatConversion(Sema &S, ExprResult &LHS,
1036                                              ExprResult &RHS, QualType LHSType,
1037                                              QualType RHSType,
1038                                              bool IsCompAssign) {
1039   // if we have an integer operand, the result is the complex type.
1040   if (!handleIntegerToComplexFloatConversion(S, RHS, LHS, RHSType, LHSType,
1041                                              /*skipCast*/false))
1042     return LHSType;
1043   if (!handleIntegerToComplexFloatConversion(S, LHS, RHS, LHSType, RHSType,
1044                                              /*skipCast*/IsCompAssign))
1045     return RHSType;
1046 
1047   // This handles complex/complex, complex/float, or float/complex.
1048   // When both operands are complex, the shorter operand is converted to the
1049   // type of the longer, and that is the type of the result. This corresponds
1050   // to what is done when combining two real floating-point operands.
1051   // The fun begins when size promotion occur across type domains.
1052   // From H&S 6.3.4: When one operand is complex and the other is a real
1053   // floating-point type, the less precise type is converted, within it's
1054   // real or complex domain, to the precision of the other type. For example,
1055   // when combining a "long double" with a "double _Complex", the
1056   // "double _Complex" is promoted to "long double _Complex".
1057 
1058   // Compute the rank of the two types, regardless of whether they are complex.
1059   int Order = S.Context.getFloatingTypeOrder(LHSType, RHSType);
1060 
1061   auto *LHSComplexType = dyn_cast<ComplexType>(LHSType);
1062   auto *RHSComplexType = dyn_cast<ComplexType>(RHSType);
1063   QualType LHSElementType =
1064       LHSComplexType ? LHSComplexType->getElementType() : LHSType;
1065   QualType RHSElementType =
1066       RHSComplexType ? RHSComplexType->getElementType() : RHSType;
1067 
1068   QualType ResultType = S.Context.getComplexType(LHSElementType);
1069   if (Order < 0) {
1070     // Promote the precision of the LHS if not an assignment.
1071     ResultType = S.Context.getComplexType(RHSElementType);
1072     if (!IsCompAssign) {
1073       if (LHSComplexType)
1074         LHS =
1075             S.ImpCastExprToType(LHS.get(), ResultType, CK_FloatingComplexCast);
1076       else
1077         LHS = S.ImpCastExprToType(LHS.get(), RHSElementType, CK_FloatingCast);
1078     }
1079   } else if (Order > 0) {
1080     // Promote the precision of the RHS.
1081     if (RHSComplexType)
1082       RHS = S.ImpCastExprToType(RHS.get(), ResultType, CK_FloatingComplexCast);
1083     else
1084       RHS = S.ImpCastExprToType(RHS.get(), LHSElementType, CK_FloatingCast);
1085   }
1086   return ResultType;
1087 }
1088 
1089 /// \brief Hande arithmetic conversion from integer to float.  Helper function
1090 /// of UsualArithmeticConversions()
1091 static QualType handleIntToFloatConversion(Sema &S, ExprResult &FloatExpr,
1092                                            ExprResult &IntExpr,
1093                                            QualType FloatTy, QualType IntTy,
1094                                            bool ConvertFloat, bool ConvertInt) {
1095   if (IntTy->isIntegerType()) {
1096     if (ConvertInt)
1097       // Convert intExpr to the lhs floating point type.
1098       IntExpr = S.ImpCastExprToType(IntExpr.get(), FloatTy,
1099                                     CK_IntegralToFloating);
1100     return FloatTy;
1101   }
1102 
1103   // Convert both sides to the appropriate complex float.
1104   assert(IntTy->isComplexIntegerType());
1105   QualType result = S.Context.getComplexType(FloatTy);
1106 
1107   // _Complex int -> _Complex float
1108   if (ConvertInt)
1109     IntExpr = S.ImpCastExprToType(IntExpr.get(), result,
1110                                   CK_IntegralComplexToFloatingComplex);
1111 
1112   // float -> _Complex float
1113   if (ConvertFloat)
1114     FloatExpr = S.ImpCastExprToType(FloatExpr.get(), result,
1115                                     CK_FloatingRealToComplex);
1116 
1117   return result;
1118 }
1119 
1120 /// \brief Handle arithmethic conversion with floating point types.  Helper
1121 /// function of UsualArithmeticConversions()
1122 static QualType handleFloatConversion(Sema &S, ExprResult &LHS,
1123                                       ExprResult &RHS, QualType LHSType,
1124                                       QualType RHSType, bool IsCompAssign) {
1125   bool LHSFloat = LHSType->isRealFloatingType();
1126   bool RHSFloat = RHSType->isRealFloatingType();
1127 
1128   // If we have two real floating types, convert the smaller operand
1129   // to the bigger result.
1130   if (LHSFloat && RHSFloat) {
1131     int order = S.Context.getFloatingTypeOrder(LHSType, RHSType);
1132     if (order > 0) {
1133       RHS = S.ImpCastExprToType(RHS.get(), LHSType, CK_FloatingCast);
1134       return LHSType;
1135     }
1136 
1137     assert(order < 0 && "illegal float comparison");
1138     if (!IsCompAssign)
1139       LHS = S.ImpCastExprToType(LHS.get(), RHSType, CK_FloatingCast);
1140     return RHSType;
1141   }
1142 
1143   if (LHSFloat) {
1144     // Half FP has to be promoted to float unless it is natively supported
1145     if (LHSType->isHalfType() && !S.getLangOpts().NativeHalfType)
1146       LHSType = S.Context.FloatTy;
1147 
1148     return handleIntToFloatConversion(S, LHS, RHS, LHSType, RHSType,
1149                                       /*convertFloat=*/!IsCompAssign,
1150                                       /*convertInt=*/ true);
1151   }
1152   assert(RHSFloat);
1153   return handleIntToFloatConversion(S, RHS, LHS, RHSType, LHSType,
1154                                     /*convertInt=*/ true,
1155                                     /*convertFloat=*/!IsCompAssign);
1156 }
1157 
1158 typedef ExprResult PerformCastFn(Sema &S, Expr *operand, QualType toType);
1159 
1160 namespace {
1161 /// These helper callbacks are placed in an anonymous namespace to
1162 /// permit their use as function template parameters.
1163 ExprResult doIntegralCast(Sema &S, Expr *op, QualType toType) {
1164   return S.ImpCastExprToType(op, toType, CK_IntegralCast);
1165 }
1166 
1167 ExprResult doComplexIntegralCast(Sema &S, Expr *op, QualType toType) {
1168   return S.ImpCastExprToType(op, S.Context.getComplexType(toType),
1169                              CK_IntegralComplexCast);
1170 }
1171 }
1172 
1173 /// \brief Handle integer arithmetic conversions.  Helper function of
1174 /// UsualArithmeticConversions()
1175 template <PerformCastFn doLHSCast, PerformCastFn doRHSCast>
1176 static QualType handleIntegerConversion(Sema &S, ExprResult &LHS,
1177                                         ExprResult &RHS, QualType LHSType,
1178                                         QualType RHSType, bool IsCompAssign) {
1179   // The rules for this case are in C99 6.3.1.8
1180   int order = S.Context.getIntegerTypeOrder(LHSType, RHSType);
1181   bool LHSSigned = LHSType->hasSignedIntegerRepresentation();
1182   bool RHSSigned = RHSType->hasSignedIntegerRepresentation();
1183   if (LHSSigned == RHSSigned) {
1184     // Same signedness; use the higher-ranked type
1185     if (order >= 0) {
1186       RHS = (*doRHSCast)(S, RHS.get(), LHSType);
1187       return LHSType;
1188     } else if (!IsCompAssign)
1189       LHS = (*doLHSCast)(S, LHS.get(), RHSType);
1190     return RHSType;
1191   } else if (order != (LHSSigned ? 1 : -1)) {
1192     // The unsigned type has greater than or equal rank to the
1193     // signed type, so use the unsigned type
1194     if (RHSSigned) {
1195       RHS = (*doRHSCast)(S, RHS.get(), LHSType);
1196       return LHSType;
1197     } else if (!IsCompAssign)
1198       LHS = (*doLHSCast)(S, LHS.get(), RHSType);
1199     return RHSType;
1200   } else if (S.Context.getIntWidth(LHSType) != S.Context.getIntWidth(RHSType)) {
1201     // The two types are different widths; if we are here, that
1202     // means the signed type is larger than the unsigned type, so
1203     // use the signed type.
1204     if (LHSSigned) {
1205       RHS = (*doRHSCast)(S, RHS.get(), LHSType);
1206       return LHSType;
1207     } else if (!IsCompAssign)
1208       LHS = (*doLHSCast)(S, LHS.get(), RHSType);
1209     return RHSType;
1210   } else {
1211     // The signed type is higher-ranked than the unsigned type,
1212     // but isn't actually any bigger (like unsigned int and long
1213     // on most 32-bit systems).  Use the unsigned type corresponding
1214     // to the signed type.
1215     QualType result =
1216       S.Context.getCorrespondingUnsignedType(LHSSigned ? LHSType : RHSType);
1217     RHS = (*doRHSCast)(S, RHS.get(), result);
1218     if (!IsCompAssign)
1219       LHS = (*doLHSCast)(S, LHS.get(), result);
1220     return result;
1221   }
1222 }
1223 
1224 /// \brief Handle conversions with GCC complex int extension.  Helper function
1225 /// of UsualArithmeticConversions()
1226 static QualType handleComplexIntConversion(Sema &S, ExprResult &LHS,
1227                                            ExprResult &RHS, QualType LHSType,
1228                                            QualType RHSType,
1229                                            bool IsCompAssign) {
1230   const ComplexType *LHSComplexInt = LHSType->getAsComplexIntegerType();
1231   const ComplexType *RHSComplexInt = RHSType->getAsComplexIntegerType();
1232 
1233   if (LHSComplexInt && RHSComplexInt) {
1234     QualType LHSEltType = LHSComplexInt->getElementType();
1235     QualType RHSEltType = RHSComplexInt->getElementType();
1236     QualType ScalarType =
1237       handleIntegerConversion<doComplexIntegralCast, doComplexIntegralCast>
1238         (S, LHS, RHS, LHSEltType, RHSEltType, IsCompAssign);
1239 
1240     return S.Context.getComplexType(ScalarType);
1241   }
1242 
1243   if (LHSComplexInt) {
1244     QualType LHSEltType = LHSComplexInt->getElementType();
1245     QualType ScalarType =
1246       handleIntegerConversion<doComplexIntegralCast, doIntegralCast>
1247         (S, LHS, RHS, LHSEltType, RHSType, IsCompAssign);
1248     QualType ComplexType = S.Context.getComplexType(ScalarType);
1249     RHS = S.ImpCastExprToType(RHS.get(), ComplexType,
1250                               CK_IntegralRealToComplex);
1251 
1252     return ComplexType;
1253   }
1254 
1255   assert(RHSComplexInt);
1256 
1257   QualType RHSEltType = RHSComplexInt->getElementType();
1258   QualType ScalarType =
1259     handleIntegerConversion<doIntegralCast, doComplexIntegralCast>
1260       (S, LHS, RHS, LHSType, RHSEltType, IsCompAssign);
1261   QualType ComplexType = S.Context.getComplexType(ScalarType);
1262 
1263   if (!IsCompAssign)
1264     LHS = S.ImpCastExprToType(LHS.get(), ComplexType,
1265                               CK_IntegralRealToComplex);
1266   return ComplexType;
1267 }
1268 
1269 /// UsualArithmeticConversions - Performs various conversions that are common to
1270 /// binary operators (C99 6.3.1.8). If both operands aren't arithmetic, this
1271 /// routine returns the first non-arithmetic type found. The client is
1272 /// responsible for emitting appropriate error diagnostics.
1273 QualType Sema::UsualArithmeticConversions(ExprResult &LHS, ExprResult &RHS,
1274                                           bool IsCompAssign) {
1275   if (!IsCompAssign) {
1276     LHS = UsualUnaryConversions(LHS.get());
1277     if (LHS.isInvalid())
1278       return QualType();
1279   }
1280 
1281   RHS = UsualUnaryConversions(RHS.get());
1282   if (RHS.isInvalid())
1283     return QualType();
1284 
1285   // For conversion purposes, we ignore any qualifiers.
1286   // For example, "const float" and "float" are equivalent.
1287   QualType LHSType =
1288     Context.getCanonicalType(LHS.get()->getType()).getUnqualifiedType();
1289   QualType RHSType =
1290     Context.getCanonicalType(RHS.get()->getType()).getUnqualifiedType();
1291 
1292   // For conversion purposes, we ignore any atomic qualifier on the LHS.
1293   if (const AtomicType *AtomicLHS = LHSType->getAs<AtomicType>())
1294     LHSType = AtomicLHS->getValueType();
1295 
1296   // If both types are identical, no conversion is needed.
1297   if (LHSType == RHSType)
1298     return LHSType;
1299 
1300   // If either side is a non-arithmetic type (e.g. a pointer), we are done.
1301   // The caller can deal with this (e.g. pointer + int).
1302   if (!LHSType->isArithmeticType() || !RHSType->isArithmeticType())
1303     return QualType();
1304 
1305   // Apply unary and bitfield promotions to the LHS's type.
1306   QualType LHSUnpromotedType = LHSType;
1307   if (LHSType->isPromotableIntegerType())
1308     LHSType = Context.getPromotedIntegerType(LHSType);
1309   QualType LHSBitfieldPromoteTy = Context.isPromotableBitField(LHS.get());
1310   if (!LHSBitfieldPromoteTy.isNull())
1311     LHSType = LHSBitfieldPromoteTy;
1312   if (LHSType != LHSUnpromotedType && !IsCompAssign)
1313     LHS = ImpCastExprToType(LHS.get(), LHSType, CK_IntegralCast);
1314 
1315   // If both types are identical, no conversion is needed.
1316   if (LHSType == RHSType)
1317     return LHSType;
1318 
1319   // At this point, we have two different arithmetic types.
1320 
1321   // Handle complex types first (C99 6.3.1.8p1).
1322   if (LHSType->isComplexType() || RHSType->isComplexType())
1323     return handleComplexFloatConversion(*this, LHS, RHS, LHSType, RHSType,
1324                                         IsCompAssign);
1325 
1326   // Now handle "real" floating types (i.e. float, double, long double).
1327   if (LHSType->isRealFloatingType() || RHSType->isRealFloatingType())
1328     return handleFloatConversion(*this, LHS, RHS, LHSType, RHSType,
1329                                  IsCompAssign);
1330 
1331   // Handle GCC complex int extension.
1332   if (LHSType->isComplexIntegerType() || RHSType->isComplexIntegerType())
1333     return handleComplexIntConversion(*this, LHS, RHS, LHSType, RHSType,
1334                                       IsCompAssign);
1335 
1336   // Finally, we have two differing integer types.
1337   return handleIntegerConversion<doIntegralCast, doIntegralCast>
1338            (*this, LHS, RHS, LHSType, RHSType, IsCompAssign);
1339 }
1340 
1341 
1342 //===----------------------------------------------------------------------===//
1343 //  Semantic Analysis for various Expression Types
1344 //===----------------------------------------------------------------------===//
1345 
1346 
1347 ExprResult
1348 Sema::ActOnGenericSelectionExpr(SourceLocation KeyLoc,
1349                                 SourceLocation DefaultLoc,
1350                                 SourceLocation RParenLoc,
1351                                 Expr *ControllingExpr,
1352                                 ArrayRef<ParsedType> ArgTypes,
1353                                 ArrayRef<Expr *> ArgExprs) {
1354   unsigned NumAssocs = ArgTypes.size();
1355   assert(NumAssocs == ArgExprs.size());
1356 
1357   TypeSourceInfo **Types = new TypeSourceInfo*[NumAssocs];
1358   for (unsigned i = 0; i < NumAssocs; ++i) {
1359     if (ArgTypes[i])
1360       (void) GetTypeFromParser(ArgTypes[i], &Types[i]);
1361     else
1362       Types[i] = nullptr;
1363   }
1364 
1365   ExprResult ER = CreateGenericSelectionExpr(KeyLoc, DefaultLoc, RParenLoc,
1366                                              ControllingExpr,
1367                                              llvm::makeArrayRef(Types, NumAssocs),
1368                                              ArgExprs);
1369   delete [] Types;
1370   return ER;
1371 }
1372 
1373 ExprResult
1374 Sema::CreateGenericSelectionExpr(SourceLocation KeyLoc,
1375                                  SourceLocation DefaultLoc,
1376                                  SourceLocation RParenLoc,
1377                                  Expr *ControllingExpr,
1378                                  ArrayRef<TypeSourceInfo *> Types,
1379                                  ArrayRef<Expr *> Exprs) {
1380   unsigned NumAssocs = Types.size();
1381   assert(NumAssocs == Exprs.size());
1382 
1383   // Decay and strip qualifiers for the controlling expression type, and handle
1384   // placeholder type replacement. See committee discussion from WG14 DR423.
1385   {
1386     EnterExpressionEvaluationContext Unevaluated(*this, Sema::Unevaluated);
1387     ExprResult R = DefaultFunctionArrayLvalueConversion(ControllingExpr);
1388     if (R.isInvalid())
1389       return ExprError();
1390     ControllingExpr = R.get();
1391   }
1392 
1393   // The controlling expression is an unevaluated operand, so side effects are
1394   // likely unintended.
1395   if (ActiveTemplateInstantiations.empty() &&
1396       ControllingExpr->HasSideEffects(Context, false))
1397     Diag(ControllingExpr->getExprLoc(),
1398          diag::warn_side_effects_unevaluated_context);
1399 
1400   bool TypeErrorFound = false,
1401        IsResultDependent = ControllingExpr->isTypeDependent(),
1402        ContainsUnexpandedParameterPack
1403          = ControllingExpr->containsUnexpandedParameterPack();
1404 
1405   for (unsigned i = 0; i < NumAssocs; ++i) {
1406     if (Exprs[i]->containsUnexpandedParameterPack())
1407       ContainsUnexpandedParameterPack = true;
1408 
1409     if (Types[i]) {
1410       if (Types[i]->getType()->containsUnexpandedParameterPack())
1411         ContainsUnexpandedParameterPack = true;
1412 
1413       if (Types[i]->getType()->isDependentType()) {
1414         IsResultDependent = true;
1415       } else {
1416         // C11 6.5.1.1p2 "The type name in a generic association shall specify a
1417         // complete object type other than a variably modified type."
1418         unsigned D = 0;
1419         if (Types[i]->getType()->isIncompleteType())
1420           D = diag::err_assoc_type_incomplete;
1421         else if (!Types[i]->getType()->isObjectType())
1422           D = diag::err_assoc_type_nonobject;
1423         else if (Types[i]->getType()->isVariablyModifiedType())
1424           D = diag::err_assoc_type_variably_modified;
1425 
1426         if (D != 0) {
1427           Diag(Types[i]->getTypeLoc().getBeginLoc(), D)
1428             << Types[i]->getTypeLoc().getSourceRange()
1429             << Types[i]->getType();
1430           TypeErrorFound = true;
1431         }
1432 
1433         // C11 6.5.1.1p2 "No two generic associations in the same generic
1434         // selection shall specify compatible types."
1435         for (unsigned j = i+1; j < NumAssocs; ++j)
1436           if (Types[j] && !Types[j]->getType()->isDependentType() &&
1437               Context.typesAreCompatible(Types[i]->getType(),
1438                                          Types[j]->getType())) {
1439             Diag(Types[j]->getTypeLoc().getBeginLoc(),
1440                  diag::err_assoc_compatible_types)
1441               << Types[j]->getTypeLoc().getSourceRange()
1442               << Types[j]->getType()
1443               << Types[i]->getType();
1444             Diag(Types[i]->getTypeLoc().getBeginLoc(),
1445                  diag::note_compat_assoc)
1446               << Types[i]->getTypeLoc().getSourceRange()
1447               << Types[i]->getType();
1448             TypeErrorFound = true;
1449           }
1450       }
1451     }
1452   }
1453   if (TypeErrorFound)
1454     return ExprError();
1455 
1456   // If we determined that the generic selection is result-dependent, don't
1457   // try to compute the result expression.
1458   if (IsResultDependent)
1459     return new (Context) GenericSelectionExpr(
1460         Context, KeyLoc, ControllingExpr, Types, Exprs, DefaultLoc, RParenLoc,
1461         ContainsUnexpandedParameterPack);
1462 
1463   SmallVector<unsigned, 1> CompatIndices;
1464   unsigned DefaultIndex = -1U;
1465   for (unsigned i = 0; i < NumAssocs; ++i) {
1466     if (!Types[i])
1467       DefaultIndex = i;
1468     else if (Context.typesAreCompatible(ControllingExpr->getType(),
1469                                         Types[i]->getType()))
1470       CompatIndices.push_back(i);
1471   }
1472 
1473   // C11 6.5.1.1p2 "The controlling expression of a generic selection shall have
1474   // type compatible with at most one of the types named in its generic
1475   // association list."
1476   if (CompatIndices.size() > 1) {
1477     // We strip parens here because the controlling expression is typically
1478     // parenthesized in macro definitions.
1479     ControllingExpr = ControllingExpr->IgnoreParens();
1480     Diag(ControllingExpr->getLocStart(), diag::err_generic_sel_multi_match)
1481       << ControllingExpr->getSourceRange() << ControllingExpr->getType()
1482       << (unsigned) CompatIndices.size();
1483     for (unsigned I : CompatIndices) {
1484       Diag(Types[I]->getTypeLoc().getBeginLoc(),
1485            diag::note_compat_assoc)
1486         << Types[I]->getTypeLoc().getSourceRange()
1487         << Types[I]->getType();
1488     }
1489     return ExprError();
1490   }
1491 
1492   // C11 6.5.1.1p2 "If a generic selection has no default generic association,
1493   // its controlling expression shall have type compatible with exactly one of
1494   // the types named in its generic association list."
1495   if (DefaultIndex == -1U && CompatIndices.size() == 0) {
1496     // We strip parens here because the controlling expression is typically
1497     // parenthesized in macro definitions.
1498     ControllingExpr = ControllingExpr->IgnoreParens();
1499     Diag(ControllingExpr->getLocStart(), diag::err_generic_sel_no_match)
1500       << ControllingExpr->getSourceRange() << ControllingExpr->getType();
1501     return ExprError();
1502   }
1503 
1504   // C11 6.5.1.1p3 "If a generic selection has a generic association with a
1505   // type name that is compatible with the type of the controlling expression,
1506   // then the result expression of the generic selection is the expression
1507   // in that generic association. Otherwise, the result expression of the
1508   // generic selection is the expression in the default generic association."
1509   unsigned ResultIndex =
1510     CompatIndices.size() ? CompatIndices[0] : DefaultIndex;
1511 
1512   return new (Context) GenericSelectionExpr(
1513       Context, KeyLoc, ControllingExpr, Types, Exprs, DefaultLoc, RParenLoc,
1514       ContainsUnexpandedParameterPack, ResultIndex);
1515 }
1516 
1517 /// getUDSuffixLoc - Create a SourceLocation for a ud-suffix, given the
1518 /// location of the token and the offset of the ud-suffix within it.
1519 static SourceLocation getUDSuffixLoc(Sema &S, SourceLocation TokLoc,
1520                                      unsigned Offset) {
1521   return Lexer::AdvanceToTokenCharacter(TokLoc, Offset, S.getSourceManager(),
1522                                         S.getLangOpts());
1523 }
1524 
1525 /// BuildCookedLiteralOperatorCall - A user-defined literal was found. Look up
1526 /// the corresponding cooked (non-raw) literal operator, and build a call to it.
1527 static ExprResult BuildCookedLiteralOperatorCall(Sema &S, Scope *Scope,
1528                                                  IdentifierInfo *UDSuffix,
1529                                                  SourceLocation UDSuffixLoc,
1530                                                  ArrayRef<Expr*> Args,
1531                                                  SourceLocation LitEndLoc) {
1532   assert(Args.size() <= 2 && "too many arguments for literal operator");
1533 
1534   QualType ArgTy[2];
1535   for (unsigned ArgIdx = 0; ArgIdx != Args.size(); ++ArgIdx) {
1536     ArgTy[ArgIdx] = Args[ArgIdx]->getType();
1537     if (ArgTy[ArgIdx]->isArrayType())
1538       ArgTy[ArgIdx] = S.Context.getArrayDecayedType(ArgTy[ArgIdx]);
1539   }
1540 
1541   DeclarationName OpName =
1542     S.Context.DeclarationNames.getCXXLiteralOperatorName(UDSuffix);
1543   DeclarationNameInfo OpNameInfo(OpName, UDSuffixLoc);
1544   OpNameInfo.setCXXLiteralOperatorNameLoc(UDSuffixLoc);
1545 
1546   LookupResult R(S, OpName, UDSuffixLoc, Sema::LookupOrdinaryName);
1547   if (S.LookupLiteralOperator(Scope, R, llvm::makeArrayRef(ArgTy, Args.size()),
1548                               /*AllowRaw*/false, /*AllowTemplate*/false,
1549                               /*AllowStringTemplate*/false) == Sema::LOLR_Error)
1550     return ExprError();
1551 
1552   return S.BuildLiteralOperatorCall(R, OpNameInfo, Args, LitEndLoc);
1553 }
1554 
1555 /// ActOnStringLiteral - The specified tokens were lexed as pasted string
1556 /// fragments (e.g. "foo" "bar" L"baz").  The result string has to handle string
1557 /// concatenation ([C99 5.1.1.2, translation phase #6]), so it may come from
1558 /// multiple tokens.  However, the common case is that StringToks points to one
1559 /// string.
1560 ///
1561 ExprResult
1562 Sema::ActOnStringLiteral(ArrayRef<Token> StringToks, Scope *UDLScope) {
1563   assert(!StringToks.empty() && "Must have at least one string!");
1564 
1565   StringLiteralParser Literal(StringToks, PP);
1566   if (Literal.hadError)
1567     return ExprError();
1568 
1569   SmallVector<SourceLocation, 4> StringTokLocs;
1570   for (const Token &Tok : StringToks)
1571     StringTokLocs.push_back(Tok.getLocation());
1572 
1573   QualType CharTy = Context.CharTy;
1574   StringLiteral::StringKind Kind = StringLiteral::Ascii;
1575   if (Literal.isWide()) {
1576     CharTy = Context.getWideCharType();
1577     Kind = StringLiteral::Wide;
1578   } else if (Literal.isUTF8()) {
1579     Kind = StringLiteral::UTF8;
1580   } else if (Literal.isUTF16()) {
1581     CharTy = Context.Char16Ty;
1582     Kind = StringLiteral::UTF16;
1583   } else if (Literal.isUTF32()) {
1584     CharTy = Context.Char32Ty;
1585     Kind = StringLiteral::UTF32;
1586   } else if (Literal.isPascal()) {
1587     CharTy = Context.UnsignedCharTy;
1588   }
1589 
1590   QualType CharTyConst = CharTy;
1591   // A C++ string literal has a const-qualified element type (C++ 2.13.4p1).
1592   if (getLangOpts().CPlusPlus || getLangOpts().ConstStrings)
1593     CharTyConst.addConst();
1594 
1595   // Get an array type for the string, according to C99 6.4.5.  This includes
1596   // the nul terminator character as well as the string length for pascal
1597   // strings.
1598   QualType StrTy = Context.getConstantArrayType(CharTyConst,
1599                                  llvm::APInt(32, Literal.GetNumStringChars()+1),
1600                                  ArrayType::Normal, 0);
1601 
1602   // OpenCL v1.1 s6.5.3: a string literal is in the constant address space.
1603   if (getLangOpts().OpenCL) {
1604     StrTy = Context.getAddrSpaceQualType(StrTy, LangAS::opencl_constant);
1605   }
1606 
1607   // Pass &StringTokLocs[0], StringTokLocs.size() to factory!
1608   StringLiteral *Lit = StringLiteral::Create(Context, Literal.GetString(),
1609                                              Kind, Literal.Pascal, StrTy,
1610                                              &StringTokLocs[0],
1611                                              StringTokLocs.size());
1612   if (Literal.getUDSuffix().empty())
1613     return Lit;
1614 
1615   // We're building a user-defined literal.
1616   IdentifierInfo *UDSuffix = &Context.Idents.get(Literal.getUDSuffix());
1617   SourceLocation UDSuffixLoc =
1618     getUDSuffixLoc(*this, StringTokLocs[Literal.getUDSuffixToken()],
1619                    Literal.getUDSuffixOffset());
1620 
1621   // Make sure we're allowed user-defined literals here.
1622   if (!UDLScope)
1623     return ExprError(Diag(UDSuffixLoc, diag::err_invalid_string_udl));
1624 
1625   // C++11 [lex.ext]p5: The literal L is treated as a call of the form
1626   //   operator "" X (str, len)
1627   QualType SizeType = Context.getSizeType();
1628 
1629   DeclarationName OpName =
1630     Context.DeclarationNames.getCXXLiteralOperatorName(UDSuffix);
1631   DeclarationNameInfo OpNameInfo(OpName, UDSuffixLoc);
1632   OpNameInfo.setCXXLiteralOperatorNameLoc(UDSuffixLoc);
1633 
1634   QualType ArgTy[] = {
1635     Context.getArrayDecayedType(StrTy), SizeType
1636   };
1637 
1638   LookupResult R(*this, OpName, UDSuffixLoc, LookupOrdinaryName);
1639   switch (LookupLiteralOperator(UDLScope, R, ArgTy,
1640                                 /*AllowRaw*/false, /*AllowTemplate*/false,
1641                                 /*AllowStringTemplate*/true)) {
1642 
1643   case LOLR_Cooked: {
1644     llvm::APInt Len(Context.getIntWidth(SizeType), Literal.GetNumStringChars());
1645     IntegerLiteral *LenArg = IntegerLiteral::Create(Context, Len, SizeType,
1646                                                     StringTokLocs[0]);
1647     Expr *Args[] = { Lit, LenArg };
1648 
1649     return BuildLiteralOperatorCall(R, OpNameInfo, Args, StringTokLocs.back());
1650   }
1651 
1652   case LOLR_StringTemplate: {
1653     TemplateArgumentListInfo ExplicitArgs;
1654 
1655     unsigned CharBits = Context.getIntWidth(CharTy);
1656     bool CharIsUnsigned = CharTy->isUnsignedIntegerType();
1657     llvm::APSInt Value(CharBits, CharIsUnsigned);
1658 
1659     TemplateArgument TypeArg(CharTy);
1660     TemplateArgumentLocInfo TypeArgInfo(Context.getTrivialTypeSourceInfo(CharTy));
1661     ExplicitArgs.addArgument(TemplateArgumentLoc(TypeArg, TypeArgInfo));
1662 
1663     for (unsigned I = 0, N = Lit->getLength(); I != N; ++I) {
1664       Value = Lit->getCodeUnit(I);
1665       TemplateArgument Arg(Context, Value, CharTy);
1666       TemplateArgumentLocInfo ArgInfo;
1667       ExplicitArgs.addArgument(TemplateArgumentLoc(Arg, ArgInfo));
1668     }
1669     return BuildLiteralOperatorCall(R, OpNameInfo, None, StringTokLocs.back(),
1670                                     &ExplicitArgs);
1671   }
1672   case LOLR_Raw:
1673   case LOLR_Template:
1674     llvm_unreachable("unexpected literal operator lookup result");
1675   case LOLR_Error:
1676     return ExprError();
1677   }
1678   llvm_unreachable("unexpected literal operator lookup result");
1679 }
1680 
1681 ExprResult
1682 Sema::BuildDeclRefExpr(ValueDecl *D, QualType Ty, ExprValueKind VK,
1683                        SourceLocation Loc,
1684                        const CXXScopeSpec *SS) {
1685   DeclarationNameInfo NameInfo(D->getDeclName(), Loc);
1686   return BuildDeclRefExpr(D, Ty, VK, NameInfo, SS);
1687 }
1688 
1689 /// BuildDeclRefExpr - Build an expression that references a
1690 /// declaration that does not require a closure capture.
1691 ExprResult
1692 Sema::BuildDeclRefExpr(ValueDecl *D, QualType Ty, ExprValueKind VK,
1693                        const DeclarationNameInfo &NameInfo,
1694                        const CXXScopeSpec *SS, NamedDecl *FoundD,
1695                        const TemplateArgumentListInfo *TemplateArgs) {
1696   if (getLangOpts().CUDA)
1697     if (const FunctionDecl *Caller = dyn_cast<FunctionDecl>(CurContext))
1698       if (const FunctionDecl *Callee = dyn_cast<FunctionDecl>(D)) {
1699         if (CheckCUDATarget(Caller, Callee)) {
1700           Diag(NameInfo.getLoc(), diag::err_ref_bad_target)
1701             << IdentifyCUDATarget(Callee) << D->getIdentifier()
1702             << IdentifyCUDATarget(Caller);
1703           Diag(D->getLocation(), diag::note_previous_decl)
1704             << D->getIdentifier();
1705           return ExprError();
1706         }
1707       }
1708 
1709   bool RefersToCapturedVariable =
1710       isa<VarDecl>(D) &&
1711       NeedToCaptureVariable(cast<VarDecl>(D), NameInfo.getLoc());
1712 
1713   DeclRefExpr *E;
1714   if (isa<VarTemplateSpecializationDecl>(D)) {
1715     VarTemplateSpecializationDecl *VarSpec =
1716         cast<VarTemplateSpecializationDecl>(D);
1717 
1718     E = DeclRefExpr::Create(Context, SS ? SS->getWithLocInContext(Context)
1719                                         : NestedNameSpecifierLoc(),
1720                             VarSpec->getTemplateKeywordLoc(), D,
1721                             RefersToCapturedVariable, NameInfo.getLoc(), Ty, VK,
1722                             FoundD, TemplateArgs);
1723   } else {
1724     assert(!TemplateArgs && "No template arguments for non-variable"
1725                             " template specialization references");
1726     E = DeclRefExpr::Create(Context, SS ? SS->getWithLocInContext(Context)
1727                                         : NestedNameSpecifierLoc(),
1728                             SourceLocation(), D, RefersToCapturedVariable,
1729                             NameInfo, Ty, VK, FoundD);
1730   }
1731 
1732   MarkDeclRefReferenced(E);
1733 
1734   if (getLangOpts().ObjCWeak && isa<VarDecl>(D) &&
1735       Ty.getObjCLifetime() == Qualifiers::OCL_Weak &&
1736       !Diags.isIgnored(diag::warn_arc_repeated_use_of_weak, E->getLocStart()))
1737       recordUseOfEvaluatedWeak(E);
1738 
1739   // Just in case we're building an illegal pointer-to-member.
1740   FieldDecl *FD = dyn_cast<FieldDecl>(D);
1741   if (FD && FD->isBitField())
1742     E->setObjectKind(OK_BitField);
1743 
1744   return E;
1745 }
1746 
1747 /// Decomposes the given name into a DeclarationNameInfo, its location, and
1748 /// possibly a list of template arguments.
1749 ///
1750 /// If this produces template arguments, it is permitted to call
1751 /// DecomposeTemplateName.
1752 ///
1753 /// This actually loses a lot of source location information for
1754 /// non-standard name kinds; we should consider preserving that in
1755 /// some way.
1756 void
1757 Sema::DecomposeUnqualifiedId(const UnqualifiedId &Id,
1758                              TemplateArgumentListInfo &Buffer,
1759                              DeclarationNameInfo &NameInfo,
1760                              const TemplateArgumentListInfo *&TemplateArgs) {
1761   if (Id.getKind() == UnqualifiedId::IK_TemplateId) {
1762     Buffer.setLAngleLoc(Id.TemplateId->LAngleLoc);
1763     Buffer.setRAngleLoc(Id.TemplateId->RAngleLoc);
1764 
1765     ASTTemplateArgsPtr TemplateArgsPtr(Id.TemplateId->getTemplateArgs(),
1766                                        Id.TemplateId->NumArgs);
1767     translateTemplateArguments(TemplateArgsPtr, Buffer);
1768 
1769     TemplateName TName = Id.TemplateId->Template.get();
1770     SourceLocation TNameLoc = Id.TemplateId->TemplateNameLoc;
1771     NameInfo = Context.getNameForTemplate(TName, TNameLoc);
1772     TemplateArgs = &Buffer;
1773   } else {
1774     NameInfo = GetNameFromUnqualifiedId(Id);
1775     TemplateArgs = nullptr;
1776   }
1777 }
1778 
1779 static void emitEmptyLookupTypoDiagnostic(
1780     const TypoCorrection &TC, Sema &SemaRef, const CXXScopeSpec &SS,
1781     DeclarationName Typo, SourceLocation TypoLoc, ArrayRef<Expr *> Args,
1782     unsigned DiagnosticID, unsigned DiagnosticSuggestID) {
1783   DeclContext *Ctx =
1784       SS.isEmpty() ? nullptr : SemaRef.computeDeclContext(SS, false);
1785   if (!TC) {
1786     // Emit a special diagnostic for failed member lookups.
1787     // FIXME: computing the declaration context might fail here (?)
1788     if (Ctx)
1789       SemaRef.Diag(TypoLoc, diag::err_no_member) << Typo << Ctx
1790                                                  << SS.getRange();
1791     else
1792       SemaRef.Diag(TypoLoc, DiagnosticID) << Typo;
1793     return;
1794   }
1795 
1796   std::string CorrectedStr = TC.getAsString(SemaRef.getLangOpts());
1797   bool DroppedSpecifier =
1798       TC.WillReplaceSpecifier() && Typo.getAsString() == CorrectedStr;
1799   unsigned NoteID = TC.getCorrectionDeclAs<ImplicitParamDecl>()
1800                         ? diag::note_implicit_param_decl
1801                         : diag::note_previous_decl;
1802   if (!Ctx)
1803     SemaRef.diagnoseTypo(TC, SemaRef.PDiag(DiagnosticSuggestID) << Typo,
1804                          SemaRef.PDiag(NoteID));
1805   else
1806     SemaRef.diagnoseTypo(TC, SemaRef.PDiag(diag::err_no_member_suggest)
1807                                  << Typo << Ctx << DroppedSpecifier
1808                                  << SS.getRange(),
1809                          SemaRef.PDiag(NoteID));
1810 }
1811 
1812 /// Diagnose an empty lookup.
1813 ///
1814 /// \return false if new lookup candidates were found
1815 bool
1816 Sema::DiagnoseEmptyLookup(Scope *S, CXXScopeSpec &SS, LookupResult &R,
1817                           std::unique_ptr<CorrectionCandidateCallback> CCC,
1818                           TemplateArgumentListInfo *ExplicitTemplateArgs,
1819                           ArrayRef<Expr *> Args, TypoExpr **Out) {
1820   DeclarationName Name = R.getLookupName();
1821 
1822   unsigned diagnostic = diag::err_undeclared_var_use;
1823   unsigned diagnostic_suggest = diag::err_undeclared_var_use_suggest;
1824   if (Name.getNameKind() == DeclarationName::CXXOperatorName ||
1825       Name.getNameKind() == DeclarationName::CXXLiteralOperatorName ||
1826       Name.getNameKind() == DeclarationName::CXXConversionFunctionName) {
1827     diagnostic = diag::err_undeclared_use;
1828     diagnostic_suggest = diag::err_undeclared_use_suggest;
1829   }
1830 
1831   // If the original lookup was an unqualified lookup, fake an
1832   // unqualified lookup.  This is useful when (for example) the
1833   // original lookup would not have found something because it was a
1834   // dependent name.
1835   DeclContext *DC = SS.isEmpty() ? CurContext : nullptr;
1836   while (DC) {
1837     if (isa<CXXRecordDecl>(DC)) {
1838       LookupQualifiedName(R, DC);
1839 
1840       if (!R.empty()) {
1841         // Don't give errors about ambiguities in this lookup.
1842         R.suppressDiagnostics();
1843 
1844         // During a default argument instantiation the CurContext points
1845         // to a CXXMethodDecl; but we can't apply a this-> fixit inside a
1846         // function parameter list, hence add an explicit check.
1847         bool isDefaultArgument = !ActiveTemplateInstantiations.empty() &&
1848                               ActiveTemplateInstantiations.back().Kind ==
1849             ActiveTemplateInstantiation::DefaultFunctionArgumentInstantiation;
1850         CXXMethodDecl *CurMethod = dyn_cast<CXXMethodDecl>(CurContext);
1851         bool isInstance = CurMethod &&
1852                           CurMethod->isInstance() &&
1853                           DC == CurMethod->getParent() && !isDefaultArgument;
1854 
1855         // Give a code modification hint to insert 'this->'.
1856         // TODO: fixit for inserting 'Base<T>::' in the other cases.
1857         // Actually quite difficult!
1858         if (getLangOpts().MSVCCompat)
1859           diagnostic = diag::ext_found_via_dependent_bases_lookup;
1860         if (isInstance) {
1861           Diag(R.getNameLoc(), diagnostic) << Name
1862             << FixItHint::CreateInsertion(R.getNameLoc(), "this->");
1863           CheckCXXThisCapture(R.getNameLoc());
1864         } else {
1865           Diag(R.getNameLoc(), diagnostic) << Name;
1866         }
1867 
1868         // Do we really want to note all of these?
1869         for (NamedDecl *D : R)
1870           Diag(D->getLocation(), diag::note_dependent_var_use);
1871 
1872         // Return true if we are inside a default argument instantiation
1873         // and the found name refers to an instance member function, otherwise
1874         // the function calling DiagnoseEmptyLookup will try to create an
1875         // implicit member call and this is wrong for default argument.
1876         if (isDefaultArgument && ((*R.begin())->isCXXInstanceMember())) {
1877           Diag(R.getNameLoc(), diag::err_member_call_without_object);
1878           return true;
1879         }
1880 
1881         // Tell the callee to try to recover.
1882         return false;
1883       }
1884 
1885       R.clear();
1886     }
1887 
1888     // In Microsoft mode, if we are performing lookup from within a friend
1889     // function definition declared at class scope then we must set
1890     // DC to the lexical parent to be able to search into the parent
1891     // class.
1892     if (getLangOpts().MSVCCompat && isa<FunctionDecl>(DC) &&
1893         cast<FunctionDecl>(DC)->getFriendObjectKind() &&
1894         DC->getLexicalParent()->isRecord())
1895       DC = DC->getLexicalParent();
1896     else
1897       DC = DC->getParent();
1898   }
1899 
1900   // We didn't find anything, so try to correct for a typo.
1901   TypoCorrection Corrected;
1902   if (S && Out) {
1903     SourceLocation TypoLoc = R.getNameLoc();
1904     assert(!ExplicitTemplateArgs &&
1905            "Diagnosing an empty lookup with explicit template args!");
1906     *Out = CorrectTypoDelayed(
1907         R.getLookupNameInfo(), R.getLookupKind(), S, &SS, std::move(CCC),
1908         [=](const TypoCorrection &TC) {
1909           emitEmptyLookupTypoDiagnostic(TC, *this, SS, Name, TypoLoc, Args,
1910                                         diagnostic, diagnostic_suggest);
1911         },
1912         nullptr, CTK_ErrorRecovery);
1913     if (*Out)
1914       return true;
1915   } else if (S && (Corrected =
1916                        CorrectTypo(R.getLookupNameInfo(), R.getLookupKind(), S,
1917                                    &SS, std::move(CCC), CTK_ErrorRecovery))) {
1918     std::string CorrectedStr(Corrected.getAsString(getLangOpts()));
1919     bool DroppedSpecifier =
1920         Corrected.WillReplaceSpecifier() && Name.getAsString() == CorrectedStr;
1921     R.setLookupName(Corrected.getCorrection());
1922 
1923     bool AcceptableWithRecovery = false;
1924     bool AcceptableWithoutRecovery = false;
1925     NamedDecl *ND = Corrected.getFoundDecl();
1926     if (ND) {
1927       if (Corrected.isOverloaded()) {
1928         OverloadCandidateSet OCS(R.getNameLoc(),
1929                                  OverloadCandidateSet::CSK_Normal);
1930         OverloadCandidateSet::iterator Best;
1931         for (NamedDecl *CD : Corrected) {
1932           if (FunctionTemplateDecl *FTD =
1933                    dyn_cast<FunctionTemplateDecl>(CD))
1934             AddTemplateOverloadCandidate(
1935                 FTD, DeclAccessPair::make(FTD, AS_none), ExplicitTemplateArgs,
1936                 Args, OCS);
1937           else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(CD))
1938             if (!ExplicitTemplateArgs || ExplicitTemplateArgs->size() == 0)
1939               AddOverloadCandidate(FD, DeclAccessPair::make(FD, AS_none),
1940                                    Args, OCS);
1941         }
1942         switch (OCS.BestViableFunction(*this, R.getNameLoc(), Best)) {
1943         case OR_Success:
1944           ND = Best->FoundDecl;
1945           Corrected.setCorrectionDecl(ND);
1946           break;
1947         default:
1948           // FIXME: Arbitrarily pick the first declaration for the note.
1949           Corrected.setCorrectionDecl(ND);
1950           break;
1951         }
1952       }
1953       R.addDecl(ND);
1954       if (getLangOpts().CPlusPlus && ND->isCXXClassMember()) {
1955         CXXRecordDecl *Record = nullptr;
1956         if (Corrected.getCorrectionSpecifier()) {
1957           const Type *Ty = Corrected.getCorrectionSpecifier()->getAsType();
1958           Record = Ty->getAsCXXRecordDecl();
1959         }
1960         if (!Record)
1961           Record = cast<CXXRecordDecl>(
1962               ND->getDeclContext()->getRedeclContext());
1963         R.setNamingClass(Record);
1964       }
1965 
1966       auto *UnderlyingND = ND->getUnderlyingDecl();
1967       AcceptableWithRecovery = isa<ValueDecl>(UnderlyingND) ||
1968                                isa<FunctionTemplateDecl>(UnderlyingND);
1969       // FIXME: If we ended up with a typo for a type name or
1970       // Objective-C class name, we're in trouble because the parser
1971       // is in the wrong place to recover. Suggest the typo
1972       // correction, but don't make it a fix-it since we're not going
1973       // to recover well anyway.
1974       AcceptableWithoutRecovery =
1975           isa<TypeDecl>(UnderlyingND) || isa<ObjCInterfaceDecl>(UnderlyingND);
1976     } else {
1977       // FIXME: We found a keyword. Suggest it, but don't provide a fix-it
1978       // because we aren't able to recover.
1979       AcceptableWithoutRecovery = true;
1980     }
1981 
1982     if (AcceptableWithRecovery || AcceptableWithoutRecovery) {
1983       unsigned NoteID = Corrected.getCorrectionDeclAs<ImplicitParamDecl>()
1984                             ? diag::note_implicit_param_decl
1985                             : diag::note_previous_decl;
1986       if (SS.isEmpty())
1987         diagnoseTypo(Corrected, PDiag(diagnostic_suggest) << Name,
1988                      PDiag(NoteID), AcceptableWithRecovery);
1989       else
1990         diagnoseTypo(Corrected, PDiag(diag::err_no_member_suggest)
1991                                   << Name << computeDeclContext(SS, false)
1992                                   << DroppedSpecifier << SS.getRange(),
1993                      PDiag(NoteID), AcceptableWithRecovery);
1994 
1995       // Tell the callee whether to try to recover.
1996       return !AcceptableWithRecovery;
1997     }
1998   }
1999   R.clear();
2000 
2001   // Emit a special diagnostic for failed member lookups.
2002   // FIXME: computing the declaration context might fail here (?)
2003   if (!SS.isEmpty()) {
2004     Diag(R.getNameLoc(), diag::err_no_member)
2005       << Name << computeDeclContext(SS, false)
2006       << SS.getRange();
2007     return true;
2008   }
2009 
2010   // Give up, we can't recover.
2011   Diag(R.getNameLoc(), diagnostic) << Name;
2012   return true;
2013 }
2014 
2015 /// In Microsoft mode, if we are inside a template class whose parent class has
2016 /// dependent base classes, and we can't resolve an unqualified identifier, then
2017 /// assume the identifier is a member of a dependent base class.  We can only
2018 /// recover successfully in static methods, instance methods, and other contexts
2019 /// where 'this' is available.  This doesn't precisely match MSVC's
2020 /// instantiation model, but it's close enough.
2021 static Expr *
2022 recoverFromMSUnqualifiedLookup(Sema &S, ASTContext &Context,
2023                                DeclarationNameInfo &NameInfo,
2024                                SourceLocation TemplateKWLoc,
2025                                const TemplateArgumentListInfo *TemplateArgs) {
2026   // Only try to recover from lookup into dependent bases in static methods or
2027   // contexts where 'this' is available.
2028   QualType ThisType = S.getCurrentThisType();
2029   const CXXRecordDecl *RD = nullptr;
2030   if (!ThisType.isNull())
2031     RD = ThisType->getPointeeType()->getAsCXXRecordDecl();
2032   else if (auto *MD = dyn_cast<CXXMethodDecl>(S.CurContext))
2033     RD = MD->getParent();
2034   if (!RD || !RD->hasAnyDependentBases())
2035     return nullptr;
2036 
2037   // Diagnose this as unqualified lookup into a dependent base class.  If 'this'
2038   // is available, suggest inserting 'this->' as a fixit.
2039   SourceLocation Loc = NameInfo.getLoc();
2040   auto DB = S.Diag(Loc, diag::ext_undeclared_unqual_id_with_dependent_base);
2041   DB << NameInfo.getName() << RD;
2042 
2043   if (!ThisType.isNull()) {
2044     DB << FixItHint::CreateInsertion(Loc, "this->");
2045     return CXXDependentScopeMemberExpr::Create(
2046         Context, /*This=*/nullptr, ThisType, /*IsArrow=*/true,
2047         /*Op=*/SourceLocation(), NestedNameSpecifierLoc(), TemplateKWLoc,
2048         /*FirstQualifierInScope=*/nullptr, NameInfo, TemplateArgs);
2049   }
2050 
2051   // Synthesize a fake NNS that points to the derived class.  This will
2052   // perform name lookup during template instantiation.
2053   CXXScopeSpec SS;
2054   auto *NNS =
2055       NestedNameSpecifier::Create(Context, nullptr, true, RD->getTypeForDecl());
2056   SS.MakeTrivial(Context, NNS, SourceRange(Loc, Loc));
2057   return DependentScopeDeclRefExpr::Create(
2058       Context, SS.getWithLocInContext(Context), TemplateKWLoc, NameInfo,
2059       TemplateArgs);
2060 }
2061 
2062 ExprResult
2063 Sema::ActOnIdExpression(Scope *S, CXXScopeSpec &SS,
2064                         SourceLocation TemplateKWLoc, UnqualifiedId &Id,
2065                         bool HasTrailingLParen, bool IsAddressOfOperand,
2066                         std::unique_ptr<CorrectionCandidateCallback> CCC,
2067                         bool IsInlineAsmIdentifier, Token *KeywordReplacement) {
2068   assert(!(IsAddressOfOperand && HasTrailingLParen) &&
2069          "cannot be direct & operand and have a trailing lparen");
2070   if (SS.isInvalid())
2071     return ExprError();
2072 
2073   TemplateArgumentListInfo TemplateArgsBuffer;
2074 
2075   // Decompose the UnqualifiedId into the following data.
2076   DeclarationNameInfo NameInfo;
2077   const TemplateArgumentListInfo *TemplateArgs;
2078   DecomposeUnqualifiedId(Id, TemplateArgsBuffer, NameInfo, TemplateArgs);
2079 
2080   DeclarationName Name = NameInfo.getName();
2081   IdentifierInfo *II = Name.getAsIdentifierInfo();
2082   SourceLocation NameLoc = NameInfo.getLoc();
2083 
2084   // C++ [temp.dep.expr]p3:
2085   //   An id-expression is type-dependent if it contains:
2086   //     -- an identifier that was declared with a dependent type,
2087   //        (note: handled after lookup)
2088   //     -- a template-id that is dependent,
2089   //        (note: handled in BuildTemplateIdExpr)
2090   //     -- a conversion-function-id that specifies a dependent type,
2091   //     -- a nested-name-specifier that contains a class-name that
2092   //        names a dependent type.
2093   // Determine whether this is a member of an unknown specialization;
2094   // we need to handle these differently.
2095   bool DependentID = false;
2096   if (Name.getNameKind() == DeclarationName::CXXConversionFunctionName &&
2097       Name.getCXXNameType()->isDependentType()) {
2098     DependentID = true;
2099   } else if (SS.isSet()) {
2100     if (DeclContext *DC = computeDeclContext(SS, false)) {
2101       if (RequireCompleteDeclContext(SS, DC))
2102         return ExprError();
2103     } else {
2104       DependentID = true;
2105     }
2106   }
2107 
2108   if (DependentID)
2109     return ActOnDependentIdExpression(SS, TemplateKWLoc, NameInfo,
2110                                       IsAddressOfOperand, TemplateArgs);
2111 
2112   // Perform the required lookup.
2113   LookupResult R(*this, NameInfo,
2114                  (Id.getKind() == UnqualifiedId::IK_ImplicitSelfParam)
2115                   ? LookupObjCImplicitSelfParam : LookupOrdinaryName);
2116   if (TemplateArgs) {
2117     // Lookup the template name again to correctly establish the context in
2118     // which it was found. This is really unfortunate as we already did the
2119     // lookup to determine that it was a template name in the first place. If
2120     // this becomes a performance hit, we can work harder to preserve those
2121     // results until we get here but it's likely not worth it.
2122     bool MemberOfUnknownSpecialization;
2123     LookupTemplateName(R, S, SS, QualType(), /*EnteringContext=*/false,
2124                        MemberOfUnknownSpecialization);
2125 
2126     if (MemberOfUnknownSpecialization ||
2127         (R.getResultKind() == LookupResult::NotFoundInCurrentInstantiation))
2128       return ActOnDependentIdExpression(SS, TemplateKWLoc, NameInfo,
2129                                         IsAddressOfOperand, TemplateArgs);
2130   } else {
2131     bool IvarLookupFollowUp = II && !SS.isSet() && getCurMethodDecl();
2132     LookupParsedName(R, S, &SS, !IvarLookupFollowUp);
2133 
2134     // If the result might be in a dependent base class, this is a dependent
2135     // id-expression.
2136     if (R.getResultKind() == LookupResult::NotFoundInCurrentInstantiation)
2137       return ActOnDependentIdExpression(SS, TemplateKWLoc, NameInfo,
2138                                         IsAddressOfOperand, TemplateArgs);
2139 
2140     // If this reference is in an Objective-C method, then we need to do
2141     // some special Objective-C lookup, too.
2142     if (IvarLookupFollowUp) {
2143       ExprResult E(LookupInObjCMethod(R, S, II, true));
2144       if (E.isInvalid())
2145         return ExprError();
2146 
2147       if (Expr *Ex = E.getAs<Expr>())
2148         return Ex;
2149     }
2150   }
2151 
2152   if (R.isAmbiguous())
2153     return ExprError();
2154 
2155   // This could be an implicitly declared function reference (legal in C90,
2156   // extension in C99, forbidden in C++).
2157   if (R.empty() && HasTrailingLParen && II && !getLangOpts().CPlusPlus) {
2158     NamedDecl *D = ImplicitlyDefineFunction(NameLoc, *II, S);
2159     if (D) R.addDecl(D);
2160   }
2161 
2162   // Determine whether this name might be a candidate for
2163   // argument-dependent lookup.
2164   bool ADL = UseArgumentDependentLookup(SS, R, HasTrailingLParen);
2165 
2166   if (R.empty() && !ADL) {
2167     if (SS.isEmpty() && getLangOpts().MSVCCompat) {
2168       if (Expr *E = recoverFromMSUnqualifiedLookup(*this, Context, NameInfo,
2169                                                    TemplateKWLoc, TemplateArgs))
2170         return E;
2171     }
2172 
2173     // Don't diagnose an empty lookup for inline assembly.
2174     if (IsInlineAsmIdentifier)
2175       return ExprError();
2176 
2177     // If this name wasn't predeclared and if this is not a function
2178     // call, diagnose the problem.
2179     TypoExpr *TE = nullptr;
2180     auto DefaultValidator = llvm::make_unique<CorrectionCandidateCallback>(
2181         II, SS.isValid() ? SS.getScopeRep() : nullptr);
2182     DefaultValidator->IsAddressOfOperand = IsAddressOfOperand;
2183     assert((!CCC || CCC->IsAddressOfOperand == IsAddressOfOperand) &&
2184            "Typo correction callback misconfigured");
2185     if (CCC) {
2186       // Make sure the callback knows what the typo being diagnosed is.
2187       CCC->setTypoName(II);
2188       if (SS.isValid())
2189         CCC->setTypoNNS(SS.getScopeRep());
2190     }
2191     if (DiagnoseEmptyLookup(S, SS, R,
2192                             CCC ? std::move(CCC) : std::move(DefaultValidator),
2193                             nullptr, None, &TE)) {
2194       if (TE && KeywordReplacement) {
2195         auto &State = getTypoExprState(TE);
2196         auto BestTC = State.Consumer->getNextCorrection();
2197         if (BestTC.isKeyword()) {
2198           auto *II = BestTC.getCorrectionAsIdentifierInfo();
2199           if (State.DiagHandler)
2200             State.DiagHandler(BestTC);
2201           KeywordReplacement->startToken();
2202           KeywordReplacement->setKind(II->getTokenID());
2203           KeywordReplacement->setIdentifierInfo(II);
2204           KeywordReplacement->setLocation(BestTC.getCorrectionRange().getBegin());
2205           // Clean up the state associated with the TypoExpr, since it has
2206           // now been diagnosed (without a call to CorrectDelayedTyposInExpr).
2207           clearDelayedTypo(TE);
2208           // Signal that a correction to a keyword was performed by returning a
2209           // valid-but-null ExprResult.
2210           return (Expr*)nullptr;
2211         }
2212         State.Consumer->resetCorrectionStream();
2213       }
2214       return TE ? TE : ExprError();
2215     }
2216 
2217     assert(!R.empty() &&
2218            "DiagnoseEmptyLookup returned false but added no results");
2219 
2220     // If we found an Objective-C instance variable, let
2221     // LookupInObjCMethod build the appropriate expression to
2222     // reference the ivar.
2223     if (ObjCIvarDecl *Ivar = R.getAsSingle<ObjCIvarDecl>()) {
2224       R.clear();
2225       ExprResult E(LookupInObjCMethod(R, S, Ivar->getIdentifier()));
2226       // In a hopelessly buggy code, Objective-C instance variable
2227       // lookup fails and no expression will be built to reference it.
2228       if (!E.isInvalid() && !E.get())
2229         return ExprError();
2230       return E;
2231     }
2232   }
2233 
2234   // This is guaranteed from this point on.
2235   assert(!R.empty() || ADL);
2236 
2237   // Check whether this might be a C++ implicit instance member access.
2238   // C++ [class.mfct.non-static]p3:
2239   //   When an id-expression that is not part of a class member access
2240   //   syntax and not used to form a pointer to member is used in the
2241   //   body of a non-static member function of class X, if name lookup
2242   //   resolves the name in the id-expression to a non-static non-type
2243   //   member of some class C, the id-expression is transformed into a
2244   //   class member access expression using (*this) as the
2245   //   postfix-expression to the left of the . operator.
2246   //
2247   // But we don't actually need to do this for '&' operands if R
2248   // resolved to a function or overloaded function set, because the
2249   // expression is ill-formed if it actually works out to be a
2250   // non-static member function:
2251   //
2252   // C++ [expr.ref]p4:
2253   //   Otherwise, if E1.E2 refers to a non-static member function. . .
2254   //   [t]he expression can be used only as the left-hand operand of a
2255   //   member function call.
2256   //
2257   // There are other safeguards against such uses, but it's important
2258   // to get this right here so that we don't end up making a
2259   // spuriously dependent expression if we're inside a dependent
2260   // instance method.
2261   if (!R.empty() && (*R.begin())->isCXXClassMember()) {
2262     bool MightBeImplicitMember;
2263     if (!IsAddressOfOperand)
2264       MightBeImplicitMember = true;
2265     else if (!SS.isEmpty())
2266       MightBeImplicitMember = false;
2267     else if (R.isOverloadedResult())
2268       MightBeImplicitMember = false;
2269     else if (R.isUnresolvableResult())
2270       MightBeImplicitMember = true;
2271     else
2272       MightBeImplicitMember = isa<FieldDecl>(R.getFoundDecl()) ||
2273                               isa<IndirectFieldDecl>(R.getFoundDecl()) ||
2274                               isa<MSPropertyDecl>(R.getFoundDecl());
2275 
2276     if (MightBeImplicitMember)
2277       return BuildPossibleImplicitMemberExpr(SS, TemplateKWLoc,
2278                                              R, TemplateArgs, S);
2279   }
2280 
2281   if (TemplateArgs || TemplateKWLoc.isValid()) {
2282 
2283     // In C++1y, if this is a variable template id, then check it
2284     // in BuildTemplateIdExpr().
2285     // The single lookup result must be a variable template declaration.
2286     if (Id.getKind() == UnqualifiedId::IK_TemplateId && Id.TemplateId &&
2287         Id.TemplateId->Kind == TNK_Var_template) {
2288       assert(R.getAsSingle<VarTemplateDecl>() &&
2289              "There should only be one declaration found.");
2290     }
2291 
2292     return BuildTemplateIdExpr(SS, TemplateKWLoc, R, ADL, TemplateArgs);
2293   }
2294 
2295   return BuildDeclarationNameExpr(SS, R, ADL);
2296 }
2297 
2298 /// BuildQualifiedDeclarationNameExpr - Build a C++ qualified
2299 /// declaration name, generally during template instantiation.
2300 /// There's a large number of things which don't need to be done along
2301 /// this path.
2302 ExprResult Sema::BuildQualifiedDeclarationNameExpr(
2303     CXXScopeSpec &SS, const DeclarationNameInfo &NameInfo,
2304     bool IsAddressOfOperand, const Scope *S, TypeSourceInfo **RecoveryTSI) {
2305   DeclContext *DC = computeDeclContext(SS, false);
2306   if (!DC)
2307     return BuildDependentDeclRefExpr(SS, /*TemplateKWLoc=*/SourceLocation(),
2308                                      NameInfo, /*TemplateArgs=*/nullptr);
2309 
2310   if (RequireCompleteDeclContext(SS, DC))
2311     return ExprError();
2312 
2313   LookupResult R(*this, NameInfo, LookupOrdinaryName);
2314   LookupQualifiedName(R, DC);
2315 
2316   if (R.isAmbiguous())
2317     return ExprError();
2318 
2319   if (R.getResultKind() == LookupResult::NotFoundInCurrentInstantiation)
2320     return BuildDependentDeclRefExpr(SS, /*TemplateKWLoc=*/SourceLocation(),
2321                                      NameInfo, /*TemplateArgs=*/nullptr);
2322 
2323   if (R.empty()) {
2324     Diag(NameInfo.getLoc(), diag::err_no_member)
2325       << NameInfo.getName() << DC << SS.getRange();
2326     return ExprError();
2327   }
2328 
2329   if (const TypeDecl *TD = R.getAsSingle<TypeDecl>()) {
2330     // Diagnose a missing typename if this resolved unambiguously to a type in
2331     // a dependent context.  If we can recover with a type, downgrade this to
2332     // a warning in Microsoft compatibility mode.
2333     unsigned DiagID = diag::err_typename_missing;
2334     if (RecoveryTSI && getLangOpts().MSVCCompat)
2335       DiagID = diag::ext_typename_missing;
2336     SourceLocation Loc = SS.getBeginLoc();
2337     auto D = Diag(Loc, DiagID);
2338     D << SS.getScopeRep() << NameInfo.getName().getAsString()
2339       << SourceRange(Loc, NameInfo.getEndLoc());
2340 
2341     // Don't recover if the caller isn't expecting us to or if we're in a SFINAE
2342     // context.
2343     if (!RecoveryTSI)
2344       return ExprError();
2345 
2346     // Only issue the fixit if we're prepared to recover.
2347     D << FixItHint::CreateInsertion(Loc, "typename ");
2348 
2349     // Recover by pretending this was an elaborated type.
2350     QualType Ty = Context.getTypeDeclType(TD);
2351     TypeLocBuilder TLB;
2352     TLB.pushTypeSpec(Ty).setNameLoc(NameInfo.getLoc());
2353 
2354     QualType ET = getElaboratedType(ETK_None, SS, Ty);
2355     ElaboratedTypeLoc QTL = TLB.push<ElaboratedTypeLoc>(ET);
2356     QTL.setElaboratedKeywordLoc(SourceLocation());
2357     QTL.setQualifierLoc(SS.getWithLocInContext(Context));
2358 
2359     *RecoveryTSI = TLB.getTypeSourceInfo(Context, ET);
2360 
2361     return ExprEmpty();
2362   }
2363 
2364   // Defend against this resolving to an implicit member access. We usually
2365   // won't get here if this might be a legitimate a class member (we end up in
2366   // BuildMemberReferenceExpr instead), but this can be valid if we're forming
2367   // a pointer-to-member or in an unevaluated context in C++11.
2368   if (!R.empty() && (*R.begin())->isCXXClassMember() && !IsAddressOfOperand)
2369     return BuildPossibleImplicitMemberExpr(SS,
2370                                            /*TemplateKWLoc=*/SourceLocation(),
2371                                            R, /*TemplateArgs=*/nullptr, S);
2372 
2373   return BuildDeclarationNameExpr(SS, R, /* ADL */ false);
2374 }
2375 
2376 /// LookupInObjCMethod - The parser has read a name in, and Sema has
2377 /// detected that we're currently inside an ObjC method.  Perform some
2378 /// additional lookup.
2379 ///
2380 /// Ideally, most of this would be done by lookup, but there's
2381 /// actually quite a lot of extra work involved.
2382 ///
2383 /// Returns a null sentinel to indicate trivial success.
2384 ExprResult
2385 Sema::LookupInObjCMethod(LookupResult &Lookup, Scope *S,
2386                          IdentifierInfo *II, bool AllowBuiltinCreation) {
2387   SourceLocation Loc = Lookup.getNameLoc();
2388   ObjCMethodDecl *CurMethod = getCurMethodDecl();
2389 
2390   // Check for error condition which is already reported.
2391   if (!CurMethod)
2392     return ExprError();
2393 
2394   // There are two cases to handle here.  1) scoped lookup could have failed,
2395   // in which case we should look for an ivar.  2) scoped lookup could have
2396   // found a decl, but that decl is outside the current instance method (i.e.
2397   // a global variable).  In these two cases, we do a lookup for an ivar with
2398   // this name, if the lookup sucedes, we replace it our current decl.
2399 
2400   // If we're in a class method, we don't normally want to look for
2401   // ivars.  But if we don't find anything else, and there's an
2402   // ivar, that's an error.
2403   bool IsClassMethod = CurMethod->isClassMethod();
2404 
2405   bool LookForIvars;
2406   if (Lookup.empty())
2407     LookForIvars = true;
2408   else if (IsClassMethod)
2409     LookForIvars = false;
2410   else
2411     LookForIvars = (Lookup.isSingleResult() &&
2412                     Lookup.getFoundDecl()->isDefinedOutsideFunctionOrMethod());
2413   ObjCInterfaceDecl *IFace = nullptr;
2414   if (LookForIvars) {
2415     IFace = CurMethod->getClassInterface();
2416     ObjCInterfaceDecl *ClassDeclared;
2417     ObjCIvarDecl *IV = nullptr;
2418     if (IFace && (IV = IFace->lookupInstanceVariable(II, ClassDeclared))) {
2419       // Diagnose using an ivar in a class method.
2420       if (IsClassMethod)
2421         return ExprError(Diag(Loc, diag::error_ivar_use_in_class_method)
2422                          << IV->getDeclName());
2423 
2424       // If we're referencing an invalid decl, just return this as a silent
2425       // error node.  The error diagnostic was already emitted on the decl.
2426       if (IV->isInvalidDecl())
2427         return ExprError();
2428 
2429       // Check if referencing a field with __attribute__((deprecated)).
2430       if (DiagnoseUseOfDecl(IV, Loc))
2431         return ExprError();
2432 
2433       // Diagnose the use of an ivar outside of the declaring class.
2434       if (IV->getAccessControl() == ObjCIvarDecl::Private &&
2435           !declaresSameEntity(ClassDeclared, IFace) &&
2436           !getLangOpts().DebuggerSupport)
2437         Diag(Loc, diag::error_private_ivar_access) << IV->getDeclName();
2438 
2439       // FIXME: This should use a new expr for a direct reference, don't
2440       // turn this into Self->ivar, just return a BareIVarExpr or something.
2441       IdentifierInfo &II = Context.Idents.get("self");
2442       UnqualifiedId SelfName;
2443       SelfName.setIdentifier(&II, SourceLocation());
2444       SelfName.setKind(UnqualifiedId::IK_ImplicitSelfParam);
2445       CXXScopeSpec SelfScopeSpec;
2446       SourceLocation TemplateKWLoc;
2447       ExprResult SelfExpr = ActOnIdExpression(S, SelfScopeSpec, TemplateKWLoc,
2448                                               SelfName, false, false);
2449       if (SelfExpr.isInvalid())
2450         return ExprError();
2451 
2452       SelfExpr = DefaultLvalueConversion(SelfExpr.get());
2453       if (SelfExpr.isInvalid())
2454         return ExprError();
2455 
2456       MarkAnyDeclReferenced(Loc, IV, true);
2457 
2458       ObjCMethodFamily MF = CurMethod->getMethodFamily();
2459       if (MF != OMF_init && MF != OMF_dealloc && MF != OMF_finalize &&
2460           !IvarBacksCurrentMethodAccessor(IFace, CurMethod, IV))
2461         Diag(Loc, diag::warn_direct_ivar_access) << IV->getDeclName();
2462 
2463       ObjCIvarRefExpr *Result = new (Context)
2464           ObjCIvarRefExpr(IV, IV->getUsageType(SelfExpr.get()->getType()), Loc,
2465                           IV->getLocation(), SelfExpr.get(), true, true);
2466 
2467       if (getLangOpts().ObjCAutoRefCount) {
2468         if (IV->getType().getObjCLifetime() == Qualifiers::OCL_Weak) {
2469           if (!Diags.isIgnored(diag::warn_arc_repeated_use_of_weak, Loc))
2470             recordUseOfEvaluatedWeak(Result);
2471         }
2472         if (CurContext->isClosure())
2473           Diag(Loc, diag::warn_implicitly_retains_self)
2474             << FixItHint::CreateInsertion(Loc, "self->");
2475       }
2476 
2477       return Result;
2478     }
2479   } else if (CurMethod->isInstanceMethod()) {
2480     // We should warn if a local variable hides an ivar.
2481     if (ObjCInterfaceDecl *IFace = CurMethod->getClassInterface()) {
2482       ObjCInterfaceDecl *ClassDeclared;
2483       if (ObjCIvarDecl *IV = IFace->lookupInstanceVariable(II, ClassDeclared)) {
2484         if (IV->getAccessControl() != ObjCIvarDecl::Private ||
2485             declaresSameEntity(IFace, ClassDeclared))
2486           Diag(Loc, diag::warn_ivar_use_hidden) << IV->getDeclName();
2487       }
2488     }
2489   } else if (Lookup.isSingleResult() &&
2490              Lookup.getFoundDecl()->isDefinedOutsideFunctionOrMethod()) {
2491     // If accessing a stand-alone ivar in a class method, this is an error.
2492     if (const ObjCIvarDecl *IV = dyn_cast<ObjCIvarDecl>(Lookup.getFoundDecl()))
2493       return ExprError(Diag(Loc, diag::error_ivar_use_in_class_method)
2494                        << IV->getDeclName());
2495   }
2496 
2497   if (Lookup.empty() && II && AllowBuiltinCreation) {
2498     // FIXME. Consolidate this with similar code in LookupName.
2499     if (unsigned BuiltinID = II->getBuiltinID()) {
2500       if (!(getLangOpts().CPlusPlus &&
2501             Context.BuiltinInfo.isPredefinedLibFunction(BuiltinID))) {
2502         NamedDecl *D = LazilyCreateBuiltin((IdentifierInfo *)II, BuiltinID,
2503                                            S, Lookup.isForRedeclaration(),
2504                                            Lookup.getNameLoc());
2505         if (D) Lookup.addDecl(D);
2506       }
2507     }
2508   }
2509   // Sentinel value saying that we didn't do anything special.
2510   return ExprResult((Expr *)nullptr);
2511 }
2512 
2513 /// \brief Cast a base object to a member's actual type.
2514 ///
2515 /// Logically this happens in three phases:
2516 ///
2517 /// * First we cast from the base type to the naming class.
2518 ///   The naming class is the class into which we were looking
2519 ///   when we found the member;  it's the qualifier type if a
2520 ///   qualifier was provided, and otherwise it's the base type.
2521 ///
2522 /// * Next we cast from the naming class to the declaring class.
2523 ///   If the member we found was brought into a class's scope by
2524 ///   a using declaration, this is that class;  otherwise it's
2525 ///   the class declaring the member.
2526 ///
2527 /// * Finally we cast from the declaring class to the "true"
2528 ///   declaring class of the member.  This conversion does not
2529 ///   obey access control.
2530 ExprResult
2531 Sema::PerformObjectMemberConversion(Expr *From,
2532                                     NestedNameSpecifier *Qualifier,
2533                                     NamedDecl *FoundDecl,
2534                                     NamedDecl *Member) {
2535   CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(Member->getDeclContext());
2536   if (!RD)
2537     return From;
2538 
2539   QualType DestRecordType;
2540   QualType DestType;
2541   QualType FromRecordType;
2542   QualType FromType = From->getType();
2543   bool PointerConversions = false;
2544   if (isa<FieldDecl>(Member)) {
2545     DestRecordType = Context.getCanonicalType(Context.getTypeDeclType(RD));
2546 
2547     if (FromType->getAs<PointerType>()) {
2548       DestType = Context.getPointerType(DestRecordType);
2549       FromRecordType = FromType->getPointeeType();
2550       PointerConversions = true;
2551     } else {
2552       DestType = DestRecordType;
2553       FromRecordType = FromType;
2554     }
2555   } else if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Member)) {
2556     if (Method->isStatic())
2557       return From;
2558 
2559     DestType = Method->getThisType(Context);
2560     DestRecordType = DestType->getPointeeType();
2561 
2562     if (FromType->getAs<PointerType>()) {
2563       FromRecordType = FromType->getPointeeType();
2564       PointerConversions = true;
2565     } else {
2566       FromRecordType = FromType;
2567       DestType = DestRecordType;
2568     }
2569   } else {
2570     // No conversion necessary.
2571     return From;
2572   }
2573 
2574   if (DestType->isDependentType() || FromType->isDependentType())
2575     return From;
2576 
2577   // If the unqualified types are the same, no conversion is necessary.
2578   if (Context.hasSameUnqualifiedType(FromRecordType, DestRecordType))
2579     return From;
2580 
2581   SourceRange FromRange = From->getSourceRange();
2582   SourceLocation FromLoc = FromRange.getBegin();
2583 
2584   ExprValueKind VK = From->getValueKind();
2585 
2586   // C++ [class.member.lookup]p8:
2587   //   [...] Ambiguities can often be resolved by qualifying a name with its
2588   //   class name.
2589   //
2590   // If the member was a qualified name and the qualified referred to a
2591   // specific base subobject type, we'll cast to that intermediate type
2592   // first and then to the object in which the member is declared. That allows
2593   // one to resolve ambiguities in, e.g., a diamond-shaped hierarchy such as:
2594   //
2595   //   class Base { public: int x; };
2596   //   class Derived1 : public Base { };
2597   //   class Derived2 : public Base { };
2598   //   class VeryDerived : public Derived1, public Derived2 { void f(); };
2599   //
2600   //   void VeryDerived::f() {
2601   //     x = 17; // error: ambiguous base subobjects
2602   //     Derived1::x = 17; // okay, pick the Base subobject of Derived1
2603   //   }
2604   if (Qualifier && Qualifier->getAsType()) {
2605     QualType QType = QualType(Qualifier->getAsType(), 0);
2606     assert(QType->isRecordType() && "lookup done with non-record type");
2607 
2608     QualType QRecordType = QualType(QType->getAs<RecordType>(), 0);
2609 
2610     // In C++98, the qualifier type doesn't actually have to be a base
2611     // type of the object type, in which case we just ignore it.
2612     // Otherwise build the appropriate casts.
2613     if (IsDerivedFrom(FromLoc, FromRecordType, QRecordType)) {
2614       CXXCastPath BasePath;
2615       if (CheckDerivedToBaseConversion(FromRecordType, QRecordType,
2616                                        FromLoc, FromRange, &BasePath))
2617         return ExprError();
2618 
2619       if (PointerConversions)
2620         QType = Context.getPointerType(QType);
2621       From = ImpCastExprToType(From, QType, CK_UncheckedDerivedToBase,
2622                                VK, &BasePath).get();
2623 
2624       FromType = QType;
2625       FromRecordType = QRecordType;
2626 
2627       // If the qualifier type was the same as the destination type,
2628       // we're done.
2629       if (Context.hasSameUnqualifiedType(FromRecordType, DestRecordType))
2630         return From;
2631     }
2632   }
2633 
2634   bool IgnoreAccess = false;
2635 
2636   // If we actually found the member through a using declaration, cast
2637   // down to the using declaration's type.
2638   //
2639   // Pointer equality is fine here because only one declaration of a
2640   // class ever has member declarations.
2641   if (FoundDecl->getDeclContext() != Member->getDeclContext()) {
2642     assert(isa<UsingShadowDecl>(FoundDecl));
2643     QualType URecordType = Context.getTypeDeclType(
2644                            cast<CXXRecordDecl>(FoundDecl->getDeclContext()));
2645 
2646     // We only need to do this if the naming-class to declaring-class
2647     // conversion is non-trivial.
2648     if (!Context.hasSameUnqualifiedType(FromRecordType, URecordType)) {
2649       assert(IsDerivedFrom(FromLoc, FromRecordType, URecordType));
2650       CXXCastPath BasePath;
2651       if (CheckDerivedToBaseConversion(FromRecordType, URecordType,
2652                                        FromLoc, FromRange, &BasePath))
2653         return ExprError();
2654 
2655       QualType UType = URecordType;
2656       if (PointerConversions)
2657         UType = Context.getPointerType(UType);
2658       From = ImpCastExprToType(From, UType, CK_UncheckedDerivedToBase,
2659                                VK, &BasePath).get();
2660       FromType = UType;
2661       FromRecordType = URecordType;
2662     }
2663 
2664     // We don't do access control for the conversion from the
2665     // declaring class to the true declaring class.
2666     IgnoreAccess = true;
2667   }
2668 
2669   CXXCastPath BasePath;
2670   if (CheckDerivedToBaseConversion(FromRecordType, DestRecordType,
2671                                    FromLoc, FromRange, &BasePath,
2672                                    IgnoreAccess))
2673     return ExprError();
2674 
2675   return ImpCastExprToType(From, DestType, CK_UncheckedDerivedToBase,
2676                            VK, &BasePath);
2677 }
2678 
2679 bool Sema::UseArgumentDependentLookup(const CXXScopeSpec &SS,
2680                                       const LookupResult &R,
2681                                       bool HasTrailingLParen) {
2682   // Only when used directly as the postfix-expression of a call.
2683   if (!HasTrailingLParen)
2684     return false;
2685 
2686   // Never if a scope specifier was provided.
2687   if (SS.isSet())
2688     return false;
2689 
2690   // Only in C++ or ObjC++.
2691   if (!getLangOpts().CPlusPlus)
2692     return false;
2693 
2694   // Turn off ADL when we find certain kinds of declarations during
2695   // normal lookup:
2696   for (NamedDecl *D : R) {
2697     // C++0x [basic.lookup.argdep]p3:
2698     //     -- a declaration of a class member
2699     // Since using decls preserve this property, we check this on the
2700     // original decl.
2701     if (D->isCXXClassMember())
2702       return false;
2703 
2704     // C++0x [basic.lookup.argdep]p3:
2705     //     -- a block-scope function declaration that is not a
2706     //        using-declaration
2707     // NOTE: we also trigger this for function templates (in fact, we
2708     // don't check the decl type at all, since all other decl types
2709     // turn off ADL anyway).
2710     if (isa<UsingShadowDecl>(D))
2711       D = cast<UsingShadowDecl>(D)->getTargetDecl();
2712     else if (D->getLexicalDeclContext()->isFunctionOrMethod())
2713       return false;
2714 
2715     // C++0x [basic.lookup.argdep]p3:
2716     //     -- a declaration that is neither a function or a function
2717     //        template
2718     // And also for builtin functions.
2719     if (isa<FunctionDecl>(D)) {
2720       FunctionDecl *FDecl = cast<FunctionDecl>(D);
2721 
2722       // But also builtin functions.
2723       if (FDecl->getBuiltinID() && FDecl->isImplicit())
2724         return false;
2725     } else if (!isa<FunctionTemplateDecl>(D))
2726       return false;
2727   }
2728 
2729   return true;
2730 }
2731 
2732 
2733 /// Diagnoses obvious problems with the use of the given declaration
2734 /// as an expression.  This is only actually called for lookups that
2735 /// were not overloaded, and it doesn't promise that the declaration
2736 /// will in fact be used.
2737 static bool CheckDeclInExpr(Sema &S, SourceLocation Loc, NamedDecl *D) {
2738   if (isa<TypedefNameDecl>(D)) {
2739     S.Diag(Loc, diag::err_unexpected_typedef) << D->getDeclName();
2740     return true;
2741   }
2742 
2743   if (isa<ObjCInterfaceDecl>(D)) {
2744     S.Diag(Loc, diag::err_unexpected_interface) << D->getDeclName();
2745     return true;
2746   }
2747 
2748   if (isa<NamespaceDecl>(D)) {
2749     S.Diag(Loc, diag::err_unexpected_namespace) << D->getDeclName();
2750     return true;
2751   }
2752 
2753   return false;
2754 }
2755 
2756 ExprResult Sema::BuildDeclarationNameExpr(const CXXScopeSpec &SS,
2757                                           LookupResult &R, bool NeedsADL,
2758                                           bool AcceptInvalidDecl) {
2759   // If this is a single, fully-resolved result and we don't need ADL,
2760   // just build an ordinary singleton decl ref.
2761   if (!NeedsADL && R.isSingleResult() && !R.getAsSingle<FunctionTemplateDecl>())
2762     return BuildDeclarationNameExpr(SS, R.getLookupNameInfo(), R.getFoundDecl(),
2763                                     R.getRepresentativeDecl(), nullptr,
2764                                     AcceptInvalidDecl);
2765 
2766   // We only need to check the declaration if there's exactly one
2767   // result, because in the overloaded case the results can only be
2768   // functions and function templates.
2769   if (R.isSingleResult() &&
2770       CheckDeclInExpr(*this, R.getNameLoc(), R.getFoundDecl()))
2771     return ExprError();
2772 
2773   // Otherwise, just build an unresolved lookup expression.  Suppress
2774   // any lookup-related diagnostics; we'll hash these out later, when
2775   // we've picked a target.
2776   R.suppressDiagnostics();
2777 
2778   UnresolvedLookupExpr *ULE
2779     = UnresolvedLookupExpr::Create(Context, R.getNamingClass(),
2780                                    SS.getWithLocInContext(Context),
2781                                    R.getLookupNameInfo(),
2782                                    NeedsADL, R.isOverloadedResult(),
2783                                    R.begin(), R.end());
2784 
2785   return ULE;
2786 }
2787 
2788 /// \brief Complete semantic analysis for a reference to the given declaration.
2789 ExprResult Sema::BuildDeclarationNameExpr(
2790     const CXXScopeSpec &SS, const DeclarationNameInfo &NameInfo, NamedDecl *D,
2791     NamedDecl *FoundD, const TemplateArgumentListInfo *TemplateArgs,
2792     bool AcceptInvalidDecl) {
2793   assert(D && "Cannot refer to a NULL declaration");
2794   assert(!isa<FunctionTemplateDecl>(D) &&
2795          "Cannot refer unambiguously to a function template");
2796 
2797   SourceLocation Loc = NameInfo.getLoc();
2798   if (CheckDeclInExpr(*this, Loc, D))
2799     return ExprError();
2800 
2801   if (TemplateDecl *Template = dyn_cast<TemplateDecl>(D)) {
2802     // Specifically diagnose references to class templates that are missing
2803     // a template argument list.
2804     Diag(Loc, diag::err_template_decl_ref) << (isa<VarTemplateDecl>(D) ? 1 : 0)
2805                                            << Template << SS.getRange();
2806     Diag(Template->getLocation(), diag::note_template_decl_here);
2807     return ExprError();
2808   }
2809 
2810   // Make sure that we're referring to a value.
2811   ValueDecl *VD = dyn_cast<ValueDecl>(D);
2812   if (!VD) {
2813     Diag(Loc, diag::err_ref_non_value)
2814       << D << SS.getRange();
2815     Diag(D->getLocation(), diag::note_declared_at);
2816     return ExprError();
2817   }
2818 
2819   // Check whether this declaration can be used. Note that we suppress
2820   // this check when we're going to perform argument-dependent lookup
2821   // on this function name, because this might not be the function
2822   // that overload resolution actually selects.
2823   if (DiagnoseUseOfDecl(VD, Loc))
2824     return ExprError();
2825 
2826   // Only create DeclRefExpr's for valid Decl's.
2827   if (VD->isInvalidDecl() && !AcceptInvalidDecl)
2828     return ExprError();
2829 
2830   // Handle members of anonymous structs and unions.  If we got here,
2831   // and the reference is to a class member indirect field, then this
2832   // must be the subject of a pointer-to-member expression.
2833   if (IndirectFieldDecl *indirectField = dyn_cast<IndirectFieldDecl>(VD))
2834     if (!indirectField->isCXXClassMember())
2835       return BuildAnonymousStructUnionMemberReference(SS, NameInfo.getLoc(),
2836                                                       indirectField);
2837 
2838   {
2839     QualType type = VD->getType();
2840     ExprValueKind valueKind = VK_RValue;
2841 
2842     switch (D->getKind()) {
2843     // Ignore all the non-ValueDecl kinds.
2844 #define ABSTRACT_DECL(kind)
2845 #define VALUE(type, base)
2846 #define DECL(type, base) \
2847     case Decl::type:
2848 #include "clang/AST/DeclNodes.inc"
2849       llvm_unreachable("invalid value decl kind");
2850 
2851     // These shouldn't make it here.
2852     case Decl::ObjCAtDefsField:
2853     case Decl::ObjCIvar:
2854       llvm_unreachable("forming non-member reference to ivar?");
2855 
2856     // Enum constants are always r-values and never references.
2857     // Unresolved using declarations are dependent.
2858     case Decl::EnumConstant:
2859     case Decl::UnresolvedUsingValue:
2860     case Decl::OMPDeclareReduction:
2861       valueKind = VK_RValue;
2862       break;
2863 
2864     // Fields and indirect fields that got here must be for
2865     // pointer-to-member expressions; we just call them l-values for
2866     // internal consistency, because this subexpression doesn't really
2867     // exist in the high-level semantics.
2868     case Decl::Field:
2869     case Decl::IndirectField:
2870       assert(getLangOpts().CPlusPlus &&
2871              "building reference to field in C?");
2872 
2873       // These can't have reference type in well-formed programs, but
2874       // for internal consistency we do this anyway.
2875       type = type.getNonReferenceType();
2876       valueKind = VK_LValue;
2877       break;
2878 
2879     // Non-type template parameters are either l-values or r-values
2880     // depending on the type.
2881     case Decl::NonTypeTemplateParm: {
2882       if (const ReferenceType *reftype = type->getAs<ReferenceType>()) {
2883         type = reftype->getPointeeType();
2884         valueKind = VK_LValue; // even if the parameter is an r-value reference
2885         break;
2886       }
2887 
2888       // For non-references, we need to strip qualifiers just in case
2889       // the template parameter was declared as 'const int' or whatever.
2890       valueKind = VK_RValue;
2891       type = type.getUnqualifiedType();
2892       break;
2893     }
2894 
2895     case Decl::Var:
2896     case Decl::VarTemplateSpecialization:
2897     case Decl::VarTemplatePartialSpecialization:
2898     case Decl::OMPCapturedExpr:
2899       // In C, "extern void blah;" is valid and is an r-value.
2900       if (!getLangOpts().CPlusPlus &&
2901           !type.hasQualifiers() &&
2902           type->isVoidType()) {
2903         valueKind = VK_RValue;
2904         break;
2905       }
2906       // fallthrough
2907 
2908     case Decl::ImplicitParam:
2909     case Decl::ParmVar: {
2910       // These are always l-values.
2911       valueKind = VK_LValue;
2912       type = type.getNonReferenceType();
2913 
2914       // FIXME: Does the addition of const really only apply in
2915       // potentially-evaluated contexts? Since the variable isn't actually
2916       // captured in an unevaluated context, it seems that the answer is no.
2917       if (!isUnevaluatedContext()) {
2918         QualType CapturedType = getCapturedDeclRefType(cast<VarDecl>(VD), Loc);
2919         if (!CapturedType.isNull())
2920           type = CapturedType;
2921       }
2922 
2923       break;
2924     }
2925 
2926     case Decl::Function: {
2927       if (unsigned BID = cast<FunctionDecl>(VD)->getBuiltinID()) {
2928         if (!Context.BuiltinInfo.isPredefinedLibFunction(BID)) {
2929           type = Context.BuiltinFnTy;
2930           valueKind = VK_RValue;
2931           break;
2932         }
2933       }
2934 
2935       const FunctionType *fty = type->castAs<FunctionType>();
2936 
2937       // If we're referring to a function with an __unknown_anytype
2938       // result type, make the entire expression __unknown_anytype.
2939       if (fty->getReturnType() == Context.UnknownAnyTy) {
2940         type = Context.UnknownAnyTy;
2941         valueKind = VK_RValue;
2942         break;
2943       }
2944 
2945       // Functions are l-values in C++.
2946       if (getLangOpts().CPlusPlus) {
2947         valueKind = VK_LValue;
2948         break;
2949       }
2950 
2951       // C99 DR 316 says that, if a function type comes from a
2952       // function definition (without a prototype), that type is only
2953       // used for checking compatibility. Therefore, when referencing
2954       // the function, we pretend that we don't have the full function
2955       // type.
2956       if (!cast<FunctionDecl>(VD)->hasPrototype() &&
2957           isa<FunctionProtoType>(fty))
2958         type = Context.getFunctionNoProtoType(fty->getReturnType(),
2959                                               fty->getExtInfo());
2960 
2961       // Functions are r-values in C.
2962       valueKind = VK_RValue;
2963       break;
2964     }
2965 
2966     case Decl::MSProperty:
2967       valueKind = VK_LValue;
2968       break;
2969 
2970     case Decl::CXXMethod:
2971       // If we're referring to a method with an __unknown_anytype
2972       // result type, make the entire expression __unknown_anytype.
2973       // This should only be possible with a type written directly.
2974       if (const FunctionProtoType *proto
2975             = dyn_cast<FunctionProtoType>(VD->getType()))
2976         if (proto->getReturnType() == Context.UnknownAnyTy) {
2977           type = Context.UnknownAnyTy;
2978           valueKind = VK_RValue;
2979           break;
2980         }
2981 
2982       // C++ methods are l-values if static, r-values if non-static.
2983       if (cast<CXXMethodDecl>(VD)->isStatic()) {
2984         valueKind = VK_LValue;
2985         break;
2986       }
2987       // fallthrough
2988 
2989     case Decl::CXXConversion:
2990     case Decl::CXXDestructor:
2991     case Decl::CXXConstructor:
2992       valueKind = VK_RValue;
2993       break;
2994     }
2995 
2996     return BuildDeclRefExpr(VD, type, valueKind, NameInfo, &SS, FoundD,
2997                             TemplateArgs);
2998   }
2999 }
3000 
3001 static void ConvertUTF8ToWideString(unsigned CharByteWidth, StringRef Source,
3002                                     SmallString<32> &Target) {
3003   Target.resize(CharByteWidth * (Source.size() + 1));
3004   char *ResultPtr = &Target[0];
3005   const UTF8 *ErrorPtr;
3006   bool success = ConvertUTF8toWide(CharByteWidth, Source, ResultPtr, ErrorPtr);
3007   (void)success;
3008   assert(success);
3009   Target.resize(ResultPtr - &Target[0]);
3010 }
3011 
3012 ExprResult Sema::BuildPredefinedExpr(SourceLocation Loc,
3013                                      PredefinedExpr::IdentType IT) {
3014   // Pick the current block, lambda, captured statement or function.
3015   Decl *currentDecl = nullptr;
3016   if (const BlockScopeInfo *BSI = getCurBlock())
3017     currentDecl = BSI->TheDecl;
3018   else if (const LambdaScopeInfo *LSI = getCurLambda())
3019     currentDecl = LSI->CallOperator;
3020   else if (const CapturedRegionScopeInfo *CSI = getCurCapturedRegion())
3021     currentDecl = CSI->TheCapturedDecl;
3022   else
3023     currentDecl = getCurFunctionOrMethodDecl();
3024 
3025   if (!currentDecl) {
3026     Diag(Loc, diag::ext_predef_outside_function);
3027     currentDecl = Context.getTranslationUnitDecl();
3028   }
3029 
3030   QualType ResTy;
3031   StringLiteral *SL = nullptr;
3032   if (cast<DeclContext>(currentDecl)->isDependentContext())
3033     ResTy = Context.DependentTy;
3034   else {
3035     // Pre-defined identifiers are of type char[x], where x is the length of
3036     // the string.
3037     auto Str = PredefinedExpr::ComputeName(IT, currentDecl);
3038     unsigned Length = Str.length();
3039 
3040     llvm::APInt LengthI(32, Length + 1);
3041     if (IT == PredefinedExpr::LFunction) {
3042       ResTy = Context.WideCharTy.withConst();
3043       SmallString<32> RawChars;
3044       ConvertUTF8ToWideString(Context.getTypeSizeInChars(ResTy).getQuantity(),
3045                               Str, RawChars);
3046       ResTy = Context.getConstantArrayType(ResTy, LengthI, ArrayType::Normal,
3047                                            /*IndexTypeQuals*/ 0);
3048       SL = StringLiteral::Create(Context, RawChars, StringLiteral::Wide,
3049                                  /*Pascal*/ false, ResTy, Loc);
3050     } else {
3051       ResTy = Context.CharTy.withConst();
3052       ResTy = Context.getConstantArrayType(ResTy, LengthI, ArrayType::Normal,
3053                                            /*IndexTypeQuals*/ 0);
3054       SL = StringLiteral::Create(Context, Str, StringLiteral::Ascii,
3055                                  /*Pascal*/ false, ResTy, Loc);
3056     }
3057   }
3058 
3059   return new (Context) PredefinedExpr(Loc, ResTy, IT, SL);
3060 }
3061 
3062 ExprResult Sema::ActOnPredefinedExpr(SourceLocation Loc, tok::TokenKind Kind) {
3063   PredefinedExpr::IdentType IT;
3064 
3065   switch (Kind) {
3066   default: llvm_unreachable("Unknown simple primary expr!");
3067   case tok::kw___func__: IT = PredefinedExpr::Func; break; // [C99 6.4.2.2]
3068   case tok::kw___FUNCTION__: IT = PredefinedExpr::Function; break;
3069   case tok::kw___FUNCDNAME__: IT = PredefinedExpr::FuncDName; break; // [MS]
3070   case tok::kw___FUNCSIG__: IT = PredefinedExpr::FuncSig; break; // [MS]
3071   case tok::kw_L__FUNCTION__: IT = PredefinedExpr::LFunction; break;
3072   case tok::kw___PRETTY_FUNCTION__: IT = PredefinedExpr::PrettyFunction; break;
3073   }
3074 
3075   return BuildPredefinedExpr(Loc, IT);
3076 }
3077 
3078 ExprResult Sema::ActOnCharacterConstant(const Token &Tok, Scope *UDLScope) {
3079   SmallString<16> CharBuffer;
3080   bool Invalid = false;
3081   StringRef ThisTok = PP.getSpelling(Tok, CharBuffer, &Invalid);
3082   if (Invalid)
3083     return ExprError();
3084 
3085   CharLiteralParser Literal(ThisTok.begin(), ThisTok.end(), Tok.getLocation(),
3086                             PP, Tok.getKind());
3087   if (Literal.hadError())
3088     return ExprError();
3089 
3090   QualType Ty;
3091   if (Literal.isWide())
3092     Ty = Context.WideCharTy; // L'x' -> wchar_t in C and C++.
3093   else if (Literal.isUTF16())
3094     Ty = Context.Char16Ty; // u'x' -> char16_t in C11 and C++11.
3095   else if (Literal.isUTF32())
3096     Ty = Context.Char32Ty; // U'x' -> char32_t in C11 and C++11.
3097   else if (!getLangOpts().CPlusPlus || Literal.isMultiChar())
3098     Ty = Context.IntTy;   // 'x' -> int in C, 'wxyz' -> int in C++.
3099   else
3100     Ty = Context.CharTy;  // 'x' -> char in C++
3101 
3102   CharacterLiteral::CharacterKind Kind = CharacterLiteral::Ascii;
3103   if (Literal.isWide())
3104     Kind = CharacterLiteral::Wide;
3105   else if (Literal.isUTF16())
3106     Kind = CharacterLiteral::UTF16;
3107   else if (Literal.isUTF32())
3108     Kind = CharacterLiteral::UTF32;
3109   else if (Literal.isUTF8())
3110     Kind = CharacterLiteral::UTF8;
3111 
3112   Expr *Lit = new (Context) CharacterLiteral(Literal.getValue(), Kind, Ty,
3113                                              Tok.getLocation());
3114 
3115   if (Literal.getUDSuffix().empty())
3116     return Lit;
3117 
3118   // We're building a user-defined literal.
3119   IdentifierInfo *UDSuffix = &Context.Idents.get(Literal.getUDSuffix());
3120   SourceLocation UDSuffixLoc =
3121     getUDSuffixLoc(*this, Tok.getLocation(), Literal.getUDSuffixOffset());
3122 
3123   // Make sure we're allowed user-defined literals here.
3124   if (!UDLScope)
3125     return ExprError(Diag(UDSuffixLoc, diag::err_invalid_character_udl));
3126 
3127   // C++11 [lex.ext]p6: The literal L is treated as a call of the form
3128   //   operator "" X (ch)
3129   return BuildCookedLiteralOperatorCall(*this, UDLScope, UDSuffix, UDSuffixLoc,
3130                                         Lit, Tok.getLocation());
3131 }
3132 
3133 ExprResult Sema::ActOnIntegerConstant(SourceLocation Loc, uint64_t Val) {
3134   unsigned IntSize = Context.getTargetInfo().getIntWidth();
3135   return IntegerLiteral::Create(Context, llvm::APInt(IntSize, Val),
3136                                 Context.IntTy, Loc);
3137 }
3138 
3139 static Expr *BuildFloatingLiteral(Sema &S, NumericLiteralParser &Literal,
3140                                   QualType Ty, SourceLocation Loc) {
3141   const llvm::fltSemantics &Format = S.Context.getFloatTypeSemantics(Ty);
3142 
3143   using llvm::APFloat;
3144   APFloat Val(Format);
3145 
3146   APFloat::opStatus result = Literal.GetFloatValue(Val);
3147 
3148   // Overflow is always an error, but underflow is only an error if
3149   // we underflowed to zero (APFloat reports denormals as underflow).
3150   if ((result & APFloat::opOverflow) ||
3151       ((result & APFloat::opUnderflow) && Val.isZero())) {
3152     unsigned diagnostic;
3153     SmallString<20> buffer;
3154     if (result & APFloat::opOverflow) {
3155       diagnostic = diag::warn_float_overflow;
3156       APFloat::getLargest(Format).toString(buffer);
3157     } else {
3158       diagnostic = diag::warn_float_underflow;
3159       APFloat::getSmallest(Format).toString(buffer);
3160     }
3161 
3162     S.Diag(Loc, diagnostic)
3163       << Ty
3164       << StringRef(buffer.data(), buffer.size());
3165   }
3166 
3167   bool isExact = (result == APFloat::opOK);
3168   return FloatingLiteral::Create(S.Context, Val, isExact, Ty, Loc);
3169 }
3170 
3171 bool Sema::CheckLoopHintExpr(Expr *E, SourceLocation Loc) {
3172   assert(E && "Invalid expression");
3173 
3174   if (E->isValueDependent())
3175     return false;
3176 
3177   QualType QT = E->getType();
3178   if (!QT->isIntegerType() || QT->isBooleanType() || QT->isCharType()) {
3179     Diag(E->getExprLoc(), diag::err_pragma_loop_invalid_argument_type) << QT;
3180     return true;
3181   }
3182 
3183   llvm::APSInt ValueAPS;
3184   ExprResult R = VerifyIntegerConstantExpression(E, &ValueAPS);
3185 
3186   if (R.isInvalid())
3187     return true;
3188 
3189   bool ValueIsPositive = ValueAPS.isStrictlyPositive();
3190   if (!ValueIsPositive || ValueAPS.getActiveBits() > 31) {
3191     Diag(E->getExprLoc(), diag::err_pragma_loop_invalid_argument_value)
3192         << ValueAPS.toString(10) << ValueIsPositive;
3193     return true;
3194   }
3195 
3196   return false;
3197 }
3198 
3199 ExprResult Sema::ActOnNumericConstant(const Token &Tok, Scope *UDLScope) {
3200   // Fast path for a single digit (which is quite common).  A single digit
3201   // cannot have a trigraph, escaped newline, radix prefix, or suffix.
3202   if (Tok.getLength() == 1) {
3203     const char Val = PP.getSpellingOfSingleCharacterNumericConstant(Tok);
3204     return ActOnIntegerConstant(Tok.getLocation(), Val-'0');
3205   }
3206 
3207   SmallString<128> SpellingBuffer;
3208   // NumericLiteralParser wants to overread by one character.  Add padding to
3209   // the buffer in case the token is copied to the buffer.  If getSpelling()
3210   // returns a StringRef to the memory buffer, it should have a null char at
3211   // the EOF, so it is also safe.
3212   SpellingBuffer.resize(Tok.getLength() + 1);
3213 
3214   // Get the spelling of the token, which eliminates trigraphs, etc.
3215   bool Invalid = false;
3216   StringRef TokSpelling = PP.getSpelling(Tok, SpellingBuffer, &Invalid);
3217   if (Invalid)
3218     return ExprError();
3219 
3220   NumericLiteralParser Literal(TokSpelling, Tok.getLocation(), PP);
3221   if (Literal.hadError)
3222     return ExprError();
3223 
3224   if (Literal.hasUDSuffix()) {
3225     // We're building a user-defined literal.
3226     IdentifierInfo *UDSuffix = &Context.Idents.get(Literal.getUDSuffix());
3227     SourceLocation UDSuffixLoc =
3228       getUDSuffixLoc(*this, Tok.getLocation(), Literal.getUDSuffixOffset());
3229 
3230     // Make sure we're allowed user-defined literals here.
3231     if (!UDLScope)
3232       return ExprError(Diag(UDSuffixLoc, diag::err_invalid_numeric_udl));
3233 
3234     QualType CookedTy;
3235     if (Literal.isFloatingLiteral()) {
3236       // C++11 [lex.ext]p4: If S contains a literal operator with parameter type
3237       // long double, the literal is treated as a call of the form
3238       //   operator "" X (f L)
3239       CookedTy = Context.LongDoubleTy;
3240     } else {
3241       // C++11 [lex.ext]p3: If S contains a literal operator with parameter type
3242       // unsigned long long, the literal is treated as a call of the form
3243       //   operator "" X (n ULL)
3244       CookedTy = Context.UnsignedLongLongTy;
3245     }
3246 
3247     DeclarationName OpName =
3248       Context.DeclarationNames.getCXXLiteralOperatorName(UDSuffix);
3249     DeclarationNameInfo OpNameInfo(OpName, UDSuffixLoc);
3250     OpNameInfo.setCXXLiteralOperatorNameLoc(UDSuffixLoc);
3251 
3252     SourceLocation TokLoc = Tok.getLocation();
3253 
3254     // Perform literal operator lookup to determine if we're building a raw
3255     // literal or a cooked one.
3256     LookupResult R(*this, OpName, UDSuffixLoc, LookupOrdinaryName);
3257     switch (LookupLiteralOperator(UDLScope, R, CookedTy,
3258                                   /*AllowRaw*/true, /*AllowTemplate*/true,
3259                                   /*AllowStringTemplate*/false)) {
3260     case LOLR_Error:
3261       return ExprError();
3262 
3263     case LOLR_Cooked: {
3264       Expr *Lit;
3265       if (Literal.isFloatingLiteral()) {
3266         Lit = BuildFloatingLiteral(*this, Literal, CookedTy, Tok.getLocation());
3267       } else {
3268         llvm::APInt ResultVal(Context.getTargetInfo().getLongLongWidth(), 0);
3269         if (Literal.GetIntegerValue(ResultVal))
3270           Diag(Tok.getLocation(), diag::err_integer_literal_too_large)
3271               << /* Unsigned */ 1;
3272         Lit = IntegerLiteral::Create(Context, ResultVal, CookedTy,
3273                                      Tok.getLocation());
3274       }
3275       return BuildLiteralOperatorCall(R, OpNameInfo, Lit, TokLoc);
3276     }
3277 
3278     case LOLR_Raw: {
3279       // C++11 [lit.ext]p3, p4: If S contains a raw literal operator, the
3280       // literal is treated as a call of the form
3281       //   operator "" X ("n")
3282       unsigned Length = Literal.getUDSuffixOffset();
3283       QualType StrTy = Context.getConstantArrayType(
3284           Context.CharTy.withConst(), llvm::APInt(32, Length + 1),
3285           ArrayType::Normal, 0);
3286       Expr *Lit = StringLiteral::Create(
3287           Context, StringRef(TokSpelling.data(), Length), StringLiteral::Ascii,
3288           /*Pascal*/false, StrTy, &TokLoc, 1);
3289       return BuildLiteralOperatorCall(R, OpNameInfo, Lit, TokLoc);
3290     }
3291 
3292     case LOLR_Template: {
3293       // C++11 [lit.ext]p3, p4: Otherwise (S contains a literal operator
3294       // template), L is treated as a call fo the form
3295       //   operator "" X <'c1', 'c2', ... 'ck'>()
3296       // where n is the source character sequence c1 c2 ... ck.
3297       TemplateArgumentListInfo ExplicitArgs;
3298       unsigned CharBits = Context.getIntWidth(Context.CharTy);
3299       bool CharIsUnsigned = Context.CharTy->isUnsignedIntegerType();
3300       llvm::APSInt Value(CharBits, CharIsUnsigned);
3301       for (unsigned I = 0, N = Literal.getUDSuffixOffset(); I != N; ++I) {
3302         Value = TokSpelling[I];
3303         TemplateArgument Arg(Context, Value, Context.CharTy);
3304         TemplateArgumentLocInfo ArgInfo;
3305         ExplicitArgs.addArgument(TemplateArgumentLoc(Arg, ArgInfo));
3306       }
3307       return BuildLiteralOperatorCall(R, OpNameInfo, None, TokLoc,
3308                                       &ExplicitArgs);
3309     }
3310     case LOLR_StringTemplate:
3311       llvm_unreachable("unexpected literal operator lookup result");
3312     }
3313   }
3314 
3315   Expr *Res;
3316 
3317   if (Literal.isFloatingLiteral()) {
3318     QualType Ty;
3319     if (Literal.isHalf){
3320       if (getOpenCLOptions().cl_khr_fp16)
3321         Ty = Context.HalfTy;
3322       else {
3323         Diag(Tok.getLocation(), diag::err_half_const_requires_fp16);
3324         return ExprError();
3325       }
3326     } else if (Literal.isFloat)
3327       Ty = Context.FloatTy;
3328     else if (!Literal.isLong)
3329       Ty = Context.DoubleTy;
3330     else
3331       Ty = Context.LongDoubleTy;
3332 
3333     Res = BuildFloatingLiteral(*this, Literal, Ty, Tok.getLocation());
3334 
3335     if (Ty == Context.DoubleTy) {
3336       if (getLangOpts().SinglePrecisionConstants) {
3337         Res = ImpCastExprToType(Res, Context.FloatTy, CK_FloatingCast).get();
3338       } else if (getLangOpts().OpenCL &&
3339                  !((getLangOpts().OpenCLVersion >= 120) ||
3340                    getOpenCLOptions().cl_khr_fp64)) {
3341         Diag(Tok.getLocation(), diag::warn_double_const_requires_fp64);
3342         Res = ImpCastExprToType(Res, Context.FloatTy, CK_FloatingCast).get();
3343       }
3344     }
3345   } else if (!Literal.isIntegerLiteral()) {
3346     return ExprError();
3347   } else {
3348     QualType Ty;
3349 
3350     // 'long long' is a C99 or C++11 feature.
3351     if (!getLangOpts().C99 && Literal.isLongLong) {
3352       if (getLangOpts().CPlusPlus)
3353         Diag(Tok.getLocation(),
3354              getLangOpts().CPlusPlus11 ?
3355              diag::warn_cxx98_compat_longlong : diag::ext_cxx11_longlong);
3356       else
3357         Diag(Tok.getLocation(), diag::ext_c99_longlong);
3358     }
3359 
3360     // Get the value in the widest-possible width.
3361     unsigned MaxWidth = Context.getTargetInfo().getIntMaxTWidth();
3362     llvm::APInt ResultVal(MaxWidth, 0);
3363 
3364     if (Literal.GetIntegerValue(ResultVal)) {
3365       // If this value didn't fit into uintmax_t, error and force to ull.
3366       Diag(Tok.getLocation(), diag::err_integer_literal_too_large)
3367           << /* Unsigned */ 1;
3368       Ty = Context.UnsignedLongLongTy;
3369       assert(Context.getTypeSize(Ty) == ResultVal.getBitWidth() &&
3370              "long long is not intmax_t?");
3371     } else {
3372       // If this value fits into a ULL, try to figure out what else it fits into
3373       // according to the rules of C99 6.4.4.1p5.
3374 
3375       // Octal, Hexadecimal, and integers with a U suffix are allowed to
3376       // be an unsigned int.
3377       bool AllowUnsigned = Literal.isUnsigned || Literal.getRadix() != 10;
3378 
3379       // Check from smallest to largest, picking the smallest type we can.
3380       unsigned Width = 0;
3381 
3382       // Microsoft specific integer suffixes are explicitly sized.
3383       if (Literal.MicrosoftInteger) {
3384         if (Literal.MicrosoftInteger == 8 && !Literal.isUnsigned) {
3385           Width = 8;
3386           Ty = Context.CharTy;
3387         } else {
3388           Width = Literal.MicrosoftInteger;
3389           Ty = Context.getIntTypeForBitwidth(Width,
3390                                              /*Signed=*/!Literal.isUnsigned);
3391         }
3392       }
3393 
3394       if (Ty.isNull() && !Literal.isLong && !Literal.isLongLong) {
3395         // Are int/unsigned possibilities?
3396         unsigned IntSize = Context.getTargetInfo().getIntWidth();
3397 
3398         // Does it fit in a unsigned int?
3399         if (ResultVal.isIntN(IntSize)) {
3400           // Does it fit in a signed int?
3401           if (!Literal.isUnsigned && ResultVal[IntSize-1] == 0)
3402             Ty = Context.IntTy;
3403           else if (AllowUnsigned)
3404             Ty = Context.UnsignedIntTy;
3405           Width = IntSize;
3406         }
3407       }
3408 
3409       // Are long/unsigned long possibilities?
3410       if (Ty.isNull() && !Literal.isLongLong) {
3411         unsigned LongSize = Context.getTargetInfo().getLongWidth();
3412 
3413         // Does it fit in a unsigned long?
3414         if (ResultVal.isIntN(LongSize)) {
3415           // Does it fit in a signed long?
3416           if (!Literal.isUnsigned && ResultVal[LongSize-1] == 0)
3417             Ty = Context.LongTy;
3418           else if (AllowUnsigned)
3419             Ty = Context.UnsignedLongTy;
3420           // Check according to the rules of C90 6.1.3.2p5. C++03 [lex.icon]p2
3421           // is compatible.
3422           else if (!getLangOpts().C99 && !getLangOpts().CPlusPlus11) {
3423             const unsigned LongLongSize =
3424                 Context.getTargetInfo().getLongLongWidth();
3425             Diag(Tok.getLocation(),
3426                  getLangOpts().CPlusPlus
3427                      ? Literal.isLong
3428                            ? diag::warn_old_implicitly_unsigned_long_cxx
3429                            : /*C++98 UB*/ diag::
3430                                  ext_old_implicitly_unsigned_long_cxx
3431                      : diag::warn_old_implicitly_unsigned_long)
3432                 << (LongLongSize > LongSize ? /*will have type 'long long'*/ 0
3433                                             : /*will be ill-formed*/ 1);
3434             Ty = Context.UnsignedLongTy;
3435           }
3436           Width = LongSize;
3437         }
3438       }
3439 
3440       // Check long long if needed.
3441       if (Ty.isNull()) {
3442         unsigned LongLongSize = Context.getTargetInfo().getLongLongWidth();
3443 
3444         // Does it fit in a unsigned long long?
3445         if (ResultVal.isIntN(LongLongSize)) {
3446           // Does it fit in a signed long long?
3447           // To be compatible with MSVC, hex integer literals ending with the
3448           // LL or i64 suffix are always signed in Microsoft mode.
3449           if (!Literal.isUnsigned && (ResultVal[LongLongSize-1] == 0 ||
3450               (getLangOpts().MicrosoftExt && Literal.isLongLong)))
3451             Ty = Context.LongLongTy;
3452           else if (AllowUnsigned)
3453             Ty = Context.UnsignedLongLongTy;
3454           Width = LongLongSize;
3455         }
3456       }
3457 
3458       // If we still couldn't decide a type, we probably have something that
3459       // does not fit in a signed long long, but has no U suffix.
3460       if (Ty.isNull()) {
3461         Diag(Tok.getLocation(), diag::ext_integer_literal_too_large_for_signed);
3462         Ty = Context.UnsignedLongLongTy;
3463         Width = Context.getTargetInfo().getLongLongWidth();
3464       }
3465 
3466       if (ResultVal.getBitWidth() != Width)
3467         ResultVal = ResultVal.trunc(Width);
3468     }
3469     Res = IntegerLiteral::Create(Context, ResultVal, Ty, Tok.getLocation());
3470   }
3471 
3472   // If this is an imaginary literal, create the ImaginaryLiteral wrapper.
3473   if (Literal.isImaginary)
3474     Res = new (Context) ImaginaryLiteral(Res,
3475                                         Context.getComplexType(Res->getType()));
3476 
3477   return Res;
3478 }
3479 
3480 ExprResult Sema::ActOnParenExpr(SourceLocation L, SourceLocation R, Expr *E) {
3481   assert(E && "ActOnParenExpr() missing expr");
3482   return new (Context) ParenExpr(L, R, E);
3483 }
3484 
3485 static bool CheckVecStepTraitOperandType(Sema &S, QualType T,
3486                                          SourceLocation Loc,
3487                                          SourceRange ArgRange) {
3488   // [OpenCL 1.1 6.11.12] "The vec_step built-in function takes a built-in
3489   // scalar or vector data type argument..."
3490   // Every built-in scalar type (OpenCL 1.1 6.1.1) is either an arithmetic
3491   // type (C99 6.2.5p18) or void.
3492   if (!(T->isArithmeticType() || T->isVoidType() || T->isVectorType())) {
3493     S.Diag(Loc, diag::err_vecstep_non_scalar_vector_type)
3494       << T << ArgRange;
3495     return true;
3496   }
3497 
3498   assert((T->isVoidType() || !T->isIncompleteType()) &&
3499          "Scalar types should always be complete");
3500   return false;
3501 }
3502 
3503 static bool CheckExtensionTraitOperandType(Sema &S, QualType T,
3504                                            SourceLocation Loc,
3505                                            SourceRange ArgRange,
3506                                            UnaryExprOrTypeTrait TraitKind) {
3507   // Invalid types must be hard errors for SFINAE in C++.
3508   if (S.LangOpts.CPlusPlus)
3509     return true;
3510 
3511   // C99 6.5.3.4p1:
3512   if (T->isFunctionType() &&
3513       (TraitKind == UETT_SizeOf || TraitKind == UETT_AlignOf)) {
3514     // sizeof(function)/alignof(function) is allowed as an extension.
3515     S.Diag(Loc, diag::ext_sizeof_alignof_function_type)
3516       << TraitKind << ArgRange;
3517     return false;
3518   }
3519 
3520   // Allow sizeof(void)/alignof(void) as an extension, unless in OpenCL where
3521   // this is an error (OpenCL v1.1 s6.3.k)
3522   if (T->isVoidType()) {
3523     unsigned DiagID = S.LangOpts.OpenCL ? diag::err_opencl_sizeof_alignof_type
3524                                         : diag::ext_sizeof_alignof_void_type;
3525     S.Diag(Loc, DiagID) << TraitKind << ArgRange;
3526     return false;
3527   }
3528 
3529   return true;
3530 }
3531 
3532 static bool CheckObjCTraitOperandConstraints(Sema &S, QualType T,
3533                                              SourceLocation Loc,
3534                                              SourceRange ArgRange,
3535                                              UnaryExprOrTypeTrait TraitKind) {
3536   // Reject sizeof(interface) and sizeof(interface<proto>) if the
3537   // runtime doesn't allow it.
3538   if (!S.LangOpts.ObjCRuntime.allowsSizeofAlignof() && T->isObjCObjectType()) {
3539     S.Diag(Loc, diag::err_sizeof_nonfragile_interface)
3540       << T << (TraitKind == UETT_SizeOf)
3541       << ArgRange;
3542     return true;
3543   }
3544 
3545   return false;
3546 }
3547 
3548 /// \brief Check whether E is a pointer from a decayed array type (the decayed
3549 /// pointer type is equal to T) and emit a warning if it is.
3550 static void warnOnSizeofOnArrayDecay(Sema &S, SourceLocation Loc, QualType T,
3551                                      Expr *E) {
3552   // Don't warn if the operation changed the type.
3553   if (T != E->getType())
3554     return;
3555 
3556   // Now look for array decays.
3557   ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E);
3558   if (!ICE || ICE->getCastKind() != CK_ArrayToPointerDecay)
3559     return;
3560 
3561   S.Diag(Loc, diag::warn_sizeof_array_decay) << ICE->getSourceRange()
3562                                              << ICE->getType()
3563                                              << ICE->getSubExpr()->getType();
3564 }
3565 
3566 /// \brief Check the constraints on expression operands to unary type expression
3567 /// and type traits.
3568 ///
3569 /// Completes any types necessary and validates the constraints on the operand
3570 /// expression. The logic mostly mirrors the type-based overload, but may modify
3571 /// the expression as it completes the type for that expression through template
3572 /// instantiation, etc.
3573 bool Sema::CheckUnaryExprOrTypeTraitOperand(Expr *E,
3574                                             UnaryExprOrTypeTrait ExprKind) {
3575   QualType ExprTy = E->getType();
3576   assert(!ExprTy->isReferenceType());
3577 
3578   if (ExprKind == UETT_VecStep)
3579     return CheckVecStepTraitOperandType(*this, ExprTy, E->getExprLoc(),
3580                                         E->getSourceRange());
3581 
3582   // Whitelist some types as extensions
3583   if (!CheckExtensionTraitOperandType(*this, ExprTy, E->getExprLoc(),
3584                                       E->getSourceRange(), ExprKind))
3585     return false;
3586 
3587   // 'alignof' applied to an expression only requires the base element type of
3588   // the expression to be complete. 'sizeof' requires the expression's type to
3589   // be complete (and will attempt to complete it if it's an array of unknown
3590   // bound).
3591   if (ExprKind == UETT_AlignOf) {
3592     if (RequireCompleteType(E->getExprLoc(),
3593                             Context.getBaseElementType(E->getType()),
3594                             diag::err_sizeof_alignof_incomplete_type, ExprKind,
3595                             E->getSourceRange()))
3596       return true;
3597   } else {
3598     if (RequireCompleteExprType(E, diag::err_sizeof_alignof_incomplete_type,
3599                                 ExprKind, E->getSourceRange()))
3600       return true;
3601   }
3602 
3603   // Completing the expression's type may have changed it.
3604   ExprTy = E->getType();
3605   assert(!ExprTy->isReferenceType());
3606 
3607   if (ExprTy->isFunctionType()) {
3608     Diag(E->getExprLoc(), diag::err_sizeof_alignof_function_type)
3609       << ExprKind << E->getSourceRange();
3610     return true;
3611   }
3612 
3613   // The operand for sizeof and alignof is in an unevaluated expression context,
3614   // so side effects could result in unintended consequences.
3615   if ((ExprKind == UETT_SizeOf || ExprKind == UETT_AlignOf) &&
3616       ActiveTemplateInstantiations.empty() && E->HasSideEffects(Context, false))
3617     Diag(E->getExprLoc(), diag::warn_side_effects_unevaluated_context);
3618 
3619   if (CheckObjCTraitOperandConstraints(*this, ExprTy, E->getExprLoc(),
3620                                        E->getSourceRange(), ExprKind))
3621     return true;
3622 
3623   if (ExprKind == UETT_SizeOf) {
3624     if (DeclRefExpr *DeclRef = dyn_cast<DeclRefExpr>(E->IgnoreParens())) {
3625       if (ParmVarDecl *PVD = dyn_cast<ParmVarDecl>(DeclRef->getFoundDecl())) {
3626         QualType OType = PVD->getOriginalType();
3627         QualType Type = PVD->getType();
3628         if (Type->isPointerType() && OType->isArrayType()) {
3629           Diag(E->getExprLoc(), diag::warn_sizeof_array_param)
3630             << Type << OType;
3631           Diag(PVD->getLocation(), diag::note_declared_at);
3632         }
3633       }
3634     }
3635 
3636     // Warn on "sizeof(array op x)" and "sizeof(x op array)", where the array
3637     // decays into a pointer and returns an unintended result. This is most
3638     // likely a typo for "sizeof(array) op x".
3639     if (BinaryOperator *BO = dyn_cast<BinaryOperator>(E->IgnoreParens())) {
3640       warnOnSizeofOnArrayDecay(*this, BO->getOperatorLoc(), BO->getType(),
3641                                BO->getLHS());
3642       warnOnSizeofOnArrayDecay(*this, BO->getOperatorLoc(), BO->getType(),
3643                                BO->getRHS());
3644     }
3645   }
3646 
3647   return false;
3648 }
3649 
3650 /// \brief Check the constraints on operands to unary expression and type
3651 /// traits.
3652 ///
3653 /// This will complete any types necessary, and validate the various constraints
3654 /// on those operands.
3655 ///
3656 /// The UsualUnaryConversions() function is *not* called by this routine.
3657 /// C99 6.3.2.1p[2-4] all state:
3658 ///   Except when it is the operand of the sizeof operator ...
3659 ///
3660 /// C++ [expr.sizeof]p4
3661 ///   The lvalue-to-rvalue, array-to-pointer, and function-to-pointer
3662 ///   standard conversions are not applied to the operand of sizeof.
3663 ///
3664 /// This policy is followed for all of the unary trait expressions.
3665 bool Sema::CheckUnaryExprOrTypeTraitOperand(QualType ExprType,
3666                                             SourceLocation OpLoc,
3667                                             SourceRange ExprRange,
3668                                             UnaryExprOrTypeTrait ExprKind) {
3669   if (ExprType->isDependentType())
3670     return false;
3671 
3672   // C++ [expr.sizeof]p2:
3673   //     When applied to a reference or a reference type, the result
3674   //     is the size of the referenced type.
3675   // C++11 [expr.alignof]p3:
3676   //     When alignof is applied to a reference type, the result
3677   //     shall be the alignment of the referenced type.
3678   if (const ReferenceType *Ref = ExprType->getAs<ReferenceType>())
3679     ExprType = Ref->getPointeeType();
3680 
3681   // C11 6.5.3.4/3, C++11 [expr.alignof]p3:
3682   //   When alignof or _Alignof is applied to an array type, the result
3683   //   is the alignment of the element type.
3684   if (ExprKind == UETT_AlignOf || ExprKind == UETT_OpenMPRequiredSimdAlign)
3685     ExprType = Context.getBaseElementType(ExprType);
3686 
3687   if (ExprKind == UETT_VecStep)
3688     return CheckVecStepTraitOperandType(*this, ExprType, OpLoc, ExprRange);
3689 
3690   // Whitelist some types as extensions
3691   if (!CheckExtensionTraitOperandType(*this, ExprType, OpLoc, ExprRange,
3692                                       ExprKind))
3693     return false;
3694 
3695   if (RequireCompleteType(OpLoc, ExprType,
3696                           diag::err_sizeof_alignof_incomplete_type,
3697                           ExprKind, ExprRange))
3698     return true;
3699 
3700   if (ExprType->isFunctionType()) {
3701     Diag(OpLoc, diag::err_sizeof_alignof_function_type)
3702       << ExprKind << ExprRange;
3703     return true;
3704   }
3705 
3706   if (CheckObjCTraitOperandConstraints(*this, ExprType, OpLoc, ExprRange,
3707                                        ExprKind))
3708     return true;
3709 
3710   return false;
3711 }
3712 
3713 static bool CheckAlignOfExpr(Sema &S, Expr *E) {
3714   E = E->IgnoreParens();
3715 
3716   // Cannot know anything else if the expression is dependent.
3717   if (E->isTypeDependent())
3718     return false;
3719 
3720   if (E->getObjectKind() == OK_BitField) {
3721     S.Diag(E->getExprLoc(), diag::err_sizeof_alignof_typeof_bitfield)
3722        << 1 << E->getSourceRange();
3723     return true;
3724   }
3725 
3726   ValueDecl *D = nullptr;
3727   if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E)) {
3728     D = DRE->getDecl();
3729   } else if (MemberExpr *ME = dyn_cast<MemberExpr>(E)) {
3730     D = ME->getMemberDecl();
3731   }
3732 
3733   // If it's a field, require the containing struct to have a
3734   // complete definition so that we can compute the layout.
3735   //
3736   // This can happen in C++11 onwards, either by naming the member
3737   // in a way that is not transformed into a member access expression
3738   // (in an unevaluated operand, for instance), or by naming the member
3739   // in a trailing-return-type.
3740   //
3741   // For the record, since __alignof__ on expressions is a GCC
3742   // extension, GCC seems to permit this but always gives the
3743   // nonsensical answer 0.
3744   //
3745   // We don't really need the layout here --- we could instead just
3746   // directly check for all the appropriate alignment-lowing
3747   // attributes --- but that would require duplicating a lot of
3748   // logic that just isn't worth duplicating for such a marginal
3749   // use-case.
3750   if (FieldDecl *FD = dyn_cast_or_null<FieldDecl>(D)) {
3751     // Fast path this check, since we at least know the record has a
3752     // definition if we can find a member of it.
3753     if (!FD->getParent()->isCompleteDefinition()) {
3754       S.Diag(E->getExprLoc(), diag::err_alignof_member_of_incomplete_type)
3755         << E->getSourceRange();
3756       return true;
3757     }
3758 
3759     // Otherwise, if it's a field, and the field doesn't have
3760     // reference type, then it must have a complete type (or be a
3761     // flexible array member, which we explicitly want to
3762     // white-list anyway), which makes the following checks trivial.
3763     if (!FD->getType()->isReferenceType())
3764       return false;
3765   }
3766 
3767   return S.CheckUnaryExprOrTypeTraitOperand(E, UETT_AlignOf);
3768 }
3769 
3770 bool Sema::CheckVecStepExpr(Expr *E) {
3771   E = E->IgnoreParens();
3772 
3773   // Cannot know anything else if the expression is dependent.
3774   if (E->isTypeDependent())
3775     return false;
3776 
3777   return CheckUnaryExprOrTypeTraitOperand(E, UETT_VecStep);
3778 }
3779 
3780 static void captureVariablyModifiedType(ASTContext &Context, QualType T,
3781                                         CapturingScopeInfo *CSI) {
3782   assert(T->isVariablyModifiedType());
3783   assert(CSI != nullptr);
3784 
3785   // We're going to walk down into the type and look for VLA expressions.
3786   do {
3787     const Type *Ty = T.getTypePtr();
3788     switch (Ty->getTypeClass()) {
3789 #define TYPE(Class, Base)
3790 #define ABSTRACT_TYPE(Class, Base)
3791 #define NON_CANONICAL_TYPE(Class, Base)
3792 #define DEPENDENT_TYPE(Class, Base) case Type::Class:
3793 #define NON_CANONICAL_UNLESS_DEPENDENT_TYPE(Class, Base)
3794 #include "clang/AST/TypeNodes.def"
3795       T = QualType();
3796       break;
3797     // These types are never variably-modified.
3798     case Type::Builtin:
3799     case Type::Complex:
3800     case Type::Vector:
3801     case Type::ExtVector:
3802     case Type::Record:
3803     case Type::Enum:
3804     case Type::Elaborated:
3805     case Type::TemplateSpecialization:
3806     case Type::ObjCObject:
3807     case Type::ObjCInterface:
3808     case Type::ObjCObjectPointer:
3809     case Type::Pipe:
3810       llvm_unreachable("type class is never variably-modified!");
3811     case Type::Adjusted:
3812       T = cast<AdjustedType>(Ty)->getOriginalType();
3813       break;
3814     case Type::Decayed:
3815       T = cast<DecayedType>(Ty)->getPointeeType();
3816       break;
3817     case Type::Pointer:
3818       T = cast<PointerType>(Ty)->getPointeeType();
3819       break;
3820     case Type::BlockPointer:
3821       T = cast<BlockPointerType>(Ty)->getPointeeType();
3822       break;
3823     case Type::LValueReference:
3824     case Type::RValueReference:
3825       T = cast<ReferenceType>(Ty)->getPointeeType();
3826       break;
3827     case Type::MemberPointer:
3828       T = cast<MemberPointerType>(Ty)->getPointeeType();
3829       break;
3830     case Type::ConstantArray:
3831     case Type::IncompleteArray:
3832       // Losing element qualification here is fine.
3833       T = cast<ArrayType>(Ty)->getElementType();
3834       break;
3835     case Type::VariableArray: {
3836       // Losing element qualification here is fine.
3837       const VariableArrayType *VAT = cast<VariableArrayType>(Ty);
3838 
3839       // Unknown size indication requires no size computation.
3840       // Otherwise, evaluate and record it.
3841       if (auto Size = VAT->getSizeExpr()) {
3842         if (!CSI->isVLATypeCaptured(VAT)) {
3843           RecordDecl *CapRecord = nullptr;
3844           if (auto LSI = dyn_cast<LambdaScopeInfo>(CSI)) {
3845             CapRecord = LSI->Lambda;
3846           } else if (auto CRSI = dyn_cast<CapturedRegionScopeInfo>(CSI)) {
3847             CapRecord = CRSI->TheRecordDecl;
3848           }
3849           if (CapRecord) {
3850             auto ExprLoc = Size->getExprLoc();
3851             auto SizeType = Context.getSizeType();
3852             // Build the non-static data member.
3853             auto Field =
3854                 FieldDecl::Create(Context, CapRecord, ExprLoc, ExprLoc,
3855                                   /*Id*/ nullptr, SizeType, /*TInfo*/ nullptr,
3856                                   /*BW*/ nullptr, /*Mutable*/ false,
3857                                   /*InitStyle*/ ICIS_NoInit);
3858             Field->setImplicit(true);
3859             Field->setAccess(AS_private);
3860             Field->setCapturedVLAType(VAT);
3861             CapRecord->addDecl(Field);
3862 
3863             CSI->addVLATypeCapture(ExprLoc, SizeType);
3864           }
3865         }
3866       }
3867       T = VAT->getElementType();
3868       break;
3869     }
3870     case Type::FunctionProto:
3871     case Type::FunctionNoProto:
3872       T = cast<FunctionType>(Ty)->getReturnType();
3873       break;
3874     case Type::Paren:
3875     case Type::TypeOf:
3876     case Type::UnaryTransform:
3877     case Type::Attributed:
3878     case Type::SubstTemplateTypeParm:
3879     case Type::PackExpansion:
3880       // Keep walking after single level desugaring.
3881       T = T.getSingleStepDesugaredType(Context);
3882       break;
3883     case Type::Typedef:
3884       T = cast<TypedefType>(Ty)->desugar();
3885       break;
3886     case Type::Decltype:
3887       T = cast<DecltypeType>(Ty)->desugar();
3888       break;
3889     case Type::Auto:
3890       T = cast<AutoType>(Ty)->getDeducedType();
3891       break;
3892     case Type::TypeOfExpr:
3893       T = cast<TypeOfExprType>(Ty)->getUnderlyingExpr()->getType();
3894       break;
3895     case Type::Atomic:
3896       T = cast<AtomicType>(Ty)->getValueType();
3897       break;
3898     }
3899   } while (!T.isNull() && T->isVariablyModifiedType());
3900 }
3901 
3902 /// \brief Build a sizeof or alignof expression given a type operand.
3903 ExprResult
3904 Sema::CreateUnaryExprOrTypeTraitExpr(TypeSourceInfo *TInfo,
3905                                      SourceLocation OpLoc,
3906                                      UnaryExprOrTypeTrait ExprKind,
3907                                      SourceRange R) {
3908   if (!TInfo)
3909     return ExprError();
3910 
3911   QualType T = TInfo->getType();
3912 
3913   if (!T->isDependentType() &&
3914       CheckUnaryExprOrTypeTraitOperand(T, OpLoc, R, ExprKind))
3915     return ExprError();
3916 
3917   if (T->isVariablyModifiedType() && FunctionScopes.size() > 1) {
3918     if (auto *TT = T->getAs<TypedefType>()) {
3919       for (auto I = FunctionScopes.rbegin(),
3920                 E = std::prev(FunctionScopes.rend());
3921            I != E; ++I) {
3922         auto *CSI = dyn_cast<CapturingScopeInfo>(*I);
3923         if (CSI == nullptr)
3924           break;
3925         DeclContext *DC = nullptr;
3926         if (auto *LSI = dyn_cast<LambdaScopeInfo>(CSI))
3927           DC = LSI->CallOperator;
3928         else if (auto *CRSI = dyn_cast<CapturedRegionScopeInfo>(CSI))
3929           DC = CRSI->TheCapturedDecl;
3930         else if (auto *BSI = dyn_cast<BlockScopeInfo>(CSI))
3931           DC = BSI->TheDecl;
3932         if (DC) {
3933           if (DC->containsDecl(TT->getDecl()))
3934             break;
3935           captureVariablyModifiedType(Context, T, CSI);
3936         }
3937       }
3938     }
3939   }
3940 
3941   // C99 6.5.3.4p4: the type (an unsigned integer type) is size_t.
3942   return new (Context) UnaryExprOrTypeTraitExpr(
3943       ExprKind, TInfo, Context.getSizeType(), OpLoc, R.getEnd());
3944 }
3945 
3946 /// \brief Build a sizeof or alignof expression given an expression
3947 /// operand.
3948 ExprResult
3949 Sema::CreateUnaryExprOrTypeTraitExpr(Expr *E, SourceLocation OpLoc,
3950                                      UnaryExprOrTypeTrait ExprKind) {
3951   ExprResult PE = CheckPlaceholderExpr(E);
3952   if (PE.isInvalid())
3953     return ExprError();
3954 
3955   E = PE.get();
3956 
3957   // Verify that the operand is valid.
3958   bool isInvalid = false;
3959   if (E->isTypeDependent()) {
3960     // Delay type-checking for type-dependent expressions.
3961   } else if (ExprKind == UETT_AlignOf) {
3962     isInvalid = CheckAlignOfExpr(*this, E);
3963   } else if (ExprKind == UETT_VecStep) {
3964     isInvalid = CheckVecStepExpr(E);
3965   } else if (ExprKind == UETT_OpenMPRequiredSimdAlign) {
3966       Diag(E->getExprLoc(), diag::err_openmp_default_simd_align_expr);
3967       isInvalid = true;
3968   } else if (E->refersToBitField()) {  // C99 6.5.3.4p1.
3969     Diag(E->getExprLoc(), diag::err_sizeof_alignof_typeof_bitfield) << 0;
3970     isInvalid = true;
3971   } else {
3972     isInvalid = CheckUnaryExprOrTypeTraitOperand(E, UETT_SizeOf);
3973   }
3974 
3975   if (isInvalid)
3976     return ExprError();
3977 
3978   if (ExprKind == UETT_SizeOf && E->getType()->isVariableArrayType()) {
3979     PE = TransformToPotentiallyEvaluated(E);
3980     if (PE.isInvalid()) return ExprError();
3981     E = PE.get();
3982   }
3983 
3984   // C99 6.5.3.4p4: the type (an unsigned integer type) is size_t.
3985   return new (Context) UnaryExprOrTypeTraitExpr(
3986       ExprKind, E, Context.getSizeType(), OpLoc, E->getSourceRange().getEnd());
3987 }
3988 
3989 /// ActOnUnaryExprOrTypeTraitExpr - Handle @c sizeof(type) and @c sizeof @c
3990 /// expr and the same for @c alignof and @c __alignof
3991 /// Note that the ArgRange is invalid if isType is false.
3992 ExprResult
3993 Sema::ActOnUnaryExprOrTypeTraitExpr(SourceLocation OpLoc,
3994                                     UnaryExprOrTypeTrait ExprKind, bool IsType,
3995                                     void *TyOrEx, SourceRange ArgRange) {
3996   // If error parsing type, ignore.
3997   if (!TyOrEx) return ExprError();
3998 
3999   if (IsType) {
4000     TypeSourceInfo *TInfo;
4001     (void) GetTypeFromParser(ParsedType::getFromOpaquePtr(TyOrEx), &TInfo);
4002     return CreateUnaryExprOrTypeTraitExpr(TInfo, OpLoc, ExprKind, ArgRange);
4003   }
4004 
4005   Expr *ArgEx = (Expr *)TyOrEx;
4006   ExprResult Result = CreateUnaryExprOrTypeTraitExpr(ArgEx, OpLoc, ExprKind);
4007   return Result;
4008 }
4009 
4010 static QualType CheckRealImagOperand(Sema &S, ExprResult &V, SourceLocation Loc,
4011                                      bool IsReal) {
4012   if (V.get()->isTypeDependent())
4013     return S.Context.DependentTy;
4014 
4015   // _Real and _Imag are only l-values for normal l-values.
4016   if (V.get()->getObjectKind() != OK_Ordinary) {
4017     V = S.DefaultLvalueConversion(V.get());
4018     if (V.isInvalid())
4019       return QualType();
4020   }
4021 
4022   // These operators return the element type of a complex type.
4023   if (const ComplexType *CT = V.get()->getType()->getAs<ComplexType>())
4024     return CT->getElementType();
4025 
4026   // Otherwise they pass through real integer and floating point types here.
4027   if (V.get()->getType()->isArithmeticType())
4028     return V.get()->getType();
4029 
4030   // Test for placeholders.
4031   ExprResult PR = S.CheckPlaceholderExpr(V.get());
4032   if (PR.isInvalid()) return QualType();
4033   if (PR.get() != V.get()) {
4034     V = PR;
4035     return CheckRealImagOperand(S, V, Loc, IsReal);
4036   }
4037 
4038   // Reject anything else.
4039   S.Diag(Loc, diag::err_realimag_invalid_type) << V.get()->getType()
4040     << (IsReal ? "__real" : "__imag");
4041   return QualType();
4042 }
4043 
4044 
4045 
4046 ExprResult
4047 Sema::ActOnPostfixUnaryOp(Scope *S, SourceLocation OpLoc,
4048                           tok::TokenKind Kind, Expr *Input) {
4049   UnaryOperatorKind Opc;
4050   switch (Kind) {
4051   default: llvm_unreachable("Unknown unary op!");
4052   case tok::plusplus:   Opc = UO_PostInc; break;
4053   case tok::minusminus: Opc = UO_PostDec; break;
4054   }
4055 
4056   // Since this might is a postfix expression, get rid of ParenListExprs.
4057   ExprResult Result = MaybeConvertParenListExprToParenExpr(S, Input);
4058   if (Result.isInvalid()) return ExprError();
4059   Input = Result.get();
4060 
4061   return BuildUnaryOp(S, OpLoc, Opc, Input);
4062 }
4063 
4064 /// \brief Diagnose if arithmetic on the given ObjC pointer is illegal.
4065 ///
4066 /// \return true on error
4067 static bool checkArithmeticOnObjCPointer(Sema &S,
4068                                          SourceLocation opLoc,
4069                                          Expr *op) {
4070   assert(op->getType()->isObjCObjectPointerType());
4071   if (S.LangOpts.ObjCRuntime.allowsPointerArithmetic() &&
4072       !S.LangOpts.ObjCSubscriptingLegacyRuntime)
4073     return false;
4074 
4075   S.Diag(opLoc, diag::err_arithmetic_nonfragile_interface)
4076     << op->getType()->castAs<ObjCObjectPointerType>()->getPointeeType()
4077     << op->getSourceRange();
4078   return true;
4079 }
4080 
4081 static bool isMSPropertySubscriptExpr(Sema &S, Expr *Base) {
4082   auto *BaseNoParens = Base->IgnoreParens();
4083   if (auto *MSProp = dyn_cast<MSPropertyRefExpr>(BaseNoParens))
4084     return MSProp->getPropertyDecl()->getType()->isArrayType();
4085   return isa<MSPropertySubscriptExpr>(BaseNoParens);
4086 }
4087 
4088 ExprResult
4089 Sema::ActOnArraySubscriptExpr(Scope *S, Expr *base, SourceLocation lbLoc,
4090                               Expr *idx, SourceLocation rbLoc) {
4091   if (base && !base->getType().isNull() &&
4092       base->getType()->isSpecificPlaceholderType(BuiltinType::OMPArraySection))
4093     return ActOnOMPArraySectionExpr(base, lbLoc, idx, SourceLocation(),
4094                                     /*Length=*/nullptr, rbLoc);
4095 
4096   // Since this might be a postfix expression, get rid of ParenListExprs.
4097   if (isa<ParenListExpr>(base)) {
4098     ExprResult result = MaybeConvertParenListExprToParenExpr(S, base);
4099     if (result.isInvalid()) return ExprError();
4100     base = result.get();
4101   }
4102 
4103   // Handle any non-overload placeholder types in the base and index
4104   // expressions.  We can't handle overloads here because the other
4105   // operand might be an overloadable type, in which case the overload
4106   // resolution for the operator overload should get the first crack
4107   // at the overload.
4108   bool IsMSPropertySubscript = false;
4109   if (base->getType()->isNonOverloadPlaceholderType()) {
4110     IsMSPropertySubscript = isMSPropertySubscriptExpr(*this, base);
4111     if (!IsMSPropertySubscript) {
4112       ExprResult result = CheckPlaceholderExpr(base);
4113       if (result.isInvalid())
4114         return ExprError();
4115       base = result.get();
4116     }
4117   }
4118   if (idx->getType()->isNonOverloadPlaceholderType()) {
4119     ExprResult result = CheckPlaceholderExpr(idx);
4120     if (result.isInvalid()) return ExprError();
4121     idx = result.get();
4122   }
4123 
4124   // Build an unanalyzed expression if either operand is type-dependent.
4125   if (getLangOpts().CPlusPlus &&
4126       (base->isTypeDependent() || idx->isTypeDependent())) {
4127     return new (Context) ArraySubscriptExpr(base, idx, Context.DependentTy,
4128                                             VK_LValue, OK_Ordinary, rbLoc);
4129   }
4130 
4131   // MSDN, property (C++)
4132   // https://msdn.microsoft.com/en-us/library/yhfk0thd(v=vs.120).aspx
4133   // This attribute can also be used in the declaration of an empty array in a
4134   // class or structure definition. For example:
4135   // __declspec(property(get=GetX, put=PutX)) int x[];
4136   // The above statement indicates that x[] can be used with one or more array
4137   // indices. In this case, i=p->x[a][b] will be turned into i=p->GetX(a, b),
4138   // and p->x[a][b] = i will be turned into p->PutX(a, b, i);
4139   if (IsMSPropertySubscript) {
4140     // Build MS property subscript expression if base is MS property reference
4141     // or MS property subscript.
4142     return new (Context) MSPropertySubscriptExpr(
4143         base, idx, Context.PseudoObjectTy, VK_LValue, OK_Ordinary, rbLoc);
4144   }
4145 
4146   // Use C++ overloaded-operator rules if either operand has record
4147   // type.  The spec says to do this if either type is *overloadable*,
4148   // but enum types can't declare subscript operators or conversion
4149   // operators, so there's nothing interesting for overload resolution
4150   // to do if there aren't any record types involved.
4151   //
4152   // ObjC pointers have their own subscripting logic that is not tied
4153   // to overload resolution and so should not take this path.
4154   if (getLangOpts().CPlusPlus &&
4155       (base->getType()->isRecordType() ||
4156        (!base->getType()->isObjCObjectPointerType() &&
4157         idx->getType()->isRecordType()))) {
4158     return CreateOverloadedArraySubscriptExpr(lbLoc, rbLoc, base, idx);
4159   }
4160 
4161   return CreateBuiltinArraySubscriptExpr(base, lbLoc, idx, rbLoc);
4162 }
4163 
4164 ExprResult Sema::ActOnOMPArraySectionExpr(Expr *Base, SourceLocation LBLoc,
4165                                           Expr *LowerBound,
4166                                           SourceLocation ColonLoc, Expr *Length,
4167                                           SourceLocation RBLoc) {
4168   if (Base->getType()->isPlaceholderType() &&
4169       !Base->getType()->isSpecificPlaceholderType(
4170           BuiltinType::OMPArraySection)) {
4171     ExprResult Result = CheckPlaceholderExpr(Base);
4172     if (Result.isInvalid())
4173       return ExprError();
4174     Base = Result.get();
4175   }
4176   if (LowerBound && LowerBound->getType()->isNonOverloadPlaceholderType()) {
4177     ExprResult Result = CheckPlaceholderExpr(LowerBound);
4178     if (Result.isInvalid())
4179       return ExprError();
4180     Result = DefaultLvalueConversion(Result.get());
4181     if (Result.isInvalid())
4182       return ExprError();
4183     LowerBound = Result.get();
4184   }
4185   if (Length && Length->getType()->isNonOverloadPlaceholderType()) {
4186     ExprResult Result = CheckPlaceholderExpr(Length);
4187     if (Result.isInvalid())
4188       return ExprError();
4189     Result = DefaultLvalueConversion(Result.get());
4190     if (Result.isInvalid())
4191       return ExprError();
4192     Length = Result.get();
4193   }
4194 
4195   // Build an unanalyzed expression if either operand is type-dependent.
4196   if (Base->isTypeDependent() ||
4197       (LowerBound &&
4198        (LowerBound->isTypeDependent() || LowerBound->isValueDependent())) ||
4199       (Length && (Length->isTypeDependent() || Length->isValueDependent()))) {
4200     return new (Context)
4201         OMPArraySectionExpr(Base, LowerBound, Length, Context.DependentTy,
4202                             VK_LValue, OK_Ordinary, ColonLoc, RBLoc);
4203   }
4204 
4205   // Perform default conversions.
4206   QualType OriginalTy = OMPArraySectionExpr::getBaseOriginalType(Base);
4207   QualType ResultTy;
4208   if (OriginalTy->isAnyPointerType()) {
4209     ResultTy = OriginalTy->getPointeeType();
4210   } else if (OriginalTy->isArrayType()) {
4211     ResultTy = OriginalTy->getAsArrayTypeUnsafe()->getElementType();
4212   } else {
4213     return ExprError(
4214         Diag(Base->getExprLoc(), diag::err_omp_typecheck_section_value)
4215         << Base->getSourceRange());
4216   }
4217   // C99 6.5.2.1p1
4218   if (LowerBound) {
4219     auto Res = PerformOpenMPImplicitIntegerConversion(LowerBound->getExprLoc(),
4220                                                       LowerBound);
4221     if (Res.isInvalid())
4222       return ExprError(Diag(LowerBound->getExprLoc(),
4223                             diag::err_omp_typecheck_section_not_integer)
4224                        << 0 << LowerBound->getSourceRange());
4225     LowerBound = Res.get();
4226 
4227     if (LowerBound->getType()->isSpecificBuiltinType(BuiltinType::Char_S) ||
4228         LowerBound->getType()->isSpecificBuiltinType(BuiltinType::Char_U))
4229       Diag(LowerBound->getExprLoc(), diag::warn_omp_section_is_char)
4230           << 0 << LowerBound->getSourceRange();
4231   }
4232   if (Length) {
4233     auto Res =
4234         PerformOpenMPImplicitIntegerConversion(Length->getExprLoc(), Length);
4235     if (Res.isInvalid())
4236       return ExprError(Diag(Length->getExprLoc(),
4237                             diag::err_omp_typecheck_section_not_integer)
4238                        << 1 << Length->getSourceRange());
4239     Length = Res.get();
4240 
4241     if (Length->getType()->isSpecificBuiltinType(BuiltinType::Char_S) ||
4242         Length->getType()->isSpecificBuiltinType(BuiltinType::Char_U))
4243       Diag(Length->getExprLoc(), diag::warn_omp_section_is_char)
4244           << 1 << Length->getSourceRange();
4245   }
4246 
4247   // C99 6.5.2.1p1: "shall have type "pointer to *object* type". Similarly,
4248   // C++ [expr.sub]p1: The type "T" shall be a completely-defined object
4249   // type. Note that functions are not objects, and that (in C99 parlance)
4250   // incomplete types are not object types.
4251   if (ResultTy->isFunctionType()) {
4252     Diag(Base->getExprLoc(), diag::err_omp_section_function_type)
4253         << ResultTy << Base->getSourceRange();
4254     return ExprError();
4255   }
4256 
4257   if (RequireCompleteType(Base->getExprLoc(), ResultTy,
4258                           diag::err_omp_section_incomplete_type, Base))
4259     return ExprError();
4260 
4261   if (LowerBound) {
4262     llvm::APSInt LowerBoundValue;
4263     if (LowerBound->EvaluateAsInt(LowerBoundValue, Context)) {
4264       // OpenMP 4.0, [2.4 Array Sections]
4265       // The lower-bound and length must evaluate to non-negative integers.
4266       if (LowerBoundValue.isNegative()) {
4267         Diag(LowerBound->getExprLoc(), diag::err_omp_section_negative)
4268             << 0 << LowerBoundValue.toString(/*Radix=*/10, /*Signed=*/true)
4269             << LowerBound->getSourceRange();
4270         return ExprError();
4271       }
4272     }
4273   }
4274 
4275   if (Length) {
4276     llvm::APSInt LengthValue;
4277     if (Length->EvaluateAsInt(LengthValue, Context)) {
4278       // OpenMP 4.0, [2.4 Array Sections]
4279       // The lower-bound and length must evaluate to non-negative integers.
4280       if (LengthValue.isNegative()) {
4281         Diag(Length->getExprLoc(), diag::err_omp_section_negative)
4282             << 1 << LengthValue.toString(/*Radix=*/10, /*Signed=*/true)
4283             << Length->getSourceRange();
4284         return ExprError();
4285       }
4286     }
4287   } else if (ColonLoc.isValid() &&
4288              (OriginalTy.isNull() || (!OriginalTy->isConstantArrayType() &&
4289                                       !OriginalTy->isVariableArrayType()))) {
4290     // OpenMP 4.0, [2.4 Array Sections]
4291     // When the size of the array dimension is not known, the length must be
4292     // specified explicitly.
4293     Diag(ColonLoc, diag::err_omp_section_length_undefined)
4294         << (!OriginalTy.isNull() && OriginalTy->isArrayType());
4295     return ExprError();
4296   }
4297 
4298   if (!Base->getType()->isSpecificPlaceholderType(
4299           BuiltinType::OMPArraySection)) {
4300     ExprResult Result = DefaultFunctionArrayLvalueConversion(Base);
4301     if (Result.isInvalid())
4302       return ExprError();
4303     Base = Result.get();
4304   }
4305   return new (Context)
4306       OMPArraySectionExpr(Base, LowerBound, Length, Context.OMPArraySectionTy,
4307                           VK_LValue, OK_Ordinary, ColonLoc, RBLoc);
4308 }
4309 
4310 ExprResult
4311 Sema::CreateBuiltinArraySubscriptExpr(Expr *Base, SourceLocation LLoc,
4312                                       Expr *Idx, SourceLocation RLoc) {
4313   Expr *LHSExp = Base;
4314   Expr *RHSExp = Idx;
4315 
4316   // Perform default conversions.
4317   if (!LHSExp->getType()->getAs<VectorType>()) {
4318     ExprResult Result = DefaultFunctionArrayLvalueConversion(LHSExp);
4319     if (Result.isInvalid())
4320       return ExprError();
4321     LHSExp = Result.get();
4322   }
4323   ExprResult Result = DefaultFunctionArrayLvalueConversion(RHSExp);
4324   if (Result.isInvalid())
4325     return ExprError();
4326   RHSExp = Result.get();
4327 
4328   QualType LHSTy = LHSExp->getType(), RHSTy = RHSExp->getType();
4329   ExprValueKind VK = VK_LValue;
4330   ExprObjectKind OK = OK_Ordinary;
4331 
4332   // C99 6.5.2.1p2: the expression e1[e2] is by definition precisely equivalent
4333   // to the expression *((e1)+(e2)). This means the array "Base" may actually be
4334   // in the subscript position. As a result, we need to derive the array base
4335   // and index from the expression types.
4336   Expr *BaseExpr, *IndexExpr;
4337   QualType ResultType;
4338   if (LHSTy->isDependentType() || RHSTy->isDependentType()) {
4339     BaseExpr = LHSExp;
4340     IndexExpr = RHSExp;
4341     ResultType = Context.DependentTy;
4342   } else if (const PointerType *PTy = LHSTy->getAs<PointerType>()) {
4343     BaseExpr = LHSExp;
4344     IndexExpr = RHSExp;
4345     ResultType = PTy->getPointeeType();
4346   } else if (const ObjCObjectPointerType *PTy =
4347                LHSTy->getAs<ObjCObjectPointerType>()) {
4348     BaseExpr = LHSExp;
4349     IndexExpr = RHSExp;
4350 
4351     // Use custom logic if this should be the pseudo-object subscript
4352     // expression.
4353     if (!LangOpts.isSubscriptPointerArithmetic())
4354       return BuildObjCSubscriptExpression(RLoc, BaseExpr, IndexExpr, nullptr,
4355                                           nullptr);
4356 
4357     ResultType = PTy->getPointeeType();
4358   } else if (const PointerType *PTy = RHSTy->getAs<PointerType>()) {
4359      // Handle the uncommon case of "123[Ptr]".
4360     BaseExpr = RHSExp;
4361     IndexExpr = LHSExp;
4362     ResultType = PTy->getPointeeType();
4363   } else if (const ObjCObjectPointerType *PTy =
4364                RHSTy->getAs<ObjCObjectPointerType>()) {
4365      // Handle the uncommon case of "123[Ptr]".
4366     BaseExpr = RHSExp;
4367     IndexExpr = LHSExp;
4368     ResultType = PTy->getPointeeType();
4369     if (!LangOpts.isSubscriptPointerArithmetic()) {
4370       Diag(LLoc, diag::err_subscript_nonfragile_interface)
4371         << ResultType << BaseExpr->getSourceRange();
4372       return ExprError();
4373     }
4374   } else if (const VectorType *VTy = LHSTy->getAs<VectorType>()) {
4375     BaseExpr = LHSExp;    // vectors: V[123]
4376     IndexExpr = RHSExp;
4377     VK = LHSExp->getValueKind();
4378     if (VK != VK_RValue)
4379       OK = OK_VectorComponent;
4380 
4381     // FIXME: need to deal with const...
4382     ResultType = VTy->getElementType();
4383   } else if (LHSTy->isArrayType()) {
4384     // If we see an array that wasn't promoted by
4385     // DefaultFunctionArrayLvalueConversion, it must be an array that
4386     // wasn't promoted because of the C90 rule that doesn't
4387     // allow promoting non-lvalue arrays.  Warn, then
4388     // force the promotion here.
4389     Diag(LHSExp->getLocStart(), diag::ext_subscript_non_lvalue) <<
4390         LHSExp->getSourceRange();
4391     LHSExp = ImpCastExprToType(LHSExp, Context.getArrayDecayedType(LHSTy),
4392                                CK_ArrayToPointerDecay).get();
4393     LHSTy = LHSExp->getType();
4394 
4395     BaseExpr = LHSExp;
4396     IndexExpr = RHSExp;
4397     ResultType = LHSTy->getAs<PointerType>()->getPointeeType();
4398   } else if (RHSTy->isArrayType()) {
4399     // Same as previous, except for 123[f().a] case
4400     Diag(RHSExp->getLocStart(), diag::ext_subscript_non_lvalue) <<
4401         RHSExp->getSourceRange();
4402     RHSExp = ImpCastExprToType(RHSExp, Context.getArrayDecayedType(RHSTy),
4403                                CK_ArrayToPointerDecay).get();
4404     RHSTy = RHSExp->getType();
4405 
4406     BaseExpr = RHSExp;
4407     IndexExpr = LHSExp;
4408     ResultType = RHSTy->getAs<PointerType>()->getPointeeType();
4409   } else {
4410     return ExprError(Diag(LLoc, diag::err_typecheck_subscript_value)
4411        << LHSExp->getSourceRange() << RHSExp->getSourceRange());
4412   }
4413   // C99 6.5.2.1p1
4414   if (!IndexExpr->getType()->isIntegerType() && !IndexExpr->isTypeDependent())
4415     return ExprError(Diag(LLoc, diag::err_typecheck_subscript_not_integer)
4416                      << IndexExpr->getSourceRange());
4417 
4418   if ((IndexExpr->getType()->isSpecificBuiltinType(BuiltinType::Char_S) ||
4419        IndexExpr->getType()->isSpecificBuiltinType(BuiltinType::Char_U))
4420          && !IndexExpr->isTypeDependent())
4421     Diag(LLoc, diag::warn_subscript_is_char) << IndexExpr->getSourceRange();
4422 
4423   // C99 6.5.2.1p1: "shall have type "pointer to *object* type". Similarly,
4424   // C++ [expr.sub]p1: The type "T" shall be a completely-defined object
4425   // type. Note that Functions are not objects, and that (in C99 parlance)
4426   // incomplete types are not object types.
4427   if (ResultType->isFunctionType()) {
4428     Diag(BaseExpr->getLocStart(), diag::err_subscript_function_type)
4429       << ResultType << BaseExpr->getSourceRange();
4430     return ExprError();
4431   }
4432 
4433   if (ResultType->isVoidType() && !getLangOpts().CPlusPlus) {
4434     // GNU extension: subscripting on pointer to void
4435     Diag(LLoc, diag::ext_gnu_subscript_void_type)
4436       << BaseExpr->getSourceRange();
4437 
4438     // C forbids expressions of unqualified void type from being l-values.
4439     // See IsCForbiddenLValueType.
4440     if (!ResultType.hasQualifiers()) VK = VK_RValue;
4441   } else if (!ResultType->isDependentType() &&
4442       RequireCompleteType(LLoc, ResultType,
4443                           diag::err_subscript_incomplete_type, BaseExpr))
4444     return ExprError();
4445 
4446   assert(VK == VK_RValue || LangOpts.CPlusPlus ||
4447          !ResultType.isCForbiddenLValueType());
4448 
4449   return new (Context)
4450       ArraySubscriptExpr(LHSExp, RHSExp, ResultType, VK, OK, RLoc);
4451 }
4452 
4453 ExprResult Sema::BuildCXXDefaultArgExpr(SourceLocation CallLoc,
4454                                         FunctionDecl *FD,
4455                                         ParmVarDecl *Param) {
4456   if (Param->hasUnparsedDefaultArg()) {
4457     Diag(CallLoc,
4458          diag::err_use_of_default_argument_to_function_declared_later) <<
4459       FD << cast<CXXRecordDecl>(FD->getDeclContext())->getDeclName();
4460     Diag(UnparsedDefaultArgLocs[Param],
4461          diag::note_default_argument_declared_here);
4462     return ExprError();
4463   }
4464 
4465   if (Param->hasUninstantiatedDefaultArg()) {
4466     Expr *UninstExpr = Param->getUninstantiatedDefaultArg();
4467 
4468     EnterExpressionEvaluationContext EvalContext(*this, PotentiallyEvaluated,
4469                                                  Param);
4470 
4471     // Instantiate the expression.
4472     MultiLevelTemplateArgumentList MutiLevelArgList
4473       = getTemplateInstantiationArgs(FD, nullptr, /*RelativeToPrimary=*/true);
4474 
4475     InstantiatingTemplate Inst(*this, CallLoc, Param,
4476                                MutiLevelArgList.getInnermost());
4477     if (Inst.isInvalid())
4478       return ExprError();
4479 
4480     ExprResult Result;
4481     {
4482       // C++ [dcl.fct.default]p5:
4483       //   The names in the [default argument] expression are bound, and
4484       //   the semantic constraints are checked, at the point where the
4485       //   default argument expression appears.
4486       ContextRAII SavedContext(*this, FD);
4487       LocalInstantiationScope Local(*this);
4488       Result = SubstExpr(UninstExpr, MutiLevelArgList);
4489     }
4490     if (Result.isInvalid())
4491       return ExprError();
4492 
4493     // Check the expression as an initializer for the parameter.
4494     InitializedEntity Entity
4495       = InitializedEntity::InitializeParameter(Context, Param);
4496     InitializationKind Kind
4497       = InitializationKind::CreateCopy(Param->getLocation(),
4498              /*FIXME:EqualLoc*/UninstExpr->getLocStart());
4499     Expr *ResultE = Result.getAs<Expr>();
4500 
4501     InitializationSequence InitSeq(*this, Entity, Kind, ResultE);
4502     Result = InitSeq.Perform(*this, Entity, Kind, ResultE);
4503     if (Result.isInvalid())
4504       return ExprError();
4505 
4506     Result = ActOnFinishFullExpr(Result.getAs<Expr>(),
4507                                  Param->getOuterLocStart());
4508     if (Result.isInvalid())
4509       return ExprError();
4510 
4511     // Remember the instantiated default argument.
4512     Param->setDefaultArg(Result.getAs<Expr>());
4513     if (ASTMutationListener *L = getASTMutationListener()) {
4514       L->DefaultArgumentInstantiated(Param);
4515     }
4516   }
4517 
4518   // If the default expression creates temporaries, we need to
4519   // push them to the current stack of expression temporaries so they'll
4520   // be properly destroyed.
4521   // FIXME: We should really be rebuilding the default argument with new
4522   // bound temporaries; see the comment in PR5810.
4523   // We don't need to do that with block decls, though, because
4524   // blocks in default argument expression can never capture anything.
4525   if (isa<ExprWithCleanups>(Param->getInit())) {
4526     // Set the "needs cleanups" bit regardless of whether there are
4527     // any explicit objects.
4528     ExprNeedsCleanups = true;
4529 
4530     // Append all the objects to the cleanup list.  Right now, this
4531     // should always be a no-op, because blocks in default argument
4532     // expressions should never be able to capture anything.
4533     assert(!cast<ExprWithCleanups>(Param->getInit())->getNumObjects() &&
4534            "default argument expression has capturing blocks?");
4535   }
4536 
4537   // We already type-checked the argument, so we know it works.
4538   // Just mark all of the declarations in this potentially-evaluated expression
4539   // as being "referenced".
4540   MarkDeclarationsReferencedInExpr(Param->getDefaultArg(),
4541                                    /*SkipLocalVariables=*/true);
4542   return CXXDefaultArgExpr::Create(Context, CallLoc, Param);
4543 }
4544 
4545 
4546 Sema::VariadicCallType
4547 Sema::getVariadicCallType(FunctionDecl *FDecl, const FunctionProtoType *Proto,
4548                           Expr *Fn) {
4549   if (Proto && Proto->isVariadic()) {
4550     if (dyn_cast_or_null<CXXConstructorDecl>(FDecl))
4551       return VariadicConstructor;
4552     else if (Fn && Fn->getType()->isBlockPointerType())
4553       return VariadicBlock;
4554     else if (FDecl) {
4555       if (CXXMethodDecl *Method = dyn_cast_or_null<CXXMethodDecl>(FDecl))
4556         if (Method->isInstance())
4557           return VariadicMethod;
4558     } else if (Fn && Fn->getType() == Context.BoundMemberTy)
4559       return VariadicMethod;
4560     return VariadicFunction;
4561   }
4562   return VariadicDoesNotApply;
4563 }
4564 
4565 namespace {
4566 class FunctionCallCCC : public FunctionCallFilterCCC {
4567 public:
4568   FunctionCallCCC(Sema &SemaRef, const IdentifierInfo *FuncName,
4569                   unsigned NumArgs, MemberExpr *ME)
4570       : FunctionCallFilterCCC(SemaRef, NumArgs, false, ME),
4571         FunctionName(FuncName) {}
4572 
4573   bool ValidateCandidate(const TypoCorrection &candidate) override {
4574     if (!candidate.getCorrectionSpecifier() ||
4575         candidate.getCorrectionAsIdentifierInfo() != FunctionName) {
4576       return false;
4577     }
4578 
4579     return FunctionCallFilterCCC::ValidateCandidate(candidate);
4580   }
4581 
4582 private:
4583   const IdentifierInfo *const FunctionName;
4584 };
4585 }
4586 
4587 static TypoCorrection TryTypoCorrectionForCall(Sema &S, Expr *Fn,
4588                                                FunctionDecl *FDecl,
4589                                                ArrayRef<Expr *> Args) {
4590   MemberExpr *ME = dyn_cast<MemberExpr>(Fn);
4591   DeclarationName FuncName = FDecl->getDeclName();
4592   SourceLocation NameLoc = ME ? ME->getMemberLoc() : Fn->getLocStart();
4593 
4594   if (TypoCorrection Corrected = S.CorrectTypo(
4595           DeclarationNameInfo(FuncName, NameLoc), Sema::LookupOrdinaryName,
4596           S.getScopeForContext(S.CurContext), nullptr,
4597           llvm::make_unique<FunctionCallCCC>(S, FuncName.getAsIdentifierInfo(),
4598                                              Args.size(), ME),
4599           Sema::CTK_ErrorRecovery)) {
4600     if (NamedDecl *ND = Corrected.getFoundDecl()) {
4601       if (Corrected.isOverloaded()) {
4602         OverloadCandidateSet OCS(NameLoc, OverloadCandidateSet::CSK_Normal);
4603         OverloadCandidateSet::iterator Best;
4604         for (NamedDecl *CD : Corrected) {
4605           if (FunctionDecl *FD = dyn_cast<FunctionDecl>(CD))
4606             S.AddOverloadCandidate(FD, DeclAccessPair::make(FD, AS_none), Args,
4607                                    OCS);
4608         }
4609         switch (OCS.BestViableFunction(S, NameLoc, Best)) {
4610         case OR_Success:
4611           ND = Best->FoundDecl;
4612           Corrected.setCorrectionDecl(ND);
4613           break;
4614         default:
4615           break;
4616         }
4617       }
4618       ND = ND->getUnderlyingDecl();
4619       if (isa<ValueDecl>(ND) || isa<FunctionTemplateDecl>(ND))
4620         return Corrected;
4621     }
4622   }
4623   return TypoCorrection();
4624 }
4625 
4626 /// ConvertArgumentsForCall - Converts the arguments specified in
4627 /// Args/NumArgs to the parameter types of the function FDecl with
4628 /// function prototype Proto. Call is the call expression itself, and
4629 /// Fn is the function expression. For a C++ member function, this
4630 /// routine does not attempt to convert the object argument. Returns
4631 /// true if the call is ill-formed.
4632 bool
4633 Sema::ConvertArgumentsForCall(CallExpr *Call, Expr *Fn,
4634                               FunctionDecl *FDecl,
4635                               const FunctionProtoType *Proto,
4636                               ArrayRef<Expr *> Args,
4637                               SourceLocation RParenLoc,
4638                               bool IsExecConfig) {
4639   // Bail out early if calling a builtin with custom typechecking.
4640   if (FDecl)
4641     if (unsigned ID = FDecl->getBuiltinID())
4642       if (Context.BuiltinInfo.hasCustomTypechecking(ID))
4643         return false;
4644 
4645   // C99 6.5.2.2p7 - the arguments are implicitly converted, as if by
4646   // assignment, to the types of the corresponding parameter, ...
4647   unsigned NumParams = Proto->getNumParams();
4648   bool Invalid = false;
4649   unsigned MinArgs = FDecl ? FDecl->getMinRequiredArguments() : NumParams;
4650   unsigned FnKind = Fn->getType()->isBlockPointerType()
4651                        ? 1 /* block */
4652                        : (IsExecConfig ? 3 /* kernel function (exec config) */
4653                                        : 0 /* function */);
4654 
4655   // If too few arguments are available (and we don't have default
4656   // arguments for the remaining parameters), don't make the call.
4657   if (Args.size() < NumParams) {
4658     if (Args.size() < MinArgs) {
4659       TypoCorrection TC;
4660       if (FDecl && (TC = TryTypoCorrectionForCall(*this, Fn, FDecl, Args))) {
4661         unsigned diag_id =
4662             MinArgs == NumParams && !Proto->isVariadic()
4663                 ? diag::err_typecheck_call_too_few_args_suggest
4664                 : diag::err_typecheck_call_too_few_args_at_least_suggest;
4665         diagnoseTypo(TC, PDiag(diag_id) << FnKind << MinArgs
4666                                         << static_cast<unsigned>(Args.size())
4667                                         << TC.getCorrectionRange());
4668       } else if (MinArgs == 1 && FDecl && FDecl->getParamDecl(0)->getDeclName())
4669         Diag(RParenLoc,
4670              MinArgs == NumParams && !Proto->isVariadic()
4671                  ? diag::err_typecheck_call_too_few_args_one
4672                  : diag::err_typecheck_call_too_few_args_at_least_one)
4673             << FnKind << FDecl->getParamDecl(0) << Fn->getSourceRange();
4674       else
4675         Diag(RParenLoc, MinArgs == NumParams && !Proto->isVariadic()
4676                             ? diag::err_typecheck_call_too_few_args
4677                             : diag::err_typecheck_call_too_few_args_at_least)
4678             << FnKind << MinArgs << static_cast<unsigned>(Args.size())
4679             << Fn->getSourceRange();
4680 
4681       // Emit the location of the prototype.
4682       if (!TC && FDecl && !FDecl->getBuiltinID() && !IsExecConfig)
4683         Diag(FDecl->getLocStart(), diag::note_callee_decl)
4684           << FDecl;
4685 
4686       return true;
4687     }
4688     Call->setNumArgs(Context, NumParams);
4689   }
4690 
4691   // If too many are passed and not variadic, error on the extras and drop
4692   // them.
4693   if (Args.size() > NumParams) {
4694     if (!Proto->isVariadic()) {
4695       TypoCorrection TC;
4696       if (FDecl && (TC = TryTypoCorrectionForCall(*this, Fn, FDecl, Args))) {
4697         unsigned diag_id =
4698             MinArgs == NumParams && !Proto->isVariadic()
4699                 ? diag::err_typecheck_call_too_many_args_suggest
4700                 : diag::err_typecheck_call_too_many_args_at_most_suggest;
4701         diagnoseTypo(TC, PDiag(diag_id) << FnKind << NumParams
4702                                         << static_cast<unsigned>(Args.size())
4703                                         << TC.getCorrectionRange());
4704       } else if (NumParams == 1 && FDecl &&
4705                  FDecl->getParamDecl(0)->getDeclName())
4706         Diag(Args[NumParams]->getLocStart(),
4707              MinArgs == NumParams
4708                  ? diag::err_typecheck_call_too_many_args_one
4709                  : diag::err_typecheck_call_too_many_args_at_most_one)
4710             << FnKind << FDecl->getParamDecl(0)
4711             << static_cast<unsigned>(Args.size()) << Fn->getSourceRange()
4712             << SourceRange(Args[NumParams]->getLocStart(),
4713                            Args.back()->getLocEnd());
4714       else
4715         Diag(Args[NumParams]->getLocStart(),
4716              MinArgs == NumParams
4717                  ? diag::err_typecheck_call_too_many_args
4718                  : diag::err_typecheck_call_too_many_args_at_most)
4719             << FnKind << NumParams << static_cast<unsigned>(Args.size())
4720             << Fn->getSourceRange()
4721             << SourceRange(Args[NumParams]->getLocStart(),
4722                            Args.back()->getLocEnd());
4723 
4724       // Emit the location of the prototype.
4725       if (!TC && FDecl && !FDecl->getBuiltinID() && !IsExecConfig)
4726         Diag(FDecl->getLocStart(), diag::note_callee_decl)
4727           << FDecl;
4728 
4729       // This deletes the extra arguments.
4730       Call->setNumArgs(Context, NumParams);
4731       return true;
4732     }
4733   }
4734   SmallVector<Expr *, 8> AllArgs;
4735   VariadicCallType CallType = getVariadicCallType(FDecl, Proto, Fn);
4736 
4737   Invalid = GatherArgumentsForCall(Call->getLocStart(), FDecl,
4738                                    Proto, 0, Args, AllArgs, CallType);
4739   if (Invalid)
4740     return true;
4741   unsigned TotalNumArgs = AllArgs.size();
4742   for (unsigned i = 0; i < TotalNumArgs; ++i)
4743     Call->setArg(i, AllArgs[i]);
4744 
4745   return false;
4746 }
4747 
4748 bool Sema::GatherArgumentsForCall(SourceLocation CallLoc, FunctionDecl *FDecl,
4749                                   const FunctionProtoType *Proto,
4750                                   unsigned FirstParam, ArrayRef<Expr *> Args,
4751                                   SmallVectorImpl<Expr *> &AllArgs,
4752                                   VariadicCallType CallType, bool AllowExplicit,
4753                                   bool IsListInitialization) {
4754   unsigned NumParams = Proto->getNumParams();
4755   bool Invalid = false;
4756   size_t ArgIx = 0;
4757   // Continue to check argument types (even if we have too few/many args).
4758   for (unsigned i = FirstParam; i < NumParams; i++) {
4759     QualType ProtoArgType = Proto->getParamType(i);
4760 
4761     Expr *Arg;
4762     ParmVarDecl *Param = FDecl ? FDecl->getParamDecl(i) : nullptr;
4763     if (ArgIx < Args.size()) {
4764       Arg = Args[ArgIx++];
4765 
4766       if (RequireCompleteType(Arg->getLocStart(),
4767                               ProtoArgType,
4768                               diag::err_call_incomplete_argument, Arg))
4769         return true;
4770 
4771       // Strip the unbridged-cast placeholder expression off, if applicable.
4772       bool CFAudited = false;
4773       if (Arg->getType() == Context.ARCUnbridgedCastTy &&
4774           FDecl && FDecl->hasAttr<CFAuditedTransferAttr>() &&
4775           (!Param || !Param->hasAttr<CFConsumedAttr>()))
4776         Arg = stripARCUnbridgedCast(Arg);
4777       else if (getLangOpts().ObjCAutoRefCount &&
4778                FDecl && FDecl->hasAttr<CFAuditedTransferAttr>() &&
4779                (!Param || !Param->hasAttr<CFConsumedAttr>()))
4780         CFAudited = true;
4781 
4782       InitializedEntity Entity =
4783           Param ? InitializedEntity::InitializeParameter(Context, Param,
4784                                                          ProtoArgType)
4785                 : InitializedEntity::InitializeParameter(
4786                       Context, ProtoArgType, Proto->isParamConsumed(i));
4787 
4788       // Remember that parameter belongs to a CF audited API.
4789       if (CFAudited)
4790         Entity.setParameterCFAudited();
4791 
4792       ExprResult ArgE = PerformCopyInitialization(
4793           Entity, SourceLocation(), Arg, IsListInitialization, AllowExplicit);
4794       if (ArgE.isInvalid())
4795         return true;
4796 
4797       Arg = ArgE.getAs<Expr>();
4798     } else {
4799       assert(Param && "can't use default arguments without a known callee");
4800 
4801       ExprResult ArgExpr =
4802         BuildCXXDefaultArgExpr(CallLoc, FDecl, Param);
4803       if (ArgExpr.isInvalid())
4804         return true;
4805 
4806       Arg = ArgExpr.getAs<Expr>();
4807     }
4808 
4809     // Check for array bounds violations for each argument to the call. This
4810     // check only triggers warnings when the argument isn't a more complex Expr
4811     // with its own checking, such as a BinaryOperator.
4812     CheckArrayAccess(Arg);
4813 
4814     // Check for violations of C99 static array rules (C99 6.7.5.3p7).
4815     CheckStaticArrayArgument(CallLoc, Param, Arg);
4816 
4817     AllArgs.push_back(Arg);
4818   }
4819 
4820   // If this is a variadic call, handle args passed through "...".
4821   if (CallType != VariadicDoesNotApply) {
4822     // Assume that extern "C" functions with variadic arguments that
4823     // return __unknown_anytype aren't *really* variadic.
4824     if (Proto->getReturnType() == Context.UnknownAnyTy && FDecl &&
4825         FDecl->isExternC()) {
4826       for (Expr *A : Args.slice(ArgIx)) {
4827         QualType paramType; // ignored
4828         ExprResult arg = checkUnknownAnyArg(CallLoc, A, paramType);
4829         Invalid |= arg.isInvalid();
4830         AllArgs.push_back(arg.get());
4831       }
4832 
4833     // Otherwise do argument promotion, (C99 6.5.2.2p7).
4834     } else {
4835       for (Expr *A : Args.slice(ArgIx)) {
4836         ExprResult Arg = DefaultVariadicArgumentPromotion(A, CallType, FDecl);
4837         Invalid |= Arg.isInvalid();
4838         AllArgs.push_back(Arg.get());
4839       }
4840     }
4841 
4842     // Check for array bounds violations.
4843     for (Expr *A : Args.slice(ArgIx))
4844       CheckArrayAccess(A);
4845   }
4846   return Invalid;
4847 }
4848 
4849 static void DiagnoseCalleeStaticArrayParam(Sema &S, ParmVarDecl *PVD) {
4850   TypeLoc TL = PVD->getTypeSourceInfo()->getTypeLoc();
4851   if (DecayedTypeLoc DTL = TL.getAs<DecayedTypeLoc>())
4852     TL = DTL.getOriginalLoc();
4853   if (ArrayTypeLoc ATL = TL.getAs<ArrayTypeLoc>())
4854     S.Diag(PVD->getLocation(), diag::note_callee_static_array)
4855       << ATL.getLocalSourceRange();
4856 }
4857 
4858 /// CheckStaticArrayArgument - If the given argument corresponds to a static
4859 /// array parameter, check that it is non-null, and that if it is formed by
4860 /// array-to-pointer decay, the underlying array is sufficiently large.
4861 ///
4862 /// C99 6.7.5.3p7: If the keyword static also appears within the [ and ] of the
4863 /// array type derivation, then for each call to the function, the value of the
4864 /// corresponding actual argument shall provide access to the first element of
4865 /// an array with at least as many elements as specified by the size expression.
4866 void
4867 Sema::CheckStaticArrayArgument(SourceLocation CallLoc,
4868                                ParmVarDecl *Param,
4869                                const Expr *ArgExpr) {
4870   // Static array parameters are not supported in C++.
4871   if (!Param || getLangOpts().CPlusPlus)
4872     return;
4873 
4874   QualType OrigTy = Param->getOriginalType();
4875 
4876   const ArrayType *AT = Context.getAsArrayType(OrigTy);
4877   if (!AT || AT->getSizeModifier() != ArrayType::Static)
4878     return;
4879 
4880   if (ArgExpr->isNullPointerConstant(Context,
4881                                      Expr::NPC_NeverValueDependent)) {
4882     Diag(CallLoc, diag::warn_null_arg) << ArgExpr->getSourceRange();
4883     DiagnoseCalleeStaticArrayParam(*this, Param);
4884     return;
4885   }
4886 
4887   const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(AT);
4888   if (!CAT)
4889     return;
4890 
4891   const ConstantArrayType *ArgCAT =
4892     Context.getAsConstantArrayType(ArgExpr->IgnoreParenImpCasts()->getType());
4893   if (!ArgCAT)
4894     return;
4895 
4896   if (ArgCAT->getSize().ult(CAT->getSize())) {
4897     Diag(CallLoc, diag::warn_static_array_too_small)
4898       << ArgExpr->getSourceRange()
4899       << (unsigned) ArgCAT->getSize().getZExtValue()
4900       << (unsigned) CAT->getSize().getZExtValue();
4901     DiagnoseCalleeStaticArrayParam(*this, Param);
4902   }
4903 }
4904 
4905 /// Given a function expression of unknown-any type, try to rebuild it
4906 /// to have a function type.
4907 static ExprResult rebuildUnknownAnyFunction(Sema &S, Expr *fn);
4908 
4909 /// Is the given type a placeholder that we need to lower out
4910 /// immediately during argument processing?
4911 static bool isPlaceholderToRemoveAsArg(QualType type) {
4912   // Placeholders are never sugared.
4913   const BuiltinType *placeholder = dyn_cast<BuiltinType>(type);
4914   if (!placeholder) return false;
4915 
4916   switch (placeholder->getKind()) {
4917   // Ignore all the non-placeholder types.
4918 #define PLACEHOLDER_TYPE(ID, SINGLETON_ID)
4919 #define BUILTIN_TYPE(ID, SINGLETON_ID) case BuiltinType::ID:
4920 #include "clang/AST/BuiltinTypes.def"
4921     return false;
4922 
4923   // We cannot lower out overload sets; they might validly be resolved
4924   // by the call machinery.
4925   case BuiltinType::Overload:
4926     return false;
4927 
4928   // Unbridged casts in ARC can be handled in some call positions and
4929   // should be left in place.
4930   case BuiltinType::ARCUnbridgedCast:
4931     return false;
4932 
4933   // Pseudo-objects should be converted as soon as possible.
4934   case BuiltinType::PseudoObject:
4935     return true;
4936 
4937   // The debugger mode could theoretically but currently does not try
4938   // to resolve unknown-typed arguments based on known parameter types.
4939   case BuiltinType::UnknownAny:
4940     return true;
4941 
4942   // These are always invalid as call arguments and should be reported.
4943   case BuiltinType::BoundMember:
4944   case BuiltinType::BuiltinFn:
4945   case BuiltinType::OMPArraySection:
4946     return true;
4947 
4948   }
4949   llvm_unreachable("bad builtin type kind");
4950 }
4951 
4952 /// Check an argument list for placeholders that we won't try to
4953 /// handle later.
4954 static bool checkArgsForPlaceholders(Sema &S, MultiExprArg args) {
4955   // Apply this processing to all the arguments at once instead of
4956   // dying at the first failure.
4957   bool hasInvalid = false;
4958   for (size_t i = 0, e = args.size(); i != e; i++) {
4959     if (isPlaceholderToRemoveAsArg(args[i]->getType())) {
4960       ExprResult result = S.CheckPlaceholderExpr(args[i]);
4961       if (result.isInvalid()) hasInvalid = true;
4962       else args[i] = result.get();
4963     } else if (hasInvalid) {
4964       (void)S.CorrectDelayedTyposInExpr(args[i]);
4965     }
4966   }
4967   return hasInvalid;
4968 }
4969 
4970 /// If a builtin function has a pointer argument with no explicit address
4971 /// space, then it should be able to accept a pointer to any address
4972 /// space as input.  In order to do this, we need to replace the
4973 /// standard builtin declaration with one that uses the same address space
4974 /// as the call.
4975 ///
4976 /// \returns nullptr If this builtin is not a candidate for a rewrite i.e.
4977 ///                  it does not contain any pointer arguments without
4978 ///                  an address space qualifer.  Otherwise the rewritten
4979 ///                  FunctionDecl is returned.
4980 /// TODO: Handle pointer return types.
4981 static FunctionDecl *rewriteBuiltinFunctionDecl(Sema *Sema, ASTContext &Context,
4982                                                 const FunctionDecl *FDecl,
4983                                                 MultiExprArg ArgExprs) {
4984 
4985   QualType DeclType = FDecl->getType();
4986   const FunctionProtoType *FT = dyn_cast<FunctionProtoType>(DeclType);
4987 
4988   if (!Context.BuiltinInfo.hasPtrArgsOrResult(FDecl->getBuiltinID()) ||
4989       !FT || FT->isVariadic() || ArgExprs.size() != FT->getNumParams())
4990     return nullptr;
4991 
4992   bool NeedsNewDecl = false;
4993   unsigned i = 0;
4994   SmallVector<QualType, 8> OverloadParams;
4995 
4996   for (QualType ParamType : FT->param_types()) {
4997 
4998     // Convert array arguments to pointer to simplify type lookup.
4999     Expr *Arg = Sema->DefaultFunctionArrayLvalueConversion(ArgExprs[i++]).get();
5000     QualType ArgType = Arg->getType();
5001     if (!ParamType->isPointerType() ||
5002         ParamType.getQualifiers().hasAddressSpace() ||
5003         !ArgType->isPointerType() ||
5004         !ArgType->getPointeeType().getQualifiers().hasAddressSpace()) {
5005       OverloadParams.push_back(ParamType);
5006       continue;
5007     }
5008 
5009     NeedsNewDecl = true;
5010     unsigned AS = ArgType->getPointeeType().getQualifiers().getAddressSpace();
5011 
5012     QualType PointeeType = ParamType->getPointeeType();
5013     PointeeType = Context.getAddrSpaceQualType(PointeeType, AS);
5014     OverloadParams.push_back(Context.getPointerType(PointeeType));
5015   }
5016 
5017   if (!NeedsNewDecl)
5018     return nullptr;
5019 
5020   FunctionProtoType::ExtProtoInfo EPI;
5021   QualType OverloadTy = Context.getFunctionType(FT->getReturnType(),
5022                                                 OverloadParams, EPI);
5023   DeclContext *Parent = Context.getTranslationUnitDecl();
5024   FunctionDecl *OverloadDecl = FunctionDecl::Create(Context, Parent,
5025                                                     FDecl->getLocation(),
5026                                                     FDecl->getLocation(),
5027                                                     FDecl->getIdentifier(),
5028                                                     OverloadTy,
5029                                                     /*TInfo=*/nullptr,
5030                                                     SC_Extern, false,
5031                                                     /*hasPrototype=*/true);
5032   SmallVector<ParmVarDecl*, 16> Params;
5033   FT = cast<FunctionProtoType>(OverloadTy);
5034   for (unsigned i = 0, e = FT->getNumParams(); i != e; ++i) {
5035     QualType ParamType = FT->getParamType(i);
5036     ParmVarDecl *Parm =
5037         ParmVarDecl::Create(Context, OverloadDecl, SourceLocation(),
5038                                 SourceLocation(), nullptr, ParamType,
5039                                 /*TInfo=*/nullptr, SC_None, nullptr);
5040     Parm->setScopeInfo(0, i);
5041     Params.push_back(Parm);
5042   }
5043   OverloadDecl->setParams(Params);
5044   return OverloadDecl;
5045 }
5046 
5047 /// ActOnCallExpr - Handle a call to Fn with the specified array of arguments.
5048 /// This provides the location of the left/right parens and a list of comma
5049 /// locations.
5050 ExprResult
5051 Sema::ActOnCallExpr(Scope *S, Expr *Fn, SourceLocation LParenLoc,
5052                     MultiExprArg ArgExprs, SourceLocation RParenLoc,
5053                     Expr *ExecConfig, bool IsExecConfig) {
5054   // Since this might be a postfix expression, get rid of ParenListExprs.
5055   ExprResult Result = MaybeConvertParenListExprToParenExpr(S, Fn);
5056   if (Result.isInvalid()) return ExprError();
5057   Fn = Result.get();
5058 
5059   if (checkArgsForPlaceholders(*this, ArgExprs))
5060     return ExprError();
5061 
5062   if (getLangOpts().CPlusPlus) {
5063     // If this is a pseudo-destructor expression, build the call immediately.
5064     if (isa<CXXPseudoDestructorExpr>(Fn)) {
5065       if (!ArgExprs.empty()) {
5066         // Pseudo-destructor calls should not have any arguments.
5067         Diag(Fn->getLocStart(), diag::err_pseudo_dtor_call_with_args)
5068           << FixItHint::CreateRemoval(
5069                                     SourceRange(ArgExprs.front()->getLocStart(),
5070                                                 ArgExprs.back()->getLocEnd()));
5071       }
5072 
5073       return new (Context)
5074           CallExpr(Context, Fn, None, Context.VoidTy, VK_RValue, RParenLoc);
5075     }
5076     if (Fn->getType() == Context.PseudoObjectTy) {
5077       ExprResult result = CheckPlaceholderExpr(Fn);
5078       if (result.isInvalid()) return ExprError();
5079       Fn = result.get();
5080     }
5081 
5082     // Determine whether this is a dependent call inside a C++ template,
5083     // in which case we won't do any semantic analysis now.
5084     // FIXME: Will need to cache the results of name lookup (including ADL) in
5085     // Fn.
5086     bool Dependent = false;
5087     if (Fn->isTypeDependent())
5088       Dependent = true;
5089     else if (Expr::hasAnyTypeDependentArguments(ArgExprs))
5090       Dependent = true;
5091 
5092     if (Dependent) {
5093       if (ExecConfig) {
5094         return new (Context) CUDAKernelCallExpr(
5095             Context, Fn, cast<CallExpr>(ExecConfig), ArgExprs,
5096             Context.DependentTy, VK_RValue, RParenLoc);
5097       } else {
5098         return new (Context) CallExpr(
5099             Context, Fn, ArgExprs, Context.DependentTy, VK_RValue, RParenLoc);
5100       }
5101     }
5102 
5103     // Determine whether this is a call to an object (C++ [over.call.object]).
5104     if (Fn->getType()->isRecordType())
5105       return BuildCallToObjectOfClassType(S, Fn, LParenLoc, ArgExprs,
5106                                           RParenLoc);
5107 
5108     if (Fn->getType() == Context.UnknownAnyTy) {
5109       ExprResult result = rebuildUnknownAnyFunction(*this, Fn);
5110       if (result.isInvalid()) return ExprError();
5111       Fn = result.get();
5112     }
5113 
5114     if (Fn->getType() == Context.BoundMemberTy) {
5115       return BuildCallToMemberFunction(S, Fn, LParenLoc, ArgExprs, RParenLoc);
5116     }
5117   }
5118 
5119   // Check for overloaded calls.  This can happen even in C due to extensions.
5120   if (Fn->getType() == Context.OverloadTy) {
5121     OverloadExpr::FindResult find = OverloadExpr::find(Fn);
5122 
5123     // We aren't supposed to apply this logic for if there's an '&' involved.
5124     if (!find.HasFormOfMemberPointer) {
5125       OverloadExpr *ovl = find.Expression;
5126       if (UnresolvedLookupExpr *ULE = dyn_cast<UnresolvedLookupExpr>(ovl))
5127         return BuildOverloadedCallExpr(S, Fn, ULE, LParenLoc, ArgExprs,
5128                                        RParenLoc, ExecConfig,
5129                                        /*AllowTypoCorrection=*/true,
5130                                        find.IsAddressOfOperand);
5131       return BuildCallToMemberFunction(S, Fn, LParenLoc, ArgExprs, RParenLoc);
5132     }
5133   }
5134 
5135   // If we're directly calling a function, get the appropriate declaration.
5136   if (Fn->getType() == Context.UnknownAnyTy) {
5137     ExprResult result = rebuildUnknownAnyFunction(*this, Fn);
5138     if (result.isInvalid()) return ExprError();
5139     Fn = result.get();
5140   }
5141 
5142   Expr *NakedFn = Fn->IgnoreParens();
5143 
5144   bool CallingNDeclIndirectly = false;
5145   NamedDecl *NDecl = nullptr;
5146   if (UnaryOperator *UnOp = dyn_cast<UnaryOperator>(NakedFn)) {
5147     if (UnOp->getOpcode() == UO_AddrOf) {
5148       CallingNDeclIndirectly = true;
5149       NakedFn = UnOp->getSubExpr()->IgnoreParens();
5150     }
5151   }
5152 
5153   if (isa<DeclRefExpr>(NakedFn)) {
5154     NDecl = cast<DeclRefExpr>(NakedFn)->getDecl();
5155 
5156     FunctionDecl *FDecl = dyn_cast<FunctionDecl>(NDecl);
5157     if (FDecl && FDecl->getBuiltinID()) {
5158       // Rewrite the function decl for this builtin by replacing parameters
5159       // with no explicit address space with the address space of the arguments
5160       // in ArgExprs.
5161       if ((FDecl = rewriteBuiltinFunctionDecl(this, Context, FDecl, ArgExprs))) {
5162         NDecl = FDecl;
5163         Fn = DeclRefExpr::Create(Context, FDecl->getQualifierLoc(),
5164                            SourceLocation(), FDecl, false,
5165                            SourceLocation(), FDecl->getType(),
5166                            Fn->getValueKind(), FDecl);
5167       }
5168     }
5169   } else if (isa<MemberExpr>(NakedFn))
5170     NDecl = cast<MemberExpr>(NakedFn)->getMemberDecl();
5171 
5172   if (FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(NDecl)) {
5173     if (CallingNDeclIndirectly &&
5174         !checkAddressOfFunctionIsAvailable(FD, /*Complain=*/true,
5175                                            Fn->getLocStart()))
5176       return ExprError();
5177 
5178     if (FD->hasAttr<EnableIfAttr>()) {
5179       if (const EnableIfAttr *Attr = CheckEnableIf(FD, ArgExprs, true)) {
5180         Diag(Fn->getLocStart(),
5181              isa<CXXMethodDecl>(FD) ?
5182                  diag::err_ovl_no_viable_member_function_in_call :
5183                  diag::err_ovl_no_viable_function_in_call)
5184           << FD << FD->getSourceRange();
5185         Diag(FD->getLocation(),
5186              diag::note_ovl_candidate_disabled_by_enable_if_attr)
5187             << Attr->getCond()->getSourceRange() << Attr->getMessage();
5188       }
5189     }
5190   }
5191 
5192   return BuildResolvedCallExpr(Fn, NDecl, LParenLoc, ArgExprs, RParenLoc,
5193                                ExecConfig, IsExecConfig);
5194 }
5195 
5196 /// ActOnAsTypeExpr - create a new asType (bitcast) from the arguments.
5197 ///
5198 /// __builtin_astype( value, dst type )
5199 ///
5200 ExprResult Sema::ActOnAsTypeExpr(Expr *E, ParsedType ParsedDestTy,
5201                                  SourceLocation BuiltinLoc,
5202                                  SourceLocation RParenLoc) {
5203   ExprValueKind VK = VK_RValue;
5204   ExprObjectKind OK = OK_Ordinary;
5205   QualType DstTy = GetTypeFromParser(ParsedDestTy);
5206   QualType SrcTy = E->getType();
5207   if (Context.getTypeSize(DstTy) != Context.getTypeSize(SrcTy))
5208     return ExprError(Diag(BuiltinLoc,
5209                           diag::err_invalid_astype_of_different_size)
5210                      << DstTy
5211                      << SrcTy
5212                      << E->getSourceRange());
5213   return new (Context) AsTypeExpr(E, DstTy, VK, OK, BuiltinLoc, RParenLoc);
5214 }
5215 
5216 /// ActOnConvertVectorExpr - create a new convert-vector expression from the
5217 /// provided arguments.
5218 ///
5219 /// __builtin_convertvector( value, dst type )
5220 ///
5221 ExprResult Sema::ActOnConvertVectorExpr(Expr *E, ParsedType ParsedDestTy,
5222                                         SourceLocation BuiltinLoc,
5223                                         SourceLocation RParenLoc) {
5224   TypeSourceInfo *TInfo;
5225   GetTypeFromParser(ParsedDestTy, &TInfo);
5226   return SemaConvertVectorExpr(E, TInfo, BuiltinLoc, RParenLoc);
5227 }
5228 
5229 /// BuildResolvedCallExpr - Build a call to a resolved expression,
5230 /// i.e. an expression not of \p OverloadTy.  The expression should
5231 /// unary-convert to an expression of function-pointer or
5232 /// block-pointer type.
5233 ///
5234 /// \param NDecl the declaration being called, if available
5235 ExprResult
5236 Sema::BuildResolvedCallExpr(Expr *Fn, NamedDecl *NDecl,
5237                             SourceLocation LParenLoc,
5238                             ArrayRef<Expr *> Args,
5239                             SourceLocation RParenLoc,
5240                             Expr *Config, bool IsExecConfig) {
5241   FunctionDecl *FDecl = dyn_cast_or_null<FunctionDecl>(NDecl);
5242   unsigned BuiltinID = (FDecl ? FDecl->getBuiltinID() : 0);
5243 
5244   // Functions with 'interrupt' attribute cannot be called directly.
5245   if (FDecl && FDecl->hasAttr<AnyX86InterruptAttr>()) {
5246     Diag(Fn->getExprLoc(), diag::err_anyx86_interrupt_called);
5247     return ExprError();
5248   }
5249 
5250   // Promote the function operand.
5251   // We special-case function promotion here because we only allow promoting
5252   // builtin functions to function pointers in the callee of a call.
5253   ExprResult Result;
5254   if (BuiltinID &&
5255       Fn->getType()->isSpecificBuiltinType(BuiltinType::BuiltinFn)) {
5256     Result = ImpCastExprToType(Fn, Context.getPointerType(FDecl->getType()),
5257                                CK_BuiltinFnToFnPtr).get();
5258   } else {
5259     Result = CallExprUnaryConversions(Fn);
5260   }
5261   if (Result.isInvalid())
5262     return ExprError();
5263   Fn = Result.get();
5264 
5265   // Make the call expr early, before semantic checks.  This guarantees cleanup
5266   // of arguments and function on error.
5267   CallExpr *TheCall;
5268   if (Config)
5269     TheCall = new (Context) CUDAKernelCallExpr(Context, Fn,
5270                                                cast<CallExpr>(Config), Args,
5271                                                Context.BoolTy, VK_RValue,
5272                                                RParenLoc);
5273   else
5274     TheCall = new (Context) CallExpr(Context, Fn, Args, Context.BoolTy,
5275                                      VK_RValue, RParenLoc);
5276 
5277   if (!getLangOpts().CPlusPlus) {
5278     // C cannot always handle TypoExpr nodes in builtin calls and direct
5279     // function calls as their argument checking don't necessarily handle
5280     // dependent types properly, so make sure any TypoExprs have been
5281     // dealt with.
5282     ExprResult Result = CorrectDelayedTyposInExpr(TheCall);
5283     if (!Result.isUsable()) return ExprError();
5284     TheCall = dyn_cast<CallExpr>(Result.get());
5285     if (!TheCall) return Result;
5286     Args = llvm::makeArrayRef(TheCall->getArgs(), TheCall->getNumArgs());
5287   }
5288 
5289   // Bail out early if calling a builtin with custom typechecking.
5290   if (BuiltinID && Context.BuiltinInfo.hasCustomTypechecking(BuiltinID))
5291     return CheckBuiltinFunctionCall(FDecl, BuiltinID, TheCall);
5292 
5293  retry:
5294   const FunctionType *FuncT;
5295   if (const PointerType *PT = Fn->getType()->getAs<PointerType>()) {
5296     // C99 6.5.2.2p1 - "The expression that denotes the called function shall
5297     // have type pointer to function".
5298     FuncT = PT->getPointeeType()->getAs<FunctionType>();
5299     if (!FuncT)
5300       return ExprError(Diag(LParenLoc, diag::err_typecheck_call_not_function)
5301                          << Fn->getType() << Fn->getSourceRange());
5302   } else if (const BlockPointerType *BPT =
5303                Fn->getType()->getAs<BlockPointerType>()) {
5304     FuncT = BPT->getPointeeType()->castAs<FunctionType>();
5305   } else {
5306     // Handle calls to expressions of unknown-any type.
5307     if (Fn->getType() == Context.UnknownAnyTy) {
5308       ExprResult rewrite = rebuildUnknownAnyFunction(*this, Fn);
5309       if (rewrite.isInvalid()) return ExprError();
5310       Fn = rewrite.get();
5311       TheCall->setCallee(Fn);
5312       goto retry;
5313     }
5314 
5315     return ExprError(Diag(LParenLoc, diag::err_typecheck_call_not_function)
5316       << Fn->getType() << Fn->getSourceRange());
5317   }
5318 
5319   if (getLangOpts().CUDA) {
5320     if (Config) {
5321       // CUDA: Kernel calls must be to global functions
5322       if (FDecl && !FDecl->hasAttr<CUDAGlobalAttr>())
5323         return ExprError(Diag(LParenLoc,diag::err_kern_call_not_global_function)
5324             << FDecl->getName() << Fn->getSourceRange());
5325 
5326       // CUDA: Kernel function must have 'void' return type
5327       if (!FuncT->getReturnType()->isVoidType())
5328         return ExprError(Diag(LParenLoc, diag::err_kern_type_not_void_return)
5329             << Fn->getType() << Fn->getSourceRange());
5330     } else {
5331       // CUDA: Calls to global functions must be configured
5332       if (FDecl && FDecl->hasAttr<CUDAGlobalAttr>())
5333         return ExprError(Diag(LParenLoc, diag::err_global_call_not_config)
5334             << FDecl->getName() << Fn->getSourceRange());
5335     }
5336   }
5337 
5338   // Check for a valid return type
5339   if (CheckCallReturnType(FuncT->getReturnType(), Fn->getLocStart(), TheCall,
5340                           FDecl))
5341     return ExprError();
5342 
5343   // We know the result type of the call, set it.
5344   TheCall->setType(FuncT->getCallResultType(Context));
5345   TheCall->setValueKind(Expr::getValueKindForType(FuncT->getReturnType()));
5346 
5347   const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FuncT);
5348   if (Proto) {
5349     if (ConvertArgumentsForCall(TheCall, Fn, FDecl, Proto, Args, RParenLoc,
5350                                 IsExecConfig))
5351       return ExprError();
5352   } else {
5353     assert(isa<FunctionNoProtoType>(FuncT) && "Unknown FunctionType!");
5354 
5355     if (FDecl) {
5356       // Check if we have too few/too many template arguments, based
5357       // on our knowledge of the function definition.
5358       const FunctionDecl *Def = nullptr;
5359       if (FDecl->hasBody(Def) && Args.size() != Def->param_size()) {
5360         Proto = Def->getType()->getAs<FunctionProtoType>();
5361        if (!Proto || !(Proto->isVariadic() && Args.size() >= Def->param_size()))
5362           Diag(RParenLoc, diag::warn_call_wrong_number_of_arguments)
5363           << (Args.size() > Def->param_size()) << FDecl << Fn->getSourceRange();
5364       }
5365 
5366       // If the function we're calling isn't a function prototype, but we have
5367       // a function prototype from a prior declaratiom, use that prototype.
5368       if (!FDecl->hasPrototype())
5369         Proto = FDecl->getType()->getAs<FunctionProtoType>();
5370     }
5371 
5372     // Promote the arguments (C99 6.5.2.2p6).
5373     for (unsigned i = 0, e = Args.size(); i != e; i++) {
5374       Expr *Arg = Args[i];
5375 
5376       if (Proto && i < Proto->getNumParams()) {
5377         InitializedEntity Entity = InitializedEntity::InitializeParameter(
5378             Context, Proto->getParamType(i), Proto->isParamConsumed(i));
5379         ExprResult ArgE =
5380             PerformCopyInitialization(Entity, SourceLocation(), Arg);
5381         if (ArgE.isInvalid())
5382           return true;
5383 
5384         Arg = ArgE.getAs<Expr>();
5385 
5386       } else {
5387         ExprResult ArgE = DefaultArgumentPromotion(Arg);
5388 
5389         if (ArgE.isInvalid())
5390           return true;
5391 
5392         Arg = ArgE.getAs<Expr>();
5393       }
5394 
5395       if (RequireCompleteType(Arg->getLocStart(),
5396                               Arg->getType(),
5397                               diag::err_call_incomplete_argument, Arg))
5398         return ExprError();
5399 
5400       TheCall->setArg(i, Arg);
5401     }
5402   }
5403 
5404   if (CXXMethodDecl *Method = dyn_cast_or_null<CXXMethodDecl>(FDecl))
5405     if (!Method->isStatic())
5406       return ExprError(Diag(LParenLoc, diag::err_member_call_without_object)
5407         << Fn->getSourceRange());
5408 
5409   // Check for sentinels
5410   if (NDecl)
5411     DiagnoseSentinelCalls(NDecl, LParenLoc, Args);
5412 
5413   // Do special checking on direct calls to functions.
5414   if (FDecl) {
5415     if (CheckFunctionCall(FDecl, TheCall, Proto))
5416       return ExprError();
5417 
5418     if (BuiltinID)
5419       return CheckBuiltinFunctionCall(FDecl, BuiltinID, TheCall);
5420   } else if (NDecl) {
5421     if (CheckPointerCall(NDecl, TheCall, Proto))
5422       return ExprError();
5423   } else {
5424     if (CheckOtherCall(TheCall, Proto))
5425       return ExprError();
5426   }
5427 
5428   return MaybeBindToTemporary(TheCall);
5429 }
5430 
5431 ExprResult
5432 Sema::ActOnCompoundLiteral(SourceLocation LParenLoc, ParsedType Ty,
5433                            SourceLocation RParenLoc, Expr *InitExpr) {
5434   assert(Ty && "ActOnCompoundLiteral(): missing type");
5435   assert(InitExpr && "ActOnCompoundLiteral(): missing expression");
5436 
5437   TypeSourceInfo *TInfo;
5438   QualType literalType = GetTypeFromParser(Ty, &TInfo);
5439   if (!TInfo)
5440     TInfo = Context.getTrivialTypeSourceInfo(literalType);
5441 
5442   return BuildCompoundLiteralExpr(LParenLoc, TInfo, RParenLoc, InitExpr);
5443 }
5444 
5445 ExprResult
5446 Sema::BuildCompoundLiteralExpr(SourceLocation LParenLoc, TypeSourceInfo *TInfo,
5447                                SourceLocation RParenLoc, Expr *LiteralExpr) {
5448   QualType literalType = TInfo->getType();
5449 
5450   if (literalType->isArrayType()) {
5451     if (RequireCompleteType(LParenLoc, Context.getBaseElementType(literalType),
5452           diag::err_illegal_decl_array_incomplete_type,
5453           SourceRange(LParenLoc,
5454                       LiteralExpr->getSourceRange().getEnd())))
5455       return ExprError();
5456     if (literalType->isVariableArrayType())
5457       return ExprError(Diag(LParenLoc, diag::err_variable_object_no_init)
5458         << SourceRange(LParenLoc, LiteralExpr->getSourceRange().getEnd()));
5459   } else if (!literalType->isDependentType() &&
5460              RequireCompleteType(LParenLoc, literalType,
5461                diag::err_typecheck_decl_incomplete_type,
5462                SourceRange(LParenLoc, LiteralExpr->getSourceRange().getEnd())))
5463     return ExprError();
5464 
5465   InitializedEntity Entity
5466     = InitializedEntity::InitializeCompoundLiteralInit(TInfo);
5467   InitializationKind Kind
5468     = InitializationKind::CreateCStyleCast(LParenLoc,
5469                                            SourceRange(LParenLoc, RParenLoc),
5470                                            /*InitList=*/true);
5471   InitializationSequence InitSeq(*this, Entity, Kind, LiteralExpr);
5472   ExprResult Result = InitSeq.Perform(*this, Entity, Kind, LiteralExpr,
5473                                       &literalType);
5474   if (Result.isInvalid())
5475     return ExprError();
5476   LiteralExpr = Result.get();
5477 
5478   bool isFileScope = getCurFunctionOrMethodDecl() == nullptr;
5479   if (isFileScope &&
5480       !LiteralExpr->isTypeDependent() &&
5481       !LiteralExpr->isValueDependent() &&
5482       !literalType->isDependentType()) { // 6.5.2.5p3
5483     if (CheckForConstantInitializer(LiteralExpr, literalType))
5484       return ExprError();
5485   }
5486 
5487   // In C, compound literals are l-values for some reason.
5488   ExprValueKind VK = getLangOpts().CPlusPlus ? VK_RValue : VK_LValue;
5489 
5490   return MaybeBindToTemporary(
5491            new (Context) CompoundLiteralExpr(LParenLoc, TInfo, literalType,
5492                                              VK, LiteralExpr, isFileScope));
5493 }
5494 
5495 ExprResult
5496 Sema::ActOnInitList(SourceLocation LBraceLoc, MultiExprArg InitArgList,
5497                     SourceLocation RBraceLoc) {
5498   // Immediately handle non-overload placeholders.  Overloads can be
5499   // resolved contextually, but everything else here can't.
5500   for (unsigned I = 0, E = InitArgList.size(); I != E; ++I) {
5501     if (InitArgList[I]->getType()->isNonOverloadPlaceholderType()) {
5502       ExprResult result = CheckPlaceholderExpr(InitArgList[I]);
5503 
5504       // Ignore failures; dropping the entire initializer list because
5505       // of one failure would be terrible for indexing/etc.
5506       if (result.isInvalid()) continue;
5507 
5508       InitArgList[I] = result.get();
5509     }
5510   }
5511 
5512   // Semantic analysis for initializers is done by ActOnDeclarator() and
5513   // CheckInitializer() - it requires knowledge of the object being intialized.
5514 
5515   InitListExpr *E = new (Context) InitListExpr(Context, LBraceLoc, InitArgList,
5516                                                RBraceLoc);
5517   E->setType(Context.VoidTy); // FIXME: just a place holder for now.
5518   return E;
5519 }
5520 
5521 /// Do an explicit extend of the given block pointer if we're in ARC.
5522 void Sema::maybeExtendBlockObject(ExprResult &E) {
5523   assert(E.get()->getType()->isBlockPointerType());
5524   assert(E.get()->isRValue());
5525 
5526   // Only do this in an r-value context.
5527   if (!getLangOpts().ObjCAutoRefCount) return;
5528 
5529   E = ImplicitCastExpr::Create(Context, E.get()->getType(),
5530                                CK_ARCExtendBlockObject, E.get(),
5531                                /*base path*/ nullptr, VK_RValue);
5532   ExprNeedsCleanups = true;
5533 }
5534 
5535 /// Prepare a conversion of the given expression to an ObjC object
5536 /// pointer type.
5537 CastKind Sema::PrepareCastToObjCObjectPointer(ExprResult &E) {
5538   QualType type = E.get()->getType();
5539   if (type->isObjCObjectPointerType()) {
5540     return CK_BitCast;
5541   } else if (type->isBlockPointerType()) {
5542     maybeExtendBlockObject(E);
5543     return CK_BlockPointerToObjCPointerCast;
5544   } else {
5545     assert(type->isPointerType());
5546     return CK_CPointerToObjCPointerCast;
5547   }
5548 }
5549 
5550 /// Prepares for a scalar cast, performing all the necessary stages
5551 /// except the final cast and returning the kind required.
5552 CastKind Sema::PrepareScalarCast(ExprResult &Src, QualType DestTy) {
5553   // Both Src and Dest are scalar types, i.e. arithmetic or pointer.
5554   // Also, callers should have filtered out the invalid cases with
5555   // pointers.  Everything else should be possible.
5556 
5557   QualType SrcTy = Src.get()->getType();
5558   if (Context.hasSameUnqualifiedType(SrcTy, DestTy))
5559     return CK_NoOp;
5560 
5561   switch (Type::ScalarTypeKind SrcKind = SrcTy->getScalarTypeKind()) {
5562   case Type::STK_MemberPointer:
5563     llvm_unreachable("member pointer type in C");
5564 
5565   case Type::STK_CPointer:
5566   case Type::STK_BlockPointer:
5567   case Type::STK_ObjCObjectPointer:
5568     switch (DestTy->getScalarTypeKind()) {
5569     case Type::STK_CPointer: {
5570       unsigned SrcAS = SrcTy->getPointeeType().getAddressSpace();
5571       unsigned DestAS = DestTy->getPointeeType().getAddressSpace();
5572       if (SrcAS != DestAS)
5573         return CK_AddressSpaceConversion;
5574       return CK_BitCast;
5575     }
5576     case Type::STK_BlockPointer:
5577       return (SrcKind == Type::STK_BlockPointer
5578                 ? CK_BitCast : CK_AnyPointerToBlockPointerCast);
5579     case Type::STK_ObjCObjectPointer:
5580       if (SrcKind == Type::STK_ObjCObjectPointer)
5581         return CK_BitCast;
5582       if (SrcKind == Type::STK_CPointer)
5583         return CK_CPointerToObjCPointerCast;
5584       maybeExtendBlockObject(Src);
5585       return CK_BlockPointerToObjCPointerCast;
5586     case Type::STK_Bool:
5587       return CK_PointerToBoolean;
5588     case Type::STK_Integral:
5589       return CK_PointerToIntegral;
5590     case Type::STK_Floating:
5591     case Type::STK_FloatingComplex:
5592     case Type::STK_IntegralComplex:
5593     case Type::STK_MemberPointer:
5594       llvm_unreachable("illegal cast from pointer");
5595     }
5596     llvm_unreachable("Should have returned before this");
5597 
5598   case Type::STK_Bool: // casting from bool is like casting from an integer
5599   case Type::STK_Integral:
5600     switch (DestTy->getScalarTypeKind()) {
5601     case Type::STK_CPointer:
5602     case Type::STK_ObjCObjectPointer:
5603     case Type::STK_BlockPointer:
5604       if (Src.get()->isNullPointerConstant(Context,
5605                                            Expr::NPC_ValueDependentIsNull))
5606         return CK_NullToPointer;
5607       return CK_IntegralToPointer;
5608     case Type::STK_Bool:
5609       return CK_IntegralToBoolean;
5610     case Type::STK_Integral:
5611       return CK_IntegralCast;
5612     case Type::STK_Floating:
5613       return CK_IntegralToFloating;
5614     case Type::STK_IntegralComplex:
5615       Src = ImpCastExprToType(Src.get(),
5616                       DestTy->castAs<ComplexType>()->getElementType(),
5617                       CK_IntegralCast);
5618       return CK_IntegralRealToComplex;
5619     case Type::STK_FloatingComplex:
5620       Src = ImpCastExprToType(Src.get(),
5621                       DestTy->castAs<ComplexType>()->getElementType(),
5622                       CK_IntegralToFloating);
5623       return CK_FloatingRealToComplex;
5624     case Type::STK_MemberPointer:
5625       llvm_unreachable("member pointer type in C");
5626     }
5627     llvm_unreachable("Should have returned before this");
5628 
5629   case Type::STK_Floating:
5630     switch (DestTy->getScalarTypeKind()) {
5631     case Type::STK_Floating:
5632       return CK_FloatingCast;
5633     case Type::STK_Bool:
5634       return CK_FloatingToBoolean;
5635     case Type::STK_Integral:
5636       return CK_FloatingToIntegral;
5637     case Type::STK_FloatingComplex:
5638       Src = ImpCastExprToType(Src.get(),
5639                               DestTy->castAs<ComplexType>()->getElementType(),
5640                               CK_FloatingCast);
5641       return CK_FloatingRealToComplex;
5642     case Type::STK_IntegralComplex:
5643       Src = ImpCastExprToType(Src.get(),
5644                               DestTy->castAs<ComplexType>()->getElementType(),
5645                               CK_FloatingToIntegral);
5646       return CK_IntegralRealToComplex;
5647     case Type::STK_CPointer:
5648     case Type::STK_ObjCObjectPointer:
5649     case Type::STK_BlockPointer:
5650       llvm_unreachable("valid float->pointer cast?");
5651     case Type::STK_MemberPointer:
5652       llvm_unreachable("member pointer type in C");
5653     }
5654     llvm_unreachable("Should have returned before this");
5655 
5656   case Type::STK_FloatingComplex:
5657     switch (DestTy->getScalarTypeKind()) {
5658     case Type::STK_FloatingComplex:
5659       return CK_FloatingComplexCast;
5660     case Type::STK_IntegralComplex:
5661       return CK_FloatingComplexToIntegralComplex;
5662     case Type::STK_Floating: {
5663       QualType ET = SrcTy->castAs<ComplexType>()->getElementType();
5664       if (Context.hasSameType(ET, DestTy))
5665         return CK_FloatingComplexToReal;
5666       Src = ImpCastExprToType(Src.get(), ET, CK_FloatingComplexToReal);
5667       return CK_FloatingCast;
5668     }
5669     case Type::STK_Bool:
5670       return CK_FloatingComplexToBoolean;
5671     case Type::STK_Integral:
5672       Src = ImpCastExprToType(Src.get(),
5673                               SrcTy->castAs<ComplexType>()->getElementType(),
5674                               CK_FloatingComplexToReal);
5675       return CK_FloatingToIntegral;
5676     case Type::STK_CPointer:
5677     case Type::STK_ObjCObjectPointer:
5678     case Type::STK_BlockPointer:
5679       llvm_unreachable("valid complex float->pointer cast?");
5680     case Type::STK_MemberPointer:
5681       llvm_unreachable("member pointer type in C");
5682     }
5683     llvm_unreachable("Should have returned before this");
5684 
5685   case Type::STK_IntegralComplex:
5686     switch (DestTy->getScalarTypeKind()) {
5687     case Type::STK_FloatingComplex:
5688       return CK_IntegralComplexToFloatingComplex;
5689     case Type::STK_IntegralComplex:
5690       return CK_IntegralComplexCast;
5691     case Type::STK_Integral: {
5692       QualType ET = SrcTy->castAs<ComplexType>()->getElementType();
5693       if (Context.hasSameType(ET, DestTy))
5694         return CK_IntegralComplexToReal;
5695       Src = ImpCastExprToType(Src.get(), ET, CK_IntegralComplexToReal);
5696       return CK_IntegralCast;
5697     }
5698     case Type::STK_Bool:
5699       return CK_IntegralComplexToBoolean;
5700     case Type::STK_Floating:
5701       Src = ImpCastExprToType(Src.get(),
5702                               SrcTy->castAs<ComplexType>()->getElementType(),
5703                               CK_IntegralComplexToReal);
5704       return CK_IntegralToFloating;
5705     case Type::STK_CPointer:
5706     case Type::STK_ObjCObjectPointer:
5707     case Type::STK_BlockPointer:
5708       llvm_unreachable("valid complex int->pointer cast?");
5709     case Type::STK_MemberPointer:
5710       llvm_unreachable("member pointer type in C");
5711     }
5712     llvm_unreachable("Should have returned before this");
5713   }
5714 
5715   llvm_unreachable("Unhandled scalar cast");
5716 }
5717 
5718 static bool breakDownVectorType(QualType type, uint64_t &len,
5719                                 QualType &eltType) {
5720   // Vectors are simple.
5721   if (const VectorType *vecType = type->getAs<VectorType>()) {
5722     len = vecType->getNumElements();
5723     eltType = vecType->getElementType();
5724     assert(eltType->isScalarType());
5725     return true;
5726   }
5727 
5728   // We allow lax conversion to and from non-vector types, but only if
5729   // they're real types (i.e. non-complex, non-pointer scalar types).
5730   if (!type->isRealType()) return false;
5731 
5732   len = 1;
5733   eltType = type;
5734   return true;
5735 }
5736 
5737 /// Are the two types lax-compatible vector types?  That is, given
5738 /// that one of them is a vector, do they have equal storage sizes,
5739 /// where the storage size is the number of elements times the element
5740 /// size?
5741 ///
5742 /// This will also return false if either of the types is neither a
5743 /// vector nor a real type.
5744 bool Sema::areLaxCompatibleVectorTypes(QualType srcTy, QualType destTy) {
5745   assert(destTy->isVectorType() || srcTy->isVectorType());
5746 
5747   // Disallow lax conversions between scalars and ExtVectors (these
5748   // conversions are allowed for other vector types because common headers
5749   // depend on them).  Most scalar OP ExtVector cases are handled by the
5750   // splat path anyway, which does what we want (convert, not bitcast).
5751   // What this rules out for ExtVectors is crazy things like char4*float.
5752   if (srcTy->isScalarType() && destTy->isExtVectorType()) return false;
5753   if (destTy->isScalarType() && srcTy->isExtVectorType()) return false;
5754 
5755   uint64_t srcLen, destLen;
5756   QualType srcEltTy, destEltTy;
5757   if (!breakDownVectorType(srcTy, srcLen, srcEltTy)) return false;
5758   if (!breakDownVectorType(destTy, destLen, destEltTy)) return false;
5759 
5760   // ASTContext::getTypeSize will return the size rounded up to a
5761   // power of 2, so instead of using that, we need to use the raw
5762   // element size multiplied by the element count.
5763   uint64_t srcEltSize = Context.getTypeSize(srcEltTy);
5764   uint64_t destEltSize = Context.getTypeSize(destEltTy);
5765 
5766   return (srcLen * srcEltSize == destLen * destEltSize);
5767 }
5768 
5769 /// Is this a legal conversion between two types, one of which is
5770 /// known to be a vector type?
5771 bool Sema::isLaxVectorConversion(QualType srcTy, QualType destTy) {
5772   assert(destTy->isVectorType() || srcTy->isVectorType());
5773 
5774   if (!Context.getLangOpts().LaxVectorConversions)
5775     return false;
5776   return areLaxCompatibleVectorTypes(srcTy, destTy);
5777 }
5778 
5779 bool Sema::CheckVectorCast(SourceRange R, QualType VectorTy, QualType Ty,
5780                            CastKind &Kind) {
5781   assert(VectorTy->isVectorType() && "Not a vector type!");
5782 
5783   if (Ty->isVectorType() || Ty->isIntegralType(Context)) {
5784     if (!areLaxCompatibleVectorTypes(Ty, VectorTy))
5785       return Diag(R.getBegin(),
5786                   Ty->isVectorType() ?
5787                   diag::err_invalid_conversion_between_vectors :
5788                   diag::err_invalid_conversion_between_vector_and_integer)
5789         << VectorTy << Ty << R;
5790   } else
5791     return Diag(R.getBegin(),
5792                 diag::err_invalid_conversion_between_vector_and_scalar)
5793       << VectorTy << Ty << R;
5794 
5795   Kind = CK_BitCast;
5796   return false;
5797 }
5798 
5799 ExprResult Sema::prepareVectorSplat(QualType VectorTy, Expr *SplattedExpr) {
5800   QualType DestElemTy = VectorTy->castAs<VectorType>()->getElementType();
5801 
5802   if (DestElemTy == SplattedExpr->getType())
5803     return SplattedExpr;
5804 
5805   assert(DestElemTy->isFloatingType() ||
5806          DestElemTy->isIntegralOrEnumerationType());
5807 
5808   CastKind CK;
5809   if (VectorTy->isExtVectorType() && SplattedExpr->getType()->isBooleanType()) {
5810     // OpenCL requires that we convert `true` boolean expressions to -1, but
5811     // only when splatting vectors.
5812     if (DestElemTy->isFloatingType()) {
5813       // To avoid having to have a CK_BooleanToSignedFloating cast kind, we cast
5814       // in two steps: boolean to signed integral, then to floating.
5815       ExprResult CastExprRes = ImpCastExprToType(SplattedExpr, Context.IntTy,
5816                                                  CK_BooleanToSignedIntegral);
5817       SplattedExpr = CastExprRes.get();
5818       CK = CK_IntegralToFloating;
5819     } else {
5820       CK = CK_BooleanToSignedIntegral;
5821     }
5822   } else {
5823     ExprResult CastExprRes = SplattedExpr;
5824     CK = PrepareScalarCast(CastExprRes, DestElemTy);
5825     if (CastExprRes.isInvalid())
5826       return ExprError();
5827     SplattedExpr = CastExprRes.get();
5828   }
5829   return ImpCastExprToType(SplattedExpr, DestElemTy, CK);
5830 }
5831 
5832 ExprResult Sema::CheckExtVectorCast(SourceRange R, QualType DestTy,
5833                                     Expr *CastExpr, CastKind &Kind) {
5834   assert(DestTy->isExtVectorType() && "Not an extended vector type!");
5835 
5836   QualType SrcTy = CastExpr->getType();
5837 
5838   // If SrcTy is a VectorType, the total size must match to explicitly cast to
5839   // an ExtVectorType.
5840   // In OpenCL, casts between vectors of different types are not allowed.
5841   // (See OpenCL 6.2).
5842   if (SrcTy->isVectorType()) {
5843     if (!areLaxCompatibleVectorTypes(SrcTy, DestTy)
5844         || (getLangOpts().OpenCL &&
5845             (DestTy.getCanonicalType() != SrcTy.getCanonicalType()))) {
5846       Diag(R.getBegin(),diag::err_invalid_conversion_between_ext_vectors)
5847         << DestTy << SrcTy << R;
5848       return ExprError();
5849     }
5850     Kind = CK_BitCast;
5851     return CastExpr;
5852   }
5853 
5854   // All non-pointer scalars can be cast to ExtVector type.  The appropriate
5855   // conversion will take place first from scalar to elt type, and then
5856   // splat from elt type to vector.
5857   if (SrcTy->isPointerType())
5858     return Diag(R.getBegin(),
5859                 diag::err_invalid_conversion_between_vector_and_scalar)
5860       << DestTy << SrcTy << R;
5861 
5862   Kind = CK_VectorSplat;
5863   return prepareVectorSplat(DestTy, CastExpr);
5864 }
5865 
5866 ExprResult
5867 Sema::ActOnCastExpr(Scope *S, SourceLocation LParenLoc,
5868                     Declarator &D, ParsedType &Ty,
5869                     SourceLocation RParenLoc, Expr *CastExpr) {
5870   assert(!D.isInvalidType() && (CastExpr != nullptr) &&
5871          "ActOnCastExpr(): missing type or expr");
5872 
5873   TypeSourceInfo *castTInfo = GetTypeForDeclaratorCast(D, CastExpr->getType());
5874   if (D.isInvalidType())
5875     return ExprError();
5876 
5877   if (getLangOpts().CPlusPlus) {
5878     // Check that there are no default arguments (C++ only).
5879     CheckExtraCXXDefaultArguments(D);
5880   } else {
5881     // Make sure any TypoExprs have been dealt with.
5882     ExprResult Res = CorrectDelayedTyposInExpr(CastExpr);
5883     if (!Res.isUsable())
5884       return ExprError();
5885     CastExpr = Res.get();
5886   }
5887 
5888   checkUnusedDeclAttributes(D);
5889 
5890   QualType castType = castTInfo->getType();
5891   Ty = CreateParsedType(castType, castTInfo);
5892 
5893   bool isVectorLiteral = false;
5894 
5895   // Check for an altivec or OpenCL literal,
5896   // i.e. all the elements are integer constants.
5897   ParenExpr *PE = dyn_cast<ParenExpr>(CastExpr);
5898   ParenListExpr *PLE = dyn_cast<ParenListExpr>(CastExpr);
5899   if ((getLangOpts().AltiVec || getLangOpts().ZVector || getLangOpts().OpenCL)
5900        && castType->isVectorType() && (PE || PLE)) {
5901     if (PLE && PLE->getNumExprs() == 0) {
5902       Diag(PLE->getExprLoc(), diag::err_altivec_empty_initializer);
5903       return ExprError();
5904     }
5905     if (PE || PLE->getNumExprs() == 1) {
5906       Expr *E = (PE ? PE->getSubExpr() : PLE->getExpr(0));
5907       if (!E->getType()->isVectorType())
5908         isVectorLiteral = true;
5909     }
5910     else
5911       isVectorLiteral = true;
5912   }
5913 
5914   // If this is a vector initializer, '(' type ')' '(' init, ..., init ')'
5915   // then handle it as such.
5916   if (isVectorLiteral)
5917     return BuildVectorLiteral(LParenLoc, RParenLoc, CastExpr, castTInfo);
5918 
5919   // If the Expr being casted is a ParenListExpr, handle it specially.
5920   // This is not an AltiVec-style cast, so turn the ParenListExpr into a
5921   // sequence of BinOp comma operators.
5922   if (isa<ParenListExpr>(CastExpr)) {
5923     ExprResult Result = MaybeConvertParenListExprToParenExpr(S, CastExpr);
5924     if (Result.isInvalid()) return ExprError();
5925     CastExpr = Result.get();
5926   }
5927 
5928   if (getLangOpts().CPlusPlus && !castType->isVoidType() &&
5929       !getSourceManager().isInSystemMacro(LParenLoc))
5930     Diag(LParenLoc, diag::warn_old_style_cast) << CastExpr->getSourceRange();
5931 
5932   CheckTollFreeBridgeCast(castType, CastExpr);
5933 
5934   CheckObjCBridgeRelatedCast(castType, CastExpr);
5935 
5936   return BuildCStyleCastExpr(LParenLoc, castTInfo, RParenLoc, CastExpr);
5937 }
5938 
5939 ExprResult Sema::BuildVectorLiteral(SourceLocation LParenLoc,
5940                                     SourceLocation RParenLoc, Expr *E,
5941                                     TypeSourceInfo *TInfo) {
5942   assert((isa<ParenListExpr>(E) || isa<ParenExpr>(E)) &&
5943          "Expected paren or paren list expression");
5944 
5945   Expr **exprs;
5946   unsigned numExprs;
5947   Expr *subExpr;
5948   SourceLocation LiteralLParenLoc, LiteralRParenLoc;
5949   if (ParenListExpr *PE = dyn_cast<ParenListExpr>(E)) {
5950     LiteralLParenLoc = PE->getLParenLoc();
5951     LiteralRParenLoc = PE->getRParenLoc();
5952     exprs = PE->getExprs();
5953     numExprs = PE->getNumExprs();
5954   } else { // isa<ParenExpr> by assertion at function entrance
5955     LiteralLParenLoc = cast<ParenExpr>(E)->getLParen();
5956     LiteralRParenLoc = cast<ParenExpr>(E)->getRParen();
5957     subExpr = cast<ParenExpr>(E)->getSubExpr();
5958     exprs = &subExpr;
5959     numExprs = 1;
5960   }
5961 
5962   QualType Ty = TInfo->getType();
5963   assert(Ty->isVectorType() && "Expected vector type");
5964 
5965   SmallVector<Expr *, 8> initExprs;
5966   const VectorType *VTy = Ty->getAs<VectorType>();
5967   unsigned numElems = Ty->getAs<VectorType>()->getNumElements();
5968 
5969   // '(...)' form of vector initialization in AltiVec: the number of
5970   // initializers must be one or must match the size of the vector.
5971   // If a single value is specified in the initializer then it will be
5972   // replicated to all the components of the vector
5973   if (VTy->getVectorKind() == VectorType::AltiVecVector) {
5974     // The number of initializers must be one or must match the size of the
5975     // vector. If a single value is specified in the initializer then it will
5976     // be replicated to all the components of the vector
5977     if (numExprs == 1) {
5978       QualType ElemTy = Ty->getAs<VectorType>()->getElementType();
5979       ExprResult Literal = DefaultLvalueConversion(exprs[0]);
5980       if (Literal.isInvalid())
5981         return ExprError();
5982       Literal = ImpCastExprToType(Literal.get(), ElemTy,
5983                                   PrepareScalarCast(Literal, ElemTy));
5984       return BuildCStyleCastExpr(LParenLoc, TInfo, RParenLoc, Literal.get());
5985     }
5986     else if (numExprs < numElems) {
5987       Diag(E->getExprLoc(),
5988            diag::err_incorrect_number_of_vector_initializers);
5989       return ExprError();
5990     }
5991     else
5992       initExprs.append(exprs, exprs + numExprs);
5993   }
5994   else {
5995     // For OpenCL, when the number of initializers is a single value,
5996     // it will be replicated to all components of the vector.
5997     if (getLangOpts().OpenCL &&
5998         VTy->getVectorKind() == VectorType::GenericVector &&
5999         numExprs == 1) {
6000         QualType ElemTy = Ty->getAs<VectorType>()->getElementType();
6001         ExprResult Literal = DefaultLvalueConversion(exprs[0]);
6002         if (Literal.isInvalid())
6003           return ExprError();
6004         Literal = ImpCastExprToType(Literal.get(), ElemTy,
6005                                     PrepareScalarCast(Literal, ElemTy));
6006         return BuildCStyleCastExpr(LParenLoc, TInfo, RParenLoc, Literal.get());
6007     }
6008 
6009     initExprs.append(exprs, exprs + numExprs);
6010   }
6011   // FIXME: This means that pretty-printing the final AST will produce curly
6012   // braces instead of the original commas.
6013   InitListExpr *initE = new (Context) InitListExpr(Context, LiteralLParenLoc,
6014                                                    initExprs, LiteralRParenLoc);
6015   initE->setType(Ty);
6016   return BuildCompoundLiteralExpr(LParenLoc, TInfo, RParenLoc, initE);
6017 }
6018 
6019 /// This is not an AltiVec-style cast or or C++ direct-initialization, so turn
6020 /// the ParenListExpr into a sequence of comma binary operators.
6021 ExprResult
6022 Sema::MaybeConvertParenListExprToParenExpr(Scope *S, Expr *OrigExpr) {
6023   ParenListExpr *E = dyn_cast<ParenListExpr>(OrigExpr);
6024   if (!E)
6025     return OrigExpr;
6026 
6027   ExprResult Result(E->getExpr(0));
6028 
6029   for (unsigned i = 1, e = E->getNumExprs(); i != e && !Result.isInvalid(); ++i)
6030     Result = ActOnBinOp(S, E->getExprLoc(), tok::comma, Result.get(),
6031                         E->getExpr(i));
6032 
6033   if (Result.isInvalid()) return ExprError();
6034 
6035   return ActOnParenExpr(E->getLParenLoc(), E->getRParenLoc(), Result.get());
6036 }
6037 
6038 ExprResult Sema::ActOnParenListExpr(SourceLocation L,
6039                                     SourceLocation R,
6040                                     MultiExprArg Val) {
6041   Expr *expr = new (Context) ParenListExpr(Context, L, Val, R);
6042   return expr;
6043 }
6044 
6045 /// \brief Emit a specialized diagnostic when one expression is a null pointer
6046 /// constant and the other is not a pointer.  Returns true if a diagnostic is
6047 /// emitted.
6048 bool Sema::DiagnoseConditionalForNull(Expr *LHSExpr, Expr *RHSExpr,
6049                                       SourceLocation QuestionLoc) {
6050   Expr *NullExpr = LHSExpr;
6051   Expr *NonPointerExpr = RHSExpr;
6052   Expr::NullPointerConstantKind NullKind =
6053       NullExpr->isNullPointerConstant(Context,
6054                                       Expr::NPC_ValueDependentIsNotNull);
6055 
6056   if (NullKind == Expr::NPCK_NotNull) {
6057     NullExpr = RHSExpr;
6058     NonPointerExpr = LHSExpr;
6059     NullKind =
6060         NullExpr->isNullPointerConstant(Context,
6061                                         Expr::NPC_ValueDependentIsNotNull);
6062   }
6063 
6064   if (NullKind == Expr::NPCK_NotNull)
6065     return false;
6066 
6067   if (NullKind == Expr::NPCK_ZeroExpression)
6068     return false;
6069 
6070   if (NullKind == Expr::NPCK_ZeroLiteral) {
6071     // In this case, check to make sure that we got here from a "NULL"
6072     // string in the source code.
6073     NullExpr = NullExpr->IgnoreParenImpCasts();
6074     SourceLocation loc = NullExpr->getExprLoc();
6075     if (!findMacroSpelling(loc, "NULL"))
6076       return false;
6077   }
6078 
6079   int DiagType = (NullKind == Expr::NPCK_CXX11_nullptr);
6080   Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands_null)
6081       << NonPointerExpr->getType() << DiagType
6082       << NonPointerExpr->getSourceRange();
6083   return true;
6084 }
6085 
6086 /// \brief Return false if the condition expression is valid, true otherwise.
6087 static bool checkCondition(Sema &S, Expr *Cond, SourceLocation QuestionLoc) {
6088   QualType CondTy = Cond->getType();
6089 
6090   // OpenCL v1.1 s6.3.i says the condition cannot be a floating point type.
6091   if (S.getLangOpts().OpenCL && CondTy->isFloatingType()) {
6092     S.Diag(QuestionLoc, diag::err_typecheck_cond_expect_nonfloat)
6093       << CondTy << Cond->getSourceRange();
6094     return true;
6095   }
6096 
6097   // C99 6.5.15p2
6098   if (CondTy->isScalarType()) return false;
6099 
6100   S.Diag(QuestionLoc, diag::err_typecheck_cond_expect_scalar)
6101     << CondTy << Cond->getSourceRange();
6102   return true;
6103 }
6104 
6105 /// \brief Handle when one or both operands are void type.
6106 static QualType checkConditionalVoidType(Sema &S, ExprResult &LHS,
6107                                          ExprResult &RHS) {
6108     Expr *LHSExpr = LHS.get();
6109     Expr *RHSExpr = RHS.get();
6110 
6111     if (!LHSExpr->getType()->isVoidType())
6112       S.Diag(RHSExpr->getLocStart(), diag::ext_typecheck_cond_one_void)
6113         << RHSExpr->getSourceRange();
6114     if (!RHSExpr->getType()->isVoidType())
6115       S.Diag(LHSExpr->getLocStart(), diag::ext_typecheck_cond_one_void)
6116         << LHSExpr->getSourceRange();
6117     LHS = S.ImpCastExprToType(LHS.get(), S.Context.VoidTy, CK_ToVoid);
6118     RHS = S.ImpCastExprToType(RHS.get(), S.Context.VoidTy, CK_ToVoid);
6119     return S.Context.VoidTy;
6120 }
6121 
6122 /// \brief Return false if the NullExpr can be promoted to PointerTy,
6123 /// true otherwise.
6124 static bool checkConditionalNullPointer(Sema &S, ExprResult &NullExpr,
6125                                         QualType PointerTy) {
6126   if ((!PointerTy->isAnyPointerType() && !PointerTy->isBlockPointerType()) ||
6127       !NullExpr.get()->isNullPointerConstant(S.Context,
6128                                             Expr::NPC_ValueDependentIsNull))
6129     return true;
6130 
6131   NullExpr = S.ImpCastExprToType(NullExpr.get(), PointerTy, CK_NullToPointer);
6132   return false;
6133 }
6134 
6135 /// \brief Checks compatibility between two pointers and return the resulting
6136 /// type.
6137 static QualType checkConditionalPointerCompatibility(Sema &S, ExprResult &LHS,
6138                                                      ExprResult &RHS,
6139                                                      SourceLocation Loc) {
6140   QualType LHSTy = LHS.get()->getType();
6141   QualType RHSTy = RHS.get()->getType();
6142 
6143   if (S.Context.hasSameType(LHSTy, RHSTy)) {
6144     // Two identical pointers types are always compatible.
6145     return LHSTy;
6146   }
6147 
6148   QualType lhptee, rhptee;
6149 
6150   // Get the pointee types.
6151   bool IsBlockPointer = false;
6152   if (const BlockPointerType *LHSBTy = LHSTy->getAs<BlockPointerType>()) {
6153     lhptee = LHSBTy->getPointeeType();
6154     rhptee = RHSTy->castAs<BlockPointerType>()->getPointeeType();
6155     IsBlockPointer = true;
6156   } else {
6157     lhptee = LHSTy->castAs<PointerType>()->getPointeeType();
6158     rhptee = RHSTy->castAs<PointerType>()->getPointeeType();
6159   }
6160 
6161   // C99 6.5.15p6: If both operands are pointers to compatible types or to
6162   // differently qualified versions of compatible types, the result type is
6163   // a pointer to an appropriately qualified version of the composite
6164   // type.
6165 
6166   // Only CVR-qualifiers exist in the standard, and the differently-qualified
6167   // clause doesn't make sense for our extensions. E.g. address space 2 should
6168   // be incompatible with address space 3: they may live on different devices or
6169   // anything.
6170   Qualifiers lhQual = lhptee.getQualifiers();
6171   Qualifiers rhQual = rhptee.getQualifiers();
6172 
6173   unsigned MergedCVRQual = lhQual.getCVRQualifiers() | rhQual.getCVRQualifiers();
6174   lhQual.removeCVRQualifiers();
6175   rhQual.removeCVRQualifiers();
6176 
6177   lhptee = S.Context.getQualifiedType(lhptee.getUnqualifiedType(), lhQual);
6178   rhptee = S.Context.getQualifiedType(rhptee.getUnqualifiedType(), rhQual);
6179 
6180   QualType CompositeTy = S.Context.mergeTypes(lhptee, rhptee);
6181 
6182   if (CompositeTy.isNull()) {
6183     S.Diag(Loc, diag::ext_typecheck_cond_incompatible_pointers)
6184       << LHSTy << RHSTy << LHS.get()->getSourceRange()
6185       << RHS.get()->getSourceRange();
6186     // In this situation, we assume void* type. No especially good
6187     // reason, but this is what gcc does, and we do have to pick
6188     // to get a consistent AST.
6189     QualType incompatTy = S.Context.getPointerType(S.Context.VoidTy);
6190     LHS = S.ImpCastExprToType(LHS.get(), incompatTy, CK_BitCast);
6191     RHS = S.ImpCastExprToType(RHS.get(), incompatTy, CK_BitCast);
6192     return incompatTy;
6193   }
6194 
6195   // The pointer types are compatible.
6196   QualType ResultTy = CompositeTy.withCVRQualifiers(MergedCVRQual);
6197   if (IsBlockPointer)
6198     ResultTy = S.Context.getBlockPointerType(ResultTy);
6199   else
6200     ResultTy = S.Context.getPointerType(ResultTy);
6201 
6202   LHS = S.ImpCastExprToType(LHS.get(), ResultTy, CK_BitCast);
6203   RHS = S.ImpCastExprToType(RHS.get(), ResultTy, CK_BitCast);
6204   return ResultTy;
6205 }
6206 
6207 /// \brief Return the resulting type when the operands are both block pointers.
6208 static QualType checkConditionalBlockPointerCompatibility(Sema &S,
6209                                                           ExprResult &LHS,
6210                                                           ExprResult &RHS,
6211                                                           SourceLocation Loc) {
6212   QualType LHSTy = LHS.get()->getType();
6213   QualType RHSTy = RHS.get()->getType();
6214 
6215   if (!LHSTy->isBlockPointerType() || !RHSTy->isBlockPointerType()) {
6216     if (LHSTy->isVoidPointerType() || RHSTy->isVoidPointerType()) {
6217       QualType destType = S.Context.getPointerType(S.Context.VoidTy);
6218       LHS = S.ImpCastExprToType(LHS.get(), destType, CK_BitCast);
6219       RHS = S.ImpCastExprToType(RHS.get(), destType, CK_BitCast);
6220       return destType;
6221     }
6222     S.Diag(Loc, diag::err_typecheck_cond_incompatible_operands)
6223       << LHSTy << RHSTy << LHS.get()->getSourceRange()
6224       << RHS.get()->getSourceRange();
6225     return QualType();
6226   }
6227 
6228   // We have 2 block pointer types.
6229   return checkConditionalPointerCompatibility(S, LHS, RHS, Loc);
6230 }
6231 
6232 /// \brief Return the resulting type when the operands are both pointers.
6233 static QualType
6234 checkConditionalObjectPointersCompatibility(Sema &S, ExprResult &LHS,
6235                                             ExprResult &RHS,
6236                                             SourceLocation Loc) {
6237   // get the pointer types
6238   QualType LHSTy = LHS.get()->getType();
6239   QualType RHSTy = RHS.get()->getType();
6240 
6241   // get the "pointed to" types
6242   QualType lhptee = LHSTy->getAs<PointerType>()->getPointeeType();
6243   QualType rhptee = RHSTy->getAs<PointerType>()->getPointeeType();
6244 
6245   // ignore qualifiers on void (C99 6.5.15p3, clause 6)
6246   if (lhptee->isVoidType() && rhptee->isIncompleteOrObjectType()) {
6247     // Figure out necessary qualifiers (C99 6.5.15p6)
6248     QualType destPointee
6249       = S.Context.getQualifiedType(lhptee, rhptee.getQualifiers());
6250     QualType destType = S.Context.getPointerType(destPointee);
6251     // Add qualifiers if necessary.
6252     LHS = S.ImpCastExprToType(LHS.get(), destType, CK_NoOp);
6253     // Promote to void*.
6254     RHS = S.ImpCastExprToType(RHS.get(), destType, CK_BitCast);
6255     return destType;
6256   }
6257   if (rhptee->isVoidType() && lhptee->isIncompleteOrObjectType()) {
6258     QualType destPointee
6259       = S.Context.getQualifiedType(rhptee, lhptee.getQualifiers());
6260     QualType destType = S.Context.getPointerType(destPointee);
6261     // Add qualifiers if necessary.
6262     RHS = S.ImpCastExprToType(RHS.get(), destType, CK_NoOp);
6263     // Promote to void*.
6264     LHS = S.ImpCastExprToType(LHS.get(), destType, CK_BitCast);
6265     return destType;
6266   }
6267 
6268   return checkConditionalPointerCompatibility(S, LHS, RHS, Loc);
6269 }
6270 
6271 /// \brief Return false if the first expression is not an integer and the second
6272 /// expression is not a pointer, true otherwise.
6273 static bool checkPointerIntegerMismatch(Sema &S, ExprResult &Int,
6274                                         Expr* PointerExpr, SourceLocation Loc,
6275                                         bool IsIntFirstExpr) {
6276   if (!PointerExpr->getType()->isPointerType() ||
6277       !Int.get()->getType()->isIntegerType())
6278     return false;
6279 
6280   Expr *Expr1 = IsIntFirstExpr ? Int.get() : PointerExpr;
6281   Expr *Expr2 = IsIntFirstExpr ? PointerExpr : Int.get();
6282 
6283   S.Diag(Loc, diag::ext_typecheck_cond_pointer_integer_mismatch)
6284     << Expr1->getType() << Expr2->getType()
6285     << Expr1->getSourceRange() << Expr2->getSourceRange();
6286   Int = S.ImpCastExprToType(Int.get(), PointerExpr->getType(),
6287                             CK_IntegralToPointer);
6288   return true;
6289 }
6290 
6291 /// \brief Simple conversion between integer and floating point types.
6292 ///
6293 /// Used when handling the OpenCL conditional operator where the
6294 /// condition is a vector while the other operands are scalar.
6295 ///
6296 /// OpenCL v1.1 s6.3.i and s6.11.6 together require that the scalar
6297 /// types are either integer or floating type. Between the two
6298 /// operands, the type with the higher rank is defined as the "result
6299 /// type". The other operand needs to be promoted to the same type. No
6300 /// other type promotion is allowed. We cannot use
6301 /// UsualArithmeticConversions() for this purpose, since it always
6302 /// promotes promotable types.
6303 static QualType OpenCLArithmeticConversions(Sema &S, ExprResult &LHS,
6304                                             ExprResult &RHS,
6305                                             SourceLocation QuestionLoc) {
6306   LHS = S.DefaultFunctionArrayLvalueConversion(LHS.get());
6307   if (LHS.isInvalid())
6308     return QualType();
6309   RHS = S.DefaultFunctionArrayLvalueConversion(RHS.get());
6310   if (RHS.isInvalid())
6311     return QualType();
6312 
6313   // For conversion purposes, we ignore any qualifiers.
6314   // For example, "const float" and "float" are equivalent.
6315   QualType LHSType =
6316     S.Context.getCanonicalType(LHS.get()->getType()).getUnqualifiedType();
6317   QualType RHSType =
6318     S.Context.getCanonicalType(RHS.get()->getType()).getUnqualifiedType();
6319 
6320   if (!LHSType->isIntegerType() && !LHSType->isRealFloatingType()) {
6321     S.Diag(QuestionLoc, diag::err_typecheck_cond_expect_int_float)
6322       << LHSType << LHS.get()->getSourceRange();
6323     return QualType();
6324   }
6325 
6326   if (!RHSType->isIntegerType() && !RHSType->isRealFloatingType()) {
6327     S.Diag(QuestionLoc, diag::err_typecheck_cond_expect_int_float)
6328       << RHSType << RHS.get()->getSourceRange();
6329     return QualType();
6330   }
6331 
6332   // If both types are identical, no conversion is needed.
6333   if (LHSType == RHSType)
6334     return LHSType;
6335 
6336   // Now handle "real" floating types (i.e. float, double, long double).
6337   if (LHSType->isRealFloatingType() || RHSType->isRealFloatingType())
6338     return handleFloatConversion(S, LHS, RHS, LHSType, RHSType,
6339                                  /*IsCompAssign = */ false);
6340 
6341   // Finally, we have two differing integer types.
6342   return handleIntegerConversion<doIntegralCast, doIntegralCast>
6343   (S, LHS, RHS, LHSType, RHSType, /*IsCompAssign = */ false);
6344 }
6345 
6346 /// \brief Convert scalar operands to a vector that matches the
6347 ///        condition in length.
6348 ///
6349 /// Used when handling the OpenCL conditional operator where the
6350 /// condition is a vector while the other operands are scalar.
6351 ///
6352 /// We first compute the "result type" for the scalar operands
6353 /// according to OpenCL v1.1 s6.3.i. Both operands are then converted
6354 /// into a vector of that type where the length matches the condition
6355 /// vector type. s6.11.6 requires that the element types of the result
6356 /// and the condition must have the same number of bits.
6357 static QualType
6358 OpenCLConvertScalarsToVectors(Sema &S, ExprResult &LHS, ExprResult &RHS,
6359                               QualType CondTy, SourceLocation QuestionLoc) {
6360   QualType ResTy = OpenCLArithmeticConversions(S, LHS, RHS, QuestionLoc);
6361   if (ResTy.isNull()) return QualType();
6362 
6363   const VectorType *CV = CondTy->getAs<VectorType>();
6364   assert(CV);
6365 
6366   // Determine the vector result type
6367   unsigned NumElements = CV->getNumElements();
6368   QualType VectorTy = S.Context.getExtVectorType(ResTy, NumElements);
6369 
6370   // Ensure that all types have the same number of bits
6371   if (S.Context.getTypeSize(CV->getElementType())
6372       != S.Context.getTypeSize(ResTy)) {
6373     // Since VectorTy is created internally, it does not pretty print
6374     // with an OpenCL name. Instead, we just print a description.
6375     std::string EleTyName = ResTy.getUnqualifiedType().getAsString();
6376     SmallString<64> Str;
6377     llvm::raw_svector_ostream OS(Str);
6378     OS << "(vector of " << NumElements << " '" << EleTyName << "' values)";
6379     S.Diag(QuestionLoc, diag::err_conditional_vector_element_size)
6380       << CondTy << OS.str();
6381     return QualType();
6382   }
6383 
6384   // Convert operands to the vector result type
6385   LHS = S.ImpCastExprToType(LHS.get(), VectorTy, CK_VectorSplat);
6386   RHS = S.ImpCastExprToType(RHS.get(), VectorTy, CK_VectorSplat);
6387 
6388   return VectorTy;
6389 }
6390 
6391 /// \brief Return false if this is a valid OpenCL condition vector
6392 static bool checkOpenCLConditionVector(Sema &S, Expr *Cond,
6393                                        SourceLocation QuestionLoc) {
6394   // OpenCL v1.1 s6.11.6 says the elements of the vector must be of
6395   // integral type.
6396   const VectorType *CondTy = Cond->getType()->getAs<VectorType>();
6397   assert(CondTy);
6398   QualType EleTy = CondTy->getElementType();
6399   if (EleTy->isIntegerType()) return false;
6400 
6401   S.Diag(QuestionLoc, diag::err_typecheck_cond_expect_nonfloat)
6402     << Cond->getType() << Cond->getSourceRange();
6403   return true;
6404 }
6405 
6406 /// \brief Return false if the vector condition type and the vector
6407 ///        result type are compatible.
6408 ///
6409 /// OpenCL v1.1 s6.11.6 requires that both vector types have the same
6410 /// number of elements, and their element types have the same number
6411 /// of bits.
6412 static bool checkVectorResult(Sema &S, QualType CondTy, QualType VecResTy,
6413                               SourceLocation QuestionLoc) {
6414   const VectorType *CV = CondTy->getAs<VectorType>();
6415   const VectorType *RV = VecResTy->getAs<VectorType>();
6416   assert(CV && RV);
6417 
6418   if (CV->getNumElements() != RV->getNumElements()) {
6419     S.Diag(QuestionLoc, diag::err_conditional_vector_size)
6420       << CondTy << VecResTy;
6421     return true;
6422   }
6423 
6424   QualType CVE = CV->getElementType();
6425   QualType RVE = RV->getElementType();
6426 
6427   if (S.Context.getTypeSize(CVE) != S.Context.getTypeSize(RVE)) {
6428     S.Diag(QuestionLoc, diag::err_conditional_vector_element_size)
6429       << CondTy << VecResTy;
6430     return true;
6431   }
6432 
6433   return false;
6434 }
6435 
6436 /// \brief Return the resulting type for the conditional operator in
6437 ///        OpenCL (aka "ternary selection operator", OpenCL v1.1
6438 ///        s6.3.i) when the condition is a vector type.
6439 static QualType
6440 OpenCLCheckVectorConditional(Sema &S, ExprResult &Cond,
6441                              ExprResult &LHS, ExprResult &RHS,
6442                              SourceLocation QuestionLoc) {
6443   Cond = S.DefaultFunctionArrayLvalueConversion(Cond.get());
6444   if (Cond.isInvalid())
6445     return QualType();
6446   QualType CondTy = Cond.get()->getType();
6447 
6448   if (checkOpenCLConditionVector(S, Cond.get(), QuestionLoc))
6449     return QualType();
6450 
6451   // If either operand is a vector then find the vector type of the
6452   // result as specified in OpenCL v1.1 s6.3.i.
6453   if (LHS.get()->getType()->isVectorType() ||
6454       RHS.get()->getType()->isVectorType()) {
6455     QualType VecResTy = S.CheckVectorOperands(LHS, RHS, QuestionLoc,
6456                                               /*isCompAssign*/false,
6457                                               /*AllowBothBool*/true,
6458                                               /*AllowBoolConversions*/false);
6459     if (VecResTy.isNull()) return QualType();
6460     // The result type must match the condition type as specified in
6461     // OpenCL v1.1 s6.11.6.
6462     if (checkVectorResult(S, CondTy, VecResTy, QuestionLoc))
6463       return QualType();
6464     return VecResTy;
6465   }
6466 
6467   // Both operands are scalar.
6468   return OpenCLConvertScalarsToVectors(S, LHS, RHS, CondTy, QuestionLoc);
6469 }
6470 
6471 /// \brief Return true if the Expr is block type
6472 static bool checkBlockType(Sema &S, const Expr *E) {
6473   if (const CallExpr *CE = dyn_cast<CallExpr>(E)) {
6474     QualType Ty = CE->getCallee()->getType();
6475     if (Ty->isBlockPointerType()) {
6476       S.Diag(E->getExprLoc(), diag::err_opencl_ternary_with_block);
6477       return true;
6478     }
6479   }
6480   return false;
6481 }
6482 
6483 /// Note that LHS is not null here, even if this is the gnu "x ?: y" extension.
6484 /// In that case, LHS = cond.
6485 /// C99 6.5.15
6486 QualType Sema::CheckConditionalOperands(ExprResult &Cond, ExprResult &LHS,
6487                                         ExprResult &RHS, ExprValueKind &VK,
6488                                         ExprObjectKind &OK,
6489                                         SourceLocation QuestionLoc) {
6490 
6491   ExprResult LHSResult = CheckPlaceholderExpr(LHS.get());
6492   if (!LHSResult.isUsable()) return QualType();
6493   LHS = LHSResult;
6494 
6495   ExprResult RHSResult = CheckPlaceholderExpr(RHS.get());
6496   if (!RHSResult.isUsable()) return QualType();
6497   RHS = RHSResult;
6498 
6499   // C++ is sufficiently different to merit its own checker.
6500   if (getLangOpts().CPlusPlus)
6501     return CXXCheckConditionalOperands(Cond, LHS, RHS, VK, OK, QuestionLoc);
6502 
6503   VK = VK_RValue;
6504   OK = OK_Ordinary;
6505 
6506   // The OpenCL operator with a vector condition is sufficiently
6507   // different to merit its own checker.
6508   if (getLangOpts().OpenCL && Cond.get()->getType()->isVectorType())
6509     return OpenCLCheckVectorConditional(*this, Cond, LHS, RHS, QuestionLoc);
6510 
6511   // First, check the condition.
6512   Cond = UsualUnaryConversions(Cond.get());
6513   if (Cond.isInvalid())
6514     return QualType();
6515   if (checkCondition(*this, Cond.get(), QuestionLoc))
6516     return QualType();
6517 
6518   // Now check the two expressions.
6519   if (LHS.get()->getType()->isVectorType() ||
6520       RHS.get()->getType()->isVectorType())
6521     return CheckVectorOperands(LHS, RHS, QuestionLoc, /*isCompAssign*/false,
6522                                /*AllowBothBool*/true,
6523                                /*AllowBoolConversions*/false);
6524 
6525   QualType ResTy = UsualArithmeticConversions(LHS, RHS);
6526   if (LHS.isInvalid() || RHS.isInvalid())
6527     return QualType();
6528 
6529   QualType LHSTy = LHS.get()->getType();
6530   QualType RHSTy = RHS.get()->getType();
6531 
6532   // OpenCL v2.0 s6.12.5 - Blocks cannot be used as expressions of the ternary
6533   // selection operator (?:).
6534   if (getLangOpts().OpenCL &&
6535       (checkBlockType(*this, LHS.get()) | checkBlockType(*this, RHS.get()))) {
6536     return QualType();
6537   }
6538 
6539   // If both operands have arithmetic type, do the usual arithmetic conversions
6540   // to find a common type: C99 6.5.15p3,5.
6541   if (LHSTy->isArithmeticType() && RHSTy->isArithmeticType()) {
6542     LHS = ImpCastExprToType(LHS.get(), ResTy, PrepareScalarCast(LHS, ResTy));
6543     RHS = ImpCastExprToType(RHS.get(), ResTy, PrepareScalarCast(RHS, ResTy));
6544 
6545     return ResTy;
6546   }
6547 
6548   // If both operands are the same structure or union type, the result is that
6549   // type.
6550   if (const RecordType *LHSRT = LHSTy->getAs<RecordType>()) {    // C99 6.5.15p3
6551     if (const RecordType *RHSRT = RHSTy->getAs<RecordType>())
6552       if (LHSRT->getDecl() == RHSRT->getDecl())
6553         // "If both the operands have structure or union type, the result has
6554         // that type."  This implies that CV qualifiers are dropped.
6555         return LHSTy.getUnqualifiedType();
6556     // FIXME: Type of conditional expression must be complete in C mode.
6557   }
6558 
6559   // C99 6.5.15p5: "If both operands have void type, the result has void type."
6560   // The following || allows only one side to be void (a GCC-ism).
6561   if (LHSTy->isVoidType() || RHSTy->isVoidType()) {
6562     return checkConditionalVoidType(*this, LHS, RHS);
6563   }
6564 
6565   // C99 6.5.15p6 - "if one operand is a null pointer constant, the result has
6566   // the type of the other operand."
6567   if (!checkConditionalNullPointer(*this, RHS, LHSTy)) return LHSTy;
6568   if (!checkConditionalNullPointer(*this, LHS, RHSTy)) return RHSTy;
6569 
6570   // All objective-c pointer type analysis is done here.
6571   QualType compositeType = FindCompositeObjCPointerType(LHS, RHS,
6572                                                         QuestionLoc);
6573   if (LHS.isInvalid() || RHS.isInvalid())
6574     return QualType();
6575   if (!compositeType.isNull())
6576     return compositeType;
6577 
6578 
6579   // Handle block pointer types.
6580   if (LHSTy->isBlockPointerType() || RHSTy->isBlockPointerType())
6581     return checkConditionalBlockPointerCompatibility(*this, LHS, RHS,
6582                                                      QuestionLoc);
6583 
6584   // Check constraints for C object pointers types (C99 6.5.15p3,6).
6585   if (LHSTy->isPointerType() && RHSTy->isPointerType())
6586     return checkConditionalObjectPointersCompatibility(*this, LHS, RHS,
6587                                                        QuestionLoc);
6588 
6589   // GCC compatibility: soften pointer/integer mismatch.  Note that
6590   // null pointers have been filtered out by this point.
6591   if (checkPointerIntegerMismatch(*this, LHS, RHS.get(), QuestionLoc,
6592       /*isIntFirstExpr=*/true))
6593     return RHSTy;
6594   if (checkPointerIntegerMismatch(*this, RHS, LHS.get(), QuestionLoc,
6595       /*isIntFirstExpr=*/false))
6596     return LHSTy;
6597 
6598   // Emit a better diagnostic if one of the expressions is a null pointer
6599   // constant and the other is not a pointer type. In this case, the user most
6600   // likely forgot to take the address of the other expression.
6601   if (DiagnoseConditionalForNull(LHS.get(), RHS.get(), QuestionLoc))
6602     return QualType();
6603 
6604   // Otherwise, the operands are not compatible.
6605   Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands)
6606     << LHSTy << RHSTy << LHS.get()->getSourceRange()
6607     << RHS.get()->getSourceRange();
6608   return QualType();
6609 }
6610 
6611 /// FindCompositeObjCPointerType - Helper method to find composite type of
6612 /// two objective-c pointer types of the two input expressions.
6613 QualType Sema::FindCompositeObjCPointerType(ExprResult &LHS, ExprResult &RHS,
6614                                             SourceLocation QuestionLoc) {
6615   QualType LHSTy = LHS.get()->getType();
6616   QualType RHSTy = RHS.get()->getType();
6617 
6618   // Handle things like Class and struct objc_class*.  Here we case the result
6619   // to the pseudo-builtin, because that will be implicitly cast back to the
6620   // redefinition type if an attempt is made to access its fields.
6621   if (LHSTy->isObjCClassType() &&
6622       (Context.hasSameType(RHSTy, Context.getObjCClassRedefinitionType()))) {
6623     RHS = ImpCastExprToType(RHS.get(), LHSTy, CK_CPointerToObjCPointerCast);
6624     return LHSTy;
6625   }
6626   if (RHSTy->isObjCClassType() &&
6627       (Context.hasSameType(LHSTy, Context.getObjCClassRedefinitionType()))) {
6628     LHS = ImpCastExprToType(LHS.get(), RHSTy, CK_CPointerToObjCPointerCast);
6629     return RHSTy;
6630   }
6631   // And the same for struct objc_object* / id
6632   if (LHSTy->isObjCIdType() &&
6633       (Context.hasSameType(RHSTy, Context.getObjCIdRedefinitionType()))) {
6634     RHS = ImpCastExprToType(RHS.get(), LHSTy, CK_CPointerToObjCPointerCast);
6635     return LHSTy;
6636   }
6637   if (RHSTy->isObjCIdType() &&
6638       (Context.hasSameType(LHSTy, Context.getObjCIdRedefinitionType()))) {
6639     LHS = ImpCastExprToType(LHS.get(), RHSTy, CK_CPointerToObjCPointerCast);
6640     return RHSTy;
6641   }
6642   // And the same for struct objc_selector* / SEL
6643   if (Context.isObjCSelType(LHSTy) &&
6644       (Context.hasSameType(RHSTy, Context.getObjCSelRedefinitionType()))) {
6645     RHS = ImpCastExprToType(RHS.get(), LHSTy, CK_BitCast);
6646     return LHSTy;
6647   }
6648   if (Context.isObjCSelType(RHSTy) &&
6649       (Context.hasSameType(LHSTy, Context.getObjCSelRedefinitionType()))) {
6650     LHS = ImpCastExprToType(LHS.get(), RHSTy, CK_BitCast);
6651     return RHSTy;
6652   }
6653   // Check constraints for Objective-C object pointers types.
6654   if (LHSTy->isObjCObjectPointerType() && RHSTy->isObjCObjectPointerType()) {
6655 
6656     if (Context.getCanonicalType(LHSTy) == Context.getCanonicalType(RHSTy)) {
6657       // Two identical object pointer types are always compatible.
6658       return LHSTy;
6659     }
6660     const ObjCObjectPointerType *LHSOPT = LHSTy->castAs<ObjCObjectPointerType>();
6661     const ObjCObjectPointerType *RHSOPT = RHSTy->castAs<ObjCObjectPointerType>();
6662     QualType compositeType = LHSTy;
6663 
6664     // If both operands are interfaces and either operand can be
6665     // assigned to the other, use that type as the composite
6666     // type. This allows
6667     //   xxx ? (A*) a : (B*) b
6668     // where B is a subclass of A.
6669     //
6670     // Additionally, as for assignment, if either type is 'id'
6671     // allow silent coercion. Finally, if the types are
6672     // incompatible then make sure to use 'id' as the composite
6673     // type so the result is acceptable for sending messages to.
6674 
6675     // FIXME: Consider unifying with 'areComparableObjCPointerTypes'.
6676     // It could return the composite type.
6677     if (!(compositeType =
6678           Context.areCommonBaseCompatible(LHSOPT, RHSOPT)).isNull()) {
6679       // Nothing more to do.
6680     } else if (Context.canAssignObjCInterfaces(LHSOPT, RHSOPT)) {
6681       compositeType = RHSOPT->isObjCBuiltinType() ? RHSTy : LHSTy;
6682     } else if (Context.canAssignObjCInterfaces(RHSOPT, LHSOPT)) {
6683       compositeType = LHSOPT->isObjCBuiltinType() ? LHSTy : RHSTy;
6684     } else if ((LHSTy->isObjCQualifiedIdType() ||
6685                 RHSTy->isObjCQualifiedIdType()) &&
6686                Context.ObjCQualifiedIdTypesAreCompatible(LHSTy, RHSTy, true)) {
6687       // Need to handle "id<xx>" explicitly.
6688       // GCC allows qualified id and any Objective-C type to devolve to
6689       // id. Currently localizing to here until clear this should be
6690       // part of ObjCQualifiedIdTypesAreCompatible.
6691       compositeType = Context.getObjCIdType();
6692     } else if (LHSTy->isObjCIdType() || RHSTy->isObjCIdType()) {
6693       compositeType = Context.getObjCIdType();
6694     } else {
6695       Diag(QuestionLoc, diag::ext_typecheck_cond_incompatible_operands)
6696       << LHSTy << RHSTy
6697       << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
6698       QualType incompatTy = Context.getObjCIdType();
6699       LHS = ImpCastExprToType(LHS.get(), incompatTy, CK_BitCast);
6700       RHS = ImpCastExprToType(RHS.get(), incompatTy, CK_BitCast);
6701       return incompatTy;
6702     }
6703     // The object pointer types are compatible.
6704     LHS = ImpCastExprToType(LHS.get(), compositeType, CK_BitCast);
6705     RHS = ImpCastExprToType(RHS.get(), compositeType, CK_BitCast);
6706     return compositeType;
6707   }
6708   // Check Objective-C object pointer types and 'void *'
6709   if (LHSTy->isVoidPointerType() && RHSTy->isObjCObjectPointerType()) {
6710     if (getLangOpts().ObjCAutoRefCount) {
6711       // ARC forbids the implicit conversion of object pointers to 'void *',
6712       // so these types are not compatible.
6713       Diag(QuestionLoc, diag::err_cond_voidptr_arc) << LHSTy << RHSTy
6714           << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
6715       LHS = RHS = true;
6716       return QualType();
6717     }
6718     QualType lhptee = LHSTy->getAs<PointerType>()->getPointeeType();
6719     QualType rhptee = RHSTy->getAs<ObjCObjectPointerType>()->getPointeeType();
6720     QualType destPointee
6721     = Context.getQualifiedType(lhptee, rhptee.getQualifiers());
6722     QualType destType = Context.getPointerType(destPointee);
6723     // Add qualifiers if necessary.
6724     LHS = ImpCastExprToType(LHS.get(), destType, CK_NoOp);
6725     // Promote to void*.
6726     RHS = ImpCastExprToType(RHS.get(), destType, CK_BitCast);
6727     return destType;
6728   }
6729   if (LHSTy->isObjCObjectPointerType() && RHSTy->isVoidPointerType()) {
6730     if (getLangOpts().ObjCAutoRefCount) {
6731       // ARC forbids the implicit conversion of object pointers to 'void *',
6732       // so these types are not compatible.
6733       Diag(QuestionLoc, diag::err_cond_voidptr_arc) << LHSTy << RHSTy
6734           << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
6735       LHS = RHS = true;
6736       return QualType();
6737     }
6738     QualType lhptee = LHSTy->getAs<ObjCObjectPointerType>()->getPointeeType();
6739     QualType rhptee = RHSTy->getAs<PointerType>()->getPointeeType();
6740     QualType destPointee
6741     = Context.getQualifiedType(rhptee, lhptee.getQualifiers());
6742     QualType destType = Context.getPointerType(destPointee);
6743     // Add qualifiers if necessary.
6744     RHS = ImpCastExprToType(RHS.get(), destType, CK_NoOp);
6745     // Promote to void*.
6746     LHS = ImpCastExprToType(LHS.get(), destType, CK_BitCast);
6747     return destType;
6748   }
6749   return QualType();
6750 }
6751 
6752 /// SuggestParentheses - Emit a note with a fixit hint that wraps
6753 /// ParenRange in parentheses.
6754 static void SuggestParentheses(Sema &Self, SourceLocation Loc,
6755                                const PartialDiagnostic &Note,
6756                                SourceRange ParenRange) {
6757   SourceLocation EndLoc = Self.getLocForEndOfToken(ParenRange.getEnd());
6758   if (ParenRange.getBegin().isFileID() && ParenRange.getEnd().isFileID() &&
6759       EndLoc.isValid()) {
6760     Self.Diag(Loc, Note)
6761       << FixItHint::CreateInsertion(ParenRange.getBegin(), "(")
6762       << FixItHint::CreateInsertion(EndLoc, ")");
6763   } else {
6764     // We can't display the parentheses, so just show the bare note.
6765     Self.Diag(Loc, Note) << ParenRange;
6766   }
6767 }
6768 
6769 static bool IsArithmeticOp(BinaryOperatorKind Opc) {
6770   return BinaryOperator::isAdditiveOp(Opc) ||
6771          BinaryOperator::isMultiplicativeOp(Opc) ||
6772          BinaryOperator::isShiftOp(Opc);
6773 }
6774 
6775 /// IsArithmeticBinaryExpr - Returns true if E is an arithmetic binary
6776 /// expression, either using a built-in or overloaded operator,
6777 /// and sets *OpCode to the opcode and *RHSExprs to the right-hand side
6778 /// expression.
6779 static bool IsArithmeticBinaryExpr(Expr *E, BinaryOperatorKind *Opcode,
6780                                    Expr **RHSExprs) {
6781   // Don't strip parenthesis: we should not warn if E is in parenthesis.
6782   E = E->IgnoreImpCasts();
6783   E = E->IgnoreConversionOperator();
6784   E = E->IgnoreImpCasts();
6785 
6786   // Built-in binary operator.
6787   if (BinaryOperator *OP = dyn_cast<BinaryOperator>(E)) {
6788     if (IsArithmeticOp(OP->getOpcode())) {
6789       *Opcode = OP->getOpcode();
6790       *RHSExprs = OP->getRHS();
6791       return true;
6792     }
6793   }
6794 
6795   // Overloaded operator.
6796   if (CXXOperatorCallExpr *Call = dyn_cast<CXXOperatorCallExpr>(E)) {
6797     if (Call->getNumArgs() != 2)
6798       return false;
6799 
6800     // Make sure this is really a binary operator that is safe to pass into
6801     // BinaryOperator::getOverloadedOpcode(), e.g. it's not a subscript op.
6802     OverloadedOperatorKind OO = Call->getOperator();
6803     if (OO < OO_Plus || OO > OO_Arrow ||
6804         OO == OO_PlusPlus || OO == OO_MinusMinus)
6805       return false;
6806 
6807     BinaryOperatorKind OpKind = BinaryOperator::getOverloadedOpcode(OO);
6808     if (IsArithmeticOp(OpKind)) {
6809       *Opcode = OpKind;
6810       *RHSExprs = Call->getArg(1);
6811       return true;
6812     }
6813   }
6814 
6815   return false;
6816 }
6817 
6818 /// ExprLooksBoolean - Returns true if E looks boolean, i.e. it has boolean type
6819 /// or is a logical expression such as (x==y) which has int type, but is
6820 /// commonly interpreted as boolean.
6821 static bool ExprLooksBoolean(Expr *E) {
6822   E = E->IgnoreParenImpCasts();
6823 
6824   if (E->getType()->isBooleanType())
6825     return true;
6826   if (BinaryOperator *OP = dyn_cast<BinaryOperator>(E))
6827     return OP->isComparisonOp() || OP->isLogicalOp();
6828   if (UnaryOperator *OP = dyn_cast<UnaryOperator>(E))
6829     return OP->getOpcode() == UO_LNot;
6830   if (E->getType()->isPointerType())
6831     return true;
6832 
6833   return false;
6834 }
6835 
6836 /// DiagnoseConditionalPrecedence - Emit a warning when a conditional operator
6837 /// and binary operator are mixed in a way that suggests the programmer assumed
6838 /// the conditional operator has higher precedence, for example:
6839 /// "int x = a + someBinaryCondition ? 1 : 2".
6840 static void DiagnoseConditionalPrecedence(Sema &Self,
6841                                           SourceLocation OpLoc,
6842                                           Expr *Condition,
6843                                           Expr *LHSExpr,
6844                                           Expr *RHSExpr) {
6845   BinaryOperatorKind CondOpcode;
6846   Expr *CondRHS;
6847 
6848   if (!IsArithmeticBinaryExpr(Condition, &CondOpcode, &CondRHS))
6849     return;
6850   if (!ExprLooksBoolean(CondRHS))
6851     return;
6852 
6853   // The condition is an arithmetic binary expression, with a right-
6854   // hand side that looks boolean, so warn.
6855 
6856   Self.Diag(OpLoc, diag::warn_precedence_conditional)
6857       << Condition->getSourceRange()
6858       << BinaryOperator::getOpcodeStr(CondOpcode);
6859 
6860   SuggestParentheses(Self, OpLoc,
6861     Self.PDiag(diag::note_precedence_silence)
6862       << BinaryOperator::getOpcodeStr(CondOpcode),
6863     SourceRange(Condition->getLocStart(), Condition->getLocEnd()));
6864 
6865   SuggestParentheses(Self, OpLoc,
6866     Self.PDiag(diag::note_precedence_conditional_first),
6867     SourceRange(CondRHS->getLocStart(), RHSExpr->getLocEnd()));
6868 }
6869 
6870 /// ActOnConditionalOp - Parse a ?: operation.  Note that 'LHS' may be null
6871 /// in the case of a the GNU conditional expr extension.
6872 ExprResult Sema::ActOnConditionalOp(SourceLocation QuestionLoc,
6873                                     SourceLocation ColonLoc,
6874                                     Expr *CondExpr, Expr *LHSExpr,
6875                                     Expr *RHSExpr) {
6876   if (!getLangOpts().CPlusPlus) {
6877     // C cannot handle TypoExpr nodes in the condition because it
6878     // doesn't handle dependent types properly, so make sure any TypoExprs have
6879     // been dealt with before checking the operands.
6880     ExprResult CondResult = CorrectDelayedTyposInExpr(CondExpr);
6881     ExprResult LHSResult = CorrectDelayedTyposInExpr(LHSExpr);
6882     ExprResult RHSResult = CorrectDelayedTyposInExpr(RHSExpr);
6883 
6884     if (!CondResult.isUsable())
6885       return ExprError();
6886 
6887     if (LHSExpr) {
6888       if (!LHSResult.isUsable())
6889         return ExprError();
6890     }
6891 
6892     if (!RHSResult.isUsable())
6893       return ExprError();
6894 
6895     CondExpr = CondResult.get();
6896     LHSExpr = LHSResult.get();
6897     RHSExpr = RHSResult.get();
6898   }
6899 
6900   // If this is the gnu "x ?: y" extension, analyze the types as though the LHS
6901   // was the condition.
6902   OpaqueValueExpr *opaqueValue = nullptr;
6903   Expr *commonExpr = nullptr;
6904   if (!LHSExpr) {
6905     commonExpr = CondExpr;
6906     // Lower out placeholder types first.  This is important so that we don't
6907     // try to capture a placeholder. This happens in few cases in C++; such
6908     // as Objective-C++'s dictionary subscripting syntax.
6909     if (commonExpr->hasPlaceholderType()) {
6910       ExprResult result = CheckPlaceholderExpr(commonExpr);
6911       if (!result.isUsable()) return ExprError();
6912       commonExpr = result.get();
6913     }
6914     // We usually want to apply unary conversions *before* saving, except
6915     // in the special case of a C++ l-value conditional.
6916     if (!(getLangOpts().CPlusPlus
6917           && !commonExpr->isTypeDependent()
6918           && commonExpr->getValueKind() == RHSExpr->getValueKind()
6919           && commonExpr->isGLValue()
6920           && commonExpr->isOrdinaryOrBitFieldObject()
6921           && RHSExpr->isOrdinaryOrBitFieldObject()
6922           && Context.hasSameType(commonExpr->getType(), RHSExpr->getType()))) {
6923       ExprResult commonRes = UsualUnaryConversions(commonExpr);
6924       if (commonRes.isInvalid())
6925         return ExprError();
6926       commonExpr = commonRes.get();
6927     }
6928 
6929     opaqueValue = new (Context) OpaqueValueExpr(commonExpr->getExprLoc(),
6930                                                 commonExpr->getType(),
6931                                                 commonExpr->getValueKind(),
6932                                                 commonExpr->getObjectKind(),
6933                                                 commonExpr);
6934     LHSExpr = CondExpr = opaqueValue;
6935   }
6936 
6937   ExprValueKind VK = VK_RValue;
6938   ExprObjectKind OK = OK_Ordinary;
6939   ExprResult Cond = CondExpr, LHS = LHSExpr, RHS = RHSExpr;
6940   QualType result = CheckConditionalOperands(Cond, LHS, RHS,
6941                                              VK, OK, QuestionLoc);
6942   if (result.isNull() || Cond.isInvalid() || LHS.isInvalid() ||
6943       RHS.isInvalid())
6944     return ExprError();
6945 
6946   DiagnoseConditionalPrecedence(*this, QuestionLoc, Cond.get(), LHS.get(),
6947                                 RHS.get());
6948 
6949   CheckBoolLikeConversion(Cond.get(), QuestionLoc);
6950 
6951   if (!commonExpr)
6952     return new (Context)
6953         ConditionalOperator(Cond.get(), QuestionLoc, LHS.get(), ColonLoc,
6954                             RHS.get(), result, VK, OK);
6955 
6956   return new (Context) BinaryConditionalOperator(
6957       commonExpr, opaqueValue, Cond.get(), LHS.get(), RHS.get(), QuestionLoc,
6958       ColonLoc, result, VK, OK);
6959 }
6960 
6961 // checkPointerTypesForAssignment - This is a very tricky routine (despite
6962 // being closely modeled after the C99 spec:-). The odd characteristic of this
6963 // routine is it effectively iqnores the qualifiers on the top level pointee.
6964 // This circumvents the usual type rules specified in 6.2.7p1 & 6.7.5.[1-3].
6965 // FIXME: add a couple examples in this comment.
6966 static Sema::AssignConvertType
6967 checkPointerTypesForAssignment(Sema &S, QualType LHSType, QualType RHSType) {
6968   assert(LHSType.isCanonical() && "LHS not canonicalized!");
6969   assert(RHSType.isCanonical() && "RHS not canonicalized!");
6970 
6971   // get the "pointed to" type (ignoring qualifiers at the top level)
6972   const Type *lhptee, *rhptee;
6973   Qualifiers lhq, rhq;
6974   std::tie(lhptee, lhq) =
6975       cast<PointerType>(LHSType)->getPointeeType().split().asPair();
6976   std::tie(rhptee, rhq) =
6977       cast<PointerType>(RHSType)->getPointeeType().split().asPair();
6978 
6979   Sema::AssignConvertType ConvTy = Sema::Compatible;
6980 
6981   // C99 6.5.16.1p1: This following citation is common to constraints
6982   // 3 & 4 (below). ...and the type *pointed to* by the left has all the
6983   // qualifiers of the type *pointed to* by the right;
6984 
6985   // As a special case, 'non-__weak A *' -> 'non-__weak const *' is okay.
6986   if (lhq.getObjCLifetime() != rhq.getObjCLifetime() &&
6987       lhq.compatiblyIncludesObjCLifetime(rhq)) {
6988     // Ignore lifetime for further calculation.
6989     lhq.removeObjCLifetime();
6990     rhq.removeObjCLifetime();
6991   }
6992 
6993   if (!lhq.compatiblyIncludes(rhq)) {
6994     // Treat address-space mismatches as fatal.  TODO: address subspaces
6995     if (!lhq.isAddressSpaceSupersetOf(rhq))
6996       ConvTy = Sema::IncompatiblePointerDiscardsQualifiers;
6997 
6998     // It's okay to add or remove GC or lifetime qualifiers when converting to
6999     // and from void*.
7000     else if (lhq.withoutObjCGCAttr().withoutObjCLifetime()
7001                         .compatiblyIncludes(
7002                                 rhq.withoutObjCGCAttr().withoutObjCLifetime())
7003              && (lhptee->isVoidType() || rhptee->isVoidType()))
7004       ; // keep old
7005 
7006     // Treat lifetime mismatches as fatal.
7007     else if (lhq.getObjCLifetime() != rhq.getObjCLifetime())
7008       ConvTy = Sema::IncompatiblePointerDiscardsQualifiers;
7009 
7010     // For GCC compatibility, other qualifier mismatches are treated
7011     // as still compatible in C.
7012     else ConvTy = Sema::CompatiblePointerDiscardsQualifiers;
7013   }
7014 
7015   // C99 6.5.16.1p1 (constraint 4): If one operand is a pointer to an object or
7016   // incomplete type and the other is a pointer to a qualified or unqualified
7017   // version of void...
7018   if (lhptee->isVoidType()) {
7019     if (rhptee->isIncompleteOrObjectType())
7020       return ConvTy;
7021 
7022     // As an extension, we allow cast to/from void* to function pointer.
7023     assert(rhptee->isFunctionType());
7024     return Sema::FunctionVoidPointer;
7025   }
7026 
7027   if (rhptee->isVoidType()) {
7028     if (lhptee->isIncompleteOrObjectType())
7029       return ConvTy;
7030 
7031     // As an extension, we allow cast to/from void* to function pointer.
7032     assert(lhptee->isFunctionType());
7033     return Sema::FunctionVoidPointer;
7034   }
7035 
7036   // C99 6.5.16.1p1 (constraint 3): both operands are pointers to qualified or
7037   // unqualified versions of compatible types, ...
7038   QualType ltrans = QualType(lhptee, 0), rtrans = QualType(rhptee, 0);
7039   if (!S.Context.typesAreCompatible(ltrans, rtrans)) {
7040     // Check if the pointee types are compatible ignoring the sign.
7041     // We explicitly check for char so that we catch "char" vs
7042     // "unsigned char" on systems where "char" is unsigned.
7043     if (lhptee->isCharType())
7044       ltrans = S.Context.UnsignedCharTy;
7045     else if (lhptee->hasSignedIntegerRepresentation())
7046       ltrans = S.Context.getCorrespondingUnsignedType(ltrans);
7047 
7048     if (rhptee->isCharType())
7049       rtrans = S.Context.UnsignedCharTy;
7050     else if (rhptee->hasSignedIntegerRepresentation())
7051       rtrans = S.Context.getCorrespondingUnsignedType(rtrans);
7052 
7053     if (ltrans == rtrans) {
7054       // Types are compatible ignoring the sign. Qualifier incompatibility
7055       // takes priority over sign incompatibility because the sign
7056       // warning can be disabled.
7057       if (ConvTy != Sema::Compatible)
7058         return ConvTy;
7059 
7060       return Sema::IncompatiblePointerSign;
7061     }
7062 
7063     // If we are a multi-level pointer, it's possible that our issue is simply
7064     // one of qualification - e.g. char ** -> const char ** is not allowed. If
7065     // the eventual target type is the same and the pointers have the same
7066     // level of indirection, this must be the issue.
7067     if (isa<PointerType>(lhptee) && isa<PointerType>(rhptee)) {
7068       do {
7069         lhptee = cast<PointerType>(lhptee)->getPointeeType().getTypePtr();
7070         rhptee = cast<PointerType>(rhptee)->getPointeeType().getTypePtr();
7071       } while (isa<PointerType>(lhptee) && isa<PointerType>(rhptee));
7072 
7073       if (lhptee == rhptee)
7074         return Sema::IncompatibleNestedPointerQualifiers;
7075     }
7076 
7077     // General pointer incompatibility takes priority over qualifiers.
7078     return Sema::IncompatiblePointer;
7079   }
7080   if (!S.getLangOpts().CPlusPlus &&
7081       S.IsNoReturnConversion(ltrans, rtrans, ltrans))
7082     return Sema::IncompatiblePointer;
7083   return ConvTy;
7084 }
7085 
7086 /// checkBlockPointerTypesForAssignment - This routine determines whether two
7087 /// block pointer types are compatible or whether a block and normal pointer
7088 /// are compatible. It is more restrict than comparing two function pointer
7089 // types.
7090 static Sema::AssignConvertType
7091 checkBlockPointerTypesForAssignment(Sema &S, QualType LHSType,
7092                                     QualType RHSType) {
7093   assert(LHSType.isCanonical() && "LHS not canonicalized!");
7094   assert(RHSType.isCanonical() && "RHS not canonicalized!");
7095 
7096   QualType lhptee, rhptee;
7097 
7098   // get the "pointed to" type (ignoring qualifiers at the top level)
7099   lhptee = cast<BlockPointerType>(LHSType)->getPointeeType();
7100   rhptee = cast<BlockPointerType>(RHSType)->getPointeeType();
7101 
7102   // In C++, the types have to match exactly.
7103   if (S.getLangOpts().CPlusPlus)
7104     return Sema::IncompatibleBlockPointer;
7105 
7106   Sema::AssignConvertType ConvTy = Sema::Compatible;
7107 
7108   // For blocks we enforce that qualifiers are identical.
7109   if (lhptee.getLocalQualifiers() != rhptee.getLocalQualifiers())
7110     ConvTy = Sema::CompatiblePointerDiscardsQualifiers;
7111 
7112   if (!S.Context.typesAreBlockPointerCompatible(LHSType, RHSType))
7113     return Sema::IncompatibleBlockPointer;
7114 
7115   return ConvTy;
7116 }
7117 
7118 /// checkObjCPointerTypesForAssignment - Compares two objective-c pointer types
7119 /// for assignment compatibility.
7120 static Sema::AssignConvertType
7121 checkObjCPointerTypesForAssignment(Sema &S, QualType LHSType,
7122                                    QualType RHSType) {
7123   assert(LHSType.isCanonical() && "LHS was not canonicalized!");
7124   assert(RHSType.isCanonical() && "RHS was not canonicalized!");
7125 
7126   if (LHSType->isObjCBuiltinType()) {
7127     // Class is not compatible with ObjC object pointers.
7128     if (LHSType->isObjCClassType() && !RHSType->isObjCBuiltinType() &&
7129         !RHSType->isObjCQualifiedClassType())
7130       return Sema::IncompatiblePointer;
7131     return Sema::Compatible;
7132   }
7133   if (RHSType->isObjCBuiltinType()) {
7134     if (RHSType->isObjCClassType() && !LHSType->isObjCBuiltinType() &&
7135         !LHSType->isObjCQualifiedClassType())
7136       return Sema::IncompatiblePointer;
7137     return Sema::Compatible;
7138   }
7139   QualType lhptee = LHSType->getAs<ObjCObjectPointerType>()->getPointeeType();
7140   QualType rhptee = RHSType->getAs<ObjCObjectPointerType>()->getPointeeType();
7141 
7142   if (!lhptee.isAtLeastAsQualifiedAs(rhptee) &&
7143       // make an exception for id<P>
7144       !LHSType->isObjCQualifiedIdType())
7145     return Sema::CompatiblePointerDiscardsQualifiers;
7146 
7147   if (S.Context.typesAreCompatible(LHSType, RHSType))
7148     return Sema::Compatible;
7149   if (LHSType->isObjCQualifiedIdType() || RHSType->isObjCQualifiedIdType())
7150     return Sema::IncompatibleObjCQualifiedId;
7151   return Sema::IncompatiblePointer;
7152 }
7153 
7154 Sema::AssignConvertType
7155 Sema::CheckAssignmentConstraints(SourceLocation Loc,
7156                                  QualType LHSType, QualType RHSType) {
7157   // Fake up an opaque expression.  We don't actually care about what
7158   // cast operations are required, so if CheckAssignmentConstraints
7159   // adds casts to this they'll be wasted, but fortunately that doesn't
7160   // usually happen on valid code.
7161   OpaqueValueExpr RHSExpr(Loc, RHSType, VK_RValue);
7162   ExprResult RHSPtr = &RHSExpr;
7163   CastKind K = CK_Invalid;
7164 
7165   return CheckAssignmentConstraints(LHSType, RHSPtr, K, /*ConvertRHS=*/false);
7166 }
7167 
7168 /// CheckAssignmentConstraints (C99 6.5.16) - This routine currently
7169 /// has code to accommodate several GCC extensions when type checking
7170 /// pointers. Here are some objectionable examples that GCC considers warnings:
7171 ///
7172 ///  int a, *pint;
7173 ///  short *pshort;
7174 ///  struct foo *pfoo;
7175 ///
7176 ///  pint = pshort; // warning: assignment from incompatible pointer type
7177 ///  a = pint; // warning: assignment makes integer from pointer without a cast
7178 ///  pint = a; // warning: assignment makes pointer from integer without a cast
7179 ///  pint = pfoo; // warning: assignment from incompatible pointer type
7180 ///
7181 /// As a result, the code for dealing with pointers is more complex than the
7182 /// C99 spec dictates.
7183 ///
7184 /// Sets 'Kind' for any result kind except Incompatible.
7185 Sema::AssignConvertType
7186 Sema::CheckAssignmentConstraints(QualType LHSType, ExprResult &RHS,
7187                                  CastKind &Kind, bool ConvertRHS) {
7188   QualType RHSType = RHS.get()->getType();
7189   QualType OrigLHSType = LHSType;
7190 
7191   // Get canonical types.  We're not formatting these types, just comparing
7192   // them.
7193   LHSType = Context.getCanonicalType(LHSType).getUnqualifiedType();
7194   RHSType = Context.getCanonicalType(RHSType).getUnqualifiedType();
7195 
7196   // Common case: no conversion required.
7197   if (LHSType == RHSType) {
7198     Kind = CK_NoOp;
7199     return Compatible;
7200   }
7201 
7202   // If we have an atomic type, try a non-atomic assignment, then just add an
7203   // atomic qualification step.
7204   if (const AtomicType *AtomicTy = dyn_cast<AtomicType>(LHSType)) {
7205     Sema::AssignConvertType result =
7206       CheckAssignmentConstraints(AtomicTy->getValueType(), RHS, Kind);
7207     if (result != Compatible)
7208       return result;
7209     if (Kind != CK_NoOp && ConvertRHS)
7210       RHS = ImpCastExprToType(RHS.get(), AtomicTy->getValueType(), Kind);
7211     Kind = CK_NonAtomicToAtomic;
7212     return Compatible;
7213   }
7214 
7215   // If the left-hand side is a reference type, then we are in a
7216   // (rare!) case where we've allowed the use of references in C,
7217   // e.g., as a parameter type in a built-in function. In this case,
7218   // just make sure that the type referenced is compatible with the
7219   // right-hand side type. The caller is responsible for adjusting
7220   // LHSType so that the resulting expression does not have reference
7221   // type.
7222   if (const ReferenceType *LHSTypeRef = LHSType->getAs<ReferenceType>()) {
7223     if (Context.typesAreCompatible(LHSTypeRef->getPointeeType(), RHSType)) {
7224       Kind = CK_LValueBitCast;
7225       return Compatible;
7226     }
7227     return Incompatible;
7228   }
7229 
7230   // Allow scalar to ExtVector assignments, and assignments of an ExtVector type
7231   // to the same ExtVector type.
7232   if (LHSType->isExtVectorType()) {
7233     if (RHSType->isExtVectorType())
7234       return Incompatible;
7235     if (RHSType->isArithmeticType()) {
7236       // CK_VectorSplat does T -> vector T, so first cast to the element type.
7237       if (ConvertRHS)
7238         RHS = prepareVectorSplat(LHSType, RHS.get());
7239       Kind = CK_VectorSplat;
7240       return Compatible;
7241     }
7242   }
7243 
7244   // Conversions to or from vector type.
7245   if (LHSType->isVectorType() || RHSType->isVectorType()) {
7246     if (LHSType->isVectorType() && RHSType->isVectorType()) {
7247       // Allow assignments of an AltiVec vector type to an equivalent GCC
7248       // vector type and vice versa
7249       if (Context.areCompatibleVectorTypes(LHSType, RHSType)) {
7250         Kind = CK_BitCast;
7251         return Compatible;
7252       }
7253 
7254       // If we are allowing lax vector conversions, and LHS and RHS are both
7255       // vectors, the total size only needs to be the same. This is a bitcast;
7256       // no bits are changed but the result type is different.
7257       if (isLaxVectorConversion(RHSType, LHSType)) {
7258         Kind = CK_BitCast;
7259         return IncompatibleVectors;
7260       }
7261     }
7262     return Incompatible;
7263   }
7264 
7265   // Arithmetic conversions.
7266   if (LHSType->isArithmeticType() && RHSType->isArithmeticType() &&
7267       !(getLangOpts().CPlusPlus && LHSType->isEnumeralType())) {
7268     if (ConvertRHS)
7269       Kind = PrepareScalarCast(RHS, LHSType);
7270     return Compatible;
7271   }
7272 
7273   // Conversions to normal pointers.
7274   if (const PointerType *LHSPointer = dyn_cast<PointerType>(LHSType)) {
7275     // U* -> T*
7276     if (isa<PointerType>(RHSType)) {
7277       unsigned AddrSpaceL = LHSPointer->getPointeeType().getAddressSpace();
7278       unsigned AddrSpaceR = RHSType->getPointeeType().getAddressSpace();
7279       Kind = AddrSpaceL != AddrSpaceR ? CK_AddressSpaceConversion : CK_BitCast;
7280       return checkPointerTypesForAssignment(*this, LHSType, RHSType);
7281     }
7282 
7283     // int -> T*
7284     if (RHSType->isIntegerType()) {
7285       Kind = CK_IntegralToPointer; // FIXME: null?
7286       return IntToPointer;
7287     }
7288 
7289     // C pointers are not compatible with ObjC object pointers,
7290     // with two exceptions:
7291     if (isa<ObjCObjectPointerType>(RHSType)) {
7292       //  - conversions to void*
7293       if (LHSPointer->getPointeeType()->isVoidType()) {
7294         Kind = CK_BitCast;
7295         return Compatible;
7296       }
7297 
7298       //  - conversions from 'Class' to the redefinition type
7299       if (RHSType->isObjCClassType() &&
7300           Context.hasSameType(LHSType,
7301                               Context.getObjCClassRedefinitionType())) {
7302         Kind = CK_BitCast;
7303         return Compatible;
7304       }
7305 
7306       Kind = CK_BitCast;
7307       return IncompatiblePointer;
7308     }
7309 
7310     // U^ -> void*
7311     if (RHSType->getAs<BlockPointerType>()) {
7312       if (LHSPointer->getPointeeType()->isVoidType()) {
7313         Kind = CK_BitCast;
7314         return Compatible;
7315       }
7316     }
7317 
7318     return Incompatible;
7319   }
7320 
7321   // Conversions to block pointers.
7322   if (isa<BlockPointerType>(LHSType)) {
7323     // U^ -> T^
7324     if (RHSType->isBlockPointerType()) {
7325       Kind = CK_BitCast;
7326       return checkBlockPointerTypesForAssignment(*this, LHSType, RHSType);
7327     }
7328 
7329     // int or null -> T^
7330     if (RHSType->isIntegerType()) {
7331       Kind = CK_IntegralToPointer; // FIXME: null
7332       return IntToBlockPointer;
7333     }
7334 
7335     // id -> T^
7336     if (getLangOpts().ObjC1 && RHSType->isObjCIdType()) {
7337       Kind = CK_AnyPointerToBlockPointerCast;
7338       return Compatible;
7339     }
7340 
7341     // void* -> T^
7342     if (const PointerType *RHSPT = RHSType->getAs<PointerType>())
7343       if (RHSPT->getPointeeType()->isVoidType()) {
7344         Kind = CK_AnyPointerToBlockPointerCast;
7345         return Compatible;
7346       }
7347 
7348     return Incompatible;
7349   }
7350 
7351   // Conversions to Objective-C pointers.
7352   if (isa<ObjCObjectPointerType>(LHSType)) {
7353     // A* -> B*
7354     if (RHSType->isObjCObjectPointerType()) {
7355       Kind = CK_BitCast;
7356       Sema::AssignConvertType result =
7357         checkObjCPointerTypesForAssignment(*this, LHSType, RHSType);
7358       if (getLangOpts().ObjCAutoRefCount &&
7359           result == Compatible &&
7360           !CheckObjCARCUnavailableWeakConversion(OrigLHSType, RHSType))
7361         result = IncompatibleObjCWeakRef;
7362       return result;
7363     }
7364 
7365     // int or null -> A*
7366     if (RHSType->isIntegerType()) {
7367       Kind = CK_IntegralToPointer; // FIXME: null
7368       return IntToPointer;
7369     }
7370 
7371     // In general, C pointers are not compatible with ObjC object pointers,
7372     // with two exceptions:
7373     if (isa<PointerType>(RHSType)) {
7374       Kind = CK_CPointerToObjCPointerCast;
7375 
7376       //  - conversions from 'void*'
7377       if (RHSType->isVoidPointerType()) {
7378         return Compatible;
7379       }
7380 
7381       //  - conversions to 'Class' from its redefinition type
7382       if (LHSType->isObjCClassType() &&
7383           Context.hasSameType(RHSType,
7384                               Context.getObjCClassRedefinitionType())) {
7385         return Compatible;
7386       }
7387 
7388       return IncompatiblePointer;
7389     }
7390 
7391     // Only under strict condition T^ is compatible with an Objective-C pointer.
7392     if (RHSType->isBlockPointerType() &&
7393         LHSType->isBlockCompatibleObjCPointerType(Context)) {
7394       if (ConvertRHS)
7395         maybeExtendBlockObject(RHS);
7396       Kind = CK_BlockPointerToObjCPointerCast;
7397       return Compatible;
7398     }
7399 
7400     return Incompatible;
7401   }
7402 
7403   // Conversions from pointers that are not covered by the above.
7404   if (isa<PointerType>(RHSType)) {
7405     // T* -> _Bool
7406     if (LHSType == Context.BoolTy) {
7407       Kind = CK_PointerToBoolean;
7408       return Compatible;
7409     }
7410 
7411     // T* -> int
7412     if (LHSType->isIntegerType()) {
7413       Kind = CK_PointerToIntegral;
7414       return PointerToInt;
7415     }
7416 
7417     return Incompatible;
7418   }
7419 
7420   // Conversions from Objective-C pointers that are not covered by the above.
7421   if (isa<ObjCObjectPointerType>(RHSType)) {
7422     // T* -> _Bool
7423     if (LHSType == Context.BoolTy) {
7424       Kind = CK_PointerToBoolean;
7425       return Compatible;
7426     }
7427 
7428     // T* -> int
7429     if (LHSType->isIntegerType()) {
7430       Kind = CK_PointerToIntegral;
7431       return PointerToInt;
7432     }
7433 
7434     return Incompatible;
7435   }
7436 
7437   // struct A -> struct B
7438   if (isa<TagType>(LHSType) && isa<TagType>(RHSType)) {
7439     if (Context.typesAreCompatible(LHSType, RHSType)) {
7440       Kind = CK_NoOp;
7441       return Compatible;
7442     }
7443   }
7444 
7445   return Incompatible;
7446 }
7447 
7448 /// \brief Constructs a transparent union from an expression that is
7449 /// used to initialize the transparent union.
7450 static void ConstructTransparentUnion(Sema &S, ASTContext &C,
7451                                       ExprResult &EResult, QualType UnionType,
7452                                       FieldDecl *Field) {
7453   // Build an initializer list that designates the appropriate member
7454   // of the transparent union.
7455   Expr *E = EResult.get();
7456   InitListExpr *Initializer = new (C) InitListExpr(C, SourceLocation(),
7457                                                    E, SourceLocation());
7458   Initializer->setType(UnionType);
7459   Initializer->setInitializedFieldInUnion(Field);
7460 
7461   // Build a compound literal constructing a value of the transparent
7462   // union type from this initializer list.
7463   TypeSourceInfo *unionTInfo = C.getTrivialTypeSourceInfo(UnionType);
7464   EResult = new (C) CompoundLiteralExpr(SourceLocation(), unionTInfo, UnionType,
7465                                         VK_RValue, Initializer, false);
7466 }
7467 
7468 Sema::AssignConvertType
7469 Sema::CheckTransparentUnionArgumentConstraints(QualType ArgType,
7470                                                ExprResult &RHS) {
7471   QualType RHSType = RHS.get()->getType();
7472 
7473   // If the ArgType is a Union type, we want to handle a potential
7474   // transparent_union GCC extension.
7475   const RecordType *UT = ArgType->getAsUnionType();
7476   if (!UT || !UT->getDecl()->hasAttr<TransparentUnionAttr>())
7477     return Incompatible;
7478 
7479   // The field to initialize within the transparent union.
7480   RecordDecl *UD = UT->getDecl();
7481   FieldDecl *InitField = nullptr;
7482   // It's compatible if the expression matches any of the fields.
7483   for (auto *it : UD->fields()) {
7484     if (it->getType()->isPointerType()) {
7485       // If the transparent union contains a pointer type, we allow:
7486       // 1) void pointer
7487       // 2) null pointer constant
7488       if (RHSType->isPointerType())
7489         if (RHSType->castAs<PointerType>()->getPointeeType()->isVoidType()) {
7490           RHS = ImpCastExprToType(RHS.get(), it->getType(), CK_BitCast);
7491           InitField = it;
7492           break;
7493         }
7494 
7495       if (RHS.get()->isNullPointerConstant(Context,
7496                                            Expr::NPC_ValueDependentIsNull)) {
7497         RHS = ImpCastExprToType(RHS.get(), it->getType(),
7498                                 CK_NullToPointer);
7499         InitField = it;
7500         break;
7501       }
7502     }
7503 
7504     CastKind Kind = CK_Invalid;
7505     if (CheckAssignmentConstraints(it->getType(), RHS, Kind)
7506           == Compatible) {
7507       RHS = ImpCastExprToType(RHS.get(), it->getType(), Kind);
7508       InitField = it;
7509       break;
7510     }
7511   }
7512 
7513   if (!InitField)
7514     return Incompatible;
7515 
7516   ConstructTransparentUnion(*this, Context, RHS, ArgType, InitField);
7517   return Compatible;
7518 }
7519 
7520 Sema::AssignConvertType
7521 Sema::CheckSingleAssignmentConstraints(QualType LHSType, ExprResult &CallerRHS,
7522                                        bool Diagnose,
7523                                        bool DiagnoseCFAudited,
7524                                        bool ConvertRHS) {
7525   // If ConvertRHS is false, we want to leave the caller's RHS untouched. Sadly,
7526   // we can't avoid *all* modifications at the moment, so we need some somewhere
7527   // to put the updated value.
7528   ExprResult LocalRHS = CallerRHS;
7529   ExprResult &RHS = ConvertRHS ? CallerRHS : LocalRHS;
7530 
7531   if (getLangOpts().CPlusPlus) {
7532     if (!LHSType->isRecordType() && !LHSType->isAtomicType()) {
7533       // C++ 5.17p3: If the left operand is not of class type, the
7534       // expression is implicitly converted (C++ 4) to the
7535       // cv-unqualified type of the left operand.
7536       ExprResult Res;
7537       if (Diagnose) {
7538         Res = PerformImplicitConversion(RHS.get(), LHSType.getUnqualifiedType(),
7539                                         AA_Assigning);
7540       } else {
7541         ImplicitConversionSequence ICS =
7542             TryImplicitConversion(RHS.get(), LHSType.getUnqualifiedType(),
7543                                   /*SuppressUserConversions=*/false,
7544                                   /*AllowExplicit=*/false,
7545                                   /*InOverloadResolution=*/false,
7546                                   /*CStyle=*/false,
7547                                   /*AllowObjCWritebackConversion=*/false);
7548         if (ICS.isFailure())
7549           return Incompatible;
7550         Res = PerformImplicitConversion(RHS.get(), LHSType.getUnqualifiedType(),
7551                                         ICS, AA_Assigning);
7552       }
7553       if (Res.isInvalid())
7554         return Incompatible;
7555       Sema::AssignConvertType result = Compatible;
7556       if (getLangOpts().ObjCAutoRefCount &&
7557           !CheckObjCARCUnavailableWeakConversion(LHSType,
7558                                                  RHS.get()->getType()))
7559         result = IncompatibleObjCWeakRef;
7560       RHS = Res;
7561       return result;
7562     }
7563 
7564     // FIXME: Currently, we fall through and treat C++ classes like C
7565     // structures.
7566     // FIXME: We also fall through for atomics; not sure what should
7567     // happen there, though.
7568   } else if (RHS.get()->getType() == Context.OverloadTy) {
7569     // As a set of extensions to C, we support overloading on functions. These
7570     // functions need to be resolved here.
7571     DeclAccessPair DAP;
7572     if (FunctionDecl *FD = ResolveAddressOfOverloadedFunction(
7573             RHS.get(), LHSType, /*Complain=*/false, DAP))
7574       RHS = FixOverloadedFunctionReference(RHS.get(), DAP, FD);
7575     else
7576       return Incompatible;
7577   }
7578 
7579   // C99 6.5.16.1p1: the left operand is a pointer and the right is
7580   // a null pointer constant.
7581   if ((LHSType->isPointerType() || LHSType->isObjCObjectPointerType() ||
7582        LHSType->isBlockPointerType()) &&
7583       RHS.get()->isNullPointerConstant(Context,
7584                                        Expr::NPC_ValueDependentIsNull)) {
7585     if (Diagnose || ConvertRHS) {
7586       CastKind Kind;
7587       CXXCastPath Path;
7588       CheckPointerConversion(RHS.get(), LHSType, Kind, Path,
7589                              /*IgnoreBaseAccess=*/false, Diagnose);
7590       if (ConvertRHS)
7591         RHS = ImpCastExprToType(RHS.get(), LHSType, Kind, VK_RValue, &Path);
7592     }
7593     return Compatible;
7594   }
7595 
7596   // This check seems unnatural, however it is necessary to ensure the proper
7597   // conversion of functions/arrays. If the conversion were done for all
7598   // DeclExpr's (created by ActOnIdExpression), it would mess up the unary
7599   // expressions that suppress this implicit conversion (&, sizeof).
7600   //
7601   // Suppress this for references: C++ 8.5.3p5.
7602   if (!LHSType->isReferenceType()) {
7603     // FIXME: We potentially allocate here even if ConvertRHS is false.
7604     RHS = DefaultFunctionArrayLvalueConversion(RHS.get(), Diagnose);
7605     if (RHS.isInvalid())
7606       return Incompatible;
7607   }
7608 
7609   Expr *PRE = RHS.get()->IgnoreParenCasts();
7610   if (Diagnose && isa<ObjCProtocolExpr>(PRE)) {
7611     ObjCProtocolDecl *PDecl = cast<ObjCProtocolExpr>(PRE)->getProtocol();
7612     if (PDecl && !PDecl->hasDefinition()) {
7613       Diag(PRE->getExprLoc(), diag::warn_atprotocol_protocol) << PDecl->getName();
7614       Diag(PDecl->getLocation(), diag::note_entity_declared_at) << PDecl;
7615     }
7616   }
7617 
7618   CastKind Kind = CK_Invalid;
7619   Sema::AssignConvertType result =
7620     CheckAssignmentConstraints(LHSType, RHS, Kind, ConvertRHS);
7621 
7622   // C99 6.5.16.1p2: The value of the right operand is converted to the
7623   // type of the assignment expression.
7624   // CheckAssignmentConstraints allows the left-hand side to be a reference,
7625   // so that we can use references in built-in functions even in C.
7626   // The getNonReferenceType() call makes sure that the resulting expression
7627   // does not have reference type.
7628   if (result != Incompatible && RHS.get()->getType() != LHSType) {
7629     QualType Ty = LHSType.getNonLValueExprType(Context);
7630     Expr *E = RHS.get();
7631 
7632     // Check for various Objective-C errors. If we are not reporting
7633     // diagnostics and just checking for errors, e.g., during overload
7634     // resolution, return Incompatible to indicate the failure.
7635     if (getLangOpts().ObjCAutoRefCount &&
7636         CheckObjCARCConversion(SourceRange(), Ty, E, CCK_ImplicitConversion,
7637                                Diagnose, DiagnoseCFAudited) != ACR_okay) {
7638       if (!Diagnose)
7639         return Incompatible;
7640     }
7641     if (getLangOpts().ObjC1 &&
7642         (CheckObjCBridgeRelatedConversions(E->getLocStart(), LHSType,
7643                                            E->getType(), E, Diagnose) ||
7644          ConversionToObjCStringLiteralCheck(LHSType, E, Diagnose))) {
7645       if (!Diagnose)
7646         return Incompatible;
7647       // Replace the expression with a corrected version and continue so we
7648       // can find further errors.
7649       RHS = E;
7650       return Compatible;
7651     }
7652 
7653     if (ConvertRHS)
7654       RHS = ImpCastExprToType(E, Ty, Kind);
7655   }
7656   return result;
7657 }
7658 
7659 QualType Sema::InvalidOperands(SourceLocation Loc, ExprResult &LHS,
7660                                ExprResult &RHS) {
7661   Diag(Loc, diag::err_typecheck_invalid_operands)
7662     << LHS.get()->getType() << RHS.get()->getType()
7663     << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
7664   return QualType();
7665 }
7666 
7667 /// Try to convert a value of non-vector type to a vector type by converting
7668 /// the type to the element type of the vector and then performing a splat.
7669 /// If the language is OpenCL, we only use conversions that promote scalar
7670 /// rank; for C, Obj-C, and C++ we allow any real scalar conversion except
7671 /// for float->int.
7672 ///
7673 /// \param scalar - if non-null, actually perform the conversions
7674 /// \return true if the operation fails (but without diagnosing the failure)
7675 static bool tryVectorConvertAndSplat(Sema &S, ExprResult *scalar,
7676                                      QualType scalarTy,
7677                                      QualType vectorEltTy,
7678                                      QualType vectorTy) {
7679   // The conversion to apply to the scalar before splatting it,
7680   // if necessary.
7681   CastKind scalarCast = CK_Invalid;
7682 
7683   if (vectorEltTy->isIntegralType(S.Context)) {
7684     if (!scalarTy->isIntegralType(S.Context))
7685       return true;
7686     if (S.getLangOpts().OpenCL &&
7687         S.Context.getIntegerTypeOrder(vectorEltTy, scalarTy) < 0)
7688       return true;
7689     scalarCast = CK_IntegralCast;
7690   } else if (vectorEltTy->isRealFloatingType()) {
7691     if (scalarTy->isRealFloatingType()) {
7692       if (S.getLangOpts().OpenCL &&
7693           S.Context.getFloatingTypeOrder(vectorEltTy, scalarTy) < 0)
7694         return true;
7695       scalarCast = CK_FloatingCast;
7696     }
7697     else if (scalarTy->isIntegralType(S.Context))
7698       scalarCast = CK_IntegralToFloating;
7699     else
7700       return true;
7701   } else {
7702     return true;
7703   }
7704 
7705   // Adjust scalar if desired.
7706   if (scalar) {
7707     if (scalarCast != CK_Invalid)
7708       *scalar = S.ImpCastExprToType(scalar->get(), vectorEltTy, scalarCast);
7709     *scalar = S.ImpCastExprToType(scalar->get(), vectorTy, CK_VectorSplat);
7710   }
7711   return false;
7712 }
7713 
7714 QualType Sema::CheckVectorOperands(ExprResult &LHS, ExprResult &RHS,
7715                                    SourceLocation Loc, bool IsCompAssign,
7716                                    bool AllowBothBool,
7717                                    bool AllowBoolConversions) {
7718   if (!IsCompAssign) {
7719     LHS = DefaultFunctionArrayLvalueConversion(LHS.get());
7720     if (LHS.isInvalid())
7721       return QualType();
7722   }
7723   RHS = DefaultFunctionArrayLvalueConversion(RHS.get());
7724   if (RHS.isInvalid())
7725     return QualType();
7726 
7727   // For conversion purposes, we ignore any qualifiers.
7728   // For example, "const float" and "float" are equivalent.
7729   QualType LHSType = LHS.get()->getType().getUnqualifiedType();
7730   QualType RHSType = RHS.get()->getType().getUnqualifiedType();
7731 
7732   const VectorType *LHSVecType = LHSType->getAs<VectorType>();
7733   const VectorType *RHSVecType = RHSType->getAs<VectorType>();
7734   assert(LHSVecType || RHSVecType);
7735 
7736   // AltiVec-style "vector bool op vector bool" combinations are allowed
7737   // for some operators but not others.
7738   if (!AllowBothBool &&
7739       LHSVecType && LHSVecType->getVectorKind() == VectorType::AltiVecBool &&
7740       RHSVecType && RHSVecType->getVectorKind() == VectorType::AltiVecBool)
7741     return InvalidOperands(Loc, LHS, RHS);
7742 
7743   // If the vector types are identical, return.
7744   if (Context.hasSameType(LHSType, RHSType))
7745     return LHSType;
7746 
7747   // If we have compatible AltiVec and GCC vector types, use the AltiVec type.
7748   if (LHSVecType && RHSVecType &&
7749       Context.areCompatibleVectorTypes(LHSType, RHSType)) {
7750     if (isa<ExtVectorType>(LHSVecType)) {
7751       RHS = ImpCastExprToType(RHS.get(), LHSType, CK_BitCast);
7752       return LHSType;
7753     }
7754 
7755     if (!IsCompAssign)
7756       LHS = ImpCastExprToType(LHS.get(), RHSType, CK_BitCast);
7757     return RHSType;
7758   }
7759 
7760   // AllowBoolConversions says that bool and non-bool AltiVec vectors
7761   // can be mixed, with the result being the non-bool type.  The non-bool
7762   // operand must have integer element type.
7763   if (AllowBoolConversions && LHSVecType && RHSVecType &&
7764       LHSVecType->getNumElements() == RHSVecType->getNumElements() &&
7765       (Context.getTypeSize(LHSVecType->getElementType()) ==
7766        Context.getTypeSize(RHSVecType->getElementType()))) {
7767     if (LHSVecType->getVectorKind() == VectorType::AltiVecVector &&
7768         LHSVecType->getElementType()->isIntegerType() &&
7769         RHSVecType->getVectorKind() == VectorType::AltiVecBool) {
7770       RHS = ImpCastExprToType(RHS.get(), LHSType, CK_BitCast);
7771       return LHSType;
7772     }
7773     if (!IsCompAssign &&
7774         LHSVecType->getVectorKind() == VectorType::AltiVecBool &&
7775         RHSVecType->getVectorKind() == VectorType::AltiVecVector &&
7776         RHSVecType->getElementType()->isIntegerType()) {
7777       LHS = ImpCastExprToType(LHS.get(), RHSType, CK_BitCast);
7778       return RHSType;
7779     }
7780   }
7781 
7782   // If there's an ext-vector type and a scalar, try to convert the scalar to
7783   // the vector element type and splat.
7784   if (!RHSVecType && isa<ExtVectorType>(LHSVecType)) {
7785     if (!tryVectorConvertAndSplat(*this, &RHS, RHSType,
7786                                   LHSVecType->getElementType(), LHSType))
7787       return LHSType;
7788   }
7789   if (!LHSVecType && isa<ExtVectorType>(RHSVecType)) {
7790     if (!tryVectorConvertAndSplat(*this, (IsCompAssign ? nullptr : &LHS),
7791                                   LHSType, RHSVecType->getElementType(),
7792                                   RHSType))
7793       return RHSType;
7794   }
7795 
7796   // If we're allowing lax vector conversions, only the total (data) size
7797   // needs to be the same.
7798   // FIXME: Should we really be allowing this?
7799   // FIXME: We really just pick the LHS type arbitrarily?
7800   if (isLaxVectorConversion(RHSType, LHSType)) {
7801     QualType resultType = LHSType;
7802     RHS = ImpCastExprToType(RHS.get(), resultType, CK_BitCast);
7803     return resultType;
7804   }
7805 
7806   // Okay, the expression is invalid.
7807 
7808   // If there's a non-vector, non-real operand, diagnose that.
7809   if ((!RHSVecType && !RHSType->isRealType()) ||
7810       (!LHSVecType && !LHSType->isRealType())) {
7811     Diag(Loc, diag::err_typecheck_vector_not_convertable_non_scalar)
7812       << LHSType << RHSType
7813       << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
7814     return QualType();
7815   }
7816 
7817   // OpenCL V1.1 6.2.6.p1:
7818   // If the operands are of more than one vector type, then an error shall
7819   // occur. Implicit conversions between vector types are not permitted, per
7820   // section 6.2.1.
7821   if (getLangOpts().OpenCL &&
7822       RHSVecType && isa<ExtVectorType>(RHSVecType) &&
7823       LHSVecType && isa<ExtVectorType>(LHSVecType)) {
7824     Diag(Loc, diag::err_opencl_implicit_vector_conversion) << LHSType
7825                                                            << RHSType;
7826     return QualType();
7827   }
7828 
7829   // Otherwise, use the generic diagnostic.
7830   Diag(Loc, diag::err_typecheck_vector_not_convertable)
7831     << LHSType << RHSType
7832     << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
7833   return QualType();
7834 }
7835 
7836 // checkArithmeticNull - Detect when a NULL constant is used improperly in an
7837 // expression.  These are mainly cases where the null pointer is used as an
7838 // integer instead of a pointer.
7839 static void checkArithmeticNull(Sema &S, ExprResult &LHS, ExprResult &RHS,
7840                                 SourceLocation Loc, bool IsCompare) {
7841   // The canonical way to check for a GNU null is with isNullPointerConstant,
7842   // but we use a bit of a hack here for speed; this is a relatively
7843   // hot path, and isNullPointerConstant is slow.
7844   bool LHSNull = isa<GNUNullExpr>(LHS.get()->IgnoreParenImpCasts());
7845   bool RHSNull = isa<GNUNullExpr>(RHS.get()->IgnoreParenImpCasts());
7846 
7847   QualType NonNullType = LHSNull ? RHS.get()->getType() : LHS.get()->getType();
7848 
7849   // Avoid analyzing cases where the result will either be invalid (and
7850   // diagnosed as such) or entirely valid and not something to warn about.
7851   if ((!LHSNull && !RHSNull) || NonNullType->isBlockPointerType() ||
7852       NonNullType->isMemberPointerType() || NonNullType->isFunctionType())
7853     return;
7854 
7855   // Comparison operations would not make sense with a null pointer no matter
7856   // what the other expression is.
7857   if (!IsCompare) {
7858     S.Diag(Loc, diag::warn_null_in_arithmetic_operation)
7859         << (LHSNull ? LHS.get()->getSourceRange() : SourceRange())
7860         << (RHSNull ? RHS.get()->getSourceRange() : SourceRange());
7861     return;
7862   }
7863 
7864   // The rest of the operations only make sense with a null pointer
7865   // if the other expression is a pointer.
7866   if (LHSNull == RHSNull || NonNullType->isAnyPointerType() ||
7867       NonNullType->canDecayToPointerType())
7868     return;
7869 
7870   S.Diag(Loc, diag::warn_null_in_comparison_operation)
7871       << LHSNull /* LHS is NULL */ << NonNullType
7872       << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
7873 }
7874 
7875 static void DiagnoseBadDivideOrRemainderValues(Sema& S, ExprResult &LHS,
7876                                                ExprResult &RHS,
7877                                                SourceLocation Loc, bool IsDiv) {
7878   // Check for division/remainder by zero.
7879   llvm::APSInt RHSValue;
7880   if (!RHS.get()->isValueDependent() &&
7881       RHS.get()->EvaluateAsInt(RHSValue, S.Context) && RHSValue == 0)
7882     S.DiagRuntimeBehavior(Loc, RHS.get(),
7883                           S.PDiag(diag::warn_remainder_division_by_zero)
7884                             << IsDiv << RHS.get()->getSourceRange());
7885 }
7886 
7887 QualType Sema::CheckMultiplyDivideOperands(ExprResult &LHS, ExprResult &RHS,
7888                                            SourceLocation Loc,
7889                                            bool IsCompAssign, bool IsDiv) {
7890   checkArithmeticNull(*this, LHS, RHS, Loc, /*isCompare=*/false);
7891 
7892   if (LHS.get()->getType()->isVectorType() ||
7893       RHS.get()->getType()->isVectorType())
7894     return CheckVectorOperands(LHS, RHS, Loc, IsCompAssign,
7895                                /*AllowBothBool*/getLangOpts().AltiVec,
7896                                /*AllowBoolConversions*/false);
7897 
7898   QualType compType = UsualArithmeticConversions(LHS, RHS, IsCompAssign);
7899   if (LHS.isInvalid() || RHS.isInvalid())
7900     return QualType();
7901 
7902 
7903   if (compType.isNull() || !compType->isArithmeticType())
7904     return InvalidOperands(Loc, LHS, RHS);
7905   if (IsDiv)
7906     DiagnoseBadDivideOrRemainderValues(*this, LHS, RHS, Loc, IsDiv);
7907   return compType;
7908 }
7909 
7910 QualType Sema::CheckRemainderOperands(
7911   ExprResult &LHS, ExprResult &RHS, SourceLocation Loc, bool IsCompAssign) {
7912   checkArithmeticNull(*this, LHS, RHS, Loc, /*isCompare=*/false);
7913 
7914   if (LHS.get()->getType()->isVectorType() ||
7915       RHS.get()->getType()->isVectorType()) {
7916     if (LHS.get()->getType()->hasIntegerRepresentation() &&
7917         RHS.get()->getType()->hasIntegerRepresentation())
7918       return CheckVectorOperands(LHS, RHS, Loc, IsCompAssign,
7919                                  /*AllowBothBool*/getLangOpts().AltiVec,
7920                                  /*AllowBoolConversions*/false);
7921     return InvalidOperands(Loc, LHS, RHS);
7922   }
7923 
7924   QualType compType = UsualArithmeticConversions(LHS, RHS, IsCompAssign);
7925   if (LHS.isInvalid() || RHS.isInvalid())
7926     return QualType();
7927 
7928   if (compType.isNull() || !compType->isIntegerType())
7929     return InvalidOperands(Loc, LHS, RHS);
7930   DiagnoseBadDivideOrRemainderValues(*this, LHS, RHS, Loc, false /* IsDiv */);
7931   return compType;
7932 }
7933 
7934 /// \brief Diagnose invalid arithmetic on two void pointers.
7935 static void diagnoseArithmeticOnTwoVoidPointers(Sema &S, SourceLocation Loc,
7936                                                 Expr *LHSExpr, Expr *RHSExpr) {
7937   S.Diag(Loc, S.getLangOpts().CPlusPlus
7938                 ? diag::err_typecheck_pointer_arith_void_type
7939                 : diag::ext_gnu_void_ptr)
7940     << 1 /* two pointers */ << LHSExpr->getSourceRange()
7941                             << RHSExpr->getSourceRange();
7942 }
7943 
7944 /// \brief Diagnose invalid arithmetic on a void pointer.
7945 static void diagnoseArithmeticOnVoidPointer(Sema &S, SourceLocation Loc,
7946                                             Expr *Pointer) {
7947   S.Diag(Loc, S.getLangOpts().CPlusPlus
7948                 ? diag::err_typecheck_pointer_arith_void_type
7949                 : diag::ext_gnu_void_ptr)
7950     << 0 /* one pointer */ << Pointer->getSourceRange();
7951 }
7952 
7953 /// \brief Diagnose invalid arithmetic on two function pointers.
7954 static void diagnoseArithmeticOnTwoFunctionPointers(Sema &S, SourceLocation Loc,
7955                                                     Expr *LHS, Expr *RHS) {
7956   assert(LHS->getType()->isAnyPointerType());
7957   assert(RHS->getType()->isAnyPointerType());
7958   S.Diag(Loc, S.getLangOpts().CPlusPlus
7959                 ? diag::err_typecheck_pointer_arith_function_type
7960                 : diag::ext_gnu_ptr_func_arith)
7961     << 1 /* two pointers */ << LHS->getType()->getPointeeType()
7962     // We only show the second type if it differs from the first.
7963     << (unsigned)!S.Context.hasSameUnqualifiedType(LHS->getType(),
7964                                                    RHS->getType())
7965     << RHS->getType()->getPointeeType()
7966     << LHS->getSourceRange() << RHS->getSourceRange();
7967 }
7968 
7969 /// \brief Diagnose invalid arithmetic on a function pointer.
7970 static void diagnoseArithmeticOnFunctionPointer(Sema &S, SourceLocation Loc,
7971                                                 Expr *Pointer) {
7972   assert(Pointer->getType()->isAnyPointerType());
7973   S.Diag(Loc, S.getLangOpts().CPlusPlus
7974                 ? diag::err_typecheck_pointer_arith_function_type
7975                 : diag::ext_gnu_ptr_func_arith)
7976     << 0 /* one pointer */ << Pointer->getType()->getPointeeType()
7977     << 0 /* one pointer, so only one type */
7978     << Pointer->getSourceRange();
7979 }
7980 
7981 /// \brief Emit error if Operand is incomplete pointer type
7982 ///
7983 /// \returns True if pointer has incomplete type
7984 static bool checkArithmeticIncompletePointerType(Sema &S, SourceLocation Loc,
7985                                                  Expr *Operand) {
7986   QualType ResType = Operand->getType();
7987   if (const AtomicType *ResAtomicType = ResType->getAs<AtomicType>())
7988     ResType = ResAtomicType->getValueType();
7989 
7990   assert(ResType->isAnyPointerType() && !ResType->isDependentType());
7991   QualType PointeeTy = ResType->getPointeeType();
7992   return S.RequireCompleteType(Loc, PointeeTy,
7993                                diag::err_typecheck_arithmetic_incomplete_type,
7994                                PointeeTy, Operand->getSourceRange());
7995 }
7996 
7997 /// \brief Check the validity of an arithmetic pointer operand.
7998 ///
7999 /// If the operand has pointer type, this code will check for pointer types
8000 /// which are invalid in arithmetic operations. These will be diagnosed
8001 /// appropriately, including whether or not the use is supported as an
8002 /// extension.
8003 ///
8004 /// \returns True when the operand is valid to use (even if as an extension).
8005 static bool checkArithmeticOpPointerOperand(Sema &S, SourceLocation Loc,
8006                                             Expr *Operand) {
8007   QualType ResType = Operand->getType();
8008   if (const AtomicType *ResAtomicType = ResType->getAs<AtomicType>())
8009     ResType = ResAtomicType->getValueType();
8010 
8011   if (!ResType->isAnyPointerType()) return true;
8012 
8013   QualType PointeeTy = ResType->getPointeeType();
8014   if (PointeeTy->isVoidType()) {
8015     diagnoseArithmeticOnVoidPointer(S, Loc, Operand);
8016     return !S.getLangOpts().CPlusPlus;
8017   }
8018   if (PointeeTy->isFunctionType()) {
8019     diagnoseArithmeticOnFunctionPointer(S, Loc, Operand);
8020     return !S.getLangOpts().CPlusPlus;
8021   }
8022 
8023   if (checkArithmeticIncompletePointerType(S, Loc, Operand)) return false;
8024 
8025   return true;
8026 }
8027 
8028 /// \brief Check the validity of a binary arithmetic operation w.r.t. pointer
8029 /// operands.
8030 ///
8031 /// This routine will diagnose any invalid arithmetic on pointer operands much
8032 /// like \see checkArithmeticOpPointerOperand. However, it has special logic
8033 /// for emitting a single diagnostic even for operations where both LHS and RHS
8034 /// are (potentially problematic) pointers.
8035 ///
8036 /// \returns True when the operand is valid to use (even if as an extension).
8037 static bool checkArithmeticBinOpPointerOperands(Sema &S, SourceLocation Loc,
8038                                                 Expr *LHSExpr, Expr *RHSExpr) {
8039   bool isLHSPointer = LHSExpr->getType()->isAnyPointerType();
8040   bool isRHSPointer = RHSExpr->getType()->isAnyPointerType();
8041   if (!isLHSPointer && !isRHSPointer) return true;
8042 
8043   QualType LHSPointeeTy, RHSPointeeTy;
8044   if (isLHSPointer) LHSPointeeTy = LHSExpr->getType()->getPointeeType();
8045   if (isRHSPointer) RHSPointeeTy = RHSExpr->getType()->getPointeeType();
8046 
8047   // if both are pointers check if operation is valid wrt address spaces
8048   if (S.getLangOpts().OpenCL && isLHSPointer && isRHSPointer) {
8049     const PointerType *lhsPtr = LHSExpr->getType()->getAs<PointerType>();
8050     const PointerType *rhsPtr = RHSExpr->getType()->getAs<PointerType>();
8051     if (!lhsPtr->isAddressSpaceOverlapping(*rhsPtr)) {
8052       S.Diag(Loc,
8053              diag::err_typecheck_op_on_nonoverlapping_address_space_pointers)
8054           << LHSExpr->getType() << RHSExpr->getType() << 1 /*arithmetic op*/
8055           << LHSExpr->getSourceRange() << RHSExpr->getSourceRange();
8056       return false;
8057     }
8058   }
8059 
8060   // Check for arithmetic on pointers to incomplete types.
8061   bool isLHSVoidPtr = isLHSPointer && LHSPointeeTy->isVoidType();
8062   bool isRHSVoidPtr = isRHSPointer && RHSPointeeTy->isVoidType();
8063   if (isLHSVoidPtr || isRHSVoidPtr) {
8064     if (!isRHSVoidPtr) diagnoseArithmeticOnVoidPointer(S, Loc, LHSExpr);
8065     else if (!isLHSVoidPtr) diagnoseArithmeticOnVoidPointer(S, Loc, RHSExpr);
8066     else diagnoseArithmeticOnTwoVoidPointers(S, Loc, LHSExpr, RHSExpr);
8067 
8068     return !S.getLangOpts().CPlusPlus;
8069   }
8070 
8071   bool isLHSFuncPtr = isLHSPointer && LHSPointeeTy->isFunctionType();
8072   bool isRHSFuncPtr = isRHSPointer && RHSPointeeTy->isFunctionType();
8073   if (isLHSFuncPtr || isRHSFuncPtr) {
8074     if (!isRHSFuncPtr) diagnoseArithmeticOnFunctionPointer(S, Loc, LHSExpr);
8075     else if (!isLHSFuncPtr) diagnoseArithmeticOnFunctionPointer(S, Loc,
8076                                                                 RHSExpr);
8077     else diagnoseArithmeticOnTwoFunctionPointers(S, Loc, LHSExpr, RHSExpr);
8078 
8079     return !S.getLangOpts().CPlusPlus;
8080   }
8081 
8082   if (isLHSPointer && checkArithmeticIncompletePointerType(S, Loc, LHSExpr))
8083     return false;
8084   if (isRHSPointer && checkArithmeticIncompletePointerType(S, Loc, RHSExpr))
8085     return false;
8086 
8087   return true;
8088 }
8089 
8090 /// diagnoseStringPlusInt - Emit a warning when adding an integer to a string
8091 /// literal.
8092 static void diagnoseStringPlusInt(Sema &Self, SourceLocation OpLoc,
8093                                   Expr *LHSExpr, Expr *RHSExpr) {
8094   StringLiteral* StrExpr = dyn_cast<StringLiteral>(LHSExpr->IgnoreImpCasts());
8095   Expr* IndexExpr = RHSExpr;
8096   if (!StrExpr) {
8097     StrExpr = dyn_cast<StringLiteral>(RHSExpr->IgnoreImpCasts());
8098     IndexExpr = LHSExpr;
8099   }
8100 
8101   bool IsStringPlusInt = StrExpr &&
8102       IndexExpr->getType()->isIntegralOrUnscopedEnumerationType();
8103   if (!IsStringPlusInt || IndexExpr->isValueDependent())
8104     return;
8105 
8106   llvm::APSInt index;
8107   if (IndexExpr->EvaluateAsInt(index, Self.getASTContext())) {
8108     unsigned StrLenWithNull = StrExpr->getLength() + 1;
8109     if (index.isNonNegative() &&
8110         index <= llvm::APSInt(llvm::APInt(index.getBitWidth(), StrLenWithNull),
8111                               index.isUnsigned()))
8112       return;
8113   }
8114 
8115   SourceRange DiagRange(LHSExpr->getLocStart(), RHSExpr->getLocEnd());
8116   Self.Diag(OpLoc, diag::warn_string_plus_int)
8117       << DiagRange << IndexExpr->IgnoreImpCasts()->getType();
8118 
8119   // Only print a fixit for "str" + int, not for int + "str".
8120   if (IndexExpr == RHSExpr) {
8121     SourceLocation EndLoc = Self.getLocForEndOfToken(RHSExpr->getLocEnd());
8122     Self.Diag(OpLoc, diag::note_string_plus_scalar_silence)
8123         << FixItHint::CreateInsertion(LHSExpr->getLocStart(), "&")
8124         << FixItHint::CreateReplacement(SourceRange(OpLoc), "[")
8125         << FixItHint::CreateInsertion(EndLoc, "]");
8126   } else
8127     Self.Diag(OpLoc, diag::note_string_plus_scalar_silence);
8128 }
8129 
8130 /// \brief Emit a warning when adding a char literal to a string.
8131 static void diagnoseStringPlusChar(Sema &Self, SourceLocation OpLoc,
8132                                    Expr *LHSExpr, Expr *RHSExpr) {
8133   const Expr *StringRefExpr = LHSExpr;
8134   const CharacterLiteral *CharExpr =
8135       dyn_cast<CharacterLiteral>(RHSExpr->IgnoreImpCasts());
8136 
8137   if (!CharExpr) {
8138     CharExpr = dyn_cast<CharacterLiteral>(LHSExpr->IgnoreImpCasts());
8139     StringRefExpr = RHSExpr;
8140   }
8141 
8142   if (!CharExpr || !StringRefExpr)
8143     return;
8144 
8145   const QualType StringType = StringRefExpr->getType();
8146 
8147   // Return if not a PointerType.
8148   if (!StringType->isAnyPointerType())
8149     return;
8150 
8151   // Return if not a CharacterType.
8152   if (!StringType->getPointeeType()->isAnyCharacterType())
8153     return;
8154 
8155   ASTContext &Ctx = Self.getASTContext();
8156   SourceRange DiagRange(LHSExpr->getLocStart(), RHSExpr->getLocEnd());
8157 
8158   const QualType CharType = CharExpr->getType();
8159   if (!CharType->isAnyCharacterType() &&
8160       CharType->isIntegerType() &&
8161       llvm::isUIntN(Ctx.getCharWidth(), CharExpr->getValue())) {
8162     Self.Diag(OpLoc, diag::warn_string_plus_char)
8163         << DiagRange << Ctx.CharTy;
8164   } else {
8165     Self.Diag(OpLoc, diag::warn_string_plus_char)
8166         << DiagRange << CharExpr->getType();
8167   }
8168 
8169   // Only print a fixit for str + char, not for char + str.
8170   if (isa<CharacterLiteral>(RHSExpr->IgnoreImpCasts())) {
8171     SourceLocation EndLoc = Self.getLocForEndOfToken(RHSExpr->getLocEnd());
8172     Self.Diag(OpLoc, diag::note_string_plus_scalar_silence)
8173         << FixItHint::CreateInsertion(LHSExpr->getLocStart(), "&")
8174         << FixItHint::CreateReplacement(SourceRange(OpLoc), "[")
8175         << FixItHint::CreateInsertion(EndLoc, "]");
8176   } else {
8177     Self.Diag(OpLoc, diag::note_string_plus_scalar_silence);
8178   }
8179 }
8180 
8181 /// \brief Emit error when two pointers are incompatible.
8182 static void diagnosePointerIncompatibility(Sema &S, SourceLocation Loc,
8183                                            Expr *LHSExpr, Expr *RHSExpr) {
8184   assert(LHSExpr->getType()->isAnyPointerType());
8185   assert(RHSExpr->getType()->isAnyPointerType());
8186   S.Diag(Loc, diag::err_typecheck_sub_ptr_compatible)
8187     << LHSExpr->getType() << RHSExpr->getType() << LHSExpr->getSourceRange()
8188     << RHSExpr->getSourceRange();
8189 }
8190 
8191 // C99 6.5.6
8192 QualType Sema::CheckAdditionOperands(ExprResult &LHS, ExprResult &RHS,
8193                                      SourceLocation Loc, BinaryOperatorKind Opc,
8194                                      QualType* CompLHSTy) {
8195   checkArithmeticNull(*this, LHS, RHS, Loc, /*isCompare=*/false);
8196 
8197   if (LHS.get()->getType()->isVectorType() ||
8198       RHS.get()->getType()->isVectorType()) {
8199     QualType compType = CheckVectorOperands(
8200         LHS, RHS, Loc, CompLHSTy,
8201         /*AllowBothBool*/getLangOpts().AltiVec,
8202         /*AllowBoolConversions*/getLangOpts().ZVector);
8203     if (CompLHSTy) *CompLHSTy = compType;
8204     return compType;
8205   }
8206 
8207   QualType compType = UsualArithmeticConversions(LHS, RHS, CompLHSTy);
8208   if (LHS.isInvalid() || RHS.isInvalid())
8209     return QualType();
8210 
8211   // Diagnose "string literal" '+' int and string '+' "char literal".
8212   if (Opc == BO_Add) {
8213     diagnoseStringPlusInt(*this, Loc, LHS.get(), RHS.get());
8214     diagnoseStringPlusChar(*this, Loc, LHS.get(), RHS.get());
8215   }
8216 
8217   // handle the common case first (both operands are arithmetic).
8218   if (!compType.isNull() && compType->isArithmeticType()) {
8219     if (CompLHSTy) *CompLHSTy = compType;
8220     return compType;
8221   }
8222 
8223   // Type-checking.  Ultimately the pointer's going to be in PExp;
8224   // note that we bias towards the LHS being the pointer.
8225   Expr *PExp = LHS.get(), *IExp = RHS.get();
8226 
8227   bool isObjCPointer;
8228   if (PExp->getType()->isPointerType()) {
8229     isObjCPointer = false;
8230   } else if (PExp->getType()->isObjCObjectPointerType()) {
8231     isObjCPointer = true;
8232   } else {
8233     std::swap(PExp, IExp);
8234     if (PExp->getType()->isPointerType()) {
8235       isObjCPointer = false;
8236     } else if (PExp->getType()->isObjCObjectPointerType()) {
8237       isObjCPointer = true;
8238     } else {
8239       return InvalidOperands(Loc, LHS, RHS);
8240     }
8241   }
8242   assert(PExp->getType()->isAnyPointerType());
8243 
8244   if (!IExp->getType()->isIntegerType())
8245     return InvalidOperands(Loc, LHS, RHS);
8246 
8247   if (!checkArithmeticOpPointerOperand(*this, Loc, PExp))
8248     return QualType();
8249 
8250   if (isObjCPointer && checkArithmeticOnObjCPointer(*this, Loc, PExp))
8251     return QualType();
8252 
8253   // Check array bounds for pointer arithemtic
8254   CheckArrayAccess(PExp, IExp);
8255 
8256   if (CompLHSTy) {
8257     QualType LHSTy = Context.isPromotableBitField(LHS.get());
8258     if (LHSTy.isNull()) {
8259       LHSTy = LHS.get()->getType();
8260       if (LHSTy->isPromotableIntegerType())
8261         LHSTy = Context.getPromotedIntegerType(LHSTy);
8262     }
8263     *CompLHSTy = LHSTy;
8264   }
8265 
8266   return PExp->getType();
8267 }
8268 
8269 // C99 6.5.6
8270 QualType Sema::CheckSubtractionOperands(ExprResult &LHS, ExprResult &RHS,
8271                                         SourceLocation Loc,
8272                                         QualType* CompLHSTy) {
8273   checkArithmeticNull(*this, LHS, RHS, Loc, /*isCompare=*/false);
8274 
8275   if (LHS.get()->getType()->isVectorType() ||
8276       RHS.get()->getType()->isVectorType()) {
8277     QualType compType = CheckVectorOperands(
8278         LHS, RHS, Loc, CompLHSTy,
8279         /*AllowBothBool*/getLangOpts().AltiVec,
8280         /*AllowBoolConversions*/getLangOpts().ZVector);
8281     if (CompLHSTy) *CompLHSTy = compType;
8282     return compType;
8283   }
8284 
8285   QualType compType = UsualArithmeticConversions(LHS, RHS, CompLHSTy);
8286   if (LHS.isInvalid() || RHS.isInvalid())
8287     return QualType();
8288 
8289   // Enforce type constraints: C99 6.5.6p3.
8290 
8291   // Handle the common case first (both operands are arithmetic).
8292   if (!compType.isNull() && compType->isArithmeticType()) {
8293     if (CompLHSTy) *CompLHSTy = compType;
8294     return compType;
8295   }
8296 
8297   // Either ptr - int   or   ptr - ptr.
8298   if (LHS.get()->getType()->isAnyPointerType()) {
8299     QualType lpointee = LHS.get()->getType()->getPointeeType();
8300 
8301     // Diagnose bad cases where we step over interface counts.
8302     if (LHS.get()->getType()->isObjCObjectPointerType() &&
8303         checkArithmeticOnObjCPointer(*this, Loc, LHS.get()))
8304       return QualType();
8305 
8306     // The result type of a pointer-int computation is the pointer type.
8307     if (RHS.get()->getType()->isIntegerType()) {
8308       if (!checkArithmeticOpPointerOperand(*this, Loc, LHS.get()))
8309         return QualType();
8310 
8311       // Check array bounds for pointer arithemtic
8312       CheckArrayAccess(LHS.get(), RHS.get(), /*ArraySubscriptExpr*/nullptr,
8313                        /*AllowOnePastEnd*/true, /*IndexNegated*/true);
8314 
8315       if (CompLHSTy) *CompLHSTy = LHS.get()->getType();
8316       return LHS.get()->getType();
8317     }
8318 
8319     // Handle pointer-pointer subtractions.
8320     if (const PointerType *RHSPTy
8321           = RHS.get()->getType()->getAs<PointerType>()) {
8322       QualType rpointee = RHSPTy->getPointeeType();
8323 
8324       if (getLangOpts().CPlusPlus) {
8325         // Pointee types must be the same: C++ [expr.add]
8326         if (!Context.hasSameUnqualifiedType(lpointee, rpointee)) {
8327           diagnosePointerIncompatibility(*this, Loc, LHS.get(), RHS.get());
8328         }
8329       } else {
8330         // Pointee types must be compatible C99 6.5.6p3
8331         if (!Context.typesAreCompatible(
8332                 Context.getCanonicalType(lpointee).getUnqualifiedType(),
8333                 Context.getCanonicalType(rpointee).getUnqualifiedType())) {
8334           diagnosePointerIncompatibility(*this, Loc, LHS.get(), RHS.get());
8335           return QualType();
8336         }
8337       }
8338 
8339       if (!checkArithmeticBinOpPointerOperands(*this, Loc,
8340                                                LHS.get(), RHS.get()))
8341         return QualType();
8342 
8343       // The pointee type may have zero size.  As an extension, a structure or
8344       // union may have zero size or an array may have zero length.  In this
8345       // case subtraction does not make sense.
8346       if (!rpointee->isVoidType() && !rpointee->isFunctionType()) {
8347         CharUnits ElementSize = Context.getTypeSizeInChars(rpointee);
8348         if (ElementSize.isZero()) {
8349           Diag(Loc,diag::warn_sub_ptr_zero_size_types)
8350             << rpointee.getUnqualifiedType()
8351             << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
8352         }
8353       }
8354 
8355       if (CompLHSTy) *CompLHSTy = LHS.get()->getType();
8356       return Context.getPointerDiffType();
8357     }
8358   }
8359 
8360   return InvalidOperands(Loc, LHS, RHS);
8361 }
8362 
8363 static bool isScopedEnumerationType(QualType T) {
8364   if (const EnumType *ET = T->getAs<EnumType>())
8365     return ET->getDecl()->isScoped();
8366   return false;
8367 }
8368 
8369 static void DiagnoseBadShiftValues(Sema& S, ExprResult &LHS, ExprResult &RHS,
8370                                    SourceLocation Loc, BinaryOperatorKind Opc,
8371                                    QualType LHSType) {
8372   // OpenCL 6.3j: shift values are effectively % word size of LHS (more defined),
8373   // so skip remaining warnings as we don't want to modify values within Sema.
8374   if (S.getLangOpts().OpenCL)
8375     return;
8376 
8377   llvm::APSInt Right;
8378   // Check right/shifter operand
8379   if (RHS.get()->isValueDependent() ||
8380       !RHS.get()->EvaluateAsInt(Right, S.Context))
8381     return;
8382 
8383   if (Right.isNegative()) {
8384     S.DiagRuntimeBehavior(Loc, RHS.get(),
8385                           S.PDiag(diag::warn_shift_negative)
8386                             << RHS.get()->getSourceRange());
8387     return;
8388   }
8389   llvm::APInt LeftBits(Right.getBitWidth(),
8390                        S.Context.getTypeSize(LHS.get()->getType()));
8391   if (Right.uge(LeftBits)) {
8392     S.DiagRuntimeBehavior(Loc, RHS.get(),
8393                           S.PDiag(diag::warn_shift_gt_typewidth)
8394                             << RHS.get()->getSourceRange());
8395     return;
8396   }
8397   if (Opc != BO_Shl)
8398     return;
8399 
8400   // When left shifting an ICE which is signed, we can check for overflow which
8401   // according to C++ has undefined behavior ([expr.shift] 5.8/2). Unsigned
8402   // integers have defined behavior modulo one more than the maximum value
8403   // representable in the result type, so never warn for those.
8404   llvm::APSInt Left;
8405   if (LHS.get()->isValueDependent() ||
8406       LHSType->hasUnsignedIntegerRepresentation() ||
8407       !LHS.get()->EvaluateAsInt(Left, S.Context))
8408     return;
8409 
8410   // If LHS does not have a signed type and non-negative value
8411   // then, the behavior is undefined. Warn about it.
8412   if (Left.isNegative()) {
8413     S.DiagRuntimeBehavior(Loc, LHS.get(),
8414                           S.PDiag(diag::warn_shift_lhs_negative)
8415                             << LHS.get()->getSourceRange());
8416     return;
8417   }
8418 
8419   llvm::APInt ResultBits =
8420       static_cast<llvm::APInt&>(Right) + Left.getMinSignedBits();
8421   if (LeftBits.uge(ResultBits))
8422     return;
8423   llvm::APSInt Result = Left.extend(ResultBits.getLimitedValue());
8424   Result = Result.shl(Right);
8425 
8426   // Print the bit representation of the signed integer as an unsigned
8427   // hexadecimal number.
8428   SmallString<40> HexResult;
8429   Result.toString(HexResult, 16, /*Signed =*/false, /*Literal =*/true);
8430 
8431   // If we are only missing a sign bit, this is less likely to result in actual
8432   // bugs -- if the result is cast back to an unsigned type, it will have the
8433   // expected value. Thus we place this behind a different warning that can be
8434   // turned off separately if needed.
8435   if (LeftBits == ResultBits - 1) {
8436     S.Diag(Loc, diag::warn_shift_result_sets_sign_bit)
8437         << HexResult << LHSType
8438         << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
8439     return;
8440   }
8441 
8442   S.Diag(Loc, diag::warn_shift_result_gt_typewidth)
8443     << HexResult.str() << Result.getMinSignedBits() << LHSType
8444     << Left.getBitWidth() << LHS.get()->getSourceRange()
8445     << RHS.get()->getSourceRange();
8446 }
8447 
8448 /// \brief Return the resulting type when an OpenCL vector is shifted
8449 ///        by a scalar or vector shift amount.
8450 static QualType checkOpenCLVectorShift(Sema &S,
8451                                        ExprResult &LHS, ExprResult &RHS,
8452                                        SourceLocation Loc, bool IsCompAssign) {
8453   // OpenCL v1.1 s6.3.j says RHS can be a vector only if LHS is a vector.
8454   if (!LHS.get()->getType()->isVectorType()) {
8455     S.Diag(Loc, diag::err_shift_rhs_only_vector)
8456       << RHS.get()->getType() << LHS.get()->getType()
8457       << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
8458     return QualType();
8459   }
8460 
8461   if (!IsCompAssign) {
8462     LHS = S.UsualUnaryConversions(LHS.get());
8463     if (LHS.isInvalid()) return QualType();
8464   }
8465 
8466   RHS = S.UsualUnaryConversions(RHS.get());
8467   if (RHS.isInvalid()) return QualType();
8468 
8469   QualType LHSType = LHS.get()->getType();
8470   const VectorType *LHSVecTy = LHSType->castAs<VectorType>();
8471   QualType LHSEleType = LHSVecTy->getElementType();
8472 
8473   // Note that RHS might not be a vector.
8474   QualType RHSType = RHS.get()->getType();
8475   const VectorType *RHSVecTy = RHSType->getAs<VectorType>();
8476   QualType RHSEleType = RHSVecTy ? RHSVecTy->getElementType() : RHSType;
8477 
8478   // OpenCL v1.1 s6.3.j says that the operands need to be integers.
8479   if (!LHSEleType->isIntegerType()) {
8480     S.Diag(Loc, diag::err_typecheck_expect_int)
8481       << LHS.get()->getType() << LHS.get()->getSourceRange();
8482     return QualType();
8483   }
8484 
8485   if (!RHSEleType->isIntegerType()) {
8486     S.Diag(Loc, diag::err_typecheck_expect_int)
8487       << RHS.get()->getType() << RHS.get()->getSourceRange();
8488     return QualType();
8489   }
8490 
8491   if (RHSVecTy) {
8492     // OpenCL v1.1 s6.3.j says that for vector types, the operators
8493     // are applied component-wise. So if RHS is a vector, then ensure
8494     // that the number of elements is the same as LHS...
8495     if (RHSVecTy->getNumElements() != LHSVecTy->getNumElements()) {
8496       S.Diag(Loc, diag::err_typecheck_vector_lengths_not_equal)
8497         << LHS.get()->getType() << RHS.get()->getType()
8498         << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
8499       return QualType();
8500     }
8501   } else {
8502     // ...else expand RHS to match the number of elements in LHS.
8503     QualType VecTy =
8504       S.Context.getExtVectorType(RHSEleType, LHSVecTy->getNumElements());
8505     RHS = S.ImpCastExprToType(RHS.get(), VecTy, CK_VectorSplat);
8506   }
8507 
8508   return LHSType;
8509 }
8510 
8511 // C99 6.5.7
8512 QualType Sema::CheckShiftOperands(ExprResult &LHS, ExprResult &RHS,
8513                                   SourceLocation Loc, BinaryOperatorKind Opc,
8514                                   bool IsCompAssign) {
8515   checkArithmeticNull(*this, LHS, RHS, Loc, /*isCompare=*/false);
8516 
8517   // Vector shifts promote their scalar inputs to vector type.
8518   if (LHS.get()->getType()->isVectorType() ||
8519       RHS.get()->getType()->isVectorType()) {
8520     if (LangOpts.OpenCL)
8521       return checkOpenCLVectorShift(*this, LHS, RHS, Loc, IsCompAssign);
8522     if (LangOpts.ZVector) {
8523       // The shift operators for the z vector extensions work basically
8524       // like OpenCL shifts, except that neither the LHS nor the RHS is
8525       // allowed to be a "vector bool".
8526       if (auto LHSVecType = LHS.get()->getType()->getAs<VectorType>())
8527         if (LHSVecType->getVectorKind() == VectorType::AltiVecBool)
8528           return InvalidOperands(Loc, LHS, RHS);
8529       if (auto RHSVecType = RHS.get()->getType()->getAs<VectorType>())
8530         if (RHSVecType->getVectorKind() == VectorType::AltiVecBool)
8531           return InvalidOperands(Loc, LHS, RHS);
8532       return checkOpenCLVectorShift(*this, LHS, RHS, Loc, IsCompAssign);
8533     }
8534     return CheckVectorOperands(LHS, RHS, Loc, IsCompAssign,
8535                                /*AllowBothBool*/true,
8536                                /*AllowBoolConversions*/false);
8537   }
8538 
8539   // Shifts don't perform usual arithmetic conversions, they just do integer
8540   // promotions on each operand. C99 6.5.7p3
8541 
8542   // For the LHS, do usual unary conversions, but then reset them away
8543   // if this is a compound assignment.
8544   ExprResult OldLHS = LHS;
8545   LHS = UsualUnaryConversions(LHS.get());
8546   if (LHS.isInvalid())
8547     return QualType();
8548   QualType LHSType = LHS.get()->getType();
8549   if (IsCompAssign) LHS = OldLHS;
8550 
8551   // The RHS is simpler.
8552   RHS = UsualUnaryConversions(RHS.get());
8553   if (RHS.isInvalid())
8554     return QualType();
8555   QualType RHSType = RHS.get()->getType();
8556 
8557   // C99 6.5.7p2: Each of the operands shall have integer type.
8558   if (!LHSType->hasIntegerRepresentation() ||
8559       !RHSType->hasIntegerRepresentation())
8560     return InvalidOperands(Loc, LHS, RHS);
8561 
8562   // C++0x: Don't allow scoped enums. FIXME: Use something better than
8563   // hasIntegerRepresentation() above instead of this.
8564   if (isScopedEnumerationType(LHSType) ||
8565       isScopedEnumerationType(RHSType)) {
8566     return InvalidOperands(Loc, LHS, RHS);
8567   }
8568   // Sanity-check shift operands
8569   DiagnoseBadShiftValues(*this, LHS, RHS, Loc, Opc, LHSType);
8570 
8571   // "The type of the result is that of the promoted left operand."
8572   return LHSType;
8573 }
8574 
8575 static bool IsWithinTemplateSpecialization(Decl *D) {
8576   if (DeclContext *DC = D->getDeclContext()) {
8577     if (isa<ClassTemplateSpecializationDecl>(DC))
8578       return true;
8579     if (FunctionDecl *FD = dyn_cast<FunctionDecl>(DC))
8580       return FD->isFunctionTemplateSpecialization();
8581   }
8582   return false;
8583 }
8584 
8585 /// If two different enums are compared, raise a warning.
8586 static void checkEnumComparison(Sema &S, SourceLocation Loc, Expr *LHS,
8587                                 Expr *RHS) {
8588   QualType LHSStrippedType = LHS->IgnoreParenImpCasts()->getType();
8589   QualType RHSStrippedType = RHS->IgnoreParenImpCasts()->getType();
8590 
8591   const EnumType *LHSEnumType = LHSStrippedType->getAs<EnumType>();
8592   if (!LHSEnumType)
8593     return;
8594   const EnumType *RHSEnumType = RHSStrippedType->getAs<EnumType>();
8595   if (!RHSEnumType)
8596     return;
8597 
8598   // Ignore anonymous enums.
8599   if (!LHSEnumType->getDecl()->getIdentifier())
8600     return;
8601   if (!RHSEnumType->getDecl()->getIdentifier())
8602     return;
8603 
8604   if (S.Context.hasSameUnqualifiedType(LHSStrippedType, RHSStrippedType))
8605     return;
8606 
8607   S.Diag(Loc, diag::warn_comparison_of_mixed_enum_types)
8608       << LHSStrippedType << RHSStrippedType
8609       << LHS->getSourceRange() << RHS->getSourceRange();
8610 }
8611 
8612 /// \brief Diagnose bad pointer comparisons.
8613 static void diagnoseDistinctPointerComparison(Sema &S, SourceLocation Loc,
8614                                               ExprResult &LHS, ExprResult &RHS,
8615                                               bool IsError) {
8616   S.Diag(Loc, IsError ? diag::err_typecheck_comparison_of_distinct_pointers
8617                       : diag::ext_typecheck_comparison_of_distinct_pointers)
8618     << LHS.get()->getType() << RHS.get()->getType()
8619     << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
8620 }
8621 
8622 /// \brief Returns false if the pointers are converted to a composite type,
8623 /// true otherwise.
8624 static bool convertPointersToCompositeType(Sema &S, SourceLocation Loc,
8625                                            ExprResult &LHS, ExprResult &RHS) {
8626   // C++ [expr.rel]p2:
8627   //   [...] Pointer conversions (4.10) and qualification
8628   //   conversions (4.4) are performed on pointer operands (or on
8629   //   a pointer operand and a null pointer constant) to bring
8630   //   them to their composite pointer type. [...]
8631   //
8632   // C++ [expr.eq]p1 uses the same notion for (in)equality
8633   // comparisons of pointers.
8634 
8635   // C++ [expr.eq]p2:
8636   //   In addition, pointers to members can be compared, or a pointer to
8637   //   member and a null pointer constant. Pointer to member conversions
8638   //   (4.11) and qualification conversions (4.4) are performed to bring
8639   //   them to a common type. If one operand is a null pointer constant,
8640   //   the common type is the type of the other operand. Otherwise, the
8641   //   common type is a pointer to member type similar (4.4) to the type
8642   //   of one of the operands, with a cv-qualification signature (4.4)
8643   //   that is the union of the cv-qualification signatures of the operand
8644   //   types.
8645 
8646   QualType LHSType = LHS.get()->getType();
8647   QualType RHSType = RHS.get()->getType();
8648   assert((LHSType->isPointerType() && RHSType->isPointerType()) ||
8649          (LHSType->isMemberPointerType() && RHSType->isMemberPointerType()));
8650 
8651   bool NonStandardCompositeType = false;
8652   bool *BoolPtr = S.isSFINAEContext() ? nullptr : &NonStandardCompositeType;
8653   QualType T = S.FindCompositePointerType(Loc, LHS, RHS, BoolPtr);
8654   if (T.isNull()) {
8655     diagnoseDistinctPointerComparison(S, Loc, LHS, RHS, /*isError*/true);
8656     return true;
8657   }
8658 
8659   if (NonStandardCompositeType)
8660     S.Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers_nonstandard)
8661       << LHSType << RHSType << T << LHS.get()->getSourceRange()
8662       << RHS.get()->getSourceRange();
8663 
8664   LHS = S.ImpCastExprToType(LHS.get(), T, CK_BitCast);
8665   RHS = S.ImpCastExprToType(RHS.get(), T, CK_BitCast);
8666   return false;
8667 }
8668 
8669 static void diagnoseFunctionPointerToVoidComparison(Sema &S, SourceLocation Loc,
8670                                                     ExprResult &LHS,
8671                                                     ExprResult &RHS,
8672                                                     bool IsError) {
8673   S.Diag(Loc, IsError ? diag::err_typecheck_comparison_of_fptr_to_void
8674                       : diag::ext_typecheck_comparison_of_fptr_to_void)
8675     << LHS.get()->getType() << RHS.get()->getType()
8676     << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
8677 }
8678 
8679 static bool isObjCObjectLiteral(ExprResult &E) {
8680   switch (E.get()->IgnoreParenImpCasts()->getStmtClass()) {
8681   case Stmt::ObjCArrayLiteralClass:
8682   case Stmt::ObjCDictionaryLiteralClass:
8683   case Stmt::ObjCStringLiteralClass:
8684   case Stmt::ObjCBoxedExprClass:
8685     return true;
8686   default:
8687     // Note that ObjCBoolLiteral is NOT an object literal!
8688     return false;
8689   }
8690 }
8691 
8692 static bool hasIsEqualMethod(Sema &S, const Expr *LHS, const Expr *RHS) {
8693   const ObjCObjectPointerType *Type =
8694     LHS->getType()->getAs<ObjCObjectPointerType>();
8695 
8696   // If this is not actually an Objective-C object, bail out.
8697   if (!Type)
8698     return false;
8699 
8700   // Get the LHS object's interface type.
8701   QualType InterfaceType = Type->getPointeeType();
8702 
8703   // If the RHS isn't an Objective-C object, bail out.
8704   if (!RHS->getType()->isObjCObjectPointerType())
8705     return false;
8706 
8707   // Try to find the -isEqual: method.
8708   Selector IsEqualSel = S.NSAPIObj->getIsEqualSelector();
8709   ObjCMethodDecl *Method = S.LookupMethodInObjectType(IsEqualSel,
8710                                                       InterfaceType,
8711                                                       /*instance=*/true);
8712   if (!Method) {
8713     if (Type->isObjCIdType()) {
8714       // For 'id', just check the global pool.
8715       Method = S.LookupInstanceMethodInGlobalPool(IsEqualSel, SourceRange(),
8716                                                   /*receiverId=*/true);
8717     } else {
8718       // Check protocols.
8719       Method = S.LookupMethodInQualifiedType(IsEqualSel, Type,
8720                                              /*instance=*/true);
8721     }
8722   }
8723 
8724   if (!Method)
8725     return false;
8726 
8727   QualType T = Method->parameters()[0]->getType();
8728   if (!T->isObjCObjectPointerType())
8729     return false;
8730 
8731   QualType R = Method->getReturnType();
8732   if (!R->isScalarType())
8733     return false;
8734 
8735   return true;
8736 }
8737 
8738 Sema::ObjCLiteralKind Sema::CheckLiteralKind(Expr *FromE) {
8739   FromE = FromE->IgnoreParenImpCasts();
8740   switch (FromE->getStmtClass()) {
8741     default:
8742       break;
8743     case Stmt::ObjCStringLiteralClass:
8744       // "string literal"
8745       return LK_String;
8746     case Stmt::ObjCArrayLiteralClass:
8747       // "array literal"
8748       return LK_Array;
8749     case Stmt::ObjCDictionaryLiteralClass:
8750       // "dictionary literal"
8751       return LK_Dictionary;
8752     case Stmt::BlockExprClass:
8753       return LK_Block;
8754     case Stmt::ObjCBoxedExprClass: {
8755       Expr *Inner = cast<ObjCBoxedExpr>(FromE)->getSubExpr()->IgnoreParens();
8756       switch (Inner->getStmtClass()) {
8757         case Stmt::IntegerLiteralClass:
8758         case Stmt::FloatingLiteralClass:
8759         case Stmt::CharacterLiteralClass:
8760         case Stmt::ObjCBoolLiteralExprClass:
8761         case Stmt::CXXBoolLiteralExprClass:
8762           // "numeric literal"
8763           return LK_Numeric;
8764         case Stmt::ImplicitCastExprClass: {
8765           CastKind CK = cast<CastExpr>(Inner)->getCastKind();
8766           // Boolean literals can be represented by implicit casts.
8767           if (CK == CK_IntegralToBoolean || CK == CK_IntegralCast)
8768             return LK_Numeric;
8769           break;
8770         }
8771         default:
8772           break;
8773       }
8774       return LK_Boxed;
8775     }
8776   }
8777   return LK_None;
8778 }
8779 
8780 static void diagnoseObjCLiteralComparison(Sema &S, SourceLocation Loc,
8781                                           ExprResult &LHS, ExprResult &RHS,
8782                                           BinaryOperator::Opcode Opc){
8783   Expr *Literal;
8784   Expr *Other;
8785   if (isObjCObjectLiteral(LHS)) {
8786     Literal = LHS.get();
8787     Other = RHS.get();
8788   } else {
8789     Literal = RHS.get();
8790     Other = LHS.get();
8791   }
8792 
8793   // Don't warn on comparisons against nil.
8794   Other = Other->IgnoreParenCasts();
8795   if (Other->isNullPointerConstant(S.getASTContext(),
8796                                    Expr::NPC_ValueDependentIsNotNull))
8797     return;
8798 
8799   // This should be kept in sync with warn_objc_literal_comparison.
8800   // LK_String should always be after the other literals, since it has its own
8801   // warning flag.
8802   Sema::ObjCLiteralKind LiteralKind = S.CheckLiteralKind(Literal);
8803   assert(LiteralKind != Sema::LK_Block);
8804   if (LiteralKind == Sema::LK_None) {
8805     llvm_unreachable("Unknown Objective-C object literal kind");
8806   }
8807 
8808   if (LiteralKind == Sema::LK_String)
8809     S.Diag(Loc, diag::warn_objc_string_literal_comparison)
8810       << Literal->getSourceRange();
8811   else
8812     S.Diag(Loc, diag::warn_objc_literal_comparison)
8813       << LiteralKind << Literal->getSourceRange();
8814 
8815   if (BinaryOperator::isEqualityOp(Opc) &&
8816       hasIsEqualMethod(S, LHS.get(), RHS.get())) {
8817     SourceLocation Start = LHS.get()->getLocStart();
8818     SourceLocation End = S.getLocForEndOfToken(RHS.get()->getLocEnd());
8819     CharSourceRange OpRange =
8820       CharSourceRange::getCharRange(Loc, S.getLocForEndOfToken(Loc));
8821 
8822     S.Diag(Loc, diag::note_objc_literal_comparison_isequal)
8823       << FixItHint::CreateInsertion(Start, Opc == BO_EQ ? "[" : "![")
8824       << FixItHint::CreateReplacement(OpRange, " isEqual:")
8825       << FixItHint::CreateInsertion(End, "]");
8826   }
8827 }
8828 
8829 static void diagnoseLogicalNotOnLHSofComparison(Sema &S, ExprResult &LHS,
8830                                                 ExprResult &RHS,
8831                                                 SourceLocation Loc,
8832                                                 BinaryOperatorKind Opc) {
8833   // Check that left hand side is !something.
8834   UnaryOperator *UO = dyn_cast<UnaryOperator>(LHS.get()->IgnoreImpCasts());
8835   if (!UO || UO->getOpcode() != UO_LNot) return;
8836 
8837   // Only check if the right hand side is non-bool arithmetic type.
8838   if (RHS.get()->isKnownToHaveBooleanValue()) return;
8839 
8840   // Make sure that the something in !something is not bool.
8841   Expr *SubExpr = UO->getSubExpr()->IgnoreImpCasts();
8842   if (SubExpr->isKnownToHaveBooleanValue()) return;
8843 
8844   // Emit warning.
8845   S.Diag(UO->getOperatorLoc(), diag::warn_logical_not_on_lhs_of_comparison)
8846       << Loc;
8847 
8848   // First note suggest !(x < y)
8849   SourceLocation FirstOpen = SubExpr->getLocStart();
8850   SourceLocation FirstClose = RHS.get()->getLocEnd();
8851   FirstClose = S.getLocForEndOfToken(FirstClose);
8852   if (FirstClose.isInvalid())
8853     FirstOpen = SourceLocation();
8854   S.Diag(UO->getOperatorLoc(), diag::note_logical_not_fix)
8855       << FixItHint::CreateInsertion(FirstOpen, "(")
8856       << FixItHint::CreateInsertion(FirstClose, ")");
8857 
8858   // Second note suggests (!x) < y
8859   SourceLocation SecondOpen = LHS.get()->getLocStart();
8860   SourceLocation SecondClose = LHS.get()->getLocEnd();
8861   SecondClose = S.getLocForEndOfToken(SecondClose);
8862   if (SecondClose.isInvalid())
8863     SecondOpen = SourceLocation();
8864   S.Diag(UO->getOperatorLoc(), diag::note_logical_not_silence_with_parens)
8865       << FixItHint::CreateInsertion(SecondOpen, "(")
8866       << FixItHint::CreateInsertion(SecondClose, ")");
8867 }
8868 
8869 // Get the decl for a simple expression: a reference to a variable,
8870 // an implicit C++ field reference, or an implicit ObjC ivar reference.
8871 static ValueDecl *getCompareDecl(Expr *E) {
8872   if (DeclRefExpr* DR = dyn_cast<DeclRefExpr>(E))
8873     return DR->getDecl();
8874   if (ObjCIvarRefExpr* Ivar = dyn_cast<ObjCIvarRefExpr>(E)) {
8875     if (Ivar->isFreeIvar())
8876       return Ivar->getDecl();
8877   }
8878   if (MemberExpr* Mem = dyn_cast<MemberExpr>(E)) {
8879     if (Mem->isImplicitAccess())
8880       return Mem->getMemberDecl();
8881   }
8882   return nullptr;
8883 }
8884 
8885 // C99 6.5.8, C++ [expr.rel]
8886 QualType Sema::CheckCompareOperands(ExprResult &LHS, ExprResult &RHS,
8887                                     SourceLocation Loc, BinaryOperatorKind Opc,
8888                                     bool IsRelational) {
8889   checkArithmeticNull(*this, LHS, RHS, Loc, /*isCompare=*/true);
8890 
8891   // Handle vector comparisons separately.
8892   if (LHS.get()->getType()->isVectorType() ||
8893       RHS.get()->getType()->isVectorType())
8894     return CheckVectorCompareOperands(LHS, RHS, Loc, IsRelational);
8895 
8896   QualType LHSType = LHS.get()->getType();
8897   QualType RHSType = RHS.get()->getType();
8898 
8899   Expr *LHSStripped = LHS.get()->IgnoreParenImpCasts();
8900   Expr *RHSStripped = RHS.get()->IgnoreParenImpCasts();
8901 
8902   checkEnumComparison(*this, Loc, LHS.get(), RHS.get());
8903   diagnoseLogicalNotOnLHSofComparison(*this, LHS, RHS, Loc, Opc);
8904 
8905   if (!LHSType->hasFloatingRepresentation() &&
8906       !(LHSType->isBlockPointerType() && IsRelational) &&
8907       !LHS.get()->getLocStart().isMacroID() &&
8908       !RHS.get()->getLocStart().isMacroID() &&
8909       ActiveTemplateInstantiations.empty()) {
8910     // For non-floating point types, check for self-comparisons of the form
8911     // x == x, x != x, x < x, etc.  These always evaluate to a constant, and
8912     // often indicate logic errors in the program.
8913     //
8914     // NOTE: Don't warn about comparison expressions resulting from macro
8915     // expansion. Also don't warn about comparisons which are only self
8916     // comparisons within a template specialization. The warnings should catch
8917     // obvious cases in the definition of the template anyways. The idea is to
8918     // warn when the typed comparison operator will always evaluate to the same
8919     // result.
8920     ValueDecl *DL = getCompareDecl(LHSStripped);
8921     ValueDecl *DR = getCompareDecl(RHSStripped);
8922     if (DL && DR && DL == DR && !IsWithinTemplateSpecialization(DL)) {
8923       DiagRuntimeBehavior(Loc, nullptr, PDiag(diag::warn_comparison_always)
8924                           << 0 // self-
8925                           << (Opc == BO_EQ
8926                               || Opc == BO_LE
8927                               || Opc == BO_GE));
8928     } else if (DL && DR && LHSType->isArrayType() && RHSType->isArrayType() &&
8929                !DL->getType()->isReferenceType() &&
8930                !DR->getType()->isReferenceType()) {
8931         // what is it always going to eval to?
8932         char always_evals_to;
8933         switch(Opc) {
8934         case BO_EQ: // e.g. array1 == array2
8935           always_evals_to = 0; // false
8936           break;
8937         case BO_NE: // e.g. array1 != array2
8938           always_evals_to = 1; // true
8939           break;
8940         default:
8941           // best we can say is 'a constant'
8942           always_evals_to = 2; // e.g. array1 <= array2
8943           break;
8944         }
8945         DiagRuntimeBehavior(Loc, nullptr, PDiag(diag::warn_comparison_always)
8946                             << 1 // array
8947                             << always_evals_to);
8948     }
8949 
8950     if (isa<CastExpr>(LHSStripped))
8951       LHSStripped = LHSStripped->IgnoreParenCasts();
8952     if (isa<CastExpr>(RHSStripped))
8953       RHSStripped = RHSStripped->IgnoreParenCasts();
8954 
8955     // Warn about comparisons against a string constant (unless the other
8956     // operand is null), the user probably wants strcmp.
8957     Expr *literalString = nullptr;
8958     Expr *literalStringStripped = nullptr;
8959     if ((isa<StringLiteral>(LHSStripped) || isa<ObjCEncodeExpr>(LHSStripped)) &&
8960         !RHSStripped->isNullPointerConstant(Context,
8961                                             Expr::NPC_ValueDependentIsNull)) {
8962       literalString = LHS.get();
8963       literalStringStripped = LHSStripped;
8964     } else if ((isa<StringLiteral>(RHSStripped) ||
8965                 isa<ObjCEncodeExpr>(RHSStripped)) &&
8966                !LHSStripped->isNullPointerConstant(Context,
8967                                             Expr::NPC_ValueDependentIsNull)) {
8968       literalString = RHS.get();
8969       literalStringStripped = RHSStripped;
8970     }
8971 
8972     if (literalString) {
8973       DiagRuntimeBehavior(Loc, nullptr,
8974         PDiag(diag::warn_stringcompare)
8975           << isa<ObjCEncodeExpr>(literalStringStripped)
8976           << literalString->getSourceRange());
8977     }
8978   }
8979 
8980   // C99 6.5.8p3 / C99 6.5.9p4
8981   UsualArithmeticConversions(LHS, RHS);
8982   if (LHS.isInvalid() || RHS.isInvalid())
8983     return QualType();
8984 
8985   LHSType = LHS.get()->getType();
8986   RHSType = RHS.get()->getType();
8987 
8988   // The result of comparisons is 'bool' in C++, 'int' in C.
8989   QualType ResultTy = Context.getLogicalOperationType();
8990 
8991   if (IsRelational) {
8992     if (LHSType->isRealType() && RHSType->isRealType())
8993       return ResultTy;
8994   } else {
8995     // Check for comparisons of floating point operands using != and ==.
8996     if (LHSType->hasFloatingRepresentation())
8997       CheckFloatComparison(Loc, LHS.get(), RHS.get());
8998 
8999     if (LHSType->isArithmeticType() && RHSType->isArithmeticType())
9000       return ResultTy;
9001   }
9002 
9003   const Expr::NullPointerConstantKind LHSNullKind =
9004       LHS.get()->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull);
9005   const Expr::NullPointerConstantKind RHSNullKind =
9006       RHS.get()->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull);
9007   bool LHSIsNull = LHSNullKind != Expr::NPCK_NotNull;
9008   bool RHSIsNull = RHSNullKind != Expr::NPCK_NotNull;
9009 
9010   if (!IsRelational && LHSIsNull != RHSIsNull) {
9011     bool IsEquality = Opc == BO_EQ;
9012     if (RHSIsNull)
9013       DiagnoseAlwaysNonNullPointer(LHS.get(), RHSNullKind, IsEquality,
9014                                    RHS.get()->getSourceRange());
9015     else
9016       DiagnoseAlwaysNonNullPointer(RHS.get(), LHSNullKind, IsEquality,
9017                                    LHS.get()->getSourceRange());
9018   }
9019 
9020   // All of the following pointer-related warnings are GCC extensions, except
9021   // when handling null pointer constants.
9022   if (LHSType->isPointerType() && RHSType->isPointerType()) { // C99 6.5.8p2
9023     QualType LCanPointeeTy =
9024       LHSType->castAs<PointerType>()->getPointeeType().getCanonicalType();
9025     QualType RCanPointeeTy =
9026       RHSType->castAs<PointerType>()->getPointeeType().getCanonicalType();
9027 
9028     if (getLangOpts().CPlusPlus) {
9029       if (LCanPointeeTy == RCanPointeeTy)
9030         return ResultTy;
9031       if (!IsRelational &&
9032           (LCanPointeeTy->isVoidType() || RCanPointeeTy->isVoidType())) {
9033         // Valid unless comparison between non-null pointer and function pointer
9034         // This is a gcc extension compatibility comparison.
9035         // In a SFINAE context, we treat this as a hard error to maintain
9036         // conformance with the C++ standard.
9037         if ((LCanPointeeTy->isFunctionType() || RCanPointeeTy->isFunctionType())
9038             && !LHSIsNull && !RHSIsNull) {
9039           diagnoseFunctionPointerToVoidComparison(
9040               *this, Loc, LHS, RHS, /*isError*/ (bool)isSFINAEContext());
9041 
9042           if (isSFINAEContext())
9043             return QualType();
9044 
9045           RHS = ImpCastExprToType(RHS.get(), LHSType, CK_BitCast);
9046           return ResultTy;
9047         }
9048       }
9049 
9050       if (convertPointersToCompositeType(*this, Loc, LHS, RHS))
9051         return QualType();
9052       else
9053         return ResultTy;
9054     }
9055     // C99 6.5.9p2 and C99 6.5.8p2
9056     if (Context.typesAreCompatible(LCanPointeeTy.getUnqualifiedType(),
9057                                    RCanPointeeTy.getUnqualifiedType())) {
9058       // Valid unless a relational comparison of function pointers
9059       if (IsRelational && LCanPointeeTy->isFunctionType()) {
9060         Diag(Loc, diag::ext_typecheck_ordered_comparison_of_function_pointers)
9061           << LHSType << RHSType << LHS.get()->getSourceRange()
9062           << RHS.get()->getSourceRange();
9063       }
9064     } else if (!IsRelational &&
9065                (LCanPointeeTy->isVoidType() || RCanPointeeTy->isVoidType())) {
9066       // Valid unless comparison between non-null pointer and function pointer
9067       if ((LCanPointeeTy->isFunctionType() || RCanPointeeTy->isFunctionType())
9068           && !LHSIsNull && !RHSIsNull)
9069         diagnoseFunctionPointerToVoidComparison(*this, Loc, LHS, RHS,
9070                                                 /*isError*/false);
9071     } else {
9072       // Invalid
9073       diagnoseDistinctPointerComparison(*this, Loc, LHS, RHS, /*isError*/false);
9074     }
9075     if (LCanPointeeTy != RCanPointeeTy) {
9076       // Treat NULL constant as a special case in OpenCL.
9077       if (getLangOpts().OpenCL && !LHSIsNull && !RHSIsNull) {
9078         const PointerType *LHSPtr = LHSType->getAs<PointerType>();
9079         if (!LHSPtr->isAddressSpaceOverlapping(*RHSType->getAs<PointerType>())) {
9080           Diag(Loc,
9081                diag::err_typecheck_op_on_nonoverlapping_address_space_pointers)
9082               << LHSType << RHSType << 0 /* comparison */
9083               << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
9084         }
9085       }
9086       unsigned AddrSpaceL = LCanPointeeTy.getAddressSpace();
9087       unsigned AddrSpaceR = RCanPointeeTy.getAddressSpace();
9088       CastKind Kind = AddrSpaceL != AddrSpaceR ? CK_AddressSpaceConversion
9089                                                : CK_BitCast;
9090       if (LHSIsNull && !RHSIsNull)
9091         LHS = ImpCastExprToType(LHS.get(), RHSType, Kind);
9092       else
9093         RHS = ImpCastExprToType(RHS.get(), LHSType, Kind);
9094     }
9095     return ResultTy;
9096   }
9097 
9098   if (getLangOpts().CPlusPlus) {
9099     // Comparison of nullptr_t with itself.
9100     if (LHSType->isNullPtrType() && RHSType->isNullPtrType())
9101       return ResultTy;
9102 
9103     // Comparison of pointers with null pointer constants and equality
9104     // comparisons of member pointers to null pointer constants.
9105     if (RHSIsNull &&
9106         ((LHSType->isAnyPointerType() || LHSType->isNullPtrType()) ||
9107          (!IsRelational &&
9108           (LHSType->isMemberPointerType() || LHSType->isBlockPointerType())))) {
9109       RHS = ImpCastExprToType(RHS.get(), LHSType,
9110                         LHSType->isMemberPointerType()
9111                           ? CK_NullToMemberPointer
9112                           : CK_NullToPointer);
9113       return ResultTy;
9114     }
9115     if (LHSIsNull &&
9116         ((RHSType->isAnyPointerType() || RHSType->isNullPtrType()) ||
9117          (!IsRelational &&
9118           (RHSType->isMemberPointerType() || RHSType->isBlockPointerType())))) {
9119       LHS = ImpCastExprToType(LHS.get(), RHSType,
9120                         RHSType->isMemberPointerType()
9121                           ? CK_NullToMemberPointer
9122                           : CK_NullToPointer);
9123       return ResultTy;
9124     }
9125 
9126     // Comparison of member pointers.
9127     if (!IsRelational &&
9128         LHSType->isMemberPointerType() && RHSType->isMemberPointerType()) {
9129       if (convertPointersToCompositeType(*this, Loc, LHS, RHS))
9130         return QualType();
9131       else
9132         return ResultTy;
9133     }
9134 
9135     // Handle scoped enumeration types specifically, since they don't promote
9136     // to integers.
9137     if (LHS.get()->getType()->isEnumeralType() &&
9138         Context.hasSameUnqualifiedType(LHS.get()->getType(),
9139                                        RHS.get()->getType()))
9140       return ResultTy;
9141   }
9142 
9143   // Handle block pointer types.
9144   if (!IsRelational && LHSType->isBlockPointerType() &&
9145       RHSType->isBlockPointerType()) {
9146     QualType lpointee = LHSType->castAs<BlockPointerType>()->getPointeeType();
9147     QualType rpointee = RHSType->castAs<BlockPointerType>()->getPointeeType();
9148 
9149     if (!LHSIsNull && !RHSIsNull &&
9150         !Context.typesAreCompatible(lpointee, rpointee)) {
9151       Diag(Loc, diag::err_typecheck_comparison_of_distinct_blocks)
9152         << LHSType << RHSType << LHS.get()->getSourceRange()
9153         << RHS.get()->getSourceRange();
9154     }
9155     RHS = ImpCastExprToType(RHS.get(), LHSType, CK_BitCast);
9156     return ResultTy;
9157   }
9158 
9159   // Allow block pointers to be compared with null pointer constants.
9160   if (!IsRelational
9161       && ((LHSType->isBlockPointerType() && RHSType->isPointerType())
9162           || (LHSType->isPointerType() && RHSType->isBlockPointerType()))) {
9163     if (!LHSIsNull && !RHSIsNull) {
9164       if (!((RHSType->isPointerType() && RHSType->castAs<PointerType>()
9165              ->getPointeeType()->isVoidType())
9166             || (LHSType->isPointerType() && LHSType->castAs<PointerType>()
9167                 ->getPointeeType()->isVoidType())))
9168         Diag(Loc, diag::err_typecheck_comparison_of_distinct_blocks)
9169           << LHSType << RHSType << LHS.get()->getSourceRange()
9170           << RHS.get()->getSourceRange();
9171     }
9172     if (LHSIsNull && !RHSIsNull)
9173       LHS = ImpCastExprToType(LHS.get(), RHSType,
9174                               RHSType->isPointerType() ? CK_BitCast
9175                                 : CK_AnyPointerToBlockPointerCast);
9176     else
9177       RHS = ImpCastExprToType(RHS.get(), LHSType,
9178                               LHSType->isPointerType() ? CK_BitCast
9179                                 : CK_AnyPointerToBlockPointerCast);
9180     return ResultTy;
9181   }
9182 
9183   if (LHSType->isObjCObjectPointerType() ||
9184       RHSType->isObjCObjectPointerType()) {
9185     const PointerType *LPT = LHSType->getAs<PointerType>();
9186     const PointerType *RPT = RHSType->getAs<PointerType>();
9187     if (LPT || RPT) {
9188       bool LPtrToVoid = LPT ? LPT->getPointeeType()->isVoidType() : false;
9189       bool RPtrToVoid = RPT ? RPT->getPointeeType()->isVoidType() : false;
9190 
9191       if (!LPtrToVoid && !RPtrToVoid &&
9192           !Context.typesAreCompatible(LHSType, RHSType)) {
9193         diagnoseDistinctPointerComparison(*this, Loc, LHS, RHS,
9194                                           /*isError*/false);
9195       }
9196       if (LHSIsNull && !RHSIsNull) {
9197         Expr *E = LHS.get();
9198         if (getLangOpts().ObjCAutoRefCount)
9199           CheckObjCARCConversion(SourceRange(), RHSType, E, CCK_ImplicitConversion);
9200         LHS = ImpCastExprToType(E, RHSType,
9201                                 RPT ? CK_BitCast :CK_CPointerToObjCPointerCast);
9202       }
9203       else {
9204         Expr *E = RHS.get();
9205         if (getLangOpts().ObjCAutoRefCount)
9206           CheckObjCARCConversion(SourceRange(), LHSType, E,
9207                                  CCK_ImplicitConversion, /*Diagnose=*/true,
9208                                  /*DiagnoseCFAudited=*/false, Opc);
9209         RHS = ImpCastExprToType(E, LHSType,
9210                                 LPT ? CK_BitCast :CK_CPointerToObjCPointerCast);
9211       }
9212       return ResultTy;
9213     }
9214     if (LHSType->isObjCObjectPointerType() &&
9215         RHSType->isObjCObjectPointerType()) {
9216       if (!Context.areComparableObjCPointerTypes(LHSType, RHSType))
9217         diagnoseDistinctPointerComparison(*this, Loc, LHS, RHS,
9218                                           /*isError*/false);
9219       if (isObjCObjectLiteral(LHS) || isObjCObjectLiteral(RHS))
9220         diagnoseObjCLiteralComparison(*this, Loc, LHS, RHS, Opc);
9221 
9222       if (LHSIsNull && !RHSIsNull)
9223         LHS = ImpCastExprToType(LHS.get(), RHSType, CK_BitCast);
9224       else
9225         RHS = ImpCastExprToType(RHS.get(), LHSType, CK_BitCast);
9226       return ResultTy;
9227     }
9228   }
9229   if ((LHSType->isAnyPointerType() && RHSType->isIntegerType()) ||
9230       (LHSType->isIntegerType() && RHSType->isAnyPointerType())) {
9231     unsigned DiagID = 0;
9232     bool isError = false;
9233     if (LangOpts.DebuggerSupport) {
9234       // Under a debugger, allow the comparison of pointers to integers,
9235       // since users tend to want to compare addresses.
9236     } else if ((LHSIsNull && LHSType->isIntegerType()) ||
9237         (RHSIsNull && RHSType->isIntegerType())) {
9238       if (IsRelational && !getLangOpts().CPlusPlus)
9239         DiagID = diag::ext_typecheck_ordered_comparison_of_pointer_and_zero;
9240     } else if (IsRelational && !getLangOpts().CPlusPlus)
9241       DiagID = diag::ext_typecheck_ordered_comparison_of_pointer_integer;
9242     else if (getLangOpts().CPlusPlus) {
9243       DiagID = diag::err_typecheck_comparison_of_pointer_integer;
9244       isError = true;
9245     } else
9246       DiagID = diag::ext_typecheck_comparison_of_pointer_integer;
9247 
9248     if (DiagID) {
9249       Diag(Loc, DiagID)
9250         << LHSType << RHSType << LHS.get()->getSourceRange()
9251         << RHS.get()->getSourceRange();
9252       if (isError)
9253         return QualType();
9254     }
9255 
9256     if (LHSType->isIntegerType())
9257       LHS = ImpCastExprToType(LHS.get(), RHSType,
9258                         LHSIsNull ? CK_NullToPointer : CK_IntegralToPointer);
9259     else
9260       RHS = ImpCastExprToType(RHS.get(), LHSType,
9261                         RHSIsNull ? CK_NullToPointer : CK_IntegralToPointer);
9262     return ResultTy;
9263   }
9264 
9265   // Handle block pointers.
9266   if (!IsRelational && RHSIsNull
9267       && LHSType->isBlockPointerType() && RHSType->isIntegerType()) {
9268     RHS = ImpCastExprToType(RHS.get(), LHSType, CK_NullToPointer);
9269     return ResultTy;
9270   }
9271   if (!IsRelational && LHSIsNull
9272       && LHSType->isIntegerType() && RHSType->isBlockPointerType()) {
9273     LHS = ImpCastExprToType(LHS.get(), RHSType, CK_NullToPointer);
9274     return ResultTy;
9275   }
9276 
9277   return InvalidOperands(Loc, LHS, RHS);
9278 }
9279 
9280 
9281 // Return a signed type that is of identical size and number of elements.
9282 // For floating point vectors, return an integer type of identical size
9283 // and number of elements.
9284 QualType Sema::GetSignedVectorType(QualType V) {
9285   const VectorType *VTy = V->getAs<VectorType>();
9286   unsigned TypeSize = Context.getTypeSize(VTy->getElementType());
9287   if (TypeSize == Context.getTypeSize(Context.CharTy))
9288     return Context.getExtVectorType(Context.CharTy, VTy->getNumElements());
9289   else if (TypeSize == Context.getTypeSize(Context.ShortTy))
9290     return Context.getExtVectorType(Context.ShortTy, VTy->getNumElements());
9291   else if (TypeSize == Context.getTypeSize(Context.IntTy))
9292     return Context.getExtVectorType(Context.IntTy, VTy->getNumElements());
9293   else if (TypeSize == Context.getTypeSize(Context.LongTy))
9294     return Context.getExtVectorType(Context.LongTy, VTy->getNumElements());
9295   assert(TypeSize == Context.getTypeSize(Context.LongLongTy) &&
9296          "Unhandled vector element size in vector compare");
9297   return Context.getExtVectorType(Context.LongLongTy, VTy->getNumElements());
9298 }
9299 
9300 /// CheckVectorCompareOperands - vector comparisons are a clang extension that
9301 /// operates on extended vector types.  Instead of producing an IntTy result,
9302 /// like a scalar comparison, a vector comparison produces a vector of integer
9303 /// types.
9304 QualType Sema::CheckVectorCompareOperands(ExprResult &LHS, ExprResult &RHS,
9305                                           SourceLocation Loc,
9306                                           bool IsRelational) {
9307   // Check to make sure we're operating on vectors of the same type and width,
9308   // Allowing one side to be a scalar of element type.
9309   QualType vType = CheckVectorOperands(LHS, RHS, Loc, /*isCompAssign*/false,
9310                               /*AllowBothBool*/true,
9311                               /*AllowBoolConversions*/getLangOpts().ZVector);
9312   if (vType.isNull())
9313     return vType;
9314 
9315   QualType LHSType = LHS.get()->getType();
9316 
9317   // If AltiVec, the comparison results in a numeric type, i.e.
9318   // bool for C++, int for C
9319   if (getLangOpts().AltiVec &&
9320       vType->getAs<VectorType>()->getVectorKind() == VectorType::AltiVecVector)
9321     return Context.getLogicalOperationType();
9322 
9323   // For non-floating point types, check for self-comparisons of the form
9324   // x == x, x != x, x < x, etc.  These always evaluate to a constant, and
9325   // often indicate logic errors in the program.
9326   if (!LHSType->hasFloatingRepresentation() &&
9327       ActiveTemplateInstantiations.empty()) {
9328     if (DeclRefExpr* DRL
9329           = dyn_cast<DeclRefExpr>(LHS.get()->IgnoreParenImpCasts()))
9330       if (DeclRefExpr* DRR
9331             = dyn_cast<DeclRefExpr>(RHS.get()->IgnoreParenImpCasts()))
9332         if (DRL->getDecl() == DRR->getDecl())
9333           DiagRuntimeBehavior(Loc, nullptr,
9334                               PDiag(diag::warn_comparison_always)
9335                                 << 0 // self-
9336                                 << 2 // "a constant"
9337                               );
9338   }
9339 
9340   // Check for comparisons of floating point operands using != and ==.
9341   if (!IsRelational && LHSType->hasFloatingRepresentation()) {
9342     assert (RHS.get()->getType()->hasFloatingRepresentation());
9343     CheckFloatComparison(Loc, LHS.get(), RHS.get());
9344   }
9345 
9346   // Return a signed type for the vector.
9347   return GetSignedVectorType(LHSType);
9348 }
9349 
9350 QualType Sema::CheckVectorLogicalOperands(ExprResult &LHS, ExprResult &RHS,
9351                                           SourceLocation Loc) {
9352   // Ensure that either both operands are of the same vector type, or
9353   // one operand is of a vector type and the other is of its element type.
9354   QualType vType = CheckVectorOperands(LHS, RHS, Loc, false,
9355                                        /*AllowBothBool*/true,
9356                                        /*AllowBoolConversions*/false);
9357   if (vType.isNull())
9358     return InvalidOperands(Loc, LHS, RHS);
9359   if (getLangOpts().OpenCL && getLangOpts().OpenCLVersion < 120 &&
9360       vType->hasFloatingRepresentation())
9361     return InvalidOperands(Loc, LHS, RHS);
9362 
9363   return GetSignedVectorType(LHS.get()->getType());
9364 }
9365 
9366 inline QualType Sema::CheckBitwiseOperands(
9367   ExprResult &LHS, ExprResult &RHS, SourceLocation Loc, bool IsCompAssign) {
9368   checkArithmeticNull(*this, LHS, RHS, Loc, /*isCompare=*/false);
9369 
9370   if (LHS.get()->getType()->isVectorType() ||
9371       RHS.get()->getType()->isVectorType()) {
9372     if (LHS.get()->getType()->hasIntegerRepresentation() &&
9373         RHS.get()->getType()->hasIntegerRepresentation())
9374       return CheckVectorOperands(LHS, RHS, Loc, IsCompAssign,
9375                         /*AllowBothBool*/true,
9376                         /*AllowBoolConversions*/getLangOpts().ZVector);
9377     return InvalidOperands(Loc, LHS, RHS);
9378   }
9379 
9380   ExprResult LHSResult = LHS, RHSResult = RHS;
9381   QualType compType = UsualArithmeticConversions(LHSResult, RHSResult,
9382                                                  IsCompAssign);
9383   if (LHSResult.isInvalid() || RHSResult.isInvalid())
9384     return QualType();
9385   LHS = LHSResult.get();
9386   RHS = RHSResult.get();
9387 
9388   if (!compType.isNull() && compType->isIntegralOrUnscopedEnumerationType())
9389     return compType;
9390   return InvalidOperands(Loc, LHS, RHS);
9391 }
9392 
9393 // C99 6.5.[13,14]
9394 inline QualType Sema::CheckLogicalOperands(ExprResult &LHS, ExprResult &RHS,
9395                                            SourceLocation Loc,
9396                                            BinaryOperatorKind Opc) {
9397   // Check vector operands differently.
9398   if (LHS.get()->getType()->isVectorType() || RHS.get()->getType()->isVectorType())
9399     return CheckVectorLogicalOperands(LHS, RHS, Loc);
9400 
9401   // Diagnose cases where the user write a logical and/or but probably meant a
9402   // bitwise one.  We do this when the LHS is a non-bool integer and the RHS
9403   // is a constant.
9404   if (LHS.get()->getType()->isIntegerType() &&
9405       !LHS.get()->getType()->isBooleanType() &&
9406       RHS.get()->getType()->isIntegerType() && !RHS.get()->isValueDependent() &&
9407       // Don't warn in macros or template instantiations.
9408       !Loc.isMacroID() && ActiveTemplateInstantiations.empty()) {
9409     // If the RHS can be constant folded, and if it constant folds to something
9410     // that isn't 0 or 1 (which indicate a potential logical operation that
9411     // happened to fold to true/false) then warn.
9412     // Parens on the RHS are ignored.
9413     llvm::APSInt Result;
9414     if (RHS.get()->EvaluateAsInt(Result, Context))
9415       if ((getLangOpts().Bool && !RHS.get()->getType()->isBooleanType() &&
9416            !RHS.get()->getExprLoc().isMacroID()) ||
9417           (Result != 0 && Result != 1)) {
9418         Diag(Loc, diag::warn_logical_instead_of_bitwise)
9419           << RHS.get()->getSourceRange()
9420           << (Opc == BO_LAnd ? "&&" : "||");
9421         // Suggest replacing the logical operator with the bitwise version
9422         Diag(Loc, diag::note_logical_instead_of_bitwise_change_operator)
9423             << (Opc == BO_LAnd ? "&" : "|")
9424             << FixItHint::CreateReplacement(SourceRange(
9425                                                  Loc, getLocForEndOfToken(Loc)),
9426                                             Opc == BO_LAnd ? "&" : "|");
9427         if (Opc == BO_LAnd)
9428           // Suggest replacing "Foo() && kNonZero" with "Foo()"
9429           Diag(Loc, diag::note_logical_instead_of_bitwise_remove_constant)
9430               << FixItHint::CreateRemoval(
9431                   SourceRange(getLocForEndOfToken(LHS.get()->getLocEnd()),
9432                               RHS.get()->getLocEnd()));
9433       }
9434   }
9435 
9436   if (!Context.getLangOpts().CPlusPlus) {
9437     // OpenCL v1.1 s6.3.g: The logical operators and (&&), or (||) do
9438     // not operate on the built-in scalar and vector float types.
9439     if (Context.getLangOpts().OpenCL &&
9440         Context.getLangOpts().OpenCLVersion < 120) {
9441       if (LHS.get()->getType()->isFloatingType() ||
9442           RHS.get()->getType()->isFloatingType())
9443         return InvalidOperands(Loc, LHS, RHS);
9444     }
9445 
9446     LHS = UsualUnaryConversions(LHS.get());
9447     if (LHS.isInvalid())
9448       return QualType();
9449 
9450     RHS = UsualUnaryConversions(RHS.get());
9451     if (RHS.isInvalid())
9452       return QualType();
9453 
9454     if (!LHS.get()->getType()->isScalarType() ||
9455         !RHS.get()->getType()->isScalarType())
9456       return InvalidOperands(Loc, LHS, RHS);
9457 
9458     return Context.IntTy;
9459   }
9460 
9461   // The following is safe because we only use this method for
9462   // non-overloadable operands.
9463 
9464   // C++ [expr.log.and]p1
9465   // C++ [expr.log.or]p1
9466   // The operands are both contextually converted to type bool.
9467   ExprResult LHSRes = PerformContextuallyConvertToBool(LHS.get());
9468   if (LHSRes.isInvalid())
9469     return InvalidOperands(Loc, LHS, RHS);
9470   LHS = LHSRes;
9471 
9472   ExprResult RHSRes = PerformContextuallyConvertToBool(RHS.get());
9473   if (RHSRes.isInvalid())
9474     return InvalidOperands(Loc, LHS, RHS);
9475   RHS = RHSRes;
9476 
9477   // C++ [expr.log.and]p2
9478   // C++ [expr.log.or]p2
9479   // The result is a bool.
9480   return Context.BoolTy;
9481 }
9482 
9483 static bool IsReadonlyMessage(Expr *E, Sema &S) {
9484   const MemberExpr *ME = dyn_cast<MemberExpr>(E);
9485   if (!ME) return false;
9486   if (!isa<FieldDecl>(ME->getMemberDecl())) return false;
9487   ObjCMessageExpr *Base =
9488     dyn_cast<ObjCMessageExpr>(ME->getBase()->IgnoreParenImpCasts());
9489   if (!Base) return false;
9490   return Base->getMethodDecl() != nullptr;
9491 }
9492 
9493 /// Is the given expression (which must be 'const') a reference to a
9494 /// variable which was originally non-const, but which has become
9495 /// 'const' due to being captured within a block?
9496 enum NonConstCaptureKind { NCCK_None, NCCK_Block, NCCK_Lambda };
9497 static NonConstCaptureKind isReferenceToNonConstCapture(Sema &S, Expr *E) {
9498   assert(E->isLValue() && E->getType().isConstQualified());
9499   E = E->IgnoreParens();
9500 
9501   // Must be a reference to a declaration from an enclosing scope.
9502   DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E);
9503   if (!DRE) return NCCK_None;
9504   if (!DRE->refersToEnclosingVariableOrCapture()) return NCCK_None;
9505 
9506   // The declaration must be a variable which is not declared 'const'.
9507   VarDecl *var = dyn_cast<VarDecl>(DRE->getDecl());
9508   if (!var) return NCCK_None;
9509   if (var->getType().isConstQualified()) return NCCK_None;
9510   assert(var->hasLocalStorage() && "capture added 'const' to non-local?");
9511 
9512   // Decide whether the first capture was for a block or a lambda.
9513   DeclContext *DC = S.CurContext, *Prev = nullptr;
9514   while (DC != var->getDeclContext()) {
9515     Prev = DC;
9516     DC = DC->getParent();
9517   }
9518   // Unless we have an init-capture, we've gone one step too far.
9519   if (!var->isInitCapture())
9520     DC = Prev;
9521   return (isa<BlockDecl>(DC) ? NCCK_Block : NCCK_Lambda);
9522 }
9523 
9524 static bool IsTypeModifiable(QualType Ty, bool IsDereference) {
9525   Ty = Ty.getNonReferenceType();
9526   if (IsDereference && Ty->isPointerType())
9527     Ty = Ty->getPointeeType();
9528   return !Ty.isConstQualified();
9529 }
9530 
9531 /// Emit the "read-only variable not assignable" error and print notes to give
9532 /// more information about why the variable is not assignable, such as pointing
9533 /// to the declaration of a const variable, showing that a method is const, or
9534 /// that the function is returning a const reference.
9535 static void DiagnoseConstAssignment(Sema &S, const Expr *E,
9536                                     SourceLocation Loc) {
9537   // Update err_typecheck_assign_const and note_typecheck_assign_const
9538   // when this enum is changed.
9539   enum {
9540     ConstFunction,
9541     ConstVariable,
9542     ConstMember,
9543     ConstMethod,
9544     ConstUnknown,  // Keep as last element
9545   };
9546 
9547   SourceRange ExprRange = E->getSourceRange();
9548 
9549   // Only emit one error on the first const found.  All other consts will emit
9550   // a note to the error.
9551   bool DiagnosticEmitted = false;
9552 
9553   // Track if the current expression is the result of a derefence, and if the
9554   // next checked expression is the result of a derefence.
9555   bool IsDereference = false;
9556   bool NextIsDereference = false;
9557 
9558   // Loop to process MemberExpr chains.
9559   while (true) {
9560     IsDereference = NextIsDereference;
9561     NextIsDereference = false;
9562 
9563     E = E->IgnoreParenImpCasts();
9564     if (const MemberExpr *ME = dyn_cast<MemberExpr>(E)) {
9565       NextIsDereference = ME->isArrow();
9566       const ValueDecl *VD = ME->getMemberDecl();
9567       if (const FieldDecl *Field = dyn_cast<FieldDecl>(VD)) {
9568         // Mutable fields can be modified even if the class is const.
9569         if (Field->isMutable()) {
9570           assert(DiagnosticEmitted && "Expected diagnostic not emitted.");
9571           break;
9572         }
9573 
9574         if (!IsTypeModifiable(Field->getType(), IsDereference)) {
9575           if (!DiagnosticEmitted) {
9576             S.Diag(Loc, diag::err_typecheck_assign_const)
9577                 << ExprRange << ConstMember << false /*static*/ << Field
9578                 << Field->getType();
9579             DiagnosticEmitted = true;
9580           }
9581           S.Diag(VD->getLocation(), diag::note_typecheck_assign_const)
9582               << ConstMember << false /*static*/ << Field << Field->getType()
9583               << Field->getSourceRange();
9584         }
9585         E = ME->getBase();
9586         continue;
9587       } else if (const VarDecl *VDecl = dyn_cast<VarDecl>(VD)) {
9588         if (VDecl->getType().isConstQualified()) {
9589           if (!DiagnosticEmitted) {
9590             S.Diag(Loc, diag::err_typecheck_assign_const)
9591                 << ExprRange << ConstMember << true /*static*/ << VDecl
9592                 << VDecl->getType();
9593             DiagnosticEmitted = true;
9594           }
9595           S.Diag(VD->getLocation(), diag::note_typecheck_assign_const)
9596               << ConstMember << true /*static*/ << VDecl << VDecl->getType()
9597               << VDecl->getSourceRange();
9598         }
9599         // Static fields do not inherit constness from parents.
9600         break;
9601       }
9602       break;
9603     } // End MemberExpr
9604     break;
9605   }
9606 
9607   if (const CallExpr *CE = dyn_cast<CallExpr>(E)) {
9608     // Function calls
9609     const FunctionDecl *FD = CE->getDirectCallee();
9610     if (FD && !IsTypeModifiable(FD->getReturnType(), IsDereference)) {
9611       if (!DiagnosticEmitted) {
9612         S.Diag(Loc, diag::err_typecheck_assign_const) << ExprRange
9613                                                       << ConstFunction << FD;
9614         DiagnosticEmitted = true;
9615       }
9616       S.Diag(FD->getReturnTypeSourceRange().getBegin(),
9617              diag::note_typecheck_assign_const)
9618           << ConstFunction << FD << FD->getReturnType()
9619           << FD->getReturnTypeSourceRange();
9620     }
9621   } else if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E)) {
9622     // Point to variable declaration.
9623     if (const ValueDecl *VD = DRE->getDecl()) {
9624       if (!IsTypeModifiable(VD->getType(), IsDereference)) {
9625         if (!DiagnosticEmitted) {
9626           S.Diag(Loc, diag::err_typecheck_assign_const)
9627               << ExprRange << ConstVariable << VD << VD->getType();
9628           DiagnosticEmitted = true;
9629         }
9630         S.Diag(VD->getLocation(), diag::note_typecheck_assign_const)
9631             << ConstVariable << VD << VD->getType() << VD->getSourceRange();
9632       }
9633     }
9634   } else if (isa<CXXThisExpr>(E)) {
9635     if (const DeclContext *DC = S.getFunctionLevelDeclContext()) {
9636       if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(DC)) {
9637         if (MD->isConst()) {
9638           if (!DiagnosticEmitted) {
9639             S.Diag(Loc, diag::err_typecheck_assign_const) << ExprRange
9640                                                           << ConstMethod << MD;
9641             DiagnosticEmitted = true;
9642           }
9643           S.Diag(MD->getLocation(), diag::note_typecheck_assign_const)
9644               << ConstMethod << MD << MD->getSourceRange();
9645         }
9646       }
9647     }
9648   }
9649 
9650   if (DiagnosticEmitted)
9651     return;
9652 
9653   // Can't determine a more specific message, so display the generic error.
9654   S.Diag(Loc, diag::err_typecheck_assign_const) << ExprRange << ConstUnknown;
9655 }
9656 
9657 /// CheckForModifiableLvalue - Verify that E is a modifiable lvalue.  If not,
9658 /// emit an error and return true.  If so, return false.
9659 static bool CheckForModifiableLvalue(Expr *E, SourceLocation Loc, Sema &S) {
9660   assert(!E->hasPlaceholderType(BuiltinType::PseudoObject));
9661   SourceLocation OrigLoc = Loc;
9662   Expr::isModifiableLvalueResult IsLV = E->isModifiableLvalue(S.Context,
9663                                                               &Loc);
9664   if (IsLV == Expr::MLV_ClassTemporary && IsReadonlyMessage(E, S))
9665     IsLV = Expr::MLV_InvalidMessageExpression;
9666   if (IsLV == Expr::MLV_Valid)
9667     return false;
9668 
9669   unsigned DiagID = 0;
9670   bool NeedType = false;
9671   switch (IsLV) { // C99 6.5.16p2
9672   case Expr::MLV_ConstQualified:
9673     // Use a specialized diagnostic when we're assigning to an object
9674     // from an enclosing function or block.
9675     if (NonConstCaptureKind NCCK = isReferenceToNonConstCapture(S, E)) {
9676       if (NCCK == NCCK_Block)
9677         DiagID = diag::err_block_decl_ref_not_modifiable_lvalue;
9678       else
9679         DiagID = diag::err_lambda_decl_ref_not_modifiable_lvalue;
9680       break;
9681     }
9682 
9683     // In ARC, use some specialized diagnostics for occasions where we
9684     // infer 'const'.  These are always pseudo-strong variables.
9685     if (S.getLangOpts().ObjCAutoRefCount) {
9686       DeclRefExpr *declRef = dyn_cast<DeclRefExpr>(E->IgnoreParenCasts());
9687       if (declRef && isa<VarDecl>(declRef->getDecl())) {
9688         VarDecl *var = cast<VarDecl>(declRef->getDecl());
9689 
9690         // Use the normal diagnostic if it's pseudo-__strong but the
9691         // user actually wrote 'const'.
9692         if (var->isARCPseudoStrong() &&
9693             (!var->getTypeSourceInfo() ||
9694              !var->getTypeSourceInfo()->getType().isConstQualified())) {
9695           // There are two pseudo-strong cases:
9696           //  - self
9697           ObjCMethodDecl *method = S.getCurMethodDecl();
9698           if (method && var == method->getSelfDecl())
9699             DiagID = method->isClassMethod()
9700               ? diag::err_typecheck_arc_assign_self_class_method
9701               : diag::err_typecheck_arc_assign_self;
9702 
9703           //  - fast enumeration variables
9704           else
9705             DiagID = diag::err_typecheck_arr_assign_enumeration;
9706 
9707           SourceRange Assign;
9708           if (Loc != OrigLoc)
9709             Assign = SourceRange(OrigLoc, OrigLoc);
9710           S.Diag(Loc, DiagID) << E->getSourceRange() << Assign;
9711           // We need to preserve the AST regardless, so migration tool
9712           // can do its job.
9713           return false;
9714         }
9715       }
9716     }
9717 
9718     // If none of the special cases above are triggered, then this is a
9719     // simple const assignment.
9720     if (DiagID == 0) {
9721       DiagnoseConstAssignment(S, E, Loc);
9722       return true;
9723     }
9724 
9725     break;
9726   case Expr::MLV_ConstAddrSpace:
9727     DiagnoseConstAssignment(S, E, Loc);
9728     return true;
9729   case Expr::MLV_ArrayType:
9730   case Expr::MLV_ArrayTemporary:
9731     DiagID = diag::err_typecheck_array_not_modifiable_lvalue;
9732     NeedType = true;
9733     break;
9734   case Expr::MLV_NotObjectType:
9735     DiagID = diag::err_typecheck_non_object_not_modifiable_lvalue;
9736     NeedType = true;
9737     break;
9738   case Expr::MLV_LValueCast:
9739     DiagID = diag::err_typecheck_lvalue_casts_not_supported;
9740     break;
9741   case Expr::MLV_Valid:
9742     llvm_unreachable("did not take early return for MLV_Valid");
9743   case Expr::MLV_InvalidExpression:
9744   case Expr::MLV_MemberFunction:
9745   case Expr::MLV_ClassTemporary:
9746     DiagID = diag::err_typecheck_expression_not_modifiable_lvalue;
9747     break;
9748   case Expr::MLV_IncompleteType:
9749   case Expr::MLV_IncompleteVoidType:
9750     return S.RequireCompleteType(Loc, E->getType(),
9751              diag::err_typecheck_incomplete_type_not_modifiable_lvalue, E);
9752   case Expr::MLV_DuplicateVectorComponents:
9753     DiagID = diag::err_typecheck_duplicate_vector_components_not_mlvalue;
9754     break;
9755   case Expr::MLV_NoSetterProperty:
9756     llvm_unreachable("readonly properties should be processed differently");
9757   case Expr::MLV_InvalidMessageExpression:
9758     DiagID = diag::error_readonly_message_assignment;
9759     break;
9760   case Expr::MLV_SubObjCPropertySetting:
9761     DiagID = diag::error_no_subobject_property_setting;
9762     break;
9763   }
9764 
9765   SourceRange Assign;
9766   if (Loc != OrigLoc)
9767     Assign = SourceRange(OrigLoc, OrigLoc);
9768   if (NeedType)
9769     S.Diag(Loc, DiagID) << E->getType() << E->getSourceRange() << Assign;
9770   else
9771     S.Diag(Loc, DiagID) << E->getSourceRange() << Assign;
9772   return true;
9773 }
9774 
9775 static void CheckIdentityFieldAssignment(Expr *LHSExpr, Expr *RHSExpr,
9776                                          SourceLocation Loc,
9777                                          Sema &Sema) {
9778   // C / C++ fields
9779   MemberExpr *ML = dyn_cast<MemberExpr>(LHSExpr);
9780   MemberExpr *MR = dyn_cast<MemberExpr>(RHSExpr);
9781   if (ML && MR && ML->getMemberDecl() == MR->getMemberDecl()) {
9782     if (isa<CXXThisExpr>(ML->getBase()) && isa<CXXThisExpr>(MR->getBase()))
9783       Sema.Diag(Loc, diag::warn_identity_field_assign) << 0;
9784   }
9785 
9786   // Objective-C instance variables
9787   ObjCIvarRefExpr *OL = dyn_cast<ObjCIvarRefExpr>(LHSExpr);
9788   ObjCIvarRefExpr *OR = dyn_cast<ObjCIvarRefExpr>(RHSExpr);
9789   if (OL && OR && OL->getDecl() == OR->getDecl()) {
9790     DeclRefExpr *RL = dyn_cast<DeclRefExpr>(OL->getBase()->IgnoreImpCasts());
9791     DeclRefExpr *RR = dyn_cast<DeclRefExpr>(OR->getBase()->IgnoreImpCasts());
9792     if (RL && RR && RL->getDecl() == RR->getDecl())
9793       Sema.Diag(Loc, diag::warn_identity_field_assign) << 1;
9794   }
9795 }
9796 
9797 // C99 6.5.16.1
9798 QualType Sema::CheckAssignmentOperands(Expr *LHSExpr, ExprResult &RHS,
9799                                        SourceLocation Loc,
9800                                        QualType CompoundType) {
9801   assert(!LHSExpr->hasPlaceholderType(BuiltinType::PseudoObject));
9802 
9803   // Verify that LHS is a modifiable lvalue, and emit error if not.
9804   if (CheckForModifiableLvalue(LHSExpr, Loc, *this))
9805     return QualType();
9806 
9807   QualType LHSType = LHSExpr->getType();
9808   QualType RHSType = CompoundType.isNull() ? RHS.get()->getType() :
9809                                              CompoundType;
9810   AssignConvertType ConvTy;
9811   if (CompoundType.isNull()) {
9812     Expr *RHSCheck = RHS.get();
9813 
9814     CheckIdentityFieldAssignment(LHSExpr, RHSCheck, Loc, *this);
9815 
9816     QualType LHSTy(LHSType);
9817     ConvTy = CheckSingleAssignmentConstraints(LHSTy, RHS);
9818     if (RHS.isInvalid())
9819       return QualType();
9820     // Special case of NSObject attributes on c-style pointer types.
9821     if (ConvTy == IncompatiblePointer &&
9822         ((Context.isObjCNSObjectType(LHSType) &&
9823           RHSType->isObjCObjectPointerType()) ||
9824          (Context.isObjCNSObjectType(RHSType) &&
9825           LHSType->isObjCObjectPointerType())))
9826       ConvTy = Compatible;
9827 
9828     if (ConvTy == Compatible &&
9829         LHSType->isObjCObjectType())
9830         Diag(Loc, diag::err_objc_object_assignment)
9831           << LHSType;
9832 
9833     // If the RHS is a unary plus or minus, check to see if they = and + are
9834     // right next to each other.  If so, the user may have typo'd "x =+ 4"
9835     // instead of "x += 4".
9836     if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(RHSCheck))
9837       RHSCheck = ICE->getSubExpr();
9838     if (UnaryOperator *UO = dyn_cast<UnaryOperator>(RHSCheck)) {
9839       if ((UO->getOpcode() == UO_Plus ||
9840            UO->getOpcode() == UO_Minus) &&
9841           Loc.isFileID() && UO->getOperatorLoc().isFileID() &&
9842           // Only if the two operators are exactly adjacent.
9843           Loc.getLocWithOffset(1) == UO->getOperatorLoc() &&
9844           // And there is a space or other character before the subexpr of the
9845           // unary +/-.  We don't want to warn on "x=-1".
9846           Loc.getLocWithOffset(2) != UO->getSubExpr()->getLocStart() &&
9847           UO->getSubExpr()->getLocStart().isFileID()) {
9848         Diag(Loc, diag::warn_not_compound_assign)
9849           << (UO->getOpcode() == UO_Plus ? "+" : "-")
9850           << SourceRange(UO->getOperatorLoc(), UO->getOperatorLoc());
9851       }
9852     }
9853 
9854     if (ConvTy == Compatible) {
9855       if (LHSType.getObjCLifetime() == Qualifiers::OCL_Strong) {
9856         // Warn about retain cycles where a block captures the LHS, but
9857         // not if the LHS is a simple variable into which the block is
9858         // being stored...unless that variable can be captured by reference!
9859         const Expr *InnerLHS = LHSExpr->IgnoreParenCasts();
9860         const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(InnerLHS);
9861         if (!DRE || DRE->getDecl()->hasAttr<BlocksAttr>())
9862           checkRetainCycles(LHSExpr, RHS.get());
9863 
9864         // It is safe to assign a weak reference into a strong variable.
9865         // Although this code can still have problems:
9866         //   id x = self.weakProp;
9867         //   id y = self.weakProp;
9868         // we do not warn to warn spuriously when 'x' and 'y' are on separate
9869         // paths through the function. This should be revisited if
9870         // -Wrepeated-use-of-weak is made flow-sensitive.
9871         if (!Diags.isIgnored(diag::warn_arc_repeated_use_of_weak,
9872                              RHS.get()->getLocStart()))
9873           getCurFunction()->markSafeWeakUse(RHS.get());
9874 
9875       } else if (getLangOpts().ObjCAutoRefCount) {
9876         checkUnsafeExprAssigns(Loc, LHSExpr, RHS.get());
9877       }
9878     }
9879   } else {
9880     // Compound assignment "x += y"
9881     ConvTy = CheckAssignmentConstraints(Loc, LHSType, RHSType);
9882   }
9883 
9884   if (DiagnoseAssignmentResult(ConvTy, Loc, LHSType, RHSType,
9885                                RHS.get(), AA_Assigning))
9886     return QualType();
9887 
9888   CheckForNullPointerDereference(*this, LHSExpr);
9889 
9890   // C99 6.5.16p3: The type of an assignment expression is the type of the
9891   // left operand unless the left operand has qualified type, in which case
9892   // it is the unqualified version of the type of the left operand.
9893   // C99 6.5.16.1p2: In simple assignment, the value of the right operand
9894   // is converted to the type of the assignment expression (above).
9895   // C++ 5.17p1: the type of the assignment expression is that of its left
9896   // operand.
9897   return (getLangOpts().CPlusPlus
9898           ? LHSType : LHSType.getUnqualifiedType());
9899 }
9900 
9901 // Only ignore explicit casts to void.
9902 static bool IgnoreCommaOperand(const Expr *E) {
9903   E = E->IgnoreParens();
9904 
9905   if (const CastExpr *CE = dyn_cast<CastExpr>(E)) {
9906     if (CE->getCastKind() == CK_ToVoid) {
9907       return true;
9908     }
9909   }
9910 
9911   return false;
9912 }
9913 
9914 // Look for instances where it is likely the comma operator is confused with
9915 // another operator.  There is a whitelist of acceptable expressions for the
9916 // left hand side of the comma operator, otherwise emit a warning.
9917 void Sema::DiagnoseCommaOperator(const Expr *LHS, SourceLocation Loc) {
9918   // No warnings in macros
9919   if (Loc.isMacroID())
9920     return;
9921 
9922   // Don't warn in template instantiations.
9923   if (!ActiveTemplateInstantiations.empty())
9924     return;
9925 
9926   // Scope isn't fine-grained enough to whitelist the specific cases, so
9927   // instead, skip more than needed, then call back into here with the
9928   // CommaVisitor in SemaStmt.cpp.
9929   // The whitelisted locations are the initialization and increment portions
9930   // of a for loop.  The additional checks are on the condition of
9931   // if statements, do/while loops, and for loops.
9932   const unsigned ForIncrementFlags =
9933       Scope::ControlScope | Scope::ContinueScope | Scope::BreakScope;
9934   const unsigned ForInitFlags = Scope::ControlScope | Scope::DeclScope;
9935   const unsigned ScopeFlags = getCurScope()->getFlags();
9936   if ((ScopeFlags & ForIncrementFlags) == ForIncrementFlags ||
9937       (ScopeFlags & ForInitFlags) == ForInitFlags)
9938     return;
9939 
9940   // If there are multiple comma operators used together, get the RHS of the
9941   // of the comma operator as the LHS.
9942   while (const BinaryOperator *BO = dyn_cast<BinaryOperator>(LHS)) {
9943     if (BO->getOpcode() != BO_Comma)
9944       break;
9945     LHS = BO->getRHS();
9946   }
9947 
9948   // Only allow some expressions on LHS to not warn.
9949   if (IgnoreCommaOperand(LHS))
9950     return;
9951 
9952   Diag(Loc, diag::warn_comma_operator);
9953   Diag(LHS->getLocStart(), diag::note_cast_to_void)
9954       << LHS->getSourceRange()
9955       << FixItHint::CreateInsertion(LHS->getLocStart(),
9956                                     LangOpts.CPlusPlus ? "static_cast<void>("
9957                                                        : "(void)(")
9958       << FixItHint::CreateInsertion(PP.getLocForEndOfToken(LHS->getLocEnd()),
9959                                     ")");
9960 }
9961 
9962 // C99 6.5.17
9963 static QualType CheckCommaOperands(Sema &S, ExprResult &LHS, ExprResult &RHS,
9964                                    SourceLocation Loc) {
9965   LHS = S.CheckPlaceholderExpr(LHS.get());
9966   RHS = S.CheckPlaceholderExpr(RHS.get());
9967   if (LHS.isInvalid() || RHS.isInvalid())
9968     return QualType();
9969 
9970   // C's comma performs lvalue conversion (C99 6.3.2.1) on both its
9971   // operands, but not unary promotions.
9972   // C++'s comma does not do any conversions at all (C++ [expr.comma]p1).
9973 
9974   // So we treat the LHS as a ignored value, and in C++ we allow the
9975   // containing site to determine what should be done with the RHS.
9976   LHS = S.IgnoredValueConversions(LHS.get());
9977   if (LHS.isInvalid())
9978     return QualType();
9979 
9980   S.DiagnoseUnusedExprResult(LHS.get());
9981 
9982   if (!S.getLangOpts().CPlusPlus) {
9983     RHS = S.DefaultFunctionArrayLvalueConversion(RHS.get());
9984     if (RHS.isInvalid())
9985       return QualType();
9986     if (!RHS.get()->getType()->isVoidType())
9987       S.RequireCompleteType(Loc, RHS.get()->getType(),
9988                             diag::err_incomplete_type);
9989   }
9990 
9991   if (!S.getDiagnostics().isIgnored(diag::warn_comma_operator, Loc))
9992     S.DiagnoseCommaOperator(LHS.get(), Loc);
9993 
9994   return RHS.get()->getType();
9995 }
9996 
9997 /// CheckIncrementDecrementOperand - unlike most "Check" methods, this routine
9998 /// doesn't need to call UsualUnaryConversions or UsualArithmeticConversions.
9999 static QualType CheckIncrementDecrementOperand(Sema &S, Expr *Op,
10000                                                ExprValueKind &VK,
10001                                                ExprObjectKind &OK,
10002                                                SourceLocation OpLoc,
10003                                                bool IsInc, bool IsPrefix) {
10004   if (Op->isTypeDependent())
10005     return S.Context.DependentTy;
10006 
10007   QualType ResType = Op->getType();
10008   // Atomic types can be used for increment / decrement where the non-atomic
10009   // versions can, so ignore the _Atomic() specifier for the purpose of
10010   // checking.
10011   if (const AtomicType *ResAtomicType = ResType->getAs<AtomicType>())
10012     ResType = ResAtomicType->getValueType();
10013 
10014   assert(!ResType.isNull() && "no type for increment/decrement expression");
10015 
10016   if (S.getLangOpts().CPlusPlus && ResType->isBooleanType()) {
10017     // Decrement of bool is not allowed.
10018     if (!IsInc) {
10019       S.Diag(OpLoc, diag::err_decrement_bool) << Op->getSourceRange();
10020       return QualType();
10021     }
10022     // Increment of bool sets it to true, but is deprecated.
10023     S.Diag(OpLoc, S.getLangOpts().CPlusPlus1z ? diag::ext_increment_bool
10024                                               : diag::warn_increment_bool)
10025       << Op->getSourceRange();
10026   } else if (S.getLangOpts().CPlusPlus && ResType->isEnumeralType()) {
10027     // Error on enum increments and decrements in C++ mode
10028     S.Diag(OpLoc, diag::err_increment_decrement_enum) << IsInc << ResType;
10029     return QualType();
10030   } else if (ResType->isRealType()) {
10031     // OK!
10032   } else if (ResType->isPointerType()) {
10033     // C99 6.5.2.4p2, 6.5.6p2
10034     if (!checkArithmeticOpPointerOperand(S, OpLoc, Op))
10035       return QualType();
10036   } else if (ResType->isObjCObjectPointerType()) {
10037     // On modern runtimes, ObjC pointer arithmetic is forbidden.
10038     // Otherwise, we just need a complete type.
10039     if (checkArithmeticIncompletePointerType(S, OpLoc, Op) ||
10040         checkArithmeticOnObjCPointer(S, OpLoc, Op))
10041       return QualType();
10042   } else if (ResType->isAnyComplexType()) {
10043     // C99 does not support ++/-- on complex types, we allow as an extension.
10044     S.Diag(OpLoc, diag::ext_integer_increment_complex)
10045       << ResType << Op->getSourceRange();
10046   } else if (ResType->isPlaceholderType()) {
10047     ExprResult PR = S.CheckPlaceholderExpr(Op);
10048     if (PR.isInvalid()) return QualType();
10049     return CheckIncrementDecrementOperand(S, PR.get(), VK, OK, OpLoc,
10050                                           IsInc, IsPrefix);
10051   } else if (S.getLangOpts().AltiVec && ResType->isVectorType()) {
10052     // OK! ( C/C++ Language Extensions for CBEA(Version 2.6) 10.3 )
10053   } else if (S.getLangOpts().ZVector && ResType->isVectorType() &&
10054              (ResType->getAs<VectorType>()->getVectorKind() !=
10055               VectorType::AltiVecBool)) {
10056     // The z vector extensions allow ++ and -- for non-bool vectors.
10057   } else if(S.getLangOpts().OpenCL && ResType->isVectorType() &&
10058             ResType->getAs<VectorType>()->getElementType()->isIntegerType()) {
10059     // OpenCL V1.2 6.3 says dec/inc ops operate on integer vector types.
10060   } else {
10061     S.Diag(OpLoc, diag::err_typecheck_illegal_increment_decrement)
10062       << ResType << int(IsInc) << Op->getSourceRange();
10063     return QualType();
10064   }
10065   // At this point, we know we have a real, complex or pointer type.
10066   // Now make sure the operand is a modifiable lvalue.
10067   if (CheckForModifiableLvalue(Op, OpLoc, S))
10068     return QualType();
10069   // In C++, a prefix increment is the same type as the operand. Otherwise
10070   // (in C or with postfix), the increment is the unqualified type of the
10071   // operand.
10072   if (IsPrefix && S.getLangOpts().CPlusPlus) {
10073     VK = VK_LValue;
10074     OK = Op->getObjectKind();
10075     return ResType;
10076   } else {
10077     VK = VK_RValue;
10078     return ResType.getUnqualifiedType();
10079   }
10080 }
10081 
10082 
10083 /// getPrimaryDecl - Helper function for CheckAddressOfOperand().
10084 /// This routine allows us to typecheck complex/recursive expressions
10085 /// where the declaration is needed for type checking. We only need to
10086 /// handle cases when the expression references a function designator
10087 /// or is an lvalue. Here are some examples:
10088 ///  - &(x) => x
10089 ///  - &*****f => f for f a function designator.
10090 ///  - &s.xx => s
10091 ///  - &s.zz[1].yy -> s, if zz is an array
10092 ///  - *(x + 1) -> x, if x is an array
10093 ///  - &"123"[2] -> 0
10094 ///  - & __real__ x -> x
10095 static ValueDecl *getPrimaryDecl(Expr *E) {
10096   switch (E->getStmtClass()) {
10097   case Stmt::DeclRefExprClass:
10098     return cast<DeclRefExpr>(E)->getDecl();
10099   case Stmt::MemberExprClass:
10100     // If this is an arrow operator, the address is an offset from
10101     // the base's value, so the object the base refers to is
10102     // irrelevant.
10103     if (cast<MemberExpr>(E)->isArrow())
10104       return nullptr;
10105     // Otherwise, the expression refers to a part of the base
10106     return getPrimaryDecl(cast<MemberExpr>(E)->getBase());
10107   case Stmt::ArraySubscriptExprClass: {
10108     // FIXME: This code shouldn't be necessary!  We should catch the implicit
10109     // promotion of register arrays earlier.
10110     Expr* Base = cast<ArraySubscriptExpr>(E)->getBase();
10111     if (ImplicitCastExpr* ICE = dyn_cast<ImplicitCastExpr>(Base)) {
10112       if (ICE->getSubExpr()->getType()->isArrayType())
10113         return getPrimaryDecl(ICE->getSubExpr());
10114     }
10115     return nullptr;
10116   }
10117   case Stmt::UnaryOperatorClass: {
10118     UnaryOperator *UO = cast<UnaryOperator>(E);
10119 
10120     switch(UO->getOpcode()) {
10121     case UO_Real:
10122     case UO_Imag:
10123     case UO_Extension:
10124       return getPrimaryDecl(UO->getSubExpr());
10125     default:
10126       return nullptr;
10127     }
10128   }
10129   case Stmt::ParenExprClass:
10130     return getPrimaryDecl(cast<ParenExpr>(E)->getSubExpr());
10131   case Stmt::ImplicitCastExprClass:
10132     // If the result of an implicit cast is an l-value, we care about
10133     // the sub-expression; otherwise, the result here doesn't matter.
10134     return getPrimaryDecl(cast<ImplicitCastExpr>(E)->getSubExpr());
10135   default:
10136     return nullptr;
10137   }
10138 }
10139 
10140 namespace {
10141   enum {
10142     AO_Bit_Field = 0,
10143     AO_Vector_Element = 1,
10144     AO_Property_Expansion = 2,
10145     AO_Register_Variable = 3,
10146     AO_No_Error = 4
10147   };
10148 }
10149 /// \brief Diagnose invalid operand for address of operations.
10150 ///
10151 /// \param Type The type of operand which cannot have its address taken.
10152 static void diagnoseAddressOfInvalidType(Sema &S, SourceLocation Loc,
10153                                          Expr *E, unsigned Type) {
10154   S.Diag(Loc, diag::err_typecheck_address_of) << Type << E->getSourceRange();
10155 }
10156 
10157 /// CheckAddressOfOperand - The operand of & must be either a function
10158 /// designator or an lvalue designating an object. If it is an lvalue, the
10159 /// object cannot be declared with storage class register or be a bit field.
10160 /// Note: The usual conversions are *not* applied to the operand of the &
10161 /// operator (C99 6.3.2.1p[2-4]), and its result is never an lvalue.
10162 /// In C++, the operand might be an overloaded function name, in which case
10163 /// we allow the '&' but retain the overloaded-function type.
10164 QualType Sema::CheckAddressOfOperand(ExprResult &OrigOp, SourceLocation OpLoc) {
10165   if (const BuiltinType *PTy = OrigOp.get()->getType()->getAsPlaceholderType()){
10166     if (PTy->getKind() == BuiltinType::Overload) {
10167       Expr *E = OrigOp.get()->IgnoreParens();
10168       if (!isa<OverloadExpr>(E)) {
10169         assert(cast<UnaryOperator>(E)->getOpcode() == UO_AddrOf);
10170         Diag(OpLoc, diag::err_typecheck_invalid_lvalue_addrof_addrof_function)
10171           << OrigOp.get()->getSourceRange();
10172         return QualType();
10173       }
10174 
10175       OverloadExpr *Ovl = cast<OverloadExpr>(E);
10176       if (isa<UnresolvedMemberExpr>(Ovl))
10177         if (!ResolveSingleFunctionTemplateSpecialization(Ovl)) {
10178           Diag(OpLoc, diag::err_invalid_form_pointer_member_function)
10179             << OrigOp.get()->getSourceRange();
10180           return QualType();
10181         }
10182 
10183       return Context.OverloadTy;
10184     }
10185 
10186     if (PTy->getKind() == BuiltinType::UnknownAny)
10187       return Context.UnknownAnyTy;
10188 
10189     if (PTy->getKind() == BuiltinType::BoundMember) {
10190       Diag(OpLoc, diag::err_invalid_form_pointer_member_function)
10191         << OrigOp.get()->getSourceRange();
10192       return QualType();
10193     }
10194 
10195     OrigOp = CheckPlaceholderExpr(OrigOp.get());
10196     if (OrigOp.isInvalid()) return QualType();
10197   }
10198 
10199   if (OrigOp.get()->isTypeDependent())
10200     return Context.DependentTy;
10201 
10202   assert(!OrigOp.get()->getType()->isPlaceholderType());
10203 
10204   // Make sure to ignore parentheses in subsequent checks
10205   Expr *op = OrigOp.get()->IgnoreParens();
10206 
10207   // OpenCL v1.0 s6.8.a.3: Pointers to functions are not allowed.
10208   if (LangOpts.OpenCL && op->getType()->isFunctionType()) {
10209     Diag(op->getExprLoc(), diag::err_opencl_taking_function_address);
10210     return QualType();
10211   }
10212 
10213   if (getLangOpts().C99) {
10214     // Implement C99-only parts of addressof rules.
10215     if (UnaryOperator* uOp = dyn_cast<UnaryOperator>(op)) {
10216       if (uOp->getOpcode() == UO_Deref)
10217         // Per C99 6.5.3.2, the address of a deref always returns a valid result
10218         // (assuming the deref expression is valid).
10219         return uOp->getSubExpr()->getType();
10220     }
10221     // Technically, there should be a check for array subscript
10222     // expressions here, but the result of one is always an lvalue anyway.
10223   }
10224   ValueDecl *dcl = getPrimaryDecl(op);
10225 
10226   if (auto *FD = dyn_cast_or_null<FunctionDecl>(dcl))
10227     if (!checkAddressOfFunctionIsAvailable(FD, /*Complain=*/true,
10228                                            op->getLocStart()))
10229       return QualType();
10230 
10231   Expr::LValueClassification lval = op->ClassifyLValue(Context);
10232   unsigned AddressOfError = AO_No_Error;
10233 
10234   if (lval == Expr::LV_ClassTemporary || lval == Expr::LV_ArrayTemporary) {
10235     bool sfinae = (bool)isSFINAEContext();
10236     Diag(OpLoc, isSFINAEContext() ? diag::err_typecheck_addrof_temporary
10237                                   : diag::ext_typecheck_addrof_temporary)
10238       << op->getType() << op->getSourceRange();
10239     if (sfinae)
10240       return QualType();
10241     // Materialize the temporary as an lvalue so that we can take its address.
10242     OrigOp = op = new (Context)
10243         MaterializeTemporaryExpr(op->getType(), OrigOp.get(), true);
10244   } else if (isa<ObjCSelectorExpr>(op)) {
10245     return Context.getPointerType(op->getType());
10246   } else if (lval == Expr::LV_MemberFunction) {
10247     // If it's an instance method, make a member pointer.
10248     // The expression must have exactly the form &A::foo.
10249 
10250     // If the underlying expression isn't a decl ref, give up.
10251     if (!isa<DeclRefExpr>(op)) {
10252       Diag(OpLoc, diag::err_invalid_form_pointer_member_function)
10253         << OrigOp.get()->getSourceRange();
10254       return QualType();
10255     }
10256     DeclRefExpr *DRE = cast<DeclRefExpr>(op);
10257     CXXMethodDecl *MD = cast<CXXMethodDecl>(DRE->getDecl());
10258 
10259     // The id-expression was parenthesized.
10260     if (OrigOp.get() != DRE) {
10261       Diag(OpLoc, diag::err_parens_pointer_member_function)
10262         << OrigOp.get()->getSourceRange();
10263 
10264     // The method was named without a qualifier.
10265     } else if (!DRE->getQualifier()) {
10266       if (MD->getParent()->getName().empty())
10267         Diag(OpLoc, diag::err_unqualified_pointer_member_function)
10268           << op->getSourceRange();
10269       else {
10270         SmallString<32> Str;
10271         StringRef Qual = (MD->getParent()->getName() + "::").toStringRef(Str);
10272         Diag(OpLoc, diag::err_unqualified_pointer_member_function)
10273           << op->getSourceRange()
10274           << FixItHint::CreateInsertion(op->getSourceRange().getBegin(), Qual);
10275       }
10276     }
10277 
10278     // Taking the address of a dtor is illegal per C++ [class.dtor]p2.
10279     if (isa<CXXDestructorDecl>(MD))
10280       Diag(OpLoc, diag::err_typecheck_addrof_dtor) << op->getSourceRange();
10281 
10282     QualType MPTy = Context.getMemberPointerType(
10283         op->getType(), Context.getTypeDeclType(MD->getParent()).getTypePtr());
10284     // Under the MS ABI, lock down the inheritance model now.
10285     if (Context.getTargetInfo().getCXXABI().isMicrosoft())
10286       (void)isCompleteType(OpLoc, MPTy);
10287     return MPTy;
10288   } else if (lval != Expr::LV_Valid && lval != Expr::LV_IncompleteVoidType) {
10289     // C99 6.5.3.2p1
10290     // The operand must be either an l-value or a function designator
10291     if (!op->getType()->isFunctionType()) {
10292       // Use a special diagnostic for loads from property references.
10293       if (isa<PseudoObjectExpr>(op)) {
10294         AddressOfError = AO_Property_Expansion;
10295       } else {
10296         Diag(OpLoc, diag::err_typecheck_invalid_lvalue_addrof)
10297           << op->getType() << op->getSourceRange();
10298         return QualType();
10299       }
10300     }
10301   } else if (op->getObjectKind() == OK_BitField) { // C99 6.5.3.2p1
10302     // The operand cannot be a bit-field
10303     AddressOfError = AO_Bit_Field;
10304   } else if (op->getObjectKind() == OK_VectorComponent) {
10305     // The operand cannot be an element of a vector
10306     AddressOfError = AO_Vector_Element;
10307   } else if (dcl) { // C99 6.5.3.2p1
10308     // We have an lvalue with a decl. Make sure the decl is not declared
10309     // with the register storage-class specifier.
10310     if (const VarDecl *vd = dyn_cast<VarDecl>(dcl)) {
10311       // in C++ it is not error to take address of a register
10312       // variable (c++03 7.1.1P3)
10313       if (vd->getStorageClass() == SC_Register &&
10314           !getLangOpts().CPlusPlus) {
10315         AddressOfError = AO_Register_Variable;
10316       }
10317     } else if (isa<MSPropertyDecl>(dcl)) {
10318       AddressOfError = AO_Property_Expansion;
10319     } else if (isa<FunctionTemplateDecl>(dcl)) {
10320       return Context.OverloadTy;
10321     } else if (isa<FieldDecl>(dcl) || isa<IndirectFieldDecl>(dcl)) {
10322       // Okay: we can take the address of a field.
10323       // Could be a pointer to member, though, if there is an explicit
10324       // scope qualifier for the class.
10325       if (isa<DeclRefExpr>(op) && cast<DeclRefExpr>(op)->getQualifier()) {
10326         DeclContext *Ctx = dcl->getDeclContext();
10327         if (Ctx && Ctx->isRecord()) {
10328           if (dcl->getType()->isReferenceType()) {
10329             Diag(OpLoc,
10330                  diag::err_cannot_form_pointer_to_member_of_reference_type)
10331               << dcl->getDeclName() << dcl->getType();
10332             return QualType();
10333           }
10334 
10335           while (cast<RecordDecl>(Ctx)->isAnonymousStructOrUnion())
10336             Ctx = Ctx->getParent();
10337 
10338           QualType MPTy = Context.getMemberPointerType(
10339               op->getType(),
10340               Context.getTypeDeclType(cast<RecordDecl>(Ctx)).getTypePtr());
10341           // Under the MS ABI, lock down the inheritance model now.
10342           if (Context.getTargetInfo().getCXXABI().isMicrosoft())
10343             (void)isCompleteType(OpLoc, MPTy);
10344           return MPTy;
10345         }
10346       }
10347     } else if (!isa<FunctionDecl>(dcl) && !isa<NonTypeTemplateParmDecl>(dcl))
10348       llvm_unreachable("Unknown/unexpected decl type");
10349   }
10350 
10351   if (AddressOfError != AO_No_Error) {
10352     diagnoseAddressOfInvalidType(*this, OpLoc, op, AddressOfError);
10353     return QualType();
10354   }
10355 
10356   if (lval == Expr::LV_IncompleteVoidType) {
10357     // Taking the address of a void variable is technically illegal, but we
10358     // allow it in cases which are otherwise valid.
10359     // Example: "extern void x; void* y = &x;".
10360     Diag(OpLoc, diag::ext_typecheck_addrof_void) << op->getSourceRange();
10361   }
10362 
10363   // If the operand has type "type", the result has type "pointer to type".
10364   if (op->getType()->isObjCObjectType())
10365     return Context.getObjCObjectPointerType(op->getType());
10366 
10367   // OpenCL v2.0 s6.12.5 - The unary operators & cannot be used with a block.
10368   if (getLangOpts().OpenCL && OrigOp.get()->getType()->isBlockPointerType()) {
10369     Diag(OpLoc, diag::err_typecheck_unary_expr) << OrigOp.get()->getType()
10370                                                 << op->getSourceRange();
10371     return QualType();
10372   }
10373 
10374   return Context.getPointerType(op->getType());
10375 }
10376 
10377 static void RecordModifiableNonNullParam(Sema &S, const Expr *Exp) {
10378   const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Exp);
10379   if (!DRE)
10380     return;
10381   const Decl *D = DRE->getDecl();
10382   if (!D)
10383     return;
10384   const ParmVarDecl *Param = dyn_cast<ParmVarDecl>(D);
10385   if (!Param)
10386     return;
10387   if (const FunctionDecl* FD = dyn_cast<FunctionDecl>(Param->getDeclContext()))
10388     if (!FD->hasAttr<NonNullAttr>() && !Param->hasAttr<NonNullAttr>())
10389       return;
10390   if (FunctionScopeInfo *FD = S.getCurFunction())
10391     if (!FD->ModifiedNonNullParams.count(Param))
10392       FD->ModifiedNonNullParams.insert(Param);
10393 }
10394 
10395 /// CheckIndirectionOperand - Type check unary indirection (prefix '*').
10396 static QualType CheckIndirectionOperand(Sema &S, Expr *Op, ExprValueKind &VK,
10397                                         SourceLocation OpLoc) {
10398   if (Op->isTypeDependent())
10399     return S.Context.DependentTy;
10400 
10401   ExprResult ConvResult = S.UsualUnaryConversions(Op);
10402   if (ConvResult.isInvalid())
10403     return QualType();
10404   Op = ConvResult.get();
10405   QualType OpTy = Op->getType();
10406   QualType Result;
10407 
10408   if (isa<CXXReinterpretCastExpr>(Op)) {
10409     QualType OpOrigType = Op->IgnoreParenCasts()->getType();
10410     S.CheckCompatibleReinterpretCast(OpOrigType, OpTy, /*IsDereference*/true,
10411                                      Op->getSourceRange());
10412   }
10413 
10414   if (const PointerType *PT = OpTy->getAs<PointerType>())
10415   {
10416     Result = PT->getPointeeType();
10417     // OpenCL v2.0 s6.12.5 - The unary operators * cannot be used with a block.
10418     if (S.getLangOpts().OpenCLVersion >= 200 && Result->isBlockPointerType()) {
10419       S.Diag(OpLoc, diag::err_opencl_dereferencing) << OpTy
10420                                                     << Op->getSourceRange();
10421       return QualType();
10422     }
10423   }
10424   else if (const ObjCObjectPointerType *OPT =
10425              OpTy->getAs<ObjCObjectPointerType>())
10426     Result = OPT->getPointeeType();
10427   else {
10428     ExprResult PR = S.CheckPlaceholderExpr(Op);
10429     if (PR.isInvalid()) return QualType();
10430     if (PR.get() != Op)
10431       return CheckIndirectionOperand(S, PR.get(), VK, OpLoc);
10432   }
10433 
10434   if (Result.isNull()) {
10435     S.Diag(OpLoc, diag::err_typecheck_indirection_requires_pointer)
10436       << OpTy << Op->getSourceRange();
10437     return QualType();
10438   }
10439 
10440   // Note that per both C89 and C99, indirection is always legal, even if Result
10441   // is an incomplete type or void.  It would be possible to warn about
10442   // dereferencing a void pointer, but it's completely well-defined, and such a
10443   // warning is unlikely to catch any mistakes. In C++, indirection is not valid
10444   // for pointers to 'void' but is fine for any other pointer type:
10445   //
10446   // C++ [expr.unary.op]p1:
10447   //   [...] the expression to which [the unary * operator] is applied shall
10448   //   be a pointer to an object type, or a pointer to a function type
10449   if (S.getLangOpts().CPlusPlus && Result->isVoidType())
10450     S.Diag(OpLoc, diag::ext_typecheck_indirection_through_void_pointer)
10451       << OpTy << Op->getSourceRange();
10452 
10453   // Dereferences are usually l-values...
10454   VK = VK_LValue;
10455 
10456   // ...except that certain expressions are never l-values in C.
10457   if (!S.getLangOpts().CPlusPlus && Result.isCForbiddenLValueType())
10458     VK = VK_RValue;
10459 
10460   return Result;
10461 }
10462 
10463 BinaryOperatorKind Sema::ConvertTokenKindToBinaryOpcode(tok::TokenKind Kind) {
10464   BinaryOperatorKind Opc;
10465   switch (Kind) {
10466   default: llvm_unreachable("Unknown binop!");
10467   case tok::periodstar:           Opc = BO_PtrMemD; break;
10468   case tok::arrowstar:            Opc = BO_PtrMemI; break;
10469   case tok::star:                 Opc = BO_Mul; break;
10470   case tok::slash:                Opc = BO_Div; break;
10471   case tok::percent:              Opc = BO_Rem; break;
10472   case tok::plus:                 Opc = BO_Add; break;
10473   case tok::minus:                Opc = BO_Sub; break;
10474   case tok::lessless:             Opc = BO_Shl; break;
10475   case tok::greatergreater:       Opc = BO_Shr; break;
10476   case tok::lessequal:            Opc = BO_LE; break;
10477   case tok::less:                 Opc = BO_LT; break;
10478   case tok::greaterequal:         Opc = BO_GE; break;
10479   case tok::greater:              Opc = BO_GT; break;
10480   case tok::exclaimequal:         Opc = BO_NE; break;
10481   case tok::equalequal:           Opc = BO_EQ; break;
10482   case tok::amp:                  Opc = BO_And; break;
10483   case tok::caret:                Opc = BO_Xor; break;
10484   case tok::pipe:                 Opc = BO_Or; break;
10485   case tok::ampamp:               Opc = BO_LAnd; break;
10486   case tok::pipepipe:             Opc = BO_LOr; break;
10487   case tok::equal:                Opc = BO_Assign; break;
10488   case tok::starequal:            Opc = BO_MulAssign; break;
10489   case tok::slashequal:           Opc = BO_DivAssign; break;
10490   case tok::percentequal:         Opc = BO_RemAssign; break;
10491   case tok::plusequal:            Opc = BO_AddAssign; break;
10492   case tok::minusequal:           Opc = BO_SubAssign; break;
10493   case tok::lesslessequal:        Opc = BO_ShlAssign; break;
10494   case tok::greatergreaterequal:  Opc = BO_ShrAssign; break;
10495   case tok::ampequal:             Opc = BO_AndAssign; break;
10496   case tok::caretequal:           Opc = BO_XorAssign; break;
10497   case tok::pipeequal:            Opc = BO_OrAssign; break;
10498   case tok::comma:                Opc = BO_Comma; break;
10499   }
10500   return Opc;
10501 }
10502 
10503 static inline UnaryOperatorKind ConvertTokenKindToUnaryOpcode(
10504   tok::TokenKind Kind) {
10505   UnaryOperatorKind Opc;
10506   switch (Kind) {
10507   default: llvm_unreachable("Unknown unary op!");
10508   case tok::plusplus:     Opc = UO_PreInc; break;
10509   case tok::minusminus:   Opc = UO_PreDec; break;
10510   case tok::amp:          Opc = UO_AddrOf; break;
10511   case tok::star:         Opc = UO_Deref; break;
10512   case tok::plus:         Opc = UO_Plus; break;
10513   case tok::minus:        Opc = UO_Minus; break;
10514   case tok::tilde:        Opc = UO_Not; break;
10515   case tok::exclaim:      Opc = UO_LNot; break;
10516   case tok::kw___real:    Opc = UO_Real; break;
10517   case tok::kw___imag:    Opc = UO_Imag; break;
10518   case tok::kw___extension__: Opc = UO_Extension; break;
10519   }
10520   return Opc;
10521 }
10522 
10523 /// DiagnoseSelfAssignment - Emits a warning if a value is assigned to itself.
10524 /// This warning is only emitted for builtin assignment operations. It is also
10525 /// suppressed in the event of macro expansions.
10526 static void DiagnoseSelfAssignment(Sema &S, Expr *LHSExpr, Expr *RHSExpr,
10527                                    SourceLocation OpLoc) {
10528   if (!S.ActiveTemplateInstantiations.empty())
10529     return;
10530   if (OpLoc.isInvalid() || OpLoc.isMacroID())
10531     return;
10532   LHSExpr = LHSExpr->IgnoreParenImpCasts();
10533   RHSExpr = RHSExpr->IgnoreParenImpCasts();
10534   const DeclRefExpr *LHSDeclRef = dyn_cast<DeclRefExpr>(LHSExpr);
10535   const DeclRefExpr *RHSDeclRef = dyn_cast<DeclRefExpr>(RHSExpr);
10536   if (!LHSDeclRef || !RHSDeclRef ||
10537       LHSDeclRef->getLocation().isMacroID() ||
10538       RHSDeclRef->getLocation().isMacroID())
10539     return;
10540   const ValueDecl *LHSDecl =
10541     cast<ValueDecl>(LHSDeclRef->getDecl()->getCanonicalDecl());
10542   const ValueDecl *RHSDecl =
10543     cast<ValueDecl>(RHSDeclRef->getDecl()->getCanonicalDecl());
10544   if (LHSDecl != RHSDecl)
10545     return;
10546   if (LHSDecl->getType().isVolatileQualified())
10547     return;
10548   if (const ReferenceType *RefTy = LHSDecl->getType()->getAs<ReferenceType>())
10549     if (RefTy->getPointeeType().isVolatileQualified())
10550       return;
10551 
10552   S.Diag(OpLoc, diag::warn_self_assignment)
10553       << LHSDeclRef->getType()
10554       << LHSExpr->getSourceRange() << RHSExpr->getSourceRange();
10555 }
10556 
10557 /// Check if a bitwise-& is performed on an Objective-C pointer.  This
10558 /// is usually indicative of introspection within the Objective-C pointer.
10559 static void checkObjCPointerIntrospection(Sema &S, ExprResult &L, ExprResult &R,
10560                                           SourceLocation OpLoc) {
10561   if (!S.getLangOpts().ObjC1)
10562     return;
10563 
10564   const Expr *ObjCPointerExpr = nullptr, *OtherExpr = nullptr;
10565   const Expr *LHS = L.get();
10566   const Expr *RHS = R.get();
10567 
10568   if (LHS->IgnoreParenCasts()->getType()->isObjCObjectPointerType()) {
10569     ObjCPointerExpr = LHS;
10570     OtherExpr = RHS;
10571   }
10572   else if (RHS->IgnoreParenCasts()->getType()->isObjCObjectPointerType()) {
10573     ObjCPointerExpr = RHS;
10574     OtherExpr = LHS;
10575   }
10576 
10577   // This warning is deliberately made very specific to reduce false
10578   // positives with logic that uses '&' for hashing.  This logic mainly
10579   // looks for code trying to introspect into tagged pointers, which
10580   // code should generally never do.
10581   if (ObjCPointerExpr && isa<IntegerLiteral>(OtherExpr->IgnoreParenCasts())) {
10582     unsigned Diag = diag::warn_objc_pointer_masking;
10583     // Determine if we are introspecting the result of performSelectorXXX.
10584     const Expr *Ex = ObjCPointerExpr->IgnoreParenCasts();
10585     // Special case messages to -performSelector and friends, which
10586     // can return non-pointer values boxed in a pointer value.
10587     // Some clients may wish to silence warnings in this subcase.
10588     if (const ObjCMessageExpr *ME = dyn_cast<ObjCMessageExpr>(Ex)) {
10589       Selector S = ME->getSelector();
10590       StringRef SelArg0 = S.getNameForSlot(0);
10591       if (SelArg0.startswith("performSelector"))
10592         Diag = diag::warn_objc_pointer_masking_performSelector;
10593     }
10594 
10595     S.Diag(OpLoc, Diag)
10596       << ObjCPointerExpr->getSourceRange();
10597   }
10598 }
10599 
10600 static NamedDecl *getDeclFromExpr(Expr *E) {
10601   if (!E)
10602     return nullptr;
10603   if (auto *DRE = dyn_cast<DeclRefExpr>(E))
10604     return DRE->getDecl();
10605   if (auto *ME = dyn_cast<MemberExpr>(E))
10606     return ME->getMemberDecl();
10607   if (auto *IRE = dyn_cast<ObjCIvarRefExpr>(E))
10608     return IRE->getDecl();
10609   return nullptr;
10610 }
10611 
10612 /// CreateBuiltinBinOp - Creates a new built-in binary operation with
10613 /// operator @p Opc at location @c TokLoc. This routine only supports
10614 /// built-in operations; ActOnBinOp handles overloaded operators.
10615 ExprResult Sema::CreateBuiltinBinOp(SourceLocation OpLoc,
10616                                     BinaryOperatorKind Opc,
10617                                     Expr *LHSExpr, Expr *RHSExpr) {
10618   if (getLangOpts().CPlusPlus11 && isa<InitListExpr>(RHSExpr)) {
10619     // The syntax only allows initializer lists on the RHS of assignment,
10620     // so we don't need to worry about accepting invalid code for
10621     // non-assignment operators.
10622     // C++11 5.17p9:
10623     //   The meaning of x = {v} [...] is that of x = T(v) [...]. The meaning
10624     //   of x = {} is x = T().
10625     InitializationKind Kind =
10626         InitializationKind::CreateDirectList(RHSExpr->getLocStart());
10627     InitializedEntity Entity =
10628         InitializedEntity::InitializeTemporary(LHSExpr->getType());
10629     InitializationSequence InitSeq(*this, Entity, Kind, RHSExpr);
10630     ExprResult Init = InitSeq.Perform(*this, Entity, Kind, RHSExpr);
10631     if (Init.isInvalid())
10632       return Init;
10633     RHSExpr = Init.get();
10634   }
10635 
10636   ExprResult LHS = LHSExpr, RHS = RHSExpr;
10637   QualType ResultTy;     // Result type of the binary operator.
10638   // The following two variables are used for compound assignment operators
10639   QualType CompLHSTy;    // Type of LHS after promotions for computation
10640   QualType CompResultTy; // Type of computation result
10641   ExprValueKind VK = VK_RValue;
10642   ExprObjectKind OK = OK_Ordinary;
10643 
10644   if (!getLangOpts().CPlusPlus) {
10645     // C cannot handle TypoExpr nodes on either side of a binop because it
10646     // doesn't handle dependent types properly, so make sure any TypoExprs have
10647     // been dealt with before checking the operands.
10648     LHS = CorrectDelayedTyposInExpr(LHSExpr);
10649     RHS = CorrectDelayedTyposInExpr(RHSExpr, [Opc, LHS](Expr *E) {
10650       if (Opc != BO_Assign)
10651         return ExprResult(E);
10652       // Avoid correcting the RHS to the same Expr as the LHS.
10653       Decl *D = getDeclFromExpr(E);
10654       return (D && D == getDeclFromExpr(LHS.get())) ? ExprError() : E;
10655     });
10656     if (!LHS.isUsable() || !RHS.isUsable())
10657       return ExprError();
10658   }
10659 
10660   if (getLangOpts().OpenCL) {
10661     // OpenCLC v2.0 s6.13.11.1 allows atomic variables to be initialized by
10662     // the ATOMIC_VAR_INIT macro.
10663     if (LHSExpr->getType()->isAtomicType() ||
10664         RHSExpr->getType()->isAtomicType()) {
10665       SourceRange SR(LHSExpr->getLocStart(), RHSExpr->getLocEnd());
10666       if (BO_Assign == Opc)
10667         Diag(OpLoc, diag::err_atomic_init_constant) << SR;
10668       else
10669         ResultTy = InvalidOperands(OpLoc, LHS, RHS);
10670       return ExprError();
10671     }
10672   }
10673 
10674   switch (Opc) {
10675   case BO_Assign:
10676     ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, QualType());
10677     if (getLangOpts().CPlusPlus &&
10678         LHS.get()->getObjectKind() != OK_ObjCProperty) {
10679       VK = LHS.get()->getValueKind();
10680       OK = LHS.get()->getObjectKind();
10681     }
10682     if (!ResultTy.isNull()) {
10683       DiagnoseSelfAssignment(*this, LHS.get(), RHS.get(), OpLoc);
10684       DiagnoseSelfMove(LHS.get(), RHS.get(), OpLoc);
10685     }
10686     RecordModifiableNonNullParam(*this, LHS.get());
10687     break;
10688   case BO_PtrMemD:
10689   case BO_PtrMemI:
10690     ResultTy = CheckPointerToMemberOperands(LHS, RHS, VK, OpLoc,
10691                                             Opc == BO_PtrMemI);
10692     break;
10693   case BO_Mul:
10694   case BO_Div:
10695     ResultTy = CheckMultiplyDivideOperands(LHS, RHS, OpLoc, false,
10696                                            Opc == BO_Div);
10697     break;
10698   case BO_Rem:
10699     ResultTy = CheckRemainderOperands(LHS, RHS, OpLoc);
10700     break;
10701   case BO_Add:
10702     ResultTy = CheckAdditionOperands(LHS, RHS, OpLoc, Opc);
10703     break;
10704   case BO_Sub:
10705     ResultTy = CheckSubtractionOperands(LHS, RHS, OpLoc);
10706     break;
10707   case BO_Shl:
10708   case BO_Shr:
10709     ResultTy = CheckShiftOperands(LHS, RHS, OpLoc, Opc);
10710     break;
10711   case BO_LE:
10712   case BO_LT:
10713   case BO_GE:
10714   case BO_GT:
10715     ResultTy = CheckCompareOperands(LHS, RHS, OpLoc, Opc, true);
10716     break;
10717   case BO_EQ:
10718   case BO_NE:
10719     ResultTy = CheckCompareOperands(LHS, RHS, OpLoc, Opc, false);
10720     break;
10721   case BO_And:
10722     checkObjCPointerIntrospection(*this, LHS, RHS, OpLoc);
10723   case BO_Xor:
10724   case BO_Or:
10725     ResultTy = CheckBitwiseOperands(LHS, RHS, OpLoc);
10726     break;
10727   case BO_LAnd:
10728   case BO_LOr:
10729     ResultTy = CheckLogicalOperands(LHS, RHS, OpLoc, Opc);
10730     break;
10731   case BO_MulAssign:
10732   case BO_DivAssign:
10733     CompResultTy = CheckMultiplyDivideOperands(LHS, RHS, OpLoc, true,
10734                                                Opc == BO_DivAssign);
10735     CompLHSTy = CompResultTy;
10736     if (!CompResultTy.isNull() && !LHS.isInvalid() && !RHS.isInvalid())
10737       ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy);
10738     break;
10739   case BO_RemAssign:
10740     CompResultTy = CheckRemainderOperands(LHS, RHS, OpLoc, true);
10741     CompLHSTy = CompResultTy;
10742     if (!CompResultTy.isNull() && !LHS.isInvalid() && !RHS.isInvalid())
10743       ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy);
10744     break;
10745   case BO_AddAssign:
10746     CompResultTy = CheckAdditionOperands(LHS, RHS, OpLoc, Opc, &CompLHSTy);
10747     if (!CompResultTy.isNull() && !LHS.isInvalid() && !RHS.isInvalid())
10748       ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy);
10749     break;
10750   case BO_SubAssign:
10751     CompResultTy = CheckSubtractionOperands(LHS, RHS, OpLoc, &CompLHSTy);
10752     if (!CompResultTy.isNull() && !LHS.isInvalid() && !RHS.isInvalid())
10753       ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy);
10754     break;
10755   case BO_ShlAssign:
10756   case BO_ShrAssign:
10757     CompResultTy = CheckShiftOperands(LHS, RHS, OpLoc, Opc, true);
10758     CompLHSTy = CompResultTy;
10759     if (!CompResultTy.isNull() && !LHS.isInvalid() && !RHS.isInvalid())
10760       ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy);
10761     break;
10762   case BO_AndAssign:
10763   case BO_OrAssign: // fallthrough
10764     DiagnoseSelfAssignment(*this, LHS.get(), RHS.get(), OpLoc);
10765   case BO_XorAssign:
10766     CompResultTy = CheckBitwiseOperands(LHS, RHS, OpLoc, true);
10767     CompLHSTy = CompResultTy;
10768     if (!CompResultTy.isNull() && !LHS.isInvalid() && !RHS.isInvalid())
10769       ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy);
10770     break;
10771   case BO_Comma:
10772     ResultTy = CheckCommaOperands(*this, LHS, RHS, OpLoc);
10773     if (getLangOpts().CPlusPlus && !RHS.isInvalid()) {
10774       VK = RHS.get()->getValueKind();
10775       OK = RHS.get()->getObjectKind();
10776     }
10777     break;
10778   }
10779   if (ResultTy.isNull() || LHS.isInvalid() || RHS.isInvalid())
10780     return ExprError();
10781 
10782   // Check for array bounds violations for both sides of the BinaryOperator
10783   CheckArrayAccess(LHS.get());
10784   CheckArrayAccess(RHS.get());
10785 
10786   if (const ObjCIsaExpr *OISA = dyn_cast<ObjCIsaExpr>(LHS.get()->IgnoreParenCasts())) {
10787     NamedDecl *ObjectSetClass = LookupSingleName(TUScope,
10788                                                  &Context.Idents.get("object_setClass"),
10789                                                  SourceLocation(), LookupOrdinaryName);
10790     if (ObjectSetClass && isa<ObjCIsaExpr>(LHS.get())) {
10791       SourceLocation RHSLocEnd = getLocForEndOfToken(RHS.get()->getLocEnd());
10792       Diag(LHS.get()->getExprLoc(), diag::warn_objc_isa_assign) <<
10793       FixItHint::CreateInsertion(LHS.get()->getLocStart(), "object_setClass(") <<
10794       FixItHint::CreateReplacement(SourceRange(OISA->getOpLoc(), OpLoc), ",") <<
10795       FixItHint::CreateInsertion(RHSLocEnd, ")");
10796     }
10797     else
10798       Diag(LHS.get()->getExprLoc(), diag::warn_objc_isa_assign);
10799   }
10800   else if (const ObjCIvarRefExpr *OIRE =
10801            dyn_cast<ObjCIvarRefExpr>(LHS.get()->IgnoreParenCasts()))
10802     DiagnoseDirectIsaAccess(*this, OIRE, OpLoc, RHS.get());
10803 
10804   if (CompResultTy.isNull())
10805     return new (Context) BinaryOperator(LHS.get(), RHS.get(), Opc, ResultTy, VK,
10806                                         OK, OpLoc, FPFeatures.fp_contract);
10807   if (getLangOpts().CPlusPlus && LHS.get()->getObjectKind() !=
10808       OK_ObjCProperty) {
10809     VK = VK_LValue;
10810     OK = LHS.get()->getObjectKind();
10811   }
10812   return new (Context) CompoundAssignOperator(
10813       LHS.get(), RHS.get(), Opc, ResultTy, VK, OK, CompLHSTy, CompResultTy,
10814       OpLoc, FPFeatures.fp_contract);
10815 }
10816 
10817 /// DiagnoseBitwisePrecedence - Emit a warning when bitwise and comparison
10818 /// operators are mixed in a way that suggests that the programmer forgot that
10819 /// comparison operators have higher precedence. The most typical example of
10820 /// such code is "flags & 0x0020 != 0", which is equivalent to "flags & 1".
10821 static void DiagnoseBitwisePrecedence(Sema &Self, BinaryOperatorKind Opc,
10822                                       SourceLocation OpLoc, Expr *LHSExpr,
10823                                       Expr *RHSExpr) {
10824   BinaryOperator *LHSBO = dyn_cast<BinaryOperator>(LHSExpr);
10825   BinaryOperator *RHSBO = dyn_cast<BinaryOperator>(RHSExpr);
10826 
10827   // Check that one of the sides is a comparison operator and the other isn't.
10828   bool isLeftComp = LHSBO && LHSBO->isComparisonOp();
10829   bool isRightComp = RHSBO && RHSBO->isComparisonOp();
10830   if (isLeftComp == isRightComp)
10831     return;
10832 
10833   // Bitwise operations are sometimes used as eager logical ops.
10834   // Don't diagnose this.
10835   bool isLeftBitwise = LHSBO && LHSBO->isBitwiseOp();
10836   bool isRightBitwise = RHSBO && RHSBO->isBitwiseOp();
10837   if (isLeftBitwise || isRightBitwise)
10838     return;
10839 
10840   SourceRange DiagRange = isLeftComp ? SourceRange(LHSExpr->getLocStart(),
10841                                                    OpLoc)
10842                                      : SourceRange(OpLoc, RHSExpr->getLocEnd());
10843   StringRef OpStr = isLeftComp ? LHSBO->getOpcodeStr() : RHSBO->getOpcodeStr();
10844   SourceRange ParensRange = isLeftComp ?
10845       SourceRange(LHSBO->getRHS()->getLocStart(), RHSExpr->getLocEnd())
10846     : SourceRange(LHSExpr->getLocStart(), RHSBO->getLHS()->getLocEnd());
10847 
10848   Self.Diag(OpLoc, diag::warn_precedence_bitwise_rel)
10849     << DiagRange << BinaryOperator::getOpcodeStr(Opc) << OpStr;
10850   SuggestParentheses(Self, OpLoc,
10851     Self.PDiag(diag::note_precedence_silence) << OpStr,
10852     (isLeftComp ? LHSExpr : RHSExpr)->getSourceRange());
10853   SuggestParentheses(Self, OpLoc,
10854     Self.PDiag(diag::note_precedence_bitwise_first)
10855       << BinaryOperator::getOpcodeStr(Opc),
10856     ParensRange);
10857 }
10858 
10859 /// \brief It accepts a '&&' expr that is inside a '||' one.
10860 /// Emit a diagnostic together with a fixit hint that wraps the '&&' expression
10861 /// in parentheses.
10862 static void
10863 EmitDiagnosticForLogicalAndInLogicalOr(Sema &Self, SourceLocation OpLoc,
10864                                        BinaryOperator *Bop) {
10865   assert(Bop->getOpcode() == BO_LAnd);
10866   Self.Diag(Bop->getOperatorLoc(), diag::warn_logical_and_in_logical_or)
10867       << Bop->getSourceRange() << OpLoc;
10868   SuggestParentheses(Self, Bop->getOperatorLoc(),
10869     Self.PDiag(diag::note_precedence_silence)
10870       << Bop->getOpcodeStr(),
10871     Bop->getSourceRange());
10872 }
10873 
10874 /// \brief Returns true if the given expression can be evaluated as a constant
10875 /// 'true'.
10876 static bool EvaluatesAsTrue(Sema &S, Expr *E) {
10877   bool Res;
10878   return !E->isValueDependent() &&
10879          E->EvaluateAsBooleanCondition(Res, S.getASTContext()) && Res;
10880 }
10881 
10882 /// \brief Returns true if the given expression can be evaluated as a constant
10883 /// 'false'.
10884 static bool EvaluatesAsFalse(Sema &S, Expr *E) {
10885   bool Res;
10886   return !E->isValueDependent() &&
10887          E->EvaluateAsBooleanCondition(Res, S.getASTContext()) && !Res;
10888 }
10889 
10890 /// \brief Look for '&&' in the left hand of a '||' expr.
10891 static void DiagnoseLogicalAndInLogicalOrLHS(Sema &S, SourceLocation OpLoc,
10892                                              Expr *LHSExpr, Expr *RHSExpr) {
10893   if (BinaryOperator *Bop = dyn_cast<BinaryOperator>(LHSExpr)) {
10894     if (Bop->getOpcode() == BO_LAnd) {
10895       // If it's "a && b || 0" don't warn since the precedence doesn't matter.
10896       if (EvaluatesAsFalse(S, RHSExpr))
10897         return;
10898       // If it's "1 && a || b" don't warn since the precedence doesn't matter.
10899       if (!EvaluatesAsTrue(S, Bop->getLHS()))
10900         return EmitDiagnosticForLogicalAndInLogicalOr(S, OpLoc, Bop);
10901     } else if (Bop->getOpcode() == BO_LOr) {
10902       if (BinaryOperator *RBop = dyn_cast<BinaryOperator>(Bop->getRHS())) {
10903         // If it's "a || b && 1 || c" we didn't warn earlier for
10904         // "a || b && 1", but warn now.
10905         if (RBop->getOpcode() == BO_LAnd && EvaluatesAsTrue(S, RBop->getRHS()))
10906           return EmitDiagnosticForLogicalAndInLogicalOr(S, OpLoc, RBop);
10907       }
10908     }
10909   }
10910 }
10911 
10912 /// \brief Look for '&&' in the right hand of a '||' expr.
10913 static void DiagnoseLogicalAndInLogicalOrRHS(Sema &S, SourceLocation OpLoc,
10914                                              Expr *LHSExpr, Expr *RHSExpr) {
10915   if (BinaryOperator *Bop = dyn_cast<BinaryOperator>(RHSExpr)) {
10916     if (Bop->getOpcode() == BO_LAnd) {
10917       // If it's "0 || a && b" don't warn since the precedence doesn't matter.
10918       if (EvaluatesAsFalse(S, LHSExpr))
10919         return;
10920       // If it's "a || b && 1" don't warn since the precedence doesn't matter.
10921       if (!EvaluatesAsTrue(S, Bop->getRHS()))
10922         return EmitDiagnosticForLogicalAndInLogicalOr(S, OpLoc, Bop);
10923     }
10924   }
10925 }
10926 
10927 /// \brief Look for bitwise op in the left or right hand of a bitwise op with
10928 /// lower precedence and emit a diagnostic together with a fixit hint that wraps
10929 /// the '&' expression in parentheses.
10930 static void DiagnoseBitwiseOpInBitwiseOp(Sema &S, BinaryOperatorKind Opc,
10931                                          SourceLocation OpLoc, Expr *SubExpr) {
10932   if (BinaryOperator *Bop = dyn_cast<BinaryOperator>(SubExpr)) {
10933     if (Bop->isBitwiseOp() && Bop->getOpcode() < Opc) {
10934       S.Diag(Bop->getOperatorLoc(), diag::warn_bitwise_op_in_bitwise_op)
10935         << Bop->getOpcodeStr() << BinaryOperator::getOpcodeStr(Opc)
10936         << Bop->getSourceRange() << OpLoc;
10937       SuggestParentheses(S, Bop->getOperatorLoc(),
10938         S.PDiag(diag::note_precedence_silence)
10939           << Bop->getOpcodeStr(),
10940         Bop->getSourceRange());
10941     }
10942   }
10943 }
10944 
10945 static void DiagnoseAdditionInShift(Sema &S, SourceLocation OpLoc,
10946                                     Expr *SubExpr, StringRef Shift) {
10947   if (BinaryOperator *Bop = dyn_cast<BinaryOperator>(SubExpr)) {
10948     if (Bop->getOpcode() == BO_Add || Bop->getOpcode() == BO_Sub) {
10949       StringRef Op = Bop->getOpcodeStr();
10950       S.Diag(Bop->getOperatorLoc(), diag::warn_addition_in_bitshift)
10951           << Bop->getSourceRange() << OpLoc << Shift << Op;
10952       SuggestParentheses(S, Bop->getOperatorLoc(),
10953           S.PDiag(diag::note_precedence_silence) << Op,
10954           Bop->getSourceRange());
10955     }
10956   }
10957 }
10958 
10959 static void DiagnoseShiftCompare(Sema &S, SourceLocation OpLoc,
10960                                  Expr *LHSExpr, Expr *RHSExpr) {
10961   CXXOperatorCallExpr *OCE = dyn_cast<CXXOperatorCallExpr>(LHSExpr);
10962   if (!OCE)
10963     return;
10964 
10965   FunctionDecl *FD = OCE->getDirectCallee();
10966   if (!FD || !FD->isOverloadedOperator())
10967     return;
10968 
10969   OverloadedOperatorKind Kind = FD->getOverloadedOperator();
10970   if (Kind != OO_LessLess && Kind != OO_GreaterGreater)
10971     return;
10972 
10973   S.Diag(OpLoc, diag::warn_overloaded_shift_in_comparison)
10974       << LHSExpr->getSourceRange() << RHSExpr->getSourceRange()
10975       << (Kind == OO_LessLess);
10976   SuggestParentheses(S, OCE->getOperatorLoc(),
10977                      S.PDiag(diag::note_precedence_silence)
10978                          << (Kind == OO_LessLess ? "<<" : ">>"),
10979                      OCE->getSourceRange());
10980   SuggestParentheses(S, OpLoc,
10981                      S.PDiag(diag::note_evaluate_comparison_first),
10982                      SourceRange(OCE->getArg(1)->getLocStart(),
10983                                  RHSExpr->getLocEnd()));
10984 }
10985 
10986 /// DiagnoseBinOpPrecedence - Emit warnings for expressions with tricky
10987 /// precedence.
10988 static void DiagnoseBinOpPrecedence(Sema &Self, BinaryOperatorKind Opc,
10989                                     SourceLocation OpLoc, Expr *LHSExpr,
10990                                     Expr *RHSExpr){
10991   // Diagnose "arg1 'bitwise' arg2 'eq' arg3".
10992   if (BinaryOperator::isBitwiseOp(Opc))
10993     DiagnoseBitwisePrecedence(Self, Opc, OpLoc, LHSExpr, RHSExpr);
10994 
10995   // Diagnose "arg1 & arg2 | arg3"
10996   if ((Opc == BO_Or || Opc == BO_Xor) &&
10997       !OpLoc.isMacroID()/* Don't warn in macros. */) {
10998     DiagnoseBitwiseOpInBitwiseOp(Self, Opc, OpLoc, LHSExpr);
10999     DiagnoseBitwiseOpInBitwiseOp(Self, Opc, OpLoc, RHSExpr);
11000   }
11001 
11002   // Warn about arg1 || arg2 && arg3, as GCC 4.3+ does.
11003   // We don't warn for 'assert(a || b && "bad")' since this is safe.
11004   if (Opc == BO_LOr && !OpLoc.isMacroID()/* Don't warn in macros. */) {
11005     DiagnoseLogicalAndInLogicalOrLHS(Self, OpLoc, LHSExpr, RHSExpr);
11006     DiagnoseLogicalAndInLogicalOrRHS(Self, OpLoc, LHSExpr, RHSExpr);
11007   }
11008 
11009   if ((Opc == BO_Shl && LHSExpr->getType()->isIntegralType(Self.getASTContext()))
11010       || Opc == BO_Shr) {
11011     StringRef Shift = BinaryOperator::getOpcodeStr(Opc);
11012     DiagnoseAdditionInShift(Self, OpLoc, LHSExpr, Shift);
11013     DiagnoseAdditionInShift(Self, OpLoc, RHSExpr, Shift);
11014   }
11015 
11016   // Warn on overloaded shift operators and comparisons, such as:
11017   // cout << 5 == 4;
11018   if (BinaryOperator::isComparisonOp(Opc))
11019     DiagnoseShiftCompare(Self, OpLoc, LHSExpr, RHSExpr);
11020 }
11021 
11022 // Binary Operators.  'Tok' is the token for the operator.
11023 ExprResult Sema::ActOnBinOp(Scope *S, SourceLocation TokLoc,
11024                             tok::TokenKind Kind,
11025                             Expr *LHSExpr, Expr *RHSExpr) {
11026   BinaryOperatorKind Opc = ConvertTokenKindToBinaryOpcode(Kind);
11027   assert(LHSExpr && "ActOnBinOp(): missing left expression");
11028   assert(RHSExpr && "ActOnBinOp(): missing right expression");
11029 
11030   // Emit warnings for tricky precedence issues, e.g. "bitfield & 0x4 == 0"
11031   DiagnoseBinOpPrecedence(*this, Opc, TokLoc, LHSExpr, RHSExpr);
11032 
11033   return BuildBinOp(S, TokLoc, Opc, LHSExpr, RHSExpr);
11034 }
11035 
11036 /// Build an overloaded binary operator expression in the given scope.
11037 static ExprResult BuildOverloadedBinOp(Sema &S, Scope *Sc, SourceLocation OpLoc,
11038                                        BinaryOperatorKind Opc,
11039                                        Expr *LHS, Expr *RHS) {
11040   // Find all of the overloaded operators visible from this
11041   // point. We perform both an operator-name lookup from the local
11042   // scope and an argument-dependent lookup based on the types of
11043   // the arguments.
11044   UnresolvedSet<16> Functions;
11045   OverloadedOperatorKind OverOp
11046     = BinaryOperator::getOverloadedOperator(Opc);
11047   if (Sc && OverOp != OO_None && OverOp != OO_Equal)
11048     S.LookupOverloadedOperatorName(OverOp, Sc, LHS->getType(),
11049                                    RHS->getType(), Functions);
11050 
11051   // Build the (potentially-overloaded, potentially-dependent)
11052   // binary operation.
11053   return S.CreateOverloadedBinOp(OpLoc, Opc, Functions, LHS, RHS);
11054 }
11055 
11056 ExprResult Sema::BuildBinOp(Scope *S, SourceLocation OpLoc,
11057                             BinaryOperatorKind Opc,
11058                             Expr *LHSExpr, Expr *RHSExpr) {
11059   // We want to end up calling one of checkPseudoObjectAssignment
11060   // (if the LHS is a pseudo-object), BuildOverloadedBinOp (if
11061   // both expressions are overloadable or either is type-dependent),
11062   // or CreateBuiltinBinOp (in any other case).  We also want to get
11063   // any placeholder types out of the way.
11064 
11065   // Handle pseudo-objects in the LHS.
11066   if (const BuiltinType *pty = LHSExpr->getType()->getAsPlaceholderType()) {
11067     // Assignments with a pseudo-object l-value need special analysis.
11068     if (pty->getKind() == BuiltinType::PseudoObject &&
11069         BinaryOperator::isAssignmentOp(Opc))
11070       return checkPseudoObjectAssignment(S, OpLoc, Opc, LHSExpr, RHSExpr);
11071 
11072     // Don't resolve overloads if the other type is overloadable.
11073     if (pty->getKind() == BuiltinType::Overload) {
11074       // We can't actually test that if we still have a placeholder,
11075       // though.  Fortunately, none of the exceptions we see in that
11076       // code below are valid when the LHS is an overload set.  Note
11077       // that an overload set can be dependently-typed, but it never
11078       // instantiates to having an overloadable type.
11079       ExprResult resolvedRHS = CheckPlaceholderExpr(RHSExpr);
11080       if (resolvedRHS.isInvalid()) return ExprError();
11081       RHSExpr = resolvedRHS.get();
11082 
11083       if (RHSExpr->isTypeDependent() ||
11084           RHSExpr->getType()->isOverloadableType())
11085         return BuildOverloadedBinOp(*this, S, OpLoc, Opc, LHSExpr, RHSExpr);
11086     }
11087 
11088     ExprResult LHS = CheckPlaceholderExpr(LHSExpr);
11089     if (LHS.isInvalid()) return ExprError();
11090     LHSExpr = LHS.get();
11091   }
11092 
11093   // Handle pseudo-objects in the RHS.
11094   if (const BuiltinType *pty = RHSExpr->getType()->getAsPlaceholderType()) {
11095     // An overload in the RHS can potentially be resolved by the type
11096     // being assigned to.
11097     if (Opc == BO_Assign && pty->getKind() == BuiltinType::Overload) {
11098       if (LHSExpr->isTypeDependent() || RHSExpr->isTypeDependent())
11099         return BuildOverloadedBinOp(*this, S, OpLoc, Opc, LHSExpr, RHSExpr);
11100 
11101       if (LHSExpr->getType()->isOverloadableType())
11102         return BuildOverloadedBinOp(*this, S, OpLoc, Opc, LHSExpr, RHSExpr);
11103 
11104       return CreateBuiltinBinOp(OpLoc, Opc, LHSExpr, RHSExpr);
11105     }
11106 
11107     // Don't resolve overloads if the other type is overloadable.
11108     if (pty->getKind() == BuiltinType::Overload &&
11109         LHSExpr->getType()->isOverloadableType())
11110       return BuildOverloadedBinOp(*this, S, OpLoc, Opc, LHSExpr, RHSExpr);
11111 
11112     ExprResult resolvedRHS = CheckPlaceholderExpr(RHSExpr);
11113     if (!resolvedRHS.isUsable()) return ExprError();
11114     RHSExpr = resolvedRHS.get();
11115   }
11116 
11117   if (getLangOpts().CPlusPlus) {
11118     // If either expression is type-dependent, always build an
11119     // overloaded op.
11120     if (LHSExpr->isTypeDependent() || RHSExpr->isTypeDependent())
11121       return BuildOverloadedBinOp(*this, S, OpLoc, Opc, LHSExpr, RHSExpr);
11122 
11123     // Otherwise, build an overloaded op if either expression has an
11124     // overloadable type.
11125     if (LHSExpr->getType()->isOverloadableType() ||
11126         RHSExpr->getType()->isOverloadableType())
11127       return BuildOverloadedBinOp(*this, S, OpLoc, Opc, LHSExpr, RHSExpr);
11128   }
11129 
11130   // Build a built-in binary operation.
11131   return CreateBuiltinBinOp(OpLoc, Opc, LHSExpr, RHSExpr);
11132 }
11133 
11134 ExprResult Sema::CreateBuiltinUnaryOp(SourceLocation OpLoc,
11135                                       UnaryOperatorKind Opc,
11136                                       Expr *InputExpr) {
11137   ExprResult Input = InputExpr;
11138   ExprValueKind VK = VK_RValue;
11139   ExprObjectKind OK = OK_Ordinary;
11140   QualType resultType;
11141   if (getLangOpts().OpenCL) {
11142     // The only legal unary operation for atomics is '&'.
11143     if (Opc != UO_AddrOf && InputExpr->getType()->isAtomicType()) {
11144       return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr)
11145                        << InputExpr->getType()
11146                        << Input.get()->getSourceRange());
11147     }
11148   }
11149   switch (Opc) {
11150   case UO_PreInc:
11151   case UO_PreDec:
11152   case UO_PostInc:
11153   case UO_PostDec:
11154     resultType = CheckIncrementDecrementOperand(*this, Input.get(), VK, OK,
11155                                                 OpLoc,
11156                                                 Opc == UO_PreInc ||
11157                                                 Opc == UO_PostInc,
11158                                                 Opc == UO_PreInc ||
11159                                                 Opc == UO_PreDec);
11160     break;
11161   case UO_AddrOf:
11162     resultType = CheckAddressOfOperand(Input, OpLoc);
11163     RecordModifiableNonNullParam(*this, InputExpr);
11164     break;
11165   case UO_Deref: {
11166     Input = DefaultFunctionArrayLvalueConversion(Input.get());
11167     if (Input.isInvalid()) return ExprError();
11168     resultType = CheckIndirectionOperand(*this, Input.get(), VK, OpLoc);
11169     break;
11170   }
11171   case UO_Plus:
11172   case UO_Minus:
11173     Input = UsualUnaryConversions(Input.get());
11174     if (Input.isInvalid()) return ExprError();
11175     resultType = Input.get()->getType();
11176     if (resultType->isDependentType())
11177       break;
11178     if (resultType->isArithmeticType()) // C99 6.5.3.3p1
11179       break;
11180     else if (resultType->isVectorType() &&
11181              // The z vector extensions don't allow + or - with bool vectors.
11182              (!Context.getLangOpts().ZVector ||
11183               resultType->getAs<VectorType>()->getVectorKind() !=
11184               VectorType::AltiVecBool))
11185       break;
11186     else if (getLangOpts().CPlusPlus && // C++ [expr.unary.op]p6
11187              Opc == UO_Plus &&
11188              resultType->isPointerType())
11189       break;
11190 
11191     return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr)
11192       << resultType << Input.get()->getSourceRange());
11193 
11194   case UO_Not: // bitwise complement
11195     Input = UsualUnaryConversions(Input.get());
11196     if (Input.isInvalid())
11197       return ExprError();
11198     resultType = Input.get()->getType();
11199     if (resultType->isDependentType())
11200       break;
11201     // C99 6.5.3.3p1. We allow complex int and float as a GCC extension.
11202     if (resultType->isComplexType() || resultType->isComplexIntegerType())
11203       // C99 does not support '~' for complex conjugation.
11204       Diag(OpLoc, diag::ext_integer_complement_complex)
11205           << resultType << Input.get()->getSourceRange();
11206     else if (resultType->hasIntegerRepresentation())
11207       break;
11208     else if (resultType->isExtVectorType()) {
11209       if (Context.getLangOpts().OpenCL) {
11210         // OpenCL v1.1 s6.3.f: The bitwise operator not (~) does not operate
11211         // on vector float types.
11212         QualType T = resultType->getAs<ExtVectorType>()->getElementType();
11213         if (!T->isIntegerType())
11214           return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr)
11215                            << resultType << Input.get()->getSourceRange());
11216       }
11217       break;
11218     } else {
11219       return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr)
11220                        << resultType << Input.get()->getSourceRange());
11221     }
11222     break;
11223 
11224   case UO_LNot: // logical negation
11225     // Unlike +/-/~, integer promotions aren't done here (C99 6.5.3.3p5).
11226     Input = DefaultFunctionArrayLvalueConversion(Input.get());
11227     if (Input.isInvalid()) return ExprError();
11228     resultType = Input.get()->getType();
11229 
11230     // Though we still have to promote half FP to float...
11231     if (resultType->isHalfType() && !Context.getLangOpts().NativeHalfType) {
11232       Input = ImpCastExprToType(Input.get(), Context.FloatTy, CK_FloatingCast).get();
11233       resultType = Context.FloatTy;
11234     }
11235 
11236     if (resultType->isDependentType())
11237       break;
11238     if (resultType->isScalarType() && !isScopedEnumerationType(resultType)) {
11239       // C99 6.5.3.3p1: ok, fallthrough;
11240       if (Context.getLangOpts().CPlusPlus) {
11241         // C++03 [expr.unary.op]p8, C++0x [expr.unary.op]p9:
11242         // operand contextually converted to bool.
11243         Input = ImpCastExprToType(Input.get(), Context.BoolTy,
11244                                   ScalarTypeToBooleanCastKind(resultType));
11245       } else if (Context.getLangOpts().OpenCL &&
11246                  Context.getLangOpts().OpenCLVersion < 120) {
11247         // OpenCL v1.1 6.3.h: The logical operator not (!) does not
11248         // operate on scalar float types.
11249         if (!resultType->isIntegerType())
11250           return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr)
11251                            << resultType << Input.get()->getSourceRange());
11252       }
11253     } else if (resultType->isExtVectorType()) {
11254       if (Context.getLangOpts().OpenCL &&
11255           Context.getLangOpts().OpenCLVersion < 120) {
11256         // OpenCL v1.1 6.3.h: The logical operator not (!) does not
11257         // operate on vector float types.
11258         QualType T = resultType->getAs<ExtVectorType>()->getElementType();
11259         if (!T->isIntegerType())
11260           return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr)
11261                            << resultType << Input.get()->getSourceRange());
11262       }
11263       // Vector logical not returns the signed variant of the operand type.
11264       resultType = GetSignedVectorType(resultType);
11265       break;
11266     } else {
11267       return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr)
11268         << resultType << Input.get()->getSourceRange());
11269     }
11270 
11271     // LNot always has type int. C99 6.5.3.3p5.
11272     // In C++, it's bool. C++ 5.3.1p8
11273     resultType = Context.getLogicalOperationType();
11274     break;
11275   case UO_Real:
11276   case UO_Imag:
11277     resultType = CheckRealImagOperand(*this, Input, OpLoc, Opc == UO_Real);
11278     // _Real maps ordinary l-values into ordinary l-values. _Imag maps ordinary
11279     // complex l-values to ordinary l-values and all other values to r-values.
11280     if (Input.isInvalid()) return ExprError();
11281     if (Opc == UO_Real || Input.get()->getType()->isAnyComplexType()) {
11282       if (Input.get()->getValueKind() != VK_RValue &&
11283           Input.get()->getObjectKind() == OK_Ordinary)
11284         VK = Input.get()->getValueKind();
11285     } else if (!getLangOpts().CPlusPlus) {
11286       // In C, a volatile scalar is read by __imag. In C++, it is not.
11287       Input = DefaultLvalueConversion(Input.get());
11288     }
11289     break;
11290   case UO_Extension:
11291   case UO_Coawait:
11292     resultType = Input.get()->getType();
11293     VK = Input.get()->getValueKind();
11294     OK = Input.get()->getObjectKind();
11295     break;
11296   }
11297   if (resultType.isNull() || Input.isInvalid())
11298     return ExprError();
11299 
11300   // Check for array bounds violations in the operand of the UnaryOperator,
11301   // except for the '*' and '&' operators that have to be handled specially
11302   // by CheckArrayAccess (as there are special cases like &array[arraysize]
11303   // that are explicitly defined as valid by the standard).
11304   if (Opc != UO_AddrOf && Opc != UO_Deref)
11305     CheckArrayAccess(Input.get());
11306 
11307   return new (Context)
11308       UnaryOperator(Input.get(), Opc, resultType, VK, OK, OpLoc);
11309 }
11310 
11311 /// \brief Determine whether the given expression is a qualified member
11312 /// access expression, of a form that could be turned into a pointer to member
11313 /// with the address-of operator.
11314 static bool isQualifiedMemberAccess(Expr *E) {
11315   if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E)) {
11316     if (!DRE->getQualifier())
11317       return false;
11318 
11319     ValueDecl *VD = DRE->getDecl();
11320     if (!VD->isCXXClassMember())
11321       return false;
11322 
11323     if (isa<FieldDecl>(VD) || isa<IndirectFieldDecl>(VD))
11324       return true;
11325     if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(VD))
11326       return Method->isInstance();
11327 
11328     return false;
11329   }
11330 
11331   if (UnresolvedLookupExpr *ULE = dyn_cast<UnresolvedLookupExpr>(E)) {
11332     if (!ULE->getQualifier())
11333       return false;
11334 
11335     for (NamedDecl *D : ULE->decls()) {
11336       if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) {
11337         if (Method->isInstance())
11338           return true;
11339       } else {
11340         // Overload set does not contain methods.
11341         break;
11342       }
11343     }
11344 
11345     return false;
11346   }
11347 
11348   return false;
11349 }
11350 
11351 ExprResult Sema::BuildUnaryOp(Scope *S, SourceLocation OpLoc,
11352                               UnaryOperatorKind Opc, Expr *Input) {
11353   // First things first: handle placeholders so that the
11354   // overloaded-operator check considers the right type.
11355   if (const BuiltinType *pty = Input->getType()->getAsPlaceholderType()) {
11356     // Increment and decrement of pseudo-object references.
11357     if (pty->getKind() == BuiltinType::PseudoObject &&
11358         UnaryOperator::isIncrementDecrementOp(Opc))
11359       return checkPseudoObjectIncDec(S, OpLoc, Opc, Input);
11360 
11361     // extension is always a builtin operator.
11362     if (Opc == UO_Extension)
11363       return CreateBuiltinUnaryOp(OpLoc, Opc, Input);
11364 
11365     // & gets special logic for several kinds of placeholder.
11366     // The builtin code knows what to do.
11367     if (Opc == UO_AddrOf &&
11368         (pty->getKind() == BuiltinType::Overload ||
11369          pty->getKind() == BuiltinType::UnknownAny ||
11370          pty->getKind() == BuiltinType::BoundMember))
11371       return CreateBuiltinUnaryOp(OpLoc, Opc, Input);
11372 
11373     // Anything else needs to be handled now.
11374     ExprResult Result = CheckPlaceholderExpr(Input);
11375     if (Result.isInvalid()) return ExprError();
11376     Input = Result.get();
11377   }
11378 
11379   if (getLangOpts().CPlusPlus && Input->getType()->isOverloadableType() &&
11380       UnaryOperator::getOverloadedOperator(Opc) != OO_None &&
11381       !(Opc == UO_AddrOf && isQualifiedMemberAccess(Input))) {
11382     // Find all of the overloaded operators visible from this
11383     // point. We perform both an operator-name lookup from the local
11384     // scope and an argument-dependent lookup based on the types of
11385     // the arguments.
11386     UnresolvedSet<16> Functions;
11387     OverloadedOperatorKind OverOp = UnaryOperator::getOverloadedOperator(Opc);
11388     if (S && OverOp != OO_None)
11389       LookupOverloadedOperatorName(OverOp, S, Input->getType(), QualType(),
11390                                    Functions);
11391 
11392     return CreateOverloadedUnaryOp(OpLoc, Opc, Functions, Input);
11393   }
11394 
11395   return CreateBuiltinUnaryOp(OpLoc, Opc, Input);
11396 }
11397 
11398 // Unary Operators.  'Tok' is the token for the operator.
11399 ExprResult Sema::ActOnUnaryOp(Scope *S, SourceLocation OpLoc,
11400                               tok::TokenKind Op, Expr *Input) {
11401   return BuildUnaryOp(S, OpLoc, ConvertTokenKindToUnaryOpcode(Op), Input);
11402 }
11403 
11404 /// ActOnAddrLabel - Parse the GNU address of label extension: "&&foo".
11405 ExprResult Sema::ActOnAddrLabel(SourceLocation OpLoc, SourceLocation LabLoc,
11406                                 LabelDecl *TheDecl) {
11407   TheDecl->markUsed(Context);
11408   // Create the AST node.  The address of a label always has type 'void*'.
11409   return new (Context) AddrLabelExpr(OpLoc, LabLoc, TheDecl,
11410                                      Context.getPointerType(Context.VoidTy));
11411 }
11412 
11413 /// Given the last statement in a statement-expression, check whether
11414 /// the result is a producing expression (like a call to an
11415 /// ns_returns_retained function) and, if so, rebuild it to hoist the
11416 /// release out of the full-expression.  Otherwise, return null.
11417 /// Cannot fail.
11418 static Expr *maybeRebuildARCConsumingStmt(Stmt *Statement) {
11419   // Should always be wrapped with one of these.
11420   ExprWithCleanups *cleanups = dyn_cast<ExprWithCleanups>(Statement);
11421   if (!cleanups) return nullptr;
11422 
11423   ImplicitCastExpr *cast = dyn_cast<ImplicitCastExpr>(cleanups->getSubExpr());
11424   if (!cast || cast->getCastKind() != CK_ARCConsumeObject)
11425     return nullptr;
11426 
11427   // Splice out the cast.  This shouldn't modify any interesting
11428   // features of the statement.
11429   Expr *producer = cast->getSubExpr();
11430   assert(producer->getType() == cast->getType());
11431   assert(producer->getValueKind() == cast->getValueKind());
11432   cleanups->setSubExpr(producer);
11433   return cleanups;
11434 }
11435 
11436 void Sema::ActOnStartStmtExpr() {
11437   PushExpressionEvaluationContext(ExprEvalContexts.back().Context);
11438 }
11439 
11440 void Sema::ActOnStmtExprError() {
11441   // Note that function is also called by TreeTransform when leaving a
11442   // StmtExpr scope without rebuilding anything.
11443 
11444   DiscardCleanupsInEvaluationContext();
11445   PopExpressionEvaluationContext();
11446 }
11447 
11448 ExprResult
11449 Sema::ActOnStmtExpr(SourceLocation LPLoc, Stmt *SubStmt,
11450                     SourceLocation RPLoc) { // "({..})"
11451   assert(SubStmt && isa<CompoundStmt>(SubStmt) && "Invalid action invocation!");
11452   CompoundStmt *Compound = cast<CompoundStmt>(SubStmt);
11453 
11454   if (hasAnyUnrecoverableErrorsInThisFunction())
11455     DiscardCleanupsInEvaluationContext();
11456   assert(!ExprNeedsCleanups && "cleanups within StmtExpr not correctly bound!");
11457   PopExpressionEvaluationContext();
11458 
11459   // FIXME: there are a variety of strange constraints to enforce here, for
11460   // example, it is not possible to goto into a stmt expression apparently.
11461   // More semantic analysis is needed.
11462 
11463   // If there are sub-stmts in the compound stmt, take the type of the last one
11464   // as the type of the stmtexpr.
11465   QualType Ty = Context.VoidTy;
11466   bool StmtExprMayBindToTemp = false;
11467   if (!Compound->body_empty()) {
11468     Stmt *LastStmt = Compound->body_back();
11469     LabelStmt *LastLabelStmt = nullptr;
11470     // If LastStmt is a label, skip down through into the body.
11471     while (LabelStmt *Label = dyn_cast<LabelStmt>(LastStmt)) {
11472       LastLabelStmt = Label;
11473       LastStmt = Label->getSubStmt();
11474     }
11475 
11476     if (Expr *LastE = dyn_cast<Expr>(LastStmt)) {
11477       // Do function/array conversion on the last expression, but not
11478       // lvalue-to-rvalue.  However, initialize an unqualified type.
11479       ExprResult LastExpr = DefaultFunctionArrayConversion(LastE);
11480       if (LastExpr.isInvalid())
11481         return ExprError();
11482       Ty = LastExpr.get()->getType().getUnqualifiedType();
11483 
11484       if (!Ty->isDependentType() && !LastExpr.get()->isTypeDependent()) {
11485         // In ARC, if the final expression ends in a consume, splice
11486         // the consume out and bind it later.  In the alternate case
11487         // (when dealing with a retainable type), the result
11488         // initialization will create a produce.  In both cases the
11489         // result will be +1, and we'll need to balance that out with
11490         // a bind.
11491         if (Expr *rebuiltLastStmt
11492               = maybeRebuildARCConsumingStmt(LastExpr.get())) {
11493           LastExpr = rebuiltLastStmt;
11494         } else {
11495           LastExpr = PerformCopyInitialization(
11496                             InitializedEntity::InitializeResult(LPLoc,
11497                                                                 Ty,
11498                                                                 false),
11499                                                    SourceLocation(),
11500                                                LastExpr);
11501         }
11502 
11503         if (LastExpr.isInvalid())
11504           return ExprError();
11505         if (LastExpr.get() != nullptr) {
11506           if (!LastLabelStmt)
11507             Compound->setLastStmt(LastExpr.get());
11508           else
11509             LastLabelStmt->setSubStmt(LastExpr.get());
11510           StmtExprMayBindToTemp = true;
11511         }
11512       }
11513     }
11514   }
11515 
11516   // FIXME: Check that expression type is complete/non-abstract; statement
11517   // expressions are not lvalues.
11518   Expr *ResStmtExpr = new (Context) StmtExpr(Compound, Ty, LPLoc, RPLoc);
11519   if (StmtExprMayBindToTemp)
11520     return MaybeBindToTemporary(ResStmtExpr);
11521   return ResStmtExpr;
11522 }
11523 
11524 ExprResult Sema::BuildBuiltinOffsetOf(SourceLocation BuiltinLoc,
11525                                       TypeSourceInfo *TInfo,
11526                                       ArrayRef<OffsetOfComponent> Components,
11527                                       SourceLocation RParenLoc) {
11528   QualType ArgTy = TInfo->getType();
11529   bool Dependent = ArgTy->isDependentType();
11530   SourceRange TypeRange = TInfo->getTypeLoc().getLocalSourceRange();
11531 
11532   // We must have at least one component that refers to the type, and the first
11533   // one is known to be a field designator.  Verify that the ArgTy represents
11534   // a struct/union/class.
11535   if (!Dependent && !ArgTy->isRecordType())
11536     return ExprError(Diag(BuiltinLoc, diag::err_offsetof_record_type)
11537                        << ArgTy << TypeRange);
11538 
11539   // Type must be complete per C99 7.17p3 because a declaring a variable
11540   // with an incomplete type would be ill-formed.
11541   if (!Dependent
11542       && RequireCompleteType(BuiltinLoc, ArgTy,
11543                              diag::err_offsetof_incomplete_type, TypeRange))
11544     return ExprError();
11545 
11546   // offsetof with non-identifier designators (e.g. "offsetof(x, a.b[c])") are a
11547   // GCC extension, diagnose them.
11548   // FIXME: This diagnostic isn't actually visible because the location is in
11549   // a system header!
11550   if (Components.size() != 1)
11551     Diag(BuiltinLoc, diag::ext_offsetof_extended_field_designator)
11552       << SourceRange(Components[1].LocStart, Components.back().LocEnd);
11553 
11554   bool DidWarnAboutNonPOD = false;
11555   QualType CurrentType = ArgTy;
11556   SmallVector<OffsetOfNode, 4> Comps;
11557   SmallVector<Expr*, 4> Exprs;
11558   for (const OffsetOfComponent &OC : Components) {
11559     if (OC.isBrackets) {
11560       // Offset of an array sub-field.  TODO: Should we allow vector elements?
11561       if (!CurrentType->isDependentType()) {
11562         const ArrayType *AT = Context.getAsArrayType(CurrentType);
11563         if(!AT)
11564           return ExprError(Diag(OC.LocEnd, diag::err_offsetof_array_type)
11565                            << CurrentType);
11566         CurrentType = AT->getElementType();
11567       } else
11568         CurrentType = Context.DependentTy;
11569 
11570       ExprResult IdxRval = DefaultLvalueConversion(static_cast<Expr*>(OC.U.E));
11571       if (IdxRval.isInvalid())
11572         return ExprError();
11573       Expr *Idx = IdxRval.get();
11574 
11575       // The expression must be an integral expression.
11576       // FIXME: An integral constant expression?
11577       if (!Idx->isTypeDependent() && !Idx->isValueDependent() &&
11578           !Idx->getType()->isIntegerType())
11579         return ExprError(Diag(Idx->getLocStart(),
11580                               diag::err_typecheck_subscript_not_integer)
11581                          << Idx->getSourceRange());
11582 
11583       // Record this array index.
11584       Comps.push_back(OffsetOfNode(OC.LocStart, Exprs.size(), OC.LocEnd));
11585       Exprs.push_back(Idx);
11586       continue;
11587     }
11588 
11589     // Offset of a field.
11590     if (CurrentType->isDependentType()) {
11591       // We have the offset of a field, but we can't look into the dependent
11592       // type. Just record the identifier of the field.
11593       Comps.push_back(OffsetOfNode(OC.LocStart, OC.U.IdentInfo, OC.LocEnd));
11594       CurrentType = Context.DependentTy;
11595       continue;
11596     }
11597 
11598     // We need to have a complete type to look into.
11599     if (RequireCompleteType(OC.LocStart, CurrentType,
11600                             diag::err_offsetof_incomplete_type))
11601       return ExprError();
11602 
11603     // Look for the designated field.
11604     const RecordType *RC = CurrentType->getAs<RecordType>();
11605     if (!RC)
11606       return ExprError(Diag(OC.LocEnd, diag::err_offsetof_record_type)
11607                        << CurrentType);
11608     RecordDecl *RD = RC->getDecl();
11609 
11610     // C++ [lib.support.types]p5:
11611     //   The macro offsetof accepts a restricted set of type arguments in this
11612     //   International Standard. type shall be a POD structure or a POD union
11613     //   (clause 9).
11614     // C++11 [support.types]p4:
11615     //   If type is not a standard-layout class (Clause 9), the results are
11616     //   undefined.
11617     if (CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(RD)) {
11618       bool IsSafe = LangOpts.CPlusPlus11? CRD->isStandardLayout() : CRD->isPOD();
11619       unsigned DiagID =
11620         LangOpts.CPlusPlus11? diag::ext_offsetof_non_standardlayout_type
11621                             : diag::ext_offsetof_non_pod_type;
11622 
11623       if (!IsSafe && !DidWarnAboutNonPOD &&
11624           DiagRuntimeBehavior(BuiltinLoc, nullptr,
11625                               PDiag(DiagID)
11626                               << SourceRange(Components[0].LocStart, OC.LocEnd)
11627                               << CurrentType))
11628         DidWarnAboutNonPOD = true;
11629     }
11630 
11631     // Look for the field.
11632     LookupResult R(*this, OC.U.IdentInfo, OC.LocStart, LookupMemberName);
11633     LookupQualifiedName(R, RD);
11634     FieldDecl *MemberDecl = R.getAsSingle<FieldDecl>();
11635     IndirectFieldDecl *IndirectMemberDecl = nullptr;
11636     if (!MemberDecl) {
11637       if ((IndirectMemberDecl = R.getAsSingle<IndirectFieldDecl>()))
11638         MemberDecl = IndirectMemberDecl->getAnonField();
11639     }
11640 
11641     if (!MemberDecl)
11642       return ExprError(Diag(BuiltinLoc, diag::err_no_member)
11643                        << OC.U.IdentInfo << RD << SourceRange(OC.LocStart,
11644                                                               OC.LocEnd));
11645 
11646     // C99 7.17p3:
11647     //   (If the specified member is a bit-field, the behavior is undefined.)
11648     //
11649     // We diagnose this as an error.
11650     if (MemberDecl->isBitField()) {
11651       Diag(OC.LocEnd, diag::err_offsetof_bitfield)
11652         << MemberDecl->getDeclName()
11653         << SourceRange(BuiltinLoc, RParenLoc);
11654       Diag(MemberDecl->getLocation(), diag::note_bitfield_decl);
11655       return ExprError();
11656     }
11657 
11658     RecordDecl *Parent = MemberDecl->getParent();
11659     if (IndirectMemberDecl)
11660       Parent = cast<RecordDecl>(IndirectMemberDecl->getDeclContext());
11661 
11662     // If the member was found in a base class, introduce OffsetOfNodes for
11663     // the base class indirections.
11664     CXXBasePaths Paths;
11665     if (IsDerivedFrom(OC.LocStart, CurrentType, Context.getTypeDeclType(Parent),
11666                       Paths)) {
11667       if (Paths.getDetectedVirtual()) {
11668         Diag(OC.LocEnd, diag::err_offsetof_field_of_virtual_base)
11669           << MemberDecl->getDeclName()
11670           << SourceRange(BuiltinLoc, RParenLoc);
11671         return ExprError();
11672       }
11673 
11674       CXXBasePath &Path = Paths.front();
11675       for (const CXXBasePathElement &B : Path)
11676         Comps.push_back(OffsetOfNode(B.Base));
11677     }
11678 
11679     if (IndirectMemberDecl) {
11680       for (auto *FI : IndirectMemberDecl->chain()) {
11681         assert(isa<FieldDecl>(FI));
11682         Comps.push_back(OffsetOfNode(OC.LocStart,
11683                                      cast<FieldDecl>(FI), OC.LocEnd));
11684       }
11685     } else
11686       Comps.push_back(OffsetOfNode(OC.LocStart, MemberDecl, OC.LocEnd));
11687 
11688     CurrentType = MemberDecl->getType().getNonReferenceType();
11689   }
11690 
11691   return OffsetOfExpr::Create(Context, Context.getSizeType(), BuiltinLoc, TInfo,
11692                               Comps, Exprs, RParenLoc);
11693 }
11694 
11695 ExprResult Sema::ActOnBuiltinOffsetOf(Scope *S,
11696                                       SourceLocation BuiltinLoc,
11697                                       SourceLocation TypeLoc,
11698                                       ParsedType ParsedArgTy,
11699                                       ArrayRef<OffsetOfComponent> Components,
11700                                       SourceLocation RParenLoc) {
11701 
11702   TypeSourceInfo *ArgTInfo;
11703   QualType ArgTy = GetTypeFromParser(ParsedArgTy, &ArgTInfo);
11704   if (ArgTy.isNull())
11705     return ExprError();
11706 
11707   if (!ArgTInfo)
11708     ArgTInfo = Context.getTrivialTypeSourceInfo(ArgTy, TypeLoc);
11709 
11710   return BuildBuiltinOffsetOf(BuiltinLoc, ArgTInfo, Components, RParenLoc);
11711 }
11712 
11713 
11714 ExprResult Sema::ActOnChooseExpr(SourceLocation BuiltinLoc,
11715                                  Expr *CondExpr,
11716                                  Expr *LHSExpr, Expr *RHSExpr,
11717                                  SourceLocation RPLoc) {
11718   assert((CondExpr && LHSExpr && RHSExpr) && "Missing type argument(s)");
11719 
11720   ExprValueKind VK = VK_RValue;
11721   ExprObjectKind OK = OK_Ordinary;
11722   QualType resType;
11723   bool ValueDependent = false;
11724   bool CondIsTrue = false;
11725   if (CondExpr->isTypeDependent() || CondExpr->isValueDependent()) {
11726     resType = Context.DependentTy;
11727     ValueDependent = true;
11728   } else {
11729     // The conditional expression is required to be a constant expression.
11730     llvm::APSInt condEval(32);
11731     ExprResult CondICE
11732       = VerifyIntegerConstantExpression(CondExpr, &condEval,
11733           diag::err_typecheck_choose_expr_requires_constant, false);
11734     if (CondICE.isInvalid())
11735       return ExprError();
11736     CondExpr = CondICE.get();
11737     CondIsTrue = condEval.getZExtValue();
11738 
11739     // If the condition is > zero, then the AST type is the same as the LSHExpr.
11740     Expr *ActiveExpr = CondIsTrue ? LHSExpr : RHSExpr;
11741 
11742     resType = ActiveExpr->getType();
11743     ValueDependent = ActiveExpr->isValueDependent();
11744     VK = ActiveExpr->getValueKind();
11745     OK = ActiveExpr->getObjectKind();
11746   }
11747 
11748   return new (Context)
11749       ChooseExpr(BuiltinLoc, CondExpr, LHSExpr, RHSExpr, resType, VK, OK, RPLoc,
11750                  CondIsTrue, resType->isDependentType(), ValueDependent);
11751 }
11752 
11753 //===----------------------------------------------------------------------===//
11754 // Clang Extensions.
11755 //===----------------------------------------------------------------------===//
11756 
11757 /// ActOnBlockStart - This callback is invoked when a block literal is started.
11758 void Sema::ActOnBlockStart(SourceLocation CaretLoc, Scope *CurScope) {
11759   BlockDecl *Block = BlockDecl::Create(Context, CurContext, CaretLoc);
11760 
11761   if (LangOpts.CPlusPlus) {
11762     Decl *ManglingContextDecl;
11763     if (MangleNumberingContext *MCtx =
11764             getCurrentMangleNumberContext(Block->getDeclContext(),
11765                                           ManglingContextDecl)) {
11766       unsigned ManglingNumber = MCtx->getManglingNumber(Block);
11767       Block->setBlockMangling(ManglingNumber, ManglingContextDecl);
11768     }
11769   }
11770 
11771   PushBlockScope(CurScope, Block);
11772   CurContext->addDecl(Block);
11773   if (CurScope)
11774     PushDeclContext(CurScope, Block);
11775   else
11776     CurContext = Block;
11777 
11778   getCurBlock()->HasImplicitReturnType = true;
11779 
11780   // Enter a new evaluation context to insulate the block from any
11781   // cleanups from the enclosing full-expression.
11782   PushExpressionEvaluationContext(PotentiallyEvaluated);
11783 }
11784 
11785 void Sema::ActOnBlockArguments(SourceLocation CaretLoc, Declarator &ParamInfo,
11786                                Scope *CurScope) {
11787   assert(ParamInfo.getIdentifier() == nullptr &&
11788          "block-id should have no identifier!");
11789   assert(ParamInfo.getContext() == Declarator::BlockLiteralContext);
11790   BlockScopeInfo *CurBlock = getCurBlock();
11791 
11792   TypeSourceInfo *Sig = GetTypeForDeclarator(ParamInfo, CurScope);
11793   QualType T = Sig->getType();
11794 
11795   // FIXME: We should allow unexpanded parameter packs here, but that would,
11796   // in turn, make the block expression contain unexpanded parameter packs.
11797   if (DiagnoseUnexpandedParameterPack(CaretLoc, Sig, UPPC_Block)) {
11798     // Drop the parameters.
11799     FunctionProtoType::ExtProtoInfo EPI;
11800     EPI.HasTrailingReturn = false;
11801     EPI.TypeQuals |= DeclSpec::TQ_const;
11802     T = Context.getFunctionType(Context.DependentTy, None, EPI);
11803     Sig = Context.getTrivialTypeSourceInfo(T);
11804   }
11805 
11806   // GetTypeForDeclarator always produces a function type for a block
11807   // literal signature.  Furthermore, it is always a FunctionProtoType
11808   // unless the function was written with a typedef.
11809   assert(T->isFunctionType() &&
11810          "GetTypeForDeclarator made a non-function block signature");
11811 
11812   // Look for an explicit signature in that function type.
11813   FunctionProtoTypeLoc ExplicitSignature;
11814 
11815   TypeLoc tmp = Sig->getTypeLoc().IgnoreParens();
11816   if ((ExplicitSignature = tmp.getAs<FunctionProtoTypeLoc>())) {
11817 
11818     // Check whether that explicit signature was synthesized by
11819     // GetTypeForDeclarator.  If so, don't save that as part of the
11820     // written signature.
11821     if (ExplicitSignature.getLocalRangeBegin() ==
11822         ExplicitSignature.getLocalRangeEnd()) {
11823       // This would be much cheaper if we stored TypeLocs instead of
11824       // TypeSourceInfos.
11825       TypeLoc Result = ExplicitSignature.getReturnLoc();
11826       unsigned Size = Result.getFullDataSize();
11827       Sig = Context.CreateTypeSourceInfo(Result.getType(), Size);
11828       Sig->getTypeLoc().initializeFullCopy(Result, Size);
11829 
11830       ExplicitSignature = FunctionProtoTypeLoc();
11831     }
11832   }
11833 
11834   CurBlock->TheDecl->setSignatureAsWritten(Sig);
11835   CurBlock->FunctionType = T;
11836 
11837   const FunctionType *Fn = T->getAs<FunctionType>();
11838   QualType RetTy = Fn->getReturnType();
11839   bool isVariadic =
11840     (isa<FunctionProtoType>(Fn) && cast<FunctionProtoType>(Fn)->isVariadic());
11841 
11842   CurBlock->TheDecl->setIsVariadic(isVariadic);
11843 
11844   // Context.DependentTy is used as a placeholder for a missing block
11845   // return type.  TODO:  what should we do with declarators like:
11846   //   ^ * { ... }
11847   // If the answer is "apply template argument deduction"....
11848   if (RetTy != Context.DependentTy) {
11849     CurBlock->ReturnType = RetTy;
11850     CurBlock->TheDecl->setBlockMissingReturnType(false);
11851     CurBlock->HasImplicitReturnType = false;
11852   }
11853 
11854   // Push block parameters from the declarator if we had them.
11855   SmallVector<ParmVarDecl*, 8> Params;
11856   if (ExplicitSignature) {
11857     for (unsigned I = 0, E = ExplicitSignature.getNumParams(); I != E; ++I) {
11858       ParmVarDecl *Param = ExplicitSignature.getParam(I);
11859       if (Param->getIdentifier() == nullptr &&
11860           !Param->isImplicit() &&
11861           !Param->isInvalidDecl() &&
11862           !getLangOpts().CPlusPlus)
11863         Diag(Param->getLocation(), diag::err_parameter_name_omitted);
11864       Params.push_back(Param);
11865     }
11866 
11867   // Fake up parameter variables if we have a typedef, like
11868   //   ^ fntype { ... }
11869   } else if (const FunctionProtoType *Fn = T->getAs<FunctionProtoType>()) {
11870     for (const auto &I : Fn->param_types()) {
11871       ParmVarDecl *Param = BuildParmVarDeclForTypedef(
11872           CurBlock->TheDecl, ParamInfo.getLocStart(), I);
11873       Params.push_back(Param);
11874     }
11875   }
11876 
11877   // Set the parameters on the block decl.
11878   if (!Params.empty()) {
11879     CurBlock->TheDecl->setParams(Params);
11880     CheckParmsForFunctionDef(CurBlock->TheDecl->param_begin(),
11881                              CurBlock->TheDecl->param_end(),
11882                              /*CheckParameterNames=*/false);
11883   }
11884 
11885   // Finally we can process decl attributes.
11886   ProcessDeclAttributes(CurScope, CurBlock->TheDecl, ParamInfo);
11887 
11888   // Put the parameter variables in scope.
11889   for (auto AI : CurBlock->TheDecl->params()) {
11890     AI->setOwningFunction(CurBlock->TheDecl);
11891 
11892     // If this has an identifier, add it to the scope stack.
11893     if (AI->getIdentifier()) {
11894       CheckShadow(CurBlock->TheScope, AI);
11895 
11896       PushOnScopeChains(AI, CurBlock->TheScope);
11897     }
11898   }
11899 }
11900 
11901 /// ActOnBlockError - If there is an error parsing a block, this callback
11902 /// is invoked to pop the information about the block from the action impl.
11903 void Sema::ActOnBlockError(SourceLocation CaretLoc, Scope *CurScope) {
11904   // Leave the expression-evaluation context.
11905   DiscardCleanupsInEvaluationContext();
11906   PopExpressionEvaluationContext();
11907 
11908   // Pop off CurBlock, handle nested blocks.
11909   PopDeclContext();
11910   PopFunctionScopeInfo();
11911 }
11912 
11913 /// ActOnBlockStmtExpr - This is called when the body of a block statement
11914 /// literal was successfully completed.  ^(int x){...}
11915 ExprResult Sema::ActOnBlockStmtExpr(SourceLocation CaretLoc,
11916                                     Stmt *Body, Scope *CurScope) {
11917   // If blocks are disabled, emit an error.
11918   if (!LangOpts.Blocks)
11919     Diag(CaretLoc, diag::err_blocks_disable);
11920 
11921   // Leave the expression-evaluation context.
11922   if (hasAnyUnrecoverableErrorsInThisFunction())
11923     DiscardCleanupsInEvaluationContext();
11924   assert(!ExprNeedsCleanups && "cleanups within block not correctly bound!");
11925   PopExpressionEvaluationContext();
11926 
11927   BlockScopeInfo *BSI = cast<BlockScopeInfo>(FunctionScopes.back());
11928 
11929   if (BSI->HasImplicitReturnType)
11930     deduceClosureReturnType(*BSI);
11931 
11932   PopDeclContext();
11933 
11934   QualType RetTy = Context.VoidTy;
11935   if (!BSI->ReturnType.isNull())
11936     RetTy = BSI->ReturnType;
11937 
11938   bool NoReturn = BSI->TheDecl->hasAttr<NoReturnAttr>();
11939   QualType BlockTy;
11940 
11941   // Set the captured variables on the block.
11942   // FIXME: Share capture structure between BlockDecl and CapturingScopeInfo!
11943   SmallVector<BlockDecl::Capture, 4> Captures;
11944   for (CapturingScopeInfo::Capture &Cap : BSI->Captures) {
11945     if (Cap.isThisCapture())
11946       continue;
11947     BlockDecl::Capture NewCap(Cap.getVariable(), Cap.isBlockCapture(),
11948                               Cap.isNested(), Cap.getInitExpr());
11949     Captures.push_back(NewCap);
11950   }
11951   BSI->TheDecl->setCaptures(Context, Captures, BSI->CXXThisCaptureIndex != 0);
11952 
11953   // If the user wrote a function type in some form, try to use that.
11954   if (!BSI->FunctionType.isNull()) {
11955     const FunctionType *FTy = BSI->FunctionType->getAs<FunctionType>();
11956 
11957     FunctionType::ExtInfo Ext = FTy->getExtInfo();
11958     if (NoReturn && !Ext.getNoReturn()) Ext = Ext.withNoReturn(true);
11959 
11960     // Turn protoless block types into nullary block types.
11961     if (isa<FunctionNoProtoType>(FTy)) {
11962       FunctionProtoType::ExtProtoInfo EPI;
11963       EPI.ExtInfo = Ext;
11964       BlockTy = Context.getFunctionType(RetTy, None, EPI);
11965 
11966     // Otherwise, if we don't need to change anything about the function type,
11967     // preserve its sugar structure.
11968     } else if (FTy->getReturnType() == RetTy &&
11969                (!NoReturn || FTy->getNoReturnAttr())) {
11970       BlockTy = BSI->FunctionType;
11971 
11972     // Otherwise, make the minimal modifications to the function type.
11973     } else {
11974       const FunctionProtoType *FPT = cast<FunctionProtoType>(FTy);
11975       FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo();
11976       EPI.TypeQuals = 0; // FIXME: silently?
11977       EPI.ExtInfo = Ext;
11978       BlockTy = Context.getFunctionType(RetTy, FPT->getParamTypes(), EPI);
11979     }
11980 
11981   // If we don't have a function type, just build one from nothing.
11982   } else {
11983     FunctionProtoType::ExtProtoInfo EPI;
11984     EPI.ExtInfo = FunctionType::ExtInfo().withNoReturn(NoReturn);
11985     BlockTy = Context.getFunctionType(RetTy, None, EPI);
11986   }
11987 
11988   DiagnoseUnusedParameters(BSI->TheDecl->param_begin(),
11989                            BSI->TheDecl->param_end());
11990   BlockTy = Context.getBlockPointerType(BlockTy);
11991 
11992   // If needed, diagnose invalid gotos and switches in the block.
11993   if (getCurFunction()->NeedsScopeChecking() &&
11994       !PP.isCodeCompletionEnabled())
11995     DiagnoseInvalidJumps(cast<CompoundStmt>(Body));
11996 
11997   BSI->TheDecl->setBody(cast<CompoundStmt>(Body));
11998 
11999   // Try to apply the named return value optimization. We have to check again
12000   // if we can do this, though, because blocks keep return statements around
12001   // to deduce an implicit return type.
12002   if (getLangOpts().CPlusPlus && RetTy->isRecordType() &&
12003       !BSI->TheDecl->isDependentContext())
12004     computeNRVO(Body, BSI);
12005 
12006   BlockExpr *Result = new (Context) BlockExpr(BSI->TheDecl, BlockTy);
12007   AnalysisBasedWarnings::Policy WP = AnalysisWarnings.getDefaultPolicy();
12008   PopFunctionScopeInfo(&WP, Result->getBlockDecl(), Result);
12009 
12010   // If the block isn't obviously global, i.e. it captures anything at
12011   // all, then we need to do a few things in the surrounding context:
12012   if (Result->getBlockDecl()->hasCaptures()) {
12013     // First, this expression has a new cleanup object.
12014     ExprCleanupObjects.push_back(Result->getBlockDecl());
12015     ExprNeedsCleanups = true;
12016 
12017     // It also gets a branch-protected scope if any of the captured
12018     // variables needs destruction.
12019     for (const auto &CI : Result->getBlockDecl()->captures()) {
12020       const VarDecl *var = CI.getVariable();
12021       if (var->getType().isDestructedType() != QualType::DK_none) {
12022         getCurFunction()->setHasBranchProtectedScope();
12023         break;
12024       }
12025     }
12026   }
12027 
12028   return Result;
12029 }
12030 
12031 ExprResult Sema::ActOnVAArg(SourceLocation BuiltinLoc, Expr *E, ParsedType Ty,
12032                             SourceLocation RPLoc) {
12033   TypeSourceInfo *TInfo;
12034   GetTypeFromParser(Ty, &TInfo);
12035   return BuildVAArgExpr(BuiltinLoc, E, TInfo, RPLoc);
12036 }
12037 
12038 ExprResult Sema::BuildVAArgExpr(SourceLocation BuiltinLoc,
12039                                 Expr *E, TypeSourceInfo *TInfo,
12040                                 SourceLocation RPLoc) {
12041   Expr *OrigExpr = E;
12042   bool IsMS = false;
12043 
12044   // CUDA device code does not support varargs.
12045   if (getLangOpts().CUDA && getLangOpts().CUDAIsDevice) {
12046     if (const FunctionDecl *F = dyn_cast<FunctionDecl>(CurContext)) {
12047       CUDAFunctionTarget T = IdentifyCUDATarget(F);
12048       if (T == CFT_Global || T == CFT_Device || T == CFT_HostDevice)
12049         return ExprError(Diag(E->getLocStart(), diag::err_va_arg_in_device));
12050     }
12051   }
12052 
12053   // It might be a __builtin_ms_va_list. (But don't ever mark a va_arg()
12054   // as Microsoft ABI on an actual Microsoft platform, where
12055   // __builtin_ms_va_list and __builtin_va_list are the same.)
12056   if (!E->isTypeDependent() && Context.getTargetInfo().hasBuiltinMSVaList() &&
12057       Context.getTargetInfo().getBuiltinVaListKind() != TargetInfo::CharPtrBuiltinVaList) {
12058     QualType MSVaListType = Context.getBuiltinMSVaListType();
12059     if (Context.hasSameType(MSVaListType, E->getType())) {
12060       if (CheckForModifiableLvalue(E, BuiltinLoc, *this))
12061         return ExprError();
12062       IsMS = true;
12063     }
12064   }
12065 
12066   // Get the va_list type
12067   QualType VaListType = Context.getBuiltinVaListType();
12068   if (!IsMS) {
12069     if (VaListType->isArrayType()) {
12070       // Deal with implicit array decay; for example, on x86-64,
12071       // va_list is an array, but it's supposed to decay to
12072       // a pointer for va_arg.
12073       VaListType = Context.getArrayDecayedType(VaListType);
12074       // Make sure the input expression also decays appropriately.
12075       ExprResult Result = UsualUnaryConversions(E);
12076       if (Result.isInvalid())
12077         return ExprError();
12078       E = Result.get();
12079     } else if (VaListType->isRecordType() && getLangOpts().CPlusPlus) {
12080       // If va_list is a record type and we are compiling in C++ mode,
12081       // check the argument using reference binding.
12082       InitializedEntity Entity = InitializedEntity::InitializeParameter(
12083           Context, Context.getLValueReferenceType(VaListType), false);
12084       ExprResult Init = PerformCopyInitialization(Entity, SourceLocation(), E);
12085       if (Init.isInvalid())
12086         return ExprError();
12087       E = Init.getAs<Expr>();
12088     } else {
12089       // Otherwise, the va_list argument must be an l-value because
12090       // it is modified by va_arg.
12091       if (!E->isTypeDependent() &&
12092           CheckForModifiableLvalue(E, BuiltinLoc, *this))
12093         return ExprError();
12094     }
12095   }
12096 
12097   if (!IsMS && !E->isTypeDependent() &&
12098       !Context.hasSameType(VaListType, E->getType()))
12099     return ExprError(Diag(E->getLocStart(),
12100                          diag::err_first_argument_to_va_arg_not_of_type_va_list)
12101       << OrigExpr->getType() << E->getSourceRange());
12102 
12103   if (!TInfo->getType()->isDependentType()) {
12104     if (RequireCompleteType(TInfo->getTypeLoc().getBeginLoc(), TInfo->getType(),
12105                             diag::err_second_parameter_to_va_arg_incomplete,
12106                             TInfo->getTypeLoc()))
12107       return ExprError();
12108 
12109     if (RequireNonAbstractType(TInfo->getTypeLoc().getBeginLoc(),
12110                                TInfo->getType(),
12111                                diag::err_second_parameter_to_va_arg_abstract,
12112                                TInfo->getTypeLoc()))
12113       return ExprError();
12114 
12115     if (!TInfo->getType().isPODType(Context)) {
12116       Diag(TInfo->getTypeLoc().getBeginLoc(),
12117            TInfo->getType()->isObjCLifetimeType()
12118              ? diag::warn_second_parameter_to_va_arg_ownership_qualified
12119              : diag::warn_second_parameter_to_va_arg_not_pod)
12120         << TInfo->getType()
12121         << TInfo->getTypeLoc().getSourceRange();
12122     }
12123 
12124     // Check for va_arg where arguments of the given type will be promoted
12125     // (i.e. this va_arg is guaranteed to have undefined behavior).
12126     QualType PromoteType;
12127     if (TInfo->getType()->isPromotableIntegerType()) {
12128       PromoteType = Context.getPromotedIntegerType(TInfo->getType());
12129       if (Context.typesAreCompatible(PromoteType, TInfo->getType()))
12130         PromoteType = QualType();
12131     }
12132     if (TInfo->getType()->isSpecificBuiltinType(BuiltinType::Float))
12133       PromoteType = Context.DoubleTy;
12134     if (!PromoteType.isNull())
12135       DiagRuntimeBehavior(TInfo->getTypeLoc().getBeginLoc(), E,
12136                   PDiag(diag::warn_second_parameter_to_va_arg_never_compatible)
12137                           << TInfo->getType()
12138                           << PromoteType
12139                           << TInfo->getTypeLoc().getSourceRange());
12140   }
12141 
12142   QualType T = TInfo->getType().getNonLValueExprType(Context);
12143   return new (Context) VAArgExpr(BuiltinLoc, E, TInfo, RPLoc, T, IsMS);
12144 }
12145 
12146 ExprResult Sema::ActOnGNUNullExpr(SourceLocation TokenLoc) {
12147   // The type of __null will be int or long, depending on the size of
12148   // pointers on the target.
12149   QualType Ty;
12150   unsigned pw = Context.getTargetInfo().getPointerWidth(0);
12151   if (pw == Context.getTargetInfo().getIntWidth())
12152     Ty = Context.IntTy;
12153   else if (pw == Context.getTargetInfo().getLongWidth())
12154     Ty = Context.LongTy;
12155   else if (pw == Context.getTargetInfo().getLongLongWidth())
12156     Ty = Context.LongLongTy;
12157   else {
12158     llvm_unreachable("I don't know size of pointer!");
12159   }
12160 
12161   return new (Context) GNUNullExpr(Ty, TokenLoc);
12162 }
12163 
12164 bool Sema::ConversionToObjCStringLiteralCheck(QualType DstType, Expr *&Exp,
12165                                               bool Diagnose) {
12166   if (!getLangOpts().ObjC1)
12167     return false;
12168 
12169   const ObjCObjectPointerType *PT = DstType->getAs<ObjCObjectPointerType>();
12170   if (!PT)
12171     return false;
12172 
12173   if (!PT->isObjCIdType()) {
12174     // Check if the destination is the 'NSString' interface.
12175     const ObjCInterfaceDecl *ID = PT->getInterfaceDecl();
12176     if (!ID || !ID->getIdentifier()->isStr("NSString"))
12177       return false;
12178   }
12179 
12180   // Ignore any parens, implicit casts (should only be
12181   // array-to-pointer decays), and not-so-opaque values.  The last is
12182   // important for making this trigger for property assignments.
12183   Expr *SrcExpr = Exp->IgnoreParenImpCasts();
12184   if (OpaqueValueExpr *OV = dyn_cast<OpaqueValueExpr>(SrcExpr))
12185     if (OV->getSourceExpr())
12186       SrcExpr = OV->getSourceExpr()->IgnoreParenImpCasts();
12187 
12188   StringLiteral *SL = dyn_cast<StringLiteral>(SrcExpr);
12189   if (!SL || !SL->isAscii())
12190     return false;
12191   if (Diagnose) {
12192     Diag(SL->getLocStart(), diag::err_missing_atsign_prefix)
12193       << FixItHint::CreateInsertion(SL->getLocStart(), "@");
12194     Exp = BuildObjCStringLiteral(SL->getLocStart(), SL).get();
12195   }
12196   return true;
12197 }
12198 
12199 static bool maybeDiagnoseAssignmentToFunction(Sema &S, QualType DstType,
12200                                               const Expr *SrcExpr) {
12201   if (!DstType->isFunctionPointerType() ||
12202       !SrcExpr->getType()->isFunctionType())
12203     return false;
12204 
12205   auto *DRE = dyn_cast<DeclRefExpr>(SrcExpr->IgnoreParenImpCasts());
12206   if (!DRE)
12207     return false;
12208 
12209   auto *FD = dyn_cast<FunctionDecl>(DRE->getDecl());
12210   if (!FD)
12211     return false;
12212 
12213   return !S.checkAddressOfFunctionIsAvailable(FD,
12214                                               /*Complain=*/true,
12215                                               SrcExpr->getLocStart());
12216 }
12217 
12218 bool Sema::DiagnoseAssignmentResult(AssignConvertType ConvTy,
12219                                     SourceLocation Loc,
12220                                     QualType DstType, QualType SrcType,
12221                                     Expr *SrcExpr, AssignmentAction Action,
12222                                     bool *Complained) {
12223   if (Complained)
12224     *Complained = false;
12225 
12226   // Decode the result (notice that AST's are still created for extensions).
12227   bool CheckInferredResultType = false;
12228   bool isInvalid = false;
12229   unsigned DiagKind = 0;
12230   FixItHint Hint;
12231   ConversionFixItGenerator ConvHints;
12232   bool MayHaveConvFixit = false;
12233   bool MayHaveFunctionDiff = false;
12234   const ObjCInterfaceDecl *IFace = nullptr;
12235   const ObjCProtocolDecl *PDecl = nullptr;
12236 
12237   switch (ConvTy) {
12238   case Compatible:
12239       DiagnoseAssignmentEnum(DstType, SrcType, SrcExpr);
12240       return false;
12241 
12242   case PointerToInt:
12243     DiagKind = diag::ext_typecheck_convert_pointer_int;
12244     ConvHints.tryToFixConversion(SrcExpr, SrcType, DstType, *this);
12245     MayHaveConvFixit = true;
12246     break;
12247   case IntToPointer:
12248     DiagKind = diag::ext_typecheck_convert_int_pointer;
12249     ConvHints.tryToFixConversion(SrcExpr, SrcType, DstType, *this);
12250     MayHaveConvFixit = true;
12251     break;
12252   case IncompatiblePointer:
12253       DiagKind =
12254         (Action == AA_Passing_CFAudited ?
12255           diag::err_arc_typecheck_convert_incompatible_pointer :
12256           diag::ext_typecheck_convert_incompatible_pointer);
12257     CheckInferredResultType = DstType->isObjCObjectPointerType() &&
12258       SrcType->isObjCObjectPointerType();
12259     if (Hint.isNull() && !CheckInferredResultType) {
12260       ConvHints.tryToFixConversion(SrcExpr, SrcType, DstType, *this);
12261     }
12262     else if (CheckInferredResultType) {
12263       SrcType = SrcType.getUnqualifiedType();
12264       DstType = DstType.getUnqualifiedType();
12265     }
12266     MayHaveConvFixit = true;
12267     break;
12268   case IncompatiblePointerSign:
12269     DiagKind = diag::ext_typecheck_convert_incompatible_pointer_sign;
12270     break;
12271   case FunctionVoidPointer:
12272     DiagKind = diag::ext_typecheck_convert_pointer_void_func;
12273     break;
12274   case IncompatiblePointerDiscardsQualifiers: {
12275     // Perform array-to-pointer decay if necessary.
12276     if (SrcType->isArrayType()) SrcType = Context.getArrayDecayedType(SrcType);
12277 
12278     Qualifiers lhq = SrcType->getPointeeType().getQualifiers();
12279     Qualifiers rhq = DstType->getPointeeType().getQualifiers();
12280     if (lhq.getAddressSpace() != rhq.getAddressSpace()) {
12281       DiagKind = diag::err_typecheck_incompatible_address_space;
12282       break;
12283 
12284 
12285     } else if (lhq.getObjCLifetime() != rhq.getObjCLifetime()) {
12286       DiagKind = diag::err_typecheck_incompatible_ownership;
12287       break;
12288     }
12289 
12290     llvm_unreachable("unknown error case for discarding qualifiers!");
12291     // fallthrough
12292   }
12293   case CompatiblePointerDiscardsQualifiers:
12294     // If the qualifiers lost were because we were applying the
12295     // (deprecated) C++ conversion from a string literal to a char*
12296     // (or wchar_t*), then there was no error (C++ 4.2p2).  FIXME:
12297     // Ideally, this check would be performed in
12298     // checkPointerTypesForAssignment. However, that would require a
12299     // bit of refactoring (so that the second argument is an
12300     // expression, rather than a type), which should be done as part
12301     // of a larger effort to fix checkPointerTypesForAssignment for
12302     // C++ semantics.
12303     if (getLangOpts().CPlusPlus &&
12304         IsStringLiteralToNonConstPointerConversion(SrcExpr, DstType))
12305       return false;
12306     DiagKind = diag::ext_typecheck_convert_discards_qualifiers;
12307     break;
12308   case IncompatibleNestedPointerQualifiers:
12309     DiagKind = diag::ext_nested_pointer_qualifier_mismatch;
12310     break;
12311   case IntToBlockPointer:
12312     DiagKind = diag::err_int_to_block_pointer;
12313     break;
12314   case IncompatibleBlockPointer:
12315     DiagKind = diag::err_typecheck_convert_incompatible_block_pointer;
12316     break;
12317   case IncompatibleObjCQualifiedId: {
12318     if (SrcType->isObjCQualifiedIdType()) {
12319       const ObjCObjectPointerType *srcOPT =
12320                 SrcType->getAs<ObjCObjectPointerType>();
12321       for (auto *srcProto : srcOPT->quals()) {
12322         PDecl = srcProto;
12323         break;
12324       }
12325       if (const ObjCInterfaceType *IFaceT =
12326             DstType->getAs<ObjCObjectPointerType>()->getInterfaceType())
12327         IFace = IFaceT->getDecl();
12328     }
12329     else if (DstType->isObjCQualifiedIdType()) {
12330       const ObjCObjectPointerType *dstOPT =
12331         DstType->getAs<ObjCObjectPointerType>();
12332       for (auto *dstProto : dstOPT->quals()) {
12333         PDecl = dstProto;
12334         break;
12335       }
12336       if (const ObjCInterfaceType *IFaceT =
12337             SrcType->getAs<ObjCObjectPointerType>()->getInterfaceType())
12338         IFace = IFaceT->getDecl();
12339     }
12340     DiagKind = diag::warn_incompatible_qualified_id;
12341     break;
12342   }
12343   case IncompatibleVectors:
12344     DiagKind = diag::warn_incompatible_vectors;
12345     break;
12346   case IncompatibleObjCWeakRef:
12347     DiagKind = diag::err_arc_weak_unavailable_assign;
12348     break;
12349   case Incompatible:
12350     if (maybeDiagnoseAssignmentToFunction(*this, DstType, SrcExpr)) {
12351       if (Complained)
12352         *Complained = true;
12353       return true;
12354     }
12355 
12356     DiagKind = diag::err_typecheck_convert_incompatible;
12357     ConvHints.tryToFixConversion(SrcExpr, SrcType, DstType, *this);
12358     MayHaveConvFixit = true;
12359     isInvalid = true;
12360     MayHaveFunctionDiff = true;
12361     break;
12362   }
12363 
12364   QualType FirstType, SecondType;
12365   switch (Action) {
12366   case AA_Assigning:
12367   case AA_Initializing:
12368     // The destination type comes first.
12369     FirstType = DstType;
12370     SecondType = SrcType;
12371     break;
12372 
12373   case AA_Returning:
12374   case AA_Passing:
12375   case AA_Passing_CFAudited:
12376   case AA_Converting:
12377   case AA_Sending:
12378   case AA_Casting:
12379     // The source type comes first.
12380     FirstType = SrcType;
12381     SecondType = DstType;
12382     break;
12383   }
12384 
12385   PartialDiagnostic FDiag = PDiag(DiagKind);
12386   if (Action == AA_Passing_CFAudited)
12387     FDiag << FirstType << SecondType << AA_Passing << SrcExpr->getSourceRange();
12388   else
12389     FDiag << FirstType << SecondType << Action << SrcExpr->getSourceRange();
12390 
12391   // If we can fix the conversion, suggest the FixIts.
12392   assert(ConvHints.isNull() || Hint.isNull());
12393   if (!ConvHints.isNull()) {
12394     for (FixItHint &H : ConvHints.Hints)
12395       FDiag << H;
12396   } else {
12397     FDiag << Hint;
12398   }
12399   if (MayHaveConvFixit) { FDiag << (unsigned) (ConvHints.Kind); }
12400 
12401   if (MayHaveFunctionDiff)
12402     HandleFunctionTypeMismatch(FDiag, SecondType, FirstType);
12403 
12404   Diag(Loc, FDiag);
12405   if (DiagKind == diag::warn_incompatible_qualified_id &&
12406       PDecl && IFace && !IFace->hasDefinition())
12407       Diag(IFace->getLocation(), diag::not_incomplete_class_and_qualified_id)
12408         << IFace->getName() << PDecl->getName();
12409 
12410   if (SecondType == Context.OverloadTy)
12411     NoteAllOverloadCandidates(OverloadExpr::find(SrcExpr).Expression,
12412                               FirstType, /*TakingAddress=*/true);
12413 
12414   if (CheckInferredResultType)
12415     EmitRelatedResultTypeNote(SrcExpr);
12416 
12417   if (Action == AA_Returning && ConvTy == IncompatiblePointer)
12418     EmitRelatedResultTypeNoteForReturn(DstType);
12419 
12420   if (Complained)
12421     *Complained = true;
12422   return isInvalid;
12423 }
12424 
12425 ExprResult Sema::VerifyIntegerConstantExpression(Expr *E,
12426                                                  llvm::APSInt *Result) {
12427   class SimpleICEDiagnoser : public VerifyICEDiagnoser {
12428   public:
12429     void diagnoseNotICE(Sema &S, SourceLocation Loc, SourceRange SR) override {
12430       S.Diag(Loc, diag::err_expr_not_ice) << S.LangOpts.CPlusPlus << SR;
12431     }
12432   } Diagnoser;
12433 
12434   return VerifyIntegerConstantExpression(E, Result, Diagnoser);
12435 }
12436 
12437 ExprResult Sema::VerifyIntegerConstantExpression(Expr *E,
12438                                                  llvm::APSInt *Result,
12439                                                  unsigned DiagID,
12440                                                  bool AllowFold) {
12441   class IDDiagnoser : public VerifyICEDiagnoser {
12442     unsigned DiagID;
12443 
12444   public:
12445     IDDiagnoser(unsigned DiagID)
12446       : VerifyICEDiagnoser(DiagID == 0), DiagID(DiagID) { }
12447 
12448     void diagnoseNotICE(Sema &S, SourceLocation Loc, SourceRange SR) override {
12449       S.Diag(Loc, DiagID) << SR;
12450     }
12451   } Diagnoser(DiagID);
12452 
12453   return VerifyIntegerConstantExpression(E, Result, Diagnoser, AllowFold);
12454 }
12455 
12456 void Sema::VerifyICEDiagnoser::diagnoseFold(Sema &S, SourceLocation Loc,
12457                                             SourceRange SR) {
12458   S.Diag(Loc, diag::ext_expr_not_ice) << SR << S.LangOpts.CPlusPlus;
12459 }
12460 
12461 ExprResult
12462 Sema::VerifyIntegerConstantExpression(Expr *E, llvm::APSInt *Result,
12463                                       VerifyICEDiagnoser &Diagnoser,
12464                                       bool AllowFold) {
12465   SourceLocation DiagLoc = E->getLocStart();
12466 
12467   if (getLangOpts().CPlusPlus11) {
12468     // C++11 [expr.const]p5:
12469     //   If an expression of literal class type is used in a context where an
12470     //   integral constant expression is required, then that class type shall
12471     //   have a single non-explicit conversion function to an integral or
12472     //   unscoped enumeration type
12473     ExprResult Converted;
12474     class CXX11ConvertDiagnoser : public ICEConvertDiagnoser {
12475     public:
12476       CXX11ConvertDiagnoser(bool Silent)
12477           : ICEConvertDiagnoser(/*AllowScopedEnumerations*/false,
12478                                 Silent, true) {}
12479 
12480       SemaDiagnosticBuilder diagnoseNotInt(Sema &S, SourceLocation Loc,
12481                                            QualType T) override {
12482         return S.Diag(Loc, diag::err_ice_not_integral) << T;
12483       }
12484 
12485       SemaDiagnosticBuilder diagnoseIncomplete(
12486           Sema &S, SourceLocation Loc, QualType T) override {
12487         return S.Diag(Loc, diag::err_ice_incomplete_type) << T;
12488       }
12489 
12490       SemaDiagnosticBuilder diagnoseExplicitConv(
12491           Sema &S, SourceLocation Loc, QualType T, QualType ConvTy) override {
12492         return S.Diag(Loc, diag::err_ice_explicit_conversion) << T << ConvTy;
12493       }
12494 
12495       SemaDiagnosticBuilder noteExplicitConv(
12496           Sema &S, CXXConversionDecl *Conv, QualType ConvTy) override {
12497         return S.Diag(Conv->getLocation(), diag::note_ice_conversion_here)
12498                  << ConvTy->isEnumeralType() << ConvTy;
12499       }
12500 
12501       SemaDiagnosticBuilder diagnoseAmbiguous(
12502           Sema &S, SourceLocation Loc, QualType T) override {
12503         return S.Diag(Loc, diag::err_ice_ambiguous_conversion) << T;
12504       }
12505 
12506       SemaDiagnosticBuilder noteAmbiguous(
12507           Sema &S, CXXConversionDecl *Conv, QualType ConvTy) override {
12508         return S.Diag(Conv->getLocation(), diag::note_ice_conversion_here)
12509                  << ConvTy->isEnumeralType() << ConvTy;
12510       }
12511 
12512       SemaDiagnosticBuilder diagnoseConversion(
12513           Sema &S, SourceLocation Loc, QualType T, QualType ConvTy) override {
12514         llvm_unreachable("conversion functions are permitted");
12515       }
12516     } ConvertDiagnoser(Diagnoser.Suppress);
12517 
12518     Converted = PerformContextualImplicitConversion(DiagLoc, E,
12519                                                     ConvertDiagnoser);
12520     if (Converted.isInvalid())
12521       return Converted;
12522     E = Converted.get();
12523     if (!E->getType()->isIntegralOrUnscopedEnumerationType())
12524       return ExprError();
12525   } else if (!E->getType()->isIntegralOrUnscopedEnumerationType()) {
12526     // An ICE must be of integral or unscoped enumeration type.
12527     if (!Diagnoser.Suppress)
12528       Diagnoser.diagnoseNotICE(*this, DiagLoc, E->getSourceRange());
12529     return ExprError();
12530   }
12531 
12532   // Circumvent ICE checking in C++11 to avoid evaluating the expression twice
12533   // in the non-ICE case.
12534   if (!getLangOpts().CPlusPlus11 && E->isIntegerConstantExpr(Context)) {
12535     if (Result)
12536       *Result = E->EvaluateKnownConstInt(Context);
12537     return E;
12538   }
12539 
12540   Expr::EvalResult EvalResult;
12541   SmallVector<PartialDiagnosticAt, 8> Notes;
12542   EvalResult.Diag = &Notes;
12543 
12544   // Try to evaluate the expression, and produce diagnostics explaining why it's
12545   // not a constant expression as a side-effect.
12546   bool Folded = E->EvaluateAsRValue(EvalResult, Context) &&
12547                 EvalResult.Val.isInt() && !EvalResult.HasSideEffects;
12548 
12549   // In C++11, we can rely on diagnostics being produced for any expression
12550   // which is not a constant expression. If no diagnostics were produced, then
12551   // this is a constant expression.
12552   if (Folded && getLangOpts().CPlusPlus11 && Notes.empty()) {
12553     if (Result)
12554       *Result = EvalResult.Val.getInt();
12555     return E;
12556   }
12557 
12558   // If our only note is the usual "invalid subexpression" note, just point
12559   // the caret at its location rather than producing an essentially
12560   // redundant note.
12561   if (Notes.size() == 1 && Notes[0].second.getDiagID() ==
12562         diag::note_invalid_subexpr_in_const_expr) {
12563     DiagLoc = Notes[0].first;
12564     Notes.clear();
12565   }
12566 
12567   if (!Folded || !AllowFold) {
12568     if (!Diagnoser.Suppress) {
12569       Diagnoser.diagnoseNotICE(*this, DiagLoc, E->getSourceRange());
12570       for (const PartialDiagnosticAt &Note : Notes)
12571         Diag(Note.first, Note.second);
12572     }
12573 
12574     return ExprError();
12575   }
12576 
12577   Diagnoser.diagnoseFold(*this, DiagLoc, E->getSourceRange());
12578   for (const PartialDiagnosticAt &Note : Notes)
12579     Diag(Note.first, Note.second);
12580 
12581   if (Result)
12582     *Result = EvalResult.Val.getInt();
12583   return E;
12584 }
12585 
12586 namespace {
12587   // Handle the case where we conclude a expression which we speculatively
12588   // considered to be unevaluated is actually evaluated.
12589   class TransformToPE : public TreeTransform<TransformToPE> {
12590     typedef TreeTransform<TransformToPE> BaseTransform;
12591 
12592   public:
12593     TransformToPE(Sema &SemaRef) : BaseTransform(SemaRef) { }
12594 
12595     // Make sure we redo semantic analysis
12596     bool AlwaysRebuild() { return true; }
12597 
12598     // Make sure we handle LabelStmts correctly.
12599     // FIXME: This does the right thing, but maybe we need a more general
12600     // fix to TreeTransform?
12601     StmtResult TransformLabelStmt(LabelStmt *S) {
12602       S->getDecl()->setStmt(nullptr);
12603       return BaseTransform::TransformLabelStmt(S);
12604     }
12605 
12606     // We need to special-case DeclRefExprs referring to FieldDecls which
12607     // are not part of a member pointer formation; normal TreeTransforming
12608     // doesn't catch this case because of the way we represent them in the AST.
12609     // FIXME: This is a bit ugly; is it really the best way to handle this
12610     // case?
12611     //
12612     // Error on DeclRefExprs referring to FieldDecls.
12613     ExprResult TransformDeclRefExpr(DeclRefExpr *E) {
12614       if (isa<FieldDecl>(E->getDecl()) &&
12615           !SemaRef.isUnevaluatedContext())
12616         return SemaRef.Diag(E->getLocation(),
12617                             diag::err_invalid_non_static_member_use)
12618             << E->getDecl() << E->getSourceRange();
12619 
12620       return BaseTransform::TransformDeclRefExpr(E);
12621     }
12622 
12623     // Exception: filter out member pointer formation
12624     ExprResult TransformUnaryOperator(UnaryOperator *E) {
12625       if (E->getOpcode() == UO_AddrOf && E->getType()->isMemberPointerType())
12626         return E;
12627 
12628       return BaseTransform::TransformUnaryOperator(E);
12629     }
12630 
12631     ExprResult TransformLambdaExpr(LambdaExpr *E) {
12632       // Lambdas never need to be transformed.
12633       return E;
12634     }
12635   };
12636 }
12637 
12638 ExprResult Sema::TransformToPotentiallyEvaluated(Expr *E) {
12639   assert(isUnevaluatedContext() &&
12640          "Should only transform unevaluated expressions");
12641   ExprEvalContexts.back().Context =
12642       ExprEvalContexts[ExprEvalContexts.size()-2].Context;
12643   if (isUnevaluatedContext())
12644     return E;
12645   return TransformToPE(*this).TransformExpr(E);
12646 }
12647 
12648 void
12649 Sema::PushExpressionEvaluationContext(ExpressionEvaluationContext NewContext,
12650                                       Decl *LambdaContextDecl,
12651                                       bool IsDecltype) {
12652   ExprEvalContexts.emplace_back(NewContext, ExprCleanupObjects.size(),
12653                                 ExprNeedsCleanups, LambdaContextDecl,
12654                                 IsDecltype);
12655   ExprNeedsCleanups = false;
12656   if (!MaybeODRUseExprs.empty())
12657     std::swap(MaybeODRUseExprs, ExprEvalContexts.back().SavedMaybeODRUseExprs);
12658 }
12659 
12660 void
12661 Sema::PushExpressionEvaluationContext(ExpressionEvaluationContext NewContext,
12662                                       ReuseLambdaContextDecl_t,
12663                                       bool IsDecltype) {
12664   Decl *ClosureContextDecl = ExprEvalContexts.back().ManglingContextDecl;
12665   PushExpressionEvaluationContext(NewContext, ClosureContextDecl, IsDecltype);
12666 }
12667 
12668 void Sema::PopExpressionEvaluationContext() {
12669   ExpressionEvaluationContextRecord& Rec = ExprEvalContexts.back();
12670   unsigned NumTypos = Rec.NumTypos;
12671 
12672   if (!Rec.Lambdas.empty()) {
12673     if (Rec.isUnevaluated() || Rec.Context == ConstantEvaluated) {
12674       unsigned D;
12675       if (Rec.isUnevaluated()) {
12676         // C++11 [expr.prim.lambda]p2:
12677         //   A lambda-expression shall not appear in an unevaluated operand
12678         //   (Clause 5).
12679         D = diag::err_lambda_unevaluated_operand;
12680       } else {
12681         // C++1y [expr.const]p2:
12682         //   A conditional-expression e is a core constant expression unless the
12683         //   evaluation of e, following the rules of the abstract machine, would
12684         //   evaluate [...] a lambda-expression.
12685         D = diag::err_lambda_in_constant_expression;
12686       }
12687       for (const auto *L : Rec.Lambdas)
12688         Diag(L->getLocStart(), D);
12689     } else {
12690       // Mark the capture expressions odr-used. This was deferred
12691       // during lambda expression creation.
12692       for (auto *Lambda : Rec.Lambdas) {
12693         for (auto *C : Lambda->capture_inits())
12694           MarkDeclarationsReferencedInExpr(C);
12695       }
12696     }
12697   }
12698 
12699   // When are coming out of an unevaluated context, clear out any
12700   // temporaries that we may have created as part of the evaluation of
12701   // the expression in that context: they aren't relevant because they
12702   // will never be constructed.
12703   if (Rec.isUnevaluated() || Rec.Context == ConstantEvaluated) {
12704     ExprCleanupObjects.erase(ExprCleanupObjects.begin() + Rec.NumCleanupObjects,
12705                              ExprCleanupObjects.end());
12706     ExprNeedsCleanups = Rec.ParentNeedsCleanups;
12707     CleanupVarDeclMarking();
12708     std::swap(MaybeODRUseExprs, Rec.SavedMaybeODRUseExprs);
12709   // Otherwise, merge the contexts together.
12710   } else {
12711     ExprNeedsCleanups |= Rec.ParentNeedsCleanups;
12712     MaybeODRUseExprs.insert(Rec.SavedMaybeODRUseExprs.begin(),
12713                             Rec.SavedMaybeODRUseExprs.end());
12714   }
12715 
12716   // Pop the current expression evaluation context off the stack.
12717   ExprEvalContexts.pop_back();
12718 
12719   if (!ExprEvalContexts.empty())
12720     ExprEvalContexts.back().NumTypos += NumTypos;
12721   else
12722     assert(NumTypos == 0 && "There are outstanding typos after popping the "
12723                             "last ExpressionEvaluationContextRecord");
12724 }
12725 
12726 void Sema::DiscardCleanupsInEvaluationContext() {
12727   ExprCleanupObjects.erase(
12728          ExprCleanupObjects.begin() + ExprEvalContexts.back().NumCleanupObjects,
12729          ExprCleanupObjects.end());
12730   ExprNeedsCleanups = false;
12731   MaybeODRUseExprs.clear();
12732 }
12733 
12734 ExprResult Sema::HandleExprEvaluationContextForTypeof(Expr *E) {
12735   if (!E->getType()->isVariablyModifiedType())
12736     return E;
12737   return TransformToPotentiallyEvaluated(E);
12738 }
12739 
12740 static bool IsPotentiallyEvaluatedContext(Sema &SemaRef) {
12741   // Do not mark anything as "used" within a dependent context; wait for
12742   // an instantiation.
12743   if (SemaRef.CurContext->isDependentContext())
12744     return false;
12745 
12746   switch (SemaRef.ExprEvalContexts.back().Context) {
12747     case Sema::Unevaluated:
12748     case Sema::UnevaluatedAbstract:
12749       // We are in an expression that is not potentially evaluated; do nothing.
12750       // (Depending on how you read the standard, we actually do need to do
12751       // something here for null pointer constants, but the standard's
12752       // definition of a null pointer constant is completely crazy.)
12753       return false;
12754 
12755     case Sema::ConstantEvaluated:
12756     case Sema::PotentiallyEvaluated:
12757       // We are in a potentially evaluated expression (or a constant-expression
12758       // in C++03); we need to do implicit template instantiation, implicitly
12759       // define class members, and mark most declarations as used.
12760       return true;
12761 
12762     case Sema::PotentiallyEvaluatedIfUsed:
12763       // Referenced declarations will only be used if the construct in the
12764       // containing expression is used.
12765       return false;
12766   }
12767   llvm_unreachable("Invalid context");
12768 }
12769 
12770 /// \brief Mark a function referenced, and check whether it is odr-used
12771 /// (C++ [basic.def.odr]p2, C99 6.9p3)
12772 void Sema::MarkFunctionReferenced(SourceLocation Loc, FunctionDecl *Func,
12773                                   bool MightBeOdrUse) {
12774   assert(Func && "No function?");
12775 
12776   Func->setReferenced();
12777 
12778   // C++11 [basic.def.odr]p3:
12779   //   A function whose name appears as a potentially-evaluated expression is
12780   //   odr-used if it is the unique lookup result or the selected member of a
12781   //   set of overloaded functions [...].
12782   //
12783   // We (incorrectly) mark overload resolution as an unevaluated context, so we
12784   // can just check that here. Skip the rest of this function if we've already
12785   // marked the function as used.
12786   bool OdrUse = MightBeOdrUse && IsPotentiallyEvaluatedContext(*this);
12787   if (Func->isUsed(/*CheckUsedAttr=*/false) || !OdrUse) {
12788     // C++11 [temp.inst]p3:
12789     //   Unless a function template specialization has been explicitly
12790     //   instantiated or explicitly specialized, the function template
12791     //   specialization is implicitly instantiated when the specialization is
12792     //   referenced in a context that requires a function definition to exist.
12793     //
12794     // We consider constexpr function templates to be referenced in a context
12795     // that requires a definition to exist whenever they are referenced.
12796     //
12797     // FIXME: This instantiates constexpr functions too frequently. If this is
12798     // really an unevaluated context (and we're not just in the definition of a
12799     // function template or overload resolution or other cases which we
12800     // incorrectly consider to be unevaluated contexts), and we're not in a
12801     // subexpression which we actually need to evaluate (for instance, a
12802     // template argument, array bound or an expression in a braced-init-list),
12803     // we are not permitted to instantiate this constexpr function definition.
12804     //
12805     // FIXME: This also implicitly defines special members too frequently. They
12806     // are only supposed to be implicitly defined if they are odr-used, but they
12807     // are not odr-used from constant expressions in unevaluated contexts.
12808     // However, they cannot be referenced if they are deleted, and they are
12809     // deleted whenever the implicit definition of the special member would
12810     // fail.
12811     if (!Func->isConstexpr() || Func->getBody())
12812       return;
12813     CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Func);
12814     if (!Func->isImplicitlyInstantiable() && (!MD || MD->isUserProvided()))
12815       return;
12816   }
12817 
12818   // Note that this declaration has been used.
12819   if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(Func)) {
12820     Constructor = cast<CXXConstructorDecl>(Constructor->getFirstDecl());
12821     if (Constructor->isDefaulted() && !Constructor->isDeleted()) {
12822       if (Constructor->isDefaultConstructor()) {
12823         if (Constructor->isTrivial() && !Constructor->hasAttr<DLLExportAttr>())
12824           return;
12825         DefineImplicitDefaultConstructor(Loc, Constructor);
12826       } else if (Constructor->isCopyConstructor()) {
12827         DefineImplicitCopyConstructor(Loc, Constructor);
12828       } else if (Constructor->isMoveConstructor()) {
12829         DefineImplicitMoveConstructor(Loc, Constructor);
12830       }
12831     } else if (Constructor->getInheritedConstructor()) {
12832       DefineInheritingConstructor(Loc, Constructor);
12833     }
12834   } else if (CXXDestructorDecl *Destructor =
12835                  dyn_cast<CXXDestructorDecl>(Func)) {
12836     Destructor = cast<CXXDestructorDecl>(Destructor->getFirstDecl());
12837     if (Destructor->isDefaulted() && !Destructor->isDeleted()) {
12838       if (Destructor->isTrivial() && !Destructor->hasAttr<DLLExportAttr>())
12839         return;
12840       DefineImplicitDestructor(Loc, Destructor);
12841     }
12842     if (Destructor->isVirtual() && getLangOpts().AppleKext)
12843       MarkVTableUsed(Loc, Destructor->getParent());
12844   } else if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(Func)) {
12845     if (MethodDecl->isOverloadedOperator() &&
12846         MethodDecl->getOverloadedOperator() == OO_Equal) {
12847       MethodDecl = cast<CXXMethodDecl>(MethodDecl->getFirstDecl());
12848       if (MethodDecl->isDefaulted() && !MethodDecl->isDeleted()) {
12849         if (MethodDecl->isCopyAssignmentOperator())
12850           DefineImplicitCopyAssignment(Loc, MethodDecl);
12851         else
12852           DefineImplicitMoveAssignment(Loc, MethodDecl);
12853       }
12854     } else if (isa<CXXConversionDecl>(MethodDecl) &&
12855                MethodDecl->getParent()->isLambda()) {
12856       CXXConversionDecl *Conversion =
12857           cast<CXXConversionDecl>(MethodDecl->getFirstDecl());
12858       if (Conversion->isLambdaToBlockPointerConversion())
12859         DefineImplicitLambdaToBlockPointerConversion(Loc, Conversion);
12860       else
12861         DefineImplicitLambdaToFunctionPointerConversion(Loc, Conversion);
12862     } else if (MethodDecl->isVirtual() && getLangOpts().AppleKext)
12863       MarkVTableUsed(Loc, MethodDecl->getParent());
12864   }
12865 
12866   // Recursive functions should be marked when used from another function.
12867   // FIXME: Is this really right?
12868   if (CurContext == Func) return;
12869 
12870   // Resolve the exception specification for any function which is
12871   // used: CodeGen will need it.
12872   const FunctionProtoType *FPT = Func->getType()->getAs<FunctionProtoType>();
12873   if (FPT && isUnresolvedExceptionSpec(FPT->getExceptionSpecType()))
12874     ResolveExceptionSpec(Loc, FPT);
12875 
12876   // Implicit instantiation of function templates and member functions of
12877   // class templates.
12878   if (Func->isImplicitlyInstantiable()) {
12879     bool AlreadyInstantiated = false;
12880     SourceLocation PointOfInstantiation = Loc;
12881     if (FunctionTemplateSpecializationInfo *SpecInfo
12882                               = Func->getTemplateSpecializationInfo()) {
12883       if (SpecInfo->getPointOfInstantiation().isInvalid())
12884         SpecInfo->setPointOfInstantiation(Loc);
12885       else if (SpecInfo->getTemplateSpecializationKind()
12886                  == TSK_ImplicitInstantiation) {
12887         AlreadyInstantiated = true;
12888         PointOfInstantiation = SpecInfo->getPointOfInstantiation();
12889       }
12890     } else if (MemberSpecializationInfo *MSInfo
12891                                 = Func->getMemberSpecializationInfo()) {
12892       if (MSInfo->getPointOfInstantiation().isInvalid())
12893         MSInfo->setPointOfInstantiation(Loc);
12894       else if (MSInfo->getTemplateSpecializationKind()
12895                  == TSK_ImplicitInstantiation) {
12896         AlreadyInstantiated = true;
12897         PointOfInstantiation = MSInfo->getPointOfInstantiation();
12898       }
12899     }
12900 
12901     if (!AlreadyInstantiated || Func->isConstexpr()) {
12902       if (isa<CXXRecordDecl>(Func->getDeclContext()) &&
12903           cast<CXXRecordDecl>(Func->getDeclContext())->isLocalClass() &&
12904           ActiveTemplateInstantiations.size())
12905         PendingLocalImplicitInstantiations.push_back(
12906             std::make_pair(Func, PointOfInstantiation));
12907       else if (Func->isConstexpr())
12908         // Do not defer instantiations of constexpr functions, to avoid the
12909         // expression evaluator needing to call back into Sema if it sees a
12910         // call to such a function.
12911         InstantiateFunctionDefinition(PointOfInstantiation, Func);
12912       else {
12913         PendingInstantiations.push_back(std::make_pair(Func,
12914                                                        PointOfInstantiation));
12915         // Notify the consumer that a function was implicitly instantiated.
12916         Consumer.HandleCXXImplicitFunctionInstantiation(Func);
12917       }
12918     }
12919   } else {
12920     // Walk redefinitions, as some of them may be instantiable.
12921     for (auto i : Func->redecls()) {
12922       if (!i->isUsed(false) && i->isImplicitlyInstantiable())
12923         MarkFunctionReferenced(Loc, i, OdrUse);
12924     }
12925   }
12926 
12927   if (!OdrUse) return;
12928 
12929   // Keep track of used but undefined functions.
12930   if (!Func->isDefined()) {
12931     if (mightHaveNonExternalLinkage(Func))
12932       UndefinedButUsed.insert(std::make_pair(Func->getCanonicalDecl(), Loc));
12933     else if (Func->getMostRecentDecl()->isInlined() &&
12934              !LangOpts.GNUInline &&
12935              !Func->getMostRecentDecl()->hasAttr<GNUInlineAttr>())
12936       UndefinedButUsed.insert(std::make_pair(Func->getCanonicalDecl(), Loc));
12937   }
12938 
12939   // Normally the most current decl is marked used while processing the use and
12940   // any subsequent decls are marked used by decl merging. This fails with
12941   // template instantiation since marking can happen at the end of the file
12942   // and, because of the two phase lookup, this function is called with at
12943   // decl in the middle of a decl chain. We loop to maintain the invariant
12944   // that once a decl is used, all decls after it are also used.
12945   for (FunctionDecl *F = Func->getMostRecentDecl();; F = F->getPreviousDecl()) {
12946     F->markUsed(Context);
12947     if (F == Func)
12948       break;
12949   }
12950 }
12951 
12952 static void
12953 diagnoseUncapturableValueReference(Sema &S, SourceLocation loc,
12954                                    VarDecl *var, DeclContext *DC) {
12955   DeclContext *VarDC = var->getDeclContext();
12956 
12957   //  If the parameter still belongs to the translation unit, then
12958   //  we're actually just using one parameter in the declaration of
12959   //  the next.
12960   if (isa<ParmVarDecl>(var) &&
12961       isa<TranslationUnitDecl>(VarDC))
12962     return;
12963 
12964   // For C code, don't diagnose about capture if we're not actually in code
12965   // right now; it's impossible to write a non-constant expression outside of
12966   // function context, so we'll get other (more useful) diagnostics later.
12967   //
12968   // For C++, things get a bit more nasty... it would be nice to suppress this
12969   // diagnostic for certain cases like using a local variable in an array bound
12970   // for a member of a local class, but the correct predicate is not obvious.
12971   if (!S.getLangOpts().CPlusPlus && !S.CurContext->isFunctionOrMethod())
12972     return;
12973 
12974   if (isa<CXXMethodDecl>(VarDC) &&
12975       cast<CXXRecordDecl>(VarDC->getParent())->isLambda()) {
12976     S.Diag(loc, diag::err_reference_to_local_var_in_enclosing_lambda)
12977       << var->getIdentifier();
12978   } else if (FunctionDecl *fn = dyn_cast<FunctionDecl>(VarDC)) {
12979     S.Diag(loc, diag::err_reference_to_local_var_in_enclosing_function)
12980       << var->getIdentifier() << fn->getDeclName();
12981   } else if (isa<BlockDecl>(VarDC)) {
12982     S.Diag(loc, diag::err_reference_to_local_var_in_enclosing_block)
12983       << var->getIdentifier();
12984   } else {
12985     // FIXME: Is there any other context where a local variable can be
12986     // declared?
12987     S.Diag(loc, diag::err_reference_to_local_var_in_enclosing_context)
12988       << var->getIdentifier();
12989   }
12990 
12991   S.Diag(var->getLocation(), diag::note_entity_declared_at)
12992       << var->getIdentifier();
12993 
12994   // FIXME: Add additional diagnostic info about class etc. which prevents
12995   // capture.
12996 }
12997 
12998 
12999 static bool isVariableAlreadyCapturedInScopeInfo(CapturingScopeInfo *CSI, VarDecl *Var,
13000                                       bool &SubCapturesAreNested,
13001                                       QualType &CaptureType,
13002                                       QualType &DeclRefType) {
13003    // Check whether we've already captured it.
13004   if (CSI->CaptureMap.count(Var)) {
13005     // If we found a capture, any subcaptures are nested.
13006     SubCapturesAreNested = true;
13007 
13008     // Retrieve the capture type for this variable.
13009     CaptureType = CSI->getCapture(Var).getCaptureType();
13010 
13011     // Compute the type of an expression that refers to this variable.
13012     DeclRefType = CaptureType.getNonReferenceType();
13013 
13014     // Similarly to mutable captures in lambda, all the OpenMP captures by copy
13015     // are mutable in the sense that user can change their value - they are
13016     // private instances of the captured declarations.
13017     const CapturingScopeInfo::Capture &Cap = CSI->getCapture(Var);
13018     if (Cap.isCopyCapture() &&
13019         !(isa<LambdaScopeInfo>(CSI) && cast<LambdaScopeInfo>(CSI)->Mutable) &&
13020         !(isa<CapturedRegionScopeInfo>(CSI) &&
13021           cast<CapturedRegionScopeInfo>(CSI)->CapRegionKind == CR_OpenMP))
13022       DeclRefType.addConst();
13023     return true;
13024   }
13025   return false;
13026 }
13027 
13028 // Only block literals, captured statements, and lambda expressions can
13029 // capture; other scopes don't work.
13030 static DeclContext *getParentOfCapturingContextOrNull(DeclContext *DC, VarDecl *Var,
13031                                  SourceLocation Loc,
13032                                  const bool Diagnose, Sema &S) {
13033   if (isa<BlockDecl>(DC) || isa<CapturedDecl>(DC) || isLambdaCallOperator(DC))
13034     return getLambdaAwareParentOfDeclContext(DC);
13035   else if (Var->hasLocalStorage()) {
13036     if (Diagnose)
13037        diagnoseUncapturableValueReference(S, Loc, Var, DC);
13038   }
13039   return nullptr;
13040 }
13041 
13042 // Certain capturing entities (lambdas, blocks etc.) are not allowed to capture
13043 // certain types of variables (unnamed, variably modified types etc.)
13044 // so check for eligibility.
13045 static bool isVariableCapturable(CapturingScopeInfo *CSI, VarDecl *Var,
13046                                  SourceLocation Loc,
13047                                  const bool Diagnose, Sema &S) {
13048 
13049   bool IsBlock = isa<BlockScopeInfo>(CSI);
13050   bool IsLambda = isa<LambdaScopeInfo>(CSI);
13051 
13052   // Lambdas are not allowed to capture unnamed variables
13053   // (e.g. anonymous unions).
13054   // FIXME: The C++11 rule don't actually state this explicitly, but I'm
13055   // assuming that's the intent.
13056   if (IsLambda && !Var->getDeclName()) {
13057     if (Diagnose) {
13058       S.Diag(Loc, diag::err_lambda_capture_anonymous_var);
13059       S.Diag(Var->getLocation(), diag::note_declared_at);
13060     }
13061     return false;
13062   }
13063 
13064   // Prohibit variably-modified types in blocks; they're difficult to deal with.
13065   if (Var->getType()->isVariablyModifiedType() && IsBlock) {
13066     if (Diagnose) {
13067       S.Diag(Loc, diag::err_ref_vm_type);
13068       S.Diag(Var->getLocation(), diag::note_previous_decl)
13069         << Var->getDeclName();
13070     }
13071     return false;
13072   }
13073   // Prohibit structs with flexible array members too.
13074   // We cannot capture what is in the tail end of the struct.
13075   if (const RecordType *VTTy = Var->getType()->getAs<RecordType>()) {
13076     if (VTTy->getDecl()->hasFlexibleArrayMember()) {
13077       if (Diagnose) {
13078         if (IsBlock)
13079           S.Diag(Loc, diag::err_ref_flexarray_type);
13080         else
13081           S.Diag(Loc, diag::err_lambda_capture_flexarray_type)
13082             << Var->getDeclName();
13083         S.Diag(Var->getLocation(), diag::note_previous_decl)
13084           << Var->getDeclName();
13085       }
13086       return false;
13087     }
13088   }
13089   const bool HasBlocksAttr = Var->hasAttr<BlocksAttr>();
13090   // Lambdas and captured statements are not allowed to capture __block
13091   // variables; they don't support the expected semantics.
13092   if (HasBlocksAttr && (IsLambda || isa<CapturedRegionScopeInfo>(CSI))) {
13093     if (Diagnose) {
13094       S.Diag(Loc, diag::err_capture_block_variable)
13095         << Var->getDeclName() << !IsLambda;
13096       S.Diag(Var->getLocation(), diag::note_previous_decl)
13097         << Var->getDeclName();
13098     }
13099     return false;
13100   }
13101 
13102   return true;
13103 }
13104 
13105 // Returns true if the capture by block was successful.
13106 static bool captureInBlock(BlockScopeInfo *BSI, VarDecl *Var,
13107                                  SourceLocation Loc,
13108                                  const bool BuildAndDiagnose,
13109                                  QualType &CaptureType,
13110                                  QualType &DeclRefType,
13111                                  const bool Nested,
13112                                  Sema &S) {
13113   Expr *CopyExpr = nullptr;
13114   bool ByRef = false;
13115 
13116   // Blocks are not allowed to capture arrays.
13117   if (CaptureType->isArrayType()) {
13118     if (BuildAndDiagnose) {
13119       S.Diag(Loc, diag::err_ref_array_type);
13120       S.Diag(Var->getLocation(), diag::note_previous_decl)
13121       << Var->getDeclName();
13122     }
13123     return false;
13124   }
13125 
13126   // Forbid the block-capture of autoreleasing variables.
13127   if (CaptureType.getObjCLifetime() == Qualifiers::OCL_Autoreleasing) {
13128     if (BuildAndDiagnose) {
13129       S.Diag(Loc, diag::err_arc_autoreleasing_capture)
13130         << /*block*/ 0;
13131       S.Diag(Var->getLocation(), diag::note_previous_decl)
13132         << Var->getDeclName();
13133     }
13134     return false;
13135   }
13136   const bool HasBlocksAttr = Var->hasAttr<BlocksAttr>();
13137   if (HasBlocksAttr || CaptureType->isReferenceType()) {
13138     // Block capture by reference does not change the capture or
13139     // declaration reference types.
13140     ByRef = true;
13141   } else {
13142     // Block capture by copy introduces 'const'.
13143     CaptureType = CaptureType.getNonReferenceType().withConst();
13144     DeclRefType = CaptureType;
13145 
13146     if (S.getLangOpts().CPlusPlus && BuildAndDiagnose) {
13147       if (const RecordType *Record = DeclRefType->getAs<RecordType>()) {
13148         // The capture logic needs the destructor, so make sure we mark it.
13149         // Usually this is unnecessary because most local variables have
13150         // their destructors marked at declaration time, but parameters are
13151         // an exception because it's technically only the call site that
13152         // actually requires the destructor.
13153         if (isa<ParmVarDecl>(Var))
13154           S.FinalizeVarWithDestructor(Var, Record);
13155 
13156         // Enter a new evaluation context to insulate the copy
13157         // full-expression.
13158         EnterExpressionEvaluationContext scope(S, S.PotentiallyEvaluated);
13159 
13160         // According to the blocks spec, the capture of a variable from
13161         // the stack requires a const copy constructor.  This is not true
13162         // of the copy/move done to move a __block variable to the heap.
13163         Expr *DeclRef = new (S.Context) DeclRefExpr(Var, Nested,
13164                                                   DeclRefType.withConst(),
13165                                                   VK_LValue, Loc);
13166 
13167         ExprResult Result
13168           = S.PerformCopyInitialization(
13169               InitializedEntity::InitializeBlock(Var->getLocation(),
13170                                                   CaptureType, false),
13171               Loc, DeclRef);
13172 
13173         // Build a full-expression copy expression if initialization
13174         // succeeded and used a non-trivial constructor.  Recover from
13175         // errors by pretending that the copy isn't necessary.
13176         if (!Result.isInvalid() &&
13177             !cast<CXXConstructExpr>(Result.get())->getConstructor()
13178                 ->isTrivial()) {
13179           Result = S.MaybeCreateExprWithCleanups(Result);
13180           CopyExpr = Result.get();
13181         }
13182       }
13183     }
13184   }
13185 
13186   // Actually capture the variable.
13187   if (BuildAndDiagnose)
13188     BSI->addCapture(Var, HasBlocksAttr, ByRef, Nested, Loc,
13189                     SourceLocation(), CaptureType, CopyExpr);
13190 
13191   return true;
13192 
13193 }
13194 
13195 
13196 /// \brief Capture the given variable in the captured region.
13197 static bool captureInCapturedRegion(CapturedRegionScopeInfo *RSI,
13198                                     VarDecl *Var,
13199                                     SourceLocation Loc,
13200                                     const bool BuildAndDiagnose,
13201                                     QualType &CaptureType,
13202                                     QualType &DeclRefType,
13203                                     const bool RefersToCapturedVariable,
13204                                     Sema &S) {
13205 
13206   // By default, capture variables by reference.
13207   bool ByRef = true;
13208   // Using an LValue reference type is consistent with Lambdas (see below).
13209   if (S.getLangOpts().OpenMP) {
13210     ByRef = S.IsOpenMPCapturedByRef(Var, RSI);
13211     if (S.IsOpenMPCapturedDecl(Var))
13212       DeclRefType = DeclRefType.getUnqualifiedType();
13213   }
13214 
13215   if (ByRef)
13216     CaptureType = S.Context.getLValueReferenceType(DeclRefType);
13217   else
13218     CaptureType = DeclRefType;
13219 
13220   Expr *CopyExpr = nullptr;
13221   if (BuildAndDiagnose) {
13222     // The current implementation assumes that all variables are captured
13223     // by references. Since there is no capture by copy, no expression
13224     // evaluation will be needed.
13225     RecordDecl *RD = RSI->TheRecordDecl;
13226 
13227     FieldDecl *Field
13228       = FieldDecl::Create(S.Context, RD, Loc, Loc, nullptr, CaptureType,
13229                           S.Context.getTrivialTypeSourceInfo(CaptureType, Loc),
13230                           nullptr, false, ICIS_NoInit);
13231     Field->setImplicit(true);
13232     Field->setAccess(AS_private);
13233     RD->addDecl(Field);
13234 
13235     CopyExpr = new (S.Context) DeclRefExpr(Var, RefersToCapturedVariable,
13236                                             DeclRefType, VK_LValue, Loc);
13237     Var->setReferenced(true);
13238     Var->markUsed(S.Context);
13239   }
13240 
13241   // Actually capture the variable.
13242   if (BuildAndDiagnose)
13243     RSI->addCapture(Var, /*isBlock*/false, ByRef, RefersToCapturedVariable, Loc,
13244                     SourceLocation(), CaptureType, CopyExpr);
13245 
13246 
13247   return true;
13248 }
13249 
13250 /// \brief Create a field within the lambda class for the variable
13251 /// being captured.
13252 static void addAsFieldToClosureType(Sema &S, LambdaScopeInfo *LSI,
13253                                     QualType FieldType, QualType DeclRefType,
13254                                     SourceLocation Loc,
13255                                     bool RefersToCapturedVariable) {
13256   CXXRecordDecl *Lambda = LSI->Lambda;
13257 
13258   // Build the non-static data member.
13259   FieldDecl *Field
13260     = FieldDecl::Create(S.Context, Lambda, Loc, Loc, nullptr, FieldType,
13261                         S.Context.getTrivialTypeSourceInfo(FieldType, Loc),
13262                         nullptr, false, ICIS_NoInit);
13263   Field->setImplicit(true);
13264   Field->setAccess(AS_private);
13265   Lambda->addDecl(Field);
13266 }
13267 
13268 /// \brief Capture the given variable in the lambda.
13269 static bool captureInLambda(LambdaScopeInfo *LSI,
13270                             VarDecl *Var,
13271                             SourceLocation Loc,
13272                             const bool BuildAndDiagnose,
13273                             QualType &CaptureType,
13274                             QualType &DeclRefType,
13275                             const bool RefersToCapturedVariable,
13276                             const Sema::TryCaptureKind Kind,
13277                             SourceLocation EllipsisLoc,
13278                             const bool IsTopScope,
13279                             Sema &S) {
13280 
13281   // Determine whether we are capturing by reference or by value.
13282   bool ByRef = false;
13283   if (IsTopScope && Kind != Sema::TryCapture_Implicit) {
13284     ByRef = (Kind == Sema::TryCapture_ExplicitByRef);
13285   } else {
13286     ByRef = (LSI->ImpCaptureStyle == LambdaScopeInfo::ImpCap_LambdaByref);
13287   }
13288 
13289   // Compute the type of the field that will capture this variable.
13290   if (ByRef) {
13291     // C++11 [expr.prim.lambda]p15:
13292     //   An entity is captured by reference if it is implicitly or
13293     //   explicitly captured but not captured by copy. It is
13294     //   unspecified whether additional unnamed non-static data
13295     //   members are declared in the closure type for entities
13296     //   captured by reference.
13297     //
13298     // FIXME: It is not clear whether we want to build an lvalue reference
13299     // to the DeclRefType or to CaptureType.getNonReferenceType(). GCC appears
13300     // to do the former, while EDG does the latter. Core issue 1249 will
13301     // clarify, but for now we follow GCC because it's a more permissive and
13302     // easily defensible position.
13303     CaptureType = S.Context.getLValueReferenceType(DeclRefType);
13304   } else {
13305     // C++11 [expr.prim.lambda]p14:
13306     //   For each entity captured by copy, an unnamed non-static
13307     //   data member is declared in the closure type. The
13308     //   declaration order of these members is unspecified. The type
13309     //   of such a data member is the type of the corresponding
13310     //   captured entity if the entity is not a reference to an
13311     //   object, or the referenced type otherwise. [Note: If the
13312     //   captured entity is a reference to a function, the
13313     //   corresponding data member is also a reference to a
13314     //   function. - end note ]
13315     if (const ReferenceType *RefType = CaptureType->getAs<ReferenceType>()){
13316       if (!RefType->getPointeeType()->isFunctionType())
13317         CaptureType = RefType->getPointeeType();
13318     }
13319 
13320     // Forbid the lambda copy-capture of autoreleasing variables.
13321     if (CaptureType.getObjCLifetime() == Qualifiers::OCL_Autoreleasing) {
13322       if (BuildAndDiagnose) {
13323         S.Diag(Loc, diag::err_arc_autoreleasing_capture) << /*lambda*/ 1;
13324         S.Diag(Var->getLocation(), diag::note_previous_decl)
13325           << Var->getDeclName();
13326       }
13327       return false;
13328     }
13329 
13330     // Make sure that by-copy captures are of a complete and non-abstract type.
13331     if (BuildAndDiagnose) {
13332       if (!CaptureType->isDependentType() &&
13333           S.RequireCompleteType(Loc, CaptureType,
13334                                 diag::err_capture_of_incomplete_type,
13335                                 Var->getDeclName()))
13336         return false;
13337 
13338       if (S.RequireNonAbstractType(Loc, CaptureType,
13339                                    diag::err_capture_of_abstract_type))
13340         return false;
13341     }
13342   }
13343 
13344   // Capture this variable in the lambda.
13345   if (BuildAndDiagnose)
13346     addAsFieldToClosureType(S, LSI, CaptureType, DeclRefType, Loc,
13347                             RefersToCapturedVariable);
13348 
13349   // Compute the type of a reference to this captured variable.
13350   if (ByRef)
13351     DeclRefType = CaptureType.getNonReferenceType();
13352   else {
13353     // C++ [expr.prim.lambda]p5:
13354     //   The closure type for a lambda-expression has a public inline
13355     //   function call operator [...]. This function call operator is
13356     //   declared const (9.3.1) if and only if the lambda-expression’s
13357     //   parameter-declaration-clause is not followed by mutable.
13358     DeclRefType = CaptureType.getNonReferenceType();
13359     if (!LSI->Mutable && !CaptureType->isReferenceType())
13360       DeclRefType.addConst();
13361   }
13362 
13363   // Add the capture.
13364   if (BuildAndDiagnose)
13365     LSI->addCapture(Var, /*IsBlock=*/false, ByRef, RefersToCapturedVariable,
13366                     Loc, EllipsisLoc, CaptureType, /*CopyExpr=*/nullptr);
13367 
13368   return true;
13369 }
13370 
13371 bool Sema::tryCaptureVariable(
13372     VarDecl *Var, SourceLocation ExprLoc, TryCaptureKind Kind,
13373     SourceLocation EllipsisLoc, bool BuildAndDiagnose, QualType &CaptureType,
13374     QualType &DeclRefType, const unsigned *const FunctionScopeIndexToStopAt) {
13375   // An init-capture is notionally from the context surrounding its
13376   // declaration, but its parent DC is the lambda class.
13377   DeclContext *VarDC = Var->getDeclContext();
13378   if (Var->isInitCapture())
13379     VarDC = VarDC->getParent();
13380 
13381   DeclContext *DC = CurContext;
13382   const unsigned MaxFunctionScopesIndex = FunctionScopeIndexToStopAt
13383       ? *FunctionScopeIndexToStopAt : FunctionScopes.size() - 1;
13384   // We need to sync up the Declaration Context with the
13385   // FunctionScopeIndexToStopAt
13386   if (FunctionScopeIndexToStopAt) {
13387     unsigned FSIndex = FunctionScopes.size() - 1;
13388     while (FSIndex != MaxFunctionScopesIndex) {
13389       DC = getLambdaAwareParentOfDeclContext(DC);
13390       --FSIndex;
13391     }
13392   }
13393 
13394 
13395   // If the variable is declared in the current context, there is no need to
13396   // capture it.
13397   if (VarDC == DC) return true;
13398 
13399   // Capture global variables if it is required to use private copy of this
13400   // variable.
13401   bool IsGlobal = !Var->hasLocalStorage();
13402   if (IsGlobal && !(LangOpts.OpenMP && IsOpenMPCapturedDecl(Var)))
13403     return true;
13404 
13405   // Walk up the stack to determine whether we can capture the variable,
13406   // performing the "simple" checks that don't depend on type. We stop when
13407   // we've either hit the declared scope of the variable or find an existing
13408   // capture of that variable.  We start from the innermost capturing-entity
13409   // (the DC) and ensure that all intervening capturing-entities
13410   // (blocks/lambdas etc.) between the innermost capturer and the variable`s
13411   // declcontext can either capture the variable or have already captured
13412   // the variable.
13413   CaptureType = Var->getType();
13414   DeclRefType = CaptureType.getNonReferenceType();
13415   bool Nested = false;
13416   bool Explicit = (Kind != TryCapture_Implicit);
13417   unsigned FunctionScopesIndex = MaxFunctionScopesIndex;
13418   unsigned OpenMPLevel = 0;
13419   do {
13420     // Only block literals, captured statements, and lambda expressions can
13421     // capture; other scopes don't work.
13422     DeclContext *ParentDC = getParentOfCapturingContextOrNull(DC, Var,
13423                                                               ExprLoc,
13424                                                               BuildAndDiagnose,
13425                                                               *this);
13426     // We need to check for the parent *first* because, if we *have*
13427     // private-captured a global variable, we need to recursively capture it in
13428     // intermediate blocks, lambdas, etc.
13429     if (!ParentDC) {
13430       if (IsGlobal) {
13431         FunctionScopesIndex = MaxFunctionScopesIndex - 1;
13432         break;
13433       }
13434       return true;
13435     }
13436 
13437     FunctionScopeInfo  *FSI = FunctionScopes[FunctionScopesIndex];
13438     CapturingScopeInfo *CSI = cast<CapturingScopeInfo>(FSI);
13439 
13440 
13441     // Check whether we've already captured it.
13442     if (isVariableAlreadyCapturedInScopeInfo(CSI, Var, Nested, CaptureType,
13443                                              DeclRefType))
13444       break;
13445     // If we are instantiating a generic lambda call operator body,
13446     // we do not want to capture new variables.  What was captured
13447     // during either a lambdas transformation or initial parsing
13448     // should be used.
13449     if (isGenericLambdaCallOperatorSpecialization(DC)) {
13450       if (BuildAndDiagnose) {
13451         LambdaScopeInfo *LSI = cast<LambdaScopeInfo>(CSI);
13452         if (LSI->ImpCaptureStyle == CapturingScopeInfo::ImpCap_None) {
13453           Diag(ExprLoc, diag::err_lambda_impcap) << Var->getDeclName();
13454           Diag(Var->getLocation(), diag::note_previous_decl)
13455              << Var->getDeclName();
13456           Diag(LSI->Lambda->getLocStart(), diag::note_lambda_decl);
13457         } else
13458           diagnoseUncapturableValueReference(*this, ExprLoc, Var, DC);
13459       }
13460       return true;
13461     }
13462     // Certain capturing entities (lambdas, blocks etc.) are not allowed to capture
13463     // certain types of variables (unnamed, variably modified types etc.)
13464     // so check for eligibility.
13465     if (!isVariableCapturable(CSI, Var, ExprLoc, BuildAndDiagnose, *this))
13466        return true;
13467 
13468     // Try to capture variable-length arrays types.
13469     if (Var->getType()->isVariablyModifiedType()) {
13470       // We're going to walk down into the type and look for VLA
13471       // expressions.
13472       QualType QTy = Var->getType();
13473       if (ParmVarDecl *PVD = dyn_cast_or_null<ParmVarDecl>(Var))
13474         QTy = PVD->getOriginalType();
13475       captureVariablyModifiedType(Context, QTy, CSI);
13476     }
13477 
13478     if (getLangOpts().OpenMP) {
13479       if (auto *RSI = dyn_cast<CapturedRegionScopeInfo>(CSI)) {
13480         // OpenMP private variables should not be captured in outer scope, so
13481         // just break here. Similarly, global variables that are captured in a
13482         // target region should not be captured outside the scope of the region.
13483         if (RSI->CapRegionKind == CR_OpenMP) {
13484           auto isTargetCap = isOpenMPTargetCapturedDecl(Var, OpenMPLevel);
13485           // When we detect target captures we are looking from inside the
13486           // target region, therefore we need to propagate the capture from the
13487           // enclosing region. Therefore, the capture is not initially nested.
13488           if (isTargetCap)
13489             FunctionScopesIndex--;
13490 
13491           if (isTargetCap || isOpenMPPrivateDecl(Var, OpenMPLevel)) {
13492             Nested = !isTargetCap;
13493             DeclRefType = DeclRefType.getUnqualifiedType();
13494             CaptureType = Context.getLValueReferenceType(DeclRefType);
13495             break;
13496           }
13497           ++OpenMPLevel;
13498         }
13499       }
13500     }
13501     if (CSI->ImpCaptureStyle == CapturingScopeInfo::ImpCap_None && !Explicit) {
13502       // No capture-default, and this is not an explicit capture
13503       // so cannot capture this variable.
13504       if (BuildAndDiagnose) {
13505         Diag(ExprLoc, diag::err_lambda_impcap) << Var->getDeclName();
13506         Diag(Var->getLocation(), diag::note_previous_decl)
13507           << Var->getDeclName();
13508         if (cast<LambdaScopeInfo>(CSI)->Lambda)
13509           Diag(cast<LambdaScopeInfo>(CSI)->Lambda->getLocStart(),
13510                diag::note_lambda_decl);
13511         // FIXME: If we error out because an outer lambda can not implicitly
13512         // capture a variable that an inner lambda explicitly captures, we
13513         // should have the inner lambda do the explicit capture - because
13514         // it makes for cleaner diagnostics later.  This would purely be done
13515         // so that the diagnostic does not misleadingly claim that a variable
13516         // can not be captured by a lambda implicitly even though it is captured
13517         // explicitly.  Suggestion:
13518         //  - create const bool VariableCaptureWasInitiallyExplicit = Explicit
13519         //    at the function head
13520         //  - cache the StartingDeclContext - this must be a lambda
13521         //  - captureInLambda in the innermost lambda the variable.
13522       }
13523       return true;
13524     }
13525 
13526     FunctionScopesIndex--;
13527     DC = ParentDC;
13528     Explicit = false;
13529   } while (!VarDC->Equals(DC));
13530 
13531   // Walk back down the scope stack, (e.g. from outer lambda to inner lambda)
13532   // computing the type of the capture at each step, checking type-specific
13533   // requirements, and adding captures if requested.
13534   // If the variable had already been captured previously, we start capturing
13535   // at the lambda nested within that one.
13536   for (unsigned I = ++FunctionScopesIndex, N = MaxFunctionScopesIndex + 1; I != N;
13537        ++I) {
13538     CapturingScopeInfo *CSI = cast<CapturingScopeInfo>(FunctionScopes[I]);
13539 
13540     if (BlockScopeInfo *BSI = dyn_cast<BlockScopeInfo>(CSI)) {
13541       if (!captureInBlock(BSI, Var, ExprLoc,
13542                           BuildAndDiagnose, CaptureType,
13543                           DeclRefType, Nested, *this))
13544         return true;
13545       Nested = true;
13546     } else if (CapturedRegionScopeInfo *RSI = dyn_cast<CapturedRegionScopeInfo>(CSI)) {
13547       if (!captureInCapturedRegion(RSI, Var, ExprLoc,
13548                                    BuildAndDiagnose, CaptureType,
13549                                    DeclRefType, Nested, *this))
13550         return true;
13551       Nested = true;
13552     } else {
13553       LambdaScopeInfo *LSI = cast<LambdaScopeInfo>(CSI);
13554       if (!captureInLambda(LSI, Var, ExprLoc,
13555                            BuildAndDiagnose, CaptureType,
13556                            DeclRefType, Nested, Kind, EllipsisLoc,
13557                             /*IsTopScope*/I == N - 1, *this))
13558         return true;
13559       Nested = true;
13560     }
13561   }
13562   return false;
13563 }
13564 
13565 bool Sema::tryCaptureVariable(VarDecl *Var, SourceLocation Loc,
13566                               TryCaptureKind Kind, SourceLocation EllipsisLoc) {
13567   QualType CaptureType;
13568   QualType DeclRefType;
13569   return tryCaptureVariable(Var, Loc, Kind, EllipsisLoc,
13570                             /*BuildAndDiagnose=*/true, CaptureType,
13571                             DeclRefType, nullptr);
13572 }
13573 
13574 bool Sema::NeedToCaptureVariable(VarDecl *Var, SourceLocation Loc) {
13575   QualType CaptureType;
13576   QualType DeclRefType;
13577   return !tryCaptureVariable(Var, Loc, TryCapture_Implicit, SourceLocation(),
13578                              /*BuildAndDiagnose=*/false, CaptureType,
13579                              DeclRefType, nullptr);
13580 }
13581 
13582 QualType Sema::getCapturedDeclRefType(VarDecl *Var, SourceLocation Loc) {
13583   QualType CaptureType;
13584   QualType DeclRefType;
13585 
13586   // Determine whether we can capture this variable.
13587   if (tryCaptureVariable(Var, Loc, TryCapture_Implicit, SourceLocation(),
13588                          /*BuildAndDiagnose=*/false, CaptureType,
13589                          DeclRefType, nullptr))
13590     return QualType();
13591 
13592   return DeclRefType;
13593 }
13594 
13595 
13596 
13597 // If either the type of the variable or the initializer is dependent,
13598 // return false. Otherwise, determine whether the variable is a constant
13599 // expression. Use this if you need to know if a variable that might or
13600 // might not be dependent is truly a constant expression.
13601 static inline bool IsVariableNonDependentAndAConstantExpression(VarDecl *Var,
13602     ASTContext &Context) {
13603 
13604   if (Var->getType()->isDependentType())
13605     return false;
13606   const VarDecl *DefVD = nullptr;
13607   Var->getAnyInitializer(DefVD);
13608   if (!DefVD)
13609     return false;
13610   EvaluatedStmt *Eval = DefVD->ensureEvaluatedStmt();
13611   Expr *Init = cast<Expr>(Eval->Value);
13612   if (Init->isValueDependent())
13613     return false;
13614   return IsVariableAConstantExpression(Var, Context);
13615 }
13616 
13617 
13618 void Sema::UpdateMarkingForLValueToRValue(Expr *E) {
13619   // Per C++11 [basic.def.odr], a variable is odr-used "unless it is
13620   // an object that satisfies the requirements for appearing in a
13621   // constant expression (5.19) and the lvalue-to-rvalue conversion (4.1)
13622   // is immediately applied."  This function handles the lvalue-to-rvalue
13623   // conversion part.
13624   MaybeODRUseExprs.erase(E->IgnoreParens());
13625 
13626   // If we are in a lambda, check if this DeclRefExpr or MemberExpr refers
13627   // to a variable that is a constant expression, and if so, identify it as
13628   // a reference to a variable that does not involve an odr-use of that
13629   // variable.
13630   if (LambdaScopeInfo *LSI = getCurLambda()) {
13631     Expr *SansParensExpr = E->IgnoreParens();
13632     VarDecl *Var = nullptr;
13633     if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(SansParensExpr))
13634       Var = dyn_cast<VarDecl>(DRE->getFoundDecl());
13635     else if (MemberExpr *ME = dyn_cast<MemberExpr>(SansParensExpr))
13636       Var = dyn_cast<VarDecl>(ME->getMemberDecl());
13637 
13638     if (Var && IsVariableNonDependentAndAConstantExpression(Var, Context))
13639       LSI->markVariableExprAsNonODRUsed(SansParensExpr);
13640   }
13641 }
13642 
13643 ExprResult Sema::ActOnConstantExpression(ExprResult Res) {
13644   Res = CorrectDelayedTyposInExpr(Res);
13645 
13646   if (!Res.isUsable())
13647     return Res;
13648 
13649   // If a constant-expression is a reference to a variable where we delay
13650   // deciding whether it is an odr-use, just assume we will apply the
13651   // lvalue-to-rvalue conversion.  In the one case where this doesn't happen
13652   // (a non-type template argument), we have special handling anyway.
13653   UpdateMarkingForLValueToRValue(Res.get());
13654   return Res;
13655 }
13656 
13657 void Sema::CleanupVarDeclMarking() {
13658   for (Expr *E : MaybeODRUseExprs) {
13659     VarDecl *Var;
13660     SourceLocation Loc;
13661     if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E)) {
13662       Var = cast<VarDecl>(DRE->getDecl());
13663       Loc = DRE->getLocation();
13664     } else if (MemberExpr *ME = dyn_cast<MemberExpr>(E)) {
13665       Var = cast<VarDecl>(ME->getMemberDecl());
13666       Loc = ME->getMemberLoc();
13667     } else {
13668       llvm_unreachable("Unexpected expression");
13669     }
13670 
13671     MarkVarDeclODRUsed(Var, Loc, *this,
13672                        /*MaxFunctionScopeIndex Pointer*/ nullptr);
13673   }
13674 
13675   MaybeODRUseExprs.clear();
13676 }
13677 
13678 
13679 static void DoMarkVarDeclReferenced(Sema &SemaRef, SourceLocation Loc,
13680                                     VarDecl *Var, Expr *E) {
13681   assert((!E || isa<DeclRefExpr>(E) || isa<MemberExpr>(E)) &&
13682          "Invalid Expr argument to DoMarkVarDeclReferenced");
13683   Var->setReferenced();
13684 
13685   TemplateSpecializationKind TSK = Var->getTemplateSpecializationKind();
13686   bool MarkODRUsed = true;
13687 
13688   // If the context is not potentially evaluated, this is not an odr-use and
13689   // does not trigger instantiation.
13690   if (!IsPotentiallyEvaluatedContext(SemaRef)) {
13691     if (SemaRef.isUnevaluatedContext())
13692       return;
13693 
13694     // If we don't yet know whether this context is going to end up being an
13695     // evaluated context, and we're referencing a variable from an enclosing
13696     // scope, add a potential capture.
13697     //
13698     // FIXME: Is this necessary? These contexts are only used for default
13699     // arguments, where local variables can't be used.
13700     const bool RefersToEnclosingScope =
13701         (SemaRef.CurContext != Var->getDeclContext() &&
13702          Var->getDeclContext()->isFunctionOrMethod() && Var->hasLocalStorage());
13703     if (RefersToEnclosingScope) {
13704       if (LambdaScopeInfo *const LSI = SemaRef.getCurLambda()) {
13705         // If a variable could potentially be odr-used, defer marking it so
13706         // until we finish analyzing the full expression for any
13707         // lvalue-to-rvalue
13708         // or discarded value conversions that would obviate odr-use.
13709         // Add it to the list of potential captures that will be analyzed
13710         // later (ActOnFinishFullExpr) for eventual capture and odr-use marking
13711         // unless the variable is a reference that was initialized by a constant
13712         // expression (this will never need to be captured or odr-used).
13713         assert(E && "Capture variable should be used in an expression.");
13714         if (!Var->getType()->isReferenceType() ||
13715             !IsVariableNonDependentAndAConstantExpression(Var, SemaRef.Context))
13716           LSI->addPotentialCapture(E->IgnoreParens());
13717       }
13718     }
13719 
13720     if (!isTemplateInstantiation(TSK))
13721       return;
13722 
13723     // Instantiate, but do not mark as odr-used, variable templates.
13724     MarkODRUsed = false;
13725   }
13726 
13727   VarTemplateSpecializationDecl *VarSpec =
13728       dyn_cast<VarTemplateSpecializationDecl>(Var);
13729   assert(!isa<VarTemplatePartialSpecializationDecl>(Var) &&
13730          "Can't instantiate a partial template specialization.");
13731 
13732   // Perform implicit instantiation of static data members, static data member
13733   // templates of class templates, and variable template specializations. Delay
13734   // instantiations of variable templates, except for those that could be used
13735   // in a constant expression.
13736   if (isTemplateInstantiation(TSK)) {
13737     bool TryInstantiating = TSK == TSK_ImplicitInstantiation;
13738 
13739     if (TryInstantiating && !isa<VarTemplateSpecializationDecl>(Var)) {
13740       if (Var->getPointOfInstantiation().isInvalid()) {
13741         // This is a modification of an existing AST node. Notify listeners.
13742         if (ASTMutationListener *L = SemaRef.getASTMutationListener())
13743           L->StaticDataMemberInstantiated(Var);
13744       } else if (!Var->isUsableInConstantExpressions(SemaRef.Context))
13745         // Don't bother trying to instantiate it again, unless we might need
13746         // its initializer before we get to the end of the TU.
13747         TryInstantiating = false;
13748     }
13749 
13750     if (Var->getPointOfInstantiation().isInvalid())
13751       Var->setTemplateSpecializationKind(TSK, Loc);
13752 
13753     if (TryInstantiating) {
13754       SourceLocation PointOfInstantiation = Var->getPointOfInstantiation();
13755       bool InstantiationDependent = false;
13756       bool IsNonDependent =
13757           VarSpec ? !TemplateSpecializationType::anyDependentTemplateArguments(
13758                         VarSpec->getTemplateArgsInfo(), InstantiationDependent)
13759                   : true;
13760 
13761       // Do not instantiate specializations that are still type-dependent.
13762       if (IsNonDependent) {
13763         if (Var->isUsableInConstantExpressions(SemaRef.Context)) {
13764           // Do not defer instantiations of variables which could be used in a
13765           // constant expression.
13766           SemaRef.InstantiateVariableDefinition(PointOfInstantiation, Var);
13767         } else {
13768           SemaRef.PendingInstantiations
13769               .push_back(std::make_pair(Var, PointOfInstantiation));
13770         }
13771       }
13772     }
13773   }
13774 
13775   if(!MarkODRUsed) return;
13776 
13777   // Per C++11 [basic.def.odr], a variable is odr-used "unless it satisfies
13778   // the requirements for appearing in a constant expression (5.19) and, if
13779   // it is an object, the lvalue-to-rvalue conversion (4.1)
13780   // is immediately applied."  We check the first part here, and
13781   // Sema::UpdateMarkingForLValueToRValue deals with the second part.
13782   // Note that we use the C++11 definition everywhere because nothing in
13783   // C++03 depends on whether we get the C++03 version correct. The second
13784   // part does not apply to references, since they are not objects.
13785   if (E && IsVariableAConstantExpression(Var, SemaRef.Context)) {
13786     // A reference initialized by a constant expression can never be
13787     // odr-used, so simply ignore it.
13788     if (!Var->getType()->isReferenceType())
13789       SemaRef.MaybeODRUseExprs.insert(E);
13790   } else
13791     MarkVarDeclODRUsed(Var, Loc, SemaRef,
13792                        /*MaxFunctionScopeIndex ptr*/ nullptr);
13793 }
13794 
13795 /// \brief Mark a variable referenced, and check whether it is odr-used
13796 /// (C++ [basic.def.odr]p2, C99 6.9p3).  Note that this should not be
13797 /// used directly for normal expressions referring to VarDecl.
13798 void Sema::MarkVariableReferenced(SourceLocation Loc, VarDecl *Var) {
13799   DoMarkVarDeclReferenced(*this, Loc, Var, nullptr);
13800 }
13801 
13802 static void MarkExprReferenced(Sema &SemaRef, SourceLocation Loc,
13803                                Decl *D, Expr *E, bool MightBeOdrUse) {
13804   if (VarDecl *Var = dyn_cast<VarDecl>(D)) {
13805     DoMarkVarDeclReferenced(SemaRef, Loc, Var, E);
13806     return;
13807   }
13808 
13809   SemaRef.MarkAnyDeclReferenced(Loc, D, MightBeOdrUse);
13810 
13811   // If this is a call to a method via a cast, also mark the method in the
13812   // derived class used in case codegen can devirtualize the call.
13813   const MemberExpr *ME = dyn_cast<MemberExpr>(E);
13814   if (!ME)
13815     return;
13816   CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(ME->getMemberDecl());
13817   if (!MD)
13818     return;
13819   // Only attempt to devirtualize if this is truly a virtual call.
13820   bool IsVirtualCall = MD->isVirtual() &&
13821                           ME->performsVirtualDispatch(SemaRef.getLangOpts());
13822   if (!IsVirtualCall)
13823     return;
13824   const Expr *Base = ME->getBase();
13825   const CXXRecordDecl *MostDerivedClassDecl = Base->getBestDynamicClassType();
13826   if (!MostDerivedClassDecl)
13827     return;
13828   CXXMethodDecl *DM = MD->getCorrespondingMethodInClass(MostDerivedClassDecl);
13829   if (!DM || DM->isPure())
13830     return;
13831   SemaRef.MarkAnyDeclReferenced(Loc, DM, MightBeOdrUse);
13832 }
13833 
13834 /// \brief Perform reference-marking and odr-use handling for a DeclRefExpr.
13835 void Sema::MarkDeclRefReferenced(DeclRefExpr *E) {
13836   // TODO: update this with DR# once a defect report is filed.
13837   // C++11 defect. The address of a pure member should not be an ODR use, even
13838   // if it's a qualified reference.
13839   bool OdrUse = true;
13840   if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(E->getDecl()))
13841     if (Method->isVirtual())
13842       OdrUse = false;
13843   MarkExprReferenced(*this, E->getLocation(), E->getDecl(), E, OdrUse);
13844 }
13845 
13846 /// \brief Perform reference-marking and odr-use handling for a MemberExpr.
13847 void Sema::MarkMemberReferenced(MemberExpr *E) {
13848   // C++11 [basic.def.odr]p2:
13849   //   A non-overloaded function whose name appears as a potentially-evaluated
13850   //   expression or a member of a set of candidate functions, if selected by
13851   //   overload resolution when referred to from a potentially-evaluated
13852   //   expression, is odr-used, unless it is a pure virtual function and its
13853   //   name is not explicitly qualified.
13854   bool MightBeOdrUse = true;
13855   if (E->performsVirtualDispatch(getLangOpts())) {
13856     if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(E->getMemberDecl()))
13857       if (Method->isPure())
13858         MightBeOdrUse = false;
13859   }
13860   SourceLocation Loc = E->getMemberLoc().isValid() ?
13861                             E->getMemberLoc() : E->getLocStart();
13862   MarkExprReferenced(*this, Loc, E->getMemberDecl(), E, MightBeOdrUse);
13863 }
13864 
13865 /// \brief Perform marking for a reference to an arbitrary declaration.  It
13866 /// marks the declaration referenced, and performs odr-use checking for
13867 /// functions and variables. This method should not be used when building a
13868 /// normal expression which refers to a variable.
13869 void Sema::MarkAnyDeclReferenced(SourceLocation Loc, Decl *D,
13870                                  bool MightBeOdrUse) {
13871   if (MightBeOdrUse) {
13872     if (auto *VD = dyn_cast<VarDecl>(D)) {
13873       MarkVariableReferenced(Loc, VD);
13874       return;
13875     }
13876   }
13877   if (auto *FD = dyn_cast<FunctionDecl>(D)) {
13878     MarkFunctionReferenced(Loc, FD, MightBeOdrUse);
13879     return;
13880   }
13881   D->setReferenced();
13882 }
13883 
13884 namespace {
13885   // Mark all of the declarations referenced
13886   // FIXME: Not fully implemented yet! We need to have a better understanding
13887   // of when we're entering
13888   class MarkReferencedDecls : public RecursiveASTVisitor<MarkReferencedDecls> {
13889     Sema &S;
13890     SourceLocation Loc;
13891 
13892   public:
13893     typedef RecursiveASTVisitor<MarkReferencedDecls> Inherited;
13894 
13895     MarkReferencedDecls(Sema &S, SourceLocation Loc) : S(S), Loc(Loc) { }
13896 
13897     bool TraverseTemplateArgument(const TemplateArgument &Arg);
13898     bool TraverseRecordType(RecordType *T);
13899   };
13900 }
13901 
13902 bool MarkReferencedDecls::TraverseTemplateArgument(
13903     const TemplateArgument &Arg) {
13904   if (Arg.getKind() == TemplateArgument::Declaration) {
13905     if (Decl *D = Arg.getAsDecl())
13906       S.MarkAnyDeclReferenced(Loc, D, true);
13907   }
13908 
13909   return Inherited::TraverseTemplateArgument(Arg);
13910 }
13911 
13912 bool MarkReferencedDecls::TraverseRecordType(RecordType *T) {
13913   if (ClassTemplateSpecializationDecl *Spec
13914                   = dyn_cast<ClassTemplateSpecializationDecl>(T->getDecl())) {
13915     const TemplateArgumentList &Args = Spec->getTemplateArgs();
13916     return TraverseTemplateArguments(Args.data(), Args.size());
13917   }
13918 
13919   return true;
13920 }
13921 
13922 void Sema::MarkDeclarationsReferencedInType(SourceLocation Loc, QualType T) {
13923   MarkReferencedDecls Marker(*this, Loc);
13924   Marker.TraverseType(Context.getCanonicalType(T));
13925 }
13926 
13927 namespace {
13928   /// \brief Helper class that marks all of the declarations referenced by
13929   /// potentially-evaluated subexpressions as "referenced".
13930   class EvaluatedExprMarker : public EvaluatedExprVisitor<EvaluatedExprMarker> {
13931     Sema &S;
13932     bool SkipLocalVariables;
13933 
13934   public:
13935     typedef EvaluatedExprVisitor<EvaluatedExprMarker> Inherited;
13936 
13937     EvaluatedExprMarker(Sema &S, bool SkipLocalVariables)
13938       : Inherited(S.Context), S(S), SkipLocalVariables(SkipLocalVariables) { }
13939 
13940     void VisitDeclRefExpr(DeclRefExpr *E) {
13941       // If we were asked not to visit local variables, don't.
13942       if (SkipLocalVariables) {
13943         if (VarDecl *VD = dyn_cast<VarDecl>(E->getDecl()))
13944           if (VD->hasLocalStorage())
13945             return;
13946       }
13947 
13948       S.MarkDeclRefReferenced(E);
13949     }
13950 
13951     void VisitMemberExpr(MemberExpr *E) {
13952       S.MarkMemberReferenced(E);
13953       Inherited::VisitMemberExpr(E);
13954     }
13955 
13956     void VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E) {
13957       S.MarkFunctionReferenced(E->getLocStart(),
13958             const_cast<CXXDestructorDecl*>(E->getTemporary()->getDestructor()));
13959       Visit(E->getSubExpr());
13960     }
13961 
13962     void VisitCXXNewExpr(CXXNewExpr *E) {
13963       if (E->getOperatorNew())
13964         S.MarkFunctionReferenced(E->getLocStart(), E->getOperatorNew());
13965       if (E->getOperatorDelete())
13966         S.MarkFunctionReferenced(E->getLocStart(), E->getOperatorDelete());
13967       Inherited::VisitCXXNewExpr(E);
13968     }
13969 
13970     void VisitCXXDeleteExpr(CXXDeleteExpr *E) {
13971       if (E->getOperatorDelete())
13972         S.MarkFunctionReferenced(E->getLocStart(), E->getOperatorDelete());
13973       QualType Destroyed = S.Context.getBaseElementType(E->getDestroyedType());
13974       if (const RecordType *DestroyedRec = Destroyed->getAs<RecordType>()) {
13975         CXXRecordDecl *Record = cast<CXXRecordDecl>(DestroyedRec->getDecl());
13976         S.MarkFunctionReferenced(E->getLocStart(),
13977                                     S.LookupDestructor(Record));
13978       }
13979 
13980       Inherited::VisitCXXDeleteExpr(E);
13981     }
13982 
13983     void VisitCXXConstructExpr(CXXConstructExpr *E) {
13984       S.MarkFunctionReferenced(E->getLocStart(), E->getConstructor());
13985       Inherited::VisitCXXConstructExpr(E);
13986     }
13987 
13988     void VisitCXXDefaultArgExpr(CXXDefaultArgExpr *E) {
13989       Visit(E->getExpr());
13990     }
13991 
13992     void VisitImplicitCastExpr(ImplicitCastExpr *E) {
13993       Inherited::VisitImplicitCastExpr(E);
13994 
13995       if (E->getCastKind() == CK_LValueToRValue)
13996         S.UpdateMarkingForLValueToRValue(E->getSubExpr());
13997     }
13998   };
13999 }
14000 
14001 /// \brief Mark any declarations that appear within this expression or any
14002 /// potentially-evaluated subexpressions as "referenced".
14003 ///
14004 /// \param SkipLocalVariables If true, don't mark local variables as
14005 /// 'referenced'.
14006 void Sema::MarkDeclarationsReferencedInExpr(Expr *E,
14007                                             bool SkipLocalVariables) {
14008   EvaluatedExprMarker(*this, SkipLocalVariables).Visit(E);
14009 }
14010 
14011 /// \brief Emit a diagnostic that describes an effect on the run-time behavior
14012 /// of the program being compiled.
14013 ///
14014 /// This routine emits the given diagnostic when the code currently being
14015 /// type-checked is "potentially evaluated", meaning that there is a
14016 /// possibility that the code will actually be executable. Code in sizeof()
14017 /// expressions, code used only during overload resolution, etc., are not
14018 /// potentially evaluated. This routine will suppress such diagnostics or,
14019 /// in the absolutely nutty case of potentially potentially evaluated
14020 /// expressions (C++ typeid), queue the diagnostic to potentially emit it
14021 /// later.
14022 ///
14023 /// This routine should be used for all diagnostics that describe the run-time
14024 /// behavior of a program, such as passing a non-POD value through an ellipsis.
14025 /// Failure to do so will likely result in spurious diagnostics or failures
14026 /// during overload resolution or within sizeof/alignof/typeof/typeid.
14027 bool Sema::DiagRuntimeBehavior(SourceLocation Loc, const Stmt *Statement,
14028                                const PartialDiagnostic &PD) {
14029   switch (ExprEvalContexts.back().Context) {
14030   case Unevaluated:
14031   case UnevaluatedAbstract:
14032     // The argument will never be evaluated, so don't complain.
14033     break;
14034 
14035   case ConstantEvaluated:
14036     // Relevant diagnostics should be produced by constant evaluation.
14037     break;
14038 
14039   case PotentiallyEvaluated:
14040   case PotentiallyEvaluatedIfUsed:
14041     if (Statement && getCurFunctionOrMethodDecl()) {
14042       FunctionScopes.back()->PossiblyUnreachableDiags.
14043         push_back(sema::PossiblyUnreachableDiag(PD, Loc, Statement));
14044     }
14045     else
14046       Diag(Loc, PD);
14047 
14048     return true;
14049   }
14050 
14051   return false;
14052 }
14053 
14054 bool Sema::CheckCallReturnType(QualType ReturnType, SourceLocation Loc,
14055                                CallExpr *CE, FunctionDecl *FD) {
14056   if (ReturnType->isVoidType() || !ReturnType->isIncompleteType())
14057     return false;
14058 
14059   // If we're inside a decltype's expression, don't check for a valid return
14060   // type or construct temporaries until we know whether this is the last call.
14061   if (ExprEvalContexts.back().IsDecltype) {
14062     ExprEvalContexts.back().DelayedDecltypeCalls.push_back(CE);
14063     return false;
14064   }
14065 
14066   class CallReturnIncompleteDiagnoser : public TypeDiagnoser {
14067     FunctionDecl *FD;
14068     CallExpr *CE;
14069 
14070   public:
14071     CallReturnIncompleteDiagnoser(FunctionDecl *FD, CallExpr *CE)
14072       : FD(FD), CE(CE) { }
14073 
14074     void diagnose(Sema &S, SourceLocation Loc, QualType T) override {
14075       if (!FD) {
14076         S.Diag(Loc, diag::err_call_incomplete_return)
14077           << T << CE->getSourceRange();
14078         return;
14079       }
14080 
14081       S.Diag(Loc, diag::err_call_function_incomplete_return)
14082         << CE->getSourceRange() << FD->getDeclName() << T;
14083       S.Diag(FD->getLocation(), diag::note_entity_declared_at)
14084           << FD->getDeclName();
14085     }
14086   } Diagnoser(FD, CE);
14087 
14088   if (RequireCompleteType(Loc, ReturnType, Diagnoser))
14089     return true;
14090 
14091   return false;
14092 }
14093 
14094 // Diagnose the s/=/==/ and s/\|=/!=/ typos. Note that adding parentheses
14095 // will prevent this condition from triggering, which is what we want.
14096 void Sema::DiagnoseAssignmentAsCondition(Expr *E) {
14097   SourceLocation Loc;
14098 
14099   unsigned diagnostic = diag::warn_condition_is_assignment;
14100   bool IsOrAssign = false;
14101 
14102   if (BinaryOperator *Op = dyn_cast<BinaryOperator>(E)) {
14103     if (Op->getOpcode() != BO_Assign && Op->getOpcode() != BO_OrAssign)
14104       return;
14105 
14106     IsOrAssign = Op->getOpcode() == BO_OrAssign;
14107 
14108     // Greylist some idioms by putting them into a warning subcategory.
14109     if (ObjCMessageExpr *ME
14110           = dyn_cast<ObjCMessageExpr>(Op->getRHS()->IgnoreParenCasts())) {
14111       Selector Sel = ME->getSelector();
14112 
14113       // self = [<foo> init...]
14114       if (isSelfExpr(Op->getLHS()) && ME->getMethodFamily() == OMF_init)
14115         diagnostic = diag::warn_condition_is_idiomatic_assignment;
14116 
14117       // <foo> = [<bar> nextObject]
14118       else if (Sel.isUnarySelector() && Sel.getNameForSlot(0) == "nextObject")
14119         diagnostic = diag::warn_condition_is_idiomatic_assignment;
14120     }
14121 
14122     Loc = Op->getOperatorLoc();
14123   } else if (CXXOperatorCallExpr *Op = dyn_cast<CXXOperatorCallExpr>(E)) {
14124     if (Op->getOperator() != OO_Equal && Op->getOperator() != OO_PipeEqual)
14125       return;
14126 
14127     IsOrAssign = Op->getOperator() == OO_PipeEqual;
14128     Loc = Op->getOperatorLoc();
14129   } else if (PseudoObjectExpr *POE = dyn_cast<PseudoObjectExpr>(E))
14130     return DiagnoseAssignmentAsCondition(POE->getSyntacticForm());
14131   else {
14132     // Not an assignment.
14133     return;
14134   }
14135 
14136   Diag(Loc, diagnostic) << E->getSourceRange();
14137 
14138   SourceLocation Open = E->getLocStart();
14139   SourceLocation Close = getLocForEndOfToken(E->getSourceRange().getEnd());
14140   Diag(Loc, diag::note_condition_assign_silence)
14141         << FixItHint::CreateInsertion(Open, "(")
14142         << FixItHint::CreateInsertion(Close, ")");
14143 
14144   if (IsOrAssign)
14145     Diag(Loc, diag::note_condition_or_assign_to_comparison)
14146       << FixItHint::CreateReplacement(Loc, "!=");
14147   else
14148     Diag(Loc, diag::note_condition_assign_to_comparison)
14149       << FixItHint::CreateReplacement(Loc, "==");
14150 }
14151 
14152 /// \brief Redundant parentheses over an equality comparison can indicate
14153 /// that the user intended an assignment used as condition.
14154 void Sema::DiagnoseEqualityWithExtraParens(ParenExpr *ParenE) {
14155   // Don't warn if the parens came from a macro.
14156   SourceLocation parenLoc = ParenE->getLocStart();
14157   if (parenLoc.isInvalid() || parenLoc.isMacroID())
14158     return;
14159   // Don't warn for dependent expressions.
14160   if (ParenE->isTypeDependent())
14161     return;
14162 
14163   Expr *E = ParenE->IgnoreParens();
14164 
14165   if (BinaryOperator *opE = dyn_cast<BinaryOperator>(E))
14166     if (opE->getOpcode() == BO_EQ &&
14167         opE->getLHS()->IgnoreParenImpCasts()->isModifiableLvalue(Context)
14168                                                            == Expr::MLV_Valid) {
14169       SourceLocation Loc = opE->getOperatorLoc();
14170 
14171       Diag(Loc, diag::warn_equality_with_extra_parens) << E->getSourceRange();
14172       SourceRange ParenERange = ParenE->getSourceRange();
14173       Diag(Loc, diag::note_equality_comparison_silence)
14174         << FixItHint::CreateRemoval(ParenERange.getBegin())
14175         << FixItHint::CreateRemoval(ParenERange.getEnd());
14176       Diag(Loc, diag::note_equality_comparison_to_assign)
14177         << FixItHint::CreateReplacement(Loc, "=");
14178     }
14179 }
14180 
14181 ExprResult Sema::CheckBooleanCondition(Expr *E, SourceLocation Loc) {
14182   DiagnoseAssignmentAsCondition(E);
14183   if (ParenExpr *parenE = dyn_cast<ParenExpr>(E))
14184     DiagnoseEqualityWithExtraParens(parenE);
14185 
14186   ExprResult result = CheckPlaceholderExpr(E);
14187   if (result.isInvalid()) return ExprError();
14188   E = result.get();
14189 
14190   if (!E->isTypeDependent()) {
14191     if (getLangOpts().CPlusPlus)
14192       return CheckCXXBooleanCondition(E); // C++ 6.4p4
14193 
14194     ExprResult ERes = DefaultFunctionArrayLvalueConversion(E);
14195     if (ERes.isInvalid())
14196       return ExprError();
14197     E = ERes.get();
14198 
14199     QualType T = E->getType();
14200     if (!T->isScalarType()) { // C99 6.8.4.1p1
14201       Diag(Loc, diag::err_typecheck_statement_requires_scalar)
14202         << T << E->getSourceRange();
14203       return ExprError();
14204     }
14205     CheckBoolLikeConversion(E, Loc);
14206   }
14207 
14208   return E;
14209 }
14210 
14211 ExprResult Sema::ActOnBooleanCondition(Scope *S, SourceLocation Loc,
14212                                        Expr *SubExpr) {
14213   if (!SubExpr)
14214     return ExprError();
14215 
14216   return CheckBooleanCondition(SubExpr, Loc);
14217 }
14218 
14219 namespace {
14220   /// A visitor for rebuilding a call to an __unknown_any expression
14221   /// to have an appropriate type.
14222   struct RebuildUnknownAnyFunction
14223     : StmtVisitor<RebuildUnknownAnyFunction, ExprResult> {
14224 
14225     Sema &S;
14226 
14227     RebuildUnknownAnyFunction(Sema &S) : S(S) {}
14228 
14229     ExprResult VisitStmt(Stmt *S) {
14230       llvm_unreachable("unexpected statement!");
14231     }
14232 
14233     ExprResult VisitExpr(Expr *E) {
14234       S.Diag(E->getExprLoc(), diag::err_unsupported_unknown_any_call)
14235         << E->getSourceRange();
14236       return ExprError();
14237     }
14238 
14239     /// Rebuild an expression which simply semantically wraps another
14240     /// expression which it shares the type and value kind of.
14241     template <class T> ExprResult rebuildSugarExpr(T *E) {
14242       ExprResult SubResult = Visit(E->getSubExpr());
14243       if (SubResult.isInvalid()) return ExprError();
14244 
14245       Expr *SubExpr = SubResult.get();
14246       E->setSubExpr(SubExpr);
14247       E->setType(SubExpr->getType());
14248       E->setValueKind(SubExpr->getValueKind());
14249       assert(E->getObjectKind() == OK_Ordinary);
14250       return E;
14251     }
14252 
14253     ExprResult VisitParenExpr(ParenExpr *E) {
14254       return rebuildSugarExpr(E);
14255     }
14256 
14257     ExprResult VisitUnaryExtension(UnaryOperator *E) {
14258       return rebuildSugarExpr(E);
14259     }
14260 
14261     ExprResult VisitUnaryAddrOf(UnaryOperator *E) {
14262       ExprResult SubResult = Visit(E->getSubExpr());
14263       if (SubResult.isInvalid()) return ExprError();
14264 
14265       Expr *SubExpr = SubResult.get();
14266       E->setSubExpr(SubExpr);
14267       E->setType(S.Context.getPointerType(SubExpr->getType()));
14268       assert(E->getValueKind() == VK_RValue);
14269       assert(E->getObjectKind() == OK_Ordinary);
14270       return E;
14271     }
14272 
14273     ExprResult resolveDecl(Expr *E, ValueDecl *VD) {
14274       if (!isa<FunctionDecl>(VD)) return VisitExpr(E);
14275 
14276       E->setType(VD->getType());
14277 
14278       assert(E->getValueKind() == VK_RValue);
14279       if (S.getLangOpts().CPlusPlus &&
14280           !(isa<CXXMethodDecl>(VD) &&
14281             cast<CXXMethodDecl>(VD)->isInstance()))
14282         E->setValueKind(VK_LValue);
14283 
14284       return E;
14285     }
14286 
14287     ExprResult VisitMemberExpr(MemberExpr *E) {
14288       return resolveDecl(E, E->getMemberDecl());
14289     }
14290 
14291     ExprResult VisitDeclRefExpr(DeclRefExpr *E) {
14292       return resolveDecl(E, E->getDecl());
14293     }
14294   };
14295 }
14296 
14297 /// Given a function expression of unknown-any type, try to rebuild it
14298 /// to have a function type.
14299 static ExprResult rebuildUnknownAnyFunction(Sema &S, Expr *FunctionExpr) {
14300   ExprResult Result = RebuildUnknownAnyFunction(S).Visit(FunctionExpr);
14301   if (Result.isInvalid()) return ExprError();
14302   return S.DefaultFunctionArrayConversion(Result.get());
14303 }
14304 
14305 namespace {
14306   /// A visitor for rebuilding an expression of type __unknown_anytype
14307   /// into one which resolves the type directly on the referring
14308   /// expression.  Strict preservation of the original source
14309   /// structure is not a goal.
14310   struct RebuildUnknownAnyExpr
14311     : StmtVisitor<RebuildUnknownAnyExpr, ExprResult> {
14312 
14313     Sema &S;
14314 
14315     /// The current destination type.
14316     QualType DestType;
14317 
14318     RebuildUnknownAnyExpr(Sema &S, QualType CastType)
14319       : S(S), DestType(CastType) {}
14320 
14321     ExprResult VisitStmt(Stmt *S) {
14322       llvm_unreachable("unexpected statement!");
14323     }
14324 
14325     ExprResult VisitExpr(Expr *E) {
14326       S.Diag(E->getExprLoc(), diag::err_unsupported_unknown_any_expr)
14327         << E->getSourceRange();
14328       return ExprError();
14329     }
14330 
14331     ExprResult VisitCallExpr(CallExpr *E);
14332     ExprResult VisitObjCMessageExpr(ObjCMessageExpr *E);
14333 
14334     /// Rebuild an expression which simply semantically wraps another
14335     /// expression which it shares the type and value kind of.
14336     template <class T> ExprResult rebuildSugarExpr(T *E) {
14337       ExprResult SubResult = Visit(E->getSubExpr());
14338       if (SubResult.isInvalid()) return ExprError();
14339       Expr *SubExpr = SubResult.get();
14340       E->setSubExpr(SubExpr);
14341       E->setType(SubExpr->getType());
14342       E->setValueKind(SubExpr->getValueKind());
14343       assert(E->getObjectKind() == OK_Ordinary);
14344       return E;
14345     }
14346 
14347     ExprResult VisitParenExpr(ParenExpr *E) {
14348       return rebuildSugarExpr(E);
14349     }
14350 
14351     ExprResult VisitUnaryExtension(UnaryOperator *E) {
14352       return rebuildSugarExpr(E);
14353     }
14354 
14355     ExprResult VisitUnaryAddrOf(UnaryOperator *E) {
14356       const PointerType *Ptr = DestType->getAs<PointerType>();
14357       if (!Ptr) {
14358         S.Diag(E->getOperatorLoc(), diag::err_unknown_any_addrof)
14359           << E->getSourceRange();
14360         return ExprError();
14361       }
14362       assert(E->getValueKind() == VK_RValue);
14363       assert(E->getObjectKind() == OK_Ordinary);
14364       E->setType(DestType);
14365 
14366       // Build the sub-expression as if it were an object of the pointee type.
14367       DestType = Ptr->getPointeeType();
14368       ExprResult SubResult = Visit(E->getSubExpr());
14369       if (SubResult.isInvalid()) return ExprError();
14370       E->setSubExpr(SubResult.get());
14371       return E;
14372     }
14373 
14374     ExprResult VisitImplicitCastExpr(ImplicitCastExpr *E);
14375 
14376     ExprResult resolveDecl(Expr *E, ValueDecl *VD);
14377 
14378     ExprResult VisitMemberExpr(MemberExpr *E) {
14379       return resolveDecl(E, E->getMemberDecl());
14380     }
14381 
14382     ExprResult VisitDeclRefExpr(DeclRefExpr *E) {
14383       return resolveDecl(E, E->getDecl());
14384     }
14385   };
14386 }
14387 
14388 /// Rebuilds a call expression which yielded __unknown_anytype.
14389 ExprResult RebuildUnknownAnyExpr::VisitCallExpr(CallExpr *E) {
14390   Expr *CalleeExpr = E->getCallee();
14391 
14392   enum FnKind {
14393     FK_MemberFunction,
14394     FK_FunctionPointer,
14395     FK_BlockPointer
14396   };
14397 
14398   FnKind Kind;
14399   QualType CalleeType = CalleeExpr->getType();
14400   if (CalleeType == S.Context.BoundMemberTy) {
14401     assert(isa<CXXMemberCallExpr>(E) || isa<CXXOperatorCallExpr>(E));
14402     Kind = FK_MemberFunction;
14403     CalleeType = Expr::findBoundMemberType(CalleeExpr);
14404   } else if (const PointerType *Ptr = CalleeType->getAs<PointerType>()) {
14405     CalleeType = Ptr->getPointeeType();
14406     Kind = FK_FunctionPointer;
14407   } else {
14408     CalleeType = CalleeType->castAs<BlockPointerType>()->getPointeeType();
14409     Kind = FK_BlockPointer;
14410   }
14411   const FunctionType *FnType = CalleeType->castAs<FunctionType>();
14412 
14413   // Verify that this is a legal result type of a function.
14414   if (DestType->isArrayType() || DestType->isFunctionType()) {
14415     unsigned diagID = diag::err_func_returning_array_function;
14416     if (Kind == FK_BlockPointer)
14417       diagID = diag::err_block_returning_array_function;
14418 
14419     S.Diag(E->getExprLoc(), diagID)
14420       << DestType->isFunctionType() << DestType;
14421     return ExprError();
14422   }
14423 
14424   // Otherwise, go ahead and set DestType as the call's result.
14425   E->setType(DestType.getNonLValueExprType(S.Context));
14426   E->setValueKind(Expr::getValueKindForType(DestType));
14427   assert(E->getObjectKind() == OK_Ordinary);
14428 
14429   // Rebuild the function type, replacing the result type with DestType.
14430   const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FnType);
14431   if (Proto) {
14432     // __unknown_anytype(...) is a special case used by the debugger when
14433     // it has no idea what a function's signature is.
14434     //
14435     // We want to build this call essentially under the K&R
14436     // unprototyped rules, but making a FunctionNoProtoType in C++
14437     // would foul up all sorts of assumptions.  However, we cannot
14438     // simply pass all arguments as variadic arguments, nor can we
14439     // portably just call the function under a non-variadic type; see
14440     // the comment on IR-gen's TargetInfo::isNoProtoCallVariadic.
14441     // However, it turns out that in practice it is generally safe to
14442     // call a function declared as "A foo(B,C,D);" under the prototype
14443     // "A foo(B,C,D,...);".  The only known exception is with the
14444     // Windows ABI, where any variadic function is implicitly cdecl
14445     // regardless of its normal CC.  Therefore we change the parameter
14446     // types to match the types of the arguments.
14447     //
14448     // This is a hack, but it is far superior to moving the
14449     // corresponding target-specific code from IR-gen to Sema/AST.
14450 
14451     ArrayRef<QualType> ParamTypes = Proto->getParamTypes();
14452     SmallVector<QualType, 8> ArgTypes;
14453     if (ParamTypes.empty() && Proto->isVariadic()) { // the special case
14454       ArgTypes.reserve(E->getNumArgs());
14455       for (unsigned i = 0, e = E->getNumArgs(); i != e; ++i) {
14456         Expr *Arg = E->getArg(i);
14457         QualType ArgType = Arg->getType();
14458         if (E->isLValue()) {
14459           ArgType = S.Context.getLValueReferenceType(ArgType);
14460         } else if (E->isXValue()) {
14461           ArgType = S.Context.getRValueReferenceType(ArgType);
14462         }
14463         ArgTypes.push_back(ArgType);
14464       }
14465       ParamTypes = ArgTypes;
14466     }
14467     DestType = S.Context.getFunctionType(DestType, ParamTypes,
14468                                          Proto->getExtProtoInfo());
14469   } else {
14470     DestType = S.Context.getFunctionNoProtoType(DestType,
14471                                                 FnType->getExtInfo());
14472   }
14473 
14474   // Rebuild the appropriate pointer-to-function type.
14475   switch (Kind) {
14476   case FK_MemberFunction:
14477     // Nothing to do.
14478     break;
14479 
14480   case FK_FunctionPointer:
14481     DestType = S.Context.getPointerType(DestType);
14482     break;
14483 
14484   case FK_BlockPointer:
14485     DestType = S.Context.getBlockPointerType(DestType);
14486     break;
14487   }
14488 
14489   // Finally, we can recurse.
14490   ExprResult CalleeResult = Visit(CalleeExpr);
14491   if (!CalleeResult.isUsable()) return ExprError();
14492   E->setCallee(CalleeResult.get());
14493 
14494   // Bind a temporary if necessary.
14495   return S.MaybeBindToTemporary(E);
14496 }
14497 
14498 ExprResult RebuildUnknownAnyExpr::VisitObjCMessageExpr(ObjCMessageExpr *E) {
14499   // Verify that this is a legal result type of a call.
14500   if (DestType->isArrayType() || DestType->isFunctionType()) {
14501     S.Diag(E->getExprLoc(), diag::err_func_returning_array_function)
14502       << DestType->isFunctionType() << DestType;
14503     return ExprError();
14504   }
14505 
14506   // Rewrite the method result type if available.
14507   if (ObjCMethodDecl *Method = E->getMethodDecl()) {
14508     assert(Method->getReturnType() == S.Context.UnknownAnyTy);
14509     Method->setReturnType(DestType);
14510   }
14511 
14512   // Change the type of the message.
14513   E->setType(DestType.getNonReferenceType());
14514   E->setValueKind(Expr::getValueKindForType(DestType));
14515 
14516   return S.MaybeBindToTemporary(E);
14517 }
14518 
14519 ExprResult RebuildUnknownAnyExpr::VisitImplicitCastExpr(ImplicitCastExpr *E) {
14520   // The only case we should ever see here is a function-to-pointer decay.
14521   if (E->getCastKind() == CK_FunctionToPointerDecay) {
14522     assert(E->getValueKind() == VK_RValue);
14523     assert(E->getObjectKind() == OK_Ordinary);
14524 
14525     E->setType(DestType);
14526 
14527     // Rebuild the sub-expression as the pointee (function) type.
14528     DestType = DestType->castAs<PointerType>()->getPointeeType();
14529 
14530     ExprResult Result = Visit(E->getSubExpr());
14531     if (!Result.isUsable()) return ExprError();
14532 
14533     E->setSubExpr(Result.get());
14534     return E;
14535   } else if (E->getCastKind() == CK_LValueToRValue) {
14536     assert(E->getValueKind() == VK_RValue);
14537     assert(E->getObjectKind() == OK_Ordinary);
14538 
14539     assert(isa<BlockPointerType>(E->getType()));
14540 
14541     E->setType(DestType);
14542 
14543     // The sub-expression has to be a lvalue reference, so rebuild it as such.
14544     DestType = S.Context.getLValueReferenceType(DestType);
14545 
14546     ExprResult Result = Visit(E->getSubExpr());
14547     if (!Result.isUsable()) return ExprError();
14548 
14549     E->setSubExpr(Result.get());
14550     return E;
14551   } else {
14552     llvm_unreachable("Unhandled cast type!");
14553   }
14554 }
14555 
14556 ExprResult RebuildUnknownAnyExpr::resolveDecl(Expr *E, ValueDecl *VD) {
14557   ExprValueKind ValueKind = VK_LValue;
14558   QualType Type = DestType;
14559 
14560   // We know how to make this work for certain kinds of decls:
14561 
14562   //  - functions
14563   if (FunctionDecl *FD = dyn_cast<FunctionDecl>(VD)) {
14564     if (const PointerType *Ptr = Type->getAs<PointerType>()) {
14565       DestType = Ptr->getPointeeType();
14566       ExprResult Result = resolveDecl(E, VD);
14567       if (Result.isInvalid()) return ExprError();
14568       return S.ImpCastExprToType(Result.get(), Type,
14569                                  CK_FunctionToPointerDecay, VK_RValue);
14570     }
14571 
14572     if (!Type->isFunctionType()) {
14573       S.Diag(E->getExprLoc(), diag::err_unknown_any_function)
14574         << VD << E->getSourceRange();
14575       return ExprError();
14576     }
14577     if (const FunctionProtoType *FT = Type->getAs<FunctionProtoType>()) {
14578       // We must match the FunctionDecl's type to the hack introduced in
14579       // RebuildUnknownAnyExpr::VisitCallExpr to vararg functions of unknown
14580       // type. See the lengthy commentary in that routine.
14581       QualType FDT = FD->getType();
14582       const FunctionType *FnType = FDT->castAs<FunctionType>();
14583       const FunctionProtoType *Proto = dyn_cast_or_null<FunctionProtoType>(FnType);
14584       DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E);
14585       if (DRE && Proto && Proto->getParamTypes().empty() && Proto->isVariadic()) {
14586         SourceLocation Loc = FD->getLocation();
14587         FunctionDecl *NewFD = FunctionDecl::Create(FD->getASTContext(),
14588                                       FD->getDeclContext(),
14589                                       Loc, Loc, FD->getNameInfo().getName(),
14590                                       DestType, FD->getTypeSourceInfo(),
14591                                       SC_None, false/*isInlineSpecified*/,
14592                                       FD->hasPrototype(),
14593                                       false/*isConstexprSpecified*/);
14594 
14595         if (FD->getQualifier())
14596           NewFD->setQualifierInfo(FD->getQualifierLoc());
14597 
14598         SmallVector<ParmVarDecl*, 16> Params;
14599         for (const auto &AI : FT->param_types()) {
14600           ParmVarDecl *Param =
14601             S.BuildParmVarDeclForTypedef(FD, Loc, AI);
14602           Param->setScopeInfo(0, Params.size());
14603           Params.push_back(Param);
14604         }
14605         NewFD->setParams(Params);
14606         DRE->setDecl(NewFD);
14607         VD = DRE->getDecl();
14608       }
14609     }
14610 
14611     if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD))
14612       if (MD->isInstance()) {
14613         ValueKind = VK_RValue;
14614         Type = S.Context.BoundMemberTy;
14615       }
14616 
14617     // Function references aren't l-values in C.
14618     if (!S.getLangOpts().CPlusPlus)
14619       ValueKind = VK_RValue;
14620 
14621   //  - variables
14622   } else if (isa<VarDecl>(VD)) {
14623     if (const ReferenceType *RefTy = Type->getAs<ReferenceType>()) {
14624       Type = RefTy->getPointeeType();
14625     } else if (Type->isFunctionType()) {
14626       S.Diag(E->getExprLoc(), diag::err_unknown_any_var_function_type)
14627         << VD << E->getSourceRange();
14628       return ExprError();
14629     }
14630 
14631   //  - nothing else
14632   } else {
14633     S.Diag(E->getExprLoc(), diag::err_unsupported_unknown_any_decl)
14634       << VD << E->getSourceRange();
14635     return ExprError();
14636   }
14637 
14638   // Modifying the declaration like this is friendly to IR-gen but
14639   // also really dangerous.
14640   VD->setType(DestType);
14641   E->setType(Type);
14642   E->setValueKind(ValueKind);
14643   return E;
14644 }
14645 
14646 /// Check a cast of an unknown-any type.  We intentionally only
14647 /// trigger this for C-style casts.
14648 ExprResult Sema::checkUnknownAnyCast(SourceRange TypeRange, QualType CastType,
14649                                      Expr *CastExpr, CastKind &CastKind,
14650                                      ExprValueKind &VK, CXXCastPath &Path) {
14651   // The type we're casting to must be either void or complete.
14652   if (!CastType->isVoidType() &&
14653       RequireCompleteType(TypeRange.getBegin(), CastType,
14654                           diag::err_typecheck_cast_to_incomplete))
14655     return ExprError();
14656 
14657   // Rewrite the casted expression from scratch.
14658   ExprResult result = RebuildUnknownAnyExpr(*this, CastType).Visit(CastExpr);
14659   if (!result.isUsable()) return ExprError();
14660 
14661   CastExpr = result.get();
14662   VK = CastExpr->getValueKind();
14663   CastKind = CK_NoOp;
14664 
14665   return CastExpr;
14666 }
14667 
14668 ExprResult Sema::forceUnknownAnyToType(Expr *E, QualType ToType) {
14669   return RebuildUnknownAnyExpr(*this, ToType).Visit(E);
14670 }
14671 
14672 ExprResult Sema::checkUnknownAnyArg(SourceLocation callLoc,
14673                                     Expr *arg, QualType &paramType) {
14674   // If the syntactic form of the argument is not an explicit cast of
14675   // any sort, just do default argument promotion.
14676   ExplicitCastExpr *castArg = dyn_cast<ExplicitCastExpr>(arg->IgnoreParens());
14677   if (!castArg) {
14678     ExprResult result = DefaultArgumentPromotion(arg);
14679     if (result.isInvalid()) return ExprError();
14680     paramType = result.get()->getType();
14681     return result;
14682   }
14683 
14684   // Otherwise, use the type that was written in the explicit cast.
14685   assert(!arg->hasPlaceholderType());
14686   paramType = castArg->getTypeAsWritten();
14687 
14688   // Copy-initialize a parameter of that type.
14689   InitializedEntity entity =
14690     InitializedEntity::InitializeParameter(Context, paramType,
14691                                            /*consumed*/ false);
14692   return PerformCopyInitialization(entity, callLoc, arg);
14693 }
14694 
14695 static ExprResult diagnoseUnknownAnyExpr(Sema &S, Expr *E) {
14696   Expr *orig = E;
14697   unsigned diagID = diag::err_uncasted_use_of_unknown_any;
14698   while (true) {
14699     E = E->IgnoreParenImpCasts();
14700     if (CallExpr *call = dyn_cast<CallExpr>(E)) {
14701       E = call->getCallee();
14702       diagID = diag::err_uncasted_call_of_unknown_any;
14703     } else {
14704       break;
14705     }
14706   }
14707 
14708   SourceLocation loc;
14709   NamedDecl *d;
14710   if (DeclRefExpr *ref = dyn_cast<DeclRefExpr>(E)) {
14711     loc = ref->getLocation();
14712     d = ref->getDecl();
14713   } else if (MemberExpr *mem = dyn_cast<MemberExpr>(E)) {
14714     loc = mem->getMemberLoc();
14715     d = mem->getMemberDecl();
14716   } else if (ObjCMessageExpr *msg = dyn_cast<ObjCMessageExpr>(E)) {
14717     diagID = diag::err_uncasted_call_of_unknown_any;
14718     loc = msg->getSelectorStartLoc();
14719     d = msg->getMethodDecl();
14720     if (!d) {
14721       S.Diag(loc, diag::err_uncasted_send_to_unknown_any_method)
14722         << static_cast<unsigned>(msg->isClassMessage()) << msg->getSelector()
14723         << orig->getSourceRange();
14724       return ExprError();
14725     }
14726   } else {
14727     S.Diag(E->getExprLoc(), diag::err_unsupported_unknown_any_expr)
14728       << E->getSourceRange();
14729     return ExprError();
14730   }
14731 
14732   S.Diag(loc, diagID) << d << orig->getSourceRange();
14733 
14734   // Never recoverable.
14735   return ExprError();
14736 }
14737 
14738 /// Check for operands with placeholder types and complain if found.
14739 /// Returns true if there was an error and no recovery was possible.
14740 ExprResult Sema::CheckPlaceholderExpr(Expr *E) {
14741   if (!getLangOpts().CPlusPlus) {
14742     // C cannot handle TypoExpr nodes on either side of a binop because it
14743     // doesn't handle dependent types properly, so make sure any TypoExprs have
14744     // been dealt with before checking the operands.
14745     ExprResult Result = CorrectDelayedTyposInExpr(E);
14746     if (!Result.isUsable()) return ExprError();
14747     E = Result.get();
14748   }
14749 
14750   const BuiltinType *placeholderType = E->getType()->getAsPlaceholderType();
14751   if (!placeholderType) return E;
14752 
14753   switch (placeholderType->getKind()) {
14754 
14755   // Overloaded expressions.
14756   case BuiltinType::Overload: {
14757     // Try to resolve a single function template specialization.
14758     // This is obligatory.
14759     ExprResult result = E;
14760     if (ResolveAndFixSingleFunctionTemplateSpecialization(result, false)) {
14761       return result;
14762 
14763     // If that failed, try to recover with a call.
14764     } else {
14765       tryToRecoverWithCall(result, PDiag(diag::err_ovl_unresolvable),
14766                            /*complain*/ true);
14767       return result;
14768     }
14769   }
14770 
14771   // Bound member functions.
14772   case BuiltinType::BoundMember: {
14773     ExprResult result = E;
14774     const Expr *BME = E->IgnoreParens();
14775     PartialDiagnostic PD = PDiag(diag::err_bound_member_function);
14776     // Try to give a nicer diagnostic if it is a bound member that we recognize.
14777     if (isa<CXXPseudoDestructorExpr>(BME)) {
14778       PD = PDiag(diag::err_dtor_expr_without_call) << /*pseudo-destructor*/ 1;
14779     } else if (const auto *ME = dyn_cast<MemberExpr>(BME)) {
14780       if (ME->getMemberNameInfo().getName().getNameKind() ==
14781           DeclarationName::CXXDestructorName)
14782         PD = PDiag(diag::err_dtor_expr_without_call) << /*destructor*/ 0;
14783     }
14784     tryToRecoverWithCall(result, PD,
14785                          /*complain*/ true);
14786     return result;
14787   }
14788 
14789   // ARC unbridged casts.
14790   case BuiltinType::ARCUnbridgedCast: {
14791     Expr *realCast = stripARCUnbridgedCast(E);
14792     diagnoseARCUnbridgedCast(realCast);
14793     return realCast;
14794   }
14795 
14796   // Expressions of unknown type.
14797   case BuiltinType::UnknownAny:
14798     return diagnoseUnknownAnyExpr(*this, E);
14799 
14800   // Pseudo-objects.
14801   case BuiltinType::PseudoObject:
14802     return checkPseudoObjectRValue(E);
14803 
14804   case BuiltinType::BuiltinFn: {
14805     // Accept __noop without parens by implicitly converting it to a call expr.
14806     auto *DRE = dyn_cast<DeclRefExpr>(E->IgnoreParenImpCasts());
14807     if (DRE) {
14808       auto *FD = cast<FunctionDecl>(DRE->getDecl());
14809       if (FD->getBuiltinID() == Builtin::BI__noop) {
14810         E = ImpCastExprToType(E, Context.getPointerType(FD->getType()),
14811                               CK_BuiltinFnToFnPtr).get();
14812         return new (Context) CallExpr(Context, E, None, Context.IntTy,
14813                                       VK_RValue, SourceLocation());
14814       }
14815     }
14816 
14817     Diag(E->getLocStart(), diag::err_builtin_fn_use);
14818     return ExprError();
14819   }
14820 
14821   // Expressions of unknown type.
14822   case BuiltinType::OMPArraySection:
14823     Diag(E->getLocStart(), diag::err_omp_array_section_use);
14824     return ExprError();
14825 
14826   // Everything else should be impossible.
14827 #define BUILTIN_TYPE(Id, SingletonId) \
14828   case BuiltinType::Id:
14829 #define PLACEHOLDER_TYPE(Id, SingletonId)
14830 #include "clang/AST/BuiltinTypes.def"
14831     break;
14832   }
14833 
14834   llvm_unreachable("invalid placeholder type!");
14835 }
14836 
14837 bool Sema::CheckCaseExpression(Expr *E) {
14838   if (E->isTypeDependent())
14839     return true;
14840   if (E->isValueDependent() || E->isIntegerConstantExpr(Context))
14841     return E->getType()->isIntegralOrEnumerationType();
14842   return false;
14843 }
14844 
14845 /// ActOnObjCBoolLiteral - Parse {__objc_yes,__objc_no} literals.
14846 ExprResult
14847 Sema::ActOnObjCBoolLiteral(SourceLocation OpLoc, tok::TokenKind Kind) {
14848   assert((Kind == tok::kw___objc_yes || Kind == tok::kw___objc_no) &&
14849          "Unknown Objective-C Boolean value!");
14850   QualType BoolT = Context.ObjCBuiltinBoolTy;
14851   if (!Context.getBOOLDecl()) {
14852     LookupResult Result(*this, &Context.Idents.get("BOOL"), OpLoc,
14853                         Sema::LookupOrdinaryName);
14854     if (LookupName(Result, getCurScope()) && Result.isSingleResult()) {
14855       NamedDecl *ND = Result.getFoundDecl();
14856       if (TypedefDecl *TD = dyn_cast<TypedefDecl>(ND))
14857         Context.setBOOLDecl(TD);
14858     }
14859   }
14860   if (Context.getBOOLDecl())
14861     BoolT = Context.getBOOLType();
14862   return new (Context)
14863       ObjCBoolLiteralExpr(Kind == tok::kw___objc_yes, BoolT, OpLoc);
14864 }
14865