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 IMAGE_TYPE(ImgType, Id, SingletonId, Access, Suffix) \
4919   case BuiltinType::Id:
4920 #include "clang/AST/OpenCLImageTypes.def"
4921 #define PLACEHOLDER_TYPE(ID, SINGLETON_ID)
4922 #define BUILTIN_TYPE(ID, SINGLETON_ID) case BuiltinType::ID:
4923 #include "clang/AST/BuiltinTypes.def"
4924     return false;
4925 
4926   // We cannot lower out overload sets; they might validly be resolved
4927   // by the call machinery.
4928   case BuiltinType::Overload:
4929     return false;
4930 
4931   // Unbridged casts in ARC can be handled in some call positions and
4932   // should be left in place.
4933   case BuiltinType::ARCUnbridgedCast:
4934     return false;
4935 
4936   // Pseudo-objects should be converted as soon as possible.
4937   case BuiltinType::PseudoObject:
4938     return true;
4939 
4940   // The debugger mode could theoretically but currently does not try
4941   // to resolve unknown-typed arguments based on known parameter types.
4942   case BuiltinType::UnknownAny:
4943     return true;
4944 
4945   // These are always invalid as call arguments and should be reported.
4946   case BuiltinType::BoundMember:
4947   case BuiltinType::BuiltinFn:
4948   case BuiltinType::OMPArraySection:
4949     return true;
4950 
4951   }
4952   llvm_unreachable("bad builtin type kind");
4953 }
4954 
4955 /// Check an argument list for placeholders that we won't try to
4956 /// handle later.
4957 static bool checkArgsForPlaceholders(Sema &S, MultiExprArg args) {
4958   // Apply this processing to all the arguments at once instead of
4959   // dying at the first failure.
4960   bool hasInvalid = false;
4961   for (size_t i = 0, e = args.size(); i != e; i++) {
4962     if (isPlaceholderToRemoveAsArg(args[i]->getType())) {
4963       ExprResult result = S.CheckPlaceholderExpr(args[i]);
4964       if (result.isInvalid()) hasInvalid = true;
4965       else args[i] = result.get();
4966     } else if (hasInvalid) {
4967       (void)S.CorrectDelayedTyposInExpr(args[i]);
4968     }
4969   }
4970   return hasInvalid;
4971 }
4972 
4973 /// If a builtin function has a pointer argument with no explicit address
4974 /// space, then it should be able to accept a pointer to any address
4975 /// space as input.  In order to do this, we need to replace the
4976 /// standard builtin declaration with one that uses the same address space
4977 /// as the call.
4978 ///
4979 /// \returns nullptr If this builtin is not a candidate for a rewrite i.e.
4980 ///                  it does not contain any pointer arguments without
4981 ///                  an address space qualifer.  Otherwise the rewritten
4982 ///                  FunctionDecl is returned.
4983 /// TODO: Handle pointer return types.
4984 static FunctionDecl *rewriteBuiltinFunctionDecl(Sema *Sema, ASTContext &Context,
4985                                                 const FunctionDecl *FDecl,
4986                                                 MultiExprArg ArgExprs) {
4987 
4988   QualType DeclType = FDecl->getType();
4989   const FunctionProtoType *FT = dyn_cast<FunctionProtoType>(DeclType);
4990 
4991   if (!Context.BuiltinInfo.hasPtrArgsOrResult(FDecl->getBuiltinID()) ||
4992       !FT || FT->isVariadic() || ArgExprs.size() != FT->getNumParams())
4993     return nullptr;
4994 
4995   bool NeedsNewDecl = false;
4996   unsigned i = 0;
4997   SmallVector<QualType, 8> OverloadParams;
4998 
4999   for (QualType ParamType : FT->param_types()) {
5000 
5001     // Convert array arguments to pointer to simplify type lookup.
5002     Expr *Arg = Sema->DefaultFunctionArrayLvalueConversion(ArgExprs[i++]).get();
5003     QualType ArgType = Arg->getType();
5004     if (!ParamType->isPointerType() ||
5005         ParamType.getQualifiers().hasAddressSpace() ||
5006         !ArgType->isPointerType() ||
5007         !ArgType->getPointeeType().getQualifiers().hasAddressSpace()) {
5008       OverloadParams.push_back(ParamType);
5009       continue;
5010     }
5011 
5012     NeedsNewDecl = true;
5013     unsigned AS = ArgType->getPointeeType().getQualifiers().getAddressSpace();
5014 
5015     QualType PointeeType = ParamType->getPointeeType();
5016     PointeeType = Context.getAddrSpaceQualType(PointeeType, AS);
5017     OverloadParams.push_back(Context.getPointerType(PointeeType));
5018   }
5019 
5020   if (!NeedsNewDecl)
5021     return nullptr;
5022 
5023   FunctionProtoType::ExtProtoInfo EPI;
5024   QualType OverloadTy = Context.getFunctionType(FT->getReturnType(),
5025                                                 OverloadParams, EPI);
5026   DeclContext *Parent = Context.getTranslationUnitDecl();
5027   FunctionDecl *OverloadDecl = FunctionDecl::Create(Context, Parent,
5028                                                     FDecl->getLocation(),
5029                                                     FDecl->getLocation(),
5030                                                     FDecl->getIdentifier(),
5031                                                     OverloadTy,
5032                                                     /*TInfo=*/nullptr,
5033                                                     SC_Extern, false,
5034                                                     /*hasPrototype=*/true);
5035   SmallVector<ParmVarDecl*, 16> Params;
5036   FT = cast<FunctionProtoType>(OverloadTy);
5037   for (unsigned i = 0, e = FT->getNumParams(); i != e; ++i) {
5038     QualType ParamType = FT->getParamType(i);
5039     ParmVarDecl *Parm =
5040         ParmVarDecl::Create(Context, OverloadDecl, SourceLocation(),
5041                                 SourceLocation(), nullptr, ParamType,
5042                                 /*TInfo=*/nullptr, SC_None, nullptr);
5043     Parm->setScopeInfo(0, i);
5044     Params.push_back(Parm);
5045   }
5046   OverloadDecl->setParams(Params);
5047   return OverloadDecl;
5048 }
5049 
5050 static bool isNumberOfArgsValidForCall(Sema &S, const FunctionDecl *Callee,
5051                                        std::size_t NumArgs) {
5052   if (S.TooManyArguments(Callee->getNumParams(), NumArgs,
5053                          /*PartialOverloading=*/false))
5054     return Callee->isVariadic();
5055   return Callee->getMinRequiredArguments() <= NumArgs;
5056 }
5057 
5058 /// ActOnCallExpr - Handle a call to Fn with the specified array of arguments.
5059 /// This provides the location of the left/right parens and a list of comma
5060 /// locations.
5061 ExprResult
5062 Sema::ActOnCallExpr(Scope *S, Expr *Fn, SourceLocation LParenLoc,
5063                     MultiExprArg ArgExprs, SourceLocation RParenLoc,
5064                     Expr *ExecConfig, bool IsExecConfig) {
5065   // Since this might be a postfix expression, get rid of ParenListExprs.
5066   ExprResult Result = MaybeConvertParenListExprToParenExpr(S, Fn);
5067   if (Result.isInvalid()) return ExprError();
5068   Fn = Result.get();
5069 
5070   if (checkArgsForPlaceholders(*this, ArgExprs))
5071     return ExprError();
5072 
5073   if (getLangOpts().CPlusPlus) {
5074     // If this is a pseudo-destructor expression, build the call immediately.
5075     if (isa<CXXPseudoDestructorExpr>(Fn)) {
5076       if (!ArgExprs.empty()) {
5077         // Pseudo-destructor calls should not have any arguments.
5078         Diag(Fn->getLocStart(), diag::err_pseudo_dtor_call_with_args)
5079           << FixItHint::CreateRemoval(
5080                                     SourceRange(ArgExprs.front()->getLocStart(),
5081                                                 ArgExprs.back()->getLocEnd()));
5082       }
5083 
5084       return new (Context)
5085           CallExpr(Context, Fn, None, Context.VoidTy, VK_RValue, RParenLoc);
5086     }
5087     if (Fn->getType() == Context.PseudoObjectTy) {
5088       ExprResult result = CheckPlaceholderExpr(Fn);
5089       if (result.isInvalid()) return ExprError();
5090       Fn = result.get();
5091     }
5092 
5093     // Determine whether this is a dependent call inside a C++ template,
5094     // in which case we won't do any semantic analysis now.
5095     bool Dependent = false;
5096     if (Fn->isTypeDependent())
5097       Dependent = true;
5098     else if (Expr::hasAnyTypeDependentArguments(ArgExprs))
5099       Dependent = true;
5100 
5101     if (Dependent) {
5102       if (ExecConfig) {
5103         return new (Context) CUDAKernelCallExpr(
5104             Context, Fn, cast<CallExpr>(ExecConfig), ArgExprs,
5105             Context.DependentTy, VK_RValue, RParenLoc);
5106       } else {
5107         return new (Context) CallExpr(
5108             Context, Fn, ArgExprs, Context.DependentTy, VK_RValue, RParenLoc);
5109       }
5110     }
5111 
5112     // Determine whether this is a call to an object (C++ [over.call.object]).
5113     if (Fn->getType()->isRecordType())
5114       return BuildCallToObjectOfClassType(S, Fn, LParenLoc, ArgExprs,
5115                                           RParenLoc);
5116 
5117     if (Fn->getType() == Context.UnknownAnyTy) {
5118       ExprResult result = rebuildUnknownAnyFunction(*this, Fn);
5119       if (result.isInvalid()) return ExprError();
5120       Fn = result.get();
5121     }
5122 
5123     if (Fn->getType() == Context.BoundMemberTy) {
5124       return BuildCallToMemberFunction(S, Fn, LParenLoc, ArgExprs, RParenLoc);
5125     }
5126   }
5127 
5128   // Check for overloaded calls.  This can happen even in C due to extensions.
5129   if (Fn->getType() == Context.OverloadTy) {
5130     OverloadExpr::FindResult find = OverloadExpr::find(Fn);
5131 
5132     // We aren't supposed to apply this logic for if there's an '&' involved.
5133     if (!find.HasFormOfMemberPointer) {
5134       OverloadExpr *ovl = find.Expression;
5135       if (UnresolvedLookupExpr *ULE = dyn_cast<UnresolvedLookupExpr>(ovl))
5136         return BuildOverloadedCallExpr(S, Fn, ULE, LParenLoc, ArgExprs,
5137                                        RParenLoc, ExecConfig,
5138                                        /*AllowTypoCorrection=*/true,
5139                                        find.IsAddressOfOperand);
5140       return BuildCallToMemberFunction(S, Fn, LParenLoc, ArgExprs, RParenLoc);
5141     }
5142   }
5143 
5144   // If we're directly calling a function, get the appropriate declaration.
5145   if (Fn->getType() == Context.UnknownAnyTy) {
5146     ExprResult result = rebuildUnknownAnyFunction(*this, Fn);
5147     if (result.isInvalid()) return ExprError();
5148     Fn = result.get();
5149   }
5150 
5151   Expr *NakedFn = Fn->IgnoreParens();
5152 
5153   bool CallingNDeclIndirectly = false;
5154   NamedDecl *NDecl = nullptr;
5155   if (UnaryOperator *UnOp = dyn_cast<UnaryOperator>(NakedFn)) {
5156     if (UnOp->getOpcode() == UO_AddrOf) {
5157       CallingNDeclIndirectly = true;
5158       NakedFn = UnOp->getSubExpr()->IgnoreParens();
5159     }
5160   }
5161 
5162   if (isa<DeclRefExpr>(NakedFn)) {
5163     NDecl = cast<DeclRefExpr>(NakedFn)->getDecl();
5164 
5165     FunctionDecl *FDecl = dyn_cast<FunctionDecl>(NDecl);
5166     if (FDecl && FDecl->getBuiltinID()) {
5167       // Rewrite the function decl for this builtin by replacing parameters
5168       // with no explicit address space with the address space of the arguments
5169       // in ArgExprs.
5170       if ((FDecl = rewriteBuiltinFunctionDecl(this, Context, FDecl, ArgExprs))) {
5171         NDecl = FDecl;
5172         Fn = DeclRefExpr::Create(Context, FDecl->getQualifierLoc(),
5173                            SourceLocation(), FDecl, false,
5174                            SourceLocation(), FDecl->getType(),
5175                            Fn->getValueKind(), FDecl);
5176       }
5177     }
5178   } else if (isa<MemberExpr>(NakedFn))
5179     NDecl = cast<MemberExpr>(NakedFn)->getMemberDecl();
5180 
5181   if (FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(NDecl)) {
5182     if (CallingNDeclIndirectly &&
5183         !checkAddressOfFunctionIsAvailable(FD, /*Complain=*/true,
5184                                            Fn->getLocStart()))
5185       return ExprError();
5186 
5187     // CheckEnableIf assumes that the we're passing in a sane number of args for
5188     // FD, but that doesn't always hold true here. This is because, in some
5189     // cases, we'll emit a diag about an ill-formed function call, but then
5190     // we'll continue on as if the function call wasn't ill-formed. So, if the
5191     // number of args looks incorrect, don't do enable_if checks; we should've
5192     // already emitted an error about the bad call.
5193     if (FD->hasAttr<EnableIfAttr>() &&
5194         isNumberOfArgsValidForCall(*this, FD, ArgExprs.size())) {
5195       if (const EnableIfAttr *Attr = CheckEnableIf(FD, ArgExprs, true)) {
5196         Diag(Fn->getLocStart(),
5197              isa<CXXMethodDecl>(FD) ?
5198                  diag::err_ovl_no_viable_member_function_in_call :
5199                  diag::err_ovl_no_viable_function_in_call)
5200           << FD << FD->getSourceRange();
5201         Diag(FD->getLocation(),
5202              diag::note_ovl_candidate_disabled_by_enable_if_attr)
5203             << Attr->getCond()->getSourceRange() << Attr->getMessage();
5204       }
5205     }
5206   }
5207 
5208   return BuildResolvedCallExpr(Fn, NDecl, LParenLoc, ArgExprs, RParenLoc,
5209                                ExecConfig, IsExecConfig);
5210 }
5211 
5212 /// ActOnAsTypeExpr - create a new asType (bitcast) from the arguments.
5213 ///
5214 /// __builtin_astype( value, dst type )
5215 ///
5216 ExprResult Sema::ActOnAsTypeExpr(Expr *E, ParsedType ParsedDestTy,
5217                                  SourceLocation BuiltinLoc,
5218                                  SourceLocation RParenLoc) {
5219   ExprValueKind VK = VK_RValue;
5220   ExprObjectKind OK = OK_Ordinary;
5221   QualType DstTy = GetTypeFromParser(ParsedDestTy);
5222   QualType SrcTy = E->getType();
5223   if (Context.getTypeSize(DstTy) != Context.getTypeSize(SrcTy))
5224     return ExprError(Diag(BuiltinLoc,
5225                           diag::err_invalid_astype_of_different_size)
5226                      << DstTy
5227                      << SrcTy
5228                      << E->getSourceRange());
5229   return new (Context) AsTypeExpr(E, DstTy, VK, OK, BuiltinLoc, RParenLoc);
5230 }
5231 
5232 /// ActOnConvertVectorExpr - create a new convert-vector expression from the
5233 /// provided arguments.
5234 ///
5235 /// __builtin_convertvector( value, dst type )
5236 ///
5237 ExprResult Sema::ActOnConvertVectorExpr(Expr *E, ParsedType ParsedDestTy,
5238                                         SourceLocation BuiltinLoc,
5239                                         SourceLocation RParenLoc) {
5240   TypeSourceInfo *TInfo;
5241   GetTypeFromParser(ParsedDestTy, &TInfo);
5242   return SemaConvertVectorExpr(E, TInfo, BuiltinLoc, RParenLoc);
5243 }
5244 
5245 /// BuildResolvedCallExpr - Build a call to a resolved expression,
5246 /// i.e. an expression not of \p OverloadTy.  The expression should
5247 /// unary-convert to an expression of function-pointer or
5248 /// block-pointer type.
5249 ///
5250 /// \param NDecl the declaration being called, if available
5251 ExprResult
5252 Sema::BuildResolvedCallExpr(Expr *Fn, NamedDecl *NDecl,
5253                             SourceLocation LParenLoc,
5254                             ArrayRef<Expr *> Args,
5255                             SourceLocation RParenLoc,
5256                             Expr *Config, bool IsExecConfig) {
5257   FunctionDecl *FDecl = dyn_cast_or_null<FunctionDecl>(NDecl);
5258   unsigned BuiltinID = (FDecl ? FDecl->getBuiltinID() : 0);
5259 
5260   // Functions with 'interrupt' attribute cannot be called directly.
5261   if (FDecl && FDecl->hasAttr<AnyX86InterruptAttr>()) {
5262     Diag(Fn->getExprLoc(), diag::err_anyx86_interrupt_called);
5263     return ExprError();
5264   }
5265 
5266   // Promote the function operand.
5267   // We special-case function promotion here because we only allow promoting
5268   // builtin functions to function pointers in the callee of a call.
5269   ExprResult Result;
5270   if (BuiltinID &&
5271       Fn->getType()->isSpecificBuiltinType(BuiltinType::BuiltinFn)) {
5272     Result = ImpCastExprToType(Fn, Context.getPointerType(FDecl->getType()),
5273                                CK_BuiltinFnToFnPtr).get();
5274   } else {
5275     Result = CallExprUnaryConversions(Fn);
5276   }
5277   if (Result.isInvalid())
5278     return ExprError();
5279   Fn = Result.get();
5280 
5281   // Make the call expr early, before semantic checks.  This guarantees cleanup
5282   // of arguments and function on error.
5283   CallExpr *TheCall;
5284   if (Config)
5285     TheCall = new (Context) CUDAKernelCallExpr(Context, Fn,
5286                                                cast<CallExpr>(Config), Args,
5287                                                Context.BoolTy, VK_RValue,
5288                                                RParenLoc);
5289   else
5290     TheCall = new (Context) CallExpr(Context, Fn, Args, Context.BoolTy,
5291                                      VK_RValue, RParenLoc);
5292 
5293   if (!getLangOpts().CPlusPlus) {
5294     // C cannot always handle TypoExpr nodes in builtin calls and direct
5295     // function calls as their argument checking don't necessarily handle
5296     // dependent types properly, so make sure any TypoExprs have been
5297     // dealt with.
5298     ExprResult Result = CorrectDelayedTyposInExpr(TheCall);
5299     if (!Result.isUsable()) return ExprError();
5300     TheCall = dyn_cast<CallExpr>(Result.get());
5301     if (!TheCall) return Result;
5302     Args = llvm::makeArrayRef(TheCall->getArgs(), TheCall->getNumArgs());
5303   }
5304 
5305   // Bail out early if calling a builtin with custom typechecking.
5306   if (BuiltinID && Context.BuiltinInfo.hasCustomTypechecking(BuiltinID))
5307     return CheckBuiltinFunctionCall(FDecl, BuiltinID, TheCall);
5308 
5309  retry:
5310   const FunctionType *FuncT;
5311   if (const PointerType *PT = Fn->getType()->getAs<PointerType>()) {
5312     // C99 6.5.2.2p1 - "The expression that denotes the called function shall
5313     // have type pointer to function".
5314     FuncT = PT->getPointeeType()->getAs<FunctionType>();
5315     if (!FuncT)
5316       return ExprError(Diag(LParenLoc, diag::err_typecheck_call_not_function)
5317                          << Fn->getType() << Fn->getSourceRange());
5318   } else if (const BlockPointerType *BPT =
5319                Fn->getType()->getAs<BlockPointerType>()) {
5320     FuncT = BPT->getPointeeType()->castAs<FunctionType>();
5321   } else {
5322     // Handle calls to expressions of unknown-any type.
5323     if (Fn->getType() == Context.UnknownAnyTy) {
5324       ExprResult rewrite = rebuildUnknownAnyFunction(*this, Fn);
5325       if (rewrite.isInvalid()) return ExprError();
5326       Fn = rewrite.get();
5327       TheCall->setCallee(Fn);
5328       goto retry;
5329     }
5330 
5331     return ExprError(Diag(LParenLoc, diag::err_typecheck_call_not_function)
5332       << Fn->getType() << Fn->getSourceRange());
5333   }
5334 
5335   if (getLangOpts().CUDA) {
5336     if (Config) {
5337       // CUDA: Kernel calls must be to global functions
5338       if (FDecl && !FDecl->hasAttr<CUDAGlobalAttr>())
5339         return ExprError(Diag(LParenLoc,diag::err_kern_call_not_global_function)
5340             << FDecl->getName() << Fn->getSourceRange());
5341 
5342       // CUDA: Kernel function must have 'void' return type
5343       if (!FuncT->getReturnType()->isVoidType())
5344         return ExprError(Diag(LParenLoc, diag::err_kern_type_not_void_return)
5345             << Fn->getType() << Fn->getSourceRange());
5346     } else {
5347       // CUDA: Calls to global functions must be configured
5348       if (FDecl && FDecl->hasAttr<CUDAGlobalAttr>())
5349         return ExprError(Diag(LParenLoc, diag::err_global_call_not_config)
5350             << FDecl->getName() << Fn->getSourceRange());
5351     }
5352   }
5353 
5354   // Check for a valid return type
5355   if (CheckCallReturnType(FuncT->getReturnType(), Fn->getLocStart(), TheCall,
5356                           FDecl))
5357     return ExprError();
5358 
5359   // We know the result type of the call, set it.
5360   TheCall->setType(FuncT->getCallResultType(Context));
5361   TheCall->setValueKind(Expr::getValueKindForType(FuncT->getReturnType()));
5362 
5363   const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FuncT);
5364   if (Proto) {
5365     if (ConvertArgumentsForCall(TheCall, Fn, FDecl, Proto, Args, RParenLoc,
5366                                 IsExecConfig))
5367       return ExprError();
5368   } else {
5369     assert(isa<FunctionNoProtoType>(FuncT) && "Unknown FunctionType!");
5370 
5371     if (FDecl) {
5372       // Check if we have too few/too many template arguments, based
5373       // on our knowledge of the function definition.
5374       const FunctionDecl *Def = nullptr;
5375       if (FDecl->hasBody(Def) && Args.size() != Def->param_size()) {
5376         Proto = Def->getType()->getAs<FunctionProtoType>();
5377        if (!Proto || !(Proto->isVariadic() && Args.size() >= Def->param_size()))
5378           Diag(RParenLoc, diag::warn_call_wrong_number_of_arguments)
5379           << (Args.size() > Def->param_size()) << FDecl << Fn->getSourceRange();
5380       }
5381 
5382       // If the function we're calling isn't a function prototype, but we have
5383       // a function prototype from a prior declaratiom, use that prototype.
5384       if (!FDecl->hasPrototype())
5385         Proto = FDecl->getType()->getAs<FunctionProtoType>();
5386     }
5387 
5388     // Promote the arguments (C99 6.5.2.2p6).
5389     for (unsigned i = 0, e = Args.size(); i != e; i++) {
5390       Expr *Arg = Args[i];
5391 
5392       if (Proto && i < Proto->getNumParams()) {
5393         InitializedEntity Entity = InitializedEntity::InitializeParameter(
5394             Context, Proto->getParamType(i), Proto->isParamConsumed(i));
5395         ExprResult ArgE =
5396             PerformCopyInitialization(Entity, SourceLocation(), Arg);
5397         if (ArgE.isInvalid())
5398           return true;
5399 
5400         Arg = ArgE.getAs<Expr>();
5401 
5402       } else {
5403         ExprResult ArgE = DefaultArgumentPromotion(Arg);
5404 
5405         if (ArgE.isInvalid())
5406           return true;
5407 
5408         Arg = ArgE.getAs<Expr>();
5409       }
5410 
5411       if (RequireCompleteType(Arg->getLocStart(),
5412                               Arg->getType(),
5413                               diag::err_call_incomplete_argument, Arg))
5414         return ExprError();
5415 
5416       TheCall->setArg(i, Arg);
5417     }
5418   }
5419 
5420   if (CXXMethodDecl *Method = dyn_cast_or_null<CXXMethodDecl>(FDecl))
5421     if (!Method->isStatic())
5422       return ExprError(Diag(LParenLoc, diag::err_member_call_without_object)
5423         << Fn->getSourceRange());
5424 
5425   // Check for sentinels
5426   if (NDecl)
5427     DiagnoseSentinelCalls(NDecl, LParenLoc, Args);
5428 
5429   // Do special checking on direct calls to functions.
5430   if (FDecl) {
5431     if (CheckFunctionCall(FDecl, TheCall, Proto))
5432       return ExprError();
5433 
5434     if (BuiltinID)
5435       return CheckBuiltinFunctionCall(FDecl, BuiltinID, TheCall);
5436   } else if (NDecl) {
5437     if (CheckPointerCall(NDecl, TheCall, Proto))
5438       return ExprError();
5439   } else {
5440     if (CheckOtherCall(TheCall, Proto))
5441       return ExprError();
5442   }
5443 
5444   return MaybeBindToTemporary(TheCall);
5445 }
5446 
5447 ExprResult
5448 Sema::ActOnCompoundLiteral(SourceLocation LParenLoc, ParsedType Ty,
5449                            SourceLocation RParenLoc, Expr *InitExpr) {
5450   assert(Ty && "ActOnCompoundLiteral(): missing type");
5451   assert(InitExpr && "ActOnCompoundLiteral(): missing expression");
5452 
5453   TypeSourceInfo *TInfo;
5454   QualType literalType = GetTypeFromParser(Ty, &TInfo);
5455   if (!TInfo)
5456     TInfo = Context.getTrivialTypeSourceInfo(literalType);
5457 
5458   return BuildCompoundLiteralExpr(LParenLoc, TInfo, RParenLoc, InitExpr);
5459 }
5460 
5461 ExprResult
5462 Sema::BuildCompoundLiteralExpr(SourceLocation LParenLoc, TypeSourceInfo *TInfo,
5463                                SourceLocation RParenLoc, Expr *LiteralExpr) {
5464   QualType literalType = TInfo->getType();
5465 
5466   if (literalType->isArrayType()) {
5467     if (RequireCompleteType(LParenLoc, Context.getBaseElementType(literalType),
5468           diag::err_illegal_decl_array_incomplete_type,
5469           SourceRange(LParenLoc,
5470                       LiteralExpr->getSourceRange().getEnd())))
5471       return ExprError();
5472     if (literalType->isVariableArrayType())
5473       return ExprError(Diag(LParenLoc, diag::err_variable_object_no_init)
5474         << SourceRange(LParenLoc, LiteralExpr->getSourceRange().getEnd()));
5475   } else if (!literalType->isDependentType() &&
5476              RequireCompleteType(LParenLoc, literalType,
5477                diag::err_typecheck_decl_incomplete_type,
5478                SourceRange(LParenLoc, LiteralExpr->getSourceRange().getEnd())))
5479     return ExprError();
5480 
5481   InitializedEntity Entity
5482     = InitializedEntity::InitializeCompoundLiteralInit(TInfo);
5483   InitializationKind Kind
5484     = InitializationKind::CreateCStyleCast(LParenLoc,
5485                                            SourceRange(LParenLoc, RParenLoc),
5486                                            /*InitList=*/true);
5487   InitializationSequence InitSeq(*this, Entity, Kind, LiteralExpr);
5488   ExprResult Result = InitSeq.Perform(*this, Entity, Kind, LiteralExpr,
5489                                       &literalType);
5490   if (Result.isInvalid())
5491     return ExprError();
5492   LiteralExpr = Result.get();
5493 
5494   bool isFileScope = getCurFunctionOrMethodDecl() == nullptr;
5495   if (isFileScope &&
5496       !LiteralExpr->isTypeDependent() &&
5497       !LiteralExpr->isValueDependent() &&
5498       !literalType->isDependentType()) { // 6.5.2.5p3
5499     if (CheckForConstantInitializer(LiteralExpr, literalType))
5500       return ExprError();
5501   }
5502 
5503   // In C, compound literals are l-values for some reason.
5504   ExprValueKind VK = getLangOpts().CPlusPlus ? VK_RValue : VK_LValue;
5505 
5506   return MaybeBindToTemporary(
5507            new (Context) CompoundLiteralExpr(LParenLoc, TInfo, literalType,
5508                                              VK, LiteralExpr, isFileScope));
5509 }
5510 
5511 ExprResult
5512 Sema::ActOnInitList(SourceLocation LBraceLoc, MultiExprArg InitArgList,
5513                     SourceLocation RBraceLoc) {
5514   // Immediately handle non-overload placeholders.  Overloads can be
5515   // resolved contextually, but everything else here can't.
5516   for (unsigned I = 0, E = InitArgList.size(); I != E; ++I) {
5517     if (InitArgList[I]->getType()->isNonOverloadPlaceholderType()) {
5518       ExprResult result = CheckPlaceholderExpr(InitArgList[I]);
5519 
5520       // Ignore failures; dropping the entire initializer list because
5521       // of one failure would be terrible for indexing/etc.
5522       if (result.isInvalid()) continue;
5523 
5524       InitArgList[I] = result.get();
5525     }
5526   }
5527 
5528   // Semantic analysis for initializers is done by ActOnDeclarator() and
5529   // CheckInitializer() - it requires knowledge of the object being intialized.
5530 
5531   InitListExpr *E = new (Context) InitListExpr(Context, LBraceLoc, InitArgList,
5532                                                RBraceLoc);
5533   E->setType(Context.VoidTy); // FIXME: just a place holder for now.
5534   return E;
5535 }
5536 
5537 /// Do an explicit extend of the given block pointer if we're in ARC.
5538 void Sema::maybeExtendBlockObject(ExprResult &E) {
5539   assert(E.get()->getType()->isBlockPointerType());
5540   assert(E.get()->isRValue());
5541 
5542   // Only do this in an r-value context.
5543   if (!getLangOpts().ObjCAutoRefCount) return;
5544 
5545   E = ImplicitCastExpr::Create(Context, E.get()->getType(),
5546                                CK_ARCExtendBlockObject, E.get(),
5547                                /*base path*/ nullptr, VK_RValue);
5548   ExprNeedsCleanups = true;
5549 }
5550 
5551 /// Prepare a conversion of the given expression to an ObjC object
5552 /// pointer type.
5553 CastKind Sema::PrepareCastToObjCObjectPointer(ExprResult &E) {
5554   QualType type = E.get()->getType();
5555   if (type->isObjCObjectPointerType()) {
5556     return CK_BitCast;
5557   } else if (type->isBlockPointerType()) {
5558     maybeExtendBlockObject(E);
5559     return CK_BlockPointerToObjCPointerCast;
5560   } else {
5561     assert(type->isPointerType());
5562     return CK_CPointerToObjCPointerCast;
5563   }
5564 }
5565 
5566 /// Prepares for a scalar cast, performing all the necessary stages
5567 /// except the final cast and returning the kind required.
5568 CastKind Sema::PrepareScalarCast(ExprResult &Src, QualType DestTy) {
5569   // Both Src and Dest are scalar types, i.e. arithmetic or pointer.
5570   // Also, callers should have filtered out the invalid cases with
5571   // pointers.  Everything else should be possible.
5572 
5573   QualType SrcTy = Src.get()->getType();
5574   if (Context.hasSameUnqualifiedType(SrcTy, DestTy))
5575     return CK_NoOp;
5576 
5577   switch (Type::ScalarTypeKind SrcKind = SrcTy->getScalarTypeKind()) {
5578   case Type::STK_MemberPointer:
5579     llvm_unreachable("member pointer type in C");
5580 
5581   case Type::STK_CPointer:
5582   case Type::STK_BlockPointer:
5583   case Type::STK_ObjCObjectPointer:
5584     switch (DestTy->getScalarTypeKind()) {
5585     case Type::STK_CPointer: {
5586       unsigned SrcAS = SrcTy->getPointeeType().getAddressSpace();
5587       unsigned DestAS = DestTy->getPointeeType().getAddressSpace();
5588       if (SrcAS != DestAS)
5589         return CK_AddressSpaceConversion;
5590       return CK_BitCast;
5591     }
5592     case Type::STK_BlockPointer:
5593       return (SrcKind == Type::STK_BlockPointer
5594                 ? CK_BitCast : CK_AnyPointerToBlockPointerCast);
5595     case Type::STK_ObjCObjectPointer:
5596       if (SrcKind == Type::STK_ObjCObjectPointer)
5597         return CK_BitCast;
5598       if (SrcKind == Type::STK_CPointer)
5599         return CK_CPointerToObjCPointerCast;
5600       maybeExtendBlockObject(Src);
5601       return CK_BlockPointerToObjCPointerCast;
5602     case Type::STK_Bool:
5603       return CK_PointerToBoolean;
5604     case Type::STK_Integral:
5605       return CK_PointerToIntegral;
5606     case Type::STK_Floating:
5607     case Type::STK_FloatingComplex:
5608     case Type::STK_IntegralComplex:
5609     case Type::STK_MemberPointer:
5610       llvm_unreachable("illegal cast from pointer");
5611     }
5612     llvm_unreachable("Should have returned before this");
5613 
5614   case Type::STK_Bool: // casting from bool is like casting from an integer
5615   case Type::STK_Integral:
5616     switch (DestTy->getScalarTypeKind()) {
5617     case Type::STK_CPointer:
5618     case Type::STK_ObjCObjectPointer:
5619     case Type::STK_BlockPointer:
5620       if (Src.get()->isNullPointerConstant(Context,
5621                                            Expr::NPC_ValueDependentIsNull))
5622         return CK_NullToPointer;
5623       return CK_IntegralToPointer;
5624     case Type::STK_Bool:
5625       return CK_IntegralToBoolean;
5626     case Type::STK_Integral:
5627       return CK_IntegralCast;
5628     case Type::STK_Floating:
5629       return CK_IntegralToFloating;
5630     case Type::STK_IntegralComplex:
5631       Src = ImpCastExprToType(Src.get(),
5632                       DestTy->castAs<ComplexType>()->getElementType(),
5633                       CK_IntegralCast);
5634       return CK_IntegralRealToComplex;
5635     case Type::STK_FloatingComplex:
5636       Src = ImpCastExprToType(Src.get(),
5637                       DestTy->castAs<ComplexType>()->getElementType(),
5638                       CK_IntegralToFloating);
5639       return CK_FloatingRealToComplex;
5640     case Type::STK_MemberPointer:
5641       llvm_unreachable("member pointer type in C");
5642     }
5643     llvm_unreachable("Should have returned before this");
5644 
5645   case Type::STK_Floating:
5646     switch (DestTy->getScalarTypeKind()) {
5647     case Type::STK_Floating:
5648       return CK_FloatingCast;
5649     case Type::STK_Bool:
5650       return CK_FloatingToBoolean;
5651     case Type::STK_Integral:
5652       return CK_FloatingToIntegral;
5653     case Type::STK_FloatingComplex:
5654       Src = ImpCastExprToType(Src.get(),
5655                               DestTy->castAs<ComplexType>()->getElementType(),
5656                               CK_FloatingCast);
5657       return CK_FloatingRealToComplex;
5658     case Type::STK_IntegralComplex:
5659       Src = ImpCastExprToType(Src.get(),
5660                               DestTy->castAs<ComplexType>()->getElementType(),
5661                               CK_FloatingToIntegral);
5662       return CK_IntegralRealToComplex;
5663     case Type::STK_CPointer:
5664     case Type::STK_ObjCObjectPointer:
5665     case Type::STK_BlockPointer:
5666       llvm_unreachable("valid float->pointer cast?");
5667     case Type::STK_MemberPointer:
5668       llvm_unreachable("member pointer type in C");
5669     }
5670     llvm_unreachable("Should have returned before this");
5671 
5672   case Type::STK_FloatingComplex:
5673     switch (DestTy->getScalarTypeKind()) {
5674     case Type::STK_FloatingComplex:
5675       return CK_FloatingComplexCast;
5676     case Type::STK_IntegralComplex:
5677       return CK_FloatingComplexToIntegralComplex;
5678     case Type::STK_Floating: {
5679       QualType ET = SrcTy->castAs<ComplexType>()->getElementType();
5680       if (Context.hasSameType(ET, DestTy))
5681         return CK_FloatingComplexToReal;
5682       Src = ImpCastExprToType(Src.get(), ET, CK_FloatingComplexToReal);
5683       return CK_FloatingCast;
5684     }
5685     case Type::STK_Bool:
5686       return CK_FloatingComplexToBoolean;
5687     case Type::STK_Integral:
5688       Src = ImpCastExprToType(Src.get(),
5689                               SrcTy->castAs<ComplexType>()->getElementType(),
5690                               CK_FloatingComplexToReal);
5691       return CK_FloatingToIntegral;
5692     case Type::STK_CPointer:
5693     case Type::STK_ObjCObjectPointer:
5694     case Type::STK_BlockPointer:
5695       llvm_unreachable("valid complex float->pointer cast?");
5696     case Type::STK_MemberPointer:
5697       llvm_unreachable("member pointer type in C");
5698     }
5699     llvm_unreachable("Should have returned before this");
5700 
5701   case Type::STK_IntegralComplex:
5702     switch (DestTy->getScalarTypeKind()) {
5703     case Type::STK_FloatingComplex:
5704       return CK_IntegralComplexToFloatingComplex;
5705     case Type::STK_IntegralComplex:
5706       return CK_IntegralComplexCast;
5707     case Type::STK_Integral: {
5708       QualType ET = SrcTy->castAs<ComplexType>()->getElementType();
5709       if (Context.hasSameType(ET, DestTy))
5710         return CK_IntegralComplexToReal;
5711       Src = ImpCastExprToType(Src.get(), ET, CK_IntegralComplexToReal);
5712       return CK_IntegralCast;
5713     }
5714     case Type::STK_Bool:
5715       return CK_IntegralComplexToBoolean;
5716     case Type::STK_Floating:
5717       Src = ImpCastExprToType(Src.get(),
5718                               SrcTy->castAs<ComplexType>()->getElementType(),
5719                               CK_IntegralComplexToReal);
5720       return CK_IntegralToFloating;
5721     case Type::STK_CPointer:
5722     case Type::STK_ObjCObjectPointer:
5723     case Type::STK_BlockPointer:
5724       llvm_unreachable("valid complex int->pointer cast?");
5725     case Type::STK_MemberPointer:
5726       llvm_unreachable("member pointer type in C");
5727     }
5728     llvm_unreachable("Should have returned before this");
5729   }
5730 
5731   llvm_unreachable("Unhandled scalar cast");
5732 }
5733 
5734 static bool breakDownVectorType(QualType type, uint64_t &len,
5735                                 QualType &eltType) {
5736   // Vectors are simple.
5737   if (const VectorType *vecType = type->getAs<VectorType>()) {
5738     len = vecType->getNumElements();
5739     eltType = vecType->getElementType();
5740     assert(eltType->isScalarType());
5741     return true;
5742   }
5743 
5744   // We allow lax conversion to and from non-vector types, but only if
5745   // they're real types (i.e. non-complex, non-pointer scalar types).
5746   if (!type->isRealType()) return false;
5747 
5748   len = 1;
5749   eltType = type;
5750   return true;
5751 }
5752 
5753 /// Are the two types lax-compatible vector types?  That is, given
5754 /// that one of them is a vector, do they have equal storage sizes,
5755 /// where the storage size is the number of elements times the element
5756 /// size?
5757 ///
5758 /// This will also return false if either of the types is neither a
5759 /// vector nor a real type.
5760 bool Sema::areLaxCompatibleVectorTypes(QualType srcTy, QualType destTy) {
5761   assert(destTy->isVectorType() || srcTy->isVectorType());
5762 
5763   // Disallow lax conversions between scalars and ExtVectors (these
5764   // conversions are allowed for other vector types because common headers
5765   // depend on them).  Most scalar OP ExtVector cases are handled by the
5766   // splat path anyway, which does what we want (convert, not bitcast).
5767   // What this rules out for ExtVectors is crazy things like char4*float.
5768   if (srcTy->isScalarType() && destTy->isExtVectorType()) return false;
5769   if (destTy->isScalarType() && srcTy->isExtVectorType()) return false;
5770 
5771   uint64_t srcLen, destLen;
5772   QualType srcEltTy, destEltTy;
5773   if (!breakDownVectorType(srcTy, srcLen, srcEltTy)) return false;
5774   if (!breakDownVectorType(destTy, destLen, destEltTy)) return false;
5775 
5776   // ASTContext::getTypeSize will return the size rounded up to a
5777   // power of 2, so instead of using that, we need to use the raw
5778   // element size multiplied by the element count.
5779   uint64_t srcEltSize = Context.getTypeSize(srcEltTy);
5780   uint64_t destEltSize = Context.getTypeSize(destEltTy);
5781 
5782   return (srcLen * srcEltSize == destLen * destEltSize);
5783 }
5784 
5785 /// Is this a legal conversion between two types, one of which is
5786 /// known to be a vector type?
5787 bool Sema::isLaxVectorConversion(QualType srcTy, QualType destTy) {
5788   assert(destTy->isVectorType() || srcTy->isVectorType());
5789 
5790   if (!Context.getLangOpts().LaxVectorConversions)
5791     return false;
5792   return areLaxCompatibleVectorTypes(srcTy, destTy);
5793 }
5794 
5795 bool Sema::CheckVectorCast(SourceRange R, QualType VectorTy, QualType Ty,
5796                            CastKind &Kind) {
5797   assert(VectorTy->isVectorType() && "Not a vector type!");
5798 
5799   if (Ty->isVectorType() || Ty->isIntegralType(Context)) {
5800     if (!areLaxCompatibleVectorTypes(Ty, VectorTy))
5801       return Diag(R.getBegin(),
5802                   Ty->isVectorType() ?
5803                   diag::err_invalid_conversion_between_vectors :
5804                   diag::err_invalid_conversion_between_vector_and_integer)
5805         << VectorTy << Ty << R;
5806   } else
5807     return Diag(R.getBegin(),
5808                 diag::err_invalid_conversion_between_vector_and_scalar)
5809       << VectorTy << Ty << R;
5810 
5811   Kind = CK_BitCast;
5812   return false;
5813 }
5814 
5815 ExprResult Sema::prepareVectorSplat(QualType VectorTy, Expr *SplattedExpr) {
5816   QualType DestElemTy = VectorTy->castAs<VectorType>()->getElementType();
5817 
5818   if (DestElemTy == SplattedExpr->getType())
5819     return SplattedExpr;
5820 
5821   assert(DestElemTy->isFloatingType() ||
5822          DestElemTy->isIntegralOrEnumerationType());
5823 
5824   CastKind CK;
5825   if (VectorTy->isExtVectorType() && SplattedExpr->getType()->isBooleanType()) {
5826     // OpenCL requires that we convert `true` boolean expressions to -1, but
5827     // only when splatting vectors.
5828     if (DestElemTy->isFloatingType()) {
5829       // To avoid having to have a CK_BooleanToSignedFloating cast kind, we cast
5830       // in two steps: boolean to signed integral, then to floating.
5831       ExprResult CastExprRes = ImpCastExprToType(SplattedExpr, Context.IntTy,
5832                                                  CK_BooleanToSignedIntegral);
5833       SplattedExpr = CastExprRes.get();
5834       CK = CK_IntegralToFloating;
5835     } else {
5836       CK = CK_BooleanToSignedIntegral;
5837     }
5838   } else {
5839     ExprResult CastExprRes = SplattedExpr;
5840     CK = PrepareScalarCast(CastExprRes, DestElemTy);
5841     if (CastExprRes.isInvalid())
5842       return ExprError();
5843     SplattedExpr = CastExprRes.get();
5844   }
5845   return ImpCastExprToType(SplattedExpr, DestElemTy, CK);
5846 }
5847 
5848 ExprResult Sema::CheckExtVectorCast(SourceRange R, QualType DestTy,
5849                                     Expr *CastExpr, CastKind &Kind) {
5850   assert(DestTy->isExtVectorType() && "Not an extended vector type!");
5851 
5852   QualType SrcTy = CastExpr->getType();
5853 
5854   // If SrcTy is a VectorType, the total size must match to explicitly cast to
5855   // an ExtVectorType.
5856   // In OpenCL, casts between vectors of different types are not allowed.
5857   // (See OpenCL 6.2).
5858   if (SrcTy->isVectorType()) {
5859     if (!areLaxCompatibleVectorTypes(SrcTy, DestTy)
5860         || (getLangOpts().OpenCL &&
5861             (DestTy.getCanonicalType() != SrcTy.getCanonicalType()))) {
5862       Diag(R.getBegin(),diag::err_invalid_conversion_between_ext_vectors)
5863         << DestTy << SrcTy << R;
5864       return ExprError();
5865     }
5866     Kind = CK_BitCast;
5867     return CastExpr;
5868   }
5869 
5870   // All non-pointer scalars can be cast to ExtVector type.  The appropriate
5871   // conversion will take place first from scalar to elt type, and then
5872   // splat from elt type to vector.
5873   if (SrcTy->isPointerType())
5874     return Diag(R.getBegin(),
5875                 diag::err_invalid_conversion_between_vector_and_scalar)
5876       << DestTy << SrcTy << R;
5877 
5878   Kind = CK_VectorSplat;
5879   return prepareVectorSplat(DestTy, CastExpr);
5880 }
5881 
5882 ExprResult
5883 Sema::ActOnCastExpr(Scope *S, SourceLocation LParenLoc,
5884                     Declarator &D, ParsedType &Ty,
5885                     SourceLocation RParenLoc, Expr *CastExpr) {
5886   assert(!D.isInvalidType() && (CastExpr != nullptr) &&
5887          "ActOnCastExpr(): missing type or expr");
5888 
5889   TypeSourceInfo *castTInfo = GetTypeForDeclaratorCast(D, CastExpr->getType());
5890   if (D.isInvalidType())
5891     return ExprError();
5892 
5893   if (getLangOpts().CPlusPlus) {
5894     // Check that there are no default arguments (C++ only).
5895     CheckExtraCXXDefaultArguments(D);
5896   } else {
5897     // Make sure any TypoExprs have been dealt with.
5898     ExprResult Res = CorrectDelayedTyposInExpr(CastExpr);
5899     if (!Res.isUsable())
5900       return ExprError();
5901     CastExpr = Res.get();
5902   }
5903 
5904   checkUnusedDeclAttributes(D);
5905 
5906   QualType castType = castTInfo->getType();
5907   Ty = CreateParsedType(castType, castTInfo);
5908 
5909   bool isVectorLiteral = false;
5910 
5911   // Check for an altivec or OpenCL literal,
5912   // i.e. all the elements are integer constants.
5913   ParenExpr *PE = dyn_cast<ParenExpr>(CastExpr);
5914   ParenListExpr *PLE = dyn_cast<ParenListExpr>(CastExpr);
5915   if ((getLangOpts().AltiVec || getLangOpts().ZVector || getLangOpts().OpenCL)
5916        && castType->isVectorType() && (PE || PLE)) {
5917     if (PLE && PLE->getNumExprs() == 0) {
5918       Diag(PLE->getExprLoc(), diag::err_altivec_empty_initializer);
5919       return ExprError();
5920     }
5921     if (PE || PLE->getNumExprs() == 1) {
5922       Expr *E = (PE ? PE->getSubExpr() : PLE->getExpr(0));
5923       if (!E->getType()->isVectorType())
5924         isVectorLiteral = true;
5925     }
5926     else
5927       isVectorLiteral = true;
5928   }
5929 
5930   // If this is a vector initializer, '(' type ')' '(' init, ..., init ')'
5931   // then handle it as such.
5932   if (isVectorLiteral)
5933     return BuildVectorLiteral(LParenLoc, RParenLoc, CastExpr, castTInfo);
5934 
5935   // If the Expr being casted is a ParenListExpr, handle it specially.
5936   // This is not an AltiVec-style cast, so turn the ParenListExpr into a
5937   // sequence of BinOp comma operators.
5938   if (isa<ParenListExpr>(CastExpr)) {
5939     ExprResult Result = MaybeConvertParenListExprToParenExpr(S, CastExpr);
5940     if (Result.isInvalid()) return ExprError();
5941     CastExpr = Result.get();
5942   }
5943 
5944   if (getLangOpts().CPlusPlus && !castType->isVoidType() &&
5945       !getSourceManager().isInSystemMacro(LParenLoc))
5946     Diag(LParenLoc, diag::warn_old_style_cast) << CastExpr->getSourceRange();
5947 
5948   CheckTollFreeBridgeCast(castType, CastExpr);
5949 
5950   CheckObjCBridgeRelatedCast(castType, CastExpr);
5951 
5952   return BuildCStyleCastExpr(LParenLoc, castTInfo, RParenLoc, CastExpr);
5953 }
5954 
5955 ExprResult Sema::BuildVectorLiteral(SourceLocation LParenLoc,
5956                                     SourceLocation RParenLoc, Expr *E,
5957                                     TypeSourceInfo *TInfo) {
5958   assert((isa<ParenListExpr>(E) || isa<ParenExpr>(E)) &&
5959          "Expected paren or paren list expression");
5960 
5961   Expr **exprs;
5962   unsigned numExprs;
5963   Expr *subExpr;
5964   SourceLocation LiteralLParenLoc, LiteralRParenLoc;
5965   if (ParenListExpr *PE = dyn_cast<ParenListExpr>(E)) {
5966     LiteralLParenLoc = PE->getLParenLoc();
5967     LiteralRParenLoc = PE->getRParenLoc();
5968     exprs = PE->getExprs();
5969     numExprs = PE->getNumExprs();
5970   } else { // isa<ParenExpr> by assertion at function entrance
5971     LiteralLParenLoc = cast<ParenExpr>(E)->getLParen();
5972     LiteralRParenLoc = cast<ParenExpr>(E)->getRParen();
5973     subExpr = cast<ParenExpr>(E)->getSubExpr();
5974     exprs = &subExpr;
5975     numExprs = 1;
5976   }
5977 
5978   QualType Ty = TInfo->getType();
5979   assert(Ty->isVectorType() && "Expected vector type");
5980 
5981   SmallVector<Expr *, 8> initExprs;
5982   const VectorType *VTy = Ty->getAs<VectorType>();
5983   unsigned numElems = Ty->getAs<VectorType>()->getNumElements();
5984 
5985   // '(...)' form of vector initialization in AltiVec: the number of
5986   // initializers must be one or must match the size of the vector.
5987   // If a single value is specified in the initializer then it will be
5988   // replicated to all the components of the vector
5989   if (VTy->getVectorKind() == VectorType::AltiVecVector) {
5990     // The number of initializers must be one or must match the size of the
5991     // vector. If a single value is specified in the initializer then it will
5992     // be replicated to all the components of the vector
5993     if (numExprs == 1) {
5994       QualType ElemTy = Ty->getAs<VectorType>()->getElementType();
5995       ExprResult Literal = DefaultLvalueConversion(exprs[0]);
5996       if (Literal.isInvalid())
5997         return ExprError();
5998       Literal = ImpCastExprToType(Literal.get(), ElemTy,
5999                                   PrepareScalarCast(Literal, ElemTy));
6000       return BuildCStyleCastExpr(LParenLoc, TInfo, RParenLoc, Literal.get());
6001     }
6002     else if (numExprs < numElems) {
6003       Diag(E->getExprLoc(),
6004            diag::err_incorrect_number_of_vector_initializers);
6005       return ExprError();
6006     }
6007     else
6008       initExprs.append(exprs, exprs + numExprs);
6009   }
6010   else {
6011     // For OpenCL, when the number of initializers is a single value,
6012     // it will be replicated to all components of the vector.
6013     if (getLangOpts().OpenCL &&
6014         VTy->getVectorKind() == VectorType::GenericVector &&
6015         numExprs == 1) {
6016         QualType ElemTy = Ty->getAs<VectorType>()->getElementType();
6017         ExprResult Literal = DefaultLvalueConversion(exprs[0]);
6018         if (Literal.isInvalid())
6019           return ExprError();
6020         Literal = ImpCastExprToType(Literal.get(), ElemTy,
6021                                     PrepareScalarCast(Literal, ElemTy));
6022         return BuildCStyleCastExpr(LParenLoc, TInfo, RParenLoc, Literal.get());
6023     }
6024 
6025     initExprs.append(exprs, exprs + numExprs);
6026   }
6027   // FIXME: This means that pretty-printing the final AST will produce curly
6028   // braces instead of the original commas.
6029   InitListExpr *initE = new (Context) InitListExpr(Context, LiteralLParenLoc,
6030                                                    initExprs, LiteralRParenLoc);
6031   initE->setType(Ty);
6032   return BuildCompoundLiteralExpr(LParenLoc, TInfo, RParenLoc, initE);
6033 }
6034 
6035 /// This is not an AltiVec-style cast or or C++ direct-initialization, so turn
6036 /// the ParenListExpr into a sequence of comma binary operators.
6037 ExprResult
6038 Sema::MaybeConvertParenListExprToParenExpr(Scope *S, Expr *OrigExpr) {
6039   ParenListExpr *E = dyn_cast<ParenListExpr>(OrigExpr);
6040   if (!E)
6041     return OrigExpr;
6042 
6043   ExprResult Result(E->getExpr(0));
6044 
6045   for (unsigned i = 1, e = E->getNumExprs(); i != e && !Result.isInvalid(); ++i)
6046     Result = ActOnBinOp(S, E->getExprLoc(), tok::comma, Result.get(),
6047                         E->getExpr(i));
6048 
6049   if (Result.isInvalid()) return ExprError();
6050 
6051   return ActOnParenExpr(E->getLParenLoc(), E->getRParenLoc(), Result.get());
6052 }
6053 
6054 ExprResult Sema::ActOnParenListExpr(SourceLocation L,
6055                                     SourceLocation R,
6056                                     MultiExprArg Val) {
6057   Expr *expr = new (Context) ParenListExpr(Context, L, Val, R);
6058   return expr;
6059 }
6060 
6061 /// \brief Emit a specialized diagnostic when one expression is a null pointer
6062 /// constant and the other is not a pointer.  Returns true if a diagnostic is
6063 /// emitted.
6064 bool Sema::DiagnoseConditionalForNull(Expr *LHSExpr, Expr *RHSExpr,
6065                                       SourceLocation QuestionLoc) {
6066   Expr *NullExpr = LHSExpr;
6067   Expr *NonPointerExpr = RHSExpr;
6068   Expr::NullPointerConstantKind NullKind =
6069       NullExpr->isNullPointerConstant(Context,
6070                                       Expr::NPC_ValueDependentIsNotNull);
6071 
6072   if (NullKind == Expr::NPCK_NotNull) {
6073     NullExpr = RHSExpr;
6074     NonPointerExpr = LHSExpr;
6075     NullKind =
6076         NullExpr->isNullPointerConstant(Context,
6077                                         Expr::NPC_ValueDependentIsNotNull);
6078   }
6079 
6080   if (NullKind == Expr::NPCK_NotNull)
6081     return false;
6082 
6083   if (NullKind == Expr::NPCK_ZeroExpression)
6084     return false;
6085 
6086   if (NullKind == Expr::NPCK_ZeroLiteral) {
6087     // In this case, check to make sure that we got here from a "NULL"
6088     // string in the source code.
6089     NullExpr = NullExpr->IgnoreParenImpCasts();
6090     SourceLocation loc = NullExpr->getExprLoc();
6091     if (!findMacroSpelling(loc, "NULL"))
6092       return false;
6093   }
6094 
6095   int DiagType = (NullKind == Expr::NPCK_CXX11_nullptr);
6096   Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands_null)
6097       << NonPointerExpr->getType() << DiagType
6098       << NonPointerExpr->getSourceRange();
6099   return true;
6100 }
6101 
6102 /// \brief Return false if the condition expression is valid, true otherwise.
6103 static bool checkCondition(Sema &S, Expr *Cond, SourceLocation QuestionLoc) {
6104   QualType CondTy = Cond->getType();
6105 
6106   // OpenCL v1.1 s6.3.i says the condition cannot be a floating point type.
6107   if (S.getLangOpts().OpenCL && CondTy->isFloatingType()) {
6108     S.Diag(QuestionLoc, diag::err_typecheck_cond_expect_nonfloat)
6109       << CondTy << Cond->getSourceRange();
6110     return true;
6111   }
6112 
6113   // C99 6.5.15p2
6114   if (CondTy->isScalarType()) return false;
6115 
6116   S.Diag(QuestionLoc, diag::err_typecheck_cond_expect_scalar)
6117     << CondTy << Cond->getSourceRange();
6118   return true;
6119 }
6120 
6121 /// \brief Handle when one or both operands are void type.
6122 static QualType checkConditionalVoidType(Sema &S, ExprResult &LHS,
6123                                          ExprResult &RHS) {
6124     Expr *LHSExpr = LHS.get();
6125     Expr *RHSExpr = RHS.get();
6126 
6127     if (!LHSExpr->getType()->isVoidType())
6128       S.Diag(RHSExpr->getLocStart(), diag::ext_typecheck_cond_one_void)
6129         << RHSExpr->getSourceRange();
6130     if (!RHSExpr->getType()->isVoidType())
6131       S.Diag(LHSExpr->getLocStart(), diag::ext_typecheck_cond_one_void)
6132         << LHSExpr->getSourceRange();
6133     LHS = S.ImpCastExprToType(LHS.get(), S.Context.VoidTy, CK_ToVoid);
6134     RHS = S.ImpCastExprToType(RHS.get(), S.Context.VoidTy, CK_ToVoid);
6135     return S.Context.VoidTy;
6136 }
6137 
6138 /// \brief Return false if the NullExpr can be promoted to PointerTy,
6139 /// true otherwise.
6140 static bool checkConditionalNullPointer(Sema &S, ExprResult &NullExpr,
6141                                         QualType PointerTy) {
6142   if ((!PointerTy->isAnyPointerType() && !PointerTy->isBlockPointerType()) ||
6143       !NullExpr.get()->isNullPointerConstant(S.Context,
6144                                             Expr::NPC_ValueDependentIsNull))
6145     return true;
6146 
6147   NullExpr = S.ImpCastExprToType(NullExpr.get(), PointerTy, CK_NullToPointer);
6148   return false;
6149 }
6150 
6151 /// \brief Checks compatibility between two pointers and return the resulting
6152 /// type.
6153 static QualType checkConditionalPointerCompatibility(Sema &S, ExprResult &LHS,
6154                                                      ExprResult &RHS,
6155                                                      SourceLocation Loc) {
6156   QualType LHSTy = LHS.get()->getType();
6157   QualType RHSTy = RHS.get()->getType();
6158 
6159   if (S.Context.hasSameType(LHSTy, RHSTy)) {
6160     // Two identical pointers types are always compatible.
6161     return LHSTy;
6162   }
6163 
6164   QualType lhptee, rhptee;
6165 
6166   // Get the pointee types.
6167   bool IsBlockPointer = false;
6168   if (const BlockPointerType *LHSBTy = LHSTy->getAs<BlockPointerType>()) {
6169     lhptee = LHSBTy->getPointeeType();
6170     rhptee = RHSTy->castAs<BlockPointerType>()->getPointeeType();
6171     IsBlockPointer = true;
6172   } else {
6173     lhptee = LHSTy->castAs<PointerType>()->getPointeeType();
6174     rhptee = RHSTy->castAs<PointerType>()->getPointeeType();
6175   }
6176 
6177   // C99 6.5.15p6: If both operands are pointers to compatible types or to
6178   // differently qualified versions of compatible types, the result type is
6179   // a pointer to an appropriately qualified version of the composite
6180   // type.
6181 
6182   // Only CVR-qualifiers exist in the standard, and the differently-qualified
6183   // clause doesn't make sense for our extensions. E.g. address space 2 should
6184   // be incompatible with address space 3: they may live on different devices or
6185   // anything.
6186   Qualifiers lhQual = lhptee.getQualifiers();
6187   Qualifiers rhQual = rhptee.getQualifiers();
6188 
6189   unsigned MergedCVRQual = lhQual.getCVRQualifiers() | rhQual.getCVRQualifiers();
6190   lhQual.removeCVRQualifiers();
6191   rhQual.removeCVRQualifiers();
6192 
6193   lhptee = S.Context.getQualifiedType(lhptee.getUnqualifiedType(), lhQual);
6194   rhptee = S.Context.getQualifiedType(rhptee.getUnqualifiedType(), rhQual);
6195 
6196   // For OpenCL:
6197   // 1. If LHS and RHS types match exactly and:
6198   //  (a) AS match => use standard C rules, no bitcast or addrspacecast
6199   //  (b) AS overlap => generate addrspacecast
6200   //  (c) AS don't overlap => give an error
6201   // 2. if LHS and RHS types don't match:
6202   //  (a) AS match => use standard C rules, generate bitcast
6203   //  (b) AS overlap => generate addrspacecast instead of bitcast
6204   //  (c) AS don't overlap => give an error
6205 
6206   // For OpenCL, non-null composite type is returned only for cases 1a and 1b.
6207   QualType CompositeTy = S.Context.mergeTypes(lhptee, rhptee);
6208 
6209   // OpenCL cases 1c, 2a, 2b, and 2c.
6210   if (CompositeTy.isNull()) {
6211     // In this situation, we assume void* type. No especially good
6212     // reason, but this is what gcc does, and we do have to pick
6213     // to get a consistent AST.
6214     QualType incompatTy;
6215     if (S.getLangOpts().OpenCL) {
6216       // OpenCL v1.1 s6.5 - Conversion between pointers to distinct address
6217       // spaces is disallowed.
6218       unsigned ResultAddrSpace;
6219       if (lhQual.isAddressSpaceSupersetOf(rhQual)) {
6220         // Cases 2a and 2b.
6221         ResultAddrSpace = lhQual.getAddressSpace();
6222       } else if (rhQual.isAddressSpaceSupersetOf(lhQual)) {
6223         // Cases 2a and 2b.
6224         ResultAddrSpace = rhQual.getAddressSpace();
6225       } else {
6226         // Cases 1c and 2c.
6227         S.Diag(Loc,
6228                diag::err_typecheck_op_on_nonoverlapping_address_space_pointers)
6229             << LHSTy << RHSTy << 2 << LHS.get()->getSourceRange()
6230             << RHS.get()->getSourceRange();
6231         return QualType();
6232       }
6233 
6234       // Continue handling cases 2a and 2b.
6235       incompatTy = S.Context.getPointerType(
6236           S.Context.getAddrSpaceQualType(S.Context.VoidTy, ResultAddrSpace));
6237       LHS = S.ImpCastExprToType(LHS.get(), incompatTy,
6238                                 (lhQual.getAddressSpace() != ResultAddrSpace)
6239                                     ? CK_AddressSpaceConversion /* 2b */
6240                                     : CK_BitCast /* 2a */);
6241       RHS = S.ImpCastExprToType(RHS.get(), incompatTy,
6242                                 (rhQual.getAddressSpace() != ResultAddrSpace)
6243                                     ? CK_AddressSpaceConversion /* 2b */
6244                                     : CK_BitCast /* 2a */);
6245     } else {
6246       S.Diag(Loc, diag::ext_typecheck_cond_incompatible_pointers)
6247           << LHSTy << RHSTy << LHS.get()->getSourceRange()
6248           << RHS.get()->getSourceRange();
6249       incompatTy = S.Context.getPointerType(S.Context.VoidTy);
6250       LHS = S.ImpCastExprToType(LHS.get(), incompatTy, CK_BitCast);
6251       RHS = S.ImpCastExprToType(RHS.get(), incompatTy, CK_BitCast);
6252     }
6253     return incompatTy;
6254   }
6255 
6256   // The pointer types are compatible.
6257   QualType ResultTy = CompositeTy.withCVRQualifiers(MergedCVRQual);
6258   auto LHSCastKind = CK_BitCast, RHSCastKind = CK_BitCast;
6259   if (IsBlockPointer)
6260     ResultTy = S.Context.getBlockPointerType(ResultTy);
6261   else {
6262     // Cases 1a and 1b for OpenCL.
6263     auto ResultAddrSpace = ResultTy.getQualifiers().getAddressSpace();
6264     LHSCastKind = lhQual.getAddressSpace() == ResultAddrSpace
6265                       ? CK_BitCast /* 1a */
6266                       : CK_AddressSpaceConversion /* 1b */;
6267     RHSCastKind = rhQual.getAddressSpace() == ResultAddrSpace
6268                       ? CK_BitCast /* 1a */
6269                       : CK_AddressSpaceConversion /* 1b */;
6270     ResultTy = S.Context.getPointerType(ResultTy);
6271   }
6272 
6273   // For case 1a of OpenCL, S.ImpCastExprToType will not insert bitcast
6274   // if the target type does not change.
6275   LHS = S.ImpCastExprToType(LHS.get(), ResultTy, LHSCastKind);
6276   RHS = S.ImpCastExprToType(RHS.get(), ResultTy, RHSCastKind);
6277   return ResultTy;
6278 }
6279 
6280 /// \brief Return the resulting type when the operands are both block pointers.
6281 static QualType checkConditionalBlockPointerCompatibility(Sema &S,
6282                                                           ExprResult &LHS,
6283                                                           ExprResult &RHS,
6284                                                           SourceLocation Loc) {
6285   QualType LHSTy = LHS.get()->getType();
6286   QualType RHSTy = RHS.get()->getType();
6287 
6288   if (!LHSTy->isBlockPointerType() || !RHSTy->isBlockPointerType()) {
6289     if (LHSTy->isVoidPointerType() || RHSTy->isVoidPointerType()) {
6290       QualType destType = S.Context.getPointerType(S.Context.VoidTy);
6291       LHS = S.ImpCastExprToType(LHS.get(), destType, CK_BitCast);
6292       RHS = S.ImpCastExprToType(RHS.get(), destType, CK_BitCast);
6293       return destType;
6294     }
6295     S.Diag(Loc, diag::err_typecheck_cond_incompatible_operands)
6296       << LHSTy << RHSTy << LHS.get()->getSourceRange()
6297       << RHS.get()->getSourceRange();
6298     return QualType();
6299   }
6300 
6301   // We have 2 block pointer types.
6302   return checkConditionalPointerCompatibility(S, LHS, RHS, Loc);
6303 }
6304 
6305 /// \brief Return the resulting type when the operands are both pointers.
6306 static QualType
6307 checkConditionalObjectPointersCompatibility(Sema &S, ExprResult &LHS,
6308                                             ExprResult &RHS,
6309                                             SourceLocation Loc) {
6310   // get the pointer types
6311   QualType LHSTy = LHS.get()->getType();
6312   QualType RHSTy = RHS.get()->getType();
6313 
6314   // get the "pointed to" types
6315   QualType lhptee = LHSTy->getAs<PointerType>()->getPointeeType();
6316   QualType rhptee = RHSTy->getAs<PointerType>()->getPointeeType();
6317 
6318   // ignore qualifiers on void (C99 6.5.15p3, clause 6)
6319   if (lhptee->isVoidType() && rhptee->isIncompleteOrObjectType()) {
6320     // Figure out necessary qualifiers (C99 6.5.15p6)
6321     QualType destPointee
6322       = S.Context.getQualifiedType(lhptee, rhptee.getQualifiers());
6323     QualType destType = S.Context.getPointerType(destPointee);
6324     // Add qualifiers if necessary.
6325     LHS = S.ImpCastExprToType(LHS.get(), destType, CK_NoOp);
6326     // Promote to void*.
6327     RHS = S.ImpCastExprToType(RHS.get(), destType, CK_BitCast);
6328     return destType;
6329   }
6330   if (rhptee->isVoidType() && lhptee->isIncompleteOrObjectType()) {
6331     QualType destPointee
6332       = S.Context.getQualifiedType(rhptee, lhptee.getQualifiers());
6333     QualType destType = S.Context.getPointerType(destPointee);
6334     // Add qualifiers if necessary.
6335     RHS = S.ImpCastExprToType(RHS.get(), destType, CK_NoOp);
6336     // Promote to void*.
6337     LHS = S.ImpCastExprToType(LHS.get(), destType, CK_BitCast);
6338     return destType;
6339   }
6340 
6341   return checkConditionalPointerCompatibility(S, LHS, RHS, Loc);
6342 }
6343 
6344 /// \brief Return false if the first expression is not an integer and the second
6345 /// expression is not a pointer, true otherwise.
6346 static bool checkPointerIntegerMismatch(Sema &S, ExprResult &Int,
6347                                         Expr* PointerExpr, SourceLocation Loc,
6348                                         bool IsIntFirstExpr) {
6349   if (!PointerExpr->getType()->isPointerType() ||
6350       !Int.get()->getType()->isIntegerType())
6351     return false;
6352 
6353   Expr *Expr1 = IsIntFirstExpr ? Int.get() : PointerExpr;
6354   Expr *Expr2 = IsIntFirstExpr ? PointerExpr : Int.get();
6355 
6356   S.Diag(Loc, diag::ext_typecheck_cond_pointer_integer_mismatch)
6357     << Expr1->getType() << Expr2->getType()
6358     << Expr1->getSourceRange() << Expr2->getSourceRange();
6359   Int = S.ImpCastExprToType(Int.get(), PointerExpr->getType(),
6360                             CK_IntegralToPointer);
6361   return true;
6362 }
6363 
6364 /// \brief Simple conversion between integer and floating point types.
6365 ///
6366 /// Used when handling the OpenCL conditional operator where the
6367 /// condition is a vector while the other operands are scalar.
6368 ///
6369 /// OpenCL v1.1 s6.3.i and s6.11.6 together require that the scalar
6370 /// types are either integer or floating type. Between the two
6371 /// operands, the type with the higher rank is defined as the "result
6372 /// type". The other operand needs to be promoted to the same type. No
6373 /// other type promotion is allowed. We cannot use
6374 /// UsualArithmeticConversions() for this purpose, since it always
6375 /// promotes promotable types.
6376 static QualType OpenCLArithmeticConversions(Sema &S, ExprResult &LHS,
6377                                             ExprResult &RHS,
6378                                             SourceLocation QuestionLoc) {
6379   LHS = S.DefaultFunctionArrayLvalueConversion(LHS.get());
6380   if (LHS.isInvalid())
6381     return QualType();
6382   RHS = S.DefaultFunctionArrayLvalueConversion(RHS.get());
6383   if (RHS.isInvalid())
6384     return QualType();
6385 
6386   // For conversion purposes, we ignore any qualifiers.
6387   // For example, "const float" and "float" are equivalent.
6388   QualType LHSType =
6389     S.Context.getCanonicalType(LHS.get()->getType()).getUnqualifiedType();
6390   QualType RHSType =
6391     S.Context.getCanonicalType(RHS.get()->getType()).getUnqualifiedType();
6392 
6393   if (!LHSType->isIntegerType() && !LHSType->isRealFloatingType()) {
6394     S.Diag(QuestionLoc, diag::err_typecheck_cond_expect_int_float)
6395       << LHSType << LHS.get()->getSourceRange();
6396     return QualType();
6397   }
6398 
6399   if (!RHSType->isIntegerType() && !RHSType->isRealFloatingType()) {
6400     S.Diag(QuestionLoc, diag::err_typecheck_cond_expect_int_float)
6401       << RHSType << RHS.get()->getSourceRange();
6402     return QualType();
6403   }
6404 
6405   // If both types are identical, no conversion is needed.
6406   if (LHSType == RHSType)
6407     return LHSType;
6408 
6409   // Now handle "real" floating types (i.e. float, double, long double).
6410   if (LHSType->isRealFloatingType() || RHSType->isRealFloatingType())
6411     return handleFloatConversion(S, LHS, RHS, LHSType, RHSType,
6412                                  /*IsCompAssign = */ false);
6413 
6414   // Finally, we have two differing integer types.
6415   return handleIntegerConversion<doIntegralCast, doIntegralCast>
6416   (S, LHS, RHS, LHSType, RHSType, /*IsCompAssign = */ false);
6417 }
6418 
6419 /// \brief Convert scalar operands to a vector that matches the
6420 ///        condition in length.
6421 ///
6422 /// Used when handling the OpenCL conditional operator where the
6423 /// condition is a vector while the other operands are scalar.
6424 ///
6425 /// We first compute the "result type" for the scalar operands
6426 /// according to OpenCL v1.1 s6.3.i. Both operands are then converted
6427 /// into a vector of that type where the length matches the condition
6428 /// vector type. s6.11.6 requires that the element types of the result
6429 /// and the condition must have the same number of bits.
6430 static QualType
6431 OpenCLConvertScalarsToVectors(Sema &S, ExprResult &LHS, ExprResult &RHS,
6432                               QualType CondTy, SourceLocation QuestionLoc) {
6433   QualType ResTy = OpenCLArithmeticConversions(S, LHS, RHS, QuestionLoc);
6434   if (ResTy.isNull()) return QualType();
6435 
6436   const VectorType *CV = CondTy->getAs<VectorType>();
6437   assert(CV);
6438 
6439   // Determine the vector result type
6440   unsigned NumElements = CV->getNumElements();
6441   QualType VectorTy = S.Context.getExtVectorType(ResTy, NumElements);
6442 
6443   // Ensure that all types have the same number of bits
6444   if (S.Context.getTypeSize(CV->getElementType())
6445       != S.Context.getTypeSize(ResTy)) {
6446     // Since VectorTy is created internally, it does not pretty print
6447     // with an OpenCL name. Instead, we just print a description.
6448     std::string EleTyName = ResTy.getUnqualifiedType().getAsString();
6449     SmallString<64> Str;
6450     llvm::raw_svector_ostream OS(Str);
6451     OS << "(vector of " << NumElements << " '" << EleTyName << "' values)";
6452     S.Diag(QuestionLoc, diag::err_conditional_vector_element_size)
6453       << CondTy << OS.str();
6454     return QualType();
6455   }
6456 
6457   // Convert operands to the vector result type
6458   LHS = S.ImpCastExprToType(LHS.get(), VectorTy, CK_VectorSplat);
6459   RHS = S.ImpCastExprToType(RHS.get(), VectorTy, CK_VectorSplat);
6460 
6461   return VectorTy;
6462 }
6463 
6464 /// \brief Return false if this is a valid OpenCL condition vector
6465 static bool checkOpenCLConditionVector(Sema &S, Expr *Cond,
6466                                        SourceLocation QuestionLoc) {
6467   // OpenCL v1.1 s6.11.6 says the elements of the vector must be of
6468   // integral type.
6469   const VectorType *CondTy = Cond->getType()->getAs<VectorType>();
6470   assert(CondTy);
6471   QualType EleTy = CondTy->getElementType();
6472   if (EleTy->isIntegerType()) return false;
6473 
6474   S.Diag(QuestionLoc, diag::err_typecheck_cond_expect_nonfloat)
6475     << Cond->getType() << Cond->getSourceRange();
6476   return true;
6477 }
6478 
6479 /// \brief Return false if the vector condition type and the vector
6480 ///        result type are compatible.
6481 ///
6482 /// OpenCL v1.1 s6.11.6 requires that both vector types have the same
6483 /// number of elements, and their element types have the same number
6484 /// of bits.
6485 static bool checkVectorResult(Sema &S, QualType CondTy, QualType VecResTy,
6486                               SourceLocation QuestionLoc) {
6487   const VectorType *CV = CondTy->getAs<VectorType>();
6488   const VectorType *RV = VecResTy->getAs<VectorType>();
6489   assert(CV && RV);
6490 
6491   if (CV->getNumElements() != RV->getNumElements()) {
6492     S.Diag(QuestionLoc, diag::err_conditional_vector_size)
6493       << CondTy << VecResTy;
6494     return true;
6495   }
6496 
6497   QualType CVE = CV->getElementType();
6498   QualType RVE = RV->getElementType();
6499 
6500   if (S.Context.getTypeSize(CVE) != S.Context.getTypeSize(RVE)) {
6501     S.Diag(QuestionLoc, diag::err_conditional_vector_element_size)
6502       << CondTy << VecResTy;
6503     return true;
6504   }
6505 
6506   return false;
6507 }
6508 
6509 /// \brief Return the resulting type for the conditional operator in
6510 ///        OpenCL (aka "ternary selection operator", OpenCL v1.1
6511 ///        s6.3.i) when the condition is a vector type.
6512 static QualType
6513 OpenCLCheckVectorConditional(Sema &S, ExprResult &Cond,
6514                              ExprResult &LHS, ExprResult &RHS,
6515                              SourceLocation QuestionLoc) {
6516   Cond = S.DefaultFunctionArrayLvalueConversion(Cond.get());
6517   if (Cond.isInvalid())
6518     return QualType();
6519   QualType CondTy = Cond.get()->getType();
6520 
6521   if (checkOpenCLConditionVector(S, Cond.get(), QuestionLoc))
6522     return QualType();
6523 
6524   // If either operand is a vector then find the vector type of the
6525   // result as specified in OpenCL v1.1 s6.3.i.
6526   if (LHS.get()->getType()->isVectorType() ||
6527       RHS.get()->getType()->isVectorType()) {
6528     QualType VecResTy = S.CheckVectorOperands(LHS, RHS, QuestionLoc,
6529                                               /*isCompAssign*/false,
6530                                               /*AllowBothBool*/true,
6531                                               /*AllowBoolConversions*/false);
6532     if (VecResTy.isNull()) return QualType();
6533     // The result type must match the condition type as specified in
6534     // OpenCL v1.1 s6.11.6.
6535     if (checkVectorResult(S, CondTy, VecResTy, QuestionLoc))
6536       return QualType();
6537     return VecResTy;
6538   }
6539 
6540   // Both operands are scalar.
6541   return OpenCLConvertScalarsToVectors(S, LHS, RHS, CondTy, QuestionLoc);
6542 }
6543 
6544 /// \brief Return true if the Expr is block type
6545 static bool checkBlockType(Sema &S, const Expr *E) {
6546   if (const CallExpr *CE = dyn_cast<CallExpr>(E)) {
6547     QualType Ty = CE->getCallee()->getType();
6548     if (Ty->isBlockPointerType()) {
6549       S.Diag(E->getExprLoc(), diag::err_opencl_ternary_with_block);
6550       return true;
6551     }
6552   }
6553   return false;
6554 }
6555 
6556 /// Note that LHS is not null here, even if this is the gnu "x ?: y" extension.
6557 /// In that case, LHS = cond.
6558 /// C99 6.5.15
6559 QualType Sema::CheckConditionalOperands(ExprResult &Cond, ExprResult &LHS,
6560                                         ExprResult &RHS, ExprValueKind &VK,
6561                                         ExprObjectKind &OK,
6562                                         SourceLocation QuestionLoc) {
6563 
6564   ExprResult LHSResult = CheckPlaceholderExpr(LHS.get());
6565   if (!LHSResult.isUsable()) return QualType();
6566   LHS = LHSResult;
6567 
6568   ExprResult RHSResult = CheckPlaceholderExpr(RHS.get());
6569   if (!RHSResult.isUsable()) return QualType();
6570   RHS = RHSResult;
6571 
6572   // C++ is sufficiently different to merit its own checker.
6573   if (getLangOpts().CPlusPlus)
6574     return CXXCheckConditionalOperands(Cond, LHS, RHS, VK, OK, QuestionLoc);
6575 
6576   VK = VK_RValue;
6577   OK = OK_Ordinary;
6578 
6579   // The OpenCL operator with a vector condition is sufficiently
6580   // different to merit its own checker.
6581   if (getLangOpts().OpenCL && Cond.get()->getType()->isVectorType())
6582     return OpenCLCheckVectorConditional(*this, Cond, LHS, RHS, QuestionLoc);
6583 
6584   // First, check the condition.
6585   Cond = UsualUnaryConversions(Cond.get());
6586   if (Cond.isInvalid())
6587     return QualType();
6588   if (checkCondition(*this, Cond.get(), QuestionLoc))
6589     return QualType();
6590 
6591   // Now check the two expressions.
6592   if (LHS.get()->getType()->isVectorType() ||
6593       RHS.get()->getType()->isVectorType())
6594     return CheckVectorOperands(LHS, RHS, QuestionLoc, /*isCompAssign*/false,
6595                                /*AllowBothBool*/true,
6596                                /*AllowBoolConversions*/false);
6597 
6598   QualType ResTy = UsualArithmeticConversions(LHS, RHS);
6599   if (LHS.isInvalid() || RHS.isInvalid())
6600     return QualType();
6601 
6602   QualType LHSTy = LHS.get()->getType();
6603   QualType RHSTy = RHS.get()->getType();
6604 
6605   // OpenCL v2.0 s6.12.5 - Blocks cannot be used as expressions of the ternary
6606   // selection operator (?:).
6607   if (getLangOpts().OpenCL &&
6608       (checkBlockType(*this, LHS.get()) | checkBlockType(*this, RHS.get()))) {
6609     return QualType();
6610   }
6611 
6612   // If both operands have arithmetic type, do the usual arithmetic conversions
6613   // to find a common type: C99 6.5.15p3,5.
6614   if (LHSTy->isArithmeticType() && RHSTy->isArithmeticType()) {
6615     LHS = ImpCastExprToType(LHS.get(), ResTy, PrepareScalarCast(LHS, ResTy));
6616     RHS = ImpCastExprToType(RHS.get(), ResTy, PrepareScalarCast(RHS, ResTy));
6617 
6618     return ResTy;
6619   }
6620 
6621   // If both operands are the same structure or union type, the result is that
6622   // type.
6623   if (const RecordType *LHSRT = LHSTy->getAs<RecordType>()) {    // C99 6.5.15p3
6624     if (const RecordType *RHSRT = RHSTy->getAs<RecordType>())
6625       if (LHSRT->getDecl() == RHSRT->getDecl())
6626         // "If both the operands have structure or union type, the result has
6627         // that type."  This implies that CV qualifiers are dropped.
6628         return LHSTy.getUnqualifiedType();
6629     // FIXME: Type of conditional expression must be complete in C mode.
6630   }
6631 
6632   // C99 6.5.15p5: "If both operands have void type, the result has void type."
6633   // The following || allows only one side to be void (a GCC-ism).
6634   if (LHSTy->isVoidType() || RHSTy->isVoidType()) {
6635     return checkConditionalVoidType(*this, LHS, RHS);
6636   }
6637 
6638   // C99 6.5.15p6 - "if one operand is a null pointer constant, the result has
6639   // the type of the other operand."
6640   if (!checkConditionalNullPointer(*this, RHS, LHSTy)) return LHSTy;
6641   if (!checkConditionalNullPointer(*this, LHS, RHSTy)) return RHSTy;
6642 
6643   // All objective-c pointer type analysis is done here.
6644   QualType compositeType = FindCompositeObjCPointerType(LHS, RHS,
6645                                                         QuestionLoc);
6646   if (LHS.isInvalid() || RHS.isInvalid())
6647     return QualType();
6648   if (!compositeType.isNull())
6649     return compositeType;
6650 
6651 
6652   // Handle block pointer types.
6653   if (LHSTy->isBlockPointerType() || RHSTy->isBlockPointerType())
6654     return checkConditionalBlockPointerCompatibility(*this, LHS, RHS,
6655                                                      QuestionLoc);
6656 
6657   // Check constraints for C object pointers types (C99 6.5.15p3,6).
6658   if (LHSTy->isPointerType() && RHSTy->isPointerType())
6659     return checkConditionalObjectPointersCompatibility(*this, LHS, RHS,
6660                                                        QuestionLoc);
6661 
6662   // GCC compatibility: soften pointer/integer mismatch.  Note that
6663   // null pointers have been filtered out by this point.
6664   if (checkPointerIntegerMismatch(*this, LHS, RHS.get(), QuestionLoc,
6665       /*isIntFirstExpr=*/true))
6666     return RHSTy;
6667   if (checkPointerIntegerMismatch(*this, RHS, LHS.get(), QuestionLoc,
6668       /*isIntFirstExpr=*/false))
6669     return LHSTy;
6670 
6671   // Emit a better diagnostic if one of the expressions is a null pointer
6672   // constant and the other is not a pointer type. In this case, the user most
6673   // likely forgot to take the address of the other expression.
6674   if (DiagnoseConditionalForNull(LHS.get(), RHS.get(), QuestionLoc))
6675     return QualType();
6676 
6677   // Otherwise, the operands are not compatible.
6678   Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands)
6679     << LHSTy << RHSTy << LHS.get()->getSourceRange()
6680     << RHS.get()->getSourceRange();
6681   return QualType();
6682 }
6683 
6684 /// FindCompositeObjCPointerType - Helper method to find composite type of
6685 /// two objective-c pointer types of the two input expressions.
6686 QualType Sema::FindCompositeObjCPointerType(ExprResult &LHS, ExprResult &RHS,
6687                                             SourceLocation QuestionLoc) {
6688   QualType LHSTy = LHS.get()->getType();
6689   QualType RHSTy = RHS.get()->getType();
6690 
6691   // Handle things like Class and struct objc_class*.  Here we case the result
6692   // to the pseudo-builtin, because that will be implicitly cast back to the
6693   // redefinition type if an attempt is made to access its fields.
6694   if (LHSTy->isObjCClassType() &&
6695       (Context.hasSameType(RHSTy, Context.getObjCClassRedefinitionType()))) {
6696     RHS = ImpCastExprToType(RHS.get(), LHSTy, CK_CPointerToObjCPointerCast);
6697     return LHSTy;
6698   }
6699   if (RHSTy->isObjCClassType() &&
6700       (Context.hasSameType(LHSTy, Context.getObjCClassRedefinitionType()))) {
6701     LHS = ImpCastExprToType(LHS.get(), RHSTy, CK_CPointerToObjCPointerCast);
6702     return RHSTy;
6703   }
6704   // And the same for struct objc_object* / id
6705   if (LHSTy->isObjCIdType() &&
6706       (Context.hasSameType(RHSTy, Context.getObjCIdRedefinitionType()))) {
6707     RHS = ImpCastExprToType(RHS.get(), LHSTy, CK_CPointerToObjCPointerCast);
6708     return LHSTy;
6709   }
6710   if (RHSTy->isObjCIdType() &&
6711       (Context.hasSameType(LHSTy, Context.getObjCIdRedefinitionType()))) {
6712     LHS = ImpCastExprToType(LHS.get(), RHSTy, CK_CPointerToObjCPointerCast);
6713     return RHSTy;
6714   }
6715   // And the same for struct objc_selector* / SEL
6716   if (Context.isObjCSelType(LHSTy) &&
6717       (Context.hasSameType(RHSTy, Context.getObjCSelRedefinitionType()))) {
6718     RHS = ImpCastExprToType(RHS.get(), LHSTy, CK_BitCast);
6719     return LHSTy;
6720   }
6721   if (Context.isObjCSelType(RHSTy) &&
6722       (Context.hasSameType(LHSTy, Context.getObjCSelRedefinitionType()))) {
6723     LHS = ImpCastExprToType(LHS.get(), RHSTy, CK_BitCast);
6724     return RHSTy;
6725   }
6726   // Check constraints for Objective-C object pointers types.
6727   if (LHSTy->isObjCObjectPointerType() && RHSTy->isObjCObjectPointerType()) {
6728 
6729     if (Context.getCanonicalType(LHSTy) == Context.getCanonicalType(RHSTy)) {
6730       // Two identical object pointer types are always compatible.
6731       return LHSTy;
6732     }
6733     const ObjCObjectPointerType *LHSOPT = LHSTy->castAs<ObjCObjectPointerType>();
6734     const ObjCObjectPointerType *RHSOPT = RHSTy->castAs<ObjCObjectPointerType>();
6735     QualType compositeType = LHSTy;
6736 
6737     // If both operands are interfaces and either operand can be
6738     // assigned to the other, use that type as the composite
6739     // type. This allows
6740     //   xxx ? (A*) a : (B*) b
6741     // where B is a subclass of A.
6742     //
6743     // Additionally, as for assignment, if either type is 'id'
6744     // allow silent coercion. Finally, if the types are
6745     // incompatible then make sure to use 'id' as the composite
6746     // type so the result is acceptable for sending messages to.
6747 
6748     // FIXME: Consider unifying with 'areComparableObjCPointerTypes'.
6749     // It could return the composite type.
6750     if (!(compositeType =
6751           Context.areCommonBaseCompatible(LHSOPT, RHSOPT)).isNull()) {
6752       // Nothing more to do.
6753     } else if (Context.canAssignObjCInterfaces(LHSOPT, RHSOPT)) {
6754       compositeType = RHSOPT->isObjCBuiltinType() ? RHSTy : LHSTy;
6755     } else if (Context.canAssignObjCInterfaces(RHSOPT, LHSOPT)) {
6756       compositeType = LHSOPT->isObjCBuiltinType() ? LHSTy : RHSTy;
6757     } else if ((LHSTy->isObjCQualifiedIdType() ||
6758                 RHSTy->isObjCQualifiedIdType()) &&
6759                Context.ObjCQualifiedIdTypesAreCompatible(LHSTy, RHSTy, true)) {
6760       // Need to handle "id<xx>" explicitly.
6761       // GCC allows qualified id and any Objective-C type to devolve to
6762       // id. Currently localizing to here until clear this should be
6763       // part of ObjCQualifiedIdTypesAreCompatible.
6764       compositeType = Context.getObjCIdType();
6765     } else if (LHSTy->isObjCIdType() || RHSTy->isObjCIdType()) {
6766       compositeType = Context.getObjCIdType();
6767     } else {
6768       Diag(QuestionLoc, diag::ext_typecheck_cond_incompatible_operands)
6769       << LHSTy << RHSTy
6770       << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
6771       QualType incompatTy = Context.getObjCIdType();
6772       LHS = ImpCastExprToType(LHS.get(), incompatTy, CK_BitCast);
6773       RHS = ImpCastExprToType(RHS.get(), incompatTy, CK_BitCast);
6774       return incompatTy;
6775     }
6776     // The object pointer types are compatible.
6777     LHS = ImpCastExprToType(LHS.get(), compositeType, CK_BitCast);
6778     RHS = ImpCastExprToType(RHS.get(), compositeType, CK_BitCast);
6779     return compositeType;
6780   }
6781   // Check Objective-C object pointer types and 'void *'
6782   if (LHSTy->isVoidPointerType() && RHSTy->isObjCObjectPointerType()) {
6783     if (getLangOpts().ObjCAutoRefCount) {
6784       // ARC forbids the implicit conversion of object pointers to 'void *',
6785       // so these types are not compatible.
6786       Diag(QuestionLoc, diag::err_cond_voidptr_arc) << LHSTy << RHSTy
6787           << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
6788       LHS = RHS = true;
6789       return QualType();
6790     }
6791     QualType lhptee = LHSTy->getAs<PointerType>()->getPointeeType();
6792     QualType rhptee = RHSTy->getAs<ObjCObjectPointerType>()->getPointeeType();
6793     QualType destPointee
6794     = Context.getQualifiedType(lhptee, rhptee.getQualifiers());
6795     QualType destType = Context.getPointerType(destPointee);
6796     // Add qualifiers if necessary.
6797     LHS = ImpCastExprToType(LHS.get(), destType, CK_NoOp);
6798     // Promote to void*.
6799     RHS = ImpCastExprToType(RHS.get(), destType, CK_BitCast);
6800     return destType;
6801   }
6802   if (LHSTy->isObjCObjectPointerType() && RHSTy->isVoidPointerType()) {
6803     if (getLangOpts().ObjCAutoRefCount) {
6804       // ARC forbids the implicit conversion of object pointers to 'void *',
6805       // so these types are not compatible.
6806       Diag(QuestionLoc, diag::err_cond_voidptr_arc) << LHSTy << RHSTy
6807           << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
6808       LHS = RHS = true;
6809       return QualType();
6810     }
6811     QualType lhptee = LHSTy->getAs<ObjCObjectPointerType>()->getPointeeType();
6812     QualType rhptee = RHSTy->getAs<PointerType>()->getPointeeType();
6813     QualType destPointee
6814     = Context.getQualifiedType(rhptee, lhptee.getQualifiers());
6815     QualType destType = Context.getPointerType(destPointee);
6816     // Add qualifiers if necessary.
6817     RHS = ImpCastExprToType(RHS.get(), destType, CK_NoOp);
6818     // Promote to void*.
6819     LHS = ImpCastExprToType(LHS.get(), destType, CK_BitCast);
6820     return destType;
6821   }
6822   return QualType();
6823 }
6824 
6825 /// SuggestParentheses - Emit a note with a fixit hint that wraps
6826 /// ParenRange in parentheses.
6827 static void SuggestParentheses(Sema &Self, SourceLocation Loc,
6828                                const PartialDiagnostic &Note,
6829                                SourceRange ParenRange) {
6830   SourceLocation EndLoc = Self.getLocForEndOfToken(ParenRange.getEnd());
6831   if (ParenRange.getBegin().isFileID() && ParenRange.getEnd().isFileID() &&
6832       EndLoc.isValid()) {
6833     Self.Diag(Loc, Note)
6834       << FixItHint::CreateInsertion(ParenRange.getBegin(), "(")
6835       << FixItHint::CreateInsertion(EndLoc, ")");
6836   } else {
6837     // We can't display the parentheses, so just show the bare note.
6838     Self.Diag(Loc, Note) << ParenRange;
6839   }
6840 }
6841 
6842 static bool IsArithmeticOp(BinaryOperatorKind Opc) {
6843   return BinaryOperator::isAdditiveOp(Opc) ||
6844          BinaryOperator::isMultiplicativeOp(Opc) ||
6845          BinaryOperator::isShiftOp(Opc);
6846 }
6847 
6848 /// IsArithmeticBinaryExpr - Returns true if E is an arithmetic binary
6849 /// expression, either using a built-in or overloaded operator,
6850 /// and sets *OpCode to the opcode and *RHSExprs to the right-hand side
6851 /// expression.
6852 static bool IsArithmeticBinaryExpr(Expr *E, BinaryOperatorKind *Opcode,
6853                                    Expr **RHSExprs) {
6854   // Don't strip parenthesis: we should not warn if E is in parenthesis.
6855   E = E->IgnoreImpCasts();
6856   E = E->IgnoreConversionOperator();
6857   E = E->IgnoreImpCasts();
6858 
6859   // Built-in binary operator.
6860   if (BinaryOperator *OP = dyn_cast<BinaryOperator>(E)) {
6861     if (IsArithmeticOp(OP->getOpcode())) {
6862       *Opcode = OP->getOpcode();
6863       *RHSExprs = OP->getRHS();
6864       return true;
6865     }
6866   }
6867 
6868   // Overloaded operator.
6869   if (CXXOperatorCallExpr *Call = dyn_cast<CXXOperatorCallExpr>(E)) {
6870     if (Call->getNumArgs() != 2)
6871       return false;
6872 
6873     // Make sure this is really a binary operator that is safe to pass into
6874     // BinaryOperator::getOverloadedOpcode(), e.g. it's not a subscript op.
6875     OverloadedOperatorKind OO = Call->getOperator();
6876     if (OO < OO_Plus || OO > OO_Arrow ||
6877         OO == OO_PlusPlus || OO == OO_MinusMinus)
6878       return false;
6879 
6880     BinaryOperatorKind OpKind = BinaryOperator::getOverloadedOpcode(OO);
6881     if (IsArithmeticOp(OpKind)) {
6882       *Opcode = OpKind;
6883       *RHSExprs = Call->getArg(1);
6884       return true;
6885     }
6886   }
6887 
6888   return false;
6889 }
6890 
6891 /// ExprLooksBoolean - Returns true if E looks boolean, i.e. it has boolean type
6892 /// or is a logical expression such as (x==y) which has int type, but is
6893 /// commonly interpreted as boolean.
6894 static bool ExprLooksBoolean(Expr *E) {
6895   E = E->IgnoreParenImpCasts();
6896 
6897   if (E->getType()->isBooleanType())
6898     return true;
6899   if (BinaryOperator *OP = dyn_cast<BinaryOperator>(E))
6900     return OP->isComparisonOp() || OP->isLogicalOp();
6901   if (UnaryOperator *OP = dyn_cast<UnaryOperator>(E))
6902     return OP->getOpcode() == UO_LNot;
6903   if (E->getType()->isPointerType())
6904     return true;
6905 
6906   return false;
6907 }
6908 
6909 /// DiagnoseConditionalPrecedence - Emit a warning when a conditional operator
6910 /// and binary operator are mixed in a way that suggests the programmer assumed
6911 /// the conditional operator has higher precedence, for example:
6912 /// "int x = a + someBinaryCondition ? 1 : 2".
6913 static void DiagnoseConditionalPrecedence(Sema &Self,
6914                                           SourceLocation OpLoc,
6915                                           Expr *Condition,
6916                                           Expr *LHSExpr,
6917                                           Expr *RHSExpr) {
6918   BinaryOperatorKind CondOpcode;
6919   Expr *CondRHS;
6920 
6921   if (!IsArithmeticBinaryExpr(Condition, &CondOpcode, &CondRHS))
6922     return;
6923   if (!ExprLooksBoolean(CondRHS))
6924     return;
6925 
6926   // The condition is an arithmetic binary expression, with a right-
6927   // hand side that looks boolean, so warn.
6928 
6929   Self.Diag(OpLoc, diag::warn_precedence_conditional)
6930       << Condition->getSourceRange()
6931       << BinaryOperator::getOpcodeStr(CondOpcode);
6932 
6933   SuggestParentheses(Self, OpLoc,
6934     Self.PDiag(diag::note_precedence_silence)
6935       << BinaryOperator::getOpcodeStr(CondOpcode),
6936     SourceRange(Condition->getLocStart(), Condition->getLocEnd()));
6937 
6938   SuggestParentheses(Self, OpLoc,
6939     Self.PDiag(diag::note_precedence_conditional_first),
6940     SourceRange(CondRHS->getLocStart(), RHSExpr->getLocEnd()));
6941 }
6942 
6943 /// ActOnConditionalOp - Parse a ?: operation.  Note that 'LHS' may be null
6944 /// in the case of a the GNU conditional expr extension.
6945 ExprResult Sema::ActOnConditionalOp(SourceLocation QuestionLoc,
6946                                     SourceLocation ColonLoc,
6947                                     Expr *CondExpr, Expr *LHSExpr,
6948                                     Expr *RHSExpr) {
6949   if (!getLangOpts().CPlusPlus) {
6950     // C cannot handle TypoExpr nodes in the condition because it
6951     // doesn't handle dependent types properly, so make sure any TypoExprs have
6952     // been dealt with before checking the operands.
6953     ExprResult CondResult = CorrectDelayedTyposInExpr(CondExpr);
6954     ExprResult LHSResult = CorrectDelayedTyposInExpr(LHSExpr);
6955     ExprResult RHSResult = CorrectDelayedTyposInExpr(RHSExpr);
6956 
6957     if (!CondResult.isUsable())
6958       return ExprError();
6959 
6960     if (LHSExpr) {
6961       if (!LHSResult.isUsable())
6962         return ExprError();
6963     }
6964 
6965     if (!RHSResult.isUsable())
6966       return ExprError();
6967 
6968     CondExpr = CondResult.get();
6969     LHSExpr = LHSResult.get();
6970     RHSExpr = RHSResult.get();
6971   }
6972 
6973   // If this is the gnu "x ?: y" extension, analyze the types as though the LHS
6974   // was the condition.
6975   OpaqueValueExpr *opaqueValue = nullptr;
6976   Expr *commonExpr = nullptr;
6977   if (!LHSExpr) {
6978     commonExpr = CondExpr;
6979     // Lower out placeholder types first.  This is important so that we don't
6980     // try to capture a placeholder. This happens in few cases in C++; such
6981     // as Objective-C++'s dictionary subscripting syntax.
6982     if (commonExpr->hasPlaceholderType()) {
6983       ExprResult result = CheckPlaceholderExpr(commonExpr);
6984       if (!result.isUsable()) return ExprError();
6985       commonExpr = result.get();
6986     }
6987     // We usually want to apply unary conversions *before* saving, except
6988     // in the special case of a C++ l-value conditional.
6989     if (!(getLangOpts().CPlusPlus
6990           && !commonExpr->isTypeDependent()
6991           && commonExpr->getValueKind() == RHSExpr->getValueKind()
6992           && commonExpr->isGLValue()
6993           && commonExpr->isOrdinaryOrBitFieldObject()
6994           && RHSExpr->isOrdinaryOrBitFieldObject()
6995           && Context.hasSameType(commonExpr->getType(), RHSExpr->getType()))) {
6996       ExprResult commonRes = UsualUnaryConversions(commonExpr);
6997       if (commonRes.isInvalid())
6998         return ExprError();
6999       commonExpr = commonRes.get();
7000     }
7001 
7002     opaqueValue = new (Context) OpaqueValueExpr(commonExpr->getExprLoc(),
7003                                                 commonExpr->getType(),
7004                                                 commonExpr->getValueKind(),
7005                                                 commonExpr->getObjectKind(),
7006                                                 commonExpr);
7007     LHSExpr = CondExpr = opaqueValue;
7008   }
7009 
7010   ExprValueKind VK = VK_RValue;
7011   ExprObjectKind OK = OK_Ordinary;
7012   ExprResult Cond = CondExpr, LHS = LHSExpr, RHS = RHSExpr;
7013   QualType result = CheckConditionalOperands(Cond, LHS, RHS,
7014                                              VK, OK, QuestionLoc);
7015   if (result.isNull() || Cond.isInvalid() || LHS.isInvalid() ||
7016       RHS.isInvalid())
7017     return ExprError();
7018 
7019   DiagnoseConditionalPrecedence(*this, QuestionLoc, Cond.get(), LHS.get(),
7020                                 RHS.get());
7021 
7022   CheckBoolLikeConversion(Cond.get(), QuestionLoc);
7023 
7024   if (!commonExpr)
7025     return new (Context)
7026         ConditionalOperator(Cond.get(), QuestionLoc, LHS.get(), ColonLoc,
7027                             RHS.get(), result, VK, OK);
7028 
7029   return new (Context) BinaryConditionalOperator(
7030       commonExpr, opaqueValue, Cond.get(), LHS.get(), RHS.get(), QuestionLoc,
7031       ColonLoc, result, VK, OK);
7032 }
7033 
7034 // checkPointerTypesForAssignment - This is a very tricky routine (despite
7035 // being closely modeled after the C99 spec:-). The odd characteristic of this
7036 // routine is it effectively iqnores the qualifiers on the top level pointee.
7037 // This circumvents the usual type rules specified in 6.2.7p1 & 6.7.5.[1-3].
7038 // FIXME: add a couple examples in this comment.
7039 static Sema::AssignConvertType
7040 checkPointerTypesForAssignment(Sema &S, QualType LHSType, QualType RHSType) {
7041   assert(LHSType.isCanonical() && "LHS not canonicalized!");
7042   assert(RHSType.isCanonical() && "RHS not canonicalized!");
7043 
7044   // get the "pointed to" type (ignoring qualifiers at the top level)
7045   const Type *lhptee, *rhptee;
7046   Qualifiers lhq, rhq;
7047   std::tie(lhptee, lhq) =
7048       cast<PointerType>(LHSType)->getPointeeType().split().asPair();
7049   std::tie(rhptee, rhq) =
7050       cast<PointerType>(RHSType)->getPointeeType().split().asPair();
7051 
7052   Sema::AssignConvertType ConvTy = Sema::Compatible;
7053 
7054   // C99 6.5.16.1p1: This following citation is common to constraints
7055   // 3 & 4 (below). ...and the type *pointed to* by the left has all the
7056   // qualifiers of the type *pointed to* by the right;
7057 
7058   // As a special case, 'non-__weak A *' -> 'non-__weak const *' is okay.
7059   if (lhq.getObjCLifetime() != rhq.getObjCLifetime() &&
7060       lhq.compatiblyIncludesObjCLifetime(rhq)) {
7061     // Ignore lifetime for further calculation.
7062     lhq.removeObjCLifetime();
7063     rhq.removeObjCLifetime();
7064   }
7065 
7066   if (!lhq.compatiblyIncludes(rhq)) {
7067     // Treat address-space mismatches as fatal.  TODO: address subspaces
7068     if (!lhq.isAddressSpaceSupersetOf(rhq))
7069       ConvTy = Sema::IncompatiblePointerDiscardsQualifiers;
7070 
7071     // It's okay to add or remove GC or lifetime qualifiers when converting to
7072     // and from void*.
7073     else if (lhq.withoutObjCGCAttr().withoutObjCLifetime()
7074                         .compatiblyIncludes(
7075                                 rhq.withoutObjCGCAttr().withoutObjCLifetime())
7076              && (lhptee->isVoidType() || rhptee->isVoidType()))
7077       ; // keep old
7078 
7079     // Treat lifetime mismatches as fatal.
7080     else if (lhq.getObjCLifetime() != rhq.getObjCLifetime())
7081       ConvTy = Sema::IncompatiblePointerDiscardsQualifiers;
7082 
7083     // For GCC compatibility, other qualifier mismatches are treated
7084     // as still compatible in C.
7085     else ConvTy = Sema::CompatiblePointerDiscardsQualifiers;
7086   }
7087 
7088   // C99 6.5.16.1p1 (constraint 4): If one operand is a pointer to an object or
7089   // incomplete type and the other is a pointer to a qualified or unqualified
7090   // version of void...
7091   if (lhptee->isVoidType()) {
7092     if (rhptee->isIncompleteOrObjectType())
7093       return ConvTy;
7094 
7095     // As an extension, we allow cast to/from void* to function pointer.
7096     assert(rhptee->isFunctionType());
7097     return Sema::FunctionVoidPointer;
7098   }
7099 
7100   if (rhptee->isVoidType()) {
7101     if (lhptee->isIncompleteOrObjectType())
7102       return ConvTy;
7103 
7104     // As an extension, we allow cast to/from void* to function pointer.
7105     assert(lhptee->isFunctionType());
7106     return Sema::FunctionVoidPointer;
7107   }
7108 
7109   // C99 6.5.16.1p1 (constraint 3): both operands are pointers to qualified or
7110   // unqualified versions of compatible types, ...
7111   QualType ltrans = QualType(lhptee, 0), rtrans = QualType(rhptee, 0);
7112   if (!S.Context.typesAreCompatible(ltrans, rtrans)) {
7113     // Check if the pointee types are compatible ignoring the sign.
7114     // We explicitly check for char so that we catch "char" vs
7115     // "unsigned char" on systems where "char" is unsigned.
7116     if (lhptee->isCharType())
7117       ltrans = S.Context.UnsignedCharTy;
7118     else if (lhptee->hasSignedIntegerRepresentation())
7119       ltrans = S.Context.getCorrespondingUnsignedType(ltrans);
7120 
7121     if (rhptee->isCharType())
7122       rtrans = S.Context.UnsignedCharTy;
7123     else if (rhptee->hasSignedIntegerRepresentation())
7124       rtrans = S.Context.getCorrespondingUnsignedType(rtrans);
7125 
7126     if (ltrans == rtrans) {
7127       // Types are compatible ignoring the sign. Qualifier incompatibility
7128       // takes priority over sign incompatibility because the sign
7129       // warning can be disabled.
7130       if (ConvTy != Sema::Compatible)
7131         return ConvTy;
7132 
7133       return Sema::IncompatiblePointerSign;
7134     }
7135 
7136     // If we are a multi-level pointer, it's possible that our issue is simply
7137     // one of qualification - e.g. char ** -> const char ** is not allowed. If
7138     // the eventual target type is the same and the pointers have the same
7139     // level of indirection, this must be the issue.
7140     if (isa<PointerType>(lhptee) && isa<PointerType>(rhptee)) {
7141       do {
7142         lhptee = cast<PointerType>(lhptee)->getPointeeType().getTypePtr();
7143         rhptee = cast<PointerType>(rhptee)->getPointeeType().getTypePtr();
7144       } while (isa<PointerType>(lhptee) && isa<PointerType>(rhptee));
7145 
7146       if (lhptee == rhptee)
7147         return Sema::IncompatibleNestedPointerQualifiers;
7148     }
7149 
7150     // General pointer incompatibility takes priority over qualifiers.
7151     return Sema::IncompatiblePointer;
7152   }
7153   if (!S.getLangOpts().CPlusPlus &&
7154       S.IsNoReturnConversion(ltrans, rtrans, ltrans))
7155     return Sema::IncompatiblePointer;
7156   return ConvTy;
7157 }
7158 
7159 /// checkBlockPointerTypesForAssignment - This routine determines whether two
7160 /// block pointer types are compatible or whether a block and normal pointer
7161 /// are compatible. It is more restrict than comparing two function pointer
7162 // types.
7163 static Sema::AssignConvertType
7164 checkBlockPointerTypesForAssignment(Sema &S, QualType LHSType,
7165                                     QualType RHSType) {
7166   assert(LHSType.isCanonical() && "LHS not canonicalized!");
7167   assert(RHSType.isCanonical() && "RHS not canonicalized!");
7168 
7169   QualType lhptee, rhptee;
7170 
7171   // get the "pointed to" type (ignoring qualifiers at the top level)
7172   lhptee = cast<BlockPointerType>(LHSType)->getPointeeType();
7173   rhptee = cast<BlockPointerType>(RHSType)->getPointeeType();
7174 
7175   // In C++, the types have to match exactly.
7176   if (S.getLangOpts().CPlusPlus)
7177     return Sema::IncompatibleBlockPointer;
7178 
7179   Sema::AssignConvertType ConvTy = Sema::Compatible;
7180 
7181   // For blocks we enforce that qualifiers are identical.
7182   if (lhptee.getLocalQualifiers() != rhptee.getLocalQualifiers())
7183     ConvTy = Sema::CompatiblePointerDiscardsQualifiers;
7184 
7185   if (!S.Context.typesAreBlockPointerCompatible(LHSType, RHSType))
7186     return Sema::IncompatibleBlockPointer;
7187 
7188   return ConvTy;
7189 }
7190 
7191 /// checkObjCPointerTypesForAssignment - Compares two objective-c pointer types
7192 /// for assignment compatibility.
7193 static Sema::AssignConvertType
7194 checkObjCPointerTypesForAssignment(Sema &S, QualType LHSType,
7195                                    QualType RHSType) {
7196   assert(LHSType.isCanonical() && "LHS was not canonicalized!");
7197   assert(RHSType.isCanonical() && "RHS was not canonicalized!");
7198 
7199   if (LHSType->isObjCBuiltinType()) {
7200     // Class is not compatible with ObjC object pointers.
7201     if (LHSType->isObjCClassType() && !RHSType->isObjCBuiltinType() &&
7202         !RHSType->isObjCQualifiedClassType())
7203       return Sema::IncompatiblePointer;
7204     return Sema::Compatible;
7205   }
7206   if (RHSType->isObjCBuiltinType()) {
7207     if (RHSType->isObjCClassType() && !LHSType->isObjCBuiltinType() &&
7208         !LHSType->isObjCQualifiedClassType())
7209       return Sema::IncompatiblePointer;
7210     return Sema::Compatible;
7211   }
7212   QualType lhptee = LHSType->getAs<ObjCObjectPointerType>()->getPointeeType();
7213   QualType rhptee = RHSType->getAs<ObjCObjectPointerType>()->getPointeeType();
7214 
7215   if (!lhptee.isAtLeastAsQualifiedAs(rhptee) &&
7216       // make an exception for id<P>
7217       !LHSType->isObjCQualifiedIdType())
7218     return Sema::CompatiblePointerDiscardsQualifiers;
7219 
7220   if (S.Context.typesAreCompatible(LHSType, RHSType))
7221     return Sema::Compatible;
7222   if (LHSType->isObjCQualifiedIdType() || RHSType->isObjCQualifiedIdType())
7223     return Sema::IncompatibleObjCQualifiedId;
7224   return Sema::IncompatiblePointer;
7225 }
7226 
7227 Sema::AssignConvertType
7228 Sema::CheckAssignmentConstraints(SourceLocation Loc,
7229                                  QualType LHSType, QualType RHSType) {
7230   // Fake up an opaque expression.  We don't actually care about what
7231   // cast operations are required, so if CheckAssignmentConstraints
7232   // adds casts to this they'll be wasted, but fortunately that doesn't
7233   // usually happen on valid code.
7234   OpaqueValueExpr RHSExpr(Loc, RHSType, VK_RValue);
7235   ExprResult RHSPtr = &RHSExpr;
7236   CastKind K = CK_Invalid;
7237 
7238   return CheckAssignmentConstraints(LHSType, RHSPtr, K, /*ConvertRHS=*/false);
7239 }
7240 
7241 /// CheckAssignmentConstraints (C99 6.5.16) - This routine currently
7242 /// has code to accommodate several GCC extensions when type checking
7243 /// pointers. Here are some objectionable examples that GCC considers warnings:
7244 ///
7245 ///  int a, *pint;
7246 ///  short *pshort;
7247 ///  struct foo *pfoo;
7248 ///
7249 ///  pint = pshort; // warning: assignment from incompatible pointer type
7250 ///  a = pint; // warning: assignment makes integer from pointer without a cast
7251 ///  pint = a; // warning: assignment makes pointer from integer without a cast
7252 ///  pint = pfoo; // warning: assignment from incompatible pointer type
7253 ///
7254 /// As a result, the code for dealing with pointers is more complex than the
7255 /// C99 spec dictates.
7256 ///
7257 /// Sets 'Kind' for any result kind except Incompatible.
7258 Sema::AssignConvertType
7259 Sema::CheckAssignmentConstraints(QualType LHSType, ExprResult &RHS,
7260                                  CastKind &Kind, bool ConvertRHS) {
7261   QualType RHSType = RHS.get()->getType();
7262   QualType OrigLHSType = LHSType;
7263 
7264   // Get canonical types.  We're not formatting these types, just comparing
7265   // them.
7266   LHSType = Context.getCanonicalType(LHSType).getUnqualifiedType();
7267   RHSType = Context.getCanonicalType(RHSType).getUnqualifiedType();
7268 
7269   // Common case: no conversion required.
7270   if (LHSType == RHSType) {
7271     Kind = CK_NoOp;
7272     return Compatible;
7273   }
7274 
7275   // If we have an atomic type, try a non-atomic assignment, then just add an
7276   // atomic qualification step.
7277   if (const AtomicType *AtomicTy = dyn_cast<AtomicType>(LHSType)) {
7278     Sema::AssignConvertType result =
7279       CheckAssignmentConstraints(AtomicTy->getValueType(), RHS, Kind);
7280     if (result != Compatible)
7281       return result;
7282     if (Kind != CK_NoOp && ConvertRHS)
7283       RHS = ImpCastExprToType(RHS.get(), AtomicTy->getValueType(), Kind);
7284     Kind = CK_NonAtomicToAtomic;
7285     return Compatible;
7286   }
7287 
7288   // If the left-hand side is a reference type, then we are in a
7289   // (rare!) case where we've allowed the use of references in C,
7290   // e.g., as a parameter type in a built-in function. In this case,
7291   // just make sure that the type referenced is compatible with the
7292   // right-hand side type. The caller is responsible for adjusting
7293   // LHSType so that the resulting expression does not have reference
7294   // type.
7295   if (const ReferenceType *LHSTypeRef = LHSType->getAs<ReferenceType>()) {
7296     if (Context.typesAreCompatible(LHSTypeRef->getPointeeType(), RHSType)) {
7297       Kind = CK_LValueBitCast;
7298       return Compatible;
7299     }
7300     return Incompatible;
7301   }
7302 
7303   // Allow scalar to ExtVector assignments, and assignments of an ExtVector type
7304   // to the same ExtVector type.
7305   if (LHSType->isExtVectorType()) {
7306     if (RHSType->isExtVectorType())
7307       return Incompatible;
7308     if (RHSType->isArithmeticType()) {
7309       // CK_VectorSplat does T -> vector T, so first cast to the element type.
7310       if (ConvertRHS)
7311         RHS = prepareVectorSplat(LHSType, RHS.get());
7312       Kind = CK_VectorSplat;
7313       return Compatible;
7314     }
7315   }
7316 
7317   // Conversions to or from vector type.
7318   if (LHSType->isVectorType() || RHSType->isVectorType()) {
7319     if (LHSType->isVectorType() && RHSType->isVectorType()) {
7320       // Allow assignments of an AltiVec vector type to an equivalent GCC
7321       // vector type and vice versa
7322       if (Context.areCompatibleVectorTypes(LHSType, RHSType)) {
7323         Kind = CK_BitCast;
7324         return Compatible;
7325       }
7326 
7327       // If we are allowing lax vector conversions, and LHS and RHS are both
7328       // vectors, the total size only needs to be the same. This is a bitcast;
7329       // no bits are changed but the result type is different.
7330       if (isLaxVectorConversion(RHSType, LHSType)) {
7331         Kind = CK_BitCast;
7332         return IncompatibleVectors;
7333       }
7334     }
7335     return Incompatible;
7336   }
7337 
7338   // Arithmetic conversions.
7339   if (LHSType->isArithmeticType() && RHSType->isArithmeticType() &&
7340       !(getLangOpts().CPlusPlus && LHSType->isEnumeralType())) {
7341     if (ConvertRHS)
7342       Kind = PrepareScalarCast(RHS, LHSType);
7343     return Compatible;
7344   }
7345 
7346   // Conversions to normal pointers.
7347   if (const PointerType *LHSPointer = dyn_cast<PointerType>(LHSType)) {
7348     // U* -> T*
7349     if (isa<PointerType>(RHSType)) {
7350       unsigned AddrSpaceL = LHSPointer->getPointeeType().getAddressSpace();
7351       unsigned AddrSpaceR = RHSType->getPointeeType().getAddressSpace();
7352       Kind = AddrSpaceL != AddrSpaceR ? CK_AddressSpaceConversion : CK_BitCast;
7353       return checkPointerTypesForAssignment(*this, LHSType, RHSType);
7354     }
7355 
7356     // int -> T*
7357     if (RHSType->isIntegerType()) {
7358       Kind = CK_IntegralToPointer; // FIXME: null?
7359       return IntToPointer;
7360     }
7361 
7362     // C pointers are not compatible with ObjC object pointers,
7363     // with two exceptions:
7364     if (isa<ObjCObjectPointerType>(RHSType)) {
7365       //  - conversions to void*
7366       if (LHSPointer->getPointeeType()->isVoidType()) {
7367         Kind = CK_BitCast;
7368         return Compatible;
7369       }
7370 
7371       //  - conversions from 'Class' to the redefinition type
7372       if (RHSType->isObjCClassType() &&
7373           Context.hasSameType(LHSType,
7374                               Context.getObjCClassRedefinitionType())) {
7375         Kind = CK_BitCast;
7376         return Compatible;
7377       }
7378 
7379       Kind = CK_BitCast;
7380       return IncompatiblePointer;
7381     }
7382 
7383     // U^ -> void*
7384     if (RHSType->getAs<BlockPointerType>()) {
7385       if (LHSPointer->getPointeeType()->isVoidType()) {
7386         Kind = CK_BitCast;
7387         return Compatible;
7388       }
7389     }
7390 
7391     return Incompatible;
7392   }
7393 
7394   // Conversions to block pointers.
7395   if (isa<BlockPointerType>(LHSType)) {
7396     // U^ -> T^
7397     if (RHSType->isBlockPointerType()) {
7398       Kind = CK_BitCast;
7399       return checkBlockPointerTypesForAssignment(*this, LHSType, RHSType);
7400     }
7401 
7402     // int or null -> T^
7403     if (RHSType->isIntegerType()) {
7404       Kind = CK_IntegralToPointer; // FIXME: null
7405       return IntToBlockPointer;
7406     }
7407 
7408     // id -> T^
7409     if (getLangOpts().ObjC1 && RHSType->isObjCIdType()) {
7410       Kind = CK_AnyPointerToBlockPointerCast;
7411       return Compatible;
7412     }
7413 
7414     // void* -> T^
7415     if (const PointerType *RHSPT = RHSType->getAs<PointerType>())
7416       if (RHSPT->getPointeeType()->isVoidType()) {
7417         Kind = CK_AnyPointerToBlockPointerCast;
7418         return Compatible;
7419       }
7420 
7421     return Incompatible;
7422   }
7423 
7424   // Conversions to Objective-C pointers.
7425   if (isa<ObjCObjectPointerType>(LHSType)) {
7426     // A* -> B*
7427     if (RHSType->isObjCObjectPointerType()) {
7428       Kind = CK_BitCast;
7429       Sema::AssignConvertType result =
7430         checkObjCPointerTypesForAssignment(*this, LHSType, RHSType);
7431       if (getLangOpts().ObjCAutoRefCount &&
7432           result == Compatible &&
7433           !CheckObjCARCUnavailableWeakConversion(OrigLHSType, RHSType))
7434         result = IncompatibleObjCWeakRef;
7435       return result;
7436     }
7437 
7438     // int or null -> A*
7439     if (RHSType->isIntegerType()) {
7440       Kind = CK_IntegralToPointer; // FIXME: null
7441       return IntToPointer;
7442     }
7443 
7444     // In general, C pointers are not compatible with ObjC object pointers,
7445     // with two exceptions:
7446     if (isa<PointerType>(RHSType)) {
7447       Kind = CK_CPointerToObjCPointerCast;
7448 
7449       //  - conversions from 'void*'
7450       if (RHSType->isVoidPointerType()) {
7451         return Compatible;
7452       }
7453 
7454       //  - conversions to 'Class' from its redefinition type
7455       if (LHSType->isObjCClassType() &&
7456           Context.hasSameType(RHSType,
7457                               Context.getObjCClassRedefinitionType())) {
7458         return Compatible;
7459       }
7460 
7461       return IncompatiblePointer;
7462     }
7463 
7464     // Only under strict condition T^ is compatible with an Objective-C pointer.
7465     if (RHSType->isBlockPointerType() &&
7466         LHSType->isBlockCompatibleObjCPointerType(Context)) {
7467       if (ConvertRHS)
7468         maybeExtendBlockObject(RHS);
7469       Kind = CK_BlockPointerToObjCPointerCast;
7470       return Compatible;
7471     }
7472 
7473     return Incompatible;
7474   }
7475 
7476   // Conversions from pointers that are not covered by the above.
7477   if (isa<PointerType>(RHSType)) {
7478     // T* -> _Bool
7479     if (LHSType == Context.BoolTy) {
7480       Kind = CK_PointerToBoolean;
7481       return Compatible;
7482     }
7483 
7484     // T* -> int
7485     if (LHSType->isIntegerType()) {
7486       Kind = CK_PointerToIntegral;
7487       return PointerToInt;
7488     }
7489 
7490     return Incompatible;
7491   }
7492 
7493   // Conversions from Objective-C pointers that are not covered by the above.
7494   if (isa<ObjCObjectPointerType>(RHSType)) {
7495     // T* -> _Bool
7496     if (LHSType == Context.BoolTy) {
7497       Kind = CK_PointerToBoolean;
7498       return Compatible;
7499     }
7500 
7501     // T* -> int
7502     if (LHSType->isIntegerType()) {
7503       Kind = CK_PointerToIntegral;
7504       return PointerToInt;
7505     }
7506 
7507     return Incompatible;
7508   }
7509 
7510   // struct A -> struct B
7511   if (isa<TagType>(LHSType) && isa<TagType>(RHSType)) {
7512     if (Context.typesAreCompatible(LHSType, RHSType)) {
7513       Kind = CK_NoOp;
7514       return Compatible;
7515     }
7516   }
7517 
7518   return Incompatible;
7519 }
7520 
7521 /// \brief Constructs a transparent union from an expression that is
7522 /// used to initialize the transparent union.
7523 static void ConstructTransparentUnion(Sema &S, ASTContext &C,
7524                                       ExprResult &EResult, QualType UnionType,
7525                                       FieldDecl *Field) {
7526   // Build an initializer list that designates the appropriate member
7527   // of the transparent union.
7528   Expr *E = EResult.get();
7529   InitListExpr *Initializer = new (C) InitListExpr(C, SourceLocation(),
7530                                                    E, SourceLocation());
7531   Initializer->setType(UnionType);
7532   Initializer->setInitializedFieldInUnion(Field);
7533 
7534   // Build a compound literal constructing a value of the transparent
7535   // union type from this initializer list.
7536   TypeSourceInfo *unionTInfo = C.getTrivialTypeSourceInfo(UnionType);
7537   EResult = new (C) CompoundLiteralExpr(SourceLocation(), unionTInfo, UnionType,
7538                                         VK_RValue, Initializer, false);
7539 }
7540 
7541 Sema::AssignConvertType
7542 Sema::CheckTransparentUnionArgumentConstraints(QualType ArgType,
7543                                                ExprResult &RHS) {
7544   QualType RHSType = RHS.get()->getType();
7545 
7546   // If the ArgType is a Union type, we want to handle a potential
7547   // transparent_union GCC extension.
7548   const RecordType *UT = ArgType->getAsUnionType();
7549   if (!UT || !UT->getDecl()->hasAttr<TransparentUnionAttr>())
7550     return Incompatible;
7551 
7552   // The field to initialize within the transparent union.
7553   RecordDecl *UD = UT->getDecl();
7554   FieldDecl *InitField = nullptr;
7555   // It's compatible if the expression matches any of the fields.
7556   for (auto *it : UD->fields()) {
7557     if (it->getType()->isPointerType()) {
7558       // If the transparent union contains a pointer type, we allow:
7559       // 1) void pointer
7560       // 2) null pointer constant
7561       if (RHSType->isPointerType())
7562         if (RHSType->castAs<PointerType>()->getPointeeType()->isVoidType()) {
7563           RHS = ImpCastExprToType(RHS.get(), it->getType(), CK_BitCast);
7564           InitField = it;
7565           break;
7566         }
7567 
7568       if (RHS.get()->isNullPointerConstant(Context,
7569                                            Expr::NPC_ValueDependentIsNull)) {
7570         RHS = ImpCastExprToType(RHS.get(), it->getType(),
7571                                 CK_NullToPointer);
7572         InitField = it;
7573         break;
7574       }
7575     }
7576 
7577     CastKind Kind = CK_Invalid;
7578     if (CheckAssignmentConstraints(it->getType(), RHS, Kind)
7579           == Compatible) {
7580       RHS = ImpCastExprToType(RHS.get(), it->getType(), Kind);
7581       InitField = it;
7582       break;
7583     }
7584   }
7585 
7586   if (!InitField)
7587     return Incompatible;
7588 
7589   ConstructTransparentUnion(*this, Context, RHS, ArgType, InitField);
7590   return Compatible;
7591 }
7592 
7593 Sema::AssignConvertType
7594 Sema::CheckSingleAssignmentConstraints(QualType LHSType, ExprResult &CallerRHS,
7595                                        bool Diagnose,
7596                                        bool DiagnoseCFAudited,
7597                                        bool ConvertRHS) {
7598   // If ConvertRHS is false, we want to leave the caller's RHS untouched. Sadly,
7599   // we can't avoid *all* modifications at the moment, so we need some somewhere
7600   // to put the updated value.
7601   ExprResult LocalRHS = CallerRHS;
7602   ExprResult &RHS = ConvertRHS ? CallerRHS : LocalRHS;
7603 
7604   if (getLangOpts().CPlusPlus) {
7605     if (!LHSType->isRecordType() && !LHSType->isAtomicType()) {
7606       // C++ 5.17p3: If the left operand is not of class type, the
7607       // expression is implicitly converted (C++ 4) to the
7608       // cv-unqualified type of the left operand.
7609       ExprResult Res;
7610       if (Diagnose) {
7611         Res = PerformImplicitConversion(RHS.get(), LHSType.getUnqualifiedType(),
7612                                         AA_Assigning);
7613       } else {
7614         ImplicitConversionSequence ICS =
7615             TryImplicitConversion(RHS.get(), LHSType.getUnqualifiedType(),
7616                                   /*SuppressUserConversions=*/false,
7617                                   /*AllowExplicit=*/false,
7618                                   /*InOverloadResolution=*/false,
7619                                   /*CStyle=*/false,
7620                                   /*AllowObjCWritebackConversion=*/false);
7621         if (ICS.isFailure())
7622           return Incompatible;
7623         Res = PerformImplicitConversion(RHS.get(), LHSType.getUnqualifiedType(),
7624                                         ICS, AA_Assigning);
7625       }
7626       if (Res.isInvalid())
7627         return Incompatible;
7628       Sema::AssignConvertType result = Compatible;
7629       if (getLangOpts().ObjCAutoRefCount &&
7630           !CheckObjCARCUnavailableWeakConversion(LHSType,
7631                                                  RHS.get()->getType()))
7632         result = IncompatibleObjCWeakRef;
7633       RHS = Res;
7634       return result;
7635     }
7636 
7637     // FIXME: Currently, we fall through and treat C++ classes like C
7638     // structures.
7639     // FIXME: We also fall through for atomics; not sure what should
7640     // happen there, though.
7641   } else if (RHS.get()->getType() == Context.OverloadTy) {
7642     // As a set of extensions to C, we support overloading on functions. These
7643     // functions need to be resolved here.
7644     DeclAccessPair DAP;
7645     if (FunctionDecl *FD = ResolveAddressOfOverloadedFunction(
7646             RHS.get(), LHSType, /*Complain=*/false, DAP))
7647       RHS = FixOverloadedFunctionReference(RHS.get(), DAP, FD);
7648     else
7649       return Incompatible;
7650   }
7651 
7652   // C99 6.5.16.1p1: the left operand is a pointer and the right is
7653   // a null pointer constant.
7654   if ((LHSType->isPointerType() || LHSType->isObjCObjectPointerType() ||
7655        LHSType->isBlockPointerType()) &&
7656       RHS.get()->isNullPointerConstant(Context,
7657                                        Expr::NPC_ValueDependentIsNull)) {
7658     if (Diagnose || ConvertRHS) {
7659       CastKind Kind;
7660       CXXCastPath Path;
7661       CheckPointerConversion(RHS.get(), LHSType, Kind, Path,
7662                              /*IgnoreBaseAccess=*/false, Diagnose);
7663       if (ConvertRHS)
7664         RHS = ImpCastExprToType(RHS.get(), LHSType, Kind, VK_RValue, &Path);
7665     }
7666     return Compatible;
7667   }
7668 
7669   // This check seems unnatural, however it is necessary to ensure the proper
7670   // conversion of functions/arrays. If the conversion were done for all
7671   // DeclExpr's (created by ActOnIdExpression), it would mess up the unary
7672   // expressions that suppress this implicit conversion (&, sizeof).
7673   //
7674   // Suppress this for references: C++ 8.5.3p5.
7675   if (!LHSType->isReferenceType()) {
7676     // FIXME: We potentially allocate here even if ConvertRHS is false.
7677     RHS = DefaultFunctionArrayLvalueConversion(RHS.get(), Diagnose);
7678     if (RHS.isInvalid())
7679       return Incompatible;
7680   }
7681 
7682   Expr *PRE = RHS.get()->IgnoreParenCasts();
7683   if (Diagnose && isa<ObjCProtocolExpr>(PRE)) {
7684     ObjCProtocolDecl *PDecl = cast<ObjCProtocolExpr>(PRE)->getProtocol();
7685     if (PDecl && !PDecl->hasDefinition()) {
7686       Diag(PRE->getExprLoc(), diag::warn_atprotocol_protocol) << PDecl->getName();
7687       Diag(PDecl->getLocation(), diag::note_entity_declared_at) << PDecl;
7688     }
7689   }
7690 
7691   CastKind Kind = CK_Invalid;
7692   Sema::AssignConvertType result =
7693     CheckAssignmentConstraints(LHSType, RHS, Kind, ConvertRHS);
7694 
7695   // C99 6.5.16.1p2: The value of the right operand is converted to the
7696   // type of the assignment expression.
7697   // CheckAssignmentConstraints allows the left-hand side to be a reference,
7698   // so that we can use references in built-in functions even in C.
7699   // The getNonReferenceType() call makes sure that the resulting expression
7700   // does not have reference type.
7701   if (result != Incompatible && RHS.get()->getType() != LHSType) {
7702     QualType Ty = LHSType.getNonLValueExprType(Context);
7703     Expr *E = RHS.get();
7704 
7705     // Check for various Objective-C errors. If we are not reporting
7706     // diagnostics and just checking for errors, e.g., during overload
7707     // resolution, return Incompatible to indicate the failure.
7708     if (getLangOpts().ObjCAutoRefCount &&
7709         CheckObjCARCConversion(SourceRange(), Ty, E, CCK_ImplicitConversion,
7710                                Diagnose, DiagnoseCFAudited) != ACR_okay) {
7711       if (!Diagnose)
7712         return Incompatible;
7713     }
7714     if (getLangOpts().ObjC1 &&
7715         (CheckObjCBridgeRelatedConversions(E->getLocStart(), LHSType,
7716                                            E->getType(), E, Diagnose) ||
7717          ConversionToObjCStringLiteralCheck(LHSType, E, Diagnose))) {
7718       if (!Diagnose)
7719         return Incompatible;
7720       // Replace the expression with a corrected version and continue so we
7721       // can find further errors.
7722       RHS = E;
7723       return Compatible;
7724     }
7725 
7726     if (ConvertRHS)
7727       RHS = ImpCastExprToType(E, Ty, Kind);
7728   }
7729   return result;
7730 }
7731 
7732 QualType Sema::InvalidOperands(SourceLocation Loc, ExprResult &LHS,
7733                                ExprResult &RHS) {
7734   Diag(Loc, diag::err_typecheck_invalid_operands)
7735     << LHS.get()->getType() << RHS.get()->getType()
7736     << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
7737   return QualType();
7738 }
7739 
7740 /// Try to convert a value of non-vector type to a vector type by converting
7741 /// the type to the element type of the vector and then performing a splat.
7742 /// If the language is OpenCL, we only use conversions that promote scalar
7743 /// rank; for C, Obj-C, and C++ we allow any real scalar conversion except
7744 /// for float->int.
7745 ///
7746 /// \param scalar - if non-null, actually perform the conversions
7747 /// \return true if the operation fails (but without diagnosing the failure)
7748 static bool tryVectorConvertAndSplat(Sema &S, ExprResult *scalar,
7749                                      QualType scalarTy,
7750                                      QualType vectorEltTy,
7751                                      QualType vectorTy) {
7752   // The conversion to apply to the scalar before splatting it,
7753   // if necessary.
7754   CastKind scalarCast = CK_Invalid;
7755 
7756   if (vectorEltTy->isIntegralType(S.Context)) {
7757     if (!scalarTy->isIntegralType(S.Context))
7758       return true;
7759     if (S.getLangOpts().OpenCL &&
7760         S.Context.getIntegerTypeOrder(vectorEltTy, scalarTy) < 0)
7761       return true;
7762     scalarCast = CK_IntegralCast;
7763   } else if (vectorEltTy->isRealFloatingType()) {
7764     if (scalarTy->isRealFloatingType()) {
7765       if (S.getLangOpts().OpenCL &&
7766           S.Context.getFloatingTypeOrder(vectorEltTy, scalarTy) < 0)
7767         return true;
7768       scalarCast = CK_FloatingCast;
7769     }
7770     else if (scalarTy->isIntegralType(S.Context))
7771       scalarCast = CK_IntegralToFloating;
7772     else
7773       return true;
7774   } else {
7775     return true;
7776   }
7777 
7778   // Adjust scalar if desired.
7779   if (scalar) {
7780     if (scalarCast != CK_Invalid)
7781       *scalar = S.ImpCastExprToType(scalar->get(), vectorEltTy, scalarCast);
7782     *scalar = S.ImpCastExprToType(scalar->get(), vectorTy, CK_VectorSplat);
7783   }
7784   return false;
7785 }
7786 
7787 QualType Sema::CheckVectorOperands(ExprResult &LHS, ExprResult &RHS,
7788                                    SourceLocation Loc, bool IsCompAssign,
7789                                    bool AllowBothBool,
7790                                    bool AllowBoolConversions) {
7791   if (!IsCompAssign) {
7792     LHS = DefaultFunctionArrayLvalueConversion(LHS.get());
7793     if (LHS.isInvalid())
7794       return QualType();
7795   }
7796   RHS = DefaultFunctionArrayLvalueConversion(RHS.get());
7797   if (RHS.isInvalid())
7798     return QualType();
7799 
7800   // For conversion purposes, we ignore any qualifiers.
7801   // For example, "const float" and "float" are equivalent.
7802   QualType LHSType = LHS.get()->getType().getUnqualifiedType();
7803   QualType RHSType = RHS.get()->getType().getUnqualifiedType();
7804 
7805   const VectorType *LHSVecType = LHSType->getAs<VectorType>();
7806   const VectorType *RHSVecType = RHSType->getAs<VectorType>();
7807   assert(LHSVecType || RHSVecType);
7808 
7809   // AltiVec-style "vector bool op vector bool" combinations are allowed
7810   // for some operators but not others.
7811   if (!AllowBothBool &&
7812       LHSVecType && LHSVecType->getVectorKind() == VectorType::AltiVecBool &&
7813       RHSVecType && RHSVecType->getVectorKind() == VectorType::AltiVecBool)
7814     return InvalidOperands(Loc, LHS, RHS);
7815 
7816   // If the vector types are identical, return.
7817   if (Context.hasSameType(LHSType, RHSType))
7818     return LHSType;
7819 
7820   // If we have compatible AltiVec and GCC vector types, use the AltiVec type.
7821   if (LHSVecType && RHSVecType &&
7822       Context.areCompatibleVectorTypes(LHSType, RHSType)) {
7823     if (isa<ExtVectorType>(LHSVecType)) {
7824       RHS = ImpCastExprToType(RHS.get(), LHSType, CK_BitCast);
7825       return LHSType;
7826     }
7827 
7828     if (!IsCompAssign)
7829       LHS = ImpCastExprToType(LHS.get(), RHSType, CK_BitCast);
7830     return RHSType;
7831   }
7832 
7833   // AllowBoolConversions says that bool and non-bool AltiVec vectors
7834   // can be mixed, with the result being the non-bool type.  The non-bool
7835   // operand must have integer element type.
7836   if (AllowBoolConversions && LHSVecType && RHSVecType &&
7837       LHSVecType->getNumElements() == RHSVecType->getNumElements() &&
7838       (Context.getTypeSize(LHSVecType->getElementType()) ==
7839        Context.getTypeSize(RHSVecType->getElementType()))) {
7840     if (LHSVecType->getVectorKind() == VectorType::AltiVecVector &&
7841         LHSVecType->getElementType()->isIntegerType() &&
7842         RHSVecType->getVectorKind() == VectorType::AltiVecBool) {
7843       RHS = ImpCastExprToType(RHS.get(), LHSType, CK_BitCast);
7844       return LHSType;
7845     }
7846     if (!IsCompAssign &&
7847         LHSVecType->getVectorKind() == VectorType::AltiVecBool &&
7848         RHSVecType->getVectorKind() == VectorType::AltiVecVector &&
7849         RHSVecType->getElementType()->isIntegerType()) {
7850       LHS = ImpCastExprToType(LHS.get(), RHSType, CK_BitCast);
7851       return RHSType;
7852     }
7853   }
7854 
7855   // If there's an ext-vector type and a scalar, try to convert the scalar to
7856   // the vector element type and splat.
7857   if (!RHSVecType && isa<ExtVectorType>(LHSVecType)) {
7858     if (!tryVectorConvertAndSplat(*this, &RHS, RHSType,
7859                                   LHSVecType->getElementType(), LHSType))
7860       return LHSType;
7861   }
7862   if (!LHSVecType && isa<ExtVectorType>(RHSVecType)) {
7863     if (!tryVectorConvertAndSplat(*this, (IsCompAssign ? nullptr : &LHS),
7864                                   LHSType, RHSVecType->getElementType(),
7865                                   RHSType))
7866       return RHSType;
7867   }
7868 
7869   // If we're allowing lax vector conversions, only the total (data) size
7870   // needs to be the same.
7871   // FIXME: Should we really be allowing this?
7872   // FIXME: We really just pick the LHS type arbitrarily?
7873   if (isLaxVectorConversion(RHSType, LHSType)) {
7874     QualType resultType = LHSType;
7875     RHS = ImpCastExprToType(RHS.get(), resultType, CK_BitCast);
7876     return resultType;
7877   }
7878 
7879   // Okay, the expression is invalid.
7880 
7881   // If there's a non-vector, non-real operand, diagnose that.
7882   if ((!RHSVecType && !RHSType->isRealType()) ||
7883       (!LHSVecType && !LHSType->isRealType())) {
7884     Diag(Loc, diag::err_typecheck_vector_not_convertable_non_scalar)
7885       << LHSType << RHSType
7886       << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
7887     return QualType();
7888   }
7889 
7890   // OpenCL V1.1 6.2.6.p1:
7891   // If the operands are of more than one vector type, then an error shall
7892   // occur. Implicit conversions between vector types are not permitted, per
7893   // section 6.2.1.
7894   if (getLangOpts().OpenCL &&
7895       RHSVecType && isa<ExtVectorType>(RHSVecType) &&
7896       LHSVecType && isa<ExtVectorType>(LHSVecType)) {
7897     Diag(Loc, diag::err_opencl_implicit_vector_conversion) << LHSType
7898                                                            << RHSType;
7899     return QualType();
7900   }
7901 
7902   // Otherwise, use the generic diagnostic.
7903   Diag(Loc, diag::err_typecheck_vector_not_convertable)
7904     << LHSType << RHSType
7905     << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
7906   return QualType();
7907 }
7908 
7909 // checkArithmeticNull - Detect when a NULL constant is used improperly in an
7910 // expression.  These are mainly cases where the null pointer is used as an
7911 // integer instead of a pointer.
7912 static void checkArithmeticNull(Sema &S, ExprResult &LHS, ExprResult &RHS,
7913                                 SourceLocation Loc, bool IsCompare) {
7914   // The canonical way to check for a GNU null is with isNullPointerConstant,
7915   // but we use a bit of a hack here for speed; this is a relatively
7916   // hot path, and isNullPointerConstant is slow.
7917   bool LHSNull = isa<GNUNullExpr>(LHS.get()->IgnoreParenImpCasts());
7918   bool RHSNull = isa<GNUNullExpr>(RHS.get()->IgnoreParenImpCasts());
7919 
7920   QualType NonNullType = LHSNull ? RHS.get()->getType() : LHS.get()->getType();
7921 
7922   // Avoid analyzing cases where the result will either be invalid (and
7923   // diagnosed as such) or entirely valid and not something to warn about.
7924   if ((!LHSNull && !RHSNull) || NonNullType->isBlockPointerType() ||
7925       NonNullType->isMemberPointerType() || NonNullType->isFunctionType())
7926     return;
7927 
7928   // Comparison operations would not make sense with a null pointer no matter
7929   // what the other expression is.
7930   if (!IsCompare) {
7931     S.Diag(Loc, diag::warn_null_in_arithmetic_operation)
7932         << (LHSNull ? LHS.get()->getSourceRange() : SourceRange())
7933         << (RHSNull ? RHS.get()->getSourceRange() : SourceRange());
7934     return;
7935   }
7936 
7937   // The rest of the operations only make sense with a null pointer
7938   // if the other expression is a pointer.
7939   if (LHSNull == RHSNull || NonNullType->isAnyPointerType() ||
7940       NonNullType->canDecayToPointerType())
7941     return;
7942 
7943   S.Diag(Loc, diag::warn_null_in_comparison_operation)
7944       << LHSNull /* LHS is NULL */ << NonNullType
7945       << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
7946 }
7947 
7948 static void DiagnoseBadDivideOrRemainderValues(Sema& S, ExprResult &LHS,
7949                                                ExprResult &RHS,
7950                                                SourceLocation Loc, bool IsDiv) {
7951   // Check for division/remainder by zero.
7952   llvm::APSInt RHSValue;
7953   if (!RHS.get()->isValueDependent() &&
7954       RHS.get()->EvaluateAsInt(RHSValue, S.Context) && RHSValue == 0)
7955     S.DiagRuntimeBehavior(Loc, RHS.get(),
7956                           S.PDiag(diag::warn_remainder_division_by_zero)
7957                             << IsDiv << RHS.get()->getSourceRange());
7958 }
7959 
7960 QualType Sema::CheckMultiplyDivideOperands(ExprResult &LHS, ExprResult &RHS,
7961                                            SourceLocation Loc,
7962                                            bool IsCompAssign, bool IsDiv) {
7963   checkArithmeticNull(*this, LHS, RHS, Loc, /*isCompare=*/false);
7964 
7965   if (LHS.get()->getType()->isVectorType() ||
7966       RHS.get()->getType()->isVectorType())
7967     return CheckVectorOperands(LHS, RHS, Loc, IsCompAssign,
7968                                /*AllowBothBool*/getLangOpts().AltiVec,
7969                                /*AllowBoolConversions*/false);
7970 
7971   QualType compType = UsualArithmeticConversions(LHS, RHS, IsCompAssign);
7972   if (LHS.isInvalid() || RHS.isInvalid())
7973     return QualType();
7974 
7975 
7976   if (compType.isNull() || !compType->isArithmeticType())
7977     return InvalidOperands(Loc, LHS, RHS);
7978   if (IsDiv)
7979     DiagnoseBadDivideOrRemainderValues(*this, LHS, RHS, Loc, IsDiv);
7980   return compType;
7981 }
7982 
7983 QualType Sema::CheckRemainderOperands(
7984   ExprResult &LHS, ExprResult &RHS, SourceLocation Loc, bool IsCompAssign) {
7985   checkArithmeticNull(*this, LHS, RHS, Loc, /*isCompare=*/false);
7986 
7987   if (LHS.get()->getType()->isVectorType() ||
7988       RHS.get()->getType()->isVectorType()) {
7989     if (LHS.get()->getType()->hasIntegerRepresentation() &&
7990         RHS.get()->getType()->hasIntegerRepresentation())
7991       return CheckVectorOperands(LHS, RHS, Loc, IsCompAssign,
7992                                  /*AllowBothBool*/getLangOpts().AltiVec,
7993                                  /*AllowBoolConversions*/false);
7994     return InvalidOperands(Loc, LHS, RHS);
7995   }
7996 
7997   QualType compType = UsualArithmeticConversions(LHS, RHS, IsCompAssign);
7998   if (LHS.isInvalid() || RHS.isInvalid())
7999     return QualType();
8000 
8001   if (compType.isNull() || !compType->isIntegerType())
8002     return InvalidOperands(Loc, LHS, RHS);
8003   DiagnoseBadDivideOrRemainderValues(*this, LHS, RHS, Loc, false /* IsDiv */);
8004   return compType;
8005 }
8006 
8007 /// \brief Diagnose invalid arithmetic on two void pointers.
8008 static void diagnoseArithmeticOnTwoVoidPointers(Sema &S, SourceLocation Loc,
8009                                                 Expr *LHSExpr, Expr *RHSExpr) {
8010   S.Diag(Loc, S.getLangOpts().CPlusPlus
8011                 ? diag::err_typecheck_pointer_arith_void_type
8012                 : diag::ext_gnu_void_ptr)
8013     << 1 /* two pointers */ << LHSExpr->getSourceRange()
8014                             << RHSExpr->getSourceRange();
8015 }
8016 
8017 /// \brief Diagnose invalid arithmetic on a void pointer.
8018 static void diagnoseArithmeticOnVoidPointer(Sema &S, SourceLocation Loc,
8019                                             Expr *Pointer) {
8020   S.Diag(Loc, S.getLangOpts().CPlusPlus
8021                 ? diag::err_typecheck_pointer_arith_void_type
8022                 : diag::ext_gnu_void_ptr)
8023     << 0 /* one pointer */ << Pointer->getSourceRange();
8024 }
8025 
8026 /// \brief Diagnose invalid arithmetic on two function pointers.
8027 static void diagnoseArithmeticOnTwoFunctionPointers(Sema &S, SourceLocation Loc,
8028                                                     Expr *LHS, Expr *RHS) {
8029   assert(LHS->getType()->isAnyPointerType());
8030   assert(RHS->getType()->isAnyPointerType());
8031   S.Diag(Loc, S.getLangOpts().CPlusPlus
8032                 ? diag::err_typecheck_pointer_arith_function_type
8033                 : diag::ext_gnu_ptr_func_arith)
8034     << 1 /* two pointers */ << LHS->getType()->getPointeeType()
8035     // We only show the second type if it differs from the first.
8036     << (unsigned)!S.Context.hasSameUnqualifiedType(LHS->getType(),
8037                                                    RHS->getType())
8038     << RHS->getType()->getPointeeType()
8039     << LHS->getSourceRange() << RHS->getSourceRange();
8040 }
8041 
8042 /// \brief Diagnose invalid arithmetic on a function pointer.
8043 static void diagnoseArithmeticOnFunctionPointer(Sema &S, SourceLocation Loc,
8044                                                 Expr *Pointer) {
8045   assert(Pointer->getType()->isAnyPointerType());
8046   S.Diag(Loc, S.getLangOpts().CPlusPlus
8047                 ? diag::err_typecheck_pointer_arith_function_type
8048                 : diag::ext_gnu_ptr_func_arith)
8049     << 0 /* one pointer */ << Pointer->getType()->getPointeeType()
8050     << 0 /* one pointer, so only one type */
8051     << Pointer->getSourceRange();
8052 }
8053 
8054 /// \brief Emit error if Operand is incomplete pointer type
8055 ///
8056 /// \returns True if pointer has incomplete type
8057 static bool checkArithmeticIncompletePointerType(Sema &S, SourceLocation Loc,
8058                                                  Expr *Operand) {
8059   QualType ResType = Operand->getType();
8060   if (const AtomicType *ResAtomicType = ResType->getAs<AtomicType>())
8061     ResType = ResAtomicType->getValueType();
8062 
8063   assert(ResType->isAnyPointerType() && !ResType->isDependentType());
8064   QualType PointeeTy = ResType->getPointeeType();
8065   return S.RequireCompleteType(Loc, PointeeTy,
8066                                diag::err_typecheck_arithmetic_incomplete_type,
8067                                PointeeTy, Operand->getSourceRange());
8068 }
8069 
8070 /// \brief Check the validity of an arithmetic pointer operand.
8071 ///
8072 /// If the operand has pointer type, this code will check for pointer types
8073 /// which are invalid in arithmetic operations. These will be diagnosed
8074 /// appropriately, including whether or not the use is supported as an
8075 /// extension.
8076 ///
8077 /// \returns True when the operand is valid to use (even if as an extension).
8078 static bool checkArithmeticOpPointerOperand(Sema &S, SourceLocation Loc,
8079                                             Expr *Operand) {
8080   QualType ResType = Operand->getType();
8081   if (const AtomicType *ResAtomicType = ResType->getAs<AtomicType>())
8082     ResType = ResAtomicType->getValueType();
8083 
8084   if (!ResType->isAnyPointerType()) return true;
8085 
8086   QualType PointeeTy = ResType->getPointeeType();
8087   if (PointeeTy->isVoidType()) {
8088     diagnoseArithmeticOnVoidPointer(S, Loc, Operand);
8089     return !S.getLangOpts().CPlusPlus;
8090   }
8091   if (PointeeTy->isFunctionType()) {
8092     diagnoseArithmeticOnFunctionPointer(S, Loc, Operand);
8093     return !S.getLangOpts().CPlusPlus;
8094   }
8095 
8096   if (checkArithmeticIncompletePointerType(S, Loc, Operand)) return false;
8097 
8098   return true;
8099 }
8100 
8101 /// \brief Check the validity of a binary arithmetic operation w.r.t. pointer
8102 /// operands.
8103 ///
8104 /// This routine will diagnose any invalid arithmetic on pointer operands much
8105 /// like \see checkArithmeticOpPointerOperand. However, it has special logic
8106 /// for emitting a single diagnostic even for operations where both LHS and RHS
8107 /// are (potentially problematic) pointers.
8108 ///
8109 /// \returns True when the operand is valid to use (even if as an extension).
8110 static bool checkArithmeticBinOpPointerOperands(Sema &S, SourceLocation Loc,
8111                                                 Expr *LHSExpr, Expr *RHSExpr) {
8112   bool isLHSPointer = LHSExpr->getType()->isAnyPointerType();
8113   bool isRHSPointer = RHSExpr->getType()->isAnyPointerType();
8114   if (!isLHSPointer && !isRHSPointer) return true;
8115 
8116   QualType LHSPointeeTy, RHSPointeeTy;
8117   if (isLHSPointer) LHSPointeeTy = LHSExpr->getType()->getPointeeType();
8118   if (isRHSPointer) RHSPointeeTy = RHSExpr->getType()->getPointeeType();
8119 
8120   // if both are pointers check if operation is valid wrt address spaces
8121   if (S.getLangOpts().OpenCL && isLHSPointer && isRHSPointer) {
8122     const PointerType *lhsPtr = LHSExpr->getType()->getAs<PointerType>();
8123     const PointerType *rhsPtr = RHSExpr->getType()->getAs<PointerType>();
8124     if (!lhsPtr->isAddressSpaceOverlapping(*rhsPtr)) {
8125       S.Diag(Loc,
8126              diag::err_typecheck_op_on_nonoverlapping_address_space_pointers)
8127           << LHSExpr->getType() << RHSExpr->getType() << 1 /*arithmetic op*/
8128           << LHSExpr->getSourceRange() << RHSExpr->getSourceRange();
8129       return false;
8130     }
8131   }
8132 
8133   // Check for arithmetic on pointers to incomplete types.
8134   bool isLHSVoidPtr = isLHSPointer && LHSPointeeTy->isVoidType();
8135   bool isRHSVoidPtr = isRHSPointer && RHSPointeeTy->isVoidType();
8136   if (isLHSVoidPtr || isRHSVoidPtr) {
8137     if (!isRHSVoidPtr) diagnoseArithmeticOnVoidPointer(S, Loc, LHSExpr);
8138     else if (!isLHSVoidPtr) diagnoseArithmeticOnVoidPointer(S, Loc, RHSExpr);
8139     else diagnoseArithmeticOnTwoVoidPointers(S, Loc, LHSExpr, RHSExpr);
8140 
8141     return !S.getLangOpts().CPlusPlus;
8142   }
8143 
8144   bool isLHSFuncPtr = isLHSPointer && LHSPointeeTy->isFunctionType();
8145   bool isRHSFuncPtr = isRHSPointer && RHSPointeeTy->isFunctionType();
8146   if (isLHSFuncPtr || isRHSFuncPtr) {
8147     if (!isRHSFuncPtr) diagnoseArithmeticOnFunctionPointer(S, Loc, LHSExpr);
8148     else if (!isLHSFuncPtr) diagnoseArithmeticOnFunctionPointer(S, Loc,
8149                                                                 RHSExpr);
8150     else diagnoseArithmeticOnTwoFunctionPointers(S, Loc, LHSExpr, RHSExpr);
8151 
8152     return !S.getLangOpts().CPlusPlus;
8153   }
8154 
8155   if (isLHSPointer && checkArithmeticIncompletePointerType(S, Loc, LHSExpr))
8156     return false;
8157   if (isRHSPointer && checkArithmeticIncompletePointerType(S, Loc, RHSExpr))
8158     return false;
8159 
8160   return true;
8161 }
8162 
8163 /// diagnoseStringPlusInt - Emit a warning when adding an integer to a string
8164 /// literal.
8165 static void diagnoseStringPlusInt(Sema &Self, SourceLocation OpLoc,
8166                                   Expr *LHSExpr, Expr *RHSExpr) {
8167   StringLiteral* StrExpr = dyn_cast<StringLiteral>(LHSExpr->IgnoreImpCasts());
8168   Expr* IndexExpr = RHSExpr;
8169   if (!StrExpr) {
8170     StrExpr = dyn_cast<StringLiteral>(RHSExpr->IgnoreImpCasts());
8171     IndexExpr = LHSExpr;
8172   }
8173 
8174   bool IsStringPlusInt = StrExpr &&
8175       IndexExpr->getType()->isIntegralOrUnscopedEnumerationType();
8176   if (!IsStringPlusInt || IndexExpr->isValueDependent())
8177     return;
8178 
8179   llvm::APSInt index;
8180   if (IndexExpr->EvaluateAsInt(index, Self.getASTContext())) {
8181     unsigned StrLenWithNull = StrExpr->getLength() + 1;
8182     if (index.isNonNegative() &&
8183         index <= llvm::APSInt(llvm::APInt(index.getBitWidth(), StrLenWithNull),
8184                               index.isUnsigned()))
8185       return;
8186   }
8187 
8188   SourceRange DiagRange(LHSExpr->getLocStart(), RHSExpr->getLocEnd());
8189   Self.Diag(OpLoc, diag::warn_string_plus_int)
8190       << DiagRange << IndexExpr->IgnoreImpCasts()->getType();
8191 
8192   // Only print a fixit for "str" + int, not for int + "str".
8193   if (IndexExpr == RHSExpr) {
8194     SourceLocation EndLoc = Self.getLocForEndOfToken(RHSExpr->getLocEnd());
8195     Self.Diag(OpLoc, diag::note_string_plus_scalar_silence)
8196         << FixItHint::CreateInsertion(LHSExpr->getLocStart(), "&")
8197         << FixItHint::CreateReplacement(SourceRange(OpLoc), "[")
8198         << FixItHint::CreateInsertion(EndLoc, "]");
8199   } else
8200     Self.Diag(OpLoc, diag::note_string_plus_scalar_silence);
8201 }
8202 
8203 /// \brief Emit a warning when adding a char literal to a string.
8204 static void diagnoseStringPlusChar(Sema &Self, SourceLocation OpLoc,
8205                                    Expr *LHSExpr, Expr *RHSExpr) {
8206   const Expr *StringRefExpr = LHSExpr;
8207   const CharacterLiteral *CharExpr =
8208       dyn_cast<CharacterLiteral>(RHSExpr->IgnoreImpCasts());
8209 
8210   if (!CharExpr) {
8211     CharExpr = dyn_cast<CharacterLiteral>(LHSExpr->IgnoreImpCasts());
8212     StringRefExpr = RHSExpr;
8213   }
8214 
8215   if (!CharExpr || !StringRefExpr)
8216     return;
8217 
8218   const QualType StringType = StringRefExpr->getType();
8219 
8220   // Return if not a PointerType.
8221   if (!StringType->isAnyPointerType())
8222     return;
8223 
8224   // Return if not a CharacterType.
8225   if (!StringType->getPointeeType()->isAnyCharacterType())
8226     return;
8227 
8228   ASTContext &Ctx = Self.getASTContext();
8229   SourceRange DiagRange(LHSExpr->getLocStart(), RHSExpr->getLocEnd());
8230 
8231   const QualType CharType = CharExpr->getType();
8232   if (!CharType->isAnyCharacterType() &&
8233       CharType->isIntegerType() &&
8234       llvm::isUIntN(Ctx.getCharWidth(), CharExpr->getValue())) {
8235     Self.Diag(OpLoc, diag::warn_string_plus_char)
8236         << DiagRange << Ctx.CharTy;
8237   } else {
8238     Self.Diag(OpLoc, diag::warn_string_plus_char)
8239         << DiagRange << CharExpr->getType();
8240   }
8241 
8242   // Only print a fixit for str + char, not for char + str.
8243   if (isa<CharacterLiteral>(RHSExpr->IgnoreImpCasts())) {
8244     SourceLocation EndLoc = Self.getLocForEndOfToken(RHSExpr->getLocEnd());
8245     Self.Diag(OpLoc, diag::note_string_plus_scalar_silence)
8246         << FixItHint::CreateInsertion(LHSExpr->getLocStart(), "&")
8247         << FixItHint::CreateReplacement(SourceRange(OpLoc), "[")
8248         << FixItHint::CreateInsertion(EndLoc, "]");
8249   } else {
8250     Self.Diag(OpLoc, diag::note_string_plus_scalar_silence);
8251   }
8252 }
8253 
8254 /// \brief Emit error when two pointers are incompatible.
8255 static void diagnosePointerIncompatibility(Sema &S, SourceLocation Loc,
8256                                            Expr *LHSExpr, Expr *RHSExpr) {
8257   assert(LHSExpr->getType()->isAnyPointerType());
8258   assert(RHSExpr->getType()->isAnyPointerType());
8259   S.Diag(Loc, diag::err_typecheck_sub_ptr_compatible)
8260     << LHSExpr->getType() << RHSExpr->getType() << LHSExpr->getSourceRange()
8261     << RHSExpr->getSourceRange();
8262 }
8263 
8264 // C99 6.5.6
8265 QualType Sema::CheckAdditionOperands(ExprResult &LHS, ExprResult &RHS,
8266                                      SourceLocation Loc, BinaryOperatorKind Opc,
8267                                      QualType* CompLHSTy) {
8268   checkArithmeticNull(*this, LHS, RHS, Loc, /*isCompare=*/false);
8269 
8270   if (LHS.get()->getType()->isVectorType() ||
8271       RHS.get()->getType()->isVectorType()) {
8272     QualType compType = CheckVectorOperands(
8273         LHS, RHS, Loc, CompLHSTy,
8274         /*AllowBothBool*/getLangOpts().AltiVec,
8275         /*AllowBoolConversions*/getLangOpts().ZVector);
8276     if (CompLHSTy) *CompLHSTy = compType;
8277     return compType;
8278   }
8279 
8280   QualType compType = UsualArithmeticConversions(LHS, RHS, CompLHSTy);
8281   if (LHS.isInvalid() || RHS.isInvalid())
8282     return QualType();
8283 
8284   // Diagnose "string literal" '+' int and string '+' "char literal".
8285   if (Opc == BO_Add) {
8286     diagnoseStringPlusInt(*this, Loc, LHS.get(), RHS.get());
8287     diagnoseStringPlusChar(*this, Loc, LHS.get(), RHS.get());
8288   }
8289 
8290   // handle the common case first (both operands are arithmetic).
8291   if (!compType.isNull() && compType->isArithmeticType()) {
8292     if (CompLHSTy) *CompLHSTy = compType;
8293     return compType;
8294   }
8295 
8296   // Type-checking.  Ultimately the pointer's going to be in PExp;
8297   // note that we bias towards the LHS being the pointer.
8298   Expr *PExp = LHS.get(), *IExp = RHS.get();
8299 
8300   bool isObjCPointer;
8301   if (PExp->getType()->isPointerType()) {
8302     isObjCPointer = false;
8303   } else if (PExp->getType()->isObjCObjectPointerType()) {
8304     isObjCPointer = true;
8305   } else {
8306     std::swap(PExp, IExp);
8307     if (PExp->getType()->isPointerType()) {
8308       isObjCPointer = false;
8309     } else if (PExp->getType()->isObjCObjectPointerType()) {
8310       isObjCPointer = true;
8311     } else {
8312       return InvalidOperands(Loc, LHS, RHS);
8313     }
8314   }
8315   assert(PExp->getType()->isAnyPointerType());
8316 
8317   if (!IExp->getType()->isIntegerType())
8318     return InvalidOperands(Loc, LHS, RHS);
8319 
8320   if (!checkArithmeticOpPointerOperand(*this, Loc, PExp))
8321     return QualType();
8322 
8323   if (isObjCPointer && checkArithmeticOnObjCPointer(*this, Loc, PExp))
8324     return QualType();
8325 
8326   // Check array bounds for pointer arithemtic
8327   CheckArrayAccess(PExp, IExp);
8328 
8329   if (CompLHSTy) {
8330     QualType LHSTy = Context.isPromotableBitField(LHS.get());
8331     if (LHSTy.isNull()) {
8332       LHSTy = LHS.get()->getType();
8333       if (LHSTy->isPromotableIntegerType())
8334         LHSTy = Context.getPromotedIntegerType(LHSTy);
8335     }
8336     *CompLHSTy = LHSTy;
8337   }
8338 
8339   return PExp->getType();
8340 }
8341 
8342 // C99 6.5.6
8343 QualType Sema::CheckSubtractionOperands(ExprResult &LHS, ExprResult &RHS,
8344                                         SourceLocation Loc,
8345                                         QualType* CompLHSTy) {
8346   checkArithmeticNull(*this, LHS, RHS, Loc, /*isCompare=*/false);
8347 
8348   if (LHS.get()->getType()->isVectorType() ||
8349       RHS.get()->getType()->isVectorType()) {
8350     QualType compType = CheckVectorOperands(
8351         LHS, RHS, Loc, CompLHSTy,
8352         /*AllowBothBool*/getLangOpts().AltiVec,
8353         /*AllowBoolConversions*/getLangOpts().ZVector);
8354     if (CompLHSTy) *CompLHSTy = compType;
8355     return compType;
8356   }
8357 
8358   QualType compType = UsualArithmeticConversions(LHS, RHS, CompLHSTy);
8359   if (LHS.isInvalid() || RHS.isInvalid())
8360     return QualType();
8361 
8362   // Enforce type constraints: C99 6.5.6p3.
8363 
8364   // Handle the common case first (both operands are arithmetic).
8365   if (!compType.isNull() && compType->isArithmeticType()) {
8366     if (CompLHSTy) *CompLHSTy = compType;
8367     return compType;
8368   }
8369 
8370   // Either ptr - int   or   ptr - ptr.
8371   if (LHS.get()->getType()->isAnyPointerType()) {
8372     QualType lpointee = LHS.get()->getType()->getPointeeType();
8373 
8374     // Diagnose bad cases where we step over interface counts.
8375     if (LHS.get()->getType()->isObjCObjectPointerType() &&
8376         checkArithmeticOnObjCPointer(*this, Loc, LHS.get()))
8377       return QualType();
8378 
8379     // The result type of a pointer-int computation is the pointer type.
8380     if (RHS.get()->getType()->isIntegerType()) {
8381       if (!checkArithmeticOpPointerOperand(*this, Loc, LHS.get()))
8382         return QualType();
8383 
8384       // Check array bounds for pointer arithemtic
8385       CheckArrayAccess(LHS.get(), RHS.get(), /*ArraySubscriptExpr*/nullptr,
8386                        /*AllowOnePastEnd*/true, /*IndexNegated*/true);
8387 
8388       if (CompLHSTy) *CompLHSTy = LHS.get()->getType();
8389       return LHS.get()->getType();
8390     }
8391 
8392     // Handle pointer-pointer subtractions.
8393     if (const PointerType *RHSPTy
8394           = RHS.get()->getType()->getAs<PointerType>()) {
8395       QualType rpointee = RHSPTy->getPointeeType();
8396 
8397       if (getLangOpts().CPlusPlus) {
8398         // Pointee types must be the same: C++ [expr.add]
8399         if (!Context.hasSameUnqualifiedType(lpointee, rpointee)) {
8400           diagnosePointerIncompatibility(*this, Loc, LHS.get(), RHS.get());
8401         }
8402       } else {
8403         // Pointee types must be compatible C99 6.5.6p3
8404         if (!Context.typesAreCompatible(
8405                 Context.getCanonicalType(lpointee).getUnqualifiedType(),
8406                 Context.getCanonicalType(rpointee).getUnqualifiedType())) {
8407           diagnosePointerIncompatibility(*this, Loc, LHS.get(), RHS.get());
8408           return QualType();
8409         }
8410       }
8411 
8412       if (!checkArithmeticBinOpPointerOperands(*this, Loc,
8413                                                LHS.get(), RHS.get()))
8414         return QualType();
8415 
8416       // The pointee type may have zero size.  As an extension, a structure or
8417       // union may have zero size or an array may have zero length.  In this
8418       // case subtraction does not make sense.
8419       if (!rpointee->isVoidType() && !rpointee->isFunctionType()) {
8420         CharUnits ElementSize = Context.getTypeSizeInChars(rpointee);
8421         if (ElementSize.isZero()) {
8422           Diag(Loc,diag::warn_sub_ptr_zero_size_types)
8423             << rpointee.getUnqualifiedType()
8424             << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
8425         }
8426       }
8427 
8428       if (CompLHSTy) *CompLHSTy = LHS.get()->getType();
8429       return Context.getPointerDiffType();
8430     }
8431   }
8432 
8433   return InvalidOperands(Loc, LHS, RHS);
8434 }
8435 
8436 static bool isScopedEnumerationType(QualType T) {
8437   if (const EnumType *ET = T->getAs<EnumType>())
8438     return ET->getDecl()->isScoped();
8439   return false;
8440 }
8441 
8442 static void DiagnoseBadShiftValues(Sema& S, ExprResult &LHS, ExprResult &RHS,
8443                                    SourceLocation Loc, BinaryOperatorKind Opc,
8444                                    QualType LHSType) {
8445   // OpenCL 6.3j: shift values are effectively % word size of LHS (more defined),
8446   // so skip remaining warnings as we don't want to modify values within Sema.
8447   if (S.getLangOpts().OpenCL)
8448     return;
8449 
8450   llvm::APSInt Right;
8451   // Check right/shifter operand
8452   if (RHS.get()->isValueDependent() ||
8453       !RHS.get()->EvaluateAsInt(Right, S.Context))
8454     return;
8455 
8456   if (Right.isNegative()) {
8457     S.DiagRuntimeBehavior(Loc, RHS.get(),
8458                           S.PDiag(diag::warn_shift_negative)
8459                             << RHS.get()->getSourceRange());
8460     return;
8461   }
8462   llvm::APInt LeftBits(Right.getBitWidth(),
8463                        S.Context.getTypeSize(LHS.get()->getType()));
8464   if (Right.uge(LeftBits)) {
8465     S.DiagRuntimeBehavior(Loc, RHS.get(),
8466                           S.PDiag(diag::warn_shift_gt_typewidth)
8467                             << RHS.get()->getSourceRange());
8468     return;
8469   }
8470   if (Opc != BO_Shl)
8471     return;
8472 
8473   // When left shifting an ICE which is signed, we can check for overflow which
8474   // according to C++ has undefined behavior ([expr.shift] 5.8/2). Unsigned
8475   // integers have defined behavior modulo one more than the maximum value
8476   // representable in the result type, so never warn for those.
8477   llvm::APSInt Left;
8478   if (LHS.get()->isValueDependent() ||
8479       LHSType->hasUnsignedIntegerRepresentation() ||
8480       !LHS.get()->EvaluateAsInt(Left, S.Context))
8481     return;
8482 
8483   // If LHS does not have a signed type and non-negative value
8484   // then, the behavior is undefined. Warn about it.
8485   if (Left.isNegative()) {
8486     S.DiagRuntimeBehavior(Loc, LHS.get(),
8487                           S.PDiag(diag::warn_shift_lhs_negative)
8488                             << LHS.get()->getSourceRange());
8489     return;
8490   }
8491 
8492   llvm::APInt ResultBits =
8493       static_cast<llvm::APInt&>(Right) + Left.getMinSignedBits();
8494   if (LeftBits.uge(ResultBits))
8495     return;
8496   llvm::APSInt Result = Left.extend(ResultBits.getLimitedValue());
8497   Result = Result.shl(Right);
8498 
8499   // Print the bit representation of the signed integer as an unsigned
8500   // hexadecimal number.
8501   SmallString<40> HexResult;
8502   Result.toString(HexResult, 16, /*Signed =*/false, /*Literal =*/true);
8503 
8504   // If we are only missing a sign bit, this is less likely to result in actual
8505   // bugs -- if the result is cast back to an unsigned type, it will have the
8506   // expected value. Thus we place this behind a different warning that can be
8507   // turned off separately if needed.
8508   if (LeftBits == ResultBits - 1) {
8509     S.Diag(Loc, diag::warn_shift_result_sets_sign_bit)
8510         << HexResult << LHSType
8511         << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
8512     return;
8513   }
8514 
8515   S.Diag(Loc, diag::warn_shift_result_gt_typewidth)
8516     << HexResult.str() << Result.getMinSignedBits() << LHSType
8517     << Left.getBitWidth() << LHS.get()->getSourceRange()
8518     << RHS.get()->getSourceRange();
8519 }
8520 
8521 /// \brief Return the resulting type when an OpenCL vector is shifted
8522 ///        by a scalar or vector shift amount.
8523 static QualType checkOpenCLVectorShift(Sema &S,
8524                                        ExprResult &LHS, ExprResult &RHS,
8525                                        SourceLocation Loc, bool IsCompAssign) {
8526   // OpenCL v1.1 s6.3.j says RHS can be a vector only if LHS is a vector.
8527   if (!LHS.get()->getType()->isVectorType()) {
8528     S.Diag(Loc, diag::err_shift_rhs_only_vector)
8529       << RHS.get()->getType() << LHS.get()->getType()
8530       << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
8531     return QualType();
8532   }
8533 
8534   if (!IsCompAssign) {
8535     LHS = S.UsualUnaryConversions(LHS.get());
8536     if (LHS.isInvalid()) return QualType();
8537   }
8538 
8539   RHS = S.UsualUnaryConversions(RHS.get());
8540   if (RHS.isInvalid()) return QualType();
8541 
8542   QualType LHSType = LHS.get()->getType();
8543   const VectorType *LHSVecTy = LHSType->castAs<VectorType>();
8544   QualType LHSEleType = LHSVecTy->getElementType();
8545 
8546   // Note that RHS might not be a vector.
8547   QualType RHSType = RHS.get()->getType();
8548   const VectorType *RHSVecTy = RHSType->getAs<VectorType>();
8549   QualType RHSEleType = RHSVecTy ? RHSVecTy->getElementType() : RHSType;
8550 
8551   // OpenCL v1.1 s6.3.j says that the operands need to be integers.
8552   if (!LHSEleType->isIntegerType()) {
8553     S.Diag(Loc, diag::err_typecheck_expect_int)
8554       << LHS.get()->getType() << LHS.get()->getSourceRange();
8555     return QualType();
8556   }
8557 
8558   if (!RHSEleType->isIntegerType()) {
8559     S.Diag(Loc, diag::err_typecheck_expect_int)
8560       << RHS.get()->getType() << RHS.get()->getSourceRange();
8561     return QualType();
8562   }
8563 
8564   if (RHSVecTy) {
8565     // OpenCL v1.1 s6.3.j says that for vector types, the operators
8566     // are applied component-wise. So if RHS is a vector, then ensure
8567     // that the number of elements is the same as LHS...
8568     if (RHSVecTy->getNumElements() != LHSVecTy->getNumElements()) {
8569       S.Diag(Loc, diag::err_typecheck_vector_lengths_not_equal)
8570         << LHS.get()->getType() << RHS.get()->getType()
8571         << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
8572       return QualType();
8573     }
8574   } else {
8575     // ...else expand RHS to match the number of elements in LHS.
8576     QualType VecTy =
8577       S.Context.getExtVectorType(RHSEleType, LHSVecTy->getNumElements());
8578     RHS = S.ImpCastExprToType(RHS.get(), VecTy, CK_VectorSplat);
8579   }
8580 
8581   return LHSType;
8582 }
8583 
8584 // C99 6.5.7
8585 QualType Sema::CheckShiftOperands(ExprResult &LHS, ExprResult &RHS,
8586                                   SourceLocation Loc, BinaryOperatorKind Opc,
8587                                   bool IsCompAssign) {
8588   checkArithmeticNull(*this, LHS, RHS, Loc, /*isCompare=*/false);
8589 
8590   // Vector shifts promote their scalar inputs to vector type.
8591   if (LHS.get()->getType()->isVectorType() ||
8592       RHS.get()->getType()->isVectorType()) {
8593     if (LangOpts.OpenCL)
8594       return checkOpenCLVectorShift(*this, LHS, RHS, Loc, IsCompAssign);
8595     if (LangOpts.ZVector) {
8596       // The shift operators for the z vector extensions work basically
8597       // like OpenCL shifts, except that neither the LHS nor the RHS is
8598       // allowed to be a "vector bool".
8599       if (auto LHSVecType = LHS.get()->getType()->getAs<VectorType>())
8600         if (LHSVecType->getVectorKind() == VectorType::AltiVecBool)
8601           return InvalidOperands(Loc, LHS, RHS);
8602       if (auto RHSVecType = RHS.get()->getType()->getAs<VectorType>())
8603         if (RHSVecType->getVectorKind() == VectorType::AltiVecBool)
8604           return InvalidOperands(Loc, LHS, RHS);
8605       return checkOpenCLVectorShift(*this, LHS, RHS, Loc, IsCompAssign);
8606     }
8607     return CheckVectorOperands(LHS, RHS, Loc, IsCompAssign,
8608                                /*AllowBothBool*/true,
8609                                /*AllowBoolConversions*/false);
8610   }
8611 
8612   // Shifts don't perform usual arithmetic conversions, they just do integer
8613   // promotions on each operand. C99 6.5.7p3
8614 
8615   // For the LHS, do usual unary conversions, but then reset them away
8616   // if this is a compound assignment.
8617   ExprResult OldLHS = LHS;
8618   LHS = UsualUnaryConversions(LHS.get());
8619   if (LHS.isInvalid())
8620     return QualType();
8621   QualType LHSType = LHS.get()->getType();
8622   if (IsCompAssign) LHS = OldLHS;
8623 
8624   // The RHS is simpler.
8625   RHS = UsualUnaryConversions(RHS.get());
8626   if (RHS.isInvalid())
8627     return QualType();
8628   QualType RHSType = RHS.get()->getType();
8629 
8630   // C99 6.5.7p2: Each of the operands shall have integer type.
8631   if (!LHSType->hasIntegerRepresentation() ||
8632       !RHSType->hasIntegerRepresentation())
8633     return InvalidOperands(Loc, LHS, RHS);
8634 
8635   // C++0x: Don't allow scoped enums. FIXME: Use something better than
8636   // hasIntegerRepresentation() above instead of this.
8637   if (isScopedEnumerationType(LHSType) ||
8638       isScopedEnumerationType(RHSType)) {
8639     return InvalidOperands(Loc, LHS, RHS);
8640   }
8641   // Sanity-check shift operands
8642   DiagnoseBadShiftValues(*this, LHS, RHS, Loc, Opc, LHSType);
8643 
8644   // "The type of the result is that of the promoted left operand."
8645   return LHSType;
8646 }
8647 
8648 static bool IsWithinTemplateSpecialization(Decl *D) {
8649   if (DeclContext *DC = D->getDeclContext()) {
8650     if (isa<ClassTemplateSpecializationDecl>(DC))
8651       return true;
8652     if (FunctionDecl *FD = dyn_cast<FunctionDecl>(DC))
8653       return FD->isFunctionTemplateSpecialization();
8654   }
8655   return false;
8656 }
8657 
8658 /// If two different enums are compared, raise a warning.
8659 static void checkEnumComparison(Sema &S, SourceLocation Loc, Expr *LHS,
8660                                 Expr *RHS) {
8661   QualType LHSStrippedType = LHS->IgnoreParenImpCasts()->getType();
8662   QualType RHSStrippedType = RHS->IgnoreParenImpCasts()->getType();
8663 
8664   const EnumType *LHSEnumType = LHSStrippedType->getAs<EnumType>();
8665   if (!LHSEnumType)
8666     return;
8667   const EnumType *RHSEnumType = RHSStrippedType->getAs<EnumType>();
8668   if (!RHSEnumType)
8669     return;
8670 
8671   // Ignore anonymous enums.
8672   if (!LHSEnumType->getDecl()->getIdentifier())
8673     return;
8674   if (!RHSEnumType->getDecl()->getIdentifier())
8675     return;
8676 
8677   if (S.Context.hasSameUnqualifiedType(LHSStrippedType, RHSStrippedType))
8678     return;
8679 
8680   S.Diag(Loc, diag::warn_comparison_of_mixed_enum_types)
8681       << LHSStrippedType << RHSStrippedType
8682       << LHS->getSourceRange() << RHS->getSourceRange();
8683 }
8684 
8685 /// \brief Diagnose bad pointer comparisons.
8686 static void diagnoseDistinctPointerComparison(Sema &S, SourceLocation Loc,
8687                                               ExprResult &LHS, ExprResult &RHS,
8688                                               bool IsError) {
8689   S.Diag(Loc, IsError ? diag::err_typecheck_comparison_of_distinct_pointers
8690                       : diag::ext_typecheck_comparison_of_distinct_pointers)
8691     << LHS.get()->getType() << RHS.get()->getType()
8692     << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
8693 }
8694 
8695 /// \brief Returns false if the pointers are converted to a composite type,
8696 /// true otherwise.
8697 static bool convertPointersToCompositeType(Sema &S, SourceLocation Loc,
8698                                            ExprResult &LHS, ExprResult &RHS) {
8699   // C++ [expr.rel]p2:
8700   //   [...] Pointer conversions (4.10) and qualification
8701   //   conversions (4.4) are performed on pointer operands (or on
8702   //   a pointer operand and a null pointer constant) to bring
8703   //   them to their composite pointer type. [...]
8704   //
8705   // C++ [expr.eq]p1 uses the same notion for (in)equality
8706   // comparisons of pointers.
8707 
8708   // C++ [expr.eq]p2:
8709   //   In addition, pointers to members can be compared, or a pointer to
8710   //   member and a null pointer constant. Pointer to member conversions
8711   //   (4.11) and qualification conversions (4.4) are performed to bring
8712   //   them to a common type. If one operand is a null pointer constant,
8713   //   the common type is the type of the other operand. Otherwise, the
8714   //   common type is a pointer to member type similar (4.4) to the type
8715   //   of one of the operands, with a cv-qualification signature (4.4)
8716   //   that is the union of the cv-qualification signatures of the operand
8717   //   types.
8718 
8719   QualType LHSType = LHS.get()->getType();
8720   QualType RHSType = RHS.get()->getType();
8721   assert((LHSType->isPointerType() && RHSType->isPointerType()) ||
8722          (LHSType->isMemberPointerType() && RHSType->isMemberPointerType()));
8723 
8724   bool NonStandardCompositeType = false;
8725   bool *BoolPtr = S.isSFINAEContext() ? nullptr : &NonStandardCompositeType;
8726   QualType T = S.FindCompositePointerType(Loc, LHS, RHS, BoolPtr);
8727   if (T.isNull()) {
8728     diagnoseDistinctPointerComparison(S, Loc, LHS, RHS, /*isError*/true);
8729     return true;
8730   }
8731 
8732   if (NonStandardCompositeType)
8733     S.Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers_nonstandard)
8734       << LHSType << RHSType << T << LHS.get()->getSourceRange()
8735       << RHS.get()->getSourceRange();
8736 
8737   LHS = S.ImpCastExprToType(LHS.get(), T, CK_BitCast);
8738   RHS = S.ImpCastExprToType(RHS.get(), T, CK_BitCast);
8739   return false;
8740 }
8741 
8742 static void diagnoseFunctionPointerToVoidComparison(Sema &S, SourceLocation Loc,
8743                                                     ExprResult &LHS,
8744                                                     ExprResult &RHS,
8745                                                     bool IsError) {
8746   S.Diag(Loc, IsError ? diag::err_typecheck_comparison_of_fptr_to_void
8747                       : diag::ext_typecheck_comparison_of_fptr_to_void)
8748     << LHS.get()->getType() << RHS.get()->getType()
8749     << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
8750 }
8751 
8752 static bool isObjCObjectLiteral(ExprResult &E) {
8753   switch (E.get()->IgnoreParenImpCasts()->getStmtClass()) {
8754   case Stmt::ObjCArrayLiteralClass:
8755   case Stmt::ObjCDictionaryLiteralClass:
8756   case Stmt::ObjCStringLiteralClass:
8757   case Stmt::ObjCBoxedExprClass:
8758     return true;
8759   default:
8760     // Note that ObjCBoolLiteral is NOT an object literal!
8761     return false;
8762   }
8763 }
8764 
8765 static bool hasIsEqualMethod(Sema &S, const Expr *LHS, const Expr *RHS) {
8766   const ObjCObjectPointerType *Type =
8767     LHS->getType()->getAs<ObjCObjectPointerType>();
8768 
8769   // If this is not actually an Objective-C object, bail out.
8770   if (!Type)
8771     return false;
8772 
8773   // Get the LHS object's interface type.
8774   QualType InterfaceType = Type->getPointeeType();
8775 
8776   // If the RHS isn't an Objective-C object, bail out.
8777   if (!RHS->getType()->isObjCObjectPointerType())
8778     return false;
8779 
8780   // Try to find the -isEqual: method.
8781   Selector IsEqualSel = S.NSAPIObj->getIsEqualSelector();
8782   ObjCMethodDecl *Method = S.LookupMethodInObjectType(IsEqualSel,
8783                                                       InterfaceType,
8784                                                       /*instance=*/true);
8785   if (!Method) {
8786     if (Type->isObjCIdType()) {
8787       // For 'id', just check the global pool.
8788       Method = S.LookupInstanceMethodInGlobalPool(IsEqualSel, SourceRange(),
8789                                                   /*receiverId=*/true);
8790     } else {
8791       // Check protocols.
8792       Method = S.LookupMethodInQualifiedType(IsEqualSel, Type,
8793                                              /*instance=*/true);
8794     }
8795   }
8796 
8797   if (!Method)
8798     return false;
8799 
8800   QualType T = Method->parameters()[0]->getType();
8801   if (!T->isObjCObjectPointerType())
8802     return false;
8803 
8804   QualType R = Method->getReturnType();
8805   if (!R->isScalarType())
8806     return false;
8807 
8808   return true;
8809 }
8810 
8811 Sema::ObjCLiteralKind Sema::CheckLiteralKind(Expr *FromE) {
8812   FromE = FromE->IgnoreParenImpCasts();
8813   switch (FromE->getStmtClass()) {
8814     default:
8815       break;
8816     case Stmt::ObjCStringLiteralClass:
8817       // "string literal"
8818       return LK_String;
8819     case Stmt::ObjCArrayLiteralClass:
8820       // "array literal"
8821       return LK_Array;
8822     case Stmt::ObjCDictionaryLiteralClass:
8823       // "dictionary literal"
8824       return LK_Dictionary;
8825     case Stmt::BlockExprClass:
8826       return LK_Block;
8827     case Stmt::ObjCBoxedExprClass: {
8828       Expr *Inner = cast<ObjCBoxedExpr>(FromE)->getSubExpr()->IgnoreParens();
8829       switch (Inner->getStmtClass()) {
8830         case Stmt::IntegerLiteralClass:
8831         case Stmt::FloatingLiteralClass:
8832         case Stmt::CharacterLiteralClass:
8833         case Stmt::ObjCBoolLiteralExprClass:
8834         case Stmt::CXXBoolLiteralExprClass:
8835           // "numeric literal"
8836           return LK_Numeric;
8837         case Stmt::ImplicitCastExprClass: {
8838           CastKind CK = cast<CastExpr>(Inner)->getCastKind();
8839           // Boolean literals can be represented by implicit casts.
8840           if (CK == CK_IntegralToBoolean || CK == CK_IntegralCast)
8841             return LK_Numeric;
8842           break;
8843         }
8844         default:
8845           break;
8846       }
8847       return LK_Boxed;
8848     }
8849   }
8850   return LK_None;
8851 }
8852 
8853 static void diagnoseObjCLiteralComparison(Sema &S, SourceLocation Loc,
8854                                           ExprResult &LHS, ExprResult &RHS,
8855                                           BinaryOperator::Opcode Opc){
8856   Expr *Literal;
8857   Expr *Other;
8858   if (isObjCObjectLiteral(LHS)) {
8859     Literal = LHS.get();
8860     Other = RHS.get();
8861   } else {
8862     Literal = RHS.get();
8863     Other = LHS.get();
8864   }
8865 
8866   // Don't warn on comparisons against nil.
8867   Other = Other->IgnoreParenCasts();
8868   if (Other->isNullPointerConstant(S.getASTContext(),
8869                                    Expr::NPC_ValueDependentIsNotNull))
8870     return;
8871 
8872   // This should be kept in sync with warn_objc_literal_comparison.
8873   // LK_String should always be after the other literals, since it has its own
8874   // warning flag.
8875   Sema::ObjCLiteralKind LiteralKind = S.CheckLiteralKind(Literal);
8876   assert(LiteralKind != Sema::LK_Block);
8877   if (LiteralKind == Sema::LK_None) {
8878     llvm_unreachable("Unknown Objective-C object literal kind");
8879   }
8880 
8881   if (LiteralKind == Sema::LK_String)
8882     S.Diag(Loc, diag::warn_objc_string_literal_comparison)
8883       << Literal->getSourceRange();
8884   else
8885     S.Diag(Loc, diag::warn_objc_literal_comparison)
8886       << LiteralKind << Literal->getSourceRange();
8887 
8888   if (BinaryOperator::isEqualityOp(Opc) &&
8889       hasIsEqualMethod(S, LHS.get(), RHS.get())) {
8890     SourceLocation Start = LHS.get()->getLocStart();
8891     SourceLocation End = S.getLocForEndOfToken(RHS.get()->getLocEnd());
8892     CharSourceRange OpRange =
8893       CharSourceRange::getCharRange(Loc, S.getLocForEndOfToken(Loc));
8894 
8895     S.Diag(Loc, diag::note_objc_literal_comparison_isequal)
8896       << FixItHint::CreateInsertion(Start, Opc == BO_EQ ? "[" : "![")
8897       << FixItHint::CreateReplacement(OpRange, " isEqual:")
8898       << FixItHint::CreateInsertion(End, "]");
8899   }
8900 }
8901 
8902 static void diagnoseLogicalNotOnLHSofComparison(Sema &S, ExprResult &LHS,
8903                                                 ExprResult &RHS,
8904                                                 SourceLocation Loc,
8905                                                 BinaryOperatorKind Opc) {
8906   // Check that left hand side is !something.
8907   UnaryOperator *UO = dyn_cast<UnaryOperator>(LHS.get()->IgnoreImpCasts());
8908   if (!UO || UO->getOpcode() != UO_LNot) return;
8909 
8910   // Only check if the right hand side is non-bool arithmetic type.
8911   if (RHS.get()->isKnownToHaveBooleanValue()) return;
8912 
8913   // Make sure that the something in !something is not bool.
8914   Expr *SubExpr = UO->getSubExpr()->IgnoreImpCasts();
8915   if (SubExpr->isKnownToHaveBooleanValue()) return;
8916 
8917   // Emit warning.
8918   S.Diag(UO->getOperatorLoc(), diag::warn_logical_not_on_lhs_of_comparison)
8919       << Loc;
8920 
8921   // First note suggest !(x < y)
8922   SourceLocation FirstOpen = SubExpr->getLocStart();
8923   SourceLocation FirstClose = RHS.get()->getLocEnd();
8924   FirstClose = S.getLocForEndOfToken(FirstClose);
8925   if (FirstClose.isInvalid())
8926     FirstOpen = SourceLocation();
8927   S.Diag(UO->getOperatorLoc(), diag::note_logical_not_fix)
8928       << FixItHint::CreateInsertion(FirstOpen, "(")
8929       << FixItHint::CreateInsertion(FirstClose, ")");
8930 
8931   // Second note suggests (!x) < y
8932   SourceLocation SecondOpen = LHS.get()->getLocStart();
8933   SourceLocation SecondClose = LHS.get()->getLocEnd();
8934   SecondClose = S.getLocForEndOfToken(SecondClose);
8935   if (SecondClose.isInvalid())
8936     SecondOpen = SourceLocation();
8937   S.Diag(UO->getOperatorLoc(), diag::note_logical_not_silence_with_parens)
8938       << FixItHint::CreateInsertion(SecondOpen, "(")
8939       << FixItHint::CreateInsertion(SecondClose, ")");
8940 }
8941 
8942 // Get the decl for a simple expression: a reference to a variable,
8943 // an implicit C++ field reference, or an implicit ObjC ivar reference.
8944 static ValueDecl *getCompareDecl(Expr *E) {
8945   if (DeclRefExpr* DR = dyn_cast<DeclRefExpr>(E))
8946     return DR->getDecl();
8947   if (ObjCIvarRefExpr* Ivar = dyn_cast<ObjCIvarRefExpr>(E)) {
8948     if (Ivar->isFreeIvar())
8949       return Ivar->getDecl();
8950   }
8951   if (MemberExpr* Mem = dyn_cast<MemberExpr>(E)) {
8952     if (Mem->isImplicitAccess())
8953       return Mem->getMemberDecl();
8954   }
8955   return nullptr;
8956 }
8957 
8958 // C99 6.5.8, C++ [expr.rel]
8959 QualType Sema::CheckCompareOperands(ExprResult &LHS, ExprResult &RHS,
8960                                     SourceLocation Loc, BinaryOperatorKind Opc,
8961                                     bool IsRelational) {
8962   checkArithmeticNull(*this, LHS, RHS, Loc, /*isCompare=*/true);
8963 
8964   // Handle vector comparisons separately.
8965   if (LHS.get()->getType()->isVectorType() ||
8966       RHS.get()->getType()->isVectorType())
8967     return CheckVectorCompareOperands(LHS, RHS, Loc, IsRelational);
8968 
8969   QualType LHSType = LHS.get()->getType();
8970   QualType RHSType = RHS.get()->getType();
8971 
8972   Expr *LHSStripped = LHS.get()->IgnoreParenImpCasts();
8973   Expr *RHSStripped = RHS.get()->IgnoreParenImpCasts();
8974 
8975   checkEnumComparison(*this, Loc, LHS.get(), RHS.get());
8976   diagnoseLogicalNotOnLHSofComparison(*this, LHS, RHS, Loc, Opc);
8977 
8978   if (!LHSType->hasFloatingRepresentation() &&
8979       !(LHSType->isBlockPointerType() && IsRelational) &&
8980       !LHS.get()->getLocStart().isMacroID() &&
8981       !RHS.get()->getLocStart().isMacroID() &&
8982       ActiveTemplateInstantiations.empty()) {
8983     // For non-floating point types, check for self-comparisons of the form
8984     // x == x, x != x, x < x, etc.  These always evaluate to a constant, and
8985     // often indicate logic errors in the program.
8986     //
8987     // NOTE: Don't warn about comparison expressions resulting from macro
8988     // expansion. Also don't warn about comparisons which are only self
8989     // comparisons within a template specialization. The warnings should catch
8990     // obvious cases in the definition of the template anyways. The idea is to
8991     // warn when the typed comparison operator will always evaluate to the same
8992     // result.
8993     ValueDecl *DL = getCompareDecl(LHSStripped);
8994     ValueDecl *DR = getCompareDecl(RHSStripped);
8995     if (DL && DR && DL == DR && !IsWithinTemplateSpecialization(DL)) {
8996       DiagRuntimeBehavior(Loc, nullptr, PDiag(diag::warn_comparison_always)
8997                           << 0 // self-
8998                           << (Opc == BO_EQ
8999                               || Opc == BO_LE
9000                               || Opc == BO_GE));
9001     } else if (DL && DR && LHSType->isArrayType() && RHSType->isArrayType() &&
9002                !DL->getType()->isReferenceType() &&
9003                !DR->getType()->isReferenceType()) {
9004         // what is it always going to eval to?
9005         char always_evals_to;
9006         switch(Opc) {
9007         case BO_EQ: // e.g. array1 == array2
9008           always_evals_to = 0; // false
9009           break;
9010         case BO_NE: // e.g. array1 != array2
9011           always_evals_to = 1; // true
9012           break;
9013         default:
9014           // best we can say is 'a constant'
9015           always_evals_to = 2; // e.g. array1 <= array2
9016           break;
9017         }
9018         DiagRuntimeBehavior(Loc, nullptr, PDiag(diag::warn_comparison_always)
9019                             << 1 // array
9020                             << always_evals_to);
9021     }
9022 
9023     if (isa<CastExpr>(LHSStripped))
9024       LHSStripped = LHSStripped->IgnoreParenCasts();
9025     if (isa<CastExpr>(RHSStripped))
9026       RHSStripped = RHSStripped->IgnoreParenCasts();
9027 
9028     // Warn about comparisons against a string constant (unless the other
9029     // operand is null), the user probably wants strcmp.
9030     Expr *literalString = nullptr;
9031     Expr *literalStringStripped = nullptr;
9032     if ((isa<StringLiteral>(LHSStripped) || isa<ObjCEncodeExpr>(LHSStripped)) &&
9033         !RHSStripped->isNullPointerConstant(Context,
9034                                             Expr::NPC_ValueDependentIsNull)) {
9035       literalString = LHS.get();
9036       literalStringStripped = LHSStripped;
9037     } else if ((isa<StringLiteral>(RHSStripped) ||
9038                 isa<ObjCEncodeExpr>(RHSStripped)) &&
9039                !LHSStripped->isNullPointerConstant(Context,
9040                                             Expr::NPC_ValueDependentIsNull)) {
9041       literalString = RHS.get();
9042       literalStringStripped = RHSStripped;
9043     }
9044 
9045     if (literalString) {
9046       DiagRuntimeBehavior(Loc, nullptr,
9047         PDiag(diag::warn_stringcompare)
9048           << isa<ObjCEncodeExpr>(literalStringStripped)
9049           << literalString->getSourceRange());
9050     }
9051   }
9052 
9053   // C99 6.5.8p3 / C99 6.5.9p4
9054   UsualArithmeticConversions(LHS, RHS);
9055   if (LHS.isInvalid() || RHS.isInvalid())
9056     return QualType();
9057 
9058   LHSType = LHS.get()->getType();
9059   RHSType = RHS.get()->getType();
9060 
9061   // The result of comparisons is 'bool' in C++, 'int' in C.
9062   QualType ResultTy = Context.getLogicalOperationType();
9063 
9064   if (IsRelational) {
9065     if (LHSType->isRealType() && RHSType->isRealType())
9066       return ResultTy;
9067   } else {
9068     // Check for comparisons of floating point operands using != and ==.
9069     if (LHSType->hasFloatingRepresentation())
9070       CheckFloatComparison(Loc, LHS.get(), RHS.get());
9071 
9072     if (LHSType->isArithmeticType() && RHSType->isArithmeticType())
9073       return ResultTy;
9074   }
9075 
9076   const Expr::NullPointerConstantKind LHSNullKind =
9077       LHS.get()->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull);
9078   const Expr::NullPointerConstantKind RHSNullKind =
9079       RHS.get()->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull);
9080   bool LHSIsNull = LHSNullKind != Expr::NPCK_NotNull;
9081   bool RHSIsNull = RHSNullKind != Expr::NPCK_NotNull;
9082 
9083   if (!IsRelational && LHSIsNull != RHSIsNull) {
9084     bool IsEquality = Opc == BO_EQ;
9085     if (RHSIsNull)
9086       DiagnoseAlwaysNonNullPointer(LHS.get(), RHSNullKind, IsEquality,
9087                                    RHS.get()->getSourceRange());
9088     else
9089       DiagnoseAlwaysNonNullPointer(RHS.get(), LHSNullKind, IsEquality,
9090                                    LHS.get()->getSourceRange());
9091   }
9092 
9093   // All of the following pointer-related warnings are GCC extensions, except
9094   // when handling null pointer constants.
9095   if (LHSType->isPointerType() && RHSType->isPointerType()) { // C99 6.5.8p2
9096     QualType LCanPointeeTy =
9097       LHSType->castAs<PointerType>()->getPointeeType().getCanonicalType();
9098     QualType RCanPointeeTy =
9099       RHSType->castAs<PointerType>()->getPointeeType().getCanonicalType();
9100 
9101     if (getLangOpts().CPlusPlus) {
9102       if (LCanPointeeTy == RCanPointeeTy)
9103         return ResultTy;
9104       if (!IsRelational &&
9105           (LCanPointeeTy->isVoidType() || RCanPointeeTy->isVoidType())) {
9106         // Valid unless comparison between non-null pointer and function pointer
9107         // This is a gcc extension compatibility comparison.
9108         // In a SFINAE context, we treat this as a hard error to maintain
9109         // conformance with the C++ standard.
9110         if ((LCanPointeeTy->isFunctionType() || RCanPointeeTy->isFunctionType())
9111             && !LHSIsNull && !RHSIsNull) {
9112           diagnoseFunctionPointerToVoidComparison(
9113               *this, Loc, LHS, RHS, /*isError*/ (bool)isSFINAEContext());
9114 
9115           if (isSFINAEContext())
9116             return QualType();
9117 
9118           RHS = ImpCastExprToType(RHS.get(), LHSType, CK_BitCast);
9119           return ResultTy;
9120         }
9121       }
9122 
9123       if (convertPointersToCompositeType(*this, Loc, LHS, RHS))
9124         return QualType();
9125       else
9126         return ResultTy;
9127     }
9128     // C99 6.5.9p2 and C99 6.5.8p2
9129     if (Context.typesAreCompatible(LCanPointeeTy.getUnqualifiedType(),
9130                                    RCanPointeeTy.getUnqualifiedType())) {
9131       // Valid unless a relational comparison of function pointers
9132       if (IsRelational && LCanPointeeTy->isFunctionType()) {
9133         Diag(Loc, diag::ext_typecheck_ordered_comparison_of_function_pointers)
9134           << LHSType << RHSType << LHS.get()->getSourceRange()
9135           << RHS.get()->getSourceRange();
9136       }
9137     } else if (!IsRelational &&
9138                (LCanPointeeTy->isVoidType() || RCanPointeeTy->isVoidType())) {
9139       // Valid unless comparison between non-null pointer and function pointer
9140       if ((LCanPointeeTy->isFunctionType() || RCanPointeeTy->isFunctionType())
9141           && !LHSIsNull && !RHSIsNull)
9142         diagnoseFunctionPointerToVoidComparison(*this, Loc, LHS, RHS,
9143                                                 /*isError*/false);
9144     } else {
9145       // Invalid
9146       diagnoseDistinctPointerComparison(*this, Loc, LHS, RHS, /*isError*/false);
9147     }
9148     if (LCanPointeeTy != RCanPointeeTy) {
9149       // Treat NULL constant as a special case in OpenCL.
9150       if (getLangOpts().OpenCL && !LHSIsNull && !RHSIsNull) {
9151         const PointerType *LHSPtr = LHSType->getAs<PointerType>();
9152         if (!LHSPtr->isAddressSpaceOverlapping(*RHSType->getAs<PointerType>())) {
9153           Diag(Loc,
9154                diag::err_typecheck_op_on_nonoverlapping_address_space_pointers)
9155               << LHSType << RHSType << 0 /* comparison */
9156               << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
9157         }
9158       }
9159       unsigned AddrSpaceL = LCanPointeeTy.getAddressSpace();
9160       unsigned AddrSpaceR = RCanPointeeTy.getAddressSpace();
9161       CastKind Kind = AddrSpaceL != AddrSpaceR ? CK_AddressSpaceConversion
9162                                                : CK_BitCast;
9163       if (LHSIsNull && !RHSIsNull)
9164         LHS = ImpCastExprToType(LHS.get(), RHSType, Kind);
9165       else
9166         RHS = ImpCastExprToType(RHS.get(), LHSType, Kind);
9167     }
9168     return ResultTy;
9169   }
9170 
9171   if (getLangOpts().CPlusPlus) {
9172     // Comparison of nullptr_t with itself.
9173     if (LHSType->isNullPtrType() && RHSType->isNullPtrType())
9174       return ResultTy;
9175 
9176     // Comparison of pointers with null pointer constants and equality
9177     // comparisons of member pointers to null pointer constants.
9178     if (RHSIsNull &&
9179         ((LHSType->isAnyPointerType() || LHSType->isNullPtrType()) ||
9180          (!IsRelational &&
9181           (LHSType->isMemberPointerType() || LHSType->isBlockPointerType())))) {
9182       RHS = ImpCastExprToType(RHS.get(), LHSType,
9183                         LHSType->isMemberPointerType()
9184                           ? CK_NullToMemberPointer
9185                           : CK_NullToPointer);
9186       return ResultTy;
9187     }
9188     if (LHSIsNull &&
9189         ((RHSType->isAnyPointerType() || RHSType->isNullPtrType()) ||
9190          (!IsRelational &&
9191           (RHSType->isMemberPointerType() || RHSType->isBlockPointerType())))) {
9192       LHS = ImpCastExprToType(LHS.get(), RHSType,
9193                         RHSType->isMemberPointerType()
9194                           ? CK_NullToMemberPointer
9195                           : CK_NullToPointer);
9196       return ResultTy;
9197     }
9198 
9199     // Comparison of member pointers.
9200     if (!IsRelational &&
9201         LHSType->isMemberPointerType() && RHSType->isMemberPointerType()) {
9202       if (convertPointersToCompositeType(*this, Loc, LHS, RHS))
9203         return QualType();
9204       else
9205         return ResultTy;
9206     }
9207 
9208     // Handle scoped enumeration types specifically, since they don't promote
9209     // to integers.
9210     if (LHS.get()->getType()->isEnumeralType() &&
9211         Context.hasSameUnqualifiedType(LHS.get()->getType(),
9212                                        RHS.get()->getType()))
9213       return ResultTy;
9214   }
9215 
9216   // Handle block pointer types.
9217   if (!IsRelational && LHSType->isBlockPointerType() &&
9218       RHSType->isBlockPointerType()) {
9219     QualType lpointee = LHSType->castAs<BlockPointerType>()->getPointeeType();
9220     QualType rpointee = RHSType->castAs<BlockPointerType>()->getPointeeType();
9221 
9222     if (!LHSIsNull && !RHSIsNull &&
9223         !Context.typesAreCompatible(lpointee, rpointee)) {
9224       Diag(Loc, diag::err_typecheck_comparison_of_distinct_blocks)
9225         << LHSType << RHSType << LHS.get()->getSourceRange()
9226         << RHS.get()->getSourceRange();
9227     }
9228     RHS = ImpCastExprToType(RHS.get(), LHSType, CK_BitCast);
9229     return ResultTy;
9230   }
9231 
9232   // Allow block pointers to be compared with null pointer constants.
9233   if (!IsRelational
9234       && ((LHSType->isBlockPointerType() && RHSType->isPointerType())
9235           || (LHSType->isPointerType() && RHSType->isBlockPointerType()))) {
9236     if (!LHSIsNull && !RHSIsNull) {
9237       if (!((RHSType->isPointerType() && RHSType->castAs<PointerType>()
9238              ->getPointeeType()->isVoidType())
9239             || (LHSType->isPointerType() && LHSType->castAs<PointerType>()
9240                 ->getPointeeType()->isVoidType())))
9241         Diag(Loc, diag::err_typecheck_comparison_of_distinct_blocks)
9242           << LHSType << RHSType << LHS.get()->getSourceRange()
9243           << RHS.get()->getSourceRange();
9244     }
9245     if (LHSIsNull && !RHSIsNull)
9246       LHS = ImpCastExprToType(LHS.get(), RHSType,
9247                               RHSType->isPointerType() ? CK_BitCast
9248                                 : CK_AnyPointerToBlockPointerCast);
9249     else
9250       RHS = ImpCastExprToType(RHS.get(), LHSType,
9251                               LHSType->isPointerType() ? CK_BitCast
9252                                 : CK_AnyPointerToBlockPointerCast);
9253     return ResultTy;
9254   }
9255 
9256   if (LHSType->isObjCObjectPointerType() ||
9257       RHSType->isObjCObjectPointerType()) {
9258     const PointerType *LPT = LHSType->getAs<PointerType>();
9259     const PointerType *RPT = RHSType->getAs<PointerType>();
9260     if (LPT || RPT) {
9261       bool LPtrToVoid = LPT ? LPT->getPointeeType()->isVoidType() : false;
9262       bool RPtrToVoid = RPT ? RPT->getPointeeType()->isVoidType() : false;
9263 
9264       if (!LPtrToVoid && !RPtrToVoid &&
9265           !Context.typesAreCompatible(LHSType, RHSType)) {
9266         diagnoseDistinctPointerComparison(*this, Loc, LHS, RHS,
9267                                           /*isError*/false);
9268       }
9269       if (LHSIsNull && !RHSIsNull) {
9270         Expr *E = LHS.get();
9271         if (getLangOpts().ObjCAutoRefCount)
9272           CheckObjCARCConversion(SourceRange(), RHSType, E, CCK_ImplicitConversion);
9273         LHS = ImpCastExprToType(E, RHSType,
9274                                 RPT ? CK_BitCast :CK_CPointerToObjCPointerCast);
9275       }
9276       else {
9277         Expr *E = RHS.get();
9278         if (getLangOpts().ObjCAutoRefCount)
9279           CheckObjCARCConversion(SourceRange(), LHSType, E,
9280                                  CCK_ImplicitConversion, /*Diagnose=*/true,
9281                                  /*DiagnoseCFAudited=*/false, Opc);
9282         RHS = ImpCastExprToType(E, LHSType,
9283                                 LPT ? CK_BitCast :CK_CPointerToObjCPointerCast);
9284       }
9285       return ResultTy;
9286     }
9287     if (LHSType->isObjCObjectPointerType() &&
9288         RHSType->isObjCObjectPointerType()) {
9289       if (!Context.areComparableObjCPointerTypes(LHSType, RHSType))
9290         diagnoseDistinctPointerComparison(*this, Loc, LHS, RHS,
9291                                           /*isError*/false);
9292       if (isObjCObjectLiteral(LHS) || isObjCObjectLiteral(RHS))
9293         diagnoseObjCLiteralComparison(*this, Loc, LHS, RHS, Opc);
9294 
9295       if (LHSIsNull && !RHSIsNull)
9296         LHS = ImpCastExprToType(LHS.get(), RHSType, CK_BitCast);
9297       else
9298         RHS = ImpCastExprToType(RHS.get(), LHSType, CK_BitCast);
9299       return ResultTy;
9300     }
9301   }
9302   if ((LHSType->isAnyPointerType() && RHSType->isIntegerType()) ||
9303       (LHSType->isIntegerType() && RHSType->isAnyPointerType())) {
9304     unsigned DiagID = 0;
9305     bool isError = false;
9306     if (LangOpts.DebuggerSupport) {
9307       // Under a debugger, allow the comparison of pointers to integers,
9308       // since users tend to want to compare addresses.
9309     } else if ((LHSIsNull && LHSType->isIntegerType()) ||
9310         (RHSIsNull && RHSType->isIntegerType())) {
9311       if (IsRelational && !getLangOpts().CPlusPlus)
9312         DiagID = diag::ext_typecheck_ordered_comparison_of_pointer_and_zero;
9313     } else if (IsRelational && !getLangOpts().CPlusPlus)
9314       DiagID = diag::ext_typecheck_ordered_comparison_of_pointer_integer;
9315     else if (getLangOpts().CPlusPlus) {
9316       DiagID = diag::err_typecheck_comparison_of_pointer_integer;
9317       isError = true;
9318     } else
9319       DiagID = diag::ext_typecheck_comparison_of_pointer_integer;
9320 
9321     if (DiagID) {
9322       Diag(Loc, DiagID)
9323         << LHSType << RHSType << LHS.get()->getSourceRange()
9324         << RHS.get()->getSourceRange();
9325       if (isError)
9326         return QualType();
9327     }
9328 
9329     if (LHSType->isIntegerType())
9330       LHS = ImpCastExprToType(LHS.get(), RHSType,
9331                         LHSIsNull ? CK_NullToPointer : CK_IntegralToPointer);
9332     else
9333       RHS = ImpCastExprToType(RHS.get(), LHSType,
9334                         RHSIsNull ? CK_NullToPointer : CK_IntegralToPointer);
9335     return ResultTy;
9336   }
9337 
9338   // Handle block pointers.
9339   if (!IsRelational && RHSIsNull
9340       && LHSType->isBlockPointerType() && RHSType->isIntegerType()) {
9341     RHS = ImpCastExprToType(RHS.get(), LHSType, CK_NullToPointer);
9342     return ResultTy;
9343   }
9344   if (!IsRelational && LHSIsNull
9345       && LHSType->isIntegerType() && RHSType->isBlockPointerType()) {
9346     LHS = ImpCastExprToType(LHS.get(), RHSType, CK_NullToPointer);
9347     return ResultTy;
9348   }
9349 
9350   return InvalidOperands(Loc, LHS, RHS);
9351 }
9352 
9353 
9354 // Return a signed type that is of identical size and number of elements.
9355 // For floating point vectors, return an integer type of identical size
9356 // and number of elements.
9357 QualType Sema::GetSignedVectorType(QualType V) {
9358   const VectorType *VTy = V->getAs<VectorType>();
9359   unsigned TypeSize = Context.getTypeSize(VTy->getElementType());
9360   if (TypeSize == Context.getTypeSize(Context.CharTy))
9361     return Context.getExtVectorType(Context.CharTy, VTy->getNumElements());
9362   else if (TypeSize == Context.getTypeSize(Context.ShortTy))
9363     return Context.getExtVectorType(Context.ShortTy, VTy->getNumElements());
9364   else if (TypeSize == Context.getTypeSize(Context.IntTy))
9365     return Context.getExtVectorType(Context.IntTy, VTy->getNumElements());
9366   else if (TypeSize == Context.getTypeSize(Context.LongTy))
9367     return Context.getExtVectorType(Context.LongTy, VTy->getNumElements());
9368   assert(TypeSize == Context.getTypeSize(Context.LongLongTy) &&
9369          "Unhandled vector element size in vector compare");
9370   return Context.getExtVectorType(Context.LongLongTy, VTy->getNumElements());
9371 }
9372 
9373 /// CheckVectorCompareOperands - vector comparisons are a clang extension that
9374 /// operates on extended vector types.  Instead of producing an IntTy result,
9375 /// like a scalar comparison, a vector comparison produces a vector of integer
9376 /// types.
9377 QualType Sema::CheckVectorCompareOperands(ExprResult &LHS, ExprResult &RHS,
9378                                           SourceLocation Loc,
9379                                           bool IsRelational) {
9380   // Check to make sure we're operating on vectors of the same type and width,
9381   // Allowing one side to be a scalar of element type.
9382   QualType vType = CheckVectorOperands(LHS, RHS, Loc, /*isCompAssign*/false,
9383                               /*AllowBothBool*/true,
9384                               /*AllowBoolConversions*/getLangOpts().ZVector);
9385   if (vType.isNull())
9386     return vType;
9387 
9388   QualType LHSType = LHS.get()->getType();
9389 
9390   // If AltiVec, the comparison results in a numeric type, i.e.
9391   // bool for C++, int for C
9392   if (getLangOpts().AltiVec &&
9393       vType->getAs<VectorType>()->getVectorKind() == VectorType::AltiVecVector)
9394     return Context.getLogicalOperationType();
9395 
9396   // For non-floating point types, check for self-comparisons of the form
9397   // x == x, x != x, x < x, etc.  These always evaluate to a constant, and
9398   // often indicate logic errors in the program.
9399   if (!LHSType->hasFloatingRepresentation() &&
9400       ActiveTemplateInstantiations.empty()) {
9401     if (DeclRefExpr* DRL
9402           = dyn_cast<DeclRefExpr>(LHS.get()->IgnoreParenImpCasts()))
9403       if (DeclRefExpr* DRR
9404             = dyn_cast<DeclRefExpr>(RHS.get()->IgnoreParenImpCasts()))
9405         if (DRL->getDecl() == DRR->getDecl())
9406           DiagRuntimeBehavior(Loc, nullptr,
9407                               PDiag(diag::warn_comparison_always)
9408                                 << 0 // self-
9409                                 << 2 // "a constant"
9410                               );
9411   }
9412 
9413   // Check for comparisons of floating point operands using != and ==.
9414   if (!IsRelational && LHSType->hasFloatingRepresentation()) {
9415     assert (RHS.get()->getType()->hasFloatingRepresentation());
9416     CheckFloatComparison(Loc, LHS.get(), RHS.get());
9417   }
9418 
9419   // Return a signed type for the vector.
9420   return GetSignedVectorType(LHSType);
9421 }
9422 
9423 QualType Sema::CheckVectorLogicalOperands(ExprResult &LHS, ExprResult &RHS,
9424                                           SourceLocation Loc) {
9425   // Ensure that either both operands are of the same vector type, or
9426   // one operand is of a vector type and the other is of its element type.
9427   QualType vType = CheckVectorOperands(LHS, RHS, Loc, false,
9428                                        /*AllowBothBool*/true,
9429                                        /*AllowBoolConversions*/false);
9430   if (vType.isNull())
9431     return InvalidOperands(Loc, LHS, RHS);
9432   if (getLangOpts().OpenCL && getLangOpts().OpenCLVersion < 120 &&
9433       vType->hasFloatingRepresentation())
9434     return InvalidOperands(Loc, LHS, RHS);
9435 
9436   return GetSignedVectorType(LHS.get()->getType());
9437 }
9438 
9439 inline QualType Sema::CheckBitwiseOperands(
9440   ExprResult &LHS, ExprResult &RHS, SourceLocation Loc, bool IsCompAssign) {
9441   checkArithmeticNull(*this, LHS, RHS, Loc, /*isCompare=*/false);
9442 
9443   if (LHS.get()->getType()->isVectorType() ||
9444       RHS.get()->getType()->isVectorType()) {
9445     if (LHS.get()->getType()->hasIntegerRepresentation() &&
9446         RHS.get()->getType()->hasIntegerRepresentation())
9447       return CheckVectorOperands(LHS, RHS, Loc, IsCompAssign,
9448                         /*AllowBothBool*/true,
9449                         /*AllowBoolConversions*/getLangOpts().ZVector);
9450     return InvalidOperands(Loc, LHS, RHS);
9451   }
9452 
9453   ExprResult LHSResult = LHS, RHSResult = RHS;
9454   QualType compType = UsualArithmeticConversions(LHSResult, RHSResult,
9455                                                  IsCompAssign);
9456   if (LHSResult.isInvalid() || RHSResult.isInvalid())
9457     return QualType();
9458   LHS = LHSResult.get();
9459   RHS = RHSResult.get();
9460 
9461   if (!compType.isNull() && compType->isIntegralOrUnscopedEnumerationType())
9462     return compType;
9463   return InvalidOperands(Loc, LHS, RHS);
9464 }
9465 
9466 // C99 6.5.[13,14]
9467 inline QualType Sema::CheckLogicalOperands(ExprResult &LHS, ExprResult &RHS,
9468                                            SourceLocation Loc,
9469                                            BinaryOperatorKind Opc) {
9470   // Check vector operands differently.
9471   if (LHS.get()->getType()->isVectorType() || RHS.get()->getType()->isVectorType())
9472     return CheckVectorLogicalOperands(LHS, RHS, Loc);
9473 
9474   // Diagnose cases where the user write a logical and/or but probably meant a
9475   // bitwise one.  We do this when the LHS is a non-bool integer and the RHS
9476   // is a constant.
9477   if (LHS.get()->getType()->isIntegerType() &&
9478       !LHS.get()->getType()->isBooleanType() &&
9479       RHS.get()->getType()->isIntegerType() && !RHS.get()->isValueDependent() &&
9480       // Don't warn in macros or template instantiations.
9481       !Loc.isMacroID() && ActiveTemplateInstantiations.empty()) {
9482     // If the RHS can be constant folded, and if it constant folds to something
9483     // that isn't 0 or 1 (which indicate a potential logical operation that
9484     // happened to fold to true/false) then warn.
9485     // Parens on the RHS are ignored.
9486     llvm::APSInt Result;
9487     if (RHS.get()->EvaluateAsInt(Result, Context))
9488       if ((getLangOpts().Bool && !RHS.get()->getType()->isBooleanType() &&
9489            !RHS.get()->getExprLoc().isMacroID()) ||
9490           (Result != 0 && Result != 1)) {
9491         Diag(Loc, diag::warn_logical_instead_of_bitwise)
9492           << RHS.get()->getSourceRange()
9493           << (Opc == BO_LAnd ? "&&" : "||");
9494         // Suggest replacing the logical operator with the bitwise version
9495         Diag(Loc, diag::note_logical_instead_of_bitwise_change_operator)
9496             << (Opc == BO_LAnd ? "&" : "|")
9497             << FixItHint::CreateReplacement(SourceRange(
9498                                                  Loc, getLocForEndOfToken(Loc)),
9499                                             Opc == BO_LAnd ? "&" : "|");
9500         if (Opc == BO_LAnd)
9501           // Suggest replacing "Foo() && kNonZero" with "Foo()"
9502           Diag(Loc, diag::note_logical_instead_of_bitwise_remove_constant)
9503               << FixItHint::CreateRemoval(
9504                   SourceRange(getLocForEndOfToken(LHS.get()->getLocEnd()),
9505                               RHS.get()->getLocEnd()));
9506       }
9507   }
9508 
9509   if (!Context.getLangOpts().CPlusPlus) {
9510     // OpenCL v1.1 s6.3.g: The logical operators and (&&), or (||) do
9511     // not operate on the built-in scalar and vector float types.
9512     if (Context.getLangOpts().OpenCL &&
9513         Context.getLangOpts().OpenCLVersion < 120) {
9514       if (LHS.get()->getType()->isFloatingType() ||
9515           RHS.get()->getType()->isFloatingType())
9516         return InvalidOperands(Loc, LHS, RHS);
9517     }
9518 
9519     LHS = UsualUnaryConversions(LHS.get());
9520     if (LHS.isInvalid())
9521       return QualType();
9522 
9523     RHS = UsualUnaryConversions(RHS.get());
9524     if (RHS.isInvalid())
9525       return QualType();
9526 
9527     if (!LHS.get()->getType()->isScalarType() ||
9528         !RHS.get()->getType()->isScalarType())
9529       return InvalidOperands(Loc, LHS, RHS);
9530 
9531     return Context.IntTy;
9532   }
9533 
9534   // The following is safe because we only use this method for
9535   // non-overloadable operands.
9536 
9537   // C++ [expr.log.and]p1
9538   // C++ [expr.log.or]p1
9539   // The operands are both contextually converted to type bool.
9540   ExprResult LHSRes = PerformContextuallyConvertToBool(LHS.get());
9541   if (LHSRes.isInvalid())
9542     return InvalidOperands(Loc, LHS, RHS);
9543   LHS = LHSRes;
9544 
9545   ExprResult RHSRes = PerformContextuallyConvertToBool(RHS.get());
9546   if (RHSRes.isInvalid())
9547     return InvalidOperands(Loc, LHS, RHS);
9548   RHS = RHSRes;
9549 
9550   // C++ [expr.log.and]p2
9551   // C++ [expr.log.or]p2
9552   // The result is a bool.
9553   return Context.BoolTy;
9554 }
9555 
9556 static bool IsReadonlyMessage(Expr *E, Sema &S) {
9557   const MemberExpr *ME = dyn_cast<MemberExpr>(E);
9558   if (!ME) return false;
9559   if (!isa<FieldDecl>(ME->getMemberDecl())) return false;
9560   ObjCMessageExpr *Base =
9561     dyn_cast<ObjCMessageExpr>(ME->getBase()->IgnoreParenImpCasts());
9562   if (!Base) return false;
9563   return Base->getMethodDecl() != nullptr;
9564 }
9565 
9566 /// Is the given expression (which must be 'const') a reference to a
9567 /// variable which was originally non-const, but which has become
9568 /// 'const' due to being captured within a block?
9569 enum NonConstCaptureKind { NCCK_None, NCCK_Block, NCCK_Lambda };
9570 static NonConstCaptureKind isReferenceToNonConstCapture(Sema &S, Expr *E) {
9571   assert(E->isLValue() && E->getType().isConstQualified());
9572   E = E->IgnoreParens();
9573 
9574   // Must be a reference to a declaration from an enclosing scope.
9575   DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E);
9576   if (!DRE) return NCCK_None;
9577   if (!DRE->refersToEnclosingVariableOrCapture()) return NCCK_None;
9578 
9579   // The declaration must be a variable which is not declared 'const'.
9580   VarDecl *var = dyn_cast<VarDecl>(DRE->getDecl());
9581   if (!var) return NCCK_None;
9582   if (var->getType().isConstQualified()) return NCCK_None;
9583   assert(var->hasLocalStorage() && "capture added 'const' to non-local?");
9584 
9585   // Decide whether the first capture was for a block or a lambda.
9586   DeclContext *DC = S.CurContext, *Prev = nullptr;
9587   while (DC != var->getDeclContext()) {
9588     Prev = DC;
9589     DC = DC->getParent();
9590   }
9591   // Unless we have an init-capture, we've gone one step too far.
9592   if (!var->isInitCapture())
9593     DC = Prev;
9594   return (isa<BlockDecl>(DC) ? NCCK_Block : NCCK_Lambda);
9595 }
9596 
9597 static bool IsTypeModifiable(QualType Ty, bool IsDereference) {
9598   Ty = Ty.getNonReferenceType();
9599   if (IsDereference && Ty->isPointerType())
9600     Ty = Ty->getPointeeType();
9601   return !Ty.isConstQualified();
9602 }
9603 
9604 /// Emit the "read-only variable not assignable" error and print notes to give
9605 /// more information about why the variable is not assignable, such as pointing
9606 /// to the declaration of a const variable, showing that a method is const, or
9607 /// that the function is returning a const reference.
9608 static void DiagnoseConstAssignment(Sema &S, const Expr *E,
9609                                     SourceLocation Loc) {
9610   // Update err_typecheck_assign_const and note_typecheck_assign_const
9611   // when this enum is changed.
9612   enum {
9613     ConstFunction,
9614     ConstVariable,
9615     ConstMember,
9616     ConstMethod,
9617     ConstUnknown,  // Keep as last element
9618   };
9619 
9620   SourceRange ExprRange = E->getSourceRange();
9621 
9622   // Only emit one error on the first const found.  All other consts will emit
9623   // a note to the error.
9624   bool DiagnosticEmitted = false;
9625 
9626   // Track if the current expression is the result of a derefence, and if the
9627   // next checked expression is the result of a derefence.
9628   bool IsDereference = false;
9629   bool NextIsDereference = false;
9630 
9631   // Loop to process MemberExpr chains.
9632   while (true) {
9633     IsDereference = NextIsDereference;
9634     NextIsDereference = false;
9635 
9636     E = E->IgnoreParenImpCasts();
9637     if (const MemberExpr *ME = dyn_cast<MemberExpr>(E)) {
9638       NextIsDereference = ME->isArrow();
9639       const ValueDecl *VD = ME->getMemberDecl();
9640       if (const FieldDecl *Field = dyn_cast<FieldDecl>(VD)) {
9641         // Mutable fields can be modified even if the class is const.
9642         if (Field->isMutable()) {
9643           assert(DiagnosticEmitted && "Expected diagnostic not emitted.");
9644           break;
9645         }
9646 
9647         if (!IsTypeModifiable(Field->getType(), IsDereference)) {
9648           if (!DiagnosticEmitted) {
9649             S.Diag(Loc, diag::err_typecheck_assign_const)
9650                 << ExprRange << ConstMember << false /*static*/ << Field
9651                 << Field->getType();
9652             DiagnosticEmitted = true;
9653           }
9654           S.Diag(VD->getLocation(), diag::note_typecheck_assign_const)
9655               << ConstMember << false /*static*/ << Field << Field->getType()
9656               << Field->getSourceRange();
9657         }
9658         E = ME->getBase();
9659         continue;
9660       } else if (const VarDecl *VDecl = dyn_cast<VarDecl>(VD)) {
9661         if (VDecl->getType().isConstQualified()) {
9662           if (!DiagnosticEmitted) {
9663             S.Diag(Loc, diag::err_typecheck_assign_const)
9664                 << ExprRange << ConstMember << true /*static*/ << VDecl
9665                 << VDecl->getType();
9666             DiagnosticEmitted = true;
9667           }
9668           S.Diag(VD->getLocation(), diag::note_typecheck_assign_const)
9669               << ConstMember << true /*static*/ << VDecl << VDecl->getType()
9670               << VDecl->getSourceRange();
9671         }
9672         // Static fields do not inherit constness from parents.
9673         break;
9674       }
9675       break;
9676     } // End MemberExpr
9677     break;
9678   }
9679 
9680   if (const CallExpr *CE = dyn_cast<CallExpr>(E)) {
9681     // Function calls
9682     const FunctionDecl *FD = CE->getDirectCallee();
9683     if (FD && !IsTypeModifiable(FD->getReturnType(), IsDereference)) {
9684       if (!DiagnosticEmitted) {
9685         S.Diag(Loc, diag::err_typecheck_assign_const) << ExprRange
9686                                                       << ConstFunction << FD;
9687         DiagnosticEmitted = true;
9688       }
9689       S.Diag(FD->getReturnTypeSourceRange().getBegin(),
9690              diag::note_typecheck_assign_const)
9691           << ConstFunction << FD << FD->getReturnType()
9692           << FD->getReturnTypeSourceRange();
9693     }
9694   } else if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E)) {
9695     // Point to variable declaration.
9696     if (const ValueDecl *VD = DRE->getDecl()) {
9697       if (!IsTypeModifiable(VD->getType(), IsDereference)) {
9698         if (!DiagnosticEmitted) {
9699           S.Diag(Loc, diag::err_typecheck_assign_const)
9700               << ExprRange << ConstVariable << VD << VD->getType();
9701           DiagnosticEmitted = true;
9702         }
9703         S.Diag(VD->getLocation(), diag::note_typecheck_assign_const)
9704             << ConstVariable << VD << VD->getType() << VD->getSourceRange();
9705       }
9706     }
9707   } else if (isa<CXXThisExpr>(E)) {
9708     if (const DeclContext *DC = S.getFunctionLevelDeclContext()) {
9709       if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(DC)) {
9710         if (MD->isConst()) {
9711           if (!DiagnosticEmitted) {
9712             S.Diag(Loc, diag::err_typecheck_assign_const) << ExprRange
9713                                                           << ConstMethod << MD;
9714             DiagnosticEmitted = true;
9715           }
9716           S.Diag(MD->getLocation(), diag::note_typecheck_assign_const)
9717               << ConstMethod << MD << MD->getSourceRange();
9718         }
9719       }
9720     }
9721   }
9722 
9723   if (DiagnosticEmitted)
9724     return;
9725 
9726   // Can't determine a more specific message, so display the generic error.
9727   S.Diag(Loc, diag::err_typecheck_assign_const) << ExprRange << ConstUnknown;
9728 }
9729 
9730 /// CheckForModifiableLvalue - Verify that E is a modifiable lvalue.  If not,
9731 /// emit an error and return true.  If so, return false.
9732 static bool CheckForModifiableLvalue(Expr *E, SourceLocation Loc, Sema &S) {
9733   assert(!E->hasPlaceholderType(BuiltinType::PseudoObject));
9734   SourceLocation OrigLoc = Loc;
9735   Expr::isModifiableLvalueResult IsLV = E->isModifiableLvalue(S.Context,
9736                                                               &Loc);
9737   if (IsLV == Expr::MLV_ClassTemporary && IsReadonlyMessage(E, S))
9738     IsLV = Expr::MLV_InvalidMessageExpression;
9739   if (IsLV == Expr::MLV_Valid)
9740     return false;
9741 
9742   unsigned DiagID = 0;
9743   bool NeedType = false;
9744   switch (IsLV) { // C99 6.5.16p2
9745   case Expr::MLV_ConstQualified:
9746     // Use a specialized diagnostic when we're assigning to an object
9747     // from an enclosing function or block.
9748     if (NonConstCaptureKind NCCK = isReferenceToNonConstCapture(S, E)) {
9749       if (NCCK == NCCK_Block)
9750         DiagID = diag::err_block_decl_ref_not_modifiable_lvalue;
9751       else
9752         DiagID = diag::err_lambda_decl_ref_not_modifiable_lvalue;
9753       break;
9754     }
9755 
9756     // In ARC, use some specialized diagnostics for occasions where we
9757     // infer 'const'.  These are always pseudo-strong variables.
9758     if (S.getLangOpts().ObjCAutoRefCount) {
9759       DeclRefExpr *declRef = dyn_cast<DeclRefExpr>(E->IgnoreParenCasts());
9760       if (declRef && isa<VarDecl>(declRef->getDecl())) {
9761         VarDecl *var = cast<VarDecl>(declRef->getDecl());
9762 
9763         // Use the normal diagnostic if it's pseudo-__strong but the
9764         // user actually wrote 'const'.
9765         if (var->isARCPseudoStrong() &&
9766             (!var->getTypeSourceInfo() ||
9767              !var->getTypeSourceInfo()->getType().isConstQualified())) {
9768           // There are two pseudo-strong cases:
9769           //  - self
9770           ObjCMethodDecl *method = S.getCurMethodDecl();
9771           if (method && var == method->getSelfDecl())
9772             DiagID = method->isClassMethod()
9773               ? diag::err_typecheck_arc_assign_self_class_method
9774               : diag::err_typecheck_arc_assign_self;
9775 
9776           //  - fast enumeration variables
9777           else
9778             DiagID = diag::err_typecheck_arr_assign_enumeration;
9779 
9780           SourceRange Assign;
9781           if (Loc != OrigLoc)
9782             Assign = SourceRange(OrigLoc, OrigLoc);
9783           S.Diag(Loc, DiagID) << E->getSourceRange() << Assign;
9784           // We need to preserve the AST regardless, so migration tool
9785           // can do its job.
9786           return false;
9787         }
9788       }
9789     }
9790 
9791     // If none of the special cases above are triggered, then this is a
9792     // simple const assignment.
9793     if (DiagID == 0) {
9794       DiagnoseConstAssignment(S, E, Loc);
9795       return true;
9796     }
9797 
9798     break;
9799   case Expr::MLV_ConstAddrSpace:
9800     DiagnoseConstAssignment(S, E, Loc);
9801     return true;
9802   case Expr::MLV_ArrayType:
9803   case Expr::MLV_ArrayTemporary:
9804     DiagID = diag::err_typecheck_array_not_modifiable_lvalue;
9805     NeedType = true;
9806     break;
9807   case Expr::MLV_NotObjectType:
9808     DiagID = diag::err_typecheck_non_object_not_modifiable_lvalue;
9809     NeedType = true;
9810     break;
9811   case Expr::MLV_LValueCast:
9812     DiagID = diag::err_typecheck_lvalue_casts_not_supported;
9813     break;
9814   case Expr::MLV_Valid:
9815     llvm_unreachable("did not take early return for MLV_Valid");
9816   case Expr::MLV_InvalidExpression:
9817   case Expr::MLV_MemberFunction:
9818   case Expr::MLV_ClassTemporary:
9819     DiagID = diag::err_typecheck_expression_not_modifiable_lvalue;
9820     break;
9821   case Expr::MLV_IncompleteType:
9822   case Expr::MLV_IncompleteVoidType:
9823     return S.RequireCompleteType(Loc, E->getType(),
9824              diag::err_typecheck_incomplete_type_not_modifiable_lvalue, E);
9825   case Expr::MLV_DuplicateVectorComponents:
9826     DiagID = diag::err_typecheck_duplicate_vector_components_not_mlvalue;
9827     break;
9828   case Expr::MLV_NoSetterProperty:
9829     llvm_unreachable("readonly properties should be processed differently");
9830   case Expr::MLV_InvalidMessageExpression:
9831     DiagID = diag::error_readonly_message_assignment;
9832     break;
9833   case Expr::MLV_SubObjCPropertySetting:
9834     DiagID = diag::error_no_subobject_property_setting;
9835     break;
9836   }
9837 
9838   SourceRange Assign;
9839   if (Loc != OrigLoc)
9840     Assign = SourceRange(OrigLoc, OrigLoc);
9841   if (NeedType)
9842     S.Diag(Loc, DiagID) << E->getType() << E->getSourceRange() << Assign;
9843   else
9844     S.Diag(Loc, DiagID) << E->getSourceRange() << Assign;
9845   return true;
9846 }
9847 
9848 static void CheckIdentityFieldAssignment(Expr *LHSExpr, Expr *RHSExpr,
9849                                          SourceLocation Loc,
9850                                          Sema &Sema) {
9851   // C / C++ fields
9852   MemberExpr *ML = dyn_cast<MemberExpr>(LHSExpr);
9853   MemberExpr *MR = dyn_cast<MemberExpr>(RHSExpr);
9854   if (ML && MR && ML->getMemberDecl() == MR->getMemberDecl()) {
9855     if (isa<CXXThisExpr>(ML->getBase()) && isa<CXXThisExpr>(MR->getBase()))
9856       Sema.Diag(Loc, diag::warn_identity_field_assign) << 0;
9857   }
9858 
9859   // Objective-C instance variables
9860   ObjCIvarRefExpr *OL = dyn_cast<ObjCIvarRefExpr>(LHSExpr);
9861   ObjCIvarRefExpr *OR = dyn_cast<ObjCIvarRefExpr>(RHSExpr);
9862   if (OL && OR && OL->getDecl() == OR->getDecl()) {
9863     DeclRefExpr *RL = dyn_cast<DeclRefExpr>(OL->getBase()->IgnoreImpCasts());
9864     DeclRefExpr *RR = dyn_cast<DeclRefExpr>(OR->getBase()->IgnoreImpCasts());
9865     if (RL && RR && RL->getDecl() == RR->getDecl())
9866       Sema.Diag(Loc, diag::warn_identity_field_assign) << 1;
9867   }
9868 }
9869 
9870 // C99 6.5.16.1
9871 QualType Sema::CheckAssignmentOperands(Expr *LHSExpr, ExprResult &RHS,
9872                                        SourceLocation Loc,
9873                                        QualType CompoundType) {
9874   assert(!LHSExpr->hasPlaceholderType(BuiltinType::PseudoObject));
9875 
9876   // Verify that LHS is a modifiable lvalue, and emit error if not.
9877   if (CheckForModifiableLvalue(LHSExpr, Loc, *this))
9878     return QualType();
9879 
9880   QualType LHSType = LHSExpr->getType();
9881   QualType RHSType = CompoundType.isNull() ? RHS.get()->getType() :
9882                                              CompoundType;
9883   AssignConvertType ConvTy;
9884   if (CompoundType.isNull()) {
9885     Expr *RHSCheck = RHS.get();
9886 
9887     CheckIdentityFieldAssignment(LHSExpr, RHSCheck, Loc, *this);
9888 
9889     QualType LHSTy(LHSType);
9890     ConvTy = CheckSingleAssignmentConstraints(LHSTy, RHS);
9891     if (RHS.isInvalid())
9892       return QualType();
9893     // Special case of NSObject attributes on c-style pointer types.
9894     if (ConvTy == IncompatiblePointer &&
9895         ((Context.isObjCNSObjectType(LHSType) &&
9896           RHSType->isObjCObjectPointerType()) ||
9897          (Context.isObjCNSObjectType(RHSType) &&
9898           LHSType->isObjCObjectPointerType())))
9899       ConvTy = Compatible;
9900 
9901     if (ConvTy == Compatible &&
9902         LHSType->isObjCObjectType())
9903         Diag(Loc, diag::err_objc_object_assignment)
9904           << LHSType;
9905 
9906     // If the RHS is a unary plus or minus, check to see if they = and + are
9907     // right next to each other.  If so, the user may have typo'd "x =+ 4"
9908     // instead of "x += 4".
9909     if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(RHSCheck))
9910       RHSCheck = ICE->getSubExpr();
9911     if (UnaryOperator *UO = dyn_cast<UnaryOperator>(RHSCheck)) {
9912       if ((UO->getOpcode() == UO_Plus ||
9913            UO->getOpcode() == UO_Minus) &&
9914           Loc.isFileID() && UO->getOperatorLoc().isFileID() &&
9915           // Only if the two operators are exactly adjacent.
9916           Loc.getLocWithOffset(1) == UO->getOperatorLoc() &&
9917           // And there is a space or other character before the subexpr of the
9918           // unary +/-.  We don't want to warn on "x=-1".
9919           Loc.getLocWithOffset(2) != UO->getSubExpr()->getLocStart() &&
9920           UO->getSubExpr()->getLocStart().isFileID()) {
9921         Diag(Loc, diag::warn_not_compound_assign)
9922           << (UO->getOpcode() == UO_Plus ? "+" : "-")
9923           << SourceRange(UO->getOperatorLoc(), UO->getOperatorLoc());
9924       }
9925     }
9926 
9927     if (ConvTy == Compatible) {
9928       if (LHSType.getObjCLifetime() == Qualifiers::OCL_Strong) {
9929         // Warn about retain cycles where a block captures the LHS, but
9930         // not if the LHS is a simple variable into which the block is
9931         // being stored...unless that variable can be captured by reference!
9932         const Expr *InnerLHS = LHSExpr->IgnoreParenCasts();
9933         const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(InnerLHS);
9934         if (!DRE || DRE->getDecl()->hasAttr<BlocksAttr>())
9935           checkRetainCycles(LHSExpr, RHS.get());
9936 
9937         // It is safe to assign a weak reference into a strong variable.
9938         // Although this code can still have problems:
9939         //   id x = self.weakProp;
9940         //   id y = self.weakProp;
9941         // we do not warn to warn spuriously when 'x' and 'y' are on separate
9942         // paths through the function. This should be revisited if
9943         // -Wrepeated-use-of-weak is made flow-sensitive.
9944         if (!Diags.isIgnored(diag::warn_arc_repeated_use_of_weak,
9945                              RHS.get()->getLocStart()))
9946           getCurFunction()->markSafeWeakUse(RHS.get());
9947 
9948       } else if (getLangOpts().ObjCAutoRefCount) {
9949         checkUnsafeExprAssigns(Loc, LHSExpr, RHS.get());
9950       }
9951     }
9952   } else {
9953     // Compound assignment "x += y"
9954     ConvTy = CheckAssignmentConstraints(Loc, LHSType, RHSType);
9955   }
9956 
9957   if (DiagnoseAssignmentResult(ConvTy, Loc, LHSType, RHSType,
9958                                RHS.get(), AA_Assigning))
9959     return QualType();
9960 
9961   CheckForNullPointerDereference(*this, LHSExpr);
9962 
9963   // C99 6.5.16p3: The type of an assignment expression is the type of the
9964   // left operand unless the left operand has qualified type, in which case
9965   // it is the unqualified version of the type of the left operand.
9966   // C99 6.5.16.1p2: In simple assignment, the value of the right operand
9967   // is converted to the type of the assignment expression (above).
9968   // C++ 5.17p1: the type of the assignment expression is that of its left
9969   // operand.
9970   return (getLangOpts().CPlusPlus
9971           ? LHSType : LHSType.getUnqualifiedType());
9972 }
9973 
9974 // Only ignore explicit casts to void.
9975 static bool IgnoreCommaOperand(const Expr *E) {
9976   E = E->IgnoreParens();
9977 
9978   if (const CastExpr *CE = dyn_cast<CastExpr>(E)) {
9979     if (CE->getCastKind() == CK_ToVoid) {
9980       return true;
9981     }
9982   }
9983 
9984   return false;
9985 }
9986 
9987 // Look for instances where it is likely the comma operator is confused with
9988 // another operator.  There is a whitelist of acceptable expressions for the
9989 // left hand side of the comma operator, otherwise emit a warning.
9990 void Sema::DiagnoseCommaOperator(const Expr *LHS, SourceLocation Loc) {
9991   // No warnings in macros
9992   if (Loc.isMacroID())
9993     return;
9994 
9995   // Don't warn in template instantiations.
9996   if (!ActiveTemplateInstantiations.empty())
9997     return;
9998 
9999   // Scope isn't fine-grained enough to whitelist the specific cases, so
10000   // instead, skip more than needed, then call back into here with the
10001   // CommaVisitor in SemaStmt.cpp.
10002   // The whitelisted locations are the initialization and increment portions
10003   // of a for loop.  The additional checks are on the condition of
10004   // if statements, do/while loops, and for loops.
10005   const unsigned ForIncrementFlags =
10006       Scope::ControlScope | Scope::ContinueScope | Scope::BreakScope;
10007   const unsigned ForInitFlags = Scope::ControlScope | Scope::DeclScope;
10008   const unsigned ScopeFlags = getCurScope()->getFlags();
10009   if ((ScopeFlags & ForIncrementFlags) == ForIncrementFlags ||
10010       (ScopeFlags & ForInitFlags) == ForInitFlags)
10011     return;
10012 
10013   // If there are multiple comma operators used together, get the RHS of the
10014   // of the comma operator as the LHS.
10015   while (const BinaryOperator *BO = dyn_cast<BinaryOperator>(LHS)) {
10016     if (BO->getOpcode() != BO_Comma)
10017       break;
10018     LHS = BO->getRHS();
10019   }
10020 
10021   // Only allow some expressions on LHS to not warn.
10022   if (IgnoreCommaOperand(LHS))
10023     return;
10024 
10025   Diag(Loc, diag::warn_comma_operator);
10026   Diag(LHS->getLocStart(), diag::note_cast_to_void)
10027       << LHS->getSourceRange()
10028       << FixItHint::CreateInsertion(LHS->getLocStart(),
10029                                     LangOpts.CPlusPlus ? "static_cast<void>("
10030                                                        : "(void)(")
10031       << FixItHint::CreateInsertion(PP.getLocForEndOfToken(LHS->getLocEnd()),
10032                                     ")");
10033 }
10034 
10035 // C99 6.5.17
10036 static QualType CheckCommaOperands(Sema &S, ExprResult &LHS, ExprResult &RHS,
10037                                    SourceLocation Loc) {
10038   LHS = S.CheckPlaceholderExpr(LHS.get());
10039   RHS = S.CheckPlaceholderExpr(RHS.get());
10040   if (LHS.isInvalid() || RHS.isInvalid())
10041     return QualType();
10042 
10043   // C's comma performs lvalue conversion (C99 6.3.2.1) on both its
10044   // operands, but not unary promotions.
10045   // C++'s comma does not do any conversions at all (C++ [expr.comma]p1).
10046 
10047   // So we treat the LHS as a ignored value, and in C++ we allow the
10048   // containing site to determine what should be done with the RHS.
10049   LHS = S.IgnoredValueConversions(LHS.get());
10050   if (LHS.isInvalid())
10051     return QualType();
10052 
10053   S.DiagnoseUnusedExprResult(LHS.get());
10054 
10055   if (!S.getLangOpts().CPlusPlus) {
10056     RHS = S.DefaultFunctionArrayLvalueConversion(RHS.get());
10057     if (RHS.isInvalid())
10058       return QualType();
10059     if (!RHS.get()->getType()->isVoidType())
10060       S.RequireCompleteType(Loc, RHS.get()->getType(),
10061                             diag::err_incomplete_type);
10062   }
10063 
10064   if (!S.getDiagnostics().isIgnored(diag::warn_comma_operator, Loc))
10065     S.DiagnoseCommaOperator(LHS.get(), Loc);
10066 
10067   return RHS.get()->getType();
10068 }
10069 
10070 /// CheckIncrementDecrementOperand - unlike most "Check" methods, this routine
10071 /// doesn't need to call UsualUnaryConversions or UsualArithmeticConversions.
10072 static QualType CheckIncrementDecrementOperand(Sema &S, Expr *Op,
10073                                                ExprValueKind &VK,
10074                                                ExprObjectKind &OK,
10075                                                SourceLocation OpLoc,
10076                                                bool IsInc, bool IsPrefix) {
10077   if (Op->isTypeDependent())
10078     return S.Context.DependentTy;
10079 
10080   QualType ResType = Op->getType();
10081   // Atomic types can be used for increment / decrement where the non-atomic
10082   // versions can, so ignore the _Atomic() specifier for the purpose of
10083   // checking.
10084   if (const AtomicType *ResAtomicType = ResType->getAs<AtomicType>())
10085     ResType = ResAtomicType->getValueType();
10086 
10087   assert(!ResType.isNull() && "no type for increment/decrement expression");
10088 
10089   if (S.getLangOpts().CPlusPlus && ResType->isBooleanType()) {
10090     // Decrement of bool is not allowed.
10091     if (!IsInc) {
10092       S.Diag(OpLoc, diag::err_decrement_bool) << Op->getSourceRange();
10093       return QualType();
10094     }
10095     // Increment of bool sets it to true, but is deprecated.
10096     S.Diag(OpLoc, S.getLangOpts().CPlusPlus1z ? diag::ext_increment_bool
10097                                               : diag::warn_increment_bool)
10098       << Op->getSourceRange();
10099   } else if (S.getLangOpts().CPlusPlus && ResType->isEnumeralType()) {
10100     // Error on enum increments and decrements in C++ mode
10101     S.Diag(OpLoc, diag::err_increment_decrement_enum) << IsInc << ResType;
10102     return QualType();
10103   } else if (ResType->isRealType()) {
10104     // OK!
10105   } else if (ResType->isPointerType()) {
10106     // C99 6.5.2.4p2, 6.5.6p2
10107     if (!checkArithmeticOpPointerOperand(S, OpLoc, Op))
10108       return QualType();
10109   } else if (ResType->isObjCObjectPointerType()) {
10110     // On modern runtimes, ObjC pointer arithmetic is forbidden.
10111     // Otherwise, we just need a complete type.
10112     if (checkArithmeticIncompletePointerType(S, OpLoc, Op) ||
10113         checkArithmeticOnObjCPointer(S, OpLoc, Op))
10114       return QualType();
10115   } else if (ResType->isAnyComplexType()) {
10116     // C99 does not support ++/-- on complex types, we allow as an extension.
10117     S.Diag(OpLoc, diag::ext_integer_increment_complex)
10118       << ResType << Op->getSourceRange();
10119   } else if (ResType->isPlaceholderType()) {
10120     ExprResult PR = S.CheckPlaceholderExpr(Op);
10121     if (PR.isInvalid()) return QualType();
10122     return CheckIncrementDecrementOperand(S, PR.get(), VK, OK, OpLoc,
10123                                           IsInc, IsPrefix);
10124   } else if (S.getLangOpts().AltiVec && ResType->isVectorType()) {
10125     // OK! ( C/C++ Language Extensions for CBEA(Version 2.6) 10.3 )
10126   } else if (S.getLangOpts().ZVector && ResType->isVectorType() &&
10127              (ResType->getAs<VectorType>()->getVectorKind() !=
10128               VectorType::AltiVecBool)) {
10129     // The z vector extensions allow ++ and -- for non-bool vectors.
10130   } else if(S.getLangOpts().OpenCL && ResType->isVectorType() &&
10131             ResType->getAs<VectorType>()->getElementType()->isIntegerType()) {
10132     // OpenCL V1.2 6.3 says dec/inc ops operate on integer vector types.
10133   } else {
10134     S.Diag(OpLoc, diag::err_typecheck_illegal_increment_decrement)
10135       << ResType << int(IsInc) << Op->getSourceRange();
10136     return QualType();
10137   }
10138   // At this point, we know we have a real, complex or pointer type.
10139   // Now make sure the operand is a modifiable lvalue.
10140   if (CheckForModifiableLvalue(Op, OpLoc, S))
10141     return QualType();
10142   // In C++, a prefix increment is the same type as the operand. Otherwise
10143   // (in C or with postfix), the increment is the unqualified type of the
10144   // operand.
10145   if (IsPrefix && S.getLangOpts().CPlusPlus) {
10146     VK = VK_LValue;
10147     OK = Op->getObjectKind();
10148     return ResType;
10149   } else {
10150     VK = VK_RValue;
10151     return ResType.getUnqualifiedType();
10152   }
10153 }
10154 
10155 
10156 /// getPrimaryDecl - Helper function for CheckAddressOfOperand().
10157 /// This routine allows us to typecheck complex/recursive expressions
10158 /// where the declaration is needed for type checking. We only need to
10159 /// handle cases when the expression references a function designator
10160 /// or is an lvalue. Here are some examples:
10161 ///  - &(x) => x
10162 ///  - &*****f => f for f a function designator.
10163 ///  - &s.xx => s
10164 ///  - &s.zz[1].yy -> s, if zz is an array
10165 ///  - *(x + 1) -> x, if x is an array
10166 ///  - &"123"[2] -> 0
10167 ///  - & __real__ x -> x
10168 static ValueDecl *getPrimaryDecl(Expr *E) {
10169   switch (E->getStmtClass()) {
10170   case Stmt::DeclRefExprClass:
10171     return cast<DeclRefExpr>(E)->getDecl();
10172   case Stmt::MemberExprClass:
10173     // If this is an arrow operator, the address is an offset from
10174     // the base's value, so the object the base refers to is
10175     // irrelevant.
10176     if (cast<MemberExpr>(E)->isArrow())
10177       return nullptr;
10178     // Otherwise, the expression refers to a part of the base
10179     return getPrimaryDecl(cast<MemberExpr>(E)->getBase());
10180   case Stmt::ArraySubscriptExprClass: {
10181     // FIXME: This code shouldn't be necessary!  We should catch the implicit
10182     // promotion of register arrays earlier.
10183     Expr* Base = cast<ArraySubscriptExpr>(E)->getBase();
10184     if (ImplicitCastExpr* ICE = dyn_cast<ImplicitCastExpr>(Base)) {
10185       if (ICE->getSubExpr()->getType()->isArrayType())
10186         return getPrimaryDecl(ICE->getSubExpr());
10187     }
10188     return nullptr;
10189   }
10190   case Stmt::UnaryOperatorClass: {
10191     UnaryOperator *UO = cast<UnaryOperator>(E);
10192 
10193     switch(UO->getOpcode()) {
10194     case UO_Real:
10195     case UO_Imag:
10196     case UO_Extension:
10197       return getPrimaryDecl(UO->getSubExpr());
10198     default:
10199       return nullptr;
10200     }
10201   }
10202   case Stmt::ParenExprClass:
10203     return getPrimaryDecl(cast<ParenExpr>(E)->getSubExpr());
10204   case Stmt::ImplicitCastExprClass:
10205     // If the result of an implicit cast is an l-value, we care about
10206     // the sub-expression; otherwise, the result here doesn't matter.
10207     return getPrimaryDecl(cast<ImplicitCastExpr>(E)->getSubExpr());
10208   default:
10209     return nullptr;
10210   }
10211 }
10212 
10213 namespace {
10214   enum {
10215     AO_Bit_Field = 0,
10216     AO_Vector_Element = 1,
10217     AO_Property_Expansion = 2,
10218     AO_Register_Variable = 3,
10219     AO_No_Error = 4
10220   };
10221 }
10222 /// \brief Diagnose invalid operand for address of operations.
10223 ///
10224 /// \param Type The type of operand which cannot have its address taken.
10225 static void diagnoseAddressOfInvalidType(Sema &S, SourceLocation Loc,
10226                                          Expr *E, unsigned Type) {
10227   S.Diag(Loc, diag::err_typecheck_address_of) << Type << E->getSourceRange();
10228 }
10229 
10230 /// CheckAddressOfOperand - The operand of & must be either a function
10231 /// designator or an lvalue designating an object. If it is an lvalue, the
10232 /// object cannot be declared with storage class register or be a bit field.
10233 /// Note: The usual conversions are *not* applied to the operand of the &
10234 /// operator (C99 6.3.2.1p[2-4]), and its result is never an lvalue.
10235 /// In C++, the operand might be an overloaded function name, in which case
10236 /// we allow the '&' but retain the overloaded-function type.
10237 QualType Sema::CheckAddressOfOperand(ExprResult &OrigOp, SourceLocation OpLoc) {
10238   if (const BuiltinType *PTy = OrigOp.get()->getType()->getAsPlaceholderType()){
10239     if (PTy->getKind() == BuiltinType::Overload) {
10240       Expr *E = OrigOp.get()->IgnoreParens();
10241       if (!isa<OverloadExpr>(E)) {
10242         assert(cast<UnaryOperator>(E)->getOpcode() == UO_AddrOf);
10243         Diag(OpLoc, diag::err_typecheck_invalid_lvalue_addrof_addrof_function)
10244           << OrigOp.get()->getSourceRange();
10245         return QualType();
10246       }
10247 
10248       OverloadExpr *Ovl = cast<OverloadExpr>(E);
10249       if (isa<UnresolvedMemberExpr>(Ovl))
10250         if (!ResolveSingleFunctionTemplateSpecialization(Ovl)) {
10251           Diag(OpLoc, diag::err_invalid_form_pointer_member_function)
10252             << OrigOp.get()->getSourceRange();
10253           return QualType();
10254         }
10255 
10256       return Context.OverloadTy;
10257     }
10258 
10259     if (PTy->getKind() == BuiltinType::UnknownAny)
10260       return Context.UnknownAnyTy;
10261 
10262     if (PTy->getKind() == BuiltinType::BoundMember) {
10263       Diag(OpLoc, diag::err_invalid_form_pointer_member_function)
10264         << OrigOp.get()->getSourceRange();
10265       return QualType();
10266     }
10267 
10268     OrigOp = CheckPlaceholderExpr(OrigOp.get());
10269     if (OrigOp.isInvalid()) return QualType();
10270   }
10271 
10272   if (OrigOp.get()->isTypeDependent())
10273     return Context.DependentTy;
10274 
10275   assert(!OrigOp.get()->getType()->isPlaceholderType());
10276 
10277   // Make sure to ignore parentheses in subsequent checks
10278   Expr *op = OrigOp.get()->IgnoreParens();
10279 
10280   // OpenCL v1.0 s6.8.a.3: Pointers to functions are not allowed.
10281   if (LangOpts.OpenCL && op->getType()->isFunctionType()) {
10282     Diag(op->getExprLoc(), diag::err_opencl_taking_function_address);
10283     return QualType();
10284   }
10285 
10286   if (getLangOpts().C99) {
10287     // Implement C99-only parts of addressof rules.
10288     if (UnaryOperator* uOp = dyn_cast<UnaryOperator>(op)) {
10289       if (uOp->getOpcode() == UO_Deref)
10290         // Per C99 6.5.3.2, the address of a deref always returns a valid result
10291         // (assuming the deref expression is valid).
10292         return uOp->getSubExpr()->getType();
10293     }
10294     // Technically, there should be a check for array subscript
10295     // expressions here, but the result of one is always an lvalue anyway.
10296   }
10297   ValueDecl *dcl = getPrimaryDecl(op);
10298 
10299   if (auto *FD = dyn_cast_or_null<FunctionDecl>(dcl))
10300     if (!checkAddressOfFunctionIsAvailable(FD, /*Complain=*/true,
10301                                            op->getLocStart()))
10302       return QualType();
10303 
10304   Expr::LValueClassification lval = op->ClassifyLValue(Context);
10305   unsigned AddressOfError = AO_No_Error;
10306 
10307   if (lval == Expr::LV_ClassTemporary || lval == Expr::LV_ArrayTemporary) {
10308     bool sfinae = (bool)isSFINAEContext();
10309     Diag(OpLoc, isSFINAEContext() ? diag::err_typecheck_addrof_temporary
10310                                   : diag::ext_typecheck_addrof_temporary)
10311       << op->getType() << op->getSourceRange();
10312     if (sfinae)
10313       return QualType();
10314     // Materialize the temporary as an lvalue so that we can take its address.
10315     OrigOp = op = new (Context)
10316         MaterializeTemporaryExpr(op->getType(), OrigOp.get(), true);
10317   } else if (isa<ObjCSelectorExpr>(op)) {
10318     return Context.getPointerType(op->getType());
10319   } else if (lval == Expr::LV_MemberFunction) {
10320     // If it's an instance method, make a member pointer.
10321     // The expression must have exactly the form &A::foo.
10322 
10323     // If the underlying expression isn't a decl ref, give up.
10324     if (!isa<DeclRefExpr>(op)) {
10325       Diag(OpLoc, diag::err_invalid_form_pointer_member_function)
10326         << OrigOp.get()->getSourceRange();
10327       return QualType();
10328     }
10329     DeclRefExpr *DRE = cast<DeclRefExpr>(op);
10330     CXXMethodDecl *MD = cast<CXXMethodDecl>(DRE->getDecl());
10331 
10332     // The id-expression was parenthesized.
10333     if (OrigOp.get() != DRE) {
10334       Diag(OpLoc, diag::err_parens_pointer_member_function)
10335         << OrigOp.get()->getSourceRange();
10336 
10337     // The method was named without a qualifier.
10338     } else if (!DRE->getQualifier()) {
10339       if (MD->getParent()->getName().empty())
10340         Diag(OpLoc, diag::err_unqualified_pointer_member_function)
10341           << op->getSourceRange();
10342       else {
10343         SmallString<32> Str;
10344         StringRef Qual = (MD->getParent()->getName() + "::").toStringRef(Str);
10345         Diag(OpLoc, diag::err_unqualified_pointer_member_function)
10346           << op->getSourceRange()
10347           << FixItHint::CreateInsertion(op->getSourceRange().getBegin(), Qual);
10348       }
10349     }
10350 
10351     // Taking the address of a dtor is illegal per C++ [class.dtor]p2.
10352     if (isa<CXXDestructorDecl>(MD))
10353       Diag(OpLoc, diag::err_typecheck_addrof_dtor) << op->getSourceRange();
10354 
10355     QualType MPTy = Context.getMemberPointerType(
10356         op->getType(), Context.getTypeDeclType(MD->getParent()).getTypePtr());
10357     // Under the MS ABI, lock down the inheritance model now.
10358     if (Context.getTargetInfo().getCXXABI().isMicrosoft())
10359       (void)isCompleteType(OpLoc, MPTy);
10360     return MPTy;
10361   } else if (lval != Expr::LV_Valid && lval != Expr::LV_IncompleteVoidType) {
10362     // C99 6.5.3.2p1
10363     // The operand must be either an l-value or a function designator
10364     if (!op->getType()->isFunctionType()) {
10365       // Use a special diagnostic for loads from property references.
10366       if (isa<PseudoObjectExpr>(op)) {
10367         AddressOfError = AO_Property_Expansion;
10368       } else {
10369         Diag(OpLoc, diag::err_typecheck_invalid_lvalue_addrof)
10370           << op->getType() << op->getSourceRange();
10371         return QualType();
10372       }
10373     }
10374   } else if (op->getObjectKind() == OK_BitField) { // C99 6.5.3.2p1
10375     // The operand cannot be a bit-field
10376     AddressOfError = AO_Bit_Field;
10377   } else if (op->getObjectKind() == OK_VectorComponent) {
10378     // The operand cannot be an element of a vector
10379     AddressOfError = AO_Vector_Element;
10380   } else if (dcl) { // C99 6.5.3.2p1
10381     // We have an lvalue with a decl. Make sure the decl is not declared
10382     // with the register storage-class specifier.
10383     if (const VarDecl *vd = dyn_cast<VarDecl>(dcl)) {
10384       // in C++ it is not error to take address of a register
10385       // variable (c++03 7.1.1P3)
10386       if (vd->getStorageClass() == SC_Register &&
10387           !getLangOpts().CPlusPlus) {
10388         AddressOfError = AO_Register_Variable;
10389       }
10390     } else if (isa<MSPropertyDecl>(dcl)) {
10391       AddressOfError = AO_Property_Expansion;
10392     } else if (isa<FunctionTemplateDecl>(dcl)) {
10393       return Context.OverloadTy;
10394     } else if (isa<FieldDecl>(dcl) || isa<IndirectFieldDecl>(dcl)) {
10395       // Okay: we can take the address of a field.
10396       // Could be a pointer to member, though, if there is an explicit
10397       // scope qualifier for the class.
10398       if (isa<DeclRefExpr>(op) && cast<DeclRefExpr>(op)->getQualifier()) {
10399         DeclContext *Ctx = dcl->getDeclContext();
10400         if (Ctx && Ctx->isRecord()) {
10401           if (dcl->getType()->isReferenceType()) {
10402             Diag(OpLoc,
10403                  diag::err_cannot_form_pointer_to_member_of_reference_type)
10404               << dcl->getDeclName() << dcl->getType();
10405             return QualType();
10406           }
10407 
10408           while (cast<RecordDecl>(Ctx)->isAnonymousStructOrUnion())
10409             Ctx = Ctx->getParent();
10410 
10411           QualType MPTy = Context.getMemberPointerType(
10412               op->getType(),
10413               Context.getTypeDeclType(cast<RecordDecl>(Ctx)).getTypePtr());
10414           // Under the MS ABI, lock down the inheritance model now.
10415           if (Context.getTargetInfo().getCXXABI().isMicrosoft())
10416             (void)isCompleteType(OpLoc, MPTy);
10417           return MPTy;
10418         }
10419       }
10420     } else if (!isa<FunctionDecl>(dcl) && !isa<NonTypeTemplateParmDecl>(dcl))
10421       llvm_unreachable("Unknown/unexpected decl type");
10422   }
10423 
10424   if (AddressOfError != AO_No_Error) {
10425     diagnoseAddressOfInvalidType(*this, OpLoc, op, AddressOfError);
10426     return QualType();
10427   }
10428 
10429   if (lval == Expr::LV_IncompleteVoidType) {
10430     // Taking the address of a void variable is technically illegal, but we
10431     // allow it in cases which are otherwise valid.
10432     // Example: "extern void x; void* y = &x;".
10433     Diag(OpLoc, diag::ext_typecheck_addrof_void) << op->getSourceRange();
10434   }
10435 
10436   // If the operand has type "type", the result has type "pointer to type".
10437   if (op->getType()->isObjCObjectType())
10438     return Context.getObjCObjectPointerType(op->getType());
10439 
10440   // OpenCL v2.0 s6.12.5 - The unary operators & cannot be used with a block.
10441   if (getLangOpts().OpenCL && OrigOp.get()->getType()->isBlockPointerType()) {
10442     Diag(OpLoc, diag::err_typecheck_unary_expr) << OrigOp.get()->getType()
10443                                                 << op->getSourceRange();
10444     return QualType();
10445   }
10446 
10447   return Context.getPointerType(op->getType());
10448 }
10449 
10450 static void RecordModifiableNonNullParam(Sema &S, const Expr *Exp) {
10451   const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Exp);
10452   if (!DRE)
10453     return;
10454   const Decl *D = DRE->getDecl();
10455   if (!D)
10456     return;
10457   const ParmVarDecl *Param = dyn_cast<ParmVarDecl>(D);
10458   if (!Param)
10459     return;
10460   if (const FunctionDecl* FD = dyn_cast<FunctionDecl>(Param->getDeclContext()))
10461     if (!FD->hasAttr<NonNullAttr>() && !Param->hasAttr<NonNullAttr>())
10462       return;
10463   if (FunctionScopeInfo *FD = S.getCurFunction())
10464     if (!FD->ModifiedNonNullParams.count(Param))
10465       FD->ModifiedNonNullParams.insert(Param);
10466 }
10467 
10468 /// CheckIndirectionOperand - Type check unary indirection (prefix '*').
10469 static QualType CheckIndirectionOperand(Sema &S, Expr *Op, ExprValueKind &VK,
10470                                         SourceLocation OpLoc) {
10471   if (Op->isTypeDependent())
10472     return S.Context.DependentTy;
10473 
10474   ExprResult ConvResult = S.UsualUnaryConversions(Op);
10475   if (ConvResult.isInvalid())
10476     return QualType();
10477   Op = ConvResult.get();
10478   QualType OpTy = Op->getType();
10479   QualType Result;
10480 
10481   if (isa<CXXReinterpretCastExpr>(Op)) {
10482     QualType OpOrigType = Op->IgnoreParenCasts()->getType();
10483     S.CheckCompatibleReinterpretCast(OpOrigType, OpTy, /*IsDereference*/true,
10484                                      Op->getSourceRange());
10485   }
10486 
10487   if (const PointerType *PT = OpTy->getAs<PointerType>())
10488   {
10489     Result = PT->getPointeeType();
10490     // OpenCL v2.0 s6.12.5 - The unary operators * cannot be used with a block.
10491     if (S.getLangOpts().OpenCLVersion >= 200 && Result->isBlockPointerType()) {
10492       S.Diag(OpLoc, diag::err_opencl_dereferencing) << OpTy
10493                                                     << Op->getSourceRange();
10494       return QualType();
10495     }
10496   }
10497   else if (const ObjCObjectPointerType *OPT =
10498              OpTy->getAs<ObjCObjectPointerType>())
10499     Result = OPT->getPointeeType();
10500   else {
10501     ExprResult PR = S.CheckPlaceholderExpr(Op);
10502     if (PR.isInvalid()) return QualType();
10503     if (PR.get() != Op)
10504       return CheckIndirectionOperand(S, PR.get(), VK, OpLoc);
10505   }
10506 
10507   if (Result.isNull()) {
10508     S.Diag(OpLoc, diag::err_typecheck_indirection_requires_pointer)
10509       << OpTy << Op->getSourceRange();
10510     return QualType();
10511   }
10512 
10513   // Note that per both C89 and C99, indirection is always legal, even if Result
10514   // is an incomplete type or void.  It would be possible to warn about
10515   // dereferencing a void pointer, but it's completely well-defined, and such a
10516   // warning is unlikely to catch any mistakes. In C++, indirection is not valid
10517   // for pointers to 'void' but is fine for any other pointer type:
10518   //
10519   // C++ [expr.unary.op]p1:
10520   //   [...] the expression to which [the unary * operator] is applied shall
10521   //   be a pointer to an object type, or a pointer to a function type
10522   if (S.getLangOpts().CPlusPlus && Result->isVoidType())
10523     S.Diag(OpLoc, diag::ext_typecheck_indirection_through_void_pointer)
10524       << OpTy << Op->getSourceRange();
10525 
10526   // Dereferences are usually l-values...
10527   VK = VK_LValue;
10528 
10529   // ...except that certain expressions are never l-values in C.
10530   if (!S.getLangOpts().CPlusPlus && Result.isCForbiddenLValueType())
10531     VK = VK_RValue;
10532 
10533   return Result;
10534 }
10535 
10536 BinaryOperatorKind Sema::ConvertTokenKindToBinaryOpcode(tok::TokenKind Kind) {
10537   BinaryOperatorKind Opc;
10538   switch (Kind) {
10539   default: llvm_unreachable("Unknown binop!");
10540   case tok::periodstar:           Opc = BO_PtrMemD; break;
10541   case tok::arrowstar:            Opc = BO_PtrMemI; break;
10542   case tok::star:                 Opc = BO_Mul; break;
10543   case tok::slash:                Opc = BO_Div; break;
10544   case tok::percent:              Opc = BO_Rem; break;
10545   case tok::plus:                 Opc = BO_Add; break;
10546   case tok::minus:                Opc = BO_Sub; break;
10547   case tok::lessless:             Opc = BO_Shl; break;
10548   case tok::greatergreater:       Opc = BO_Shr; break;
10549   case tok::lessequal:            Opc = BO_LE; break;
10550   case tok::less:                 Opc = BO_LT; break;
10551   case tok::greaterequal:         Opc = BO_GE; break;
10552   case tok::greater:              Opc = BO_GT; break;
10553   case tok::exclaimequal:         Opc = BO_NE; break;
10554   case tok::equalequal:           Opc = BO_EQ; break;
10555   case tok::amp:                  Opc = BO_And; break;
10556   case tok::caret:                Opc = BO_Xor; break;
10557   case tok::pipe:                 Opc = BO_Or; break;
10558   case tok::ampamp:               Opc = BO_LAnd; break;
10559   case tok::pipepipe:             Opc = BO_LOr; break;
10560   case tok::equal:                Opc = BO_Assign; break;
10561   case tok::starequal:            Opc = BO_MulAssign; break;
10562   case tok::slashequal:           Opc = BO_DivAssign; break;
10563   case tok::percentequal:         Opc = BO_RemAssign; break;
10564   case tok::plusequal:            Opc = BO_AddAssign; break;
10565   case tok::minusequal:           Opc = BO_SubAssign; break;
10566   case tok::lesslessequal:        Opc = BO_ShlAssign; break;
10567   case tok::greatergreaterequal:  Opc = BO_ShrAssign; break;
10568   case tok::ampequal:             Opc = BO_AndAssign; break;
10569   case tok::caretequal:           Opc = BO_XorAssign; break;
10570   case tok::pipeequal:            Opc = BO_OrAssign; break;
10571   case tok::comma:                Opc = BO_Comma; break;
10572   }
10573   return Opc;
10574 }
10575 
10576 static inline UnaryOperatorKind ConvertTokenKindToUnaryOpcode(
10577   tok::TokenKind Kind) {
10578   UnaryOperatorKind Opc;
10579   switch (Kind) {
10580   default: llvm_unreachable("Unknown unary op!");
10581   case tok::plusplus:     Opc = UO_PreInc; break;
10582   case tok::minusminus:   Opc = UO_PreDec; break;
10583   case tok::amp:          Opc = UO_AddrOf; break;
10584   case tok::star:         Opc = UO_Deref; break;
10585   case tok::plus:         Opc = UO_Plus; break;
10586   case tok::minus:        Opc = UO_Minus; break;
10587   case tok::tilde:        Opc = UO_Not; break;
10588   case tok::exclaim:      Opc = UO_LNot; break;
10589   case tok::kw___real:    Opc = UO_Real; break;
10590   case tok::kw___imag:    Opc = UO_Imag; break;
10591   case tok::kw___extension__: Opc = UO_Extension; break;
10592   }
10593   return Opc;
10594 }
10595 
10596 /// DiagnoseSelfAssignment - Emits a warning if a value is assigned to itself.
10597 /// This warning is only emitted for builtin assignment operations. It is also
10598 /// suppressed in the event of macro expansions.
10599 static void DiagnoseSelfAssignment(Sema &S, Expr *LHSExpr, Expr *RHSExpr,
10600                                    SourceLocation OpLoc) {
10601   if (!S.ActiveTemplateInstantiations.empty())
10602     return;
10603   if (OpLoc.isInvalid() || OpLoc.isMacroID())
10604     return;
10605   LHSExpr = LHSExpr->IgnoreParenImpCasts();
10606   RHSExpr = RHSExpr->IgnoreParenImpCasts();
10607   const DeclRefExpr *LHSDeclRef = dyn_cast<DeclRefExpr>(LHSExpr);
10608   const DeclRefExpr *RHSDeclRef = dyn_cast<DeclRefExpr>(RHSExpr);
10609   if (!LHSDeclRef || !RHSDeclRef ||
10610       LHSDeclRef->getLocation().isMacroID() ||
10611       RHSDeclRef->getLocation().isMacroID())
10612     return;
10613   const ValueDecl *LHSDecl =
10614     cast<ValueDecl>(LHSDeclRef->getDecl()->getCanonicalDecl());
10615   const ValueDecl *RHSDecl =
10616     cast<ValueDecl>(RHSDeclRef->getDecl()->getCanonicalDecl());
10617   if (LHSDecl != RHSDecl)
10618     return;
10619   if (LHSDecl->getType().isVolatileQualified())
10620     return;
10621   if (const ReferenceType *RefTy = LHSDecl->getType()->getAs<ReferenceType>())
10622     if (RefTy->getPointeeType().isVolatileQualified())
10623       return;
10624 
10625   S.Diag(OpLoc, diag::warn_self_assignment)
10626       << LHSDeclRef->getType()
10627       << LHSExpr->getSourceRange() << RHSExpr->getSourceRange();
10628 }
10629 
10630 /// Check if a bitwise-& is performed on an Objective-C pointer.  This
10631 /// is usually indicative of introspection within the Objective-C pointer.
10632 static void checkObjCPointerIntrospection(Sema &S, ExprResult &L, ExprResult &R,
10633                                           SourceLocation OpLoc) {
10634   if (!S.getLangOpts().ObjC1)
10635     return;
10636 
10637   const Expr *ObjCPointerExpr = nullptr, *OtherExpr = nullptr;
10638   const Expr *LHS = L.get();
10639   const Expr *RHS = R.get();
10640 
10641   if (LHS->IgnoreParenCasts()->getType()->isObjCObjectPointerType()) {
10642     ObjCPointerExpr = LHS;
10643     OtherExpr = RHS;
10644   }
10645   else if (RHS->IgnoreParenCasts()->getType()->isObjCObjectPointerType()) {
10646     ObjCPointerExpr = RHS;
10647     OtherExpr = LHS;
10648   }
10649 
10650   // This warning is deliberately made very specific to reduce false
10651   // positives with logic that uses '&' for hashing.  This logic mainly
10652   // looks for code trying to introspect into tagged pointers, which
10653   // code should generally never do.
10654   if (ObjCPointerExpr && isa<IntegerLiteral>(OtherExpr->IgnoreParenCasts())) {
10655     unsigned Diag = diag::warn_objc_pointer_masking;
10656     // Determine if we are introspecting the result of performSelectorXXX.
10657     const Expr *Ex = ObjCPointerExpr->IgnoreParenCasts();
10658     // Special case messages to -performSelector and friends, which
10659     // can return non-pointer values boxed in a pointer value.
10660     // Some clients may wish to silence warnings in this subcase.
10661     if (const ObjCMessageExpr *ME = dyn_cast<ObjCMessageExpr>(Ex)) {
10662       Selector S = ME->getSelector();
10663       StringRef SelArg0 = S.getNameForSlot(0);
10664       if (SelArg0.startswith("performSelector"))
10665         Diag = diag::warn_objc_pointer_masking_performSelector;
10666     }
10667 
10668     S.Diag(OpLoc, Diag)
10669       << ObjCPointerExpr->getSourceRange();
10670   }
10671 }
10672 
10673 static NamedDecl *getDeclFromExpr(Expr *E) {
10674   if (!E)
10675     return nullptr;
10676   if (auto *DRE = dyn_cast<DeclRefExpr>(E))
10677     return DRE->getDecl();
10678   if (auto *ME = dyn_cast<MemberExpr>(E))
10679     return ME->getMemberDecl();
10680   if (auto *IRE = dyn_cast<ObjCIvarRefExpr>(E))
10681     return IRE->getDecl();
10682   return nullptr;
10683 }
10684 
10685 /// CreateBuiltinBinOp - Creates a new built-in binary operation with
10686 /// operator @p Opc at location @c TokLoc. This routine only supports
10687 /// built-in operations; ActOnBinOp handles overloaded operators.
10688 ExprResult Sema::CreateBuiltinBinOp(SourceLocation OpLoc,
10689                                     BinaryOperatorKind Opc,
10690                                     Expr *LHSExpr, Expr *RHSExpr) {
10691   if (getLangOpts().CPlusPlus11 && isa<InitListExpr>(RHSExpr)) {
10692     // The syntax only allows initializer lists on the RHS of assignment,
10693     // so we don't need to worry about accepting invalid code for
10694     // non-assignment operators.
10695     // C++11 5.17p9:
10696     //   The meaning of x = {v} [...] is that of x = T(v) [...]. The meaning
10697     //   of x = {} is x = T().
10698     InitializationKind Kind =
10699         InitializationKind::CreateDirectList(RHSExpr->getLocStart());
10700     InitializedEntity Entity =
10701         InitializedEntity::InitializeTemporary(LHSExpr->getType());
10702     InitializationSequence InitSeq(*this, Entity, Kind, RHSExpr);
10703     ExprResult Init = InitSeq.Perform(*this, Entity, Kind, RHSExpr);
10704     if (Init.isInvalid())
10705       return Init;
10706     RHSExpr = Init.get();
10707   }
10708 
10709   ExprResult LHS = LHSExpr, RHS = RHSExpr;
10710   QualType ResultTy;     // Result type of the binary operator.
10711   // The following two variables are used for compound assignment operators
10712   QualType CompLHSTy;    // Type of LHS after promotions for computation
10713   QualType CompResultTy; // Type of computation result
10714   ExprValueKind VK = VK_RValue;
10715   ExprObjectKind OK = OK_Ordinary;
10716 
10717   if (!getLangOpts().CPlusPlus) {
10718     // C cannot handle TypoExpr nodes on either side of a binop because it
10719     // doesn't handle dependent types properly, so make sure any TypoExprs have
10720     // been dealt with before checking the operands.
10721     LHS = CorrectDelayedTyposInExpr(LHSExpr);
10722     RHS = CorrectDelayedTyposInExpr(RHSExpr, [Opc, LHS](Expr *E) {
10723       if (Opc != BO_Assign)
10724         return ExprResult(E);
10725       // Avoid correcting the RHS to the same Expr as the LHS.
10726       Decl *D = getDeclFromExpr(E);
10727       return (D && D == getDeclFromExpr(LHS.get())) ? ExprError() : E;
10728     });
10729     if (!LHS.isUsable() || !RHS.isUsable())
10730       return ExprError();
10731   }
10732 
10733   if (getLangOpts().OpenCL) {
10734     // OpenCLC v2.0 s6.13.11.1 allows atomic variables to be initialized by
10735     // the ATOMIC_VAR_INIT macro.
10736     if (LHSExpr->getType()->isAtomicType() ||
10737         RHSExpr->getType()->isAtomicType()) {
10738       SourceRange SR(LHSExpr->getLocStart(), RHSExpr->getLocEnd());
10739       if (BO_Assign == Opc)
10740         Diag(OpLoc, diag::err_atomic_init_constant) << SR;
10741       else
10742         ResultTy = InvalidOperands(OpLoc, LHS, RHS);
10743       return ExprError();
10744     }
10745   }
10746 
10747   switch (Opc) {
10748   case BO_Assign:
10749     ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, QualType());
10750     if (getLangOpts().CPlusPlus &&
10751         LHS.get()->getObjectKind() != OK_ObjCProperty) {
10752       VK = LHS.get()->getValueKind();
10753       OK = LHS.get()->getObjectKind();
10754     }
10755     if (!ResultTy.isNull()) {
10756       DiagnoseSelfAssignment(*this, LHS.get(), RHS.get(), OpLoc);
10757       DiagnoseSelfMove(LHS.get(), RHS.get(), OpLoc);
10758     }
10759     RecordModifiableNonNullParam(*this, LHS.get());
10760     break;
10761   case BO_PtrMemD:
10762   case BO_PtrMemI:
10763     ResultTy = CheckPointerToMemberOperands(LHS, RHS, VK, OpLoc,
10764                                             Opc == BO_PtrMemI);
10765     break;
10766   case BO_Mul:
10767   case BO_Div:
10768     ResultTy = CheckMultiplyDivideOperands(LHS, RHS, OpLoc, false,
10769                                            Opc == BO_Div);
10770     break;
10771   case BO_Rem:
10772     ResultTy = CheckRemainderOperands(LHS, RHS, OpLoc);
10773     break;
10774   case BO_Add:
10775     ResultTy = CheckAdditionOperands(LHS, RHS, OpLoc, Opc);
10776     break;
10777   case BO_Sub:
10778     ResultTy = CheckSubtractionOperands(LHS, RHS, OpLoc);
10779     break;
10780   case BO_Shl:
10781   case BO_Shr:
10782     ResultTy = CheckShiftOperands(LHS, RHS, OpLoc, Opc);
10783     break;
10784   case BO_LE:
10785   case BO_LT:
10786   case BO_GE:
10787   case BO_GT:
10788     ResultTy = CheckCompareOperands(LHS, RHS, OpLoc, Opc, true);
10789     break;
10790   case BO_EQ:
10791   case BO_NE:
10792     ResultTy = CheckCompareOperands(LHS, RHS, OpLoc, Opc, false);
10793     break;
10794   case BO_And:
10795     checkObjCPointerIntrospection(*this, LHS, RHS, OpLoc);
10796   case BO_Xor:
10797   case BO_Or:
10798     ResultTy = CheckBitwiseOperands(LHS, RHS, OpLoc);
10799     break;
10800   case BO_LAnd:
10801   case BO_LOr:
10802     ResultTy = CheckLogicalOperands(LHS, RHS, OpLoc, Opc);
10803     break;
10804   case BO_MulAssign:
10805   case BO_DivAssign:
10806     CompResultTy = CheckMultiplyDivideOperands(LHS, RHS, OpLoc, true,
10807                                                Opc == BO_DivAssign);
10808     CompLHSTy = CompResultTy;
10809     if (!CompResultTy.isNull() && !LHS.isInvalid() && !RHS.isInvalid())
10810       ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy);
10811     break;
10812   case BO_RemAssign:
10813     CompResultTy = CheckRemainderOperands(LHS, RHS, OpLoc, true);
10814     CompLHSTy = CompResultTy;
10815     if (!CompResultTy.isNull() && !LHS.isInvalid() && !RHS.isInvalid())
10816       ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy);
10817     break;
10818   case BO_AddAssign:
10819     CompResultTy = CheckAdditionOperands(LHS, RHS, OpLoc, Opc, &CompLHSTy);
10820     if (!CompResultTy.isNull() && !LHS.isInvalid() && !RHS.isInvalid())
10821       ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy);
10822     break;
10823   case BO_SubAssign:
10824     CompResultTy = CheckSubtractionOperands(LHS, RHS, OpLoc, &CompLHSTy);
10825     if (!CompResultTy.isNull() && !LHS.isInvalid() && !RHS.isInvalid())
10826       ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy);
10827     break;
10828   case BO_ShlAssign:
10829   case BO_ShrAssign:
10830     CompResultTy = CheckShiftOperands(LHS, RHS, OpLoc, Opc, true);
10831     CompLHSTy = CompResultTy;
10832     if (!CompResultTy.isNull() && !LHS.isInvalid() && !RHS.isInvalid())
10833       ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy);
10834     break;
10835   case BO_AndAssign:
10836   case BO_OrAssign: // fallthrough
10837     DiagnoseSelfAssignment(*this, LHS.get(), RHS.get(), OpLoc);
10838   case BO_XorAssign:
10839     CompResultTy = CheckBitwiseOperands(LHS, RHS, OpLoc, true);
10840     CompLHSTy = CompResultTy;
10841     if (!CompResultTy.isNull() && !LHS.isInvalid() && !RHS.isInvalid())
10842       ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy);
10843     break;
10844   case BO_Comma:
10845     ResultTy = CheckCommaOperands(*this, LHS, RHS, OpLoc);
10846     if (getLangOpts().CPlusPlus && !RHS.isInvalid()) {
10847       VK = RHS.get()->getValueKind();
10848       OK = RHS.get()->getObjectKind();
10849     }
10850     break;
10851   }
10852   if (ResultTy.isNull() || LHS.isInvalid() || RHS.isInvalid())
10853     return ExprError();
10854 
10855   // Check for array bounds violations for both sides of the BinaryOperator
10856   CheckArrayAccess(LHS.get());
10857   CheckArrayAccess(RHS.get());
10858 
10859   if (const ObjCIsaExpr *OISA = dyn_cast<ObjCIsaExpr>(LHS.get()->IgnoreParenCasts())) {
10860     NamedDecl *ObjectSetClass = LookupSingleName(TUScope,
10861                                                  &Context.Idents.get("object_setClass"),
10862                                                  SourceLocation(), LookupOrdinaryName);
10863     if (ObjectSetClass && isa<ObjCIsaExpr>(LHS.get())) {
10864       SourceLocation RHSLocEnd = getLocForEndOfToken(RHS.get()->getLocEnd());
10865       Diag(LHS.get()->getExprLoc(), diag::warn_objc_isa_assign) <<
10866       FixItHint::CreateInsertion(LHS.get()->getLocStart(), "object_setClass(") <<
10867       FixItHint::CreateReplacement(SourceRange(OISA->getOpLoc(), OpLoc), ",") <<
10868       FixItHint::CreateInsertion(RHSLocEnd, ")");
10869     }
10870     else
10871       Diag(LHS.get()->getExprLoc(), diag::warn_objc_isa_assign);
10872   }
10873   else if (const ObjCIvarRefExpr *OIRE =
10874            dyn_cast<ObjCIvarRefExpr>(LHS.get()->IgnoreParenCasts()))
10875     DiagnoseDirectIsaAccess(*this, OIRE, OpLoc, RHS.get());
10876 
10877   if (CompResultTy.isNull())
10878     return new (Context) BinaryOperator(LHS.get(), RHS.get(), Opc, ResultTy, VK,
10879                                         OK, OpLoc, FPFeatures.fp_contract);
10880   if (getLangOpts().CPlusPlus && LHS.get()->getObjectKind() !=
10881       OK_ObjCProperty) {
10882     VK = VK_LValue;
10883     OK = LHS.get()->getObjectKind();
10884   }
10885   return new (Context) CompoundAssignOperator(
10886       LHS.get(), RHS.get(), Opc, ResultTy, VK, OK, CompLHSTy, CompResultTy,
10887       OpLoc, FPFeatures.fp_contract);
10888 }
10889 
10890 /// DiagnoseBitwisePrecedence - Emit a warning when bitwise and comparison
10891 /// operators are mixed in a way that suggests that the programmer forgot that
10892 /// comparison operators have higher precedence. The most typical example of
10893 /// such code is "flags & 0x0020 != 0", which is equivalent to "flags & 1".
10894 static void DiagnoseBitwisePrecedence(Sema &Self, BinaryOperatorKind Opc,
10895                                       SourceLocation OpLoc, Expr *LHSExpr,
10896                                       Expr *RHSExpr) {
10897   BinaryOperator *LHSBO = dyn_cast<BinaryOperator>(LHSExpr);
10898   BinaryOperator *RHSBO = dyn_cast<BinaryOperator>(RHSExpr);
10899 
10900   // Check that one of the sides is a comparison operator and the other isn't.
10901   bool isLeftComp = LHSBO && LHSBO->isComparisonOp();
10902   bool isRightComp = RHSBO && RHSBO->isComparisonOp();
10903   if (isLeftComp == isRightComp)
10904     return;
10905 
10906   // Bitwise operations are sometimes used as eager logical ops.
10907   // Don't diagnose this.
10908   bool isLeftBitwise = LHSBO && LHSBO->isBitwiseOp();
10909   bool isRightBitwise = RHSBO && RHSBO->isBitwiseOp();
10910   if (isLeftBitwise || isRightBitwise)
10911     return;
10912 
10913   SourceRange DiagRange = isLeftComp ? SourceRange(LHSExpr->getLocStart(),
10914                                                    OpLoc)
10915                                      : SourceRange(OpLoc, RHSExpr->getLocEnd());
10916   StringRef OpStr = isLeftComp ? LHSBO->getOpcodeStr() : RHSBO->getOpcodeStr();
10917   SourceRange ParensRange = isLeftComp ?
10918       SourceRange(LHSBO->getRHS()->getLocStart(), RHSExpr->getLocEnd())
10919     : SourceRange(LHSExpr->getLocStart(), RHSBO->getLHS()->getLocEnd());
10920 
10921   Self.Diag(OpLoc, diag::warn_precedence_bitwise_rel)
10922     << DiagRange << BinaryOperator::getOpcodeStr(Opc) << OpStr;
10923   SuggestParentheses(Self, OpLoc,
10924     Self.PDiag(diag::note_precedence_silence) << OpStr,
10925     (isLeftComp ? LHSExpr : RHSExpr)->getSourceRange());
10926   SuggestParentheses(Self, OpLoc,
10927     Self.PDiag(diag::note_precedence_bitwise_first)
10928       << BinaryOperator::getOpcodeStr(Opc),
10929     ParensRange);
10930 }
10931 
10932 /// \brief It accepts a '&&' expr that is inside a '||' one.
10933 /// Emit a diagnostic together with a fixit hint that wraps the '&&' expression
10934 /// in parentheses.
10935 static void
10936 EmitDiagnosticForLogicalAndInLogicalOr(Sema &Self, SourceLocation OpLoc,
10937                                        BinaryOperator *Bop) {
10938   assert(Bop->getOpcode() == BO_LAnd);
10939   Self.Diag(Bop->getOperatorLoc(), diag::warn_logical_and_in_logical_or)
10940       << Bop->getSourceRange() << OpLoc;
10941   SuggestParentheses(Self, Bop->getOperatorLoc(),
10942     Self.PDiag(diag::note_precedence_silence)
10943       << Bop->getOpcodeStr(),
10944     Bop->getSourceRange());
10945 }
10946 
10947 /// \brief Returns true if the given expression can be evaluated as a constant
10948 /// 'true'.
10949 static bool EvaluatesAsTrue(Sema &S, Expr *E) {
10950   bool Res;
10951   return !E->isValueDependent() &&
10952          E->EvaluateAsBooleanCondition(Res, S.getASTContext()) && Res;
10953 }
10954 
10955 /// \brief Returns true if the given expression can be evaluated as a constant
10956 /// 'false'.
10957 static bool EvaluatesAsFalse(Sema &S, Expr *E) {
10958   bool Res;
10959   return !E->isValueDependent() &&
10960          E->EvaluateAsBooleanCondition(Res, S.getASTContext()) && !Res;
10961 }
10962 
10963 /// \brief Look for '&&' in the left hand of a '||' expr.
10964 static void DiagnoseLogicalAndInLogicalOrLHS(Sema &S, SourceLocation OpLoc,
10965                                              Expr *LHSExpr, Expr *RHSExpr) {
10966   if (BinaryOperator *Bop = dyn_cast<BinaryOperator>(LHSExpr)) {
10967     if (Bop->getOpcode() == BO_LAnd) {
10968       // If it's "a && b || 0" don't warn since the precedence doesn't matter.
10969       if (EvaluatesAsFalse(S, RHSExpr))
10970         return;
10971       // If it's "1 && a || b" don't warn since the precedence doesn't matter.
10972       if (!EvaluatesAsTrue(S, Bop->getLHS()))
10973         return EmitDiagnosticForLogicalAndInLogicalOr(S, OpLoc, Bop);
10974     } else if (Bop->getOpcode() == BO_LOr) {
10975       if (BinaryOperator *RBop = dyn_cast<BinaryOperator>(Bop->getRHS())) {
10976         // If it's "a || b && 1 || c" we didn't warn earlier for
10977         // "a || b && 1", but warn now.
10978         if (RBop->getOpcode() == BO_LAnd && EvaluatesAsTrue(S, RBop->getRHS()))
10979           return EmitDiagnosticForLogicalAndInLogicalOr(S, OpLoc, RBop);
10980       }
10981     }
10982   }
10983 }
10984 
10985 /// \brief Look for '&&' in the right hand of a '||' expr.
10986 static void DiagnoseLogicalAndInLogicalOrRHS(Sema &S, SourceLocation OpLoc,
10987                                              Expr *LHSExpr, Expr *RHSExpr) {
10988   if (BinaryOperator *Bop = dyn_cast<BinaryOperator>(RHSExpr)) {
10989     if (Bop->getOpcode() == BO_LAnd) {
10990       // If it's "0 || a && b" don't warn since the precedence doesn't matter.
10991       if (EvaluatesAsFalse(S, LHSExpr))
10992         return;
10993       // If it's "a || b && 1" don't warn since the precedence doesn't matter.
10994       if (!EvaluatesAsTrue(S, Bop->getRHS()))
10995         return EmitDiagnosticForLogicalAndInLogicalOr(S, OpLoc, Bop);
10996     }
10997   }
10998 }
10999 
11000 /// \brief Look for bitwise op in the left or right hand of a bitwise op with
11001 /// lower precedence and emit a diagnostic together with a fixit hint that wraps
11002 /// the '&' expression in parentheses.
11003 static void DiagnoseBitwiseOpInBitwiseOp(Sema &S, BinaryOperatorKind Opc,
11004                                          SourceLocation OpLoc, Expr *SubExpr) {
11005   if (BinaryOperator *Bop = dyn_cast<BinaryOperator>(SubExpr)) {
11006     if (Bop->isBitwiseOp() && Bop->getOpcode() < Opc) {
11007       S.Diag(Bop->getOperatorLoc(), diag::warn_bitwise_op_in_bitwise_op)
11008         << Bop->getOpcodeStr() << BinaryOperator::getOpcodeStr(Opc)
11009         << Bop->getSourceRange() << OpLoc;
11010       SuggestParentheses(S, Bop->getOperatorLoc(),
11011         S.PDiag(diag::note_precedence_silence)
11012           << Bop->getOpcodeStr(),
11013         Bop->getSourceRange());
11014     }
11015   }
11016 }
11017 
11018 static void DiagnoseAdditionInShift(Sema &S, SourceLocation OpLoc,
11019                                     Expr *SubExpr, StringRef Shift) {
11020   if (BinaryOperator *Bop = dyn_cast<BinaryOperator>(SubExpr)) {
11021     if (Bop->getOpcode() == BO_Add || Bop->getOpcode() == BO_Sub) {
11022       StringRef Op = Bop->getOpcodeStr();
11023       S.Diag(Bop->getOperatorLoc(), diag::warn_addition_in_bitshift)
11024           << Bop->getSourceRange() << OpLoc << Shift << Op;
11025       SuggestParentheses(S, Bop->getOperatorLoc(),
11026           S.PDiag(diag::note_precedence_silence) << Op,
11027           Bop->getSourceRange());
11028     }
11029   }
11030 }
11031 
11032 static void DiagnoseShiftCompare(Sema &S, SourceLocation OpLoc,
11033                                  Expr *LHSExpr, Expr *RHSExpr) {
11034   CXXOperatorCallExpr *OCE = dyn_cast<CXXOperatorCallExpr>(LHSExpr);
11035   if (!OCE)
11036     return;
11037 
11038   FunctionDecl *FD = OCE->getDirectCallee();
11039   if (!FD || !FD->isOverloadedOperator())
11040     return;
11041 
11042   OverloadedOperatorKind Kind = FD->getOverloadedOperator();
11043   if (Kind != OO_LessLess && Kind != OO_GreaterGreater)
11044     return;
11045 
11046   S.Diag(OpLoc, diag::warn_overloaded_shift_in_comparison)
11047       << LHSExpr->getSourceRange() << RHSExpr->getSourceRange()
11048       << (Kind == OO_LessLess);
11049   SuggestParentheses(S, OCE->getOperatorLoc(),
11050                      S.PDiag(diag::note_precedence_silence)
11051                          << (Kind == OO_LessLess ? "<<" : ">>"),
11052                      OCE->getSourceRange());
11053   SuggestParentheses(S, OpLoc,
11054                      S.PDiag(diag::note_evaluate_comparison_first),
11055                      SourceRange(OCE->getArg(1)->getLocStart(),
11056                                  RHSExpr->getLocEnd()));
11057 }
11058 
11059 /// DiagnoseBinOpPrecedence - Emit warnings for expressions with tricky
11060 /// precedence.
11061 static void DiagnoseBinOpPrecedence(Sema &Self, BinaryOperatorKind Opc,
11062                                     SourceLocation OpLoc, Expr *LHSExpr,
11063                                     Expr *RHSExpr){
11064   // Diagnose "arg1 'bitwise' arg2 'eq' arg3".
11065   if (BinaryOperator::isBitwiseOp(Opc))
11066     DiagnoseBitwisePrecedence(Self, Opc, OpLoc, LHSExpr, RHSExpr);
11067 
11068   // Diagnose "arg1 & arg2 | arg3"
11069   if ((Opc == BO_Or || Opc == BO_Xor) &&
11070       !OpLoc.isMacroID()/* Don't warn in macros. */) {
11071     DiagnoseBitwiseOpInBitwiseOp(Self, Opc, OpLoc, LHSExpr);
11072     DiagnoseBitwiseOpInBitwiseOp(Self, Opc, OpLoc, RHSExpr);
11073   }
11074 
11075   // Warn about arg1 || arg2 && arg3, as GCC 4.3+ does.
11076   // We don't warn for 'assert(a || b && "bad")' since this is safe.
11077   if (Opc == BO_LOr && !OpLoc.isMacroID()/* Don't warn in macros. */) {
11078     DiagnoseLogicalAndInLogicalOrLHS(Self, OpLoc, LHSExpr, RHSExpr);
11079     DiagnoseLogicalAndInLogicalOrRHS(Self, OpLoc, LHSExpr, RHSExpr);
11080   }
11081 
11082   if ((Opc == BO_Shl && LHSExpr->getType()->isIntegralType(Self.getASTContext()))
11083       || Opc == BO_Shr) {
11084     StringRef Shift = BinaryOperator::getOpcodeStr(Opc);
11085     DiagnoseAdditionInShift(Self, OpLoc, LHSExpr, Shift);
11086     DiagnoseAdditionInShift(Self, OpLoc, RHSExpr, Shift);
11087   }
11088 
11089   // Warn on overloaded shift operators and comparisons, such as:
11090   // cout << 5 == 4;
11091   if (BinaryOperator::isComparisonOp(Opc))
11092     DiagnoseShiftCompare(Self, OpLoc, LHSExpr, RHSExpr);
11093 }
11094 
11095 // Binary Operators.  'Tok' is the token for the operator.
11096 ExprResult Sema::ActOnBinOp(Scope *S, SourceLocation TokLoc,
11097                             tok::TokenKind Kind,
11098                             Expr *LHSExpr, Expr *RHSExpr) {
11099   BinaryOperatorKind Opc = ConvertTokenKindToBinaryOpcode(Kind);
11100   assert(LHSExpr && "ActOnBinOp(): missing left expression");
11101   assert(RHSExpr && "ActOnBinOp(): missing right expression");
11102 
11103   // Emit warnings for tricky precedence issues, e.g. "bitfield & 0x4 == 0"
11104   DiagnoseBinOpPrecedence(*this, Opc, TokLoc, LHSExpr, RHSExpr);
11105 
11106   return BuildBinOp(S, TokLoc, Opc, LHSExpr, RHSExpr);
11107 }
11108 
11109 /// Build an overloaded binary operator expression in the given scope.
11110 static ExprResult BuildOverloadedBinOp(Sema &S, Scope *Sc, SourceLocation OpLoc,
11111                                        BinaryOperatorKind Opc,
11112                                        Expr *LHS, Expr *RHS) {
11113   // Find all of the overloaded operators visible from this
11114   // point. We perform both an operator-name lookup from the local
11115   // scope and an argument-dependent lookup based on the types of
11116   // the arguments.
11117   UnresolvedSet<16> Functions;
11118   OverloadedOperatorKind OverOp
11119     = BinaryOperator::getOverloadedOperator(Opc);
11120   if (Sc && OverOp != OO_None && OverOp != OO_Equal)
11121     S.LookupOverloadedOperatorName(OverOp, Sc, LHS->getType(),
11122                                    RHS->getType(), Functions);
11123 
11124   // Build the (potentially-overloaded, potentially-dependent)
11125   // binary operation.
11126   return S.CreateOverloadedBinOp(OpLoc, Opc, Functions, LHS, RHS);
11127 }
11128 
11129 ExprResult Sema::BuildBinOp(Scope *S, SourceLocation OpLoc,
11130                             BinaryOperatorKind Opc,
11131                             Expr *LHSExpr, Expr *RHSExpr) {
11132   // We want to end up calling one of checkPseudoObjectAssignment
11133   // (if the LHS is a pseudo-object), BuildOverloadedBinOp (if
11134   // both expressions are overloadable or either is type-dependent),
11135   // or CreateBuiltinBinOp (in any other case).  We also want to get
11136   // any placeholder types out of the way.
11137 
11138   // Handle pseudo-objects in the LHS.
11139   if (const BuiltinType *pty = LHSExpr->getType()->getAsPlaceholderType()) {
11140     // Assignments with a pseudo-object l-value need special analysis.
11141     if (pty->getKind() == BuiltinType::PseudoObject &&
11142         BinaryOperator::isAssignmentOp(Opc))
11143       return checkPseudoObjectAssignment(S, OpLoc, Opc, LHSExpr, RHSExpr);
11144 
11145     // Don't resolve overloads if the other type is overloadable.
11146     if (pty->getKind() == BuiltinType::Overload) {
11147       // We can't actually test that if we still have a placeholder,
11148       // though.  Fortunately, none of the exceptions we see in that
11149       // code below are valid when the LHS is an overload set.  Note
11150       // that an overload set can be dependently-typed, but it never
11151       // instantiates to having an overloadable type.
11152       ExprResult resolvedRHS = CheckPlaceholderExpr(RHSExpr);
11153       if (resolvedRHS.isInvalid()) return ExprError();
11154       RHSExpr = resolvedRHS.get();
11155 
11156       if (RHSExpr->isTypeDependent() ||
11157           RHSExpr->getType()->isOverloadableType())
11158         return BuildOverloadedBinOp(*this, S, OpLoc, Opc, LHSExpr, RHSExpr);
11159     }
11160 
11161     ExprResult LHS = CheckPlaceholderExpr(LHSExpr);
11162     if (LHS.isInvalid()) return ExprError();
11163     LHSExpr = LHS.get();
11164   }
11165 
11166   // Handle pseudo-objects in the RHS.
11167   if (const BuiltinType *pty = RHSExpr->getType()->getAsPlaceholderType()) {
11168     // An overload in the RHS can potentially be resolved by the type
11169     // being assigned to.
11170     if (Opc == BO_Assign && pty->getKind() == BuiltinType::Overload) {
11171       if (LHSExpr->isTypeDependent() || RHSExpr->isTypeDependent())
11172         return BuildOverloadedBinOp(*this, S, OpLoc, Opc, LHSExpr, RHSExpr);
11173 
11174       if (LHSExpr->getType()->isOverloadableType())
11175         return BuildOverloadedBinOp(*this, S, OpLoc, Opc, LHSExpr, RHSExpr);
11176 
11177       return CreateBuiltinBinOp(OpLoc, Opc, LHSExpr, RHSExpr);
11178     }
11179 
11180     // Don't resolve overloads if the other type is overloadable.
11181     if (pty->getKind() == BuiltinType::Overload &&
11182         LHSExpr->getType()->isOverloadableType())
11183       return BuildOverloadedBinOp(*this, S, OpLoc, Opc, LHSExpr, RHSExpr);
11184 
11185     ExprResult resolvedRHS = CheckPlaceholderExpr(RHSExpr);
11186     if (!resolvedRHS.isUsable()) return ExprError();
11187     RHSExpr = resolvedRHS.get();
11188   }
11189 
11190   if (getLangOpts().CPlusPlus) {
11191     // If either expression is type-dependent, always build an
11192     // overloaded op.
11193     if (LHSExpr->isTypeDependent() || RHSExpr->isTypeDependent())
11194       return BuildOverloadedBinOp(*this, S, OpLoc, Opc, LHSExpr, RHSExpr);
11195 
11196     // Otherwise, build an overloaded op if either expression has an
11197     // overloadable type.
11198     if (LHSExpr->getType()->isOverloadableType() ||
11199         RHSExpr->getType()->isOverloadableType())
11200       return BuildOverloadedBinOp(*this, S, OpLoc, Opc, LHSExpr, RHSExpr);
11201   }
11202 
11203   // Build a built-in binary operation.
11204   return CreateBuiltinBinOp(OpLoc, Opc, LHSExpr, RHSExpr);
11205 }
11206 
11207 ExprResult Sema::CreateBuiltinUnaryOp(SourceLocation OpLoc,
11208                                       UnaryOperatorKind Opc,
11209                                       Expr *InputExpr) {
11210   ExprResult Input = InputExpr;
11211   ExprValueKind VK = VK_RValue;
11212   ExprObjectKind OK = OK_Ordinary;
11213   QualType resultType;
11214   if (getLangOpts().OpenCL) {
11215     // The only legal unary operation for atomics is '&'.
11216     if (Opc != UO_AddrOf && InputExpr->getType()->isAtomicType()) {
11217       return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr)
11218                        << InputExpr->getType()
11219                        << Input.get()->getSourceRange());
11220     }
11221   }
11222   switch (Opc) {
11223   case UO_PreInc:
11224   case UO_PreDec:
11225   case UO_PostInc:
11226   case UO_PostDec:
11227     resultType = CheckIncrementDecrementOperand(*this, Input.get(), VK, OK,
11228                                                 OpLoc,
11229                                                 Opc == UO_PreInc ||
11230                                                 Opc == UO_PostInc,
11231                                                 Opc == UO_PreInc ||
11232                                                 Opc == UO_PreDec);
11233     break;
11234   case UO_AddrOf:
11235     resultType = CheckAddressOfOperand(Input, OpLoc);
11236     RecordModifiableNonNullParam(*this, InputExpr);
11237     break;
11238   case UO_Deref: {
11239     Input = DefaultFunctionArrayLvalueConversion(Input.get());
11240     if (Input.isInvalid()) return ExprError();
11241     resultType = CheckIndirectionOperand(*this, Input.get(), VK, OpLoc);
11242     break;
11243   }
11244   case UO_Plus:
11245   case UO_Minus:
11246     Input = UsualUnaryConversions(Input.get());
11247     if (Input.isInvalid()) return ExprError();
11248     resultType = Input.get()->getType();
11249     if (resultType->isDependentType())
11250       break;
11251     if (resultType->isArithmeticType()) // C99 6.5.3.3p1
11252       break;
11253     else if (resultType->isVectorType() &&
11254              // The z vector extensions don't allow + or - with bool vectors.
11255              (!Context.getLangOpts().ZVector ||
11256               resultType->getAs<VectorType>()->getVectorKind() !=
11257               VectorType::AltiVecBool))
11258       break;
11259     else if (getLangOpts().CPlusPlus && // C++ [expr.unary.op]p6
11260              Opc == UO_Plus &&
11261              resultType->isPointerType())
11262       break;
11263 
11264     return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr)
11265       << resultType << Input.get()->getSourceRange());
11266 
11267   case UO_Not: // bitwise complement
11268     Input = UsualUnaryConversions(Input.get());
11269     if (Input.isInvalid())
11270       return ExprError();
11271     resultType = Input.get()->getType();
11272     if (resultType->isDependentType())
11273       break;
11274     // C99 6.5.3.3p1. We allow complex int and float as a GCC extension.
11275     if (resultType->isComplexType() || resultType->isComplexIntegerType())
11276       // C99 does not support '~' for complex conjugation.
11277       Diag(OpLoc, diag::ext_integer_complement_complex)
11278           << resultType << Input.get()->getSourceRange();
11279     else if (resultType->hasIntegerRepresentation())
11280       break;
11281     else if (resultType->isExtVectorType()) {
11282       if (Context.getLangOpts().OpenCL) {
11283         // OpenCL v1.1 s6.3.f: The bitwise operator not (~) does not operate
11284         // on vector float types.
11285         QualType T = resultType->getAs<ExtVectorType>()->getElementType();
11286         if (!T->isIntegerType())
11287           return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr)
11288                            << resultType << Input.get()->getSourceRange());
11289       }
11290       break;
11291     } else {
11292       return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr)
11293                        << resultType << Input.get()->getSourceRange());
11294     }
11295     break;
11296 
11297   case UO_LNot: // logical negation
11298     // Unlike +/-/~, integer promotions aren't done here (C99 6.5.3.3p5).
11299     Input = DefaultFunctionArrayLvalueConversion(Input.get());
11300     if (Input.isInvalid()) return ExprError();
11301     resultType = Input.get()->getType();
11302 
11303     // Though we still have to promote half FP to float...
11304     if (resultType->isHalfType() && !Context.getLangOpts().NativeHalfType) {
11305       Input = ImpCastExprToType(Input.get(), Context.FloatTy, CK_FloatingCast).get();
11306       resultType = Context.FloatTy;
11307     }
11308 
11309     if (resultType->isDependentType())
11310       break;
11311     if (resultType->isScalarType() && !isScopedEnumerationType(resultType)) {
11312       // C99 6.5.3.3p1: ok, fallthrough;
11313       if (Context.getLangOpts().CPlusPlus) {
11314         // C++03 [expr.unary.op]p8, C++0x [expr.unary.op]p9:
11315         // operand contextually converted to bool.
11316         Input = ImpCastExprToType(Input.get(), Context.BoolTy,
11317                                   ScalarTypeToBooleanCastKind(resultType));
11318       } else if (Context.getLangOpts().OpenCL &&
11319                  Context.getLangOpts().OpenCLVersion < 120) {
11320         // OpenCL v1.1 6.3.h: The logical operator not (!) does not
11321         // operate on scalar float types.
11322         if (!resultType->isIntegerType())
11323           return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr)
11324                            << resultType << Input.get()->getSourceRange());
11325       }
11326     } else if (resultType->isExtVectorType()) {
11327       if (Context.getLangOpts().OpenCL &&
11328           Context.getLangOpts().OpenCLVersion < 120) {
11329         // OpenCL v1.1 6.3.h: The logical operator not (!) does not
11330         // operate on vector float types.
11331         QualType T = resultType->getAs<ExtVectorType>()->getElementType();
11332         if (!T->isIntegerType())
11333           return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr)
11334                            << resultType << Input.get()->getSourceRange());
11335       }
11336       // Vector logical not returns the signed variant of the operand type.
11337       resultType = GetSignedVectorType(resultType);
11338       break;
11339     } else {
11340       return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr)
11341         << resultType << Input.get()->getSourceRange());
11342     }
11343 
11344     // LNot always has type int. C99 6.5.3.3p5.
11345     // In C++, it's bool. C++ 5.3.1p8
11346     resultType = Context.getLogicalOperationType();
11347     break;
11348   case UO_Real:
11349   case UO_Imag:
11350     resultType = CheckRealImagOperand(*this, Input, OpLoc, Opc == UO_Real);
11351     // _Real maps ordinary l-values into ordinary l-values. _Imag maps ordinary
11352     // complex l-values to ordinary l-values and all other values to r-values.
11353     if (Input.isInvalid()) return ExprError();
11354     if (Opc == UO_Real || Input.get()->getType()->isAnyComplexType()) {
11355       if (Input.get()->getValueKind() != VK_RValue &&
11356           Input.get()->getObjectKind() == OK_Ordinary)
11357         VK = Input.get()->getValueKind();
11358     } else if (!getLangOpts().CPlusPlus) {
11359       // In C, a volatile scalar is read by __imag. In C++, it is not.
11360       Input = DefaultLvalueConversion(Input.get());
11361     }
11362     break;
11363   case UO_Extension:
11364   case UO_Coawait:
11365     resultType = Input.get()->getType();
11366     VK = Input.get()->getValueKind();
11367     OK = Input.get()->getObjectKind();
11368     break;
11369   }
11370   if (resultType.isNull() || Input.isInvalid())
11371     return ExprError();
11372 
11373   // Check for array bounds violations in the operand of the UnaryOperator,
11374   // except for the '*' and '&' operators that have to be handled specially
11375   // by CheckArrayAccess (as there are special cases like &array[arraysize]
11376   // that are explicitly defined as valid by the standard).
11377   if (Opc != UO_AddrOf && Opc != UO_Deref)
11378     CheckArrayAccess(Input.get());
11379 
11380   return new (Context)
11381       UnaryOperator(Input.get(), Opc, resultType, VK, OK, OpLoc);
11382 }
11383 
11384 /// \brief Determine whether the given expression is a qualified member
11385 /// access expression, of a form that could be turned into a pointer to member
11386 /// with the address-of operator.
11387 static bool isQualifiedMemberAccess(Expr *E) {
11388   if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E)) {
11389     if (!DRE->getQualifier())
11390       return false;
11391 
11392     ValueDecl *VD = DRE->getDecl();
11393     if (!VD->isCXXClassMember())
11394       return false;
11395 
11396     if (isa<FieldDecl>(VD) || isa<IndirectFieldDecl>(VD))
11397       return true;
11398     if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(VD))
11399       return Method->isInstance();
11400 
11401     return false;
11402   }
11403 
11404   if (UnresolvedLookupExpr *ULE = dyn_cast<UnresolvedLookupExpr>(E)) {
11405     if (!ULE->getQualifier())
11406       return false;
11407 
11408     for (NamedDecl *D : ULE->decls()) {
11409       if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) {
11410         if (Method->isInstance())
11411           return true;
11412       } else {
11413         // Overload set does not contain methods.
11414         break;
11415       }
11416     }
11417 
11418     return false;
11419   }
11420 
11421   return false;
11422 }
11423 
11424 ExprResult Sema::BuildUnaryOp(Scope *S, SourceLocation OpLoc,
11425                               UnaryOperatorKind Opc, Expr *Input) {
11426   // First things first: handle placeholders so that the
11427   // overloaded-operator check considers the right type.
11428   if (const BuiltinType *pty = Input->getType()->getAsPlaceholderType()) {
11429     // Increment and decrement of pseudo-object references.
11430     if (pty->getKind() == BuiltinType::PseudoObject &&
11431         UnaryOperator::isIncrementDecrementOp(Opc))
11432       return checkPseudoObjectIncDec(S, OpLoc, Opc, Input);
11433 
11434     // extension is always a builtin operator.
11435     if (Opc == UO_Extension)
11436       return CreateBuiltinUnaryOp(OpLoc, Opc, Input);
11437 
11438     // & gets special logic for several kinds of placeholder.
11439     // The builtin code knows what to do.
11440     if (Opc == UO_AddrOf &&
11441         (pty->getKind() == BuiltinType::Overload ||
11442          pty->getKind() == BuiltinType::UnknownAny ||
11443          pty->getKind() == BuiltinType::BoundMember))
11444       return CreateBuiltinUnaryOp(OpLoc, Opc, Input);
11445 
11446     // Anything else needs to be handled now.
11447     ExprResult Result = CheckPlaceholderExpr(Input);
11448     if (Result.isInvalid()) return ExprError();
11449     Input = Result.get();
11450   }
11451 
11452   if (getLangOpts().CPlusPlus && Input->getType()->isOverloadableType() &&
11453       UnaryOperator::getOverloadedOperator(Opc) != OO_None &&
11454       !(Opc == UO_AddrOf && isQualifiedMemberAccess(Input))) {
11455     // Find all of the overloaded operators visible from this
11456     // point. We perform both an operator-name lookup from the local
11457     // scope and an argument-dependent lookup based on the types of
11458     // the arguments.
11459     UnresolvedSet<16> Functions;
11460     OverloadedOperatorKind OverOp = UnaryOperator::getOverloadedOperator(Opc);
11461     if (S && OverOp != OO_None)
11462       LookupOverloadedOperatorName(OverOp, S, Input->getType(), QualType(),
11463                                    Functions);
11464 
11465     return CreateOverloadedUnaryOp(OpLoc, Opc, Functions, Input);
11466   }
11467 
11468   return CreateBuiltinUnaryOp(OpLoc, Opc, Input);
11469 }
11470 
11471 // Unary Operators.  'Tok' is the token for the operator.
11472 ExprResult Sema::ActOnUnaryOp(Scope *S, SourceLocation OpLoc,
11473                               tok::TokenKind Op, Expr *Input) {
11474   return BuildUnaryOp(S, OpLoc, ConvertTokenKindToUnaryOpcode(Op), Input);
11475 }
11476 
11477 /// ActOnAddrLabel - Parse the GNU address of label extension: "&&foo".
11478 ExprResult Sema::ActOnAddrLabel(SourceLocation OpLoc, SourceLocation LabLoc,
11479                                 LabelDecl *TheDecl) {
11480   TheDecl->markUsed(Context);
11481   // Create the AST node.  The address of a label always has type 'void*'.
11482   return new (Context) AddrLabelExpr(OpLoc, LabLoc, TheDecl,
11483                                      Context.getPointerType(Context.VoidTy));
11484 }
11485 
11486 /// Given the last statement in a statement-expression, check whether
11487 /// the result is a producing expression (like a call to an
11488 /// ns_returns_retained function) and, if so, rebuild it to hoist the
11489 /// release out of the full-expression.  Otherwise, return null.
11490 /// Cannot fail.
11491 static Expr *maybeRebuildARCConsumingStmt(Stmt *Statement) {
11492   // Should always be wrapped with one of these.
11493   ExprWithCleanups *cleanups = dyn_cast<ExprWithCleanups>(Statement);
11494   if (!cleanups) return nullptr;
11495 
11496   ImplicitCastExpr *cast = dyn_cast<ImplicitCastExpr>(cleanups->getSubExpr());
11497   if (!cast || cast->getCastKind() != CK_ARCConsumeObject)
11498     return nullptr;
11499 
11500   // Splice out the cast.  This shouldn't modify any interesting
11501   // features of the statement.
11502   Expr *producer = cast->getSubExpr();
11503   assert(producer->getType() == cast->getType());
11504   assert(producer->getValueKind() == cast->getValueKind());
11505   cleanups->setSubExpr(producer);
11506   return cleanups;
11507 }
11508 
11509 void Sema::ActOnStartStmtExpr() {
11510   PushExpressionEvaluationContext(ExprEvalContexts.back().Context);
11511 }
11512 
11513 void Sema::ActOnStmtExprError() {
11514   // Note that function is also called by TreeTransform when leaving a
11515   // StmtExpr scope without rebuilding anything.
11516 
11517   DiscardCleanupsInEvaluationContext();
11518   PopExpressionEvaluationContext();
11519 }
11520 
11521 ExprResult
11522 Sema::ActOnStmtExpr(SourceLocation LPLoc, Stmt *SubStmt,
11523                     SourceLocation RPLoc) { // "({..})"
11524   assert(SubStmt && isa<CompoundStmt>(SubStmt) && "Invalid action invocation!");
11525   CompoundStmt *Compound = cast<CompoundStmt>(SubStmt);
11526 
11527   if (hasAnyUnrecoverableErrorsInThisFunction())
11528     DiscardCleanupsInEvaluationContext();
11529   assert(!ExprNeedsCleanups && "cleanups within StmtExpr not correctly bound!");
11530   PopExpressionEvaluationContext();
11531 
11532   // FIXME: there are a variety of strange constraints to enforce here, for
11533   // example, it is not possible to goto into a stmt expression apparently.
11534   // More semantic analysis is needed.
11535 
11536   // If there are sub-stmts in the compound stmt, take the type of the last one
11537   // as the type of the stmtexpr.
11538   QualType Ty = Context.VoidTy;
11539   bool StmtExprMayBindToTemp = false;
11540   if (!Compound->body_empty()) {
11541     Stmt *LastStmt = Compound->body_back();
11542     LabelStmt *LastLabelStmt = nullptr;
11543     // If LastStmt is a label, skip down through into the body.
11544     while (LabelStmt *Label = dyn_cast<LabelStmt>(LastStmt)) {
11545       LastLabelStmt = Label;
11546       LastStmt = Label->getSubStmt();
11547     }
11548 
11549     if (Expr *LastE = dyn_cast<Expr>(LastStmt)) {
11550       // Do function/array conversion on the last expression, but not
11551       // lvalue-to-rvalue.  However, initialize an unqualified type.
11552       ExprResult LastExpr = DefaultFunctionArrayConversion(LastE);
11553       if (LastExpr.isInvalid())
11554         return ExprError();
11555       Ty = LastExpr.get()->getType().getUnqualifiedType();
11556 
11557       if (!Ty->isDependentType() && !LastExpr.get()->isTypeDependent()) {
11558         // In ARC, if the final expression ends in a consume, splice
11559         // the consume out and bind it later.  In the alternate case
11560         // (when dealing with a retainable type), the result
11561         // initialization will create a produce.  In both cases the
11562         // result will be +1, and we'll need to balance that out with
11563         // a bind.
11564         if (Expr *rebuiltLastStmt
11565               = maybeRebuildARCConsumingStmt(LastExpr.get())) {
11566           LastExpr = rebuiltLastStmt;
11567         } else {
11568           LastExpr = PerformCopyInitialization(
11569                             InitializedEntity::InitializeResult(LPLoc,
11570                                                                 Ty,
11571                                                                 false),
11572                                                    SourceLocation(),
11573                                                LastExpr);
11574         }
11575 
11576         if (LastExpr.isInvalid())
11577           return ExprError();
11578         if (LastExpr.get() != nullptr) {
11579           if (!LastLabelStmt)
11580             Compound->setLastStmt(LastExpr.get());
11581           else
11582             LastLabelStmt->setSubStmt(LastExpr.get());
11583           StmtExprMayBindToTemp = true;
11584         }
11585       }
11586     }
11587   }
11588 
11589   // FIXME: Check that expression type is complete/non-abstract; statement
11590   // expressions are not lvalues.
11591   Expr *ResStmtExpr = new (Context) StmtExpr(Compound, Ty, LPLoc, RPLoc);
11592   if (StmtExprMayBindToTemp)
11593     return MaybeBindToTemporary(ResStmtExpr);
11594   return ResStmtExpr;
11595 }
11596 
11597 ExprResult Sema::BuildBuiltinOffsetOf(SourceLocation BuiltinLoc,
11598                                       TypeSourceInfo *TInfo,
11599                                       ArrayRef<OffsetOfComponent> Components,
11600                                       SourceLocation RParenLoc) {
11601   QualType ArgTy = TInfo->getType();
11602   bool Dependent = ArgTy->isDependentType();
11603   SourceRange TypeRange = TInfo->getTypeLoc().getLocalSourceRange();
11604 
11605   // We must have at least one component that refers to the type, and the first
11606   // one is known to be a field designator.  Verify that the ArgTy represents
11607   // a struct/union/class.
11608   if (!Dependent && !ArgTy->isRecordType())
11609     return ExprError(Diag(BuiltinLoc, diag::err_offsetof_record_type)
11610                        << ArgTy << TypeRange);
11611 
11612   // Type must be complete per C99 7.17p3 because a declaring a variable
11613   // with an incomplete type would be ill-formed.
11614   if (!Dependent
11615       && RequireCompleteType(BuiltinLoc, ArgTy,
11616                              diag::err_offsetof_incomplete_type, TypeRange))
11617     return ExprError();
11618 
11619   // offsetof with non-identifier designators (e.g. "offsetof(x, a.b[c])") are a
11620   // GCC extension, diagnose them.
11621   // FIXME: This diagnostic isn't actually visible because the location is in
11622   // a system header!
11623   if (Components.size() != 1)
11624     Diag(BuiltinLoc, diag::ext_offsetof_extended_field_designator)
11625       << SourceRange(Components[1].LocStart, Components.back().LocEnd);
11626 
11627   bool DidWarnAboutNonPOD = false;
11628   QualType CurrentType = ArgTy;
11629   SmallVector<OffsetOfNode, 4> Comps;
11630   SmallVector<Expr*, 4> Exprs;
11631   for (const OffsetOfComponent &OC : Components) {
11632     if (OC.isBrackets) {
11633       // Offset of an array sub-field.  TODO: Should we allow vector elements?
11634       if (!CurrentType->isDependentType()) {
11635         const ArrayType *AT = Context.getAsArrayType(CurrentType);
11636         if(!AT)
11637           return ExprError(Diag(OC.LocEnd, diag::err_offsetof_array_type)
11638                            << CurrentType);
11639         CurrentType = AT->getElementType();
11640       } else
11641         CurrentType = Context.DependentTy;
11642 
11643       ExprResult IdxRval = DefaultLvalueConversion(static_cast<Expr*>(OC.U.E));
11644       if (IdxRval.isInvalid())
11645         return ExprError();
11646       Expr *Idx = IdxRval.get();
11647 
11648       // The expression must be an integral expression.
11649       // FIXME: An integral constant expression?
11650       if (!Idx->isTypeDependent() && !Idx->isValueDependent() &&
11651           !Idx->getType()->isIntegerType())
11652         return ExprError(Diag(Idx->getLocStart(),
11653                               diag::err_typecheck_subscript_not_integer)
11654                          << Idx->getSourceRange());
11655 
11656       // Record this array index.
11657       Comps.push_back(OffsetOfNode(OC.LocStart, Exprs.size(), OC.LocEnd));
11658       Exprs.push_back(Idx);
11659       continue;
11660     }
11661 
11662     // Offset of a field.
11663     if (CurrentType->isDependentType()) {
11664       // We have the offset of a field, but we can't look into the dependent
11665       // type. Just record the identifier of the field.
11666       Comps.push_back(OffsetOfNode(OC.LocStart, OC.U.IdentInfo, OC.LocEnd));
11667       CurrentType = Context.DependentTy;
11668       continue;
11669     }
11670 
11671     // We need to have a complete type to look into.
11672     if (RequireCompleteType(OC.LocStart, CurrentType,
11673                             diag::err_offsetof_incomplete_type))
11674       return ExprError();
11675 
11676     // Look for the designated field.
11677     const RecordType *RC = CurrentType->getAs<RecordType>();
11678     if (!RC)
11679       return ExprError(Diag(OC.LocEnd, diag::err_offsetof_record_type)
11680                        << CurrentType);
11681     RecordDecl *RD = RC->getDecl();
11682 
11683     // C++ [lib.support.types]p5:
11684     //   The macro offsetof accepts a restricted set of type arguments in this
11685     //   International Standard. type shall be a POD structure or a POD union
11686     //   (clause 9).
11687     // C++11 [support.types]p4:
11688     //   If type is not a standard-layout class (Clause 9), the results are
11689     //   undefined.
11690     if (CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(RD)) {
11691       bool IsSafe = LangOpts.CPlusPlus11? CRD->isStandardLayout() : CRD->isPOD();
11692       unsigned DiagID =
11693         LangOpts.CPlusPlus11? diag::ext_offsetof_non_standardlayout_type
11694                             : diag::ext_offsetof_non_pod_type;
11695 
11696       if (!IsSafe && !DidWarnAboutNonPOD &&
11697           DiagRuntimeBehavior(BuiltinLoc, nullptr,
11698                               PDiag(DiagID)
11699                               << SourceRange(Components[0].LocStart, OC.LocEnd)
11700                               << CurrentType))
11701         DidWarnAboutNonPOD = true;
11702     }
11703 
11704     // Look for the field.
11705     LookupResult R(*this, OC.U.IdentInfo, OC.LocStart, LookupMemberName);
11706     LookupQualifiedName(R, RD);
11707     FieldDecl *MemberDecl = R.getAsSingle<FieldDecl>();
11708     IndirectFieldDecl *IndirectMemberDecl = nullptr;
11709     if (!MemberDecl) {
11710       if ((IndirectMemberDecl = R.getAsSingle<IndirectFieldDecl>()))
11711         MemberDecl = IndirectMemberDecl->getAnonField();
11712     }
11713 
11714     if (!MemberDecl)
11715       return ExprError(Diag(BuiltinLoc, diag::err_no_member)
11716                        << OC.U.IdentInfo << RD << SourceRange(OC.LocStart,
11717                                                               OC.LocEnd));
11718 
11719     // C99 7.17p3:
11720     //   (If the specified member is a bit-field, the behavior is undefined.)
11721     //
11722     // We diagnose this as an error.
11723     if (MemberDecl->isBitField()) {
11724       Diag(OC.LocEnd, diag::err_offsetof_bitfield)
11725         << MemberDecl->getDeclName()
11726         << SourceRange(BuiltinLoc, RParenLoc);
11727       Diag(MemberDecl->getLocation(), diag::note_bitfield_decl);
11728       return ExprError();
11729     }
11730 
11731     RecordDecl *Parent = MemberDecl->getParent();
11732     if (IndirectMemberDecl)
11733       Parent = cast<RecordDecl>(IndirectMemberDecl->getDeclContext());
11734 
11735     // If the member was found in a base class, introduce OffsetOfNodes for
11736     // the base class indirections.
11737     CXXBasePaths Paths;
11738     if (IsDerivedFrom(OC.LocStart, CurrentType, Context.getTypeDeclType(Parent),
11739                       Paths)) {
11740       if (Paths.getDetectedVirtual()) {
11741         Diag(OC.LocEnd, diag::err_offsetof_field_of_virtual_base)
11742           << MemberDecl->getDeclName()
11743           << SourceRange(BuiltinLoc, RParenLoc);
11744         return ExprError();
11745       }
11746 
11747       CXXBasePath &Path = Paths.front();
11748       for (const CXXBasePathElement &B : Path)
11749         Comps.push_back(OffsetOfNode(B.Base));
11750     }
11751 
11752     if (IndirectMemberDecl) {
11753       for (auto *FI : IndirectMemberDecl->chain()) {
11754         assert(isa<FieldDecl>(FI));
11755         Comps.push_back(OffsetOfNode(OC.LocStart,
11756                                      cast<FieldDecl>(FI), OC.LocEnd));
11757       }
11758     } else
11759       Comps.push_back(OffsetOfNode(OC.LocStart, MemberDecl, OC.LocEnd));
11760 
11761     CurrentType = MemberDecl->getType().getNonReferenceType();
11762   }
11763 
11764   return OffsetOfExpr::Create(Context, Context.getSizeType(), BuiltinLoc, TInfo,
11765                               Comps, Exprs, RParenLoc);
11766 }
11767 
11768 ExprResult Sema::ActOnBuiltinOffsetOf(Scope *S,
11769                                       SourceLocation BuiltinLoc,
11770                                       SourceLocation TypeLoc,
11771                                       ParsedType ParsedArgTy,
11772                                       ArrayRef<OffsetOfComponent> Components,
11773                                       SourceLocation RParenLoc) {
11774 
11775   TypeSourceInfo *ArgTInfo;
11776   QualType ArgTy = GetTypeFromParser(ParsedArgTy, &ArgTInfo);
11777   if (ArgTy.isNull())
11778     return ExprError();
11779 
11780   if (!ArgTInfo)
11781     ArgTInfo = Context.getTrivialTypeSourceInfo(ArgTy, TypeLoc);
11782 
11783   return BuildBuiltinOffsetOf(BuiltinLoc, ArgTInfo, Components, RParenLoc);
11784 }
11785 
11786 
11787 ExprResult Sema::ActOnChooseExpr(SourceLocation BuiltinLoc,
11788                                  Expr *CondExpr,
11789                                  Expr *LHSExpr, Expr *RHSExpr,
11790                                  SourceLocation RPLoc) {
11791   assert((CondExpr && LHSExpr && RHSExpr) && "Missing type argument(s)");
11792 
11793   ExprValueKind VK = VK_RValue;
11794   ExprObjectKind OK = OK_Ordinary;
11795   QualType resType;
11796   bool ValueDependent = false;
11797   bool CondIsTrue = false;
11798   if (CondExpr->isTypeDependent() || CondExpr->isValueDependent()) {
11799     resType = Context.DependentTy;
11800     ValueDependent = true;
11801   } else {
11802     // The conditional expression is required to be a constant expression.
11803     llvm::APSInt condEval(32);
11804     ExprResult CondICE
11805       = VerifyIntegerConstantExpression(CondExpr, &condEval,
11806           diag::err_typecheck_choose_expr_requires_constant, false);
11807     if (CondICE.isInvalid())
11808       return ExprError();
11809     CondExpr = CondICE.get();
11810     CondIsTrue = condEval.getZExtValue();
11811 
11812     // If the condition is > zero, then the AST type is the same as the LSHExpr.
11813     Expr *ActiveExpr = CondIsTrue ? LHSExpr : RHSExpr;
11814 
11815     resType = ActiveExpr->getType();
11816     ValueDependent = ActiveExpr->isValueDependent();
11817     VK = ActiveExpr->getValueKind();
11818     OK = ActiveExpr->getObjectKind();
11819   }
11820 
11821   return new (Context)
11822       ChooseExpr(BuiltinLoc, CondExpr, LHSExpr, RHSExpr, resType, VK, OK, RPLoc,
11823                  CondIsTrue, resType->isDependentType(), ValueDependent);
11824 }
11825 
11826 //===----------------------------------------------------------------------===//
11827 // Clang Extensions.
11828 //===----------------------------------------------------------------------===//
11829 
11830 /// ActOnBlockStart - This callback is invoked when a block literal is started.
11831 void Sema::ActOnBlockStart(SourceLocation CaretLoc, Scope *CurScope) {
11832   BlockDecl *Block = BlockDecl::Create(Context, CurContext, CaretLoc);
11833 
11834   if (LangOpts.CPlusPlus) {
11835     Decl *ManglingContextDecl;
11836     if (MangleNumberingContext *MCtx =
11837             getCurrentMangleNumberContext(Block->getDeclContext(),
11838                                           ManglingContextDecl)) {
11839       unsigned ManglingNumber = MCtx->getManglingNumber(Block);
11840       Block->setBlockMangling(ManglingNumber, ManglingContextDecl);
11841     }
11842   }
11843 
11844   PushBlockScope(CurScope, Block);
11845   CurContext->addDecl(Block);
11846   if (CurScope)
11847     PushDeclContext(CurScope, Block);
11848   else
11849     CurContext = Block;
11850 
11851   getCurBlock()->HasImplicitReturnType = true;
11852 
11853   // Enter a new evaluation context to insulate the block from any
11854   // cleanups from the enclosing full-expression.
11855   PushExpressionEvaluationContext(PotentiallyEvaluated);
11856 }
11857 
11858 void Sema::ActOnBlockArguments(SourceLocation CaretLoc, Declarator &ParamInfo,
11859                                Scope *CurScope) {
11860   assert(ParamInfo.getIdentifier() == nullptr &&
11861          "block-id should have no identifier!");
11862   assert(ParamInfo.getContext() == Declarator::BlockLiteralContext);
11863   BlockScopeInfo *CurBlock = getCurBlock();
11864 
11865   TypeSourceInfo *Sig = GetTypeForDeclarator(ParamInfo, CurScope);
11866   QualType T = Sig->getType();
11867 
11868   // FIXME: We should allow unexpanded parameter packs here, but that would,
11869   // in turn, make the block expression contain unexpanded parameter packs.
11870   if (DiagnoseUnexpandedParameterPack(CaretLoc, Sig, UPPC_Block)) {
11871     // Drop the parameters.
11872     FunctionProtoType::ExtProtoInfo EPI;
11873     EPI.HasTrailingReturn = false;
11874     EPI.TypeQuals |= DeclSpec::TQ_const;
11875     T = Context.getFunctionType(Context.DependentTy, None, EPI);
11876     Sig = Context.getTrivialTypeSourceInfo(T);
11877   }
11878 
11879   // GetTypeForDeclarator always produces a function type for a block
11880   // literal signature.  Furthermore, it is always a FunctionProtoType
11881   // unless the function was written with a typedef.
11882   assert(T->isFunctionType() &&
11883          "GetTypeForDeclarator made a non-function block signature");
11884 
11885   // Look for an explicit signature in that function type.
11886   FunctionProtoTypeLoc ExplicitSignature;
11887 
11888   TypeLoc tmp = Sig->getTypeLoc().IgnoreParens();
11889   if ((ExplicitSignature = tmp.getAs<FunctionProtoTypeLoc>())) {
11890 
11891     // Check whether that explicit signature was synthesized by
11892     // GetTypeForDeclarator.  If so, don't save that as part of the
11893     // written signature.
11894     if (ExplicitSignature.getLocalRangeBegin() ==
11895         ExplicitSignature.getLocalRangeEnd()) {
11896       // This would be much cheaper if we stored TypeLocs instead of
11897       // TypeSourceInfos.
11898       TypeLoc Result = ExplicitSignature.getReturnLoc();
11899       unsigned Size = Result.getFullDataSize();
11900       Sig = Context.CreateTypeSourceInfo(Result.getType(), Size);
11901       Sig->getTypeLoc().initializeFullCopy(Result, Size);
11902 
11903       ExplicitSignature = FunctionProtoTypeLoc();
11904     }
11905   }
11906 
11907   CurBlock->TheDecl->setSignatureAsWritten(Sig);
11908   CurBlock->FunctionType = T;
11909 
11910   const FunctionType *Fn = T->getAs<FunctionType>();
11911   QualType RetTy = Fn->getReturnType();
11912   bool isVariadic =
11913     (isa<FunctionProtoType>(Fn) && cast<FunctionProtoType>(Fn)->isVariadic());
11914 
11915   CurBlock->TheDecl->setIsVariadic(isVariadic);
11916 
11917   // Context.DependentTy is used as a placeholder for a missing block
11918   // return type.  TODO:  what should we do with declarators like:
11919   //   ^ * { ... }
11920   // If the answer is "apply template argument deduction"....
11921   if (RetTy != Context.DependentTy) {
11922     CurBlock->ReturnType = RetTy;
11923     CurBlock->TheDecl->setBlockMissingReturnType(false);
11924     CurBlock->HasImplicitReturnType = false;
11925   }
11926 
11927   // Push block parameters from the declarator if we had them.
11928   SmallVector<ParmVarDecl*, 8> Params;
11929   if (ExplicitSignature) {
11930     for (unsigned I = 0, E = ExplicitSignature.getNumParams(); I != E; ++I) {
11931       ParmVarDecl *Param = ExplicitSignature.getParam(I);
11932       if (Param->getIdentifier() == nullptr &&
11933           !Param->isImplicit() &&
11934           !Param->isInvalidDecl() &&
11935           !getLangOpts().CPlusPlus)
11936         Diag(Param->getLocation(), diag::err_parameter_name_omitted);
11937       Params.push_back(Param);
11938     }
11939 
11940   // Fake up parameter variables if we have a typedef, like
11941   //   ^ fntype { ... }
11942   } else if (const FunctionProtoType *Fn = T->getAs<FunctionProtoType>()) {
11943     for (const auto &I : Fn->param_types()) {
11944       ParmVarDecl *Param = BuildParmVarDeclForTypedef(
11945           CurBlock->TheDecl, ParamInfo.getLocStart(), I);
11946       Params.push_back(Param);
11947     }
11948   }
11949 
11950   // Set the parameters on the block decl.
11951   if (!Params.empty()) {
11952     CurBlock->TheDecl->setParams(Params);
11953     CheckParmsForFunctionDef(CurBlock->TheDecl->param_begin(),
11954                              CurBlock->TheDecl->param_end(),
11955                              /*CheckParameterNames=*/false);
11956   }
11957 
11958   // Finally we can process decl attributes.
11959   ProcessDeclAttributes(CurScope, CurBlock->TheDecl, ParamInfo);
11960 
11961   // Put the parameter variables in scope.
11962   for (auto AI : CurBlock->TheDecl->params()) {
11963     AI->setOwningFunction(CurBlock->TheDecl);
11964 
11965     // If this has an identifier, add it to the scope stack.
11966     if (AI->getIdentifier()) {
11967       CheckShadow(CurBlock->TheScope, AI);
11968 
11969       PushOnScopeChains(AI, CurBlock->TheScope);
11970     }
11971   }
11972 }
11973 
11974 /// ActOnBlockError - If there is an error parsing a block, this callback
11975 /// is invoked to pop the information about the block from the action impl.
11976 void Sema::ActOnBlockError(SourceLocation CaretLoc, Scope *CurScope) {
11977   // Leave the expression-evaluation context.
11978   DiscardCleanupsInEvaluationContext();
11979   PopExpressionEvaluationContext();
11980 
11981   // Pop off CurBlock, handle nested blocks.
11982   PopDeclContext();
11983   PopFunctionScopeInfo();
11984 }
11985 
11986 /// ActOnBlockStmtExpr - This is called when the body of a block statement
11987 /// literal was successfully completed.  ^(int x){...}
11988 ExprResult Sema::ActOnBlockStmtExpr(SourceLocation CaretLoc,
11989                                     Stmt *Body, Scope *CurScope) {
11990   // If blocks are disabled, emit an error.
11991   if (!LangOpts.Blocks)
11992     Diag(CaretLoc, diag::err_blocks_disable);
11993 
11994   // Leave the expression-evaluation context.
11995   if (hasAnyUnrecoverableErrorsInThisFunction())
11996     DiscardCleanupsInEvaluationContext();
11997   assert(!ExprNeedsCleanups && "cleanups within block not correctly bound!");
11998   PopExpressionEvaluationContext();
11999 
12000   BlockScopeInfo *BSI = cast<BlockScopeInfo>(FunctionScopes.back());
12001 
12002   if (BSI->HasImplicitReturnType)
12003     deduceClosureReturnType(*BSI);
12004 
12005   PopDeclContext();
12006 
12007   QualType RetTy = Context.VoidTy;
12008   if (!BSI->ReturnType.isNull())
12009     RetTy = BSI->ReturnType;
12010 
12011   bool NoReturn = BSI->TheDecl->hasAttr<NoReturnAttr>();
12012   QualType BlockTy;
12013 
12014   // Set the captured variables on the block.
12015   // FIXME: Share capture structure between BlockDecl and CapturingScopeInfo!
12016   SmallVector<BlockDecl::Capture, 4> Captures;
12017   for (CapturingScopeInfo::Capture &Cap : BSI->Captures) {
12018     if (Cap.isThisCapture())
12019       continue;
12020     BlockDecl::Capture NewCap(Cap.getVariable(), Cap.isBlockCapture(),
12021                               Cap.isNested(), Cap.getInitExpr());
12022     Captures.push_back(NewCap);
12023   }
12024   BSI->TheDecl->setCaptures(Context, Captures, BSI->CXXThisCaptureIndex != 0);
12025 
12026   // If the user wrote a function type in some form, try to use that.
12027   if (!BSI->FunctionType.isNull()) {
12028     const FunctionType *FTy = BSI->FunctionType->getAs<FunctionType>();
12029 
12030     FunctionType::ExtInfo Ext = FTy->getExtInfo();
12031     if (NoReturn && !Ext.getNoReturn()) Ext = Ext.withNoReturn(true);
12032 
12033     // Turn protoless block types into nullary block types.
12034     if (isa<FunctionNoProtoType>(FTy)) {
12035       FunctionProtoType::ExtProtoInfo EPI;
12036       EPI.ExtInfo = Ext;
12037       BlockTy = Context.getFunctionType(RetTy, None, EPI);
12038 
12039     // Otherwise, if we don't need to change anything about the function type,
12040     // preserve its sugar structure.
12041     } else if (FTy->getReturnType() == RetTy &&
12042                (!NoReturn || FTy->getNoReturnAttr())) {
12043       BlockTy = BSI->FunctionType;
12044 
12045     // Otherwise, make the minimal modifications to the function type.
12046     } else {
12047       const FunctionProtoType *FPT = cast<FunctionProtoType>(FTy);
12048       FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo();
12049       EPI.TypeQuals = 0; // FIXME: silently?
12050       EPI.ExtInfo = Ext;
12051       BlockTy = Context.getFunctionType(RetTy, FPT->getParamTypes(), EPI);
12052     }
12053 
12054   // If we don't have a function type, just build one from nothing.
12055   } else {
12056     FunctionProtoType::ExtProtoInfo EPI;
12057     EPI.ExtInfo = FunctionType::ExtInfo().withNoReturn(NoReturn);
12058     BlockTy = Context.getFunctionType(RetTy, None, EPI);
12059   }
12060 
12061   DiagnoseUnusedParameters(BSI->TheDecl->param_begin(),
12062                            BSI->TheDecl->param_end());
12063   BlockTy = Context.getBlockPointerType(BlockTy);
12064 
12065   // If needed, diagnose invalid gotos and switches in the block.
12066   if (getCurFunction()->NeedsScopeChecking() &&
12067       !PP.isCodeCompletionEnabled())
12068     DiagnoseInvalidJumps(cast<CompoundStmt>(Body));
12069 
12070   BSI->TheDecl->setBody(cast<CompoundStmt>(Body));
12071 
12072   // Try to apply the named return value optimization. We have to check again
12073   // if we can do this, though, because blocks keep return statements around
12074   // to deduce an implicit return type.
12075   if (getLangOpts().CPlusPlus && RetTy->isRecordType() &&
12076       !BSI->TheDecl->isDependentContext())
12077     computeNRVO(Body, BSI);
12078 
12079   BlockExpr *Result = new (Context) BlockExpr(BSI->TheDecl, BlockTy);
12080   AnalysisBasedWarnings::Policy WP = AnalysisWarnings.getDefaultPolicy();
12081   PopFunctionScopeInfo(&WP, Result->getBlockDecl(), Result);
12082 
12083   // If the block isn't obviously global, i.e. it captures anything at
12084   // all, then we need to do a few things in the surrounding context:
12085   if (Result->getBlockDecl()->hasCaptures()) {
12086     // First, this expression has a new cleanup object.
12087     ExprCleanupObjects.push_back(Result->getBlockDecl());
12088     ExprNeedsCleanups = true;
12089 
12090     // It also gets a branch-protected scope if any of the captured
12091     // variables needs destruction.
12092     for (const auto &CI : Result->getBlockDecl()->captures()) {
12093       const VarDecl *var = CI.getVariable();
12094       if (var->getType().isDestructedType() != QualType::DK_none) {
12095         getCurFunction()->setHasBranchProtectedScope();
12096         break;
12097       }
12098     }
12099   }
12100 
12101   return Result;
12102 }
12103 
12104 ExprResult Sema::ActOnVAArg(SourceLocation BuiltinLoc, Expr *E, ParsedType Ty,
12105                             SourceLocation RPLoc) {
12106   TypeSourceInfo *TInfo;
12107   GetTypeFromParser(Ty, &TInfo);
12108   return BuildVAArgExpr(BuiltinLoc, E, TInfo, RPLoc);
12109 }
12110 
12111 ExprResult Sema::BuildVAArgExpr(SourceLocation BuiltinLoc,
12112                                 Expr *E, TypeSourceInfo *TInfo,
12113                                 SourceLocation RPLoc) {
12114   Expr *OrigExpr = E;
12115   bool IsMS = false;
12116 
12117   // CUDA device code does not support varargs.
12118   if (getLangOpts().CUDA && getLangOpts().CUDAIsDevice) {
12119     if (const FunctionDecl *F = dyn_cast<FunctionDecl>(CurContext)) {
12120       CUDAFunctionTarget T = IdentifyCUDATarget(F);
12121       if (T == CFT_Global || T == CFT_Device || T == CFT_HostDevice)
12122         return ExprError(Diag(E->getLocStart(), diag::err_va_arg_in_device));
12123     }
12124   }
12125 
12126   // It might be a __builtin_ms_va_list. (But don't ever mark a va_arg()
12127   // as Microsoft ABI on an actual Microsoft platform, where
12128   // __builtin_ms_va_list and __builtin_va_list are the same.)
12129   if (!E->isTypeDependent() && Context.getTargetInfo().hasBuiltinMSVaList() &&
12130       Context.getTargetInfo().getBuiltinVaListKind() != TargetInfo::CharPtrBuiltinVaList) {
12131     QualType MSVaListType = Context.getBuiltinMSVaListType();
12132     if (Context.hasSameType(MSVaListType, E->getType())) {
12133       if (CheckForModifiableLvalue(E, BuiltinLoc, *this))
12134         return ExprError();
12135       IsMS = true;
12136     }
12137   }
12138 
12139   // Get the va_list type
12140   QualType VaListType = Context.getBuiltinVaListType();
12141   if (!IsMS) {
12142     if (VaListType->isArrayType()) {
12143       // Deal with implicit array decay; for example, on x86-64,
12144       // va_list is an array, but it's supposed to decay to
12145       // a pointer for va_arg.
12146       VaListType = Context.getArrayDecayedType(VaListType);
12147       // Make sure the input expression also decays appropriately.
12148       ExprResult Result = UsualUnaryConversions(E);
12149       if (Result.isInvalid())
12150         return ExprError();
12151       E = Result.get();
12152     } else if (VaListType->isRecordType() && getLangOpts().CPlusPlus) {
12153       // If va_list is a record type and we are compiling in C++ mode,
12154       // check the argument using reference binding.
12155       InitializedEntity Entity = InitializedEntity::InitializeParameter(
12156           Context, Context.getLValueReferenceType(VaListType), false);
12157       ExprResult Init = PerformCopyInitialization(Entity, SourceLocation(), E);
12158       if (Init.isInvalid())
12159         return ExprError();
12160       E = Init.getAs<Expr>();
12161     } else {
12162       // Otherwise, the va_list argument must be an l-value because
12163       // it is modified by va_arg.
12164       if (!E->isTypeDependent() &&
12165           CheckForModifiableLvalue(E, BuiltinLoc, *this))
12166         return ExprError();
12167     }
12168   }
12169 
12170   if (!IsMS && !E->isTypeDependent() &&
12171       !Context.hasSameType(VaListType, E->getType()))
12172     return ExprError(Diag(E->getLocStart(),
12173                          diag::err_first_argument_to_va_arg_not_of_type_va_list)
12174       << OrigExpr->getType() << E->getSourceRange());
12175 
12176   if (!TInfo->getType()->isDependentType()) {
12177     if (RequireCompleteType(TInfo->getTypeLoc().getBeginLoc(), TInfo->getType(),
12178                             diag::err_second_parameter_to_va_arg_incomplete,
12179                             TInfo->getTypeLoc()))
12180       return ExprError();
12181 
12182     if (RequireNonAbstractType(TInfo->getTypeLoc().getBeginLoc(),
12183                                TInfo->getType(),
12184                                diag::err_second_parameter_to_va_arg_abstract,
12185                                TInfo->getTypeLoc()))
12186       return ExprError();
12187 
12188     if (!TInfo->getType().isPODType(Context)) {
12189       Diag(TInfo->getTypeLoc().getBeginLoc(),
12190            TInfo->getType()->isObjCLifetimeType()
12191              ? diag::warn_second_parameter_to_va_arg_ownership_qualified
12192              : diag::warn_second_parameter_to_va_arg_not_pod)
12193         << TInfo->getType()
12194         << TInfo->getTypeLoc().getSourceRange();
12195     }
12196 
12197     // Check for va_arg where arguments of the given type will be promoted
12198     // (i.e. this va_arg is guaranteed to have undefined behavior).
12199     QualType PromoteType;
12200     if (TInfo->getType()->isPromotableIntegerType()) {
12201       PromoteType = Context.getPromotedIntegerType(TInfo->getType());
12202       if (Context.typesAreCompatible(PromoteType, TInfo->getType()))
12203         PromoteType = QualType();
12204     }
12205     if (TInfo->getType()->isSpecificBuiltinType(BuiltinType::Float))
12206       PromoteType = Context.DoubleTy;
12207     if (!PromoteType.isNull())
12208       DiagRuntimeBehavior(TInfo->getTypeLoc().getBeginLoc(), E,
12209                   PDiag(diag::warn_second_parameter_to_va_arg_never_compatible)
12210                           << TInfo->getType()
12211                           << PromoteType
12212                           << TInfo->getTypeLoc().getSourceRange());
12213   }
12214 
12215   QualType T = TInfo->getType().getNonLValueExprType(Context);
12216   return new (Context) VAArgExpr(BuiltinLoc, E, TInfo, RPLoc, T, IsMS);
12217 }
12218 
12219 ExprResult Sema::ActOnGNUNullExpr(SourceLocation TokenLoc) {
12220   // The type of __null will be int or long, depending on the size of
12221   // pointers on the target.
12222   QualType Ty;
12223   unsigned pw = Context.getTargetInfo().getPointerWidth(0);
12224   if (pw == Context.getTargetInfo().getIntWidth())
12225     Ty = Context.IntTy;
12226   else if (pw == Context.getTargetInfo().getLongWidth())
12227     Ty = Context.LongTy;
12228   else if (pw == Context.getTargetInfo().getLongLongWidth())
12229     Ty = Context.LongLongTy;
12230   else {
12231     llvm_unreachable("I don't know size of pointer!");
12232   }
12233 
12234   return new (Context) GNUNullExpr(Ty, TokenLoc);
12235 }
12236 
12237 bool Sema::ConversionToObjCStringLiteralCheck(QualType DstType, Expr *&Exp,
12238                                               bool Diagnose) {
12239   if (!getLangOpts().ObjC1)
12240     return false;
12241 
12242   const ObjCObjectPointerType *PT = DstType->getAs<ObjCObjectPointerType>();
12243   if (!PT)
12244     return false;
12245 
12246   if (!PT->isObjCIdType()) {
12247     // Check if the destination is the 'NSString' interface.
12248     const ObjCInterfaceDecl *ID = PT->getInterfaceDecl();
12249     if (!ID || !ID->getIdentifier()->isStr("NSString"))
12250       return false;
12251   }
12252 
12253   // Ignore any parens, implicit casts (should only be
12254   // array-to-pointer decays), and not-so-opaque values.  The last is
12255   // important for making this trigger for property assignments.
12256   Expr *SrcExpr = Exp->IgnoreParenImpCasts();
12257   if (OpaqueValueExpr *OV = dyn_cast<OpaqueValueExpr>(SrcExpr))
12258     if (OV->getSourceExpr())
12259       SrcExpr = OV->getSourceExpr()->IgnoreParenImpCasts();
12260 
12261   StringLiteral *SL = dyn_cast<StringLiteral>(SrcExpr);
12262   if (!SL || !SL->isAscii())
12263     return false;
12264   if (Diagnose) {
12265     Diag(SL->getLocStart(), diag::err_missing_atsign_prefix)
12266       << FixItHint::CreateInsertion(SL->getLocStart(), "@");
12267     Exp = BuildObjCStringLiteral(SL->getLocStart(), SL).get();
12268   }
12269   return true;
12270 }
12271 
12272 static bool maybeDiagnoseAssignmentToFunction(Sema &S, QualType DstType,
12273                                               const Expr *SrcExpr) {
12274   if (!DstType->isFunctionPointerType() ||
12275       !SrcExpr->getType()->isFunctionType())
12276     return false;
12277 
12278   auto *DRE = dyn_cast<DeclRefExpr>(SrcExpr->IgnoreParenImpCasts());
12279   if (!DRE)
12280     return false;
12281 
12282   auto *FD = dyn_cast<FunctionDecl>(DRE->getDecl());
12283   if (!FD)
12284     return false;
12285 
12286   return !S.checkAddressOfFunctionIsAvailable(FD,
12287                                               /*Complain=*/true,
12288                                               SrcExpr->getLocStart());
12289 }
12290 
12291 bool Sema::DiagnoseAssignmentResult(AssignConvertType ConvTy,
12292                                     SourceLocation Loc,
12293                                     QualType DstType, QualType SrcType,
12294                                     Expr *SrcExpr, AssignmentAction Action,
12295                                     bool *Complained) {
12296   if (Complained)
12297     *Complained = false;
12298 
12299   // Decode the result (notice that AST's are still created for extensions).
12300   bool CheckInferredResultType = false;
12301   bool isInvalid = false;
12302   unsigned DiagKind = 0;
12303   FixItHint Hint;
12304   ConversionFixItGenerator ConvHints;
12305   bool MayHaveConvFixit = false;
12306   bool MayHaveFunctionDiff = false;
12307   const ObjCInterfaceDecl *IFace = nullptr;
12308   const ObjCProtocolDecl *PDecl = nullptr;
12309 
12310   switch (ConvTy) {
12311   case Compatible:
12312       DiagnoseAssignmentEnum(DstType, SrcType, SrcExpr);
12313       return false;
12314 
12315   case PointerToInt:
12316     DiagKind = diag::ext_typecheck_convert_pointer_int;
12317     ConvHints.tryToFixConversion(SrcExpr, SrcType, DstType, *this);
12318     MayHaveConvFixit = true;
12319     break;
12320   case IntToPointer:
12321     DiagKind = diag::ext_typecheck_convert_int_pointer;
12322     ConvHints.tryToFixConversion(SrcExpr, SrcType, DstType, *this);
12323     MayHaveConvFixit = true;
12324     break;
12325   case IncompatiblePointer:
12326       DiagKind =
12327         (Action == AA_Passing_CFAudited ?
12328           diag::err_arc_typecheck_convert_incompatible_pointer :
12329           diag::ext_typecheck_convert_incompatible_pointer);
12330     CheckInferredResultType = DstType->isObjCObjectPointerType() &&
12331       SrcType->isObjCObjectPointerType();
12332     if (Hint.isNull() && !CheckInferredResultType) {
12333       ConvHints.tryToFixConversion(SrcExpr, SrcType, DstType, *this);
12334     }
12335     else if (CheckInferredResultType) {
12336       SrcType = SrcType.getUnqualifiedType();
12337       DstType = DstType.getUnqualifiedType();
12338     }
12339     MayHaveConvFixit = true;
12340     break;
12341   case IncompatiblePointerSign:
12342     DiagKind = diag::ext_typecheck_convert_incompatible_pointer_sign;
12343     break;
12344   case FunctionVoidPointer:
12345     DiagKind = diag::ext_typecheck_convert_pointer_void_func;
12346     break;
12347   case IncompatiblePointerDiscardsQualifiers: {
12348     // Perform array-to-pointer decay if necessary.
12349     if (SrcType->isArrayType()) SrcType = Context.getArrayDecayedType(SrcType);
12350 
12351     Qualifiers lhq = SrcType->getPointeeType().getQualifiers();
12352     Qualifiers rhq = DstType->getPointeeType().getQualifiers();
12353     if (lhq.getAddressSpace() != rhq.getAddressSpace()) {
12354       DiagKind = diag::err_typecheck_incompatible_address_space;
12355       break;
12356 
12357 
12358     } else if (lhq.getObjCLifetime() != rhq.getObjCLifetime()) {
12359       DiagKind = diag::err_typecheck_incompatible_ownership;
12360       break;
12361     }
12362 
12363     llvm_unreachable("unknown error case for discarding qualifiers!");
12364     // fallthrough
12365   }
12366   case CompatiblePointerDiscardsQualifiers:
12367     // If the qualifiers lost were because we were applying the
12368     // (deprecated) C++ conversion from a string literal to a char*
12369     // (or wchar_t*), then there was no error (C++ 4.2p2).  FIXME:
12370     // Ideally, this check would be performed in
12371     // checkPointerTypesForAssignment. However, that would require a
12372     // bit of refactoring (so that the second argument is an
12373     // expression, rather than a type), which should be done as part
12374     // of a larger effort to fix checkPointerTypesForAssignment for
12375     // C++ semantics.
12376     if (getLangOpts().CPlusPlus &&
12377         IsStringLiteralToNonConstPointerConversion(SrcExpr, DstType))
12378       return false;
12379     DiagKind = diag::ext_typecheck_convert_discards_qualifiers;
12380     break;
12381   case IncompatibleNestedPointerQualifiers:
12382     DiagKind = diag::ext_nested_pointer_qualifier_mismatch;
12383     break;
12384   case IntToBlockPointer:
12385     DiagKind = diag::err_int_to_block_pointer;
12386     break;
12387   case IncompatibleBlockPointer:
12388     DiagKind = diag::err_typecheck_convert_incompatible_block_pointer;
12389     break;
12390   case IncompatibleObjCQualifiedId: {
12391     if (SrcType->isObjCQualifiedIdType()) {
12392       const ObjCObjectPointerType *srcOPT =
12393                 SrcType->getAs<ObjCObjectPointerType>();
12394       for (auto *srcProto : srcOPT->quals()) {
12395         PDecl = srcProto;
12396         break;
12397       }
12398       if (const ObjCInterfaceType *IFaceT =
12399             DstType->getAs<ObjCObjectPointerType>()->getInterfaceType())
12400         IFace = IFaceT->getDecl();
12401     }
12402     else if (DstType->isObjCQualifiedIdType()) {
12403       const ObjCObjectPointerType *dstOPT =
12404         DstType->getAs<ObjCObjectPointerType>();
12405       for (auto *dstProto : dstOPT->quals()) {
12406         PDecl = dstProto;
12407         break;
12408       }
12409       if (const ObjCInterfaceType *IFaceT =
12410             SrcType->getAs<ObjCObjectPointerType>()->getInterfaceType())
12411         IFace = IFaceT->getDecl();
12412     }
12413     DiagKind = diag::warn_incompatible_qualified_id;
12414     break;
12415   }
12416   case IncompatibleVectors:
12417     DiagKind = diag::warn_incompatible_vectors;
12418     break;
12419   case IncompatibleObjCWeakRef:
12420     DiagKind = diag::err_arc_weak_unavailable_assign;
12421     break;
12422   case Incompatible:
12423     if (maybeDiagnoseAssignmentToFunction(*this, DstType, SrcExpr)) {
12424       if (Complained)
12425         *Complained = true;
12426       return true;
12427     }
12428 
12429     DiagKind = diag::err_typecheck_convert_incompatible;
12430     ConvHints.tryToFixConversion(SrcExpr, SrcType, DstType, *this);
12431     MayHaveConvFixit = true;
12432     isInvalid = true;
12433     MayHaveFunctionDiff = true;
12434     break;
12435   }
12436 
12437   QualType FirstType, SecondType;
12438   switch (Action) {
12439   case AA_Assigning:
12440   case AA_Initializing:
12441     // The destination type comes first.
12442     FirstType = DstType;
12443     SecondType = SrcType;
12444     break;
12445 
12446   case AA_Returning:
12447   case AA_Passing:
12448   case AA_Passing_CFAudited:
12449   case AA_Converting:
12450   case AA_Sending:
12451   case AA_Casting:
12452     // The source type comes first.
12453     FirstType = SrcType;
12454     SecondType = DstType;
12455     break;
12456   }
12457 
12458   PartialDiagnostic FDiag = PDiag(DiagKind);
12459   if (Action == AA_Passing_CFAudited)
12460     FDiag << FirstType << SecondType << AA_Passing << SrcExpr->getSourceRange();
12461   else
12462     FDiag << FirstType << SecondType << Action << SrcExpr->getSourceRange();
12463 
12464   // If we can fix the conversion, suggest the FixIts.
12465   assert(ConvHints.isNull() || Hint.isNull());
12466   if (!ConvHints.isNull()) {
12467     for (FixItHint &H : ConvHints.Hints)
12468       FDiag << H;
12469   } else {
12470     FDiag << Hint;
12471   }
12472   if (MayHaveConvFixit) { FDiag << (unsigned) (ConvHints.Kind); }
12473 
12474   if (MayHaveFunctionDiff)
12475     HandleFunctionTypeMismatch(FDiag, SecondType, FirstType);
12476 
12477   Diag(Loc, FDiag);
12478   if (DiagKind == diag::warn_incompatible_qualified_id &&
12479       PDecl && IFace && !IFace->hasDefinition())
12480       Diag(IFace->getLocation(), diag::not_incomplete_class_and_qualified_id)
12481         << IFace->getName() << PDecl->getName();
12482 
12483   if (SecondType == Context.OverloadTy)
12484     NoteAllOverloadCandidates(OverloadExpr::find(SrcExpr).Expression,
12485                               FirstType, /*TakingAddress=*/true);
12486 
12487   if (CheckInferredResultType)
12488     EmitRelatedResultTypeNote(SrcExpr);
12489 
12490   if (Action == AA_Returning && ConvTy == IncompatiblePointer)
12491     EmitRelatedResultTypeNoteForReturn(DstType);
12492 
12493   if (Complained)
12494     *Complained = true;
12495   return isInvalid;
12496 }
12497 
12498 ExprResult Sema::VerifyIntegerConstantExpression(Expr *E,
12499                                                  llvm::APSInt *Result) {
12500   class SimpleICEDiagnoser : public VerifyICEDiagnoser {
12501   public:
12502     void diagnoseNotICE(Sema &S, SourceLocation Loc, SourceRange SR) override {
12503       S.Diag(Loc, diag::err_expr_not_ice) << S.LangOpts.CPlusPlus << SR;
12504     }
12505   } Diagnoser;
12506 
12507   return VerifyIntegerConstantExpression(E, Result, Diagnoser);
12508 }
12509 
12510 ExprResult Sema::VerifyIntegerConstantExpression(Expr *E,
12511                                                  llvm::APSInt *Result,
12512                                                  unsigned DiagID,
12513                                                  bool AllowFold) {
12514   class IDDiagnoser : public VerifyICEDiagnoser {
12515     unsigned DiagID;
12516 
12517   public:
12518     IDDiagnoser(unsigned DiagID)
12519       : VerifyICEDiagnoser(DiagID == 0), DiagID(DiagID) { }
12520 
12521     void diagnoseNotICE(Sema &S, SourceLocation Loc, SourceRange SR) override {
12522       S.Diag(Loc, DiagID) << SR;
12523     }
12524   } Diagnoser(DiagID);
12525 
12526   return VerifyIntegerConstantExpression(E, Result, Diagnoser, AllowFold);
12527 }
12528 
12529 void Sema::VerifyICEDiagnoser::diagnoseFold(Sema &S, SourceLocation Loc,
12530                                             SourceRange SR) {
12531   S.Diag(Loc, diag::ext_expr_not_ice) << SR << S.LangOpts.CPlusPlus;
12532 }
12533 
12534 ExprResult
12535 Sema::VerifyIntegerConstantExpression(Expr *E, llvm::APSInt *Result,
12536                                       VerifyICEDiagnoser &Diagnoser,
12537                                       bool AllowFold) {
12538   SourceLocation DiagLoc = E->getLocStart();
12539 
12540   if (getLangOpts().CPlusPlus11) {
12541     // C++11 [expr.const]p5:
12542     //   If an expression of literal class type is used in a context where an
12543     //   integral constant expression is required, then that class type shall
12544     //   have a single non-explicit conversion function to an integral or
12545     //   unscoped enumeration type
12546     ExprResult Converted;
12547     class CXX11ConvertDiagnoser : public ICEConvertDiagnoser {
12548     public:
12549       CXX11ConvertDiagnoser(bool Silent)
12550           : ICEConvertDiagnoser(/*AllowScopedEnumerations*/false,
12551                                 Silent, true) {}
12552 
12553       SemaDiagnosticBuilder diagnoseNotInt(Sema &S, SourceLocation Loc,
12554                                            QualType T) override {
12555         return S.Diag(Loc, diag::err_ice_not_integral) << T;
12556       }
12557 
12558       SemaDiagnosticBuilder diagnoseIncomplete(
12559           Sema &S, SourceLocation Loc, QualType T) override {
12560         return S.Diag(Loc, diag::err_ice_incomplete_type) << T;
12561       }
12562 
12563       SemaDiagnosticBuilder diagnoseExplicitConv(
12564           Sema &S, SourceLocation Loc, QualType T, QualType ConvTy) override {
12565         return S.Diag(Loc, diag::err_ice_explicit_conversion) << T << ConvTy;
12566       }
12567 
12568       SemaDiagnosticBuilder noteExplicitConv(
12569           Sema &S, CXXConversionDecl *Conv, QualType ConvTy) override {
12570         return S.Diag(Conv->getLocation(), diag::note_ice_conversion_here)
12571                  << ConvTy->isEnumeralType() << ConvTy;
12572       }
12573 
12574       SemaDiagnosticBuilder diagnoseAmbiguous(
12575           Sema &S, SourceLocation Loc, QualType T) override {
12576         return S.Diag(Loc, diag::err_ice_ambiguous_conversion) << T;
12577       }
12578 
12579       SemaDiagnosticBuilder noteAmbiguous(
12580           Sema &S, CXXConversionDecl *Conv, QualType ConvTy) override {
12581         return S.Diag(Conv->getLocation(), diag::note_ice_conversion_here)
12582                  << ConvTy->isEnumeralType() << ConvTy;
12583       }
12584 
12585       SemaDiagnosticBuilder diagnoseConversion(
12586           Sema &S, SourceLocation Loc, QualType T, QualType ConvTy) override {
12587         llvm_unreachable("conversion functions are permitted");
12588       }
12589     } ConvertDiagnoser(Diagnoser.Suppress);
12590 
12591     Converted = PerformContextualImplicitConversion(DiagLoc, E,
12592                                                     ConvertDiagnoser);
12593     if (Converted.isInvalid())
12594       return Converted;
12595     E = Converted.get();
12596     if (!E->getType()->isIntegralOrUnscopedEnumerationType())
12597       return ExprError();
12598   } else if (!E->getType()->isIntegralOrUnscopedEnumerationType()) {
12599     // An ICE must be of integral or unscoped enumeration type.
12600     if (!Diagnoser.Suppress)
12601       Diagnoser.diagnoseNotICE(*this, DiagLoc, E->getSourceRange());
12602     return ExprError();
12603   }
12604 
12605   // Circumvent ICE checking in C++11 to avoid evaluating the expression twice
12606   // in the non-ICE case.
12607   if (!getLangOpts().CPlusPlus11 && E->isIntegerConstantExpr(Context)) {
12608     if (Result)
12609       *Result = E->EvaluateKnownConstInt(Context);
12610     return E;
12611   }
12612 
12613   Expr::EvalResult EvalResult;
12614   SmallVector<PartialDiagnosticAt, 8> Notes;
12615   EvalResult.Diag = &Notes;
12616 
12617   // Try to evaluate the expression, and produce diagnostics explaining why it's
12618   // not a constant expression as a side-effect.
12619   bool Folded = E->EvaluateAsRValue(EvalResult, Context) &&
12620                 EvalResult.Val.isInt() && !EvalResult.HasSideEffects;
12621 
12622   // In C++11, we can rely on diagnostics being produced for any expression
12623   // which is not a constant expression. If no diagnostics were produced, then
12624   // this is a constant expression.
12625   if (Folded && getLangOpts().CPlusPlus11 && Notes.empty()) {
12626     if (Result)
12627       *Result = EvalResult.Val.getInt();
12628     return E;
12629   }
12630 
12631   // If our only note is the usual "invalid subexpression" note, just point
12632   // the caret at its location rather than producing an essentially
12633   // redundant note.
12634   if (Notes.size() == 1 && Notes[0].second.getDiagID() ==
12635         diag::note_invalid_subexpr_in_const_expr) {
12636     DiagLoc = Notes[0].first;
12637     Notes.clear();
12638   }
12639 
12640   if (!Folded || !AllowFold) {
12641     if (!Diagnoser.Suppress) {
12642       Diagnoser.diagnoseNotICE(*this, DiagLoc, E->getSourceRange());
12643       for (const PartialDiagnosticAt &Note : Notes)
12644         Diag(Note.first, Note.second);
12645     }
12646 
12647     return ExprError();
12648   }
12649 
12650   Diagnoser.diagnoseFold(*this, DiagLoc, E->getSourceRange());
12651   for (const PartialDiagnosticAt &Note : Notes)
12652     Diag(Note.first, Note.second);
12653 
12654   if (Result)
12655     *Result = EvalResult.Val.getInt();
12656   return E;
12657 }
12658 
12659 namespace {
12660   // Handle the case where we conclude a expression which we speculatively
12661   // considered to be unevaluated is actually evaluated.
12662   class TransformToPE : public TreeTransform<TransformToPE> {
12663     typedef TreeTransform<TransformToPE> BaseTransform;
12664 
12665   public:
12666     TransformToPE(Sema &SemaRef) : BaseTransform(SemaRef) { }
12667 
12668     // Make sure we redo semantic analysis
12669     bool AlwaysRebuild() { return true; }
12670 
12671     // Make sure we handle LabelStmts correctly.
12672     // FIXME: This does the right thing, but maybe we need a more general
12673     // fix to TreeTransform?
12674     StmtResult TransformLabelStmt(LabelStmt *S) {
12675       S->getDecl()->setStmt(nullptr);
12676       return BaseTransform::TransformLabelStmt(S);
12677     }
12678 
12679     // We need to special-case DeclRefExprs referring to FieldDecls which
12680     // are not part of a member pointer formation; normal TreeTransforming
12681     // doesn't catch this case because of the way we represent them in the AST.
12682     // FIXME: This is a bit ugly; is it really the best way to handle this
12683     // case?
12684     //
12685     // Error on DeclRefExprs referring to FieldDecls.
12686     ExprResult TransformDeclRefExpr(DeclRefExpr *E) {
12687       if (isa<FieldDecl>(E->getDecl()) &&
12688           !SemaRef.isUnevaluatedContext())
12689         return SemaRef.Diag(E->getLocation(),
12690                             diag::err_invalid_non_static_member_use)
12691             << E->getDecl() << E->getSourceRange();
12692 
12693       return BaseTransform::TransformDeclRefExpr(E);
12694     }
12695 
12696     // Exception: filter out member pointer formation
12697     ExprResult TransformUnaryOperator(UnaryOperator *E) {
12698       if (E->getOpcode() == UO_AddrOf && E->getType()->isMemberPointerType())
12699         return E;
12700 
12701       return BaseTransform::TransformUnaryOperator(E);
12702     }
12703 
12704     ExprResult TransformLambdaExpr(LambdaExpr *E) {
12705       // Lambdas never need to be transformed.
12706       return E;
12707     }
12708   };
12709 }
12710 
12711 ExprResult Sema::TransformToPotentiallyEvaluated(Expr *E) {
12712   assert(isUnevaluatedContext() &&
12713          "Should only transform unevaluated expressions");
12714   ExprEvalContexts.back().Context =
12715       ExprEvalContexts[ExprEvalContexts.size()-2].Context;
12716   if (isUnevaluatedContext())
12717     return E;
12718   return TransformToPE(*this).TransformExpr(E);
12719 }
12720 
12721 void
12722 Sema::PushExpressionEvaluationContext(ExpressionEvaluationContext NewContext,
12723                                       Decl *LambdaContextDecl,
12724                                       bool IsDecltype) {
12725   ExprEvalContexts.emplace_back(NewContext, ExprCleanupObjects.size(),
12726                                 ExprNeedsCleanups, LambdaContextDecl,
12727                                 IsDecltype);
12728   ExprNeedsCleanups = false;
12729   if (!MaybeODRUseExprs.empty())
12730     std::swap(MaybeODRUseExprs, ExprEvalContexts.back().SavedMaybeODRUseExprs);
12731 }
12732 
12733 void
12734 Sema::PushExpressionEvaluationContext(ExpressionEvaluationContext NewContext,
12735                                       ReuseLambdaContextDecl_t,
12736                                       bool IsDecltype) {
12737   Decl *ClosureContextDecl = ExprEvalContexts.back().ManglingContextDecl;
12738   PushExpressionEvaluationContext(NewContext, ClosureContextDecl, IsDecltype);
12739 }
12740 
12741 void Sema::PopExpressionEvaluationContext() {
12742   ExpressionEvaluationContextRecord& Rec = ExprEvalContexts.back();
12743   unsigned NumTypos = Rec.NumTypos;
12744 
12745   if (!Rec.Lambdas.empty()) {
12746     if (Rec.isUnevaluated() || Rec.Context == ConstantEvaluated) {
12747       unsigned D;
12748       if (Rec.isUnevaluated()) {
12749         // C++11 [expr.prim.lambda]p2:
12750         //   A lambda-expression shall not appear in an unevaluated operand
12751         //   (Clause 5).
12752         D = diag::err_lambda_unevaluated_operand;
12753       } else {
12754         // C++1y [expr.const]p2:
12755         //   A conditional-expression e is a core constant expression unless the
12756         //   evaluation of e, following the rules of the abstract machine, would
12757         //   evaluate [...] a lambda-expression.
12758         D = diag::err_lambda_in_constant_expression;
12759       }
12760       for (const auto *L : Rec.Lambdas)
12761         Diag(L->getLocStart(), D);
12762     } else {
12763       // Mark the capture expressions odr-used. This was deferred
12764       // during lambda expression creation.
12765       for (auto *Lambda : Rec.Lambdas) {
12766         for (auto *C : Lambda->capture_inits())
12767           MarkDeclarationsReferencedInExpr(C);
12768       }
12769     }
12770   }
12771 
12772   // When are coming out of an unevaluated context, clear out any
12773   // temporaries that we may have created as part of the evaluation of
12774   // the expression in that context: they aren't relevant because they
12775   // will never be constructed.
12776   if (Rec.isUnevaluated() || Rec.Context == ConstantEvaluated) {
12777     ExprCleanupObjects.erase(ExprCleanupObjects.begin() + Rec.NumCleanupObjects,
12778                              ExprCleanupObjects.end());
12779     ExprNeedsCleanups = Rec.ParentNeedsCleanups;
12780     CleanupVarDeclMarking();
12781     std::swap(MaybeODRUseExprs, Rec.SavedMaybeODRUseExprs);
12782   // Otherwise, merge the contexts together.
12783   } else {
12784     ExprNeedsCleanups |= Rec.ParentNeedsCleanups;
12785     MaybeODRUseExprs.insert(Rec.SavedMaybeODRUseExprs.begin(),
12786                             Rec.SavedMaybeODRUseExprs.end());
12787   }
12788 
12789   // Pop the current expression evaluation context off the stack.
12790   ExprEvalContexts.pop_back();
12791 
12792   if (!ExprEvalContexts.empty())
12793     ExprEvalContexts.back().NumTypos += NumTypos;
12794   else
12795     assert(NumTypos == 0 && "There are outstanding typos after popping the "
12796                             "last ExpressionEvaluationContextRecord");
12797 }
12798 
12799 void Sema::DiscardCleanupsInEvaluationContext() {
12800   ExprCleanupObjects.erase(
12801          ExprCleanupObjects.begin() + ExprEvalContexts.back().NumCleanupObjects,
12802          ExprCleanupObjects.end());
12803   ExprNeedsCleanups = false;
12804   MaybeODRUseExprs.clear();
12805 }
12806 
12807 ExprResult Sema::HandleExprEvaluationContextForTypeof(Expr *E) {
12808   if (!E->getType()->isVariablyModifiedType())
12809     return E;
12810   return TransformToPotentiallyEvaluated(E);
12811 }
12812 
12813 static bool IsPotentiallyEvaluatedContext(Sema &SemaRef) {
12814   // Do not mark anything as "used" within a dependent context; wait for
12815   // an instantiation.
12816   if (SemaRef.CurContext->isDependentContext())
12817     return false;
12818 
12819   switch (SemaRef.ExprEvalContexts.back().Context) {
12820     case Sema::Unevaluated:
12821     case Sema::UnevaluatedAbstract:
12822       // We are in an expression that is not potentially evaluated; do nothing.
12823       // (Depending on how you read the standard, we actually do need to do
12824       // something here for null pointer constants, but the standard's
12825       // definition of a null pointer constant is completely crazy.)
12826       return false;
12827 
12828     case Sema::ConstantEvaluated:
12829     case Sema::PotentiallyEvaluated:
12830       // We are in a potentially evaluated expression (or a constant-expression
12831       // in C++03); we need to do implicit template instantiation, implicitly
12832       // define class members, and mark most declarations as used.
12833       return true;
12834 
12835     case Sema::PotentiallyEvaluatedIfUsed:
12836       // Referenced declarations will only be used if the construct in the
12837       // containing expression is used.
12838       return false;
12839   }
12840   llvm_unreachable("Invalid context");
12841 }
12842 
12843 /// \brief Mark a function referenced, and check whether it is odr-used
12844 /// (C++ [basic.def.odr]p2, C99 6.9p3)
12845 void Sema::MarkFunctionReferenced(SourceLocation Loc, FunctionDecl *Func,
12846                                   bool MightBeOdrUse) {
12847   assert(Func && "No function?");
12848 
12849   Func->setReferenced();
12850 
12851   // C++11 [basic.def.odr]p3:
12852   //   A function whose name appears as a potentially-evaluated expression is
12853   //   odr-used if it is the unique lookup result or the selected member of a
12854   //   set of overloaded functions [...].
12855   //
12856   // We (incorrectly) mark overload resolution as an unevaluated context, so we
12857   // can just check that here. Skip the rest of this function if we've already
12858   // marked the function as used.
12859   bool OdrUse = MightBeOdrUse && IsPotentiallyEvaluatedContext(*this);
12860   if (Func->isUsed(/*CheckUsedAttr=*/false) || !OdrUse) {
12861     // C++11 [temp.inst]p3:
12862     //   Unless a function template specialization has been explicitly
12863     //   instantiated or explicitly specialized, the function template
12864     //   specialization is implicitly instantiated when the specialization is
12865     //   referenced in a context that requires a function definition to exist.
12866     //
12867     // We consider constexpr function templates to be referenced in a context
12868     // that requires a definition to exist whenever they are referenced.
12869     //
12870     // FIXME: This instantiates constexpr functions too frequently. If this is
12871     // really an unevaluated context (and we're not just in the definition of a
12872     // function template or overload resolution or other cases which we
12873     // incorrectly consider to be unevaluated contexts), and we're not in a
12874     // subexpression which we actually need to evaluate (for instance, a
12875     // template argument, array bound or an expression in a braced-init-list),
12876     // we are not permitted to instantiate this constexpr function definition.
12877     //
12878     // FIXME: This also implicitly defines special members too frequently. They
12879     // are only supposed to be implicitly defined if they are odr-used, but they
12880     // are not odr-used from constant expressions in unevaluated contexts.
12881     // However, they cannot be referenced if they are deleted, and they are
12882     // deleted whenever the implicit definition of the special member would
12883     // fail.
12884     if (!Func->isConstexpr() || Func->getBody())
12885       return;
12886     CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Func);
12887     if (!Func->isImplicitlyInstantiable() && (!MD || MD->isUserProvided()))
12888       return;
12889   }
12890 
12891   // Note that this declaration has been used.
12892   if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(Func)) {
12893     Constructor = cast<CXXConstructorDecl>(Constructor->getFirstDecl());
12894     if (Constructor->isDefaulted() && !Constructor->isDeleted()) {
12895       if (Constructor->isDefaultConstructor()) {
12896         if (Constructor->isTrivial() && !Constructor->hasAttr<DLLExportAttr>())
12897           return;
12898         DefineImplicitDefaultConstructor(Loc, Constructor);
12899       } else if (Constructor->isCopyConstructor()) {
12900         DefineImplicitCopyConstructor(Loc, Constructor);
12901       } else if (Constructor->isMoveConstructor()) {
12902         DefineImplicitMoveConstructor(Loc, Constructor);
12903       }
12904     } else if (Constructor->getInheritedConstructor()) {
12905       DefineInheritingConstructor(Loc, Constructor);
12906     }
12907   } else if (CXXDestructorDecl *Destructor =
12908                  dyn_cast<CXXDestructorDecl>(Func)) {
12909     Destructor = cast<CXXDestructorDecl>(Destructor->getFirstDecl());
12910     if (Destructor->isDefaulted() && !Destructor->isDeleted()) {
12911       if (Destructor->isTrivial() && !Destructor->hasAttr<DLLExportAttr>())
12912         return;
12913       DefineImplicitDestructor(Loc, Destructor);
12914     }
12915     if (Destructor->isVirtual() && getLangOpts().AppleKext)
12916       MarkVTableUsed(Loc, Destructor->getParent());
12917   } else if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(Func)) {
12918     if (MethodDecl->isOverloadedOperator() &&
12919         MethodDecl->getOverloadedOperator() == OO_Equal) {
12920       MethodDecl = cast<CXXMethodDecl>(MethodDecl->getFirstDecl());
12921       if (MethodDecl->isDefaulted() && !MethodDecl->isDeleted()) {
12922         if (MethodDecl->isCopyAssignmentOperator())
12923           DefineImplicitCopyAssignment(Loc, MethodDecl);
12924         else
12925           DefineImplicitMoveAssignment(Loc, MethodDecl);
12926       }
12927     } else if (isa<CXXConversionDecl>(MethodDecl) &&
12928                MethodDecl->getParent()->isLambda()) {
12929       CXXConversionDecl *Conversion =
12930           cast<CXXConversionDecl>(MethodDecl->getFirstDecl());
12931       if (Conversion->isLambdaToBlockPointerConversion())
12932         DefineImplicitLambdaToBlockPointerConversion(Loc, Conversion);
12933       else
12934         DefineImplicitLambdaToFunctionPointerConversion(Loc, Conversion);
12935     } else if (MethodDecl->isVirtual() && getLangOpts().AppleKext)
12936       MarkVTableUsed(Loc, MethodDecl->getParent());
12937   }
12938 
12939   // Recursive functions should be marked when used from another function.
12940   // FIXME: Is this really right?
12941   if (CurContext == Func) return;
12942 
12943   // Resolve the exception specification for any function which is
12944   // used: CodeGen will need it.
12945   const FunctionProtoType *FPT = Func->getType()->getAs<FunctionProtoType>();
12946   if (FPT && isUnresolvedExceptionSpec(FPT->getExceptionSpecType()))
12947     ResolveExceptionSpec(Loc, FPT);
12948 
12949   // Implicit instantiation of function templates and member functions of
12950   // class templates.
12951   if (Func->isImplicitlyInstantiable()) {
12952     bool AlreadyInstantiated = false;
12953     SourceLocation PointOfInstantiation = Loc;
12954     if (FunctionTemplateSpecializationInfo *SpecInfo
12955                               = Func->getTemplateSpecializationInfo()) {
12956       if (SpecInfo->getPointOfInstantiation().isInvalid())
12957         SpecInfo->setPointOfInstantiation(Loc);
12958       else if (SpecInfo->getTemplateSpecializationKind()
12959                  == TSK_ImplicitInstantiation) {
12960         AlreadyInstantiated = true;
12961         PointOfInstantiation = SpecInfo->getPointOfInstantiation();
12962       }
12963     } else if (MemberSpecializationInfo *MSInfo
12964                                 = Func->getMemberSpecializationInfo()) {
12965       if (MSInfo->getPointOfInstantiation().isInvalid())
12966         MSInfo->setPointOfInstantiation(Loc);
12967       else if (MSInfo->getTemplateSpecializationKind()
12968                  == TSK_ImplicitInstantiation) {
12969         AlreadyInstantiated = true;
12970         PointOfInstantiation = MSInfo->getPointOfInstantiation();
12971       }
12972     }
12973 
12974     if (!AlreadyInstantiated || Func->isConstexpr()) {
12975       if (isa<CXXRecordDecl>(Func->getDeclContext()) &&
12976           cast<CXXRecordDecl>(Func->getDeclContext())->isLocalClass() &&
12977           ActiveTemplateInstantiations.size())
12978         PendingLocalImplicitInstantiations.push_back(
12979             std::make_pair(Func, PointOfInstantiation));
12980       else if (Func->isConstexpr())
12981         // Do not defer instantiations of constexpr functions, to avoid the
12982         // expression evaluator needing to call back into Sema if it sees a
12983         // call to such a function.
12984         InstantiateFunctionDefinition(PointOfInstantiation, Func);
12985       else {
12986         PendingInstantiations.push_back(std::make_pair(Func,
12987                                                        PointOfInstantiation));
12988         // Notify the consumer that a function was implicitly instantiated.
12989         Consumer.HandleCXXImplicitFunctionInstantiation(Func);
12990       }
12991     }
12992   } else {
12993     // Walk redefinitions, as some of them may be instantiable.
12994     for (auto i : Func->redecls()) {
12995       if (!i->isUsed(false) && i->isImplicitlyInstantiable())
12996         MarkFunctionReferenced(Loc, i, OdrUse);
12997     }
12998   }
12999 
13000   if (!OdrUse) return;
13001 
13002   // Keep track of used but undefined functions.
13003   if (!Func->isDefined()) {
13004     if (mightHaveNonExternalLinkage(Func))
13005       UndefinedButUsed.insert(std::make_pair(Func->getCanonicalDecl(), Loc));
13006     else if (Func->getMostRecentDecl()->isInlined() &&
13007              !LangOpts.GNUInline &&
13008              !Func->getMostRecentDecl()->hasAttr<GNUInlineAttr>())
13009       UndefinedButUsed.insert(std::make_pair(Func->getCanonicalDecl(), Loc));
13010   }
13011 
13012   // Normally the most current decl is marked used while processing the use and
13013   // any subsequent decls are marked used by decl merging. This fails with
13014   // template instantiation since marking can happen at the end of the file
13015   // and, because of the two phase lookup, this function is called with at
13016   // decl in the middle of a decl chain. We loop to maintain the invariant
13017   // that once a decl is used, all decls after it are also used.
13018   for (FunctionDecl *F = Func->getMostRecentDecl();; F = F->getPreviousDecl()) {
13019     F->markUsed(Context);
13020     if (F == Func)
13021       break;
13022   }
13023 }
13024 
13025 static void
13026 diagnoseUncapturableValueReference(Sema &S, SourceLocation loc,
13027                                    VarDecl *var, DeclContext *DC) {
13028   DeclContext *VarDC = var->getDeclContext();
13029 
13030   //  If the parameter still belongs to the translation unit, then
13031   //  we're actually just using one parameter in the declaration of
13032   //  the next.
13033   if (isa<ParmVarDecl>(var) &&
13034       isa<TranslationUnitDecl>(VarDC))
13035     return;
13036 
13037   // For C code, don't diagnose about capture if we're not actually in code
13038   // right now; it's impossible to write a non-constant expression outside of
13039   // function context, so we'll get other (more useful) diagnostics later.
13040   //
13041   // For C++, things get a bit more nasty... it would be nice to suppress this
13042   // diagnostic for certain cases like using a local variable in an array bound
13043   // for a member of a local class, but the correct predicate is not obvious.
13044   if (!S.getLangOpts().CPlusPlus && !S.CurContext->isFunctionOrMethod())
13045     return;
13046 
13047   if (isa<CXXMethodDecl>(VarDC) &&
13048       cast<CXXRecordDecl>(VarDC->getParent())->isLambda()) {
13049     S.Diag(loc, diag::err_reference_to_local_var_in_enclosing_lambda)
13050       << var->getIdentifier();
13051   } else if (FunctionDecl *fn = dyn_cast<FunctionDecl>(VarDC)) {
13052     S.Diag(loc, diag::err_reference_to_local_var_in_enclosing_function)
13053       << var->getIdentifier() << fn->getDeclName();
13054   } else if (isa<BlockDecl>(VarDC)) {
13055     S.Diag(loc, diag::err_reference_to_local_var_in_enclosing_block)
13056       << var->getIdentifier();
13057   } else {
13058     // FIXME: Is there any other context where a local variable can be
13059     // declared?
13060     S.Diag(loc, diag::err_reference_to_local_var_in_enclosing_context)
13061       << var->getIdentifier();
13062   }
13063 
13064   S.Diag(var->getLocation(), diag::note_entity_declared_at)
13065       << var->getIdentifier();
13066 
13067   // FIXME: Add additional diagnostic info about class etc. which prevents
13068   // capture.
13069 }
13070 
13071 
13072 static bool isVariableAlreadyCapturedInScopeInfo(CapturingScopeInfo *CSI, VarDecl *Var,
13073                                       bool &SubCapturesAreNested,
13074                                       QualType &CaptureType,
13075                                       QualType &DeclRefType) {
13076    // Check whether we've already captured it.
13077   if (CSI->CaptureMap.count(Var)) {
13078     // If we found a capture, any subcaptures are nested.
13079     SubCapturesAreNested = true;
13080 
13081     // Retrieve the capture type for this variable.
13082     CaptureType = CSI->getCapture(Var).getCaptureType();
13083 
13084     // Compute the type of an expression that refers to this variable.
13085     DeclRefType = CaptureType.getNonReferenceType();
13086 
13087     // Similarly to mutable captures in lambda, all the OpenMP captures by copy
13088     // are mutable in the sense that user can change their value - they are
13089     // private instances of the captured declarations.
13090     const CapturingScopeInfo::Capture &Cap = CSI->getCapture(Var);
13091     if (Cap.isCopyCapture() &&
13092         !(isa<LambdaScopeInfo>(CSI) && cast<LambdaScopeInfo>(CSI)->Mutable) &&
13093         !(isa<CapturedRegionScopeInfo>(CSI) &&
13094           cast<CapturedRegionScopeInfo>(CSI)->CapRegionKind == CR_OpenMP))
13095       DeclRefType.addConst();
13096     return true;
13097   }
13098   return false;
13099 }
13100 
13101 // Only block literals, captured statements, and lambda expressions can
13102 // capture; other scopes don't work.
13103 static DeclContext *getParentOfCapturingContextOrNull(DeclContext *DC, VarDecl *Var,
13104                                  SourceLocation Loc,
13105                                  const bool Diagnose, Sema &S) {
13106   if (isa<BlockDecl>(DC) || isa<CapturedDecl>(DC) || isLambdaCallOperator(DC))
13107     return getLambdaAwareParentOfDeclContext(DC);
13108   else if (Var->hasLocalStorage()) {
13109     if (Diagnose)
13110        diagnoseUncapturableValueReference(S, Loc, Var, DC);
13111   }
13112   return nullptr;
13113 }
13114 
13115 // Certain capturing entities (lambdas, blocks etc.) are not allowed to capture
13116 // certain types of variables (unnamed, variably modified types etc.)
13117 // so check for eligibility.
13118 static bool isVariableCapturable(CapturingScopeInfo *CSI, VarDecl *Var,
13119                                  SourceLocation Loc,
13120                                  const bool Diagnose, Sema &S) {
13121 
13122   bool IsBlock = isa<BlockScopeInfo>(CSI);
13123   bool IsLambda = isa<LambdaScopeInfo>(CSI);
13124 
13125   // Lambdas are not allowed to capture unnamed variables
13126   // (e.g. anonymous unions).
13127   // FIXME: The C++11 rule don't actually state this explicitly, but I'm
13128   // assuming that's the intent.
13129   if (IsLambda && !Var->getDeclName()) {
13130     if (Diagnose) {
13131       S.Diag(Loc, diag::err_lambda_capture_anonymous_var);
13132       S.Diag(Var->getLocation(), diag::note_declared_at);
13133     }
13134     return false;
13135   }
13136 
13137   // Prohibit variably-modified types in blocks; they're difficult to deal with.
13138   if (Var->getType()->isVariablyModifiedType() && IsBlock) {
13139     if (Diagnose) {
13140       S.Diag(Loc, diag::err_ref_vm_type);
13141       S.Diag(Var->getLocation(), diag::note_previous_decl)
13142         << Var->getDeclName();
13143     }
13144     return false;
13145   }
13146   // Prohibit structs with flexible array members too.
13147   // We cannot capture what is in the tail end of the struct.
13148   if (const RecordType *VTTy = Var->getType()->getAs<RecordType>()) {
13149     if (VTTy->getDecl()->hasFlexibleArrayMember()) {
13150       if (Diagnose) {
13151         if (IsBlock)
13152           S.Diag(Loc, diag::err_ref_flexarray_type);
13153         else
13154           S.Diag(Loc, diag::err_lambda_capture_flexarray_type)
13155             << Var->getDeclName();
13156         S.Diag(Var->getLocation(), diag::note_previous_decl)
13157           << Var->getDeclName();
13158       }
13159       return false;
13160     }
13161   }
13162   const bool HasBlocksAttr = Var->hasAttr<BlocksAttr>();
13163   // Lambdas and captured statements are not allowed to capture __block
13164   // variables; they don't support the expected semantics.
13165   if (HasBlocksAttr && (IsLambda || isa<CapturedRegionScopeInfo>(CSI))) {
13166     if (Diagnose) {
13167       S.Diag(Loc, diag::err_capture_block_variable)
13168         << Var->getDeclName() << !IsLambda;
13169       S.Diag(Var->getLocation(), diag::note_previous_decl)
13170         << Var->getDeclName();
13171     }
13172     return false;
13173   }
13174 
13175   return true;
13176 }
13177 
13178 // Returns true if the capture by block was successful.
13179 static bool captureInBlock(BlockScopeInfo *BSI, VarDecl *Var,
13180                                  SourceLocation Loc,
13181                                  const bool BuildAndDiagnose,
13182                                  QualType &CaptureType,
13183                                  QualType &DeclRefType,
13184                                  const bool Nested,
13185                                  Sema &S) {
13186   Expr *CopyExpr = nullptr;
13187   bool ByRef = false;
13188 
13189   // Blocks are not allowed to capture arrays.
13190   if (CaptureType->isArrayType()) {
13191     if (BuildAndDiagnose) {
13192       S.Diag(Loc, diag::err_ref_array_type);
13193       S.Diag(Var->getLocation(), diag::note_previous_decl)
13194       << Var->getDeclName();
13195     }
13196     return false;
13197   }
13198 
13199   // Forbid the block-capture of autoreleasing variables.
13200   if (CaptureType.getObjCLifetime() == Qualifiers::OCL_Autoreleasing) {
13201     if (BuildAndDiagnose) {
13202       S.Diag(Loc, diag::err_arc_autoreleasing_capture)
13203         << /*block*/ 0;
13204       S.Diag(Var->getLocation(), diag::note_previous_decl)
13205         << Var->getDeclName();
13206     }
13207     return false;
13208   }
13209   const bool HasBlocksAttr = Var->hasAttr<BlocksAttr>();
13210   if (HasBlocksAttr || CaptureType->isReferenceType()) {
13211     // Block capture by reference does not change the capture or
13212     // declaration reference types.
13213     ByRef = true;
13214   } else {
13215     // Block capture by copy introduces 'const'.
13216     CaptureType = CaptureType.getNonReferenceType().withConst();
13217     DeclRefType = CaptureType;
13218 
13219     if (S.getLangOpts().CPlusPlus && BuildAndDiagnose) {
13220       if (const RecordType *Record = DeclRefType->getAs<RecordType>()) {
13221         // The capture logic needs the destructor, so make sure we mark it.
13222         // Usually this is unnecessary because most local variables have
13223         // their destructors marked at declaration time, but parameters are
13224         // an exception because it's technically only the call site that
13225         // actually requires the destructor.
13226         if (isa<ParmVarDecl>(Var))
13227           S.FinalizeVarWithDestructor(Var, Record);
13228 
13229         // Enter a new evaluation context to insulate the copy
13230         // full-expression.
13231         EnterExpressionEvaluationContext scope(S, S.PotentiallyEvaluated);
13232 
13233         // According to the blocks spec, the capture of a variable from
13234         // the stack requires a const copy constructor.  This is not true
13235         // of the copy/move done to move a __block variable to the heap.
13236         Expr *DeclRef = new (S.Context) DeclRefExpr(Var, Nested,
13237                                                   DeclRefType.withConst(),
13238                                                   VK_LValue, Loc);
13239 
13240         ExprResult Result
13241           = S.PerformCopyInitialization(
13242               InitializedEntity::InitializeBlock(Var->getLocation(),
13243                                                   CaptureType, false),
13244               Loc, DeclRef);
13245 
13246         // Build a full-expression copy expression if initialization
13247         // succeeded and used a non-trivial constructor.  Recover from
13248         // errors by pretending that the copy isn't necessary.
13249         if (!Result.isInvalid() &&
13250             !cast<CXXConstructExpr>(Result.get())->getConstructor()
13251                 ->isTrivial()) {
13252           Result = S.MaybeCreateExprWithCleanups(Result);
13253           CopyExpr = Result.get();
13254         }
13255       }
13256     }
13257   }
13258 
13259   // Actually capture the variable.
13260   if (BuildAndDiagnose)
13261     BSI->addCapture(Var, HasBlocksAttr, ByRef, Nested, Loc,
13262                     SourceLocation(), CaptureType, CopyExpr);
13263 
13264   return true;
13265 
13266 }
13267 
13268 
13269 /// \brief Capture the given variable in the captured region.
13270 static bool captureInCapturedRegion(CapturedRegionScopeInfo *RSI,
13271                                     VarDecl *Var,
13272                                     SourceLocation Loc,
13273                                     const bool BuildAndDiagnose,
13274                                     QualType &CaptureType,
13275                                     QualType &DeclRefType,
13276                                     const bool RefersToCapturedVariable,
13277                                     Sema &S) {
13278 
13279   // By default, capture variables by reference.
13280   bool ByRef = true;
13281   // Using an LValue reference type is consistent with Lambdas (see below).
13282   if (S.getLangOpts().OpenMP) {
13283     ByRef = S.IsOpenMPCapturedByRef(Var, RSI);
13284     if (S.IsOpenMPCapturedDecl(Var))
13285       DeclRefType = DeclRefType.getUnqualifiedType();
13286   }
13287 
13288   if (ByRef)
13289     CaptureType = S.Context.getLValueReferenceType(DeclRefType);
13290   else
13291     CaptureType = DeclRefType;
13292 
13293   Expr *CopyExpr = nullptr;
13294   if (BuildAndDiagnose) {
13295     // The current implementation assumes that all variables are captured
13296     // by references. Since there is no capture by copy, no expression
13297     // evaluation will be needed.
13298     RecordDecl *RD = RSI->TheRecordDecl;
13299 
13300     FieldDecl *Field
13301       = FieldDecl::Create(S.Context, RD, Loc, Loc, nullptr, CaptureType,
13302                           S.Context.getTrivialTypeSourceInfo(CaptureType, Loc),
13303                           nullptr, false, ICIS_NoInit);
13304     Field->setImplicit(true);
13305     Field->setAccess(AS_private);
13306     RD->addDecl(Field);
13307 
13308     CopyExpr = new (S.Context) DeclRefExpr(Var, RefersToCapturedVariable,
13309                                             DeclRefType, VK_LValue, Loc);
13310     Var->setReferenced(true);
13311     Var->markUsed(S.Context);
13312   }
13313 
13314   // Actually capture the variable.
13315   if (BuildAndDiagnose)
13316     RSI->addCapture(Var, /*isBlock*/false, ByRef, RefersToCapturedVariable, Loc,
13317                     SourceLocation(), CaptureType, CopyExpr);
13318 
13319 
13320   return true;
13321 }
13322 
13323 /// \brief Create a field within the lambda class for the variable
13324 /// being captured.
13325 static void addAsFieldToClosureType(Sema &S, LambdaScopeInfo *LSI,
13326                                     QualType FieldType, QualType DeclRefType,
13327                                     SourceLocation Loc,
13328                                     bool RefersToCapturedVariable) {
13329   CXXRecordDecl *Lambda = LSI->Lambda;
13330 
13331   // Build the non-static data member.
13332   FieldDecl *Field
13333     = FieldDecl::Create(S.Context, Lambda, Loc, Loc, nullptr, FieldType,
13334                         S.Context.getTrivialTypeSourceInfo(FieldType, Loc),
13335                         nullptr, false, ICIS_NoInit);
13336   Field->setImplicit(true);
13337   Field->setAccess(AS_private);
13338   Lambda->addDecl(Field);
13339 }
13340 
13341 /// \brief Capture the given variable in the lambda.
13342 static bool captureInLambda(LambdaScopeInfo *LSI,
13343                             VarDecl *Var,
13344                             SourceLocation Loc,
13345                             const bool BuildAndDiagnose,
13346                             QualType &CaptureType,
13347                             QualType &DeclRefType,
13348                             const bool RefersToCapturedVariable,
13349                             const Sema::TryCaptureKind Kind,
13350                             SourceLocation EllipsisLoc,
13351                             const bool IsTopScope,
13352                             Sema &S) {
13353 
13354   // Determine whether we are capturing by reference or by value.
13355   bool ByRef = false;
13356   if (IsTopScope && Kind != Sema::TryCapture_Implicit) {
13357     ByRef = (Kind == Sema::TryCapture_ExplicitByRef);
13358   } else {
13359     ByRef = (LSI->ImpCaptureStyle == LambdaScopeInfo::ImpCap_LambdaByref);
13360   }
13361 
13362   // Compute the type of the field that will capture this variable.
13363   if (ByRef) {
13364     // C++11 [expr.prim.lambda]p15:
13365     //   An entity is captured by reference if it is implicitly or
13366     //   explicitly captured but not captured by copy. It is
13367     //   unspecified whether additional unnamed non-static data
13368     //   members are declared in the closure type for entities
13369     //   captured by reference.
13370     //
13371     // FIXME: It is not clear whether we want to build an lvalue reference
13372     // to the DeclRefType or to CaptureType.getNonReferenceType(). GCC appears
13373     // to do the former, while EDG does the latter. Core issue 1249 will
13374     // clarify, but for now we follow GCC because it's a more permissive and
13375     // easily defensible position.
13376     CaptureType = S.Context.getLValueReferenceType(DeclRefType);
13377   } else {
13378     // C++11 [expr.prim.lambda]p14:
13379     //   For each entity captured by copy, an unnamed non-static
13380     //   data member is declared in the closure type. The
13381     //   declaration order of these members is unspecified. The type
13382     //   of such a data member is the type of the corresponding
13383     //   captured entity if the entity is not a reference to an
13384     //   object, or the referenced type otherwise. [Note: If the
13385     //   captured entity is a reference to a function, the
13386     //   corresponding data member is also a reference to a
13387     //   function. - end note ]
13388     if (const ReferenceType *RefType = CaptureType->getAs<ReferenceType>()){
13389       if (!RefType->getPointeeType()->isFunctionType())
13390         CaptureType = RefType->getPointeeType();
13391     }
13392 
13393     // Forbid the lambda copy-capture of autoreleasing variables.
13394     if (CaptureType.getObjCLifetime() == Qualifiers::OCL_Autoreleasing) {
13395       if (BuildAndDiagnose) {
13396         S.Diag(Loc, diag::err_arc_autoreleasing_capture) << /*lambda*/ 1;
13397         S.Diag(Var->getLocation(), diag::note_previous_decl)
13398           << Var->getDeclName();
13399       }
13400       return false;
13401     }
13402 
13403     // Make sure that by-copy captures are of a complete and non-abstract type.
13404     if (BuildAndDiagnose) {
13405       if (!CaptureType->isDependentType() &&
13406           S.RequireCompleteType(Loc, CaptureType,
13407                                 diag::err_capture_of_incomplete_type,
13408                                 Var->getDeclName()))
13409         return false;
13410 
13411       if (S.RequireNonAbstractType(Loc, CaptureType,
13412                                    diag::err_capture_of_abstract_type))
13413         return false;
13414     }
13415   }
13416 
13417   // Capture this variable in the lambda.
13418   if (BuildAndDiagnose)
13419     addAsFieldToClosureType(S, LSI, CaptureType, DeclRefType, Loc,
13420                             RefersToCapturedVariable);
13421 
13422   // Compute the type of a reference to this captured variable.
13423   if (ByRef)
13424     DeclRefType = CaptureType.getNonReferenceType();
13425   else {
13426     // C++ [expr.prim.lambda]p5:
13427     //   The closure type for a lambda-expression has a public inline
13428     //   function call operator [...]. This function call operator is
13429     //   declared const (9.3.1) if and only if the lambda-expression’s
13430     //   parameter-declaration-clause is not followed by mutable.
13431     DeclRefType = CaptureType.getNonReferenceType();
13432     if (!LSI->Mutable && !CaptureType->isReferenceType())
13433       DeclRefType.addConst();
13434   }
13435 
13436   // Add the capture.
13437   if (BuildAndDiagnose)
13438     LSI->addCapture(Var, /*IsBlock=*/false, ByRef, RefersToCapturedVariable,
13439                     Loc, EllipsisLoc, CaptureType, /*CopyExpr=*/nullptr);
13440 
13441   return true;
13442 }
13443 
13444 bool Sema::tryCaptureVariable(
13445     VarDecl *Var, SourceLocation ExprLoc, TryCaptureKind Kind,
13446     SourceLocation EllipsisLoc, bool BuildAndDiagnose, QualType &CaptureType,
13447     QualType &DeclRefType, const unsigned *const FunctionScopeIndexToStopAt) {
13448   // An init-capture is notionally from the context surrounding its
13449   // declaration, but its parent DC is the lambda class.
13450   DeclContext *VarDC = Var->getDeclContext();
13451   if (Var->isInitCapture())
13452     VarDC = VarDC->getParent();
13453 
13454   DeclContext *DC = CurContext;
13455   const unsigned MaxFunctionScopesIndex = FunctionScopeIndexToStopAt
13456       ? *FunctionScopeIndexToStopAt : FunctionScopes.size() - 1;
13457   // We need to sync up the Declaration Context with the
13458   // FunctionScopeIndexToStopAt
13459   if (FunctionScopeIndexToStopAt) {
13460     unsigned FSIndex = FunctionScopes.size() - 1;
13461     while (FSIndex != MaxFunctionScopesIndex) {
13462       DC = getLambdaAwareParentOfDeclContext(DC);
13463       --FSIndex;
13464     }
13465   }
13466 
13467 
13468   // If the variable is declared in the current context, there is no need to
13469   // capture it.
13470   if (VarDC == DC) return true;
13471 
13472   // Capture global variables if it is required to use private copy of this
13473   // variable.
13474   bool IsGlobal = !Var->hasLocalStorage();
13475   if (IsGlobal && !(LangOpts.OpenMP && IsOpenMPCapturedDecl(Var)))
13476     return true;
13477 
13478   // Walk up the stack to determine whether we can capture the variable,
13479   // performing the "simple" checks that don't depend on type. We stop when
13480   // we've either hit the declared scope of the variable or find an existing
13481   // capture of that variable.  We start from the innermost capturing-entity
13482   // (the DC) and ensure that all intervening capturing-entities
13483   // (blocks/lambdas etc.) between the innermost capturer and the variable`s
13484   // declcontext can either capture the variable or have already captured
13485   // the variable.
13486   CaptureType = Var->getType();
13487   DeclRefType = CaptureType.getNonReferenceType();
13488   bool Nested = false;
13489   bool Explicit = (Kind != TryCapture_Implicit);
13490   unsigned FunctionScopesIndex = MaxFunctionScopesIndex;
13491   unsigned OpenMPLevel = 0;
13492   do {
13493     // Only block literals, captured statements, and lambda expressions can
13494     // capture; other scopes don't work.
13495     DeclContext *ParentDC = getParentOfCapturingContextOrNull(DC, Var,
13496                                                               ExprLoc,
13497                                                               BuildAndDiagnose,
13498                                                               *this);
13499     // We need to check for the parent *first* because, if we *have*
13500     // private-captured a global variable, we need to recursively capture it in
13501     // intermediate blocks, lambdas, etc.
13502     if (!ParentDC) {
13503       if (IsGlobal) {
13504         FunctionScopesIndex = MaxFunctionScopesIndex - 1;
13505         break;
13506       }
13507       return true;
13508     }
13509 
13510     FunctionScopeInfo  *FSI = FunctionScopes[FunctionScopesIndex];
13511     CapturingScopeInfo *CSI = cast<CapturingScopeInfo>(FSI);
13512 
13513 
13514     // Check whether we've already captured it.
13515     if (isVariableAlreadyCapturedInScopeInfo(CSI, Var, Nested, CaptureType,
13516                                              DeclRefType))
13517       break;
13518     // If we are instantiating a generic lambda call operator body,
13519     // we do not want to capture new variables.  What was captured
13520     // during either a lambdas transformation or initial parsing
13521     // should be used.
13522     if (isGenericLambdaCallOperatorSpecialization(DC)) {
13523       if (BuildAndDiagnose) {
13524         LambdaScopeInfo *LSI = cast<LambdaScopeInfo>(CSI);
13525         if (LSI->ImpCaptureStyle == CapturingScopeInfo::ImpCap_None) {
13526           Diag(ExprLoc, diag::err_lambda_impcap) << Var->getDeclName();
13527           Diag(Var->getLocation(), diag::note_previous_decl)
13528              << Var->getDeclName();
13529           Diag(LSI->Lambda->getLocStart(), diag::note_lambda_decl);
13530         } else
13531           diagnoseUncapturableValueReference(*this, ExprLoc, Var, DC);
13532       }
13533       return true;
13534     }
13535     // Certain capturing entities (lambdas, blocks etc.) are not allowed to capture
13536     // certain types of variables (unnamed, variably modified types etc.)
13537     // so check for eligibility.
13538     if (!isVariableCapturable(CSI, Var, ExprLoc, BuildAndDiagnose, *this))
13539        return true;
13540 
13541     // Try to capture variable-length arrays types.
13542     if (Var->getType()->isVariablyModifiedType()) {
13543       // We're going to walk down into the type and look for VLA
13544       // expressions.
13545       QualType QTy = Var->getType();
13546       if (ParmVarDecl *PVD = dyn_cast_or_null<ParmVarDecl>(Var))
13547         QTy = PVD->getOriginalType();
13548       captureVariablyModifiedType(Context, QTy, CSI);
13549     }
13550 
13551     if (getLangOpts().OpenMP) {
13552       if (auto *RSI = dyn_cast<CapturedRegionScopeInfo>(CSI)) {
13553         // OpenMP private variables should not be captured in outer scope, so
13554         // just break here. Similarly, global variables that are captured in a
13555         // target region should not be captured outside the scope of the region.
13556         if (RSI->CapRegionKind == CR_OpenMP) {
13557           auto isTargetCap = isOpenMPTargetCapturedDecl(Var, OpenMPLevel);
13558           // When we detect target captures we are looking from inside the
13559           // target region, therefore we need to propagate the capture from the
13560           // enclosing region. Therefore, the capture is not initially nested.
13561           if (isTargetCap)
13562             FunctionScopesIndex--;
13563 
13564           if (isTargetCap || isOpenMPPrivateDecl(Var, OpenMPLevel)) {
13565             Nested = !isTargetCap;
13566             DeclRefType = DeclRefType.getUnqualifiedType();
13567             CaptureType = Context.getLValueReferenceType(DeclRefType);
13568             break;
13569           }
13570           ++OpenMPLevel;
13571         }
13572       }
13573     }
13574     if (CSI->ImpCaptureStyle == CapturingScopeInfo::ImpCap_None && !Explicit) {
13575       // No capture-default, and this is not an explicit capture
13576       // so cannot capture this variable.
13577       if (BuildAndDiagnose) {
13578         Diag(ExprLoc, diag::err_lambda_impcap) << Var->getDeclName();
13579         Diag(Var->getLocation(), diag::note_previous_decl)
13580           << Var->getDeclName();
13581         if (cast<LambdaScopeInfo>(CSI)->Lambda)
13582           Diag(cast<LambdaScopeInfo>(CSI)->Lambda->getLocStart(),
13583                diag::note_lambda_decl);
13584         // FIXME: If we error out because an outer lambda can not implicitly
13585         // capture a variable that an inner lambda explicitly captures, we
13586         // should have the inner lambda do the explicit capture - because
13587         // it makes for cleaner diagnostics later.  This would purely be done
13588         // so that the diagnostic does not misleadingly claim that a variable
13589         // can not be captured by a lambda implicitly even though it is captured
13590         // explicitly.  Suggestion:
13591         //  - create const bool VariableCaptureWasInitiallyExplicit = Explicit
13592         //    at the function head
13593         //  - cache the StartingDeclContext - this must be a lambda
13594         //  - captureInLambda in the innermost lambda the variable.
13595       }
13596       return true;
13597     }
13598 
13599     FunctionScopesIndex--;
13600     DC = ParentDC;
13601     Explicit = false;
13602   } while (!VarDC->Equals(DC));
13603 
13604   // Walk back down the scope stack, (e.g. from outer lambda to inner lambda)
13605   // computing the type of the capture at each step, checking type-specific
13606   // requirements, and adding captures if requested.
13607   // If the variable had already been captured previously, we start capturing
13608   // at the lambda nested within that one.
13609   for (unsigned I = ++FunctionScopesIndex, N = MaxFunctionScopesIndex + 1; I != N;
13610        ++I) {
13611     CapturingScopeInfo *CSI = cast<CapturingScopeInfo>(FunctionScopes[I]);
13612 
13613     if (BlockScopeInfo *BSI = dyn_cast<BlockScopeInfo>(CSI)) {
13614       if (!captureInBlock(BSI, Var, ExprLoc,
13615                           BuildAndDiagnose, CaptureType,
13616                           DeclRefType, Nested, *this))
13617         return true;
13618       Nested = true;
13619     } else if (CapturedRegionScopeInfo *RSI = dyn_cast<CapturedRegionScopeInfo>(CSI)) {
13620       if (!captureInCapturedRegion(RSI, Var, ExprLoc,
13621                                    BuildAndDiagnose, CaptureType,
13622                                    DeclRefType, Nested, *this))
13623         return true;
13624       Nested = true;
13625     } else {
13626       LambdaScopeInfo *LSI = cast<LambdaScopeInfo>(CSI);
13627       if (!captureInLambda(LSI, Var, ExprLoc,
13628                            BuildAndDiagnose, CaptureType,
13629                            DeclRefType, Nested, Kind, EllipsisLoc,
13630                             /*IsTopScope*/I == N - 1, *this))
13631         return true;
13632       Nested = true;
13633     }
13634   }
13635   return false;
13636 }
13637 
13638 bool Sema::tryCaptureVariable(VarDecl *Var, SourceLocation Loc,
13639                               TryCaptureKind Kind, SourceLocation EllipsisLoc) {
13640   QualType CaptureType;
13641   QualType DeclRefType;
13642   return tryCaptureVariable(Var, Loc, Kind, EllipsisLoc,
13643                             /*BuildAndDiagnose=*/true, CaptureType,
13644                             DeclRefType, nullptr);
13645 }
13646 
13647 bool Sema::NeedToCaptureVariable(VarDecl *Var, SourceLocation Loc) {
13648   QualType CaptureType;
13649   QualType DeclRefType;
13650   return !tryCaptureVariable(Var, Loc, TryCapture_Implicit, SourceLocation(),
13651                              /*BuildAndDiagnose=*/false, CaptureType,
13652                              DeclRefType, nullptr);
13653 }
13654 
13655 QualType Sema::getCapturedDeclRefType(VarDecl *Var, SourceLocation Loc) {
13656   QualType CaptureType;
13657   QualType DeclRefType;
13658 
13659   // Determine whether we can capture this variable.
13660   if (tryCaptureVariable(Var, Loc, TryCapture_Implicit, SourceLocation(),
13661                          /*BuildAndDiagnose=*/false, CaptureType,
13662                          DeclRefType, nullptr))
13663     return QualType();
13664 
13665   return DeclRefType;
13666 }
13667 
13668 
13669 
13670 // If either the type of the variable or the initializer is dependent,
13671 // return false. Otherwise, determine whether the variable is a constant
13672 // expression. Use this if you need to know if a variable that might or
13673 // might not be dependent is truly a constant expression.
13674 static inline bool IsVariableNonDependentAndAConstantExpression(VarDecl *Var,
13675     ASTContext &Context) {
13676 
13677   if (Var->getType()->isDependentType())
13678     return false;
13679   const VarDecl *DefVD = nullptr;
13680   Var->getAnyInitializer(DefVD);
13681   if (!DefVD)
13682     return false;
13683   EvaluatedStmt *Eval = DefVD->ensureEvaluatedStmt();
13684   Expr *Init = cast<Expr>(Eval->Value);
13685   if (Init->isValueDependent())
13686     return false;
13687   return IsVariableAConstantExpression(Var, Context);
13688 }
13689 
13690 
13691 void Sema::UpdateMarkingForLValueToRValue(Expr *E) {
13692   // Per C++11 [basic.def.odr], a variable is odr-used "unless it is
13693   // an object that satisfies the requirements for appearing in a
13694   // constant expression (5.19) and the lvalue-to-rvalue conversion (4.1)
13695   // is immediately applied."  This function handles the lvalue-to-rvalue
13696   // conversion part.
13697   MaybeODRUseExprs.erase(E->IgnoreParens());
13698 
13699   // If we are in a lambda, check if this DeclRefExpr or MemberExpr refers
13700   // to a variable that is a constant expression, and if so, identify it as
13701   // a reference to a variable that does not involve an odr-use of that
13702   // variable.
13703   if (LambdaScopeInfo *LSI = getCurLambda()) {
13704     Expr *SansParensExpr = E->IgnoreParens();
13705     VarDecl *Var = nullptr;
13706     if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(SansParensExpr))
13707       Var = dyn_cast<VarDecl>(DRE->getFoundDecl());
13708     else if (MemberExpr *ME = dyn_cast<MemberExpr>(SansParensExpr))
13709       Var = dyn_cast<VarDecl>(ME->getMemberDecl());
13710 
13711     if (Var && IsVariableNonDependentAndAConstantExpression(Var, Context))
13712       LSI->markVariableExprAsNonODRUsed(SansParensExpr);
13713   }
13714 }
13715 
13716 ExprResult Sema::ActOnConstantExpression(ExprResult Res) {
13717   Res = CorrectDelayedTyposInExpr(Res);
13718 
13719   if (!Res.isUsable())
13720     return Res;
13721 
13722   // If a constant-expression is a reference to a variable where we delay
13723   // deciding whether it is an odr-use, just assume we will apply the
13724   // lvalue-to-rvalue conversion.  In the one case where this doesn't happen
13725   // (a non-type template argument), we have special handling anyway.
13726   UpdateMarkingForLValueToRValue(Res.get());
13727   return Res;
13728 }
13729 
13730 void Sema::CleanupVarDeclMarking() {
13731   for (Expr *E : MaybeODRUseExprs) {
13732     VarDecl *Var;
13733     SourceLocation Loc;
13734     if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E)) {
13735       Var = cast<VarDecl>(DRE->getDecl());
13736       Loc = DRE->getLocation();
13737     } else if (MemberExpr *ME = dyn_cast<MemberExpr>(E)) {
13738       Var = cast<VarDecl>(ME->getMemberDecl());
13739       Loc = ME->getMemberLoc();
13740     } else {
13741       llvm_unreachable("Unexpected expression");
13742     }
13743 
13744     MarkVarDeclODRUsed(Var, Loc, *this,
13745                        /*MaxFunctionScopeIndex Pointer*/ nullptr);
13746   }
13747 
13748   MaybeODRUseExprs.clear();
13749 }
13750 
13751 
13752 static void DoMarkVarDeclReferenced(Sema &SemaRef, SourceLocation Loc,
13753                                     VarDecl *Var, Expr *E) {
13754   assert((!E || isa<DeclRefExpr>(E) || isa<MemberExpr>(E)) &&
13755          "Invalid Expr argument to DoMarkVarDeclReferenced");
13756   Var->setReferenced();
13757 
13758   TemplateSpecializationKind TSK = Var->getTemplateSpecializationKind();
13759   bool MarkODRUsed = true;
13760 
13761   // If the context is not potentially evaluated, this is not an odr-use and
13762   // does not trigger instantiation.
13763   if (!IsPotentiallyEvaluatedContext(SemaRef)) {
13764     if (SemaRef.isUnevaluatedContext())
13765       return;
13766 
13767     // If we don't yet know whether this context is going to end up being an
13768     // evaluated context, and we're referencing a variable from an enclosing
13769     // scope, add a potential capture.
13770     //
13771     // FIXME: Is this necessary? These contexts are only used for default
13772     // arguments, where local variables can't be used.
13773     const bool RefersToEnclosingScope =
13774         (SemaRef.CurContext != Var->getDeclContext() &&
13775          Var->getDeclContext()->isFunctionOrMethod() && Var->hasLocalStorage());
13776     if (RefersToEnclosingScope) {
13777       if (LambdaScopeInfo *const LSI = SemaRef.getCurLambda()) {
13778         // If a variable could potentially be odr-used, defer marking it so
13779         // until we finish analyzing the full expression for any
13780         // lvalue-to-rvalue
13781         // or discarded value conversions that would obviate odr-use.
13782         // Add it to the list of potential captures that will be analyzed
13783         // later (ActOnFinishFullExpr) for eventual capture and odr-use marking
13784         // unless the variable is a reference that was initialized by a constant
13785         // expression (this will never need to be captured or odr-used).
13786         assert(E && "Capture variable should be used in an expression.");
13787         if (!Var->getType()->isReferenceType() ||
13788             !IsVariableNonDependentAndAConstantExpression(Var, SemaRef.Context))
13789           LSI->addPotentialCapture(E->IgnoreParens());
13790       }
13791     }
13792 
13793     if (!isTemplateInstantiation(TSK))
13794       return;
13795 
13796     // Instantiate, but do not mark as odr-used, variable templates.
13797     MarkODRUsed = false;
13798   }
13799 
13800   VarTemplateSpecializationDecl *VarSpec =
13801       dyn_cast<VarTemplateSpecializationDecl>(Var);
13802   assert(!isa<VarTemplatePartialSpecializationDecl>(Var) &&
13803          "Can't instantiate a partial template specialization.");
13804 
13805   // Perform implicit instantiation of static data members, static data member
13806   // templates of class templates, and variable template specializations. Delay
13807   // instantiations of variable templates, except for those that could be used
13808   // in a constant expression.
13809   if (isTemplateInstantiation(TSK)) {
13810     bool TryInstantiating = TSK == TSK_ImplicitInstantiation;
13811 
13812     if (TryInstantiating && !isa<VarTemplateSpecializationDecl>(Var)) {
13813       if (Var->getPointOfInstantiation().isInvalid()) {
13814         // This is a modification of an existing AST node. Notify listeners.
13815         if (ASTMutationListener *L = SemaRef.getASTMutationListener())
13816           L->StaticDataMemberInstantiated(Var);
13817       } else if (!Var->isUsableInConstantExpressions(SemaRef.Context))
13818         // Don't bother trying to instantiate it again, unless we might need
13819         // its initializer before we get to the end of the TU.
13820         TryInstantiating = false;
13821     }
13822 
13823     if (Var->getPointOfInstantiation().isInvalid())
13824       Var->setTemplateSpecializationKind(TSK, Loc);
13825 
13826     if (TryInstantiating) {
13827       SourceLocation PointOfInstantiation = Var->getPointOfInstantiation();
13828       bool InstantiationDependent = false;
13829       bool IsNonDependent =
13830           VarSpec ? !TemplateSpecializationType::anyDependentTemplateArguments(
13831                         VarSpec->getTemplateArgsInfo(), InstantiationDependent)
13832                   : true;
13833 
13834       // Do not instantiate specializations that are still type-dependent.
13835       if (IsNonDependent) {
13836         if (Var->isUsableInConstantExpressions(SemaRef.Context)) {
13837           // Do not defer instantiations of variables which could be used in a
13838           // constant expression.
13839           SemaRef.InstantiateVariableDefinition(PointOfInstantiation, Var);
13840         } else {
13841           SemaRef.PendingInstantiations
13842               .push_back(std::make_pair(Var, PointOfInstantiation));
13843         }
13844       }
13845     }
13846   }
13847 
13848   if(!MarkODRUsed) return;
13849 
13850   // Per C++11 [basic.def.odr], a variable is odr-used "unless it satisfies
13851   // the requirements for appearing in a constant expression (5.19) and, if
13852   // it is an object, the lvalue-to-rvalue conversion (4.1)
13853   // is immediately applied."  We check the first part here, and
13854   // Sema::UpdateMarkingForLValueToRValue deals with the second part.
13855   // Note that we use the C++11 definition everywhere because nothing in
13856   // C++03 depends on whether we get the C++03 version correct. The second
13857   // part does not apply to references, since they are not objects.
13858   if (E && IsVariableAConstantExpression(Var, SemaRef.Context)) {
13859     // A reference initialized by a constant expression can never be
13860     // odr-used, so simply ignore it.
13861     if (!Var->getType()->isReferenceType())
13862       SemaRef.MaybeODRUseExprs.insert(E);
13863   } else
13864     MarkVarDeclODRUsed(Var, Loc, SemaRef,
13865                        /*MaxFunctionScopeIndex ptr*/ nullptr);
13866 }
13867 
13868 /// \brief Mark a variable referenced, and check whether it is odr-used
13869 /// (C++ [basic.def.odr]p2, C99 6.9p3).  Note that this should not be
13870 /// used directly for normal expressions referring to VarDecl.
13871 void Sema::MarkVariableReferenced(SourceLocation Loc, VarDecl *Var) {
13872   DoMarkVarDeclReferenced(*this, Loc, Var, nullptr);
13873 }
13874 
13875 static void MarkExprReferenced(Sema &SemaRef, SourceLocation Loc,
13876                                Decl *D, Expr *E, bool MightBeOdrUse) {
13877   if (SemaRef.isInOpenMPDeclareTargetContext())
13878     SemaRef.checkDeclIsAllowedInOpenMPTarget(E, D);
13879 
13880   if (VarDecl *Var = dyn_cast<VarDecl>(D)) {
13881     DoMarkVarDeclReferenced(SemaRef, Loc, Var, E);
13882     return;
13883   }
13884 
13885   SemaRef.MarkAnyDeclReferenced(Loc, D, MightBeOdrUse);
13886 
13887   // If this is a call to a method via a cast, also mark the method in the
13888   // derived class used in case codegen can devirtualize the call.
13889   const MemberExpr *ME = dyn_cast<MemberExpr>(E);
13890   if (!ME)
13891     return;
13892   CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(ME->getMemberDecl());
13893   if (!MD)
13894     return;
13895   // Only attempt to devirtualize if this is truly a virtual call.
13896   bool IsVirtualCall = MD->isVirtual() &&
13897                           ME->performsVirtualDispatch(SemaRef.getLangOpts());
13898   if (!IsVirtualCall)
13899     return;
13900   const Expr *Base = ME->getBase();
13901   const CXXRecordDecl *MostDerivedClassDecl = Base->getBestDynamicClassType();
13902   if (!MostDerivedClassDecl)
13903     return;
13904   CXXMethodDecl *DM = MD->getCorrespondingMethodInClass(MostDerivedClassDecl);
13905   if (!DM || DM->isPure())
13906     return;
13907   SemaRef.MarkAnyDeclReferenced(Loc, DM, MightBeOdrUse);
13908 }
13909 
13910 /// \brief Perform reference-marking and odr-use handling for a DeclRefExpr.
13911 void Sema::MarkDeclRefReferenced(DeclRefExpr *E) {
13912   // TODO: update this with DR# once a defect report is filed.
13913   // C++11 defect. The address of a pure member should not be an ODR use, even
13914   // if it's a qualified reference.
13915   bool OdrUse = true;
13916   if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(E->getDecl()))
13917     if (Method->isVirtual())
13918       OdrUse = false;
13919   MarkExprReferenced(*this, E->getLocation(), E->getDecl(), E, OdrUse);
13920 }
13921 
13922 /// \brief Perform reference-marking and odr-use handling for a MemberExpr.
13923 void Sema::MarkMemberReferenced(MemberExpr *E) {
13924   // C++11 [basic.def.odr]p2:
13925   //   A non-overloaded function whose name appears as a potentially-evaluated
13926   //   expression or a member of a set of candidate functions, if selected by
13927   //   overload resolution when referred to from a potentially-evaluated
13928   //   expression, is odr-used, unless it is a pure virtual function and its
13929   //   name is not explicitly qualified.
13930   bool MightBeOdrUse = true;
13931   if (E->performsVirtualDispatch(getLangOpts())) {
13932     if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(E->getMemberDecl()))
13933       if (Method->isPure())
13934         MightBeOdrUse = false;
13935   }
13936   SourceLocation Loc = E->getMemberLoc().isValid() ?
13937                             E->getMemberLoc() : E->getLocStart();
13938   MarkExprReferenced(*this, Loc, E->getMemberDecl(), E, MightBeOdrUse);
13939 }
13940 
13941 /// \brief Perform marking for a reference to an arbitrary declaration.  It
13942 /// marks the declaration referenced, and performs odr-use checking for
13943 /// functions and variables. This method should not be used when building a
13944 /// normal expression which refers to a variable.
13945 void Sema::MarkAnyDeclReferenced(SourceLocation Loc, Decl *D,
13946                                  bool MightBeOdrUse) {
13947   if (MightBeOdrUse) {
13948     if (auto *VD = dyn_cast<VarDecl>(D)) {
13949       MarkVariableReferenced(Loc, VD);
13950       return;
13951     }
13952   }
13953   if (auto *FD = dyn_cast<FunctionDecl>(D)) {
13954     MarkFunctionReferenced(Loc, FD, MightBeOdrUse);
13955     return;
13956   }
13957   D->setReferenced();
13958 }
13959 
13960 namespace {
13961   // Mark all of the declarations referenced
13962   // FIXME: Not fully implemented yet! We need to have a better understanding
13963   // of when we're entering
13964   class MarkReferencedDecls : public RecursiveASTVisitor<MarkReferencedDecls> {
13965     Sema &S;
13966     SourceLocation Loc;
13967 
13968   public:
13969     typedef RecursiveASTVisitor<MarkReferencedDecls> Inherited;
13970 
13971     MarkReferencedDecls(Sema &S, SourceLocation Loc) : S(S), Loc(Loc) { }
13972 
13973     bool TraverseTemplateArgument(const TemplateArgument &Arg);
13974     bool TraverseRecordType(RecordType *T);
13975   };
13976 }
13977 
13978 bool MarkReferencedDecls::TraverseTemplateArgument(
13979     const TemplateArgument &Arg) {
13980   if (Arg.getKind() == TemplateArgument::Declaration) {
13981     if (Decl *D = Arg.getAsDecl())
13982       S.MarkAnyDeclReferenced(Loc, D, true);
13983   }
13984 
13985   return Inherited::TraverseTemplateArgument(Arg);
13986 }
13987 
13988 bool MarkReferencedDecls::TraverseRecordType(RecordType *T) {
13989   if (ClassTemplateSpecializationDecl *Spec
13990                   = dyn_cast<ClassTemplateSpecializationDecl>(T->getDecl())) {
13991     const TemplateArgumentList &Args = Spec->getTemplateArgs();
13992     return TraverseTemplateArguments(Args.data(), Args.size());
13993   }
13994 
13995   return true;
13996 }
13997 
13998 void Sema::MarkDeclarationsReferencedInType(SourceLocation Loc, QualType T) {
13999   MarkReferencedDecls Marker(*this, Loc);
14000   Marker.TraverseType(Context.getCanonicalType(T));
14001 }
14002 
14003 namespace {
14004   /// \brief Helper class that marks all of the declarations referenced by
14005   /// potentially-evaluated subexpressions as "referenced".
14006   class EvaluatedExprMarker : public EvaluatedExprVisitor<EvaluatedExprMarker> {
14007     Sema &S;
14008     bool SkipLocalVariables;
14009 
14010   public:
14011     typedef EvaluatedExprVisitor<EvaluatedExprMarker> Inherited;
14012 
14013     EvaluatedExprMarker(Sema &S, bool SkipLocalVariables)
14014       : Inherited(S.Context), S(S), SkipLocalVariables(SkipLocalVariables) { }
14015 
14016     void VisitDeclRefExpr(DeclRefExpr *E) {
14017       // If we were asked not to visit local variables, don't.
14018       if (SkipLocalVariables) {
14019         if (VarDecl *VD = dyn_cast<VarDecl>(E->getDecl()))
14020           if (VD->hasLocalStorage())
14021             return;
14022       }
14023 
14024       S.MarkDeclRefReferenced(E);
14025     }
14026 
14027     void VisitMemberExpr(MemberExpr *E) {
14028       S.MarkMemberReferenced(E);
14029       Inherited::VisitMemberExpr(E);
14030     }
14031 
14032     void VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E) {
14033       S.MarkFunctionReferenced(E->getLocStart(),
14034             const_cast<CXXDestructorDecl*>(E->getTemporary()->getDestructor()));
14035       Visit(E->getSubExpr());
14036     }
14037 
14038     void VisitCXXNewExpr(CXXNewExpr *E) {
14039       if (E->getOperatorNew())
14040         S.MarkFunctionReferenced(E->getLocStart(), E->getOperatorNew());
14041       if (E->getOperatorDelete())
14042         S.MarkFunctionReferenced(E->getLocStart(), E->getOperatorDelete());
14043       Inherited::VisitCXXNewExpr(E);
14044     }
14045 
14046     void VisitCXXDeleteExpr(CXXDeleteExpr *E) {
14047       if (E->getOperatorDelete())
14048         S.MarkFunctionReferenced(E->getLocStart(), E->getOperatorDelete());
14049       QualType Destroyed = S.Context.getBaseElementType(E->getDestroyedType());
14050       if (const RecordType *DestroyedRec = Destroyed->getAs<RecordType>()) {
14051         CXXRecordDecl *Record = cast<CXXRecordDecl>(DestroyedRec->getDecl());
14052         S.MarkFunctionReferenced(E->getLocStart(),
14053                                     S.LookupDestructor(Record));
14054       }
14055 
14056       Inherited::VisitCXXDeleteExpr(E);
14057     }
14058 
14059     void VisitCXXConstructExpr(CXXConstructExpr *E) {
14060       S.MarkFunctionReferenced(E->getLocStart(), E->getConstructor());
14061       Inherited::VisitCXXConstructExpr(E);
14062     }
14063 
14064     void VisitCXXDefaultArgExpr(CXXDefaultArgExpr *E) {
14065       Visit(E->getExpr());
14066     }
14067 
14068     void VisitImplicitCastExpr(ImplicitCastExpr *E) {
14069       Inherited::VisitImplicitCastExpr(E);
14070 
14071       if (E->getCastKind() == CK_LValueToRValue)
14072         S.UpdateMarkingForLValueToRValue(E->getSubExpr());
14073     }
14074   };
14075 }
14076 
14077 /// \brief Mark any declarations that appear within this expression or any
14078 /// potentially-evaluated subexpressions as "referenced".
14079 ///
14080 /// \param SkipLocalVariables If true, don't mark local variables as
14081 /// 'referenced'.
14082 void Sema::MarkDeclarationsReferencedInExpr(Expr *E,
14083                                             bool SkipLocalVariables) {
14084   EvaluatedExprMarker(*this, SkipLocalVariables).Visit(E);
14085 }
14086 
14087 /// \brief Emit a diagnostic that describes an effect on the run-time behavior
14088 /// of the program being compiled.
14089 ///
14090 /// This routine emits the given diagnostic when the code currently being
14091 /// type-checked is "potentially evaluated", meaning that there is a
14092 /// possibility that the code will actually be executable. Code in sizeof()
14093 /// expressions, code used only during overload resolution, etc., are not
14094 /// potentially evaluated. This routine will suppress such diagnostics or,
14095 /// in the absolutely nutty case of potentially potentially evaluated
14096 /// expressions (C++ typeid), queue the diagnostic to potentially emit it
14097 /// later.
14098 ///
14099 /// This routine should be used for all diagnostics that describe the run-time
14100 /// behavior of a program, such as passing a non-POD value through an ellipsis.
14101 /// Failure to do so will likely result in spurious diagnostics or failures
14102 /// during overload resolution or within sizeof/alignof/typeof/typeid.
14103 bool Sema::DiagRuntimeBehavior(SourceLocation Loc, const Stmt *Statement,
14104                                const PartialDiagnostic &PD) {
14105   switch (ExprEvalContexts.back().Context) {
14106   case Unevaluated:
14107   case UnevaluatedAbstract:
14108     // The argument will never be evaluated, so don't complain.
14109     break;
14110 
14111   case ConstantEvaluated:
14112     // Relevant diagnostics should be produced by constant evaluation.
14113     break;
14114 
14115   case PotentiallyEvaluated:
14116   case PotentiallyEvaluatedIfUsed:
14117     if (Statement && getCurFunctionOrMethodDecl()) {
14118       FunctionScopes.back()->PossiblyUnreachableDiags.
14119         push_back(sema::PossiblyUnreachableDiag(PD, Loc, Statement));
14120     }
14121     else
14122       Diag(Loc, PD);
14123 
14124     return true;
14125   }
14126 
14127   return false;
14128 }
14129 
14130 bool Sema::CheckCallReturnType(QualType ReturnType, SourceLocation Loc,
14131                                CallExpr *CE, FunctionDecl *FD) {
14132   if (ReturnType->isVoidType() || !ReturnType->isIncompleteType())
14133     return false;
14134 
14135   // If we're inside a decltype's expression, don't check for a valid return
14136   // type or construct temporaries until we know whether this is the last call.
14137   if (ExprEvalContexts.back().IsDecltype) {
14138     ExprEvalContexts.back().DelayedDecltypeCalls.push_back(CE);
14139     return false;
14140   }
14141 
14142   class CallReturnIncompleteDiagnoser : public TypeDiagnoser {
14143     FunctionDecl *FD;
14144     CallExpr *CE;
14145 
14146   public:
14147     CallReturnIncompleteDiagnoser(FunctionDecl *FD, CallExpr *CE)
14148       : FD(FD), CE(CE) { }
14149 
14150     void diagnose(Sema &S, SourceLocation Loc, QualType T) override {
14151       if (!FD) {
14152         S.Diag(Loc, diag::err_call_incomplete_return)
14153           << T << CE->getSourceRange();
14154         return;
14155       }
14156 
14157       S.Diag(Loc, diag::err_call_function_incomplete_return)
14158         << CE->getSourceRange() << FD->getDeclName() << T;
14159       S.Diag(FD->getLocation(), diag::note_entity_declared_at)
14160           << FD->getDeclName();
14161     }
14162   } Diagnoser(FD, CE);
14163 
14164   if (RequireCompleteType(Loc, ReturnType, Diagnoser))
14165     return true;
14166 
14167   return false;
14168 }
14169 
14170 // Diagnose the s/=/==/ and s/\|=/!=/ typos. Note that adding parentheses
14171 // will prevent this condition from triggering, which is what we want.
14172 void Sema::DiagnoseAssignmentAsCondition(Expr *E) {
14173   SourceLocation Loc;
14174 
14175   unsigned diagnostic = diag::warn_condition_is_assignment;
14176   bool IsOrAssign = false;
14177 
14178   if (BinaryOperator *Op = dyn_cast<BinaryOperator>(E)) {
14179     if (Op->getOpcode() != BO_Assign && Op->getOpcode() != BO_OrAssign)
14180       return;
14181 
14182     IsOrAssign = Op->getOpcode() == BO_OrAssign;
14183 
14184     // Greylist some idioms by putting them into a warning subcategory.
14185     if (ObjCMessageExpr *ME
14186           = dyn_cast<ObjCMessageExpr>(Op->getRHS()->IgnoreParenCasts())) {
14187       Selector Sel = ME->getSelector();
14188 
14189       // self = [<foo> init...]
14190       if (isSelfExpr(Op->getLHS()) && ME->getMethodFamily() == OMF_init)
14191         diagnostic = diag::warn_condition_is_idiomatic_assignment;
14192 
14193       // <foo> = [<bar> nextObject]
14194       else if (Sel.isUnarySelector() && Sel.getNameForSlot(0) == "nextObject")
14195         diagnostic = diag::warn_condition_is_idiomatic_assignment;
14196     }
14197 
14198     Loc = Op->getOperatorLoc();
14199   } else if (CXXOperatorCallExpr *Op = dyn_cast<CXXOperatorCallExpr>(E)) {
14200     if (Op->getOperator() != OO_Equal && Op->getOperator() != OO_PipeEqual)
14201       return;
14202 
14203     IsOrAssign = Op->getOperator() == OO_PipeEqual;
14204     Loc = Op->getOperatorLoc();
14205   } else if (PseudoObjectExpr *POE = dyn_cast<PseudoObjectExpr>(E))
14206     return DiagnoseAssignmentAsCondition(POE->getSyntacticForm());
14207   else {
14208     // Not an assignment.
14209     return;
14210   }
14211 
14212   Diag(Loc, diagnostic) << E->getSourceRange();
14213 
14214   SourceLocation Open = E->getLocStart();
14215   SourceLocation Close = getLocForEndOfToken(E->getSourceRange().getEnd());
14216   Diag(Loc, diag::note_condition_assign_silence)
14217         << FixItHint::CreateInsertion(Open, "(")
14218         << FixItHint::CreateInsertion(Close, ")");
14219 
14220   if (IsOrAssign)
14221     Diag(Loc, diag::note_condition_or_assign_to_comparison)
14222       << FixItHint::CreateReplacement(Loc, "!=");
14223   else
14224     Diag(Loc, diag::note_condition_assign_to_comparison)
14225       << FixItHint::CreateReplacement(Loc, "==");
14226 }
14227 
14228 /// \brief Redundant parentheses over an equality comparison can indicate
14229 /// that the user intended an assignment used as condition.
14230 void Sema::DiagnoseEqualityWithExtraParens(ParenExpr *ParenE) {
14231   // Don't warn if the parens came from a macro.
14232   SourceLocation parenLoc = ParenE->getLocStart();
14233   if (parenLoc.isInvalid() || parenLoc.isMacroID())
14234     return;
14235   // Don't warn for dependent expressions.
14236   if (ParenE->isTypeDependent())
14237     return;
14238 
14239   Expr *E = ParenE->IgnoreParens();
14240 
14241   if (BinaryOperator *opE = dyn_cast<BinaryOperator>(E))
14242     if (opE->getOpcode() == BO_EQ &&
14243         opE->getLHS()->IgnoreParenImpCasts()->isModifiableLvalue(Context)
14244                                                            == Expr::MLV_Valid) {
14245       SourceLocation Loc = opE->getOperatorLoc();
14246 
14247       Diag(Loc, diag::warn_equality_with_extra_parens) << E->getSourceRange();
14248       SourceRange ParenERange = ParenE->getSourceRange();
14249       Diag(Loc, diag::note_equality_comparison_silence)
14250         << FixItHint::CreateRemoval(ParenERange.getBegin())
14251         << FixItHint::CreateRemoval(ParenERange.getEnd());
14252       Diag(Loc, diag::note_equality_comparison_to_assign)
14253         << FixItHint::CreateReplacement(Loc, "=");
14254     }
14255 }
14256 
14257 ExprResult Sema::CheckBooleanCondition(Expr *E, SourceLocation Loc) {
14258   DiagnoseAssignmentAsCondition(E);
14259   if (ParenExpr *parenE = dyn_cast<ParenExpr>(E))
14260     DiagnoseEqualityWithExtraParens(parenE);
14261 
14262   ExprResult result = CheckPlaceholderExpr(E);
14263   if (result.isInvalid()) return ExprError();
14264   E = result.get();
14265 
14266   if (!E->isTypeDependent()) {
14267     if (getLangOpts().CPlusPlus)
14268       return CheckCXXBooleanCondition(E); // C++ 6.4p4
14269 
14270     ExprResult ERes = DefaultFunctionArrayLvalueConversion(E);
14271     if (ERes.isInvalid())
14272       return ExprError();
14273     E = ERes.get();
14274 
14275     QualType T = E->getType();
14276     if (!T->isScalarType()) { // C99 6.8.4.1p1
14277       Diag(Loc, diag::err_typecheck_statement_requires_scalar)
14278         << T << E->getSourceRange();
14279       return ExprError();
14280     }
14281     CheckBoolLikeConversion(E, Loc);
14282   }
14283 
14284   return E;
14285 }
14286 
14287 ExprResult Sema::ActOnBooleanCondition(Scope *S, SourceLocation Loc,
14288                                        Expr *SubExpr) {
14289   if (!SubExpr)
14290     return ExprError();
14291 
14292   return CheckBooleanCondition(SubExpr, Loc);
14293 }
14294 
14295 namespace {
14296   /// A visitor for rebuilding a call to an __unknown_any expression
14297   /// to have an appropriate type.
14298   struct RebuildUnknownAnyFunction
14299     : StmtVisitor<RebuildUnknownAnyFunction, ExprResult> {
14300 
14301     Sema &S;
14302 
14303     RebuildUnknownAnyFunction(Sema &S) : S(S) {}
14304 
14305     ExprResult VisitStmt(Stmt *S) {
14306       llvm_unreachable("unexpected statement!");
14307     }
14308 
14309     ExprResult VisitExpr(Expr *E) {
14310       S.Diag(E->getExprLoc(), diag::err_unsupported_unknown_any_call)
14311         << E->getSourceRange();
14312       return ExprError();
14313     }
14314 
14315     /// Rebuild an expression which simply semantically wraps another
14316     /// expression which it shares the type and value kind of.
14317     template <class T> ExprResult rebuildSugarExpr(T *E) {
14318       ExprResult SubResult = Visit(E->getSubExpr());
14319       if (SubResult.isInvalid()) return ExprError();
14320 
14321       Expr *SubExpr = SubResult.get();
14322       E->setSubExpr(SubExpr);
14323       E->setType(SubExpr->getType());
14324       E->setValueKind(SubExpr->getValueKind());
14325       assert(E->getObjectKind() == OK_Ordinary);
14326       return E;
14327     }
14328 
14329     ExprResult VisitParenExpr(ParenExpr *E) {
14330       return rebuildSugarExpr(E);
14331     }
14332 
14333     ExprResult VisitUnaryExtension(UnaryOperator *E) {
14334       return rebuildSugarExpr(E);
14335     }
14336 
14337     ExprResult VisitUnaryAddrOf(UnaryOperator *E) {
14338       ExprResult SubResult = Visit(E->getSubExpr());
14339       if (SubResult.isInvalid()) return ExprError();
14340 
14341       Expr *SubExpr = SubResult.get();
14342       E->setSubExpr(SubExpr);
14343       E->setType(S.Context.getPointerType(SubExpr->getType()));
14344       assert(E->getValueKind() == VK_RValue);
14345       assert(E->getObjectKind() == OK_Ordinary);
14346       return E;
14347     }
14348 
14349     ExprResult resolveDecl(Expr *E, ValueDecl *VD) {
14350       if (!isa<FunctionDecl>(VD)) return VisitExpr(E);
14351 
14352       E->setType(VD->getType());
14353 
14354       assert(E->getValueKind() == VK_RValue);
14355       if (S.getLangOpts().CPlusPlus &&
14356           !(isa<CXXMethodDecl>(VD) &&
14357             cast<CXXMethodDecl>(VD)->isInstance()))
14358         E->setValueKind(VK_LValue);
14359 
14360       return E;
14361     }
14362 
14363     ExprResult VisitMemberExpr(MemberExpr *E) {
14364       return resolveDecl(E, E->getMemberDecl());
14365     }
14366 
14367     ExprResult VisitDeclRefExpr(DeclRefExpr *E) {
14368       return resolveDecl(E, E->getDecl());
14369     }
14370   };
14371 }
14372 
14373 /// Given a function expression of unknown-any type, try to rebuild it
14374 /// to have a function type.
14375 static ExprResult rebuildUnknownAnyFunction(Sema &S, Expr *FunctionExpr) {
14376   ExprResult Result = RebuildUnknownAnyFunction(S).Visit(FunctionExpr);
14377   if (Result.isInvalid()) return ExprError();
14378   return S.DefaultFunctionArrayConversion(Result.get());
14379 }
14380 
14381 namespace {
14382   /// A visitor for rebuilding an expression of type __unknown_anytype
14383   /// into one which resolves the type directly on the referring
14384   /// expression.  Strict preservation of the original source
14385   /// structure is not a goal.
14386   struct RebuildUnknownAnyExpr
14387     : StmtVisitor<RebuildUnknownAnyExpr, ExprResult> {
14388 
14389     Sema &S;
14390 
14391     /// The current destination type.
14392     QualType DestType;
14393 
14394     RebuildUnknownAnyExpr(Sema &S, QualType CastType)
14395       : S(S), DestType(CastType) {}
14396 
14397     ExprResult VisitStmt(Stmt *S) {
14398       llvm_unreachable("unexpected statement!");
14399     }
14400 
14401     ExprResult VisitExpr(Expr *E) {
14402       S.Diag(E->getExprLoc(), diag::err_unsupported_unknown_any_expr)
14403         << E->getSourceRange();
14404       return ExprError();
14405     }
14406 
14407     ExprResult VisitCallExpr(CallExpr *E);
14408     ExprResult VisitObjCMessageExpr(ObjCMessageExpr *E);
14409 
14410     /// Rebuild an expression which simply semantically wraps another
14411     /// expression which it shares the type and value kind of.
14412     template <class T> ExprResult rebuildSugarExpr(T *E) {
14413       ExprResult SubResult = Visit(E->getSubExpr());
14414       if (SubResult.isInvalid()) return ExprError();
14415       Expr *SubExpr = SubResult.get();
14416       E->setSubExpr(SubExpr);
14417       E->setType(SubExpr->getType());
14418       E->setValueKind(SubExpr->getValueKind());
14419       assert(E->getObjectKind() == OK_Ordinary);
14420       return E;
14421     }
14422 
14423     ExprResult VisitParenExpr(ParenExpr *E) {
14424       return rebuildSugarExpr(E);
14425     }
14426 
14427     ExprResult VisitUnaryExtension(UnaryOperator *E) {
14428       return rebuildSugarExpr(E);
14429     }
14430 
14431     ExprResult VisitUnaryAddrOf(UnaryOperator *E) {
14432       const PointerType *Ptr = DestType->getAs<PointerType>();
14433       if (!Ptr) {
14434         S.Diag(E->getOperatorLoc(), diag::err_unknown_any_addrof)
14435           << E->getSourceRange();
14436         return ExprError();
14437       }
14438       assert(E->getValueKind() == VK_RValue);
14439       assert(E->getObjectKind() == OK_Ordinary);
14440       E->setType(DestType);
14441 
14442       // Build the sub-expression as if it were an object of the pointee type.
14443       DestType = Ptr->getPointeeType();
14444       ExprResult SubResult = Visit(E->getSubExpr());
14445       if (SubResult.isInvalid()) return ExprError();
14446       E->setSubExpr(SubResult.get());
14447       return E;
14448     }
14449 
14450     ExprResult VisitImplicitCastExpr(ImplicitCastExpr *E);
14451 
14452     ExprResult resolveDecl(Expr *E, ValueDecl *VD);
14453 
14454     ExprResult VisitMemberExpr(MemberExpr *E) {
14455       return resolveDecl(E, E->getMemberDecl());
14456     }
14457 
14458     ExprResult VisitDeclRefExpr(DeclRefExpr *E) {
14459       return resolveDecl(E, E->getDecl());
14460     }
14461   };
14462 }
14463 
14464 /// Rebuilds a call expression which yielded __unknown_anytype.
14465 ExprResult RebuildUnknownAnyExpr::VisitCallExpr(CallExpr *E) {
14466   Expr *CalleeExpr = E->getCallee();
14467 
14468   enum FnKind {
14469     FK_MemberFunction,
14470     FK_FunctionPointer,
14471     FK_BlockPointer
14472   };
14473 
14474   FnKind Kind;
14475   QualType CalleeType = CalleeExpr->getType();
14476   if (CalleeType == S.Context.BoundMemberTy) {
14477     assert(isa<CXXMemberCallExpr>(E) || isa<CXXOperatorCallExpr>(E));
14478     Kind = FK_MemberFunction;
14479     CalleeType = Expr::findBoundMemberType(CalleeExpr);
14480   } else if (const PointerType *Ptr = CalleeType->getAs<PointerType>()) {
14481     CalleeType = Ptr->getPointeeType();
14482     Kind = FK_FunctionPointer;
14483   } else {
14484     CalleeType = CalleeType->castAs<BlockPointerType>()->getPointeeType();
14485     Kind = FK_BlockPointer;
14486   }
14487   const FunctionType *FnType = CalleeType->castAs<FunctionType>();
14488 
14489   // Verify that this is a legal result type of a function.
14490   if (DestType->isArrayType() || DestType->isFunctionType()) {
14491     unsigned diagID = diag::err_func_returning_array_function;
14492     if (Kind == FK_BlockPointer)
14493       diagID = diag::err_block_returning_array_function;
14494 
14495     S.Diag(E->getExprLoc(), diagID)
14496       << DestType->isFunctionType() << DestType;
14497     return ExprError();
14498   }
14499 
14500   // Otherwise, go ahead and set DestType as the call's result.
14501   E->setType(DestType.getNonLValueExprType(S.Context));
14502   E->setValueKind(Expr::getValueKindForType(DestType));
14503   assert(E->getObjectKind() == OK_Ordinary);
14504 
14505   // Rebuild the function type, replacing the result type with DestType.
14506   const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FnType);
14507   if (Proto) {
14508     // __unknown_anytype(...) is a special case used by the debugger when
14509     // it has no idea what a function's signature is.
14510     //
14511     // We want to build this call essentially under the K&R
14512     // unprototyped rules, but making a FunctionNoProtoType in C++
14513     // would foul up all sorts of assumptions.  However, we cannot
14514     // simply pass all arguments as variadic arguments, nor can we
14515     // portably just call the function under a non-variadic type; see
14516     // the comment on IR-gen's TargetInfo::isNoProtoCallVariadic.
14517     // However, it turns out that in practice it is generally safe to
14518     // call a function declared as "A foo(B,C,D);" under the prototype
14519     // "A foo(B,C,D,...);".  The only known exception is with the
14520     // Windows ABI, where any variadic function is implicitly cdecl
14521     // regardless of its normal CC.  Therefore we change the parameter
14522     // types to match the types of the arguments.
14523     //
14524     // This is a hack, but it is far superior to moving the
14525     // corresponding target-specific code from IR-gen to Sema/AST.
14526 
14527     ArrayRef<QualType> ParamTypes = Proto->getParamTypes();
14528     SmallVector<QualType, 8> ArgTypes;
14529     if (ParamTypes.empty() && Proto->isVariadic()) { // the special case
14530       ArgTypes.reserve(E->getNumArgs());
14531       for (unsigned i = 0, e = E->getNumArgs(); i != e; ++i) {
14532         Expr *Arg = E->getArg(i);
14533         QualType ArgType = Arg->getType();
14534         if (E->isLValue()) {
14535           ArgType = S.Context.getLValueReferenceType(ArgType);
14536         } else if (E->isXValue()) {
14537           ArgType = S.Context.getRValueReferenceType(ArgType);
14538         }
14539         ArgTypes.push_back(ArgType);
14540       }
14541       ParamTypes = ArgTypes;
14542     }
14543     DestType = S.Context.getFunctionType(DestType, ParamTypes,
14544                                          Proto->getExtProtoInfo());
14545   } else {
14546     DestType = S.Context.getFunctionNoProtoType(DestType,
14547                                                 FnType->getExtInfo());
14548   }
14549 
14550   // Rebuild the appropriate pointer-to-function type.
14551   switch (Kind) {
14552   case FK_MemberFunction:
14553     // Nothing to do.
14554     break;
14555 
14556   case FK_FunctionPointer:
14557     DestType = S.Context.getPointerType(DestType);
14558     break;
14559 
14560   case FK_BlockPointer:
14561     DestType = S.Context.getBlockPointerType(DestType);
14562     break;
14563   }
14564 
14565   // Finally, we can recurse.
14566   ExprResult CalleeResult = Visit(CalleeExpr);
14567   if (!CalleeResult.isUsable()) return ExprError();
14568   E->setCallee(CalleeResult.get());
14569 
14570   // Bind a temporary if necessary.
14571   return S.MaybeBindToTemporary(E);
14572 }
14573 
14574 ExprResult RebuildUnknownAnyExpr::VisitObjCMessageExpr(ObjCMessageExpr *E) {
14575   // Verify that this is a legal result type of a call.
14576   if (DestType->isArrayType() || DestType->isFunctionType()) {
14577     S.Diag(E->getExprLoc(), diag::err_func_returning_array_function)
14578       << DestType->isFunctionType() << DestType;
14579     return ExprError();
14580   }
14581 
14582   // Rewrite the method result type if available.
14583   if (ObjCMethodDecl *Method = E->getMethodDecl()) {
14584     assert(Method->getReturnType() == S.Context.UnknownAnyTy);
14585     Method->setReturnType(DestType);
14586   }
14587 
14588   // Change the type of the message.
14589   E->setType(DestType.getNonReferenceType());
14590   E->setValueKind(Expr::getValueKindForType(DestType));
14591 
14592   return S.MaybeBindToTemporary(E);
14593 }
14594 
14595 ExprResult RebuildUnknownAnyExpr::VisitImplicitCastExpr(ImplicitCastExpr *E) {
14596   // The only case we should ever see here is a function-to-pointer decay.
14597   if (E->getCastKind() == CK_FunctionToPointerDecay) {
14598     assert(E->getValueKind() == VK_RValue);
14599     assert(E->getObjectKind() == OK_Ordinary);
14600 
14601     E->setType(DestType);
14602 
14603     // Rebuild the sub-expression as the pointee (function) type.
14604     DestType = DestType->castAs<PointerType>()->getPointeeType();
14605 
14606     ExprResult Result = Visit(E->getSubExpr());
14607     if (!Result.isUsable()) return ExprError();
14608 
14609     E->setSubExpr(Result.get());
14610     return E;
14611   } else if (E->getCastKind() == CK_LValueToRValue) {
14612     assert(E->getValueKind() == VK_RValue);
14613     assert(E->getObjectKind() == OK_Ordinary);
14614 
14615     assert(isa<BlockPointerType>(E->getType()));
14616 
14617     E->setType(DestType);
14618 
14619     // The sub-expression has to be a lvalue reference, so rebuild it as such.
14620     DestType = S.Context.getLValueReferenceType(DestType);
14621 
14622     ExprResult Result = Visit(E->getSubExpr());
14623     if (!Result.isUsable()) return ExprError();
14624 
14625     E->setSubExpr(Result.get());
14626     return E;
14627   } else {
14628     llvm_unreachable("Unhandled cast type!");
14629   }
14630 }
14631 
14632 ExprResult RebuildUnknownAnyExpr::resolveDecl(Expr *E, ValueDecl *VD) {
14633   ExprValueKind ValueKind = VK_LValue;
14634   QualType Type = DestType;
14635 
14636   // We know how to make this work for certain kinds of decls:
14637 
14638   //  - functions
14639   if (FunctionDecl *FD = dyn_cast<FunctionDecl>(VD)) {
14640     if (const PointerType *Ptr = Type->getAs<PointerType>()) {
14641       DestType = Ptr->getPointeeType();
14642       ExprResult Result = resolveDecl(E, VD);
14643       if (Result.isInvalid()) return ExprError();
14644       return S.ImpCastExprToType(Result.get(), Type,
14645                                  CK_FunctionToPointerDecay, VK_RValue);
14646     }
14647 
14648     if (!Type->isFunctionType()) {
14649       S.Diag(E->getExprLoc(), diag::err_unknown_any_function)
14650         << VD << E->getSourceRange();
14651       return ExprError();
14652     }
14653     if (const FunctionProtoType *FT = Type->getAs<FunctionProtoType>()) {
14654       // We must match the FunctionDecl's type to the hack introduced in
14655       // RebuildUnknownAnyExpr::VisitCallExpr to vararg functions of unknown
14656       // type. See the lengthy commentary in that routine.
14657       QualType FDT = FD->getType();
14658       const FunctionType *FnType = FDT->castAs<FunctionType>();
14659       const FunctionProtoType *Proto = dyn_cast_or_null<FunctionProtoType>(FnType);
14660       DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E);
14661       if (DRE && Proto && Proto->getParamTypes().empty() && Proto->isVariadic()) {
14662         SourceLocation Loc = FD->getLocation();
14663         FunctionDecl *NewFD = FunctionDecl::Create(FD->getASTContext(),
14664                                       FD->getDeclContext(),
14665                                       Loc, Loc, FD->getNameInfo().getName(),
14666                                       DestType, FD->getTypeSourceInfo(),
14667                                       SC_None, false/*isInlineSpecified*/,
14668                                       FD->hasPrototype(),
14669                                       false/*isConstexprSpecified*/);
14670 
14671         if (FD->getQualifier())
14672           NewFD->setQualifierInfo(FD->getQualifierLoc());
14673 
14674         SmallVector<ParmVarDecl*, 16> Params;
14675         for (const auto &AI : FT->param_types()) {
14676           ParmVarDecl *Param =
14677             S.BuildParmVarDeclForTypedef(FD, Loc, AI);
14678           Param->setScopeInfo(0, Params.size());
14679           Params.push_back(Param);
14680         }
14681         NewFD->setParams(Params);
14682         DRE->setDecl(NewFD);
14683         VD = DRE->getDecl();
14684       }
14685     }
14686 
14687     if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD))
14688       if (MD->isInstance()) {
14689         ValueKind = VK_RValue;
14690         Type = S.Context.BoundMemberTy;
14691       }
14692 
14693     // Function references aren't l-values in C.
14694     if (!S.getLangOpts().CPlusPlus)
14695       ValueKind = VK_RValue;
14696 
14697   //  - variables
14698   } else if (isa<VarDecl>(VD)) {
14699     if (const ReferenceType *RefTy = Type->getAs<ReferenceType>()) {
14700       Type = RefTy->getPointeeType();
14701     } else if (Type->isFunctionType()) {
14702       S.Diag(E->getExprLoc(), diag::err_unknown_any_var_function_type)
14703         << VD << E->getSourceRange();
14704       return ExprError();
14705     }
14706 
14707   //  - nothing else
14708   } else {
14709     S.Diag(E->getExprLoc(), diag::err_unsupported_unknown_any_decl)
14710       << VD << E->getSourceRange();
14711     return ExprError();
14712   }
14713 
14714   // Modifying the declaration like this is friendly to IR-gen but
14715   // also really dangerous.
14716   VD->setType(DestType);
14717   E->setType(Type);
14718   E->setValueKind(ValueKind);
14719   return E;
14720 }
14721 
14722 /// Check a cast of an unknown-any type.  We intentionally only
14723 /// trigger this for C-style casts.
14724 ExprResult Sema::checkUnknownAnyCast(SourceRange TypeRange, QualType CastType,
14725                                      Expr *CastExpr, CastKind &CastKind,
14726                                      ExprValueKind &VK, CXXCastPath &Path) {
14727   // The type we're casting to must be either void or complete.
14728   if (!CastType->isVoidType() &&
14729       RequireCompleteType(TypeRange.getBegin(), CastType,
14730                           diag::err_typecheck_cast_to_incomplete))
14731     return ExprError();
14732 
14733   // Rewrite the casted expression from scratch.
14734   ExprResult result = RebuildUnknownAnyExpr(*this, CastType).Visit(CastExpr);
14735   if (!result.isUsable()) return ExprError();
14736 
14737   CastExpr = result.get();
14738   VK = CastExpr->getValueKind();
14739   CastKind = CK_NoOp;
14740 
14741   return CastExpr;
14742 }
14743 
14744 ExprResult Sema::forceUnknownAnyToType(Expr *E, QualType ToType) {
14745   return RebuildUnknownAnyExpr(*this, ToType).Visit(E);
14746 }
14747 
14748 ExprResult Sema::checkUnknownAnyArg(SourceLocation callLoc,
14749                                     Expr *arg, QualType &paramType) {
14750   // If the syntactic form of the argument is not an explicit cast of
14751   // any sort, just do default argument promotion.
14752   ExplicitCastExpr *castArg = dyn_cast<ExplicitCastExpr>(arg->IgnoreParens());
14753   if (!castArg) {
14754     ExprResult result = DefaultArgumentPromotion(arg);
14755     if (result.isInvalid()) return ExprError();
14756     paramType = result.get()->getType();
14757     return result;
14758   }
14759 
14760   // Otherwise, use the type that was written in the explicit cast.
14761   assert(!arg->hasPlaceholderType());
14762   paramType = castArg->getTypeAsWritten();
14763 
14764   // Copy-initialize a parameter of that type.
14765   InitializedEntity entity =
14766     InitializedEntity::InitializeParameter(Context, paramType,
14767                                            /*consumed*/ false);
14768   return PerformCopyInitialization(entity, callLoc, arg);
14769 }
14770 
14771 static ExprResult diagnoseUnknownAnyExpr(Sema &S, Expr *E) {
14772   Expr *orig = E;
14773   unsigned diagID = diag::err_uncasted_use_of_unknown_any;
14774   while (true) {
14775     E = E->IgnoreParenImpCasts();
14776     if (CallExpr *call = dyn_cast<CallExpr>(E)) {
14777       E = call->getCallee();
14778       diagID = diag::err_uncasted_call_of_unknown_any;
14779     } else {
14780       break;
14781     }
14782   }
14783 
14784   SourceLocation loc;
14785   NamedDecl *d;
14786   if (DeclRefExpr *ref = dyn_cast<DeclRefExpr>(E)) {
14787     loc = ref->getLocation();
14788     d = ref->getDecl();
14789   } else if (MemberExpr *mem = dyn_cast<MemberExpr>(E)) {
14790     loc = mem->getMemberLoc();
14791     d = mem->getMemberDecl();
14792   } else if (ObjCMessageExpr *msg = dyn_cast<ObjCMessageExpr>(E)) {
14793     diagID = diag::err_uncasted_call_of_unknown_any;
14794     loc = msg->getSelectorStartLoc();
14795     d = msg->getMethodDecl();
14796     if (!d) {
14797       S.Diag(loc, diag::err_uncasted_send_to_unknown_any_method)
14798         << static_cast<unsigned>(msg->isClassMessage()) << msg->getSelector()
14799         << orig->getSourceRange();
14800       return ExprError();
14801     }
14802   } else {
14803     S.Diag(E->getExprLoc(), diag::err_unsupported_unknown_any_expr)
14804       << E->getSourceRange();
14805     return ExprError();
14806   }
14807 
14808   S.Diag(loc, diagID) << d << orig->getSourceRange();
14809 
14810   // Never recoverable.
14811   return ExprError();
14812 }
14813 
14814 /// Check for operands with placeholder types and complain if found.
14815 /// Returns true if there was an error and no recovery was possible.
14816 ExprResult Sema::CheckPlaceholderExpr(Expr *E) {
14817   if (!getLangOpts().CPlusPlus) {
14818     // C cannot handle TypoExpr nodes on either side of a binop because it
14819     // doesn't handle dependent types properly, so make sure any TypoExprs have
14820     // been dealt with before checking the operands.
14821     ExprResult Result = CorrectDelayedTyposInExpr(E);
14822     if (!Result.isUsable()) return ExprError();
14823     E = Result.get();
14824   }
14825 
14826   const BuiltinType *placeholderType = E->getType()->getAsPlaceholderType();
14827   if (!placeholderType) return E;
14828 
14829   switch (placeholderType->getKind()) {
14830 
14831   // Overloaded expressions.
14832   case BuiltinType::Overload: {
14833     // Try to resolve a single function template specialization.
14834     // This is obligatory.
14835     ExprResult result = E;
14836     if (ResolveAndFixSingleFunctionTemplateSpecialization(result, false)) {
14837       return result;
14838 
14839     // If that failed, try to recover with a call.
14840     } else {
14841       tryToRecoverWithCall(result, PDiag(diag::err_ovl_unresolvable),
14842                            /*complain*/ true);
14843       return result;
14844     }
14845   }
14846 
14847   // Bound member functions.
14848   case BuiltinType::BoundMember: {
14849     ExprResult result = E;
14850     const Expr *BME = E->IgnoreParens();
14851     PartialDiagnostic PD = PDiag(diag::err_bound_member_function);
14852     // Try to give a nicer diagnostic if it is a bound member that we recognize.
14853     if (isa<CXXPseudoDestructorExpr>(BME)) {
14854       PD = PDiag(diag::err_dtor_expr_without_call) << /*pseudo-destructor*/ 1;
14855     } else if (const auto *ME = dyn_cast<MemberExpr>(BME)) {
14856       if (ME->getMemberNameInfo().getName().getNameKind() ==
14857           DeclarationName::CXXDestructorName)
14858         PD = PDiag(diag::err_dtor_expr_without_call) << /*destructor*/ 0;
14859     }
14860     tryToRecoverWithCall(result, PD,
14861                          /*complain*/ true);
14862     return result;
14863   }
14864 
14865   // ARC unbridged casts.
14866   case BuiltinType::ARCUnbridgedCast: {
14867     Expr *realCast = stripARCUnbridgedCast(E);
14868     diagnoseARCUnbridgedCast(realCast);
14869     return realCast;
14870   }
14871 
14872   // Expressions of unknown type.
14873   case BuiltinType::UnknownAny:
14874     return diagnoseUnknownAnyExpr(*this, E);
14875 
14876   // Pseudo-objects.
14877   case BuiltinType::PseudoObject:
14878     return checkPseudoObjectRValue(E);
14879 
14880   case BuiltinType::BuiltinFn: {
14881     // Accept __noop without parens by implicitly converting it to a call expr.
14882     auto *DRE = dyn_cast<DeclRefExpr>(E->IgnoreParenImpCasts());
14883     if (DRE) {
14884       auto *FD = cast<FunctionDecl>(DRE->getDecl());
14885       if (FD->getBuiltinID() == Builtin::BI__noop) {
14886         E = ImpCastExprToType(E, Context.getPointerType(FD->getType()),
14887                               CK_BuiltinFnToFnPtr).get();
14888         return new (Context) CallExpr(Context, E, None, Context.IntTy,
14889                                       VK_RValue, SourceLocation());
14890       }
14891     }
14892 
14893     Diag(E->getLocStart(), diag::err_builtin_fn_use);
14894     return ExprError();
14895   }
14896 
14897   // Expressions of unknown type.
14898   case BuiltinType::OMPArraySection:
14899     Diag(E->getLocStart(), diag::err_omp_array_section_use);
14900     return ExprError();
14901 
14902   // Everything else should be impossible.
14903 #define IMAGE_TYPE(ImgType, Id, SingletonId, Access, Suffix) \
14904   case BuiltinType::Id:
14905 #include "clang/AST/OpenCLImageTypes.def"
14906 #define BUILTIN_TYPE(Id, SingletonId) case BuiltinType::Id:
14907 #define PLACEHOLDER_TYPE(Id, SingletonId)
14908 #include "clang/AST/BuiltinTypes.def"
14909     break;
14910   }
14911 
14912   llvm_unreachable("invalid placeholder type!");
14913 }
14914 
14915 bool Sema::CheckCaseExpression(Expr *E) {
14916   if (E->isTypeDependent())
14917     return true;
14918   if (E->isValueDependent() || E->isIntegerConstantExpr(Context))
14919     return E->getType()->isIntegralOrEnumerationType();
14920   return false;
14921 }
14922 
14923 /// ActOnObjCBoolLiteral - Parse {__objc_yes,__objc_no} literals.
14924 ExprResult
14925 Sema::ActOnObjCBoolLiteral(SourceLocation OpLoc, tok::TokenKind Kind) {
14926   assert((Kind == tok::kw___objc_yes || Kind == tok::kw___objc_no) &&
14927          "Unknown Objective-C Boolean value!");
14928   QualType BoolT = Context.ObjCBuiltinBoolTy;
14929   if (!Context.getBOOLDecl()) {
14930     LookupResult Result(*this, &Context.Idents.get("BOOL"), OpLoc,
14931                         Sema::LookupOrdinaryName);
14932     if (LookupName(Result, getCurScope()) && Result.isSingleResult()) {
14933       NamedDecl *ND = Result.getFoundDecl();
14934       if (TypedefDecl *TD = dyn_cast<TypedefDecl>(ND))
14935         Context.setBOOLDecl(TD);
14936     }
14937   }
14938   if (Context.getBOOLDecl())
14939     BoolT = Context.getBOOLType();
14940   return new (Context)
14941       ObjCBoolLiteralExpr(Kind == tok::kw___objc_yes, BoolT, OpLoc);
14942 }
14943